summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/subfig
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/subfig
Initial commit
Diffstat (limited to 'macros/latex/contrib/subfig')
-rw-r--r--macros/latex/contrib/subfig/Makefile148
-rw-r--r--macros/latex/contrib/subfig/README99
-rw-r--r--macros/latex/contrib/subfig/subfig.dtx4714
-rw-r--r--macros/latex/contrib/subfig/subfig.ins66
-rw-r--r--macros/latex/contrib/subfig/subfig.pdf11758
-rw-r--r--macros/latex/contrib/subfig/test1.tex712
-rw-r--r--macros/latex/contrib/subfig/test2.tex199
-rw-r--r--macros/latex/contrib/subfig/test3.tex206
-rw-r--r--macros/latex/contrib/subfig/test4.tex144
-rw-r--r--macros/latex/contrib/subfig/test5.tex333
-rw-r--r--macros/latex/contrib/subfig/test6.tex542
-rw-r--r--macros/latex/contrib/subfig/test7.tex122
12 files changed, 19043 insertions, 0 deletions
diff --git a/macros/latex/contrib/subfig/Makefile b/macros/latex/contrib/subfig/Makefile
new file mode 100644
index 0000000000..7b3e82228a
--- /dev/null
+++ b/macros/latex/contrib/subfig/Makefile
@@ -0,0 +1,148 @@
+PACKAGE = subfig
+########################################################################
+## LaTeX2e Makefile
+##
+## Update the following defines for your local configuration,
+##
+CONTRIB = /usr/share/texmf/tex/latex/subfig
+##
+A2PS = a2ps
+CP = cp
+DVIPS = dvips
+GZIP = gzip
+LATEX = latex
+MAKEINDEX = makeindex
+MKDIR = mkdir
+PDFLATEX = pdflatex
+PS2PDF = ps2pdf
+RM = rm
+TAR = tar
+##
+## The following should not need to be modified.
+##
+########################################################################
+## make [all] Generates the style (.sty) file, the doc and
+## test files (.ps) and cleans up the directory.
+## make [un]install Install or uninstall the style (.sty,.cfg) files
+## from the CONTRIB area.
+## make [very]clean Clean out various auxillary files. "veryclean"
+## cleans out more stuff.
+########################################################################
+## make dvi Generate the *.dvi version of the documentation.
+## make [full]pdf Generate the *.pdf version of the documentation.
+## The "fullpdf" version adds the change log and the
+## cross-references.
+## make [full]ps Generate the *.ps version of the documentation.
+## The "fullps" version adds the change log and the
+## cross-references.
+## make idx Generate the change log and the cross-references
+## (for "fullps" or "FULLPDF" -- requires MAKEINDEX).
+## make sty Generate the style file (subfig.sty). Also
+## generate the configuration files 'altsf.cfg'
+## and 'ltxdoc.cfg'.
+########################################################################
+## make test Runs test program(s).
+## make distribtion Builds a distribution (.tar.gz) file.
+########################################################################
+
+all: fullpdf test clean
+
+install: sty
+ $(CP) $(PACKAGE).sty altsf.cfg $(CONTRIB)
+uninstall: ; -$(RM) -f $(CONTRIB)/$(PACKAGE).sty $(CONTRIB)/altsf.cfg
+clean: ; -$(RM) -f *.dvi *.log *.aux *.lof *.lot *.lom *.toc
+ -$(RM) -f *.idx *.ind *.glo *.gls *.ilg *.out *~
+veryclean: clean
+ -$(RM) -f *.sty *.cls *.ps *.pdf *.gz *pk ltxdoc.cfg
+
+dvi: $(PACKAGE).dvi
+fullpdf: fullps pdf
+fullps: dvi idx ps
+idx: $(PACKAGE).ind $(PACKAGE).gls
+ $(LATEX) $(PACKAGE).dtx
+ $(LATEX) $(PACKAGE).dtx
+pdf: $(PACKAGE).pdf
+ps: $(PACKAGE).ps
+sty: $(PACKAGE).sty
+test: test1 test2 test3 test4 test5 test6 test7
+
+distribution: fullpdf
+ -$(MKDIR) $(PACKAGE)
+ $(CP) -p README Makefile $(PACKAGE).pdf $(PACKAGE)
+ $(CP) -p $(PACKAGE).dtx $(PACKAGE).ins $(PACKAGE)
+ $(CP) -p test[1-7].tex $(PACKAGE)
+ $(TAR) -cvf $(PACKAGE).tar ./$(PACKAGE)
+ $(RM) -rf $(PACKAGE)
+ $(GZIP) -9 $(PACKAGE).tar
+
+$(PACKAGE).aux: $(PACKAGE).dtx $(PACKAGE).sty
+ $(LATEX) $(PACKAGE).dtx
+
+$(PACKAGE).dvi: $(PACKAGE).dtx $(PACKAGE).sty
+ $(LATEX) $(PACKAGE).dtx
+ $(LATEX) $(PACKAGE).dtx
+ $(LATEX) $(PACKAGE).dtx
+
+$(PACKAGE).glo: $(PACKAGE).dtx $(PACKAGE).sty
+ $(LATEX) $(PACKAGE).dtx
+
+$(PACKAGE).gls: $(PACKAGE).glo
+ -$(MAKEINDEX) -s gglo.ist -o $(PACKAGE).gls $(PACKAGE).glo
+
+$(PACKAGE).idx: $(PACKAGE).dtx $(PACKAGE).sty
+ $(LATEX) $(PACKAGE).dtx
+
+$(PACKAGE).ind: $(PACKAGE).idx
+ -$(MAKEINDEX) -s gind.ist $(PACKAGE).idx
+
+$(PACKAGE).pdf: $(PACKAGE).dtx $(PACKAGE).sty
+ $(PDFLATEX) $(PACKAGE).dtx
+ $(PDFLATEX) $(PACKAGE).dtx
+ $(PDFLATEX) $(PACKAGE).dtx
+
+$(PACKAGE).ps: $(PACKAGE).dvi
+ $(DVIPS) -o $(PACKAGE).ps $(PACKAGE).dvi
+
+$(PACKAGE).sty: $(PACKAGE).dtx $(PACKAGE).ins
+ $(LATEX) $(PACKAGE).ins
+
+test1: $(PACKAGE).sty
+ $(LATEX) test1.tex
+ $(LATEX) test1.tex
+ $(LATEX) test1.tex
+ $(DVIPS) -o test1.ps test1.dvi
+
+test2: $(PACKAGE).sty
+ $(LATEX) test2.tex
+ $(LATEX) test2.tex
+ $(DVIPS) -o test2.ps test2.dvi
+
+test3: $(PACKAGE).sty
+ $(LATEX) test3.tex
+ $(LATEX) test3.tex
+ $(LATEX) test3.tex
+ $(DVIPS) -o test3.ps test3.dvi
+
+test4: $(PACKAGE).sty
+ $(PDFLATEX) test4.tex
+ $(MAKEINDEX) test4.idx
+ $(PDFLATEX) test4.tex
+ $(PDFLATEX) test4.tex
+
+test5: $(PACKAGE).sty
+ $(LATEX) test5.tex
+ $(LATEX) test5.tex
+ $(LATEX) test5.tex
+ $(DVIPS) -o test5.ps test5.dvi
+
+test6: $(PACKAGE).sty
+ $(LATEX) test6.tex
+ $(LATEX) test6.tex
+ $(LATEX) test6.tex
+ $(DVIPS) -o test6.ps test6.dvi
+
+test7: $(PACKAGE).sty
+ $(LATEX) test7.tex
+ $(LATEX) test7.tex
+ $(A2PS) -o test7a.ps test7.log
+ $(DVIPS) -o test7b.ps test7.dvi
diff --git a/macros/latex/contrib/subfig/README b/macros/latex/contrib/subfig/README
new file mode 100644
index 0000000000..d3312fe53c
--- /dev/null
+++ b/macros/latex/contrib/subfig/README
@@ -0,0 +1,99 @@
+Manifest and Documentation for the `subfig' package (version 1.3).
+------------------------------------------------------------------------
+
+This directory contains version 1.3 of the subfig package. In a UNIX
+or UNIX-like command shell, use `make' to extract the subfig package
+and run the local tests.
+
+
+MANIFEST:
+---------
+ The following files as well as the derivative files `subfig.sty' and
+ `altsf.cfg' constitute the subfig package and are considered as "the
+ work" under the LaTeX Project Public License (LPPL 1.3 or later).
+
+Makefile UNIX makefile to extract the subfig package
+ and related material.
+README This file.
+subfig.dtx The documented subfig package.
+subfig.ins The subfig package installation file.
+subfig.pdf The subfig package documentation (in PDF).
+test1.tex Test one: Basic checks and examples.
+test2.tex Test two: Check for extra space around figure
+test3.tex Test four: Test of optional args and \subref.
+test4.tex Test four: Test of interaction with hyperref.
+test5.tex Test five: Test of continued figures.
+test6.tex Test six: Test of options and option interaction.
+test7.tex Test seven: Test of class/package misuse of \let.
+
+
+FILES AFTER `make':
+-------------------
+Makefile UNIX makefile to extract the subfig package
+ and related material.
+README This file.
+altsf.cfg A subfig configuration file (which make the subfig
+ package act similar to the subfigure package).
+ltxdoc.cfg Configuration file to print change history and
+ index on the subfig package documentation.
+subfig.dtx The documented subfig package.
+subfig.ins The subfig package installation file.
+subfig.pdf The subfig package documentation (in PDF).
+subfig.ps The subfig package documentation (in PostScript).
+subfig.sty The subfig package
+test1.ps Results of test one.
+test1.tex Test one: Basic checks and examples.
+test2.ps Results of test two.
+test2.tex Test two: Check for extra space around figure
+test3.ps Results of test three.
+test3.tex Test four: Test of optional args and \subref.
+test4.pdf Results of test four.
+test4.tex Test four: Test of interaction with hyperref.
+test5.ps Results of test five.
+test5.tex Test five: Test of continued figures.
+test6.ps Results of test six.
+test6.tex Test six: Test of options and option interaction.
+test7.tex Test seven: Test of class/package misuse of \let.
+test7a.ps Log from test seven run.
+test7b.ps Results of test seven.
+
+
+NOTES:
+------
+
+1. To verify the results of the test(s) (which are run using the
+ preferred options), compare with the test(s) found at:
+ http://www.cs.cmu.edu/~sdc/latex/subfig.13/
+
+2. This version of the subfig package removes a "feature" which
+ allowed a line break to occur between two subfloats separated
+ by whitespace instead of requiring an explicit "\\". If this
+ "feature" was used to position sub-floats, they may now be
+ incorrectly displayed.
+
+ If this occurs, the solution is to add an expicit linebreak
+ between the problem sub-floats. For example, the following
+ to the left would seem to work correctly, but suppressed
+ the "farskip" placing the figures too close together and
+ will, now, no longer work. It should be written as on the
+ left.
+
+ \begin{figure} \begin{figure}
+ \centering \centering
+ \subfloat[One.]{...}% \subfloat[One.]{...}
+ \hspace{.25in}% \hspace{.25in}%
+ \subfloat[Two.]{...} \subfloat[Two.]{...} \\
+ \subfloat[Three.]{...}% \subfloat[Three.]{...}
+ \hspace{.25in}% \hspace{.25in}%
+ \subfloat[Four.]{...}% \subfloat[Four.]{...}
+ \caption{Simple Case.} \caption{Simple Case.}
+ \end{figure} \end{figure}
+
+
+
+
+
+
+
+
+
diff --git a/macros/latex/contrib/subfig/subfig.dtx b/macros/latex/contrib/subfig/subfig.dtx
new file mode 100644
index 0000000000..1b1a89a1fd
--- /dev/null
+++ b/macros/latex/contrib/subfig/subfig.dtx
@@ -0,0 +1,4714 @@
+% \iffalse % meta-comment
+% subfig.dtx
+% Sub-float macros for use with the LaTeX figure/table environments.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+% Copyright © 2003, 2004, 2005 Steven Douglas Cochran.
+%
+% This work (the subfig package) may be distributed and/or modified
+% under the conditions of the LaTeX Project Public License, either
+% version 1.3 of this license or (at your option) any later version.
+% The latest version of this license is in
+% http://www.latex-project.org/lppl.txt
+% and version 1.3 or later is part of all distributions of LaTeX
+% version 2003/12/01 or later.
+%
+% This work has the LPPL maintenance status "author-maintained".
+%
+% This Current Maintainer of this work is Steven Douglas Cochran.
+%
+% This work consists of all files listed under "MANIFEST" in the
+% README file distributed with the subfig package.
+%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% @LaTeX-style-file{
+%% author = "Steven Douglas Cochran",
+%% version = "1.3",
+%% date = "2005/07/05",
+%% time = "04:19:08",
+%% filename = "subfig.sty",
+%% address = "Digital Mapping Laboratory,
+%% School of Computer Science
+%% Carnegie-Mellon University,
+%% 5000 Forbes Avenue
+%% Pittsburgh, PA 15213-3890
+%% USA",
+%% telephone = "+1 412.268.5654",
+%% fax = "+1 412.268.5576",
+%% email = "cochran@ieee.org",
+%% codetable = "ISO/ASCII",
+%% keywords = "LaTeX, float, sub-float, continued figure",
+%% supported = "yes",
+%% abstract = "LaTeX package for providing support for the
+%% inclusion of small, `sub', figures and tables. It
+%% simplifies the positioning, captioning and
+%% labeling of them within a single figure or table
+%% environment. In addition, this package allows
+%% such sub-captions to be written to the List of
+%% Figures or List of Tables if desired."
+%% }
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% \fi
+%
+% \catcode`\^=14 ^ We will use a ^ for a comment.
+%
+% \def\filename{subfig.dtx}
+% \def\fileversion{version 1.3}
+% \def\filedate{2005/06/28} ^ Last code change
+% \def\docdate{2005/07/05} ^ Last documentation change
+%
+% \CheckSum{1183}
+%
+% \iffalse
+%<*driver>
+\NeedsTeXFormat{LaTeX2e}[1994/12/01]
+\ProvidesFile{subfig.dtx}
+\documentclass[a4paper]{ltxdoc}
+\usepackage{hyperref}
+\makeatletter
+ \@twosidetrue
+ \def\cmd#1{\cs{\expandafter\cmd@to@cs\string#1}}
+ \def\cmd@to@cs#1#2{#2}
+ \DeclareRobustCommand\cs[1]{\textbackslash #1}
+ %
+ % Widen the standard ltxdoc pagesize, just a little.
+ %
+ \setlength\topmargin {0pt}
+ \setlength\headheight {12pt}
+ \setlength\headsep {24pt}
+ \setlength\@tempdima {\paperheight}
+ \addtolength\@tempdima {-2in}
+ \addtolength\@tempdima {-\headheight}
+ \addtolength\@tempdima {-\headsep}
+ \divide\@tempdima \baselineskip
+ \@tempcnta \@tempdima
+ \setlength\textheight {\@tempcnta\baselineskip}
+ %
+ \setlength\textwidth {\paperwidth}
+ \addtolength\textwidth {-3in}
+ \addtolength\textwidth {-20pt}
+ \setlength\oddsidemargin {1in}
+ \addtolength\textwidth {20pt}
+ \setlength\evensidemargin {\oddsidemargin}
+ %
+ \setlength\marginparsep {8pt}
+ \setlength\marginparwidth {2in}
+\makeatother
+\RequirePackage[format=hang,justification=RaggedRight]{caption}[2005/06/26]
+\RequirePackage[format=default,justification=justified,%
+ lofdepth=2,lotdepth=2,subrefformat=parens]{subfig}[2005/06/28]
+% Create map and submap floats for example
+\usepackage{float}
+\newfloat{map}{tbph}{lom}
+\restylefloat*{map}
+\floatstyle{plain}
+\floatname{map}{Map}
+\captionsetup[map]{position=top}
+\newsubfloat[position=top,listofformat=simple]{map}
+\newcommand{\listofmaps}{\listof{map}{List of Maps}}
+\setcounter{lomdepth}{2}
+% Other packages
+\usepackage{color}
+\definecolor{lightgray}{gray}{.8}
+\IfFileExists{booktabs.sty}{%
+ \usepackage{booktabs}%
+}{%
+ \PackageWarning{subfig}%
+ {booktabs.sty is missing.\MessageBreak
+ I'm emulating the needed commands, but you should\MessageBreak
+ install it for better results.}%
+ \let\toprule\hline
+ \let\midrule\hline
+ \let\bottomrule\hline
+}
+% Handy temp values.
+\newbox{\tempbox}
+\newdimen{\tempdima}
+\newdimen{\tempdimb}
+% Make a SubFloat environment.
+\makeatletter
+\newbox\sf@box
+\newenvironment{SubFloat}[2][]%
+ {\def\sf@one{#1}%
+ \def\sf@two{#2}%
+ \setbox\sf@box\hbox
+ \bgroup}%
+ { \egroup
+ \ifx\@empty\sf@two\@empty\relax
+ \def\sf@two{\@empty}
+ \fi
+ \ifx\@empty\sf@one\@empty\relax
+ \subfloat[\sf@two]{\box\sf@box}%
+ \else
+ \subfloat[\sf@one][\sf@two]{\box\sf@box}%
+ \fi}
+\makeatother
+% Adjust internal stuff
+\makeatletter
+\IfFileExists{multirow.sty}{%
+ \usepackage{multirow}%
+}{%
+ \PackageWarning{subfig}%
+ {multirow.sty is missing.\MessageBreak
+ I'm emulating the needed command, but you should\MessageBreak
+ install it for better results.}%
+ \def\multirow##1##2##3{%
+ \@tempcnta=##1%
+ \@tempdima\@tempcnta\ht\@arstrutbox
+ \advance\@tempdima\@tempcnta\dp\@arstrutbox
+ \ifnum\@tempcnta<0%
+ \@tempdima=-\@tempdima
+ \fi
+ \if*##2
+ \setbox0\vtop to \@tempdima{%
+ \vfill
+ \raggedright
+ \hbox{\strut##3\strut}%
+ \vfill}%
+ \else
+ \setbox0\vtop to \@tempdima{%
+ \hsize##2
+ \@parboxrestore
+ \vfill
+ \raggedright
+ \strut##3\strut\par
+ \vfill}%
+ \fi
+ \ht0\z@
+ \dp0\z@
+ \ifnum\@tempcnta<0%
+ \advance\@tempdima-\dp\@arstrutbox
+ \else
+ \@tempdima=\ht\@arstrutbox
+ \fi
+ \leavevmode
+ \vtop{%
+ \vskip-\@tempdima
+ \box0%
+ \vss}}}
+\makeatother
+% Penalty Settings
+\setlength\hfuzz{100pt} \setlength\vfuzz{100pt} \clubpenalty=10000
+\widowpenalty=10000 \displaywidowpenalty=5000 \brokenpenalty=5000
+\begin{document}
+ \pagestyle{empty}
+ \DocInput{subfig.dtx}
+\end{document}
+%</driver>
+%
+%<*ltxdoc>
+\AtBeginDocument{%
+% \OnlyDescription % comment out for implementation details
+ \EnableCrossrefs
+ \RecordChanges
+ \CodelineIndex
+}
+\AtEndDocument{
+ \newpage
+ \PrintChanges
+ \newpage
+ \PrintIndex
+}
+%</ltxdoc>
+%
+% \fi
+% \newcommand*{\Lopt}[1]{\textsf{#1}} ^ Package options
+% \newcommand*{\Lfile}[1]{\texttt{#1}} ^ File names
+% \newcommand*{\Lpack}[1]{\textsf{#1}} ^ Package names
+% \newcommand*{\Lenv}[1]{\texttt{#1}} ^ Environment names
+% \newcommand*{\Lcount}[1]{\textsl{\small#1}} ^ Counter names
+% \newcommand*{\Lif}[1]{\textsc{\bf#1}} ^ \if names
+% \newcommand*{\Lvar}[1]{``#1''} ^ variable names
+% \newcommand*{\Lkv}[1]{`#1'} ^ keyword/value names
+%
+% ^^
+% ^^ NOTE: Hacks added to make the final format (if any)
+% ^^ are marked with the comment ``^finalhack''.
+% ^^
+%
+% \changes{v1.0}{21 August 2003}{Created (based on the \Lpack{subfigure}
+% package.}
+% \changes{v1.2}{28 January 2004}{Changed the names \Lkv{topskip} to
+% \Lkv{farskip}, and \Lkv{bottomskip} to \Lkv{nearskip}. Added
+% a hyphen to ``sub-float'' and ``sub-caption'' where they occurs as
+% regular text to match the usage in The \LaTeX\ Companion. Also fixed
+% bug in the alternative code if the \Lpack{multirow} package is not found.}
+% \changes{v1.3}{26 March 2004}{Lots of documentation changes. I hope
+% that they are improvements!}
+%
+% \DoNotIndex{\@@@,\@auxout,\@bsphack,\@classoptionslist,\@currbox}
+% \DoNotIndex{\@currext,\@currname\@dblarg,\@dottedtocline,\@ehd,\@empty}
+% \DoNotIndex{\@esphack,\@expandtwoargs,\@firstofone,\@firstoftwo}
+% \DoNotIndex{\@floatpenalty,\@for,\@gobble,\@ifnextchar}
+% \DoNotIndex{\@ifpackageloaded,\@ifstar,\@ifundefined,\@largefloatcheck}
+% \DoNotIndex{\@latex@error,\@minipagefalse,\@namedef,\@nameuse,\@ne}
+% \DoNotIndex{\@onlypreamble,\@parboxrestore,\@ptionlist,\@removeelement}
+% \DoNotIndex{\@secondoftwo,\@setminipage,\@undefined}
+% \DoNotIndex{\@unprocessedoptions,\@unusedoptionlist,\@xaddvskip}
+% \DoNotIndex{\addcontentsline,\addtocounter,\advance,\alph,\arabic}
+% \DoNotIndex{\AtBeginDocument,\AtEndOfPackage,\begin,\begingroup}
+% \DoNotIndex{\bfseries,\bgroup,\box,\cmd,\csname,\CurrentOption,\def}
+% \DoNotIndex{\define@key,\do,\dp,\edef,\egroup,\else,\end,\endcsname}
+% \DoNotIndex{\endgroup,\endinput,\expandafter,\fi,\footnotesize,\gdef}
+% \DoNotIndex{\global,\hb@xt@,\hbox,\hrule,\hss,\ht,\if@minipage,\ifcase}
+% \DoNotIndex{\ifdim,\ifnum,\ifx,\ignorespaces,\InputIfFileExists}
+% \DoNotIndex{\itshape,\l@addto@macro,\label,\Large,\large,\lastskip}
+% \DoNotIndex{\leaders,\leavevmode,\let,\long,\m@ne,\mdseries}
+% \DoNotIndex{\NeedsTeXFormat,\newcounter,\newdimen,\newif,\newlabel}
+% \DoNotIndex{\newskip,\next,\noexpand,\normalsize,\numberline,\or,\p@}
+% \DoNotIndex{\PackageError,\PackageWarning,\pageref,\par,\parbox}
+% \DoNotIndex{\protect,\protected@edef,\protected@write,\ProvidesPackage}
+% \DoNotIndex{\ref,\refstepcounter,\relax,\RequirePackage,\rmfamily}
+% \DoNotIndex{\romannumeral,\scriptsize,\scshape,\setbox,\setcounter}
+% \DoNotIndex{\sffamily,\slshape,\small,\space,\string,\strip@period}
+% \DoNotIndex{\the,\thepage,\thr@@,\ttfamily,\tw@,\typeout,\upshape}
+% \DoNotIndex{\value,\vbox,\vrule,\vskip,\vtop,\wd,\xdef,\z@}
+%
+% ^ Allow a little more freedom in typesetting floats.
+% \setcounter{topnumber}{8}
+% \def\topfraction{.95}
+% \setcounter{bottomnumber}{8}
+% \def\bottomfraction{.95}
+% \setcounter{totalnumber}{8}
+% \def\textfraction{.05}
+% \def\floatpagefraction{.95}
+% \setcounter{dbltopnumber}{8}
+% \def\dbltopfraction{.95}
+% \def\dblfloatpagefraction{.9}
+%
+% ^ Useful hacks
+% \def\eg{{\em e.g.}}
+% \def\ie{{\em i.e.}}
+% \def\etc{{\em etc.}}
+%
+% ^ Add some space above any footnotes.
+% \skip\footins=1.5\baselineskip
+%
+% ^ Setup for illustrations.
+% \def\sc{Short caption.}
+% \def\lc{Non fuit causa cur postularet. Qui hoc intellegi
+% potest? Naevio neque ex societatis ratione neque
+% privatim quicquam debuit Quinctius.\par
+% Quis huic rei testis est? Idem qui acerrimus
+% adversarius; in hanc rem te, te inquam, testem,
+% Naevi, citabo.}
+% \def\lcX{Non fuit causa cur postularet. Qui hoc intellegi
+% potest? Naevio neque ex societatis ratione neque
+% privatim quicquam debuit Quinctius.\par
+% Quis huic rei testis est? Idem qui acerrimus
+% adversarius; in hanc rem te, te inquam, testem,
+% Naevi, citabo.\par
+% Annum et eo diutius post mortem C. Quincti fuit
+% in Gallia tecum simul Quinctius.}
+% \def\b{\fboxsep=-\fboxrule
+% \fbox{\hbox to 2.0in{\vbox to 2mm{\vfil\null}\hfil}}}
+% \def\B#1#2{%
+% \fcolorbox{black}{#1}{%
+% \hbox to 1.9in{\vbox to 4mm{\vss\hbox to 1.9in{%
+% \hfil[\texttt{#2}]\hfil}\vss}}}}
+% \def\g{\hspace{.5in}}
+%
+% ^ General drop for text.
+% \def\drop#1#2{\smash{\lower#1\hbox{#2}}}
+%
+% \makeatletter
+% ^ Remove some space above minipage footnotes.
+% \skip\@mpfootins=2.6\p@
+%
+% ^ Define a raggedright for use in tabular's.
+% \def\rr{%
+% \@rightskip\@flushglue
+% \rightskip\@rightskip
+% \leftskip\z@
+% \parindent\z@}
+%
+% ^ Turn off any list entries by ``eating'' any \addcontentsline stuff.
+% \def\eatthree#1#2#3{}^
+% \def\turnofflistentry{\let\addcontentsline=\eatthree}
+%
+% ^ Special \footnotetext command for placing footnotes in strange places.
+% \def\tabFootnotetext#1{^
+% \vbox{^
+% \vskip\skip\@mpfootins
+% \footnotesize
+% \@parboxrestore
+% \edef\@currentlabel{\csname p@footnote\endcsname\@thefnmark}^
+% \@makefntext{\rule{\z@}{\footnotesep}\ignorespaces#1\strut}}}
+%
+% ^ Templates for showing options.
+% \newcommand{\figfont}[3]{%
+% \captionsetup[subfigure]{#2=#3}^
+% \subfloat[{Option [\texttt{#2=#3}].}]^
+% [\sc]{\label{#1}\B{white}{#2=#3}}}
+% \newcommand{\figfontlist}[3]{^
+% \captionsetup[subfigure]{#2={#3}}^
+% \subfloat[{Option [\texttt{#2=\{#3\}}].}]^
+% [\sc]{\label{#1}\B{white}{#2=\{#3\}}}}
+% \newcommand{\figfontlistS}[3]{^
+% \captionsetup[subfigure]{#2={#3}}^
+% \subfloat[{Option [\texttt{#2=\{#3\}}].}]^
+% [\sc]{\label{#1}\B{lightgray}{#2=\{#3\}}}}
+% \newcommand{\figshape}[3][\@empty]{^
+% \begin{figure}^
+% \centering
+% \captionsetup[subfigure]{#3}^
+% \subfloat[][\sc]{\b}\g\subfloat[][\lc\label{#2b}]{\b}^
+% \ifx\@empty#1\relax
+% \caption{Options [\texttt{#3}].}^
+% \else
+% \caption[Options [\texttt{#1}{].}]{Options [\texttt{#3}].}^
+% \fi
+% \label{#2}^
+% \end{figure}}
+%
+% \makeatother
+%
+% \title{The \Lpack{Subfig} Package\footnote{This paper documents
+% the \Lpack{subfig} package \fileversion, last revised
+% \filedate.}\\[10pt]}
+% \author{Steven Douglas Cochran\\[15pt]
+% Digital Mapping Laboratory, School of Computer Science \\
+% Carnegie-Mellon University, 5000 Forbes Avenue \\
+% Pittsburgh, PA 15213--3890 \\
+% USA\\[15pt]
+% \texttt{cochran@ieee.org}\\
+% \texttt{sdc@cs.cmu.edu}}
+% \date{\docdate}
+%
+% \addtolength\oddsidemargin{-.5in}
+% \maketitle\thispagestyle{empty}
+%
+% \begin{abstract}
+% \noindent
+% This article documents the \LaTeX\ package `\Lpack{subfig}', which
+% provides support for the inclusion of small, `sub', figures and
+% tables. It simplifies the positioning, captioning and labeling of
+% such objects within a single \Lenv{figure} or \Lenv{table} environment
+% and to continue a \Lenv{figure} or \Lenv{table} across multiple pages.
+% In addition, this package allows such sub-captions to be written to a
+% List-of-Floats page as desired. The `\Lpack{subfig}' package requires
+% the `\Lpack{caption}' package by H.A. Sommerfeldt and replaces the
+% older `\Lpack{subfigure}' package.
+% \end{abstract}
+%
+% \cleardoublepage
+% \addtolength\oddsidemargin{.5in}
+% \setcounter{page}{1}
+% \pagenumbering{roman}
+% \pagestyle{myheadings}
+% \markboth{The \Lpack{Subfig} Package}{\slshape\rightmark}
+% \renewcommand{\sectionmark}[1]{\markright{\thesection\quad#1}}
+%
+% \tableofcontents
+% \listoffigures
+% \listoftables
+% \listofmaps
+%
+% \cleardoublepage
+% \setcounter{page}{1}
+% \pagenumbering{arabic}
+% \section{Introduction}
+%
+% This package provides support for the manipulation and reference of
+% small or `sub' floats within a single floating (\eg, \Lenv{figure} or
+% \Lenv{table}) environment\footnote{Section~\ref{sec:customfloat}
+% describes how to add support for additional \Lenv{float}
+% environments.} It is convenient to use this package when your
+% sub-floats are to be separately captioned, referenced, or when such
+% sub-captions are to be included on a List-of-Floats page.
+%
+% This package is a replacement for the \Lpack{subfigure} package, from
+% which it was derived. However, the new \Lpack{subfig} package is not
+% completely backward compatible (see section~\ref{sec:back-compat}.
+% Therefore, a new name was called for. The newer package is smaller
+% and easier to use than the older package, however, it now uses the
+% following additional packages:
+% \begin{tabbing}
+% \qquad $\bullet\space$ \Lpack{ragged2e} \= (required) \kill
+% \qquad $\bullet\space$ \Lpack{caption} \> (required)\\
+% \qquad $\bullet\space$ \Lpack{everysel} \> (optional)\\
+% \qquad $\bullet\space$ \Lpack{keyval} \> (required)\\
+% \qquad $\bullet\space$ \Lpack{ragged2e} \> (optional)
+% \end{tabbing}
+% It will work without the \Lpack{ragged2e} and \Lpack{everysel}
+% packages if you do not use the following justification options:
+% \Lkv{Center}, \Lkv{RaggedRight} and \Lkv{RaggedLeft}. The other
+% justification options \Lkv{center}, \Lkv{raggedright} and
+% \Lkv{raggedleft} will work without the above two packages.
+%
+% {\scshape\bf Note}: If the \Lpack{ragged2e} package is present, than
+% the \Lpack{caption} package will load it and it will, in turn, load
+% the \Lpack{everysel} package. This happens whether or not you will
+% be using the justification options that require it. If it cannot
+% find the \Lpack{ragged2e} package, than the \Lpack{caption} package
+% will print a message that \Lkv{RaggedRight}, \etc\ will not be
+% available.
+%
+% \subsection{Do You Need This Package?}
+%
+% Before using the \Lpack{subfig} package, consider the following to
+% see if you really need it.
+% \begin{enumerate}
+% \item If you simply want to center your figure on the page, then you
+% can use |\centerline|, |\centering| or the \Lenv{center}
+% environment to do so, see \cite[page 112]{Lamp94}.
+% \item If your figure has a short width or if you wrap your figure in
+% a |\parbox| or a \Lenv{minipage} of a short width, then you
+% can place multiple figures or tables side-by-side\footnote{You
+% might have to use the optional position arguments `[b]' or
+% `[t]' if the figures are of different heights, see
+% sections~\ref{sec:examples} and \ref{sec:faq:align} as well as
+% \cite[page 218]{Lamp94}.}. For example, the following will
+% put two images side-by-side in a single figure as shown in
+% figure~\ref{fig:1figs}:
+% \begin{verbatim}
+% \begin{figure}%
+% \centering
+% \parbox{1.2in}{...figure code...}%
+% \qquad
+% \begin{minipage}{1.2in}%
+% ...figure code...
+% \end{minipage}%
+% \caption{Here are two figures side-by-side.}%
+% \label{fig:1figs}%
+% \end{figure}
+% \end{verbatim}
+% \begin{figure}^
+% \centering
+% \parbox{1.2in}{^
+% \fboxsep=-\fboxrule
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\null\vfil}\hfil}}}^
+% \qquad
+% \begin{minipage}{1.2in}^
+% \fboxsep=-\fboxrule
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\null\vfil}\hfil}}^
+% \end{minipage}^
+% \caption{Here are two figures side-by-side.}^
+% \label{fig:1figs}^
+% \vspace{12pt}
+% \end{figure}
+% \item Finally, if you place the caption inside the |\parbox| or
+% \Lenv{minipage}, then the width of the caption will be limited
+% to the width of the parbox or minipage as shown in
+% figures~\ref{fig:2figsA} and \ref{fig:2figsB}:
+% \begin{verbatim}
+% \begin{figure}%
+% \centering
+% \parbox{1.2in}{%
+% ...figure code...
+% \caption{First.}%
+% \label{fig:2figsA}}%
+% \qquad
+% \begin{minipage}{1.2in}%
+% ...figure code...
+% \caption{Second.}%
+% \label{fig:2figsB}%
+% \end{minipage}%
+% \end{figure}
+% \end{verbatim}
+% \begin{figure}^
+% \centering
+% \parbox{1.2in}{^
+% \fboxsep=-\fboxrule
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\vfil\null}\hfil}}^
+% \caption{First.}^
+% \label{fig:2figsA}}^
+% \qquad
+% \begin{minipage}{1.2in}^
+% \fboxsep=-\fboxrule
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\vfil\null}\hfil}}^
+% \caption{Second.}^
+% \label{fig:2figsB}^
+% \end{minipage}^
+% \vspace{12pt}
+% \end{figure}
+% \end{enumerate}
+%
+% For more information on typesetting figures and tables, see
+% the book ``The \LaTeX\ Companion'' by Mittelbach and Goossens
+% \cite[\textsection~5 \& 6]{Mitt-etal04} and the document ``Using
+% Imported Graphics in \LaTeXe'' by Keith Reckdahl \cite{Reck97}.
+%
+% \section{Package Commands}
+%
+% In this section, we describe the commands defined by the
+% \Lpack{subfig} package and three commands from the \Lpack{caption}
+% package that are needed or very useful in setting and changing the
+% package options.
+%
+% \subsection{Preamble Commands}
+%
+% In the preamble of your \LaTeX\ file, you may load the \Lpack{subfig}
+% package, define new and extended options and create new sub-floats.
+% See the documentation for the \Lpack{caption} package for other
+% preamble commands that may be used to customize the caption portion of
+% a sub-float.
+%
+% \subsubsection{The \cmd{\usepackage} Command}
+% \begin{quote}
+% |\usepackage|\oarg{KV-list}\{subfig\}
+% \end{quote}
+%
+% \noindent
+% The optional argument list to the \Lpack{subfig} package is in the
+% form of a KV-list or ``Key-Value list'' (see \cite{Carl99} for more
+% detail). The KV-list is composed of a comma-separated list of
+% keywords with optional values. The keywords without a value indicate
+% that a default value is to be used. This list is bound to the
+% variable \Lvar{subfloat} and is re-evaluated each time a |\subfloat| is
+% encountered. These initial values may also be viewed, removed or
+% changed with the |\showcaptionsetup|[uniq]\{subfloat\},
+% |\clearcaptionsetup|[subfloat] or
+% |\captionsetup|[subfloat]\marg{KV-list} commands.
+%
+% \subsubsection{The \cmd{\newsubfloat} Command}
+% \label{sec:newsubfloat}
+% \begin{quote}\DescribeMacro{\newsubfloat}
+% |\newsubfloat|\oarg{KV-list}\marg{float-name}
+% \end{quote}
+%
+% \noindent
+% This command creates all of the internal structures and commands
+% needed to support the new subfloat (the corresponding float structure
+% must already exist, see section~\ref{sec:customfloat}). For instance
+% when the \Lvar{subfigure} is created the set of internals instantiated
+% are shown in table~\ref{tab:newsubfloat}.
+% \begin{table}
+% \centering
+% \caption{Example of internals created by a \cmd{\newsubfloat} ``subfigure''.}^
+% \label{tab:newsubfloat}^
+% \begin{tabular}{llp{2.2in}} \toprule
+% {\bf Function/} & & \\
+% {\bf \quad Keyword} & {\bf Default} & {\bf Description} \\ \midrule
+% |\c@subfigure| & 0 & Internal counter variable. \\
+% |\c@subfigure@save| & 0 & Internal variable to save last counter value
+% in case of a continued figure. \\
+% |\subfigurename| & & Name prepended to the subcaption
+% number (empty by default). \\
+% |\p@subfigure| & |\thefigure| & Figure number prepended to the subcaption
+% number in references via |\ref|. \\
+% |\thesubfigure| & |\alph{subfigure}| & Format of the subcaption number. \\
+% |\ext@subfigure| & lof & List-of-Floats file extension. \\
+% |\l@subfigure| & {\textbackslash@dottedxxxline\{figure\}}
+% & Format of List-of-Floats entry. \\
+% & \multicolumn{2}{l}{{\qquad\{lof\}\{2\}\{\textbackslash sf@indent\}}}
+% \\
+% & \multicolumn{2}{l}{{\qquad\qquad\{\textbackslash sf@numwidth\}\}}}
+% \\
+% |\c@lofdepth| & 1 & List-of-Floats depth variable. \\
+% \Lkv{lofdepth} & 2 & Sets |\c@lofdepth|. \\ \bottomrule
+% \end{tabular}
+% \end{table}
+%
+% The two internals \cmd{\subfigurename} and \cmd{\thesubfigure} are left
+% for easy adjustment by the user, the rest should not be directly
+% changed under normal circumstances. Note that you may change the
+% values of any counter variable |\c@cnt| with the counter functions
+% |\setcounter| or |\addtocounter| (see \cite[pg.~194]{Lamp94}). Also,
+% the internals |\sf@indent| and |\sf@numwidth| may be change with the
+% keywords \Lkv{listofindent} and \Lkv{listofnumwidth}, respectively.
+%
+% Once the new float is created, the KV-list is placed at the top ``level''.
+% For example the options for the above {\it subfigure\/} are added to the
+% name \Lvar{subfigure}. See section~\ref{sec:layers} below, for more detail
+% about option layers.
+%
+% \subsubsection{The \cmd{\DeclareCaptionListOfFormat} Command}
+% \begin{quote}\DescribeMacro{\DeclareCaptionListOfFormat}
+% |\DeclareCaptionListOfFormat|\marg{keyword value}\marg{code}
+% \end{quote}
+%
+% \noindent
+% The |\DeclareCaptionListOfFormat| command allows the specification of
+% how the sub-caption references are shown on the List-of-Floats pages.
+% See section~\ref{sec:lof} for more details on setting up and adjusting
+% the List-of-Floats entries.
+%
+% The \marg{code} section is passed two parameters that may be used or ignored.
+% These are the value of the associated \cmd{\p@<sub-float>} type and the
+% \cmd{\the<sub-float>} respectively.
+%
+% \subsubsection{The \cmd{\DeclareSubrefFormat} Command}
+% \label{sec:declaresubrefformat}
+% \begin{quote}\DescribeMacro{\DeclareSubrefFormat}
+% |\DeclareSubrefFormat|\marg{keyword value}\marg{code}
+% \end{quote}
+%
+% \noindent
+% The |\DeclareSubrefFormat| command allows the specification of how the
+% \cmd{\subref*} command generates its reference to a sub-caption label in
+% the text.
+%
+% The \marg{code} section is passed four parameters that may be used or
+% ignored. The frist two are the values of the associated
+% \cmd{\p@$<$sub-float$>$} type and the \cmd{\the$<$sub-float$>$}
+% (\eg, \cmd{\p@subfigure} and \cmd{\thesubfigure}), like the
+% \cmd{\DeclareCaptionListOfFormat} command. The second two are the
+% {\em raw} values of the $<$float$>$ and the $<$sub-float$>$ counters.
+%
+% \subsection{General Commands}
+%
+% These commands are available within the body of the paper and the
+% commands |\captionsetup|, |\showcaptionsetup| and |\clearcaptionsetup|
+% are available anytime after loading either the \Lpack{caption} or
+% \Lpack{subfig} packages.
+%
+% \subsubsection{The \cmd{\subfloat} Command}
+% \begin{quote}\DescribeMacro{\subfloat}
+% |\subfloat|\oarg{list\_entry}\oarg{sub-caption}\marg{body}
+% \end{quote}
+%
+% \noindent
+% This command creates the sub-float in the floating environment.
+% In a \Lenv{figure} environment it creates a subfigure. The
+% required argument contains the sub-float object or ``body''. This is
+% the code that imports or creates the figure portion of the sub-float.
+%
+% The two optional arguments control the caption. If only one
+% optional argument is present, than a caption label is generated
+% and if any text is included in the optional argument, than it
+% becomes the caption argument.
+%
+% Normally, if a caption is present, it is also included on the
+% List-of-Floats page. However, if a second optional argument is
+% present, than the first one controls what is on the List-of-Floats
+% page and the second is the caption text. If the List-of-Floats
+% argument is empty, than nothing is printed on the List-of-Floats
+% page. Otherwise, if there is text in the List-of-Floats argument,
+% than that text is used on the List-of-Floats page rather than the text
+% in the other optional argument.
+%
+% See table~\ref{tab:calling} for more detail on the |\subfloat|
+% command's arguments.
+%
+% \begin{table}^
+% \centering
+% \caption{\cmd{\subfloat} calling arguments.}^
+% \label{tab:calling}^
+% \vskip-11pt^
+% \hbox to \linewidth{\hss\begingroup\small
+% \begin{tabular}{llc} \\ \toprule
+% {\normalsize Sub-float Command}
+% & \hbox to 1in{\hss\normalsize List-of-Floats Caption}
+% & \multicolumn{1}{r}{\hbox to .25in{^
+% \hss\normalsize
+% Sub-float Caption}}
+% \\ \midrule
+% \cmd{\subfloat}\{body\}
+% & & \\
+% \cmd{\subfloat}[\space]\{body\}
+% & (b)\ \ . . . . . . . . . .
+% & (b) \\
+% \cmd{\subfloat}[Sub-caption.]\{body\}
+% & (c) Sub-caption. . . .
+% & (c) Sub-caption. \\
+% \cmd{\subfloat}[\space][Sub-caption.]\{body\}
+% & & (d) Sub-caption. \\
+% \cmd{\subfloat}[\space][\space]\{body\}
+% & & (e) \\
+% \cmd{\subfloat}[List\_entry.][Sub-caption.]\{body\}
+% & (f) List\_entry. . . .
+% & (f) Sub-caption. \\
+% \cmd{\subfloat}[List\_entry.][\space]\{body\}
+% & (g) List\_entry. . . .
+% & (g) \\ \bottomrule
+% \end{tabular}
+% \endgroup\hss}
+% \vspace{-8pt}
+% \end{table}
+%
+% \subsubsection{The \cmd{\subref} Command}
+% \changes{v1.2}{23 January 2004}{Added documentation for the
+% \cmd{\subref*} command.}
+% \begin{quote}\DescribeMacro{\subref}\DescribeMacro{\subref*}
+% |\subref|\marg{label}\\
+% |\subref*|\marg{label}
+% \end{quote}
+%
+% \noindent
+% The |\subref| command is provided to give an alternative reference to
+% a sub-float. The standard |\ref| command returns a label built by
+% concatenating the |\p@float| $+$ |\thesubfloat|, which is often of the
+% form ``1a''. The |\subref| command returns the label shown on the
+% List-of-Floats page, which may be in the format ``(a)'' (\ie, if
+% \Lkv{listofformat=subparens}, see section~\ref{sec:listsubcaptions}).
+% This may be combined with a reference to the main caption to give
+% something of the form ``1(a)'', or used within the main caption to
+% refer to a specific local sub-float.
+%
+% By default, the starred form of the command simply returns the
+% |\thesubfloat| value, which, for sub-floats is usually something
+% like ``a''. However, this may be changed by setting \Lkv{subrefformat},
+% similar to the above \Lkv{listofformat}, to a predefined format
+% (see table~\ref{tab:keywords2} or to a unique format defined with the
+% \cmd{\DeclareSubrefFormat} command (section~\ref{sec:declaresubrefformat}).
+%
+% \subsubsection{The \cmd{\ContinuedFloat} Command}
+% \label{sec:cont}
+% \begin{quote}\DescribeMacro{\ContinuedFloat}
+% |\ContinuedFloat|
+% \end{quote}
+%
+% \begin{figure}^
+% \centering
+% \subfloat[][]{^
+% \fboxsep=-\fboxrule
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\null\vfil}\hfil}}}^
+% \qquad
+% \subfloat[][]{^
+% \fboxsep=-\fboxrule
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\null\vfil}\hfil}}}
+% \vskip-4pt
+% \caption{Here are the first two figures of a continued figure.}^
+% \label{fig:cont}^
+% \end{figure}
+%
+% \begin{figure}^
+% \ContinuedFloat
+% \centering
+% \subfloat[][]{^
+% \fboxsep=-\fboxrule
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\null\vfil}\hfil}}}^
+% \qquad
+% \subfloat[][]{^
+% \fboxsep=-\fboxrule
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\null\vfil}\hfil}}}
+% \vskip-4pt
+% \caption[]{Here are the last two figures of a continued figure.}^
+% \label{fig:cont2}^
+% \end{figure}
+%
+% \noindent
+% It sometimes occurs, especially when using sub-floats, that a single
+% figure needs to be continued across pages. The |\ContinuedFloat|
+% command is placed at the beginning of the floating environment or
+% after changing |\@captype| inside the floating environment to make the
+% next figure, table or other floating |\caption| a continuation of the
+% last float |\caption| of the same type. It does this by saving the
+% sub-float numbering internally and keeping the float numbering
+% from advancing.
+%
+% In order to keep subsequent float entries from appearing on the
+% List-of-Floats page, you can use the |\caption| command with the
+% optional argument present, but empty; as shown in
+% figure~\ref{fig:cont} (and on the list-of-figures
+% page).\footnote{Note: This only works if the \Lpack{caption} package
+% is active. If the \Lkv{caption=true} option is used to load the
+% \Lpack{caption} package or the \Lpack{subfig} package, than an empty
+% optional argument to the \cmd{\caption} command generates a
+% List-of-Floats entry with no caption text unless the document class
+% redefines the \cmd{\caption} command otherwise.} We also suppress
+% the sub-caption entry with the optional List-of-Floats page argument
+% empty since there is no accompanying text.
+%
+% \begin{verbatim}
+% \begin{figure}%
+% \centering
+% \subfloat[][]{...figure code...}%
+% \qquad
+% \subfloat[][]{...figure code...}
+% \caption{Here are the first two figures of a continued figure.}%
+% \label{fig:cont}%
+% \end{figure}
+%
+% \begin{figure}%
+% \ContinuedFloat
+% \centering
+% \subfloat[][]{...figure code...}%
+% \qquad
+% \subfloat[][]{...figure code...}
+% \caption[]{Here are the last two figures of a continued figure.}%
+% \label{fig:cont}%
+% \end{figure}
+% \end{verbatim}
+%
+% \subsubsection{The \cmd{\listsubcaptions} Command}
+% \label{sec:listsubcaptions}
+% \begin{quote}\DescribeMacro{\listsubcaptions}
+% |\listsubcaptions|
+% \end{quote}
+%
+% \noindent
+% The last command provided by the \Lpack{subfig} package is the
+% |\listsubcaptions|. This is automatically called in most cases by the
+% |\caption| command and at the end of the \Lenv{float} environment.
+% However, the following example shows a rare situation in which the
+% user will every have to use the |\listsubcaptions| command as shown in
+% the definition of the |\zaptype| command.
+%
+% \begin{quote}
+% | \documentclass{article}|\\
+% | \usepackage[lofdepth,lotdepth]{subfig}|\\
+% \null\qquad\vdots\\
+% | \makeatletter|\\
+% | \def\zaptype#1{%|\\
+% | \listsubcaptions % Finish the last set of sub-floats before|\\
+% | \def\@captype{#1}}% switching to another float type.|\\
+% | \makeatother|\\
+% \null\qquad\vdots\\
+% | \begin{document}|\\
+% \null\qquad\vdots\\
+% | \listoffigures|\\
+% | \listoftables|\\
+% | \clearpage|\\
+% | \begin{table}%|\\
+% | \begin{center}%|\\
+% | \caption{Table caption.}%|\\
+% | \subfloat[Tab one]{X}\quad|\\
+% | \subfloat[Tab two]{X}\\|\\
+% | %|\\
+% | \zaptype{figure}%|\\
+% | %|\\
+% | \subfloat[Fig one]{Y}\quad|\\
+% | \subfloat[Fig two]{Y}|\\
+% | \caption{Figure caption.}%|\\
+% | \end{center}%|\\
+% | \end{table}|\\
+% \null\qquad\vdots\\
+% | \end{document}|
+% \end{quote}
+%
+% \noindent
+% {\scshape\bf Hint}: Don't change the List-of-Floats page properties
+% of any sub-floats until just before you use a |\subfloat| command,
+% or just after you have executed a |\listsubcaptions| command.
+% Otherwise, the wrong \Lkv{listofformat} or spacing might use the new
+% values for sub-floats that have not been fully processed yet.
+%
+% \subsubsection{The \cmd{\captionsetup} Command}
+% \label{sec:layers}
+% \begin{quote}\DescribeMacro{\captionsetup}
+% |\captionsetup|\oarg{variable}\marg{KV-list}
+% \end{quote}
+%
+% \noindent
+% The |\captionsetup| command is actually part of the \Lpack{caption}
+% package, but is very important is you want to adjust some option in
+% the \Lpack{subfig} package. If the optional \Lvar{variable} is left
+% out, than the settings are made at the global level; otherwise, the
+% settings are bound to the variable and executed just before being
+% used.
+%
+% \begin{figure}\centering
+% \begin{picture}(270,180)(0,5)
+% \put(5,155){\makebox(0,0){\large 1.}}
+% \put(158,155){\oval(260,30)}
+% \put(158,155){\makebox(0,0){(global)}}
+% \put(072,140){\vector(0,-1){10}}
+% \put(158,140){\vector(0,-1){10}}
+% \put(244,140){\vector(0,-1){15}}
+% \put(5,115){\makebox(0,0){\large 2.}}
+% \put(072,115){\oval(62,30)}
+% \put(072,115){\makebox(0,0){\Lvar{figure}}}
+% \put(158,115){\oval(62,30)}
+% \put(158,115){\makebox(0,0){\Lvar{table}}}
+% \put(244,115){\makebox(0,0){{\bf\dots}other floats{\bf\dots}}}
+% \put(072,100){\vector(0,-1){10}}
+% \put(158,100){\vector(0,-1){10}}
+% \put(244,105){\vector(0,-1){15}}
+% \put(5,075){\makebox(0,0){\large 3.}}
+% \put(158,075){\oval(260,30)}
+% \put(158,075){\makebox(0,0){\Lvar{subfloat}}}
+% \put(072,060){\vector(0,-1){10}}
+% \put(158,060){\vector(0,-1){10}}
+% \put(244,060){\vector(0,-1){15}}
+% \put(5,035){\makebox(0,0){\large 4.}}
+% \put(072,035){\oval(62,30)}
+% \put(072,035){\makebox(0,0){\Lvar{subfigure}}}
+% \put(158,035){\oval(62,30)}
+% \put(158,035){\makebox(0,0){\Lvar{subtable}}}
+% \put(244,035){\makebox(0,0){{\bf\dots}other sub-floats{\bf\dots}}}
+% \end{picture}^
+% \caption{Levels at which keyword/values pairs may be set to apply to,
+% or override earlier keyword/values pairs, for floats and
+% sub-floats.}^
+% \label{fig:levels}^
+% \end{figure}
+%
+% There are four ``levels'' at which you can define options to apply
+% to a sub-float (figure~\ref{fig:levels}. The first level is the
+% default or global values of the various options, which are set either
+% by the package, by a configuration file or by the optional Key-Value
+% list in the |\usepackage| command when loading the \Lpack{caption} package.
+%
+% The second ``level'' consists of those options bound to the various
+% floats. These are set by the |\captionsetup| with the optional argument
+% set to the float name. For example, the command:
+% \begin{quote}
+% |\captionsetup|[table]\{position=top\}
+% \end{quote}
+% would indicate that the \Lvar{table} caption will come before its
+% subfigures rather than after, as is the default.
+
+% The third ``level'' consists of those options bound to the special variable
+% \Lvar{subfloat}. These are value that hold across all sub-floats, but which
+% are different than the global or float values. One such item is the
+% ``font'' size, which is usually either null or {\bf normalsized}, but which
+% is set to be {\bf footnotesized} for the sub-float captions.
+%
+% The fourth ``level'' holds those options bound to a specific sub-float,
+% say \Lvar{subfigure}. An example is the caption \Lkv{position} relative
+% to the subfigure itself.
+%
+% \section{Options: Keywords and Values}
+% \changes{v1.2}{22 January 2004}{Changed \Lkv{indent} to \Lkv{indention}.}
+% \changes{v1.3}{10 October 2004}{Added \Lkv{caption}.}
+%
+% Table~\ref{tab:keywords} shows all of the formal keywords and values
+% from both the \Lpack{caption} and the \Lpack{subfig} packages. These
+% may be used on the |\usepackage| options line, or with the |\captionsetup|
+% command.
+%
+% \begin{table}^
+% \centering
+% \caption[Keywords with defaults and values.]^
+% {Keywords with defaults and values. (Note: Entries enclosed
+% in `[\ ]' indicate initial values rather than defaults.)}^
+% \label{tab:keywords}^
+% \begin{tabular}{llll} \toprule
+% \multicolumn{1}{c}{\drop{1ex}{\bf PACKAGE}}
+% & \multicolumn{1}{c}{\drop{1ex}{\bf KEYWORD}}
+% & \multicolumn{1}{c}{\bf DEFAULT}
+% & \multicolumn{1}{c}{\drop{1ex}{\bf VALUE(S)}}
+% \\
+% & & \multicolumn{1}{c}{\bf / [INIT]}
+% & \\ \midrule
+% Caption & caption\footnotemark
+% & true & $<$Boolean$>$ \\[5pt]
+% \drop{-6pt}{Package}
+% & config & ``caption.cfg'' & $<$filename$>$ \\[5pt]
+% & font (size) & [default] & \multirow{8}{*}{^
+% \begin{tabular}{@{}llll}
+% default & & & \\[3pt]
+% scriptsize & rm & md & up \\
+% footnotesize & sf & bf & it \\
+% small & tt & & sl \\
+% normalsize & & & sc \\
+% large & & & \\
+% Large & & & \\
+% \end{tabular}} \\
+% & labelfont & [default] \\
+% & textfont & [default] \\
+% & & \\
+% & & \\
+% & & \\
+% & & \\
+% & & \\[5pt]
+% & style & [default] & default \\
+% & & & ruled \\[5pt]
+% & singlelinecheck & true & $<$Boolean$>$ \\[5pt]
+% & format & [default] & default \\
+% & & & hang \\[5pt]
+% & indention & [0pt] & $<$length$>$ \\[5pt]
+% & hangindent & [0pt] & $<$length$>$ \\[5pt]
+% & width & [\cmd{\hsize}] & $<$length$>$ \\
+% & margin & [0pt] & $<$length$>$ \\[5pt]
+% & parskip & [5pt] & $<$length$>$ \\[5pt]
+% & justification & [default] & justified (default)\\
+% & & & centering \\
+% & & & centerfirst \\
+% & & & centerlast \\
+% & & & raggedleft \\
+% & & & raggedright \\
+% & & & Centering \\
+% & & & RaggedLeft \\
+% & & & RaggedRight \\[5pt]
+% & labelformat & [default] & empty \\
+% & & & simple (default) \\
+% & & & parens \\[5pt]
+% & aboveskip & [10pt] & $<$length$>$ \\[5pt]
+% & belowskip & [0pt] & $<$length$>$ \\ \bottomrule
+% \end{tabular}
+% \end{table}
+
+% \changes{v1.1}{12 January 2004}{Updated the values and the default
+% for the keyword \Lkv{listofformat} in table~\ref{tab:keywords2}.}
+% \changes{v1.2}{21 January 2004}{Fine-tuned the defaults for \Lkv{farskip},
+% \Lkv{topadjust}, \Lkv{captionskip}, and \Lkv{nearskip}.}
+% \changes{v1.2}{22 January 2004}{Removed \Lkv{widespace}.}
+% \changes{v1.3}{01 March 2004}{Added \Lkv{lofdepth} and \Lkv{lotdepth}. }
+% \changes{v1.3}{10 October 2004}{Added \Lkv{caption}.}
+% \begin{table}^
+% \ContinuedFloat
+% \centering
+% \caption[]{Keywords with Defaults and Values (cont).}^
+% \label{tab:keywords2}^
+% \begin{tabular}{llll} \toprule
+% \multicolumn{1}{c}{\drop{1ex}{\bf PACKAGE}}
+% & \multicolumn{1}{c}{\drop{1ex}{\bf KEYWORD}}
+% & \multicolumn{1}{c}{\bf DEFAULT}
+% & \multicolumn{1}{c}{\drop{1ex}{\bf VALUE(S)}}
+% \\
+% & & \multicolumn{1}{c}{\bf / [INIT]}
+% & \\ \midrule
+% Caption & labelseparator & [default] & none \\
+% Package & \quad(labelsep) & & colon (default) \\
+% (cont.) & & & period \\
+% & & & space \\
+% & & & quad \\
+% & & & newline \\[5pt]
+% & position\footnotemark
+% & & top (above) \\
+% & & & bottom (below) \\ \midrule
+% Subfig & caption\addtocounter{footnote}{-2}\footnotemark
+% & true & $<$Boolean$>$ \\[5pt]
+% \drop{-6pt}{Package}
+% & config & ``subfig.cfg'' & $<$filename$>$ \\[5pt]
+% & lofdepth\addtocounter{footnote}{1}\footnotemark
+% & 1 & $<$number$>$ \\[5pt]
+% & lotdepth\addtocounter{footnote}{-1}\footnotemark
+% & 1 & $<$number$>$ \\[5pt]
+% & listofformat & [subparens] & empty \\
+% & & & simple \\
+% & & & parens \\
+% & & & subsimple \\
+% & & & subparens \\[5pt]
+% & subrefformat & [subsimple] & empty \\
+% & & & simple \\
+% & & & parens \\
+% & & & subsimple \\
+% & & & subparens \\[5pt]
+% & listofindent & 3.8em & $<$length$>$ \\[5pt]
+% & listofnumwidth & 2.5em & $<$length$>$ \\[5pt]
+% & farskip &10pt & $<$length$>$ \\[5pt]
+% & captionskip & 4pt & $<$length$>$ \\[5pt]
+% & topadjust & 0pt & $<$length$>$ \\[5pt]
+% & nearskip & 0pt & $<$length$>$ \\ \bottomrule
+% \end{tabular}
+% \end{table}
+%
+% If these are not desired, than they may be removed at the beginning of
+% a configuration file with the command:
+% \begin{quote}^
+% | \clearcaptionsetup{subfloat}|
+% \end{quote}
+% The options are not added to the \Lvar{subfloat} list until after
+% the configuration file(s) are loaded.
+%
+% \subsection{Options from the \Lpack{Caption} Package}
+% \changes{v1.2}{16 January 2004}{Added missing space.}
+%
+% The \Lpack{subfig} package uses the \Lpack{caption} package commands
+% to typeset the captions under each sub-float. The settings used in the
+% captions come from three sources. The first is the global settings
+% provided by the caption package. The second is the keys and key/value
+% pairs stored on the \Lvar{subfloat} variable. The third is the keys
+% and key/value pairs stored on (for figure sub-floats) the
+% \Lvar{subfigure} variable. In these three sources, if a key appears
+% most recent value is used.
+%
+% \addtocounter{footnote}{-2}
+% \footnotetext{The \Lkv{caption} option is only allowed on the
+% \Lpack{caption} or \Lpack{subfigure} package option list. In
+% addition, the \Lkv{caption} option can only be used in the
+% \Lpack{subfigure} package option list {\em if} the \Lpack{caption}
+% package has {\em not} been loaded.}
+% \addtocounter{footnote}{1}
+% \footnotetext{Only the \Lkv{top}/\Lkv{above} and \Lkv{bottom}/\Lkv{below}
+% values are allowed for the \Lkv{position} option with the
+% \Lpack{subfig} package. If no value is set, than
+% \Lkv{bottom} is assumed.}%
+% \addtocounter{footnote}{1}
+% \footnotetext{Similar keywords are created automatically by the
+% \cmd{\newsubfloat} command, see section~\ref{sec:newsubfloat}.}
+%
+% Therefore, you can keep all of your common settings associated with
+% the \Lvar{subfloat} variable and, if needed, special settings for
+% individual sub-float types (figure, table, etc.) on the associated
+% variable (\eg, \Lvar{subfigure}, \Lvar{subtable}, etc.).
+%
+% The package options supplied with the \cmd{\usepackage} command are
+% bound to the \Lvar{subfloat} variable, and so, affect all of the
+% sub-floats. The one exception to this is the \Lkv{config} or
+% \Lkv{config=filename} option that is executed immediately. This is
+% handy for two reasons, the first is that you only want to load a
+% configuration file once (not every time you use a sub-float; and,
+% second the \Lkv{config} keyword, without a value, will only load the
+% ``subfig.cfg'' file when used on the options line, therefore you can
+% set common options in both the float and sub-float captions with the
+% command:
+%
+% \begin{quote}
+% |\usepackage|[config, labelfont=\{sf,bf\}, textfont=sf]\{caption,subfig\}
+% \end{quote}
+% which will load the ``caption.cfg'' file and set the label and text
+% fonts and also load the \Lfile{subfig.cfg} file and set the sublabel and
+% subtext fonts. Here we don't use the \Lkv{font} key, since this is
+% initialized with the default font sizes to be used and defaults to
+% \Lkv{normalsized} for the float captions and to \Lkv{footnotesized} for the
+% sub-float captions, as shown in figure~\ref{fig:init}.
+%
+% \begin{figure}^
+% \vskip-5pt
+% \centering
+% \subfloat[Sub-float caption.]{\B{white}{Sub-float Body}}^
+% \vskip-5pt
+% \caption{Float caption.}^
+% \label{fig:init}^
+% \end{figure}
+%
+% Next we will review the options provided by the \Lpack{caption}
+% package. First the font settings, then the shape options, the
+% justification and the other caption options that affect the sub-floats.
+% Next, we review the options provided by the \Lpack{subfig} package.
+%
+% \subsubsection{The \Lpack{Caption} Font Settings}
+%
+% There are three font variables that can be set to control the float or
+% sub-float captions. They are \Lkv{font}, \Lkv{labelfont} and \Lkv{textfont}.
+% The \Lvar{font} variable is applied to both the caption label and text;
+% and is usually\footnote{But not always, careful use of these three
+% variables can produce useful effects. Their application is as:
+% \begin{quote}^
+% \vspace{-2pt}
+% \{\cmd{\font} \{\cmd{\labelfont} $<$label$><$separator$>$\}\{\cmd{\textfont} $<$text$>$\}
+% \vspace{-5pt}
+% \end{quote}}
+% used to specify the size of the caption and the other two variables
+% are used to specify the other aspects of the font, the family, series
+% and shape. The ``labelfont'' variable is used to specify the font
+% used for the caption label and separator, while the ``textfont''
+% specifies that for the caption text.
+%
+% Each of these variables can have one value from each of the four
+% columns in the ``VALUE'' section of table~\ref{tab:keywords}
+% associated with the font keywords. If nothing is specified for one of
+% the four sections, than that aspect of the current font is used.
+%
+% Figures~\subref*{fig:fontsize-01}--\subref{fig:fontsize-06}
+% show the effect of the font size options on the ``font'' variable.
+%
+% \begin{figure}^
+% \vskip4pt
+% \centering
+% \figfont{fig:fontsize-01}{font}{Large}\g
+% \figfont{fig:fontsize-02}{font}{large}\\
+% \figfont{fig:fontsize-03}{font}{normalsize}\g
+% \figfont{fig:fontsize-04}{font}{small}\\
+% \figfont{fig:fontsize-05}{font}{footnotesize}\g
+% \figfont{fig:fontsize-06}{font}{scriptsize}\\[-2pt]
+% \caption{Font size options.}
+% \label{fig:fontsize}
+% \vskip-16pt
+% \end{figure}
+% \changes{v1.2}{26 January 2004}{Fixed references.}
+% \begin{figure}^
+% \centering
+% \figfontlist{fig:textfont-01}{font}{rm,md,up}\g
+% \figfontlist{fig:textfont-02}{font}{rm,md,it}\\
+% \figfontlist{fig:textfont-03}{font}{rm,md,sl}\g
+% \figfontlist{fig:textfont-04}{font}{rm,md,sc}\\
+% \figfontlist{fig:textfont-05}{font}{rm,bf,up}\g
+% \figfontlist{fig:textfont-06}{font}{rm,bf,it}\\
+% \figfontlist{fig:textfont-07}{font}{rm,bf,sl}\g
+% \figfontlistS{fig:textfont-08}{font}{rm,bf,sc}\\
+% \figfontlist{fig:textfont-09}{font}{sf,md,up}\g
+% \figfontlistS{fig:textfont-10}{font}{sf,md,it}\\
+% \figfontlist{fig:textfont-11}{font}{sf,md,sl}\g
+% \figfontlistS{fig:textfont-12}{font}{sf,md,sc}\\
+% \figfontlist{fig:textfont-13}{font}{sf,bf,up}\g
+% \figfontlistS{fig:textfont-14}{font}{sf,bf,it}\\
+% \figfontlistS{fig:textfont-15}{font}{sf,bf,sl}\g
+% \figfontlistS{fig:textfont-16}{font}{sf,bf,sc}\\
+% \figfontlist{fig:textfont-17}{font}{tt,md,up}\g
+% \figfontlist{fig:textfont-18}{font}{tt,md,it}\\
+% \figfontlist{fig:textfont-19}{font}{tt,md,sl}\g
+% \figfontlist{fig:textfont-20}{font}{tt,md,sc}\\
+% \figfontlistS{fig:textfont-21}{font}{tt,bf,up}\g
+% \figfontlistS{fig:textfont-22}{font}{tt,bf,it}\\
+% \figfontlistS{fig:textfont-23}{font}{tt,bf,sl}\g
+% \figfontlistS{fig:textfont-24}{font}{tt,bf,sc}\\
+% \caption[Other Font Options.]%
+% {Other Font Options (shaded boxes indicate
+% font combinations that were not available,
+% see table~\ref{tab:substitutions}).}^
+% \label{fig:textfont}^
+% \end{figure}
+%
+% \changes{v1.2}{26 January 2004}{Added footnote to reference NFSS.}
+% Figures~\subref*{fig:textfont-01}--\subref{fig:textfont-24}
+% show the effect of all combinations of the other font settings on the
+% ``textfont'' variable. Note that not all combinations are necessarily
+% available.\footnote{To modify the fonts used in your document and make
+% specific combinations of family, shape and style available, see the
+% NFSS documentation in The Latex Companion~\cite{Mitt-etal04}.}
+% Where the specified font attributes are not available \LaTeX\
+% will substitute an alternate font. For instance, when compiling this file
+% on one system, \LaTeX\ substituted alternate fonts for the requested
+% ones in ten of the twenty-four cases (see table~\ref{tab:substitutions}).
+% Recompiling this documentation on your system and looking at the \LaTeX\
+% warnings will show you any combinations that are not available for you.
+%
+% \subsubsection{The \Lpack{Caption} Shape Settings}
+% \changes{v1.2}{16 January 2004}{Removed two extra commas in the
+% figure options lists.}
+% \label{sec:shape}
+%
+% There are seven options for setting the sub-caption shape or ``format''.
+% The default setting is produced by
+% \begin{tabbing}
+% \qquad
+% $\backslash$captionsetup[subfigure]\{\= style=default, margin=0pt, parskip=0pt,\\
+% \> hangindent=0pt, indention=0pt, singlelinecheck=true\}
+% \end{tabbing}
+% which is shown in figure~\ref{fig:shape-01}.
+% Figure~\ref{fig:shape-00} shows the same thing, but without setting
+% the \Lkv{singlelinecheck} to true. You can see that the
+% \Lkv{singlelinecheck} option only affects the short caption.
+%
+% \begin{table}^
+% \def\fig#1{\subref*{fig:textfont-#1}}
+% \def\uch#1{\underline{\smash{\hbox{#1}}}}
+% \caption[Example font attribute substitutions.]^
+% {Example font attribute substitutions.\footnotemark}
+% \label{tab:substitutions}
+% \centering
+% \begin{tabular}{lclc} \toprule
+% \multicolumn{1}{l}{{\bf Figure}}
+% & \multicolumn{1}{l}{{\bf Desired Options}}
+% & \multicolumn{1}{l}{{\bf Substitution Reason}}
+% & \multicolumn{1}{l}{{\bf Actual Options}}
+% \\ \midrule
+% \fig{08} & \{{\sf rm,bf,sc}\} & undefined & \{{\sf rm,bf,\uch{up}}\} \\
+% \fig{10} & \{{\sf sf,md,it}\} & unavailable in size 10 & \{{\sf sf,md,\uch{sl}}\} \\
+% \fig{12} & \{{\sf sf,md,sc}\} & unavailable in size 10 & \{{\sf \uch{rm},md,sc}\} \\
+% \fig{14} & \{{\sf sf,bf,it}\} & undefined & \{{\sf sf,bf,\uch{up}}\} \\
+% \fig{15} & \{{\sf sf,bf,sl}\} & undefined & \{{\sf sf,bf,\uch{up}}\} \\
+% \fig{16} & \{{\sf sf,bf,sc}\} & undefined & \{{\sf sf,bf,\uch{up}}\} \\
+% \fig{21} & \{{\sf tt,bf,up}\} & unavailable in size 10 & \{{\sf tt,\uch{md},up}\} \\
+% \fig{22} & \{{\sf tt,bf,it}\} & unavailable in size 10 & \{{\sf tt,\uch{md},it}\} \\
+% \fig{23} & \{{\sf tt,bf,sl}\} & unavailable in size 10 & \{{\sf tt,\uch{md},\uch{up}}\} \\
+% \fig{24} & \{{\sf tt,bf,sc}\} & unavailable in size 10 & \{{\sf tt,\uch{md},\uch{up}}\} \\ \bottomrule
+% \end{tabular}
+% \end{table}
+%
+% \footnotetext{This table may differ with different distributions of \LaTeX\
+% and the choice of the base font families. Examine the \LaTeX\ log for
+% font warnings for your specific system.}
+%
+% Any or all of the other shape option may be used at one time, since
+% they define orthogonal aspects of the caption shape. The other
+% options are:
+% \begin{itemize}\parskip-2pt
+% \item \Lkv{singlelinecheck}, (Boolean) which causes a caption that
+% will fit on one line to be centered below the figure (actually,
+% to use the singlelinecheck format);
+% \item \Lkv{indention}, (length) which indents the caption text of each
+% line of each paragraph (except the first line of the first paragraph);
+% \item \Lkv{hangindent}, (length) which indents the caption text of
+% all but the first line of each paragraph;
+% \item \Lkv{parskip}, (length) which adds some extra space between
+% separate paragraphs in a caption;
+% \item \Lkv{hang}, which causes the label to hang out to
+% the left of the caption text, \Lkv{normal} turns it off; and,
+% \item \Lkv{margin}, (length) which sets extra space to either side of
+% the caption, the option \Lkv{width} may also be used. This sets
+% the margins to provide the requested width of the caption.^
+% \footnote{Internally, the initial width of the sub-float is set
+% equal to the width of the sub-float body (see figure~\ref{fig:layout}).
+% This value is modified by either the \Lkv{margin} {\bf or} the
+% \Lkv{width}, if defined (if both are defined than whichever is
+% specified last is used). Note that the \Lkv{width} may be larger
+% than the width of the sub-float body, or equivalently, the \Lkv{width}
+% may be negative to provide more room for a caption if the sub-float
+% body is small. The box holding the caption is centered relative to
+% the sub-float body.}
+% \end{itemize}
+%
+% Figures~\ref{fig:shape-00} thru \ref{fig:shape-63} show all of the
+% different combinations of these formats.
+%
+% \def\exin{10pt} ^ indention value
+% \def\exhi{10pt} ^ hangindent value
+% \def\exps{5pt} ^ parskip value
+% \def\exma{10pt} ^ margin value
+% \figshape{fig:shape-00}{singlelinecheck=false}
+% \figshape{fig:shape-01}{ }
+% \figshape{fig:shape-02}{indention=\exin,singlelinecheck=false}
+% \figshape{fig:shape-03}{indention=\exin}
+% \clearpage
+% \figshape{fig:shape-04}{hangindent=\exhi,singlelinecheck=false}
+% \figshape{fig:shape-05}{hangindent=\exhi}
+% \figshape[hangindent=\exhi,indention=\exin,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-06}{hangindent=\exhi,indention=\exin,singlelinecheck=false}
+% \figshape{fig:shape-07}{hangindent=\exhi,indention=\exin}
+% \figshape{fig:shape-08}{parskip=\exps,singlelinecheck=false}
+% \figshape{fig:shape-09}{parskip=\exps}
+% \figshape{fig:shape-10}{parskip=\exps,indention=\exin,singlelinecheck=false}
+% \figshape{fig:shape-11}{parskip=\exps,indention=\exin}
+% \figshape[parskip=\exps,hangindent=\exhi,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-12}{parskip=\exps,hangindent=\exhi,singlelinecheck=false}
+% \figshape{fig:shape-13}{parskip=\exps,hangindent=\exhi}
+% \figshape[parskip=\exps,hangindent=\exhi,indention=\exin,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-14}{parskip=\exps,hangindent=\exhi,indention=\exin, singlelinecheck=false}
+% \figshape{fig:shape-15}{parskip=\exps,hangindent=\exhi,indention=\exin}
+% \figshape{fig:shape-16}{format=hang,singlelinecheck=false}
+% \figshape{fig:shape-17}{format=hang}
+% \figshape{fig:shape-18}{format=hang,indention=\exin,singlelinecheck=false}
+% \figshape{fig:shape-19}{format=hang,indention=\exin}
+% \figshape[format=hang,hangindent=\exhi,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-20}{format=hang,hangindent=\exhi,singlelinecheck=false}
+% \figshape{fig:shape-21}{format=hang,hangindent=\exhi}
+% \clearpage
+% \figshape[format=hang,hangindent=\exhi,indention=\exin,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-22}{format=hang,hangindent=\exhi,indention=\exin, singlelinecheck=false}
+% \figshape{fig:shape-23}{format=hang,hangindent=\exhi,indention=\exin}
+% \figshape{fig:shape-24}{format=hang,parskip=\exps,singlelinecheck=false}
+% \figshape{fig:shape-25}{format=hang,parskip=\exps}
+% \figshape[format=hang,parskip=\exps,indention=\exin,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-26}{format=hang,parskip=\exps,indention=\exin, singlelinecheck=false}
+% \figshape{fig:shape-27}{format=hang,parskip=\exps,indention=\exin}
+% \figshape[format=hang,parskip=\exps,hangindent=\exhi,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-28}{format=hang,parskip=\exps,hangindent=\exhi, singlelinecheck=false}
+% \figshape{fig:shape-29}{format=hang,parskip=\exps,hangindent=\exhi}
+% \figshape[format=hang,parskip=\exps,hangindent=\exhi,
+% \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+% {fig:shape-30}{format=hang,parskip=\exps,hangindent=\exhi, indention=\exin,singlelinecheck=false}
+% \figshape[format=hang,parskip=\exps,hangindent=\exhi,
+% \hfil\null\string\linebreak\ indention=\exin]%
+% {fig:shape-31}{format=hang,parskip=\exps,hangindent=\exhi, indention=\exin}
+% \figshape{fig:shape-32}{margin=\exma,singlelinecheck=false}
+% \figshape{fig:shape-33}{margin=\exma}
+% \figshape{fig:shape-34}{margin=\exma,indention=\exin,singlelinecheck=false}
+% \figshape{fig:shape-35}{margin=\exma,indention=\exin}
+% \figshape[margin=\exma,hangindent=\exhi,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-36}{margin=\exma,hangindent=\exhi,singlelinecheck=false}
+% \figshape{fig:shape-37}{margin=\exma,hangindent=\exhi}
+% \clearpage
+% \figshape[margin=\exma,hangindent=\exhi,indention=\exin,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-38}{margin=\exma,hangindent=\exhi,indention=\exin, singlelinecheck=false}
+% \figshape{fig:shape-39}{margin=\exma,hangindent=\exhi,indention=\exin}
+% \figshape{fig:shape-40}{margin=\exma,parskip=\exps,singlelinecheck=false}
+% \figshape{fig:shape-41}{margin=\exma,parskip=\exps}
+% \figshape[margin=\exma,parskip=\exps,indention=\exin,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-42}{margin=\exma,parskip=\exps,indention=\exin, singlelinecheck=false}
+% \figshape{fig:shape-43}{margin=\exma,parskip=\exps,indention=\exin}
+% \figshape[margin=\exma,parskip=\exps,hangindent=\exhi,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-44}{margin=\exma,parskip=\exps,hangindent=\exhi, singlelinecheck=false}
+% \figshape{fig:shape-45}{margin=\exma,parskip=\exps,hangindent=\exhi}
+% \figshape[margin=\exma,parskip=\exps,hangindent=\exhi,
+% \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+% {fig:shape-46}{margin=\exma,parskip=\exps,hangindent=\exhi, indention=\exin,singlelinecheck=false}
+% \figshape[margin=\exma,parskip=\exps,hangindent=\exhi,
+% \hfil\null\string\linebreak\ indention=\exin]%
+% {fig:shape-47}{margin=\exma,parskip=\exps,hangindent=\exhi, indention=\exin}
+% \figshape{fig:shape-48}{margin=\exma,format=hang,singlelinecheck=false}
+% \figshape{fig:shape-49}{margin=\exma,format=hang}
+% \figshape[margin=\exma,format=hang,indention=\exin,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-50}{margin=\exma,format=hang,indention=\exin, singlelinecheck=false}
+% \figshape{fig:shape-51}{margin=\exma,format=hang,indention=\exin}
+% \figshape[margin=\exma,format=hang,hangindent=\exhi,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-52}{margin=\exma,format=hang,hangindent=\exhi, singlelinecheck=false}
+% \figshape{fig:shape-53}{margin=\exma,format=hang,hangindent=\exhi}
+% \clearpage
+% \figshape[margin=\exma,format=hang,hangindent=\exhi,
+% \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+% {fig:shape-54}{margin=\exma,format=hang,hangindent=\exhi, indention=\exin,singlelinecheck=false}
+% \figshape[margin=\exma,format=hang,hangindent=\exhi,
+% \hfil\null\string\linebreak\ indention=\exin]%
+% {fig:shape-55}{margin=\exma,format=hang,hangindent=\exhi,indention=\exin}
+% \figshape[margin=\exma,format=hang,parskip=\exps,
+% \hfil\null\string\linebreak\ singlelinecheck=false]%
+% {fig:shape-56}{margin=\exma,format=hang,parskip=\exps, singlelinecheck=false}
+% \figshape{fig:shape-57}{margin=\exma,format=hang,parskip=\exps}
+% \figshape[margin=\exma,format=hang,parskip=\exps,
+% \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+% {fig:shape-58}{margin=\exma,format=hang,parskip=\exps,indention=\exin, singlelinecheck=false}
+% \figshape[margin=\exma,format=hang,parskip=\exps,
+% \hfil\null\string\linebreak\ indention=\exin]%
+% {fig:shape-59}{margin=\exma,format=hang,parskip=\exps, indention=\exin}
+% \figshape[margin=\exma,format=hang,parskip=\exps,
+% \hfil\null\string\linebreak\ hangindent=\exhi,singlelinecheck=false]%
+% {fig:shape-60}{margin=\exma,format=hang,parskip=\exps,hangindent=\exhi, singlelinecheck=false}
+% \figshape[margin=\exma,format=hang,parskip=\exps,
+% \hfil\null\string\linebreak\ hangindent=\exhi]%
+% {fig:shape-61}{margin=\exma,format=hang,parskip=\exps,hangindent=\exhi}
+% \clearpage
+% \figshape[margin=\exma,format=hang,parskip=\exps,
+% \hfil\null\string\linebreak\ hangindent=\exhi,indention=\exin,singlelinecheck=false]%
+% {fig:shape-62}{margin=\exma,format=hang,parskip=\exps,hangindent=\exhi, indention=\exin,singlelinecheck=false}
+% \figshape[margin=\exma,format=hang,parskip=\exps,
+% \hfil\null\string\linebreak\ hangindent=\exhi,indention=\exin]%
+% {fig:shape-63}{margin=\exma,format=hang,parskip=\exps,hangindent=\exhi, indention=\exin}
+%
+% \subsubsection{The \Lpack{Caption} Justification Options}
+%
+% There are nine options for setting the sub-caption format. The first
+% is \Lkv{justified} which produces the format shows in
+% figure~\ref{fig:justification-00}. Only one of these options is
+% allowed at a time. If multiple options appear, then only the last is
+% used. The figures~\ref{fig:justification-01} thru
+% \ref{fig:justification-08} show the rest of these formats. The shape
+% options selected along with each format option is the default (see
+% figure~\ref{fig:shape-01}), this shows the effect of the justification
+% option on a single line caption.
+%
+% \figshape{fig:justification-00}{justification=justified,singlelinecheck=false}
+% \figshape{fig:justification-01}{justification=centerfirst,singlelinecheck=false}
+% \figshape{fig:justification-02}{justification=centerlast,singlelinecheck=false}
+% \figshape{fig:justification-03}{justification=centering,singlelinecheck=false}
+% \figshape{fig:justification-04}{justification=Centering,singlelinecheck=false}
+% \figshape{fig:justification-05}{justification=raggedleft,singlelinecheck=false}
+% \figshape{fig:justification-06}{justification=RaggedLeft,singlelinecheck=false}
+% \figshape{fig:justification-07}{justification=raggedright,singlelinecheck=false}
+% \figshape{fig:justification-08}{justification=RaggedRight,singlelinecheck=false}
+%
+% \subsubsection{The \Lpack{Caption} Label Options}
+%
+% There are three options for setting the sub-caption \Lkv{labelformat}
+% as shown in figures~\ref{fig:lof-01}--\ref{fig:lof-03}.
+% This is the label number and not any following punctuation or separator
+% space (see below for setting these). The three cases are:
+% \begin{itemize}\parskip-2pt
+% \item \Lkv{empty}: Without any label.
+% \item \Lkv{simple}: Just the label number.
+% \item \Lkv{parens}: The label number surrounded by '()'.
+% \end{itemize}
+% The latter option, \Lkv{parens}, is the default for sub-floats.
+% \figshape{fig:lof-01}{labelformat=empty}
+% \figshape{fig:lof-02}{labelformat=simple}
+% \figshape{fig:lof-03}{labelformat=parens}
+%
+% Figures~\ref{fig:ls-00}--\ref{fig:ls-05} show the options for setting
+% the punctuation and separator space following the figure number. These
+% options are set with the \Lkv{labelseparator} keyword.
+%
+% The label separator options are:
+% \begin{itemize}\parskip-2pt
+% \item \Lkv{none} Nothing is added after the label.
+% \item \Lkv{colon} A colon followed by a |\space| is added following the
+% label.
+% \item \Lkv{period} A period followed by a |\space| is added following the
+% label.
+% \item \Lkv{space} Just a |\space| is added following the label.
+% \item \Lkv{quad} A |\quad| space is added following the label.
+% \item \Lkv{newline} A new line is inserted after the label.
+% \end{itemize}
+%
+% \figshape{fig:ls-00}{labelsep=none}
+% \figshape{fig:ls-01}{labelsep=colon}
+% \figshape{fig:ls-02}{labelsep=period}
+% \figshape{fig:ls-03}{labelsep=space}
+% \figshape{fig:ls-04}{labelsep=quad}
+% \figshape{fig:ls-05}{labelsep=newline}
+%
+% \subsubsection{The \Lpack{Caption} Position Option}
+%
+% The \Lpack{caption} package \Lkv{position} option specifies whether the
+% caption appears before or after the figure or table. This can adjust
+% the relative spacing used to separate the float from the surrounding
+% text. However, for the \Lpack{subfig} package, it serves a more important
+% function. That is it determines if the sub-floats belong to or are associated
+% with the last |\caption| command to be given, or the next one to be executed
+% sometime in the future. If you find that you sub-references do not agree with
+% the top-level labels, than you may need to specifically set the \Lkv{position}.
+% This is best done when loading the \Lpack{caption} package, but may be done
+% at anytime with the |\captionsetup| command.
+%
+% \subsection{Options from the \Lpack{Subfig} Package}
+%
+% In addition to the options provided by the \Lpack{caption} package, the
+% \Lpack{subfig} package provides the options shown in table~\ref{tab:options}.
+%
+% \begin{table}^
+% \centering
+% \caption{\Lpack{Subfig} specific options.}^
+% \label{tab:options}^
+% \vspace{-10pt}^
+% \hbox to \linewidth{\hss\begingroup\small
+% \begin{tabular}{llp{218bp}} \\ \toprule
+% {\bf KeyWord} & {\bf Value} & {\bf Notes} \\ \midrule
+% \Lkv{config} & $<$filename$>$ & The default value is ``subfig.cfg'' \\ \midrule
+% \Lkv{$<$ext$>$depth}\footnotemark
+% & $<$number$>$ & The default value is 2. \\
+% \Lkv{listofformat} & \Lkv{empty} & Label format: (none) \\
+% & \Lkv{simple} & Label format: \#\# \\
+% & \Lkv{parens} & Label format: \#(\#) \\
+% & \Lkv{subsimple} & Label format: \# \\
+% & \Lkv{subparens} & Label format: (\#) \\
+% \Lkv{listofindent} & $<$length$>$ & Entry indention on List-of-Floats
+% page. \\
+% \Lkv{listofnumwidth} & $<$length$>$ & Space allocated for entry label. \\ \midrule
+% \Lkv{farskip} & $<$glue$>$ & Glue placed opposite the sub-float
+% caption. \\
+% \Lkv{captionskip} & $<$glue$>$ & Glue placed between the sub-float and
+% the caption. \\
+% \Lkv{topadjust} & $<$glue$>$ & Extra glue added to \Lkv{captionskip}
+% when above the sub-float. \\
+% \Lkv{nearskip} & $<$glue$>$ & Glue placed opposite the caption from
+% the sub-float. \\ \bottomrule
+% \end{tabular}
+% \endgroup\hss}
+% \end{table}
+%
+% \subsubsection{The \Lpack{Subfig} Configuration Specification}
+% \label{sec:config}
+% \changes{v1.2}{21 January 2004}{Rewrote description of the layout.}
+% \changes{v1.3}{18 March 2004}{Moved configuration subsection.}
+%
+% The default settings and layout of the \Lpack{subfig} package can be
+% modified by loading one or more configuration files. The \Lpack{subfig}
+% \Lkv{config} option loads the configuration file(s) after the package is
+% setup, but before the \Lvar{subfigure} or \Lvar{subtable} sub-floats
+% have been created (with the |\newsubfloat| command) and before the
+% package options have been processed. See section~\ref{sec:back-compat}
+% for an example of using the \Lfile{subfigold.cfg} file to emulate the
+% \Lpack{subfigure} package.
+%
+% Without a value, the \Lkv{config} keyword loads the file
+% \Lfile{subfig.cfg}. Use the value to load another file, for instance,
+% \Lkv{config=altsf.cfg}. If more than one configuration file is
+% specified in the package options, than they are loaded in the order in
+% which they appear in the option list. When used outside the package
+% option list, the \Lkv{config} keyword is processed by the \Lpack{caption}
+% package and loads \Lfile{caption.cfg} by default.
+%
+% {\scshape\bf Note}: The package pre-defines the following values by
+% adding them to the \Lvar{subfloat} variable list with the |\captionsetup|
+% command before loading the configuration file(s):
+%
+% \begin{quote}^
+% | \captionsetup[subfloat]{%|\\
+% | font=footnotesize,|\\
+% | labelformat=parens,labelsep=space,|\\
+% | listofformat=subparens}|
+% \end{quote}
+%
+% \subsubsection{The \Lpack{Subfig} List-of-Floats Specification}
+% \label{sec:lof}
+% \changes{v1.1}{12 January 2004}{Added explanation for multiple `\#' signs
+% in table~\ref{tab:options}.}
+%
+% \noindent
+% The next two options, \Lkv{lofdepth} and \Lkv{lotdepth}, are created along
+% with the internal subfigure and subtable sub-floats. If other sub-floats are
+% created, than the associated depth counter and keyword is created for them if
+% it does not already exist. In order for the sub-captions to be shown in the
+% List-of-Floats page, the related depth counter must be set to 2 or greater.
+% These keywords allow the counters to be easily set in the option list or with
+%^
+% \footnotetext{Where \Lkv{$<$ext$>$depth} is initially only \Lkv{lofdepth}
+% and \Lkv{lotdepth}. More such keywords may be added by the \cmd{\newsubfloat}
+% command (see section~\ref{sec:newsubfloat}.}
+%^
+% the |\captionsetup| command\@.\footnote{The sub-caption depth counters must be
+% set at the ``global'' level (see section~\ref{sec:layers}) and before the
+% corresponding \cmd{\listof\dots} command is used.} The default value is 1,
+% which turns off the printing of the sub-captions.
+%
+% The next three options, \Lkv{listofformat}, \Lkv{listofindent}, and
+% \Lkv{listofnumwidth}, control and adjust the way that the sub-float number
+% is displayed on the respective List-of-Floats page. The \Lkv{listofformat}
+% shows how or if the sub-float number is shown. Where there are two `\#'
+% signs in the List-of-Page label formats, the first one stands for the
+% {\bf\cmd{\p@}\textless{\em sub-float\_type}\textgreater} value and the second
+% for the {\bf\cmd{\the}\textless{\em sub-float\_type}\textgreater} value.
+% Where there is only one `\#' it stands for the latter.
+%
+% The \Lkv{listofindent} keyword sets the total indentation from the left
+% margin, while the \Lkv{listofnumwidth} keyword controls the width of box
+% for the label number. This is also the amount of extra indentation added
+% to second and later lines of a multiple line entry.
+%
+% \subsubsection{The \Lpack{Subfig} Layout}
+%
+% The layout of the sub-float contains several internal values which may
+% be changed to customize appearance of the object. The following
+% illustration shows the relationship of these values.
+% Figure~\subref*{fig:layout-A} shows the standard layout
+% with the caption following the figure. The figure is vertically centered
+% with some vertical space added above. If this is a float at the top
+% of the page, than the space is suppressed. If the caption of the
+% float follows the subfigures, than \Lkv{farskip} indicates the amount
+% of space to skip. Otherwise, if the float caption precedes the subfigures,
+% than \Lkv{nearskip} indicates the value to use. The best way to think
+% of these two skips is that the \Lkv{nearskip} is closer to the main float
+% caption than the \Lkv{farskip}. After the subfigure, more vertical space,
+% \Lkv{captionskip}, is added between the subfigure and the sub-caption.
+% Finally, \Lkv{nearskip} (or \Lkv{farskip}) of vertical space added below.
+% The baseline is located at the bottom of the figure. It is along this
+% baseline that adjacent subfigure boxes are aligned.
+%
+% \begin{figure}
+% \captionsetup[subfloat]{singlelinecheck=true,margin=1cm,^
+% farskip=0pt,nearskip=10pt}
+% \centering
+% \fboxsep=-\fboxrule
+% \setbox\tempbox\hbox{\Lkv{margin}}
+% \tempdimb \wd\tempbox
+% \tempdima \tempdimb
+% \advance\tempdimb 1mm
+% \setbox\tempbox\hbox to \tempdimb{^ \tempbox holds margin spacer
+% \hfil
+% \vbox to 20pt{^
+% \vskip4.3pt
+% \hbox to \tempdima{\leftarrowfill$\mkern-2.5mu\mathord\rightarrow$}
+% \hbox to \tempdima{\Lkv{margin}}
+% \vfil}^
+% \hfil}
+% \multiply\tempdimb -2
+% \advance\tempdimb 4.5in ^ \tempdimb is width of sub-caption box
+% \setbox\tempbox\hbox to 4.5in{^ \tempbox holds margin/sub-caption/margin
+% \copy\tempbox
+% \fbox{^
+% \vbox to 20pt{
+% \vskip1pt
+% \vbox to 0pt{
+% \hbox to\tempdimb{^
+% \vbox to 0pt{
+% \hbox to \tempdimb{^
+% \hskip1pt^
+% \leftarrowfill\Lkv{width}\rightarrowfill^
+% \hskip1pt}
+% \vss}}
+% \vss}
+% \vfil
+% \hbox to\tempdimb{^
+% \hfil
+% {\scshape sub-caption}^
+% \hfil}
+% \vskip1.5pt}}^
+% \copy\tempbox
+% \hfil}
+% ^
+% \subfloat[Standard layout (Sub-float: position=bottom).]{^
+% \label{fig:layout-A}^
+% \fbox{^
+% \parbox{4.5in}{^
+% \vskip1pt
+% \hbox to 4.5in{^
+% \hskip1.5in^
+% $\left\updownarrow\vrule width0pt height11pt depth1pt\right.$^
+% (\Lkv{farskip} or \Lkv{nearskip})^
+% \hfil}
+% \fbox{^
+% \vbox to 45pt{
+% \vfil\vfil
+% \hbox to 4.5in{^
+% \hfil
+% {\scshape sub-float body}^
+% \hfil}
+% \vfil
+% \vbox to 0pt{
+% \vss
+% \hbox to 4.5in{^
+% \hskip12pt^
+% \hbox{\small Baseline}^
+% \hfil}
+% \vskip1pt}}}
+% \hbox to 4.5in{^
+% \hskip1.5in^
+% $\left\updownarrow\vrule width0pt height11pt depth1pt\right.$^
+% \Lkv{captionskip}^
+% \hfil}
+% \copy\tempbox
+% \vskip1pt
+% \hbox to 4.5in{^
+% \hskip1.5in^
+% $\left\updownarrow\vrule width0pt height11pt depth1pt\right.$^
+% \Lkv{nearskip} or \Lkv{farskip}^
+% \hfil}
+% \vskip1pt}}}\\
+% ^
+% \subfloat[Standard layout without a caption (Sub-float: position=bottom)]{^
+% \label{fig:layout-B}^
+% \fbox{^
+% \parbox{4.5in}{
+% \vskip1pt
+% \hbox to 4.5in{^
+% \hskip1.5in^
+% $\left\updownarrow\vrule width0pt height11pt depth1pt\right.$^
+% (\Lkv{farskip} or \Lkv{nearskip})^
+% \hfil}
+% \fbox{^
+% \vbox to 45pt{
+% \vfil\vfil
+% \hbox to 4.5in{^
+% \hfil
+% {\scshape sub-float body}^
+% \hfil}
+% \vfil
+% \vbox to 0pt{^
+% \vss
+% \hbox to 4.5in{^
+% \hskip12pt^
+% {\small Baseline}^
+% \hfil}
+% \vskip1pt}}}
+% \hbox to 4.5in{^
+% \hskip1.5in^
+% $\left\updownarrow\vrule width0pt height11pt depth1pt\right.$^
+% \Lkv{nearskip} or \Lkv{farskip}^
+% \hfil}
+% \vskip1pt}}}\\
+% ^
+% \subfloat[Reversed layout (Sub-float: position=top).]{^
+% \label{fig:layout-C}^
+% \fbox{^
+% \parbox{4.5in}{
+% \vskip1pt
+% \hbox to 4.5in{^
+% \hskip1.5in^
+% $\left\updownarrow\vrule width0pt height11pt depth1pt\right.$^
+% (\Lkv{farskip} or \Lkv{nearskip})^
+% \hfil}
+% \box\tempbox
+% \hbox to 4.5in{^
+% \hbox to 0pt{^
+% \hskip12pt
+% \smash{\raisebox{-6.5pt}{\small Baseline}}^
+% \hss}^
+% \hskip1.5in^
+% $\left\updownarrow\vrule width0pt height11pt depth1pt\right.$^
+% \Lkv{captionskip}$+$\Lkv{topadjust}^
+% \hfil}
+% \fbox{^
+% \vbox to 45pt{
+% \vfil
+% \hbox to 4.5in{^
+% \hfil
+% {\scshape sub-float body}^
+% \hfil}
+% \vfil}}
+% \vskip1pt
+% \hbox to 4.5in{^
+% \hskip1.5in^
+% $\left\updownarrow\vrule width0pt height11pt depth1pt\right.$^
+% \Lkv{nearskip} or \Lkv{farskip}^
+% \hfil}
+% \vskip1pt}}}\\
+% ^
+% \subfloat[Standard layout without a caption (Sub-float: position=top)]{^
+% \label{fig:layout-D}^
+% \fbox{^
+% \parbox{4.5in}{
+% \vskip1pt
+% \hbox to 4.5in{^
+% \hbox to 0pt{^
+% \hskip12pt^
+% \smash{\raisebox{-6.5pt}{\small Baseline}}^
+% \hss}^
+% \hskip1.5in^
+% $\left\updownarrow\vrule width0pt height11pt depth1pt\right.$^
+% (\Lkv{farskip} or \Lkv{nearskip})^
+% \hfil}
+% \fbox{^
+% \vbox to 45pt{
+% \vfil
+% \hbox to 4.5in{^
+% \hfil
+% {\scshape sub-float body}^
+% \hfil}
+% \vfil}}
+% \hbox to 4.5in{^
+% \hskip1.5in^
+% $\left\updownarrow\vrule width0pt height11pt depth1pt\right.$^
+% \Lkv{nearskip} or \Lkv{farskip}^
+% \hfil}
+% \vskip1pt}}}^
+% ^
+% \clearcaptionsetup{subfloat}^
+% \vspace{-10pt}^
+% \caption[Sub-float Layout.]{Sub-float Layout. If the respective float
+% caption position is \Lkv{bottom}, than the \Lkv{farskip} is used at
+% the top and the \Lkv{nearskip} is used at the bottom. If the respective
+% float caption position is \Lkv{top}, than these skips are reversed.
+% Also, the top skip is suppressed at the top of a page.}
+% \label{fig:layout}
+% \end{figure}
+%
+% Figure~\subref*{fig:layout-C} shows the reversed case where
+% the sub-caption precedes the figure (\ie, \Lkv{position=top}). In
+% this case the \Lkv{farskip} and \Lkv{nearskip} are placed according to
+% the position of the float caption as above and the \Lkv{captionskip} is
+% increased by \Lkv{topadjust}. The other two cases,
+% figures~\subref*{fig:layout-B} and \subref{fig:layout-D}),
+% show the cases where there is no caption. Note that the \Lkv{captionskip}
+% (and \Lkv{topadjust} is left out when there is no caption. Again, note
+% also, for all of these cases, that the space at the top of the subfigure
+% is automatically removed for items that are the first box in a vertical
+% list or other than the first box in a horizontal list. This allows
+% tighter packing of the sub-floats and the full use of the page or
+% \Lenv{minipage}.
+%
+% Each of these values, \Lkv{farskip}, \Lkv{captionskip}, \Lkv{topadjust},
+% and \Lkv{nearskip}\footnote{Also the \Lkv{margin} and \Lkv{width} keywords
+% affect the \Lpack{subfig} layout, see section~\ref{sec:shape}}, may be
+% changed from their defaults (see table~\ref{tab:keywords}) to adjust the
+% subfigure for the current layout style. In addition, they may all assume
+% negative values, which in some cases may solve problems with the layout,
+% but is not recommended, in general.
+%
+% \subsubsection{The \Lpack{Subfig} Package Startup}
+% \changes{v1.2}{21 January 2004}{Added ``The \Lpack{Subfig} Package
+% Startup'' section.}
+%
+% The startup sequence for the \Lpack{subfig} package is to first load
+% the \Lpack{caption} package (with no options) if it has not already
+% been loaded. Next it sets the following default values on the
+% \Lvar{subfloat} variable:
+% \begin{quote}
+% | \captionsetup[subfloat]{font=footnotesize,|\\
+% | labelformat=parens,labelsep=space,|\\
+% | listofformat=subparens}|
+% \end{quote}
+%
+% This overrides the \Lpack{caption} package default in which the font is
+% undefined and uses that of the surrounding document\footnote{If, in fact,
+% \Lkv{font} is defined in the \Lpack{caption} options list before loading
+% the \Lpack{subfig} package; than the above redefinition on the
+% \Lvar{subfloat} variable will hide that setting from all of the sub-floats.
+% If you want them to have the same overall font setting (let's say
+% ``{bf,sl}''), than you will need to add one of the following sets of
+% commands:
+% \begin{quote}^
+% \cmd{\captionsetup}[subfloat]\{font=\{footnotesize,bf,sl\}\}
+% \end{quote}
+% or
+% \begin{quote}^
+% \cmd{\captionsetup}\{labelfont=\{bf,sl\},textfont=\{bf,sl\}\}
+% \end{quote}}; the label is \Lkv{simple} and followed by a \Lkv{colon}
+% and space. It also defines the \Lkv{listofformat} at this level in
+% the case that it is added to the \Lpack{caption} package.
+% Note that if the default settings to the \Lvar{subfloat} list are not
+% desired, they may be removed with a |\clearcaptionsetup| command (see
+% section~\ref{sec:config}). Also the current settings may be checked
+% using the following (here for a subfigure):
+% \begin{quote}^
+% | \showcaptionsetup{figure}|\\
+% | \showcaptionsetup{subfloat}|\\
+% | \showcaptionsetup{subfigure}|
+% \end{quote}
+% placed just before the |\subfloat| will show in the log what overrides
+% are being applied at that point.
+%
+% Second, any configuration files are loaded. If there are more than one
+% listed in the |\usepackage| options list, than they are loaded in the
+% order specified in the list.
+%
+% Next, the other (non-\Lkv{config}) options in the |\usepackage| options
+% list are added to the \Lvar{subfloat} list.
+%
+% Finally, the \Lpack{subfig} package finishes defining its functions and
+% if the configuration file(s) have not already defined the sub-floats:
+% \Lvar{subfigure} and \Lvar{subtable}, than they are defined.
+%
+% \section{Compatibility With Other Packages.}
+%
+% This section discusses specific aspects of compatibility
+% with other packages with which the subfig package is often
+% used.
+%
+% \subsection{\Lpack{Caption} Package}
+% \changes{v1.2}{16 January 2004}{Removed mention of undocumented
+% and/or unreleased \cmd{\topcaption} and \cmd{\bottomcaption} commands.}
+%
+% The \Lpack{subfig} package requires the \Lpack{caption} package in
+% order to format the sub-float captions. However, the \Lkv{position}
+% keyword option may only take two values when used with the \Lpack{subfig}
+% package; those are, \Lkv{top} and \Lkv{bottom}. Any other value will be
+% treated as if \Lkv{position=bottom} was specified.
+%
+% {\scshape\bf Warning}: By default (without the \Lfile{subfig.cfg} loaded),
+% the \Lkv{position} values are expected to be defined prior to loading
+% the \Lpack{subfig} package or defined afterward. However they are
+% defined, it is up to the user to insure that the captions are used
+% correctly with the sub-captions, because using a caption, that is
+% expected to precede the sub-captions, after the sub-captions
+% (or {\em vise-versa\/}) will cause the List-of-Floats page and float label
+% references to be incorrect.
+%
+% For compatibility with other packages which modify the caption and
+% where the standard \Lpack{caption} package whould interfere with the
+% desired layout, the \Lpack{caption} package has a special option,
+% \Lkv{caption=false}, which loads the internals (\ie, the ``kernel''
+% \Lpack{caption3} package) without modifying the \cmd{\caption} command.
+%
+% \subsection{\Lpack{Float} Package}
+% \label{sec:customfloat}
+% \changes{v1.1}{12 January 2004}{Updated \Lkv{listofformat} value from
+% \Lkv{simple} to \Lkv{subsimple}.}
+% \changes{v1.2}{16 January 2004}{Removed duplicate line.}
+% \changes{v1.2}{22 January 2004}{Removed separate setting of the mapname
+% since the \Lpack{caption} package now fixes the float command
+% \cmd{\restylefloat*}. Also, the same fix in the prolog of this document.}
+%
+% To create a new sub-float, you first need a new floating environment.
+% If you have that, great, otherwise, load the \Lpack{float} package and
+% create one with a series of commands similar to the following. Here
+% we create a new \Lenv{map} environment so that the \Lpack{subfig}
+% package will work with it. For this example we have indicated that we
+% expect to place the main float caption before the sub-floats.
+% \begin{verbatim}
+% \usepackage{float}
+% \newfloat{map}{tbph}{lom}
+% \restylefloat*{map}
+% \floatstyle{plain}
+% \floatname{map}{Map}
+% \captionsetup[map]{position=top}
+% \newcommand{\listofmaps}{\listof{map}{List of Maps}}
+% \end{verbatim}
+%
+% Then you can then create the new sub-float with:
+% \begin{verbatim}
+% \newsubfloat[position=top,listofformat=subsimple]{map}
+% \end{verbatim}
+% \noindent
+% Here we also indicate that we want the sub-caption to be placed
+% above the submaps and that the reference label on the list-of-maps
+% page will be in simple plain format without parentheses.
+%
+% Now the |\subfloat| command will work in the \Lenv{map} environment.
+%
+% For example, the following code generates map~\ref{map:example}:
+% \begin{verbatim}
+% \begin{map}%
+% \centering
+% \caption{This example shows two small maps.}%
+% \label{map:example}%
+% \subfloat[First map.]{...figure code...}%
+% \qquad
+% \subfloat[Second map.]{...figure code...}%
+% \end{map}
+% \end{verbatim}
+% \begin{map}^
+% \centering
+% \caption{This example shows two small maps.}^
+% \label{map:example}^
+% \subfloat[First map.]{^
+% \begin{picture}(86,42)(0,0)
+% \thicklines
+% \put(0,0){\framebox(86,42){}}
+% \thinlines
+% \qbezier(20,42)(20,38)(10,30)
+% \qbezier(10,30)(0,25)(0,0)
+% \qbezier(25,42)(25,38)(15,30)
+% \qbezier(15,30)(5,25)(5,0)
+% \put(28,38){\circle*{3}}
+% \put(18,8){\circle{15}}
+% \put(35,0){\line(0,1){30.0}}
+% \put(40,0){\line(0,1){30.0}}
+% \put(35,30){\line(1,2){6.0}}
+% \put(40,30){\line(1,2){6.0}}
+% \put(60,20){\circle{10}}
+% \put(57,35){\circle*{3}}
+% \put(70,10){\circle*{3}}
+% \put(65,42){\line(1,-1){21.0}}
+% \put(70,42){\line(1,-1){16.0}}
+% \end{picture}}
+% \qquad
+% \subfloat[Second map.]{^
+% \begin{picture}(86,42)(0,0)
+% \thicklines
+% \put(0,0){\framebox(86,42){}}
+% \thinlines
+% \put(10,35){\circle*{3}}
+% \put(17,10){\circle*{2}}
+% \qbezier(0,42)(43,42)(43,21)
+% \qbezier(43,21)(43,0)(86,0)
+% \qbezier(0,37)(38,37)(38,16)
+% \qbezier(38,16)(38,5)(55,0)
+% \put(45,38){\circle{5}}
+% \put(70,30){\circle*{8}}
+% \end{picture}}
+% \end{map}
+%
+% \subsection{\Lpack{FloatRow} Package}
+% \changes{v1.3}{6 May 2005}{Added compatibility with the \Lpack{floatrow}
+% package.}
+%
+% This package is compatible with the the \Lpack{floatrow} package and
+% contains hooks to allow it to work correctly with subfloats. In
+% particular, the existance of the \cmd{\FBsc@max} command in the package
+% turns on the hooks. See the code for the macros \cmd{\sf@@@subfloat} and
+% \cmd{\sf@subcaption} for details.
+%
+% The following code and table~\ref{tab:floatrow} show an example of
+% using the \Lpack{floatrow} package to align captions. Without it, the
+% first caption, \subref{tab:floatrow:one}, would be located just above
+% the first table rather than even with the first line of the second
+% caption, \subref{tab:floatrow:two}.
+%
+% \begin{quote}\small
+%\null\qquad\vdots\\
+%|\usepackage{booktabs}|\\
+%|\usepackage{subfig}|\\
+%|\captionsetup[table]{position=top}|\\
+%|\captionsetup[subtable]{position=top}|\\
+%\null\qquad\vdots\\
+%|\usepackage[heightadjust=all,valign=t]{floatrow,fr-subfig}|\\
+%|\floatsetup{style=Plaintop}|\\
+%\null\qquad\vdots\\
+%|\begin{table}%|\\
+%|\floatbox{table}[\FBwidth]%|\\
+%| {\caption{Results in Two Tables.}%|\\
+%| \label{tab:floatrow}}{%|\\
+%| \begin{subfloatrow}|\\
+%| \subfloat[First Table of Results.]{\label{tab:floatrow:one}%|\\
+%| \begin{tabular}{lcc} \toprule|\\
+%| \multicolumn{1}{c}{\raisebox{-1.5ex}{\bf Result Type}}|\\
+%| & \multicolumn{2}{c}{\bf Result Data} \\ |\\
+%| & {\bf Set One} & {\bf Set Two} \\ \midrule|\\
+%| First type & 0.24 & 4.12 \\|\\
+%| Second type & 1.34 & 2.01 \\|\\
+%| Third type & 2.99 & 4.13 \\|\\
+%| Fourth type & 2.67 & 0.08 \\ \bottomrule|\\
+%| \end{tabular}}|\\
+%| \subfloat[Second Table of Results.][Second Table of Results.|\\
+%| However, this one has a very long caption that causes|\\
+%| problems with alignment.]{\label{tab:floatrow:two}%|\\
+%| \begin{tabular}{lccc} \toprule|\\
+%| \multicolumn{1}{c}{\raisebox{-1.5ex}{\bf Result Type}}|\\
+%| & \multicolumn{2}{c}{\bf Result Data} \\|\\
+%| & {\bf Set 1} & {\bf Set 2} & {\bf Set 3} \\ \midrule|\\
+%| First type & 4.20 & blue & 2.14 \\|\\
+%| Second type & 4.31 & red & 1.02 \\|\\
+%| Third type & 4.31 & green & 8.01 \\ \bottomrule|\\
+%| \end{tabular}}|\\
+%| \end{subfloatrow}}%|
+%|\end{table}|
+% \end{quote}
+% \begin{table}^ When/if the floatrow package becomes generally distributed,
+% \centering ^ we can substitute the above example code
+% \caption{Results in Two Tables.}^ for this hacked code, which has to figure
+% \label{tab:floatrow}^ out the magic numbers: 179bp and 188bp.
+% \captionsetup[subtable]{position=below,captionskip=0pt,farskip=3pt}
+% \subfloat[First Table of Results.]{^
+% \label{tab:floatrow:one}^
+% \vrule height 0pt width 179bp}^
+% \hfill
+% \subfloat[Second Table of Results.][Second Table of Results.
+% However, this one has a very long caption that causes
+% problems with alignment.]{^
+% \label{tab:floatrow:two}^
+% \vrule height 0pt width 188bp}\\
+% \captionsetup[subtable]{position=above}^
+% \subfloat{^
+% \begin{tabular}{lcc} \toprule
+% \multicolumn{1}{c}{\raisebox{-1.5ex}{\bf Result Type}}
+% & \multicolumn{2}{c}{\bf Result Data} \\
+% & {\bf Set One} & {\bf Set Two} \\ \midrule
+% First type & 0.24 & 4.12 \\
+% Second type & 1.34 & 2.01 \\
+% Third type & 2.99 & 4.13 \\
+% Fourth type & 2.67 & 0.08 \\ \bottomrule
+% \end{tabular}}^
+% \hfill
+% \subfloat{^
+% \begin{tabular}{lccc} \toprule
+% \multicolumn{1}{c}{\raisebox{-1.5ex}{\bf Result Type}}
+% & \multicolumn{2}{c}{\bf Result Data} \\
+% & {\bf Set 1} & {\bf Set 2} & {\bf Set 3} \\ \midrule
+% First type & 4.20 & blue & 2.14 \\
+% Second type & 4.31 & red & 1.02 \\
+% Third type & 4.31 & green & 8.01 \\ \bottomrule
+% \end{tabular}}^
+% \end{table}
+%
+% \subsection{\Lpack{verbatim} and \Lpack{fancyvrb} packages}
+% \label{sec:verbatim}
+% \changes{v1.3}{4 July 2005}{Added documentation about including
+% verbatim text in a subfloat.}
+%
+% You cannot place a \Lenv{verbatim} environment inside of the
+% \cmd{\subfloat} command because the \Lenv{verbatim} environment needs
+% to change the character classes before the text in the environment is
+% read by \TeX. Therefore, if you really want to include verbatim text
+% inside a sub-float, you will need to place the verbatim text into a
+% box and then feed the box to the \cmd{\subfloat} command.
+%
+% One way to do this is by defining and using a \Lenv{SubFloat}
+% environment, as shown in figure\ref{fig:label}. Such as placing the
+% following in the preamble of your paper:
+%
+% \begin{quote}
+% |\makeatletter|\\
+% |\newbox\sf@box|\\
+% |\newenvironment{SubFloat}[2][]%|\\
+% | {\def\sf@one{#1}%|\\
+% | \def\sf@two{#2}%|\\
+% | \setbox\sf@box\hbox|\\
+% | \bgroup}%|\\
+% | { \egroup|\\
+% | \ifx\@empty\sf@two\@empty\relax|\\
+% | \def\sf@two{\@empty}|\\
+% | \fi|\\
+% | \ifx\@empty\sf@one\@empty\relax|\\
+% | \subfloat[\sf@two]{\box\sf@box}%|\\
+% | \else|\\
+% | \subfloat[\sf@one][\sf@two]{\box\sf@box}%|\\
+% | \fi}|\\
+% |\makeatother|\\
+% \end{quote}
+% \noindent
+% and then using it in your code as shown below. While this does not
+% exactly produce the options shown in table~\ref{tab:calling}, it is
+% close enough for regular use and may be adjusted if necessary.
+%
+% \begin{quote}
+% |\begin{figure}|\\
+% | \centering|\\
+% | \begin{SubFloat}[Black box]{\label{fig:label1}Caption 1.}%|\\
+% | \rule{4cm}{3cm}%...blackbox subfigure...|\\
+% | \end{SubFloat}%|\\
+% | \hspace{1.5cm}%|\\
+% | \begin{SubFloat}{\label{fig:label2}Caption 2.}%...verbatim subfigure with |\\
+% | \begin{minipage}[b]{0.3\linewidth}% a minipage to control the width...|\\
+% | \begin{verbatim}|\\
+% |abc def ghi jkl|\\
+% | xx x xxx|\\
+% |abc def ghi jkl|\\
+% | \end{verbatim}%|\\
+% | \end{minipage}%|\\
+% | \end{SubFloat}|\\
+% | \caption{Main Caption.}|\\
+% | \label{fig:label}|\\
+% |\end{figure}|
+% \end{quote}
+% \begin{figure}
+% \centering
+% \begin{SubFloat}[Black box]{\label{fig:label1}Caption 1.}^
+% \rule{4cm}{3cm}^...blackbox subfigure...
+% \end{SubFloat}^
+% \hspace{1.5cm}^
+% \begin{SubFloat}{\label{fig:label2}Caption 2.}^...verbatim subfigure with
+% \begin{minipage}[b]{0.3\linewidth}^ a minipage to control the width...
+% \begin{verbatim}
+% abc def ghi jkl
+% xx x xxx
+% abc def ghi jkl
+% \end{verbatim}^
+% \end{minipage}^
+% \end{SubFloat}
+% \caption{Main Caption.}
+% \label{fig:label}
+% \end{figure}
+%
+% \subsection{\Lpack{IEEEtrans} Class}
+%
+% The \Lpack{IEEEtrans} Class defines its own caption layout.
+% Therefore to use the \Lpack{subfig} package, you need to
+% ``turn off'' the \Lpack{caption} package. The following
+% two setups are the same:
+% \begin{quote}^
+% | \usepackage[caption=false]{caption}|\\
+% | \usepackage[...]{subfig}|
+% \end{quote}
+% or
+% \begin{quote}^
+% | \usepackage[caption=false, ...]{subfig}|
+% \end{quote}
+%
+% \subsection{Other Packages}
+%
+% The \Lpack{subfig} package has been tested with the following
+% packages and is known to work correctly.\footnote{If you find
+% any problem with these or any other package, please create a
+% small example demonstrating the problem and send it to the
+% author.}
+%
+% \begin{itemize}\parskip-5pt
+% \item \Lpack{fixltx2e}
+% \item \Lpack{captcont}
+% \item \Lpack{hyperref}
+% \item \Lpack{hypcap}
+% \end{itemize}
+%
+% Further, the following packages are known not to work with, or
+% that have some problems when used with the \Lpack{subfig} package:
+%
+% \begin{itemize}\parskip-5pt
+% \item \Lpack{ccaption}
+% \item \Lpack{hvfloat}
+% \item \Lpack{nonfloat}
+% \end{itemize}
+%
+% \subsection{Backward Compatibility with the \Lpack{Subfigure} Package}
+% \label{sec:back-compat}
+%
+% The following code sets up a configuration file to make the \Lpack{subfig}
+% package be nearly compatible with the older \Lpack{subfigure} package.
+% The first major difference is that the spacing is not quite the same
+% due to internal changes in the sub-float setup and that some of the
+% old tweaks that involved changing internal variables often will no
+% longer work.
+%
+% The other major change si that the old \Lkv{topskip} and \Lkv{bottomskip}
+% no longer exist and their replacements \Lkv{farskip} and \Lkv{nearskip}
+% act differently. The new skips also surround the sub-caption and
+% sub-float body, but where the \Lkv{bottomskip} was always next to the
+% sub-caption, the new \Lkv{nearskip} is always nearer the man (float)
+% caption. The other two vary in the same way. Normally, this difference
+% is minor and can be ignored, but in some cases you will need to adjust
+% them to get your desired {\em look and feel}.
+%
+% \begin{macro}{\subfigure}
+% \begin{macro}{\subtable}
+% \changes{v1.2}{16 January 2004}{Removed code that forces the figure or
+% table to be in some place. The default will be \Lkv{bottom} if nothing
+% else is set.}
+% \changes{v1.2}{28 January 2004}{Added default setting of \Lkv{loose}.}
+%
+% The first section creates the |\subfigure| and the |\subtable| commands.
+%
+% \iffalse
+%<*newconf>
+% \fi
+%
+% \begin{macrocode}
+\@ifundefined{c@subfigure}{\newsubfloat{figure}}{}
+\def\subfigure{\subfloat}
+% \end{macrocode}
+%
+%
+% \begin{macrocode}
+\@ifundefined{c@subtable}{\newsubfloat{table}}{}
+\def\subtable{\subfloat}
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+%
+% \changes{v1.3}{18 March 2004}{Generalized boolean values.}
+%
+% Next we restore the caption value-keywords for the option list.
+% Currently these are available within the main document with the
+% |\captionsetup| command. However, this may change in a later
+% release of the \Lpack{subfig} package.
+%
+% \begin{macrocode}
+\DeclareCaptionOption{normal}[]{\caption@setformat{default}}
+\DeclareCaptionOption{isu}[]{\caption@setformat{format=hang}}
+\DeclareCaptionOption{format=hang}[]{\caption@setformat{format=hang}}
+\DeclareCaptionOption{center}[]{\caption@setjustification{centering}}
+\DeclareCaptionOption{anne}[]{\caption@setjustification{centerlast}}
+\DeclareCaptionOption{centerlast}[]{\caption@setjustification{centerlast}}
+\DeclareCaptionOption{nooneline}[]{\sf@setbool{slc}{0}}
+\DeclareCaptionOption{scriptsize}[]{\def\captionfont{\scriptsize}}
+\DeclareCaptionOption{footnotesize}[]{\def\captionfont{\footnotesize}}
+\DeclareCaptionOption{small}[]{\def\captionfont{\small}}
+\DeclareCaptionOption{normalsize}[]{\def\captionfont{\normalsize}}
+\DeclareCaptionOption{large}[]{\def\captionfont{\large}}
+\DeclareCaptionOption{Large}[]{\def\captionfont{\Large}}
+\DeclareCaptionOption{up}[]{\l@addto@macro\captionlabelfont\upshape}
+\DeclareCaptionOption{it}[]{\l@addto@macro\captionlabelfont\itshape}
+\DeclareCaptionOption{sl}[]{\l@addto@macro\captionlabelfont\slshape}
+\DeclareCaptionOption{sc}[]{\l@addto@macro\captionlabelfont\scshape}
+\DeclareCaptionOption{md}[]{\l@addto@macro\captionlabelfont\mdseries}
+\DeclareCaptionOption{bf}[]{\l@addto@macro\captionlabelfont\bfseries}
+\DeclareCaptionOption{rm}[]{\l@addto@macro\captionlabelfont\rmfamily}
+\DeclareCaptionOption{sf}[]{\l@addto@macro\captionlabelfont\sffamily}
+\DeclareCaptionOption{tt}[]{\l@addto@macro\captionlabelfont\ttfamily}
+\DeclareCaptionOption{ruled}[1]{\sf@setbool{ruled}{#1}}
+\DeclareCaptionOption{singlelinecheck}[true]{\sf@setbool{slc}{#1}}
+\DeclareCaptionOption{oneline}[1]{\sf@setbool{slc}{#1}}
+\DeclareCaptionOption{justified}[]{\caption@setjustification{justified}}
+\DeclareCaptionOption{centering}[]{\caption@setjustification{centering}}
+\DeclareCaptionOption{centerfirst}[]{\caption@setjustification{centerfirst}}
+\DeclareCaptionOption{flushright}[]{\caption@setjustification{raggedleft}}
+\DeclareCaptionOption{raggedleft}[]{\caption@setjustification{raggedleft}}
+\DeclareCaptionOption{raggedright}[]{\caption@setjustification{raggedright}}
+\DeclareCaptionOption{RaggedRight}[]{\caption@setjustification{RaggedRight}}
+\DeclareCaptionOption{RaggedLeft}[]{\caption@setjustification{RaggedLeft}}
+\DeclareCaptionOption{Centering}[]{\caption@setjustification{Centering}}
+% \end{macrocode}
+%
+% The second list of value-keywords allows the uppercase font options to
+% set the font for the caption text.
+%
+% \begin{macrocode}
+\DeclareCaptionOption{UP}[]{\l@addto@macro\captiontextfont\upshape}
+\DeclareCaptionOption{IT}[]{\l@addto@macro\captiontextfont\itshape}
+\DeclareCaptionOption{SL}[]{\l@addto@macro\captiontextfont\slshape}
+\DeclareCaptionOption{SC}[]{\l@addto@macro\captiontextfont\scshape}
+\DeclareCaptionOption{MD}[]{\l@addto@macro\captiontextfont\mdseries}
+\DeclareCaptionOption{BF}[]{\l@addto@macro\captiontextfont\bfseries}
+\DeclareCaptionOption{RM}[]{\l@addto@macro\captiontextfont\rmfamily}
+\DeclareCaptionOption{SF}[]{\l@addto@macro\captiontextfont\sffamily}
+\DeclareCaptionOption{TT}[]{\l@addto@macro\captiontextfont\ttfamily}
+% \end{macrocode}
+%
+% Next, the \Lpack{subfigure} ``\dots topcap'' and ``\dots bottomcap'' options
+% are emulated using the new ``position'' option.
+%
+% \begin{macrocode}
+\DeclareCaptionOption{figbotcap}[]{\captionsetup[figure]{position=bottom}}
+\DeclareCaptionOption{tabbotcap}[]{\captionsetup[table]{position=bottom}}
+\DeclareCaptionOption{FIGBOTCAP}[]{\captionsetup[figure]{position=bottom}%
+ \captionsetup[subfigure]{position=bottom}}
+\DeclareCaptionOption{TABBOTCAP}[]{\captionsetup[table]{position=bottom}%
+ \captionsetup[subtable]{position=bottom}}
+\DeclareCaptionOption{figtopcap}[]{\captionsetup[figure]{position=top}}
+\DeclareCaptionOption{tabtopcap}[]{\captionsetup[table]{position=top}}
+\DeclareCaptionOption{FIGTOPCAP}[]{\captionsetup[figure]{position=top}%
+ \captionsetup[subfigure]{position=top}}
+\DeclareCaptionOption{TABTOPCAP}[]{\captionsetup[table]{position=top}%
+ \captionsetup[subtable]{position=top}}
+% \end{macrocode}
+%
+% \changes{v1.3}{26 October 2004}{Fixed problem with the ``loose'' and
+% ``tight'' options.}
+% Then, the ``loose'' and ``tight'' options are approximately
+% emulated.
+%
+% \begin{macrocode}
+\DeclareCaptionOption{loose}[]{%
+ \captionsetup{farskip=10pt,topadjust=0pt,captionskip=10pt,%
+ nearskip=10pt,margin=10pt}}
+\DeclareCaptionOption{tight}[]{%
+ \captionsetup{farskip=5pt,topadjust=0pt,captionskip=3pt,%
+ nearskip=5pt,margin=0pt}}
+% \end{macrocode}
+%
+% We can now set the sub-float defaults beyond what is set in the
+% \Lpack{subfig} package. We only need to set the default to the
+% \Lkv{loose} settings.
+%
+% \begin{macrocode}
+\captionsetup[subfloat]{loose}
+% \end{macrocode}
+%
+% Finally, we redefine the starred form of \cmd{\subref} to
+% \cmd{\Subref}.
+%
+% \begin{macrocode}
+\def\Subref{\subref*}
+% \end{macrocode}
+%
+% \iffalse
+%</newconf>
+% \fi
+%
+% \section{Some Examples}
+% \changes{v1.2}{16 January 2004}{Fixed typo: ``Someg eneral'' to
+% ``Some general''.}
+% \label{sec:examples}
+%
+% The easiest way to show the use of this package is to give a few
+% examples. The two most important things to remember when working with
+% the \Lpack{subfig} package are that (1) the sub-floats are aligned
+% along their baselines (see figure~\ref{fig:layout} and (2) that
+% whitespace in the floating environments are significant and affect the
+% layout.
+%
+% The baseline of the sub-float is usually at the bottom of the sub-float
+% body or (when the sub-caption appears at the top) at the bottom of the
+% sub-caption {\em and\/} the \Lkv{captionskip} space---which is usually
+% the same as the top of the sub-float. However sometimes, especially
+% when using the \Lenv{tabular}, \Lenv{array}, or \Lenv{minipage}
+% environments to build the figure, the baseline appears elsewhere. The
+% above three environments are all aligned at their center by default
+% but that may be changed with the optional `{\bf [t]}' or `{\bf [b]}'
+% arguments. As a last resort you can wrap all of your figures in a
+% |\vtop| box with a |\vbox to 0pt{\null}| at the top followed by the
+% sub-float body.
+%
+% If your sub-float is not quite centered or where you want it to be, the
+% problem is often a space character being placed to one side or the
+% other of the sub-float body. Some general rules of thumb
+% are:\footnote{See chapters 7 and 8 of ``The \TeX book'' \cite{Knut86}
+% for details.}
+% \begin{itemize}\parskip-2pt
+% \item Two end-of-lines following each other (ignoring any
+% whitespace) are turned into a |\par| or paragraph break.
+% \item Multiple whitespace (including the end-of-line) are
+% compressed into a single space.
+% \item The spaces after a macro command name (\eg, |\foo|)
+% are ignored.
+% \item A `\%' character at the end of the line suppresses the
+% end-of-line and all of the spaces (if any) at the
+% beginning of the next line.
+% \end{itemize}
+%
+% To suppress significant extra whitespace, you can add some `\%'
+% characters at the end of each line that doesn't end with a command name.
+% This is more than is required, but extra `\%' usually don't cause a
+% problem.
+%
+% \subsection{A Simple Example}
+%
+% \begin{figure}^
+% \centering
+% \fboxsep=-\fboxrule
+% \fbox{^
+% \begin{minipage}{4.0in}^
+% \vspace{10pt}^
+% \centering
+% \begin{minipage}{3.5in}^
+% \centering
+% \subfloat[First.]{^
+% \fbox{\hbox to 20mm{\vbox to 15mm{\vfil\null}\hfil}}}\qquad
+% \subfloat[Second figure.]{^
+% \fbox{\hbox to 20mm{\vbox to 10mm{\vfil\null}\hfil}}}\\[6pt]
+% \subfloat[Third.]{\label{3figs-c}^
+% \fbox{\hbox to 20mm{\vbox to 10mm{\vfil\null}\hfil}}}\\
+% \caption{Three sub-floats.}^
+% \label{3figs}^
+% \rr
+% \vspace{15pt}^
+% Figure~\ref{3figs} contains two top `sub-floats' and
+% sub-float~\ref{3figs-c}.$\!$\footnotemark
+% \end{minipage}^
+% \vspace{4pt}^
+% \end{minipage}}
+% \vspace{-5pt}^
+% \end{figure}
+% \footnotetext{In this and later boxed figures, the boxes are intended to
+% represent a portion of the page in which the figure occurs. This is
+% usually to show the figure along with some text or to show the effect
+% of some option on multiple pages.}
+%
+% \noindent
+% The first example, shown in figure~\ref{3figs}, specifies |\centering|
+% to horizontally center the set of sub-floats, and uses |\\| and some
+% horizontal space (using |\qquad|) to control the placement of the
+% sub-floats. Note that the alignment of the top two sub-floats is along
+% the bottom of the body portion of each.
+%
+% \begin{quote}
+% | \begin{figure}%|\\
+% | \centering|\\
+% | \subfloat[First.]{...}\qquad|\\
+% | \subfloat[Second figure.]{...}\\|\\
+% | \subfloat[Third.]{\label{3figs-c}...}%|\\
+% | \caption{Three sub-floats.}|\\
+% | \label{3figs}|\\
+% | \end{figure}|\\
+% \null\qquad\vdots\\
+% | Figure~\ref{3figs} contains two top `sub-floats' and|\\
+% | sub-float~\ref{3figs-c}.|
+% \end{quote}
+%
+% \subsection{A More Advanced Example}
+% \changes{v1.1}{12 January 2004}{Updated \Lkv{listofformat} value from
+% \Lkv{simple} to \Lkv{subsimple}.}
+% \changes{v1.2}{16 January 2004}{Fixed old reference to \cmd{\subfigure}
+% to \cmd{\subfloat}.}
+%
+% A second example, shown in figure~\ref{fig:ex2}, demonstrates how to
+% change the sub-float labels and have the sub-captions printed on the
+% List-of-Figures.
+%
+% The first |\renewcommand| changes the reference to |\thesubfigure| to
+% return both the figure number and the subfigure number separated with
+% a period. The next two |\renewcommand|'s turn off the |\p@subfigure|
+% (since it is now included in |\thesubfigure| and adds the colon and
+% space to the subfigure label. Also, the \Lcount{lofdepth} is set to
+% ``2'' so as to allow the subfigure captions to show when the
+% |\listoffigures| loads the \Lfile{lof} file. Finally, the \Lenv{figure}
+% is defined and a little following text is given that refers to it.
+% \begin{quote}
+% | \renewcommand{\thesubfigure}{\thefigure.\arabic{subfigure}}|\\
+% | \captionsetup[subfigure]{labelformat=simple,labelsep=colon,|\\
+% | listofformat=subsimple}|\\
+% | \captionsetup{lofdepth=2}|\\
+% | \makeatletter|\\
+% | \renewcommand{\p@subfigure}{}|\\
+% | \makeatother|\\
+% \null\qquad\vdots\\
+% | \listoffigures|\\
+% \null\qquad\vdots\\
+% | \begin{figure}%|\\
+% | \centering|\\
+% | \subfloat[First.]{%|\\
+% | \label{fig:first}%|\\
+% | ...figure code...}%|\\
+% | \qquad|\\
+% | \subfloat[Second.]{%|\\
+% | \label{fig:second}%|\\
+% | ...figure code...}%|\\
+% | \caption{Two sub-floats.}|\\
+% | \end{figure}|\\
+% \null\qquad\vdots\\
+% | See figures~\ref{fig:first} and \ref{fig:second}.|
+% \end{quote}%
+% \begin{figure}^
+% \centering
+% \fboxsep=-\fboxrule
+% \renewcommand{\thesubfigure}{\thefigure.\arabic{subfigure}}^
+% \captionsetup[subfigure]{labelformat=simple,labelsep=colon,
+% listofformat=subsimple}
+% \captionsetup{lofdepth=2}^
+% \makeatletter
+% \renewcommand{\p@subfigure}{}^
+% \makeatother
+% \fbox{^
+% \begin{minipage}{4.0in}^
+% \centering
+% \begin{minipage}{3.5in}^
+% \vspace{.1in}^
+% \section*{ List of Figures}^
+% \vspace{-15pt}^
+% \hspace{40pt}\vdots
+% \vspace{3pt}^
+% \contentsline{figure}{\numberline{\ref{fig:ex2}}^
+% {\ignorespaces Two sub-floats.}}{\pageref{fig:ex2}}^
+% {figure.93}^
+% \contentsline{subfigure}{\numberline{\ref{fig:first}}^
+% {\ignorespaces First.}}{\pageref{fig:first}}^
+% {subfigure.93.1}^
+% \contentsline{subfigure}{\numberline{\ref{fig:second}}^
+% {\ignorespaces Second.}}{\pageref{fig:second}}^
+% {subfigure.93.2}^
+% \hspace{40pt}\vdots
+% \vspace{8pt}^
+% \end{minipage}^
+% \end{minipage}}\\
+% \fbox{^
+% \begin{minipage}{4.0in}^
+% \centering
+% \begin{minipage}{3.5in}^
+% \vspace{10pt}^
+% \centering
+% \subfloat[First.]{^
+% \label{fig:first}^
+% \fbox{\hbox to 22mm{\vbox to 15mm{\vfil\null}\hfil}}}^
+% \hspace{14pt}^
+% \subfloat[Second.]{^
+% \label{fig:second}^
+% \fbox{\hbox to 22mm{\vbox to 15mm{\vfil\null}\hfil}}}\\
+% \caption{Two sub-floats.}^
+% \label{fig:ex2}^
+% \rr
+% See figures~\ref{fig:first} and \ref{fig:second}.
+% \vspace{4pt}^
+% \end{minipage}^
+% \end{minipage}}^
+% \end{figure}
+%
+% \subsection{An Example Without Sub-caption Text}
+% \label{sec:ex3}
+%
+% The next example, shown in figure~\ref{fig:ex3}, demonstrates a
+% commonly required format where the subfigure are just labeled and the
+% description occurs in the main caption. This is easy to do by using
+% the ``empty'' optional caption arguments ``[\space ][\space ]''. This
+% creates a label for the subfigure in the text, but it does not show on
+% the list-of-figures page. However, by default the caption may not be
+% perfectly centered, so |\subfiglabelskip| is reduced to zero points to
+% ensure that there is not any extra space hidden in the sub-caption. To
+% refer to the subfigure label within the text or the main caption, you
+% can use the |\subref| command, which is similar to the |\ref| command,
+% but does not carry the figure number.
+%
+% \begin{quote}
+% | \listoffigures|\\
+% \null\qquad\vdots\\
+% | \begin{figure}%|\\
+% | \centering|\\
+% | \subfloat[][]{%|\\
+% | \label{fig:ex3-a}%|\\
+% | ...figure code...}%|\\
+% | \hspace{8pt}%|\\
+% | \subfloat[][]{%|\\
+% | \label{fig:ex3-b}%|\\
+% | ...figure code...}\\|\\
+% | \subfloat[][]{%|\\
+% | \label{fig:ex3-c}%|\\
+% | ...figure code...}%|\\
+% | \hspace{8pt}%|\\
+% | \subfloat[][]{%|\\
+% | \label{fig:ex3-d}%|\\
+% | ...figure code...}%|\\
+% | \caption[A set of four sub-floats.]{A set of four sub-floats:|\\
+% | \subref{fig:ex3-a} describes the first sub-float;|\\
+% | \subref{fig:ex3-b} describes the second sub-float;|\\
+% | \subref{fig:ex3-c} describes the third sub-float; and,|\\
+% | \subref{fig:ex3-d} describes the last sub-float.}%|\\
+% | \label{fig:ex3}%|\\
+% | \end{figure}|\\
+% \null\qquad\vdots\\
+% | The text references the main figure as figure~\ref{fig:ex3}|\\
+% | or part of it as|\\
+% | figures~\subref*{fig:ex3-a}--\subref{fig:ex3-c}.|
+% \end{quote}%
+% \begin{figure}^
+% \centering
+% \fboxsep=-\fboxrule
+% \fbox{^
+% \begin{minipage}{4.0in}^
+% \centering
+% \begin{minipage}{3.5in}^
+% \setcounter{lofdepth}{2}^
+% \vspace{.1in}^
+% \section*{List of Figures}^
+% \vspace{-15pt}^
+% \hspace{40pt}\vdots
+% \vspace{3pt}^
+% \contentsline{figure}{\numberline{\ref{fig:ex3}}^
+% {\ignorespaces A set of four sub-floats.}}^
+% {\pageref{fig:ex3}}^
+% {figure.94}^
+% \hspace{40pt}\vdots
+% \vspace{8pt}^
+% \end{minipage}^
+% \end{minipage}}\\
+% \fbox{^
+% \begin{minipage}{4.0in}^
+% \centering
+% \begin{minipage}{3.5in}^
+% \vspace{7pt}^
+% \centering
+% \makeatletter
+% \subfloat[][]{^
+% \label{fig:ex3-a}^
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\null\vfil}\hfil}}}^
+% \hspace{8pt}^
+% \subfloat[][]{^
+% \label{fig:ex3-b}^
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\null\vfil}\hfil}}}\\
+% \subfloat[][]{^
+% \label{fig:ex3-c}^
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\null\vfil}\hfil}}}^
+% \hspace{8pt}^
+% \subfloat[][]{^
+% \label{fig:ex3-d}^
+% \fbox{\hbox to 1.2in{\vbox to 15mm{\null\vfil}\hfil}}}^
+% \caption[A set of four sub-floats.]{A set of four sub-floats:
+% \subref{fig:ex3-a} describes the first sub-float;
+% \subref{fig:ex3-b} describes the second sub-float;
+% \subref{fig:ex3-c} describes the third sub-float; and,
+% \subref{fig:ex3-d} describes the last sub-float.}^
+% \label{fig:ex3}^
+% \rr
+% The text references the main figure as figure~\ref{fig:ex3}
+% or part of it as
+% figures~\subref*{fig:ex3-a}--\subref{fig:ex3-c}.
+% \vspace{4pt}^
+% \end{minipage}^
+% \end{minipage}}^
+% \end{figure}
+%
+% \subsection{Another Example}
+% \changes{v1.3}{24 March 2004}{Added another example based on a received
+% question.}
+% \label{sec:ex4}
+%
+% I was asked if it was possible to center a smaller subfigure next to
+% a larger one while keeping the sub-captions lined up. The answer is
+% yes. The older way, shown here, is to vertically center the smaller
+% subfigure in a |\vbox| the same height as the larger subfigure. To
+% make it more interesting, we will also assume that we are not sure
+% what the height of the larger subfigure will be.
+%
+% First we place the larger subfigure in a ``savebox'' and then use
+% the height of the ``savebox'' to build the |\vbox| to contain the
+% smaller subfigure. The result is shown in figure~\ref{fig:vertcenter}.
+%
+% \newcommand{\figbox}[3]{{^
+% \fboxsep = -\fboxrule
+% \hbox to #2{^
+% \fbox{^
+% \vbox to #1{^
+% \vfil
+% \hbox to #2{^
+% \hfil
+% #3
+% \hfil}^
+% \vfil}}}}}
+% \begin{figure}^
+% \centering
+% \sbox{\tempbox}{\figbox{2in}{2in}{Big box}}^
+% \subfloat[Big figure]{\usebox{\tempbox}}^
+% \qquad
+% \subfloat[Small figure]{^
+% \vbox to \ht\tempbox{^
+% \vfil
+% \figbox{1in}{1in}{Small box}^
+% \vfil}}^
+% \caption{Two more sub-floats.}
+% \label{fig:vertcenter}
+% \end{figure}
+% \begin{quote}
+% |\newsavebox{\tempbox}|\\
+% \null\qquad\vdots\\
+% |\begin{figure}%|\\
+% | \centering|\\
+% | \sbox{\tempbox}{|\dots|figure code|\dots|}%|\\
+% | \subfloat[Big figure]{\usebox{\tempbox}}%|\\
+% | \qquad|\\
+% | \subfloat[Small figure]{%|\\
+% | \vbox to \ht\tempbox{%|\\
+% | \vfil|\\
+% | |\dots|figure code|\dots\\
+% | \vfil}}%|\\
+% | \caption{Two more sub-floats.}|\\
+% | \label{fig:vertcenter}|\\
+% |\end{figure}|
+% \end{quote}%
+%
+% The \Lpack{floatrow} package will automatically check the heights and
+% widths of your figures and captions and can align your subfigures
+% pretty much any way that you want. For more information, see the
+% \Lpack{subfig} package documentation \cite{Lapk05}.
+%
+% \section{Frequently Asked Questions (FAQs)}
+% \label{sec:faq}
+%
+% The ten most frequently asked questions about the \Lpack{subfig}
+% package are:
+%
+% \subsection{``My sub-floats are not aligned along their bottoms. Why?''}
+% \label{sec:faq:align}
+%
+% Remember! The \Lpack{subfig} package aligns sub-floats along
+% their baselines with the sub-caption (if any) sticking out above or
+% below. The above problem is usually due to using a \Lenv{minipage},
+% \Lenv{tabular} or \Lenv{array} environment that, by default,
+% places the baseline at the center of the box that it generates. If
+% the two sub-floats are different sizes, or if one sub-float is generated
+% in some other way with its baseline not at the expected place (perhaps
+% an |\includegraphics|), then the sub-float will be misaligned. One
+% solution is to use the environment options `[t]' or `[b]' to move the
+% baseline to the top or bottom rather than the center.
+%
+% \subsection{``How can I get my floats/sub-floats to line up the way I
+% want?''}
+% \label{sec:faq:blanks}
+%
+% A similar question, but this one is caused by extra whitespace in the
+% source text generating spaces next to the floats, and |\par|'s
+% generated by blank lines. The main thing is {\it be aware\/} that
+% extra whitespace can move floats and sub-floats around, sometimes a lot
+% and sometimes just a little so that they look ``wrong''. Placing too
+% many `\%'s at the end of the lines is better than too few in the
+% various float environments. (See the discussion of ``white space'' in
+% section~\ref{sec:examples}.)
+%
+% \subsection{``I have too many sub-floats for one page, How can I spread
+% them over two or more pages and continue the numbering?''}
+% \label{sec:faq:cont}
+%
+% The |\ContinuedFloat| command makes creating continued floating
+% environments easy. See the discussion in section~\ref{sec:cont}.
+%
+% \subsection{``Why do I get a garbled caption or an error when I use
+% square brackets?''}
+% \label{sec:faq:brackets}
+%
+% \begin{verbatim}
+% \subfloat[SHIFT: ``register[3] $<<=$ 3;'']{... float text ...}
+% \end{verbatim}
+%
+% Since the |\subfloat| command has an optional argument, delimited
+% with square brackets, before their required argument, you cannot
+% use the `]' character at the top level of either the
+% \meta{sub-caption} or \meta{list\_entry} argument. To overcome this
+% problem, you must wrap all or the portion of the text containing
+% the `]' character, in a pair of curly brackets (see
+% \cite[\textsection~C.1.1]{Lamp94} for more detail). For example:
+%
+% \begin{verbatim}
+% \subfloat[SHIFT: ``register{[3]} $<<=$ 3;'']{... float text ...}
+% \end{verbatim}
+% \vspace{-15pt}
+% \noindent
+% or
+% \vspace{-2pt}
+% \begin{verbatim}
+% \subfloat[{SHIFT: ``register[3] $<<=$ 3;''}]{... float text ...}.
+% \end{verbatim}
+%
+% \subsection{``How do I make my subcaptions print on the List-of-Floats
+% pages?''}
+% \label{sec:faq:depth}
+% \changes{v1.3}{27 February 2004}{Added FAQ for setting the individual
+% List-of-Floats depth variables in order to show the subcaptions.}
+%
+% You need to set the depth counter for each type of List-of-Floats page
+% to ``2'' or greater. You can do this in two ways. The first is by
+% using the standard |\setcounter| command; for instance, if you want
+% to show your subtable captions you will need to set the \Lkv{lotdepth}
+% counter before the |\listoftables| command:
+% \begin{quote}^
+% | \setcounter{lotdepth}{2}|
+% \end{quote}
+%
+% The other way of setting this is to use the package option list or
+% the |\captionsetup| command and {\bf globally}
+% (see section~\ref{sec:layers}) set the assoicated counter (again
+% before using the |\listoftables| command), \eg:
+% \begin{quote}^
+% | \captionsetup{lotdepth=2}|
+% \end{quote}
+%
+% \subsection{``I set an option and it had no effect. What is happening?''}
+% \label{sec:faq:options_overview}
+%
+% Most likely, the option that you set is being overridden. Reread the
+% option scoping in section \ref{sec:layers} and use the following
+% commands to find out if your option is being set and if it is being
+% overridden (here for a subtable):
+% \begin{quote}^
+% | \showcaptionsetup{table}|\\
+% | \showcaptionsetup{subfloat}|\\
+% | \showcaptionsetup{subtable}|
+% \end{quote}
+% For instance, if you change the \Lkv{textfont} at the \Lvar{table} level
+% and the \Lvar{subfloat} has another setting for \Lkv{textfont}, than the
+% change will work for table floats, but not for subtables, since the
+% \Lvar{subfloat} definition will override it. You can either add the
+% \Lkv{textfont} change to the \Lvar{subfloat} (which will affect all
+% sub-floats) or to the \Lvar{subtable} (which will affect all subtables)
+% to override the overridden change.
+%
+% \subsection{``How do I make a change in the settings for just a single
+% float?''}
+% \label{sec:faq:options_specific}
+%
+% If you change the values using the \cmd{\captionsetup} command within a
+% float environment, than the old values will be restored after you exit
+% that float environment.
+%
+% \subsection{``How do I put text labels on an imported sub-float?''}
+% \label{sec:faq:picture}
+%
+% The easiest way is to use the picture commands with the origin
+% set at the bottom right corner of the imported image (actually
+% at the right side of the image's baseline, which is usually along
+% the bottom of the image). For example, if the imported image is
+% $5\times 5$ inches, than the following code will place the text
+% ``Label'' in red at its center ({\scshape\bf Note}: 5 inches is 360
+% big points).
+%
+% \begin{quote}^
+% | \usepackage{graphics}|\\
+% | \usepackage{color}|\\
+% \null\qquad\vdots\\
+% | \begin{figure}%|\\
+% \null\qquad\vdots\\
+% | \subfloat[Labeled picture]{%|\\
+% | \label{fig:labeled-image}%|\\
+% | \includegraphics{|\dots|path to image file|\dots|}%|\\
+% | \unitlength=1bp%|\\
+% | \put(-180,180){\textcolor{red}{\textbf{Label}}}}%|\\
+% \null\qquad\vdots\\
+% | \end{figure}|\\
+% \null\qquad\vdots
+% \end{quote}
+%
+% \subsection{``I want my sub-floats to be ordered by column rather
+% than by row, how do I do that?''}
+% \label{sec:faq:column}
+%
+% The following example shows a schematic for laying out six sub-floats
+% in column order. The only problem with this approach is that, if the
+% floats and their respective captions are not the same height, than the
+% sub-floats will not line up across the page.
+%
+% \begin{quote}^
+% | \begin{figure}|\\
+% | \begin{minipage}{\columnwidth}|\\
+% \null\qquad\vdots\\
+% | \dots sub-floats (a)--(c) go here.|\\
+% \null\qquad\vdots\\
+% | \end{minipage}|\\
+% | \begin{minipage}{\columnwidth}|\\
+% \null\qquad\vdots\\
+% | \dots sub-floats (e)--(f) go here.|\\
+% \null\qquad\vdots\\
+% | \end{minipage}|\\
+% | \caption{...}|\\
+% | \end{figure}|\\
+% \end{quote}
+%
+% \subsection{``How do I put a verbatim environment in a sub-float?''}
+% \changes{v1.3}{4 July 2005}{Added FAQ for putting a verbatim
+% environmemnt in a sub-float.}
+%
+% See section~\ref{sec:verbatim}.
+%
+% \StopEventually{^
+%
+% \section{Acknowledgments}
+%
+% This package was adapted from the \Lpack{subfigure} package, which
+% was originally written to automatically line up some figure boxes
+% and place labels under them for my Ph.D.\ dissertation, years ago.
+% I thought it useful and uploaded it to the Internet community and
+% later to CTAN. Many people have asked questions or given comments
+% which collectively have changed and improved the usefulness of that
+% package. In 2002, {\bf Michel Goossens} requested an updated version
+% of the \Lpack{subfigure} package to feature in the second edition of
+% The \LaTeX\ Companion. In collaboration with {\bf Axel Sommerfeldt}
+% and with many valuable suggestions from {\bf Frank Mittelbach}, this
+% package was developed. It uses the new version of the \Lpack{caption}
+% package (with which the \Lpack{subfigure} had a large overlap in
+% function), re-written by {\bf Axel Sommerfeldt} for the same
+% book. This version both simplifies the original package code and,
+% unfortunately, forces it to be backward {\em in}-compatible with the
+% \Lpack{subfigure} package, therefore the change in the package name
+% from \Lpack{subfigure} to \Lpack{subfig}. Recently, {\bf Olga Lepko}
+% further extended the this package by tightly integrating her extended
+% \Lpack{floatrow} package.
+%
+% Beyond those mentioned above a few other people have made important
+% contributions to the development of the prior \Lpack{subfigure}
+% package and to the present \Lpack{subfig} package. I want to thank
+% them publicly and they are, alphabetically: {\bf Frederic Darboux},
+% {\bf Andrew B. Collier}, {\bf Harald Harders}, {\bf David Kastrup},
+% {\bf William `bil' L. Kleb}, {\bf Heiko Oberdiek}, {\bf Axel Reichert},
+% and {\bf Peter Wilson}.
+%
+% \begin{thebibliography}{6}
+% \itemsep=0.8pt
+% \bibitem{Somm05}^
+% Axel Sommerfeldt,
+% \emph{The \Lpack{caption} Package},
+% Version 3.0g, 2005/06/28.
+% (Available from CTAN as file
+% \texttt{/tex-archive/macros/latex/caption.zip}.)
+% \bibitem{Lapk05}^
+% Olga Lapko,
+% \emph{The \Lpack{floatrow} Package},
+% Version 0.1f, 2005/07/02.
+% (Available from CTAN as file
+% \texttt{/tex-archive/macros/latex/floatrow.zip}.)
+% \bibitem{Mitt-etal04}^
+% Frank Mittelbach and Michel Goossens, with Johannes Braams, David Carlisle and Chris Rowley,
+% \emph{The \LaTeX\ Companion, 2\raise.7ex\hbox{\small nd} ed.},
+% Addison-Wesley, Reading, Massachusetts,
+% 2004.
+% \bibitem{Carl99}^
+% David Carlisle,
+% \emph{The \Lpack{keyval} Package},
+% Version 1.13, 1999/03/16.
+% (Available from CTAN as file
+% \texttt{/tex-archive/macros/latex/required/graphics.zip}.)
+% \bibitem{Reck97}^
+% Keith Reckdahl,
+% \emph{Using Imported Graphics in \LaTeXe},
+% 1997/12/15.
+% (Available from CTAN as file \texttt{/tex-archive/info/epslatex.pdf}.)
+% \bibitem{Lamp94}^
+% Leslie Lamport,
+% \emph{LaTeX User's Guide and Reference Manual}, 2nd edition,
+% Addison-Wesley, Reading, Massachusetts,
+% 1994.
+% \bibitem{Knut86}^
+% Donald Ervin Knuth,
+% \emph{The \TeX book},
+% Addison-Wesley, Reading, Massachusetts,
+% 1986.
+% \end{thebibliography}}
+%
+% \iffalse
+%<*package>
+% \fi
+%
+% \cleardoublepage
+% \section{The Code}
+%
+% \subsection{Identification}
+%
+% Check \LaTeX\ release and announce the \Lpack{subfig} package.
+%
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}[1995/06/01]
+% \end{macrocode}
+%
+% \begin{macrocode}
+\ProvidesPackage{subfig}[2005/06/28 ver: 1.3 subfig package]
+% \end{macrocode}
+%
+% \subsection{Check for Nasty Classes}
+% \changes{v1.3}{4 May 2005}{At the request of David Kastrup, added
+% code to check for classes that use \cmd{\let} on \cmd{\end@figure}
+% and similar; and to print a warning and fix the problem if detected.}
+%
+% \begin{macro}{\sf@floatfix}
+%
+% Some ``broken'' document classes use \cmd{\let} on \cmd{\end@figure}
+% and similar, which are used as hooks in the end-processing of, in
+% this case, figures. The following code, courtesy of David Kastrup
+% (dak\@gnu.org) fixes the problem and prints a warning.
+% \begin{macrocode}
+\def\sf@floatfix#1#2{%
+ \ifx#1#2%
+ \ifx#1\@undefined\else
+ \PackageWarningNoLine{subfig}{%
+Your document class has a bad definition^^J
+of \string#1, most likely^^J
+\string\let\string#1=\string#2^^J
+which has now been changed to^^J
+\string\def\string#1{\string#2}^^J
+because otherwise subsequent changes to \string#2^^J
+(like done by several packages changing float behaviour)^^J
+can't take effect on \string#1.^^J
+Please complain to your document class author}%
+ \def#1{#2}%
+ \fi
+ \fi}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\begingroup
+\def\next#1#2{%
+ \endgroup
+ \sf@floatfix\endfigure\end@float
+ \sf@floatfix\endtable\end@float
+ \sf@floatfix#1\end@dblfloat
+ \sf@floatfix#2\end@dblfloat}
+\expandafter\next\csname endfigure*\expandafter\endcsname
+ \csname endtable*\endcsname
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \subsection{Load The \Lpack{Caption} Package}
+%
+% This version of the \Lpack{subfig} package is dependent on the new
+% \Lpack{caption} package by Axel Sommerfeldt \cite{Somm05}. The
+% \Lpack{caption} and the \Lpack{subfig} (formerly \Lpack{subfigure})
+% packages were rewritten in order to both improve the processing and
+% to reduce the amount of redundant code.
+%
+% \subsubsection{Load The \Lpack{Keyval} Package and Scan Options}
+% \label{sec:scanops}
+% \changes{v1.3}{9 September 2004}{Added check for `caption[=val]'.}
+%
+% The user may want to load the \Lpack{caption} package without
+% affecting the caption setup from the class or other packages. In this
+% case, the user can either separately load the \Lpack{caption} package
+% with the \Lkv{caption=false} option or the user may directly invoke
+% the \Lpack{subfig} package with this option. Here we check for the
+% latter possibility by scanning the options passed to this package and
+% determine the final setting (if any) of this particular option.
+%
+% \begin{macrocode}
+\RequirePackage{keyval}[1999/03/16]
+% \end{macrocode}
+%
+% \begin{macro}{\sf@ifinlist}
+% \changes{v1.3}{18 March 2004}{Added to generalized boolean values.}
+%
+% Since the \Lpack{caption} package is not yet available to us, we need
+% to check for alternate Boolean values ourselves. The \cmd{\sf@ifinlist}
+% macro checks a value against a list of synonyms.
+%
+% \begin{macrocode}
+\def\sf@ifinlist#1#2{%
+ \let\next\@secondoftwo
+ \edef\caption@tempa{#1}%
+ \@for\caption@tempb:={#2}\do{%
+ \ifx\caption@tempa\caption@tempb
+ \let\next\@firstoftwo
+ \fi}%
+ \next}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\sf@setbool}
+% \changes{v1.3}{18 March 2004}{Added to generalized boolean values.}
+%
+% The \cmd{\sf@setbool} uses \cmd{\sf@ifinlist} to check if its second
+% argument is {\em true} or {\em false} and set the associated {\em if}
+% (argument one) accordingly.
+%
+% \begin{macrocode}
+\def\sf@setbool#1#2{%
+ \sf@ifinlist{#2}{1,true,yes,on}{%
+ \@nameuse{#1true}%
+ }{\sf@ifinlist{#2}{0,false,no,off}{%
+ \@nameuse{#1false}%
+ }{%
+ \PackageError{subfig}{Undefined boolean value `#2'}{\@ehc}%
+ }}}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\sf@split}
+%
+% Next, we define a simple version of \cmd{\sf@split} here in order to
+% check for the \Lkv{caption} option. Later, we will redefine it
+% to process the rest of the options. The two new {\em if's} are used
+% to keep track of the state of the \Lkv{caption} option and also if
+% it occurs in the \Lpack{subfig} options list.
+%
+% \begin{macrocode}
+\def\sf@split#1=#2=#3\relax{%
+ \KV@@sp@def\@tempa{#1}%
+ \ifx\@tempa\@empty
+ \else\ifx\@tempa\KV@caption
+ \sf@usecaptionfoundtrue
+ \ifx\@empty#3\@empty
+ \sf@usecaptiontrue
+ \else
+ \KV@@sp@def\@tempb{#2}%
+ \sf@setbool{sf@usecaption}{\@tempb}%
+ \fi
+ \fi\fi}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\KV@caption{caption}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\newif\ifsf@usecaptionfound
+\sf@usecaptionfoundfalse
+% \end{macrocode}
+%
+% \begin{macrocode}
+\newif\ifsf@usecaption
+\sf@usecaptiontrue
+% \end{macrocode}
+%
+% \end{macro}
+%
+% Now we get and scan the optionlist for this package and remember
+% if the \Lkv{caption} option is set.
+%
+% \begin{macrocode}
+\edef\sf@temp{\@ptionlist{\@currname.\@currext}}
+\let\caption@tempa\@empty
+\@for\CurrentOption:=\sf@temp\do{%
+ \expandafter\sf@split\CurrentOption==\relax}
+% \end{macrocode}
+%
+% \subsubsection{Load and Extend the \Lpack{Caption} Package}
+%
+% First we load the \Lpack{caption} package if it has not already been
+% loaded using the \Lkv{caption=false} option if specified. Note that
+% this can cause problems if the \Lpack{caption} was already loaded
+% with different options, so we issue warnings if the user as loaded
+% the \Lpack{caption} package and used the \Lkv{caption} option with
+% the \Lpack{subfig} packare.
+%
+% \begin{macrocode}
+\ifsf@usecaption
+ \@ifpackageloaded{caption}{%
+ \ifsf@usecaptionfound
+ \PackageWarning{subfig}{%
+ You cannot set the `caption' option here if the\MessageBreak
+ caption package is already loaded (the option\MessageBreak
+ `caption=true' is ignored)}%
+ \fi
+ }{%
+ \RequirePackage{caption}[2005/06/26]
+ }%
+\else
+ \RequirePackage{caption3}[2005/06/11]
+\fi
+% \end{macrocode}
+%
+% \begin{macro}{\sf@ifpositiontop}
+% \noindent
+% Then we make certain that the |\caption@position| is recognizable to
+% the \Lpack{subfig} package code. We assume that if it is not the
+% same as |\@firstoftwo| (\eg, \Lkv{top}), than it must be |\@secondoftwo|,
+% or \Lkv{bottom} (\ie, anything that isn't designated as
+% \Lkv{[position=top]} is forced to be \Lkv{[position=bottom]}).
+%
+% \begin{macrocode}
+\def\sf@ifpositiontop{%
+ \ifx\caption@position\@firstoftwo \let\next\@firstoftwo \else
+ \let\next\@secondoftwo \fi \next}
+% \end{macrocode}
+% \end{macro}
+%
+% \begin{macro}{\DeclareCaptionListOfFormat}
+% \begin{macro}{\caption@setlistofformat}
+% \changes{v1.1}{12 January 2004}{Changed \cmd{\captionlistofformat} to
+% \cmd{\caption@lstfmt}.}
+%
+% Next, we define the \cmd{\DeclareCaptionListOfFormat} command which
+% controls how the sub-float captions appear on the List-of-Floats pages.
+% Note that this command can only be used to define new formats in the
+% preamble of your paper. The format may be changed at anytime using the
+% \cmd{\captionsetup} command.
+%
+% \begin{macrocode}
+\def\DeclareCaptionListOfFormat#1{%
+ \@namedef{caption@lstfmt@#1}##1##2}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\@onlypreamble\DeclareCaptionListOfFormat
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\caption@setlistofformat#1{%
+ \@ifundefined{caption@lstfmt@#1}{%
+ \PackageError
+ {subfig}%
+ {Undefined caption list-of format `#1'}%
+ {\caption@eh}%
+ }{%
+ \expandafter\let\expandafter\caption@lstfmt
+ \csname caption@lstfmt@#1\endcsname}}
+% \end{macrocode}
+%
+% \noindent
+% Using the \cmd{\DeclareCaptionListOfFormat} command, we define some common
+% formats and the new keyword, \Lkv{listofformat}, which may be used
+% in the key/value option list of the \cmd{\usepackage} command or
+% with the \cmd{\captionsetup} command to change the listing format of
+% the sub-float caption label.
+%
+% \begin{macrocode}
+\DeclareCaptionListOfFormat{empty}{}
+\DeclareCaptionListOfFormat{simple}{#1#2}
+\DeclareCaptionListOfFormat{parens}{#1(#2)}
+\DeclareCaptionListOfFormat{subsimple}{#2}
+\DeclareCaptionListOfFormat{subparens}{(#2)}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\DeclareCaptionOption{listofformat}{\caption@setlistofformat{#1}}
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\sf@indent}
+% \begin{macro}{\sf@numwidth}
+%
+% We also add two new keywords, \Lkv{listofindent} and
+% \Lkv{listofnumwidth}, which set the lengths used to show where
+% and how wide the caption label will be when typeset. These are
+% used as the fourth and fifth arguments of the \cmd{\dottedxxxline}
+% command, see section~\ref{sec:dottedxxxline} for more detail.
+%
+% \begin{macrocode}
+\def\sf@indent{3.8em}
+\define@key{caption}{listofindent}[3.8em]{\def\sf@indent{#1}}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\sf@numwidth{2.5em}
+\define@key{caption}{listofnumwidth}[2.5em]{\def\sf@numwidth{#1}}
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\DeclareSubrefFormat}
+% \begin{macro}{\caption@setsubrefformat}
+% \changes{v1.3}{27 May 2005}{Added the ability to format the
+% \cmd{\subref*} output.}
+%
+% We define the \cmd{\DeclareSubreffFormat} command just like the
+% above \cmd{\DeclareCaptionListOfFormat} command above. This format,
+% however, controls how the \cmd{\subref*} command formats the sub-float
+% label. Again, this command can only be used to define new formats in
+% the preamble of your paper and the format may be changed at anytime
+% using the \cmd{\captionsetup} command.
+%
+% \begin{macrocode}
+\def\DeclareSubrefFormat#1{%
+ \@namedef{caption@subreffmt@#1}##1##2##3##4}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\@onlypreamble\DeclareSubrefFormat
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\caption@setsubrefformat#1{%
+ \@ifundefined{caption@subreffmt@#1}{%
+ \PackageError
+ {subfig}%
+ {Undefined subref format `#1'}%
+ {\caption@eh}%
+ }{%
+ \expandafter\let\expandafter\caption@subreffmt
+ \csname caption@subreffmt@#1\endcsname}}
+% \end{macrocode}
+%
+% \noindent
+% Using the \cmd{\DeclareSubrefFormat} command, we define some common
+% formats and the new keyword, \Lkv{subrefformat}, which may be used
+% in the key/value option list of the \cmd{\usepackage} command or
+% with the \cmd{\captionsetup} command to change the format of
+% the \cmd{\subref*} references.
+%
+% \begin{macrocode}
+\DeclareSubrefFormat{empty}{}
+\DeclareSubrefFormat{simple}{#1#2}
+\DeclareSubrefFormat{parens}{#1(#2)}
+\DeclareSubrefFormat{subsimple}{#2}
+\DeclareSubrefFormat{subparens}{(#2)}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\DeclareCaptionOption{subrefformat}{\caption@setsubrefformat{#1}}
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+%
+% \subsection{Options Processing}
+%
+% \begin{macro}{\KV@config}
+% \begin{macro}{\sf@split}
+% \changes{v1.3}{9 September 2004}{Added check for \Lkv{caption} keyword.}
+% \begin{macro}{\ProcessPackageOptions}
+%
+% In order to work within the \Lpack{caption} package, the
+% \Lpack{subfig} package saves most of the options provided via
+% \cmd{\usepackage} and (re-)applies them each time a sub-float is
+% started. The two exceptions are the \Lkv{caption} keyword, which is
+% ignored (see section~\ref{sec:scanops} above), and the \Lkv{config}
+% keyword, which is executed immediately. To accomplish this, we use a
+% modified version of the \Lpack{keyval} package processing.
+% \Lkv{Config} entries are detected and executed, while other keywords
+% are passed back to add to the \Lvar{subfloat} list. ({\scshape\bf
+% Note}: Currently the \Lkv{config} files are unable to use
+% |\captionsetup| without its optional argument. If you need to set a
+% global value in a configuration file, than do it directly.)
+%
+% \begin{macrocode}
+\newcounter{KVtest}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\KV@config{config}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\sf@split#1=#2=#3\relax{%
+ \setcounter{KVtest}{1}%
+ \KV@@sp@def\@tempa{#1}%
+ \ifx\@tempa\@empty
+ \else\ifx\@tempa\KV@caption
+ \setcounter{KVtest}{2}%
+ \else\ifx\@tempa\KV@config
+ \setcounter{KVtest}{2}%
+ \expandafter\let\expandafter\@tempc
+ \csname\KV@prefix\@tempa\endcsname
+ \ifx\@tempc\relax
+ \KV@errx
+ {\@tempa\space undefined}%
+ \else\ifx\@empty#3\@empty
+ \KV@default
+ \else
+ \KV@@sp@def\@tempb{#2}%
+ \expandafter\@tempc\expandafter{\@tempb}\relax
+ \fi\fi
+ \fi\fi\fi}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\ProcessPackageOptions{%
+ \def\KV@prefix{KV@\@currname @}%
+ \let\@tempc\relax
+ \let\caption@tempa\@empty
+ \@for\CurrentOption:=\@classoptionslist\do{%
+ \@ifundefined{KV@caption@\CurrentOption}{}{%
+ \edef\caption@tempa{\caption@tempa,\CurrentOption,}%
+ \@expandtwoargs\@removeelement\CurrentOption
+ \@unusedoptionlist\@unusedoptionlist}}%
+ \edef\caption@tempb{\@ptionlist{\@currname.\@currext}}%
+ \@for\CurrentOption:=\caption@tempb\do{%
+ \expandafter\sf@split\CurrentOption==\relax
+ \ifnum\c@KVtest<2\relax
+ \edef\caption@tempa{\caption@tempa,\CurrentOption,}%
+ \fi}%
+ \edef\caption@tempa{%
+ \noexpand\captionsetup[subfloat]{\caption@tempa}}%
+ \caption@tempa}
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \subsection{Generalized List-of-Floats}
+% \changes{v1.2}{22 January 2004}{Changed the first parameter to send float name
+% rather than sub-float name.}
+% \label{sec:dottedxxxline}
+%
+% \begin{macro}{\dottedxxxline}
+%
+% This is a generalized wrapper for the |\@dottedtocline| command for sub-float
+% entries. It checks for the level based on the output file extension (second
+% argument) and not using only the |\@tocdepth|, as the |\@dottedtocline|
+% command does.
+%
+% \noindent
+% The arguments of the |\@dottedxxxline| command are:
+% \begin{quote}
+% \begin{enumerate}
+% \itemsep -\parsep
+% \item \underline{\smash{\textsf{Main Float Type Relative to the Sub-float}}}.
+% \item \underline{\smash{\textsf{File Extension}}}. The usual
+% values are: \Lfile{lof} or \Lfile{lot}. The internal
+% values |\ext@subfigure| and |\ext@subtable| hold these
+% extensions.
+% \item \underline{\textsf{Level}}. By default this is `2'
+% for sub-floats. If the level is greater than
+% \Lcount{\meta{Ext}depth} (where
+% \underline{\smash{\meta{Ext}}} is the second
+% argument, above), then no line is produced.
+% \item \underline{\textsf{Indent}}. Total indentation
+% from the left margin.
+% \item \underline{\textsf{Numwidth}}. Width of box for the
+% label number if the \underline{\textsf{Title}} has a
+% |\numberline| command. This is also the amount of extra
+% indentation added to second and later lines of a multiple
+% line entry.
+% \item \underline{\textsf{Title}}. Contents of entry (\eg, the
+% \meta{list\_entry} or \meta{sub-caption}).
+% \item \underline{\smash{\textsf{Page}}}. The page number of the
+% figure or table.
+% \end{enumerate}
+% \end{quote}
+%
+% \noindent
+% The final two arguments, \underline{\textsf{title}} and
+% \underline{\smash{\textsf{page}}}, are automatically appended to the
+% value of |\l@subfigure| (and symmetrically for other sub-float types).
+%
+% \changes{v1.2}{22 January 2004}{Added commands to set the float
+% caption keyword/values.}
+%
+% \begin{macrocode}
+\def\@dottedxxxline#1#2#3#4#5#6#7{%
+ \begingroup
+ \@ifundefined{caption@setfloattype}%
+ \caption@settype
+ \caption@setfloattype
+ {#1}
+ \caption@settype{subfloat}%
+ \caption@settype{sub#1}%
+ \ifnum #3>\@nameuse{c@#2depth}\else
+ \@dottedtocline{\z@}{#4}{#5}{#6}{#7}%
+ \fi
+ \endgroup}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \subsection{Create New Sub-floats}
+%
+% \begin{macro}{\newsubfloat}
+% \begin{macro}{\@newsubfloat}
+% This command is used to create new types of sub-floats. It is used
+% during the \Lpack{subfig} configuration to create the two standard
+% float types: \Lvar{subfigure} and \Lvar{subtable} and may be used
+% anywhere in the preamble to create other types of sub-floats (see
+% section~\ref{sec:customfloat} and table~\ref{tab:newsubfloat}).
+%
+% \begin{macrocode}
+\newif\ifmaincaptiontop
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\newsubfloat{%
+ \@ifnextchar[ %] bracket matching
+ {\@newsubfloat}
+ {\@newsubfloat[]}}
+% \end{macrocode}
+%
+% \changes{v1.2}{16 January 2004}{Removed code setting a default
+% \Lkv{position} in the new sub-float based on its corresponding float.}
+% \changes{v1.2}{22 January 2004}{Changed first parameter of the
+% \cmd{\dotttedxxxline} to use the float rather than the sub-float name.}
+% \changes{v1.3}{27 February 2004}{Added creating the key-value
+% options for setting the associated List-of-Floats page depth with a
+% default of 2.}
+%
+% \begin{macrocode}
+\def\@newsubfloat[#1]#2{%
+ \@ifundefined{c@sub#2}{%
+ \newcounter{sub#2}[#2]
+ \newcounter{sub#2@save}%
+ \@namedef{sub#2name}{}%
+ \@namedef{p@sub#2}{\@nameuse{the#2}}%
+ \@namedef{thesub#2}{\alph{sub#2}}%
+ \@namedef{ext@sub#2}{\@nameuse{ext@#2}}%
+% \end{macrocode}
+%
+% \begin{macrocode}
+ \@namedef{l@sub#2}{%
+ \@dottedxxxline{#2}%
+ {\@nameuse{ext@sub#2}}{2}{\sf@indent}{\sf@numwidth}}%
+ \@ifundefined{c@\@nameuse{ext@#2}depth}{%
+ \expandafter\newcounter\expandafter{\@nameuse{ext@#2}depth}%
+ \expandafter\addtocounter\expandafter{\@nameuse{ext@#2}depth}\@ne}{}%
+ \@namedef{KV@caption@\@nameuse{ext@#2}depth@default\expandafter}%
+ \expandafter{\csname KV@caption@\@nameuse{ext@#2}depth\endcsname{2}}%
+ \@namedef{KV@caption@\@nameuse{ext@#2}depth}##1{%
+ \setcounter{\@nameuse{ext@#2}depth}{##1}}%
+ \edef\sf@counterlist{%
+ \@ifundefined{sf@counterlist}{}%
+ {\sf@counterlist,}sub#2}%
+ \captionsetup[sub#2]{#1}%
+ }{%
+ \PackageWarning{subfig}{%
+ The sub#2\space type is already defined.}%
+ }}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\@onlypreamble\@newsubfloat
+\@onlypreamble\newsubfloat
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+%
+% \subsection{Layout Parameters}
+% \label{sec:layoutparams}
+%
+% \begin{macro}{\sf@farskip}
+% \begin{macro}{\sf@captopadj}
+% \begin{macro}{\sf@capskip}
+% \begin{macro}{\sf@nearskip}
+% \changes{v1.2}{21 January 2004}{Fine-tuned defaults for \Lkv{farskip},
+% \Lkv{topadjust}, \Lkv{captionskip}, and \Lkv{nearskip}.}
+%
+% We now create the sub-float layout parameters. We do it now so that the
+% values will be available during the configuration and options processing,
+% below. The \Lkv{margin} and \Lkv{width} are already defined in the
+% \Lpack{caption} package.
+%
+% \begin{macrocode}
+\newskip\sf@farskip
+\sf@farskip 10\p@
+\define@key{caption}{farskip}[10\p@]{\sf@farskip=#1}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\newdimen\sf@captopadj
+\sf@captopadj \z@
+\define@key{caption}{topadjust}[\z@]{\sf@captopadj=#1}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\newskip\sf@capskip
+\sf@capskip 4\p@
+\define@key{caption}{captionskip}[4\p@]{\sf@capskip=#1}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\newskip\sf@nearskip
+\sf@nearskip \z@
+\define@key{caption}{nearskip}[5\p@]{\sf@nearskip=#1}
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\sf@old@caption}
+% \begin{macro}{\@caption}
+%
+% Save the current definition of the \cmd{\@caption} command so that
+% we can wrap it with code that first checks if a caption for the
+% current float type comes before (\Lkv{[position=top]}) or after
+% (\Lkv{[position=bottom]}) the related sub-floats. Then the decision
+% can be made of whether or not to flush the list of sub-float captions
+% to the proper List-of-Floats file. See the \cmd{\caption@} definition
+% in section~\ref{sec:listofprocessing}.
+%
+% \begin{macrocode}
+\let\sf@old@caption\@caption
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\@caption{\caption@}
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+%
+% \subsection{Process the Package Options}
+% \changes{v1.1}{12 January 2004}{Removed \Lkv{position} settings from
+% initial setup to allow the class or other external settings to
+% control the initial settings of the default (\Lkv{bottom}) and table
+% (\Lkv{top}) positions.}
+% \changes{v1.1}{12 January 2004}{Updated \Lkv{listofformat} value from
+% \Lkv{simple} to \Lkv{subsimple}.}
+%
+% \begin{enumerate}
+% \item Set the default (override) values in \Lvar{subfloat}.
+% (It would be nice not to set anything, however, most users will
+% want something like this set so we do so. If desired, these may
+% be wiped out in a configuration file with \cmd{\clearcaptionsetup}
+% command.)
+%
+% \changes{v1.2}{21 January 2004}{Removed \cmd{\captionsetup} of defaults
+% for \Lkv{farskip}, \Lkv{topadjust}, \Lkv{captionskip}, and
+% \Lkv{nearskip}; because these are defaulted above. Any change can be
+% added to the \Lvar{subfloat} variable.}
+% \changes{v1.3}{27 May 2005}{Added \Lkv{subrefformat} default.}
+%
+% \begin{macrocode}
+\captionsetup[subfloat]{%
+ font=footnotesize,
+ labelformat=parens,labelsep=space,
+ listofformat=subparens,subrefformat=subsimple}
+% \end{macrocode}
+%
+% \item Load the configuration file(s) if `config' keyword is given.
+% (Use |\captionsetup| to change options (remember, due to a known
+% bug, you cannot set global-level values because you have to supply
+% the optional argument in a \Lpack{subfig} package configuration file.)
+%
+% \begin{macrocode}
+\define@key{subfig}{config}[subfig]{%
+ \InputIfFileExists{#1.cfg}{%
+ \typeout{***********************************************^^J%
+ * Subfig configuration file #1.cfg used ^^J%
+ ***********************************************}%
+ }{%
+ \PackageWarning{subfig}{Configuration file #1.cfg not found}}%
+}
+% \end{macrocode}
+%
+% \item Process the options list using the KV macros. (Note, the
+% `config' option is processed before any other option in the
+% package list to load the files in the last step, above.) The
+% remaining options are added to the end of \Lvar{subfloat} after
+% the configuration process.
+%
+% \begin{macrocode}
+\ProcessPackageOptions
+% \end{macrocode}
+%
+% \item If the \Lkv{subfigure} and the \Lkv{subtable} sub-floats
+% have not been defined during the configuration process, than
+% we define define them now (along with all of the items in
+% table~\ref{tab:newsubfloat}).
+%
+% \begin{macrocode}
+\@ifundefined{c@subfigure}{\newsubfloat{figure}}{}
+\@ifundefined{c@subtable}{\newsubfloat{table}}{}
+% \end{macrocode}
+%
+% \item Finally, we designate those commands that we will not need
+% after this package is finished. Also, we reset \cmd{\CaptionOption}
+% to keep this package from influencing other packages using the
+% variable.
+%
+% \changes{v1.2}{21 January 2004}{Added the reset of the
+% \cmd{\CaptionOption} to keep this package from influencing other
+% packages using the variable.}
+% \changes{v1.3}{10 October 2004}{Added new elements due to the addition
+% of the \Lkv{caption} option processing.}
+%
+% \begin{macrocode}
+\AtEndOfPackage{%
+ \global\let\ifsf@usecaption\relax
+ \global\let\sf@usecaptiontrue\relax
+ \global\let\sf@usecaptionfalse\relax
+ \global\let\ifsf@usecaptionfound\relax
+ \global\let\sf@usecaptionfoundtrue\relax
+ \global\let\sf@usecaptionfoundfalse\relax
+ \global\let\KV@caption\relax
+ \global\let\KV@subfig@caption\relax
+ \global\let\KV@subfig@caption@default\relax
+ \global\let\KV@config\relax
+ \global\let\KV@subfig@config\relax
+ \global\let\KV@subfig@config@default\relax
+ \global\let\ProcessPackageOptions\relax
+ \global\let\@unprocessedoptions\relax
+ \let\CurrentOption\@empty
+}
+% \end{macrocode}
+%
+% \item (And, of course, we process calls to |\captionsetup| throughout
+% the paper.)
+% \end{enumerate}
+%
+% \subsection{Define the Sub-float Layout}
+%
+% The main command is |\subfloat|. This command takes the figure code and
+% the optional caption and builds a vertical box that contains them along
+% with some additional padding as defined by the layout parameters defined
+% in section~\ref{sec:layoutparams}
+%
+% \begin{macro}{\sf@top}
+% \begin{macro}{\sf@bottom}
+%
+% We define two skip variables which are set to the \Lkv{farskip} and the
+% \Lkv{nearskip} values, depending on the \Lkv{position} of the
+% corresponding float caption. These are used, when the time comes, to
+% build the sub-float box as illustrated in figure~\ref{fig:layout}.
+%
+% \begin{macrocode}
+\newskip\sf@top
+\newskip\sf@bottom
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\subfloat}
+%
+% This is the ``main'' command. All it really does is to check that we
+% are inside a float environment (or at the very least that someone has
+% tricked us by defining \cmd{\@captype}). If all seems salubrious, than
+% we pass all of the arguments to the internal comamnd \cmd{\sf@subfloat}.
+%
+% \begin{macrocode}
+\def\subfloat{%
+ \ifx\@captype\@undefined
+ \@latex@error{\noexpand\subfloat outside float}\@ehd
+ \expandafter\@gobble
+ \else
+ \expandafter\@firstofone
+ \fi
+ {\sf@subfloat}}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\sf@subfloat}
+% \changes{v1.2}{22 January 2004}{Changed method of setting the float
+% caption settings to first check for \cmd{\caption@setfloattype} and
+% to use that if present.}
+%
+% \noindent
+% This routine does more setup and at the end begins to parse the
+% optional argument. First the float options are applied and a flag
+% \texttt{\char`\\ ifmaincaptiontop} is set for later use; the
+% \Lkv{subfloat} and sub-\cmd{\@captype} options are set and the
+% \cmd{\label} command is temporarily wrapped with \cmd{\subfloat@label}.
+%
+% \begin{macrocode}
+\def\sf@subfloat{%
+ \begingroup
+ \@ifundefined{caption@setfloattype}%
+ \caption@settype
+ \caption@setfloattype
+ \@captype
+ \sf@ifpositiontop{%
+ \maincaptiontoptrue
+ }{%
+ \maincaptiontopfalse
+ }%
+ \caption@settype{subfloat}%
+ \caption@settype{sub\@captype}%
+ \let\sf@oldlabel=\label
+ \let\label=\subfloat@label
+% \end{macrocode}
+%
+% Next, a decision (based on the \texttt{\char`\\ ifmaincaptiontop}
+% flag) is made of how to advance the float counter; then the
+% sub-float counter is advanced and saved and a check is made if an
+% optional argument is present (if not, one is supplied).
+%
+% \begin{macrocode}
+ \ifmaincaptiontop\else
+ \advance\@nameuse{c@\@captype}\@ne
+ \fi
+ \refstepcounter{sub\@captype}%
+ \setcounter{sub\@captype @save}{\value{sub\@captype}}%
+ \@ifnextchar [% %] match left bracket
+ {\sf@@subfloat}%
+ {\sf@@subfloat[\@empty]}}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\sf@@subfloat}
+%
+% A check is made for a second optional argument, if one is not found,
+% than one is supplied. We are now ready to call the real (internal)
+% ``\cmd{\subfloat}'' command, \cmd{\sf@@@subfloat}.
+%
+% \begin{macrocode}
+\long\def\sf@@subfloat[#1]{%
+ \@ifnextchar [% %] match left bracket
+ {\sf@@@subfloat{sub\@captype}[{#1}]}%
+ {\sf@@@subfloat{sub\@captype}[\@empty{#1}][{#1}]}}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\sf@@@subfloat}
+%
+% This is the main function in the whole package. It is the one that builds
+% the sub-float box and stuffs it with the various parts from it's arguments
+% and the currently set options.
+%
+% \changes{v1.2}{21 January 2004}{Changed the top and bottom skips
+% to be placed opposite the main caption rather than the sub-caption;
+% I decided that that looked better.}
+% \changes{v1.2}{21 January 2004}{Inserted another \cmd{\hrule} of zero
+% size to kill extra vertical space from being added.}
+% \changes{v1.3}{6 May 2005}{At the request of Olga Lapko, added a hook
+% into the \cmd{\sf@@@subfloat} macro to record the maximum size of
+% subfloats on the current row and to set the height/depth of the
+% current subfloat.}
+%
+% \begin{macrocode}
+\long\def\sf@@@subfloat#1[#2][#3]#4{%
+% \end{macrocode}
+%
+% The next two lines are the first section of a hook for the
+% \Lpack{floatrow} package to obtain and save the height of the
+% highest subfloat on the current row.
+%
+% \begin{macrocode}
+ \@ifundefined{FBsc@max}{}%
+ {\FB@readaux{\let\FBsuboheight\relax}}%
+% \end{macrocode}
+%
+% The next section sets a counter, \cmd{\@tempcnta}, depending on the
+% current interpreter mode. Zero indicates the start of a minipage;
+% One is the normal; and, Two indicates that there was a non-zero skip
+% preceeding the sub-float. We save this information for a little later.
+%
+% \begin{macrocode}
+ \@tempcnta=\@ne
+ \if@minipage
+ \@tempcnta=\z@
+ \else\ifdim \lastskip=\z@ \else
+ \@tempcnta=\tw@
+ \fi\fi
+% \end{macrocode}
+%
+% Then, set our \cmd{\sf@top} and \cmd{\sf@bottom} variables with right
+% amounts, based on the \texttt{\char`\\ ifmaincaptiontop} flag that we
+% set earlier. Then we insure that we are in horizontal mode and
+% process the sub-float body into a box so that we can measure it.
+% \cmd{\@tempdima} is set to the with of the sub-float body.
+%
+% NOTE: We need to either add negative margins or widths here or allow them
+% to stick out!
+%
+% \begin{macrocode}
+ \ifmaincaptiontop
+ \sf@top=\sf@nearskip
+ \sf@bottom=\sf@farskip
+ \else
+ \sf@top=\sf@farskip
+ \sf@bottom=\sf@nearskip
+ \fi
+ \leavevmode
+ \setbox\@tempboxa \hbox{#4}%
+ \@tempdima=\wd\@tempboxa
+% \end{macrocode}
+%
+% The next seven lines are the second section of the \Lpack{floatrow}
+% package hook which counts the maximal height of subfloat row.
+%
+% \begin{macrocode}
+ \@ifundefined{FBsc@max}{}%
+ {\global\advance\Xhsize-\wd\@tempboxa
+ \dimen@=\ht\@tempboxa
+ \advance\dimen@\dp\@tempboxa
+ \ifdim\dimen@>\FBso@max
+ \global\FBso@max\dimen@
+ \fi}%
+% \end{macrocode}
+%
+% Now, we begin building our sub-float box. It will be a vertical box
+% containing two vertical boxes. The baseline of the upper box is used
+% as the baseline of the final sub-float. So this section decides what
+% order to fill-in the box. Figure~\ref{fig:layout} shows the different
+% ways that we can do this.
+%
+% The first thing is to decide what skip to add to the top. Depending on
+% the initial mode (stored in \cmd{\@tempcnta}) we may put nothing (and
+% declare \cmd{\@minipagefalse}); the full \cmd{\sf@top} skip; or, the
+% larger of the last skip and \cmd{\sf@top}.
+%
+% ({\scshape\bf Note}: If the \Lkv{debug} option is used in stripping
+% this code to a package file, than a vertical rule instead of a skip
+% is inserted into the box.)
+%
+% \begin{macrocode}
+ \vtop\bgroup
+ \vbox\bgroup
+ \ifcase\@tempcnta
+ \@minipagefalse
+ \or
+%<+debug> \leaders\vrule\vskip\sf@top
+%<-debug> \vskip\sf@top
+ \or
+ \ifdim \lastskip=\z@ \else
+ \@tempskipb\sf@top\relax\@xaddvskip
+ \fi
+ \fi
+% \end{macrocode}
+%
+% Into the top box, after the initial skip (if any), we place either
+% the sub-float body or the sub-caption. We decide which one based
+% on the current \Lkv{position} setting.
+% Finally, reset the float counter if we changed it above.
+%
+% ({\scshape\bf Note}: Here also, vertical rules are inserted into the
+% box instead of a skip, if the \Lkv{debug} option is used in stripping
+% this code to a package file.)
+%
+% \begin{macrocode}
+ \sf@ifpositiontop{%
+ \ifx \@empty#3\relax \else
+ \sf@subcaption{#1}{#2}{#3}%
+%<+debug> \leaders\vrule width.8pt\vskip\sf@capskip
+%<-debug> \vskip\sf@capskip
+%<+debug> \leaders\vrule width1.2pt\vskip\sf@captopadj
+%<-debug> \vskip\sf@captopadj
+ \fi\egroup
+ \hrule width0pt height0pt depth0pt
+ \box\@tempboxa
+ }{%
+% \end{macrocode}
+%
+% The next seven lines contain the third section of the \Lpack{floatrow}%
+% hook which applies a given height to the subfloat figure section.
+%
+% \begin{macrocode}
+ \@ifundefined{FBsc@max}%
+ {\box\@tempboxa}%
+ {\ifx\FBsuboheight\relax
+ \box\@tempboxa
+ \else
+ \vbox to \FBsuboheight{\FBafil\box\@tempboxa\FBbfil}%
+ \fi}%
+% \end{macrocode}
+%
+% \begin{macrocode}
+ \egroup
+ \ifx \@empty#3\relax \else
+%<+debug> \leaders\vrule width.8pt\vskip\sf@capskip
+%<-debug> \vskip\sf@capskip
+ \hrule width0pt height0pt depth0pt
+ \sf@subcaption{#1}{#2}{#3}%
+ \fi
+ }%
+%<+debug> \leaders\vrule\vskip\sf@bottom
+%<-debug> \vskip\sf@bottom
+ \egroup
+% \end{macrocode}
+%
+% The next five lines contain the fourth section of the \Lpack{floatrow}%
+% and the last in this macro. These add, if necessary, a separator for
+% the subfloats.
+%
+% \begin{macrocode}
+ \@ifundefined{FBsc@max}{}%
+ {\addtocounter{FRobj}{-1}%
+ \ifnum\c@FRobj=0\else
+ \subfloatrowsep
+ \fi}%
+% \end{macrocode}
+%
+% \begin{macrocode}
+ \ifmaincaptiontop\else
+ \global\advance\@nameuse{c@\@captype}\m@ne
+ \fi
+ \endgroup\ignorespaces}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \subsection{Use the \Lpack{Caption} Package to Build the Sub-float Captions}
+% \changes{v1.1}{12 January 2004}{Changed \cmd{\captionlistofformat} to
+% \cmd{\caption@lstfmt}.}
+% \changes{v1.3}{6 May 2005}{At the request of Olga Lapko, added a hook
+% into the \cmd{\@subcaption} macro to record the maximum size of
+% subcaption on the current row and to set the height/depth of the
+% current subcaption.}
+%
+% \begin{macro}{\sf@updatecaptionlist}
+% \changes{v1.3}{20 May 2005}{Added to support the \cmd{\sf@subcaption}.}
+%
+% This macro is used to setup the \Lpack{hyperref} name, in case it is
+% needed.
+%
+% \begin{macrocode}
+\def\sf@updatecaptionlist#1#2#3#4{%
+ \xdef\sf@captionlist{%
+ \sf@captionlist,%
+ {\protect\numberline{\@subcaplabel}\noexpand{\ignorespaces #2}}%
+ {#1.#3.#4}}}
+% \end{macrocode}
+%
+% \end{macro}
+%
+%
+%
+% \begin{macro}{\sf@subcaption}
+% \changes{v1.3}{20 May 2005}{Added \cmd{\sf@updatecaptionlist} to
+% get unique names for hyper-references.}
+%
+% This command is called from within \cmd{\sf@@@subfloat} and does two
+% things. First it adds the sub-caption to the list of sub-captions for
+% printing later, after the main caption is printed, which is either before
+% the next caption or at the end of the current \Lenv{float} environment.
+%
+% \begin{macrocode}
+\long\def\sf@subcaption#1#2#3{%
+ \ifx \relax#2\relax \else
+ \bgroup
+ \let\label=\@gobble
+ \let\protect=\string
+ \def\@subcaplabel{%
+ \caption@lstfmt{\@nameuse{p@#1}}{\@nameuse{the#1}}}%
+ \sf@updatecaptionlist{#1}{#2}{\the\value{\@captype}}{\the\value{#1}}%
+ \egroup
+ \fi
+% \end{macrocode}
+%
+% Next, it makes a box to hold and center the sub-caption and calls the
+% \Lpack{caption} package \cmd{\caption@make} command to format it. (NOTE:
+% This last section of \cmd{\sf@subcaption} is closely combined with the
+% \Lpack{floatrow} package hooks.)
+%
+% \begin{macrocode}
+ \bgroup
+ \ifx \relax#3\relax
+ \let\captionlabelsep=\relax
+ \fi
+% \end{macrocode}
+%
+% This next group of code finishes the \Lpack{floatrow} package
+% hooks into \Lpack{subfig}. This gets and saves the maximum
+% height/depth of the caption portion of the subfloats on this
+% row and, optionally, sets the height/depth of the current subcaption.
+%
+% The first section builds the box and if the marker \cmd{\FBsc@max} is
+% not present, than it sets the box. Otherwise the \Lpack{floatrow}
+% code is activated.
+%
+% \begin{macrocode}
+ \setbox0\vbox{%
+ \hb@xt@\the\@tempdima{%
+ \hss
+ \parbox[t]{\the\@tempdima}{%
+ \caption@make
+ {\@nameuse{sub\@captype name}}%
+ {\@nameuse{thesub\@captype}}%
+ {#3}}%
+ \hss}}%
+ \@ifundefined{FBsc@max}%
+ {\box0}%
+% \end{macrocode}
+%
+% \begin{macrocode}
+ {\dimen@\ht0%
+ \advance\dimen@\dp0%
+ \ifdim\dimen@>\FBsc@max
+ \global\FBsc@max\dimen@
+ \fi
+ \FB@readaux{\let\FBsubcheight\relax}%
+ \ifx\FBsubcheight\relax
+ \def\next{\parbox[t]{\the\@tempdima}}%
+ \else
+ \def\next{\parbox[t][\FBsubcheight][t]{\the\@tempdima}}%
+ \fi
+ \vbox{%
+ \hb@xt@\the\@tempdima{%
+ \hss
+ \next{%
+ \caption@make
+ {\@nameuse{sub\@captype name}}%
+ {\@nameuse{thesub\@captype}}%
+ {#3}}%
+ \hss}}}%
+% \end{macrocode}
+%
+% \begin{macrocode}
+ \egroup}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \subsection{Subfig Caption Processing for the List-of-Floats Files}
+% \label{sec:listofprocessing}
+%
+% \begin{macro}{\listsubcaptions}
+% \begin{macro}{\listsubcaptions*}
+%
+% The \cmd{\listsubcaptions} command writes the list of sub-captions to the
+% List-of-Floats file. This is done so that they will follow the associated
+% caption in the file. The \cmd{\listsubcaptions} command is (optionally)
+% called by the \cmd{\caption} command and at the end of the float
+% environment by the internal \cmd{\end@float} command. In rare instances
+% the user may need to call it also, see section~\ref{sec:listsubcaptions}
+% for an example.
+%
+% The starred form of the comamnd, \cmd{\listsubcaptions*}, is not documented
+% as it is not clear that it is of any real use. It may go away in the
+% future, so it should not be used.
+%
+% \begin{macrocode}
+\def\listsubcaptions{%
+ \@ifstar
+ {\gdef\sf@captionlist{}}%
+ {\@listsubcaptions{\@captype}}}
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\sf@captionlist}
+%
+% \cmd{\sf@captionlist} is the internal list of pending sub-captions.
+% We initialize it here as an empty list.
+%
+% \begin{macrocode}
+\def\sf@captionlist{}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\@listsubcaptions}
+% \changes{v1.3}{20 May 2005}{Modified the \cmd{\sf@captionlist} to
+% have a unique name for hyper references to the subfigures.}
+%
+% This is the code that actually writes the sub-captions to the appropriate
+% List-of-Floats file. First, we check that \cmd{\@captype} is defined
+% and that the current type of sub-float expects to be written to a
+% List-of-Floats file (by virtue of the file extension contained in
+% \cmd{\ext@sub}-$<$whatever$>$).
+%
+% Next we step through the internal list of pending sub-captions and
+% write the contents line to the List-of-Floats file for each. Finally,
+% the internal list, \cmd{\sf@captionlist}, is re-initialized.
+%
+% \begin{macrocode}
+\def\@listsubcaptions#1{%
+ \@ifundefined{@captype}{}{%
+ \@ifundefined{ext@sub#1}{}{%
+ \@for \sf@temp:=\sf@captionlist \do {%
+ \ifx \@empty\sf@temp\relax \else
+ \begingroup
+ \def\@currentHref{\expandafter\@secondoftwo\sf@temp}%
+ \sf@addcontentsline
+ {\@nameuse{ext@sub#1}}%
+ {sub#1}%
+ {\expandafter\@firstoftwo\sf@temp}%
+ \endgroup
+ \fi}}}%
+ \gdef\sf@captionlist{}}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\caption@}
+% \changes{v1.2}{16 January 2004}{Simplified \cmd{\caption@} at the suggestion
+% of Axel Sommerfeldt.}
+% \changes{v1.2}{22 January 2004}{Changed method of setting the float
+% caption settings to first check for \cmd{\caption@setfloattype} and
+% to use that if present.}
+%
+% This last is a wrapper for the standard \cmd{\@caption} command. It
+% is called by the main float \cmd{\caption} command and makes sure that
+% the \cmd{\@listsubcaptions} is called at the proper time to either add
+% the pending sub-captions for the last caption (if the float caption
+% appears {\em before\/} the corresponding sub-captions); or, to first
+% write the float caption and then the pending sub-captions (if the float
+% caption appears {\em after\/} the corresponding sub-captions).
+%
+% It processes the options for the float and then checks the \Lkv{position}
+% setting in order to determine how this float caption is supposed to be
+% used.
+%
+% \begin{macrocode}
+\long\def\caption@#1[#2]#3{%
+ \@ifundefined{caption@setfloattype}%
+ \caption@settype
+ \caption@setfloattype
+ \@captype
+ \sf@ifpositiontop{%
+ \@listsubcaptions{#1}%
+ \sf@old@caption{#1}[{#2}]{#3}%
+ }{%
+ \sf@old@caption{#1}[{#2}]{#3}%
+ \@listsubcaptions{#1}%
+ }}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\sf@addcontentsline}
+%
+% Some packages may modify \cmd{\addcontentsline} which is used by
+% \cmd{\@listsubcaptions} to write the sub-captions to the List-of-Float
+% files, therefore we wait until the document begins and grab the
+% then-current definition for use by the \cmd{\@listsubcaptions}
+% command.
+%
+% \begin{macrocode}
+\AtBeginDocument{%
+ \let\sf@addcontentsline=\addcontentsline}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \subsection{Sub-float Label Handling}
+% \label{sec:subfloatlabel}
+%
+% The label handling has three aspects. The first is that the label for
+% a sub-float is defined as the
+% {\bf\cmd{\p@}\textless{\em sub-float\_type}\textgreater} value
+% prepended to the
+% {\bf\cmd{\the}\textless{\em sub-float\_type}\textgreater} value.
+% Secondly, the |\subref| command is similar, except that it shows label
+% as formatted on the List-of-Floats page. Finally, we need to check for the
+% \Lpack{hyperref} package and provide the extended reference format if
+% it is present (see also, section~\ref{sec:hyperref}).
+%
+% \begin{macro}{\subfloat@label}
+%
+% In the \cmd{\sf@subfloat} command, the standard label command,
+% \cmd{\label} is stored in \cmd{\sf@oldlabel} while the sub-float
+% is being processed and this command, \cmd{\subfloat@label} is
+% substituted for it.
+%
+% This first part checks for the optional argument, which has
+% parentheses rather than square brackets, following the form
+% of the similar command in the \Lpack{hyperref} package. If
+% there is no optional argument, than we supply one.
+%
+% \begin{macrocode}
+\def\subfloat@label{%
+ \@ifnextchar(% %) match left parenthesis
+ {\sf@sub@label}
+ {\sf@sub@label(Sub\@captype\space
+ \@ifundefined{thechapter}{}{\@nameuse{thechapter}\space}%
+ \@nameuse{p@sub\@captype}%
+ \@nameuse{thesub\@captype}.)}}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\sf@sub@label}
+%
+% The next portion of this process is to define the
+% \cmd{\@currentlabelname} if the \Lpack{hyperref} package
+% is loaded and save it for later; then call \cmd{\sf@@sub@label}
+% to finish the job. We know that the \Lpack{hyperref} package
+% is loaded using the \texttt{\char`\\ ifhyperrefloaded} flag
+% which is defined here and will be set later in section~\ref{sec:hyperref}.
+
+% \begin{macrocode}
+\newif\ifhyperrefloaded
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\sf@sub@label(#1)#2{%
+ \ifhyperrefloaded
+ \protected@edef\@currentlabelname{%
+ \expandafter\strip@period #1\relax.\relax\@@@}%
+ \fi
+ \sf@@sub@label{#2}}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\sf@@sub@label}
+% \changes{v1.1}{12 January 2004}{Fixed bug wherein the subreference
+% could ignore any prefix numbering when set on the List-of-Floats page.
+% Also changed \cmd{\captionlistofformat} to \cmd{\caption@lstfmt}.}
+% \changes{v1.2}{23 January 2004}{Changed \cmd{\thepage} to
+% \cmd{\@nameuse}\{thesub-\cmd{\@captype}\} so that a starred-form
+% of the \cmd{\subref} command will work to extract the simple
+% form of the subfigure number using the \cmd{\pageref} mechanism.}
+% \changes{v1.3}{27 May 2005}{Added formatting for the \cmd{\subref*}
+% command.}
+%
+% Finally, we get the the value-added portion. First, we call the
+% standard \cmd{\label} command (via \cmd{\sf@oldlabel}). Then
+% we write the additional information to support the \cmd{\subref[*]}
+% command. This will take two forms, depending on the presence of
+% the \Lpack{hyperref} package However, in either case, we store
+% the formatted label and the raw sub-float label in the auxillary
+% file.
+%
+% \begin{macrocode}
+\def\sf@@sub@label#1{%
+ \@bsphack
+ \sf@oldlabel{#1}%
+ \ifhyperrefloaded
+ \begingroup
+ \edef\@currentlabstr{%
+ \expandafter\strip@prefix\meaning\@currentlabelname}%
+ \protected@write\@auxout{}{%
+ \string\newlabel{sub@#1}{%
+ {\caption@lstfmt
+ {\@nameuse{p@sub\@captype}}%
+ {\@nameuse{thesub\@captype}}}%
+ {\caption@subreffmt
+ {\@nameuse{p@sub\@captype}}%
+ {\@nameuse{thesub\@captype}}%
+ {\the\value{\@captype}}%
+ {\the\value{sub\@captype}}}%
+ {\expandafter\strip@period\@currentlabelname\relax.\relax\@@@}%
+ {\@currentHref}%
+ {}}}%
+ \endgroup
+ \else
+ \protected@write\@auxout{}{%
+ \string\newlabel{sub@#1}{%
+ {\caption@lstfmt
+ {\@nameuse{p@sub\@captype}}%
+ {\@nameuse{thesub\@captype}}}%
+ {\caption@subreffmt
+ {\@nameuse{p@sub\@captype}}%
+ {\@nameuse{thesub\@captype}}%
+ {\the\value{\@captype}}%
+ {\the\value{sub\@captype}}}}}%
+ \fi
+ \@esphack}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\subref}
+% \begin{macro}{\subref*}
+% \begin{macro}{\sf@subref}
+% \begin{macro}{\sf@@subref}
+% \changes{v1.2}{23 January 2004}{Added a starred-form of the
+% \cmd{\subref} command.}
+%
+% Now, we can define the \cmd{\subref[*]} commands. They are
+% just like the \cmd{\ref} and \cmd{\pageref} commands.
+% The only difference is that they use the alternate
+% information placed in the auxillary file above.
+%
+% \begin{macrocode}
+\def\subref{%
+ \@ifstar
+ \sf@@subref
+ \sf@subref}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\sf@subref#1{\ref{sub@#1}}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\sf@@subref#1{\pageref{sub@#1}}
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+% \end{macro}
+% \end{macro}
+%
+% \subsection{Support for Continued Figures}
+%
+% Now we add the ability to have continued floating environments
+% and have them work with the sub-floats without having to load the
+% \Lpack{captcont} package (but we stay compatible with it if it
+% {\em is\/} loaded).
+%
+% The \Lpack{caption} package now contains a simple version of
+% the \cmd{\ContinuedFloat} command, which works fine for regular
+% floats. We redefine it here to also handle the sub-floats.
+%
+% \begin{macrocode}
+\newif\if@ccflag
+\@ccflagfalse
+% \end{macrocode}
+%
+% \begin{macro}{\ContinuedFloat}
+% \changes{v1.3}{06 June 2005}{Fixed bug that required new float
+% types to have their corresponding sub-floats defined in order
+% to use the \cmd{\ContinuedFloat} command.}
+%
+% We postpone this definition to the end of the preamble, so that we
+% we can check to see if the \Lpack{captcont} package was loaded. If
+% it was, then we change its internal \cmd{\refsteponlycounter} command
+% to work with the new and simpler approach to continuing the floats.
+%
+% \begin{macrocode}
+\AtBeginDocument{%
+% \end{macrocode}
+%
+% \begin{macrocode}
+ \let\sf@refstepcounter=\refstepcounter
+% \end{macrocode}
+%
+% \begin{macrocode}
+ \@ifpackageloaded{captcont}{}{%
+ \def\refsteponlycounter#1{%
+ \if@ccflag
+ \global\expandafter\advance\csname c@#1\endcsname\@ne
+ \let\sf@temp\protect
+ \def\protect{\noexpand\protect\noexpand}%
+ \edef\@currentlabel{\csname p@#1\endcsname\csname the#1\endcsname}%
+ \let\protect\sf@temp
+ \else
+ \sf@refstepcounter{#1}%
+ \fi
+ \@ccflagfalse}%
+ }%
+% \end{macrocode}
+% \changes{v1.3}{26 June 2005}{Added support for the \Lpack{caption}
+% package version of the \cmd{\ContinuedFloat} command.}
+%
+% Next, we re-define the \cmd{\ContinuedFloat} command to, in addition to
+% backing up the float counter, check if a sub-float type is defined for
+% this float type. If there is, than it restores the current sub-float
+% counter and to sets the \texttt{\char`\\ if@ccflag} true in order to
+% enable the alternate code in the above \cmd{\refsteponlycounter}.
+%
+% \begin{macrocode}
+ \def\ContinuedFloat{%
+ \ifx\@captype\@undefined
+ \@latex@error{\noexpand\ContinuedFloat outside float}\@ehd
+ \else
+ \addtocounter{\@captype}{\m@ne}%
+ \caption@ContinuedFloat\@captype
+ \@ifundefined{c@sub\@captype}{}{%
+ \setcounter{sub\@captype}{\value{sub\@captype @save}}%
+ \@ccflagtrue}%
+ \fi}}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\caption@ContinuedFloat}
+% \changes{v1.3}{26 June 2005}{Added \cmd{\caption@ContinuedFloat}
+% command to provide support for older versions of the \Lpack{caption}
+% package.}
+%
+% In addition, we provide the \cmd{\caption@ContinuedFloat} so that
+% earlier versions of the \Lpack{caption} package will not generate
+% an error.
+%
+% \begin{macrocode}
+ \providecommand*\caption@ContinuedFloat[1]{}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \begin{macro}{\sf@caption}
+%
+% Finally, we define a wrapper for the \cmd{\caption} command now and wait
+% until the end of the preamble to exchange it for the \cmd{\caption} command.
+% Just in case some other package modifies it. It is possible that another
+% package will also wait until the end of the preamble to change the
+% \cmd{\caption} command. In that case, it may be necessary to load this
+% package and the other in a specific order. However, this works for now.
+%
+% \begin{macrocode}
+\def\sf@caption{%
+ \let\refstepcounter=\refsteponlycounter
+ \sf@savecaption}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\AtBeginDocument{%
+ \let\sf@savecaption=\caption
+ \let\caption=\sf@caption
+}
+% \end{macrocode}
+%
+% \end{macro}
+%
+% \subsection{Automate the Sub-float Listings}
+%
+% \begin{macro}{\sf@end@float}
+% \begin{macro}{\sf@end@dblfloat}
+%
+% We use the end@float and end@dblfloat hooks to process the List-of-Floats
+% sub-captions at the end of a float environment so that the page numbers
+% will be correct. The alternative would be for the user to add a
+% \cmd{\listsubcaptions} command at the end of the float environment if
+% there is not \cmd{\caption} command between the last sub-float and the
+% end of the float envrionment.
+%
+% \begin{macrocode}
+\let\sf@end@float=\end@float
+% \end{macrocode}
+%
+% \begin{macrocode}
+\let\sf@end@dblfloat=\end@dblfloat
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+%
+% \begin{macro}{\end@float}
+% \begin{macro}{\end@dblfloat}
+%
+% These two wrappers are pretty much the same, they first zero out
+% the sub-float counters (for all sub-float types, but not the saved
+% counter values). Next they dump all of the pending sub-captions
+% the currnet List-of-Float page. Finally, they call the \cmd{\end@float}
+% or \cmd{\end@dblfloat} command.
+%
+% There is one problem, the \Lpack{fixltx2e} and (old) \Lpack{fix2col}
+% packages redefine \cmd{\end@dblfloat} and assume that the first
+% token in \cmd{\end@float} is \cmd{\@endfloatbox}. Therefore we
+% redefine \cmd{\@endfloatbox} below in section ~\ref{sec:endfloat}
+% if these packages are loaded.
+%
+% \begin{macrocode}
+\def\end@float{%
+ \@ifundefined{sf@counterlist}{}{%
+ \@for\sf@temp:=\sf@counterlist\do{%
+ \setcounter{\sf@temp}{\z@}}%
+ \@listsubcaptions{\@captype}}%
+ \sf@end@float}%
+% \end{macrocode}
+%
+% \begin{macrocode}
+\def\end@dblfloat{%
+ \@ifundefined{sf@counterlist}{}{%
+ \@for\sf@temp:=\sf@counterlist\do{%
+ \setcounter{\sf@temp}{\z@}}%
+ \@listsubcaptions{\@captype}}%
+ \sf@end@dblfloat}
+% \end{macrocode}
+%
+% \end{macro}
+% \end{macro}
+%
+% \subsection{Provide Compatibility with Other Packages}
+%
+% We postpone the following to the end of the preamble in order
+% to detect any other packages that are loaded after this one.
+%
+% \begin{macrocode}
+\AtBeginDocument{%
+% \end{macrocode}
+%
+% \subsubsection{The \Lpack{Hyperref} Package}
+% \label{sec:hyperref}
+% \changes{v1.3}{28 June 2005}{Added an update to the
+% \cmd{\H@refstepcounter} so that when it is called within the context
+% of a \cmd{\caption} when the \cmd{\@ccflag} is true, the respective
+% sub-counter will be restored. This change allows the correct functioning
+% of the \cmd{\ContinuedFloat} command.}
+%
+% We define a \texttt{\char`\\ ifhyperrefloaded} flag which is used with
+% the sub-caption labels (see section~\ref{sec:subfloatlabel}). If the
+% \Lpack{hyperref} package is loaded, we set this flag to true and, for
+% each sub-float type, we create a \cmd{\theH$<$sub-float$>$} command that
+% it needs.
+%
+% \begin{macrocode}
+ \@ifpackageloaded{hyperref}{%
+ \hyperrefloadedtrue
+ %
+ \def\sf@setref#1sub#2\relax{%
+ \@namedef{theHsub#2\expandafter}{\@nameuse{the#2}.\arabic{sub#2}}%
+ \@namedef{toclevel@sub#2}{1}%
+ }
+ %
+ \@for\sf@temp:=\sf@counterlist\do{%
+ \expandafter\sf@setref\sf@temp\relax}%
+ %
+ \global\let\sf@setref\relax
+ %
+ \let\sf@Hrefstepcounter\H@refstepcounter
+ \def\H@refstepcounter#1{%
+ \sf@Hrefstepcounter{#1}%
+ \@ifundefined{c@sub#1}{}{%
+ \if@ccflag
+ \setcounter{sub#1}{\value{sub#1@save}}%
+ \fi
+ \@ccflagfalse}}%
+ %
+ }{}%
+% \end{macrocode}
+%
+% \subsubsection{The \Lpack{Float} Package}
+%
+% If the \Lpack{float} package is loaded, we need to modify its wrapper
+% for \cmd{\@endfloatbox} so that \cmd{\listsubcaptions} is called before
+% finishing the float environment in order to get the page numbers right.
+%
+% \begin{macrocode}
+ \@ifpackageloaded{float}{%
+ \let\sf@endfloatbox=\@endfloatbox
+ \def\@endfloatbox{%
+ \listsubcaptions
+ \sf@endfloatbox}%
+ }{}%
+% \end{macrocode}
+%
+% \subsubsection{The \Lpack{Fixltx2e} Package}
+% \label{sec:endfloat}
+%
+% We also provide compatibility with the older \Lpack{fix2col} package
+% that the \Lpack{fixltx2e} package supersedes. They assume that
+% \cmd{\end@float} command begins with \cmd{\@endfloatbox} which may
+% be removed with a \cmd{\@gobble}; however, we redefine the
+% \cmd{\@endfloatbox} making this untrue. Therefore, we have to fix
+% this assumption if one or both of these packages are loaded.
+%
+% \begin{macrocode}
+ \@ifpackageloaded{fixltx2e}{%
+ \def\end@dblfloat{%
+ \if@twocolumn
+ \@ifundefined{sf@counterlist}{}{%
+ \@for\sf@temp:=\sf@counterlist\do{%
+ \setcounter{\sf@temp}{\z@}}%
+ \@listsubcaptions{\@captype}}%
+ \@endfloatbox
+ \ifnum\@floatpenalty <\z@
+ \@largefloatcheck
+ \global\dp\@currbox1sp %
+ \expandafter\@gobble\sf@end@float
+ \fi
+ \else
+ \end@float
+ \fi}%
+ }{%
+% \end{macrocode}
+%
+% \begin{macrocode}
+ \@ifpackageloaded{fix2col}{%
+ \def\end@dblfloat{%
+ \if@twocolumn
+ \@ifundefined{sf@counterlist}{}{%
+ \@for\sf@temp:=\sf@counterlist\do{%
+ \setcounter{\sf@temp}{\z@}}%
+ \@listsubcaptions{\@captype}}%
+ \@endfloatbox
+ \ifnum\@floatpenalty <\z@
+ \@largefloatcheck
+ \global\dp\@currbox1sp %
+ \expandafter\@gobble\sf@end@float
+ \fi
+ \else
+ \end@float
+ \fi}}{}%
+ }
+% \end{macrocode}
+%
+% \begin{macrocode}
+}
+% \end{macrocode}
+%
+% \begin{macrocode}
+\endinput
+% \end{macrocode}
+%
+% \iffalse
+%</package>
+% \fi
+%% \CharacterTable
+%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
+%% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
+%% Digits \0\1\2\3\4\5\6\7\8\9
+%% Exclamation \! Double quote \" Hash (number) \#
+%% Dollar \$ Percent \% Ampersand \&
+%% Acute accent \' Left paren \( Right paren \)
+%% Asterisk \* Plus \+ Comma \,
+%% Minus \- Point \. Solidus \/
+%% Colon \: Semicolon \; Less than \<
+%% Equals \= Greater than \> Question mark \?
+%% Commercial at \@ Left bracket \[ Backslash \\
+%% Right bracket \] Circumflex \^ Underscore \_
+%% Grave accent \` Left brace \{ Vertical bar \|
+%% Right brace \} Tilde \~}
+% \Finale
diff --git a/macros/latex/contrib/subfig/subfig.ins b/macros/latex/contrib/subfig/subfig.ins
new file mode 100644
index 0000000000..1b29957bdf
--- /dev/null
+++ b/macros/latex/contrib/subfig/subfig.ins
@@ -0,0 +1,66 @@
+%%
+%% This is file `subfig.ins', the installation file for the
+%% `subfig' package.
+%%
+%% Copyright © 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\def\batchfile{subfig.ins}
+\input docstrip.tex
+
+\keepsilent
+\generateFile{ltxdoc.cfg}{t}{\from{subfig.dtx}{ltxdoc}}
+
+\preamble
+
+Copyright © 2003, 2004, 2005 Steven Douglas Cochran.
+
+This file is NOT the source for the subfig package, because almost
+all comments have been stripped from it. It is NOT the preferred form
+of the subfig package for making modifications to it.
+
+Therefore you can NOT redistribute and/or modify THIS file. You can
+however redistribute the complete source package (README, Makefile,
+subfig.dtx, subfig.ins, and subfig.pdf as well as the test/example
+files test[1-7].tex) and/or modify it under the terms of the LaTeX Project
+Public License, either version 1.3 of this license or (at your option)
+any later version.
+The latest version of this license is in
+ http://www.latex-project.org/lppl.txt
+and version 1.3 or later is part of all distributions of LaTeX
+version 2003/12/01 or later.
+
+This work has the LPPL maintenance status "author-maintained".
+
+This Current Maintainer of this work is Steven Douglas Cochran.
+
+This work consists of all files listed under "MANIFEST" in the
+README file distributed with the subfig package.
+
+\endpreamble
+\generateFile{altsf.cfg}{t}{\from{subfig.dtx}{newconf}}
+%\generateFile{subfig.sty}{t}{\from{subfig.dtx}{package,debug}}
+\generateFile{subfig.sty}{t}{\from{subfig.dtx}{package}}
+
+\Msg{***********************************************************}
+\Msg{* To finish the installation you have to move the file}
+\Msg{* `subfig.sty' and optionally 'subfigold.cfg' into a}
+\Msg{* directory searched by TeX.}
+\Msg{*}
+\Msg{* To produce the documentation run the file `subfig.dtx'}
+\Msg{* through LaTeX.}
+\Msg{***********************************************************}
diff --git a/macros/latex/contrib/subfig/subfig.pdf b/macros/latex/contrib/subfig/subfig.pdf
new file mode 100644
index 0000000000..0b5be93a8a
--- /dev/null
+++ b/macros/latex/contrib/subfig/subfig.pdf
@@ -0,0 +1,11758 @@
+%PDF-1.4
+5 0 obj
+<< /S /GoTo /D (section.1) >>
+endobj
+8 0 obj
+(Introduction)
+endobj
+9 0 obj
+<< /S /GoTo /D (subsection.1.1) >>
+endobj
+12 0 obj
+(Do You Need This Package?)
+endobj
+13 0 obj
+<< /S /GoTo /D (section.2) >>
+endobj
+16 0 obj
+(Package Commands)
+endobj
+17 0 obj
+<< /S /GoTo /D (subsection.2.1) >>
+endobj
+20 0 obj
+(Preamble Commands)
+endobj
+21 0 obj
+<< /S /GoTo /D (subsubsection.2.1.1) >>
+endobj
+24 0 obj
+(The \134usepackage Command)
+endobj
+25 0 obj
+<< /S /GoTo /D (subsubsection.2.1.2) >>
+endobj
+28 0 obj
+(The \134newsubfloat Command)
+endobj
+29 0 obj
+<< /S /GoTo /D (subsubsection.2.1.3) >>
+endobj
+32 0 obj
+(The \134DeclareCaptionListOfFormat Command)
+endobj
+33 0 obj
+<< /S /GoTo /D (subsubsection.2.1.4) >>
+endobj
+36 0 obj
+(The \134DeclareSubrefFormat Command)
+endobj
+37 0 obj
+<< /S /GoTo /D (subsection.2.2) >>
+endobj
+40 0 obj
+(General Commands)
+endobj
+41 0 obj
+<< /S /GoTo /D (subsubsection.2.2.1) >>
+endobj
+44 0 obj
+(The \134subfloat Command)
+endobj
+45 0 obj
+<< /S /GoTo /D (subsubsection.2.2.2) >>
+endobj
+48 0 obj
+(The \134subref Command)
+endobj
+49 0 obj
+<< /S /GoTo /D (subsubsection.2.2.3) >>
+endobj
+52 0 obj
+(The \134ContinuedFloat Command)
+endobj
+53 0 obj
+<< /S /GoTo /D (subsubsection.2.2.4) >>
+endobj
+56 0 obj
+(The \134listsubcaptions Command)
+endobj
+57 0 obj
+<< /S /GoTo /D (subsubsection.2.2.5) >>
+endobj
+60 0 obj
+(The \134captionsetup Command)
+endobj
+61 0 obj
+<< /S /GoTo /D (section.3) >>
+endobj
+64 0 obj
+(Options: Keywords and Values)
+endobj
+65 0 obj
+<< /S /GoTo /D (subsection.3.1) >>
+endobj
+68 0 obj
+(Options from the Caption Package)
+endobj
+69 0 obj
+<< /S /GoTo /D (subsubsection.3.1.1) >>
+endobj
+72 0 obj
+(The Caption Font Settings)
+endobj
+73 0 obj
+<< /S /GoTo /D (subsubsection.3.1.2) >>
+endobj
+76 0 obj
+(The Caption Shape Settings)
+endobj
+77 0 obj
+<< /S /GoTo /D (subsubsection.3.1.3) >>
+endobj
+80 0 obj
+(The Caption Justification Options)
+endobj
+81 0 obj
+<< /S /GoTo /D (subsubsection.3.1.4) >>
+endobj
+84 0 obj
+(The Caption Label Options)
+endobj
+85 0 obj
+<< /S /GoTo /D (subsubsection.3.1.5) >>
+endobj
+88 0 obj
+(The Caption Position Option)
+endobj
+89 0 obj
+<< /S /GoTo /D (subsection.3.2) >>
+endobj
+92 0 obj
+(Options from the Subfig Package)
+endobj
+93 0 obj
+<< /S /GoTo /D (subsubsection.3.2.1) >>
+endobj
+96 0 obj
+(The Subfig Configuration Specification)
+endobj
+97 0 obj
+<< /S /GoTo /D (subsubsection.3.2.2) >>
+endobj
+100 0 obj
+(The Subfig List-of-Floats Specification)
+endobj
+101 0 obj
+<< /S /GoTo /D (subsubsection.3.2.3) >>
+endobj
+104 0 obj
+(The Subfig Layout)
+endobj
+105 0 obj
+<< /S /GoTo /D (subsubsection.3.2.4) >>
+endobj
+108 0 obj
+(The Subfig Package Startup)
+endobj
+109 0 obj
+<< /S /GoTo /D (section.4) >>
+endobj
+112 0 obj
+(Compatibility With Other Packages.)
+endobj
+113 0 obj
+<< /S /GoTo /D (subsection.4.1) >>
+endobj
+116 0 obj
+(Caption Package)
+endobj
+117 0 obj
+<< /S /GoTo /D (subsection.4.2) >>
+endobj
+120 0 obj
+(Float Package)
+endobj
+121 0 obj
+<< /S /GoTo /D (subsection.4.3) >>
+endobj
+124 0 obj
+(FloatRow Package)
+endobj
+125 0 obj
+<< /S /GoTo /D (subsection.4.4) >>
+endobj
+128 0 obj
+(verbatim and fancyvrb packages)
+endobj
+129 0 obj
+<< /S /GoTo /D (subsection.4.5) >>
+endobj
+132 0 obj
+(IEEEtrans Class)
+endobj
+133 0 obj
+<< /S /GoTo /D (subsection.4.6) >>
+endobj
+136 0 obj
+(Other Packages)
+endobj
+137 0 obj
+<< /S /GoTo /D (subsection.4.7) >>
+endobj
+140 0 obj
+(Backward Compatibility with the Subfigure Package)
+endobj
+141 0 obj
+<< /S /GoTo /D (section.5) >>
+endobj
+144 0 obj
+(Some Examples)
+endobj
+145 0 obj
+<< /S /GoTo /D (subsection.5.1) >>
+endobj
+148 0 obj
+(A Simple Example)
+endobj
+149 0 obj
+<< /S /GoTo /D (subsection.5.2) >>
+endobj
+152 0 obj
+(A More Advanced Example)
+endobj
+153 0 obj
+<< /S /GoTo /D (subsection.5.3) >>
+endobj
+156 0 obj
+(An Example Without Sub-caption Text)
+endobj
+157 0 obj
+<< /S /GoTo /D (subsection.5.4) >>
+endobj
+160 0 obj
+(Another Example)
+endobj
+161 0 obj
+<< /S /GoTo /D (section.6) >>
+endobj
+164 0 obj
+(Frequently Asked Questions \(FAQs\))
+endobj
+165 0 obj
+<< /S /GoTo /D (subsection.6.1) >>
+endobj
+168 0 obj
+(``My sub-floats are not aligned along their bottoms. Why?'')
+endobj
+169 0 obj
+<< /S /GoTo /D (subsection.6.2) >>
+endobj
+172 0 obj
+(``How can I get my floats/sub-floats to line up the way I want?'')
+endobj
+173 0 obj
+<< /S /GoTo /D (subsection.6.3) >>
+endobj
+176 0 obj
+(``I have too many sub-floats for one page, How can I spread them over two or more pages and continue the numbering?'')
+endobj
+177 0 obj
+<< /S /GoTo /D (subsection.6.4) >>
+endobj
+180 0 obj
+(``Why do I get a garbled caption or an error when I use square brackets?'')
+endobj
+181 0 obj
+<< /S /GoTo /D (subsection.6.5) >>
+endobj
+184 0 obj
+(``How do I make my subcaptions print on the List-of-Floats pages?'')
+endobj
+185 0 obj
+<< /S /GoTo /D (subsection.6.6) >>
+endobj
+188 0 obj
+(``I set an option and it had no effect. What is happening?'')
+endobj
+189 0 obj
+<< /S /GoTo /D (subsection.6.7) >>
+endobj
+192 0 obj
+(``How do I make a change in the settings for just a single float?'')
+endobj
+193 0 obj
+<< /S /GoTo /D (subsection.6.8) >>
+endobj
+196 0 obj
+(``How do I put text labels on an imported sub-float?'')
+endobj
+197 0 obj
+<< /S /GoTo /D (subsection.6.9) >>
+endobj
+200 0 obj
+(``I want my sub-floats to be ordered by column rather than by row, how do I do that?'')
+endobj
+201 0 obj
+<< /S /GoTo /D (subsection.6.10) >>
+endobj
+204 0 obj
+(``How do I put a verbatim environment in a sub-float?'')
+endobj
+205 0 obj
+<< /S /GoTo /D (section.7) >>
+endobj
+208 0 obj
+(The Code)
+endobj
+209 0 obj
+<< /S /GoTo /D (subsection.7.1) >>
+endobj
+212 0 obj
+(Identification)
+endobj
+213 0 obj
+<< /S /GoTo /D (subsection.7.2) >>
+endobj
+216 0 obj
+(Check for Nasty Classes)
+endobj
+217 0 obj
+<< /S /GoTo /D (subsection.7.3) >>
+endobj
+220 0 obj
+(Load The Caption Package)
+endobj
+221 0 obj
+<< /S /GoTo /D (subsubsection.7.3.1) >>
+endobj
+224 0 obj
+(Load The Keyval Package and Scan Options)
+endobj
+225 0 obj
+<< /S /GoTo /D (subsubsection.7.3.2) >>
+endobj
+228 0 obj
+(Load and Extend the Caption Package)
+endobj
+229 0 obj
+<< /S /GoTo /D (subsection.7.4) >>
+endobj
+232 0 obj
+(Options Processing)
+endobj
+233 0 obj
+<< /S /GoTo /D (subsection.7.5) >>
+endobj
+236 0 obj
+(Generalized List-of-Floats)
+endobj
+237 0 obj
+<< /S /GoTo /D (subsection.7.6) >>
+endobj
+240 0 obj
+(Create New Sub-floats)
+endobj
+241 0 obj
+<< /S /GoTo /D (subsection.7.7) >>
+endobj
+244 0 obj
+(Layout Parameters)
+endobj
+245 0 obj
+<< /S /GoTo /D (subsection.7.8) >>
+endobj
+248 0 obj
+(Process the Package Options)
+endobj
+249 0 obj
+<< /S /GoTo /D (subsection.7.9) >>
+endobj
+252 0 obj
+(Define the Sub-float Layout)
+endobj
+253 0 obj
+<< /S /GoTo /D (subsection.7.10) >>
+endobj
+256 0 obj
+(Use the Caption Package to Build the Sub-float Captions)
+endobj
+257 0 obj
+<< /S /GoTo /D (subsection.7.11) >>
+endobj
+260 0 obj
+(Subfig Caption Processing for the List-of-Floats Files)
+endobj
+261 0 obj
+<< /S /GoTo /D (subsection.7.12) >>
+endobj
+264 0 obj
+(Sub-float Label Handling)
+endobj
+265 0 obj
+<< /S /GoTo /D (subsection.7.13) >>
+endobj
+268 0 obj
+(Support for Continued Figures)
+endobj
+269 0 obj
+<< /S /GoTo /D (subsection.7.14) >>
+endobj
+272 0 obj
+(Automate the Sub-float Listings)
+endobj
+273 0 obj
+<< /S /GoTo /D (subsection.7.15) >>
+endobj
+276 0 obj
+(Provide Compatibility with Other Packages)
+endobj
+277 0 obj
+<< /S /GoTo /D (subsubsection.7.15.1) >>
+endobj
+280 0 obj
+(The Hyperref Package)
+endobj
+281 0 obj
+<< /S /GoTo /D (subsubsection.7.15.2) >>
+endobj
+284 0 obj
+(The Float Package)
+endobj
+285 0 obj
+<< /S /GoTo /D (subsubsection.7.15.3) >>
+endobj
+288 0 obj
+(The Fixltx2e Package)
+endobj
+289 0 obj
+<< /S /GoTo /D (section.8) >>
+endobj
+292 0 obj
+(Acknowledgments)
+endobj
+293 0 obj
+<< /S /GoTo /D [294 0 R /Fit ] >>
+endobj
+296 0 obj <<
+/Length 1579
+/Filter /FlateDecode
+>>
+stream
+xÚWYoÛF~ׯà[( \ï}¼ÅÍÑ&H€v€I€Ð-±•D…¤lýóÙYJdʦzÙ¹ö›oG"ãð'2Á}æŒcAi›­ö žm`ý×…HûÊ&±0™Ù-¤•L²Âæ„c©KKÍ‚ç.+¬‡sÂÿåvqõJ¸L8X2:»½Ï¤ ,X™Ån×óÛíRäÕòóí÷cq%™Fµ<ÊÝœî>q¡7Ir¢X;æ•L‚ï—Òæå
+¿-ÊËMÒ.U& ÆH<c ãÊûÌ2©Š'?q®’ú0-„âLy•Ú0Á…%‡úêa)]^–…c/ä´Ù•ÍŸ7˶W(³mKØ< ò¬ðšiÈ0$Î3 Ôö¢Þ€DÝ—;:ý®<ëÆ&oñô]T×DM}ÓÂ÷ÛÒ‹ü)‰Ü²‰žD=4¼§ás茶jiáæ«ef«Ã*& ®ˆ9/0b´#מ—í¡ŠÞUJ¿«v»&ýáPSÚ®î—ÒO|2qN“WK/óè6âó*¥ézH"|Oä„ÑL@ðÄ‹÷ußww§Ù>¥
+‘Jù¬FÐVøa¸ÕFX–„èLìtk<ú ?Ãïa‚£j}šCvÁ[p@Øi‘1•>W8rñkðøâåí¹¥“LYi3mó
+ñÿIVó«Q.¡ÓLsqaÕs:8ôõ”<ëhåüÀxÎ7o¡›É ðC| ±b›Ãœñÿ¢ÚYOîpé¥ •^3\€n¯‰µ¯ÚûÈt»uOÄ=0h+‚\¹¢÷‚ˆ›[¢:TÚ üº®Ú3š™ü4OsAKfLðß]Ç ù¶Ø4°ŒR£ á‰˜<jprS±¹Â+&´žk8zxlZ¾.>~æÙdÞ, Uп=„3µ¹_@[ÆwaXÙ-n¿Ú l6=üÔÇΆ “GßcC2 V¥RWxù½
+endobj
+294 0 obj <<
+/Type /Page
+/Contents 296 0 R
+/Resources 295 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+>> endobj
+297 0 obj <<
+/D [294 0 R /XYZ 108 757.9346 null]
+>> endobj
+298 0 obj <<
+/D [294 0 R /XYZ 108 734.0242 null]
+>> endobj
+295 0 obj <<
+/Font << /F17 301 0 R /F18 304 0 R /F23 307 0 R /F19 310 0 R /F30 313 0 R /F33 316 0 R /F32 319 0 R /F25 322 0 R /F36 325 0 R /F37 328 0 R /F29 331 0 R /F24 334 0 R /F31 337 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+341 0 obj <<
+/Length 66
+/Filter /FlateDecode
+>>
+stream
+xÚ3T0
+endobj
+340 0 obj <<
+/Type /Page
+/Contents 341 0 R
+/Resources 339 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+>> endobj
+342 0 obj <<
+/D [340 0 R /XYZ 144 757.9346 null]
+>> endobj
+339 0 obj <<
+/ProcSet [ /PDF ]
+>> endobj
+345 0 obj <<
+/Length 3374
+/Filter /FlateDecode
+>>
+stream
+xÚåœ[sÛÆÇßý)4ygÊÍÞÛ—Œ£Hi§vjM3ºEIlH‚!A_¾}÷¾Ë äT²¥x2‘ ð‡<¿ÿž={È 6ÿ‘Âù‰
+iÆåÉdñ ŸÜ˜óß?#áý±5—ß^<ûú¼>ÑHK*O.®OÅHàšæë\\ý»šþsñã³³‹t%A¢JHØ]²:ôÉ´ù¶Èœ¡Ö«ûâ”#,‰wxڎƤZŽ©ºixI«Î¾ÚØïòõ9ÇÅ·Æ'cJ&ªvŸ&£±¦¢úÁhm®eþ½ÚNºY»©–Bw™ò·›/¤m€ˆ¹”Ô_
+™‹Liõ½ cÕ¿F5«Ú­?øûÔ}»+tq;"ÕlcxõjD몙ؿ¿ŒÃæfúyG’
+Æãâ®õáÉ»›üÑ÷†Mö©“QÍÙ‰Ô‘ºî¡­Æ¥Ù¡Ò.æÑõ) ö™”vàsG(VhRÇ
+{©P/•WV)–ùûÛHr Ë°ªyujˆ¶ ËxÑ,¯ Z*1¦æcwRMêyµ6rZiV—ó©×Ì©=×.ìÕGVÜcÆŧDü9Ô#$bD ª§0Ô­<Í^õ€>³z Ÿ¤&¨59‘ܤ.‰Edì(i™0õ l'§"&45¾¬ýòP:F95ááýífº²iCÙ´!ƒM>95"qúYŽ\ÂFUK½¼c¸xf
+8$¢vE–Ð ¦C çÒ±-²¾Ÿ.§ëfžZK(Ûl¸]åV†"è3ÔW):0ÙÒ¬íN¨y/[Øg‚ úLmVÔ™ÿeÄ{¯õÕf»×ËîÖàfx¨µ>z©Ç  P/Ì
+9cÆ„DÐAøuàìđâXB1ùíÏ,‘¡Ì= ” PJI R
+è4+rš”BBè v7¥ü£µ"xwd’¢š
+ wcô©ï5û¨lŠð€D
+3@"%.Ö¿ð;Íœ&‰ç‡[D8âƒyëú4»Øyi»w£ÒÌíß=ìƒ4ŠéðA»&zdD#¦Hl®í%—“o×—G.W›Ü§JVIy2÷³c¥ê§Y<G
+2*Ì
+Ò8TÚHÆ)Óî6îV\ûaÐ+»}mÿ¾ ×¼…¯XŸHYqoÙ!EF_šõ£ßÁ
+Œ¨! ²¢ Ǭrˆm¨ÞÚ?SÒ"°+ÙþhácùÁÑ*?æalѵnÃÊÆ[^·koÔ.Õl%ùÙ핲â±v“pãš;ßh³ÊO™¹òïäy„…·ió7^Û@¦¨áEçej¾WF²Á"Ÿ¼ü~a_—¿¿Ã¼˜÷ÜÕî‡ÏÄoc_û÷üÃpò.Žµ5]ÞXñqM>qçEX¨¨‡¥ Úh5$ZÐi-ä4‰–¥bîùJŠmÌ×}ÔP»ÓòCî1½E8nÖ—¡ ]Ý¿¿nG1•M×ëxê]’^™æ˜}Àwµù}Ÿœ`Ý ºq†Ë·(Ruq˶QD/¶ø«°f
+3
+endobj
+344 0 obj <<
+/Type /Page
+/Contents 345 0 R
+/Resources 343 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+/Annots [ 353 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 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 ]
+>> endobj
+353 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 701.1475 223.1058 710.0585]
+/Subtype /Link
+/A << /S /GoTo /D (section.1) >>
+>> endobj
+357 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 687.2552 306.6127 698.1034]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.1.1) >>
+>> endobj
+358 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 665.3374 259.4913 676.1856]
+/Subtype /Link
+/A << /S /GoTo /D (section.2) >>
+>> endobj
+359 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 655.3194 275.7838 664.2304]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.1) >>
+>> endobj
+360 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 640.8735 336.0025 652.8287]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.1) >>
+>> endobj
+361 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 628.9184 339.8769 640.8735]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.2) >>
+>> endobj
+362 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 616.9632 415.0674 628.9184]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.3) >>
+>> endobj
+363 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 605.008 380.5855 616.9632]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.4) >>
+>> endobj
+364 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 595.5435 268.7961 604.4545]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.2) >>
+>> endobj
+365 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 581.0977 322.719 593.0529]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.1) >>
+>> endobj
+366 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 569.1425 314.7212 581.0977]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.2) >>
+>> endobj
+367 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 557.1874 356.2877 569.1425]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.3) >>
+>> endobj
+368 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 545.2322 352.9944 557.1874]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.4) >>
+>> endobj
+369 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 533.277 343.7513 545.2322]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.5) >>
+>> endobj
+370 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 511.9127 315.5336 522.7609]
+/Subtype /Link
+/A << /S /GoTo /D (section.3) >>
+>> endobj
+371 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 499.9575 331.7131 510.8057]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.1) >>
+>> endobj
+375 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 488.0023 328.9733 498.8505]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.1) >>
+>> endobj
+376 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 476.0472 335.4767 486.8954]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.2) >>
+>> endobj
+377 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 464.092 361.9608 474.9402]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.3) >>
+>> endobj
+378 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 452.1368 332.8477 462.985]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.4) >>
+>> endobj
+379 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 440.1817 340.0429 451.0299]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.5) >>
+>> endobj
+380 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 428.2265 325.5971 439.0747]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.2) >>
+>> endobj
+381 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 416.2713 383.0207 427.1195]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.1) >>
+>> endobj
+382 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 404.3162 381.72 415.1644]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.2) >>
+>> endobj
+383 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 392.361 295.1279 403.2092]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.3) >>
+>> endobj
+384 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 380.4058 336.1132 391.254]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.4) >>
+>> endobj
+385 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 358.488 343.3777 369.3362]
+/Subtype /Link
+/A << /S /GoTo /D (section.4) >>
+>> endobj
+386 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 346.5328 253.3125 357.381]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.1) >>
+>> endobj
+387 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 334.5777 242.3259 345.4259]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+388 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 322.6225 260.4109 333.4707]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.3) >>
+>> endobj
+389 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 310.6673 317.9591 321.5155]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.4) >>
+>> endobj
+390 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 300.6493 250.3514 309.5604]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.5) >>
+>> endobj
+391 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 286.757 250.3237 297.6052]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.6) >>
+>> endobj
+392 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 274.8018 409.6432 285.65]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.7) >>
+>> endobj
+393 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 252.884 238.6599 263.7322]
+/Subtype /Link
+/A << /S /GoTo /D (section.5) >>
+>> endobj
+394 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 240.9288 264.3545 251.777]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.1) >>
+>> endobj
+395 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 228.9737 303.4026 239.8219]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.2) >>
+>> endobj
+396 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 217.0185 355.9556 227.8667]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.3) >>
+>> endobj
+397 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 205.0633 259.9543 215.9115]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.4) >>
+>> endobj
+398 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 182.592 340.8497 194.5472]
+/Subtype /Link
+/A << /S /GoTo /D (section.6) >>
+>> endobj
+399 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 171.1903 442.9352 182.0385]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.1) >>
+>> endobj
+400 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 158.6817 462.5283 170.6369]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.2) >>
+>> endobj
+401 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 147.28 524.2718 158.1282]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.3) >>
+>> endobj
+402 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 135.3248 398.2968 146.173]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.3) >>
+>> endobj
+403 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 123.3697 505.8935 134.2179]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.4) >>
+>> endobj
+404 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 111.4145 479.5479 122.2627]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.5) >>
+>> endobj
+405 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 99.4593 440.6105 110.3075]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.6) >>
+>> endobj
+406 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 87.5042 463.995 98.3524]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.7) >>
+>> endobj
+407 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 75.549 416.285 86.3972]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.8) >>
+>> endobj
+352 0 obj <<
+/D [344 0 R /XYZ 144 714.1959 null]
+>> endobj
+343 0 obj <<
+/Font << /F8 348 0 R /F39 351 0 R /F40 356 0 R /F23 307 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+410 0 obj <<
+/Length 3174
+/Filter /FlateDecode
+>>
+stream
+xÚíœÛnG†ïýÂ^‘€Ùéóáb±H¼qœ‘°÷*ÉMŽ$Â)”çé·«Ï95»Xâ€H‘ÅùÅúþî®ê™1» þ»`R^eˆR_ÌnžÐ‹+ÿúwOXz“6â›7O¾zn/qšë‹7—û‡x3ÿy´XŒ}󯯞KÞDq'‰rÂBÞ\w)F¶1”HcmŠy}7f£·¿P&¯ŽÏÇr—b_¹MgðóÝX©Ñô*ÿÉ·oÊ7Q\n”Æ¿n‰øÎÊß›KB5‹ß[7ž0Êùè&ä÷ã‰rô!üe+ø¹‹¯ÜÀóñùÖ`¾çÄQµžîüó-¼§F»5<ŠÑÛñÄ ‹Xoæ>¢ƒmò“yŽ«Ç­—pÔx{ßÞLw×õ£á¥ÝõtuøY8î~ÿ
+Íp¥óT噉îím€¹Þ$º0¦ò¨{FY<·¸'­îrO†ØÕÝö@¬S’kI ε ë纗cÝßì⢅+*Z¸ZMœ¢¹:ö“màúõ4³ë›x^1/×y¥óï;œ'׸ÜÁDÆ2<§Ô>0²91d›0„l›eÝß÷࢕,&ZÈIœS¹,öŒÙWåÚ“÷‹y×ÒX[§»ÅÛÅN$·çÃe*
+E‰tT$ÉøùbSʇ}@íû_a‚œÄ4aˆ ö‰ôš
+Ó,À¹&*]9…Lêy¯ màn¶»2Û›xÇÆálß춆Ŧ^~>[§ žÃNRÙBj>ëón”ýÓ Æ$ ,AÀšÍþÊS«ðúÕ
+:¿2k.³\„÷²‹w
+„­XÈ>3£°•ã?\/Býw}WaíKv¸Yæ«÷¡å_Þ…›ÙQØJXlÒáâ6RÞOð/”Ý_ˆÝvI-œbõÛ[Øø˜_…ûc8[ŠÌ¤Í‹ò§Àr³YÄ[vzï›é¦›å¢K[G¿û_ÃÛ.§÷Î%ìßH¾ÏWL½ObKà> ùzÛì"ʉÖN² C,™£âÝ ½¦D5«-1ÍlLî(1LÆâEçJbYÎÌà4Z¸WÒDíßÝPR…·.mXë²—wÖš-¬QÑÒÀrc‰ûAôªèÔÿ€þ€÷œ-Ú£ïÔ#dš32À´ C˜¶éŘ¢¢•)&ZƯÖÄRÉò OqüŽ­­Ëm™09†6î÷T¬Ë…±5%ÎkçŒ oÂämú1ä¨hEŽ‰Öa¬$±ÒÅ?ퟦÿ9íK‰öNF¤ÐyÃùr½ÚýýåtsudW
+v°¨È‘¿BWÁÒŽd¯RP£4,0þ˜bÅ(Vú’ë„-ø¡ìI`Ú|¢–g怜Ä 4aˆZ"˜ PÑêL´Ú@Pâƒt±Á,ÏÆ~¢VëÍÍt¹…eâÀnÃP¬1‚bî1Ï`Þ„!ÌÛôcÌQÑÊ­Ì}£à¬P…ùüCë¡/Ïhèç$Ø  ClÐÁl€ŠV`¢ÕÔÊm-ã»?<ô/×ëÝj½ëŽ~ëÿ*_p6V`”Ë/tNÓ
+­¾’†pÅÕ ›ÍS™j»<SSe$¦jÂSµ|1S¡¢ÕT˜h5•P„;#NÛÍžÌW³3õU¦2à«& ñU‹ó*Z}…‰V_ùx!9;a{|S½½<ßÊ*#0U†˜ªå‹™
+­¦ÂD«©#šSwâ§2ÖÙ–V Ë€¯jb«†0æ*L±š
+Q,žrÎûÕðêËè
+SÆå{(±æøeE%ˆ¶ïþÄ2¿endstream
+endobj
+409 0 obj <<
+/Type /Page
+/Contents 410 0 R
+/Resources 408 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+/Annots [ 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 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 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 ]
+>> endobj
+417 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 721.1282 524.2718 731.9764]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.9) >>
+>> endobj
+418 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 711.1102 245.3977 720.0212]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.9) >>
+>> endobj
+419 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 697.2178 424.5595 708.066]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.10) >>
+>> endobj
+420 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 677.2372 209.2827 686.1482]
+/Subtype /Link
+/A << /S /GoTo /D (section.7) >>
+>> endobj
+421 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 665.282 240.4164 674.193]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.1) >>
+>> endobj
+422 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 651.3897 287.7113 662.2379]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.2) >>
+>> endobj
+423 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 639.4345 298.8363 650.2827]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.3) >>
+>> endobj
+424 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 627.4793 406.8758 638.3275]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.3.1) >>
+>> endobj
+425 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 615.5242 381.4987 626.3724]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.3.2) >>
+>> endobj
+426 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 603.569 266.4854 614.3065]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.4) >>
+>> endobj
+427 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 593.551 295.6953 602.462]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.5) >>
+>> endobj
+428 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 581.5958 280.6268 590.5069]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.6) >>
+>> endobj
+429 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 567.7035 265.7105 578.441]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.7) >>
+>> endobj
+430 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 555.7483 308.4115 566.5965]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.8) >>
+>> endobj
+431 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 543.7932 303.79 554.6414]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.9) >>
+>> endobj
+432 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 531.838 430.6755 542.6862]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.10) >>
+>> endobj
+433 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 519.8828 415.3718 530.731]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.11) >>
+>> endobj
+434 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 507.9277 292.582 518.7759]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.12) >>
+>> endobj
+435 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 495.9725 316.7968 506.8207]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.13) >>
+>> endobj
+436 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 484.0173 323.4109 494.8655]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.14) >>
+>> endobj
+437 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 472.0621 373.3626 482.9104]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.15) >>
+>> endobj
+438 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 460.107 309.7399 470.9552]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.1) >>
+>> endobj
+439 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 448.1518 294.6852 459]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.2) >>
+>> endobj
+440 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 436.1966 305.8931 447.0448]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.3) >>
+>> endobj
+441 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 414.2788 249.8194 425.127]
+/Subtype /Link
+/A << /S /GoTo /D (section.8) >>
+>> endobj
+443 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 359.512 326.7317 370.3602]
+/Subtype /Link
+/A << /S /GoTo /D (figure.1) >>
+>> endobj
+444 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 349.4941 206.5987 358.2944]
+/Subtype /Link
+/A << /S /GoTo /D (figure.2) >>
+>> endobj
+445 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 337.5389 216.0632 346.4499]
+/Subtype /Link
+/A << /S /GoTo /D (figure.3) >>
+>> endobj
+446 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 323.6465 403.3888 334.4947]
+/Subtype /Link
+/A << /S /GoTo /D (figure.4) >>
+>> endobj
+447 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 311.1379 524.2718 323.0931]
+/Subtype /Link
+/A << /S /GoTo /D (figure.5) >>
+>> endobj
+448 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 299.1827 416.8385 311.1379]
+/Subtype /Link
+/A << /S /GoTo /D (figure.5) >>
+>> endobj
+449 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 287.781 244.1524 298.6292]
+/Subtype /Link
+/A << /S /GoTo /D (figure.6) >>
+>> endobj
+450 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 275.2724 285.2484 287.2276]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.6.1) >>
+>> endobj
+451 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 263.8707 259.2071 274.6082]
+/Subtype /Link
+/A << /S /GoTo /D (figure.7) >>
+>> endobj
+452 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 251.362 302.129 263.3172]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.1) >>
+>> endobj
+456 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 239.4069 302.129 251.362]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.2) >>
+>> endobj
+457 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 227.4517 328.2807 239.4069]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.3) >>
+>> endobj
+458 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 215.4965 302.129 227.4517]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.4) >>
+>> endobj
+459 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 203.5414 338.7414 215.4965]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.5) >>
+>> endobj
+460 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 191.5862 328.2807 203.5414]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.6) >>
+>> endobj
+461 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 180.1845 271.9095 191.0327]
+/Subtype /Link
+/A << /S /GoTo /D (figure.8) >>
+>> endobj
+462 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 167.6759 327.7827 179.631]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.1) >>
+>> endobj
+463 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 155.7207 327.7827 167.6759]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.2) >>
+>> endobj
+464 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 143.7655 327.7827 155.7207]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.3) >>
+>> endobj
+465 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 131.8104 327.7827 143.7655]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.4) >>
+>> endobj
+466 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 119.8552 327.7827 131.8104]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.5) >>
+>> endobj
+467 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 107.9 327.7827 119.8552]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.6) >>
+>> endobj
+468 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 95.9449 327.7827 107.9]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.7) >>
+>> endobj
+469 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 83.9897 327.7827 95.9449]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.8) >>
+>> endobj
+442 0 obj <<
+/D [409 0 R /XYZ 144 371.6111 null]
+>> endobj
+408 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F40 356 0 R /F41 374 0 R /F39 351 0 R /F43 455 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+495 0 obj <<
+/Length 2175
+/Filter /FlateDecode
+>>
+stream
+xÚíœMsG†ïü
+í*<Ìô||IUHU.¹øF8cƒ‚16I~~FÑÎt¯Ñ¾cÉÈEÜÞWÛÏ3»=ka3Óå—™çfÑG•­ ³ÓÏôì]ù÷_ž™áóG‹‚#YñÓɳ/Ó,«(ÌNÎgÞ8•£Ç9yûê`>Ÿ¾>ùõÙÏ'íXž¬¢èlU8Õ$£’OfÉ)Ì2õwíõ¼üf/ÜüvuhnæŸ.¬µ¯/éÅKgÅ‚QÎWÂ8ÿtys¼¬"YEAob­ZqœÒ„dìPp}þüãÛç_®VÉ•×í( …ï–iê@¯Õá‘ù`ñAëÅ—åßÆú¹~ùm¾Æ*k(3’•|kÕ‘,[aÕíƒ-ÚaÌ´T0”¥B¡,•!et±¢Jõgñ¨zeâ–½šßì©W•JÇ+Q¼’ˆ‘W0”½B¡ì•Ö Þ¶yõaÊäm_¬®/öTªŠ¤#•(RI¾H*ÊR¡Ð&UHI™L“êbgî€×§û)UC‚¥’eÓRø©ph“
+†²T1(r:7©>.¥J)oÓ©?Î÷vªjD:N‰2à”Ä‹œ‚¡ì
+e§‚STþÔœºä©Ê„¸e¯öuªjT:^‰2à•DŒ¼‚¡ì
+e¯<)k5o? RÑ–¥Úשª!éH%Ê€T’/’
+†²T(”¥rZÙèy xµK«½¬*•ŽW¢ x%#¯`({…BÙ+JÊ‘æ-à_;°¼¹ÙççU IG*Q¤’|‘T0”¥B¡,• ÊÏ[ÀσTå:·e©öv¬ªH:R‰2 •ä‹¤‚¡,
+e©´S^gÞ^W©(mYª½«*’ŽT¢ H%ù"©`(K…B›T>“òÞñð¦]©ì¶¥ÚÓ™ª!ÁRɲi©F|T8´ICYª¤•Ï™7€_vcV/^íñ«F¥ã•(^IÄÈ+Ê^¡Pö*$œã=àß»1«ïñÓª†¤#•(RI¾H*ÊR¡P–ÊRæ à?ƒTZë-Kµ¯cUCÒ‘J”©$_$ e©P(K圊Öñðß¹RííXU‘t¤e@*ÉICY*j|R¹\ż%cZîrq)É Ô5©¼èhC}`9¿|wqv1¿<;}vúáøüÍÅõÙ×ÀÎ*Ùhròô(ï~èIÖµUÖ¢ °–}74͆2kÚX“V‰ì0¶ëÅ~l%ìr\ÿ?›àÌú¿¥COb¯]ë`e
+mØuR)¤6UOaï­ñùåÛ³ËÅW}uóü®K>%E™äU>—¸Í­Òz¶\¢ àµà‚¡Œ …V\.•uõÊ°\_ƒ‰åU‘K‚K2á;ZçS´þadÙ´
+ÚŒ8Þwƒý äê‰wȉ2@nÔE@†29ÚÈ™ÅP‡ñ!­ƒÜ׌|TÞÚ(oëwó:û-7õÚÊŽ ¢ ¸0ââ§]€¡ì
+m.hSÊi$òZVñöÐäËxáƒÜB'ïï°ëtˆ2€`Ô€
+VSÀß™úüñÍÍñ‚É÷±In'Þ!'Ê
+C™*
+mTË0½œ•(¯…ê6ÉOã¯ÔÈy•¼ëMY² hT«zÁPÖ…6¬U)çå|`õ&4úž6É­ž¢ ð”½E<a(óD¡'™ÅG¿äi6rY¸Ë&ùéQš´ªœ_.;ºžU¢ XU«†oAMZCÙ*Z­29)mÝòÒoé¬zœMr;/ F–Mƒ5 €Á¡ m`RPzx_‰µkáò€o*S™ölð#4ÑÝÆp.\Pˆ¶ (‘A€ÄÆ!:eÈ ܺA¬¸d’V”£|wfôigßßúÓ+Ê
+endobj
+494 0 obj <<
+/Type /Page
+/Contents 495 0 R
+/Resources 493 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+/Annots [ 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 ]
+>> endobj
+497 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 720.5747 327.7827 732.5299]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.9) >>
+>> endobj
+498 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 708.6195 327.7827 720.5747]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.10) >>
+>> endobj
+499 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 696.6643 327.7827 708.6195]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.11) >>
+>> endobj
+500 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 684.7092 327.7827 696.6643]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.12) >>
+>> endobj
+501 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 672.754 327.7827 684.7092]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.13) >>
+>> endobj
+502 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 660.7988 327.7827 672.754]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.14) >>
+>> endobj
+503 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 648.8437 327.7827 660.7988]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.15) >>
+>> endobj
+504 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 636.8885 327.7827 648.8437]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.16) >>
+>> endobj
+505 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 624.9333 327.7827 636.8885]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.17) >>
+>> endobj
+506 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 612.9782 327.7827 624.9333]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.18) >>
+>> endobj
+507 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 601.023 327.7827 612.9782]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.19) >>
+>> endobj
+508 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 589.0678 327.7827 601.023]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.20) >>
+>> endobj
+509 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 577.1127 327.7827 589.0678]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.21) >>
+>> endobj
+510 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 565.1575 327.7827 577.1127]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.22) >>
+>> endobj
+511 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 553.2023 327.7827 565.1575]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.23) >>
+>> endobj
+512 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 541.2472 327.7827 553.2023]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.24) >>
+>> endobj
+513 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 529.292 338.6858 541.2472]
+/Subtype /Link
+/A << /S /GoTo /D (figure.9) >>
+>> endobj
+514 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 517.3368 234.079 529.292]
+/Subtype /Link
+/A << /S /GoTo /D (figure.10) >>
+>> endobj
+515 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 505.3817 417.1409 517.3368]
+/Subtype /Link
+/A << /S /GoTo /D (figure.11) >>
+>> endobj
+516 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 493.4265 302.0734 505.3817]
+/Subtype /Link
+/A << /S /GoTo /D (figure.12) >>
+>> endobj
+517 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 481.4713 422.3713 493.4265]
+/Subtype /Link
+/A << /S /GoTo /D (figure.13) >>
+>> endobj
+518 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 469.5162 307.3038 481.4713]
+/Subtype /Link
+/A << /S /GoTo /D (figure.14) >>
+>> endobj
+519 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 457.561 524.2718 469.5162]
+/Subtype /Link
+/A << /S /GoTo /D (figure.15) >>
+>> endobj
+520 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 445.6058 298.2263 457.561]
+/Subtype /Link
+/A << /S /GoTo /D (figure.15) >>
+>> endobj
+521 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 433.6507 385.7589 445.6058]
+/Subtype /Link
+/A << /S /GoTo /D (figure.16) >>
+>> endobj
+522 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 421.6955 401.4499 433.6507]
+/Subtype /Link
+/A << /S /GoTo /D (figure.17) >>
+>> endobj
+523 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 409.7403 286.3824 421.6955]
+/Subtype /Link
+/A << /S /GoTo /D (figure.18) >>
+>> endobj
+524 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 397.7851 479.905 409.7403]
+/Subtype /Link
+/A << /S /GoTo /D (figure.19) >>
+>> endobj
+525 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 385.83 364.8375 397.7851]
+/Subtype /Link
+/A << /S /GoTo /D (figure.20) >>
+>> endobj
+526 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 373.8748 524.2718 385.83]
+/Subtype /Link
+/A << /S /GoTo /D (figure.21) >>
+>> endobj
+527 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 361.9196 298.2263 373.8748]
+/Subtype /Link
+/A << /S /GoTo /D (figure.21) >>
+>> endobj
+528 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 349.9645 370.0679 361.9196]
+/Subtype /Link
+/A << /S /GoTo /D (figure.22) >>
+>> endobj
+529 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 338.0093 524.2718 349.9645]
+/Subtype /Link
+/A << /S /GoTo /D (figure.23) >>
+>> endobj
+530 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 326.0541 298.2263 338.0093]
+/Subtype /Link
+/A << /S /GoTo /D (figure.23) >>
+>> endobj
+531 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 314.099 448.523 326.0541]
+/Subtype /Link
+/A << /S /GoTo /D (figure.24) >>
+>> endobj
+532 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 302.1438 401.4499 314.099]
+/Subtype /Link
+/A << /S /GoTo /D (figure.25) >>
+>> endobj
+533 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 290.1886 286.3824 302.1438]
+/Subtype /Link
+/A << /S /GoTo /D (figure.26) >>
+>> endobj
+534 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 278.2335 479.905 290.1886]
+/Subtype /Link
+/A << /S /GoTo /D (figure.27) >>
+>> endobj
+535 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 266.2783 364.8375 278.2335]
+/Subtype /Link
+/A << /S /GoTo /D (figure.28) >>
+>> endobj
+536 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 254.3231 524.2718 266.2783]
+/Subtype /Link
+/A << /S /GoTo /D (figure.29) >>
+>> endobj
+537 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 242.368 298.2263 254.3231]
+/Subtype /Link
+/A << /S /GoTo /D (figure.29) >>
+>> endobj
+538 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 230.4128 370.0679 242.368]
+/Subtype /Link
+/A << /S /GoTo /D (figure.30) >>
+>> endobj
+539 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 218.4576 524.2718 230.4128]
+/Subtype /Link
+/A << /S /GoTo /D (figure.31) >>
+>> endobj
+540 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 206.5025 298.2263 218.4576]
+/Subtype /Link
+/A << /S /GoTo /D (figure.31) >>
+>> endobj
+541 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 194.5473 448.523 206.5025]
+/Subtype /Link
+/A << /S /GoTo /D (figure.32) >>
+>> endobj
+542 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 182.5921 464.214 194.5473]
+/Subtype /Link
+/A << /S /GoTo /D (figure.33) >>
+>> endobj
+543 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 170.637 349.1465 182.5921]
+/Subtype /Link
+/A << /S /GoTo /D (figure.34) >>
+>> endobj
+544 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 158.6818 524.2718 170.637]
+/Subtype /Link
+/A << /S /GoTo /D (figure.35) >>
+>> endobj
+545 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 146.7266 298.2263 158.6818]
+/Subtype /Link
+/A << /S /GoTo /D (figure.35) >>
+>> endobj
+546 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 134.7714 427.6016 146.7266]
+/Subtype /Link
+/A << /S /GoTo /D (figure.36) >>
+>> endobj
+547 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 122.8163 524.2718 134.7714]
+/Subtype /Link
+/A << /S /GoTo /D (figure.37) >>
+>> endobj
+548 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 110.8611 298.2263 122.8163]
+/Subtype /Link
+/A << /S /GoTo /D (figure.37) >>
+>> endobj
+549 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 98.9059 432.8319 110.8611]
+/Subtype /Link
+/A << /S /GoTo /D (figure.38) >>
+>> endobj
+550 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 86.9508 524.2718 98.9059]
+/Subtype /Link
+/A << /S /GoTo /D (figure.39) >>
+>> endobj
+551 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 74.9956 376.6814 86.9508]
+/Subtype /Link
+/A << /S /GoTo /D (figure.39) >>
+>> endobj
+496 0 obj <<
+/D [494 0 R /XYZ 144 757.9346 null]
+>> endobj
+493 0 obj <<
+/Font << /F8 348 0 R /F43 455 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+601 0 obj <<
+/Length 1912
+/Filter /FlateDecode
+>>
+stream
+xÚíœKo7…÷ùZÚ@ÌðuùXxS )ÐM Ô»4 Õ‘5ŽcØN9š!ykegd¹© †­ã9"¿CÞË‘d5“韚)kgž¼ˆÆºÙùçWrv™~þË+5<~Ò N¸â§³WoÞ†YÑi7;»X¿ÄÙ‡wGˎߟýúæ­ÕL¥£Mºh'9û¸4–k¤°>„AóÇ×cuôןRÙË×KZíïÇ:ÍÏ»ÿ?Í/W×õóY i#´'‡‡[T1S±·¶B:ÕÛÊãe¤<úí&=óûå—ë»ãcÌÑ»áùvg„ñÆ ÏÿâËíçùýéÇùõåë›ùíݧåÍ)ÝÜ¿î~°¼þ°¸¾?U2}ß]hvbÓ<Q¤G‰H¤ûY_É’éJÙ;ò§ìÓÀ´Í“û^ŸÄŽÒJÏøÁã“ûÎ_ÿ¾KK\¥9V)#^i¡¤³›‰gÕ —= þðbÝ4j93hZc†LK̤*=ƒ>fêÉ1û<¿Mqê£t·¼¾¼Z\-¯ççŸN/æWw‹‡±Q^ '•æ¹!=5ÕQryà rLÈñYDä i%‡L39‚PÑ©žœž‚ÜCFi§"c<C ½Ì%ºÅccY(S‰³ÀeãYXã²€MK iÉ‚wB[û,˜IVñú®¿í¢Ö¤„$gxbˆÚ˱Œ €É
+=¿Áå)ì}œç§˜É
+šVRÈ´J{mЦ/ïd&'u8|?:R2ˆàB³_`2©¬jE
+šÖH!Ó)ˆÊ ý‚Ýu¤6ômÒˆ ïÛÒó™rÙ—!bF\6Îhm¾
+µoÅŒÉ@̲ª3hZc†LKÌŒÊø¾4Ñ4÷ôø›/žõ_Ó Ád€ŸDšVÈ´ÐÐ$TÐCÑSÓøÏòËü4
+šRÞ§§úòîÔä¤ÑíŸGÂJ×ê¸ D*«Z‘‚¦5RÈ´DŠL¢«úæô®#µC~bƒ“F|¾#hZ!ÓÂÈ*aÓ{Ff?Ë^ÿ‡|££ «ZÅ›Ë@6²j• 7ž hZ³LK6”h(ÞöådãpÈç1“$œ‘­C>—˜eU+fÐ´Æ ™æ˜éh„ë䫘Ñä1ã÷•/-´â¤ƒ^ËVEã²ñ8U#NØ´Ä š–8¹(¼ :·Ë8mªF¦û„ÐÚy#ìþÎCs“h|4hZ¡!Ó¼JöåÍù}í?Z ¢-‰@¶u*å2‹¬ZåÂçšÖ\ Ó’ cDˆq8•†—‘‹CûÁ#¦UGŠZc2±¬jE šÖˆ!Ó±TÐcˆÃ)5î+bß6ÃÛî=©y"­‹…ýn:Ý=7il«qÙx"Šª‘lZMs"TpB¯mzùüP›±aÓ é·HñFÔ™ÿǦ£¼J›V]ã2±¬jE šÖˆ!Ó1§…r¡¯k^½”M牟/ôé’ÞóO¤Ú`žŠ–¤ÐÊ´ê —´YµBÆÑBÓŠ™´&uƒúzâõËD»¡P÷– Éϵƹ—²Œ¦E;a¤iÖ&iɪVZ iM 2-iQV˜á“þé·_ÿþzw¿¼XžÏW„‡ïž÷ y, UP°iA$c ©…‰z(úv"çiÉ-n/–·wÛo¦Ý±h­ŸsRo £Á€É
+݇^ˆ—4c½;åÁ`L5Î‚Ï @ äXþIê.ƒî+§w“‚X>÷;¯òXV¤ªÀ_aÓ8 Gãc¾=®D›ïz‘äþ ÚÄ=õendstream
+endobj
+600 0 obj <<
+/Type /Page
+/Contents 601 0 R
+/Resources 599 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 338 0 R
+/Annots [ 603 0 R 604 0 R 605 0 R 606 0 R 607 0 R 608 0 R 609 0 R 610 0 R 611 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R 625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 656 0 R 657 0 R ]
+>> endobj
+603 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 720.5747 524.2718 732.5299]
+/Subtype /Link
+/A << /S /GoTo /D (figure.40) >>
+>> endobj
+604 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 708.6195 261.6139 720.5747]
+/Subtype /Link
+/A << /S /GoTo /D (figure.40) >>
+>> endobj
+605 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 696.6643 401.4499 708.6195]
+/Subtype /Link
+/A << /S /GoTo /D (figure.41) >>
+>> endobj
+606 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 684.7092 286.3824 696.6643]
+/Subtype /Link
+/A << /S /GoTo /D (figure.42) >>
+>> endobj
+607 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 672.754 479.905 684.7092]
+/Subtype /Link
+/A << /S /GoTo /D (figure.43) >>
+>> endobj
+608 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 660.7988 364.8375 672.754]
+/Subtype /Link
+/A << /S /GoTo /D (figure.44) >>
+>> endobj
+609 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 648.8437 524.2718 660.7988]
+/Subtype /Link
+/A << /S /GoTo /D (figure.45) >>
+>> endobj
+610 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 636.8885 298.2263 648.8437]
+/Subtype /Link
+/A << /S /GoTo /D (figure.45) >>
+>> endobj
+611 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 624.9333 370.0679 636.8885]
+/Subtype /Link
+/A << /S /GoTo /D (figure.46) >>
+>> endobj
+612 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 612.9782 524.2718 624.9333]
+/Subtype /Link
+/A << /S /GoTo /D (figure.47) >>
+>> endobj
+613 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 601.023 298.2263 612.9782]
+/Subtype /Link
+/A << /S /GoTo /D (figure.47) >>
+>> endobj
+614 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 589.0678 448.523 601.023]
+/Subtype /Link
+/A << /S /GoTo /D (figure.48) >>
+>> endobj
+615 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 577.1127 464.214 589.0678]
+/Subtype /Link
+/A << /S /GoTo /D (figure.49) >>
+>> endobj
+616 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 565.1575 349.1465 577.1127]
+/Subtype /Link
+/A << /S /GoTo /D (figure.50) >>
+>> endobj
+617 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 553.2023 524.2718 565.1575]
+/Subtype /Link
+/A << /S /GoTo /D (figure.51) >>
+>> endobj
+618 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 541.2472 298.2263 553.2023]
+/Subtype /Link
+/A << /S /GoTo /D (figure.51) >>
+>> endobj
+619 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 529.292 427.6016 541.2472]
+/Subtype /Link
+/A << /S /GoTo /D (figure.52) >>
+>> endobj
+620 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 517.3368 524.2718 529.292]
+/Subtype /Link
+/A << /S /GoTo /D (figure.53) >>
+>> endobj
+621 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 505.3817 298.2263 517.3368]
+/Subtype /Link
+/A << /S /GoTo /D (figure.53) >>
+>> endobj
+622 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 493.4265 432.8319 505.3817]
+/Subtype /Link
+/A << /S /GoTo /D (figure.54) >>
+>> endobj
+623 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 481.4713 524.2718 493.4265]
+/Subtype /Link
+/A << /S /GoTo /D (figure.55) >>
+>> endobj
+624 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 469.5162 376.6814 481.4713]
+/Subtype /Link
+/A << /S /GoTo /D (figure.55) >>
+>> endobj
+625 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 457.561 524.2718 469.5162]
+/Subtype /Link
+/A << /S /GoTo /D (figure.56) >>
+>> endobj
+626 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 445.6058 261.6139 457.561]
+/Subtype /Link
+/A << /S /GoTo /D (figure.56) >>
+>> endobj
+627 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 433.6507 464.214 445.6058]
+/Subtype /Link
+/A << /S /GoTo /D (figure.57) >>
+>> endobj
+628 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 421.6955 349.1465 433.6507]
+/Subtype /Link
+/A << /S /GoTo /D (figure.58) >>
+>> endobj
+629 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 409.7403 524.2718 421.6955]
+/Subtype /Link
+/A << /S /GoTo /D (figure.59) >>
+>> endobj
+630 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 397.7851 298.2263 409.7403]
+/Subtype /Link
+/A << /S /GoTo /D (figure.59) >>
+>> endobj
+631 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 385.83 427.6016 397.7851]
+/Subtype /Link
+/A << /S /GoTo /D (figure.60) >>
+>> endobj
+632 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 373.8748 524.2718 385.83]
+/Subtype /Link
+/A << /S /GoTo /D (figure.61) >>
+>> endobj
+633 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 361.9196 298.2263 373.8748]
+/Subtype /Link
+/A << /S /GoTo /D (figure.61) >>
+>> endobj
+634 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 349.9645 432.8319 361.9196]
+/Subtype /Link
+/A << /S /GoTo /D (figure.62) >>
+>> endobj
+635 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 338.0093 524.2718 349.9645]
+/Subtype /Link
+/A << /S /GoTo /D (figure.63) >>
+>> endobj
+636 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 326.0541 376.6814 338.0093]
+/Subtype /Link
+/A << /S /GoTo /D (figure.63) >>
+>> endobj
+637 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 314.099 524.2718 326.0541]
+/Subtype /Link
+/A << /S /GoTo /D (figure.64) >>
+>> endobj
+638 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 302.1438 261.6139 314.099]
+/Subtype /Link
+/A << /S /GoTo /D (figure.64) >>
+>> endobj
+639 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 290.1886 524.2718 302.1438]
+/Subtype /Link
+/A << /S /GoTo /D (figure.65) >>
+>> endobj
+640 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 278.2335 298.2263 290.1886]
+/Subtype /Link
+/A << /S /GoTo /D (figure.65) >>
+>> endobj
+641 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 266.2783 411.9106 278.2335]
+/Subtype /Link
+/A << /S /GoTo /D (figure.66) >>
+>> endobj
+642 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 254.3231 524.2718 266.2783]
+/Subtype /Link
+/A << /S /GoTo /D (figure.67) >>
+>> endobj
+643 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 242.368 376.6814 254.3231]
+/Subtype /Link
+/A << /S /GoTo /D (figure.67) >>
+>> endobj
+644 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 230.4128 524.2718 242.368]
+/Subtype /Link
+/A << /S /GoTo /D (figure.68) >>
+>> endobj
+645 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 218.4576 261.6139 230.4128]
+/Subtype /Link
+/A << /S /GoTo /D (figure.68) >>
+>> endobj
+646 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 206.5025 524.2718 218.4576]
+/Subtype /Link
+/A << /S /GoTo /D (figure.69) >>
+>> endobj
+647 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 194.5473 381.9118 206.5025]
+/Subtype /Link
+/A << /S /GoTo /D (figure.69) >>
+>> endobj
+648 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 182.5921 524.2718 194.5473]
+/Subtype /Link
+/A << /S /GoTo /D (figure.70) >>
+>> endobj
+649 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 170.637 266.8443 182.5921]
+/Subtype /Link
+/A << /S /GoTo /D (figure.70) >>
+>> endobj
+650 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 158.6818 524.2718 170.637]
+/Subtype /Link
+/A << /S /GoTo /D (figure.71) >>
+>> endobj
+651 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 146.7266 460.3669 158.6818]
+/Subtype /Link
+/A << /S /GoTo /D (figure.71) >>
+>> endobj
+652 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 134.7714 524.2718 146.7266]
+/Subtype /Link
+/A << /S /GoTo /D (figure.72) >>
+>> endobj
+653 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 122.8163 345.2994 134.7714]
+/Subtype /Link
+/A << /S /GoTo /D (figure.72) >>
+>> endobj
+654 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 110.8611 464.214 122.8163]
+/Subtype /Link
+/A << /S /GoTo /D (figure.73) >>
+>> endobj
+655 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 98.9059 474.6747 110.8611]
+/Subtype /Link
+/A << /S /GoTo /D (figure.74) >>
+>> endobj
+656 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 86.9508 469.4443 98.9059]
+/Subtype /Link
+/A << /S /GoTo /D (figure.75) >>
+>> endobj
+657 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 74.9956 464.214 86.9508]
+/Subtype /Link
+/A << /S /GoTo /D (figure.76) >>
+>> endobj
+602 0 obj <<
+/D [600 0 R /XYZ 144 757.9346 null]
+>> endobj
+599 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+697 0 obj <<
+/Length 2661
+/Filter /FlateDecode
+>>
+stream
+xÚíœ]o¹†ïó+Œ^I@Åå÷G_tƒM6‹‰î6{1–F¶º²¤Jã8ûïK‡ä‘­9ãÄÞÔ¶¬xt4ïÌû’‡ÊìŒúìŒIyf”!NH}6»~CÏ.ýñ¼aÝû“0?NßüðΞ9â4×gÓÅ™b–PfT9ÏtþËèóø×é?ßü4ÍgR\n”Æår®É”%.\:—„j%O˜ tôï혚åf½O„£_µüðN
+p-ˆ0B{ÕðÑÿÜì›åb9«Â§ÎßÖë¦Þ-×—Ýû«zµ\׳«zöÛù¢Zíëx6x9\("´ÝÙ~%ã‰5rä_”¿œ»/waþRwåfŽ“¢&0쌻' Ä]? T´ÐÀD3 Æ £ZFö‰hìªËËz¾ª̓qHJ”SàÒ}5Žt78@‚Zƒá@E L4ã ”0‡{"Zï¿?Žt78@‚Z#h?T´àÀDm-aN³VÓÒ'm»ååÕWðPÄr phÊÌ!ßΆõs8ðဋf¨hæ`4ñ)é"ö¤ÍâÃwänc€C8@O0¨hဉfZn•ø7sXUõj±Ù]WÍy}½m~¿ï´O çeÓÆ™`±t½ýúÞBwê^êÉ´ê ¡ `ÔQÑBÍÔ'BÐX—Xñ$Ô÷ËëíêHs’0©ÀÎ ™Ø“kØA‚"À°£¢;&š±û@ë+Ÿû¶ÚÕþ“¯{rm
+÷øøïM5?¹R »8 IˆKT´¤&šÓ@[¢¥ŒU¨£OPÖ·a¥åȤ_mÕA&Hù\ø~Ël [7À„!ì!Œ=*ZØc¢™½Ò‰‹¥§K+oo<û‹É'ÊÔ¦j"ÿ÷Õ˜ÛÑïáÇæ¦Çœ?ï&û­§îÅÜÀ ÂÜÐz¡úq£¢7&Ê,#VYV)‰2VšŸ¨¢•ÿ°sÎGÖj=¯vþu±¯±·ÇÂç>ú›˜"þ>Kþæ•j´ SûÑf¿ ]‡çü"hšÍµ—µrmòh¡ÿx`év€0ô†Š`˜h&81ƺ ìbÜ™8aL›3»]6WTú½
+/r4«¶áUA{ØúÙCë%B¤FŒIº£& aíÁ˜ ¢… &Z˜pJ,63™¥FdìèCŒø̯wûö— ïoJ~·fËlvøü²‰Ï[£·AÌg¾ãì{wé¾È0„4#‡Šr˜h!G-±ÚêLnþ|ZSGv<1Gö)ô"I74€„!H ;T´ ÁDS"&Ž‰®øLœ~®BÎw.¾ m Jåh<œoi/`ÎðÔ-0»…ã†aý¸¬ý pÑŒÍ-PZIœ²ühò㪚}«ø-‚ïJ‡Ðò¾»øI"O† arè>†-È1Ñ‚ÜB©`}%Ì[ßk†æžzMî=a”êÓÂœLÀ ÂÌÐq 3*Z0c¢¹#׌Pib%æÒSäéUIÛ*¨Žcäþ&àŸÄj1Möáù¿9±†  ÂâÐ}Ù¿v€‹â˜hiØÒê¸9Ú—¿[òmýÚ„%ß?Àû—‡<6€„!È¡ûrT´ ÇD raF÷NGëÙf=OÕ/“þÝË›]úXz"“EAúAFE dL´@æŠ0ËåÑùíôªmØóÖþg›Îf àanè<†-¸1Ñ<p³ð|ÎĚХ}@ÓÛq[{·-y°Ò×öéíž8Iàɯà Í—¢8*Z€c¢¥}Sæã9눓°æðçˆ}v²j
+‹öKÝ‚Z¢¹õ~¹ã²Ñq\6j4»ð ÑÅ«vØ>ò5
+Â0L¸OÞ}5,$‰õ¶ýô%<ºlŸÂ‡Ge«n H£~|žÆí¨icC—±®VÝÞ®Y{¨®šzžž¼´<»g›íup¸ñ‹Ÿ×þÍn'ב}ßþJ-Ëï×·¥Ð(ãQ¼ÂOLÈ8\ÅÞ,'õ_B†÷Uyv/m,áNŠ3n51Ü©ž´é¢&0ìè7êOÖ.­÷f ®™³ÕL?7’#ãF!~„çÄ1ÉÃ{}ˆ ãú6Z®»¡¥Úµ(Ú„ªcæ„ÒP1÷’{’D1Y: I ÈGö§ªYRÓÌ)¡9±Ìuxºà_õï·í.…ݼk×·y÷ÈU<0¯U ºjö±ñUë²ÑáóX)ŸacWJEÑÿ7žÒdÉ
+Œ‰Í693À„!l¡Í[T´°½+zÎÎ %Ô™¾9ûÏÕö+§éÓ«eWœ·Ýý—êvû«v·ãm×ý7í/ðAløLY ºöòÀó¯è˜ô•µÑj `Xä¨6 Loà¢9 PÑÜÄ™ÐDðîïS±Êƒw|¿÷öLÚý‹ŒÔÚ\¶g
+endobj
+696 0 obj <<
+/Type /Page
+/Contents 697 0 R
+/Resources 695 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+/Annots [ 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R 729 0 R 730 0 R 731 0 R 733 0 R 734 0 R 735 0 R 736 0 R 737 0 R 738 0 R 739 0 R 740 0 R 742 0 R 743 0 R 744 0 R ]
+>> endobj
+699 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 720.5747 464.214 732.5299]
+/Subtype /Link
+/A << /S /GoTo /D (figure.77) >>
+>> endobj
+700 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 708.6195 469.4443 720.5747]
+/Subtype /Link
+/A << /S /GoTo /D (figure.78) >>
+>> endobj
+701 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 696.6643 469.4443 708.6195]
+/Subtype /Link
+/A << /S /GoTo /D (figure.79) >>
+>> endobj
+702 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 684.7092 474.6747 696.6643]
+/Subtype /Link
+/A << /S /GoTo /D (figure.80) >>
+>> endobj
+703 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 672.754 474.6747 684.7092]
+/Subtype /Link
+/A << /S /GoTo /D (figure.81) >>
+>> endobj
+704 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 660.7988 317.7645 672.754]
+/Subtype /Link
+/A << /S /GoTo /D (figure.82) >>
+>> endobj
+705 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 648.8437 322.9948 660.7988]
+/Subtype /Link
+/A << /S /GoTo /D (figure.83) >>
+>> endobj
+706 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 636.8885 322.9948 648.8437]
+/Subtype /Link
+/A << /S /GoTo /D (figure.84) >>
+>> endobj
+707 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 624.9333 296.8431 636.8885]
+/Subtype /Link
+/A << /S /GoTo /D (figure.85) >>
+>> endobj
+708 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 612.9782 302.0734 624.9333]
+/Subtype /Link
+/A << /S /GoTo /D (figure.86) >>
+>> endobj
+709 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 601.023 307.3038 612.9782]
+/Subtype /Link
+/A << /S /GoTo /D (figure.87) >>
+>> endobj
+710 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 589.0678 302.0734 601.023]
+/Subtype /Link
+/A << /S /GoTo /D (figure.88) >>
+>> endobj
+711 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 577.1127 296.8431 589.0678]
+/Subtype /Link
+/A << /S /GoTo /D (figure.89) >>
+>> endobj
+712 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 565.1575 312.5341 577.1127]
+/Subtype /Link
+/A << /S /GoTo /D (figure.90) >>
+>> endobj
+713 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 553.7558 258.5429 564.604]
+/Subtype /Link
+/A << /S /GoTo /D (figure.91) >>
+>> endobj
+714 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 541.2472 412.3554 553.2023]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.1) >>
+>> endobj
+715 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 529.292 490.3963 541.2472]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.2) >>
+>> endobj
+716 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 517.3368 394.0074 529.292]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.3) >>
+>> endobj
+717 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 505.3817 472.9616 517.3368]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.4) >>
+>> endobj
+718 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 493.98 246.228 504.7175]
+/Subtype /Link
+/A << /S /GoTo /D (figure.92) >>
+>> endobj
+719 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 481.4713 251.0709 493.4265]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.92.1) >>
+>> endobj
+720 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 469.5162 253.6999 481.4713]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.92.2) >>
+>> endobj
+721 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 460.0516 256.0522 468.9627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.93) >>
+>> endobj
+722 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 445.6058 231.5053 457.561]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.1) >>
+>> endobj
+723 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 433.6507 268.6716 445.6058]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.2) >>
+>> endobj
+724 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 421.6955 235.4627 433.6507]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.3) >>
+>> endobj
+725 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 412.231 249.6595 421.142]
+/Subtype /Link
+/A << /S /GoTo /D (figure.94) >>
+>> endobj
+726 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 400.2758 231.5053 409.0761]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.1) >>
+>> endobj
+727 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 388.3206 240.9699 397.2317]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.2) >>
+>> endobj
+728 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 376.3655 285.7188 385.2765]
+/Subtype /Link
+/A << /S /GoTo /D (figure.95) >>
+>> endobj
+729 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 364.4103 274.5938 373.3213]
+/Subtype /Link
+/A << /S /GoTo /D (figure.96) >>
+>> endobj
+730 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 349.9645 250.2684 361.9196]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.96.1) >>
+>> endobj
+731 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 338.0093 259.8159 349.9645]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.96.2) >>
+>> endobj
+733 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 283.2425 445.3151 295.1977]
+/Subtype /Link
+/A << /S /GoTo /D (table.1) >>
+>> endobj
+734 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 271.2874 305.0353 283.2425]
+/Subtype /Link
+/A << /S /GoTo /D (table.2) >>
+>> endobj
+735 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 259.8857 337.4693 270.7339]
+/Subtype /Link
+/A << /S /GoTo /D (table.3) >>
+>> endobj
+736 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 247.9305 345.6332 258.7787]
+/Subtype /Link
+/A << /S /GoTo /D (table.4) >>
+>> endobj
+737 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 235.9753 281.4847 246.8235]
+/Subtype /Link
+/A << /S /GoTo /D (table.5) >>
+>> endobj
+738 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 225.9573 282.7853 234.8684]
+/Subtype /Link
+/A << /S /GoTo /D (table.6) >>
+>> endobj
+739 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 211.5115 305.3673 223.4667]
+/Subtype /Link
+/A << /S /GoTo /D (subtable.7.1) >>
+>> endobj
+740 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 199.5564 314.8319 211.5115]
+/Subtype /Link
+/A << /S /GoTo /D (subtable.7.2) >>
+>> endobj
+742 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [157.9477 145.3431 343.6406 156.1913]
+/Subtype /Link
+/A << /S /GoTo /D (map.1) >>
+>> endobj
+743 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 133.3879 253.6446 144.1254]
+/Subtype /Link
+/A << /S /GoTo /D (submap.1.1) >>
+>> endobj
+744 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.8618 121.4327 263.1091 132.2809]
+/Subtype /Link
+/A << /S /GoTo /D (submap.1.2) >>
+>> endobj
+698 0 obj <<
+/D [696 0 R /XYZ 144 757.9346 null]
+>> endobj
+732 0 obj <<
+/D [696 0 R /XYZ 144 298.6846 null]
+>> endobj
+741 0 obj <<
+/D [696 0 R /XYZ 144 157.4421 null]
+>> endobj
+695 0 obj <<
+/Font << /F8 348 0 R /F43 455 0 R /F39 351 0 R /F23 307 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+792 0 obj <<
+/Length 170
+/Filter /FlateDecode
+>>
+stream
+xÚ}Ï= Â0ཿ"c24Í]._«`'ÁlêP«VGýý¦J„"7ÜûðÂSi€sÆɠɲþQ)6¤ûª‚œ×#¨K±ˆUÓzd°hY¼üVÄÓŽ¿nâ×MKX( $MЩt$ñzΆJ£$9ï³Ù>ðã^ ³}ÉbÈv#Ðó®÷]ûáÓ_-ãô‰A-Ñûÿ]íÂWÕ@jfŽMJ•éÙH”endstream
+endobj
+791 0 obj <<
+/Type /Page
+/Contents 792 0 R
+/Resources 790 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+>> endobj
+793 0 obj <<
+/D [791 0 R /XYZ 144 757.9346 null]
+>> endobj
+790 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+796 0 obj <<
+/Length 3331
+/Filter /FlateDecode
+>>
+stream
+xÚ­koãÆñ»…¾–
+¸ƒ¹Àk4å}Ù”»•|SßóóðXl·jóãáxT®ús¢]]´
+—ËܼÀ‡ŸªÝÃV„W¡Q!‹ä–ŸuC%J¬ÊCªåÜKõ ^JY;8U/(7B% 8’`á¾z86å„Š†Ÿ lþ%Øh0YT¶¸ÛNÐ1^i§ƒ Á¾4‹¢ÄS!ÕÿŒjjÜ=UÉÁ¤ÂÌãŽ3$å´Ng©òÚÙ^óÇ •j°¼å
+¹$âtJÈejaiä&M™E
+Ï å#û `SŒ<*ŽïiÝmÄçýìÄQ¬Q›+ñ=Åvà#Fìõ7§™Ns•hPS—Ã
+åšÂ&}2bci3¼ã£} prxÍ3ÛÄö5üÔ(sd¾ÀÓú¿³ôk§KÏŸ‹Å+yúó2Ò¯f¨A.:‡jÊÿ^J³¥Gw‰\äÊAâØå%äÓ+L2Å»cRû+¾…ÞÚ å íÅÈ”d8Îþ÷>q1Ä\x‚,ðÛûï?Ö›Ô)gõùˆwpvÏϘÑ~×5c À1e^ë:‡AAz+ÞB’fu{srÒ¿tžb…Aj%@šºyw\ëÍbia…ðþ·A6Z6×7üÅÇ
+ëú‡êa³0ÀÖ5ƒ©’@ÏÄóQìßÑ£@{­t>¿ñ¼Ÿ‡n†îHür<´Äi,‹A%xêÉë=m¬Þa…<îã*æ4À\盯)®§ó %W=ƒ í##é\3.Š\x‰¼ì†Q:¥2É 5x4Ýk0"QÀ¡¥8g¬û<\г3)L%ypbRþØdTiC¶˜ž$<ß×íTqb•1‹¶âÑë|þŽ÷é~•î¥Y¤)$ÿéŸ1¶‡>œM„ Ê D(ãàÖðEýðôrÛGmÄ›öÆ(—™üBìÁäÁ\âˆ=Jòó5ª–×g5a€TDöò±"‰1z4:ȃZÊ—weÊ?'í<(纒õuNH‡óN-1ÓXCH9cý|Sì÷\Àìµ(jüqYà¾É‰Š¢Íô¥¼±Þ—<õ&œÖ2kK²¡¿ª(€ üUFÖŽè¬-Ob4¬šžVÕâFÁ9½»g„JW]KdW Š‰%¼NÇÈ¢!btñÊc’Ä].´ ÙâY½†Y£²$œ˜ö%ýgk/ô³w1Õm¸K#u`_Ÿ>Æœ¥û®:ú{ÿ@òä°€"az}3ÑÂ1Ú« äu¹]Mµp2•¹Î/õlvÊwZmì@qsÕ¶¸ë\µÐÆv^”Ø=j®¬F
+!“z)
+¿ˆ­½¿SQÅuÏO ð=5Ž ø~ÁU«KpdI܃ÿ »‚ ðÔ€À¡ð*¸±ßüu²)ÛM³<%.¾îBLÝ”'µCìÅše¢(µ@©ËV.¥YÞe>g´VY¡U]A$uRú2ÿ`µ¨y–ÝÒ rÏðÞ]ÀKSBI÷,ÇZ–ëX;© x ›x¥3›o>1¨^wa2xßÓ‘ó>]*–5—׋X°(Dƒ<9]=‘÷I/ |éjØÇ®?óÌ3\ës.ƒMBÆ™Õ(9•·ag†>EŠÑÝ"lÏ…m°èÊÝs«B RIŸ4AO²±ŸujWåXÚV» wè ’¥]Þ0ÕõPPš®¢èÈI9¡†É¶Ñ}“v™š“0:$mr¥óÎ%2ÝÉί7IŒž,âÏVêÝI¿ “Vƒñj†Ò‰Ö7 ïš0øò<M„¾Ñ‡àu>L*?^v¸$u畈q^ù;,Ü–9¯ü—×ë”ÿò¢QùG‹¢òÛ‘žZÏ!ÈQ"·IæÀó?±l¨›–!OÕš2k&Z ¹j¼¿<Å: Ø3Ö¨}Ž jÃD&¦Ôɪ “t «û¢¹«›È4d©(*r5E‹)•kØÈ®«]…¶:AÚ)ø¤³ôµ.¡ðí@h›xC„oQ`ÔuµbðˆÝ{fÀ"ƒGè~ËE‡8s‡þ ðŽ[ÊÌö[ö’£Þ–ÓÒ\OèJ$–v2…Ñdy‡dž—œFþÇ w@{y©ƒwyÆ .Í„@ ¶çV.@ Ó@cço­ó=–a®~+÷]²p#uga*Ê!t\ñ` ;·]o°f@çÕ¹Cg ;8T]Û:J¢
+B'l‰_ÀîªÝï_”RrÑ·tàžWõº¬1ñõ§OÇb}n’ÙŒù»¬qžßéÅùäÎí¯Ü­ûβ)©ÿ—oÊH¼ˆƒö©æ/}à6?P8x^Ø>¤Ðåâ†A¼È¬œÚT
+OÎ&z”ƒT\œ²‘*{'…OzÞùRÏ$Éô+ïý‚óíÐþWçûÂÚÁ*î ëKfF¹2&˜ûtõþC2[ηW‰JóÌÍžàÔ5‡Höx¥Æßiä²½úñêߧ~#Á Ìšþ–ÊÍ {
+A‡S |™c[NÂL¼"±³
+oNdÊwîðM±^Wôk"¼?ôöàzvM’I‡hü÷[ª5Švbg”"O‡¥LŽ¥ n
+l‡ßÛØDÉniRÎj«%$]¹üîɼNz?-²¼ë—ØÔ€Ée¿n
+bd2(‚ÂÂç‘›¾ÜÈ
+endobj
+795 0 obj <<
+/Type /Page
+/Contents 796 0 R
+/Resources 794 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+/Annots [ 800 0 R 804 0 R 806 0 R 808 0 R 809 0 R 811 0 R 812 0 R 814 0 R 819 0 R 820 0 R 821 0 R ]
+>> endobj
+800 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.7784 686.7986 408.2403 699.3914]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.1) >>
+>> endobj
+804 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [506.7818 638.9779 521.5044 650.9331]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.7) >>
+>> endobj
+806 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [467.6326 393.2334 474.6064 401.6463]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Lamp94) >>
+>> endobj
+808 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [184.5701 347.6597 191.032 359.699]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.2) >>
+>> endobj
+809 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [249.6871 335.7045 256.661 346.5528]
+/Subtype /Link
+/A << /S /GoTo /D (figure.1) >>
+>> endobj
+811 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [199.5418 152.4909 206.5157 163.3391]
+/Subtype /Link
+/A << /S /GoTo /D (figure.2) >>
+>> endobj
+812 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [227.2158 152.4909 234.1897 163.3391]
+/Subtype /Link
+/A << /S /GoTo /D (figure.3) >>
+>> endobj
+814 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [187.8861 91.6232 200.6993 103.1201]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+819 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [219.6425 72.6544 225.8692 83.4639]
+/Subtype /Link
+/A << /S /GoTo /D (section.5) >>
+>> endobj
+820 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [243.1657 72.6544 255.9789 83.4639]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.1) >>
+>> endobj
+821 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [297.128 75.4937 303.3547 82.6226]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Lamp94) >>
+>> endobj
+6 0 obj <<
+/D [795 0 R /XYZ 144 734.0242 null]
+>> endobj
+10 0 obj <<
+/D [795 0 R /XYZ 144 456.1117 null]
+>> endobj
+805 0 obj <<
+/D [795 0 R /XYZ 144 420.0883 null]
+>> endobj
+807 0 obj <<
+/D [795 0 R /XYZ 144 387.8535 null]
+>> endobj
+810 0 obj <<
+/D [795 0 R /XYZ 144 195.1753 null]
+>> endobj
+813 0 obj <<
+/D [795 0 R /XYZ 159.2431 104.9234 null]
+>> endobj
+818 0 obj <<
+/D [795 0 R /XYZ 159.2431 95.419 null]
+>> endobj
+794 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F45 799 0 R /F43 455 0 R /F7 803 0 R /F41 374 0 R /F23 307 0 R /F40 356 0 R /F37 328 0 R /F25 322 0 R /F24 334 0 R /F46 817 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+825 0 obj <<
+/Length 2490
+/Filter /FlateDecode
+>>
+stream
+xÚíY[oÛF~÷¯t!át®œaßڢɶéÝ·XÀñ%Q6Ý"Rq¼FþûžË EÉ”ãb»û°È™3gÎå;7F$üS#eíÈ;/
+cóÑlu!G7°þúBÅý ²>Å—ß¾
+£B¹ÎG—‹c—󫱞\_þòí+«{Dº°Âx"ÅåmilŸF
+ëCˆ4o÷5ž¾“ÊÞ òZ]DÚß&:ŒËþ}?qn\Þÿ‹Ÿ.;Eœ6B{—?­­ñSe@^(i†¨
+âf‘ÂÁ!ɇ‹«k9šé/qõ^¤PE¡G«‹ÃbÒÂòâíÅß;~r”Y%¼Öþ<+>'U|L'ŽYÁ=R*4óË)K¬þ,-•„]íÔÈj¡´Ò_Íö,-3cÈ¥¸å…Nž‰Bm
+àtîÁ¼Þ+Š‹Wõ FÑ®šdÆرún’YkÇ­ÒJ¹ƒíøÜbøÜM´opÁŒ)öø|Ã$ð£Æ5¬Ì« §]Œï鱩çÌJÅiìa†È].rã
+<©¤ð”<næk¸ý1Ühã£Ýri„±NãÆ殹 „ÕÞGGà¼Bßïšö‘‡;æÖ ›çö«—þpt?å%cƒ0!ø'½d¢—Þ¦@œmÖ”ƒñèr'BpOý> dü(€Dà\*ÖJçA"¢AÖ!‰Þ)c·ånºùô „®×Ÿ¾ÁËA« qa˜.D+„X€(½Ó„W°Däò˜¹ÎÊm[oÖ¯jÄßçoÎÑ-Ëiµ|
+ã"mëˆUŸ^Ãób³[•¨®AEY31Õ˜ûí$ƒ*Cmèo 'Úz}ÃDXw`Ej˜e‰,ç‘E9]&€7/aÍ\—ªx{{eJ7A=ƒk7ï#{PP"ø•uö£\ÞŽ51iŠ‘ÒjCÿØ4B!ëQ]’¥pǸaäiã§ÃFõÖÿÅ®1bItŽç8Ž¥7dÚ-hS®1ñnÖ/@ã°ì‚ùùouÛVË)Í°vßòr ‘O¯ñ ëß Žöl _™—¬(Ñkê¡êJ)S3þé±þP6¼I ½ãËþÂ,óë$» Ÿ[´8nÎ;fûUF#2ˆ óφ €¯?GwmÅšA&…Û­Jãnç5‚°ÜÞ¢­f¤+çE|_sK3ànèKÈ)ÿ{_gÊÉ4)Õ76ÌRiÀ+,ÇØ‹ÇR8`2‘V øü¦ª!
+{¸Ât!`UÞ+Vž2ý9ƒ¶˜Ð—q}³À_Å,¾ßñÛ@*SHŒóÏÊfî\6³ÏÍf(>†AW©çIL&X•1¸ðe¹)ç,üp˜¡ü…„Žó‹a Cq­(ó
+¬&îÐzÇ!ÄbÀAZ+Å[õ©íª%¡Ûz¥'ìM¼e”âÆ |‡ô¸¸®îøt
+$>ô
+$Òa°ôëd¯çKÔ†ysÆ¢87 ÎþBøgáQ4=²¬Ð/&ÔïÁ³o°s»­âÛ6#+<—5<5;MÉx€Ð_¶ü‚PñÔÖèԸų‡Ô1çÝvÃGfû¦åƒ6ùwL¥Ì9>ÊÑ`,cì%âbê¸{nÇxÃTQòO“¼0ÍЅ࿘5¬<)q+M¡iÊþá‹gѯèšrð¾`ë` É}û&ÁwËýØJ±Ù-ìWÓ§ŸÊ=~š÷ܧ]ƒ¹áí¬Ç‚B{Ô1æ0Ê<ï.Jƾ©
+>0õlˆŽoʬíí9´L_±Æ šüçõŒÊ ’Ä–žâ™yµ(©ûk‡o∩;ðÍX(Bh\=TxÙ³ù+Wf5*V7¼w„/h¦Çi#~ØÓˆ ëTMBª@Àrìê2ua¸ˆ¨ä8‰Uü¯wCn’Bì`¤àêHQt;d‚¶Æð6ÖƒÅÒ—:ïÒS”hmU;0-JátžF‚*p­Ö3PœrGµ«æh´`ÞMšC€ˆšðš²á–ሗ»š #$l7^> gx´®ZÕ:¨…Ýسڠ ã|GVD>€A
+yŠø“þ>~ã@³ßPG& ÂS¿ B}Ûü8Û¥n²Ýíæ.vDMÕî·m -+—ƾ«=Ùåü*ÚŠüK•Ã%ܤ¡J=ºWú|í8âör@]˜
+œîk;[Våîiu ~žn½âÞ5ö<×ñS•)„É‹“4Ì;m`ò„£/“·CÛPÖ¿ý4
+ì7"ù×jùÿµ³ø’€AçÐÙákÉÑ$zÚ³Ù\äR«¡¶¬ûŸê£¦í?ã¢xjendstream
+endobj
+824 0 obj <<
+/Type /Page
+/Contents 825 0 R
+/Resources 823 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+/Annots [ 829 0 R 833 0 R 837 0 R ]
+>> endobj
+829 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [325.7152 381.7113 332.6891 390.1242]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Mitt-etal04) >>
+>> endobj
+833 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [329.9215 369.7562 336.8954 378.1691]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Reck97) >>
+>> endobj
+837 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [214.3702 135.2696 221.344 143.6825]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Carl99) >>
+>> endobj
+826 0 obj <<
+/D [824 0 R /XYZ 430.0002 722.2289 null]
+>> endobj
+470 0 obj <<
+/D [824 0 R /XYZ 283.5063 684.1323 null]
+>> endobj
+827 0 obj <<
+/D [824 0 R /XYZ 323.6751 615.3004 null]
+>> endobj
+471 0 obj <<
+/D [824 0 R /XYZ 290.4102 593.3826 null]
+>> endobj
+828 0 obj <<
+/D [824 0 R /XYZ 430.0002 615.3004 null]
+>> endobj
+472 0 obj <<
+/D [824 0 R /XYZ 392.0031 593.3826 null]
+>> endobj
+14 0 obj <<
+/D [824 0 R /XYZ 144 353.7587 null]
+>> endobj
+18 0 obj <<
+/D [824 0 R /XYZ 144 277.2176 null]
+>> endobj
+22 0 obj <<
+/D [824 0 R /XYZ 144 197.5215 null]
+>> endobj
+823 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F37 328 0 R /F7 803 0 R /F23 307 0 R /F11 832 0 R /F39 351 0 R /F41 374 0 R /F40 356 0 R /F49 836 0 R /F43 455 0 R /F45 799 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+843 0 obj <<
+/Length 3186
+/Filter /FlateDecode
+>>
+stream
+xÚÕZ[ÛÆ~ß_!ä%TaÑsåE¸u²Eã iáE^¡%JËDU’òî"èï¹ÌP¤vöâ$-Pðr‡3gÎœ9—ï;\9ðOΤ13g]Zh“Í–» 1ÛÀøß.¤¿À ‹ñŒ¿^]¼¼4jV¤E¦²ÙÕz*ãjõ.Qó…B$ÿ˜«<)—øÿ/sk“rSÍZëä5LHšÝ®Ü¯æ2éæﯾyy™DjgRU : @3.¾¾Ô²J§ÊÙìqݵ+xÖ¦RèGN¨M*”Ñà ÇÚÈ\¥™væ¤M³B“NWó\'åÐK§2‰üó|aŒI¾¾-w‡Ñx³æS×û¹*’¾Â÷{˜Pn;ž±l«’ÇW8 ’h³;^V²y”kTˆTÁ<ûû4i‘KÞW7
+?ž~ÒÂϦìyï¥6ÝÏoÌç´Õgé¹Åé’¥HµÔ
+ô¯‹wïÅlæüæB¤®p³x†÷Eng» ©³& l/Þ^üóÜä#iìTbâTðìÜ°©RyN'¹œYrÜ/ûºÙ¿DgR¦Æ:)ÓÂZI³ÞTw7s°bÓ®ðF¬N¾ªÖåq‹6€SçÒ)é–m}èkrÅ}ì¸\»q±ãš"Wþ¼Êrr^ˆw,ŽÏ«cçÍœ³d–N‚—³|׳®7ǶºÏgih‡‘ºpÉß÷è@ÞÕàF÷å–iÙý«–>Îm–”mí=9å-&ª-Â&ÞÈ*¦Ú«®üø{õ¤ä ¶ðcHX¸6¸%|4 ¹r‰ë?ânË®ç§ñÙCòÔª|ª={{¬†Ðdó”$ý,pË`;–[Ó#+çCVSôÀØ"¼ˆÚRÉB¢˜:¬A¶ä¾ÜE Ö±!¿Ã9 ôìÅëa¾@SP: J ÞÞàO•ô×üW`°/”K–dG\ÑD¦S# çÜÍa>¯òWælEµ;ô£d5N\+ :ôª&ÊçXãäY‡‘Ó/t®,ö×ÕC0µÏeíÙ|áŒðÙáÿØR-¿xØzøÖ;3’¯«©‘øî0çBÛ<¾¯¶ER£Ïóc[­+¸ô%mÜñØG|_F &î[
+ÖG¬!ÒB ù?nzéW s_"Xyl| •‡Ëíáú×áÅ¿Ÿ¼‚yÔîB Áä-IcÚæE¯ý´˜ªnûç'Ï-j(E.uòmÝq­É‚êÃ:<]¢?Cíô…Û}¨ô°]ãžP <à=6ûOKªÛs•§•¢óC•? ƒWèÒM°…LnooQßz“9¨^¹_º~TŒÐBD”2©ÎEµ‰Ø>ÜUîqgù¶–ìÍzq¹%äîÆ_‚79b«ö¥…EžfB¹©½×OØ}"v
+ Æjsõ95ܤÐüÀ;ÎyÆRc
+[ÛÆŽ©-øÙ0áÍ‹-¥¸XDk•Z[SÖO›Èzÿk<U™L¸çêC·0àXö‹æ™,µ.3ÏÕÊãíf`Ñ ÖQJÈ€
+Ù!ƒžÙõ~ˆdIòxˆNéد®1h'
+Çù ?Î4mƒÝ¬k¥NÒnðw‘Ly< #/[6íIk†· ÕžœD|ÿÔ P’Ž ¿“ñú
+[6´œž&‚
+lˆ<¡‘~Œš‚c¥€™Ô¨Â=lòHÛJ#äuçL5
+lð»¦ü­û`Pù æ” ÇÌGs ®"?%^xö¼+Kí÷²ô 2ÈÁÏë †$„
+‚Ž>±
+ UøåÄŒŒ>UNüåØQ/Áx ‚jl˜§U+¬ÓNñ‡òØÅe©’gØ—y®4§h•vø`}¡ð”Á_`º?iCa½¬©·±½6)ÜdöÌÀáìøÅ „,L”É—¬þ= ¦@M( yÝ"*`‘4Brcà î P œºW_ò¦S¼ì=ÂãÈñg¡ P
+ƶŽ},‡•ÙsP¨™9ùé¸Ó×Å ØPVÅÀ†¢?:©øá^\ÖžÊðwÏV,÷ZqÁ€8‚˜˜¹Uš‰Oèc¤ «èŸX4w¥vÄhühí¬fc© oª}Õú Puk.¿:i±Õä»Ã”|›áo˜à±aN«V¨“ocl§¡t¢Î °ºíãß 3üÖ-cá?üMä$9üS^:Íendstream
+endobj
+842 0 obj <<
+/Type /Page
+/Contents 843 0 R
+/Resources 841 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+/Annots [ 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R ]
+>> endobj
+844 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [502.9075 412.2076 517.6301 424.1627]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+845 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [179.5335 390.7879 186.5073 399.6989]
+/Subtype /Link
+/A << /S /GoTo /D (table.1) >>
+>> endobj
+846 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [310.3815 342.9672 317.3554 351.3801]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Lamp94) >>
+>> endobj
+847 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [501.8005 293.2094 524.2718 304.0576]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.5) >>
+>> endobj
+848 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [459.3718 203.096 481.8432 213.9442]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.2) >>
+>> endobj
+779 0 obj <<
+/D [842 0 R /XYZ 144 734.0242 null]
+>> endobj
+26 0 obj <<
+/D [842 0 R /XYZ 144 477.9195 null]
+>> endobj
+30 0 obj <<
+/D [842 0 R /XYZ 144 268.3097 null]
+>> endobj
+34 0 obj <<
+/D [842 0 R /XYZ 144 153.7325 null]
+>> endobj
+841 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F23 307 0 R /F40 356 0 R /F43 455 0 R /F49 836 0 R /F45 799 0 R /F37 328 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+851 0 obj <<
+/Length 4023
+/Filter /FlateDecode
+>>
+stream
+xÚ½[[ã¶~Ÿ_1èËÚéZo¢X´E´›&š»o›¢µå5k"k2Yýï=’¢lzf’N Œ%Š:也ïP+.Kø'.…Ö—ÖØÂ)]]®o.ÊË+ÿòBøç+œ°Jg|þæâÓWõ¥+\%«Ë7Û9‰7›· ½|÷æëO_i™L’NÆ) ‰3Þ\·~ŽNç”…¶uíç¼¾[ŠÅûïJ¡¯²ô`®t~î¿–²^4küûÃÒ˜EsEô/þþ&2b¤*¤5ÕÃÜ*ëxÖ
+¦;Qªd¢tQJ­²2‘F¶*A0ÂðM\/kµhÞ[»v¹RJ/䟘5©’w•+ŒUµ=ÏH‰ëÂÕ"ˆòp‡22@´oF¤ªëåJ,šÝƺý5ÃÊóµ{Ôx(Že$Œ.4ˆÙŠ²PBIdíÇ‹·ïÊË á닲°Î^ÞÃ5<wµ¹¼¹PÆÀTõ#»‹×ÿN$å)®R’§Tæ…Ý”eád%X!w‘µ/úb¡ÙóÍrUÕÚ-¾éã
+Gû-Œ®^í`úüEs Cc×ïá¹2ˆ¢üiö±Ø¾ ÂqþÙTÎZ²ùÌe£]-½p¤vb.9'œ”& G™Ë¤Sé™t€Y4*µ è4SUiíÜ0=ž™ÒTT©„Ÿº}ŒÖûåJºEëÅæC†¸®” LžN l‰B*Œ‚VMí~í¾ß‚^´Z¼Ë팧Öæ÷Üÿ=AL‚ß•¦„m&hÅr¥ÍýÔO}/¡zºÃ•¨Áƒ¬3¿]œ`û«µ7pr—}‘“mm!R[õe[©B¡#L²]/Ñ?Q¼h¸q€½£gž¡PŽ^*qjxY.<×#FCÏõï#^o­oq‘“‹¬ƒßƒÞëiƘJ7“õf.«tÛ9Ik %Åsˆéœs뺶úˆB‘Ò‚PŒN„ÒžsCUê‚»
+Ú–Ü¡”õiŠ¡Ë)F8'!Å`™‰Ãß%˜Hq•’ä 3ã_Ô©œVÆ-û2ìaø°ä '&óÆ,zäVÙ`"˜à#ʬ~2íC^¦Š•!êr»\Ùz1Yù9([ Ìúù)>¢
+?HmÁ¿[4¶5c' Xª;àoµÀ²9%Ò” ?Þöˆ×¼1<ghnhÂدlálFqh&øúŽ]´|s7£Ü{¢Ý¢¾~h7hBB
+ûÍL4¯
+]¹ê®ƒ‰§dŽ9¯•ýÈŒ«$ ŸsÎ0§-®Š ððẌܼ"-Ô+e}d§O°0>4µØ%ƒß«;²fpß9]
+ eå¯ÓÚ9|ÔŒ» í—¨~µØu? qøÕÏàZF‘=¶üßZò«]WœÚ9ßtA
+a£Æ°}¥°%Eܶã
+¿¾¯1
+[ø(@éüÁ,¾]’$‡ûŽ­ÂoˆìP‘) í| rlÒVL²•êü7IU.M¼ š”§GNâAcô´ó”î‚ŽX(Æ Åx5Ò6ŽÔÈ•—ÿ–Í ®ZÁgÆ8gr ©÷hWÊ‹AÍòs?µ}:ŸgÍLÀtXÕ‹–¯Û°úü;:&µ 5ÃMêM ‘_©ßCëY} %¿z`Ç.žË$XS,^’áI"8p¬Ì@f<Ú¥syÈ,Ÿ2íö©p Õù3³§Âå”Æp9NK”
+E¥=ì
+z×»']’%ÁEÚ»tæɼÓ:;
+[}>ŸáF×sì‰rUŸ3LâYOÝFYÌi>Gä:«¢*e¸Åÿë6CnÿŠFe0endstream
+endobj
+850 0 obj <<
+/Type /Page
+/Contents 851 0 R
+/Resources 849 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 745 0 R
+/Annots [ 855 0 R 856 0 R 857 0 R 858 0 R ]
+>> endobj
+855 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [200.5657 279.5529 207.5396 290.4011]
+/Subtype /Link
+/A << /S /GoTo /D (table.2) >>
+>> endobj
+856 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [283.2113 156.6893 305.6826 168.6444]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.4) >>
+>> endobj
+857 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.8655 84.9582 196.8394 96.9134]
+/Subtype /Link
+/A << /S /GoTo /D (table.3.1) >>
+>> endobj
+858 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [180.1423 73.0031 202.6136 84.9582]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.4) >>
+>> endobj
+780 0 obj <<
+/D [850 0 R /XYZ 144 734.0242 null]
+>> endobj
+38 0 obj <<
+/D [850 0 R /XYZ 144 544.3406 null]
+>> endobj
+42 0 obj <<
+/D [850 0 R /XYZ 144 473.1438 null]
+>> endobj
+46 0 obj <<
+/D [850 0 R /XYZ 144 267.1474 null]
+>> endobj
+849 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F23 307 0 R /F35 854 0 R /F32 319 0 R /F43 455 0 R /F45 799 0 R /F11 832 0 R /F39 351 0 R /F41 374 0 R /F40 356 0 R /F49 836 0 R /F37 328 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+862 0 obj <<
+/Length 2308
+/Filter /FlateDecode
+>>
+stream
+xÚíY[Û¸~Ÿ_á—¢2°bx§´E¢‹N›Å¢Ø¢ô! ²-{ŒØ–cÉ™ýï{.¤$ß&›MZ `DQ‡‡‡ß¹ð#­&þÔDY; .ˆÒX?™oïädý½Sñ{ŽùXâÏw¯î­ž”¢ôÚO–§:o2=Í•”2ûqª‹¬šãÿwSç²jUOscLödÍv[íS•µÓ·ß¿º/F*M°B—Ö€ ¨Ð¡ÄÝ_z³œ6Bç_¶Ý„’¥r/•4פJÒ‹TR¯4ʼ¿{óVN ûýô–…›<Á‹ª,õd{Wxè,‹Ô±¹ûçÝ?z…r’[%‚Öá¶*'AUl¦§ª`)¢ð¥šò¤*C¿t•
+] 2Bz[N|
+þ©sÏk„—ÒMøÌ{£¾úã×ù#÷Iøªœ —þ˜%œæb® \‰¶ª Œq4à~½:Bî(£mf¿æÖÚìouê©ð9¶»Ç˜ø?IemÇ/†§©Y3|Z[Ø,ùKÅ9ÕŽëÖ G­c½¸.ÎÃ
+k”wRxµ*
+8¾ƒ¥F –k4ÃûMS!x…žE4 ?#Õº¶N„tEqm
+fÕ.Fò%Þðç|¬ƒ‘0c$|!Jéý0Å’2¬'õÓZM˜€¸÷–£Ja ¯âro G"Ä!ljj”sˆJøšððYÛu·Þ’ë[î†È‚H™Ï‡öè)ˬ¦ÜCà ™¯«ÍÐ|æOõŽ[G"°ˆ?îG«8Ïqo9vC¼9ôBÕ‘é‡à|d9
+Z1¨ØÔÜ5ÚθcWÇ@î ï~΢¡€Æ°“qܽ Ö9?4-*³!Û=o9!r[˜Q„ž¸S.ý—@1
+¨5úÂL€¿+ÇGvsé
+ÈT(o\ìЄ‚Ò,½n$€”:ØBï Î #•vÂkíÇ{ÈÉå0^Þ‰BiŽÑ¿7\äð'¨ìÛT9çÝ‹­3xMS‹z?¬—ÜÝ¥ƒ¤Q£i”,„Ô&ýÄ3¯ú}{Ýpa¿4M
+endobj
+861 0 obj <<
+/Type /Page
+/Contents 862 0 R
+/Resources 860 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 868 0 R 869 0 R ]
+>> endobj
+868 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [214.0131 386.0127 220.987 398.6055]
+/Subtype /Link
+/A << /S /GoTo /D (figure.4) >>
+>> endobj
+869 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [365.202 386.0127 371.6639 398.6055]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.3) >>
+>> endobj
+863 0 obj <<
+/D [861 0 R /XYZ 144 734.0242 null]
+>> endobj
+864 0 obj <<
+/D [861 0 R /XYZ 343.6004 693.4971 null]
+>> endobj
+473 0 obj <<
+/D [861 0 R /XYZ 144 673.5718 null]
+>> endobj
+865 0 obj <<
+/D [861 0 R /XYZ 144 638.7026 null]
+>> endobj
+866 0 obj <<
+/D [861 0 R /XYZ 343.6004 598.1754 null]
+>> endobj
+867 0 obj <<
+/D [861 0 R /XYZ 246.0218 570.8778 null]
+>> endobj
+50 0 obj <<
+/D [861 0 R /XYZ 144 535.4108 null]
+>> endobj
+870 0 obj <<
+/D [861 0 R /XYZ 159.2431 132.2743 null]
+>> endobj
+860 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F40 356 0 R /F49 836 0 R /F43 455 0 R /F37 328 0 R /F7 803 0 R /F25 322 0 R /F31 337 0 R /F28 873 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+877 0 obj <<
+/Length 2247
+/Filter /FlateDecode
+>>
+stream
+xÚµYëoãÆÿ~…à
+7Ü'ÉöKч›>€¨Q4¸PJ¢$æ(RÉs\Ãÿ{籤H‰²¤Åáìåììî<~;3;–‹þÉ…4fÛX¤Ú¸Åúð.Zì€þÇwÒχÈŽ9~{ÿî›»d‘ŠÔ)·¸ßN·¸ß|ÜòãýŸ¿¹3jĤR#lªaOä¸ßçžÇŒy"aâ$ñ<ÿè–2X}I³›ÝxUêyÿ¾TI­ñ秥µA¶£ýßýá~PÄ*-TlÝËÚ\×*›èRgeDä$묄ËP~H4LGËl"Œ„!K]yŽñÆVÄ*±ž¡,pËìÐöƒnµ µ
+ÖÙ±¥Éºj€èàw0YH˪ͥö$od…‹•žS\‚Ê¢{f1à4O‡ã=Ø*zl—ˆ4rî|jñ½Ô¦,š¶éV$6ŠLŠëxüÎ\Ê(,îu¿¹j ½¼•¸d*)¤Ñv
+ ›Cªèñ
+¦PJH©ÕÔ8­õm5À‚62z¤Å@üÇc>s @a7+="l&@XÖ™ø—ä‚ñ3¹ N…v±>Õk±©×Ý!¯Ú5Äçæ);µÅºÌŸÉTÑÔDÈ î†Àù 懲Þnòc»ÿº¬[||Ÿn‹ÝóµE <pc[$”N†þ Ð ±3$y¦]Þÿa¿ ñÙ§<k˼mÙ¸h\Oã©oG>üR>½'~(zR%õõΗU ®x¿„ÅwEU4{øpÀùGMî2"t«‚UÃß«|[Ÿò[6÷¢þfͲ>})ŸŸá`icØé¡h×{Š:ÖßJK¶9NüÁa‘ça½ðùF
+¨kð yùM?&"±6þ¿¹q•ïŠê©Gæ«xÒ/Ÿ:#Ü[A¯×[ÀtwÊ›[þa¦6[•—<g«ÂÊNG_ÏmÂ*Ó&Ïïç {ɺËä§y^y™©ŸîqcÆ€'‰×ŽÁËŒÈù
+‹ªÃk@©'Ûf Ök“ÚH$qÏ–%P×B^±ð(ü€o[L_ø‘mÛþmqb‘Fò)ö
+¥_è«õÝž!ATv¡1}uIãª7ê3}¦—hÙ!qža2“°|@
+ï1
+³Ñ¢¡Ÿ6©+`b
+¡i‚ë+-ÚÍÓé­Œ|”7\öJ#Rü»ÊØp¡IG†ñ¶ÆãNø¡¹^[±ù‚'Èúé\_Τê|;eíáô±éõCäb{/gú€º†¥@ Ò9Gê+>ò×@e&¸
+¦wT˜¯2¿ü3ý¹i\AÍO9˜n!¬b6ºpuçObEƒUž’3ÆÇmÎH½, Œ.Rr.ùë8å¿CMJƒÿVèÑendstream
+endobj
+876 0 obj <<
+/Type /Page
+/Contents 877 0 R
+/Resources 875 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 878 0 R ]
+>> endobj
+878 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.4337 73.0031 181.4076 84.9582]
+/Subtype /Link
+/A << /S /GoTo /D (figure.5) >>
+>> endobj
+54 0 obj <<
+/D [876 0 R /XYZ 144 734.0242 null]
+>> endobj
+58 0 obj <<
+/D [876 0 R /XYZ 144 185.8166 null]
+>> endobj
+875 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F40 356 0 R /F49 836 0 R /F43 455 0 R /F37 328 0 R /F41 374 0 R /F23 307 0 R /F45 799 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+881 0 obj <<
+/Length 3320
+/Filter /FlateDecode
+>>
+stream
+xÚÍ[Ýã¶߿¸—Ú@¬ˆßd€¢h‹^ѤÀµè"/I€j×Ú]ádkky³¹ýß;Ã!)Ê–åÛž‚{X‰Ãápæ7¿¡|lQÂ?¶`R.Œ2…R/î·7åâÚÿ|ÃBÿ¬ó¸½ùú½ä W8Íõâöa,ãvóÃR¬Ö¬,Ëå‡ç[šn׳ZK)—ßÕŸ^WÜ,»=tlúÕZ¹¬vø‚ÏbùýÊŠeÕ¾@K B–ýê§Ûo¿~o³Õ„‘wR€z¸–Á7ºM+.
+n”žß–0ŽF­a¸c¥˜Ù¼EÉ¥H›gnÁXá”â~÷ÎÊ0¶0eYp+™W‹¤¹Ì4ç¦àÚð³…rÚùq?–Bï€s]XaH“%ÕÿuóÃOåb:~{SÂYµx…Xäm|½W‹öæ7ö‘$®s‘t’¹‚q˜¶äUä¨â‚+†°zÁ]a­å±þÒªÂjØàÕôOçõOÃŽõg'&–e*ðaäYA³í ¬`ॱe¬dÍòÅ’ÖI»µ_±– ÛE‚p…6¥;³BKeÂvUùØvwBU /§{7%L`%ŒîÌŽ',~¬o”¸ÎEz}ùÈÿËÂÁ‡…Qßßë'”.„‚)WÓ/Iœ×‡)ÅÜý¤ä¸D "‘´ò-î- ˜rìÞQâ:y¢ã¢ÔÃÂI¿cPâ…VN†‰Â2IÑÊ'P |3ꋨÞf,Ek
+£Á>úŒ;‹J‚D)Ë®§’8¯ÿ°ð‘þ§‘©  íô3°D ªYL«|¡ uR͇˜WMB4’`d8§3!„ÖGÌëûúÝ©<D³`!…’g}PpUH<ìëa”xá ÓÂ_æƒ7¨íõ/蟾äƒ>©0%…>˜T›÷AˆfŒ˜Ôo¸VÉfÅÖ3Ëè„e6ŽQ•À ‰Y0ÌñáÏ e
+)¤ ûÃSd­{"³àò
+šºêÐO,æ’»ó‹Mçl°pW~Íœ‰œÉÙqÔ…œ}-ý²œ=§ß³gõröÛõ»˜³çôrö‰~s9Ûxj+®QIh¨r¤pW,$2‰3uD D*ìùL1ƒ–¿’öC1§ý°ìXû™"" ¼V ñyXùÙEº3Î)"d!¬D#Ãx£Xö/w€½; H
+Ë_<ÍëR.ò< ¥Qó€t5ý@šÕ/Ò¼~ >”“…’F\r‘ç)zk!¯QD(+
+eßV;]("r‘ç‹¥]!%“3Î^®!®¦þPC̪?,|¤þù"¼³W,!04wrº„ºà%C‡vò$
+ X ZÖØ2_ShS@øÙë‚p1Í1{¨Â¨À8ß7¡P§ûy.ïÿZÿ¼â–kWx7O×÷RòÛQóæ¯øŸ¨õ£Ÿ‚·þvÙí7_ÿ¼Rz|Áï‡=WÍ~¹­PÂ'êº[5X]z?)¬xèèoõŒßÚO±õ+zè‚õ:\{P} 5›ÚÇšàr&¥=º®¨«}ÛÔû|8ñÌ˾^¤­ÔAkT¶Ñ‡åº¬ „óÊ,¶ÛÌëIñ‡_!€Q@-kÔùÏùˆGÆÒ»pDH’!·ÒöÔð ·ÍZ;<|ŽþˆÏÏ•?Ý~ï5îµd£ÑɼG™~Ú¡›´Y…ß‚¨ÛAlwaÙîùРyvUKó¿KGâÍ÷ýÊJ4%7}¶Ã&,dRäˆÌ@etžbü¥¯a·a—§‘ƒ7 JÆ›‚ûn‹kmÓÁ¾¦ÞQCëÏvÓ =É Fª°ü¬°6á:~ຯž½ÙN?„ (à ,6 ®ìݲ.~0áXóäû»}BKÉréT‡µ¡fÜ›Çû;j¿ïv}4¬÷g.aâuúu$‘Z:R=¤Xî^²•0ˆir˜a¥–•Òî¥êPAh¬%ËÛ5!5 ¯)ÀgRâ@&|yãw¸5D øƒKŸz„€r¨d< N¢¯/ϧÇaÐHB4þµ9< ÒáÁ1Â×Pÿe†Ú¼Î¨,"â6¸ ΢Éq~0š¼ Qè€ôî…{o¬ÑXR,ßchx,Š‡ùKµ}n£õ¾
+6*yÁ4ÒèÜMb¢¿’l½“³å7S %9Š7R€N@9Щ'L ê^ç2ˆzä‡Â´…SÑzXêó£C Ãù!^þD#¹ß­0^ÆÐ~8•ÞµP <òè>!(èð[Pϲ¡64ÖDŸzœÈÈÌâ½y U{4˜÷&Ÿ>_ZŒ£—F6Í}u@w7†Î ] ½„ŽpëÙtÙ ðgY%ôm¯MÛf½Ý6ˆHù—1 }Ú›CO”Ųûýо¯FD%“ž;ê¯PÜ¡Þ“pre9<4l¢Hœ]½àÎuSa~KÓÂÊÍÞã³"x‹‚åá°k€B:ÓþГD90F9ß“~æ@#Ðbx\к UQqzÙ?f½o<@7QŠ}“î©q¨ç›"ò;™b
+Þ¾' 5ää}xÓ/¡åà:Øí·†^&4_VÞû®ïƒô|´%‚2r
+ûHhMÔu„áꤞŽßÂZ{’Œš{
+5ц^h7y±«=ªF½Xr¾C2”µÂ!þ ©y`óPÙ:©lú=”ïËÏÞËšÎ{þ(MAÜú¥ O­`ÿ«4£B‘߯œ eÞ‰CÂ:œAÕUÒç­ÿõZÄn©®Œú'_„¾öôê‘T*îs
+þp€¾¼ô®
+Æ":û霈4ÊËQ/ba‚/x£ÓzS…‡(á¹öbá!ñCA!o(/”ÂðT.@“,¬õ¤&sµpŸ7Á‚¸+„e3µ ‚9mžæ$˜~Ý_oÁ¨å6ô„¾*íL%ÈŒ®XšŒøÏV‚¼ŽEL‚X'ØÓj-ºëËdÅKŸ¨pm*H‹)ÖøªaÂœ¥kÁ”˜(KS=ˆ_1 ;ºñø Vpb Ž¡¨v(ªà9â4ŽÜá›Ö¸"‘Ò!sϺêO4>]éàK:|ÙûéÛ£[š ¨Q±úh*@™§Á»XScoöQѨVØ«Â ÂyìËî$iB 'Ä[Ë ætQjºRüË \ÆDd B´ÃRÉ?ÚºÚçNò³‡Òħîÿ‰Ä™CõîMÖÓ;±HxØ¡ø´ÁCK„R^ˆXœÊò<s¥îÈ5=½ìðÞçдA,Ué4Ž”RB:RZŽš~Þ¿‚ìý¯ƒê1ÚòH®¦Ùä>œå“áKâ¼Á‹g?ÉÃh6U(kàöä*Ø ‡HWåè×ÃB„b¹ùÇsÇ:HS”²Œ÷ [ ÏÐ!o}\!Å~$œª(E¡¡ðWºáO‘’Y©M³€¶ ›9ÐÂyÄ÷»NœÏ ªmé>#ãcÅÜzY\ú59¹£_“B Tmu±¼ÀÉUî꨽'gõ>€…»üH—ÃE]Ej,Ï(K,ŒÀI´År;‘4³0G0é'QdžDáe%þõêá4ToH+Ø@Ⱥ½¯ùLÏVíë|A¢°÷D°½Vb¤ò¾?L•V'n (º„Z -uGäÄNì Æ<{•<¤7Yxù ñê Ÿs¹Ã!Кþ>}tÛŒYŸ3(A.$Ÿh ÏÙý}è ¤i ÏnöÁ@l¼Ø§·þÐí=âÁ³‡5äMl›=eK|Ø’bft£)¼]ÐþºÄ7}l ÝAÑÐœþÅÐ3þÎ2uU§ ]r6•…Òå¨ÿüöhhendstream
+endobj
+880 0 obj <<
+/Type /Page
+/Contents 881 0 R
+/Resources 879 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 889 0 R ]
+>> endobj
+889 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.5875 260.8819 178.5614 271.7301]
+/Subtype /Link
+/A << /S /GoTo /D (table.3) >>
+>> endobj
+882 0 obj <<
+/D [880 0 R /XYZ 144 757.9346 null]
+>> endobj
+474 0 obj <<
+/D [880 0 R /XYZ 468.1334 566.6519 null]
+>> endobj
+62 0 obj <<
+/D [880 0 R /XYZ 144 301.6319 null]
+>> endobj
+66 0 obj <<
+/D [880 0 R /XYZ 144 150.2482 null]
+>> endobj
+879 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F19 310 0 R /F4 885 0 R /F2 888 0 R /F40 356 0 R /F43 455 0 R /F41 374 0 R /F23 307 0 R /F39 351 0 R /F50 892 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+895 0 obj <<
+/Length 2259
+/Filter /FlateDecode
+>>
+stream
+xÚÍYkoÛFýî_!ôK( œpÞœÅb6MŠ´A»MÜ],¡%ZbM‹ªDÅëþúÞǦ$Jé"‹"0`‘3wîÜǹg”“ þäD3ñÖ‹ ›Ìî.²ÉÚ¿»±?Et(ñÍåų—ù$ˆà”›\Þ쫸œ¿KòéÕå÷Ï^5RÁ4èD‰ËeeÌP&Æçy”y»›Êäú}&ÍbTȪeÿ9UyRÌðÿíÔÚ¤Xþ‹—½#Vi¡¼uç½Õ>°T
+âAfúLL´™2útL¤\&‡§¹NŠkð¨.§©Ö&Ñ›¦Æ˜ä‡òá~ª|Òl s¾åÎûª]â“JæåM±«¡«]ÅjŽ:ù8µ.)jŒ¨”ÉV°Â÷™Í~lÚ’ôÛäô¯00í¦êEYU¹šÕÍ–Z¢ÎŠ„éñÃ;þ½z»Vh_5+Z
+íDa½ )‚µ’Ü$¡ª­Šú„<1ºZ´ËrÃRí²ˆ“Î;Á”ØÕí”ÆÈD€Wò0¥ÒZa¬ôr¡mŽ™øíâÝU6™Cξ¿È„~rÏ™Ð!·“» mÐ^©®¥¾x{ñó ±Æt ’’k²avFAj](ɘ Âà’¯§Z&ÏÁìÐlxSÉw/àQiÏM˜ÿàÿ±ï§7ßR4¥qÂù 'F¨<XÒ÷í‹—S©«üåõ4x€ gV(éòI:þÈúäë׿€þˆ·]È&iB« 
+z^¬[„gƒP1Ö'3l€7â°R¯sŸÁx)åD '­¡Ñ†Å†ÓàƒLMb톡J áQÚ/˜ÌF¾ùû±:/¼é¹ë›fšBÉ5uY¬F”i+²Ìû(üce©‚@º
+³’¡)Du9?pxŸÛjµ¨Ëš¾’c
+þ.ËÚsSÝbDwåçÜgóŠÌ½Ð¹<¬±G¨`Ìñÿ‡èá¢8žyÜ.ÌK†HÅÌNk’L²5'úóâU—«줎õ(/ 3î\¤`'hmp¡ŠN펈ÏÜ—lõ}5ÇÔׇ¹¥P:r!­ìÖ·ÕÈr Ùñ÷rÙwÌ[\¾ƒÌÿRg¸»Ž‚ü¤Æfù—œ”5ñ,ñð-îš×`2™l¿L“Ýu#œ*\þá<@…«Œ:E¹¿"ùm[/ãAò#2é7¬‡„Â+Ú,n3°æJZžW‹±d_gÑͶý´,š]DÿF–ÔM±X”ózhö¨R–ÃìV‹%SĈÔónjXè葺Ä3¿A¼ëÉëó³ïɾٳàÄ6²joîp%€]¨9‘Ô’–‹5úÎ,Ûª—í¿céGU=üçZé·™ÛsÞDg\€?¢måö‹KkÉù…Â0 ~`ø_o÷èyP†xèýüã¶dÙé[–ád£·,Ò‘§#N*ªu<Àæ¸m6D8Òò±~y¸fӽà imSÆA;¼¥Iùh!-ŠívxÒ° „Јòx°â1¬ªêW,ËW ›*^þà%É«h-Ë|@ˆúH÷¦ì¬iv›÷?Å–@爛±º/˜Yo ò8à
+,¼5íËbo`îšmûxÃ×q×þí ¶Tqx¿”sq„LŠVBÁæ|,¯ÙD øfm>Æœ¬à¶$Âgp¸ˆ-‡ø!„h#r8Á÷QvÒƒoµx4–*F†áe€2PÁg’·70¨T"ÑxIÓ'­ä…ÐtŒjVO°Ù$MßÀï j_Õü‡¶czÿÜÍ¿mwªåÀ霰Ϊ\‰³¢§ÚªáÛ¯‚PÎt›.@÷ˆÚL„,t"€ÙØrDœ$¤ëOë‚O6:Ã{‡‹AdÈ$¾Š!ŸêŠWP@ºË3B:Åa>¯¨Ÿ2+‹Œ“:Ã,ˆ!ŒùäCô»sšî!ÝÞt(ÆR«Ø¹"ö|à7 T°¸ä—Ý?òþÃ%Õ`P»\Z$B‹<ô·ÖŸ™ÁéüS!#3×]$ØYËípz/…ËdƒêfdRxR¾ÛµŸ@Øe”üŸÀ” ëŸreYð½î±õ¨_çý‰¢iG&J5ÞXðq˜·£c-,†Å|À5‡.©¾S¼/“|õeOÕ÷^yÿÔcÅHÍ°3Ò$ZFØ“gTòÓ ÷©„Ÿð
+øwÏn¢¥²½-Û§ÜBÖó§h?
+ñþ°b»ÝÝFI*•pš†8q
+'oyûZá½Mu‹NÒW›
+4ä*˜^påÏb‚¸ûuÅç>90ÿ ŠsÈŠvùþýÀt¥MÇ+šýw&q'ÓàŽ-q
+*€yŒ6*»—Ù€¡`ŒR(ú3¶Ü{+àäêÆW{Øxï”ëí?·íí
+endobj
+894 0 obj <<
+/Type /Page
+/Contents 895 0 R
+/Resources 893 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 897 0 R 902 0 R ]
+>> endobj
+897 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [261.8442 649.7971 268.3061 668.7261]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.4) >>
+>> endobj
+902 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [481.4367 74.3683 500.8364 85.8652]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.2) >>
+>> endobj
+896 0 obj <<
+/D [894 0 R /XYZ 144 757.9346 null]
+>> endobj
+781 0 obj <<
+/D [894 0 R /XYZ 144 734.0242 null]
+>> endobj
+898 0 obj <<
+/D [894 0 R /XYZ 159.2431 135.0707 null]
+>> endobj
+893 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F40 356 0 R /F7 803 0 R /F11 832 0 R /F23 307 0 R /F25 322 0 R /F24 334 0 R /F31 337 0 R /F51 901 0 R /F28 873 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+906 0 obj <<
+/Length 2553
+/Filter /FlateDecode
+>>
+stream
+xÚÍYmã¶þ¾¿Â¸/‘5O|—Ò¦@’ÛKó‚&émR{TkËkue˱äÛÛþúÎ I‰¶å½+.  ¬%r8œyøpfHñI
+|•šXmY.•™Ì×éäÚ¿¹à¾†³Xâ«ë‹ç/•˜ä,7ÂL®—‡:®7‰œÎxš¦ÉÛ)OºªÙ´ŸOgJ©äûòña*lÒì cÑNgRª¤Øà >Ëä×i&“¢ÞCK J’vúæú»ç/³h6i¹’`Ε£ÄÅÕuo±’ «ÍÓnI›;©ˆç<•O8/K…’½ó±5‚çÌJ
+€‡ª[á“H^ÓKè+öu×:LŠÍ!8л/ýÐשNçÍf*²¤ƒgÎŽÑà€ 2ö¥Lr)Ћß.nÞ¤“øûÝEÊln'ð ýy¦'ë ‘søÈÐR_¼ºø9%¨œÅ:-Ò˜9 +´˜\ÃB䊰ùiš›äË©äÉ×àÈ÷è/¼‰ä›+x”š®þùløñïØ÷†&µÌ&°ô™Wôâê唋Üéúå‡inw¶œey
+æE¿‚¨M¾üá˜ó
+A{…h‘øÌ–¦Bƒ;Ì0埼
+~ï€rBêdŽœÛ§œ)ÎE ¸:\)0¹ã½Û‡5þ’óHÌ&Ë|Þùó©:ˬʬïÿʱ²©Ëb3¢Lj:6ÿåTÙLh…h"p)¬i–ŸÝ¸ô&g2Í` X—†a× `€–æÖ&¯¼ÄÓÊ;Oó° ïžØÙ³þi¯*¨µ;7O±¦@0Ž@n|žAd–@¿ã\ «4vQn!ižn4¤Lnܺ»jFÖxªÂ6sRüì‚ç¸à¡Ú5&ø(öîÆœ°¤yö¤óªqì{×ÇMª­Æ 0L PýR¦¹Ê>ƒì—ÿÁ j»x&›Ýºè`
+™ÿf 6âRìÊM ÙŒ•'庇 Í{ôEÍ£ˆÙV½l}”/\"qÙ³gw;vÛý-èÙÖ}ê8íïmO-:Èõ“Åþò\ÅþÒ\%:kSûaÎò÷9+~gùÿälXU ï›EéÒ=FPcÉ22býññ©.7waÓè–q‘š§ÈhA$ÙˆÝõ×}VÅZlu=çyž¦?Y–´ÌD¨{,` ÞP6Kžn»OÁ\{hnHúG&ÃaN'êc,¶ÿ/‹±„Ã*óßû`40[ê,KÒOÒÞMYìÚ{âAšé?ÞÈÑBT€©ÍíÇŸ_•tÓóGþx²ÓUg @M„‚_øçŽü«rW.›]y‰¥v‹¿=¾d®Ä*6îåžêvŸÂ¡Å‘¾v]Hè×ÞùÑ Åéuã´4¶£ÓÞæ®uó-«¡”KóUE¢÷ ÷ Ö Ô…#©,Üãe„_Ýݳ§É˃hÿvª Äòª¿Û™¥û ž\ÒÙ1©–´C~æÞ„^¤õ®cmà-­Ý ÏPýOªØ[Ñ<Õ[Š¬û~Ìþvæ w .ïm‡ÚÃëÁÃO8?ìiИ®wÅۧݠnÎNU.¥…Sì
+Eé¥?ž”öÎË€þ³Xn‹Ä(në24Ç3¿ú"ÅÒK®?°‚Ô[Û“+
+«3ãõ i ÞÍK—4‰~è(Ê VUë^*—›¨}u®šû—?R"»>aÎñ&~Óƒ®/ÎØp/ì†Ò|¸}±ìßòCùÓõQ ¤«õº(¸ÑêG¼EÀôëU~I7EŽG×€ÅZ0ºså]©Œ·»Òíë¡ÚÀ•Ž·3¼ƒBGwqV‡6šYèÈ-xò¼4›ÚÛ/4}
+^8¥@ŽÕ´Ê ×^¸Ÿp¬Gdv…‡Q(wö.à óÒi X‹Ðxååpo´{t»j=Zÿ÷6 ¨öméâkÑÇÝS6þ ¦<ÎÚ_;Î{NAˆŠŽ8…M.EâM9Ì¿‹tõ•u·jˆ‘Iaû¹ûñãuíd
+êÆ4ܯ,+
+L#L…3ïˤ('+ã·²2bˆ øâ¼3aƒ}C"‘a ‰¸ÜünêUÈ$"}(N2É“¿ú{ÀÞ
+endobj
+905 0 obj <<
+/Type /Page
+/Contents 906 0 R
+/Resources 904 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 908 0 R 909 0 R 910 0 R 911 0 R ]
+>> endobj
+908 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [296.8866 590.0213 303.3485 603.969]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.5) >>
+>> endobj
+909 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [294.3406 556.1276 300.8025 575.0566]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.6) >>
+>> endobj
+910 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [297.9383 522.2546 304.4002 541.1836]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.7) >>
+>> endobj
+911 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [298.7685 505.3181 305.2304 524.2471]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.8) >>
+>> endobj
+907 0 obj <<
+/D [905 0 R /XYZ 144 757.9346 null]
+>> endobj
+859 0 obj <<
+/D [905 0 R /XYZ 259.3053 727.6482 null]
+>> endobj
+904 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F40 356 0 R /F7 803 0 R /F11 832 0 R /F45 799 0 R /F23 307 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+917 0 obj <<
+/Length 3716
+/Filter /FlateDecode
+>>
+stream
+xÚíkoÇñ»~á/9æeŸ·»i ì¢A´•ú
+&·AârqSEÓ‡¹qÞG˜óýTf—? i®G×X"쟧Êgåÿ¾Z›•×´þÙ‹‹ö$Vé\9[<|\íCÍ
+6×Öƒ€÷<<ÆCGò£x7C˜PØÉ,ÎýXÁJƒ:×Þ
+úÌn݇%NHf‘ν×vâ¤È•WŠÈù“°¢„?r:Ó ”ÀéLf3Pi[—ØÜá€Éæôr»[ÖläÇlšI`­TAzkiý—Ëk´Û
+–Ñ&+¾šÎŒ1ÙËtß±w^ÞîàÖι‹–«ð!·N1Î<)ó`­e»Î…WìóÂiûÙ
+| ì~ÀæƃI3n€”¶Vå¢xšXÔ›Ý~(·×Õ±PÁ2ZhsJ÷5ˆ² “>NŸæk þÏ™jˆRm
+ÒÊe =ÇZ©m‘2È)ÿY±ž Xº¹…yD±Œ0 àäÞ[±V¤XV
+g!ÓnÊݘL•€ƒ¦õæQ«Yj5I-Ì›áX'¼ ÕpK‚ôœ'ÜMùØ8' ¶ªlâñ~?%8¸N@ÁIÈŒŽÇ¶Oˆö.h™5¦Ö<$9¼ºè›E7«è6•Åé&ë\æ8Œ­„½»<¶ý¹|8µ¸áw}‰ì¶\ù6»{9 ²^+6Þ:;¯vl¼AG 7úŒ¥ÿtºÍN L bü¶Šo ÿêïˆ Ûe‰\^UMbZå€k“x2csA‚Q%7ƒªc9"êÖ¶^%Öuìïl. yìäk06”fv!‡" E³"ŸozÊý*œ–Ù¼€+/Y)Wéì_Ä™I¿pòd¹¿
+;èFdð¹oöXiY¼îG²°e@¢!ö¶¸‘¤)Wèìµoª´}ÍO²ˆ·Œ)ñs¹ M(I…W„)p€‘zq AÇf‘O{ŤˆvcwüBÂÊ¡›šIíP¯Ðs⟚;ÄAaíƾiÍ’‹ÇƒÞþñÈn¶Çs*Oh
+‚ëa±hCLD¼c¾Qd…nBèÕAyÚŸ¤ŠÖ‘“Õm¹- Ñmòg7ËUuà ‘6fâY/,zõV¤hdà88<0–£ ‰¿ J§ã¸ìÊn84GAB§ÜI=’ {Æ¥GæhÚqòMIn8:qª7ƒÙ«}´¦ ñÜÖk® 7D"EF0L´Úo¹—HS#oöëMDa¹I3Zó76^ãñÿ>•`(¿ùáo/
+œCúœ=Ve×°&‡½ð— ¹—Š/ˆ¾ÝÓ 6£KÖ:¾”«;Œ»Jª°Rn`ÀjA˜°Ø¯bŸ²G|!Ë ±¤JÝüÊeEÎEoØ}É•DJ0“ ‡—[äƒÙÕ~žbmܬé6¦p6†²Td.R®Zn#ö·”­¬–¼tL™1‘d Ïa§Í•Ñc°”ñ7_2`…×aô×5xÙfõ©¯
+ÍóþÌ@ßcŒ,|DQt[‘ŸÜŒðÐóDíÝ*gU 7XÒå`PU|t)ªè
+‡oT¶çýÖˆ!Œ¡Þçd@ÖUª
+àPŒf`_ÒÛ·8/î…É ¾qbC.„1jÓº€i]OßÙ9DÍòLmD™`¸Bê±BJY;Ñv;Ä䤕hvdWñÒ–Œ$Û6
+° J‚M7 °%¾üøòüœ¯[‚´Á` `°NfÑ2)ö‚oŠ-Äpñ E òÁ¯oÙš²ÉÀWúõèýº÷¹Ão9Æ¿—0±1ú©{û›ÃÅûTÇ—endstream
+endobj
+916 0 obj <<
+/Type /Page
+/Contents 917 0 R
+/Resources 915 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 874 0 R
+/Annots [ 919 0 R 920 0 R 921 0 R 922 0 R 923 0 R 924 0 R 925 0 R 926 0 R 927 0 R 933 0 R ]
+>> endobj
+919 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [212.5486 486.2846 219.5225 497.1328]
+/Subtype /Link
+/A << /S /GoTo /D (figure.6) >>
+>> endobj
+920 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [308.6529 382.2235 315.1148 394.2628]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.9) >>
+>> endobj
+921 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [261.6115 322.4476 268.5853 333.2958]
+/Subtype /Link
+/A << /S /GoTo /D (table.3) >>
+>> endobj
+922 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [193.3151 297.9838 213.0191 309.939]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.1) >>
+>> endobj
+923 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [216.0079 297.9838 229.5682 309.939]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.7.6) >>
+>> endobj
+924 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [193.0742 286.0286 212.7781 297.9838]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.1) >>
+>> endobj
+925 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [215.7669 286.0286 230.7663 297.9838]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.24) >>
+>> endobj
+926 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [483.1091 274.6269 489.571 286.6663]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.10) >>
+>> endobj
+927 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [430.38 238.208 437.3539 250.1631]
+/Subtype /Link
+/A << /S /GoTo /D (table.4) >>
+>> endobj
+933 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [408.8938 90.6356 415.1205 97.7644]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Mitt-etal04) >>
+>> endobj
+918 0 obj <<
+/D [916 0 R /XYZ 144 757.9346 null]
+>> endobj
+476 0 obj <<
+/D [916 0 R /XYZ 144 739.0056 null]
+>> endobj
+475 0 obj <<
+/D [916 0 R /XYZ 144 712.4242 null]
+>> endobj
+478 0 obj <<
+/D [916 0 R /XYZ 144 673.5699 null]
+>> endobj
+479 0 obj <<
+/D [916 0 R /XYZ 353.2982 660.8366 null]
+>> endobj
+480 0 obj <<
+/D [916 0 R /XYZ 144 623.5763 null]
+>> endobj
+481 0 obj <<
+/D [916 0 R /XYZ 353.2982 609.8467 null]
+>> endobj
+482 0 obj <<
+/D [916 0 R /XYZ 144 578.564 null]
+>> endobj
+483 0 obj <<
+/D [916 0 R /XYZ 353.2982 564.8344 null]
+>> endobj
+477 0 obj <<
+/D [916 0 R /XYZ 144 538.0349 null]
+>> endobj
+70 0 obj <<
+/D [916 0 R /XYZ 144 437.4746 null]
+>> endobj
+74 0 obj <<
+/D [916 0 R /XYZ 144 201.9066 null]
+>> endobj
+928 0 obj <<
+/D [916 0 R /XYZ 159.2431 144.4737 null]
+>> endobj
+932 0 obj <<
+/D [916 0 R /XYZ 159.2431 110.5609 null]
+>> endobj
+915 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F43 455 0 R /F24 334 0 R /F19 310 0 R /F32 319 0 R /F7 803 0 R /F41 374 0 R /F40 356 0 R /F50 892 0 R /F25 322 0 R /F28 873 0 R /F26 931 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+936 0 obj <<
+/Length 2352
+/Filter /FlateDecode
+>>
+stream
+xÚí[oã¸Çßó)üVsy¿˜—¶‹b‚Åt€u'vDZ³¶¼Ùùö=‡ÔÕ’™Žm9;+a1±.)s~ü“¢Èe#
+ÿ±“rd”!NH=š=ÝÐÑ#ÿñ†eç'˜`RMñ·Û›>H>rÄi®G·õ<nï?%b<a”Òäçç1KÒåf½ûëx"¥Lþ1ÿú2æ&ÙláÄýn<B&Ó5îà¶Hþ5¶"™®öpd™$»ñçÛŸ~ø`+¥ íˆ`ÜÁíaYŒa’›¿ß·¬¸ Ü(.a\H5äŽQÑ–ŠKb$·Fm­jKÿ$Üø ~½ùô™Žî!ÑO7”—¼À%Ì9>zºaRëT~`uóñ柕œ&ÌÀ³iv<«p…¬²ÍpE#«p'ÎZ‹¹1¸kæï:ÿ-Ê,ùCp‡ÔÙ"ßí|ôPIÝ–cf«p†¶G‘á„
+[†‚û„²E(U}Ë© F+>2Œ…q….þ‚@ŠjJHgd›uú>$âµDš0ÅLžª% 7Íòl¶OïžîßíŸ[r’ŒXÉóœ›Qé3Ùùχ! ñJ¸¢jT}úF°E XsÓY‘1AK§Õh’]{nØæ'Öˆvؘ"Z[¸ßq?ƒ[&µD9i½5ÿCªˆ ¨6Û4ìÍ°–˜æõ ü†íøFY3ª} by9ˆùŸbˆ[‚Õi܉Â:då ‹«0,j /Ó£ ÛS–ΩµŒÆÑŸ˜apZ%L‹û¥ªùT×
+Ö„ø.ƒXY€8 ›³±B‚ß»LÛ À`wÀSÈݳ83¥Š °Ö†(ÊÙðnÕ¡
+l X^KK”庀w–+°L>‚Ì.|> f€/ìµ\¨oÌðÁߢ¾Q€ õ½*ÀuõÝÍ:Tßž\ªo`Sõ?tk5uM~ﱡœ1l 0<AˆÚíXk²±ä¸3ì|3>P|¾WLÑaΉ´Î^[‡ïºíÇ©:|è~I«¯Ôœ;äA*
+ŽçÃVúFt&ÂVe·TàÝK)p ÝR¯‰®¨¡Ûiÿ·§èVøÐýJÔüψ“ Ê tðµ¸ÉDX2•÷‚%“Ø vÉE(Æ\VFî¬@>[„«¦<.ÂÊ"Qo Âv†cÔ n¸_ÉÖTpPñÿäÇ“5øûG—X¸møóceë||›yýJå·Pâ«ò[WâNûÂ=å·Tâ†ûkhTbE¹jð»¨ò[Œ&Eø-¥—;­փôž/½SF¤W@#7®)½»‡Î‚cÔé=t¿d5ÿJ‚ƒÿ4¢¥2»ËÑà1·É¶|G$ø»Gø&Á1ŽK ¾&Ç¢Æq§ážr\‘àÇÕ&´p”HêL“ãÿV8öãI%ÇùWcߎɱ´ ÿFŠAŽÏ–ãª)˱´Ð’—¿wÚŽR/ä¸áþÆèjµI OÒ9WŽ¿„ÿXrå¸ã«r\—ãN{Ä=帔ã&ǵÑa %h.›¯ò¡aü6 Õ÷›‡†¥€†€F—. ÅÁ’ì)–Т–Ô\[Š»®>}?¥øÐýª>2løxãТæŒ?‹<´ÁÓcAƒîÇ×+!Ü9ŽXãä8Ær)Ç×dYÔXî´wÜS–+reYXE”â-,¯su!Ç‚ÕaŽi±pÐ
+
+qœàBˆ?Ÿ)Äô_˜aÖÃù½âª)#¬ %3¨¯)ÁiÚùxq,ú!Á‡î¯¹ƒ9A¤Ò
+-f*ìn·}ÞH õCpݯt›àr 5•å,‡Ý‰‚;€{)Áq[
+î5¹­ n·=Ý~r[Ü·¦Mpܦ§ .W ï¸×ðžê2¯š«=.»\sx¦®-»]þÆ©²Ûp{?—KØ0å€Ñþ4Õè½ì[æ(¼…ö^^Qƒ·ÓÎnOá-µ·áþöÎî!¼¿(½À'§t˜Ép1é 5¯H/Þ€qâ ¤·Óoõéû)½‡îo—^†Õråt—µ7bïß´7Fo©½×¤·®½ö{{JoE{£ôÚÛ ÷÷Wé­ûcÂ…
+YM8XŽÉ0fñaùˆ«VoçaêƒÍV¼þÆ[Ì·aŠÄ\Þz³Æ9ÙL§r‰ì°ïß ùµ¹àøô~ž­‹}7žà²Ù¸vöïåÚؾ$üªs}ì©t.y¨•3Û<áÅw>õ4[+7Ë!õees6^ð"Ÿÿ6„×ßlA»E㊮Æ ËfóMñŠßÆJ'Óåjz·Êïï](yçw²ŒÐ$Û“Þô-Ÿ£âÊÏLSB©hmLN2(&ÜKUmt¥©ïÂÊ Â…-afe"5™Äq%FE2|ºõ+Df¬ Ï™îÑ£Ÿvû;ÿ9.“ûmn‘Ï-ü3
+X0À¢V•-n—¢¿BŽ+Ÿå{\;}þ0ÅØ[¥™ÉŸ| `±Ë5¦ Ïù©gØßê\²ñù=õøÎû—Ö=»ðK³C¾NEzŸÝr}Ÿ?\8¾1®'ò¥ùÀ{\ÍW>7Å ¯XÌgøD_Þ§xcûy[e+$‘–ËãuäDh¿@;ˆ8³XŸ†8^ËP°Hm²Üá¯Kva²áË:;œý¢³ðq÷È0¦c”Œ'Z»*ÛxÜ…ôy6Y®é";½›>ÍóCá©ÁáÃLÃÅ/¹MÒÅfñ×ÎÓt¹~ i<—óºcBeóË ­|)ÁŽ¹9áÈ_pMš¤üe½í~¤¬Jþík¢=ÎípYű;!ŒçÙEEÕ€9-²£¿ä!ä}ÙpªI5Éîd“¯ší®ñ ¾†)X_ø’gé®Rö¼-.w‹rýï¿ÖJDÓöï‹ÿ@Mÿt¾Yñendstream
+endobj
+935 0 obj <<
+/Type /Page
+/Contents 936 0 R
+/Resources 934 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+/Annots [ 956 0 R 957 0 R 958 0 R ]
+>> endobj
+956 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [271.356 159.0076 278.3298 172.0587]
+/Subtype /Link
+/A << /S /GoTo /D (table.4) >>
+>> endobj
+957 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [254.8097 97.4669 266.7649 108.3151]
+/Subtype /Link
+/A << /S /GoTo /D (figure.10) >>
+>> endobj
+958 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [306.3963 97.4669 313.3702 108.3151]
+/Subtype /Link
+/A << /S /GoTo /D (figure.9) >>
+>> endobj
+937 0 obj <<
+/D [935 0 R /XYZ 144 757.9346 null]
+>> endobj
+485 0 obj <<
+/D [935 0 R /XYZ 144 734.0242 null]
+>> endobj
+486 0 obj <<
+/D [935 0 R /XYZ 351.6378 721.2909 null]
+>> endobj
+487 0 obj <<
+/D [935 0 R /XYZ 144 690.0082 null]
+>> endobj
+488 0 obj <<
+/D [935 0 R /XYZ 351.6378 676.2786 null]
+>> endobj
+489 0 obj <<
+/D [935 0 R /XYZ 144 644.996 null]
+>> endobj
+490 0 obj <<
+/D [935 0 R /XYZ 351.6378 631.2664 null]
+>> endobj
+491 0 obj <<
+/D [935 0 R /XYZ 144 599.9837 null]
+>> endobj
+492 0 obj <<
+/D [935 0 R /XYZ 351.6378 586.2541 null]
+>> endobj
+552 0 obj <<
+/D [935 0 R /XYZ 144 554.9714 null]
+>> endobj
+553 0 obj <<
+/D [935 0 R /XYZ 351.6378 541.2418 null]
+>> endobj
+554 0 obj <<
+/D [935 0 R /XYZ 144 509.9591 null]
+>> endobj
+555 0 obj <<
+/D [935 0 R /XYZ 351.6378 496.2295 null]
+>> endobj
+556 0 obj <<
+/D [935 0 R /XYZ 144 464.9468 null]
+>> endobj
+557 0 obj <<
+/D [935 0 R /XYZ 351.6378 451.2172 null]
+>> endobj
+558 0 obj <<
+/D [935 0 R /XYZ 144 419.9346 null]
+>> endobj
+559 0 obj <<
+/D [935 0 R /XYZ 351.6378 406.205 null]
+>> endobj
+560 0 obj <<
+/D [935 0 R /XYZ 144 374.9223 null]
+>> endobj
+561 0 obj <<
+/D [935 0 R /XYZ 351.6378 361.1927 null]
+>> endobj
+562 0 obj <<
+/D [935 0 R /XYZ 144 329.91 null]
+>> endobj
+563 0 obj <<
+/D [935 0 R /XYZ 351.6378 316.1804 null]
+>> endobj
+564 0 obj <<
+/D [935 0 R /XYZ 144 284.8977 null]
+>> endobj
+565 0 obj <<
+/D [935 0 R /XYZ 351.6378 271.1681 null]
+>> endobj
+566 0 obj <<
+/D [935 0 R /XYZ 144 239.8854 null]
+>> endobj
+567 0 obj <<
+/D [935 0 R /XYZ 351.6378 226.1558 null]
+>> endobj
+484 0 obj <<
+/D [935 0 R /XYZ 144 194.8732 null]
+>> endobj
+934 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F43 455 0 R /F23 307 0 R /F45 799 0 R /F47 940 0 R /F40 356 0 R /F53 943 0 R /F54 946 0 R /F41 374 0 R /F44 416 0 R /F50 892 0 R /F55 949 0 R /F56 952 0 R /F57 955 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+962 0 obj <<
+/Length 3885
+/Filter /FlateDecode
+>>
+stream
+xÚí[[oãÆ~÷¯ÐÛJ€Åpîd‚¢HÐM‘ H›®
+$LK”Ä®$Ú$eïö×÷\fHJ¢h;qÛ< ¬83gÎÌœïÜæb1‰áŸ˜­'θ(UÚN»«x²†ú?_ ß>G‚yŸâ››«/¾M&i”Zi'7«c7ËŸ¦BÎ~¹ùþ‹oµìQÉTG&UÀIn6¹§Ñ}š8Ò.I<͇ÃLLï~Ž…^òZ™zÚ¿Íd2ÍøÿÇ™1ÓlMü¯Þß´+1REÒ;¾\åR¦šy*b5"¥£Xj5(©âHJ›Lœ0‘…uÓªg‰šfw°¬m>›+¥§úËÙ\k=}ÿ)ÛÝ÷êWå~&ÓiÃ¥¬¦¦*°ç¡ñ$õ‹õlM¶è§Ü׋ËMl”:•°de¤ŒtYa4Í&=•°
+ã`Îq¤„’¸²‡«Ÿ~‰'KÁ÷WqäR7y‚ohO3Ù])8ÄV†šíÕ‡«{‚
+,ç}ž$-÷uÈ·jâb”è
+ÄIÔϳ¿‰êëEsȶ C#
+õ’d,h±–‰:—ŒNéE#u*ŽEC5EÓgzn]A26AýlbÉϱ‰70Uø 7t½€7 ,iåíGô(t”&B{‚jw}·n×õb€™‚S˜ycìÏQ™(±Öy‚Šp™£áââ7]°`ÂBYýÜ$Õé$÷§øhk#ctB‘uÎãCÚÉøˆ4•€($8%*NàiYÎû< ž£Uhg£D§æŸ!ÍU ö¨œèE”#;$ÿ9‚¤Ž¤µéK‘¬W×»å5ùƒ!$E¤•s#HZ0qu„d†Nõ‘œ*²Ýfw[FPv¥Ô´.þ…0ç\ñÜàS×jÉ WRoϱN¢DÄrR‰œ”æ%X[ü¸ˆ´g8ïsBÚDq ý­àʬA(S
+FO–îùd\L£SÅQ&ð„ݱ4©þ?V£Xµòz«N®§XÝy¬œœþ@×ð±: -¥ìPg¾xà{( _‚€3-kº9l3º2™6Ñln¤™þx(\Ä
+!9Õ&ÛûÉa©ÂAñƒ'v‡…óq‹=Š¾f‡@FÜ*ûP_³ECý@¶ ›²•ãI$Ët2—©MÛ =àUù¬"õ·Ÿ|‡Wø»7júɧ G;
+¤µbÊ÷ë&ˆª¥p]XK_vêæõ›8¶JÈ•³{ÿ2Ê7øô” @ŠÆÐÀáYbHÅwVGlƒWûÚVÉ|ÿ ê©Âœ!ð-ÌÃãM¶Q#ïðú#ªç!±ƒøtØaˆûÃÞ²^׋ûw3Î'…!lý+·3çE'¨ÍÞ%:YQ¹ çOPO€¤"“¢1=‚^Èh8b`jB{Ï0d²ÆÓŸ£”’mœÉ`¬ÊB:2ˆ©LðZ2v—1íS\Æ´¥zÓñ[LφÄôhØ`¶ìêí‘3íµÍ@Iz=ßÛ¬ĹÅ`ø…­Ìš¿J´½~Geì,}å³ ¨#G‹Dˆ˜§  ´ lòŸø-Â…ázûnÒ†ö(ûš-·ðŽº©«°ÃL—œ×õ è&Œv#û‰>ÅèêyÐGGì@?vôþ°·»¬bGM°Ã®wĈõ±R@‘Ub{w0€Y³^û±Ý­~³M^¸â¦ºðî „½¶^A ¢³F?ÙVûº ß>ãfó]MÉÏ„}VÀöÒŸv`éŽw9XИ>.qÃ!þ¦õa5·õ‡ü>Z©††’ï1L”èþhÓ½ÌC¿Ó˜iôùÃTÎÉ%É1æä¼
+žåidâ½éÈN¬ÝÌ÷ÅÒI~;Ì`8ù?Úó[<øJSz:Ý^ì¶[~¿[KCZ„Ë8pÁIÿ¤yÓÏë)“å­N}\b昷¯»ðÏ´  Ä;ÚydáeôIjF£n/44¹JãëÁCQ4]¡`ʼnK‡O¿edÒøeWRFà;½KÉK ü\ÒÛŸš‰Xœ÷øÊPÂŒl$”qÝ£î“3G ™»
+¬oB à¿OLÊn»ä˱µ¿ êâ Þßw·sÈ$ŒÎi;—JFdð&j›ñ"Ã-V{ÇT†üŒŽ××Oµ€”›@LȤ¥ÆÚ ¯¤‹b£ÍPkû§~G/þ ¨Y×endstream
+endobj
+961 0 obj <<
+/Type /Page
+/Contents 962 0 R
+/Resources 960 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+/Annots [ 964 0 R 965 0 R 966 0 R 967 0 R 968 0 R 969 0 R 970 0 R 971 0 R 972 0 R 973 0 R 974 0 R 977 0 R 978 0 R 979 0 R 982 0 R ]
+>> endobj
+964 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [431.5832 711.1102 438.0451 725.0579]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.11) >>
+>> endobj
+965 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 678.6888 189.1734 692.6365]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.8) >>
+>> endobj
+966 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 666.7336 186.6828 680.6813]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.10) >>
+>> endobj
+967 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 654.7784 186.406 668.7261]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.12) >>
+>> endobj
+968 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 642.8233 189.1734 656.771]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.14) >>
+>> endobj
+969 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 630.8681 188.62 644.8158]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.15) >>
+>> endobj
+970 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 618.9129 189.1734 632.8606]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.16) >>
+>> endobj
+971 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 606.9578 189.1734 620.9055]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.21) >>
+>> endobj
+972 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 595.0026 188.8967 608.9503]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.22) >>
+>> endobj
+973 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 583.0474 190.8339 596.9951]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.23) >>
+>> endobj
+974 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [168.916 571.0923 188.8967 585.04]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.8.24) >>
+>> endobj
+977 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [219.9376 232.7041 230.3707 244.7434]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.12) >>
+>> endobj
+978 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [193.3151 212.7788 200.289 223.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.9) >>
+>> endobj
+979 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.7843 212.7788 235.7395 223.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.72) >>
+>> endobj
+982 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [166.7304 101.9007 177.1913 111.8633]
+/Subtype /Link
+/A << /S /GoTo /D (figure.91) >>
+>> endobj
+963 0 obj <<
+/D [961 0 R /XYZ 144 757.9346 null]
+>> endobj
+782 0 obj <<
+/D [961 0 R /XYZ 144 734.0242 null]
+>> endobj
+975 0 obj <<
+/D [961 0 R /XYZ 144 557.6206 null]
+>> endobj
+976 0 obj <<
+/D [961 0 R /XYZ 351.6378 553.9438 null]
+>> endobj
+568 0 obj <<
+/D [961 0 R /XYZ 495.6378 553.9438 null]
+>> endobj
+980 0 obj <<
+/D [961 0 R /XYZ 159.2431 142.7874 null]
+>> endobj
+981 0 obj <<
+/D [961 0 R /XYZ 159.2431 123.8185 null]
+>> endobj
+960 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F40 356 0 R /F23 307 0 R /F41 374 0 R /F24 334 0 R /F43 455 0 R /F25 322 0 R /F58 985 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+988 0 obj <<
+/Length 1136
+/Filter /FlateDecode
+>>
+stream
+xÚí˜Ûnã6†ïýº¤€ˆË3¥‹š¢[`‹`Þ¤¹Pd%&j˶ÙíÛw†¤'VœE7-PÀp¨áœ4Ÿž0øá W*±ÚÒB*“TëKîaþçÏ3tÈ=~œÏÞ]*‘´0Â$ó»§1æ‹k"ÓŒ3ÆÈoÛ”“Þmšî»4SJ‘_ë¿>§Â’M ]šI©HÙ cI~OsIÊÕ
+8îÅ%ºÌ~šGÖBRaµ9}/i‹à•YC•æjÊKXj¤Í! ŒJÃ9úìf×7,Y€ï‡Ì¹N>ƒÁ(/
+‘¬g˜h¬fŸfWc0–dŠæVÈ—£„e ¢Äa\ð4W’Æ5ß)Ceqé·\0ã–Ç|£i®¹ F@‰ÐÂ2Ž
+H§2Æ$Fk*ä•üƒiVÂ/¥ 5ù´Ü`´=šŠT%Z[¬&ÐçªK÷6p.ÄY«ÓZùzE«Ç¼>×ê6jeùˆ¢àànp}U¨R9te4/& "üadÓõ87¬ÊÖ¿ë=M3-4¹Š‹P&Jû±`Q…Äפ¢ ½_·ZÕ÷.LÇÀ>nÝõ?¤Ð¹ùXz¿h*›àÜÔ»¡CÿüËÄ®]ÜÕÕ>fÙ;hZÒúrÜWc&÷¹ ÛÖ=¤ºÀë0³\•Ml±Êu¨øE}ëâS¨}"|ôªwC7ý³åW>±þXpÕ%¦eð·¬ÂLÈ­ FHXn¡ÇN~YÔë0·\”“Ç­ÛÖ‡_§—!ôèLMÊÅNùÚ®l㙿GÉ
+æ½–e‡V‹›â ì ‹Æñ¾®Dù/BCØ‹Œ!ÂR˜<”ú"d±r½_¹…ÜlÆ<>¥Jf ä9”|&åÆ~ÓKw(Â"©8‹Á–†ëóëP¼7G _AmµŒM’®É¹¤L qFÐ"t¢Œ=ÝÖF?%%UÌÈ·DRðÙ"·ò¬ÕW"è´Vy}®Õ¿ Ø^àPn°­Zrhßks=²(¶\è³94:hPn\L´Ø/ðœå¤‹°‚¶å¯*û±ÛƒÃ#„:¬ ßl]iØc ܶþÞÀ#ÃH\±ž‘«ö=6ü¹ <‰/AäMS…“ Ýi(i1B©B ›© ƒ¾ Âq
+µ]n=t@ ­…'z-ýƒ&
+ˆ:Þ ¯:TO&Ðg ³#IëÃI/nÅúò6”Ár8|“QLÚÓÌ᧘ãƒ*y5/
+endobj
+987 0 obj <<
+/Type /Page
+/Contents 988 0 R
+/Resources 986 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+>> endobj
+989 0 obj <<
+/D [987 0 R /XYZ 144 757.9346 null]
+>> endobj
+990 0 obj <<
+/D [987 0 R /XYZ 144 681.4832 null]
+>> endobj
+991 0 obj <<
+/D [987 0 R /XYZ 351.6378 677.8065 null]
+>> endobj
+569 0 obj <<
+/D [987 0 R /XYZ 495.6378 677.8065 null]
+>> endobj
+992 0 obj <<
+/D [987 0 R /XYZ 144 459.6484 null]
+>> endobj
+993 0 obj <<
+/D [987 0 R /XYZ 351.6378 455.9717 null]
+>> endobj
+570 0 obj <<
+/D [987 0 R /XYZ 495.6378 455.9717 null]
+>> endobj
+994 0 obj <<
+/D [987 0 R /XYZ 144 237.8136 null]
+>> endobj
+995 0 obj <<
+/D [987 0 R /XYZ 351.6378 234.1369 null]
+>> endobj
+571 0 obj <<
+/D [987 0 R /XYZ 495.6378 234.1369 null]
+>> endobj
+986 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+998 0 obj <<
+/Length 1494
+/Filter /FlateDecode
+>>
+stream
+xÚíšYoÛFÇßõ)ôHæfï£EP @S$iø-ÉE32I–x¸ùøÙ¡K”ì ª ´B
+Ò ¢ ) s†ë øÎ>ãQ£p$J§¶ÖŽ ¼}(Î > “ú"Ô3¹wZ¨mT÷„ºpï½ÿ÷à¥N”8Í=}Fî.Ây¦·æÀÓÁ2/üp/8m ÓÊ>õe§ ,KÚsN;Îw¥žI¸ÓJmú§TO8/yò>”#@y‹@‡%-‚.Vc­¦ÊtÝ,â°.[ÊØðe¤QC‰
+»¤Óü(éT “nMºÃt9)ÛCÏ&M?+À.®·%ØÙ}ع£ø\"êLHzVFp„í|r}ãm\Ê„Þ ¾[6à·­bï#à¹#À3 ×xF
+
+4“Ú\”z&O+µ ëžR ^0øŸÇ °ðÌ9£OcÐþs¸Ø4–ÁåIນú¼—ž€ïq#¤xâ»OXhäâ¬7›Â+æ¼ ­ž‰¼ÓZmãµz¹ßé­Ó“Ý¿ÖÔ)H†”«¨yM¸>ñ!á t±ÕßX¢1q)cÿ·¤8L9!v(·f#4®=
+¹7¶àíe6x«I”3@¹I Q."z/€hÍæÌÇŒ¥™ÖÆïÁL› Ìâ0j¡àVTY³ŸÌ7A²Á6§¶xƒ‰…|p½eMàšã{‘–kMD^`F¡o´h¼Ätœ.1Á
+|¿8¬ͬٹĴî_ºÄ„snBü ps?·e^7_«åkó¿¸sŸùÓ|óðä{.ŽàMA:„Çw sóG-|·÷o`a2fendstream
+endobj
+997 0 obj <<
+/Type /Page
+/Contents 998 0 R
+/Resources 996 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+>> endobj
+999 0 obj <<
+/D [997 0 R /XYZ 144 757.9346 null]
+>> endobj
+1000 0 obj <<
+/D [997 0 R /XYZ 144 730.1341 null]
+>> endobj
+1001 0 obj <<
+/D [997 0 R /XYZ 351.6378 726.4573 null]
+>> endobj
+572 0 obj <<
+/D [997 0 R /XYZ 495.6378 726.4573 null]
+>> endobj
+1002 0 obj <<
+/D [997 0 R /XYZ 144 605.6011 null]
+>> endobj
+1003 0 obj <<
+/D [997 0 R /XYZ 351.6378 601.9243 null]
+>> endobj
+573 0 obj <<
+/D [997 0 R /XYZ 495.6378 601.9243 null]
+>> endobj
+1004 0 obj <<
+/D [997 0 R /XYZ 144 481.0681 null]
+>> endobj
+1005 0 obj <<
+/D [997 0 R /XYZ 351.6378 477.3913 null]
+>> endobj
+574 0 obj <<
+/D [997 0 R /XYZ 495.6378 477.3913 null]
+>> endobj
+1006 0 obj <<
+/D [997 0 R /XYZ 144 337.6061 null]
+>> endobj
+1007 0 obj <<
+/D [997 0 R /XYZ 351.6378 333.9293 null]
+>> endobj
+575 0 obj <<
+/D [997 0 R /XYZ 495.6378 333.9293 null]
+>> endobj
+1008 0 obj <<
+/D [997 0 R /XYZ 144 194.1441 null]
+>> endobj
+1009 0 obj <<
+/D [997 0 R /XYZ 351.6378 190.4673 null]
+>> endobj
+576 0 obj <<
+/D [997 0 R /XYZ 495.6378 190.4673 null]
+>> endobj
+996 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1012 0 obj <<
+/Length 1385
+/Filter /FlateDecode
+>>
+stream
+xÚíš[oÛ6Çßý)ü(ËûeC1`À:´6 öÒõA‘ÕD¨-Ûº¤Ý·ß9$-»‰¢d¨Ûm˜P %©ÃCòüÉó•°%…lɤ\eˆR/‹Í‚.¯¡ýç‹Ï34ÈN-~¼\<{!ùÒ§¹^^¾ÿÜÇåêm"ÒŒQJ“ßv)Kºj[·ß¥™”2ù¥üócÊM²màÁªM3!d’×XÁ²H~O­Hòu-%8IÚôÝå«g/ìÉhB;"w0=‹)4Yüt9LYqA¸Qzz]¸`•qG”vÌŠ¢…±J„f mö‹·ïèr¶¯Ðê¬Z~„
+%Ì9¾Ü,0±²^¼Y¼œÑe&‰5\<ì%t£à%c‡Ï1)ˆ¦LAå =eƒ«,vý’fÌ°/Ã81ÔºaÃpØ"ÄÊPBá”ZƒB”ê¬ñJþAÍჭ Tòæf‹; é°*“"ÇÚwÈ]Õ…Šc†93k5©Õ¯G´:Æõ®VWQ+Ó_Q,¼ï«.”
+T)ïÛ<V{/&V@Eø&۶ö~7þ¬w$ÍWÉë¾BqQÛD*?"îèT`"1IU§Ü%ï·^—×UhŽŽ½ß²í~H!sÑä×ÜÛÝBR©°° Æu¹ïËPôÏ?ŒÚÆQ«ÒûÌ»
+’–d°¿»± Œ'»¦ºM•Ã›Ð²ï«"bßç›°ãW啈¡òðÞ‹®êÛaÓcw&‰”Êúþ¯}dý¼`­7—Þ/³-!¸U¨„ˆµaj’fÉËU¹ mû¾
+…|t¾eÓx÷›Ó‡$ ­’|u‹M~„¦Í›8éïQsŠŠy«›¼Ž“ÃZƒƒb!Lì++÷Ç­jˆ”ø"d„ƒÊè"t…ÆS­/B‹ªóý ¸›íÈϱ’9I¨fp8'Lkç}Q]#‹0†ˆ*f#Ȳ¥aùðìmð)ʼnSëUŠETíò¦ýPíž«]w|`•ÂDÓw÷òžd º+£ÝªpW
+Øu?ú>‘T ,]·! ù*àAÖ´yXvßÄ”âbhuãÔQA„Øýºù±Cù¸Ó`«¨`\ž6zuc9HÖåWaŒQ‹SJŒUf[îLغ¨êUY£ƒçŒBµ­êëu¹®ê²¸)‹Ïßç붼?K§*-&á&-#Òè)¶“ïÜøœ1Ÿ7)5QÔ°G.iR(bÝYïhðvIŒ1n–ê‰p›–êW/UL3ÝfºýÇé†Ç‰+> 7N¿ÜîO‡ÁérÖºIŒ i‰0ŠÍw´o…1Á‘T‹G.i‚rbœfçä˜`–hcf­žÊ±i­Žq½«Õ̱ DzC¨ÆižÐL
+endobj
+1011 0 obj <<
+/Type /Page
+/Contents 1012 0 R
+/Resources 1010 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+>> endobj
+1013 0 obj <<
+/D [1011 0 R /XYZ 144 757.9346 null]
+>> endobj
+1014 0 obj <<
+/D [1011 0 R /XYZ 144 728.3408 null]
+>> endobj
+1015 0 obj <<
+/D [1011 0 R /XYZ 351.6378 724.6641 null]
+>> endobj
+577 0 obj <<
+/D [1011 0 R /XYZ 495.6378 724.6641 null]
+>> endobj
+1016 0 obj <<
+/D [1011 0 R /XYZ 144 595.24 null]
+>> endobj
+1017 0 obj <<
+/D [1011 0 R /XYZ 351.6378 591.5632 null]
+>> endobj
+578 0 obj <<
+/D [1011 0 R /XYZ 495.6378 591.5632 null]
+>> endobj
+1018 0 obj <<
+/D [1011 0 R /XYZ 144 462.1391 null]
+>> endobj
+1019 0 obj <<
+/D [1011 0 R /XYZ 351.6378 458.4623 null]
+>> endobj
+579 0 obj <<
+/D [1011 0 R /XYZ 495.6378 458.4623 null]
+>> endobj
+1020 0 obj <<
+/D [1011 0 R /XYZ 144 329.0382 null]
+>> endobj
+1021 0 obj <<
+/D [1011 0 R /XYZ 351.6378 325.3615 null]
+>> endobj
+580 0 obj <<
+/D [1011 0 R /XYZ 495.6378 325.3615 null]
+>> endobj
+1022 0 obj <<
+/D [1011 0 R /XYZ 144 195.9373 null]
+>> endobj
+1023 0 obj <<
+/D [1011 0 R /XYZ 351.6378 192.2606 null]
+>> endobj
+581 0 obj <<
+/D [1011 0 R /XYZ 495.6378 192.2606 null]
+>> endobj
+1010 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1026 0 obj <<
+/Length 1283
+/Filter /FlateDecode
+>>
+stream
+xÚí™[OëFÇßó)ühKxÏÞ/­P¥J¥êy8íyãð`ŒIV$!±Úß™ÝÍ\t@Hm#$ØÙ½üÇó‹Ë(ü°ŒI™eˆRgõ|D³ ôÿ:bi¼D‡rßãçñèÓ…Íqšël|÷4Äøö*gº¸þt!ùžw’(' (ºŒ§Mò‘û>”Hcmò¹\,¿ùF™œ¾Ü%ß?
+nóªÆß÷…Ry5 ñG¿Œ·'Q\n”>®0.z•Âk…;æÅ ÑÂX¸J„f}V£«kšÝ‚ïçô:«²?Á „9dzùo)³Ñåèë6ÍJI¬áQâ4
+QR3LÏ1)ˆ¦LñÆHå6T™¦¾å€%3,Ý—¡‚H
+oòˆCêg( ‰´ñÓŽKm̦oTÑ
+~±¢ ìåô¡(YÞöhʼ®ÐZöþa ò\u¡RLC-ÑÖ©“VƒZmïë´Úúhuµ²œæ_àj6–¹üníûØŠ²­»*™Áj£±eiþÐõëvWmÓY3O?W"+áÑ×R…¿®ÑÇ¥.ÇÔ€©MJšûEFãÍlÖLöÓ}ƒ}]ÿSQnò/UóèÂRôÉ"‹à·‚Ó„ÕÀ’TçÍ_ño—VõMX«ê}ÚpHLÍ0Ã@œÕº9ÙúÇB9˜ö8ÇÔv»õ|½ZW©ó6lå&\$Úéü‹º<·÷a´‹×W†âi0cˆ”ÊîßìX`Ó‚»|ík´àk|lôM×G8|¸.Hƒü·¸—yœºZû°Êf‘½mTupl[8ƇHÆȼº}D³i»ªõ1~„ÈVä>åŒ1¶„wº¨¯mðRPãæ *GAÄô‹U8W52eA×ã –§Î ÷Ù‘ÀµJÞÄ4!?ûÌ+90@iÁ°E˜Ö.L¼ð„VÛĸøSQæ¿/‹˜ð§‹cW‰ib/ªu„*ÅÓ–UÛÝûå¹ZögÓj1ñ‹ÛfÑŸ3
+vlCÀhF}%àSA…+#N)¢t~1™53¿hêiSߟßU³®9<£ŽXaxZûú bÉP2‡ò£ä¤ÈN☯ &{—*,þÄ„G‹X%äñ*Ìá:¥Ö:SÐàRð÷$¦âš0.ùI«WsX«Ý½>×êDÌ1ÿûÄdNÝŒ&¦übîó¢ƒ
+•ªåð+£ ŸïÉ?˜K“'¥^‰¿a¥v×úL©›R_P….bOjÅ‚\Å:Xm4Žb¯TB@Ž¥ê6cÂ=)U;ä ‡u+j¸ÃÝv‹»T¡~kª6¸ _"2Ž»Ç¸€´È8n0®÷ñMô i¢sN¸Á
+endobj
+1025 0 obj <<
+/Type /Page
+/Contents 1026 0 R
+/Resources 1024 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 959 0 R
+>> endobj
+1027 0 obj <<
+/D [1025 0 R /XYZ 144 757.9346 null]
+>> endobj
+1028 0 obj <<
+/D [1025 0 R /XYZ 144 719.0507 null]
+>> endobj
+1029 0 obj <<
+/D [1025 0 R /XYZ 351.6378 715.3739 null]
+>> endobj
+582 0 obj <<
+/D [1025 0 R /XYZ 495.6378 715.3739 null]
+>> endobj
+1030 0 obj <<
+/D [1025 0 R /XYZ 144 536.4853 null]
+>> endobj
+1031 0 obj <<
+/D [1025 0 R /XYZ 351.6378 532.8085 null]
+>> endobj
+583 0 obj <<
+/D [1025 0 R /XYZ 495.6378 532.8085 null]
+>> endobj
+1032 0 obj <<
+/D [1025 0 R /XYZ 144 365.8751 null]
+>> endobj
+1033 0 obj <<
+/D [1025 0 R /XYZ 351.6378 362.1983 null]
+>> endobj
+584 0 obj <<
+/D [1025 0 R /XYZ 495.6378 362.1983 null]
+>> endobj
+1034 0 obj <<
+/D [1025 0 R /XYZ 144 209.7107 null]
+>> endobj
+1035 0 obj <<
+/D [1025 0 R /XYZ 351.6378 206.0339 null]
+>> endobj
+585 0 obj <<
+/D [1025 0 R /XYZ 495.6378 206.0339 null]
+>> endobj
+1024 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1038 0 obj <<
+/Length 1070
+/Filter /FlateDecode
+>>
+stream
+xÚíY]oÛ6}÷¯Ð#D,¿?6
+,Ã: CQ£/i™±…Ú²-ÉéöïwIªŠk;J†ºÅÐ
+lòòò¼çò¡ ?šP!-5¶\¨¤XMH2ûïÚgÞ!Û÷x5¼¸,±Ø*¦’éÝ—ÓÙ5âiF !è¯MJQ[®«æ—4B ?Ý?ŸR¦Ñº†Y“fœ ”W¾ãÛ½O Gùr ¨Io¦¯_\™½Õ¸²˜Sfa{~-ª½Ëä·i¿eÉ8fZªásqm£WÆ¡!µ<åÅ4V\ˆÁ\Qæ}¶“ë’ÌÀ÷õ¬ÖÈät¦Ö²d5ñÑè:ËÉ»ÉÛŒ$™ÀF³”8
+÷ÏZ -†©R6
+*œd
+è3öœÂ'…_;ÖŽ\=Sø†¹zˆë!W£òÊ÷C*…÷÷Y8$|æÛßñv(—Øc%NÀÍ»)F‰ûnÇ5ÁÌò'^v\Z¬ 3çT8®%†ß<f¤ê™
+7HÕCX©îÿ*pY(ú™ÓLCáLÝZѤÎ7Z×Ä]u®ÔÁ+áAêNàÿÈ/=%vXðì¹ÏDÑûO=…™QzP™4˜QÎGün:ÈÇ–*ûÄSZŽ9úÎ(„ŒXLÖ#WÏÂa®z¿#®F%•ðçxùAÇP6¨„œ|#%<ñöä,TŒÇ5ÏRl¸fHž˜ÁÅ>5Úÿëìþ Õ¥âendstream
+endobj
+1037 0 obj <<
+/Type /Page
+/Contents 1038 0 R
+/Resources 1036 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1039 0 obj <<
+/D [1037 0 R /XYZ 144 757.9346 null]
+>> endobj
+1040 0 obj <<
+/D [1037 0 R /XYZ 144 718.6771 null]
+>> endobj
+1041 0 obj <<
+/D [1037 0 R /XYZ 351.6378 715.0003 null]
+>> endobj
+586 0 obj <<
+/D [1037 0 R /XYZ 495.6378 715.0003 null]
+>> endobj
+1042 0 obj <<
+/D [1037 0 R /XYZ 144 552.301 null]
+>> endobj
+1043 0 obj <<
+/D [1037 0 R /XYZ 351.6378 548.6242 null]
+>> endobj
+587 0 obj <<
+/D [1037 0 R /XYZ 495.6378 548.6242 null]
+>> endobj
+1044 0 obj <<
+/D [1037 0 R /XYZ 144 385.9249 null]
+>> endobj
+1045 0 obj <<
+/D [1037 0 R /XYZ 351.6378 382.2481 null]
+>> endobj
+588 0 obj <<
+/D [1037 0 R /XYZ 495.6378 382.2481 null]
+>> endobj
+1046 0 obj <<
+/D [1037 0 R /XYZ 144 219.5488 null]
+>> endobj
+1047 0 obj <<
+/D [1037 0 R /XYZ 351.6378 215.872 null]
+>> endobj
+589 0 obj <<
+/D [1037 0 R /XYZ 495.6378 215.872 null]
+>> endobj
+1036 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1051 0 obj <<
+/Length 1247
+/Filter /FlateDecode
+>>
+stream
+xÚí™ßoÛ6ÇßýWèQ"–¿l X‡ö¡[¿¥yPdÅ&b;Ž$gûówG2Ž+J€¦†,‘<~IÞî#¥,£ðeLÊÌ(Cœ:«WšÍ¡ÿÏ Kã%”û¿O'>Ú̧¹Î¦×ßJLg9³Ååôó‡’ïYq'‰rDÑdºh’Ü·¡Dk“Íù¶`ùÕWÊä|Pl¹K¶ÜæU¿7…Ry5ú“?¦»“(.7JW­Ja‰µÂ YqC´0œC‰ÐŒ£ÍÝäâ’f3°ý<^gUö4(aÎñl5A/¥Ærr>9ۉѬ”Ä>¢§QPI·a‚x"Ĥ š2ïT*wRešú=,™aÉ_†
+"Dø!8¤q†²HvÚqb©Ùô•*ZÁ+J‘=_Ü%ËÛ›2¯+lmz»Æò4êB%MC-ÑÖ©c¬Fcµó× ±ÚÙÄêê1V_0(ÂÈüzë1^FA¼¶§®Šuhµ±± Ío»~»ÄÞªmzR”Jˆülë1°™„
+Øt ¿–*¬‰ù
+ûlboóo¼vießݪ÷]hCRbN6ꇢ’›|ÓzlÝšæiú
+G죥¯ï¶Uêœ nü*Ú¥gã,¶ÖuØžßváéÀ ¡ˆîOL¦¸Ãòúpëklñ¼m|¼éÁsÑ„''J©òO°½Y8È*ξKÁX¦ªÃÙÛΆK ˜ÏÍî±Ù´]½°í~E-‡á ‹j]œ·Å55¬Ùݶ„è'·jCƒÀž³«Ú(š&t}‡º÷þ$&qíûê*¦‰Ú‡îŽhcà†¦µ ó?ú9«…E„¹`¿ ¯dþצˆy—.Ž]$¶‰=QëUŠ%¶]߶«ª?ÌOðǯgͺ?etÓŸÄ{ŒÍ_ UPéJƈSŠ•Î¯çËfé×M½hê›ÓëjÙ5‡çaÔ+ Ok_T,
+ )ža#E†ÇŒx9Ù›TcñSqq‘f¸sp§ÔZgŠ)ÂyÊâ7"§Œ0ÈÇc¬^IÎñX=úõi¬Žä<’óg"' 
+œG'tî3`—b”„’ bbi<‚ð]@(4%œª—>!…tÞÞôRhE¤Ñú«W‚p<V~}« B& cðê: BáÜ#—¡Ò!áø ÔTÅzw'®›»í¶õÌ>õ¥õ V·pR‡–!ƒZhn ý}¡²r5° ‡†«˜Ö‘,WÛ€…q®QLH²Of
+‚G®½×`”P~áY ªsoÉ5N%‚ºc¬^ɵñXíìbuäÚ‘kÿS® xES˜ûc\“?€k¢äðVéŒ%˜cp>¡Ÿ˜„z¡ÙàgÛî?
+endobj
+1050 0 obj <<
+/Type /Page
+/Contents 1051 0 R
+/Resources 1049 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1052 0 obj <<
+/D [1050 0 R /XYZ 144 757.9346 null]
+>> endobj
+1053 0 obj <<
+/D [1050 0 R /XYZ 144 719.0507 null]
+>> endobj
+1054 0 obj <<
+/D [1050 0 R /XYZ 351.6378 715.3739 null]
+>> endobj
+590 0 obj <<
+/D [1050 0 R /XYZ 495.6378 715.3739 null]
+>> endobj
+1055 0 obj <<
+/D [1050 0 R /XYZ 144 541.4666 null]
+>> endobj
+1056 0 obj <<
+/D [1050 0 R /XYZ 351.6378 537.7899 null]
+>> endobj
+591 0 obj <<
+/D [1050 0 R /XYZ 495.6378 537.7899 null]
+>> endobj
+1057 0 obj <<
+/D [1050 0 R /XYZ 144 375.8377 null]
+>> endobj
+1058 0 obj <<
+/D [1050 0 R /XYZ 351.6378 372.161 null]
+>> endobj
+592 0 obj <<
+/D [1050 0 R /XYZ 495.6378 372.161 null]
+>> endobj
+1059 0 obj <<
+/D [1050 0 R /XYZ 144 214.692 null]
+>> endobj
+1060 0 obj <<
+/D [1050 0 R /XYZ 351.6378 211.0153 null]
+>> endobj
+593 0 obj <<
+/D [1050 0 R /XYZ 495.6378 211.0153 null]
+>> endobj
+1049 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1063 0 obj <<
+/Length 1084
+/Filter /FlateDecode
+>>
+stream
+xÚíY]oÛ6}÷¯Ð#D,¿?Z,Ã: CQc/Y™±‰Ú²#ÉéöïwI*Š;N€&A1òòò\òž«{J”f~hF…È´ÔØr¡²j5!Ùì¿Mh¿^‡b×ã—éäÝ™`™ÅV1•M¯îcLgçˆç%„ ?79E_×íû¼B ?Ü¿ßs¦Ñº…Y›œ TÖaÆý•ŽÊå,@P›_L?½;3;Ѹ²˜Sfáx!µÁeòët8²d3-Õñ{qm“ÄÅZzÈ‹i¬¸6‚¹¢Ñçzr~A²ø~š€Õ™}‡ ÁÔZ–­&!ýd9ù:ù2€‘¬ØhÆGIÛ ôÃ~Ã} *8V„J˜ü R1@ýÖ¹`A5íó¥‰Á’í ƒÁV æÖOY0¼ÀäßD’~Q()Ñ×Å:T@Ó…©@Uf›PMa€²Îe©)ði¥¹:ÊÕ¯'¸üö¸º¼ãês År‰®¶¾ #|mã\¦…*Κ4ÙÀ.‚Öm·]kÙ¸.ò™1‰VðMZ,”1Ô—¸Óçœ-Âê‚YT‹D¾ÎaÒÅn±\º¹Oæ>D²·ÝG åséŠˆÜ qãR‹jw½uièþ  jשòÈueçS_Š‹M,ÊP“î
+Äíc.bFj8ôg8Ü* '012N‚Ñ×¥`_í,²ö¡û’êµò]y™*ï+LÁ8Å:
+c˜*e#À™Ÿ]j\’-.{QT.uÖΨà;¨Æb"%íeëjݬÊîtQÖó“MÙ´ßüæTnº_Ï\ÀN)i¼G!Ò‡O)¶R²ˆÐúz¾tK_»jáªo§Wå²uû—¡ÄbÃ5ëã^ì5ÎpO b(‰‡4²2¨‰T£B¾ BJ®0ÕÄîº Ò)tBèeX*¢_R!¥ Ð¨¹z¦Bçê.¯¹rTÈÿ§BRc°æ¸@ª×ÈzgádrxÖ;A-a´£Þ½™Þq-á™ÍÄ/B®$c/©wÜPLg#WÏÔ»ã\Ýåõ!W£Þý¬zWÄ©S=Í4$.ÕK–¨|aй6«wí•OZr§|·Æâ ú5ô/’¾é ‘ ²ªØ¨˜o¦˜Œp,¨ÑO¼©eØ£^R11X+G®ž©˜Ç¹üö¸zuÅT£bŽŠù3<-…îÿ?ª˜æ sÿpáã…ÊæGÐ(Ì¥Öè· Ž‡õoøF²»úVÅÅ endstream
+endobj
+1062 0 obj <<
+/Type /Page
+/Contents 1063 0 R
+/Resources 1061 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1064 0 obj <<
+/D [1062 0 R /XYZ 144 757.9346 null]
+>> endobj
+1065 0 obj <<
+/D [1062 0 R /XYZ 144 724.1565 null]
+>> endobj
+1066 0 obj <<
+/D [1062 0 R /XYZ 351.6378 720.4798 null]
+>> endobj
+594 0 obj <<
+/D [1062 0 R /XYZ 495.6378 720.4798 null]
+>> endobj
+1067 0 obj <<
+/D [1062 0 R /XYZ 144 551.8028 null]
+>> endobj
+1068 0 obj <<
+/D [1062 0 R /XYZ 351.6378 548.1261 null]
+>> endobj
+595 0 obj <<
+/D [1062 0 R /XYZ 495.6378 548.1261 null]
+>> endobj
+1069 0 obj <<
+/D [1062 0 R /XYZ 144 391.4043 null]
+>> endobj
+1070 0 obj <<
+/D [1062 0 R /XYZ 351.6378 387.7276 null]
+>> endobj
+596 0 obj <<
+/D [1062 0 R /XYZ 495.6378 387.7276 null]
+>> endobj
+1071 0 obj <<
+/D [1062 0 R /XYZ 144 219.0507 null]
+>> endobj
+1072 0 obj <<
+/D [1062 0 R /XYZ 351.6378 215.3739 null]
+>> endobj
+597 0 obj <<
+/D [1062 0 R /XYZ 495.6378 215.3739 null]
+>> endobj
+1061 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1075 0 obj <<
+/Length 1287
+/Filter /FlateDecode
+>>
+stream
+xÚí™ÝOä6Àß÷¯Èc"Ÿ¿·B'U*ÕÝ-bß8B6,»Ën>hÿüÎØÞ%\BŽTz+$â±Çc{f2¿XDá‡ELÊÈ(C¬:*Ö3-¡ÿ· ã)*¤}_æ³gYd‰Õ\GóÛç&æ‹«˜ÓäzþùÙä=-n%QV€QT™ß•AGöu(‘&Ë‚Îe—°øæ er9jt¹ º$<‹óß'JÅùÒÙŸý:?œDqA¸Qzú¸ÂX¯•
+E(rL‹¢…ÉÀ9”ÍêìfW×4Z€îçôÚLE‚@ ³–Gëz)«Ùåìâ`ŒF©$™áâe+~+¡&<7Ĥ š2Â-¥Si˜ú–¦Ì°à/C x׊CqHb e.‘özÚj¢µe.´_¨¢9üb „DÅ—wIÊâºEQÆEŽÒ¶­6Ø _G]¨`Ó0N”¢ÇXMÇêà¯oÄê 7ˆÕÍS¬Î1(ÂÈø¶«0^FA¼:ŒS“ûÂIµ¶ð ñCÓv+ìÍë²%Iª„ˆ/º
+ I¨€M§ðòk©Üš˜0­HRÃy\mnã¶tVå²òÝÁt‹½eÓ~„§‚Ýœçeê Óg&+°É³,Þ”8auÈí³ô½å_þÙ„•«ÒÙÍÛªñµKJÌÉrÄúШä&ÞÖJ‰¦q˜¾Æ‘ìI³*v]:£¿ñzáݸðÒ¦pÛ«ºÆ½8ÁQÈ"¥ÊÜÌ ‹0,¾C'vUë²ò\çUxð"Ì?Áþî$k?{¢µ_§·Á¼p‡¯k8.Æ$¸nñˆbY7¹wC×üŒ¶,ÆÓiÜå›bäÀ5®©aÍÖÙ=hKð«6Ôèy;_£Ž¢aBÓ–Ð1´ ‰ñXø,.ª6¿ñùC<ˆúôÃÝm 48að&¸ùgÕéUÃ"BÈXØŸÐW2þ}›øÄ€GãÇ®ÜDÏhf UŠ¸Ý>Ôë¼=,O¶yÝÜWÛSµmO°£Ú,ÊM{Ê(È>º ª,”ƈUŠ;^ ÖõšMµY®ÊUµ)‹»²¸?½ÍWM9<Ë2Â-ßCûzP]±Ž(JZ°1P‚SÖÍ_Qþ.¥™ÿ
+.ZˆMf÷Ø„–[ç°‰¢“j/ŒbsXÒB…‡:$lšRº ‚¯š+€fOqÎP-?"N/¯cÕ˜ø&ô ììº1v%eaªÛã“Ú ‰ ·•ïB4g[ùÏ’ ÇÁV5€F8AXÌ÷8<bcGlCuðCƒZ
+endobj
+1074 0 obj <<
+/Type /Page
+/Contents 1075 0 R
+/Resources 1073 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1076 0 obj <<
+/D [1074 0 R /XYZ 144 757.9346 null]
+>> endobj
+1077 0 obj <<
+/D [1074 0 R /XYZ 144 722.9112 null]
+>> endobj
+1078 0 obj <<
+/D [1074 0 R /XYZ 351.6378 719.2344 null]
+>> endobj
+598 0 obj <<
+/D [1074 0 R /XYZ 495.6378 719.2344 null]
+>> endobj
+1079 0 obj <<
+/D [1074 0 R /XYZ 144 548.0669 null]
+>> endobj
+1080 0 obj <<
+/D [1074 0 R /XYZ 351.6378 544.3901 null]
+>> endobj
+658 0 obj <<
+/D [1074 0 R /XYZ 495.6378 544.3901 null]
+>> endobj
+1081 0 obj <<
+/D [1074 0 R /XYZ 144 373.2225 null]
+>> endobj
+1082 0 obj <<
+/D [1074 0 R /XYZ 351.6378 369.5458 null]
+>> endobj
+659 0 obj <<
+/D [1074 0 R /XYZ 495.6378 369.5458 null]
+>> endobj
+1083 0 obj <<
+/D [1074 0 R /XYZ 144 215.3147 null]
+>> endobj
+1084 0 obj <<
+/D [1074 0 R /XYZ 351.6378 211.6379 null]
+>> endobj
+660 0 obj <<
+/D [1074 0 R /XYZ 495.6378 211.6379 null]
+>> endobj
+1073 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1087 0 obj <<
+/Length 1145
+/Filter /FlateDecode
+>>
+stream
+xÚí™ÝoÛ6ÀßýWè‘"–ß+Š–¡Сh°—,ŠÍ8Âl%‘ätûïwGjªS+r¶fÅ€y<ïN÷³ž1øáW*³ÚR/•É–ÛËÖ0ÿÓ‚÷ë*û?œ-^*‘yê0ÙÙÕCg«s"ó‚3ÆÈ/·9']uS·ßå…RŠüþü” KnXXµy!¥"eŽ%ù5w’”›Ì0BÚüâìÝ«S·wš4žJ.<¸‡g Ž*‹Ï—µTXm¦ï%­OZ…„¶zLKXj¤uF¥áuîç,[î»Ìz§³O 0ʽÙvÑè…ÍâãâÃ`Œe…¢ÎŠ +i+ý0n_âJRøá+-ƒ©¢ßú5,¸å}¼,“”)-†‚P"Ô[ÆcÁ8ÐcLeÆ ª¤Ž‰üiV‡JК|¼¾Áh:Y–(Ýb1á€~™t©û£-sPÚÏ©šLÕ¯#©‚ªOÕeŸ*ÁÈ{xZc² 5’{rµ«º4JYÛµe/F©IÂ-übä¦ívœ.›ÐŬ¦GÝf…§Ê¨tà‡ªTÐD˜$X°s™¤ªÎ…']ì›MXG%…Öa:zÕ…¶û>/ œù¾ E<ƒ=0_¢âŽÄÚ
+w»Ähô[èDE¼¥è¯Q…®ìâ MÊM/ÞÔaäˆ:ÚºƒHÅ«€¹$·MuŸkOÊ®Ú⌠w»jy·‹aÛ&ը˗)"ýÓÑǧ^&v-ÙÒ+µ©_cØà°$5áï
+A¹1>Z=­ÖÈ, #"MÉxó\;OF•Ü³ê<eZóiÛ²YWõÎn»“ª^… $±­êõ&lª:,¯Ãò÷7Wå¦ ‡^
+xº™6²7xqÐ.±1hÏ`ƒÄL:j0hDZȟ¥×Ê€E- Õóñ^‹¥¥Œ1ð Æ@úœN.jÅáË÷s®žÈÅé\ \<ÈÕ ÆŒ/Œ\ÃkWvŒê¿ã¡?\jêó“TBQxvÕŒÀo†@i^y1”ÚSã„{NJ«)|'rsªžHÀÉT
+endobj
+1086 0 obj <<
+/Type /Page
+/Contents 1087 0 R
+/Resources 1085 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1088 0 obj <<
+/D [1086 0 R /XYZ 144 757.9346 null]
+>> endobj
+1089 0 obj <<
+/D [1086 0 R /XYZ 144 718.6771 null]
+>> endobj
+1090 0 obj <<
+/D [1086 0 R /XYZ 351.6378 715.0003 null]
+>> endobj
+661 0 obj <<
+/D [1086 0 R /XYZ 495.6378 715.0003 null]
+>> endobj
+1091 0 obj <<
+/D [1086 0 R /XYZ 144 552.301 null]
+>> endobj
+1092 0 obj <<
+/D [1086 0 R /XYZ 351.6378 548.6242 null]
+>> endobj
+662 0 obj <<
+/D [1086 0 R /XYZ 495.6378 548.6242 null]
+>> endobj
+1093 0 obj <<
+/D [1086 0 R /XYZ 144 385.9249 null]
+>> endobj
+1094 0 obj <<
+/D [1086 0 R /XYZ 351.6378 382.2481 null]
+>> endobj
+663 0 obj <<
+/D [1086 0 R /XYZ 495.6378 382.2481 null]
+>> endobj
+1095 0 obj <<
+/D [1086 0 R /XYZ 144 219.5488 null]
+>> endobj
+1096 0 obj <<
+/D [1086 0 R /XYZ 351.6378 215.872 null]
+>> endobj
+664 0 obj <<
+/D [1086 0 R /XYZ 495.6378 215.872 null]
+>> endobj
+1085 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1099 0 obj <<
+/Length 1287
+/Filter /FlateDecode
+>>
+stream
+xÚí™MoÛF†ïú<’€¹ÙïFuÑÒÑ-É–ÖòÂ’,“”ÛŸß™Ý5#G ã"®{¨@ÚÙÎrçÎ#:¬ ðLÊÂ(CœºXlf´XÁü¯3–×kt¨=~žÏÞ\ا¹.æ×OCÌ—JΫOó·o.$?ðâNåE—ùÏ>òЇi¬Í>ï÷+¯>R&W£ñÀ—»ìûGÅmÙ,ðó¶RªlV1þì—ùpÅáFééã
+ã’W-$aŠ™1/nˆÆBr(š1ô¹Ÿ}øD‹%ø¾Á¬³ªø J˜s¼ØÌ0KÙXÏÞÏ.‡`´¨%±†‹¯GI—Qˆ’‡ù‚§˜DS¦ÀøÎHõªÎ—~ÏkfXΗ¡“:”‡Ê!ÎPëÈ‚¥²ÐÎ%©Ê~¤Š6ðÁªZ€°ïo•m¦, Z»>Ümq@¾]¨¼µa‚HÎìIªI©†|MKEÿ©®’TFˆòj‚ƒkxŽ÷(Oèq‚— 4š}פõžMƒ]UsWF»~_£˜ƒGž+QÔð¼k©âFë¦õèÔøtF”—ûPÕÊ«CPÜÀBu„mñúè»^ûUˆé“X»xÁ]ï»ñ§ª–Ú”ïÿ0–¤e¬,¿÷Éô¥ïî® ·éΚ>@@è&eK+Ô§‰Ãx`îÚðP)W6cáú°Áûå=ž•‹û}“g–q£«=&íË”âíb<N\íâ‚+±zäËᦥ”å &nÉJÙÉ€Lõ‡®`BÒŒäåoK¿‰ñGÂÇûçàÞDñ}ÛÂÉp.O/qú¡-|ÛÅ”µaßý«O5r¦›èµ…xƸÇM$¹ÏªÚÑdàdˆI¿,Äfs6–¤\Vc³‰Up–;MHº^¥z! I‡¬¹€‡+#N˜Ö.F½+æPYJóCÊÛï»*•|uiíCæœ8ˆj¡J±Ì¹MÓ®ÂöœÑ]vÓla¼ôÛ>Ùi “™”–€Tå ;0FÆÁ(]Ø®Ö~¶~qã·ç×ͺóÇbÔ+ Ï{:ê®ØG”‘D+6JSH/·°?·'Š¾ E• Dayöfé”ZëBaëTÚ¼$F•PXæ¤Õ31:­ÕÀÑ#­N=qôËQªåÓµ¯CÑã»ãð i#Å$%“rnNP|5(
+-á­Þ~ãÕ*n^ôÕRJ8µ§WËç2qRª‰GRe$
+NËwð´G±@Á\yº7Œ’j‰ÑŒV›ŒŒ(@â:6¯Ö÷d¤}åýE¸J`´?0bÛöÂljºØÊùÀ¿ãM¶þI#KR™ˆß]Þ5ø¸W‚ .< „Ƽ
+{¤•P‘{¶ Ûûx2©º¯ˆ”ÄÉ̹±_3IÇ è1lj“ßž{)ì횶» »sãg¾røí/´š&—zÉ |¯>N1.uâm9A˜åì%ÉÇñgŽ'­žK¾i­ôe­ø+¢OŸÐwBß…>
+endobj
+1098 0 obj <<
+/Type /Page
+/Contents 1099 0 R
+/Resources 1097 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1048 0 R
+>> endobj
+1100 0 obj <<
+/D [1098 0 R /XYZ 144 757.9346 null]
+>> endobj
+1101 0 obj <<
+/D [1098 0 R /XYZ 144 723.7829 null]
+>> endobj
+1102 0 obj <<
+/D [1098 0 R /XYZ 351.6378 720.1062 null]
+>> endobj
+665 0 obj <<
+/D [1098 0 R /XYZ 495.6378 720.1062 null]
+>> endobj
+1103 0 obj <<
+/D [1098 0 R /XYZ 144 546.1989 null]
+>> endobj
+1104 0 obj <<
+/D [1098 0 R /XYZ 351.6378 542.5221 null]
+>> endobj
+666 0 obj <<
+/D [1098 0 R /XYZ 495.6378 542.5221 null]
+>> endobj
+1105 0 obj <<
+/D [1098 0 R /XYZ 144 380.57 null]
+>> endobj
+1106 0 obj <<
+/D [1098 0 R /XYZ 351.6378 376.8932 null]
+>> endobj
+667 0 obj <<
+/D [1098 0 R /XYZ 495.6378 376.8932 null]
+>> endobj
+1107 0 obj <<
+/D [1098 0 R /XYZ 144 219.4243 null]
+>> endobj
+1108 0 obj <<
+/D [1098 0 R /XYZ 351.6378 215.7475 null]
+>> endobj
+668 0 obj <<
+/D [1098 0 R /XYZ 495.6378 215.7475 null]
+>> endobj
+1097 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1111 0 obj <<
+/Length 1156
+/Filter /FlateDecode
+>>
+stream
+xÚí™ÝoÛ6ÀßýWè‘"–ß+‚–¡С¨±—,ŠÍ8BmÅ‘ätûïwG*ª3+N€¦A y:ïŽ÷³ž1øáW*³ÚR/•É›ËV0ÿÛŒ÷ë*û¿ÌgoΔÈ<õF˜l~õÐÆ|yNd^pÆùc›sÒU7uûS^(¥ÈïáŸ/¹°ä¦…e›R*RÖ(àX’?s'I¹ÞÁL
+Eòq+é1VúaÿÀCC\Ij× |£¥b0Uô~Ë ny/ËÕb¯`”õ–ñX0ôS™ñ0‰ö0“1ÍJøàP
+Z“O×7XM‡¢"‹¥-Vè³.u¿·åO¯Õ”«£¹âõD® ìÉÕeŸ+Áȸ¯1[É=¹ÚU]¥´íÚ²£Ô$a ¿¹i»Ý§Ë&t1­é²Û¬ðT¥ã†w¨RAa’`eÀ“‹$Uu.<éb¿X¯Ã**)´ÓÑ«.´ÝÏya`Ïe(âìù»
+w$W¸Ý…$F£ãØB/*â)EŒ*temRnzñ¦#[ÔÑÖ-D*$H&Ù6Õ]®=)»jƒ3‚ÜîªÅí.†m“t–£._¦ˆô×£O½H.ìZzÿWT)íö£Ø¦n|qƒÝ’Ô„ûƒ€ÛWM´JwË°ñ¼g¡µGÇ¡ià<h>uñ´´Dá.‡Ô…¦-›ÞÓ·`Ø(Lã¡Ùëh®Æx3Í
+ûTD9…Qƒ“ïÒß
+æ¨ë4åê™ð<ž«ž¹z%xš ž<xÂ5¡‚sžêàyèÞcï¤<ÊBg¨ÔÖ>‚Bé”ã(þ{ÉöWÿ–zÑžendstream
+endobj
+1110 0 obj <<
+/Type /Page
+/Contents 1111 0 R
+/Resources 1109 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+>> endobj
+1112 0 obj <<
+/D [1110 0 R /XYZ 144 757.9346 null]
+>> endobj
+1113 0 obj <<
+/D [1110 0 R /XYZ 144 724.1565 null]
+>> endobj
+1114 0 obj <<
+/D [1110 0 R /XYZ 351.6378 720.4798 null]
+>> endobj
+669 0 obj <<
+/D [1110 0 R /XYZ 495.6378 720.4798 null]
+>> endobj
+1115 0 obj <<
+/D [1110 0 R /XYZ 144 551.8028 null]
+>> endobj
+1116 0 obj <<
+/D [1110 0 R /XYZ 351.6378 548.1261 null]
+>> endobj
+670 0 obj <<
+/D [1110 0 R /XYZ 495.6378 548.1261 null]
+>> endobj
+1117 0 obj <<
+/D [1110 0 R /XYZ 144 391.4043 null]
+>> endobj
+1118 0 obj <<
+/D [1110 0 R /XYZ 351.6378 387.7276 null]
+>> endobj
+671 0 obj <<
+/D [1110 0 R /XYZ 495.6378 387.7276 null]
+>> endobj
+1119 0 obj <<
+/D [1110 0 R /XYZ 144 219.0507 null]
+>> endobj
+1120 0 obj <<
+/D [1110 0 R /XYZ 351.6378 215.3739 null]
+>> endobj
+672 0 obj <<
+/D [1110 0 R /XYZ 495.6378 215.3739 null]
+>> endobj
+1109 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1124 0 obj <<
+/Length 1285
+/Filter /FlateDecode
+>>
+stream
+xÚí™Koã6€ïþ:J@ÄåûÑ"(P )º‡mƒø–ÍA–Gˆí8z¤ýù!ÅY+N€Í{Ør4$g†ó‰K(ü±„I™eˆR'åfF“ôÿ9cq<G…|_ã÷ùìÓ™Mqšëd~ýÜÄ|y™r™]Í?:“|O‹;I”`Uæ7UÔ‘û:”HcmÔ¹è3–.¾R&W£ö@—»¨ûOÆmZ”øy›)•+oöÇ|؉â‚p£ôñí
+ã‚V.8Ñʈ1-nˆÆ‚s(š1Ô¹Ÿ]^Ñd ºŸgÐë¬JþæO63ôRÖ³‹Ùù`Œ&¹$Öpñ²•ð+±xnˆIA4e
+„ï´”¦òøè÷l0g†EꈖJyÄ!uˆ3”ùD² G©L´s„
+Å}h¿RE ø`Y. ²7wYÎÒ¦CQ¦eÒ®«ï¶Ø ßF]¨8·a’8¦ù«£±üõJ¬ í_ˆÕ"ÄÊ‘~Á `ãNrñ©;ìài‰BÑ·E/û&4vYÎ]ê#Üv}ŽÑLz®D’ɇù‰ÖES¡RGàÓ‘ž÷u–[ÈLAq éQo3°×yÝõºZÕÞ"}fkç¸ëªÖ[ü-Ë¥6é—¢z¨Ñ–¤©O­ê¾¯‚Xý¾Û»|Ä\Y‡•] ¡ž¤ÏQLÑ*tìÛq×Ô™ri1f®«7¸>‘ÞãYZÞ÷EìYú‰=:åóàâm9nǶþ„àˆ/¤=DJe½J|V-¥LoÐs}])¸»¸ªÛW¼f$OÿZV?Á£ý½ø pP/|ô«¦­ámì^b÷CÁ¨šÖû¬©ûöWµ¸­‘MÝx­-Ø3ÎÀ7¡â}’åŽ;kïõûÇL,6'c^ŠIPÁ¨/7> Nb­©C`!aH Ò>
+s. Q\hq´vÞêY½B–¡…©R¿¿ý½ËB^ÀWÆ.#êÄžU 'L)Q·)šU½=et×슦½­w§
+Ú7Åú—Õ¶ c!ΪƈSñ˜5˜7h¶õvµ®Öõ¶*oªòöôºX·Õá昵„;þˆð«ƒZ‹UEA­gZš1l‚«¹B_OL}G¦*A ÕðÖ4Z§9¸Sj­eº~O¦*¡ˆNO±z#SÇj`êA¬&¦NL˜z”©ú§bêá6 Ü>¹´Gá)#ÊZ6Áó£à)ÄÒqþÊ… G¬}×û(<KŒS¤ÞˆÎã‘Ðùm¤O‘ò䌦סº3(üE(àE(½Ô!" ¹öµ­©ºP硼3&Ÿ•¸X屪ê=Z¢ôH˵·‚´ôÝ –Òae㌇&·6ÝVÏêmz‘øÝƉëÊ“$ÀöayhýШäСißàˆ}Ò¬#7±s9ºðÅð‚‚gc`i
+á•ŸH˜Wî‘Ìjb(øþYÈ)‡÷#§X½†Çc5À0ÆJ} õDɆ? ™tpw¤ê8 í áÈ隆îÌñ+ U„Cü^À@Q iÇF‡\ÒýÑÿÆã×Ìendstream
+endobj
+1123 0 obj <<
+/Type /Page
+/Contents 1124 0 R
+/Resources 1122 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+>> endobj
+1125 0 obj <<
+/D [1123 0 R /XYZ 144 757.9346 null]
+>> endobj
+1126 0 obj <<
+/D [1123 0 R /XYZ 144 725.2773 null]
+>> endobj
+1127 0 obj <<
+/D [1123 0 R /XYZ 351.6378 721.6006 null]
+>> endobj
+673 0 obj <<
+/D [1123 0 R /XYZ 495.6378 721.6006 null]
+>> endobj
+1128 0 obj <<
+/D [1123 0 R /XYZ 144 545.7007 null]
+>> endobj
+1129 0 obj <<
+/D [1123 0 R /XYZ 351.6378 542.024 null]
+>> endobj
+674 0 obj <<
+/D [1123 0 R /XYZ 495.6378 542.024 null]
+>> endobj
+1130 0 obj <<
+/D [1123 0 R /XYZ 144 366.1241 null]
+>> endobj
+1131 0 obj <<
+/D [1123 0 R /XYZ 351.6378 362.4474 null]
+>> endobj
+675 0 obj <<
+/D [1123 0 R /XYZ 495.6378 362.4474 null]
+>> endobj
+1132 0 obj <<
+/D [1123 0 R /XYZ 144 212.9485 null]
+>> endobj
+1133 0 obj <<
+/D [1123 0 R /XYZ 351.6378 209.2718 null]
+>> endobj
+676 0 obj <<
+/D [1123 0 R /XYZ 495.6378 209.2718 null]
+>> endobj
+1122 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1136 0 obj <<
+/Length 1165
+/Filter /FlateDecode
+>>
+stream
+xÚí™ÝoÛ6ÀßýWè‘"–ß7,Ã: CÑ`/Y™q„ÙŠ#ÉéößïŽ$´¤–´ÉŠ
+䑼ã}è~!Ê3ÿxƕʬ¶ÔIe²z³`Ù
+ä?/xZ/pCñpÇç‹7gJdŽ:#Lv~ýXÇùò‚ȼàŒ1òÛ6çdhnÛþ»¼PJ‘_ýßsaÉm Ë>/¤T¤jq‚cI~ÏKIªõ$”>¿<ûæ¬|`MG%®‡¶„Æ-‹ŸÎÇ+k!©°Ú÷KZwÂQn™šÚ%,5Ò–F¥á÷Ü-..Y¶„½o u¥Î>„QîœÈ6 ŒFš¬ïGe,+-­‡µÄc ´¤a:ðXW’Æ5L^¨©UéèK,¸å)^–KÊet5Œ€¡Î2
+¦„} Bn™ Z2ùÓ¬‚¥ 5ùps‹Ð 8U¤®p¶ÅjÂý4ëR'Û–—T19çêx®Æx=‘+(û¹ºú7Wï0)%|Ø×»fˆ£˜¯]_¥é.$3N¶9|t$¤·v¦2Š2kàstT¥ƒ•uÕ….0Pø5†‘÷AK“CCbëC2RÇYƒ+m‚!œY¯ýª šÙ#Ûpèvð}Ðü\E‚à]åïPè¬"­¿Ûù‰£þ/èb°·O†?'‡¦ ]54Á«ÖGÁ!MÛ®¹Ïµ#ÕüÙä…v‚ÜA׋Öw»* —Á›+Œë¾ž¶Žzv==¼ îh#79„~¢UGIç1 ×îàBìÀ¢}¿,=ÜOYNîPB(jßuàšˆí–X\ZÞcr|WL¨ë«®‰åò=¢l7XP’“›p¶­ã¬C«8üÉ„̼fCüðÜæJ’ßxœ“$„”ãì¢ÞLi«›p¬ºŠC÷QT‡µ0
+Ô…sgÍ
+ù…¥‹xÓ.Áo¤aƒkQ§’”–Ž2­yÂÛ¦êVM{ÊÙv8¹¾í6ÕpzSµ«“¦]ú•Å¥pýB1ª´ƒÁ9u¨#ĶiWk¿nZ_ßøúÏÓëjÝû}_8s´”V$»—{ [‰¶ÐLL9ÉJv^ÇøLÒW$©–†2¨Ééî, œÊ@ÛÔBS%xM’j¨nÉ¡$æ\=¤Çs5’t/W3Ig’~ã$室–³ã(5ìKP*> ¥dÄ«éñÁ9MFÅ4eþx)çnû\2JøcÄqmžxcJ  ^“ŒÒÊËØèç\=ƒŒÇs5’1åJÍdüß“±H ršoà#Ü.ÙŠ’ÀGù84 kù8Jó2"mL˜ÔÆ’
+™<CHö(6,
+endobj
+1135 0 obj <<
+/Type /Page
+/Contents 1136 0 R
+/Resources 1134 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+>> endobj
+1137 0 obj <<
+/D [1135 0 R /XYZ 144 757.9346 null]
+>> endobj
+1138 0 obj <<
+/D [1135 0 R /XYZ 144 728.7642 null]
+>> endobj
+1139 0 obj <<
+/D [1135 0 R /XYZ 351.6378 725.0875 null]
+>> endobj
+677 0 obj <<
+/D [1135 0 R /XYZ 495.6378 725.0875 null]
+>> endobj
+1140 0 obj <<
+/D [1135 0 R /XYZ 144 551.6783 null]
+>> endobj
+1141 0 obj <<
+/D [1135 0 R /XYZ 351.6378 548.0016 null]
+>> endobj
+678 0 obj <<
+/D [1135 0 R /XYZ 495.6378 548.0016 null]
+>> endobj
+1142 0 obj <<
+/D [1135 0 R /XYZ 144 386.5475 null]
+>> endobj
+1143 0 obj <<
+/D [1135 0 R /XYZ 351.6378 382.8708 null]
+>> endobj
+679 0 obj <<
+/D [1135 0 R /XYZ 495.6378 382.8708 null]
+>> endobj
+1144 0 obj <<
+/D [1135 0 R /XYZ 144 218.9261 null]
+>> endobj
+1145 0 obj <<
+/D [1135 0 R /XYZ 351.6378 215.2494 null]
+>> endobj
+680 0 obj <<
+/D [1135 0 R /XYZ 495.6378 215.2494 null]
+>> endobj
+1134 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1148 0 obj <<
+/Length 1277
+/Filter /FlateDecode
+>>
+stream
+xÚí™Koã6€ïþ:Ê€Ååû±EP @StÛ.â[6Efl!¶âÈò¶?¿3$ã8kYk I/kDrfHÎŒæ–Qøc“23Ê'¤ÎªÕˆfsèÿcÄÒxžÄoÓчK›9â4×Ùôéì:çz|3ýôáRò=)î$QN€Q™.|’‘û2”Hcm’¹ÚŽY~û•29ïµ²Ü%Ù¿ÇÜæe…×û±Ry9öG¿Ow;Q\n”Þ®0.J‚îë“â†ha,8‡¡G™ÇÑõ Íf ûi½ÎªìhPÂœãÙj„^JåèjôegŒf…$ÖpqÜJT£`%=&…—†˜DS¦ ñJKÅÎT‘T_³Á‚–üe'”1µË#©Cœ¡,$’9J¡‹2")!´_©¢%\ظÙ«Åø`yÛaSæU‰­uW?4ø@¾ºPinà ávÈËçXaþ«Óbi$V·Ï±úŒAŒæwÛãÅÄk‹qÚ”q 
+­66Öp£ùæÛ.±·l}â™ I¨€ÚQÀ;¯¥
+S} š5¨pšcN€j…-èlÆÜå_.ý|O(™ï|X@÷k0M_ý\úo5Ø2ZæÜúøèÿÅ»È7išºèÑõ]HŮހuy[vuHÕÆÇŽd×m¯‰ocårP[ ÍLþ¸­«Çm°zt> k¿Eoj'4UîÛMt^j¦éÝà¶\¾@wmkìªbOë¡e 'nv›Â¾KÅxßðŸ3KU<,>>@U߶°-œg“ºgý
+/, Ž]'ʉ=«ÖªK”[•í¼n.]w“»‡vUvàŒù/u3óMÇbÜ%ÐT9¨ Œ‡FÐDƒy£ä¦næK¿¬_-|uqW.7þpsÌZ€!¢÷ÍA™Å‚¢4,VÓGLð*ÀÝfOà);×èyª'ÚÊþÍÁ›Rk _>PÉ°o‰S%`"%í9T'ât0T;š„êLÓ3MNšR¢Ø`*ÿ˜¾$æáRáPA¤€7{ˆð…L´Qbæ|Ö|C6
+­ÔHýƒ³&Pœþ á( $¯åò«á8«S¬ä{Ò‘IÂ`†^8r«÷àˆ­g8†Ê8OBp„2å°üõVi·6 åPĶ©Îb/âï;\úP…Ë@h)ßcýШ^
+endobj
+1147 0 obj <<
+/Type /Page
+/Contents 1148 0 R
+/Resources 1146 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+>> endobj
+1149 0 obj <<
+/D [1147 0 R /XYZ 144 757.9346 null]
+>> endobj
+1150 0 obj <<
+/D [1147 0 R /XYZ 144 727.6434 null]
+>> endobj
+1151 0 obj <<
+/D [1147 0 R /XYZ 351.6378 723.9667 null]
+>> endobj
+681 0 obj <<
+/D [1147 0 R /XYZ 495.6378 723.9667 null]
+>> endobj
+1152 0 obj <<
+/D [1147 0 R /XYZ 144 548.3159 null]
+>> endobj
+1153 0 obj <<
+/D [1147 0 R /XYZ 351.6378 544.6392 null]
+>> endobj
+682 0 obj <<
+/D [1147 0 R /XYZ 495.6378 544.6392 null]
+>> endobj
+1154 0 obj <<
+/D [1147 0 R /XYZ 144 380.9436 null]
+>> endobj
+1155 0 obj <<
+/D [1147 0 R /XYZ 351.6378 377.2668 null]
+>> endobj
+683 0 obj <<
+/D [1147 0 R /XYZ 495.6378 377.2668 null]
+>> endobj
+1156 0 obj <<
+/D [1147 0 R /XYZ 144 215.5637 null]
+>> endobj
+1157 0 obj <<
+/D [1147 0 R /XYZ 351.6378 211.887 null]
+>> endobj
+684 0 obj <<
+/D [1147 0 R /XYZ 495.6378 211.887 null]
+>> endobj
+1146 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1160 0 obj <<
+/Length 1175
+/Filter /FlateDecode
+>>
+stream
+xÚí™[oÛ6€ßý+ôHËûeC0`À:¬: ö’åA‘[¨­8’œnÿ~ç¬æÌŽk,i0 ‚aƒ<$y.:ŸóŒÁ‡g\©ÌjK½T&«Ö3–-@þóŒ§ñ'»3~¼˜½y«Dæ©7Âd7u\Ì/‰Ì Î#¿mrN†æ¶í¿Ë ¥ùµþës.,¹í``Þç…”Š”-v°-É﹓¤\mARƒÒçWïÞ¼u;»Iã©äÂÃñp/aqÊ짋ñÈZH*¬6Çí’ÖÇY…0ÔXoÍ–ixQi8Ç9w³Ë+–Íaî»H½ÓÙgè0ʽÙz†ÞHÕìãìèŒe…¢Î
+ù¸–¸Œ–ÔL *âJRø†Î5£ª"-}Š·<ùËrMM´4ä‹€ ¡Þ2òÅÁ4Æ@Ä4e\¸È?˜f%üpÈ­ÉÇå-&@7`W‘ªÄÞ“ ôßA—:mm£ÎK7…êh¨F$ý#¡ºþ'Tï1&ë›m3ÄV ׶/Swb;›¼ž„èööÀHfBQf <Œž*£tØeUv¡ ~aäCÐÒäPŽÁôŒT±×àH›ƒ`kV«zÑÍìÎMXt;Ô}ÐüE‚à}Yß7 Ð[EÚún[XZÿ 5 æöi㦂‘CÓÇ®š`U[GÁcš6]sŸkOÊ!سΠí¹ƒš ¬î¶e΃5×è×}=Émõl{úeWT)ívgÁ!­ñd™ƒï·Á]U”t5zÔ¢çúш|´¿ó/ó¨,'w¨ ÁUÝu`n«7 ±84¿ÇèÔ]q@]_vMÌ—ï‘°wƒ%9Y†µm{>; C¯™Åà@\·>’$ø§î\ÎIḆwnoi«š°¬¼Ž)C÷ITO‡µÐ2Ô‡uo›â séflbßÃ<8Ç.£N%w”:O™Ö<Ñm]v‹¦=çl3œÝÜvër8_–íâlSvý§fs®AÞ´óºEÅqZ0¥PŒ*í¡XpN½Ö"ú¹i«zÕ´uµ¬«Oç7媯÷íâÌS'­Hg¸Ú+¶XV´±h»;„MÌ@I5sg©Ôâ@UKGµ´üp©àNe †jp°)Ÿ‰ªðÀPǬ›bu"UÇjÄê^¬&¬NX}õX•‚Zfýq®ºoÍU°Ghò®û§ÆP«¬:
+KÅÕÊ>™•ÓôTVJ+©bæk7Pi Õ¼áÏÉJøâ›Ñ«SYy<V#+÷b5±òÿÊÊ"ÕÇGˆ)^KôTÚ,J1e$æÐ$ÐI$æè)Í]„$nòeãlÂÍ„”ˆÌdb³G±yˆÌ° ñ¸o¢²PÙV±0)­MÜ>H'C°QØ„ª€n;ÌÐhCì ‹á>K•%;<ù¦é¿5Qyø¢WM!¼$k3]5_ Ÿ‚ijò_¹jr¯)‡·Ÿçħ€4‚¼4S¬NÄçñXøÜ‹Õ„Ï Ÿ¯Ÿ§Ü(-{a~þÇË$þq©½z„†`©ÑVÿòd»£wÁëendstream
+endobj
+1159 0 obj <<
+/Type /Page
+/Contents 1160 0 R
+/Resources 1158 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+>> endobj
+1161 0 obj <<
+/D [1159 0 R /XYZ 144 757.9346 null]
+>> endobj
+1162 0 obj <<
+/D [1159 0 R /XYZ 144 731.2549 null]
+>> endobj
+1163 0 obj <<
+/D [1159 0 R /XYZ 351.6378 727.5781 null]
+>> endobj
+685 0 obj <<
+/D [1159 0 R /XYZ 495.6378 727.5781 null]
+>> endobj
+1164 0 obj <<
+/D [1159 0 R /XYZ 144 554.169 null]
+>> endobj
+1165 0 obj <<
+/D [1159 0 R /XYZ 351.6378 550.4922 null]
+>> endobj
+686 0 obj <<
+/D [1159 0 R /XYZ 495.6378 550.4922 null]
+>> endobj
+1166 0 obj <<
+/D [1159 0 R /XYZ 144 389.0382 null]
+>> endobj
+1167 0 obj <<
+/D [1159 0 R /XYZ 351.6378 385.3615 null]
+>> endobj
+687 0 obj <<
+/D [1159 0 R /XYZ 495.6378 385.3615 null]
+>> endobj
+1168 0 obj <<
+/D [1159 0 R /XYZ 144 221.4168 null]
+>> endobj
+1169 0 obj <<
+/D [1159 0 R /XYZ 351.6378 217.74 null]
+>> endobj
+688 0 obj <<
+/D [1159 0 R /XYZ 495.6378 217.74 null]
+>> endobj
+1158 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1172 0 obj <<
+/Length 2098
+/Filter /FlateDecode
+>>
+stream
+xÚíY[‹ÜF~Ÿ_ÑoV袺©¤Ȳ^b–dƒöÁ1X£®î–­Q·uñ$ìŸßs)©Õ3š±ƒH`0LW:u._¯$ËUÿäJ³rÖ‰\›tUÞ\$«Èÿu!Ãóâ¹ÆWß¼ÈV¹ÈS•®®¶ç&®6¯#•­ß\½üæ…Q3-•as FQåj™ë$¸, :¯†µŒ®M¤Ù-Ú]•Ýÿ¬U%þ}¿¶6*vdÿâŸWS$Vi¡œMW»œµbPÏe¢—´”©v$':•
+u>\¼~“¬6 ûò¤yfW·0I„Ìsµº¹À,…I}ñêâ—ÉX²ŠÈœÒ[áe X ðàÜ4Z¤‰´0ùBKñd*K¿$ÀX:òåd+9T‘èˆÜ%’€”^’€(qÂeJQiMlRÀ¹Ž5TöÕþ°ŽeÔö85QYàìØW‡ânÕµ {C”"Mµ|ªÕ£µšòõ‰ZìÏj%§Z]ŸjõEË$ÚÖKJ¨×€uê
+~PÒ¬åÉ~’èÐõCÒ¢õ=Õs¥H4ôŽÎ|j,mõ ­¬`‰J"Ä,-qÂf­ò¨÷uíw3¥`¾÷ä@ÿ=™NÎŒþTøØr©‰ÿað<ô¿á¯Žº°M/¬õ=A±¯:PÊò¨-úŠ Úxƒ8<¶‹&>®mÁ²›uœJ}ªòÃ@VI’Fòý³yuÈHSöô;tœ¼˜z¦C cl6×í0®<Úc¾†
+E%KZ3çÈb7E…Î’ºñ܉7|µŠ¼ç´eXãÛâÂ}º Þ,§
+'àg¯Íé™Õ,‰µ2ÐÜMÑîªæ¹LŽýåöÐÞýsHÆîòX´ÝûêøÜ‚U³ñMÏz ÔjshRŠÜZn­¬>°fW5»Ú×Uã˽/ß?ßuçï*³L(l ìÓ›{=»‹u°¡qr‰>““Ÿ&ק†ý¹äjYºÜ®$Ó¤iº²Z eòükR«5™:Éž*õ™ÔúX¥&b½W©?XÓ'b}"Ö¿-±ª¿,±ÞÉÁ«¨2Ù£ ªá…9—&{”AåÓëéWdP:¡•Ëx=õ´M…“Î}MÕN ›3)<Õê38ôñZòʵJﱨSEaXFÔQ‹X§‹:ybQ” uÑR&…®k¡ñW ]îÄŸpžø×!‡V,ù“*R@ìl‚ ×ij2:°r ;ÒóßvèÔ“Í‚HÆÀ%¡ LÊhô,-J…ô9£J” U.Ñ ôûFüÆ_SB(…–Á,Ò’S*º¡žÓ$J8·OF2aõ)G© ¤ˆ2"E‹î"I2ÝC^ø¢Þ¦È’‰‘ê|FŒH#A­1â ‰‘ì’Xêprß3bĆ0y$FÎK=£Dº’¬cÈÍaÊãj”™Ì»OP£þj|7@æ·UYŸ…™ß|îÛ¢ÒHÈ>þ¶¨œÐPåÃ_ çtÜMrç´2F¨,gÖB
+Ì™†? 4}o¶óe6€ñ4¸ö‚û4'd®§s°¬MÐ{‰)@ãøiz-CÏàC¥3Èò;>á÷Ðt EËŸñ6ƒز܌Ä©\àk1°LU&‡±vÏ·0=´<î|ßC5`b ½ìÊn¸˜€‹¡á‚f¾n9$“kJ=ÀZF‡D¬¢Á*ìøö<ÀØQÉožñÓÛ}EŸÝ÷#úÇ‹ FuD[
+6&9g¹Ä‚ä.þìó0‹‘2Ò7~[`Æk\Iºj°o~HsêÊ ÞD°Ò9Bs¬\¦ÎÓéœÀ؃MVË1±`Š›% x7Ÿ†{—S‡’³<ò´áåO;¦^
+ì: L¿Á/çóU´E?IEéÙ>m‹øœù:mŽœ
+F<s§`gLGTð剻ÒÈ[­3®e7’÷·K7ØË­{ä¿ØO
+ü:3¿‘I8ùÌ
+¿ÌHwo§T‹\ÁeëÑíF¥{{ž}åOaË$MÏö|Ë×VB.ÕöY¸Yþ·"º8 #MN¥×#˜Ù‹—?“ ¢Z¼ûMÿŸÌŸþ1§±¥endstream
+endobj
+1171 0 obj <<
+/Type /Page
+/Contents 1172 0 R
+/Resources 1170 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1121 0 R
+/Annots [ 1180 0 R 1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R ]
+>> endobj
+1180 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [302.3795 211.0112 314.3347 221.8594]
+/Subtype /Link
+/A << /S /GoTo /D (figure.73) >>
+>> endobj
+1181 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [434.3552 199.0561 446.3104 209.9043]
+/Subtype /Link
+/A << /S /GoTo /D (figure.74) >>
+>> endobj
+1182 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [470.1396 199.0561 482.0948 209.9043]
+/Subtype /Link
+/A << /S /GoTo /D (figure.81) >>
+>> endobj
+1183 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [225.5986 174.5922 237.5538 186.5474]
+/Subtype /Link
+/A << /S /GoTo /D (figure.10) >>
+>> endobj
+1184 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [507.3353 118.9053 519.2905 129.7535]
+/Subtype /Link
+/A << /S /GoTo /D (figure.82) >>
+>> endobj
+1185 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [143.0037 106.3967 154.9589 118.3518]
+/Subtype /Link
+/A << /S /GoTo /D (figure.84) >>
+>> endobj
+1173 0 obj <<
+/D [1171 0 R /XYZ 144 757.9346 null]
+>> endobj
+1174 0 obj <<
+/D [1171 0 R /XYZ 144 734.0242 null]
+>> endobj
+1175 0 obj <<
+/D [1171 0 R /XYZ 351.6378 730.3475 null]
+>> endobj
+689 0 obj <<
+/D [1171 0 R /XYZ 495.6378 730.3475 null]
+>> endobj
+1176 0 obj <<
+/D [1171 0 R /XYZ 144 558.492 null]
+>> endobj
+1177 0 obj <<
+/D [1171 0 R /XYZ 351.6378 554.8152 null]
+>> endobj
+690 0 obj <<
+/D [1171 0 R /XYZ 495.6378 554.8152 null]
+>> endobj
+1178 0 obj <<
+/D [1171 0 R /XYZ 144 382.9597 null]
+>> endobj
+1179 0 obj <<
+/D [1171 0 R /XYZ 351.6378 379.283 null]
+>> endobj
+691 0 obj <<
+/D [1171 0 R /XYZ 495.6378 379.283 null]
+>> endobj
+78 0 obj <<
+/D [1171 0 R /XYZ 144 254.2518 null]
+>> endobj
+82 0 obj <<
+/D [1171 0 R /XYZ 144 150.2461 null]
+>> endobj
+1170 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R /F40 356 0 R /F50 892 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1188 0 obj <<
+/Length 1872
+/Filter /FlateDecode
+>>
+stream
+xÚíšë‹ÛFÀ¿û¯ð·ÈpÚìûÑ
+-Mi
+-GŽ~I‘mù¬Ö–ϲ|IþûÎì®dùyWâ¸Ðšƒó>gvgVóÓHb}
+¬Ï¤ìeˆR÷GóíßCûO=ûSvG|×{ùZò¾#NsÝ¿›l˸¿KÄ e”Òä·‡KêbQ®¾¤RÊä—üóÇ7É¢‚Žñj
+!“¬Ä
+–EòûÀŠ$›­¡%!ÉjðþîÍË׶£MhGã–‡º¸Ã!½ïÚ%+.7JŸÞ—0.ŒJa¸cTÅ ÑÂX°%B3Žc–½wïi cßô ÕYÕÿJ˜s¼?ï¡5beÖ{Û»m…Ñ~*‰5\—¦Q‹q¶ &Ñ”)¨|¡¤´•Æ©_²Á”íe˜…™a«þÀp8"ÄÊÐ…Ì)µQCŒåÜ{òªhÿ¥’·Óž€ªÆªLFÖð4aìz]¨¨vI´ìê«“¾jíõ„¯ðrc0¸ñk}5ÜøêWt
+zi².Ð;­ÏÖþ"ÎbÕתPy€š,VµoLÑx€ˆtFôSçC*¯j–U>ÔdZ¥“[T!-O¦Ø
+g„»d„-")ÊTê|6ó3îãÀ¨ªÎW56‡r`ÍY´Ò-uˆTÒ&e¾\硘Â_“¬^Ò¨ ÊêbTPô«)óîä}éUñ8P.ÉüJŠù ÕÂ%Ëu1Zz;d±eì5 ×Eê·X]åÈ+.Ö+r@ø­k’Š‚yÀÁ£ÐìX„Jâk†C¸]Õ`£Yòó8Ÿ‡¶¥75²Ñ!SåUåÅÏ`”ài°VI6~Ä&¯¡Ze¬‹ßB¯¡è%?jš•qqX«P)ÂÂn°b°²¯·(—k æ7á,ycÂPD˜
+à_¬=JŠ›pLGEíç ý¡Y´qd0)³–p
+Wç„ií¼Ò×Å=R mˆÐ22"­eÜ lúÞ™Rt„ZG¨R,BëÏ5~RŒ2œøj”—u^MŠjU߬Šò~–ÏŠ2MóÑ_¯&Ùl•ï¯‘KE,ƒ¸÷{ѯ{Íá’Ä”1âpE—Âÿ`O9°œêÜ'Æž²†P8<çÄž¦œ8®ä{ÏÄÞi_µãö|Õ`Ïðˆ=(L| Æ’ÐÙÚ#«-ò Û Ïó.×Wžkû±n‘ƒÁÆ´€Ãy
+§1DÆ;|C¶a ²-Àƒ[Â(ÞpwA Ÿ‡s?·qu¨ƒ9êH@¼ô”ÿ.ø˜l`vAüqJ‰–†ŸæŸ:7ÿfÙ?Á%Ê)s’ŠJ¢¨p'ùÇŸÁ¿k*ñ\þI£!—Öö þÁ?"¨ÖçäÜèf¾úê™ü;í+¡ÀœNí»êœY"ñ'hbx ¡Ü¹#D1^]‰¡6Ä>da ñ-„O"­³Ü'w8"àËc «ZHrµ~š†h€*ëЋõ‚–
+×Ö‡@‹Ç¦IäçÜ나hµÛ"¦‚!¼‡Ùc/i¸eâh¬rÒÎ&ÄxŬtGàˆ3#Gqy±fXdd´\
+ÕÊqóñVü¦kˆVýÊ/ éðxÑ„*–˜26„‹¼›6kÁÅÖáŽKì&4}xȪF-ì+¶ú¶q;FÐ8f‚R׳x,°¶ØÝÎ0ϨEV¯ž©ÇüàëóöÓ2Úíýk©Aendstream
+endobj
+1187 0 obj <<
+/Type /Page
+/Contents 1188 0 R
+/Resources 1186 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+>> endobj
+1189 0 obj <<
+/D [1187 0 R /XYZ 144 757.9346 null]
+>> endobj
+1190 0 obj <<
+/D [1187 0 R /XYZ 144 734.0242 null]
+>> endobj
+1191 0 obj <<
+/D [1187 0 R /XYZ 351.6378 730.3475 null]
+>> endobj
+692 0 obj <<
+/D [1187 0 R /XYZ 495.6378 730.3475 null]
+>> endobj
+1192 0 obj <<
+/D [1187 0 R /XYZ 144 613.2865 null]
+>> endobj
+1193 0 obj <<
+/D [1187 0 R /XYZ 351.6378 609.6097 null]
+>> endobj
+693 0 obj <<
+/D [1187 0 R /XYZ 495.6378 609.6097 null]
+>> endobj
+1194 0 obj <<
+/D [1187 0 R /XYZ 144 492.5487 null]
+>> endobj
+1195 0 obj <<
+/D [1187 0 R /XYZ 351.6378 488.872 null]
+>> endobj
+694 0 obj <<
+/D [1187 0 R /XYZ 495.6378 488.872 null]
+>> endobj
+1196 0 obj <<
+/D [1187 0 R /XYZ 144 371.811 null]
+>> endobj
+1197 0 obj <<
+/D [1187 0 R /XYZ 351.6378 368.1342 null]
+>> endobj
+746 0 obj <<
+/D [1187 0 R /XYZ 495.6378 368.1342 null]
+>> endobj
+1198 0 obj <<
+/D [1187 0 R /XYZ 144 251.0732 null]
+>> endobj
+1199 0 obj <<
+/D [1187 0 R /XYZ 351.6378 247.3965 null]
+>> endobj
+747 0 obj <<
+/D [1187 0 R /XYZ 495.6378 247.3965 null]
+>> endobj
+1186 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1203 0 obj <<
+/Length 1831
+/Filter /FlateDecode
+>>
+stream
+xÚíš_oÛ6Àßý)ü6ˆYþ—Ø¡0`V ÛÚä­-0Å–m­¶ìHrÒb_~wGZ–mÅM§Ã6£@JQGO–èsø'úBë~lb收ýÑ¢ÇûSèÿ±'Âý!
+ Ûß_õž½LúŽ9+mÿj²;ÅÕøm¤øàýÕ«g/µlII§™q
+&E‘«Ydt[†3'I¹\DtýŽ =íœd¥ ²¿ d¥#üûa`L”NiþÞW%F*&cc›«b祆 îW]R2fVÅ 8‡3e…D™›ÞÛ÷¼?ÙW=èu‰éßÁgÂ9Ù_ôÐKábÞ»ì½n&ãý¡fI,Õý³øaf Í0`w"¡³\¸xäLÃfªaú‡"Á_±H`¤7•ö‘„­Ã\Ì…Tƒï.³8‘’BûŽžÂ1*ˆìål9Š¨¬ñRG£¯Vu¾,°Áö£®LÐ V2k•8Çêh¬}&V*†ñø<‡X‰&V×ÛXý‚AÁ(MÖ9F§‰Ù¯ª4\ÒUé/Vð–UMó´ÌjŠißÀãOÚ{« i{M2¹ˆÛFŽü©+ÐQc+›Ï³iK8h©³Šn7B.‰~I³Û|IÚ†`¼±ÚÑWd(|Y‰g~®ì£ÿ¿
+ ÈIªNë¼ò^(¡I{¶#h§f7ë¬Y ˜ŸI±Ì${zoÆE0ÉÂÏw³ÎG7kÚ÷ ?Ø&¼ÞqrpN1ª©w]±`gÒè¤Ë‘Uðä@ºt„ÕgÁgÞ‘U½#3«:øî§q¶]ž€t Þ,ÅŒrvGiV–¹·¼æ7DGæÜbwVViIk[W߆È^Í,%7†x—í5-ë‚”:ؘø\´”Ö™Ë ðà‹zë‚9Ùâ"ì]Ü á&’×éµß6Ìã¨ÍÀ¡ä†ÁS
+¢glâ7Ö%󖇈£§ã~ÄA`˜Ö΃ó@ÄŽ2Š9OýNpˆi2Iiµoù
+ä^õ&ÝÞðþª6ê¹ñÔQ r¨`LK¹&_bB~½Îýû¼:÷ü8Ž5tdÀZx ˆ=Þѹ¿ØT;^œ¨
+endobj
+1202 0 obj <<
+/Type /Page
+/Contents 1203 0 R
+/Resources 1201 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+/Annots [ 1215 0 R 1216 0 R ]
+>> endobj
+1215 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [194.8098 109.4693 206.765 120.3175]
+/Subtype /Link
+/A << /S /GoTo /D (figure.85) >>
+>> endobj
+1216 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [209.7538 109.4693 221.709 120.3175]
+/Subtype /Link
+/A << /S /GoTo /D (figure.90) >>
+>> endobj
+1204 0 obj <<
+/D [1202 0 R /XYZ 144 757.9346 null]
+>> endobj
+1205 0 obj <<
+/D [1202 0 R /XYZ 144 734.0242 null]
+>> endobj
+1206 0 obj <<
+/D [1202 0 R /XYZ 351.6378 730.3475 null]
+>> endobj
+748 0 obj <<
+/D [1202 0 R /XYZ 495.6378 730.3475 null]
+>> endobj
+1207 0 obj <<
+/D [1202 0 R /XYZ 144 613.2865 null]
+>> endobj
+1208 0 obj <<
+/D [1202 0 R /XYZ 351.6378 609.6097 null]
+>> endobj
+749 0 obj <<
+/D [1202 0 R /XYZ 495.6378 609.6097 null]
+>> endobj
+1209 0 obj <<
+/D [1202 0 R /XYZ 144 492.5487 null]
+>> endobj
+1210 0 obj <<
+/D [1202 0 R /XYZ 351.6378 488.872 null]
+>> endobj
+750 0 obj <<
+/D [1202 0 R /XYZ 495.6378 488.872 null]
+>> endobj
+1211 0 obj <<
+/D [1202 0 R /XYZ 144 371.811 null]
+>> endobj
+1212 0 obj <<
+/D [1202 0 R /XYZ 351.6378 368.1342 null]
+>> endobj
+751 0 obj <<
+/D [1202 0 R /XYZ 495.6378 368.1342 null]
+>> endobj
+1213 0 obj <<
+/D [1202 0 R /XYZ 144 251.0732 null]
+>> endobj
+1214 0 obj <<
+/D [1202 0 R /XYZ 351.6378 247.3965 null]
+>> endobj
+752 0 obj <<
+/D [1202 0 R /XYZ 495.6378 247.3965 null]
+>> endobj
+1201 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1219 0 obj <<
+/Length 2126
+/Filter /FlateDecode
+>>
+stream
+xÚíZmã¶þî_áo‘€Ãw‰-‚ -zm/Àµ‡[ôËå€ÕÚò®ZÛòÊòmòï;á^lËÚE6È僱ÀŠ¤†ržá<ÊbÎáOÌ…ÖóÔ¤Ì)mç‹ÍŒÏï¡ýï3Þ'( %þr3ûö­–sÇœ•v~³:ãfù)Rq"8çÑ¿v±ˆš²Úîÿ'ZëèÇâ—§X¦QUËå>N”ÒQ¾Å
+–UôŸ8SQ¾>@KƒDûøóÍ»oßfmÊ:¦„t0=¯K Èìo7Ý”TL¦ÆN¯K¥Ž¤w‚«1)™2«Ò ¬À™²B¢ÌãìÓg>_‚ì»´ºÌÌŸ Â™pNÎ73´F¨¬ggºÁø<Ñ,K¥º<
+uã0J(†Ç ­˜åÂ@å•#%ÝPIèúš&"Á^©È '-Õ;Œa.å!”`Nm- ÄS–fRz$â†çðO€+}|¨Ðê«:ZäXÛ¡7a¢®LÐ «dÖ*qÅj«Î^Ï`ÕÛ•°Vw«TFï,¬eC¥¢”öy¨<˜XáÁ£jß`Ûa×~¯7,NŒ4чC‰à"ÜD¯½:-0¤Q¹¥‹ßo½.îKjûq‹}ó} ‘‹Gïs/÷‚J‰…Š„·Åã¡ ¢ÿóˆÖ}ÐZ~̼)!hi+ñîØzcAíˆBF»ºü‡=6Ôòx(ɈŠÇC¾!_wÞ Þ„Æ¾hÊþsú“î¼aý´`©h–ƒ_å‚Zȶ%UÈ`{Z…éldEôÏe±¡¶ÇCI…|tºE]ûá71Øå@1:QÖDùò 6y õ>¯ÃœÿŒsÌK=äÛ09¬Õ¨ 4±7XI±r®·Ü‚¡¼â7Zqê
+C¨ßeãûmÁ6UgÇcVI„âa;HÉ„µÎ+}[Þ#¡ ‘©2x¬#¶˜–ï>јZ ÍãƈÀTëü®X¯ªz“7ßíÀç·#äæ4Ú¶=>ŸE9ÜÏV&µ¥5Ž aLètv ‘/¥3ã ö¥ö"ÉAÌd)ºŽ8e3\VûxÑrÙn=.s™åŠq^z)—MÕÉ!u×"å™L ­`kShm¨a‘S´ËCõPS¡#3ÿɬ!P›é+™]Éì+™ƒÜÆÁ±z’ÌÌ«Él_ì¾ÛVÛâ|6Ãý:Ác†k\vå±ßÇtŠq_â1ž± ¦d-3†Ð: œå?>øÀÓef>˜`f†…íe6Ó™dZ]áz1›MÃÕÛõ°»!`°Ã=©I—“6
+Ïo–ø­ ™¶tfx ‰ï»[H|wù‡¾òÛ•ß¾¿if¤4Óü–þ&™Û®¨Ëj9BpÓ½ø8ÁI«`ç+sà¤c&xùƒ¢TŠ¥Ú öÿpÂÂd ³ÇNŠö¿HϦÓpÒ¨ùp¼s­Ô¹Úẅ­ÜÚcµ·h\Èq¿¡”ï«æ¡Ä¦{²wÙ›>_.ÛÏ–ákfŽñˆœª¦–Œ
+endobj
+1218 0 obj <<
+/Type /Page
+/Contents 1219 0 R
+/Resources 1217 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+>> endobj
+1220 0 obj <<
+/D [1218 0 R /XYZ 144 757.9346 null]
+>> endobj
+1221 0 obj <<
+/D [1218 0 R /XYZ 144 734.0242 null]
+>> endobj
+1222 0 obj <<
+/D [1218 0 R /XYZ 351.6378 730.3475 null]
+>> endobj
+753 0 obj <<
+/D [1218 0 R /XYZ 495.6378 730.3475 null]
+>> endobj
+1223 0 obj <<
+/D [1218 0 R /XYZ 144 613.4082 null]
+>> endobj
+1224 0 obj <<
+/D [1218 0 R /XYZ 351.6378 609.7315 null]
+>> endobj
+754 0 obj <<
+/D [1218 0 R /XYZ 495.6378 609.7315 null]
+>> endobj
+1225 0 obj <<
+/D [1218 0 R /XYZ 144 492.7922 null]
+>> endobj
+1226 0 obj <<
+/D [1218 0 R /XYZ 351.6378 489.1155 null]
+>> endobj
+755 0 obj <<
+/D [1218 0 R /XYZ 495.6378 489.1155 null]
+>> endobj
+1227 0 obj <<
+/D [1218 0 R /XYZ 144 372.1762 null]
+>> endobj
+1228 0 obj <<
+/D [1218 0 R /XYZ 351.6378 368.4994 null]
+>> endobj
+756 0 obj <<
+/D [1218 0 R /XYZ 495.6378 368.4994 null]
+>> endobj
+86 0 obj <<
+/D [1218 0 R /XYZ 144 142.7 null]
+>> endobj
+1217 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F43 455 0 R /F23 307 0 R /F40 356 0 R /F50 892 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1231 0 obj <<
+/Length 2845
+/Filter /FlateDecode
+>>
+stream
+xÚíZÝÛ¸߿¸—È@¬ã7Ň-š"÷p× [ÜC Z[¶…³-¯%í&ÿ}烒e[v‚¦×—bŠÉ™áï7#­œø''Ò˜‰·> Ú¸É|{'&+èÿÇŒã3˜ %þz÷ã«lÒà”›Ü/OUÜ/Þ%ZM?Üÿüã+£R*˜Ô JQä~]D3”©ñYeÞ¶S™<¼Ò¬Fõ¬
+QöŸS•%ùÿÿ}jm’¯HÿÝßïû“X¥Så­»}\íKÍ@<H¡Ç¤”OöG¤ÚI…2wï>ˆÉd¾ƒÞÙÉ3<ˆT† &Û;´R|Øܽ½{Ó+“™I3¯ôu-<M€–ØŒNI£S'¤…‡oÔ4ëUÍâÔo9àLzíåe3ù¨G
+B' ^Hr)˜Ó8>õ™RäÚ÷Šþ“Ó™Ͼ]WÓ™L >šdžãÓ¾)«6Òs¯k׆S¦ÎiùÝW7}ÕÛë ¾:Ú•}%{_=D_y•ü‚NÁƲ-nÍÑKy[çñ±%gâx~DRÕ öµ›üP`£I§3«lò¦-ѹè¸úÎXZ£&Zc|Rî¦*$ ÍÛlŠUÉÝQ1é-êæ/S
+§Ìxz2#02£ÞÝu2sB¥AYó̾’Ìn;«—»pÖÃÀYÄfÀ{ ·›áµÁŽ ’F¼<>v¤†=©µòî¡hnà5ïIM›¬'5 4”YE¡KR3žHí©¬x"óÎV‚­)9Îb8pd±;TÇ`8¶§³‹9‘D±í(}•ó™9¸´Ñf¡ðñÔ»9‡|[§²?ŽÊT6 ù&“…ÿ„Éä9“ÁA—;ppã^ÖDf”‰B‡›D¦¾‚Ⱦ'ú_KdÆ;¨t]v…Èt釷¨ÌÀöæ¼(Ã8žAá V8 çsnë 5ü½Ám&ƒð̼ûä¶Ûþ;ÚõܽÿNqˆ«6ÓWmÐ=¶nÉ*.$7FŸ™qUl$ÖóÙèuäF`GäæCOnƒ
+'uÜ\˜Ë­K°½V] ù^j3ÏùÙÅ®Ad|è¼"‡ló¤o:ƒ›Zñ/:€^è %}Â7¯ä-4"8Ë Ø笣Žñ mx„Ì^-Hœ¨->‘ð¼mŠ¸zÍÛ)àF
+EZƒt9›J‹¯p»lO²D×7
+Ò·à't þ’ê=/GjÍÃÕ*®¾!°‹"æö4½§<V®ËxÍ^€ù3å’û5¡—CP£S`ó„‹z lQÅØÁñgXwfÞ±î£Ê%Ê­Xîpä ÆoD(ȯÝ­Sß}aØ÷_}]ˆöÖ0~Ê ´OlJƒ}@ªô§À‡<NO¡x iˆÁ ™ðò2ã«å3y›ë¢i÷#/dª¥Õ#WºGOH¸û8üÔR¥:×^>ͲŒA[ÓµQð¿T@“0;¦sæÞRì(íC*ðîx+† Hí ˾ÿÒ3üÌsºH?!•ñýw0 xBKðÔäùŠ){„¼M—p|ÆÇ×À9ž}Qâ #ÚÇ> ÕC x
+b0¡ªHÂËêpTI”ŽƒÈ94ÿø‰ž3ëX°: ä(G‚û½é6ûÌ@ƒ­ò¦æ5Åv—R¢¾A¶SŒ&6s®ŒòfÈΑŸ¹f¢|€K’a^0dVRh ‰’{ØÿÚŒ¼Ïr€-!Œòjü
+«qêìN—½dÚ 2?˜C¾óC†Îj? "x>5ªˆ+Ä´ˆ#ǸT@éz¥öÞ
+~ï ³ÏÏD‡lºì jàj3ŠŽ¹H£yâ¡q÷XÈ"…î^øRl©ä_uÑ-VŒŽ†ªH!KtœF/Á+¥—9×SëâÀϼg´Næ“e{Ë]W!54,ÕI Ñü§|ÓÔK<Ë‹)WˆÞp…Z˜~´÷}EÝ\ÂBoÔÓ³Qw[úm±#ð„Õ\#Åk@Ÿ*Ð6Ðoð!£¼ì'°ÿ,gåh-9i!ÿÌúèo,°6=]¬ƒ{èÀ MàSÄ-=¯K
+ñu·Ã^÷¾/üŠü0vdJþBÖ½ CÅÇMYã_8#“߆õÎiëçå@u¹ˆZzu#¹Ë0¥ç5¦ü úðµ…<’(
+_¹X0/ÖðRAçˆs¿
+¿¬²èð$¹íè+0 ('Ôèß&ôŒ'†£ÿ]±™'endstream
+endobj
+1230 0 obj <<
+/Type /Page
+/Contents 1231 0 R
+/Resources 1229 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+/Annots [ 1239 0 R 1240 0 R ]
+>> endobj
+1239 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [261.8361 248.0294 268.81 258.8776]
+/Subtype /Link
+/A << /S /GoTo /D (table.5) >>
+>> endobj
+1240 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.0206 155.6467 259.7432 166.7716]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.7) >>
+>> endobj
+1232 0 obj <<
+/D [1230 0 R /XYZ 144 757.9346 null]
+>> endobj
+1233 0 obj <<
+/D [1230 0 R /XYZ 144 734.0242 null]
+>> endobj
+1234 0 obj <<
+/D [1230 0 R /XYZ 351.6378 730.3475 null]
+>> endobj
+757 0 obj <<
+/D [1230 0 R /XYZ 495.6378 730.3475 null]
+>> endobj
+1235 0 obj <<
+/D [1230 0 R /XYZ 144 613.2865 null]
+>> endobj
+1236 0 obj <<
+/D [1230 0 R /XYZ 351.6378 609.6097 null]
+>> endobj
+758 0 obj <<
+/D [1230 0 R /XYZ 495.6378 609.6097 null]
+>> endobj
+1237 0 obj <<
+/D [1230 0 R /XYZ 144 492.5487 null]
+>> endobj
+1238 0 obj <<
+/D [1230 0 R /XYZ 351.6378 488.872 null]
+>> endobj
+759 0 obj <<
+/D [1230 0 R /XYZ 495.6378 488.872 null]
+>> endobj
+90 0 obj <<
+/D [1230 0 R /XYZ 144 293.0411 null]
+>> endobj
+94 0 obj <<
+/D [1230 0 R /XYZ 144 235.0849 null]
+>> endobj
+1229 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F43 455 0 R /F41 374 0 R /F39 351 0 R /F50 892 0 R /F40 356 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1243 0 obj <<
+/Length 3793
+/Filter /FlateDecode
+>>
+stream
+xÚÝZ[oÜÆ~ׯXÄ(̼ çÆ!ƒ¦(
+ÄAÒ4m¡yH˜ÚåJŒ)rËåZVŠþ÷žÛð²¢d»q  %çrfæ\¿s†j•ÀŸZ)kWÞù876]mo/’Õ5´y¡¤ƒ6Óº¼øô¥Õ«<ÎS®.÷s—»"³Þ¨$I¢¿Ö*꫶9~¶ÞXk£?—÷wkí£¶ƒŽÝq½1ÆFEƒ/øl¢¬3õ ZJ ×?]~ýéËl²šIóØ(Ãöh-ƒC.¾¸¶ì´‰µwéÓç2>çQž«Ä<qzcãD[3œ~ºÚØçW^¹8Í mê’Žq§¨K>¤ûŒObÕô(yì¼ 'ùO}õc¢ìõÃSë<N•Ò2ôxXot•[äQÓpÖ–Wj¦ÇçœQ6ƒ-º|åäašã‰þyñÃOÉjgÿú"‰}îWwðœÄ&ÏÜêö¤iœáÂÜP_|wñ÷)„âfJ’˜dÌ*ƒí§–TÄÙ8õÆ­ÒÎÄLe€~¿ÎsДš¦ 
+u8Ÿ[ö*=ÃtììC4
+Hw¨˜¥8(ÒÕkØ…¹¶XY4»u´}Nõí¡Øý|:ö¿æ|ñ6(DèÝ$èì‚7Ô÷ûm<pBŠz©¿&çuÀh˜˜èî¦ld*³·EƾA Iæ<_‚T`´ŠžffCÛ*ºãÿ™)Žf'Þ³koÏ”MÂøD-Ÿp QóÌÿê¤Ñ2½äñŒ{º×’i½ÁÃ`˜Í¬’°[ý¶íË…´R6@ ÂPĉeäªp¡w)¶Xx½viáÛ-µw冕U*<à¹)<·Dö-fª5©ç]ÈÇ›kî|Ct§õ j¾ÂÁ÷ø ê½Ã5*žAZ}++´a%ž;“Ük×'¬Ù’oë€s
+0ºsšŽË‹wÕXˆÐiTW (­k¸
+3Ô0VÑ^@Cî[ÃÖçïJhX¨]ÚÔâˆ~p4p¶Šd>e{8eËi_ч¡2½¨[$vÍ£Ø*±=˜?¶VCA3;œ
+úó
+!Ç[vö¸â”›"¿ÂÕ!x S¼«¤8$Ël¥PŠYm-Ìœ–Y)KkP]~>M0&¶öÌ Ñí_!è—{Šù}V¸sRÇ’d»ã<NÚ 'DÙÔ²Dðʲ9ÄŽ¼”˜Ø•2K  E_½‘™8à›‘Ùè —L”<¤8‘”w@¹y!§ÍÌ ™4A GÁ¹<çÎàš…Ú ;$J.ðÜË9¹à‡Ó! Hrk®R×\ÐWãY­£ûdجå6úþfŒKâoÎ}v?AÖ©L0ÊÏàô¼z&u{|9V×®p,zGlû¥¶3ü )‡±•[jXqƹ{º`–¢?•Fa/šL‡N_ÚFZ™<CÙŠÄ^ÞÎÔÏæw¦ ÍÎu±×Yðć?
+dÎg)m¬‡Z¨”ÜÔ›CÆ«B]àxâ{0’5H°èÏ3­| (D‚,ÑóvJÎ9qWy®1q!Øð~–·7S’” Íöª!¯I]îÆ•I=î¸Ñráô0>1î¬X< #&6É€N⹜à{¦fÍ7¸°Á¦›Œ}(NE÷¨¹îÎÞ!ÎþféD*¯>®@1·„l1ýx(¾C †@ÏÔ
+Ô°@¥Ngœ“\ë¹e» ÂZÀþN«Ƶ :…ûð2õì¹`°~ÚG«Ç&ÆýgÐ . ¾w„{.è<tsp;¢és=ÑðQ ·F;òS÷m7#FV3‚àÙ†ºˆE>=:P|®Ë}ÏO·EwM`QÖ« QÕa‘Á,–ãü zŒB.˜v!56þ‘£AûV EGu3<¥Ó@|:”<ópcÞG“"ð[î ÞŸ§óÏâv?ÿ8ÂÁ˜!FS0„†JöVÔáÈíSi˜ÆWn)CÀ€G7°Tð•°¸§"Ì&âÑ\  [¨ ˜g’÷¤=$·Ø‡ ˜$uÅ%ÊaõŒ—ô’oÕ]õ¸iRئä±ãÅZfìŸ9¿d¹"dþ'¡b iÒ=þkOý» =f‚¼!C @œNmÈ›Lê*®¬b¶ ¥E%Ù $08ìБRužÜâ:Ò·PþÅ懙ŒM2+ðAOiC<ÃÝ5V(è‹
+¹…œš³7ÜÚ/!ÏH0o™À\*ÔÍ–ú´0&”ƒ[XÞ¹èg¢=U‚<07Ôk4`-•o*`ã<J{kØCWHVÃíX‹“x—0^ä¾ÈŽ7Hã°t6òŽ’Êå}mâØFO å1óµÆ;ôj(~áÈ\a¸ /¨aŠ´©ô>ŽÆ…"x/h§M¢(D­¤=CV.ûãÖípãÔÃxlð¹ç…ka2³‰[ªM'øSž˜÷Ê©Ø'>(öòil!&`öuR
+o7!dB­×ídS$òÇNør…õÀÍb¸U¥ æ
+endobj
+1242 0 obj <<
+/Type /Page
+/Contents 1243 0 R
+/Resources 1241 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+/Annots [ 1248 0 R 1249 0 R 1253 0 R 1255 0 R 1257 0 R ]
+>> endobj
+1248 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.7204 663.7241 218.5169 676.6755]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.13) >>
+>> endobj
+1249 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [329.0146 318.801 339.4477 331.1171]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.14) >>
+>> endobj
+1253 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.9301 130.777 270.6154 142.7322]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.1) >>
+>> endobj
+1255 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [304.0438 93.8754 323.4436 104.6849]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.2) >>
+>> endobj
+1257 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [445.5888 85.2179 464.9885 95.8679]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.5) >>
+>> endobj
+1244 0 obj <<
+/D [1242 0 R /XYZ 144 757.9346 null]
+>> endobj
+783 0 obj <<
+/D [1242 0 R /XYZ 144 734.0242 null]
+>> endobj
+98 0 obj <<
+/D [1242 0 R /XYZ 144 409.9177 null]
+>> endobj
+102 0 obj <<
+/D [1242 0 R /XYZ 144 186.5816 null]
+>> endobj
+1254 0 obj <<
+/D [1242 0 R /XYZ 159.2431 116.6401 null]
+>> endobj
+1256 0 obj <<
+/D [1242 0 R /XYZ 159.2431 97.6712 null]
+>> endobj
+1241 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F41 374 0 R /F33 316 0 R /F32 319 0 R /F34 1247 0 R /F25 322 0 R /F40 356 0 R /F43 455 0 R /F50 892 0 R /F7 803 0 R /F49 836 0 R /F59 1252 0 R /F53 943 0 R /F24 334 0 R /F26 931 0 R /F28 873 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1260 0 obj <<
+/Length 4086
+/Filter /FlateDecode
+>>
+stream
+xÚ­ÙŽÛFò}¾bk
+ÿÔ­²ö6wyR›Ýn7éíæÿq£d}
+ì¿ït±ª6ø÷Ós«jOøo¾ýNâ´Itî²— ¾àÌÚ&i¦øÌD&|ª“»µµšŽ¸6:—x¢ø÷$æ`VÇfƒÃª…qû™!6´ÚÝér5@l [=5ã#œíõ˨'Ð#ÌW4-[ª-Ìlë­<=Ü­á§G<29Ú»#ØC§)V<¦#×J%¥sšXSÁz–"\_ðàÊýÂäHLÂAäA¿c8“– ­{¢à5Îà›«Îà †…SÁ,ñÚ¯¢ŽG’=ÂJ:˜Ó–FdM/ßTDZéåm½€uÿb°ÙÑ}ד4‰‹OôFØb !,ÒsøÝŸ6<¤Óþ6_ÝïªsZ­>!£¯xӡКM5Ö„:⌫CîðÝ#Cõ€nU¸&zŸš#sÅåê_'kÓSCûë×KÂnð…™È(1q“Ð ËʼnŽŸY"LʖΓÌ" çXg#
+êO,*ƒÀ ï;¿±
+ ±
+
+à3O >úÅ·’ì>ñJ&,Ô^7-lYwàìN6ðL3øÍÕ8GƒîaØÕÕiΫì/ÓöƒH—æ'*åXb+Š¬[ÒòȲӹp]”Ø[ªSD(´(Ù+Ô²Ò­ÞîÐSy:h«72Øk© Ùˆ[zòª
+‡s¦2WéH”’hâge,Ññ4Œü‡"ÞÖt²®ŠIJ`¡m<&¤ ç'Éý”Z~?«­¿DÃG{¤¤ù­çHËôdDé¤^IéT.üWb°elö­#ïó’ò
+ÙSuñüK| ¼`À ŽŸ&Ž‹:Ñ©õí–CÓ5GÙ>ŸV%Ô
+•%6ÏÕ­I2å,K™kž‰µil˜Àä,‡PÌ¥!å–ÏŠLås¦‘‘Av{ävÈ Ê^%þ͉çCFºQ[R!g}°a‘P;VíxD)\×ê|Fùs Ø’Ì+“)%ƒÞFðP´“;Õ!·…ÅVØYÂy±þ8ðM/4À=¾ åö¶>£š¦Œ”
+s0æÀv| Oƒ!œáà­Çp¥ÍûŠ’ ºÀšWÎYÁ¦“¹b$ir.viuÖÌ<šÃãŒ4†DÉÈK\בÄÿÐÖ)/¤…g¢d
+fç¬}Í
+þ"²Sl@HÛWÛI§Ud_>)¼¢È(y¬~‰"ñ$O¡þyd²8c7–‚à t~³z%>¶„€š¡‹ ú}¤Ê!‹tÚŠgQì‘>3¬8Ï,Âõª-¼kšýOZüuœ¿„Ó¶QÞ45jÅmµQˆ¶mëe\­ ‰{}‚«ï–ì56Ê•±3¿)Áþ+^fïB™ øçúo—7xi`
+ˆAPÏ-]>(¦v³/b2ÃËëÝLÌ#^&&ËÍô*êÑé¢;C võèötoüøû®ïÆ7»¾!½®‡æ7iì*ðNOE4«B[=Ô-Xä­oŽ^vÃkšêãÊ–Ûh˜˜õ;Ùoæ,·²¶)GÖÙÔ[77‹l\žN 5ådeÙ|
+âéŸML™ºg§tWáYJ x1yÔÒ@i¨°• RúàYŠj†ÈYÚà`xžÜ´dÆ7ÀŒôap–b…T -mê•«¥ÓåÝ07œO{Î|gàÛ]°²wà(¢Æ¬«LJYðöEaf™”ý¢Lê|¥ó7 Üý«|÷‰&YÃÒýÐŽmýŠg™V]ع/MdñÁ‡cËå üÜoú¶ï",ÌDÇÑE9gbè£Ê÷ óŒŠMmk”Rw ò(U‡ñ=i;@JN>?©|Iø/•K ië©ÒBVäŽu+÷ìÊgݹ<®üá¡ñ¿w,È­H—r‰A¥×–r‘¹½hŠLÏÙ
+çxYæû^ Y3_Ùt¦™ÏØ–õ7tãÈ®||ý¥r«]³ÅJ5»ðz®Œa¥ëef[‡Æà)Jš$»ç3/F‰iþšÄ+`®ƒð!_¨â³p £j©ˆ3i¢\à5ùðʜؑ_ ¨Ì“¼,}KtÓY6ŸŒ³
+®Í:­t LTÙ`§§®úóxðÅЭ3åcö—BwŒã…ÐÀ¼Ø‡Çþ)–úï»o7þX
+¶‹ð>Üÿ±x÷ÜŽé%aÚ8&T¢´c_ÐN÷D[6*iÞòƒHxן&»¹£˜e‘@:«#Õ÷G¸&Ç¥‰Í”×ø§†*DxaÔ…'ò¥3ÏÃRýžÇO“›JW‘©RÔl8Ï°r½\ûhƒm«z–l¢s¡ Ú¦ö±Â¥KÍEV]^ýH:ø Îó÷>ïëMßm©ëLi1¢<kïf•oå²qçôµ‚mgÑ+:R®¸‰ÊFôx#²ãí¾e}±K®asïìåe=ÝõÁ
+s[Œ”r™d!(˜Ô‹
+KZ]’ D§&`|9†^SiTD¥Â* ms©äŸG`õE6hð²
+ÈèÏôù´`Š­ôÀÈUœƒØª-Èc¾®µ‚7) BÈ’¬”¯Ê|Ný'|}·c…¶†ûæV¹Õ®ÚŒòÁƒïw=FöŠ—é^SaYƒÄRJî •,Ùs<ÓE¢t9•Uþ#8'— Ü+AãrlÓ³eàñU¾ú›%jžh)®¶ ¡Þó$+Ã"q
+¸š_"P›¨"jâ©¢@!›¿J*Yƒ_àMÖZ½ž|ëWé$Ë°P.! Y¶ˆŠÑ#Ï]µó . è,Mଥtk)&
+0G=„xàÚW ý y"®`»·pðÃÑ#„,OÂ
+®ø­…JÒîþìe^[Þ,`Ò*QyZ~9*þ%Ër¤
+o šßø´‡Ýë¡]xI¡µ(ý]Ü~Ée­u
+ñ£0ض€"Íèø
+ðR¬¶Ò@iþ‚T#/ÕCýï2½f†Í“´4îK9ފí[ßGxAš¦€ØiÌ—â~N^hŒÉ=Ôþ94ÊœÄð¯ÜÝø"„òÿC¤š)Õ¥¢ä&É\š-'—ÅB%V,ªÔüµüLþ XAÛBendstream
+endobj
+1259 0 obj <<
+/Type /Page
+/Contents 1260 0 R
+/Resources 1258 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1200 0 R
+/Annots [ 1262 0 R 1263 0 R 1264 0 R 1265 0 R 1266 0 R 1267 0 R 1268 0 R 1270 0 R ]
+>> endobj
+1262 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.1209 612.9782 213.2527 624.9333]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.3) >>
+>> endobj
+1263 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.6058 577.1127 294.8446 589.0678]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.2) >>
+>> endobj
+1264 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [316.2486 577.1127 331.5247 589.0678]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.91.4) >>
+>> endobj
+1265 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [474.4248 505.9351 484.8579 517.9745]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.15) >>
+>> endobj
+1266 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [312.3503 493.4265 319.3242 505.3817]
+/Subtype /Link
+/A << /S /GoTo /D (table.3) >>
+>> endobj
+1267 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [291.492 329.0043 301.9252 341.0436]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.16) >>
+>> endobj
+1268 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [470.5833 292.5853 493.0547 304.5405]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.2.1) >>
+>> endobj
+1270 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [438.3131 156.413 457.7128 167.9099]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.1.2) >>
+>> endobj
+1261 0 obj <<
+/D [1259 0 R /XYZ 144 757.9346 null]
+>> endobj
+106 0 obj <<
+/D [1259 0 R /XYZ 144 457.4018 null]
+>> endobj
+1269 0 obj <<
+/D [1259 0 R /XYZ 159.2431 169.7132 null]
+>> endobj
+1271 0 obj <<
+/D [1259 0 R /XYZ 159.2431 160.2088 null]
+>> endobj
+1258 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F45 799 0 R /F43 455 0 R /F7 803 0 R /F40 356 0 R /F50 892 0 R /F41 374 0 R /F25 322 0 R /F24 334 0 R /F31 337 0 R /F28 873 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1274 0 obj <<
+/Length 2118
+/Filter /FlateDecode
+>>
+stream
+xÚíZmoã6þî_áî—ÈhÅ’¾p8\ÛCÛC‹vƒûÒˆü’Ä·ŽåÚr·ù÷7CR²”ÈN²±»>ô ¡(r8œ>ó #1äø#†B©¡Õ–yPf8¹ðá öÿs Òûœäí_]¾|«äÐ3o¤^^we\NÊ`” Îyöýj$²j^.7åJ©ìÛÙý‡‘´Y¹ÆÓÍ(PY±¤jCö¬Xl±g†B²Íè—Ëo¾|ëZ«ñ „ô¨^XKÓÁ?.•µ&­6‡÷ÖÇQ9÷‚Cß(i™ë†9gà¦!¿~ú…§8ô›Aêý€œ ïåðn
+-c]6.CàKY[äСDô6JÌ…Ì{‡KKΤÑÞ_›Y7_ΚQ¡< Ûº¾nÿ€ñg¸ÐG9¬)ñ×á¨5Æ1kœï [Û¶æ9a+ «I±ªæh§˜aŽ„Ö$t€bt¹ÐL ‘¢]ñ‘Òœ£çdÝ€Øh^ ðÙg!@¯jyuW¬oæËphøR
+Š# £<S
+½ÿ ËKeH<æ{È3!¼€ÒŒžlÔË ðˆÇµ';FĸÅqÒâ6pßRùAë}f|aÏ+§?ìi{ä>Á ó˜ÈRî¹ú0ŸR†»í 4 º­Úü‡lë…;NÑÚA5ÂQ¼ŒîÖˆÕÂñ)—H¦8Gw·¢â•‘¦4¼ŸƒvðJÜ,ñ—ÞàUÚ!ðƒ—¶uz è"!"¦cÚ:‹-¦¥VÇOàWËšlÄÊ6ÔzOȸºˆ ¼Iä)ˇØL¨ÙŸ€Z¤ä•LçdUTž·p Y,ÚŽ‹€[€°èqíî¤q½æE 09™wUAÆXN‹õ4ö,Š‘ôhwàY¹¥w”êµ
+ß…Žqþ3n&ð¢"Zl![rœUÂ;Çc„þuŒSQLU…ÁwqY‘±½äI;ÅŒÿZò䀳ú¾‹3Ì~ck.˜ôæ ’JàÎÈc¦ûS°Tmõëë°T\ÑJ0O°T€¦Ašã³Tx>Kmëzž,•4©Åa‹™ËIûLh~ I=4§£¯?Þ'³:çÌylõ#3r0e¼™tv‡ÌãAæóðpÛé,âŸI0ýªFä”Óóv”Ó
+=0Ä—wôç ¸ 1a<女»l
+³¯[Ÿ:ˆˆâ!Ûîò,>ÕúµEeŽ/—ÓÇ»ï=Z·Ð8¤§Û%}…VOß6׳°ð*˜*¬3©ZÖ‡Ö±˜¾èÙy
+&Þ6ÒߤõÒ‡…ÔÞ­Šñbö†¼(|Ì õz÷}’
+endobj
+1273 0 obj <<
+/Type /Page
+/Contents 1274 0 R
+/Resources 1272 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+>> endobj
+1275 0 obj <<
+/D [1273 0 R /XYZ 144 757.9346 null]
+>> endobj
+761 0 obj <<
+/D [1273 0 R /XYZ 144 734.0242 null]
+>> endobj
+762 0 obj <<
+/D [1273 0 R /XYZ 144 586.0787 null]
+>> endobj
+763 0 obj <<
+/D [1273 0 R /XYZ 144 477.4857 null]
+>> endobj
+764 0 obj <<
+/D [1273 0 R /XYZ 144 328.5438 null]
+>> endobj
+760 0 obj <<
+/D [1273 0 R /XYZ 495.6378 294.9198 null]
+>> endobj
+1272 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F1 1278 0 R /F47 940 0 R /F32 319 0 R /F23 307 0 R /F24 334 0 R /F43 455 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1282 0 obj <<
+/Length 2811
+/Filter /FlateDecode
+>>
+stream
+xÚ¥YëoÛÈÿž¿Â(P„*,÷ÁWŠ|èšæŠ»¶À¸¹
+n‹”½›å´:Úÿ,t+ü¿ˆã ¸#þoþ~ãOkê4N^>®§z~f“ÃQCÑþÔÚ†Q¢øÔv±TJÇÁð šþ?}…ÏÛªÆGÕ/L<.–&µÁ¯4Óoñ+þÝã׶lñ3ãÇÿ÷‹Dãqº•0Ö|tµÔ*Ìt”‹R«ÖÃñ»rEÜ«f6Xƒ*qR«cוøâH‹%hT@†
+_ñ\1™ì~Q³áçªÙáo‘{ ÇÚGÞðTÑÑà­Ж-¦†žÃŠÓ¶"‚-ž©T˜Ç±¦C:nÆ؀佞w<~€WÜ#Å=r'õâ÷åž_¬ Ô(Íìöc§aœ(ËF‘Z1e)M&&Vâ?Òþ K›†‘bï¹bj…¦6 ,îP>7ö2MÄ<Se¡Ér{Hj’9È’9Yºã8ŠÆ<áhQl]À vé8
+ÚòÔpÕ¢p
+®Á]òöBWÊLð;GFÓU=M³Ëã÷´êñ„ŸtH FøÜ.Ppn_ä|ôŽìj2ô" pâéÒR}¤É0Pœzˆ³¼™È!¢ÐVšiŸ›í,¾^p°o¬ô%é௠€O ;5(†M¢ hKPœÍUð;j 9€–lœÅ~Í/8|ËšìQXÆÍ·epúÛ^…¤SÁ§ÆýNU]ó3-ù£oË¢wš¡ý;¦GÓmØÜé&Ê +§`eŽhÄ÷ó23ž¹Šn„OÌBðUpêsl4ɧ v꘿.r8j»¯ö3†±:ÌTæ"êÝb ))øÕ¦ò`]n
+ÔPÝó÷oQüq¶ ÎÉTïÃÚŒÅ0‰“$ÀdSÝ…«ÍŒ qz0©›b=>)ì«Ð¬òku4h¸’}˲<PrÀÐ oGRp&1•1aåjj«ò‹KVÞÔ:Ä€ç-›?òÀK&öØ—B}ÀX¯švºÏ‚êåóø<èf`¸<zêj¨]." è$X—Èc?(’F‹ ­l ¨
+y¢Ž4XÊN80Ö›Ò¡6©™O¨ BPÀC„ Ì)êšg
+i‚d`ýˆ“®2Æ·iÄ‘¹R—E®TT4+ v y.µaïë'”cêª4O$9F›ûd|éúb¿UNŽËŠ\3NÍà&t\V«o–º±ôf¨óNœÌj´7”Š` 9ÍË‹vB_ÙLÊ"ÔúømKáQK¥†¹þØcØÆêúk“„¤öÿ?ÇÊR£ÁÎ#Ïω ’å“Ú‚b´*jžiR’bº Tpóý†R*ñ[™Ú-ZŽÉ=PÉ©&š-]Q !âÁ è$“Ì×úUˆ«gúXeÂÔfNu"™+c¹,n}"ÄSüiÆ
+ 4èYŸAf¦Ÿ2
+C¸ÊT*ªgHÇyV €Ãa„5uÍM:DÚšàã8'!7ð¼˜2šç
+F˜éuRÁ –v Ÿƒ” ¹vñ[’W€£âŽ…÷éÞv(jñãÒŠŠ²ªtýš"K“‹—(¬„¡Š’t’„©:Ó±\T܃‰òdRÓ@Eþ܆j%Çœ/Å—Î%û|)vX4Ô%9 ñ4(p–J¥uµ*¨²e†tYC +gJa!oøy¨‹•ðä2ÆØï(žy`ç8W©æ6 • Æ% lã'—J|;¾YV&#•¥W&MÃÔ$z|³üüBÝQ/Çä|Ãœ^s%‰%_H
+“a°/f)pDZbƒý$2©ùcÔÄÆtñNˆGf”uH[¸™ u·;©ØhHœ¤9Œ=íb\SA pÕ0ºŒŸëÿ%Wñ´Å¤ú'lðì,ŽWü€«:?¹ŒB“÷‹áŠ¯mw|?@±æµbØ‹(-â—dÂsw¤)úóËu¡Ê¿]7øŸ(4$ìDë³{NŸ‰QŸ|k§äëIû!6£“9…Žî¨T ·²ä®Ü—-›\dïäZ€
+ uŽT
+ÍÖ/¯ƒ£1ù päÉœoË»jOógÒTZh{f2J¹ï¡:å;óRÎÿrŠ ¡$e–üÑm›“Œ÷§FÆv^Ká+ÆV("Ì0¯‹Û²F)ß Óˤ\?T­KQ°0üü†á¦º;¶"ѪY—0t™Ó‹õ7·ù¥\5è÷¯ÜgyIÁ%$]õ‡€h†>4‰Àyg~e7iÎ?²GãÙÿñÀ'êendstream
+endobj
+1281 0 obj <<
+/Type /Page
+/Contents 1282 0 R
+/Resources 1280 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+/Annots [ 1284 0 R ]
+>> endobj
+1284 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [365.7521 185.0887 372.726 195.9369]
+/Subtype /Link
+/A << /S /GoTo /D (map.1) >>
+>> endobj
+1283 0 obj <<
+/D [1281 0 R /XYZ 144 757.9346 null]
+>> endobj
+110 0 obj <<
+/D [1281 0 R /XYZ 144 734.0242 null]
+>> endobj
+114 0 obj <<
+/D [1281 0 R /XYZ 144 674.7346 null]
+>> endobj
+118 0 obj <<
+/D [1281 0 R /XYZ 144 472.8132 null]
+>> endobj
+1280 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F39 351 0 R /F50 892 0 R /F41 374 0 R /F40 356 0 R /F43 455 0 R /F45 799 0 R /F23 307 0 R /F37 328 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1287 0 obj <<
+/Length 12500
+/Filter /FlateDecode
+>>
+stream
+xÚím]Ç‘ßßóSÌ› †€çº«ŸÛ€ɵ‰`5}!ëň‰\ 9\ÎÐ’Að»§Ï9ÿ:3¤HE H€àÀ°æòÞsëVwUuu=ÛY˜ÿ³3Ëù¬•v)׳§/…³ïçûÿüÈôùÅòÀÅÃ'þøäÑo¿ÊñlœFõìÉwÂxòìëóüøÂBçÿùæå|uþú±_Þ½øvþyqýâîqìçÿx|‘R:ÿ·ó½»çÛ?þåîùÕ›íå_–g.Ÿ.ÿýáq)ç—ß_Ý.N¿yòçß~Õüxªã”,Ž‰íòÓ©-<úÓ“}%¦Sl¥þò2SÛSóña!ýÂf¤|
+1§}3¢S9Õfí¬Åù¢”¶bõß/_o ³ß=¾È9Ÿ?y¾¬üvy3Ÿ_-KûiÙ¤}»®¯¶nŸß,›ð£ž\÷îÇDZßlðn×o\^_oÿ|yùúV{'MN£[)ÔO½Ä¹6;Y ‘þJ¸œÿ±ùÕ¹Å_½xs{·½|¹`«Í~¸“1µ“‘Ïêh§Zú“ÿñèëoÂÙ³¹W~Nm´³çëpJ£—³—z›Û›¿qýè¯þÇ0œ]d;õœì³¶¯… I/ý Bêõ”'}çë/tá.¶o~á
+c8Mþ;Ëñ”s?‡¶~e7w6Þc§„\8…°ýéÁhIÐÜòØÀYCÀµ Z,´.äR$À™èhQÈ厀+´‚ÐÁª«'h Ù¹ú®3à$¡CÌBnTÜ&# tˆ]à —¶?!CJ†!e­4!dH‚–™}s2ä˜Ë"CANô<o5+¸Š"oçÒhÌR«ë!¤¼Æ@+AÈ „eˆy«FèP6BØ¢(pmƒ­ 9FZ« B‡…\FTk4Fö«èÀkbµ‚kÈU³‰ A®E!×:4Ñ‘ýV7䌑Ö66húvåŸÐyè‚YÙ.!'ú¦YÍ2³T_+Â#à a‘ã®"t›8XCÈ0ªë†Ä
+cŒ¸!h!,¹„Â6Y¹ в«ÈÎÉ žàºZv„*´èÀh’‡ŽÐA—¯2l¶Í„†P!nþ¥ ‘‡âI³…âJ³$2 ¾¯ MÈe„É¡1d¶I9г±€-ûb[BÀm÷%æέ ®8=*m[j6\´È@r ´!` †pCŒs«’‡ÌˆWM® ['{:3¸I?äŠéÕ Áœ$Í 1ìZª‡œém[+³Ò¶¡V²Ò®kpa°ë&ìƒ]v ¡C/Ž¢\»D¢df±2[KE°‰Rå:tk*ˆ;͆lˆÒ˜Å
+ZGü²ªCˆŒëp#lÈŽqÏ)°œÇPëU¡Z4f­MkM‰·Å¾˜HZkZ+¢°CSØ;f­µ Ü`À‰‰+ä²VŒ‰Ê+ƒf‚c[t
+~cdl»'†Â„u
+Ãv*{•‘0ùë «„n&ƒ1:‹ c%fE“Ž\䯃ꆲbâ1:ódáЀÙ
+‡ ’+•51„õ*ÆèÌ*L1BVÀ*DÊJú ŒÕéÙz vfe¨ Ñ‹‡`öj:&Ø™½Š‹±:óæ'¢Ê¸vR0”H­‘”PÃ/Ç.¥RYù°ÆXª¥5‹ שÆ,B…¾*›`–šò^7Ô4‹¬L¬3o—b3¨â:ˆM³3ï¥\Œ„‘•\ÙTÆ”å!ÇD:ó^Ê•Àº|3Æê̪»d*Ã&v^­c )ªÀ ¦CBVõÓ"axm³Xåu3¥f“Z,Õb¯u" mþ¿ ­1„UE"cv¦â•X Ûy]cw¦\À2½‰×Â1l—DÙ1
+Y 7±‹Ç,VgÆ°×2ÁΤ«XbŠà“©pŠ v:Ÿ$¨Ëèʘ)y Ó6(Ô½¤äÆìŒ^KÈ;“98¦WÕe;Ä(ª`e‚±W°þog”LµÒ4†íÀÒÄ›À1ÁΨ;{fÌÎXE&ع¨ÖíŒêD”»3JÅf&Ú›2VÀòĉ\Ty"³V5†ê v¶ƒ¶ÎËN™æwÑk'×ÑЖ0Â%YåŽÌR£ƒƒú-ªP”±;£ªÄ™êɉµ!šÀ1vgôúD†Oäx*L¸3¢µ˜ÁT<ÍTŠNì$cŒÝirw@ÑKŠ™x§I)–ÉØVÎΘ¦0VeÌNçâÊ„;­y׆M´Öuù-ê¡H&® â:-–±;½cGeìNSX¼2v§©j*)0u<¨L¸Ó+ªì.=÷ŽY¬:O0'ûdß½Û×æÛî45ŠiŒÝiRcÍ*ׄÜZ„ú­×½Q ÂÄÂŽ1<½^cžÞĪAíàåRh”ˆm@c¬§ ØTRàmÝcy:aÃÓä³kPŸ …žòô®‰±<ƒÚöô
+±Ý8häŠHÁ˜žêy0IÁ€S4NÃœw&äénûÍÒ©‚Æ°Ò€òtc<”~·1‚Í‚ƒƒDL”€d"czzh||y#ñ9A«„m‡ÝøòˆçÊuêUÖ ÛÎ:`|ÈŠ\÷Fj_,æÓX†‘,Êã<††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aÇаchØ14ìv ;††CÃŽ¡aàs<µ¾°I-åTãæùã“G¿ý*ŸÓ¨ó†û仳XË©/uBu¤S]Z$=yöõù›Çß<ùóÙ…»ˆãÔûT9ËG¯–ýéÉýx²Ouq2,¿Óí—j¿6DÊúúÒˆ{>ny¾üR@±µS]³Ò"·nB|¸ s }éäP{9µå”[Vú·IŽuÂi,Ýçmþ‰åÃÒDuI?úÔgë×Ò§¾ö! ¬ŸÖ.6Ÿ,Sž—'_lˆüÔz6w$ç”±ùA™[t±Î†›&Ïþч »X·2Å zñj.ýa…à¤õg÷„õ…þÞpQNci{ió“Å |ÿ‰>ðö&.ù¬Í7§jœÈL†´%?NÆœDÑŽ”ðíü=¾H¥œÿõêéã ;¿yõlû÷ËË×Ë¿Oó\š°úr/¨cø“_–‚æMZV¦yù¨·S\: èdon•zþÔMY$l÷rç_øR¯§¼4. _
+èÂ!]lßüÂ^ì{¶ÊBˆ¡|ò@H%ÊÒ¦Žpª½¶lW'-—D ‡\÷?§M:åi@¯´É€Ó{o,€r¦õ¨®‚–hV `jyZ­Ð¢O{€iNVørÃy…– Ù6Õ§SзA@SQtˆÈ¾mY‚˜’µB°F
+MÀ]kî¨(47WX5#ÐÜ?ƒTmC%¤´k@l¨„Ö}S+ŠÐæM}÷Ð4/9´ŠBC¸7J›~yרš€ê¯ï1-–»ÛÖÕ¸T`ã
+-îŠ/‡¦žç ¨.³¹F–ö8
+jÖi‘iCL¿¦qæ†Ø0Mö0su…&ÉJȾy†Ë1K f™¸ynKëzl`Ní
+­îiz nˆ=T5ë©¥|Æ ·Ž@“X!¶ZÕð
+½Æ‚웟¼„ dM,BŠ%DÄ`VkÖµ@€¦†à¹ŠgE›"bªåê  YiÛ[G
+ŠÁäÂÐTr…„Õ2iúå]I† Ä’W‹ø‘›–¢&©ñ ~ÿÈ®¹†AjüÔi.Ä
+Á¸dòGßG§Д~W§øT¥ŽBS¹ï
+q=š"™Gz U7š0\Åþ”0ªË<BÒªu6„Ûê>Ï€& ôú_g +
+3„s“ŸFçv%#»¦PS ë*ÔTÔäé)DË‚ÐÛØg̸mÀ
+¢TÚT 9uƒãFH|÷ãƒa]¡F˜C¡«²©D„?º‹<,ûBºңDfRTß’*ÔTÒ
+4äöÑ£¤
+Yisõ‚XC]>ÏRÖU¤©"w£®HS!ß¡¹Ä#¬»ÉhEl!'(rL6l1…š |cXw«‘m“ï®ô„°‡N£Žœmªkªˆ1Ô\¿ DP ©Å“Aü4B˜7;nĶÕ]Áº¯)ÔT3²oÒW5 Ì«>z̹[u Õ<@æ­¶]ž+¢ç›B•È+*5©H³îª:Üj 4GˆšWÆs0©˜Š~:Å‘CU¨©º MëD¼±UwÊšÎn¯)Ôâ
+5UD/W¾1‡¸×Ê׌°®BMñÆzG æ¯Ñq#n•Jœ©ˆ¤nüѲkæg8»ê¢×²k.¤Y©Bt•ÑMIØd¾!Š´ìÚŠ8ŠL#:¬n™íGVª«V‹ÈyÔ7d¥®bÛ¯(ÖÔ"MJa^Akˆ.-òZÔÎ0¯ ñzE›ê@ØMѦ†¸=‹
+›*Q\Ï#N²¢`rs+
+65$FWTÖÔ{ÈëÛ£+ÁqCˆ T1YÑꆨ¿,¹bTLî®LM¸!cš²²gbûe©˜F”‘¯=n&¡G€)y¦!N·µ‚à&ÔÞÍÔWÙ¯nˆ¾JŠ¬1ú*«´©1ú*º.m \õ€°›J›’Âä5é1Š²"N­TR°µÁꈾò’ô†8ðäièˆo1uW¥ &ö@LÚ ºÍU)‚›|•æ EH꼋äx¿Ö"(âÔ “²ãF0o”†éˆC0)Ù³!A™W Ô%œ:’—¢«R‚y£+$K%™«RDL•.Þ+ÌQCxWuh«âpígˆ\ P—îRŠ(…èw-D™F¥©tÄ…›+Sd¥
+pöŽÐTÞŽ¤HD:"YQA§Žä‹Ç슞à^¯$ï‘…ä¸!TPЩ3¹ ‰Õ™˜w çxT=nÏ»™ã†Á ÔÍÑ5¬ó.„ƒ¨Š>äµ#Ñ:ŽÛ@ÄT* É@7ÉÂ@¬"zÕ‰>*š„‰Ö)[h '¯¹ŽA 6—RÄ(²B*z“ÂB.÷žÎèù]ä3²m®¯=o2Š:« jV2
+#ò®KhŠ: ÄOfŠ:uÄ÷ã•‘yW¦4aFìZP’Ä 4á†Äꂸm 'eP=î Xï 2ßVhŽBi˜ø¶‚bNI
+: Ä·å=AÆ—·;Ú¦¸ûR™#DBÏ(@…­ó¶ ãËs¶ ââ_¤b8lU¹³(D×õÿšãÖ‘Û‡ÍDðµTĉäm$}j®µhb_Ä/¢ãÆð[o!ú aÕ‹ Ä ­€Ì(ÌùæÐm“{ ©• º4ÇÊ®hÕO·DZ ÌqÔ …&’&Æžíf7N’GªìÆÛ°ßï‘J– â‚‹-$7oé6˜‡7„o®aX‘ùiæa®¯›Í’¯”ñÓµLCxWjjô]øPÊŽ$ßCcBòn!šÙ<]¥3n^AC¶­yð °ébôp]g"Z)’0kÃq#EBŒ :É÷‰dÜ{x wDËäJ•[Ù fÏE@,?o·ß‘ywg#æPL`MÌ0E€Ur®2­‘á·$—·Ä¤Ñ4rß<‰$pDW}ˆTÉÓÞsÈG.uÄ·èó~:bsDW}ˆ­–‚ûæÃ¥:Rÿ“<#7$ûVqÄ™œÔf0¦èY‚HveB?=nÍPA1õŽôTIªÇoHqòܹÀ䎣9Ð{í MJ¦1Ù¼$‚Z—@)÷^¥Î”ayé%»J³jHó´¤ÆE•ž†døøœâ†$ådÅ›ÔÉÞçZ©×!Uz,
+±†Üí³+ÄÈÍŠ75¤È&+àÔRéÞë/»‚aJskãºdÅ› ‚fU=4$N·×ö3uà{Õ0¼®¯˜úyUÙ0 ²÷’@uÞ¥!·ñ¢ˆÓuǼ]ÓE EuÅkᘞQ®°˜þBÉÛƒ Ðüäeú29·!¼«ˆS 4É<§+Þ¿iªâêP¦>ÖInk‘kqX¤a*RçTp‚¸Í@7¦±›‘M ¥a*¼Þ iÕç]»XGõ>èˆù½·r¬ :Ø#noCŠkU'¨1dqܘ~šÂ ¤°7½eÕ*æT‘Ä´ê'%R¹VK!»Vj¡H|¢*Û¾šd‰OTŸ0€ÔU…œ*rE­Š9U¤WQí>
+š÷fZø
+F®Ô³¹ Þ£®°‚DêÚðL†OŠAæÞÇ ª¥Ó­ [7‡juÅœ˜YB=ºÌ2N'/rôI¹ˆù×e™–Ì@óAXÈB}<Ò>¦+èĈi/.XÖÈ©ƒœœY8벡óF} biœ5#£Ã5 rsën;P‘>+µí†X¬4b؇¾6rž53ƒÚ ’Þ:rB0ó©žH$w(E‚‘ø¡Ó(#ÑÈŽr€äAŽ‰/>kæ¨!Û¦ˆS1Ú&ñIM²q ‘¤i^ªZ/ÈPÈ)#W­áÓ”‘HÝ›ßø#5¡:ó晸™Wõ#GÈÎ!¹ +Õ$w„{å¡É„ígÞ2ªyBk ¡©Æd"•É¼¬?7„¦Š:åŒì›¢N™4{§¾ÜÔ$ Á¬rÇ‘y‡§ŒH¼BN™h¦b^ÔŸ‰²óÐi$·EFDT§L$ÞšE_(‚›"NÙ’ºÀ7šd¹Ð˜£†,T&L4óóY¨"Ni0ÐȳMvd&²xÍ{s¦@SÀ)G„wÕc2ÑΑáÝ*Ôh~~ ëT¾EB®ÑŒ1¬+Mj·‰u‘뇹¶
+ȶIÁ$ÂY<Y7‘'¥âM ±‡¢šH0'¥w.O„»Ø¢,˜Dt˜4oI‘ËO)ã)#Û xRʶJD¾ùxÔ(Ü„(RŸž’BaÖÎ{$„×lJ ¦–z‰(÷ü¤dXWQ¸)Ušjȶ¹’w»ÏÇ%DÉGä&"iIþDäâÜó.rˆ'…›¢å“ù)žvÛp‹ˆG65î—s7%„ jû‰Ê s͇œá^4o¬äK¡§‚MñÆzk æ ϒшèeŸÿˆØÞ>š2#TM %vÍÕ‹1¼»]O#QçnI±¦„¸´ÒpÜ‘Ï»~axWrE;˜Ý%(šibôAV±ˆèѼë*„º¶EDú
+ý›2ˆATmŠH”®8j„Ð×1Ál“+È®)؇[ÙÁ»Eeˆ›}Ul2D_›bB ‰w¨&°ê6 BÑíø0¢úû^ª±j ¶òÂtc´•Š›mUl2D[%²G$Fç…é†ðÇp%ˆžhÔeÕïmDr¦y]zDÌ«ªP“éÿ&½!ºªP“!êÅËÒm $•ÇͲmÉ•<¼
+6¢«*m2¢ZÛšDÁ]•ÿÎOTU-®!AºªÚ&#Rö­E×¥÷*Údˆ;PŽJChà—@$F×dÌbÕá¸!¼«JC”BS-®!Aº&c‘y#•iS´) dߢㆬÔu â]l*oB¦àXK®M3"YB i÷ÛƒÙj°âja]©+¤ÇêÒ*æî
+Iµð9Æ›«RdßTÜ[wƒhy±.sˆW~ˆŒ
+3BD»«D-÷àŠ”Øµn›T$'¾kß, 4èŽ[D$^REÀR°) æPW°‰QñCÚ% Aºž}L4¬3VÙçX›TðxÆ9Ó+¨á»"MŒùÒ›kx„Ä]W¤ b7Eš`NWYS@ŽÉá܆¸<ÇÄ)püÖa°rÆí—š¡0'‡v±öFìÛ”yBãyb×â<Ì6ÌI ¸Ü˜wì´Š/¢*8.8qJÊUqC€I"¹¢c£
+™1+Í»™¤À~gFîYݯ§ 4uüa.»]î?$PÒý¯Œ½'`j~iŒoA4@j–»âm€~¤P¢g4‘Z"¡!»ægxg eÐɶ»M‘ì
+‡fH>f÷œÆ ë‘VDË{ÇnÆÞ¤˜WxÓéfˆkÌÃ.ÆDùT}kHß=4$.‡FÒ<)…‰})8JÅ3ÉÌ ¤eãâÓ†¸šGJk`ó&/H Ej–}–†&'E‚€ðšGùV"÷é2HF¦
+Ç™¤¥û4£ˆ¤zißžD‰Üž«Çõ‘mSÊ!·ç=³¹TVÏ‹e2 •¼e‹îõL^lËU|’ ï¨AyÓ‰¬fòɇ6À,ìˆ\gµˆx{t›jÔ¬*"×ÝJ–—è ÆT] °(GçdD¢C{±JBj8¼ìÉçö ±¹iyS\¼
+ØË3%')²P?Æ‘ Mò¹ I½‹!r«LÞƒ¬0MP½·0Â!~3¢h)Ô’¹{¯s„‰ldíç8’]ÚN¼6Ab÷…l.ŒQ¤ŒÜB¢Â~L×ÿX½ ;Â!J¡A´Bôé(È®é8ÊHµCÌŽ¨:cfhˆòB¬ 7Yô1Æ@¤ìè#®˜æä>ˆ¹UzÚ
+Òf4äÄ»· PiA©#.ˆ—݇êhD¯ÏGVjŽ2`Z–|af8‹y+MÛFÔÉï“´ W`²ã Q¼¼¨‘„ dÏÒö1„B1T:3î^Ð
+2R¾Hû ˜P«Ì®9j{È[ˆ¼à%¥5 +•5T Ñq#$Á+KC8DöjÈJe$TCDA¡ÒÒ‘}Û€U"¶9‰ ÔýNÒJÄ6ƒ•–@“ÐW"¶9‰P%
+$)«:f„XyÏ°JTÂoYU k-HÉׂ‚⤕0ÖB×½­"WJ/*­¦üÌZ‘W,¡"¡É
+Á+J;çðŠÒŽ(„,©êÈMÜKJ;¢²\ì±H½¦´#*Ág†wC¨ HiGT‚ò6:‘¼¦´#Ñj ˜èˆ©–eßö„ð‡‚&!¨\ì=!Ðü'êz×Rš …
+”"6BÊ~´1¼[…M»†M¼¢t WÊ$IDÞ×=ï2‚°a–u–Jžm’ƒ\*wÞEÎ6/(™æ¸7â9v½žt ˜¤R¤»É7B¢¿û’x"Cví(²¡Vh~Àtȱë変‚EE`âõrÒщ£2š¼ƒTÇ 9@Šã6h›å7T-“U:Ù˜7d¥:Æ’#»Ý ¼Ïð@rd7_ c$A¨Uä1¡†¬38jÄ¢2:CæË”2¡*˜|ì£1ÐÄ» Y©büÌÁ«‚RC&€Ÿ)ϼV…[FŽJ¿ƒ0o‘Ð#×J/)e^Ë ¹Vç^ÄšWI©!#f‚JJ‘y÷˜£F0o¨~ô"
+Ë ñ.ª¬Ôs¼éà%0 :ʼnÒê ªÒ‰Ú@ iÓGƒªJ ìµN|[¡ „U¸!)²aó²#—#Õ”0Øk›/¸m†dD…,ä Y•š-9n Ù¸í2‘Cd!ê&ˆäÈúuܘi —®Í GÁÕ•Ò™v_jì ¶C$"õ + Ò¹xä·Ac¸M"âŽ
+Í¡‘*0"‘á0Zï4H@Í°Ö¾dÄ-Õ¡héFÄdÅ¡!vL`›’‰ÈÉ+×–!î(M °ÑÊx|¤þ hYEúbÑåñV©æÑ9¶!ótBÔõÞ˜` kË1CjÌÁ¢ ÉœGRã“.І¤
+©ï„†Aç¤!¥ I>CŠ
+uf
+°wíéà´ã†Œ¢ÌÞ%
+PììèQ5hȈ*oFÑ2d>xóµ Nrg&Ö«/ ÒžÈbZkYñuìQ²ºÙ ³W¼S#ò¨­xBd¾IÞ
+k| eEfÒí·{Ã{ #ýâ­uß5šï2 ´{ÿ]äo*è¯ÈŒÌ®ƒ²"‡xNS‚ßziÜh »Ÿv€ì›7ÆG€ pôŠyx¨">ÊáÇ2êxø
+û'‘a>{¹,ìéFâõ›ï6XËÖ¯{7Åà~ób“KÒî½úùöNñXúhŠõþ¸þÊÓ?¼¼üÉ—øòåòÖú»Ï´3}rõ:›cçÊùݹå9ÄòüêëùyjyÙ·oD å›õ›iýÀ¿ü|刋e·X¶­–|þWßë+=ÿ\/6Ö\Ÿ~öXçóïo>zt[ÌÓ77·ŸÜ­±bû•»uûÝþð§ÌÛE(:/¿zy·¡p¿kýÒEyžgíÃ-üÜæû\øiáæuÉ—¯WöYö/¥´/xyýìj
+Áõܹ…b÷'?YwÄæ·n®ç÷vQ°Uæ_}¿}øT»ªgWAË6‰|ùíµvÚòyÝ>½}î@¶g·¿W?]¾|ýàá…aoo_ø¯ˆð??-b§Sûß8-Ú©·jŸ;-\ÀSŠ§²¶Ð|HƒËëß/ûYÃùÓË×ëæŠÂ“ Ë<'þmÙŸ»ç7 Áï–çŽÝ-’[ÛÆfË;Ó<?s«'îA­Oöù@ ‹|Ì¿¦·¶³åíõÊ2ë·6R äõFŠ§—w« <Ûpü÷E˜üW.·/¬{ó÷š¾º(ÂlAkÙ‚ðáÒ'QNXLùüÍ¥m®ccª•N—â¶+ÿ…É-Û;óà{þàAÁù`+æ¿—õ½x¥×Ó+éÐXÞ¸ÝÓ›…Ñ–>äóßlà—ÍÛŽÕb§Ïêò<¥9(kÿc]n“c–ò¬ðiE_Óòñ¼°=„±)úxÖ'³M[kQf½Rjù,:å4n÷Ž“ïí2/,?Ëîß›
+endobj
+1286 0 obj <<
+/Type /Page
+/Contents 1287 0 R
+/Resources 1285 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+/Annots [ 1289 0 R 1290 0 R 1291 0 R ]
+>> endobj
+1289 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [291.7033 546.8235 298.6772 557.6717]
+/Subtype /Link
+/A << /S /GoTo /D (table.6) >>
+>> endobj
+1290 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [341.9425 534.3149 356.6651 546.27]
+/Subtype /Link
+/A << /S /GoTo /D (subtable.7.1) >>
+>> endobj
+1291 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [421.8751 522.3597 437.1512 534.3149]
+/Subtype /Link
+/A << /S /GoTo /D (subtable.7.2) >>
+>> endobj
+1288 0 obj <<
+/D [1286 0 R /XYZ 144 757.9346 null]
+>> endobj
+787 0 obj <<
+/D [1286 0 R /XYZ 144 734.0242 null]
+>> endobj
+788 0 obj <<
+/D [1286 0 R /XYZ 144 712.1064 null]
+>> endobj
+789 0 obj <<
+/D [1286 0 R /XYZ 343.6004 709.6158 null]
+>> endobj
+122 0 obj <<
+/D [1286 0 R /XYZ 144 625.9296 null]
+>> endobj
+1285 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F4 885 0 R /F2 888 0 R /F39 351 0 R /F50 892 0 R /F41 374 0 R /F23 307 0 R /F32 319 0 R /F37 328 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1294 0 obj <<
+/Length 2349
+/Filter /FlateDecode
+>>
+stream
+xÚ¥YoÛFúÝ¿B@€ªéœ<òTt·ÙE_ºÛØ®(i$qC‘^Š²cþïûCŠt(9nb@œã›ï¾f¢fþÔLY;K\"2cãÙj%g[XÿÇ•
+û X !~º¾úáC:ËDëxv½£¸^ßD&ß^ÿòëP:³Âe"ÈõÎ;„‘Â&i`>ç*Zþ)•ÝNâXØÍuå+üý4w.Ê·„ÿêçë^§Ð‰‹/‹k’Œ¡
+¿k^¼`Æ©ã¨Þð2ã;" ã³±‰þYÏŒ@Ô,ò÷ôÛ|"«¨Ý$)®+σ.榜2NÁ2à±u$/¤md<+™Á-ÏV$ô][¸/¶Œ¹‚¨
+€Wºó¥Dæœz€ØYOb1ZÛHÿ‹F,R±¨W‰¥3x’$ÃY6âÆLqóaº¯ z¶´˜‚‘¥„̨ÅI@&‰©tÊP.µ"U.ûV§V™ÕÒYêÀ{bû5øRpÏÌ¥g¢Ä˜˜1¾*À’€²aÿb¨$NÈ4Î8TÔW†Š0Êd)&ËƱ¢º0ÁLÖôËÐ1/mÑKû¦È9ip*t¼?'¾)~Œµ ¸©–
+êùÛ£
+ê`@©e£mãC¦çy*8T'-á2(õí®ÜG¯Š³Ë0ÉRàg½þ¸ŸsàçYâ8ECž
+PמŒ‘;-´³]˜ƒ™&°jŽÓcÝäÕêñ¾YN¢—…ò:@h>Í¡ŸÀ"ŒN }q¢CéJ¹=2ihÎþÀΪ†®Âª~Uu‹Ó ²ø]¾ò<ËC;jH3ðÔŽôP쿤mc¡•tÎWèJ÷ä\uÕ5°Ô2EÕ…êsÈc…»›UÚh=äEX:M:*Õ"KUÇíáˆM¶Cò@x…4ëýž¡Š]×—Ó+ÐôDœªtŒ¹ÓØqÙ©J%À]úºªÉ$_¡*è壊ˆa ºÆFÒF[óÎ
+Kò’W[¶˜5Ÿ¶›|ÕŠ&,ó)ߌé7ÈF3Ž1|žsFƒ´\ÅÛ]PX¬¡+WÉX_ÁjBtÀ¡¬•¯yq‰Íí#¯¹VpÍ‘/0mB¸¦-'œ±él°þ;D6¤HpúšnÐK¨¢ï±Cψ “zD¾(V`ÒɈº´€ï
+¶b@Ø[RUãÎç°â,P©x´9ùu·Õ…Õ˲ÇîY£Þ?‡J.g3…M…ÕYüJ¢0Ó‰1w‰¹`S@¿pí_Ctš$~A%3 ë:ÌwÁÓq±ßåàÀÚã›@Eµåí^w°}<¼ì&µ–p±Æô Ë%Š3• P¦¯ç
+íC˜%—Ü‘m*椨ºT™™è±Ó>v4Š8?|<ÒcÆŽÕœ‡'?öâ“}ÃsmY2é¢ÛîÕòŽÈå{´Æ² æuº£lˆ”†gßÒ_ó~ªÏ‡¸…ËE<ù°¢@±Ú¡Ö'Û’ØðöbˆƒûðQéˆS‘IØíÁHÊØ}þÉçméÛÖ7SÁ0•XÖŸqtØü£ p¾S£«ö©s‘ç}{sûŽ³,ô±LÆv|ÂÃk¿ êÊ?}§žß…Ü«4_Ò:·õÓw:€Opuðíˆ{í:)&ùAˆå¶©wë‚Þ¢Ô÷[X„ö}‘ábC”ôû»öñÄúx­ñeþ
+ccÁOÇŸ§ãs'ú›âœ‚¦8¼™3Hs´÷͉¿[bp¤þ^¥çõeèÎB¼$ÌÞþ%¢j çó–>ÅI £™èŒµåð‚ ‡‚Iú&}a¥ù£Â‰‰ŽÃÖ3 BmøVü=eœ­j*zÔÇJNjø=œR%B º¬ÈðÅÑéè?H¾(Ãib¦(°ü3rVª:°ÂÕZ»ò‘(óNðú½š,¦}O˨¾CbE]avYÈïD8¥ïRβ°Ûžxá¬ÆÚ;Ò îåpÌ»õ¡ë.`5”X=nw¼Ä}¿=–Ôªò;p¢Ò×?XÜçüVC“^™8É×ÿ=žîÛ¡¯§¸¹›¸ûV~Å):–7ÔáÁMiòùR%Ð\e¾¥ q\¨
+endobj
+1293 0 obj <<
+/Type /Page
+/Contents 1294 0 R
+/Resources 1292 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+/Annots [ 1298 0 R 1299 0 R ]
+>> endobj
+1298 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [167.3846 461.9216 179.3398 472.7698]
+/Subtype /Link
+/A << /S /GoTo /D (figure.92) >>
+>> endobj
+1299 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [263.1203 203.0116 270.0942 213.8598]
+/Subtype /Link
+/A << /S /GoTo /D (table.2) >>
+>> endobj
+1295 0 obj <<
+/D [1293 0 R /XYZ 144 757.9346 null]
+>> endobj
+784 0 obj <<
+/D [1293 0 R /XYZ 144 734.0242 null]
+>> endobj
+785 0 obj <<
+/D [1293 0 R /XYZ 144 712.1064 null]
+>> endobj
+786 0 obj <<
+/D [1293 0 R /XYZ 335.2756 715.693 null]
+>> endobj
+1296 0 obj <<
+/D [1293 0 R /XYZ 144 675.3444 null]
+>> endobj
+1297 0 obj <<
+/D [1293 0 R /XYZ 336.7798 683.3145 null]
+>> endobj
+126 0 obj <<
+/D [1293 0 R /XYZ 144 564.9381 null]
+>> endobj
+1292 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F40 356 0 R /F39 351 0 R /F50 892 0 R /F43 455 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1302 0 obj <<
+/Length 1843
+/Filter /FlateDecode
+>>
+stream
+xÚ¥XÛnÛF}×W
+P@´Ùû%@_$Em}Hò@IÔ¥¦.¥¨Ø†áïÌIQ2E§( HëÕÙ™9ÃÙ³³ ‡?‘­g JÛd¶ñd ó¿Dýû“.â×›Ñë÷Z&+mr³8·q3ÿ’êñDpÎÓ·» ŒÒýX¤YµžÂ׺XWcéÓ‡ñD)•þµ†¹jEÿü^­ò’† &›áçíؘ4[æ´ÄÆßn>¾~ï;Ε L  Zt­BFïnZF*&±Ã4• „š
+>Qä°#Ю¯#ÐN‘tžì@ج¬Ý¢ŠÑ4½¥Eq²¢1*"[‹³(£1œ««¬^²Š=áwü¨Ýv›¼½[­Â¹ôí‘ÒnZ䛺G¹[åõõíxhÕ[E·È¸i¹zû-¼ï¥~¤iôÎÖ«-Wo#$<œL<øë5ÙE\¯ÉõbM{lkò™Ûþš<ó;;cÓ”>ãëðæÍÃ
+Bå÷Ù&Ú-jØœBÆk7¶´%Ù˜´ï†$Ü»ñüÐV›˜ºe2öÀœLnh"‹I‚Á!oF ¯ð­©oí.ÎŽ˜!¼Ã÷¾F\‡þ·¶p1ð¯½õÖ¾ø=»3ý ÝN«endstream
+endobj
+1301 0 obj <<
+/Type /Page
+/Contents 1302 0 R
+/Resources 1300 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+/Annots [ 1304 0 R ]
+>> endobj
+1304 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [182.9097 285.999 193.3428 298.0383]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.17) >>
+>> endobj
+1303 0 obj <<
+/D [1301 0 R /XYZ 144 757.9346 null]
+>> endobj
+766 0 obj <<
+/D [1301 0 R /XYZ 144 734.0242 null]
+>> endobj
+767 0 obj <<
+/D [1301 0 R /XYZ 353.0382 660.9401 null]
+>> endobj
+765 0 obj <<
+/D [1301 0 R /XYZ 473.4638 660.9401 null]
+>> endobj
+130 0 obj <<
+/D [1301 0 R /XYZ 144 460.9747 null]
+>> endobj
+134 0 obj <<
+/D [1301 0 R /XYZ 144 331.0107 null]
+>> endobj
+1305 0 obj <<
+/D [1301 0 R /XYZ 159.2431 151.2587 null]
+>> endobj
+1300 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F24 334 0 R /F37 328 0 R /F43 455 0 R /F39 351 0 R /F50 892 0 R /F41 374 0 R /F7 803 0 R /F23 307 0 R /F25 322 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1308 0 obj <<
+/Length 2374
+/Filter /FlateDecode
+>>
+stream
+xÚµZ[oãÆ~ß_! ¡€ŠáÜxy(`ÄmZ‹´Hý¶`i’’¸‘*/븂ÿ{Ï™3¤H[ŽI1A
+TàFBú«äðÁ[í@þ÷ÌŽoPa3ÔøáîÃ÷?†«È|î¯î¶cwé'Gzë_îþùý’´x$] 0Š*wûÌêÈ¡ŽçÊ ­ÎÚ5sî?{Lî.Ú]YݯyèÄ þ>¬•râ±ÿáow½'Š —Êÿmw{­×>‹hŘ)Å{¯¹t=ŸY¯Ýõ†9ü0®œ
+W‹3+;c [ù®§ü ›àŽEºö„ gÚ‰ÃoxºŠ…
+"tEÉ>)g[jH–.1„>‹ &åæ;éMƒ$tꬩé s|ÄW߉­¶‰Qrë ¸±‰ÑB!.enJzâ\»“öåņ%xn(ë{Ýkkè,݈+iõŽ}Yù¦¬ ì{ð(èV+²¸ÒOhâEnày°g(èÌØHlÎ8¸r¯m$"ÏyÌH± Cƒ^"§ÔiV]€Ï8Xd}É×}²Ï¹z!¹ IcoyÁ¨×ˆ1çŽÊ¬Gd\Õ Á1È!7°«¾–É0•9(
+c¨¢ÉpxI¨‚ŒZ^“Éfo'¡Í È—.÷X)N^ÐÜŽçÑ|ì– ½ÿÞÛ¼ÉHƒ‚â:>t ƒ8m»ñ’†M9b
+%üU!¢ŒrG¾Ù‰5Ѧ¡´ ®1ÁÅá/My¬rÜ–ßѱ”Òû<~ s•MSÆŠEI&¬¯F–ýš×ÍÈÕù7ÏÎå0YH [ø¨ãĈ%§Æå|Ùš”¿°ßÑ@Ö(aE‘f´$Ò;–(©½¹qq=LæÓ:È 2ˆ 4‡ I¯Q}$C65ƺ.­¼­ÐjÙžð¢:×÷É'sÌo Êm× ®h/á l=Ø Êp¢ bâó cø3ŽNj2ñ¸Ï*»ª! |exÝÌçD£Ž)Ù¸¦XÓ'VÝ“uÄEö«EÓÐ. UÖö(}µýH’øhüd+;3ð`/eôòFV=i¨ŸQ€ˆBçÉÊpÖ$¾“¯ðB»§ Ïžò΄/FòI0g„Šv%*À®ì-[fÂà_pò›9iª'¤aù×¼ö”
+L¬mߺ¸†NWÎO%A×}yBĤTdÈ`5¥ª®²"±»‘C^˜c‹sËÍœ[? ú8Ÿå8 ™&d©]¥«¡³júLèB@ãº#Nü|2¤×â‡8s&~YÇÓø…g>ãô+®‰TbÄûì@†::¾ípgÝÐ$
+Ò¬¶¼Âºc€z 5lq|ì\U×B㦠À‚ÂbBJ@T*t¶Æ Œfúu¡„õ •û²ãf"r=Ðt*—EÑåûE§´hQ¿¬ ó}‰+…ËE¨zS¸àg&$ì¥m¾k«lÎâׂˆ 傦Ào.ÅE'fö;Gàå-kè<mI!Gýæßd?#ÒÇ‚5d
+òdÄøq“Ùò<óÔˆõ›Ò ”ìÒû*Ú/JA¹>ÄÄ*s >è榅ï*cË}_ö\u͸m¤h߉.M V>Ô¢é¶â W†·)óˆ’˜½ S껾RC 7ù¶-Òl›YzJnzŸO8
+ÌŒ ¬y²òçÓóÖî†yÀ!¥ŒOY–EúÔ}áš¿¹ÒÀSq§&¯%ñt?å<?ùKnŽn3®`lëp{ãþ‰Ž]h·Ì1”Ñ{EÜÛ”•Ð¨„óªÅ
+NÈÛ¶2w3ê®ôÓx.]ÐB\õ‹f‘Ns,Ð\÷9&tš-ά§°ë1‰¸i‰¨9JÚC×ëEtxp{û4û”úã ,`.´‚Rg{¸Ä·Ç×™
+˜+<Ï¿¸a±€–ôeß;dçëJe›!ùÙÞt¥‹žõ6ê/¶ ³Üv¾âXZÌ-íÅôÐ@xö€¬2MX[U¼€ÑI;`ÂÑÍ[…®ô|þþ_7ŒÞþËÁe²b!²22la5eý5K4ôz·”™ßt/‡X?úå4HÖ dk‹Í v^Üêæyêvö¯F’×íÛ0èñÈÚn2”àj(ÃÕ~WHáÕ’¬€š¼€æ+ô~ù6OâZ>Rt5¤¸(²‰€t\_.!@»!CbÞLæ¤8™õþhìzhEY™ÎÏA«·ê¾,õ©ÖÉóÉ›ƒ_£NªüØÔùÿz öxµ‘Ú–ECøΊӉëm˲)Jè5߇6RN.ˆФ~/`Fg:µ¤˜·'Dj 8˜=0ìÞÃD:Óá×Ãù8ÎÇ™pÂëá´Ç‹¾‰Ó´)oqR•Tгe¡¡¬=Öûø˜M‡]-ofAË›yÐøR¯õ,hµž -!ÓyÐ’™Ððü!íÖÐ9dõtl ¨þ~; Ûýv.¶L_fa«Ûøë§éØÐ~=/nõv.¶ÌßÌ#¦™‹mÁ1Pµ:ƒíÀ^5^4pú›Îÿ|ÿ×КkÓ&û,yxþÔTmv¹œiï÷M)[ŽC, yÛœgé»ûYs:0¶ôJ‘_¼ ι}]Æ—ÛæÕäËŽÑ]3g¾%ý¼në}•ïöïëâÝ.Ku¶qK8þ¼ÞM-…6'lFw^VÐüÏfÍŸ'áèÎÃ,Å÷qJjªÓ¡-`ÿÛÉLr;f’Ñ?I¹’¾ë{œ]ú"Dôÿ¤yÃÑÿ=ô8endstream
+endobj
+1307 0 obj <<
+/Type /Page
+/Contents 1308 0 R
+/Resources 1306 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1279 0 R
+>> endobj
+1309 0 obj <<
+/D [1307 0 R /XYZ 144 757.9346 null]
+>> endobj
+138 0 obj <<
+/D [1307 0 R /XYZ 144 734.0242 null]
+>> endobj
+1306 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F39 351 0 R /F50 892 0 R /F41 374 0 R /F45 799 0 R /F37 328 0 R /F43 455 0 R /F7 803 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1312 0 obj <<
+/Length 2539
+/Filter /FlateDecode
+>>
+stream
+xÚ­ZëoÛÈÿž¿BPUX<îrùúà’\r½¢×µŠ~p d%QJH*Ž‘æï<v)R¦lÑ:0—û˜ù̓#þÄH(5Š‚ÈM|Žæ›Þhý¿½f|‚&ío¦/~~¯ä(q“P†£é²Kcº¸q‚ñDxžç\›t<ñ}å¼ ç›Þìò´ßNÿþóû¸µÞ×2 qµ8åÅ»iÃD }WFAø8§Í¬‡ì¶wAì&ȱT®
+æxºFFÃÀ©€u'ãÿb L/¸;Ϫš[Å’Ÿ_ÇAèè|sRœ=ù2–17ï¡ïn,#§(ЬpÎÍá¥Àþ»ŠiÔ¼kè •Ýn<±´¤Íue†–câh[vuF}†nMT©Y¥õ¡oÝC
+|e„Ž¸@»þ–^H{‚|
+­Q¢½Èwƒ ’†Éj?ûä µB·S¦=[x®ïªu$| ="ǼÕº¬ýÄKh$¾£ËÄöÉe3ZTÔä¸6èR€"!#çF=jëÙ ÛçºNÍ{v¯ÂÉpãw Œ&IìÆໞn›Þ±wCþØåU†[…—<Ôp§=ŠŸ¯Ël5+j8¿U£ àÉ÷»Ý—éí÷áðÌ­‹Íóö'\ëÙ#¬Áh~ gÁNøý�ù0}ûúã ¡ýålÖz½p¸~,E‹·Î®`RƒnË’ëî|—¾~óˆPN\×ù2ñŸ'“!jÒ/u‘qDm\0w€þYÖ#|‹l[áEf5ýðñl³B¾ÎןèO²©“Òèמø"ƒzD}·t¾4’?ÇšZÂh»o𲞫€V7H€w{e2¹5§­ÖæûäŠÜìKžd9¶)&ÉVkJ#Íx'Bº<Õ;t¡eó¿eðØù=¯ê:r›=/ú=-çª~Òu¸á¾#/àx£g_VØçd⪠<qUß—º¬¾d»WÂÛÕWpIzñß}U¿Â7;¯îãÃPï²Ñ딄‹Vg¶i{ã.WÙ–Úý&cw÷¹ ŸB ©‡ W=[¸Á£²õ‡ˆ¶Ë°Æ ~ Ùà Ø–\;Öƒñ u¡ÿg+6ŽÂ]*¨„ΖìãŽ_¸òTó W†l/†¹³ „ìA¡Í„…µ,ïè}^WÜ?ã"—¡Ð¤#»µ]U={f[»7Ñ~˜DÈX¸ïgE #7‘¾·Ósää ÌVÄd*ð­P(X÷%$6ItT—*¶X43бM V0†üd̪-°¥ÜX¤KbËk$[%Ãf ü>òa
+@’øÉd±ÔœUTÌñSi@xžë}àár¸Ó[ƒK'²½®*½'¶tˆ
+â3ˆNõFsö²Tjà%A{›vD¤œªÖey
+€ *jó‰Ä¼>QŠ±>ÔÜ}óqdÔ÷™…•=‰2Í 2c'ÙaŒ4‰ñáebpÜ\%O#{„)MloÝ Ûiö‹mkKoXw{bË&Ü° #6LgA
+ÛT¡3ªÔÌæZ ÃðËÅúlG3úYш6ï ýÒS®'›
+*ªÆCËö\ODÖƒ´wú|tT¼Ñ&êñT ºj‚‘&†"p„Êò¥‰Dú?0B Ä#xP$‡ÉTµ'¦4 U¸Ù=q*ÆÞ”Gteg˜*ãbƒeFº
+ic˜«JüG*²—]–ú¾çºCW"j¨LdˆÁS_°_Y¶6Ù6Û!Ö?Œp” Hn)¦„E
+ˆ„œ&Š¯ œÃ®ƒ7¥Ï-¿Üál½ãÒl;¬+ù­¥þo•*ºÇJ¥'=T»
+â?‘øí]f¬ $›3>½]MùÆvŸç}%%nœ$¢kÅú8 fdÇ´®hýø„ ÑD6Vó;Ëúk¾è¼ J>Ýã_êàO 'EßotÀpù':^{ôÿNÔ·endstream
+endobj
+1311 0 obj <<
+/Type /Page
+/Contents 1312 0 R
+/Resources 1310 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1314 0 R ]
+>> endobj
+1314 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [377.1712 195.5713 389.1264 207.5265]
+/Subtype /Link
+/A << /S /GoTo /D (figure.91) >>
+>> endobj
+1313 0 obj <<
+/D [1311 0 R /XYZ 144 757.9346 null]
+>> endobj
+142 0 obj <<
+/D [1311 0 R /XYZ 144 261.9751 null]
+>> endobj
+1310 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F41 374 0 R /F23 307 0 R /F39 351 0 R /F45 799 0 R /F43 455 0 R /F40 356 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1318 0 obj <<
+/Length 2764
+/Filter /FlateDecode
+>>
+stream
+xÚíÛŠÛJò}¾Â,„x RÔwé¼íBf9v9ËÌÃBˆÆ–/D¶Éf’²ß¾ué–Ú¶ì9!}YÂX­êêªîºW+b’Á?1ZOœqi¡´Ì67Ùd ð¿ß?Ÿ Bcüíáæõ]>)ÒÂJ;yX“x˜¿jyûþá·×wZFX²Ð©)E”‡UåqtŒ“¥Úå¹Ç¹?ÜŠéã»Lèå(=À•…ÇýýVæÓr†¿o™–K¢óæ¡?‰‘*•ÎØëÇU®`¬Ð ‘©1, SÎ\²T¹A”O7oßg“9 þvã¡Oð’¥¢(äds#ñXüRßÜßü«§•ˆIÈÅe:¼0:~Ø/9&æ\ª4ˆTX˜6Fÿ™›ÚyawZ¤NJû›ãî„ðÐ0þQJI õò¿zÊD‚¼”ù$±¹H Z0t ¶ ÊÎÙœ³©³ Vë20!ÀGÛ{—™¬„q›(0½»uÛíÓSëSp”he`¶yQü ÅH;-ôwˆ3¬øqÅŒSúùŠñbójŸ^<–׊ëµòÈZÑy>½¯f·‰˜6Û9¾»)†,ÔŠcµ¡µ‡¶Â¹s%f*µ*+&ÖˆT‚ƒý_RAp‰…°ª2g/(R
+ ô ÄUÎ{X­Q;í<å´ç¢DK8‘‘ V™
+k "p·^b.A­*¥§…úŒ@k Ô˜tMSjÚá˜òNbšrßظI! a›‚‹S 0 ÌOoj˜öå¶Oìo¥›>!¼ñ€fǃ€5Âü%Ï–h¶²Û_à<óÒp âT9Å+HTÆ€~AªÂ°0…;µj¹Ó®19œÑ¹ÏC‰Ì]jaƒ?%E&œoÕD§E.Ôå2ÅX´šÌŒ—)pºB«bb”LóLr­òëLAÈéRÊ¡å·11#|ÝáSM·|: z÷ƒIïë½â2g¼Æ~Z‘=GGÃ(y¥gåŸû†ÑAÑŽmõ@̬<¥š`ó¿5Ío¼&“"ãšž”ÜÞ,öÁú·HÌŒtz$Zμk@E4¥âjU¶å ÎÆ ¿§õvÉ wu9«æ<Æ}#¸AO‚¯ç i=ò*
+R9¢ÏšÍ®­(v0aÒ+¼ñ¨üè€ïï<,+ *S‘åÅ%EW”°žWÒUŽƒ’NÙŽ+)f‹—T°‘6:— J?ˆù±Ai”³¶áW.¾6ª™€žUnú"O“F½3™xyŧ ^R¥Ë‘S˜º@òjÄ%mšå¹ô苦qHTRè€ÆAs ï-n¹mÚj>®fÙŠä+jŽ0®¨9`=¯æ«5Ÿ²WsÌö¯XÎdÓ/^â@ô…Foé¤pD¡2 0‚çḢŽ&1cã3žì=¾ôEÝŽ
+¦à~> ]*>º—<š1JÊ'~gu=º‹‘£OÝ`¨m_pø™Ä>T"¾Gy¤:§Z®·ÛŽN*–ÞÒ·Õg¿:Jy¾¡!µ¸!é“ÇÝæŠê(¬GrŠJC¶Í5µÐ‚ý­/] ˜’ò¸8 aõ4|½ÂcØ¡ Æ•³2T¢s–mÏ«8zûð_±/rè똞MÅï´Ü•–:*®ÖÄ .¨+Ž)!û‹H€J QÒ
+Œæœ Q!$¦íKìx.âHïOT¬ø¥äd*ÙË/
+XXǪ[ÞŽçÂsÓ´Ã^¶¼Å0ÇÇ' rX·CYAƒXÇÂÌ~Ì6Qs>ª’;âàÐк•5ÊŸ¸?¦B¥:oo~í.t#›ÞÞ^ߨ{I/üÅGžç\¬™1Áâ…€²"‚˹§>³«CìØ›Ïe8‹ªxš<Uy¡¢ü–Ú†{Ï°Š¡ªÂw&+Ò%¾'R9Õaô¤{èþ*^»Ú³yFÕ$ Yf£ô0«¶`´èÅgÇ16¢Ï%X ßW„û…ºþÂ;<î>9
+C‰´.õçÇÏ…b¹áÂçÈMÝ*Ø)`Bð<?¨zlg¢ƒâßH>Õïe8#çlÜ
+äºó†t$—å‘C²Kðc‰°Ñ}ü³bùã ÅK_ŠÃ0ò¹RNë²o’ð5ì~>W¥ÿÚuðå<fsKqØ ÛŠ~!œøs˜Pµcù:
+Ò ¤.¬%]Ίj¢‰¡êª>íàj~ì˜pˆæ
+ЃCvôÉÎg6_§Qk=„•Hùwvh)™Z(©ÉB8©IŸÜ0ñaACo¯|J@êV$œ'íM,pí9–5:3x…ºå)4ý=D ÀšŽ éG9œ±vªšíýù¼¨#
+Ãmw$†ÔãåoèRž vƒÔéÌxVW<»+I€U7f
+•ú±çA$ &kGgûÿYq”zÿ Ìþendstream
+endobj
+1317 0 obj <<
+/Type /Page
+/Contents 1318 0 R
+/Resources 1316 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1320 0 R 1321 0 R 1322 0 R 1323 0 R 1324 0 R 1326 0 R ]
+>> endobj
+1320 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [236.0279 560.698 247.9831 572.7373]
+/Subtype /Link
+/A << /S /GoTo /D (figure.93) >>
+>> endobj
+1321 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [433.043 560.698 449.426 572.7373]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.3) >>
+>> endobj
+1322 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [448.5405 560.698 458.9736 572.7373]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.19) >>
+>> endobj
+1323 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [260.2033 505.9588 270.6364 517.9981]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.18) >>
+>> endobj
+1324 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [298.4644 331.8825 310.4196 343.0074]
+/Subtype /Link
+/A << /S /GoTo /D (figure.93) >>
+>> endobj
+1326 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [312.13 123.6954 318.3567 130.8243]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Knut86) >>
+>> endobj
+1319 0 obj <<
+/D [1317 0 R /XYZ 144 757.9346 null]
+>> endobj
+769 0 obj <<
+/D [1317 0 R /XYZ 205.9774 724.0616 null]
+>> endobj
+770 0 obj <<
+/D [1317 0 R /XYZ 341.94 693.4971 null]
+>> endobj
+771 0 obj <<
+/D [1317 0 R /XYZ 205.9774 652.6503 null]
+>> endobj
+768 0 obj <<
+/D [1317 0 R /XYZ 205.9774 609.858 null]
+>> endobj
+146 0 obj <<
+/D [1317 0 R /XYZ 144 365.4925 null]
+>> endobj
+1325 0 obj <<
+/D [1317 0 R /XYZ 159.2431 134.1562 null]
+>> endobj
+1327 0 obj <<
+/D [1317 0 R /XYZ 159.2431 124.6518 null]
+>> endobj
+1316 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F24 334 0 R /F7 803 0 R /F23 307 0 R /F43 455 0 R /F45 799 0 R /F39 351 0 R /F25 322 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1331 0 obj <<
+/Length 2011
+/Filter /FlateDecode
+>>
+stream
+xÚíYMoã8½ûW ,ÆZñ[ í: v‹äÖÓÅ–alËm)“^=¿}_‘”,ù3Ùôsˆ(²X,¾z¬*Ê|œâ¹Rc«-sR™ñl5JÇèÿLjÇñ„’¾ÄßïF?Þ(1vÌaÆw‹¡Ž»ù§‰ž&<MÓÉmµ*¦‰”jòqÊ'_óÕfYÔÓÏw?ÿx“õæKã˜äÂaAš­$‰Œ>ÞuFh!™°Ú\¶TZ¤ˆ;žÊSRJ3#m6NR&]¦IäËèÓçt<‡èÏ£ØûŒ—”qçÄx5YÖ¾,G·£wºÒqâË,?«&ÌK¡&6ÛCU Ï\4̨”Ytz¬¥ »–à’¥Ü nXf¸ð˜ý³¬ mͤZÐSOnJ8aòð´¥ÇIÔS6Å‚˙̫a$Fû€°ÿ¸‹÷ú¡˜K!Ž0§`&9…%œ÷<vR‘ÿå¤~ºO~I¹ ª¼©É&6M FðÐÆC9×{>þױȫ”ä[2YÆOÕIVuRI_Ì;¦æ±²ÓTV:úùò¢ºcÃ¥Eجœvcc Z‹èƧ‰Øpv²ÿÀo¿5ý
+ø=± à÷q¸þÅE÷à_Zt¾Áél‘ùÛbV­çŒ^ì loê¤[™ 0w;¾„ñùµö
+&EdR|T7ùâË .pŽŠ/@Ô¦¼Û"*Å5õåJ¿¸ UT‹åkŒÌC›2Öù`©…¡@-ÞL¾o´LÚ*>=e!Û…Ìì Œn¡
+wå “: ^ÑŒÀEúÆôäC(¢ÿUQ§÷Þ>Ì›ÂoVÌCÏGþšÏµp½9æ
+hŸ9c44Ë7½
+B EuªÃµÄ -ÏUh
+‚ Éá~Ò–4›æñ½8kû*ÿµÈA¦AšôÖ¤L™Ô^NY»ƒdòm×6œÍÖAq–òÛa’B¬ÊX¦µ}õGå$­ºÃ\ #Ý´4\d^öíèõfÜåzûëeÐgÅŽ¡C:ðßWr"^ó ×~\ù?ï®(ô¤ÅZЄ¸þ1c1áF¤‘D红ìyùò”ÏÏ­34~å|…¥µŸqh*½©GGvw÷\…‰ô[ƒ·¯fß®Ì-Àÿè½ïE¢“™ïoìduäòïá|.z~ ã>P£/á<›ro*ø©øÛýR6ˆÎÿŠ‚ endstream
+endobj
+1330 0 obj <<
+/Type /Page
+/Contents 1331 0 R
+/Resources 1329 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R 1345 0 R ]
+>> endobj
+1334 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [221.5855 687.2141 460.6341 696.1251]
+/Subtype /Link
+/A << /S /GoTo /D (figure.93) >>
+>> endobj
+1335 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [221.5855 687.2141 233.5407 695.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.94) >>
+>> endobj
+1336 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [448.6789 687.2141 460.6341 695.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.94) >>
+>> endobj
+1337 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [244.4996 675.2589 460.6341 684.0592]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.1) >>
+>> endobj
+1338 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [244.4996 675.2589 264.2036 683.6718]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.1) >>
+>> endobj
+1339 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [448.6789 675.2589 460.6341 683.6718]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.1) >>
+>> endobj
+1340 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [244.4996 663.3037 460.6341 672.2148]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.93.2) >>
+>> endobj
+1341 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [244.4996 663.3037 264.2036 671.7166]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.2) >>
+>> endobj
+1342 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [448.6789 663.3037 460.6341 671.7166]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.2) >>
+>> endobj
+1343 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [255.9843 529.2275 275.6883 540.0757]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.1) >>
+>> endobj
+1344 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [296.3885 529.2275 316.0924 540.0757]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.94.2) >>
+>> endobj
+1345 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [296.9183 475.028 308.8735 485.8762]
+/Subtype /Link
+/A << /S /GoTo /D (figure.94) >>
+>> endobj
+1332 0 obj <<
+/D [1330 0 R /XYZ 144 757.9346 null]
+>> endobj
+1333 0 obj <<
+/D [1330 0 R /XYZ 207.6378 704.2059 null]
+>> endobj
+773 0 obj <<
+/D [1330 0 R /XYZ 207.6378 629.3754 null]
+>> endobj
+774 0 obj <<
+/D [1330 0 R /XYZ 340.6117 588.8483 null]
+>> endobj
+772 0 obj <<
+/D [1330 0 R /XYZ 207.6378 563.4436 null]
+>> endobj
+150 0 obj <<
+/D [1330 0 R /XYZ 144 506.3134 null]
+>> endobj
+1329 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F24 334 0 R /F43 455 0 R /F60 1348 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1351 0 obj <<
+/Length 2127
+/Filter /FlateDecode
+>>
+stream
+xÚµ]oãÆñý~…q@
+Ä@?PÒJb"’:Û5šßÞùâ’”hi®0l.gggç›3cuºQÆܤqäÚ$7›ã‡ðfð?(Ù÷ÁŸbüíî÷Ÿ²›<È“(¹¹ÛÍIÜmï=cVwÿö“‰&XQn‚8×@QîVpÌ' Lše‚óËy¥¼õ¯¡2ûEz€å‚ûU”yÅÿ~^űWì‰þ‡îœ$q¤ƒ(“·ÅuX×2ëüF© ãÈI™ LK+_yþ¨(ö¾¯W¾NcâˆðSeðÏ_ûCƒsÏÀ_ÎkSœz„•´#ÇïV¹ñ,ž@=ëaªü,”:ËÓ«e9œWr®G@6~`UÙ[ØË3¯n@s5£–ò$Õ£Z!šÇt õ¶–ˆ4xKGò´H¹§K:F.˜È†Ǧ®žÒÚßhÙÚ-cîà­iEϯ‡÷– 3‰IºW$f/(:Kø~ç*ðÜŸ[Ú/hç_
+
+•”äÞOBó .m{»äþƒ…µŽÀeE…xEq®(MÐ3‹K j­Ä1'tÐäœtñ¡µ†Lá‚͵³D®Ç‹ž'ôÅ,Dõ-ƒ»FÒ¶ž¦m“&s9½¦;¯wå¢ÒVÝg´«—%AžG±¡
+½;!p"û6µQNŽ¬•rضîÎâŸ>P†ã½~LQ–!Ä<ÙI`QÑg¡å2x[0¤;¡LQ±uvD…9§¼jpV<äÜÛŸÛýG'd™öš¥hiíζhHCòÑ“>°˜͘ða«CÞËþ 4#ÑO>Q” šá2—t ¥œÃO’ijüž@²{FßiÎî ;9)T®½ â'Hͽ „½v"ßáÎBiÓP$‹ @Ÿ7“„Ü`A#Ù–±×•Ç²*P>P6)3cM\³§Ld¹Vöyƒš#Ü{‘¡õŠk¼j+_>éC‡ðÅ5ûúnû<°'f
+endobj
+1350 0 obj <<
+/Type /Page
+/Contents 1351 0 R
+/Resources 1349 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1353 0 R 1354 0 R ]
+>> endobj
+1353 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [294.645 702.7388 306.6002 713.587]
+/Subtype /Link
+/A << /S /GoTo /D (figure.95) >>
+>> endobj
+1354 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [170.7055 112.5083 182.6606 123.3566]
+/Subtype /Link
+/A << /S /GoTo /D (figure.96) >>
+>> endobj
+1352 0 obj <<
+/D [1350 0 R /XYZ 144 757.9346 null]
+>> endobj
+154 0 obj <<
+/D [1350 0 R /XYZ 144 734.0242 null]
+>> endobj
+158 0 obj <<
+/D [1350 0 R /XYZ 144 229.2511 null]
+>> endobj
+1349 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F39 351 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1357 0 obj <<
+/Length 1439
+/Filter /FlateDecode
+>>
+stream
+xÚíXKoã6¾ûWèRÀ*.9|wO]`S`ÑKß’ü~$–½ `ä¿wø,Ë’×9 –DçñÍ gH–Pü±„ ‘h©‰åB%“e&sÿ«Çâ|êÒ:Å·aïˀī@%ÃÙ1áô®/)£”öo×Ëlr.ú߬ÿ:Z>-²bð0üñåÆÔÖse g`Q [-¤#é}VJHà´Tç5åÚªÉ-£¼JH¢¸6IJ ·F:’çÞÝM¦Hú£G_ðƒf-$ËS~,z·½*^4I•!Ö€êfÖQd_ËǬRflTL)A”àPaÍ-"LÐjp`ÕP3EŒbà1û;/¶ˆ´VýõÌ=eÿ&G'ôç»{´¢n‰‘Ñ’Dse<âÈœ] ê:Äjc)b©R.FˆÅpSÖùž£ïÿtŽçý‹߆¯>gëÆæFá¾Çé=er=ÚdZÊQL*¬u‰ OçæŽHÑ$B­Ñe FEk4UTiÌ;¤Žâ)³ö2ú÷¼PYEÁ9¡ 4Æd†Qe„½ØyGªiM€[žÔ#ïºhƒAŠÎü¬4cH/̵\
+Ý`…r(e߯唖¬.ðâY+qÇÀ\"CE9ÑxÞ€%„XM™oà i91`CU¹§’Žð5˜sŒ6Àú¡pw·ŒËÏs‡þ_»£î`=!Lk(ý¡+ŒÛüQzYâî$´Õ¿ÜqavHn—e{v€Æ"!ɬ´•7&g³ã—;þkvœ÷Ç!;šþ˜–þ8.ß)SšH¬hèr¬l¡ƒ»Éç¾)Š ³•`û"ÄU}TdqØ8=á4ó¤“M>¤ û™û*ÂÜö1ÊGÂñƶҵÂi¥FÕ±R•‹]…t(íkàpØÂœf(ϸfÔ‹Ø>âPÌ›¸ÿõ
+‡§]6áûײ©©ërÏoX£]çÍô:ä/ZÄE£F+Çð÷ƒ…Óš…¥¨ôX¯ÐmÞ¦w¬_Œ|÷îpØq¸”ûìVð‡• ¥ü×›l–m²Õ¤Õàå(_•fx»B¥È¨8x¿Ž1òb°=áÜhsÇäq¶Î3È+!°²ŠÌ½{ÃY–èîRæ?
+à |߉¥Ÿ8ç³ÔP"äÍ]Å]6bŸ‚`ãË/ò‘1S*œò³Ä4
+¤ˆ7@$ýÐá kXW¨`„^)qA³¦–Z¥Ó¡+P¸<üb!åè$!tØPn—£Åâ*º#T„t’!© ¸Je—›ÆIŽGæÓ3QÀ±3`à4 Ƈ0¸]:ßLZ‚¡Ùs
+HPŒ×¯{÷²Í–Oøþ¶?ÅÌàa¤ˆ×’ÁU*<t¸EijŽá*ÒE©ÙŸ¬§->‘® äúBþ2ÒG|3©‚ã¾ÃÛ¸Ïè§;¿a8=‚NÞð]‘51ˆ,[àz~Þ¦X–rb†Ö%µúé âOl×áéF·5­öï¸úç,_œbÛPóRp?ßy©¦Ä0Í[0@JèSÀmo‰èÑÓ6_¯ö×TÈJ÷æúp¼µe¤P¸é
+endobj
+1356 0 obj <<
+/Type /Page
+/Contents 1357 0 R
+/Resources 1355 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1360 0 R 1361 0 R 1362 0 R 1367 0 R 1368 0 R 1369 0 R 1370 0 R 1371 0 R 1372 0 R 1373 0 R ]
+>> endobj
+1360 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [221.5855 687.2141 460.6341 696.1251]
+/Subtype /Link
+/A << /S /GoTo /D (figure.94) >>
+>> endobj
+1361 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [221.5855 687.2141 233.5407 695.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.95) >>
+>> endobj
+1362 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [448.6789 687.2141 460.6341 695.627]
+/Subtype /Link
+/A << /S /GoTo /D (figure.95) >>
+>> endobj
+1367 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [362.5295 503.5889 377.2521 516.4407]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.1) >>
+>> endobj
+1368 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [299.0175 491.6338 314.2936 503.5889]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.2) >>
+>> endobj
+1369 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [255.2372 479.6786 269.4063 491.6338]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.3) >>
+>> endobj
+1370 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [421.2261 479.6786 436.5022 491.6338]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.4) >>
+>> endobj
+1371 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [403.3486 456.3217 415.3038 467.1699]
+/Subtype /Link
+/A << /S /GoTo /D (figure.95) >>
+>> endobj
+1372 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [260.4675 443.8131 285.1528 455.7683]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.1) >>
+>> endobj
+1373 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [288.1416 443.8131 302.3107 455.7683]
+/Subtype /Link
+/A << /S /GoTo /D (subfigure.95.3) >>
+>> endobj
+1358 0 obj <<
+/D [1356 0 R /XYZ 144 757.9346 null]
+>> endobj
+1359 0 obj <<
+/D [1356 0 R /XYZ 207.6378 704.2059 null]
+>> endobj
+1363 0 obj <<
+/D [1356 0 R /XYZ 207.6378 656.2746 null]
+>> endobj
+1364 0 obj <<
+/D [1356 0 R /XYZ 337.6229 615.7474 null]
+>> endobj
+1365 0 obj <<
+/D [1356 0 R /XYZ 207.6378 591.8371 null]
+>> endobj
+1366 0 obj <<
+/D [1356 0 R /XYZ 337.6229 550.3137 null]
+>> endobj
+775 0 obj <<
+/D [1356 0 R /XYZ 424.0226 550.3137 null]
+>> endobj
+777 0 obj <<
+/D [1356 0 R /XYZ 144 428.8691 null]
+>> endobj
+778 0 obj <<
+/D [1356 0 R /XYZ 379.6005 286.8617 null]
+>> endobj
+776 0 obj <<
+/D [1356 0 R /XYZ 451.6004 286.8617 null]
+>> endobj
+1355 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F24 334 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1376 0 obj <<
+/Length 3212
+/Filter /FlateDecode
+>>
+stream
+xÚ­kÛ¸ñûþŠmpEd æ‰/=Ò+×CÓËE/Íý,®­µÕØ’£Ç:Û ÿ½ó eÉ«M·Àa9Éá¼iyß¼”Æ\¦6¹6Éåj_n
+ÿ\X¹ Ñ¿øëÕp«´P©M¾}Üëá™:Í…NR}™*#âDòÉßKmvî¦Ø}¹-7/[UW4_q3ÀK8_§Ð"·V sŠj3ú¦øÊGówIM˜¥`–L³3Ê)¥É•g
+°ÎÖ®k€õB¥Ññ!mˆÔêÔO8 LˆƒKËèXîvØŠ#×wHj¿XÊÈu%´WÔ„qÝ3Î
+ÚôùÈ n Þض(7[\)µ sÕšå Ý¶ån}Ëß{įû†{(€¼bªH†˜›J‘™$›2—iç™ßéé—u…+äyÍ£•«<dWn|Ó/ 3´HbIÞC@»BÂMÑu8çžA{l÷ÄÐmXÎcçˆr#
+9–$•Š,·æQI‚5Öõb ÀU¿/ø0ï‚7ó–Wׂéꌊ
+0ùðØ1©e¦â|PKægN¾}MâÓqï–ÄåSïù°»g°ƒ=BŸæ­ÄGâ¹È,ÖXÀÝ
++ŸtMñòtEAÏàŠ”ÕÂÀu@ ¨d™á+¸oé/
+ öÿîO ;Y’‰bÙl‡%°a£ªî¸áà`t“å†JWˆ˜¬« £u[â[ÙpØ7WÓåv´Ä¾…í˜,þµÅK½²?"üÙì­ÊLè,çsü“(ï‹=*"ó ¨YX,3àÓ¼='aÔÀÒo°>2É’ÇXŠà-]?vt–¸ ä!ê5±Qž/&A{Z O°‰SÉR±#ãàu€%ˆŸÁCãu¼ÿÊÀ‡›©½Y¹ƒWãØâ”d·m0w¤7h»’VÒ„Ì+^sœ w^ ^7Œ;âûnðhx£pÙWƒ‹ÓIGtlthj<Ên‘ðÊ–á}Ûƒ»çÎÚ[l£Ô bÏ\Ñ‚Fµ™Ú\ïfüÝ#„L(kƒgÝ—UyðAÉôê º-ð^ÌJpPz„ÎÝô;×Ìxòô. "T73„¤Ò¦a)×4î~VJÂrl îJŠ!ª½·hä¿ÁÃgëÐÒ‘G‰áŠ¼;ƒÏº¸uȹ]‡ƒ*;·*ZFÄ9d)~ãÚáRËÊÝ@¿ð¢§S‘È<Ÿò}5ÚPB.%… FÆl0’‡Ïaˆü¬ä+õͧ%Oºí:Vtºi½ÆÎ9urùGr× 8… K€µ<@– ëtÑ„Íça ƒ”ý‡t”º/PÂcÒ‚°á[Ð*Xüó XV¶
+€m$‰»ÈaSTE[{p…ߘ—®ñ‚©&€‚Ÿ„+8Ñ› *;Ozμ ›µßFØóÏøE>Æ‚ƒ‚µa{W¡ÜÌ)ÚšÃÔo)ÂC!SWÎè€5 &C€ ©¬V»~]lwØ–«ö¡BdZ$™µCLm% ´Â# Õ“9F«xÞ*ó£{0d¦À¬lƒu÷®_F‚yû$âtE¨&½7¸@¬lƒ~€iNR;e™°T+8
+/ÕßÖm˜T|¼Ø2þŒÑºëç~´Ao4,HÇššòT{>AcNR¡ˆcØa¼¢"þ¶ud"3ÂÂ=^ŠH4ªI D! [쇘 mâÒØ!ꌄ: i~!‡AÅq±´˜áb‚ú×Üß7öyP;X‡ïC ú B
+s’fìJ€x¤?0”¸Š#w~^ù£c‘h‹©¼†èì?žƒq9L~,
+ZžfR0¤iæO(ÚÛª}‰Îˆ
+YMâÓHŠƒFäpzåÂgãp;$™‚÷ÖZN™z³°Ìˆ9ÝÎg‡ æ,B2Z^ i2òtp]ãr¤ M¥ÀœþûM隣áùÝ €+áªÏ½9a4$PÕ:„?YÔÖlD»rÏ"‘‘¬"OÁý‘™g™X,ZLejD ¤ìHGe:ú÷„vŒêø³+»nW0N[3Œ£n÷Sïú#wQ Ž ¤Ïð†¿±ŸE¹LÀOãöCÇ>üñ¹ßÜi9„ "¸žS'*íHh‰çÀU‰kÐ+ý—-}ÑQl‡
+}IŸþ›žÌñœID À8°ô‹®½_€‘¡¬ €Ïêâ¬a§Ò$—Ë`Ï”ìÛZ¢¬ ž¬%æLK°`¤8lK©ŠiáÊ_s—ŦãŽã¡kn¨8…i ±F2ª22å±ï$MP:RŠ1Z­o‡œoV#ÚO½ãŠµŸÁÙSÌ á#iGÎSà7~(‘:±„ëP°„Ô‰?”<|
+ØË1:=˜èô2‰…4™Jæ'ªA–!iºE)~÷ö—ׯ®^ÂAõ>4ŦlÁò¿Ó× úî‡þü7õŸž?¿þ"„à.Mç&Çu؂љǔXdJIª$giÂL{KÎgE¯³JøX Å·’qîvþp+!i4³
+ˆUµ­£¢›¦»Ço^&ÐòïüX³éÏ<r®RqÍdN±°_"”ó4ÊÄ‚«¬mtRài(Ö°Ë¡Wò¹CñÁäÁóSBÁC(+ª„*Ùe3²t ½LÒJ&hGψb3É%_QàWáÆÆ$Ûü¦â·â¢V&üÄ¡t‰s©3¾wWÜ Æ9 ™<•Œà[”Óº‡RiP“òžy>Ó¶3Q¯ 3£Úï’Ì,>CuÓðàŒ´ÉEbÒÕ—3Ö]Ä™</õMH€Mˆóøî.¬ArÔvç–@K¬KK{)S-À7kTíOï®ãË5X‚_/b¡sHŒÐ¥Îsu¹¿€•‘Õ¾¿»x{ñæd-ŠË1I~^ìNÉ–IvZ™«‘]s?sZ…Ú<‘a3zvÒ­è
+Ríeb\¼à$juª‘…“ªjС÷¿úf¤gÿ‚•MÅ9'rœ¼îÑ£BßvþY°q†;ªˆ‚–<ó‘&
+qþðöXðÓcÐ4ž‚¯¹d=PÙ#P‹¥ew‹ïš¼‰ƒ+›a;3…™Uß„‡bðä˜w6á¡#p9<a„}Þ%/f®>¯¢U(W~xõ©HÍð“‚Ÿ…òúôWûQˆOqF,ÚahM…83<¸:sÖí©:I—:Q©2aeúT':Fÿ†ОèD¿€ýú;ºÑ¥4¼Ðc‘k•ŽLÑ,r 6 ¼ÎÓ¸0ÂþÖ|ùÿ"‰¯Oáxp4°í&I Ò7óKæüC’x<ú_gŽ;endstream
+endobj
+1375 0 obj <<
+/Type /Page
+/Contents 1376 0 R
+/Resources 1374 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1315 0 R
+/Annots [ 1378 0 R 1379 0 R 1380 0 R 1381 0 R ]
+>> endobj
+1378 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [393.786 665.282 400.7598 673.6949]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Lapk05) >>
+>> endobj
+1379 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [262.943 358.0593 269.9169 370.0145]
+/Subtype /Link
+/A << /S /GoTo /D (section.5) >>
+>> endobj
+1380 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.4187 288.3693 291.8901 297.2804]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.3) >>
+>> endobj
+1381 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [230.0662 148.4427 237.0401 156.8556]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Lamp94) >>
+>> endobj
+1377 0 obj <<
+/D [1375 0 R /XYZ 144 757.9346 null]
+>> endobj
+162 0 obj <<
+/D [1375 0 R /XYZ 144 648.7745 null]
+>> endobj
+166 0 obj <<
+/D [1375 0 R /XYZ 144 595.6336 null]
+>> endobj
+170 0 obj <<
+/D [1375 0 R /XYZ 144 467.6068 null]
+>> endobj
+174 0 obj <<
+/D [1375 0 R /XYZ 144 345.1148 null]
+>> endobj
+178 0 obj <<
+/D [1375 0 R /XYZ 144 275.4249 null]
+>> endobj
+1374 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F43 455 0 R /F41 374 0 R /F39 351 0 R /F45 799 0 R /F37 328 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1385 0 obj <<
+/Length 2805
+/Filter /FlateDecode
+>>
+stream
+xÚ­YmÛÈ þž_±Db43z»â\¦M‘¸b¢¸pZ[¶Õh-×’³,òߡäH²­lÓ¦Yd5¢8‡|HÎÆ7ýÄ7±s7Y’……uéÍêþYt³%úŸÅú} †å”ã÷·Ï¾{ãÌM©Ion7ç2n×?ébGQ¼Yä.8Vôük§j¿0yÐ7ŸKkmðc÷ïü}-¤Ÿ˜ „®¯Û=½uøà‚÷Q½YÄqüˆ9?uDˆ¿Üþù»7ùD›¡MAºC—åÙn‡ý$Ɔ&KÒ§7=p]ïÜ7qIb†­Fi¬[¡|B¿b“ïcëðþ'ÚH»°qð@»I’`Ýâé‚·ò¸Oùaa Œ!bþ$ãîtGƒ8X•‡Œu‹ß{&±ÁáÈ´=&ô2A¾Ë¸ßU²ä;R¡Ã.™aC„åŒ~/,
+Fäld˜²ï„SvŽ‘èšñÙšç*ç(´í±*I“-‘ØSâ ä©h_îñ’ñþ 4'á4ÜÕÐkýΊ?`'­@(y;‘Ï9S·;1½bw”ðƒBžÊ½ã™2>u5Nc«ËO$t}¹‡fåq-‡ììä”MFNïr£ctU¿jO{œÄ•S¤Qh‹Ä)÷ªe¿—~ÇÖB”‡ÎÙÔ[Í0ë†MKúÖ8iè´bWxETWõF¾~–ظbªÆ…[…ÏŒžl›ÛÀŒÓ¹º¢,VÞ5°Y•ÃQ‡ˆá|­º£È—s¿¾\·òÊìTò¯ìbýº:°Ý_ž{QSFÿBÞyÿÕÕ+H=ºë“ÊM˜GQ69¨†¼½Ýð»ë£ÊbBÐÄÎÕ÷—p
+ü£`'ˆ´ù’Æ$×°°ÙÜ’Zù¼œÊ3ÝBœª§™—ºö¹GoÉÏæó *™(tÆR.ó*AÄ-£cDqI‡r”á$¸ôÛFž
+Nì û­ÐØêˆ+¼ÈÓñ©ãýä㯚0WÂ(tú°HÒ€Ñô–1©§4*^°=2Œ4"kî¬M‘†ÖfvrØp_ønÕŸs`MÎfòØ\zÝxêän UÈѲb4 l&fÈ·Û¦½+Î)Ÿ®sq˜æEì•£Œ.&E8dFí»’ÍcQ.ð+áTÏ”1ŽˆŸ±Rç–jëá¯ê<›!ˆŽ…ËmYë*s‘Ãé)@2HÅQšÑZ‚ì_ ½8 ã$+þ/¡#¼Ò5’ɜĄ©«sªp^ËIé,U–ÙN2Æã7ÄðTÆ1<°ÍyèÅ?ø >¯·¨”)tDažçnRt¥EŠ«Ì5…ÍN¹x¶g¥”ÿ¶–AÍÌi°+•°oåYQVµì‚«^ónBeîßw¥Š—KÆ»òpອÚ3y¿}=S-EçeÒ_ÚŽEQ
+˜Q@ˆ÷kŒí«ßú ù•‹ýK¡!À1•ëH°ŒÏ…ÔTc7ÂÎ$óFùlƒÁ($RÙ«V¬›3^¹o%ÿ"©æÉUqdÈ*R»ç—»@é^`›Òÿ¸Iב¨=8R¶JzðAÕ4ž
+Šÿt½ÄTGxC+On1=DsõšÖ­×8Žpüì4¹b(š«‚²'®ž\’óÕ“£üýV÷¸v8 ·ÜN‰‚p«NŽO(—ñÔIr¾òA¿Ô¨gðƒŽ,pýz¨ið¢â;åmª/ß4©wíõW_2½å4:-}èåQ,îÉv:øȽWsò[é„<–þ>•Ûø¬Ê7gé+‰C*j}Ù¾Ÿi|Â"‡²^ÒÍТ/E‡z_«Z-7B{a)…:Ƈ¼Ë½êGh{l÷÷zÍúJ[–$ “d¼W™ô,åÞ˜wÇf1\ÅzÛTZ…ŒÑ1Ô: Åÿûöè¨óKÀÍpm19+l¿MŠÞdÙûFžYukGÆ®{­BÜ”}}TäO]ÈR©¿Ö
+ÿ­<'mzQU5%BSâ2–·Ñ2ÿ¬ƒX C.ùïÌÛò-÷¥ø„dÃ{äÒ´ÿŠ®@®)Œ®ìêj¸0—Fï!Œ"‘¹¸‡ð…‡Úg²ž‹\%KÕ~Y:c¥·¯Ö˜QD{¬·ìÆLŠ]”úÐÎX-dÛ¾‡§ƒÀ¸¸ÝÉyÎÞ~÷ìAI!×0é¤ù¡q s1À¾æ½¸ë{¹R!&î÷W¾(;’V½Š4>²:E Ÿ:AmñòɤëHÄJÛêe'|we§U0±BÑRœÏ;ZýcªNB¹…\üÓ{Ù´ >nÒa9£áç­èbQÍyX£n^²
+‡4Cj%ºH°¼?4>h¡§“äZÚ¬‘]4™”ò{Hf
+3Åi­øø#|uæ–,æ‘7Î_Û¾º6 q¡# ·<KGÀêí˜f¡‰÷„µëìvÉ“}ºA=ܨ•bñeïh"Cë¦ö[zÇ©Œ'zÇÍ·v§®:”«ä¡Ûcy 
+ÙÏ%üaB½_5§uåêñzßyqâÿŒ¤N°ÊlvcTLšÜ&Ê(‘¹°$E<»0ÜÔÍL<.Œ]jþÇu«ä½E˜šbÆåöußTûm¿û!¾;¼ø’gR%L r zEÿlÜﱫ>À|Hw›G>°ÏôïÅìmN¦‘‰çbÎR(ñ½Ï"òß­=å3endstream
+endobj
+1384 0 obj <<
+/Type /Page
+/Contents 1385 0 R
+/Resources 1383 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+/Annots [ 1387 0 R 1388 0 R ]
+>> endobj
+1387 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [300.2261 600.5664 322.6975 612.5216]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.5) >>
+>> endobj
+1388 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [176.0156 511.0065 198.4869 521.8547]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.5) >>
+>> endobj
+1386 0 obj <<
+/D [1384 0 R /XYZ 144 757.9346 null]
+>> endobj
+182 0 obj <<
+/D [1384 0 R /XYZ 144 734.0242 null]
+>> endobj
+186 0 obj <<
+/D [1384 0 R /XYZ 144 556.0182 null]
+>> endobj
+190 0 obj <<
+/D [1384 0 R /XYZ 144 373.9718 null]
+>> endobj
+194 0 obj <<
+/D [1384 0 R /XYZ 144 302.3446 null]
+>> endobj
+1383 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F43 455 0 R /F40 356 0 R /F45 799 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1392 0 obj <<
+/Length 984
+/Filter /FlateDecode
+>>
+stream
+xÚÅVËŽÛ6ÝÏW]QÀˆEŠ’V
+4mº*ï:]ȲlÕÃåq‚Aþ½÷!ɲ#LÒ´@`À"/ï“<—Ê á§<eŒ—ĉ̴±^Ñ<„Þä¿>¨q=@@°Dü¼yxó.õ2™ÙÈz›ý­ŠÍîOaRÿ¯ÍïoÞ™hŠ2#ãLƒR„lªrĘ%&”&IÓóáì+±}
+•9¬êl”Ø?ü(yÿûq,òéøe3GGZFIl_wF}%æ4•©V™—DVfY¬È ‰6AO e–~Mñè…Æ
+¢D¦iÊ­ô%2øSQLNáü½hkÅÅ×Jä-þ(IDƒãO¼z:o(aÜáŽÜ'Œ'^¤qÇ›¶ðQ¢äI×ãÊ®ìKú2z»P[¾úÜà§eíɇªìY i¯À3 ]‡ÒêÏ3dÀ$ Å5kL ïîPpÁÑ#JcQMX±ëXøž?<…(ªœL½ýéËúW»©ÔéX!<ýÖ©ØCBººîðÜ^\{@i"(èys¬}Î O Âý(—Kóq±@aÅh%š|pÅÂ@ÏcÔ–#ð fcÝyàYpº\=ˆ«z\˘‚2V#j.ƒ¦ÚQéæ#·<ÐcäVt- j̽ŽÅ±ï¶8-^¼¸¡â•¡r“a+òã&}—á‹è â‘gn?îGéhò.Ð×î&+Sê\Ï’~œŽ~
+endobj
+1391 0 obj <<
+/Type /Page
+/Contents 1392 0 R
+/Resources 1390 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+/Annots [ 1394 0 R ]
+>> endobj
+1394 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [193.9793 355.0982 208.7019 363.8985]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.4) >>
+>> endobj
+1393 0 obj <<
+/D [1391 0 R /XYZ 144 757.9346 null]
+>> endobj
+198 0 obj <<
+/D [1391 0 R /XYZ 144 674.9196 null]
+>> endobj
+202 0 obj <<
+/D [1391 0 R /XYZ 144 388.4315 null]
+>> endobj
+1390 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F43 455 0 R /F39 351 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1397 0 obj <<
+/Length 2678
+/Filter /FlateDecode
+>>
+stream
+xÚkÛ6ò{~…qÁ¡r+âK¢(Ð6×ܵ rÁeë!IqZ›¶…•%W’³1‚ýï7Ã!eÉö®å"Àš"‡3Ãyqf6‰à›0)'‰JÂTÈx2ß<‹&+˜ÿÇ3æÖg0ëCüxóìåkÉ'i˜Æ<žÜ,‡8n‚d:cQ7k3 !ƒWÕtÆu°˜²ÀL?Ýüòòµîíq
+ÆS ˆ»eŠ Ï~ºé˜P\„<QñÓœvP§ìŠ˜ a†würF1;ð˸
+nà7°<'*x…À·`ÁÂ1hX˜*eÑD“PÔL(BâæPý {೜Âö6ÇáLjÉyhñ+¯hùD€•éPèTX¬¯Öf>åIp‡‚ÁÚLâ0M„¶Òã¡âšMxIN›~8E §×1h²uƒP*!.€X»ðÓaAOzó¿µ)ìÙ²Æi7+áT ZÌJü¨våÜ-¶ëƒÒ%ë[ /ѱSz³»E­N9çI¨S%Ü6qh‡ŠƒleùOe2ciÆ1èiÆT˜ÊˆÛͱvzL&ðƒ<(JÞø>2!ß³hnÌo¯«z“µ_ßd0ææá U/£øeÄ>#éð )¦£(¾««ÏùÂ4ï²ùœê+Hc™¯>ð(²¹ž‚y«à³©ÿF#
+(·´ýÓ9k=ð‡ÕZu–„Üí+²ÿ9íyÁ²ªqo§¨ñ—öÎA
+²XhLsì³L¤aÄ4ˆ(=GÑÀg/ý¢Ç2ë£!Ÿî‹43q8på%Û,¿_UÖ.ó/Wq8†}ÄßWô
+,Ñ— u^ëìs^‡aüvÙEvçYù£Òfžk³\š¹›­ÊSÇ
+¯á_äá]a2¯½yµÙY^Õµ¿q²]»®ê‡Ñw‚TÁ¨Á”Á€GP-ÇÜ
+Ë|dð×jÔݵÌž¼¶zE‹Ôn Úb]Aj1V¤É5·yi¾´×]ãZ‘,d©q}V¾é(ùörG®Õ]mÜ-ŽMÒèOÒl³ÛâO’d×’¤¤ -n‹ëhñ«iñcZ£‰‰QFg¾l¡LÉ–­©½ñáï¼)³z^§ßžÙ
+þö Á£j¿Uû²×¢®Úc[P˜wa5%ŠE¤¢>¢”…"I=C¯²-ffç(ÊFðÝTð s„ÒÿU¯\í×íëPrßô">oÖX^I‘Ÿ»Š¹ö5/Ò·k˜ÑI¡miwÚ^ÒP¹òH_n/ðcµ—¤Œl­‡¿]qµÔo‡JÒøŠÝ²åØó5î,Íý¹˜!:ç}áú£2ÔRé§X¼Å©=þá‹)¨`P0 ¦Õ°P|_m6H—¦X
+.µö Bp¥°'ÇÑã½sˆ¶Š§ÉE_Ta¤ãøÑÈKj¡}Av¼£× œÎÀO„Õݼõd™ôQ ÆVÓšdKAX¦†]‹˜¶dþLó0Æ€00ÿ¥í½aïH«ƒ½é.cÇ¡m=ƒr*쀭û:œB9G´m6•ÆÁÏ%:tÚsÙt]5€#5×_t˜êe`rÏ‘[N™Û¬ÎZSì ÌvòÈJŸxç8jÓ=®+Žm/þ˜®8øÄ=ò5ãRwã2 þw¤|·Ì
+:Ù7^mQ„VI¸;À¸‹‹‹Å]èÍy u_á&¨½êcQ×Ýæ®Ýz&ÔƒÓè”ó‹±~&\6¼j »3B‰Q(hî–ÁaÞÐGåE⮵º@­\ئ1õž»W6®$=zàà „ôšÆ”
+›}YÙœf¿iºÄo`¿`t2㈳s¦ µ&ýŽ¨¿ú®…endstream
+endobj
+1396 0 obj <<
+/Type /Page
+/Contents 1397 0 R
+/Resources 1395 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+/Annots [ 1399 0 R ]
+>> endobj
+1399 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [203.4174 238.6183 210.3912 247.0312]
+/Subtype /Link
+/A << /S /GoTo /D (cite.Somm05) >>
+>> endobj
+1398 0 obj <<
+/D [1396 0 R /XYZ 144 757.9346 null]
+>> endobj
+206 0 obj <<
+/D [1396 0 R /XYZ 144 734.0242 null]
+>> endobj
+210 0 obj <<
+/D [1396 0 R /XYZ 144 714.1959 null]
+>> endobj
+214 0 obj <<
+/D [1396 0 R /XYZ 144 634.0451 null]
+>> endobj
+218 0 obj <<
+/D [1396 0 R /XYZ 144 283.1596 null]
+>> endobj
+222 0 obj <<
+/D [1396 0 R /XYZ 144 211.7815 null]
+>> endobj
+1395 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F7 803 0 R /F41 374 0 R /F37 328 0 R /F23 307 0 R /F50 892 0 R /F40 356 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1403 0 obj <<
+/Length 2210
+/Filter /FlateDecode
+>>
+stream
+xÚ¥YëkãHÿ>…! ‘!îU?¤n-Â-3»ËîÀåîËÍÁ(¶d‹8’‘äM“ÿ}«ú¡‡-y$Ž@ÔjUw=º«~Ueºðá.¨ Hq.Ö/üÅæÿùÚï+$Xu)þñøá§Ïj‘(dáâ1íoñ¸ù¯øËÿ=þúÓgÁ:T,$ˆ8lŠ$»ÄÒˆ.O„TÊÒü븤ÞÓWŸŠíà~@Ë"KûeÉ”¯ñÿó2¼x«÷ÿðé±Ñ$`œ0„×Õm¨.u–‹D’«Fg&ˆR£s¹\(1šÊ' ­“ñ+åb“¤ø¨Ò‡,Íò}VÕ7ô†>šÅ]+·Q "ÃF°³ù‚6û¤ÆGž¼éçC•¬‹|S¤õk1ÀÉ­ïsR“8%V£u|¨³"¨“—C|º¡ï'3Š&1zH‹òœÑÓÏ÷§ö® [ ˆ2ÙçHýåŠzþ
+fâ]wÙ%ÞEŒDÐÙ¼‹w‡}VÏg
+ûs´ëqþÿn¹By¯¨Àì̾I[l´ ÂÓ3{9ìÛ/éeeé•¡)Òp£!%’ªh:º¡1–ÑP ]RZÑ2ÇFLLK3ƒ¨‡õÜG[eè/)L¥;$@¾-‘ˆã²Un ˆÐ0$Ò÷™f°ëPc¬.r‚Ë#ï÷¸nDc²(@cJœaJz¯Ù~oF¥#Û´8` Ü’Âñëg­A)ôe¡-\bðÊRXñ™Rí¶•]G —×;»/HŒÆ,òÊŠüè¾Ôh-ma&ˆz
+ Û$‚zXâsMè\
+)µKLó!³9„ëœLɺÎM:–¤M 0ʘx£…Õ´~]Ë \Ò¼a/ò}ò-ácQ÷RÛ«½h‚ÔŽtG× ÿÕÊë?5ãŸï;6¹Ò¿ÂMK8Þpã´NÊnw!Ðý}“ÑY» ¿›Ž6¿°
+ÈÀ" 'F¸gïý^Äx‡·>ƒOp­Þj}ŸÝT횬߫N¨rý¿_º¢'
+»¬m%~Yr†ÿŸ—¡p¿&%ÓT} cŠpY5®ýœ•ºv1½S!;e0Œ÷Zfó
+`¬»^hS½œŸ0Þ´ÍO_Öý…Œ´O iJ@äˆ ±C‰ßЩ ;ïË$Þ|7/64ØF£^2'Vê£Ó ë—|ÛSEoŒAce£˜EÂùžõKMD¹·½X}ˆ·Ø/àÝÂIfä‡éêІ«µnQ'¸!R2ˆ³Xš!Q½‹k³¬Þa ¹uœ»Á±²tPÿ>aH5áÐN¬½DýòŠ)„AðÃ#ÚJùî®éS+W Â¡Šö T0¼+ãnÒ‚~ko¿fBwæeƒFýµ§&àf¶ŒßÛUØ| ¥îBëÜí•+.팑²ÌM§¸2K´9xdÀ'ŽUÓi}‡`-ž_GÔÑ í÷µ·'2»Ðº½®@¦¹…‰è6á{°ešä‡ºÁ§Æ fÙ¼ÌW„†‚ý°œf£–¹Ô‚>ÈP‰gùKS/cÿ@ÚÓkïB‹„>£C=.#ó·ßýú7•Räendstream
+endobj
+1402 0 obj <<
+/Type /Page
+/Contents 1403 0 R
+/Resources 1401 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+>> endobj
+1404 0 obj <<
+/D [1402 0 R /XYZ 144 757.9346 null]
+>> endobj
+226 0 obj <<
+/D [1402 0 R /XYZ 144 161.1794 null]
+>> endobj
+1401 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F23 307 0 R /F45 799 0 R /F41 374 0 R /F40 356 0 R /F50 892 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1407 0 obj <<
+/Length 2575
+/Filter /FlateDecode
+>>
+stream
+xÚµZmoã6þ¾¿Â@PDj®ø¢·‚¾ì‡^{(R‡Ý
+"–HÎî×ïüÙ
+úÿñŽÛñNXôg|ýîý%f KBή³C×Ë^4_pß÷½ë=_H©¼ªùBÄÞrÎ==¿¹þçûqo½ &¹H@!®8Ny÷Óu"’‰(_GÚÍ:…ÍB–D2&´>óEÏ"¡˜r‚Ì%`ö“Ñ,t¡Âù8‹‹È‚ûÄ¥ºÊ³Mzÿ9]é¢J—zùrŸnÚ¼*w/ßÐú¾º…[.aI'=uÁ€:)™‘ì©Ë³&»Ú6Újɪm¹Ðãè ô(ÁbÅ“žž“M¤u™—«—f{—å«a›Üâ]Ñ€®³0âVÕªíö*ðîÓ²¬Zj7Ú6Z<2ظµæ^Òce¨ý k;)ϺUhÁ¿tÓ€ß×:ý<€ÚÂ
+rÃ’{q~3Ížp”=t‚úÑŸËdÆÑ,ˆàtJ)úÑÿïþÝó C±èÃ0ìr`Q ˜ˆ#µë ƒ ¼Q59ú±­6“Ì#>¢ä@ŽDys`bíØ[CìqO‘w»¤ë6ÍÍÔÂjÚº–=dJöµHÅ8÷ûï•='WÎÐS¶O8SQh—`\BÕµ6Ê«U )Bþl§wÐ,,´¶²¿Þ)X”ˆë“ÏÕêTµˆ@t§Â8ÿyöa8‡éð†«€\â+Îá
+~
+§OÙ)FLpx…ºIûú¾Hkýùùç¼iÍ>Tõ:m¿ßd\‚3x§ÔL…ó!Æ“ÜBŠw2›j ˜c†>pÐ/°O5T´§háu©‘ÌJâìè(PÈC
+ ’È…ÈÚU ‰» ö#Ñ-lÉåì ÆC³-Ð0Qvšæ±Äà ôf˜©E1P¢y\§p5&Æ¥FÞƒ›b¢_‹k«¢!øö=Ò kËl‘D,
+?$ òàr£6”£tXêL75Øc:𦆿ßðê…íŸs2jQ¡U l(H´#=”jîu`?},}ï—ªÕ4Øqº‘klµËÀäܤ¥…™š-
+ü‰Éx¤ŒÝþkê-Ý~=Òsv°1FJ÷všVkÊ,Ðÿw…K8|¯Êhò3TÛšž6éÆქ0SŸ{×øìÒB°&:Kà0¶;4oÀ ö ËVÚRÉcækËEgð\…Ê3/—‚ù¡¾ñÈ£K½ó|»Ý t{Èv• Ò‡]ò#’ ÎÝ–Ï’Üù°xÁ'^0îBmX£„´»kÝUÑ´Ùº½ºà»‹ ~q!v¯R׉¹b”¹WpüŸ7µN×w…~›Î}¢^Nñö™`?ÝÕ£‹…ÛTçå¾PØs÷„êF0¾dhoí?Õ5ć±eŒ`\©ÐÇ׃siß‘àߟ\}°WsíÂÈm\Ì1u ~9Kü6–þIÑS$iY+<QDÌ"ѯ=m€ŽÓ¬Õu/U<ê=<ƒC ŒÔC±%€…¡ìøû¦4·×ÞîÏ»ÁS.iÎnw aÜÝ^ A²„;"Êý½1—'pwU> þ
+R?ä#cÿ×f@?À˜¾Åþ>}¸{úƧ†’&ûäR(“­À3]ÐÖ˜˜¤\¡°”tÀ&ߢ"ƒ¦Ûv©é&Nµœg£¾ªñc ÞBáÝ{‹*À#–K3jR bô.yCñd–ãsPÓKW’£tF 9»Û¿æjK˜ñpïýÿæ–É¡¹µ\Qõá n{³¡œáì¾ó‹:rä¾omê>Ѿî³PHùÇIœä¦b€¿.ûh¨ãLöH&’(ùšìCÉ¡seµVôK»dFzW?Â6:27ƒ¶(í'Qñan}˜8šœŠò@¹/FAò±Þ%ËýL‡ ~ì(iY‘ÞíÆbtM Ÿ?œO^ôzÓ>ï^v£<Ÿ7¼¢¶É×›Bï^ gu«¯Õ½þ²AÝX·ºæ›Î4 ÁWÛ¿½ë\0Õá_ Üù`¬ÌÁ“=Ñ€øÕüÿÒOw/¯d–°C»ó®&¤ø[?j Ô&újO %qƒq°×ÿˆYZÙ~‘=“qD‹…L@:~ÚxG¹]?æKVSŒAp\¥9p‚«ü ¸ø§Eƒß°
+N1Tuiå>>`”vÔŽÌÇvaÊš….W&ì7CÔ œ‰äK¢ _c=˜â1j¤ÁGú.ÍŽ¶ }2-_Z²òéo‡uÒrÈ(Ô×qqQÐÂnŠ…PZÁ&s±% K°l¾‰ŸÂ—…!ÖÚ%{»yÏn©Uá•t©
+endobj
+1406 0 obj <<
+/Type /Page
+/Contents 1407 0 R
+/Resources 1405 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+/Annots [ 1409 0 R ]
+>> endobj
+1409 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [509.5492 117.835 524.2718 129.7901]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.5) >>
+>> endobj
+1408 0 obj <<
+/D [1406 0 R /XYZ 144 757.9346 null]
+>> endobj
+1405 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F43 455 0 R /F41 374 0 R /F45 799 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1412 0 obj <<
+/Length 2681
+/Filter /FlateDecode
+>>
+stream
+xÚ½Z[ÛÆ~÷¯*¦
+‹æÜx)`[7ÒoÒ‡8€¹¥eW$’òz!è¿÷\†%Q»¤ –Ãá™sŸ9ßYL<ø'&BëI`7RÚŸ,²WÞd ó?¼öû æ]Š¿ß¾zû>œDnäKr»:eq»üÍ1röûí?߾ײC%#íšHS$¹½O,îÒx®ÂÐÒ|ÜÍ„s÷ÉzÝËhedi?ÌdèÄ üû03Ɖ×ÄÿÕ÷·­%F*WÆÞÜ–êÒæ`â»Q B¶Ùs= ªR»ž/ØpÌæÂñX[LBÐÖ×LƇÂjûI(½LVø¨V7ù.{L—õý^º&ɼº+lÞ¬ž ÏLu„‰¡ÂÒ<¹yHžö‹x[§E~ØoÒª.VðÃo$ý÷ýݦâp8÷¨P‘ë‰T¤+B!»}éyL°†Ë¼Ë†<~bx\øÆ…5Æý#Ylâ2ù¸»+“Õû¢Ìâú›4­‘®R0ôCÏ•Òo².¾©’º"¥Vã•¢Ìù&<ñÌf¡v’Ù\Jå,ÜE9l';QßÓ˜RGª¹A`š]•3EWŽv!³š] žÇï3ká|„Áîþ”(RáÔ{T„
+í‡5óØ®áÕ¥%X9¾×e±9²¸'1üRÃü}¯¯0ìžR}…IÝx ýñf¿8 *»êº©²~òµë‡p°žø© °ñ
+€—9®‚,2h9fñ$ˆÝGÂ7àµÈxÎßÖqŠBÁFk`eˆ¼Nüo<Áù:ÒK‘ožx„lCV@B»¢.xöd!ï¼ñÂ#œXK* Á^c¨ CASpWجEäliÇк v·I˜¨Xñó g‹]ÉoHÙI
+Û)N¯3¶»óð5‹‘ËÓµöâ*œ÷¸uc9q­î´mJÉ<«Þ®Jóõ‰ÜËäòNãüRrÙóÙqI½C•ê;7ÜžR §³‘D7ÒžìTJ9¦,÷Ô”©Øÿy\mV=.t$Þäq–€Ø}[6¸fdõ ÝéTL§r:UÓ©îƒ ¿ƒõ ƒop lË$Î éž)§WÍ&¹ª#׌qô•Z9ÞÙþ0g§«]ÎhhÙïð^¹G/_È zä*¥'P¹âÅ`ÒïËŽˆKþÍ‚þa-ݶ­å¿ýWéúЧxCÙÃ8z™ñ/«àx“Æa?ñØBžŠ×#¤‡×@ò™ônz$÷cˆóaL¨Ãk'ˆ Ý@v|ÝÂQ¯ê¤Ä×MR÷Ì^$^ŸĸG‹¾SÅÀB_u}Qá±ÂñéËsÒ*_2Ùápy(ÃJ7Šè(æÊ7Äú{à{ÏøÚw}™À„‚!W]ðˆB›"
+¸Bb`¢õ à~T€ãŽJ!ä£o
+D¾¨ :è
+_Ñ_ו…:¸^…ãÐPÔVJ;'s4hgÐÊð¤â{Å@Œ‡ =aŸdÛúé°Þ½‡C…>yUšm7ÉaðHŽê³Ð-Lä
+ýäo*á¯)<øv‹ww­ÑcMÿ©ÕCm¾ÈªhŒôw¼M¦¿û.&<쟌mƒ
+äD“v‹­È°³àØ–†!×1B@®†¿
+$Ã÷´  ûFÆù€ˆJ¼Ãž¢ÝUáñ‘Ùúj?GIå
+~ÑûìéuÅ^6«ÂÀ•
+¬o©¿ÿôëÍ¢È@~“=£õˆ 4P~&
+b$ Ð7zT«›j»Ië?F å¹b.£È•ž2G¤^‹¤ª,`ç4¬Fé4D—óÖÝIT~„’,ýñ^ïqˆõ’˜ÑNQ>ð,VHluäü±ÛßÑ¢+AD®òÏoØ•n!B›fOnÛvº-Öed(ŽîDˆ1€ÅƒàX¸:û®؆ÒxæšxNŸ6Ç*¶/+¨=#¬µä¬Å4Ñ‚™¦ë2—ʸ¾ç«S”²-¹ìÓ%^l$@/ˆ}â¾v¨,Á@„чp=!i´ƒ'h™Ø¾–Ô`„”oJwÅä`TÆ#î5p9ÔiFL;O!å[eÔ'Ã¥©eVÕqY'K—›4·÷V¥šÛ‚Ô‡$où°”§è$ùÊHò½†'£Œ”Ó@us"é|æ¾Z'¯™Â"P›¹+02ånkðH­
+ó0æW§ÍŠ.·¢Û¾3ñíy«ê3œ‹ö&±~EÀœƒìÀ­'°] M– }ò•µÜÕM—– Ëì+¦^ÍíÌ^B…Í`­ ZÔgfú˜Ø
+$ó†9+8À
+pÞbàdê8£³*¦‹K»€:ºl`›%°oÁ͉Bt/Á…ËYKÔÌ5×>SAm†cýOü¹sÙO‚ ´Ål`½nIð´ª°épü»¨“ž`jWƒKóW`(çJ.K‡Í»NAॊ‚þÞ¿Œ„=GNâ)#Æ›¤brPF£—6v†
+¥ý§„µêôæèú4a·_ÂE±¢ká……бýñš.¦ ã®fÝÒÚêU4e¼á/q¹ÞeÖ´©=çDz}[«DàêЈ³u‚y©”âýÔãAÌóëMA)²á×/ôÓ7w—0¶ð‹¥ïh»2nNüÄ~cåáoÔu_<“Öü\¦íMsQ µãâÁÚ×Ô„¡gâhø/äyò¸(vy”ûŸ~­“ª~íˆFý4~‚‚÷ü)KŽüÍŸîT|7•ßMΕÉ&þ:¢ç ÿ’æÌ{qÞúŒ®5.%Á²kæMdÛ/f#…™AÂÒÕ×£Qbœ¨a¿$›*é‰YÓEÓCÅûÑ 'p²×—ý?D×nþ# l/‡Ãí‹þ
+endobj
+1411 0 obj <<
+/Type /Page
+/Contents 1412 0 R
+/Resources 1410 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1389 0 R
+/Annots [ 1414 0 R ]
+>> endobj
+1414 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [431.5447 295.7166 454.016 307.6717]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.3.1) >>
+>> endobj
+1413 0 obj <<
+/D [1411 0 R /XYZ 144 757.9346 null]
+>> endobj
+230 0 obj <<
+/D [1411 0 R /XYZ 144 353.4584 null]
+>> endobj
+1410 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F23 307 0 R /F39 351 0 R /F41 374 0 R /F40 356 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1417 0 obj <<
+/Length 3107
+/Filter /FlateDecode
+>>
+stream
+xÚÍÛnã6ö=_a ¬ŒYñ. ¶@ТSô²»ÝmÐ}h ¬ˉQÙòJòL¦Aþ}Ï!E™²(Yn_bŠ¢Î…ç~Hºˆá.¨ -5I¹P‹‡íU¼x„ù¯¯hû~‰ –þŠ/î®>{/Ø"%©bjq·îø[ýé›%ã8º{Êo–œ‹èËòfÉ’huC£üæ×»o?{Ÿxßs•NY
+ñkÉqÉÕWw’q´TÓ”v«†äê…"©æ‰¥6&1K’…f‚ÄŠZ’Y 4GÜÇõ"ê”Àõ‚‘DФ%îÊÅw?ÝæUõl×ú —n-°OR™¤h
+*ˆLê¡h%öCU>äuýCöð[ö˜ÿcßlÊ]ý’ž`ŠÏbªÅ³¯ÀxŸ_`d„õp¨ª]¶mMû6¨;G~ØÅ,ìEÞôufL1&0ÉK0=df3îkÔuL`T³0Þ®Kc_ÂFæ»ÆJñÝçvs‹¬®K+×bSÒVåË…{<îd¸OÇfÝ9f”®Û‚m¯/¯A
+È
+î“ á\úÙü­e¿)û}ªJªdûÅC¹E2¶ æ-NÀäÐÖøê
+: $A×^+•Â p5ô-:!qŠÆ­B’)–@¡*8 vDêV ‘
+êcMc’°S¬ËÐPvv“Þ£,3ke(§»›DDŸZÏeýËš®Y´ùÐJº)[yâ»ÖnqþǾ‡9eðHRL4S†òÿ^ýük¼X£ß^Å„§‰\|„‡˜Ð4e‹íÕ Ûó#;S\ýxõOo;Ì¥t ®a\ìÆPN¢°„ÀòôœÜ½erw«Lª0!÷I¤G¹Ÿ"‘»õý¦hEô•óœu[K…%D0¯Y’ aL±óò9‚l¤e¬úD“›¥Lð/­‚%œï". EôáF‚¿.è¡ðUVåïBa5†¨žRçQ pE_BS"uù"„±
+”™F²™ÇµÂòÁ+°Ì¸È×]²4ŸOˆ\$`xü\¾è/›¹[e¶'D>‰ô(òS¤#"÷±þý°ýhB5V‚Ö¯…%.@bŽ¼·£³ï Å åg Y|ŸT‚±XEÿF£^­K)¹©8ñ×sÏvÆ(`µ´q$ºkRàK£'‡-þ¿ï9øb³¶aZÓ•û´§”8hâBï6¶¼¢mˆ;ÙI¬p<e¿“˜­*9f:À©»˜\z;ù„}ä- &¡àÞUÓaº;lïó*\¦+Š×+h N§&GÖÔõÚ´j]±f…ÉJÛÐ4¢2Ó[Ó²Vl§LoÖ@ÖZev°uãß1½~N¶Z¹HaÒXÖV·¢‰`¾ë.ŒTíp³;¦îfÆõ:2 Ĩ^Y
+,DOšçvœC–cž½ƒPuÂczª ù·1È­ ]›t¨RÉN*zvRѳXÌη¡ ^šäOBJºo¼žó´H‰šS׃ŒIë„ÉÇ °”³s&ï-›0y·Ê(M˜ü$ңɟ"1yëhÙ㸭ƒFS>+‰Œ K$=kë>Ì€­ƒ#ˆSÙ§Óe‘®¹G:H¶y°ÙV%xâeU?øù$ž`˜J¦j'ÊÊ5Qò}‘·Mv¥-5@4щǻԃì0­"†’7&Ç1 N›ð‰o‚éÛ@¶B!…†DÁµˆšMS DÃ0nâªS"ÚLò¬VX5ŽâÒ9” ¤1EÄ …ÌO''m¬^ÚWÑï±]=Ô1(÷ˆòBFRȧĨ{s §9áŒb•œô9‡.”ÆÎ¥fvhÊ-ä+YGJfj¿·Úµó³#ù²ýuçf›'RFæHòÐθvg?—£Z[r¹\1ÕNTŠÄ‰ôzî¸ Õبا­U¼µÐñaÊ,§íå±0og
+»‘3‰¢cæ2<òìÍêkú:÷â4Ÿ—æds^Üý“KE¡ÿ(6`ëÍ öBŒ
+ª;lqðlæŽ|ïô3Uìendstream
+endobj
+1416 0 obj <<
+/Type /Page
+/Contents 1417 0 R
+/Resources 1415 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+>> endobj
+1418 0 obj <<
+/D [1416 0 R /XYZ 144 757.9346 null]
+>> endobj
+234 0 obj <<
+/D [1416 0 R /XYZ 144 418.3155 null]
+>> endobj
+1419 0 obj <<
+/D [1416 0 R /XYZ 144 344.2956 null]
+>> endobj
+1420 0 obj <<
+/D [1416 0 R /XYZ 144 332.2852 null]
+>> endobj
+1421 0 obj <<
+/D [1416 0 R /XYZ 144 308.1534 null]
+>> endobj
+1425 0 obj <<
+/D [1416 0 R /XYZ 144 272.5646 null]
+>> endobj
+1426 0 obj <<
+/D [1416 0 R /XYZ 144 260.5542 null]
+>> endobj
+1427 0 obj <<
+/D [1416 0 R /XYZ 144 224.744 null]
+>> endobj
+1428 0 obj <<
+/D [1416 0 R /XYZ 144 212.2353 null]
+>> endobj
+1415 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F39 351 0 R /F43 455 0 R /F41 374 0 R /F35 854 0 R /F61 1424 0 R /F60 1348 0 R /F23 307 0 R /F45 799 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1432 0 obj <<
+/Length 1970
+/Filter /FlateDecode
+>>
+stream
+xÚ½Ym£6þ~¿"jt*‘Š_J­¢VmÕU'uÕ~Ø[©N ½P ·»òß;cÈÂUªVÀÌÌ3ž±Û™xðG&„ó‰/|7d\NVû7Þdí?¾!öýæM‰oïÞ|ùC0 ÝPR9¹[·MÜE÷Žà³‡»Ÿ¿üÓ† ¹+BFQän[Þ”ñ\î•ùý8#Îò½Gø¦ÓÈÒÐʾ›ÑÀQ+üý0ÂQmÿÍ÷wuOe.õ…¼ÝÝZêºÏþDº¡ÏÓgÏõ(¸êSîz’˜ŽS6›'0Þ2€·’£<c.§>µÞ¾'Œ'ëô¸Ÿžp¦ìlY¤j‹ø´ZLiçåöŒÍñ®°±j:0¯,Ήç†"„pêœ QV–qTf«]’Æ'lúgq>M9ü ø—ðïŸßv@W¶ÚС½A}_'ƒ;¤­’«wBý†Õ86‡ì˜Ÿ­t8!, ªÍÃØò8pã»R¢Õ|ÍKø!‡ïðáã¯*áÂ|áü?â„ѸœÃX™*Q ¸^„…àP
+Ô™¶ê²Iocû¢Ìðê9+“vrlO1åZ
+ ;Þ6z÷¸­zl»N%…dUÝwÎ_â²GµåξÀàáueÇ jg%o­Mc§c
+WÙ1-ãÃÉÀÜOéÃà<‰Û[¥[@‹B}Œ;we7 È (½ÿ„ð |8ŸÆ"ÑqHy•¤ÖþèÚÆB³qÐ
+ɯOOOOúD8]0•^L«øÄõ8µ¨«3›´“g±^$ÀiY?Â1ë1‰à0ÕéMe¾Ã›`XlÛ¤Ó•Ss–óþS\Ø<ô<å°à«5D›..^žúë?â…~É>ÞzÕ/áAs¬gvñè¡¡>Ž$¼_þXØ­Kþ ¨Ž»òÂûl!ûòz&]†gU Kfß1ÄY{6j§V鞈ò¸tˆKç锜F‹
+V—Õycöüè0 c×Øns€k¬»¤(ÇöUšV-¶iŽŸ%þ«á=]÷닳aÜ‘¡F¦vAFù½Æy8AÞF†2|u·8fWè߬½ƒãÚĪC
+ÜO¬“Íâ÷ûÈ«¬žj.Ð!Ò9ÊÕʶ•Ï¹½ÃÊ^ÕN©Ñ³y°ƒÇ‘@¿¸.‚z¾ÓÆÖÅ~ê[déî9ÿ÷p˜í*3 :Dø}l2
+@’Ê𢰈€®o ‹¿ª#Î3þdÇÒÔßÍàˆ®J¬âÒ” ú«ŠÄps³¨ø_¯u¸êu%0 ®`„Ö®Õ|¼^¬Õ¡øäŸÒ›±^TõH"™ë‰ hºt’å*úûÿp¤‡ .ñ˜¼p䋇­£8áhº‘Æãó2
+'ÍL)Q?T•3¼×õ6¼±±ºÎÎBîì”®¢á™<ЖãÄ©&MUXÅÚ+õ‘UˆX¦ÌÌmbUSÝræY«fæ¾ÜV Ö#î|Ô_“v tŒ cé5°’ºÛuÕß–U¹ îhß ­¡–;SQÄ—‘®Ê&èÑÆ´TD¼·¥[S%År«©ü1Ál‰OP'ÓË¥
+endobj
+1431 0 obj <<
+/Type /Page
+/Contents 1432 0 R
+/Resources 1430 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+/Annots [ 1434 0 R 1435 0 R ]
+>> endobj
+1434 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [509.5492 617.7472 524.2718 629.7023]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+1435 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [187.2822 605.792 194.2561 617.7472]
+/Subtype /Link
+/A << /S /GoTo /D (table.1) >>
+>> endobj
+1433 0 obj <<
+/D [1431 0 R /XYZ 144 757.9346 null]
+>> endobj
+238 0 obj <<
+/D [1431 0 R /XYZ 144 675.489 null]
+>> endobj
+242 0 obj <<
+/D [1431 0 R /XYZ 144 205.3585 null]
+>> endobj
+1430 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F39 351 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1438 0 obj <<
+/Length 2776
+/Filter /FlateDecode
+>>
+stream
+xÚ¥ZëoÛFÿž¿B¸¢UD[.wùú`ÀwAsH[\Ľûà¦-QaŠHª>×ÐÿÞyìò!Q¶”Ø€¹œ}ÌììÌof‡–~åDj= ýPÄJ“ùæ•;Yý߯¤éŸá€YÄ¿n^ýøN{“XÄLn–Ã5n·N8I×u›u:)¥·åtæEÎb*túùæçßE½ù*ˆ…’^ q¶ïãW?Ý´Bøž^èÏKÚŽ:7œ"UÄÒºÂõ¢hzZ¸d‘½dv$ §ÂIÒšÇ ?Ž¤îw©t‘>Ô÷Ù›õòzžlñgöÍìLP†ˆý(î1òÎbÔ[vç;‰ÛëËX©³X-ÒeV¤×÷éã°l²²ØÛòßßÞŸŸ†‚]}'÷ÏÊã‹X»^Oý:.Ò¤º\Éþ¹Jn—'-#ñ¯ •|µ’-ïý­ aÛcUÜ÷©báÊÄÓJ¨
+íƲæ«Ä8‡}t
+ò `m†2¯xê*»·Ñ,’Y¯N{ìÚLÀ.of,Ê~?F ÏsÞ/™¸HÛ(U™x#7cAÏž¿$®pUs8!í!!¤S`¶Ðûmí¡p²™3k¸i ¿Î†
+—ˆâܼ—ýÉ;ËŸ®³%ÄqJ~OókÎvUº²_™MäÉÐ÷Oûsó`–C}¥ šà±L6RŒ»—T"Š£o.!ô×yÆéí(ú× q‘TcNÿ,ÓÖéûLß‘û€¹=N#±Gõ“
+³è’J¶•ÅUa?fie̱4w|7,³Õ½aôEHÉÁª\AÅVëòØNm@Â7óY®â·fuëë1_À D­Kfõ:]`Ú?s.¢¾áï­oEmUyäÛ¯ D¨üèÌêäÛöÓï‡Þ×Ñ äHD¦°’nù>³Y©qBÂ_]Û„éKʵ6ü’öS]ZÌ!!7_z=)BʃoU&ꎰà/ªŸÿÙ|a…?p*S›@Q2t¨c»Ð\OŽY¬
+cþ_¢ÿü [‡þendstream
+endobj
+1437 0 obj <<
+/Type /Page
+/Contents 1438 0 R
+/Resources 1436 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+/Annots [ 1440 0 R 1445 0 R ]
+>> endobj
+1440 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [315.1917 592.0566 334.8956 604.0118]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.11) >>
+>> endobj
+1445 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [204.4401 162.2172 211.414 174.1724]
+/Subtype /Link
+/A << /S /GoTo /D (table.1) >>
+>> endobj
+1439 0 obj <<
+/D [1437 0 R /XYZ 144 757.9346 null]
+>> endobj
+246 0 obj <<
+/D [1437 0 R /XYZ 144 547.7298 null]
+>> endobj
+1441 0 obj <<
+/D [1437 0 R /XYZ 144 531.0009 null]
+>> endobj
+1442 0 obj <<
+/D [1437 0 R /XYZ 144 433.6991 null]
+>> endobj
+1443 0 obj <<
+/D [1437 0 R /XYZ 144 281.5198 null]
+>> endobj
+1444 0 obj <<
+/D [1437 0 R /XYZ 144 203.5622 null]
+>> endobj
+1446 0 obj <<
+/D [1437 0 R /XYZ 144 129.0914 null]
+>> endobj
+1436 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F23 307 0 R /F39 351 0 R /F43 455 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1449 0 obj <<
+/Length 2350
+/Filter /FlateDecode
+>>
+stream
+xÚ­ZmÛ¸þž_a8DÎ:Q”D ý²i{)z-
+•›È š­vï¼Ùèÿ|'Ì÷2,†»}÷ËÇx–¸IäG³Ûl,âvý§FóÿÝþöËÇÀpùIà†‰¡Èr»Õ†'òxn âØðüÞÍ…³üâ‰`3)xýÄð~žû±“®ðïÝ< tCòßýzÛ¯$ô¥ë«0úþr{®Ó5«Yä&JƼfÏõ|0UùëE‚.½ùB8[+Õ,k£
+nýó|!¥tªŒŸ«ª«î4î±jÓ8œ=L¨«ù(+âiþ°J‹Â ÛÊ”ƒòhå‰ñ`ç È5ºíö<chµ®¡”vKŠ» >«®eˈj-K÷`–rȪè.¬ÐæŸd&KèSË\!!JäÅ!¤\Ú…~èü_4·%*P¡Ó"ek^~ï– øVHL[&þ'Ká<Î¥ïÌ<Y–Û»2N‚¾Î{g—æ%ŽÀ¯ÕnGRis˜–7.MÀxOˆGÁŠ*P(×SÒòÂJ‘€rKÚ§t¶éÙxØeC²Ö¢_€sÓÕ¼$+Úƒµ!ÄÙ¹Æn<<ÒM¥“ãÆ
+ú‡ï‡¨ œC¹æÁÛŽ¼X“M‘“òã[okMâ!ùÃ’,ªæðç´[Ü0üPÓZô½Y¤êƒJ8;£¡ [7üvŸšŠ|¦ ×zvFT\+|ÉáQR—D`cÖ˜šC³¶JkK½æ_¢…6Þ5Š”©ð§? ûWž²Mmï
++ŸcÙj!ᾃ1‡sš´bo#A¹ê“
+?ÔS6ùú`cÊTª»Ø{Ç
+"èåD¥çÂ9ÌwºH EX±&v¹æ’Òsc4‚§n¸·Œx\a.‰`õ)¾Š þÔye–Åà—DìRH $2–æ©T56/¡×SÅœDðKMHÔï!$#3‡’StÈ8Îy—um‹/$Bs9ÄIêÔ›GÑó’7m8Âk"p
+áø‡~8…ò,ØZël“÷ÎßÁÆ©+¼þðn;ϨÅÆèxÜkÓöƒêËÎS…V„©Ë)ÝÀWÃ&ÿ¦€dóp£ëºªŸ+ý°Où‚µ‡ChcC¬gáÐk~!ú3_l§,³ª&,›º’14~ýéA¹lFšAèšMµ\zJ“™:¡Iåt]4ú2ßÆgùöxY^7m•U¥¾Ì_ÉY«Èò³× _º’K}2)Ú†Áóó‹yчSEw?—¥éá´Ó4­ †$y>è^ÍÔScÁq¦)çL…7ÔÍÚ.@ÄGy)»ªÖÌnjxœ³gJ_Ÿã¸åg›bXióûòPolSLs*~r“iË`–fÕkS¨˜ ~6"ß ÌîT¶þ˜÷°!Wqoš¯’QI‹ßð2’ÒzÃïT% cŠYeù(·½­¯”¹0ÀÁH^º™ºJ|×âd„‘XÙ_ê‰*¨ï¢8´srcVßGáK†ÅÚ€øÇ9½š~á¯ðfÓ¥æ¬ìÇÕŒÇiùë(ï¼?Ý[ÒJ¿Ç.&ò\ì»p*“k‹³á½‰¼ô(ð¬]ëQ Ú#BéªÈ;× "„eÁ²o¬fO »zg½b ŽGãà r¥Ñ8ïkŽ">X¦-¢«žSë#ÀP¯/
+^-ºå!’oú¥SŃò]Êø¨zçwV¶z8 ׄ|©¹:ÍK è°tÚ_– äyÕBžõÕÈ“ý)¬Ñ-- –çŸÎNmòÅÂ|¨~ErzšPÉÔOf΄ŠðRýb.Ó3UÕD
+endobj
+1448 0 obj <<
+/Type /Page
+/Contents 1449 0 R
+/Resources 1447 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+/Annots [ 1452 0 R 1453 0 R ]
+>> endobj
+1452 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [381.4987 454.7681 396.2213 465.6163]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.7) >>
+>> endobj
+1453 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [429.1534 410.0077 441.1086 420.8559]
+/Subtype /Link
+/A << /S /GoTo /D (figure.91) >>
+>> endobj
+1450 0 obj <<
+/D [1448 0 R /XYZ 144 757.9346 null]
+>> endobj
+1451 0 obj <<
+/D [1448 0 R /XYZ 144 543.0383 null]
+>> endobj
+250 0 obj <<
+/D [1448 0 R /XYZ 144 511.4583 null]
+>> endobj
+1447 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F43 455 0 R /F39 351 0 R /F23 307 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1456 0 obj <<
+/Length 2504
+/Filter /FlateDecode
+>>
+stream
+xÚÍZK㸾ϯpÒDb­(ê™Å
+cEäeÕG}È3ËuF¯p‡. …„£„nx²s§¢«wJ¾á£8§‡AÖn¸¿ñU,O;²à·Æß™€©P{}¬õËjÞÃ)^»ñéôdÔI7ÙmgJGq­ô¦nôa÷ÜûÜ=—^‹‰—2ä¯È›B`y­¾ê×\øªòãe4¸U-1J­y¶)
+$€ŸŸ½Úï¥.iâ†RÚ4¤¸ÌS µI„½ëˆ&åQgÕüÕ¨G‘~¿WØíRB깉ɱÀCçü㘴â$o0zPŒ¤àý&
+ú[<”ÉbV⺙eYlñ¹Ö›‹;}'^† Ãr€Žðÿ/£ñ`Öžü"lܿ܉ׇ[q4þŸˆ>!+)aT¹Ž±C€¹ÞÂØ@ën»ÄÔ(q/•'æ]L}T‡t£Ã9¨öÄ/vDAj
+¤4EHs¤\YHÊÛ²†ŸO8‡ "»H*¡¸°‘#+6G­«ÆðØTåÞrû[máû"ÔØ«S‹Õ«#W¦vÈ ¸s¡ÐØ‚£AåÊ¢¾šçûC—|/µ{'îïü‡û;ùpX¨ëƒ³±èWÑÜn
+B!ŒG G0øSòU0…F£›Kó¸-
+~­ ª ¶Èªá2<¸â…§âõ7·ÊGž¥ô
+‘meÙOú.È‹g·9\:6º ð¶¬Ðë—/ŸëÕ|¯ž__n(=¢kQ軀Ýèñåó“&u|~étŠ@ìqY’m.ÖrÐáuÀÅQœ·ŠØÉCNÐÈ3Ÿ§lz˜ë»jxºÍ <!û,<VÔSIh…ó²¡IÒ’öÎ^Ë‘ì©ç Cº +f®°£&ÎZ1 *A*šáß-ëbumý*$ǨNÍã@sžJ*rx¶B†}‡ß›Ö³†àIÏù®ð²¤ÙùÙJ1»šgÙ7S“C7
+ÀS¼³Üóc5€³åÎÉH˜…< ÷ÀÏBÉ
+endobj
+1455 0 obj <<
+/Type /Page
+/Contents 1456 0 R
+/Resources 1454 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+>> endobj
+1457 0 obj <<
+/D [1455 0 R /XYZ 144 757.9346 null]
+>> endobj
+1454 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F43 455 0 R /F23 307 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1460 0 obj <<
+/Length 2518
+/Filter /FlateDecode
+>>
+stream
+xÚÝZëoãÆÿ~…Ã!4zb¸’Ë-Œ u{ýˆè-RkY$$ʲcÜÿžyì’K‰>Su Í!&¹yíìÌov%."ø'.„Öiœ†™ÒÉÅüþ]t±„ö¿¼¶†fþˆïoÞ}{m.²0Kdrq³’¸)þÄæò_7ûöZKo”Ìtg
+ˆâ›UiÇhLêÔ;æ§ý¥n?GB/GéÁX™Ù±?^Jäsü{wÇA¾$úïþ|ÓiKÊ4N¾®n7êTçô" ³TÖ9
+# ¢¦R‡Q"Xq•^ÎD XZ•^6Ñ8^©PËTZi? ¥ó©ÎÜ°™ˆÂ,6™GUO¢º.ó‡òá¾.Êó¨Ç“¨ïÊö¶~Ä·«¶¼oà=¿‹ÅÔ¹‚Ïç÷úˇó8'“8¿¢ºÏÿ€_‡b(Qð]¼6ŒòKÂĤºó¹™ŒÓ`S>¶ø–;” |@·)ñuÃÍëj®G-;ž’oíÜvÅ=øγçø·Æ …m¦‰ó¶ª-¹zÁ϶szá;²¡Š¥ózð÷¸ÎÛ-Ы/eNµSI¨d¤í„¦sû„ÜX™`EÓgÐ^ß±TlªæHrÅâ°à¸É6H Ý!§‹™LT˜Z,‹KââôVJ÷81Dz÷ùšÛVÎ`¼,WD{iO²–ÛÒ1Ê—·<·×5óx¥¥ŒÃ$ÂstšëT‹ý¦(Õ¦,ž¯¿ßͯîóÇ/Ïçú©aË éâ¹-×õm¾Æ·¼xÈ7ó_ÿ±ÚU¿”³]w ƒ#:"C6&LM ¥W¶I¹¹¢²j_åf§¹äMâæ©ÉŒé­y_1‰oµ
+>Ù®ƒÛøëµ?¶dâ9·õQvÛr(Â(²>%Î-.¬R Õ¦B))|Is(jAÀÏ©pÌâ(Á·m5G62Žl8¼ƒ&Z$Á ~t¡]rŽï]2@Ê#/ °­š†5ÞñIQ©³ ÚqÏž³CÁ­ùΑ³ôosîÇ‚€å1…ÑÝ(ÄD(”Sk·Gyg8±­KÁ¡aü'H
+JJ …˵Ãåç1ZÌ[8¨à¶ªð’!¶œ±È5€@¼@åñ«å܃¯((¹Å¬Ú8Æ%w¹“Ö"¸FæËýÖf” +áŠ=Ü
+ÜAÉ*`¢Ø¯œœ—~HXD†¸O¤ñˆQÚNHFë¦ø>Ï7œ»ŠšŸÙDÀæs;Â*‹œöÛ]Ëßh˜UçÅÐàÖ
+ÖÞ¢¯;p|g1Ùö£sèÖöKÚÃhcw€—5GÃÖ£FoÖcàfbýŠ¬z(«ÛW3 ùM+(°[ —ÎBèÈÄ!`|§õu[ž2ƒ2MCh´c~'Á'T 5ÕIo m‚Ÿ;— |¹ü†‡Ô cz|Çx+áÅsjµ½l«-¹@Óm3Î!ÀÎåG»‘¶ö×üÌùÑ•´Ôè‚*1Æutùˆ¢M&j¨dEf†¾5̉¸‚Ûýº÷r[–¾Ì‹¡/䎿Ãà`]€ÔÌú¥\u¼æQ¾Ç Ò$,=í퉀™^?€gáóv¹­÷ÍdØo^*Œµ Æç`Ëâ9¸)#’W †»s€ªžoÚ鵃y©XJD˜¤Â¯• nõAk ÖòŒúf’€Î’ÚU<±Gk{ˆ–êÊŽ¾ „±éÀôïì€Ä†"I]0(ÊÛ=e‡SVR…þ³«1£0‰“txPhGn{‹Öì& p˜;µA–§Ëf~ö|Ž¢hDM •Æ]:xUϳÔ|“Jâ¿í,Ù‹…ܱ‹SÝØŸZA^kQ*—¹ê;Ê36@öRY—Š02qr|… o{ÛáÛ¶\sEyõHŽŒ;ÂÝÑa¯§(?zèø²Jñ¤erD‡uª
+•îOà¸NýÄÉ
+endobj
+1459 0 obj <<
+/Type /Page
+/Contents 1460 0 R
+/Resources 1458 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1429 0 R
+/Annots [ 1462 0 R ]
+>> endobj
+1462 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [403.5189 537.5665 415.4741 548.4147]
+/Subtype /Link
+/A << /S /GoTo /D (figure.91) >>
+>> endobj
+1461 0 obj <<
+/D [1459 0 R /XYZ 144 757.9346 null]
+>> endobj
+1458 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F41 374 0 R /F23 307 0 R /F40 356 0 R /F35 854 0 R /F32 319 0 R /F36 325 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1465 0 obj <<
+/Length 2307
+/Filter /FlateDecode
+>>
+stream
+xÚÕZmÛ¸þž_aÀ8@Fcžø&Q .úá®h·Ÿš~mÉVW– KÎîÂðï _lɦ62® Iäpf8$Ÿg†»tÂ_:¡BLb“„‹h²Ú}'hÿËjûç(0ïJ|~úðóWÁ& I"Mžò¾Ž§õ¿‚x6§aOÛl6ç\_êÙœ©`=£A6û÷Ó_þª:ãy”NYq´LPäÃ/O'$ã„Å2zßÓ‹Ô½»ñ$"IÌ•ñ6$!Sj3Aˆ—ŸƒÐ8Çã‰ï"òJÆÒ:÷r±¬_ñ±h³ÝÞS3¨kcîAH"UÒ±A=6bIâä
+¯pRY§-ê¬g,^<™"TDn!Òj}ãR™6vbÚ[4Ú¶Eƒª&s–À2%°âsJ!àÒ°õ.]¡çÚ.ÁQ"u‰‚ÍÓ5&‰ñƒEnžU¶2B þŸÞfJ8™Ô<tO¶O)zRLkî^ll´ -Š[p‰‘@é´Õmijs8¼BäúiJîw΢ÈÕ:Ë‹*[Ÿ ÍZ-véëùä… 7Ú³M£‚šNÛ zm½ªU›N_ÿ^/ÿs>Íé£xÂå"¯Ž;|Y-´¥Oá;yÎ;xíã½("<VÝ8áä%îÚú¥É¼yœⱌäœ.žww
+& ¸cœ/f}öD æB'ø·g
+ð–¨ïÚ’ áü²ÿª{pNŽë‡ , n²fcL—<Œ‚u}Eëa‹5Í Vµ‘i·ºòÙØ„Ê
+|-Î@k¤
+§em«
+†P¹ª‚iÿ\f/dÀjÁÇÜ`×k&S$ÉXC*DO¼Ä9³(¤+)x^çz«Ë”k06·UŠï|™òÍÌÎØ*¯€«B%AŠàóÖ eIÁhÐ záz½4° ½ùêµO’
+å#7wLÜùÑðXD‘ã¯ÿ,k9@E"i²ý§÷lúñQ>zÓ׫Œ ˜‰BF}5óka·÷¿Ô´l!endstream
+endobj
+1464 0 obj <<
+/Type /Page
+/Contents 1465 0 R
+/Resources 1463 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+>> endobj
+1466 0 obj <<
+/D [1464 0 R /XYZ 144 757.9346 null]
+>> endobj
+254 0 obj <<
+/D [1464 0 R /XYZ 144 419.1058 null]
+>> endobj
+1463 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F35 854 0 R /F32 319 0 R /F36 325 0 R /F41 374 0 R /F39 351 0 R /F50 892 0 R /F23 307 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1470 0 obj <<
+/Length 2293
+/Filter /FlateDecode
+>>
+stream
+xÚ­Z[oã¸~Ÿ_a X@^¬ñ"’z)Œ)šb‹ºÀèÃt[Ž…‘%C’siÿÞsx‘%›Nän0@L‘‡ç~ŽÈOCf ü#3ÂùL¦2γÕîK2{€ù|!n}‹!Å×»/7·j–Å™ bv·³¸[‹D2ÿ~÷Ï›[NT4ãqš1`Š$wÛÜÑð!Ms©”£ùã0'Ñý‚ü€–fŽö÷9U‘^áßó4ôƒáÿåïw½%)e1•©xßÜžê›Sgh7åq"ˆpFí|ÁU y>_è{hj4hoŸê þ’hUÏ ô:·Óh-UE»Í¯®w* x,X&ý°/­u×ÀÞzNeôd· Uf2–\h7ì{g ã,Å¢­ÙŽúÔ?œô¢šÓ,êê€
+JƂⶇa¨†‚ÁEœ /8ž/Ï¢;ôÊó.{È»÷Î B˲”Bî‘8Ka€ûtµÍdµ¸S£òøǸ¹E¥ã*h§Ÿ‹®vve›[œènÖ>6{ŒÍÖ®c8FVzß¡vueö(<ª›®Ÿ9n± q—uBŠnÔ]kç<}ç­ÅÉq À5ÎVÒÛJ¢_æ ÆXTﻩ+]–/sÅý¼ñ: žx¯ŽÆÂÜÍ:ߣ•†ÕÆþ‰W‡¦ñ±±¶ó`Š16ˆªJ¸IüQl°š,•>}›¶³Ï­a»²Ncj÷XE‰æµ–¤ó{­¸õ~¶3¥®íÆbc{òn~˜ø76ã(¦%±ä w9W'%X¡ˆ_¿ýjœ¹ZBÞ8qN»ªîìľwRë]eý‹ÑÎ¥º²L9‰…HÕØKEçgôƒ}[‹¡  N8çÑ¿Ààæ©hóQ˜ý€±Xûë´~(æËrЇPNáCh¨.ÆíÑt‹Îè¿öqs+g"Î$SÈuA$¸–0´=…LI¬í<Å=ÌÒ39ƒî)7j°˜SÙëMoóî¾~Npøƒ×ŸRü®IÀÁ*á!œÆŠ“l d{¿|î–8ãϲËwûu±ÓAyžA@^—Ò˜¦"ÊkÛ
+•J“ÚÓktjùsWѦ²Ì×v|y±ãî’ê”'`Ÿ–›½ÏP%¯£1ÁÄ l4î¼¹Ë4‰Õ AlåæXVÒºÒcÀ*:B¹ö97 ßcaPµj7ÄÍFoõˆ‰Ð 1nDÇû‚dë”Nôè¼^å³Ï]‚"Èþµ²n<Rjµ^Q{ô|(pP& – H4È.84ÃÜõ ü‹¨r‡
+Â5µkÀee‚ëüÔe[
+søJ%hƒ³•È)s¯WXuNÕ;k0ð—Pôà•ÐT}R—%ÑÏè"8'x}‰•ÖýGšÕa7€í{ÿƒþÚm*ÜSÁð‹Ll|%ÿ2.…•õ¤nŸ t7`á`aÿ-AWƒ,èAríÂc€ì4úÕíßiÄ£ýCí˜Ø
+ Ãœ*ªóϘ ‡î`"ˆ‚|.Õc-[ÿy©>”k—¡øÔ vÇòཞ¯C€68JêÏŠlpV ]Õ~åTäüjzr8ÞMüæÀ‘WL:—.‹M‹ù}ÎÚÓX˱?s3xp†´›¥3Mz}»ÿS—îoqËS‡¯"oWŽ<JpõÞ 6pØn;?ó K¸'ôDý·Š‘3®ÒiŠã.}m¤ÀG}Æ+g^WF?xº
+V¾É)û±Ç¾Çò¦2• «¥ûZiÎl8a
+^Qó%T™·&˜‹ ,†rPúiƣϕiØFxeNŠ….‹ÿÄ;Û¼q“Ú)é?©9ÃF}=ßõŸqû®ÁGŠ‡?Q+zxûË®©èÓB8‹>Ä‹‹X$”„âWû? ’áêÿ
+endobj
+1469 0 obj <<
+/Type /Page
+/Contents 1470 0 R
+/Resources 1468 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+/Annots [ 1472 0 R ]
+>> endobj
+1472 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [321.4736 213.5801 343.9449 224.4284]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.4) >>
+>> endobj
+1471 0 obj <<
+/D [1469 0 R /XYZ 144 757.9346 null]
+>> endobj
+258 0 obj <<
+/D [1469 0 R /XYZ 144 294.6788 null]
+>> endobj
+1468 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F41 374 0 R /F23 307 0 R /F7 803 0 R /F37 328 0 R /F39 351 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1475 0 obj <<
+/Length 3001
+/Filter /FlateDecode
+>>
+stream
+xÚ½Zmoã¸þž_a (*kø&‰}Czm·w‡Ebóm»@[v„“-W’7›ùïáeÓ¸Ä_f†3£á<C±YlƤœe*‹µél¹½Ifèÿû ³ã œ°ðg|óÝ{Ég:Ö)Og÷ë)ûÕ§(›/X’$Ñýc9_!£¿4óÏ£ÕœEåüóýO߽Ͻõ"Õ±`\C\2œró·ûAÅEÌ3•~[R‘˘«TCKÄy&üIÇ¿ãö„Ž–g°G.ã$eãE6ËAÆT¢Œ
+hçìÓÍBIÿÅ„¼««®ïËbßWÍ®;–}`àÓ¿FŒüXÓ¾÷U*–<¢_õ c£vh/}µÓè#´‹ž–K°SÔ°«®Ÿ©ó©­zšÏ"Kºwô`›0´0ËŠ=4iÇ4©™Lê{œÑ6û~ª¢·4>TsC/šõâ}ݽé½.ŒÅZ)NúM˜¬0ñ|‘
+½¯Ú®7_H¦¢§9ìéj-ç<‹Ýä%ŽüL#F#ÀÄø¾:™Œ3Í3ëx»S×”±Î™°ãwhc$ü¼½fŽ³Ñ<ü®sÚ»r…yTìlcÔ>Še…%áaÚ¡m‘2êíºS¦Íš†:·òalUCûD5ê8µúdfå×½qˆrÙ£ÌIFVƒß‡6<  ô£ЗډiTДàôƒù,-»íºt*y0‚ÓÊ/hø¶?”ôh6€8=¥`øE7³’Xǧ#ˆ´TT;'îŠF×.`ñ#{Ëâå×þÎ:=ÍdÌ[:N¹vsÿpJ+‹3™;ïz,¿XM„
+.s»àOgºqP0‹ÉÚùd®§{ûVM¾&F™<•Q×—{êíÑךÃæÑ=“qè“k«vœµ+jš„ÁŽZh?ü¼’ ´2¦ØXfgâ®3/…‘®­¬‰q‰/…Y×x¢ØwÂE 8›b-…ž:yíœAhEn«¥÷²©Sß…qiJj¯›–e1 >Ð|oh›`™ËÈD¡dB;¨8¤Uaï]À/y®â$ÑêÂHÔ­M,BšÍm‚¢$.©hˆ" RÏNò©‡˜ÍT}Uáþ‹óËUL¬³YëLäÈz! É8,V ï„Kóš=9*Á*
+du^
+gäª\‡ŽÊ[öò›
+ä8’ÇKzUë¯#«;¦ö$Ãf[Ö…7§¬»2 ˆ£DIYœf¾“=”›j·i›Ã>@ÜÎÐN´3'9¤›§¼<´m¹ëhËõ‹ÙË×=²bÝ—­ïJ8“Vͺj<%¼†ï˜dÊ.’ ˆ«ðëA¢Â^y—<À%Ob•ÀN\ÌïvŶ<t¥çÛÁý¸¥NúmNDøbº*9};86ÒSÈ‹lô ÞìŸ,w«k<’(ó‹^»uõ¶Cð="Êâ¢ð¹±Î> '/¯¯g¡Ìœ^‚]‰¸üe§ˆKÃI%U>wòY¡î®çöÇHk™<ª “ Â\\LŠññ©5IŽ—µ4°ÆsÚ¶‡Öu=fAP´«:I1½ÉÅ9ôÑ eĉҧí–xʬ°èljèvRQÛ¬ÛäÏ\
+Kæ])ÚŽ •‡²˜INæ
+¶ŒB**"qÀN:w™Ò“+ ®›YwÄÎiƒ74+ŒUcý&dH’l¥¡­¶ ðy¬œˆ4q-Í$••{N®°4€˜‰\ McÐþÈ= .óÄê9ggŽÁf÷ÄÎÁZ>•ÑZÐ;Ý<õ 62c­_G¦‚”6Îù€uÍY°Q³D™Hæà&ÇæÉ£Æß½"( vSN¶j6ÊLÄÃe#ÕA~4¦@ìŠ*ÃnI¼»¡î¥„çD
+<‰Ev-‹a3×ñÉ/Jl`¿.µÕYRÚj½oº
+wÒ7ûË+QÎ
+!ٴŃM:y“Æ”»ñN®Ù0!:¾À«´ƒÃ”òAct"ú€»y¶ (‹ Tø!@®ò_ p³ecò¶á³À›ó\º,JxQ,½(‹úsÿ=êû¯ Úc×_‘5±s¹Åé¹\—}8X™ºöQß«%©gƒÇãN“8‘Lá ç9ìØ|ˆ›Ã”ÃÆÓèãa¼%L—FŒ€!kzþcÔnU›lx·9µz[‹\K[˜‘KÀÉ#Jª©ï‘ˆá«c
+˜©ì—3ß@ñ óÉTÅ*Ñìÿn>{ÁGnœhΧ§üGsÛ„ÅÛç9¼²¦>Å<+úÃÆ„^Amm¹œC åÞ#ÿˆ)!|e+®Õ¶ªMMÈ°æQùuiÌžõC!VÑ7½·Ø/1Ø*Hz®¥‰-*³ak Ðs¨)À¨--ÂÙÃ@ƒ:?“II¹É×.!zÑÙ~
+$]!‡´„,Å&¡\!Qî
+ëñyr¡€GFÀh"ƒìað¯}aYºD%%Ê¡ì¾TÃ'yX_Kb©Ù4®ûÉSà{Š"Pe[î–v꺪J®N„¥Góëž;úÝ·ew’Ša­’zKê(jã3Í;z¤±¥+< <éá W1¾Š™`¼ÍIã4áÁK!‘iú¾0ñGÿï qendstream
+endobj
+1474 0 obj <<
+/Type /Page
+/Contents 1475 0 R
+/Resources 1473 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+/Annots [ 1477 0 R ]
+>> endobj
+1477 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [416.5339 83.5123 443.9866 95.4675]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.1) >>
+>> endobj
+1476 0 obj <<
+/D [1474 0 R /XYZ 144 757.9346 null]
+>> endobj
+262 0 obj <<
+/D [1474 0 R /XYZ 144 166.4098 null]
+>> endobj
+1473 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F37 328 0 R /F23 307 0 R /F11 832 0 R /F7 803 0 R /F45 799 0 R /F39 351 0 R /F49 836 0 R /F40 356 0 R /F59 1252 0 R /F53 943 0 R /F43 455 0 R /F41 374 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1480 0 obj <<
+/Length 2362
+/Filter /FlateDecode
+>>
+stream
+xÚ½ZK㸾ϯ00@Ú\ñ%QÈÅÉnN¶vö ¶i[iµåÈòô ýßSÅ¢d©M»¥} ¬Ùd±ªX,Õ÷±vù,†øŒ+5KuÊ2©’ÙêéC<ÛÂü?>p¿¾@E_âo÷~ølfË‘Ìî7C÷ë_¢D̽ÿ矕èI‰L1IPŠ"÷;ëeT_&f*5ÆËü|šóèáKÌÕ6¨dEæeÿ5&ÊWøïǹÖQ¾uú?üý¾;‰’‰T'·+bB'Œ$3©ì ½ý=ÇHf,æ&…@ Åâ„Ÿ%Ó™Ÿ…>'’¥±˜uBèù.Õñô°)«¼Y–ùƒ-ß:Þiï+ŸâÃÅeõíÿ´Ÿ/¥£¦½!{âR3#U꣼'‰¾>Å2Õ_?n–p¸5¸4 ç!Í«ù‚GÕÓþä{X]ßÍÁIéL‚D›|¿†…¼^ÓˆÃ|!ÒÈâžr¨†DïÎ
+ÍYšj1ÒÛ‘âØzTÕvMãÌíæ"K™N„œs–i0|ˬ<©*ñoíK•EÏ»¢„%˜’šG wnG؆¦\dq½Åßžçì–¦0®+X3ÑÊqõèdÖd éÍ[]«Ê]Ô0Ë8aJ¦ú0wç==œý^v‡vi_eqÌÛr·Ç9#UDÙä\ÇXÍ©Á[‘RFTXÓ¸h˜ÓÆÁ0–«þuÜïHYŠI©ê³:7wpYçÿpåcgá'ý¦ ÙH(Yq¦:4E…iœ—4‘×[¬TO.¶{ÔÑÜÑ
+Ü&é¤?w¹WzÈkºd'@×cݺ‰p5‡ÉšÄÝýä{
+XèŒÇÿžZ”pï9ÍÛÆiG§´€•˜b.?xm›–xf8)«68iΫÇ6Í\ž¸tÍkZêçŽÛêÏÖV|>¨â’ñD·¹´û~8§2:QÛÍezIÃbÕ~凮ê'®êÃF6_¨ŒG?m|ŠIÎD ù:H1ïÚ±>‹|Òí]tÜ°ÂüÀ릻–‘ óöÔ¿ë9E¤ÝçšïIòÙEÞ§1JcŽP_ù$ª½et¸t–°,•ÆU C.ÀY Kç¬æ¨Áô
+UKëψÕé™;$blðp7XLˆ:*ÁŒâYÏ°ýv€WB¾vâ"ÛÔÅa §-ª5‘Dˆ-Ì׶̿±nä\.ƒœ¢µ1tI^ã—ñÞ£#,¯qÅK­¾šzþQÜ %
+kclnÒ’4¥¯&Ѓ2€eP2:© £“|ãÃ[ž20ÿ¹ ÷4¼ŒŒÂ×”ÈD÷€FDô®kè¶+âÆíà««âå©­z‹|ݯßÂð!õ¡W"üý¹8÷œeŽ–ÓÖò*ÇÊH¦HŽIœ
+©{®ƒ}Ã’$5¿±….÷Ô¾]"Y¢21ÄO¬E_±ìæ!ô™Tñðv§ÝiŽ13ItOßç I5©R‚•ÚullÛ>ðý ;d](ÜÓö¸ØT5<7EŽoÀŽã iw´áJÇ’ 1ºeyzèz1H¼~ù˯>ÒPO¤Iø0ÒÃî†Cñ¶Å$
+sgÎsþQ]“{n¡kÓP§•Ú¬}…åÐå37…¸ Ò$?}Ã;,KW|¿YYiGs!yµ%pƒžœ+øG>•ÈkOý@ÏçáxØå«ÇiX©Æb%”<ˆò7lè?—UÉktñ’U=Øm±ßÖT­±ÔI^ã…êtÉÔ€>½LäD!~¨þ·/õ.MƒàŽ‹=Ù|' òÆàõµãgÂú\¸8ËðµU§æåuBÔ5ZèÚ'ýo L'„¥&~cžAs~ÀZˆ.š˜é¸+«®}‡=,À¿eyl6OMÀB»'`"T- q®LßÄf]ðÒZ‹r¢Å@³n²M5-ˆðv39–úÿËäˆåD“é8“` ¾¿¶/¿Ë ù wÂdãæÆ“4Xà&¾Où¦¯¢€ƒ­?B>O51¢ú\ ìu¥b¡†…z<±åÑŽFp}­zÜê‹Œ„™'Ñ£v"΄T_«#)‡G‘N&M»'`"™°ïÇA‹» KbÁCÍ™fô¿ïÄýÕÿºµkendstream
+endobj
+1479 0 obj <<
+/Type /Page
+/Contents 1480 0 R
+/Resources 1478 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+/Annots [ 1482 0 R ]
+>> endobj
+1482 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [334.3974 524.8088 361.8501 533.7198]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.1) >>
+>> endobj
+1481 0 obj <<
+/D [1479 0 R /XYZ 144 757.9346 null]
+>> endobj
+1478 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F37 328 0 R /F23 307 0 R /F41 374 0 R /F7 803 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1485 0 obj <<
+/Length 2452
+/Filter /FlateDecode
+>>
+stream
+xÚ½ZKÛ8¾çW1G|‰Ôa€ÞÉn;‡½l{˜ÌA¶i[Û²dHr:A£ÿûVñ!Ë–ì–3ƒAÐDëA²ª¾*‡ÎbøGgTˆ™’Š¤\$³Õþ]<ÛÂø?ßQ?¿@‚EŸâ—Çw?}l–’4aÉìqsÎãqý[¤æ Çqô¸3óç"úXÍLGë9Ìü÷Ç_ú¤{ëy’NY
+qu‘äÝ?;%$ã„)™ÜÖ´£ª«f I×NÛ˜ÄLë™b‚Ä u*K :GÚ)ÇÕLƒv‰@zÇÌ+÷ò™rñPf{slÌK»3Íqi‡VÙ¡ýv0¯¯¯?8&}™‹Àö…¤R§=™éˆLEI¬Á’žLäŸWåÈ«Íf³oG¤„eçR”ßiÙáa`Øt»¬Dú'ìå"Ù4‘ _²âh^þ@þ‡æn±bD,^fÊ”‹6ù×@6ÂUNâú`šÃ.[=½^:)å)ÐjÆ¢}'½|žÂKXµè/³N{¦)áIÌO܃BÎ!¾K›»µH’HÐ
+¢Å/tøñ¯QB+¸–³$fDSFOZlþÊÍÐŒHÛ3™Æ¢NÚ×ã{™¢€¾H;g·áßÕ’ÌóÈ9 ‹žçLE˜¤ŠVY‰/I´6Ÿc*J›‡ì ¸¦»öŒ÷YÇl ©¦,ARM¹ŸG[Gmàå·wÒV8Rí÷Y‰™¯Á/2_HÊ£G|ß…EßyV÷ò¿cÓº·"B›:eO ô\ß”á±ð7~OÆIņܸ ’%S­?d[ãz¶à2¯J0jQˆ/Ò]ÎUµG3/öAðÔ#šFUYà.P
+ÎBtÖA%ã"%ª¸\ b • Ÿ8÷l÷¾Û]…$­ö: Âí¶n·™U¶>cOCÐÞq°8&ð.¢ÔUU¶#U›&Ztè
+»AÝ• h%N¡I¬ÀQÎ2ÛãnliJ
+…U÷¼(P›LĽ"¹õpõOÞM+ã<×ðg™@~ƒ³ÜåÖd °ÙìüԸ䉉>KŸKmä©qm¶GLº!áz¯í°…ÑçZD~imΑ …û³³PGZÙlÚ.šÊOg¸f]ôhBW,|-Pä@ƒ+ùe6)Ü—æ9·?ß<¬V›"ÛÞL*ýL©®ÕªC)žõ6À\Eï\ÛbLݪðî}Ž ÿ¾˜aù‘p¢ <p9ábv—ò¦èpYœÉWN2lË«jZÿâ¯Nµ»Ü90~ø‹iC¹õXÉb°åiUˆ×Ž½ÚÒî‚Ä®
+ÉöèWËÂ@-$åIÈÑUñ-TH¸6„f|·i2óš85+¤M]VUîa½AŒ7n° #BqñfŠ”(Å®HdmÈ÷q½ ö!¡Êø×ÆkåR‘_§í:ŒQ ©©÷ì²7íEXÓm^-ƒÔ¼mN],4ÁgVŒDXT„h}™?Þ*®
+äèMSA^z ~Œ„ð"kÍ×S×U=
+endobj
+1484 0 obj <<
+/Type /Page
+/Contents 1485 0 R
+/Resources 1483 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+>> endobj
+1486 0 obj <<
+/D [1484 0 R /XYZ 144 757.9346 null]
+>> endobj
+266 0 obj <<
+/D [1484 0 R /XYZ 144 506.8554 null]
+>> endobj
+1483 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F7 803 0 R /F37 328 0 R /F23 307 0 R /F39 351 0 R /F41 374 0 R /F45 799 0 R /F43 455 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1489 0 obj <<
+/Length 2637
+/Filter /FlateDecode
+>>
+stream
+xÚÅ]ÛÆñÝ¿â^PEÄp—»\²@
+•IS‡óëq!‚Ç·‘P»Iz€+3‡ûŸ…Lƒ|ÿÿ±Ð:ÈwDÿÕ?ú“h‡ÒèäåãöX—g6wI˜™8å3Ga$AT#U%‚®³ÅR’¥Í]
+Ò&
+ñã8TÒH'í[+[¶NCºK¸Q˜é4Ð'è*¦J¤ºùfÓÕëúXu¶ù„€Õ:?tö™žö«Ê>7ÁØSš`¬f1F6E]­þVW]Qí澬ón(Ám\õ,®«b{¬6v[Tvói½jã3?ºñ°É[-C©aybÛÚÎëø‚%>=ååÑžo-Àºt°jó'û<yžÏ„Xf–X«õz[æ»®9Ú[¤³¬v[<?Ÿ;–ˆ³0)0ŠM§Éȱ¾ö÷‡<—å 9æHf™„‘Š““0/ÛçM‡™#ÌydÉñºZ,•ÎpRˆmÊ¿ß0Á{Œ^`$*‰‚€›O¢:pç指ld
+,„¿§ŠQ†‚¨0K…½N@u<@ ™½NHƶv<ñZ4•¼PY؆aONnà-.˜|Ëê-ãuïè ÊÅ@:PgƉ԰`—ZŒä¼8 `ø}ÐO(èC
+vgXüz|\‚ƒêš£¼ÞQ:ú©víÕHEPfI|K«3Q# É\i&…€¥Ç˜-ä‡ÕöÅæ%oEÃ2ƒ‚ Î4vÎâ\”Ícy»4s¤8/Gºø/ÖŠ¾ú
+ƒž£>C➥Œ´ê¯ZB‚¥â –3ûb=–ˆ†Q–0⪢Æ(LÄkþumî­‰NÛ2Gjšœ$oŠ¶[RnÄàM«{¬€#GrÓ´kÉiév¾‰šHÿd¯Z9KÖjp~ÆŠ1'i 4@ÇöSaCœ(çZ.Ië1ÏÊWC@¯¯T`M tçèíãÿ<¥Á¦eãÚ
+WkŒ ¦é0õ¿çûÙ Cä&N¾2eÉLÌ5L(ãTŸ˜õãöÏæË—ä»YŸº%äK)\aòUªš#Ây²i¢hŸ3ôfp$Ž  R³<™AcÓ¸wí:×”á3µœ˜·Ü´ ûÄ o¶9'ìm"_º7±-jÚŽþ$œÆÉQ» B®Rëó2À°/ È;‘ÞF:ê}šàŒ º§é‚ƒøh´(w–шåèx¢t|ŠÇuÛ·«œz6 >—<Q›Ym ’ l“¡uý·ýà… áÛ˜qŽûƒ—Ó&¯)¥zÐÅŸÎìF#§3PÀ£áÚŽ
+Ãb£Ÿ·ç—–¯i*Ÿu;ÞzSôãœe½]Þ—}mAS‘¥Y‹¾êÅ鉇@+Â*œóK’+#î8ab’¹#nô2
+3»rœ²Ë &h26׆õlxçWø°ñ–Tq°2e
+&ÅÄúk.‡íJ”TFgX
+úƒ¶w”½ ›¨žAùò;òò6}ùºúþÃHÅ ¢š26³M£¾Ì´‰}ácßi„2Õz&å·IŽ2צ4aú€C«L±•nëÆæé“
+qÃ.¥ÈÀ ô™/~¹€ìn®N,ý4«´Â çZr•™$I
+MŸµ.j®ì–1\_¼Ü0=׆}—ƒœÑ7táðÀ {”kЧg9âÚä?$ÇCž`G®œììþð×~|tâM
+¨'Ù{zìåÕ?Ȧ¿ß¤ào÷®ž_ø ‰lŠi<ïÌ®ësi·ÿyÆóUs'œ½õ<7{À)®_´Q_ØÞj¦É70SómÍ4ýfšýÍTÎAg]åå×pýAýI1ÕÅ&ã¿ÚŠ†»ÿüs„ìendstream
+endobj
+1488 0 obj <<
+/Type /Page
+/Contents 1489 0 R
+/Resources 1487 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1467 0 R
+/Annots [ 1491 0 R ]
+>> endobj
+1491 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [286.1339 231.9557 313.5866 243.9109]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.7.15.3) >>
+>> endobj
+1490 0 obj <<
+/D [1488 0 R /XYZ 144 757.9346 null]
+>> endobj
+270 0 obj <<
+/D [1488 0 R /XYZ 144 439.3861 null]
+>> endobj
+1487 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F23 307 0 R /F41 374 0 R /F39 351 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1494 0 obj <<
+/Length 2168
+/Filter /FlateDecode
+>>
+stream
+xÚ­ËŽ£HòÞ_a©4–Æ9äØ—¼³»=µ{Ù9”4‡é=`œØ¨±±
+$f4Öª {¨ÎYíl­¬ÒŽä—ˆîsXl6
+#Ú;c"”Ä=J úþRá­RGš÷ð€?Æ’Ëž|Š|ûr
+)ê‘Á^
+ºT Åçv¹õÚôú°L&^@Ûëåem/›1‘ÊËçÆKDÈ­XBöÆ%hð#,Óäƒç´ n-lk„ÛØU”:úØƽ«Üy:jûî{(óª¶ÇÔ©Ó§$†Ø|íÙÍqµp*ëÆÃ0$¸ãÿh]ô4·²À÷Ä ÖÝ;Kc}K£`§’E>—ìoÅ&x*wï½EÐàÑBÒ¾V%<L¼ÇüåWD"Gîý›ãÜ¢ãQ óèþv‹„ªD9€¬Ú™´ƒ¶A C¶w…»îu§Vc¥CÁŒ…,6I†Âg˜)‹zîº,r°°¯`YÖ]ÏÞ{_}d»&è`„Kdœôèñz\E¼Gï:8´õQÅh·m€ŠøÊÓÊQl¯uŽ—&_‚?ûŒâáZ­Ëôù<‘ª *‰ÁÕúÊÙ§; ¤Ï[;‚úù
+Võ@sÀ@í!‹¢šo›KmZwþ•¼à)Ÿ-¦²W_—ß„F4šJ¸×+~D+
+»öÀX‹+ÂE— >k[,/™ ‰%oÆI@Ýe‹Má³
+p
+Ä×%ÎXP{1î¬áº1¦­
+endobj
+1493 0 obj <<
+/Type /Page
+/Contents 1494 0 R
+/Resources 1492 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1497 0 R
+/Annots [ 1496 0 R ]
+>> endobj
+1496 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [176.9502 618.0495 196.6541 630.0047]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.12) >>
+>> endobj
+1495 0 obj <<
+/D [1493 0 R /XYZ 144 757.9346 null]
+>> endobj
+274 0 obj <<
+/D [1493 0 R /XYZ 144 734.0242 null]
+>> endobj
+278 0 obj <<
+/D [1493 0 R /XYZ 144 661.8436 null]
+>> endobj
+282 0 obj <<
+/D [1493 0 R /XYZ 144 337.8572 null]
+>> endobj
+286 0 obj <<
+/D [1493 0 R /XYZ 144 198.9269 null]
+>> endobj
+1492 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F7 803 0 R /F37 328 0 R /F40 356 0 R /F50 892 0 R /F43 455 0 R /F41 374 0 R /F23 307 0 R /F11 832 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1500 0 obj <<
+/Length 2807
+/Filter /FlateDecode
+>>
+stream
+xÚ¥m›Fú{~Å~‰K1ª;)IÓ´¹&mÔ®t']O:l°Å8»¹hÿ{Ÿ—c{¼Ë¦T†™gž÷WÖòJÀ?y%Ãð*Ö±ŸatµÜ>WkØÿá™´çs˜!^_?ûæ­¹Jü$RÑÕõêÅuö/Šfÿ½þç7oC5‚RIèë$
+|’H®ëŢ̭w‚YÅO¢L2âªxš\)%T¾ ¥‹SîrÞÐWOâö!M<Àt4‰éUá ØvE>fa©b‹×>{˜¹Ô~
+5Bé
+í ðCÇ)»I—7P[@¤íUq§–ué&×ßwH\ÔL2"Å¡×~¶(É
+P…ô‰;‹Ýlı×à°ã°Ñ°›Æ»¥)rÇ/it!{æßXµð^où°æW9ž„#HâRö6‡dLÓ+αm~Î\(}‡½›a|µIï3ÀÖ¦ £ 3r‹Œ§VŽº-ÖE…œ–åg{Þlt„¢â½®Fò  >l"´£OÓìé¾³²ž® }Ï %,ky%”o^í|jP÷/Ñn졤
+:Ã6ሣ`‘ˆá‹ÙÐG ¼MŽ
+ïôåÕ@ø¨ùq>`8ÒM›­4XrQZñ“|—Xé «§Ý¡uiƒ¤6³¦Ž}ErjÖ¾2It)kÂ;1<W½ ig±ÑvQõìXËÁ[]ˆã„@¬X‹ÝXÊ¥2‰ýPëø8–ðËæ\E‘÷þ¼Š*å‡!°®|*.¡¯ú‰4˜æ
+}Eïp¯îÈÕDìý†iUˆA²¢U™uçÂ%Êõ`kŽ®ž1´=dxûDv-÷s[¾áÇ&Q'åkac>`Èýz“5©Á Äûè -¨ã\&ˆ
+»›Z{Ðü„°Ë©õXà)eŠ¶s! ˜\'ýDH¥$`o+,7®¨ÇýC/C=°i¬åÝÌš*Û;ÌþBr—Û‹C•€u•ßZw5Ð[»k«ˆ“õ…4Ùx@uµà1ˆee´Cç¹*‚
+C[¦ ƒV1”Ø«¥-]À»|a}Ú¹
+}ð‰Þ™¹/
+ÃG„¶oK·yÏ ÷h˜Êët)ÖöÉp|”ËÓ‚!É(”F ÀµŸÛ{6Õã¼ !éµ@ÛŠÍb#=ö¸zäÚFƒÁä4T» Ã)1Ü¢|—´¶5ˆ[Vè],€,‰)¸]tü¤nÊh+‹E½8„$Ga›Yûè“ŠÝû\ápyãG‡¹on{²†ûêEi©õùF¡!o+y—ãNBÑa4Ýç£ÌÃ#FŽ:ê6g¥"Ÿz”J`ÍÍ6GøÎ!O ´>Ÿ«`³boÓ§Yx,d ð“X•`<Þœj
+ª­
+‚B[D <ðƒé±CŽþÌxô·MáJõÆÄ耶êWîl3
+Ý¥ =Ww†Ŧ7Õ/å:Eeï}ÞÜ`å¨ÏéiXŠ¨Wåšvd¬$ ¯ï — 4|ÐÅo
+;­(é®5
+ËX?ÀÍg–†6
+;\¬±)ÀðZ3æ $ Žkª`¯#5æwý؉ãZæ°J¨`ìê¨]×i7tÖ·Ž
+ûÂê² ûÌP™Ï}F¯ ‚¦¸¾­Ã‰šçµÅb2ŒœÒ…˜²Gl?)àý”WP[é½î64›Â7ÅyÝ”–Šñ¨A$Ó!©%TwmŸÆ}X‡=’€`Y3{”2}+$C?Áfp¬ýÑ<¥9Ëѳosaå‡Ù
+3eÝl­½Âh.ýšS8]Bj‹ºuöî øøðÇ¢6À¥¼Ü hûa€È;ØoÚa*éÙF59ø’‘¯“3¾Î9RÐB(?ê]ømŒ_¦ŽŽã¨ì™Áfa@V–n&Cû¥ ßòQC¿p(¹ájÁñǼ0D?à‡ˆ!qC9NˆðÛÏ&]a¿Üàôùù[×ÈÁ´`DrÚîæYÞâå
+‹÷§t×µûÆ4ð#%ÌT^ÿUØeÁ-#ÿß‚^Ë¿ñë{«£Ÿh3_¸Š~ä‹“ÉʉÀ¡&¡ v…ÒÄÇîþ {õ ÝÉo¥l/†®Üí˜à¸Ç…ú+aì¿a´Žî6J|pš`4X…ŠÃÏÁK¢AĈ3ï†*j蚸sM-#&üÛ?ý)þâ ¤Œ`ltýˆ(ˆþ ‘Ÿþ sâ4endstream
+endobj
+1499 0 obj <<
+/Type /Page
+/Contents 1500 0 R
+/Resources 1498 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1497 0 R
+>> endobj
+1501 0 obj <<
+/D [1499 0 R /XYZ 144 757.9346 null]
+>> endobj
+290 0 obj <<
+/D [1499 0 R /XYZ 144 341.4271 null]
+>> endobj
+1498 0 obj <<
+/Font << /F8 348 0 R /F42 413 0 R /F44 416 0 R /F7 803 0 R /F37 328 0 R /F39 351 0 R /F41 374 0 R /F40 356 0 R /F45 799 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1504 0 obj <<
+/Length 1620
+/Filter /FlateDecode
+>>
+stream
+xÚÍXÛnÛF}÷W})X˽_›ÑÄn‹Ti
+¤y`$Ê"L‰ª(;I¿¾3»$EI+º ТÑ;‡3»3g.K6¢ð˜”#£ qBêÑluAGw°~}Áù“>âÙô"}%ùȧ¹M‡:¦ó‰O¥4¹š¹IîÇ,YWcn“Ïe’d w+|Ê׸¼«Ç§¯ÓW¶§ShGã6µAÈÅËi·1ÅáFéáÝw¨Ó#'°Â»3pI¨fá oóE¾ {œù]×Ç;`JÅ4Ê —ÔôwðùÝÇ‘†ÍÒ(÷Îá]dƒÜÐAØÇ䑽­õ„AåˆtFZ½ú’—ã‰.ù¥Z­|`¶@§E^Îw—FRõ´X°¥™jh4]æ Fö0œÉ©h0³l³+ªuD—
+h×j¼„ Kšü:¶"É·5*÷'„Þ52N©J©N¹%Aö;Uôêq¬t’%0û„¹ƒ’ŶZ¡Ap¤Aþ‚c&Œ§÷ÖžOÑÎÕˆIVã¯}L–íáEo§šFÛ3¥»üË$ÛΖÅcž®²Ù¶ªÓ2ƒÅ´ñ
+ù³Øœž–9A‡ç …ÀæÙ 7ÀåÚ
+Xý©¼ƒ¸sË“›ls¬Š1O)¢-—!æ1x¤²Å@ŒT•íÏÎÏ1jeÊ| ¹ÈA™tYSョ#žˆ°€ÅiRH¾ n©€‘
+¬õ– {x^­6c…§…Ü)§Þì‹,Ô M„0|}‚ò0•ÿmŒ)À¹Ñ¤‡ËQÿœDz)§f_”ãÉNdó¢­†r‚Oï»r!úŠ‰í߀øÅ ß+ÖwÍâmVOBÚs0#œ•‡a¬[þAøZcùnç/C¿‚²#I4CaÓÁÞÑCÄ3´ø •:hkŸ¡ƒ» í[}‘áá1  _'A”Çš0fŸl#ÂÉvÈñ-)$Çc†ª#Z9 ÃÚ²oj#ÀàƒQ†CLa¢‘1ç\JEÊ4 ²ø(ƒ’EèðtÜ5°jCr~c×pOvmþÇC±ÍçéÝ6Û,‹Yo\*bŸžk”Q@‰¡îÑGD¹Ù<7ÕynÛê¸9l°åæÕ7yáë93Þáæ†ù-Ë/a"‚«S˹w5”PíXÁK¾¾U휱 å(ȯ·cÅO7ð<Hguëð+ÑŒC-”Îþ'5¼ØÖcx§'BáÄ΃!ú»SÎ(Ð…wË=K§˜&e<…r¼|¡û
+f!1plÆ|÷‰äßó‹õ¢JóMíƒlæ‹HÓP Fù“y 5¤‹PyÐCÄó ø<Ðy0hkŸƒ»<è[½É}C*‹&RÁ ï?Wl X™¤ÚFoš:«­‹o|ƒŸŽIr ”Ð6yçûhŽ¡ý¾K×ðüPÌóðW˜ÈàáíXÑ$DZÐÊ‚ð?AzëÇ)е~hŸÊØä ~§ûWP“ðu“„Ýw˜bf!5Œ'3@  æÄwTŽfƒÞ(æùx2à¢ß¸×~v¸ 4†T‰OŠYè4•çÖCÄÖ<ÃÌ
+¿xýZ÷)”iüï>Òý1B÷)D’ÄÏâÕzòÞO!YÚ›CG*™'T
+endobj
+1503 0 obj <<
+/Type /Page
+/Contents 1504 0 R
+/Resources 1502 0 R
+/MediaBox [0 0 595.2756 841.8898]
+/Parent 1497 0 R
+>> endobj
+1505 0 obj <<
+/D [1503 0 R /XYZ 144 757.9346 null]
+>> endobj
+1506 0 obj <<
+/D [1503 0 R /XYZ 144 714.1959 null]
+>> endobj
+1400 0 obj <<
+/D [1503 0 R /XYZ 144 718.1809 null]
+>> endobj
+1382 0 obj <<
+/D [1503 0 R /XYZ 144 686.9978 null]
+>> endobj
+838 0 obj <<
+/D [1503 0 R /XYZ 144 658.3054 null]
+>> endobj
+840 0 obj <<
+/D [1503 0 R /XYZ 144 618.2113 null]
+>> endobj
+839 0 obj <<
+/D [1503 0 R /XYZ 144 588.9655 null]
+>> endobj
+822 0 obj <<
+/D [1503 0 R /XYZ 144 560.273 null]
+>> endobj
+1328 0 obj <<
+/D [1503 0 R /XYZ 144 532.1341 null]
+>> endobj
+1502 0 obj <<
+/Font << /F42 413 0 R /F8 348 0 R /F39 351 0 R /F45 799 0 R /F44 416 0 R /F43 455 0 R /F65 1509 0 R /F61 1424 0 R /F11 832 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+914 0 obj
+[294 0 R /Fit]
+endobj
+913 0 obj
+[294 0 R /Fit]
+endobj
+912 0 obj
+[294 0 R /Fit]
+endobj
+903 0 obj
+[294 0 R /Fit]
+endobj
+1508 0 obj <<
+/Length1 741
+/Length2 1118
+/Length3 532
+/Length 1675
+/Filter /FlateDecode
+>>
+stream
+xÚí’mTWÇ]„­ ˆT*/ÊJ!V’L4$E"ø‚¡ÁL3“02qH )’@A©BMQ‹ ê‘5‹"P”6‹,°ŠZª…‚Q©ÈyÙëéYúq÷ÓžÎý2ÏóüïÿþæÇÕ)DàÁƒ±½È&L®ô€hðㇰDc\]ýpD¤D1¹¿H‰xˆË…
+Msëk-cÎètìST~ôô—±î¸oÍ A!v¾í“#¦%Ú§~ÕFëZz:Íÿ»ôg‘öä^ú ìþªibx3vë,l|?2gÌzºÓ¶¶ë^ô#‹lnz.áƒ8n÷fA»‹×iZöq÷ýõƬU·°‹·‹*íGÆá¯ïÇ>k­‰îÉ;ïšÉ½’ž]ïJ9•ñéLBžÉf”Ñýˆm¿+é¹±ß?Ÿ¶ÞòÊt)\QønÅ
+»oDN¯ÇGo¸µô—gYm™tB*?iþìÙHÛ;²È~ô‚ó­¸ÚüE//z¯%ÄbsŽÐòž0¡,HWw Ä'èæaUI¯µÊB^£C—åéعIÛjRȧ~¾nb¨1´{yââ®Õ]üÈöN~Çe‹-¥â$ë;ªüHÓ©_ÒTág½^X8ƆíågjP†Â™mÈ ;N˜,ÑòàO‘Âã7°Î'®ëuM«“v8Ìp6Ñ%§t'O^|—í­?¥EÖ†d…ÈçKíû.»{÷fåµ€¬JG›ø”/²}ºíøÜè]×J hš¸p­óe^²ú»ª'V~“öæ_ujlÕlßÁ®žþžå”}Oipz]54nµ¬$‚¬Þ¹¸¢D§
+œs5…ÉiÁ7Ï>_T0y~q¯®pëJ•Ùî‡ëB{wn_’ÏdÒ¯]ïÛi«©ÜŸ¶rÂIK¥õ£¹×¼‚úcjYSS¹_›ÿÞ«å•5œÇLá ¨Úl¢”»V[óÍ𖾋ÿØõA¢Ë–"çãÅN¸šoõÕÁn–Ç|®Ù4ñÞc›&KÛ>DµŽèëkÞ¹ðn¡g«W:^²¿ì¦WñØQ»Ž;l$Ÿ÷LXÖKŽZ{{ØÞ¨dwf,l\ê.·>2í:±£ˆ1vâóõÛ‚¥Ï¢´ªc…ÝUíÓôµpyÁ«ûºOœTçÇöTÝ•ªç|(ýúSáKwßðÚ mGóîvƒ¯”îæ|³ìV¤D‚ß¹ía³»Y(°OéûèMNrÝŒ¼L³Üg}†‡§kë^U’·?®Õû¾L²Ž~x:XZÔû¥ËÓê‹öFùŠº…þ³ØUª¥•ƒÔ8M\NÞ=΋âÞ“¡Ëkî>eŒê+œÏyó,[ÛV@äuzèó#ÔÉœÏDŠkzŠuà£E[‹þ£ä†ûycg­6\PYãvÿ”´ §çÓO 9T;ßéxÊqapMUŽyÉíÄʾ;ñ­Íô¼Ýº•dŸ#]N¦gú,× äï¿4“2­̤zV ÿ5ÂßTx÷Ê æŽï¼þIžžW¿»UÜ6õ‚¬ÚÜï°J[W¸¬fe’yU;ÂïÿҲܬþRA‡¹YRšÃsÚÌÇv- Ý2×U•ÒZ—îç5ÜXÐ4Îø/ÒŸÿb"•XŒ&ýfiƒ"endstream
+endobj
+1509 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1510 0 R
+/FirstChar 65
+/LastChar 65
+/Widths 1511 0 R
+/BaseFont /RXVDAO+CMTI7
+/FontDescriptor 1507 0 R
+>> endobj
+1507 0 obj <<
+/Ascent 694
+/CapHeight 678
+/Descent -194
+/FontName /RXVDAO+CMTI7
+/ItalicAngle -14.04
+/StemV 76
+/XHeight 431
+/FontBBox [-27 -250 1268 750]
+/Flags 4
+/CharSet (/A)
+/FontFile 1508 0 R
+>> endobj
+1511 0 obj
+[866 ]
+endobj
+1510 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 65/A 66/.notdef]
+>> endobj
+1423 0 obj <<
+/Length1 801
+/Length2 2031
+/Length3 532
+/Length 2607
+/Filter /FlateDecode
+>>
+stream
+xÚíRg\SY¥i:‚áÑ”$t•ª E)Ò$jH^BB
+†P¶!H  ‘® 8©Ž4 "CS†& ]z‡ ¸ós×ù¸ûiûî—wþçÜsÏ;÷ÉKŸ³S5ÄPÜÀS2M…ëÆVöæ:
+ƒÈËSA O!› h .
+P`…TX12ÑÀ€Xˆš5…uÈJòßõ£ù)o"ÑEÚ±ß)éo4Š„'úÿS@!yzÓ@*`EÁ€TòRGð[6+ƒ÷&ýÈšÓPD<ÚŒ#‚€*\
+Óø6Ç{Âû˜sxÚÀ¢ˆ^àî$c~LÂ*o7‡š‹“½£­•ò·KÝåΡðdš½¿'À¾‹w1ü;fUDÅû`P βÖ_oÈÎ2%£)<¨#4•Šò‡ÀXVê@‡x2ô@?V`5(™BcmXÅX
+²s§š:€šéÎhÁa0@ óÂYü/PP£}‡ê,ÖoþýóŒ(~tÕc@UÁÊ×д° ¢½©TLÛý¿X%þ…±xVï è¢!Ý´^0!¡$$÷ªiFk‡¢—DbvðëjÆo‰zЉ?õÚ©¥ïìAÉ9~?ŸÏ?eñX ƒEô‹–6ÐíÔ]ü ÜBŠéIv\3è ׋{S_Õñ’î‡vK}ö,Užé‘]ìó©æ(´ƒk=
+gÏíìØœ¿êqíM÷»Ùáx2µÂ2tøÒÇlY›<MÉ tg6Š¸&-
+nu‹Öõ¶y|âNÔ‰Hµbû#ñøÆ~˜¢và žì!Õ픢c¶ý¬¾Í×Tõpfx)<ò©-žù0Ò¶\×6o}úY
+N`"l_Æ‘‹—ò ®†åÌ„LR%uóTNîËiàgÏ ‹^k¯ÉÈ)H‰Ó'¶ãTx% ësEi÷ľbÏõY^1—ÆTUöÉ\N¢Õd/%^βH½“º¡tæÄð×$ž5¬Ø\mfº&ZQœf¨ÛÇÐÊ'úæÎf±É"Ň9ŸÆ†Ïã{¼k´{+o¥o›\Ìs©Žã|.-zÞû„‰øAæ'¯è6,ÝÍ7b~ýìÆÔÉñ‹EõÃÐ3©Þr’é?G'Xö¸iNó¶[‘þ´JVÇÖ?OþÑ…¨Ìi¹qKãúz‚Ê …¶CKéLÞŠ£Öç, p<@ɇ¸mÒ=a¿ùUD¼ªÔ±CÔ—ßá‘и‰[X…¬Ò«ílD fÙ£Dür«‹CœrÎçÒ1Þ~ë“ø¢š²¸‚Y[…„Öx÷Tß,âàš¯ g£ánìùÕºH1ê¬ÊÑGË'³OTªptylCdç*J¶Ó²AL–Z5 R¿Rrf´êÅæ×Ì
+@xTQãˆo~Q_f]&ÍX#¸\ë™dq‡]£ÌŽ•$àNâùüGg?•uˆuóïét,;0ÙºL·ì½ý¬i)k䱚ºÊæï9ÇF$>OÕnjl¢Ð7ÚdV쳉ÐÜMª?!ð^íRÝÆá1×4§#'×z—Êô ³%mËAF/©“q°kY=hƒr‡}%þ B×;~¥±hšârØõƒØ+ãqØÙºÅAvœXÙJ¸pL¢óîÑÐ$\ãøïå{Ñ÷#ëß\&ÆD€¹ºMÏ¥éú4ûâ’uŽVÏ·ÈÚ,qÂÜÚ%×H¨lMÎÝñîˆKIØt‹…ûü®%ËšåoÆèkr\ÄóÞ“=šã HÈÉ‘fD(ÓÍ2@bm2mÒäáòrÑ9¢ §‚ÔYɕΚÇ9X…¼ —œþ”´ñ¹|ƒÞ›Ü Óláü1ÆðáÚ¯Äûé)Çœ<f[oï-‚q«¤xËè`´‘0˜úÐÔÐÇM, ÜCÏ««J+þ¼,¸æcñêPô¬^p¯@½†­ê)åôº›ßŸÚø —šË~AOj Íp†E<òg‚‰òØg8Ïei»#”BTRxÁ™mXç(*záþó"©@’ª^Ð)ƒZ”VÙ ûÕdEçvw¯qH’óÍÀAAÏÈD÷*hh㨽cr“ÙæÿΚ£U;6´æåºÊ˜*\܆TŒãŽ™2-‘Òœ¯K4 K“pol\õ¸ÌÙêÎɪ<ÌŒ|[Œb¶(Fœ¼Mî›ršÜ“Lߥ ]«´-êV|ð¶y_
+Ô8+f8rß#w©mQ;QXÐ+c‘šÞ:{¾›]ª|MÞ*hºº5­ó Í·©a°©9!^gèü™Yb¼q¾³g±ê\G®=ç„Ã"®Ü‘ ¥ O™ÛH¿ˆHËëQ=rÍÊéÓ$~9Ä‹”Ü>¶C™<A®Ìâñ¸æO:˜ð4Ãýòó/ÓªÕÛØ`j HÍW¼Ro=Áé¾_öºl³-¤sž,qÙŽ;¨[pC_Ök4a8½\ìTö>=Rß8Bš0,Uê¤áVI˜Á6)™9Ý‚rW#x¢#Ÿ¡˜G÷ßRâÕ Úæ+ÆsYjåRŃéeØv»è…Éd6ÜÈÝá{‚ë>O,-}×kù
+ßÙå{ Uæ­{žd6åå&¬¹p®¸»ÍÎ×=³ "x2Xr^H¿®Ä(ù¨rÞ@ÃG@‡ùd#$6 öñ ™g\×Z¿‘$ᕘO-1ŠƒÿÂ3J˜\/,äá—q›U¹;ßÅ >§–%„QÉ{|Úm ͳ¸Ý­bšK¾n×Â#uHþa‹‚ÖrÝ®JÛ¾¾YmÓ¶¹½ÂËF‰
+#ßY‰ÌÈÊz3ÇsH(MOŸ)¿$ºÜûdN ú n¤YÝüÔ`%IlˆsðWÜ×ec±yrõôíîÒŠ£é-®ž1í¼?9r~YA r¢Ì癧ÞRÑM.,¥+í`õãÃÌGx)ÄaêSÆC&ñ¨jð¦ÃÕ_9t[¶ªhE\g~ýÝ)b»¦+ñ…ò½8d[ªýé~m¾‘èËG_¾kÖò}«+È)=¢Î _~”ψUUž\e[|ß
+:.ÄFsž)PH×´{½ÿ‚Œx„oáÅ׸¯÷ÚBe7˜˜ˆX›’ß—ƒ–ÌÜ'9g¯ƒÜy0.¼G.𤱇tÈè4Š•ñlH¸Uùžö>ÿüO ‰ ŠJ£PTÈ?
+}a÷endstream
+endobj
+1424 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1512 0 R
+/FirstChar 69
+/LastChar 120
+/Widths 1513 0 R
+/BaseFont /ZXTWRM+CMTI9
+/FontDescriptor 1422 0 R
+>> endobj
+1422 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /ZXTWRM+CMTI9
+/ItalicAngle -14.04
+/StemV 70
+/XHeight 431
+/FontBBox [-35 -250 1148 750]
+/Flags 4
+/CharSet (/E/d/n/t/x)
+/FontFile 1423 0 R
+>> endobj
+1513 0 obj
+[696 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 577 0 0 0 0 0 341 0 0 0 474 ]
+endobj
+1512 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 69/E 70/.notdef 100/d 101/.notdef 110/n 111/.notdef 116/t 117/.notdef 120/x 121/.notdef]
+>> endobj
+1347 0 obj <<
+/Length1 846
+/Length2 2193
+/Length3 532
+/Length 2793
+/Filter /FlateDecode
+>>
+stream
+xÚí’y8”}Ç•µ‘e”Š’»‡±$fF¶ÉnBa,,YÇÌÉ,ƒ™d«$kÊcKRÖ¢D‘Rh‘µŒ}I’½ˆõŽzºžÞž?ß÷¯÷zïûºîëþœó=ç÷½ÎïÀöXc• TЄJ¡+#U
+… ý½
+•Î)8s <©4Èú•"
+ÁÐq1Í
+•–
+L•(@r'„¼ÝåŽ*7ÞøðRû0cÒë¶âЯöTL·Ú!RnHºlR+kc‰áç#á»›îpE[š€ÖvÖ¨oÅÍ\¨Jܳ±®–ewcmfg»kšÝb8BSˆÒ‚Œ§ðAkÈ6‘~JCÕ"·ßº—/ë†ûOyƒZ¡Å'ÃÓ
+´¼/RaRÍ°ñ)ù–(t8tyEíÞ£½{;óv¯¤¿äÝ8
+™SKí)iöL­ªÏÞ;óÙ½Iêv˲´+ ›’׶¤à30Ìj”hµ(ÚT±ÓD÷ä95ê™?*O¿È—vµÒrn·_²r˜àZXp¯ïܧÄHÎý³àÏE…4n!ÓÔ)H7­ˆ
+[Í6¼Œô°b…v°ƒÎí7oÃx¯•:éBâ ,m.´ÄCã=š¶$Íž²W‹héQ§O&_—í5¨¼wSÜ\xE%Ó&¯P!ÿ¹\¬-nD`wÂN[¡|½¸ñ.$)xé›q¯ÚÍ⬠‰¶|‡æÅbïPâ~ÁDë>vÕD[¨9x¹©S1hm…bG“<јò„KÙ£—}Ê<;]œ5&ç3îõRíÒžÊ#%RË—BLþÆJu´Wy cÏÝDµ…Ií)Œ™Öl8Nív¬˜Õ²Nì¸ÌÝ,œu© ›W~ù¡h<nclNf\ˆç¦œ—2·Š™ c_=…hÉ&¼ñï0ì4Ú8i.úüÝøAÕ=WÊ¢ßØϚϞÅ\¯Ï›ntp>­/\”ðÍÀ¸ aõybß«gõUÿq¦¨?ÐmÙQ)“žÏ(GKC*Í‹RGÙ«'kíƒîæÄéÈP{oEá†åÔn †¾ßp?žÙúŠû&6IèÅ
+2«³cCÿÜG}ýÀeßqwǦljòåÈ™‘eËçʪ'£wˆ¹„í7ª‰-Þîß.°«ŽÛUé«OòhK—þH,¶;¸o¸D–Z'#‘›ÙÀ{9­½8¯®_ûO~ºãJ!t Ð`dÉUþ‘=tê°ŒÇ7ÝrÃŒ-;t\WA¬B,³*ßm»ºœJp„¼‹tÂØh­"›kÆ8ïˆô±³LG8 GŠî6jJŒ`ÚŒ¯j¬f_<Àÿx¯µRÒîÇMow}‰ ”ö4˜9OèÁäžôÈ.px3fÈUÿz±íýËOâ™~»¸8×ô"ô<Ëï ETªxFñéƒ7ùŸ·^ZÞÆÎPŸ*ž
+¾Ý:Ñ{äÍÔËÍ%HßW\~'î»”G/¢ª7¿»yt¬µw’@nnJjÒ ­8SÊS”Ç#:íWÛÉ9‚«òõ(Ñyæ–ødÀŠ*¼65¦æÔ{4øVïN%ïû''ÛfðFwãáÉ]-e7Éx©[ÞFÁÁÍq5&³%ù ç¤·²£D»ýsÍÓš=g—5 >]«+¿ûyë7wL/¶$Š­tïD(‡ïŸU¥—‰+3jIi¸ï}ŸùPÑ#Ö!º¬ !Êü9|p²‹ãŒø#î’sÁÍ»€†*÷'ö×;ù“n¤^sÏ¡×÷&gkäYùàet+7_a`èÕ¨'2Ù\âÆÒCéCkt Ç"iN™Ç$¶$Ê{–õPJjBžÙÅ]9ÿd¯ïÁCa·¨‰ô²ÝJ·ÃtYäöÇÙZ<y¡¾í¤,åûKšŠ¶«#g†-•M¶ˆ2nã¿åØPg,Óª¤­/]ë2uˆXËpÛ âz3y•Ág»ëS—r³7Ëó£ï/ TÞ‘Âæ´º‡ÈÌ) ZÍîû6OªxzÝñAU„䔵>þ¥äÚÈy‹¯®„´i.¹Väõ§¦|šÍÕ‘ìêŠ7µtµùûØ÷—â½z­§,ºMîßÜiÒÜm–T䈰Õ“¼âë#ÓðN¢gÓQ‘‰$"šj÷´a¦Þb[ÁGQeÓq†N[ÏÍ*9=7ô\êVÝ|ußÙçî3—ò¤U5Ì6ô† ”òx
+endobj
+1348 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1514 0 R
+/FirstChar 100
+/LastChar 116
+/Widths 1515 0 R
+/BaseFont /XATOAC+CMSL9
+/FontDescriptor 1346 0 R
+>> endobj
+1346 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /XATOAC+CMSL9
+/ItalicAngle -9.46
+/StemV 82
+/XHeight 431
+/FontBBox [-61 -250 1150 750]
+/Flags 4
+/CharSet (/d/e/f/h/l/o/p/t)
+/FontFile 1347 0 R
+>> endobj
+1515 0 obj
+[571 457 314 0 571 0 0 0 285 0 0 514 571 0 0 0 400 ]
+endobj
+1514 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 100/d/e/f 103/.notdef 104/h 105/.notdef 108/l 109/.notdef 111/o/p 113/.notdef 116/t 117/.notdef]
+>> endobj
+1277 0 obj <<
+/Length1 794
+/Length2 1158
+/Length3 532
+/Length 1734
+/Filter /FlateDecode
+>>
+stream
+xÚíRkXg•BEªn ,L ÜÖb¹$.Y¤(dY—†d£ÉLH†î« ·
+^Š ¦kQ#BTDô!^
+´ÙuÛÒŸí¯>;ógÞóž÷|gÎûÙÛD}âÀÃa†â®ä‚"éq@n
+ÉÞ>H spCƒ98ì __*K
+endobj
+1278 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1516 0 R
+/FirstChar 63
+/LastChar 121
+/Widths 1517 0 R
+/BaseFont /FKERJH+CMEX10
+/FontDescriptor 1276 0 R
+>> endobj
+1276 0 obj <<
+/Ascent 40
+/CapHeight 0
+/Descent -600
+/FontName /FKERJH+CMEX10
+/ItalicAngle 0
+/StemV 47
+/XHeight 431
+/FontBBox [-24 -2960 1454 772]
+/Flags 4
+/CharSet (/arrowvertex/arrowtp/arrowbt)
+/FontFile 1277 0 R
+>> endobj
+1517 0 obj
+[667 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 667 667 ]
+endobj
+1516 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 63/arrowvertex 64/.notdef 120/arrowtp/arrowbt 122/.notdef]
+>> endobj
+1251 0 obj <<
+/Length1 772
+/Length2 1135
+/Length3 532
+/Length 1698
+/Filter /FlateDecode
+>>
+stream
+xÚíRkTT×Ê# PALyÄ’£a Ì d(Ês—N”á1̽fîïÜa†§,(ˆŠ!  h@Š!t&Y± (P4
+¥F
+ð(¥Ñ ‚bzêʪþluõž?wï³Ï÷í³Ïç°Çwõƒ°$˜‹¡„+“Æ䀀ˆˆ&€Á 88à°@04PHÀÀôòò
+ `¹†'‡íÎÑŠ@
+8­Û¤Ò$„¡’
+}/FvƒI/ÿ [¯ç*$’½B©¶üFTo„RD’ñ/ &•)ãèëÒhxÃ?&y£O!” "?4YW¦;á¾Á#r.¢‚!BˆR€X(‘Ãë<ŒB¯û ã[wA÷ßsÀçòêi×wyB%"3d0`ü,_ÇÌŸ1Ž¨@,ƒÆ`0I!¹^ýŽÖ-a‚&Ûq\˜A!‡ˆDlÅ
+Á*
+ÇMCWvÝ\Œ›Ú=ýÚR~ôdté‡;|‹¿z0ОŽ¼¬uÁŸ¥àwG¡Ö’ª}:L˱-&ÝnIÁG3ºÐI¾¨äîDHnÔ¤¨#.9%1óËNá?ʧìî©ÎչgÚãŠÉä_6$Ø!ÒFCuwŠllæHl¨:TÍíï- Œ}¬û'ÞI¸¶5µøóS í+C_}b—HyÕ9¥0ãÞò[+õƒû¢nN~â¸Ã=k9½SŸAýÉ{ã:³—*.ÅöΪ·Mpȳlêîi;ÛèýNŽ2èv[¬qùÞæ}ý¡¾ÔLgݲz©RªÝè7JcßOšÁõ>kêË!±«á–Єդ’˜Ì}µ±V5¶¹Þöj%¼Öéhkv½ÚEý£òݼ¡åË£z{RºÌšËNc·G¤üÖi¢-Ñ]^<Ûæpñ8þ¬9xx\ÕÙ
+æóéöÙ_iDvmà c:²ó;¡>Žd×y…ss×tíjØj‹3IÌ>¡jTM¢/éÍNvê—ž/;wÚäÊ™½ÇúS9õ‚x“Ýtë}/¼4²cÞ×ÝSÍ~=ù‘km¤ûGUð
+g8¡HÝDOöÖà|›7Óš}ËÀ’ZfEm¹£ÖPžq(ÊÏ­'—?Þz 3ò¼|¯ ú»kø©{K¿l¨Ó8oo1õá9­Ñv‡rû-¬ª¶÷ÀRï0;7^SŸvRãÝèb4=vÿ`Ì/~‹q¢N™ƒÒ|mŒÞ®}~,ø0‡õ€·2å~>mu€FÜÌ·ša¥2þÃòÿÿDXˆ˜Tˆ§Qþ Ë@‡Öendstream
+endobj
+1252 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1518 0 R
+/FirstChar 60
+/LastChar 62
+/Widths 1519 0 R
+/BaseFont /LBHUAP+CMMIB10
+/FontDescriptor 1250 0 R
+>> endobj
+1250 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /LBHUAP+CMMIB10
+/ItalicAngle -14.04
+/StemV 113
+/XHeight 444
+/FontBBox [-15 -250 1216 750]
+/Flags 4
+/CharSet (/less/greater)
+/FontFile 1251 0 R
+>> endobj
+1519 0 obj
+[894 0 894 ]
+endobj
+1518 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 60/less 61/.notdef 62/greater 63/.notdef]
+>> endobj
+1246 0 obj <<
+/Length1 768
+/Length2 1151
+/Length3 532
+/Length 1722
+/Filter /FlateDecode
+>>
+stream
+xÚíR{<”é/l9¢¬Kr"™ ÍLÃÉžÁ$1C.庼3ó/3ï«wfä©Äqë.aíXm:’µºpq2rks’¨F[ٲǢš Ú’8ƒÓg?ÇþyÎ_ûÙ÷ùçù}ßçûû¾ß籶ðõ·gò1.¼C%ö"Å ¸±Ùž  Þ’Ékk7†$†ºCØ P Ø)G@¦;Q¨T‚5pÃâq$*ZlÜlçHtÀÁ8ƒPÀ†$Ñ°H­Áƒ„Àã!°$‘˜B!ð›;!~°Æãa>‘@¡
+ØÌÛ´j“| &>, 8˜z¬öòÿ°µX|»T(ä@¢9ù¹ ~Õ†Dˆ0ñ?L'•À8`c|GS÷À ÞØ0‘Šw=%á1Ñ(! ì)[ˆä- 8"ÞŽ$À|_D‹H(†çqå/v¢ŽoÞÉ}Ç.÷^v ;ßó…Tò/äùšòK­ŽG@(™H&SÔDõú¸ _4‹…ò0>‚F* @8%Èj)*$S
+½Ìøeö²Š÷?Œ§ÆèPèžå[ýx†.kð·wÿôôøwS/<°s˜â|ÇÚ°¢Iƒ…±üqOì÷z…Œ[³¯pÛô
+²m‚à‡.¥8v½"èKÆN'SÚýÉ[/}Š:«Í—½›ö
+êœ9Ù¤ f¼»óh°N8ñ-«\—33Vw˜ý…8xêI¾Õm“C­ÇÇkŠ›O'-ý»s[tSñ¦OŠè@WÆßr—TË_Ñuïò
+oýRîLnó°™ÁæJ³e×È¥·V‘>$%ºV$&d†w÷¢¯7$š–VêÌÒÙ…¯EW°ü€)EÙ½²Löh‰+É6{¬lL_iâZyˆ¢7ûÉ*Ãoë,¿Í<0‘dV>•Wîé¸ké¨ÑÏ•º{S×ä$Ÿ}øèƒx¥ß©TK˜u'¯e`è9mFýt·êª«´¼OsòÐ÷>î…¼î*RõÇúmû®WÜ}š™×?]ölóÍú®
+äõ]쟦ƒ¡gƒn7óý¸–£¶QFÚêp'+z»Û¶7Vá‰õ¬ÏžïJŸ
+endobj
+1247 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1520 0 R
+/FirstChar 60
+/LastChar 62
+/Widths 1521 0 R
+/BaseFont /DHQDHK+CMMI9
+/FontDescriptor 1245 0 R
+>> endobj
+1245 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /DHQDHK+CMMI9
+/ItalicAngle -14.04
+/StemV 74
+/XHeight 431
+/FontBBox [-29 -250 1075 750]
+/Flags 4
+/CharSet (/less/greater)
+/FontFile 1246 0 R
+>> endobj
+1521 0 obj
+[799 0 799 ]
+endobj
+1520 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 60/less 61/.notdef 62/greater 63/.notdef]
+>> endobj
+984 0 obj <<
+/Length1 750
+/Length2 1185
+/Length3 532
+/Length 1739
+/Filter /FlateDecode
+>>
+stream
+xÚíRiXç­#‚>”ý“¥,i6$l"•€H(A@Š¬C2Àà$“ &PhY®•¥`ÉÕª`A«$Ð
+¸7@DdU„‚´‚T-ˆÚkûTÞûë>wæÏœ÷=ßyÏœ÷³\ë¿•âÎG£!/TˆST† ðà°Bœ
+_—ùâ„7­$¦€5aÒù¨‘>C¢ù¡Ä,ˆpòß0õ¶¸—Aü¸‚ù…Þis0"ýƒ€
+Ä8„ʇ0áÛÔmÐko,yg
+ç"0Ï]‹@€þº‹¼` Ä÷‡q^ˆá""h± ùo[ R[4@swgm%¿ÞæbÏŸ ñ iŸª äEÌø Ù`°„Ó©t:ƒ ȷfmòP>,$®Óp1Œ+%÷‚@LÂ
+ñ·3§wÝ4)¤”œ:3øêÑ×Z…/¤&A:{ôôëzÇ•dﶟ{e6ì:¥*PiÊU{?ÖjY£ŠçIŠ,ü ¦Î<QaPxÁ+Ò4jawÌ?~‘˜øëöoµ¹gªÊ¤È¿9µp¾r®Jì<œ;0ý‹€]úzFÉá~þ®}²dàé Û’¡5ýçÒ¿²6A—ö|¬(uþœ\såôô¾«9éó¸¿ÀÔ®XÑÛvñàýé¼ò´³«VÌ_c¯Ü¢ÔIö)¿6öóûêûìŸûÝ® ËH÷0çoKI¾6_üÚÐá‚vy˜ùa’zþÂ¥Úü£3¯ŠƒF
+½óõÌ<u4¢&JÚµÝ&¿ ®o)€Ð.qÖêû› ²S2yê,>]©ñòßóZYõÇöß/¸=WüOeuI¬¹º™ÖgºÁ“Ñ6öo´`ï·µ¯ûñ»:õT¹læ—F|}×3Õéõ“qä vtN¨w/—›hVÿ83¼–r0£ïéôíîU4Îåþ•eg…¬‡F(w}ÃÆsõ"nÜ1´ƒS DÝγìü9 'š~Ñ^ÝæÓ¶QcÅuÏ<±;ý?|HÿøŸà!ÃQÛAúi÷°ðendstream
+endobj
+985 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1522 0 R
+/FirstChar 111
+/LastChar 114
+/Widths 1523 0 R
+/BaseFont /AABGQY+CMBX8
+/FontDescriptor 983 0 R
+>> endobj
+983 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /AABGQY+CMBX8
+/ItalicAngle 0
+/StemV 122
+/XHeight 444
+/FontBBox [-59 -250 1235 750]
+/Flags 4
+/CharSet (/o/r)
+/FontFile 984 0 R
+>> endobj
+1523 0 obj
+[613 0 0 506 ]
+endobj
+1522 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 111/o 112/.notdef 114/r 115/.notdef]
+>> endobj
+954 0 obj <<
+/Length1 939
+/Length2 2611
+/Length3 532
+/Length 3249
+/Filter /FlateDecode
+>>
+stream
+xÚíRy<”{ߦtb$»±æÎ’õÌbËÈȾFd1s™šEcˆìÙ e7d-'‘,)q$ɾdÏVœˆtñTêêœNoÏŸïû×óyîûŸûº¾ßßõ½îïõ“?hïø«žæšÒ¨Œ_‘0¤.`lsÌØщ
+ øH@ ©‹ÐÔEªCäcš_0äKd
+H'á°TÀË ‚–Ki8ȆFd2àðå„?à
+ñdA%Ð
+mØl¼I¢W¹“CÞŸ“ðŸ—ô¸{X•q7B<§OFÁDÒ?az иÚ:Oˆ°¡uþ´½~xäǹ@]7› 6ÿ…öxþ<å–ª@OF(²RFâ•=ÍVI¿Ð”ÑcF´ÀËÖ9²V=;–}øòIzâØÑâZ©²;ébмנøý²OêbxësÃ4X [¦è !xö¯ˆ©zþñÙ¥X™qñ`%AÒo(‘7.¥“n‡~ÛÃ'üQª¤£¥“gT#\Í“ÐÙâ¨0UbO¸üZOÐ
+mb|û!ñž¸Eȯ÷º9K†ð“÷÷9Z5,ƒRª­Tnþ6Òµ×_¤Êã—Lv›øÓ/ƒ»5w+œJç©-j]²¡†Î3å6–>YÁL«1§Ã&ö…²oL—h ¬-r^vΚ0œ“dÎC?&÷¯¥…ßû3õh€ÔYåгÍáŽÅÑÃMO@æMít½Kà˜<Çô5Ç
+…# -j‘¨%Wkáˆ:õëïY‘³3×C_ÿ’BÖÎýð|{ ÖåÚ*,Fühâ ånè<¥Ù9øÖº)F¤L£!µÎf¬ûõ°ÔF#“íl ßÍù¶LëH!¹Ê£¹Ž71ŽKïKwÎå­ã ÷¯­Ë¶Añà+ö0FÎŒº„޸ђ¾Ó“nxçÉôvÄ>`ï‡Þ?Rà§ÉuWè6wí/Õu8b†î´Ö˜Öù‹¡ÄˆöO6›oâz¯ìg+¿ V6zßî¨lâ66rœ86t\}ñdÈ×NAŽ–Çd/F¿9»eu°è‘² ÔóÎ~“#éîà3}¯ÓÍÂ^ØzÓqÕþ¹1¾ç¦*Ø‚ôÆ×ñ Æ»úÞXAv6àÊLÿ‘3Åý—Jm÷³É>–$’êùlQ”Ù½zÛÕéîp…³â–Áe5Ó2Ú¸U,ÿ»‰ºªù®ÏQ' ÒMHë ˜_{"óYqÀ ½H\»N¹‘ê¶È£\Í/ΑhV4ðÁlmk«ºÝ~öÏVÃ… •sN3öÚàf¾TÄØÎâ­àä’ëFtë¸_…K¨ê³®ÖIK¿ÖZõ·¢i³ô²—ˆ¬8&¹ITÇ€Ã"σ‘
+ÛDÔ?Õ@ñÚÙ\.Ì—É«ââž’7smìnLeÛX=á¼1aµÕkÞ/Ƭ<±___?P©0§÷ÈŽþÓ®wls'®á F‡Ã:ÞImår=8ôyÊè$Dõ|f Üc7µëÂW”õ´Âõßš—zkÛ|ˆŇ9—ÌÅúÀ¡ÔûiõZ9ø¢Ú¨rŽ6ïnŸ‰&> ¦
+Q)[Áóü¥ÉÁGN÷dèI±š¦- 149ÓA¢zårëA²ÿVD’¹‹õИÒòéûFß ãYY›õw#ú-élô<'Ü$„\lJ>ôžo>\zY)Ù´ºMîg„’PÆ€²esþ¥æŒ¹í¬ôÔás“nÙ›«ã9¥.»uö’½fq¯ð&ÐSµ®œe·÷Šã›öb­J
+KåæD8Ê8¦š*¡²e'âàÉy˜Å¾í>˜^ž‹ï–²sè@S»«yjdšÊ²[ÚûÂ%Ma¨€F»jæžqžYJ>òê˜ÝùªØ8¯S6·¥Ó4P¹sVílE0ËáÓº”ÔužaÿÞ›üдÊKIlžhزµf0Y,Á%˜|Vy`2ý™×øѧé9„f´4Û.K³¾ø®“|0&† \`ðÚVÄ mÇ—¼óqO…ÊHÔŠKÿƒWïVÕ³%îÆõjeK>x?LÔ ^L»»Ž¹Ù¾®.¨–£kv2³aäá²ÄÌšja"¦(®œéYÙ&‹lÏ
+Np5 žKDüÈþ#pdKgÐ(Xú)Èÿ
+endobj
+955 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1524 0 R
+/FirstChar 40
+/LastChar 116
+/Widths 1525 0 R
+/BaseFont /VIEBNF+CMTCSC10
+/FontDescriptor 953 0 R
+>> endobj
+953 0 obj <<
+/Ascent 472
+/CapHeight 611
+/Descent 0
+/FontName /VIEBNF+CMTCSC10
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/FontBBox [4 -233 973 696]
+/Flags 4
+/CharSet (/parenleft/parenright/period/S/a/c/h/i/n/o/p/r/t)
+/FontFile 954 0 R
+>> endobj
+1525 0 obj
+[525 525 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 525 0 0 0 0 525 525 0 0 0 0 525 525 525 0 525 0 525 ]
+endobj
+1524 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 83/S 84/.notdef 97/a 98/.notdef 99/c 100/.notdef 104/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r 115/.notdef 116/t 117/.notdef]
+>> endobj
+951 0 obj <<
+/Length1 959
+/Length2 2912
+/Length3 532
+/Length 3563
+/Filter /FlateDecode
+>>
+stream
+xÚíUy<T}û¶F/!˱ïfÆNd—’%QJbÌÆ cc}Ù’¤ìkb²E…È“]Y²G¡Ýoªçéé×ûçï÷×ûyÏùç\×}¯û:÷}ŸÏ4¿ «ƒÂ9€†8,A.WôL.œ³´„Ã
+èáÜHxôu' ¡'ù-IÐqñh$ ˜ N +E‰À
+M™$õ“RU
+ ¬¦ìÿ¿òD<åÍ ßWŸ2Þ¿±#š² è "!opÈ“!Î)ä°¢
+uÍç1KȦvôG‹…[•]«ˆÞYif‰?£ mr>·d¨Hjw`ìI ’°¢þðçJ‡w‚²ÍßÎ[}Lã^ŸYØÑ`àªØˆë¯Ì7S0Rt¸Ëœ<Ãf’…ë-ñ9U¡_¤x@ŸñŸRfn§!™øÐ1§ÝV\¢Lq,‘|6rû‹Žý‰þkëWI¨š–ÔêäC‡×‚8>cà†¬|T¸VÕˆ¨ur߶ûP•í¼xÕOI®šáNgÍÕûË…Ô‡µvW![•Ù8Á»}q<+“Ìk=¶åRp½0' ÷4Ì[Þá=ÆÞtδè®ßÑQѶ@Mx¬Ÿ†Ñ©íÔfNrE“ÞÒÍb{Z˜ê£³gÖÁcñ×CƼŽ´¹kÁk—Ó‚7•eUYC,>¼~¥rÐüåAã”íuöëÃ.9Á¸—²Î-ó¨jû¨ÈcÃ5ò*nº4µ´B‘ò?ÈþñÝùV;³Ìê=Éü®ãá­‹ŠÃ :üiƒoÁáú'°´'Íöý;L†Êœ»Ùµ_wÕ«ÊpµðŸ w¡î>ˆn!io¯’6ãÂ{I=Si|f=š˜kRºMx›?ùfÎlýCîJU@–É´Ip‰vd¡«ñzÌÖõ—g|ë©ýèSKå»ÂlVv·fGª>¯µžáyIXÃÆxÚÈLøñÏS©J5 ]0§ÕŠù3E-ÆBì¿éÃè{ɳÇ,-9³7µwDÞ F«g(÷.}ar½óµÄz “ðAÐÌW“e0NªcAGõ ¦êðþ¥öX]¦ÇÙʦ’©Xÿפي—MM[ebó©ÂþgïjkmvÂå… ùLÜÎÜõÙjê³ WF]ßåãamrÊàËy“E»*—GE»d¤š‡’3s™T! XF>Ð|#2oj9Ã’Ãé¾z¿´4IB^‘…,©—Å—Kܨ4Ãn¹Ÿ6¯Ë»™&Êmd¨¶MØ)Žjæø²TÎM“J4ÖÆ(m±_v3>]{öv‘ß±¢ >ûÞ!­ >Ž‚Û|‡/È}\]B¿r™¹U˜&¹óPk°AOz›žMda•Õ`w–â ÌÈ&.Ì…Œ ×é#Ê^ä$Ý&}ªù™Æjjò7’2¡jôŽ_xÂ_vê’7Ó©ßàQ}¶£'ؾ»^›æ.h‰­§^0V£>òX}B¤nù0Ôd%tg= ÜwÛÙîŽj$
+£©w¬–bQÙfWÅÔ­Zí‘"_Ø%Ÿj{ G“ÀNN7±ãÔOò"ë[+v8]’¼gççg¥$Oq¤=ò³âL}NêÝs«L‘’“¯º1•xõ„3(0øœ¤9÷ÔÆ´ê­'{Ë9²UíZ»Ÿj•7q’ŒÎºµ0]½B<"´kwå“î¶saÙ•+lXr´Ê¾ªKo‰âV㥻ýˆAÚCì›P¿}¡mÕô!°âò‰˜Ã§Ô– NÉØSd¸Í|båþ m£³ÿ=©(é Góçì<ß Ù2—†Wâ¸ðbë52*‡¬³Íe”>Ê òlŸöÛ÷˜„°ÁµœThK:AU^ñÁ…<‡½Å,¥ôšŽLŸ ††p,óöO;B7±ß%T‡žMEKèœ>—H“æ’ò¹ý3ó‡c£qŠ”Mºmí€'γ&o)šÛ~:E.r0>¨¿:¼HîvAµïìþ2¢b ­U'äFUŽ6ŠÏ—P^-6zê]ë \5)~óŒí’¸K|¼‡"‹T3ûÀ²k k‡4Z|ÕÚ±ØÖx¥oê»w]ýüd‡äbcý]/Õ¡çùY²Cpßšô¨ðJ.ânH›ZAè‘ŒyDÊÑ·gƒâÉå™<,µ4è
+·øøè`yCñ¦Â>\ žêÒøU¿|úôê(iQ?8ëŠë¡ÐgœÃå¹4·ùÃhVÍ#ˆôS<éõÎí;è Ýkôu"}#Ú²íᩉÔ5lYÔ¦[²³³hCC…äJåØbÍqº¹VC}/ÀD©¿nõG’¹1ûÜêí‹+]ä^ÇæZ³~&WbÃxÜxÜ¡C¯Š*ç埫-§JOzyE4Ɇ®ÚTmV\\xÛM×"-ÿ¡
+ç‰*j­&ÊŸDìuÂÝ;T,ÃâBma¦ˆ·CŸ„ç4™B ÑŒVDziÎïÈÌsƒåFyõÚζ»5“¸²\5DÄÚ´+¬3†Ù Î@ß~hP÷ÕÁã‰øM?ƒ•š‚Ó'¾nÙ¸¿u‡Yå(ã^ë§XöŸËҮ͜Û”‘-“g¿TP3U¨Z6I¼ sö3r³Ùù£}ã_sŠ)®ýv4ÉAËó7Ã¥vvß  ¥™*ç­,z6}ùփ䎕ÂVºyßønéÖÓ¡9“¨@¤s ¶æ
+\@@ñ•Ìt0–'¸÷†íê¼x„Xä±\µ úXÿX㓯}ÍŠ&°ÿãù¯À„
+endobj
+952 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1526 0 R
+/FirstChar 40
+/LastChar 116
+/Widths 1527 0 R
+/BaseFont /GFWYFG+CMSLTT10
+/FontDescriptor 950 0 R
+>> endobj
+950 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /GFWYFG+CMSLTT10
+/ItalicAngle -9.46
+/StemV 69
+/XHeight 431
+/FontBBox [-20 -233 617 696]
+/Flags 4
+/CharSet (/parenleft/parenright/period/S/a/c/h/i/n/o/p/r/s/t)
+/FontFile 951 0 R
+>> endobj
+1527 0 obj
+[525 525 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 525 0 0 0 0 525 525 0 0 0 0 525 525 525 0 525 525 525 ]
+endobj
+1526 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 83/S 84/.notdef 97/a 98/.notdef 99/c 100/.notdef 104/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r/s/t 117/.notdef]
+>> endobj
+948 0 obj <<
+/Length1 956
+/Length2 3035
+/Length3 532
+/Length 3683
+/Filter /FlateDecode
+>>
+stream
+xÚí’y<”mÛÇí4öìqsQº-1Æ>ˆ˜Œì2c ™åÂ0fCÖ,Y’ìKÈ–,Y¢PŠ„¢,ÙÊ’h±õNõÜ÷ÝÛóçûþõ|žëúçúþÎßyœ¿ë8NiI+”‚>žŒ‘dU¦ÓæÆh4L €)*A¤¥C%IÇ1TP €Áá0@ß߀i0 -UM-5š @}‚(w* ƒýnÒ
+‡!æªèM«ÃG
+éw«ø39ˆ'ø{ÿ¾jLÅ 8}’;`ªŠJª?u‚’â­Tœ@¥øƒ?d„ÿ=­{?b@-­LÐö¦òÍõǪ†@¢¢ƒ|@@éû†ýô.QÀ)%E%%ÍH{ÿúrþí4CŽŒ'Üe5u
+ ®Ôáêaÿˆó§Ð~œúãâÓ†û»h×Add˜ŒÓ>ï™Ñ]vÖ°¨¿œYÖO,«ô|oë…º,mÅ÷Úû_PŸ¡AñÞ ¼ž„
+žôeÓJ(ÞMmJ¤A?´+½ðŠ·‹“_¶ Åú÷ÞÉ…¡;¿³Û;7v~Dâ­O£üÇуë“­ÌUfï`…"ËqLe/‡÷VÏz…?aÏÄœM‡8çß5Km&“zv–ŒÈEä‘’n!§ìu¾¯#"í¯½Æ9³àñùætæ®áböK!;Q¢~ÓÂLû’‹§Û²¨Ü—ËÞªf¢ºù¯rÇϬèUäïkèD‡±
+,ì|Ôr­êÿ: EeÀ3œœ§o³¥¹šKJà-øT8ñ oиÇÚþP‚ÄëôêkïfCÉøÌ}c]cö<r®HÕ¼l»c±Z¢/P^YKóòü!¾ê"ŒT:·«¬²<R[––* [‡Ì¡Ü|HRäTýdU—ဠœ²ÚbÜÅq¿Ÿ.n¥¸Â,jgn‚‹"Ž}[âÑ……9^|.ˆ™>«ÏTØ$=ðºÌÞ“d¹ñ­Ï31âÜ…·ô–ŽÆ'¨3_ú_"ÄVxtômA“›©»ÇLdû£—½þÌ:£vOëÐ'#½=jóÒºŒ¢b[OòpNä#ç©Ì.ŠJ¥oÖN‘,îÐg·Oùk„Ÿñ=׳7º`S±£VUªÂ4VÙîŽô1$¿2b·¶âçg¿¼bbdû¹¯¼~߶ēõýÓÞçùšïwâ÷žÂ99¤¯]Ta~¾ü¹{`îSÍ|6 C|ˤgI½À¤JóåoSCõ¦'Ó*Ýø¤ÚJ„ò”O Ô|è3&lÅ~]˜pzyÂÆ÷Õ·…XqâJsT«™‰¨oÀªnA±ê¦a¤¨ïbܦ*ëªb¾Eùôƒ² káBK3¥Ð>fïßZ†ä_z¶+òr"GG›¸\[“qLy§>­3
+¸½R4ÆõØEˆJ²ûoòz\4L¾éÐv!ʳd—¥£Âátîqö=Á6Bó¸cÞëŽmù"¶BXp½qŸ÷>rN«Tœ>ÄÍé°+÷ç6jeg¨Q°<w½´ÿ ˜1Š,ÙBÝï—,– gà2k…—ôñ~-@FBIìHÖ°.$ËWËB»ý…#¢ûêŠoÜ'U´”ñŸ„ãWr߸M=™ôÙ%C<àâ¶SdˆuìÝ´éʹԲ0ïY6HÝk?™Å0&#V­¡­–ufþ¨Q‘y¿+¯‡‡‰ØLw^0ÇÖ-–*ÕRËg/=/u›-ÛÙÛ“ã®>;y Ûd¾-vkÈØæblÇF¡q>JÅLùÜ,ˆ>m‡¸Q°pØþ‰J4ÃØê˜ÑŠkµpQX"I±íÅÕu~»2—Þ‰)¬¶ ¸~'tŸ®ÈÞ“º µeEzáÀ÷)³ÄÞZŠ` c`‹ßà2¨uÐ….ÚTJþ‰kÊxgPР´°gx~)²ó¯@ûõóµ²±êêïàóæºrcš2W,8•%EéƒÞ–;z³ÙA@^lcâ»uúvžþÅPKJ|˽&ÿÀåÁ¨š¸°Å\ÝÀ(Ïv²¥Ù7ô&óô6K“LÑ°à±9ïñ"¬0s}þxžÜí¤Ô7¥ˆ»üüÄh{GQiÙ’\T@ËW–Õê嫇s3¾¢]}CuÆ×–ÁèÝu!Ù몊Y/™¬¾1ø4ÇÆ"ÏSÇs2Ñ°ÕJ÷†*Fí?|ž’·uiAÛEy¢Âëòìå¤(#\Îk½pÇEÁ­„R£›õ½qöóôÕ|fF,=aìÜÁAt¦¤“5‘m„tFø×CÒ¨¢ãCÞ÷¹*Œlá|›\©Gv6^ÁÆƱŒÊ».ÇT£­c«œó,ùWåd¦8×zMïo4¾Í¾šÇôu­½LTéÓ˜êýê­k«7ï$.g¼¦¼\ðŽôN÷lï¯gà1~eöÁ=¾¹i®;7¯
+/†n1ÝÒ¼4¤‘e°ì/H'üÀ4Xáô3~×P£ßŸ>°½©ä…/›Xš»Š’t™q±Î×1Ò$‡)ùUí}‰lÝ›¨³Xj¹nù>†IÉj'á…'ùFcŒ`ßö)#à9¥¬ÕlzT¡ÒØu} ÞO¯?ùÜΫxã#ÌF;qèQ(‰.ƒ­e>ñTös±©‰Œ7­ßA\y"*o?±Z³<²©Øx F¬ª÷…'š5s)±TyI#Y¼kÄPùeãÔîRís©±­ÃŽ%°¹ÊASd&#ç‰QIX¿ªTUC-N
+\·¨ef](]n×K'^XyN(=^(¤z%×£~¦Ç­½+CõxÓInÉDŽ9¦ÒxwÇþ:¸s—À]9,s ã£Ñ9Û¨‘?ßû¯±-§«CHüjõ"5FÚàÁa  bV„ŽñøÜ,äL;ªäÔ (“ßOxœ©Ø£æŠ€ÇÙ[‡RÃXËJñ¡Ø˜ÛÑqg´ë·CŸÕ@õ®÷ÀæÈ— 7è! ‚ºÇ?~P‰©¡ºaäòÅÅ×õEé>â8©ÝcîœäËSå}ÇB‚ðÞW½5Käõ„vŠ!'b4ŸmÛ#®M ­êE´àTæ1Êw¸ùœ:ÞÉ5&”uK°!\4u­ÝÓ{¬ˆ$«<³–ÄÁ Ò˜óÈÄv°YL_‡u v¨75A¤®Oô4-JĹ.Ò2OP6õ¦r!›Ÿ¯2t¹©‡K©Ž8÷¨Ík¤„46„™b2jLî¬}~&.®¿¿û|Ç-¹.¤“[L>aþeÙ é(BgßÂ.CDLª›Íh²½xDÁù¡ôÁ‹Ê¬3<·÷ c/ù\I½÷µS«Õ >Åêqºß®ØZÐÖ‡'í Ü¿„ŠVz¼9á´yQ=îÙ«ˆCúÅÚG×/<<ÖÕêש*ÀSD/)ܘKòA²_²˜~ÿ"ó¶è•
+ŒŠèÇ—ùnW —ö’‡õöŸöisÄ 7Ûœl׸φå4ô˜`gw`ÀÅêGêU=sVõ; 6æè´ID‘³yŒùò¯ÈGêT+ýÈ üGÀA …JöÆP¼ ÿrþWæendstream
+endobj
+949 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1528 0 R
+/FirstChar 40
+/LastChar 118
+/Widths 1529 0 R
+/BaseFont /OPJTXK+CMITT10
+/FontDescriptor 947 0 R
+>> endobj
+947 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /OPJTXK+CMITT10
+/ItalicAngle -14.04
+/StemV 69
+/XHeight 431
+/FontBBox [11 -233 669 696]
+/Flags 4
+/CharSet (/parenleft/parenright/period/S/a/c/h/i/n/o/p/r/t/v)
+/FontFile 948 0 R
+>> endobj
+1529 0 obj
+[525 525 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 525 0 0 0 0 525 525 0 0 0 0 525 525 525 0 525 0 525 0 525 ]
+endobj
+1528 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 83/S 84/.notdef 97/a 98/.notdef 99/c 100/.notdef 104/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r 115/.notdef 116/t 117/.notdef 118/v 119/.notdef]
+>> endobj
+945 0 obj <<
+/Length1 959
+/Length2 3138
+/Length3 532
+/Length 3789
+/Filter /FlateDecode
+>>
+stream
+xÚíRy<”ûÛ–ÝØGBaÉ–eŒc­ ²…TÃ<fkÌÈ®©d©#kd ÉRÇÒ±•’mJÈÚŠ²/‰Þ©ÎéôžóçûþõûüžçŸçºîë{¯ç¾n9;u#Ù4#“hê „>`bm|ÜÁ
+¡ 44!
+
+&TKÓI±4P@èé!
+Rk2¤’þ)=þ°gL&üë" –€÷2"ù@@]O…þAãÌðA ÎOóò¼±„
+³ãߦ(µªŸ^Ê/6sUX½GèäIÍ^à,yÎÜ\Œð|26ÈŸ†“
+9™Ó`õèôn4éñç™Cä|ò`a§„kƲØÖ TëH¯ÿ°`ºÞÅk6k¼d»UAµqª=ÛìRå³Ã·î>C cCÛ{pl°ÄdúøóÕË>çk·KÓŸàM”-²ƒ>1RX|)èb¦pOqnm¦uº§Ó
+ésik~ó0ü%q/oL®þ³áýïO*ÛâPFÙÍiJ ñ:ÛjNÙÚ«â<-†õÄ‚/ÂS¢öœýŒhI;“RLI䔬Ü)ÕçõœPæçjMß=b€«‹‹i\ÎÇ·sìòÔüePòl]»ÓþÓÞÆ·ŠáKßÃ^¹½{ö_J'ǃu‡»9¨—Î{tbD™@õTùz|ni¶ºEä›äãÕD¤=ñÛ‹hÍis¼Ç^Ü™šέu Üà¾áVÕš2³aO0|³)ù{ÎJP×dž"{ XÃZûHO÷ƒ¶b\‚Ä—ùÆfÕ§%pÉÎÞóžÚ…¢õš
+=·e²-Ëó *-üÊ7C´µ"r8¦45Çþõ319Å Ø;¯2tQ†o‚Ĥ"Wxbò=~,RëœGݘçíŠ]Æ•~ƒgïbrM\†mG ™EÑ|9’¦µ‰ŒgÊœüŒZ?Å“ú¢ÕÓ_/„ð8k=Ÿ¶¾ï¿íºy0ꦯ^G5Ô<P%GO$ê$ÊTæÌ;Þæ±&2jl›»¸_JGQvÁý>ZÄ»hnp*ÿÃHºŸN/Û¬ µ®™²÷˜_É]ïÀî Ñ^Á´–Xlh…©†ü’͵y j¾;㣘1“%˜oè„3P;ðXßlíaÚõ œp¶¢(A—„û•Æ+­ÁÍÄôþ!Ã’#¢ ¶2«ÐÛ 8ËnheŽç‰£ {Šw¹‚ÁýËw´çUwÙP'ÛeÆkø²{ü
+&æîâ2wZ»Ž'w/¥…/TMÀf‘óùÈ܃iÛ³ü4ó“b·ÅhlÜX—VK¥nß™K²Ð1[¬èJ(—¢¯à`P2a«Ÿ8ÐärMºpÞù¼°”r¤­õ¦ìvýÅ@B›ÏK’FcO‹@ßaéX ¾ÏÑ?ƒ0Z¯9úr>w£{F¢)7S°g8þšÊ]ðVRs6 |HV'u­$ð4 ä#¡zÀv ](ô‹Ù å'ÎI(KAßËדÊó{SDK~r…aIÝëdtb¬JëÉ|ØoJS•Ò$K¤X¤JV´,­;í™ð( ágÜ>Í çαÛîKðúøGWÅ©TuÿîņW¾z>¼ˆÐ‰T½ÐÝò¢¢jÛÔµXíÚp̵c'ük‹6;Ì÷Ÿ¶HK91{Ñ —“ÏñÒ"@¿ÞzÊ¢$þуÝÁ÷²¥3“4?jOc8\:¯nGwõkmMÊ8ÓWKµŽ“`‡jÖ”P_Lt(è½Á_‡±"™Î‡3·Â÷P"÷Œá"uhoæ³·íµÞ<æP¿Ýë9½8A^h@wÊ^?#ßÌåŽz”M¬6>Ùov´!jÆòvÉôÍ  Ù´ûeˆpïv0«‚›¬"SîaüãÑÜÌ4‡½wÅÎz–p{àPD¡{—F½J+‡”¢ÖÇ\3_ÒxÚCZ-Uâû¸å]•W…÷©¥]ó >)6ã¹Ø2ý2ãë«C™÷ZŒ°Rº=€Î›ÌÅððúH÷wÝ‘õ¼îV<6ôëõ¾ã§Æ} «·÷¨ºO,Mö Î~R¿çSMTû=íÌL×»ÏòøÍó±ùáùšµ}·Çä•Û;Âî]ú-#EŽáöGÚAXíÈÍOu£ï3U†¤ù—£ù¬…Ý,>ñ¬9³j 0*CîG|¼ªæ™ÇœŠZ¾p ü¸Ð‚Ñ÷Uöõ%³Â-ðÖ¶À&1¤ "oˆ46:7_•<s”ë½·Xé®…‚®™Ûžôö?ÀýØL¼Pt¡ã:ÓjâXéKñ¸‚Õ™×ýï7Ø{-“¢6o:þ~EGÀ/¯fCúÔZÈÕýÃx×õÄnË楪†Á.Áô¦ê¸Ùc¾qÙ~Ú—s¯Þâ‚=FV¢VœsÍÉcgíZÕŸïØRß<»\*c~¹©Öœõ9£¹­‡âà˜üähhíNw«ú¤ÀWšÉ ûa)X¹ó>‹go4®ÈFˆœÛö+£æá]Äz¸³œ‘¤*ßåFªã®ï
+ôCÊ]EgQet/÷¡Yæíê“´LÆ8@§ôž-°°L–½- ßA¿©hœX˜}mJ>ŸÔê°Ñ‡¸(¥²xeÍ÷j_@ ß|­ÿ„y
+Ä|È“ÆÔn‹öl«›¡µã¨šÕÜ^±l#´Ðë:–;˺<?œjKN¨ûá; ?[[ÌŽ_f^ú4[¤lÓr¾átúóq—{We¸I ŽŸŠšê{­Mv›ÖêÝhϸPü¡·¼êºTetaSÙ‚µ—{öË |.‡i{WbÍÑŠÏO+Çø˜Ù­ƒ¦c+˺ŽÂrCa»²Ó»¸­N†ÏœàÊÕ™Š!)¿2½šŸnÅUr?ê£qDåæ¥2¢d²þLø¯t>„aÿzêéHòÕ·Þ»–0}syá÷¹¨~ÅÖ¢ª±|ÂQo¶[ á7{¥ë8¾:íÛ©_}&svñÑ|Ì°à\ÆùE½-æ3àfò Òd\u"TÔD¨eNbnE¿Gˆ§Xäêêí@l¨@98cú‚òêØF”µ2†’„¯;ª‰——„û°Ër–lÛÏn¶ü(—óEóåî°ö›†°æ—©€÷ Ô;bJx¹ˆÆö}Ó"ô6ÅúdKnˆ.K9â¬Û™ˆÉd /ŽwïÜXùž²Ý) è»õ{n$ª (ç8˜õú3Ž¯ 
+Nmf‹©~¸mÇj¦·"cà 1À
+eÔ˼I\4AöÉžr€ Ô¨†Œšéb#
+ÀŽ,é ø7q
+^DŸä¸Ý„jã_ ä5nÉéÌfˆÁ
+[9ù×&Àl±'7Zxñ1ûKuj£öpXwÒ§w¦Õ³ðKŸÂ¬͸ÕÂ4¾M~Æûð@9O\ØdW#O˜Dâdªc‘A°jþäì}˜MãPDë]Í*ŽÎN“?³ ³üõ…Üxû Ëêº+ÔBïÍNZ$ªÚ“R/0!”9“¨Ü­zÓhí’8d\ý(NÁ ùTâý¦û´cí¼þ YÃzÓ7ÞÝB.˜DÜY(¸R;ÝØÖáv}–i7²ºOÖ§o]¼EÙáÔîKóm¹×{¶•íxÓ²mTåòY诇‹í“2zñ¦¤íjßæìÃ
+endobj
+946 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1530 0 R
+/FirstChar 40
+/LastChar 116
+/Widths 1531 0 R
+/BaseFont /TTCETZ+CMBXSL10
+/FontDescriptor 944 0 R
+>> endobj
+944 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /TTCETZ+CMBXSL10
+/ItalicAngle -9.46
+/StemV 120
+/XHeight 444
+/FontBBox [-75 -250 1278 750]
+/Flags 4
+/CharSet (/parenleft/parenright/period/S/a/c/g/h/i/n/o/p/r/t)
+/FontFile 945 0 R
+>> endobj
+1531 0 obj
+[447 447 0 0 0 0 319 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 639 0 0 0 0 0 0 0 0 0 0 0 0 0 559 0 511 0 0 0 575 639 319 0 0 0 0 639 575 639 0 474 0 447 ]
+endobj
+1530 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 83/S 84/.notdef 97/a 98/.notdef 99/c 100/.notdef 103/g/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r 115/.notdef 116/t 117/.notdef]
+>> endobj
+942 0 obj <<
+/Length1 1068
+/Length2 4669
+/Length3 532
+/Length 5371
+/Filter /FlateDecode
+>>
+stream
+xÚí”g<\{·Ç£‘"jt[ïÆ0zôNô%ÆÌ`„ƨÑ;Ñ[ˆ5‚è]D‹^B5=¢wÎ9Ïs’{ž—÷¾ºŸ»çÍþ®½öoýþk­=œ¬úF‚Šp´B Â
+‚…ÀÒ€²Ž’¹±&X
+ (z8
+þWô¯±þ@Ž>®ŽÔ¯8.7k4üï$®‚Ñß„[ôI »_$€`w^â7Á9ý !¸â¿!Î ò⺠Bý†8)ôoˆ“rý qR˜ß'åþ⎄ý qðø…"8eŸ?ñ?·@I íý@PD
+ÃÍDDHˆAüÿ["̃ë+öÏï ·Kÿf{$nýoŒtv “ szTQ út¬ì2¯;cfqØP{xm¦ŒÐæ¢ Å[Lè1‚yŸ<œÜ Y~3}[»·[¦«Wôë{`
+Ÿ!ï»NÅûä±ñ.lÓÊ¿?¯·‹Ì%'úó,˪kÿîûá’gûåÊ;_ÀtÛ1„¥ï¦Ï¿Ü^ž½šgÿ”Nj×r' aº¾”8xº¥Ž~Šž}ÖËêñ!åÏYº®…‰ûó×3¥æé\Òu¬Ç;uÜ#ä@JTÁÒ߸ýŒ¤tŽa&MÙUVϵmö@äŒVÂN#t< CÜÎ?Í褺ؾ ¬Üyî%Ö:b8L‡Ó f’óÕȼ‘ܲ ;Jæ² °©຺ǾšU„—‹tÝ«'*8¤^î¾'"J•Nm”Ôd(Ïû Ü3ä3ÁËùq&Ä'›ø5¯GaêÞ‰œN¨ÈçO*®³–6ˆÕûÚˆý¯Ù½Ó¨Ó´º“~’Caö3Îbg7B^ÅòKÖݱÐì3ª®4@75ù†o·;‰0ØkÕ‰{íÈ=¢-& 3L•Tϼõ
+î…ÉLr›¥Jzò†u –¢ïàøÝãÁ £ÚfÖ!ñNW¦]>1¿³ulxԷ騈a.¢™‰ŸC»0ãÔ/regDä7Œ+ºUú>CÓ¹ cÔ”S?-mªÝñ,¸À# mY}(áÙÏU€èEP»
+¥Þ¶Ý,gŸ½oyn Å¨ëÓ"++¸™‚N–/?®Ê;>„—[T:)¬#Ï¥ÌÃK´(Þ.J•T¾Ú®<ËxËŽ±ÒðÌ :'„pèÕïøÜbëMîJïä-˜ïi.—Ë—Û$Èé—^ñ”.ór=ý²±×1·zk½ÝQ=ðçÜ>Çó+oìõéh¬>‚Œ4×Ínù§VÀÒÍ®ˆ¬ |uä}!t©Îì7Ì>=™e<&‘²P2ô§ð$»ÂñŽ¡‹žUÝ?
+µØœÔ;m^q-UPBes°.X6Ʀ%ö®¬y˜ÿ’²£jÅŽVÁï ­Ëó)Ú#Úƶ•ãs/¤yëƒÈÉz—¶+:•ˆÞ‡•äF±ªW[ñ«=÷$æ —ä¤Ü
+9aò”Ú¼à༎|¾?bÌîhèŸó™ú´þÊÄ´B9ªßé3óëñP±€L ßÙ×:+äää--<¼~ñ:<Òa
+"xÝX”wºV–Ég“•MWµ‘rÚÁ~·Ö…ü|_3VåòÀk_ç+“SBo¥) â•ÞbÅ“œ×®&HªbMüô8¯æº¨®wõÃèj¶¶ÌC9ø‘mòåbPAœhçƒãêË©w.qze.¶Ÿ êÚÎÖsú±­½+„xÔn¦d¤pÃîx¥³äG$šn•¶Èmy?:bÙOhÔò½” 62¢3>xMžV ž„åH]¸mÁåIjqܹh©œã4.öÑØééjP‡hŸ.É«
+J4Œ¿#9xW^Dj<ýæðä ‡Mír 1ÑŽãŽyNLL@µÖ5)KºD¦˜µÏodUÛÑ’Y”JNúhì@þõ¶&Ì.Rn…©–®Á_qÀfk³z©5§öI¯8†|^X×™õ™5‹òqŠ‡IŽÔÃ6}E°Ø{ß[O†2êGÎZó´V¸%×h …ÔW<RÕRWßùîþظhq÷#gSè#0›å\‚\íVå2;Ÿt˜ëM¢zÒwœÝ>›ÐÉØɳÉ=D·ƒï®2÷pÊâ^‘Ÿyénš˜måÞ·¦é“ÒE;Ž{¬­çŽÙU÷ï4©0öå$H%ïãï§Ñ²L»9ÒnNþ†Ý¸oÒÞ+hÚ»q¸ÒX׋5-¯é¹0]•u|Õ Kd5‚ÜF ¨ŒJpÉvéˆóôª%Cçrb5VMÁ§ƒ§5m»Új·óíbš]¾Jíí›»Ó'„âQti{ñöæµ|H–ƒf¾â m÷Á•ÁèW×´k½'G R h}Ç §¹.YU•å®`Úï*7ëê á> ‰«SÀ·ÒôHÆ!Í•C¢Œå&Z–…3+=¾Û£ñÑÑÝËYV•{ïðâ,ökb¹îÍ*Ä,~ºÁ¦®WÕ¥–«ñb5n#G£ÊîàÞÓšZƒFòe‡%~•Î/¹*REá¥ÅîÏ8à£/²7z”š` «®”2qEn–¾éé™­¶±Ð„X>W·Fñâì‹ÅG4¼ò¨ZôO– Oðƒ]•æðœÅd•
+úPÛAûÊÏ«µSŠ+¹ÂÍTV]­³ñј«CnSç³+û séž¡Ž½ÃÐQUôÎä’PçHñøK´å‹#µ¹T-5CÁÛn X g×P“eÊðõ¶“¹2·Ÿ‚éÆ%魞ؠȱ®ï@Ø©Q˜›Mñø$òEÛñ‚ÕrJ Ç?ykË€C‡µ²»þŠ÷æ]É!ÕÏ´äl˜l`9×}öìMùšÅ!ûÉ’W}ˆîSí¾ïQ‹ÆÇöªz™N»ÖöA æ«ô%š–æîm¼´ÛE?Wn\™N'ä gùŽœ,«¾¡¯Ö è·Ws¨ü„/V|CtíPéFáÓ‹OžGÍJƒž®‡ïËæ‡\Hš•
+{ô\_rM™¿k(R?ãüŒ±ìêbº´ÇåG¨íœjŠ½¬ø™ÃÚD,jh—™ÉÜn¨£þe]J@`99>˜Ìq‡ÑÚ­Y~™;ÐCùÈUJ—KIæÖÞýð`<Wä* hšëvzçûÒ`â}’?Íù Ýý®VIÌ jî\™nˆðóÊFQO×¼›qÖƒb껦 Ôùij»>õ¹›ŒÙ•Ú3bž>ixç^öôG4ÙÑôBöq©F=õk[sÙbóÁ±ž4BÃ'exñí¡+êüÒ©¡O¶Ãh’î›4àb7®½ããRój3¼DÊc©aö3"žTôypéÏìΗË!ðë)Ö=q½K‹ª[®OQÏÆ0åNuU–G6
+laäf­áO9ÚÝÙè.Šhï.ÚŽfã1’$ò'OÊ©ð\½ų›-ÎÚ@{ÍêD›ÛˆÉ^ÕpŠºwGpcº©Lku«¾†n÷ziøµãŸøWåÀOÑT–¹ÍÄx÷γGâý[sf¿$ÊÕñ½J¶aIYó M &B®¹‚kêõ3öàyç¾<¯§ÈÓ“4.k_µ¾½/u?¾ªDe%ã•
+$˜d[XòI^ó³y•ZßÓò%ÿì`¬ îPKOÎp²î‰Ô+Oº¤E2i*#û(rYüۆ镵Ò–‘šÀ“mþñÎo+£Ç|á#¶6¯Ú@ý“g{‰/Ú?{#òw(œ#¸8E3iÝåHò?5@È÷"Ën.kî!,Ïb;Kw…# w|å“Ñ{B&©£+ 3cJŸŽ"xY-ghÀ„ÑY~4~÷§3ç&”Áç.k:W2»*"å¼ Qí†*Ó`d‰#â Ñö{möMuïøs¡9fø½>Í»ãQ‡õ/ðÇÈ-r*>†Ú„/VèžIå:%M_(’›ç\zecžL{ü2
+CÕ:jˆ+@Â]ø8Í„“„¾ïgäw¦`ÃÈâNROŸ ‡Ä —a×à ™M#Ô>è»á /S³[{”c·º=¬·â D?‰†G|p€³}Ј°DQlѧûRÉíû,¦'$Õc{¤¡‰{O]ƒgEÇ K)¦ó…Ħ„ K¥'æA¡  Lë‰!.„·GÉ\ÞxÊà^f ì¸ø*ägÚò£½Ö‘ê[ “ã`YÙÊ…ð÷KÚŽ[¤þÃ!Êl—ºˆæ$<Éظî±IÌtWÑüäÒ¶{Õ1\tö:I
+}„LßÓO Ó3öŠxGŒÎiµ 8v´+À›F;•b|{Ћ:ö'£Èƒc›I?fùy~Ñ°I¶AË]ÒŒØV–¶Æ­á{“f'­É ?϶ójûÐóàk¾Ï«åaákxË3ºG8Ý^
+C³_ñ=s2,}ľÖZÆOôýÙæG%7‹‹o£„bÕѾ^âÙ¾9y·AtZ/”Ä'ovà´)úõ~.e¬ÂûîEe¦Qg¾xDDj椈뼽²%Yñ*Í{]²Þ Œµ öé!¹e穬Ú˜ÙKZßïSýÀ“,u*_ß…Û–ý¾aôŧÁyQQm=ZÕz<MM
+<è FC“ÉœkŒ`qKÁ (ç#3ß—4U²rúÌŠpÅ·RÛÒc¢y±ë*ác̤øæmáÊ„–³UoûÎQKy)€º…µaë\V,n¦†õª7ï—OI+tÝå­H¦.“u‚F‹z´—X‚—Tjn ÈÉÇã¯
+Í«3ΑÈMiéFÏ_$4úƒn1JjðXw"ˆôë.Î_»™Õ³L¯Î•wHÛV‡Œ”±5S±˜>’Û«e\×Lùa-7¬\‚Z•«Ò>}Á Þì°#ïÑqu UÀÄÂÜ>d6¡ùi}ƒ¦å‡¾jA„ÊOî)o¼ê­ªì
+ýd쪄ÇÄ ­ù­c#7+s ¢{Ÿ$Ù‹‘ýT!”¦ ]Ö!¤ìâv6-Û\Nõ¿Ø½øxóÎÖº¬o‚n‡÷æ@.’XœË%ÿ‰ù †zr¹®#§3íÓTY%öš!XBÏ­öÃf·k¦h¶¬œ.xºÝƒçËxÊ2rFæQåãÏÈàkæfÏÔÞé$– „9)åøw4}Ð^ì. ôªá›5Ö¸kæ‚sG>ÌK„Â(<ÍÇ°ÏÏ]¼…¦§^èí_‰W­>%Ü4S=x8yþÙ+Äæ|i…™ÉóØé5hK·P–¼$‰
+?[Dpø´œ°sžÜšOH´U— ÈÂûQvX[«êªöz8 çȧØ×NlÄÃuÂí0°xyb¦ÙM摤ÓPf¨¨bo¾ZPm íÜϘ°o‘t™¦Jÿõ‚k‘øðÚ·|ÌY”6îEO¡ŒˆÈ>Ñ
+endobj
+943 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1532 0 R
+/FirstChar 13
+/LastChar 121
+/Widths 1533 0 R
+/BaseFont /FXUOUL+CMBXTI10
+/FontDescriptor 941 0 R
+>> endobj
+941 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /FXUOUL+CMBXTI10
+/ItalicAngle -14.04
+/StemV 107
+/XHeight 444
+/FontBBox [-29 -250 1274 754]
+/Flags 4
+/CharSet (/fl/parenleft/parenright/hyphen/period/S/a/b/c/e/f/h/i/n/o/p/r/s/t/u/y)
+/FontFile 942 0 R
+>> endobj
+1533 0 obj
+[704 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 473 473 0 0 0 414 356 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 650 0 0 0 0 0 0 0 0 0 0 0 0 0 591 532 532 0 532 400 0 591 356 0 0 0 0 650 591 591 0 502 487 385 621 0 0 0 562 ]
+endobj
+1532 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 13/fl 14/.notdef 40/parenleft/parenright 42/.notdef 45/hyphen/period 47/.notdef 83/S 84/.notdef 97/a/b/c 100/.notdef 101/e/f 103/.notdef 104/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r/s/t/u 118/.notdef 121/y 122/.notdef]
+>> endobj
+939 0 obj <<
+/Length1 1061
+/Length2 3972
+/Length3 532
+/Length 4668
+/Filter /FlateDecode
+>>
+stream
+xÚí“y<”mÛlj¸›²¯—²o3cßÙ³„‘}Ÿ c†14²—]d Y*K¨Èv‹É!a²oÙ—ˆÂ;u?÷}÷ÞÏŸïû×óy®ëŸë{Çù;çqœ—
+(8pFº¢0 ðKz, ÿGáëõgʉó!™„I&E
+ƒ7ó÷úK÷GùO†þͤáPÀ" @I…¤÷Ï/»즅c(Œ+ %+8ápNþ Òí!‘,
+šZr´„)¯ zäÌEudÝ;h'êj‡·½^‰zõîÆ ¨ŸÙ”Â>õ™· zÂ`–›vœB®QôB¬`À}j,W:ª ì•°½ sBÉ£d,7úì]n‹‘nR!FY¶â#’æ1Ó|˜Áø‚9_î„âgú„\ë/˘b¥“—©Ê62·æÅΨÁASw@ͬA‰>ü"—C—Œ·(zª…ÒÀC…„Ö+=ËXC{±Ö‘í™çB†e1É,UÞ¾kÖŸjKf ¿^\°å)Ñ蕈õnN½AN´^Ô.¤¨-tó׆ô<§Œ*UÈ#?Üœã,þÀÆVÄ®öe‘zŸÇ®³Ë¸›eØK‚-Áü=Óد÷¬iñXý'~…õÛ Ï9Ð×k»Ú×EÒö=ß:·ÍRŸH ÝjјÒìm;¡*°…Ó
+ *Q|WþË+J3é ÚÝk<¸>òÀEx»Ú¯sýÌÁ+ÚÕé„d…‹ºíl¡#êQagêöZZ¤–Ë %4Ó –‹Ã³ù…“ÙºŽY_?ø
+®[ÌU–N·¯¡.K¶ßuœ4£X
+êúþvCɳ!~‘Ô¾\}I^NW^5=t£AGë¥Ë×N£ÎhfæH8‘Ç sŒKÛ©¨$r4oçLºŒÌo«åñ:½ïÐD©`Ü/Q‘§
+¹Ó#`+p«É⋾.×f‘ å,¯zIÜ.ÞãCæÓ,ôvtýóéœiAWAÜò±Ìðß,ìmÌÞ3ŵNR³J“r(žÌÜW;©þ,f—-Bþlõ£OhùçßÂ{X.4 ³Ä}'‹­7Ù“)¯ÛߊNž
+sŽ.õ#ÎÆ,2-Mr'MÞ‹ŠO+¿”ØJ3 Êe¯Ú0|,Ñd¦¿biÐ\N7Ãnc%ÏqÚ¼S;ñm7ë…½LÍQaUt3¹ÜõΫd%èDãæP½ŒúzÇžÉbN,2:œç&‚Äõè,ÉYjg/u)_Û(‘r&>ëQöÌFÙ8´nô#ª\×nUNmõyÃÓŠ·½göæu)ÚÙbú±]êÝš°£ÆÎw ™ oÌÌ7é­ ðD9£©Wu¾Z—íuC~/é¼x÷b2§š¨¶lŠ®¸XAÞztÍéà;DÝ^ÂúÅÔuN‹Ñâ9ÓUÏ kn*Œ¿IQÇ>]á—B²ìÔ€7)³o×Þ}MuÁ?G)ÖÊ/j­]Ït?‘®ßÄ<›Åe>ÁÏwÇö¥k"QPAmLYŒØ“*¾Ó/|nt_åaµÖ½ÊÚmÔºDßl£§†¾ª[$>’ë|(fÓÛ\×Ò«»óôÖ˜TAAšä
+6mU9‹H’DÆŠ—°³].eœIJybm,¢o]É
+¶ÊáŒ)NWƒŽÓFÓ,ÌÚkP¿» mqk8ùXk7ZDÓ¢©`Âêî3hj`v›WÍ(% }=Úo&IîÐa=Ýg KqANY¸G~úÖ»üÌõLÕ,“¦g;{¿j9©dÉò; •]_Q÷p£…8¾ZÀ:+Où•9…ºß¯gÆH·µvÉCª¼pó; áÞ9g|o¨3,Jz`Oif_‰ ;Å5ùýr®yÞÍv®4Otèp»r0Ñ·E.Wb&–5&–ãµùÕå­Ëè—†è‡U–Oßhĉ.ó¿;3œ0Éé§\ܤ÷=]‚6„ üÑŒ‰‡NƒÝœå@ü]b¢æ[üõ«–L·DÜ. ¨Ó.uº+çÃrõìE9ÏDƒDùÊÜ+e>Êßj#“GX2^»£¥&V2C+Ûi¤—DD ×øSAlã²Gà«h?ÿ’æöta±F¤ú^pz˜\¡á97a)7õ½‡Ï"—j™2wøX$Þ:+{˜íZ§âu7rZ%öGcƒÚ®ë]{Mœír3*×Ò+ê2Bà·ÝùÂ8^†ÃÙ"—ýéà<ìðúkž)~Õ/eÐÍ «ìÌMQ_¹C¡¹û>ëÑE Zp/xß›µ^5vŽ[JÝØ]ZöøèͶÁ##‘DÁ÷¥ôKgù ç'£›OÅîÂŽâÜ* ¸ö7djnU…¶‹¨ -j{ZÇÖô æß…O 3£Œ/¹óó~Šš^qX/C ÷Ø«
+ãù!ÿÇô_ÿ8é„Ãc=p ÿ6±l—endstream
+endobj
+940 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1534 0 R
+/FirstChar 40
+/LastChar 121
+/Widths 1535 0 R
+/BaseFont /KQCRZL+CMCSC10
+/FontDescriptor 938 0 R
+>> endobj
+938 0 obj <<
+/Ascent 514
+/CapHeight 683
+/Descent 0
+/FontName /KQCRZL+CMCSC10
+/ItalicAngle 0
+/StemV 72
+/XHeight 431
+/FontBBox [14 -250 1077 750]
+/Flags 4
+/CharSet (/parenleft/parenright/hyphen/period/S/a/b/c/d/f/h/i/l/n/o/p/r/s/t/u/y)
+/FontFile 939 0 R
+>> endobj
+1535 0 obj
+[436 436 0 0 0 378 319 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611 0 0 0 0 0 0 0 0 0 0 0 0 0 613 580 591 624 0 536 0 613 302 0 0 513 0 613 636 558 0 602 458 591 613 0 0 0 613 ]
+endobj
+1534 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 45/hyphen/period 47/.notdef 83/S 84/.notdef 97/a/b/c/d 101/.notdef 102/f 103/.notdef 104/h/i 106/.notdef 108/l 109/.notdef 110/n/o/p 113/.notdef 114/r/s/t/u 118/.notdef 121/y 122/.notdef]
+>> endobj
+930 0 obj <<
+/Length1 768
+/Length2 1151
+/Length3 532
+/Length 1718
+/Filter /FlateDecode
+>>
+stream
+xÚíRkTSWUJ¤Ä¥ÂÐÖƒÁyAÂSk `EC­b{I.áB’ 7É
+© ®4w2Õ}G”H", ETâ( É”ð+$Kàñ-ø °¶òüCüœ/v¡
+!
+•P ê¯ä…šökG„!‰`•L¥Òp"¾^ï—ÌòWˆQ ¢:ƒ ƒÔD*.Eg0@
+ œàDÜ0…¬@Uø€“"QŒ8«L* È`¥r]è€"yxxóØïÿŒÍF“\éîÀ•ÎÀGÑhTàÁ ¦ü†(ŽÇ0X¡Zx<x>¯ëH†a1ÑЋŠ}Ey1­tŸQWa£òÜ’C7ê5ßåúÇ},»±KBø½) E4Rn®ý‰§£H"?Ø\d%7' (š»ͤ5¿Î˜LŠÇwï1j)ljX%/8òаn$ö’ódßûÓC õ„ÊàG436?5.½Ó;ût_Ìþö +s$ï?Ðà kƒ³aÑCÇÛf&¸hj8Û²vwÞôê9ƒMÃÀ­˜~R®×±Bþ½ß<ÙÅ­Ìžt*½}ߟӘ<½=tù»6˜Š‹³V›¼Íß*‹°î1xWîϤËÝ“öõsN\ò3ÒÔübU`–Óíu-ñäÀsÄ¥gCitG $f­ÿ¶«pÍ—§Få7Ϲ8û4Í]+ˆ@ÙÉ=6?ÏŠ¸ŠU7<ýà_¢þLJý>±,e_Ù:j}sÎÖ¢´³°lJÚ™ñ€pØj’ºí¾Ós
+l¾E—[šâ60Í8ôèf×?rËÂ÷¦¤—Üî¸5&}VýxÙ8ûaŸ'9u ê¼é€XࢮßsmÇWk.×FWÛ¦¦Ý‰#›DÓ´Ÿ¯ÀjìBòÃM¶\‰"Îr¿Èò`Ä7µž‘§Ú¦6òÂÆŽ¾ ë˜ÐCïºðBÛjW2séÐçËŸv[Gì5÷T_ýžÝ[½Üê礓TпÁï‹œº—3Q!õ«‡óažoëÁô £=ͧߵÚÉœ£¦ÖsSÅ2ÆÇ“vhLU‘±þùöú f£ßÊÑ“Ï„úäÚAR›ùxƒ9×ÍûÈ&«@“l˜>­ç‹ ú­$·l·˜à>ÞßümüÕ±3†ºòKSq—ß‘†Þû­HÌ™úvÿYjš,LÉY«óNîpÞkÍé-L#òâ‚Øÿ©Ëä•(­•za¾Æ„—ûœ]þÞ|8Ø⣰¯5-"_ÒÒh=ùqgr¹EÍ-5•BíŸÒ=uŽ§X†³ã²u÷e9uFŸ2hö}Qß8V|ðâÖîâ´vgóãÚ£zž6umÚÕcç.Lgl
+ÿÊBS­±äÏܳ-.w|ƒbT~È1¥æBà†Ž³I­‘›»lŽ{÷>îéoc˽½ûÍ1ÒEýÉeÏ|;-]÷W½ý—¶ïžÆ-¯#•ûŒø0ì¹›‹ÒŽ_Å1ó q;f—‰VÙiÌUEžÎÈŠ:n7A¼woõË»zA´}‚”puä|«Yžømn÷òŽ)µv²¯nض ¾Þ枙㜳ÿ ’×ùJ­|µév»Jçz?8 6•½b›cÑc™ :ýîLg­ iyúLögö=üë™»œ‘ Z ¼{JöñŠ¸Š}ºõÆw¢¹çÈ J…õ©é$.û´}¥Ó™«úJò`Ý õ“–ª-®Ö©©áù–Ã4-ÁÌShçBËM+ÔÛxŽä°_Ö϶
+BRú#6'ßÔßIsð3ZÝc Θ‡÷½­ý"I2ý£Éš5ySg¿¹¬¡‹¯¯åU@zä„[r»²õË׺Žß+Þ¹ÃY8"ª|IóífQ»2g®¼°nŒ§þÁøÿ ± †0*‡°â¿o
+endobj
+931 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1536 0 R
+/FirstChar 60
+/LastChar 62
+/Widths 1537 0 R
+/BaseFont /AJKEND+CMMI8
+/FontDescriptor 929 0 R
+>> endobj
+929 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /AJKEND+CMMI8
+/ItalicAngle -14.04
+/StemV 78
+/XHeight 431
+/FontBBox [-24 -250 1110 750]
+/Flags 4
+/CharSet (/less/greater)
+/FontFile 930 0 R
+>> endobj
+1537 0 obj
+[826 0 826 ]
+endobj
+1536 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 60/less 61/.notdef 62/greater 63/.notdef]
+>> endobj
+900 0 obj <<
+/Length1 802
+/Length2 1817
+/Length3 532
+/Length 2399
+/Filter /FlateDecode
+>>
+stream
+xÚí’y<T{Ç•ˆÉÒfP–c7˜±»”¥]5¸wÌc˜™£1Š4–¢$Õ”Úˆ¬I)r›è†TBLYš­¦‘d+•[z&Ý^ݧûçóüõ¼žóûç|¾ßïïó{ŸÏïèiyù"ÈP(è 1XH,
+k8yø¹YX¦§çĉ,*ÄØHd6
+Yz?ïn£"ýì¡—ÍçQµÆ“OuÞ îº%uÙ} kY :‘¾¬¬·çólBdbû`EYçE6,8ï¦{ ä´Î¿v
+!AÑ}å SïÖ,TEöËçZÎóì)"¸\Κ4,k&öõçÜÙûÎÇKröio¦}M»Êu–ÑÞãšFó,C¢üKøì$d£‡ñ1ÀCM‹ÐðRx†½ìipU‡jÀš–Ö·¼ÂßR*g‡t&Þ²¸­Þ-U/ìÓÌt“Ÿ[qÔ0@³.P‘ªçHø,šº§Öå¿ïK’ý)Ì.7Ī`û3õ[oKßToì"äìÑ/Ù+ê_t…›vóÍÚã’YÒ^Êj'XI’‚qê­~#,‚ÕŒž± nVÖ»&’2]SÛêÏÆ¿°'ù& Î9ÖÈ©/O?lÃbL\Kn¥e~ÚÂ/å÷Tt>ösíåÖzèÚ×(qywò„iQ¢…aUg”ªuY,níàö7E_”ÓVTþØÆÌ ïœ¶àòáÏFÊ•ão¹xŸN
+î‚ìmÓ^é(9ÿC4ÎM³¡%–ÎÛåó
+“Og|Þž|$ Ñ5ŽÔ/t¿½Ãä6I!§3nÍŽZ²¥ÑIEaSzŸÔ%ˆDâ¹á‡² ¦Lj 6î[¤Ø?{|tVÙÎ%÷ǵ¹P»“F»¹ “ê~cêœÞå4XöÁQg¯öÌË»’VGŽ„F*ì­õû¥µ&¦÷Tä°ÏÑ–:•@‰%²zºÏÿ¼‚¶E l[·*LoF
+ú´‹nšm
+Ì­–7r uÜ|¡pe¸iÈÑ º?7²„¯Þ9#;ÿ¤Ñ4l†°iýsͼ¢¾Î¡ä™vŸê=ÏèïÚç/c× [D&1.–5y;À÷òåãI­?Ý?W>d–m°8åÎþ”­IÓ|a7Ù[F8Â+ßpû€wHPéUM¥qè2CÐ}œ\Ž{>-r­rdÝk2±Ì“^aíŸá¾—{ÉÉà…uX'½ë(Ýb ¬¹ÖÍzé¿O'Kß³yÝ-*bŸË•>ýîÄr« ºŠÔ´p¼æð”lj|âéG
+÷L~ŠèaLóh¶^·¢‰½‚'^õ~Ýg3§ÄF#®Â5½´¾½OÎüt\Ž£í¤‘š ‰_-1bëÔŸ“‰Ÿ[¬{(á/gõèÕj9Éæˆú~F¹«j Þ{âËx¡#Nxåz$»5ðÓ`µp8p5^2ûýQç…,YÃ#õ'<]Ðá
+Må
+^å©Ð’]÷Ïvñå×Ø
+Ëð̯HXrFâdŠÂÓYH׋wÎM…Ó.×Ò—æ,Qì>žT¹Qr‡a—›éz_„û¬¼w%­ÉË9?gtåÎPéÖù]‡8Æ9ÍøƳ_ëWvÖ6 ÎÄtïÜ0šÁø‡îÑëÍÍ&žu ¸[.9êÑô¤ïÊ8D÷å°îæ–¦ò(ç*ýl;Ç“mj¨¦ª'9E–ç_}hÕºw¡òK~™¿PÞVŸè½!² ¦ßgîwaÒö™ô=;búîJQÜ^¡G÷»W$mU½¶j¤­zÔeøw cYbìQ~×cÜ>n#>Ew@½bwÓî·ø ¥kÇó´ÇµPœ™^’_Âab€n–ì™Ër Bzò»mÓxýâ‰ö ر¾–ÎmL%×ìƒx‰†©d¼pðAºûàØ:g—vf@8ÊïƒtMrݱâ?Ö%¥¨Ãohå·^Ýæß®?¿*hÅô8]Š/ØÚ0{žèf‚šºžŸëeÿØŸ“4R‘ÁàxQ‘2mìÉ®«â½èÓD¥Ð Ö“1¥w
+˜A8'™T­}ž{„nb‚jÄ.Çü‡ìÿÿ$Hd² :‘ ûçzendstream
+endobj
+901 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1538 0 R
+/FirstChar 102
+/LastChar 116
+/Widths 1539 0 R
+/BaseFont /ULTDZK+CMTI8
+/FontDescriptor 899 0 R
+>> endobj
+899 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /ULTDZK+CMTI8
+/ItalicAngle -14.04
+/StemV 73
+/XHeight 431
+/FontBBox [-35 -250 1190 750]
+/Flags 4
+/CharSet (/f/i/n/o/t)
+/FontFile 900 0 R
+>> endobj
+1539 0 obj
+[329 0 0 329 0 0 0 0 603 549 0 0 0 0 357 ]
+endobj
+1538 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 102/f 103/.notdef 105/i 106/.notdef 110/n/o 112/.notdef 116/t 117/.notdef]
+>> endobj
+891 0 obj <<
+/Length1 1248
+/Length2 5744
+/Length3 532
+/Length 6516
+/Filter /FlateDecode
+>>
+stream
+xÚí”e\Tï¶Çéî”tF`h”é‘v`„™aè”ABJnAJ”PBº‘.@Ê;ÿÿ9G½ç¼¼÷Õýܽßìïz~ÏZ¿½Ö³77‡±’â!DG ‰
+‹ÊTt•ï‹Š
+0F€¡”¯0@ÉÕ`ô׀Ăô‚8“ˆŠ `à!Ä
+'þåIîˆ
+À‡1ÉÀXt@À]}G S ‚qò¿aêß“«{ººêÙÃþJÿÏ>ý‡Âuõý§sóDA
++Á\!
+`DÚû’`N†$þ¢
+Á~#fò@øˆ©‹ø1uÝþ@L!äˆ)äñb:Žú1oëùblxýÞ¿óÓ
+èó7F|¥î#§ãÏË0&Üo[ÙàôçôvQ²¢¿MÝ\ukº½?͉^ðjǯÖÙ•ÎgÚ}ŠW69qõ=È%øÓâé εTëœVˆÙÆBÂàùÎ=Dbª¨ŸÑ*M{=ÅÔ5÷Ùe–<]&&Gw<]î’XtÖ¹ŒÆßZ”¢“ËeSͬ![¯^–CP4L>þ:¡z¿t°AŠîO‰xW¥>Â]0^”=8/PuÊ].-ш½ˆ¡Z¬fÓ…Ò)gdŽE.;sTSÏ{å?UòN°>ö
+(¤ç˳Cêó¾ˆØ½9à&JÝç=6&äl[“õª§9Y¬ ×dCš¨ÉJòà6”Yoyp…Þ&§êÞp‰éÂ% ~ƒœ¦¿8wÊËwy9à.ñàŒSeÔå£ 0šâs,ii|”Õ&)Õhéù9„à,éƒ:pº .àþª¿,Ÿø[UÍ*ëÙùDæ¸t [ØœMFÏ•ýù„29&!¥½¡T~§¨–ý|ÝA¡:.ªwMÈ(³¨Â ôßülÑQ`1É—Ó›*ãÓà:¥z™:~HP”Dí
+w{îßâPa—¥(kx;€Þ†:’£‘¹š­§à3õmù|¥£{øÜ­”ùŽµå'‰/U5jøw”jÜãrÂÓ)öÙ€æGL)q#©½Á¥>é‚a»Ób¾ ;v|ß gš¶k"9ÞßÊ+"òÆ_ÀÕ²Ë8î¼8GM´Vï=#kòf­wØe`±<ëÎÀv· ãs‹Ïþ¹U'a-¼°tzò}ÙÀdt¥§ÁƒJ”èçÑb„[ó™¶oðOXÿ36oþ 󖦬Òü’¸OÛ©<„Ÿ>&v&ŠY_Þs¾ähס›$H +ä5E›
+7oØý ‰Ñ!|ÍaýÍ4rÔ gXjJðæ4—*Cù-~ê£ìyŸ®¬ÏßÙÑâ ãÝdî">py,˜Ì:„5‡ÅV£ÀÈ)¹Tè¬æAÒs¿ï[¾zôÚsU–-þgUžÏ)Z¸q81†ôsz?Â?Y^›žÄû°íî¹]±éÍ·\FÉæ¯ë»‰ Dz8úÁÚB†écãd¥¬¿ozô8*z¿r=¼Sâ É­ý‘mæ:c Òt*®H…â»Úìñ¢“§Š8`Ÿ9:&îQâM¿ûzªJÙl%ÀîÌâXÆ9O>8¡õ,ÃÇ>£ÝŒ?+SÔŽW‰ó-
+[áµ!Å‘ñóšÄÇjüÑ~1ªb Ö¥ŒN»gŒÑs?ýÚŸªRùOÎù_Ñ߀òÇ 
+츧ə"àƒÈ«DUÐÚg]0ìñ@‚áõ£õ)Ê
+qÕN— et˜.GàÕ(I—\⣶+é=j?–¢F;nfI»nóôi.±4ôX•jwdú䎷 ¾±lSEÁÒ½Û< wP.´Gã_ˆžÌ’Úý¼Úåm·f~[ííÒgx Ë7µ%y@¶Ý:
+Ûévâ¾ %£‹2û<$ÿr0uXÝz>ú™ÕUbŽ†|ÚcBóLѶƒ:´
+Öeïãêòwt—^·œR½ ´ÉÖÉM¾–:zZåÊÍêfô”•>Që;¸à¡òˆ!:Úê­`l…®“ó&ò§n1,Ë×:îšÆ¡sÇ`LëÐǪ^M¬ÝŸGÆè¬ßôS}ïýÉoé‹»½ÃÙŸSÂï´Ž?6ßù@:$YƒðšŠbÝ_§ŠÅÉyýÉ-@ùÓÓ×äORÝmKl°kUµ÷ººÐ«O¸ôÄ©ã)O»bƒ¹ŠÒòR™XR¿ ¾­9Ÿ¡îmPP·}bOåBNÀp>4Xúqàâ µ/ÈP¥CÂŽœ®IÙ0K›çìLd5±Ùµ9-)‰¢W§Õ­Œ¶d'X)Œ,Ÿœq:*˜µ,p̱jHÕwƦ£L…ôÉ*~¶&ÊHN‹ênI‚ÍLVÛÏYÜf±ð¼&& ¬Òoð’ÅE}žðr>ª(ÿh°·>Tâ¶En‚²5Y[æfpmxí_*ï-ÂpÓŽ| ¹ß¡,MAbj
+ ,Ýì+!™áËãä^AÙŽn;Åæôö± ‡Šrn Þ©ž¼q÷,’‚y8‰é®2Ê£?”h[³‡ÿC'®›ËûO35ú—ƒûïæn­Ì=þ >ÐÞy¾trX?¯5̵ýu•ÅJ*þE\ÚHêkÛu/‡u&±@
+ÛN#^²”®à㽑RW)ÏôÞx-Jl ™ëNÁoøÅ€™Š^•l¹s(¯5 }7íuæ) _ã@
+òeW^h«Û"4s¡çäÞ9t)¦Ì!Q”ØKÔ)F8×e6ŠÎao«¿•†õ´,jAüÍÇäðX•Ù,]Üɻٚ>Á„'ÍK¯yÆm“œžgî<)ô!+ëR
+ßÕj°ÅF*nõ$˜žÞ¯Òå¿Dïá`3tœ0³39dÚ”»Ó—jžÏ©¼­ uú*ç¸Â…^w¯†0½ÒÅfä9óåT\ n%„{{Ð
+Ïõïú\ŸŸŒˆÒÒWÕ„ÒÔ67ÙhS)â…K¨Œµ€l{rû?ˆ‚—”J-µŸÇQK„ä¿©ÄõØÅ+XVëÚO[M¸%igé|UJÆ ¦½Å?v±5«²²ìÑídF¥é€*o2nËŒ7(…Ð
+±{'£ã€ßñÜ‚Ýê.z†›óF·J*uÒDÔŽLÊ#­ƒRØnž¢3r’Dä•dgIÙ‰×*Z»Ünµ·®²x9S[õ>wI÷= sò ¨
+Bê®9…œEì╈ôσ€ý“8`m½k;{N°ïjD]>.YÉ‹ÚÌ‚­J¨ll”k¢·À˜ûF3z<†²©3¶ãø,fgH–Ïä`ÙO‰ñd›7Œ<JŠ&짚Ǹä»
+endobj
+892 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1540 0 R
+/FirstChar 12
+/LastChar 121
+/Widths 1541 0 R
+/BaseFont /IQXRTT+CMSSBX10
+/FontDescriptor 890 0 R
+>> endobj
+890 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/FontName /IQXRTT+CMSSBX10
+/ItalicAngle 0
+/StemV 136
+/XHeight 458
+/FontBBox [-71 -250 1099 780]
+/Flags 4
+/CharSet (/fi/parenleft/parenright/period/two/C/E/F/H/I/K/R/S/a/b/c/e/f/g/h/i/l/m/n/o/p/r/s/t/u/v/w/x/y)
+/FontFile 891 0 R
+>> endobj
+1541 0 obj
+[586 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 428 428 0 0 0 0 306 0 0 0 550 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 703 0 642 611 0 794 331 0 764 0 0 0 0 0 0 703 611 0 0 0 0 0 0 0 0 0 0 0 0 0 525 561 489 0 511 336 550 561 256 0 0 256 867 561 550 561 0 372 422 404 561 500 744 500 500 ]
+endobj
+1540 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi 13/.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 50/two 51/.notdef 67/C 68/.notdef 69/E/F 71/.notdef 72/H/I 74/.notdef 75/K 76/.notdef 82/R/S 84/.notdef 97/a/b/c 100/.notdef 101/e/f/g/h/i 106/.notdef 108/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y 122/.notdef]
+>> endobj
+887 0 obj <<
+/Length1 816
+/Length2 1119
+/Length3 532
+/Length 1690
+/Filter /FlateDecode
+>>
+stream
+xÚSU ÖuLÉOJuËÏ+Ñ5Ô3´Rðñôs54P0Ô300äRUu.JM,ÉÌÏsI,IµR0´´4RðO.Q02V02°22²20*
+J-Ë,†+2êTð*ÍS00ER¤àœ_PY”™žQ¢ á¬ 2É\¢Ô17µ(391OÁ7±$#5h]rbŽBp~rfjI¥ž‚cNŽBH_±BPjqjQYjŠ—¡¡BJ&ÐI©é™y\ú ç{æ¥å+˜C„SJ `Re©E §)h€}¤©
+¡Ìb·ÌŠÔ”€Ì’ä …´ÄœâT°xj^
+ºÕÀ`[¬áííî¤ |°d@bf^IHeÜXj0ßÁ†JQf…B´(p
+ÆŠE³Ì5/9?%3/]ÁÈÔL!±¨(±’ ˜Ì€<S…jC…̼”Ô
+…Ô
+ ‹õõòòK€Z
+JKjÒò‹¸@Ñi¨ ŸhóÌŒ\ 盀ø&`>¦œò+ªu M À„¡„¨EQš\ZT”šWN@À°‚ñÓ2!›šZ‘šÌuóZ~rÕ¼ IK&›‰Šêj¾;”'ýVÏãÔö5¬m3^l¨û±w[fãFׇ%
+׽ݣö8ÚØÏê“sñ¦…–-7eäÎülº§#™Çïd6ëšÓÅÌÕá·6²¥; jáYêb)¿úB—‡yÚË­ÇW¯\j~ xÅÚƒ¹¯ol=ùðíkÅ'/fsº(®žöAÒµuïì©ý¯Z
+y §K/i^~ˆ-bf쉧
+fæ—ì3”v¾ã –Š92µâõ¼ ›í%Sï'Úï=œ}}%?‹wÝ»¼5‹XT-¿©w¾²\%ælud/ÿŒU <¦|õ¨QŸ«ž¶•[ùan½€òãö_Ž©÷ƒt7M¸<a[f(—srÍœÃ=eé‹tÕÞuJbX‘.­.|âöäË>,%k$9 w‘=²üPÝ‹Þuy«ÞåßVzž× íóçïñ™ÅÞ·,wvfK_Ùwä§ìfÅÏÎ_«í¾Yhõjµ@cêdï{©—^G%íµŒÚ¥ðÁb–t¡:›ç9©É›&8¼Þ,–?oùÄté¼;¯Ååmήš°ûê»
+±^wõMýµ'Òúdý¾Úßd3zº~溰!"ij—n/àÔÚÀ{Û›½òì±`ÅŸg½ÿå6qÍ»§4ÛɯzÙ÷÷ßWÛ7•Û¸1Ÿ
+¸Û­k7cVÓÄË ~ÙS9q@uý´®õ)·b/<U:ãkž7c®Ni²ö©›NòqÏýþÖ”Å\BðëŽý³:<.ß<õúÏ.ùM7™òc_¼8&zTÇ8õ³Îì’E1‰§¢ÏéÕ˜±›¹Ç{ìŸÜ]úý­Á\eMÁú)±åª¿[Ö°Yêø^_ý}ÿâ}µ5u\ylfû6;qn}Öÿ-`ëá#O (\£ ’sR‹Jòs‹²¹
+endobj
+888 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1542 0 R
+/FirstChar 1
+/LastChar 64
+/Widths 1543 0 R
+/BaseFont /PXKKGB+LINE10
+/FontDescriptor 886 0 R
+>> endobj
+886 0 obj <<
+/Ascent 167
+/CapHeight 500
+/Descent 0
+/FontName /PXKKGB+LINE10
+/ItalicAngle 0
+/StemV 40
+/XHeight 0
+/FontBBox [-150 -150 1020 1020]
+/Flags 4
+/CharSet (/a1/a63/a64)
+/FontFile 887 0 R
+>> endobj
+1543 0 obj
+[500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 ]
+endobj
+1542 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 1/a1 2/.notdef 63/a63/a64 65/.notdef]
+>> endobj
+884 0 obj <<
+/Length1 953
+/Length2 1777
+/Length3 532
+/Length 2393
+/Filter /FlateDecode
+>>
+stream
+xÚíRy8”{Ž,™²”£Bê-Ù·™1cšieYÒŒ"!cæeÞÌ¢1‰$)!{Ö6KÉv¤¤r‘Œ6É:!YÊ0SÚ¬§s_Ë×ùóûþú®o溞ë½ïßý<÷ó{~Æz¢)…é Z2l„!Øâ­ x[ @Âᘆž’Ø“aNbƒ8
+È.h¼)Gç"<ø‹!{všïÂý‡I'¿&MšqÅþtã2cù¯;Ûñ–'Wi¸åbÄ=ýÑ »,pÕxŒÆÙ×;ô¡}{…vJ¾*GûšqdVKz|¤(W±»}HèqŒÞœ*S¡LXœ“Òtô‘_üÇX¨ä+I¦DòU­¢¤N¹E¡,ìxP¸üí:^GîÁûm'&ˆeÎg$kxlU»4§0Î;Á½hq¿~ΪWùïZêi¼LäØH`Â¥¥Ö'²œ5‰«[å•6‘Gtƒöд9%à Lù«qɇí;djeˬ÷ÎÊœG öót{[]]\ÈŠM›‰¥ TwÛØe&Øç%$«g+:ÿ¡™S…¾JuiÖÑ6°4‡mZ²9«L#úöÚQå3Ÿ÷”\6–µ›»
+endobj
+885 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1544 0 R
+/FirstChar 24
+/LastChar 119
+/Widths 1545 0 R
+/BaseFont /IWEZXX+LCIRCLE10
+/FontDescriptor 883 0 R
+>> endobj
+883 0 obj <<
+/Ascent 0
+/CapHeight 0
+/Descent 0
+/FontName /IWEZXX+LCIRCLE10
+/ItalicAngle 0
+/StemV 40
+/XHeight 0
+/FontBBox [-2000 -2000 2040 2040]
+/Flags 4
+/CharSet (/a24/a25/a26/a27/a100/a105/a110/a113/a114/a119)
+/FontFile 884 0 R
+>> endobj
+1545 0 obj
+[2800 2800 2800 2800 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 1000 0 0 0 0 1500 0 0 200 300 0 0 0 0 800 ]
+endobj
+1544 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 24/a24/a25/a26/a27 28/.notdef 100/a100 101/.notdef 105/a105 106/.notdef 110/a110 111/.notdef 113/a113/a114 115/.notdef 119/a119 120/.notdef]
+>> endobj
+872 0 obj <<
+/Length1 798
+/Length2 1006
+/Length3 532
+/Length 1578
+/Filter /FlateDecode
+>>
+stream
+xÚíRiTW[#¬‚"
+¢‹,I&c€ª@ 1P‘Et˜y$ÉL˜ HÊ"­u£J«R©¢QÔPŠ nEä¸!. Ö(.ˆ¢bE=¢í
+óø<>÷àê½¾º‹ûFðG½8]|¿edÕ⊌<Oå/´•3»:vÞ*Ï>a™pib æñõ8ºlÒ†àõ1ÝßÓ—gì^üU¦èg^s¨¥ve֖ѯßï8‘¸è›í«nY»ÿLßÞ¶ÎÎ¥¥ÛnÅiÓ|üžw¤îXïõ&s'Ù&§iVâ–¢‘£ –ZC{cŸµí¨•ùQ²‡Ò¬—dgdDí6=BK¢ì.oͽ;öÇGplg6V5Z³»njf¡¥~š¾´ÚmúEÚO®Ö¾z>KÈ©Ø7ëæÈñË{P³ÖOŒ^ÒEß!Ïùyóßɼ¸ÙÑ_=ÜÁîåUË çð\Î6>Ñô# L±Ctc[ÕóØñ’¹µK£ÁvOçòµä¬>Ïs¶þžîÇ7ûGúݯw¾&æܹiÈ{r.úY¡‘É¢0½IëÕ¯>(ÇJgÏ;$°èå-¼}$Ó[{è¹gºÄmÓ‘#Ó–'ÖÕæ’›â¥}†|þE<+\çö"áªb’Ù]HlCîgÕ&žG‡¿¾Nf³Qw]i6Ïùlök™µ?¬cÙTðqS›üIé{¡fLÕ}›‘ô=cu<ã^A‹|·õßû²Ð[ÞQ¨¥/G·—tÊOîÛpG¸¼ûޒ¾{£Ä÷©Ï°/ VŒù² ów{ k¸0Ù¥ÉýþØñ])“œo×—Þ“ÆI’Ô4¨§dÇx/±Óþ2‡ÇÝn*<¼gO`º.¥¸$ÅÁux›#ÒcQ_[!óÈWtí,×j=K{¿Éì¾ÜX»Ô—Úm˜ÞcqÐÁÎF¶§&¹ÎxØâÖG©üDñgHç™ë&z¼š´_7©ºÌdl¶]_”akñÑçuúÞ»í{Ÿ½öàôCáöƒ=‹d œÛØù17¦Ø=(KH|p•<pBÂÎed¨ÊÊÒôñNLƒ£’G´œ“³.·µ(MRÄWttnû¡;^7eÔkÓWõwŸ\܉û>?zþXýäøÃ^‰¢mS¥ªôÂá‡Á>v`‹(ùà>ël+µ!dÊ´º§©¿\ È›™gYÔ÷D|É~˜Oôjë¡h¸ÿ ÓÇs~Ĥ•¬Ï¬úmõrë¶jÝ—+cŒ­çVÚ¯’Ú—XL®¼u¥Æ#¶>}æ¢Ô™×Ø$›MhèÒ×[Öí6>Ò­ Irâ^yntnáO«çÕï’Oœ¿¥W¼ãSiuCb{]Cͼ0Ãœk–dWL°Ê«’¿ïÃ}{îx4»”šñº¬x¼#ŸÞìlH<šßUùÎM:£çÔº<«³ ò˜RC×™ê_æ4½83¦s‡‘Yx´ãŠe…~Ë[ õ…ùÁ´à>Üÿ þ˜¢4C©P:û;Yp]endstream
+endobj
+873 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1546 0 R
+/FirstChar 102
+/LastChar 110
+/Widths 1547 0 R
+/BaseFont /GDKJHY+CMSY8
+/FontDescriptor 871 0 R
+>> endobj
+871 0 obj <<
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/FontName /GDKJHY+CMSY8
+/ItalicAngle -14.035
+/StemV 89
+/XHeight 431
+/FontBBox [-30 -955 1185 779]
+/Flags 4
+/CharSet (/braceleft/braceright/backslash)
+/FontFile 872 0 R
+>> endobj
+1547 0 obj
+[531 531 0 0 0 0 0 0 531 ]
+endobj
+1546 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 102/braceleft/braceright 104/.notdef 110/backslash 111/.notdef]
+>> endobj
+853 0 obj <<
+/Length1 872
+/Length2 1334
+/Length3 532
+/Length 1941
+/Filter /FlateDecode
+>>
+stream
+xÚíT{8Ty×C©¹þ$˜ÌÅ̘†"×uo¢\6ÑqæÌ8̜љC&÷”6«ë¦ZZeI*-ë¡…·-$¼ÕˆW‘²ÂÓEÑöÆ;´=íÚ?ß÷¯÷yÏïŸóý|>ßÏïó|¿ç9f&\+Gž8qc„B·Î>þÁ@§ÐHffÎ8¨sÄÐ9:pŒ
+CðˆD¤ð€!!ðÃ(BH)ÀQ(~3à‡H<áQHt:à¡0Š‘¨3<0¾°?Á¼˜èÏT,‚K¡ÀZEH  ˆÈcB)à!|ÕW¬¸ Q$ùo„škî#úB¢û™!ý†D¨Pú‡@,ŠŽ!øˆyŽÍ•"Ÿ²ù <4F4—õ !
+;b!L
+ÁúD 74áqQŽ
+Z¾Å÷HðVfÀÝy:¹¥×ª˜)±›>pŒ.w—‰rŸ™¾ò;ÚŒ¤ìÔV¯ÑmN³ŒØž8½›0eU»YûL;ÕkʶkÿôTžï¤S8z¢–ö>¤ÿüOÀB ±£Hÿ«˜ Lendstream
+endobj
+854 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1548 0 R
+/FirstChar 0
+/LastChar 110
+/Widths 1549 0 R
+/BaseFont /JOQCNL+CMSY9
+/FontDescriptor 852 0 R
+>> endobj
+852 0 obj <<
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/FontName /JOQCNL+CMSY9
+/ItalicAngle -14.035
+/StemV 87
+/XHeight 431
+/FontBBox [-30 -958 1146 777]
+/Flags 4
+/CharSet (/minus/braceleft/braceright/angbracketleft/angbracketright/backslash)
+/FontFile 853 0 R
+>> endobj
+1549 0 obj
+[799 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 514 514 400 400 0 0 0 0 514 ]
+endobj
+1548 0 obj <<
+/Type /Encoding
+/Differences [ 0 /minus 1/.notdef 102/braceleft/braceright/angbracketleft/angbracketright 106/.notdef 110/backslash 111/.notdef]
+>> endobj
+835 0 obj <<
+/Length1 757
+/Length2 1014
+/Length3 532
+/Length 1568
+/Filter /FlateDecode
+>>
+stream
+xÚí’iTW†¡JÔ¸îX{Q£B¶•€x € ‘­†ÌM˜ÌÀdÐD@Qâ‚AqÁD­GT7Eª—‚ ¦ÅZ¬
+X °Oõgû«§3óã~÷{ï{Ÿyïe[Ùº#D4ô"pÊ–gÇs~ å<.àÙq¹L6Ûƒ„
+%pO ]O °>‰°w
+DC9Š39LÞ¸Œ
+@̱à Š^èdR€Œ ™çÊ£¹8Ñiœ“(czÌ/ÿF($TI¶ö|`+p¤Í싽SÊß„ÒD’„85xaèL>Ö2”ÎB”2Ò¹šØ=6­YTp÷„‰µ±P^šá_RQedZÃNcìØMQ‚µî¬ømñ>ó1ÏLž}³ê…rËåäÀ[^/Ö%däÜ7<[¹âÙ¾Õ-Ä/÷ù©Ûâ§õ¤u˜^ºpï•ÞÉxI®¶h×ò#Õû»®w
+°ò þeX³¥‘6|å9m®Æ™/öÚ‡-Û´áìLË¥¬œ„¢ÍŽ›¯bíÊúøNÚšØMÃËlšº‰Ë‰fo †Ì2Dt¯ùÃÔ€¡†ò´ôfm¦7Æ­ðVVϤȰa圉µ î÷wi˜Û#fX:6øT°Œ7»õMêëæqçR”o²—y†ÕM,<¥Òâ}„KD¾­Wo·æ|áò«fGõmABØ”`qýÐœŠA€Uó¼Wä¦7¾¤ø“¡k¾ßg8öýémaáGõ#•gðëTïGùC“æ‡mt÷ûæ?¾Yzhsl`L]¸™éÖË•N^—•9÷žè'˜§[.ôŒ)óWéQÑï¦Ï¿ÖïÖ®tþvª¨ò÷âÕ¯Wo^íu:êß·¬1}Iz^:Ö·~áxN,ž½ª}ãjK—§´ÂaèÚµ{æ„|e^sÐÆÐv:¬íÉOîÜe­H]Þ–×5ïʦ^Ta}ä½Åá°ˆ«ö!û×vZ½8WñºçÅ)íÁŵþ“Jb5÷š¦†pÍCf˜UcÖ:Ú;M¡œ1óyé,£‹¿`¼43C´wPƒ~>HO:ÄŠk8´EtøTD˘§†{—ò­óÙ¡êõ)ÉåY™ò¬ããÇ?©>ëzº4êú¢±ìá:œ_Ê÷^LžœëÛѳ䊭BóúÑá3>õ#yÜø~zVTZÓbÓâíסüÀ 5rePͶÀÍ+ó·næYdTe“ûãt¾wf\5’ñ0ç‘ò’þdDîdmîÙ¨î[z«Ø鮧ŽðItJ«,¾¼-ÌíhS[ÍL‰ºêR}-«oÈÐŽt™é:gÎù‚zª˜]2ï®ëöü ¸û $:J|,ªHüÂfø^‡Š¸„ÖLï"EØôݺ˜Õ£V”ñÏäŒ^ÄzÖþÓþ·ëK« …ÞaX=:#.'ïFŸv]°B4cµÝšþ˜éóû[J}“^æÍ|òS¾Ÿp’‡_Ýî›y©Žå5!/z›ÀÚ ç nxÛ^Ù2e®wõi¼³¢Õ9[F?Ö¥*foЀÚ8“ cVùÏŠa©çÛÃã‚Ë;æ°ß‰~ÙÝZÿB#Ïï|FˆdÛ
+'¶N@Ö4ƶ”¹|Ý™©šXö¶¸ûøÜd–Ï{ £ôÍÃW²ªHW‘3;r–Gû¯Ó«õã‚´CjY‘7GÃÛäºSW…Z_¸»µyê–ú$l»€ûæÿÿ )%$E($dóOçXV®endstream
+endobj
+836 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1550 0 R
+/FirstChar 110
+/LastChar 110
+/Widths 1551 0 R
+/BaseFont /XBJQRW+CMBSY10
+/FontDescriptor 834 0 R
+>> endobj
+834 0 obj <<
+/Ascent 750
+/CapHeight 686
+/Descent -194
+/FontName /XBJQRW+CMBSY10
+/ItalicAngle -14.035
+/StemV 85
+/XHeight 444
+/FontBBox [-27 -940 1332 825]
+/Flags 4
+/CharSet (/backslash)
+/FontFile 835 0 R
+>> endobj
+1551 0 obj
+[575 ]
+endobj
+1550 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 110/backslash 111/.notdef]
+>> endobj
+831 0 obj <<
+/Length1 791
+/Length2 1369
+/Length3 532
+/Length 1948
+/Filter /FlateDecode
+>>
+stream
+xÚíR{<Tën+»Œn.•‰ê6“ÌÌ"£™9ˆ†Ü&4”¢˜f­a1³Öü–ř٣ì.¤—n¢Ž£¨¤$ím•ê¥T(5²CåRé‚n{Ñî×ïØžý×þõýó½Ïû|ïû¬ç}­ÌDvn0¾ñÄ1ÒbB<°X(ô†Ø€º³Ù4+«Å"&QˆI„ .—|âdÀÞ°xŽ<G'šXŒ+TE›ÅŒa’p“#*c@(&£9UC"–.ARÅn2X6ü",Cb"™40*!ÁZ$Åh¬aMÞ˜N_`8Nñ5±”(`3"“(‘0ŽÉT
+Jùu‚~ù±
+ ?jIËÞÆìïJ_~µ|ú}ÑÍøŸrô/ôšÎ}‘‚̽_HKo-l\dbÓZ¡<é;3íJQ`Ƽ§º=‚Ë›6ôÔŸþû»¶¸þåÛ#«LéçºI)+z§inßãnýŽÉó^ûÓZÍyúi¥‘N>¶ŒµúÞ“ô$/­çX5§Ít8:à õhT³NN~gb8å‘!ÝpãôÞ¾†ètˇ&~2üììS±öjæ±ä»œG[´ófM†üBŽÓ‰Ží]ÖÙ‘ª¬eMÚ<_e;i륟Z"ëÚ[=Ô^7ß½)#~ÆcxÃ…;5cæpKÌœ~UÌ¥sËÂç ‚‘ì É"RÇ2·ì¬|þnÍ+5O%Œy¶µS^˜p;?)0£ßÜ°+=Oc–ݲ.¥dŒµ¬dq .*qÖãkŸéŸ¾7<ýÏÃÞ¹.ôŽ{Y1 ùS® [yE Büj­ëNY¥éô$ºž»uY[IX¥NgYõÎYÍûrŸÅÿrU Ù‘¥õœ’qÃ(ܯlhGt©`bêëÞäFÿÙµ?^;“ÚìÕÇyW13©3}Eu"ä“Äþ?Úÿ ü%
+Hdˆ˜ q¹˜ˆ¡ýR\±endstream
+endobj
+832 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1552 0 R
+/FirstChar 34
+/LastChar 62
+/Widths 1553 0 R
+/BaseFont /GSQUOL+CMMI10
+/FontDescriptor 830 0 R
+>> endobj
+830 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /GSQUOL+CMMI10
+/ItalicAngle -14.04
+/StemV 72
+/XHeight 431
+/FontBBox [-32 -250 1048 750]
+/Flags 4
+/CharSet (/epsilon/less/greater)
+/FontFile 831 0 R
+>> endobj
+1553 0 obj
+[466 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 778 0 778 ]
+endobj
+1552 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 34/epsilon 35/.notdef 60/less 61/.notdef 62/greater 63/.notdef]
+>> endobj
+816 0 obj <<
+/Length1 793
+/Length2 1576
+/Length3 532
+/Length 2148
+/Filter /FlateDecode
+>>
+stream
+xÚíRk<Tû&‰&•Ë¶+’E”ûÌÈÈ512§#ÝŒ™…•™Yc. r)B"׉”„²Ñ>•»””è¦è˜™J¨hGLÃØ$[{ètö>íç|:¿³Ö—õ¼ïóþÏzÞ×PÏs§9–
+‚®0ƒcŽ¶@Û8¢·· €¶@! q,Ì`† ™Úh[[4€å–(
+™ì„)ȉ´
+ñ@ª'Ä¡„
+L…²}ÀXd‹‰-† a€h4
+š—%<Ë’§•=Øfò¢z÷ÌÅCŠCº³ÚìÔë‡H\?ËÌÍ … D]ÕÞ=^@Œ|ÃÔŸJ¯¼V/”¾ÃÈ{t¿è¨Èõ;ß^8vG\ìiäâ=¬Ô§'wkOxí­Ó‰Ö›w»Ð|’Voؤ祚V‘b•Ü¡š›½¸¿+!ö`²r£i¯¾ÎUŸ)U>—3w@> 'ô¿ìŽ{ôk{§¿þæUÍY Ùº(Û~Ì\i²¨«þÎH_â-ÞÎ8w6îg†ÿ{lñ ¸ÔsUF‹Ÿ‹Wck—oü1æy«Í,tÁ-ô”wD48ÈɹҠöòĆG_ZOù5z!¤mjØ%÷·Æ7O¢!é“8S÷ë¤r³¸“ÇêgrÍO3O¢ÉŽeéÄ©ú1¿âœÅR„&¾Óžô´Ð9›+”ðâWÇõÃä/¸;NÙ¾u#Rýh ž¾i¥Pdáj>¶:[…šú™igñ׊äßÒ=«}jújÀº<š9'a8ôfu ÙU¾ÊDUcûøR/®T{*U‘Ø—/-þ2™íê˜KøŒ}3fð©j\£ãaœÐ Œ{"‘_,4UÒœå‡= èZ×0 £1Á_¥DynIp¨½Û•œŽ¸ê›ív’ØöVE„v‹ù™X;'¿äœ–‰–ŽðãÞ´ðõïr J:ì·"êvzµÜ B¦ÚŠ$µkó†;­¶¦®Ë•‹ÙAÊ9%i¨p›‰é V 6ðXÚZÄï:²^º§¹¼ªÍkU11mÇèø&»"?£6ÆØ ªÿv1Ù¾ºŠ~¡Úþƒá ³ÃFm]H\ª»—JeS›OK2·5j”Æþ #Óë^û^Úˆ­Ù›úqØaÇ“ Y•¿HwŠŸ(4…±4Ó–ÇÅŽj"‚nTÛÔø¾ÖîúÍÆ6©mSºÝOk ÆÏñ÷þ–¤€—Ðóò«I¾ýÓ~ê8¨ÒÖS:.ürê9ß×DùCÏ¡’è(•×3±Í•ÉeŠ’ñ(ÍO¢è¥ûZ:RT ºŠr–¿ ~fý긋æãšx§
+†äÖÝÛ“ç]J§ÝšÌô­Nx£ðc¢iÎÐxÐçoè+,Ý4ݨÎ,b³ôõåµ(ï!Awè䑆ŋ¨#w¶Ç,]YhtŸ×|5ñSeþ¾_SNü¡¸zæS·V›°CÔ|{ñxÒ…÷[.öõ îNšv +Û¯Ò(Çe¼“ˆ=Ù÷z÷fáÂôì DÊ&”¯9š‚[FµwßZX¢6{­;^ͽI²¬
+C”GÏ¿ï¹SbÑRÚ|’¯½ú@LEM žïAâÃÀàéÛ½—»䨻ÙOõõžDD[ÞF›‡2‡H§J­ô/c:kžëiþpûX_0ÆÒ½h§´Eç˜ß27ƒv-Ý7©#A1¥ÎìUY.ëFºCóT{,ý7VŒ¨t ¶ž¹ß“tjå!“…JëÖ†M ¤*•¢ÑXûäoñƒÓ»ÄWõæ¥G[¶[róܪªx^?S]Ù5hŸp{ÿîÐYþvÜP¦ú†{¬ ¯–surk®âOÔ··pžšG áˆ/ñû–íW>ËWñ<{W1Õ¸²³ü8uW ÜôKÍ”Wn›E'µ.‰ÃœŠ?²/Ùµh$j_0Œ%›ãŒæ^âîcÀÿ9Hé×öBÒ$陜çÚúÆß\ô¶O§û‹Óšm•øó‘©¡.-‹DM×0Ô||$–öϺ´g&çYší:KNºÞyâéUéoŸ#H¹È¡léƒ:߶N/S=ãŃ™‚û#5òö_‹‰­{šÁ^½+;ëjÎÒ”¬cÓ¢(ÕµGÔâm2Ãü1uƒ‚KwÎ f³4ÒZjXÊ!cèìµ7HNkU6•ðî¯ÌŸŠÊ×/š¢[Vö.ër~¿N¬¼opvÝòpƒGõré&gš[k^š¤)ÞÅ©?‹óRx;I?¥C/òCÆ$®vOéì¾ é—Çé o.Ë¡>W¾;Ø(<Š<0ÇÏÏ”Y¼ÞÚÒ RéCèFý‡âÿÿHfq`:™Šø{"„Êendstream
+endobj
+817 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1554 0 R
+/FirstChar 97
+/LastChar 116
+/Widths 1555 0 R
+/BaseFont /MZMUEC+CMTT8
+/FontDescriptor 815 0 R
+>> endobj
+815 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /MZMUEC+CMTT8
+/ItalicAngle 0
+/StemV 76
+/XHeight 431
+/FontBBox [-5 -232 545 699]
+/Flags 4
+/CharSet (/a/f/l/o/t)
+/FontFile 816 0 R
+>> endobj
+1555 0 obj
+[531 0 0 0 0 531 0 0 0 0 0 531 0 0 531 0 0 0 0 531 ]
+endobj
+1554 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 97/a 98/.notdef 102/f 103/.notdef 108/l 109/.notdef 111/o 112/.notdef 116/t 117/.notdef]
+>> endobj
+802 0 obj <<
+/Length1 1129
+/Length2 4726
+/Length3 532
+/Length 5460
+/Filter /FlateDecode
+>>
+stream
+xÚíSg8\m»%ZŒÞ¢% Ñ£AÑK-˜˜Á0 c0jô-Ñ¢D%z‰Þ{Þ#ˆ.ˆQÎä}¿/É÷žŸçü:×ÙûÏ^뾟õ¬»lN6}â)Tá€
+¹Øÿ3ª†Ãa–
+Öp(Pøo
+æ¬CC!:0”¥ Ð
+ w†þÅC ÿ4mÛ_„jë<Ôºõ×4ÿ
+é€a(wÇ_¢?sÿ ßÛ$ 4a±ï¿¿žüã*eKæ€]q ‰»°{Eâ@Oæ
+Y!\¿ Q,sý#C (äŒíÇ/,ŽÅPW¨Ãoë ú^Å%B°?ŒH`)üB·±wèÿBؽÿFØ,!ðO@¬›? Vö‚°å:ü±Õ"þ€X)Ç? V
+ùÄñwÿ}›hOI €¶£X! ¤¸°÷$Zº ±#Cýõ£bwòßØ
+†Ý`( µLO ,em_Uçû(g ðá*Z׼ЪlþÐ@0õžÛ«îÄ·PaxZ˜LC¾F°ÆêvÆìü¼ÞKw@eÏÏéEâøÅš«ÅZ²Ç{fÃdM÷UGöã€-Šºê±¯Ûâ¸Ú£ }ùqFÙ©_:·2uxî|&šcÃi1q­jI ”4TI†? ªàeÓ£LtÊ ™w£Œ‹ÁŸ
+ð± ¹úîÖì>¢Þ…ú4ëjFì…éѻ޺ô3xÛþF‰ÈØ–Å…÷'µøò¢K=Å( iÔعó§XÓ­1ròbÇæPef¦nÕ’…—ý³á`1óaÇsáöC—)…ÈyeU^Œnå·%^¡þ·ýÏ'(ùÖw/ ªmOX¹³ý¯å÷N
+?¢…­ +‚nò”î1È®P½¾Ëí„Q+h95‡xFªPÁ”Ý8dò›”ibÔµ!¹w6q· ØÏqÌP>¸Šv6/♼GŽ
+÷Âl'¸E¢î3át¡ÏÔWDKp¸¹¬zÑ©Àÿxžßn?5êËPÍDçàÃÍW5¢BIsàЀ•GYÜrW›{;(oÏŠøçl|¾áÚ £Ê“§7Á¾•šòƒS¢ªœnµª|šG·Ð‰EÊöH±®
+} n¶pЋ“múe¼Ý;ÿVÌõàÊÍË„Í?ðDݯ€?Zºñ×â©9éyF²ÜzWi¸ÄV׺ÿÙ®›`Ý€á¬ôÃ×;W¤£ D1Èövÿ„õ÷¾{ç ¾í¤7[§Q¯?fN¢[Ð.ƒ­Æ_¹¶ÛfþžlôÐXáÔÑ|\?^Ød:{áÞwo}ᬹzP<BSI«ãÕõ;cm·ÄŠqð,ÔwCCöRæÊïsN“Uá2q„t¥èö›üØç0¹ž= @ØŸáy´ã¦ð1Ïá¬<°40<¢‰.ÈËXÕ™çèÅ™%]$Á¥¡f`Å3¸ zi:–i3T¹è¬(À³(t–°–*pÑ{åÀnµÐD's":“v‹[Š-î›.ÔM°D'MÇ»‘íÇZäòéÏf§¹ç}Y_WÞ
+‡©SËä°L®sÅPªPI¯±û~?äØç;Ì V  3Rß:ÓÖ´Š1j^ç?I’ãÑŽë³N47Öêi7¹’šÚ–UgÔYU‹Ÿ)¹yU‡¢önz:1Fûáâ[Vží,¥}ûïMËè«t¾VpJM1{§¶']zÇ14SO‘÷&5ÂyÎìøBŸ¸Ããƒc8}‰›p'\çdd«_0Ó°ŒÂ
+7Ë¡ƒ½ö$g±¡RODéžG~•3TmKsF;õ )F¹ݶNi¨ŽƒñÅ¥ßÌ×7[|ûïAÖ2š"³éyç¬ex_ ùå¼!øÌ“ŒœøÄÔ¸žHV¯MŒ2e$¾¬•¸]lC#Z;j9P>É-
+6M Íí²y÷
+?Òóø‚)´>(†Úñpø&¥ugI}Ål£OŠÉÙQ®dÎÃÍ®|‰Aiþw(”jm…긫’Ñ-n÷Yb¹ä{]P¢íAŸ"›m¡ÑÚv°KEiÁ¯ç˜àŠAÙ®©4š@6¤5|¨.aû¹­Ý$Ÿ@k™¬ÎÄ šÁ
+B¹øm»n9¾ß­›÷ã8ð¹Ò¥ð + 3êë´WLOC³tªúì±ÛYу
+ËJŸ ™¥ðgÊ©L®,§z"úOgÛ÷ìˆD#«õË;Wz) ¿ÄÉ´"´s Š²ÉÞÈxÛ ™Ùù^Ç.2çàÈ¢4^ãª1[—˜{­¯°8šÿ®•Â‰BÑ'©2J? *‡vKPÞTæÛBaQü:eíQ7 y0_:ºâ*ë[© ¡VLî’j„Ïá÷ï×\{9¢Ù¡Ðk¹Æ$¼»=Bí—v›Š’gë•iíüŠBkü(n/@[ŒsON÷€&œ°RÕà¥o[|õpî`Ç4¿méF5sXB’þƒÓV¶ªøqªá* ßî ƒéÞt1O æÂFþ ›é˜‰¥¨i‡þ;Q÷i@ç‡
+u5¦è;þˆÓ¼Å{-A¢ÅWs[¢ P¬´ë‡¦üO{Ì*ñ
+%yÅ\ÄÆC‡“¦­)4d48ü¡røÙAy-ýBâ}IŽŠ×Zb‘´¥Õ±ÞvIqKq†
+sÉ<ú+ZÏ©æ:ÌSÕVÃ7'='}EãÄÑ7 x©•ÏTš•©ø6w./#6YÚNuEÚËŽ†kOʤ3Îpúæ9K^|ØÞ©qFÚ§É'=‘ï¹"x¤L™½Ü,å•!á´Æ.t‰ïýãä¡ý—‘VP”N{cÀø- Ào€Ay'PÈ“¡Ää ¹w`5z&U; UÆÍ3ë5]í5¯fž
+endobj
+803 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1556 0 R
+/FirstChar 40
+/LastChar 116
+/Widths 1557 0 R
+/BaseFont /UORTUN+CMR7
+/FontDescriptor 801 0 R
+>> endobj
+801 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /UORTUN+CMR7
+/ItalicAngle 0
+/StemV 79
+/XHeight 431
+/FontBBox [-27 -250 1122 750]
+/Flags 4
+/CharSet (/parenleft/parenright/period/zero/one/two/three/four/five/six/seven/eight/nine/A/S/a/c/f/h/i/n/o/p/r/t)
+/FontFile 802 0 R
+>> endobj
+1557 0 obj
+[446 446 0 0 0 0 323 0 569 569 569 569 569 569 569 569 569 569 0 0 0 0 0 0 0 843 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 631 0 0 0 0 0 0 0 0 0 0 0 0 0 569 0 508 0 0 354 0 631 323 0 0 0 0 631 569 631 0 446 0 446 ]
+endobj
+1556 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 48/zero/one/two/three/four/five/six/seven/eight/nine 58/.notdef 65/A 66/.notdef 83/S 84/.notdef 97/a 98/.notdef 99/c 100/.notdef 102/f 103/.notdef 104/h/i 106/.notdef 110/n/o/p 113/.notdef 114/r 115/.notdef 116/t 117/.notdef]
+>> endobj
+798 0 obj <<
+/Length1 1443
+/Length2 10599
+/Length3 532
+/Length 11468
+/Filter /FlateDecode
+>>
+stream
+xÚí¶UTœÍ¶°‹»»Ó¸K7î\‚ÜÝ]×à.ÁÝ ,8w'Xp·ÀÏúöÞ+ù×¾<çêŒÓÝýÌšoͧfUõh
+e513Gs)G7 + ¡¨. d
+üïè$sØLííÿD¸
+§ž"ÎÖ®Ñuؽ” #¥˜îÓ?ÍÓ‹ðŽŒÉª1áË\(ßË*´ƒ¯±Ts‘#‹'Ñj€|PÚ†‚G=ýž§ïóC‹ÛÞ±t¨‹Ï7ä,9þ™eÊNkc¤åuÊKÆÅqŇ穈b‹–' RXvIEÔùïH>¼îßGï=­¯ÉEz¾¹´¯{&Ï¢ApÑ3âÃ@q9èd-U,"õs2ª†ì~(¡MR½V'ùj¦Ú3§ÈaL˜—5UA[ò Ã:¨ŒY`Æ‹ + ÿJ
+ÑO†¢ér˜FýyG—¥{<=03nø9}=5\ÒÏ©²Vó×:µâ·â¯³[úÀ@ ©ê¤rm7)Àì*?˜ 餃շºIö…T!—'ãûfTÓܼ‰ “Êù#ÕX½~ŠžâbÉÉ„T¯ëÆìÈRT_®ÞC›õŒ
+“/ó
+¬fÆ´-FF÷T¢sSmJÈZ,Û³z `sxK0(Ó|¤ÌR/€¨žn¥á]ì¸Q©º€NøªÁ(ö.Ý´.‡`+~CiM6Û ‡Û¿g²ÜÜ­ ~}׈TË.+b¡÷i ÷A”v’ñ“åï…y‡Ì§L'‰9kU¦óV%âͱ¥hN<]½ŠÒ°o_H#,–˜ H½W1,cŒ¿.„Ò †IyÄKœs)8_9ã'E&”B~×/G¥’žƒSø!X¶¹FÞGºnXÁÝxG½6¿Ï{òShè2¨…o¦éîC¢¶ Î.EF×T[~º’ÒÝom{¿#
+Ñ£ŸN3T£§Wª>d«þ¸åAßç“MµíNͤtŒÜÂyPV7~dA¬Œ©pR RФ»%èQ°7– ŸLALá£ùSu{”©£úØ͸„ ™?c–=V fc­%CNd¨/[õŽÈŸ-I5„V"îåï
+w+ÔG·ÚæäLŸ\?*" v…•¾ÖÆÅUt! º€•ï ;îÏcƒ¹œ/Gwቲ~ˆ÷cÙ‡Ý\ 1«·¢ß+2Œ(-NhïýÈ9?!~ ¿”Åi¡—cŒ`LߎŠ§“ôäV&Iž½Áái+z÷:|8Õù–]ëÏé¡Zƒ:ÚÐâY•¯à€´ÇÓ=æóǵp^cÆccê1F¦oqU¾J´?)Oh¿.3Zã6ò©œÀFÊ&¨ÿ •8ÎnÈ+\÷‡$6§C>ZƽíÁ´D]í{µŠ¸=ø1ÍÝ›ÜEu£Ïôk¬Têº[eß}“DÁyp•¸A┽ÏÛÞR{#Æ™P“áV’ŸJ9fðÍû¡§Yý¹ÜT t¼
+‡ô0&n{r³Ùy{æøÒ ·x®8©ï8¬ ´ÛU¬¼QË´ðŒGZxO¨æɹÒÛ™ë*á?f/Ò)*¢gË£•òYP4u Û?zãGôK—”
+ •šFKÓ£ÒÁ>y’ Óö6÷ÁR„œú:S?íÜgê¬ÁfD ¿ßu2=á¡ê8Ì;bÉ©ÏømÉ·'@:ß)K*åSÃXæTœƒ¾Ãa]+ÙLÃP´Ô ´_:Â’¡>N¾ÛšÁ!]{ô‹hšA¸n‹§¡òC¼®²ëÃ~`2[Ïdß&'nÅÓžˆÈ‘—aºô4L-'ܦ¿§¾Œ÷åcÚ~CÒYËf™c‡² Í»ÙÂŜ㞀78µ‘vEIJïÞp›I‹Qõÿ`‚]Ãk•žS&“ààÏæ×S®p‹±¶éN2Ï2¬Š’'°ÒÍÎvÔ«ãŠp³ûǨ£!¬è}“ñ®3¬ìf ÀøV(lé"7îS»`õô,Ûyº^ë`vÿÌŒqÁ(:5kUM¯¢3ÂdEiópYÚû¹QO
+®[6sªÖyêÀ&f¡°ruo³€:îØiØosòÈ~‰ÎŽÖe×;r8\ôÍð›vø…÷£°õâˆJ
+¦øÉ:¼“»é'`ì)]ÈYŸ~ÅNºYžrU,#JåÆv¾ž'/¹×¡½®ÚfS½Y8Æë_
+·TV˽—ÞøÙs¤ÿH[ä
+춓úL ƒÔª@F§}àÞÐ,qbNÛs¢ˆáVd“Ô“=›ù¥…ü"Nb®ª¹Kœç¸öžÎ«Ib);ù%^'UŒCÇSΙ'5Àšº¸Úý*³o°2Y>‘¦0dˆáv<Ü·.¾FG*2Ýb1¾•/¹ì},¥à[Ô`ÑIblqjjÍèCfÎ5¤ö%è„£cü‘•š˜·äKy=¶T¯KE¤m—ÏN þ7–-¬Í0_Vúó
+‰7‚Ç\­>»^]¹|E‚Þ·! €Íúþ±wÆK<ŒƒrÞé乘æ3“pñÖxÓמ¹A\N­Öd÷ÐÙ1P’vªÂço¡Í.=ŸØºÇ 1ûNW†Ò›Ÿ×É¢w›‹79éö×QÒÇykCƘ÷ °Ýão•›ä$JÁ‹h¬<ê]]#–F¨ƒ*W?=G²_ªj@
+"@íÇó´GyÖÍä—¢;˜g<põåªwØ-¢(ÚMd„Ðl_Ê*a\ŸÔ ÄÁÑO÷O •ß}åd¾/¡§ÓnÎoÿÝÝ’Œ×© 8ÑŒ–wsØ~/‚K×dÒA“¤¨OCW!Ùi|Sçq—Wu%Uh›º-YsíL*Ë y_!”ž/fZüjÀ:pÏòžiLptg«Å¹±<i“±VfÕ§BBÙ ›ài?ääÇŽ|ElôîWyy
+Uiñ‹ËØí1^e)QQ5kv}óCåj-±g³W£…P’¨MÄÊ 2xók~Þ@O8Þ‹º‰áš—@âõ½•a°unøÂ+ÁF†½ŠP(ÈÒP-ÞÛΛ'®
+L×3 ÌjÊG™?¢B¶äßw»p ÷
+tüe;0V”å›ÚËlNaR‡…F"ù9A
+6ùEÏtèÅ~@? Ì—ã¸ÏlÌÃV:¨dD¿™©ôÅf8p¼;©Ûû
+sÉÎ\rãtssÎËF¼k6¥•¼ä0r‹â¶ð•–íð‰–ˆà%\ß Önþ²h lÊ©ÁaFÿÒ£qâ†ð0xÁ¤>aü‹æ‹Ä­ ýûšâ‰Îþ `S‡µñ‡>wÜÚ_»=5‡›ž'b¾ùkb‘¢jÐ0\©0‡[KÏ#vÐ"Å_nÎ 5¬‚)ÕV˜ ]±Èî”OÇ%ê DÞ1…Í£¦%_Ýn @ëãaqði•²ø\aœIú»àÌD]å˜#·+V Ýæ Q1:+74KPÂú‘•[X*ñ$6z7ê1rÞPû2{š&#4±¤oXŽ"â‹DÃÂÃ#x4£~«7ˆû…ò“÷bô7c±üÐs¬ÈŠªn†O!‘_cuÈ* ÿ¸:2FÆ +s˜.ÑǧæjlMc„<sÞ1m&Xo¹>‘ÿÎÜOM:VFâüa‰Ÿs¸a¡:Ñ? ÓñóFûJÍîfŒ÷W“§sÙŠU¦#¡ïý"‘¸ºcU£éØ«¼âа¯ÔyÂò ö嚬a ø®ÂõÒñãû"Uà~T´MSÆØz?¤|JÃfGKbtJ¨LÔ¬ma„éá¿ î…",C;R¦è
+#X!¦dಉힴ*bah¼û¦XÉÛÓ˜–dš™«—ª©÷ƒ¼Ÿ§º†B¥Q}tÃô|HÃÍ\·)Ã?¡Ü¦^è*qîîÉ‚ÀîËõtÞ$¶Ø¼4lâàÀé——›õص—FÞæIG‹¡6¯‹Ä•‹ãè"ªÅdEÓø)S²ÀƒM¤ò­Vû¹ˆ°êv­à,ùnt}ÇÙ'bƒ‚<}{q}æ*ƒbT@ϯ´LBþ¹»ÝãFú˵°Š˜Åò…tæ \Ë­Äw1w‚ot±+Ìš ~<ZBeLjƒè²íïµÍ”^´E“žÝ:¥«˜
+k#A*±ÛÏ«Ÿ6”B?~MϬÔ_½uôP© ²VWxþ4¿â(¶ócRø—ó5%µW| l«}c®©±»‡^B™Ó´+l1ÊâLű–°š&°­8pQC0·|É'#%1iø8ÉìÓïöáÔæ=9<ÌË“Ÿ·Yg.Úu&Ðð3ï/S^}F¬¶á×6Ÿ2tÍR›jäDÃä#êëËâ2IiÍÑTa.įÆÚûlxr‚e’…‰+¯ä öÈ4œYÛïæ#f\±#”u³ÜŠ*£y³â²aÛ܆#aÐS“¢iý¶rg™?Ï›*³É;”p8 iÈx-;sé –Gµ6ø‹ù¨ú#[fio]~  Ôtˆè¼œb]­²-‘ˆ¢Ðçr{-iäS¶ÍžÛ&Ì:h7dò—ù®ùÀçÎF†°ëv‡vm-5~Ç‹‹}5Gª‘¥$©Nt‰ÌÆQµ¼2°è0›ÑnM'’Ý5©eßGÇæÎÏ©ýâ:º($óݺ6’÷!€6ËÜ©#Däµôâ
+@§PÖþ¬l8ââäݦšÑZðÀBÜñnd‡¾þrÏCM£´;´*øLë˜̺±÷ WŸÃ`TÚ{Ã0 ¨µ?DÞÆÀN/oJ—.,&æjð±å“¡ÐyÞžo¬ü‚¥Ûèç«ãŒ‰.ͳª#ê›AEJ+Hì2+ùù'|²^I2” ä™Ëë‘uó¡·õŒ¯1œÌ%»¿Ü>Y2Ó*‡«Ïï®Éc¾ßhլ͞g‰ØT•ë©ÖEBkèfº¸ÜSZ–âi÷Ä8^Ýmñ‚³&
+Ö»äÙ{ÝìÙÑ:êÒ
+ˆ±£óyü#fp“y
+g<ÝÇÝ´´ÍneÎ!Õ¸ E§e¬YŽÓÍ“]¬Y°ŠJŠ:Ä…Kçx)Íj°Ð2nrÀZ!FúÞ¦ÕÜ)£fÜå{ÙïÙÛˆÇ?͉Cv…Ç1ÏðHQ&îtàM·M¡â%*H ‚=éT‡äêñy®Ò ¼ù˜«Ó?ߢ†£÷ͽ>:j­‡t Uô"¸É¸Û∑dc»˜wK¦qÔ¥däÈÓƒC”'Ýxu5Í©1žƒfZ~=¼+>Søn's0Ü2¦ŸGUc†NˆBG5¸aNðgôÉ`±AÍ…ö˜Nk¤~†¬ë÷õLM_V ïCãˆ|
+=*úĸ{¼üŒ Hpâ }€¤…•…þMU …”2ÌcWg‡wJPëV9)PrC [vKÕ€!TâUÞRh“ÌTqý\>bÄ™A¢UEçÉG$'ÎÐSV‚~à}bkgµE‡RyOŠ&}Ši¦b ËE^_þ®Û0¤ÈB…ˆwh¹Ó¤ÎKxëIå™ÒÝ[ÆxÚñEªŠËf</èwá­gxw,QH
+^ù¹ûYWó¾s¬‡ñâVü^pà/¢Ý„lL‚§eŠóo”ó?+DjýÒÁÃÚ®2—Ýdq¿{
+‡Æp1¹¸ùS¤ýÇ:a>åÂÜZ܉ýÈváꟊI¡¾O„Ô”
+iŠ×tÃû'̘~
+·RÙ̉,T5€4°öàY«žëN;Maf™ u¥ÜZñ݊÷õ0²±Mî›ös›Ï<‡Ÿ`ܲ9Ì„Š/w>ü²à,šÐ~Ðød:7«[,¤~•n 1맃 ë½eiXÒG9(LdÊô.ŽÔ,ÑE`ë7ýýïĺl÷5zÒdÎá´ÿ®¦Ð¯¾‹Ï4"­‘`KÝ…®FL„f>q²Ïx¿VÃü ¬;¥£ëÚwzå2žUuè0®€ ¸´£Ó¥o¦ò÷lK…ó±W÷¢2Pê³·ü!Ì•eòù“h'ñ4zëqÕM†éÐMÙ@íø míRÑÁÒŽ¤E] Í"‘ßž{_J‡Q¿Ê÷cmUg
+ùéNËC(ªé,`ÃÈBx(bê.ª=JÏEŸLãçv•™äŸ\å“¡›¿Œçíw¡cAhÅÆ¥Äî®­N8P]X>•9Ó¨¤áö ÇK6xÛÏÍ2ð$W ô… Xžî賂ˆá¾ $ j@îîöcBëêªj›Eõ½Ñ­t ;§k'.ômI)P9^I”Y‰“}Æø­Ò×^l¹ <Õ]Ü_þÆÔÅiq®<7·êÙ¨êG“rÃ/½Ã©g§† Q˜£k7‡b½¦ÇWG³éêijµòhvVˆÒvù”ŒüÚJöýÇø¡öË37_èÛrÜk . /Éxø¡Sz”?¨mwÇ¿Ж³Wßf£®ÜkwN©O0zäSz\q×ð
+ÞÍΆr¾8´úM‰ì ƒ.¢7’Ä0:É9ÖÇÄRWdjÔëWêÐàF3`íÅ8ßLH‹a´1£M–iƒ¬E(N·ò¢{ÀÄa¥ýÓ —^T_‘¬Icѡ쇌è“Åþ½‘™2}ò\Å8®ÚF9_R»S·–Æx R(“…ˆ Òó,R7ÒϬr<œ.阽”PÅTá„*é7’§R0hÆm%TÃòãàálÙj¥uOnµ5CJý‘œº]?uÚ¢ÇCÙõ‰ù‘ï/wƒ0 æ‰T
+yÞ.1P~%¡.Ʊ¿$”ˆÂü úѧ8Q
+¸¥ƒ¬šÀª‚GçU$ØŽú0;ñ‰ì0&·{õ8¸¶¤yü<}7}ìdìÇÓôjó}ÁrúýSt`›ž(ôÚx+XÓp'±¿m™¾$KÛ•¢ù“ÞË…
+D¾ò%#Ž èM6ÝO0å]·¡iHﵨB°îÕÝ¢‚f’>QÓkNûSôð„zw“`g¿t&+®,¸pÔR*îñãM×㻎ˆ}î
+ _Lâ¸=éU7ä[•Úé_ÆÑ'pM@R¡Ý0ÌrhÍfƒ õ0²‘}Pþ2ÙVŠ9“‡üƒ»$x2ç„3J¶ßg®‡6©£VÌEøº[@rýÁ¯yèòÒ¨Râ$õ9¯Y½Ê©ä8>2 ÿ.b.©€7²I…wgˆÒ žË˜gg “æ«ÍLÂÜÚOuÎßq;‹NzÒ"¯ü(u{8ˆy³ÛÇHN#î\%W!Ò<û8ãZÔÐbÅz¤>ͱsŒ hŒ´yˆíÊ÷rûè>ëñIƒES¡¨Žž‡Êæì0;Ò"ñÌÐTgáVmýg.ì0cËmKÏD
+µ³sQÚŠpDœ ³ÅXëgñ¼eH&mì‡SÚ)
+JŸÚjˆQH`˜E5 P'‘»{…hßÒEšzêÈ%o¿+½e³iãß'Ñ$c 8@/*oËÙdESΓ‰,ÏU]ê'§D¤IU=ru±8 þX~٣ˀ.YÆuJ3“ä4\ª~Àøó¶_h0¥
+^ñ#ý-~u–K/®'dÏ ÊhHUM= ìšA°*šÜS¹¬ûÆ î•ç°ŽqÀùé–aÃWÏʉ¿ócÀ7—ÌaÐx/Vi±ñ2‰Ä%AF„;ʦÀwíá%Ó˜º>jƒ;DÓ\ÈD0.NÉ: ­Çc©hJSu÷
+p~²ER‡×ž
+È-ƒî<cÏäŠO~e~ñJÂcU…Ž~£ûDkc‹±cÁÍÏqG´:w™¶—r³ìŠßéq»ÝBåÎà]NçžäšÓþMaÒñÎqÒ÷t-úHZúYŒM1“V ~·¡ô£’ž!vL%ÜNŠ¡Vó5Ê£X~dÔ‰<ÖòŠ+Þ$ð÷B”2üÎFŠ"ûÿÃÒÿ?Áÿ'&0µ37vqs´7v±Eú?§¦¨endstream
+endobj
+799 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1558 0 R
+/FirstChar 12
+/LastChar 121
+/Widths 1559 0 R
+/BaseFont /PIHNNL+CMTI10
+/FontDescriptor 797 0 R
+>> endobj
+797 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /PIHNNL+CMTI10
+/ItalicAngle -14.04
+/StemV 68
+/XHeight 431
+/FontBBox [-163 -250 1146 969]
+/Flags 4
+/CharSet (/fi/fl/quoteright/parenleft/parenright/comma/hyphen/period/two/C/E/G/I/K/L/M/P/R/S/T/U/V/X/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y)
+/FontFile 798 0 R
+>> endobj
+1559 0 obj
+[562 588 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 307 409 409 0 0 307 358 307 0 0 0 511 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 716 0 678 0 774 0 386 0 769 627 897 0 0 678 0 729 562 716 743 743 0 743 0 0 0 0 0 0 0 0 511 460 460 511 460 307 460 511 307 0 460 256 818 562 511 511 0 422 409 332 537 460 664 464 486 ]
+endobj
+1558 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi/fl 14/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period 47/.notdef 50/two 51/.notdef 67/C 68/.notdef 69/E 70/.notdef 71/G 72/.notdef 73/I 74/.notdef 75/K/L/M 78/.notdef 80/P 81/.notdef 82/R/S/T/U/V 87/.notdef 88/X 89/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y 122/.notdef]
+>> endobj
+454 0 obj <<
+/Length1 1857
+/Length2 11255
+/Length3 532
+/Length 12303
+/Filter /FlateDecode
+>>
+stream
+xÚí—UXœËÖ !w ¤qw'¸»,@i\w·àÁ]‚»»»»»CÂôÞçü'Ùg.g®æà‚wÕúV½U«º> "SQg5µ5JÙ‚˜Ø˜ÙøâŠl¬
+h%a7±zý<Œ|ŠÚ9ccvnSMÉ+IK>tx.tpXÄMn_ ÿÜàÖá»Ä"çõ”o;[dwÄ­ ½=øT ô²èÊbÊÕâ-- Ïo/£¢õé˶„’–žíƒR‘¶N¿‡ ‘“gâs¤ î-p9Ê-.zàw`NËÍåêiíŒ×>#Ëà¶ÙÉ—¢žg¦ÐpY•‹Üù˜×›Û7
+Hœj²Ÿùñ^áÏQJúô• öê8‘æÿ²hûH…4L#)߆ðeP>&Ý?ßÌ!1XíDÞÀ}#裋2®AÐyæãW—ÀË›WÞýº®jÁ5h
+§t—"è«3$ÿ¨(7Øê𱽿?®mj 0ØF+#Ú©0´uTºW@ý
+î% ;/îæºê¼`«™^zØ…OXÚm€òÉß>Kžš2îCëž›—Å`Ó:¦£Òi¼8|D*sa¶¢<ÕáôL8K|šu%ƒáËÞ·Ôa5üé>jIÓ~fÔ&I!^m;†5å3óöW
+?VË5¢ê}]4jlS‰™qžÝìÓ{JžòA
+x™ ‘äÛr4
+NŸÀÃi3ñÉ ³¥é‚ÐdªDêEç™­Ž¼B˜U ,fRÓªŠ§.ÿ³ÌAòÐ|yqkΔëQ½Ö£ê'beN6º¸§Xv˜øج4Ïø¦©êd jÑÁ¶˜­CæЮðëí[l˜©šä*lŽºð©MFÙ•"ø¥'\[~F8å€{ÿ{b_Œ}OŠtZ2müé¨RæZW.>ÂegùnQ‰NºnËBÇq3«k¬…ø©ÔïU¾WŸÇêŸðÁÔGùÖ>ôÚ=Î5p§?'o½¨VPÄ÷+÷J©Ö^V¢ˆ¦ÄFC}5¯h¾xpZ–â“&~;"CQ)åêaö#r¹-Ì"cÿxy¥×ˆ!_Î2á³ð`á<›ê´YîqG·Ú®VÅ&·Yƒ\pZ¨6íý¾‡ ¤¡Û(tN?<ço|y½´]¢kÔioÛ£'k(¨À ,]Ä}Wöäw=“˜Æ.ö]ï]¿ú–Ö¬“½wÓtÄno ò§ýƒdi}•l¾7ö×’ðv½†n*˜·Á%–¤Ù’óŒnFreÏöØŽžRÏy­Ô¹ íRYÍ1ù¹ÚµwÍøÞŽùmå+ñ-jBbè«Ã0ñˆC߇òÄÁö‹Û÷ãÜ$5_³ã¹TŸ×=g;iØb`lo†Ô’pa…e¡Yo•µ–nB%i³ö¤‚ me¨ÚÈFË¿uµ¾Ú€âî¬ «=‰ô¹¶´¾»NÛúP“aŸD!´é,ægÉPò~Çv€à9O
+ØH“î;ÌG2 Œß°Zq“—h±;`» Òõ`T¼ÜZgZ¥Ôµ Â-|”‰½(º87ËìÓÞÅt¨2¦Ù‹LË Ô©õ°¬^¥ãÊìlÞÇ–¬I&µ[>Ê¥¢è¤¢R±GAãŽð#+ûÄÐbÜFö
+ö„=
+ž¡ŠÞWªZtÄé}ïicc}µ›E\hèwÞÏ ¢f¯0­´óÞáI>NÖ0©NØx&JXìÃe)ÄZ{+­ül^ÐÄÕohA s¬†ËF€ËSü8Û1z÷ˆNOëX7«Ö‰}E·kûÊ,ËÉÎZ?3Š+U³?Ù¢^(¬_¯n¹¼†S•½qý°¼å©>§¢VQó3‡Zê`g¨ÞÛ¨öBÝÓ ÓßMhAŸ™÷´ÚcJàIfæ…ÕÜ ž_ú‘L-‡Ðj»¯X å=Iž¦Œ­UöÍ,¨Qж\+Ê”ƒØ¶ý†÷Ýrk-?{ó7°•ðæºpwåz'úGo½™>Áq-Ÿ©8¹_^Kë„αb]åâMçØ™¿³CH„ÍSe`ÁVpó6ê¿ T%éZcô±mA=ŪeSOþô…ÛÜ Ä•üÇxÕÛÕÝH³¡žÊw#Bú:ÿ´®Å̸Ž•rõæDa3§"eeM
+C¤)¿ökî¾!TY—¯ì\6ÁúQ$í­?Áa‘Ïô³–~iÙ IÖNSØ I]ÌêdÜÿòXg~¥C!Ÿ«Ic>Bw6f%¿Nÿ5ÇÞå$ñë^LºÐÒ¾§?Ê÷©r½9ug.c Ãwo~mŒbÑœWñ%Ç鑳W:âë¯ríE¼ó VSóh÷å*óB›cB =À«rŸÊ†š¡^h¾wynTi˜,¿XR²¶Íƒ_è¤ï-¿‘Ô+»¡¶z-!Û¬åéÎ4g`±*.ßr4GþÖ¦Ö2GH –Š¯?‡ê9'‘®øaþÄZ¾‡«cÎY ŸwêŒÏ©GÍ!p}u|¶¬‹‹rLònÄâ<»Sa`‰’ëtjZºàÇ¢ VÒ§SEäQiçôç¸)9ÁK áÀ¥†%ò¬aôôBO/Ð:SÒ™=
+ÚÁO$¼<ÛT\¨Š|
+t”ëùœûòf÷uc
+:ufmÙ¤jš:8˜Î|¼$Räijíä‹uÑ:? F-ÏG'Âë¥Ò-O° eŸúGؽ9š6FdÔ—o‡c·íˆØù’òÃ2¦Õ3Ã"ñ ­³Á}ßaCmvÚÌ–"à ãÓ0¶*%šì¨-'ØΊ?DM½°ýI¹í4£¸5µÔÆÚÜ°5+síç}‡:Ô±'j…—ÜìI¥¾jÉcåŒu&5ÿ”ç@m{xEHýrÛý[}ñ®4£“Sà)â«/®VfKÌc}HÁð-!4XQknQ”édÓêCÁ÷‡o–NØm•ëØS×Ƹrù‚¸÷ÊñFGvYu_Z÷ª
+¥M@þÍaO/| ü|þSöé >¾uêY6›Š8ë¥ØvˆÖå¢<Â÷9½Ç«g
+ ÷HÁF±ûZ3‚Œª!)ÊöÖ¾žÊ) Ÿ:—íÖʳ;)"ù›/1Z£28dr¿Ú n™#]M5$Cã4ØQâ.OΙƆàqø¯ñÓp6lëùæ7ñycA£±egåߨˆ©ôðÐçFÅ%F¨’Ôa¦•ÐZ'ºÞ¯ gÉÌ÷µË¦ÔUÛ¾À0¨æ ê.® ÿ–"aL“BUÂQ‡ÁN`Ïþ%*ÌîÖÑ—]rÃkÅ‹ß“ÓÌÓ„VàÔ‘1BÒjaKÀ¸!S@rЫg—ôHv
+XÝfù™-{Aÿš¥ó€€ì¼G¾ÎFwƒâ€9D˜JÔ* øˆÚþi­E*ú"@VŸ’tÊÜ@€²é齿œÊÚÀ©¡Óñ^Ñ$ñÐœ¨4ú÷I­zl¨R¸ËA0ŸÚ»´®žw~åXæn™ø˜ûjÎÈû
+Ù•)ú"UM‘œ~,Ρ~¿Fîc¦¤¡©ïžâš#tVUkg»l„Û÷Aò@—æÚw¤ˆJ磻î!‹Ÿû(.,ÔI¸ÚSÏSûî{Xá‹ð‘ö¼ÆT¹ßl‡S… û£f q›ë
+ì…gབ ¾rsëÞ‘`úz1Ž†ý:*w¥·mï½Zv­d:£€—ÄÉ:_<«èÙ ›ÑíQeG5»v;´šÇ{¿Z²#b¯=SÕÚ±´Ü
+”ü(ÑÙÒïö<B¤j‚Çð®4(±aÍÀ¤˜Î Fô1¤Ãdh¨<oF?
+
+É啺açú˜ÐEwlQ5½U2µ(¹b¶ÓÅ®Ä/9(Ö $¸Ú³„¢àc³ããìHK¤ «c)Ûìhçâ¿N»…|Üû9²lòC—Y`é•Aròù+l‘ªRBTç=úAŠ¤oËìcÆš!²„2ª¡\ü)µ_E‚E—ls=0/rRZ¸Èý¬$&aTð?T¾Aà^^ŒÔÄÇHŠ ´FP€Ã6ˆ¤ƒJl[ðÚ¡H2y£¸”ÕkžvÑ;Ý?Üÿ¡m­x)Ü/âÖ0,µè óWµ9k´ÆF#m©ø¶Ø{KÌÜ,-µ9>ºxµ\W_"á;¢Øp]*œ ¤¢î_ WøQ`p‰z‰±*=ç/…¤ÐÀ=,~àŠò½ÀÆžhœü
+Úg ^¬Š)q·îÉ<þ†W ²=Òí¯2W&÷hRf·_ãœÁn»Ð 3â^Çõ•,î3ab½J ÛÀ¼Ç;Ú·<‘R<ÜoöOCö~bP³n¸ìDz>ߌÒ&/K Z¥Üßгžê;Ê–Ù¹Ó&mwa·ŸkmÁy™—èÙIeƒæéw¢[ËL äN3Õóþ»ªb¿Õ¦@ 7H—Î`F‘ßIF°% ƒíeØró#{‘¬u‹D@Š<³#(P¾=2’-`JzkÍmÚX?¬ùX55éíÎk!Pj•â
+fݦÌgõûÇ)‘Ç$¢tô<§_O2~TZ^»ÞîÙjí×#—ùÌݸ¸27³žœQ©U…œYLñÊûJ…òfÔï·šŸïJϵˆc±Bã…P²»œ›Hã²ÇÒÔÒ=ŠŠö‚xãÀ›6|X[Œ]躺KŽÜøç@7­lä´TdoTy
+묵`³\¢è­/ƒw7µ|;íªSÅ@ªe8Öö—Ìûž€`:NC V!k™ -.¢H‡„ÇðÆ^¬cê3ØÙòé6 &h°Úk)Á÷ ac~[O€¾»Sþûpè ˆ0:¡”ƺk¶ú¶Ž –KŸþ#`N…sBðä^C§ÖEÙ˜}”vÌ¤Ó ¿ßšE‰oIèõ ÇGgÊr{ÔßH¢&„ø r·Š$
+Ä°Ùj¢FþnÎR–Ô)#[£}«Un[ñ§–œÒ\,¦çJŸz-+
+£êÛ‚d·…اÅ:ß·d¨Ô§â³R¸–B0z51Ƭð·ø†»’$¾ƒE\C ±»¦d଀¹ÄEÑ·cFˆË»")Aè¡ÓëÇh9,®.€À›5¾;IÍÍ!S× Vü¥)Çór¯¹²ÏÃù¥’¬ˆ !Ëãïíyoäçîøu¶ü*I¿ôÁ=9ÍXÛø¨°»'¹VˆfÈ}­zm+ ’å©Ø?žNN˜efä:b
+C³Å—‹š›KØfpÕõèË ü@:ÛÉ÷ïZÏ]W‚•¬ÓÊÚ\Aƒ©/”ÕÍh§Ðe“NŒXìÚ
+5÷àÄ;¦E`’ì$bÇtÕk
+I¸*Ì•ßy·Y#г-øfK“/`œtm+mÀNàôR9ôœBûvÆ ns5´å·­£.…‚ QóØc¡qîv·ƒð2¹¡aæñ·¬k
+éøÙó$ZøîQ,t0‘‰QÁV
+ˆ×úãæ ÷9ÐW5©{d¬$ÃA\ñ×—5oVF%Ðä ̽29¥O§žn,?f¿ Ì^…¨Iú ¼sKê{^s‘ç†é¬õÅÄøÆ@\ºò’àYB¼GÁöüidƒ}¾€~˜ÓÓ-YÅ#sã6UnÝôEÞev_»‡tŸƒã¦»‰ïcÕÀ. åd*?ôC2/v•uU±ìîè-Ãß+¸*MµûýfTPÀ$úËìÔF¢Õ¸ÈCŒ¤ æ<Tq|Î%³9J:ë"Y{'Ÿ'¼Öºí™qÍ´yE^¥‚¼ìÃÐ÷{+ûZ_àÕ´‚ú©1Qθ޵ïàæç¿%ÆŒh;é u±=ÛÁ
+IJÄ)¤à†Ý¬o±´<fU|ªˆž,#@×ÌÒ6 l”S2ƒšÌôñáWº‚::Zc¦ºxÌxe:˜Aºuìªq2êNý+-Ùæ%Yö›¦_gÇüêÓ†&YòJoM¸šÖþ¦ë=:úýˆA•µ” t›¦»[$WøØ\ª'7"Iÿþr£”Y³»>fw ”ä3ÔÙ¶/ µˆccœºí]
+ýø\Ìۮů¥jâ°•W7ŽÑ᡽À™Ž¨Ä–¢kÛmg$rDÇ·«ö¹q2z}?¡7ÚNoa8¦š^UE™™•L0ÞÄJ䆿A9‡e
+Cÿ!2~è\q”`±âÙy†MUÉŒ„µÎèù ËÌfezÜÔ/ZêJ_ŸÕSîÙ˜{ ž‹*=Ñ—5õ&Ëš3¸<í^¾e†Úü)ñº“ab Ö9ÓdŽñyÂn&×òÊHÖå•ÐXÊÑ%3"¶¡ðêÜÀÛ‚çÆë—{†ùÁw-{Äð64)~4Ý|‚¸ØûÙ‚a¯J8gÓ·:»ˆð
+_i¡E‰DÒ“¦×užôÙo{Þ¤0¾œlÁøÅ=9ß$èŸNÒ¨0$VÍé¼òz\ûŒïEÑч¹öåÂuäÀ(r@(Ñ“‰šüšRdYj±÷ˆ._}5°8]$®§{gžõ•£ª[¶S¼j ÑÄËl;¼OBëØ506ì–èûÐ5Ó:_–Ò5 ›’ÆÁš–Ç༶ô$xD9eã¯Ù&bÎxìuGÙ¯w¿kS®Õýìa0jÒ"L:±¦ùòýºÁ;y\¸|^2™ô»´A¿Õ0ɇå
+ÿoÁNÎY£³äù!„í—j•îÝ Öö±ÙÔÃ|l瀩7è'JáßE“é_}C
+ÃSך¸÷%E<sÞX\ړ󡈥GçôŒ%Ó9ßgÁâ´ªXôˆáÙ8Ûf±lŒ˜·ˆ²y®Á3‘ô>ìxv7KÕOVÃO-+B¸Œ±a•› HþIÚÏ%ŠÑДò)P‘BhG÷mC* iѧ,/ºÔô âˆõ¯×ã] /̉yg6<ü>ë²-4ðQ¾:úÑ“j¾‰Z«‚s€G¸Üw‹zoŸÚ÷Ú†Œælçó;ÈëÊà µòÏ–;YAͪ›ÌC9³ÜŸqAЮþy“_mÄç&mß‘Y›”4ßót¼9tiŽ…>¸×KÎÊîyô¾Älλ
+á¢3×Ñs FÎÜ4ùÒÃu6É’"àçþù ` ¡gÎ25¦@Y`ðø7kÕÑ趢¯é¨oÿˆhwGÓM©eùì¾lƒê¥î•Æó .Ö@˜ê×âQÞy ö´…ÛñU5lÃÂjP¯¢£¾G°o×-ý
+}˜Æ1ø:™*,6¤MF­Ý ñ±Õ¼J½ÒèÆ<œd.­Øã´cžë¼2, 8Qh¶|ê©6’Šêkª§•_×7‘´¦Ô¬×Zé 1òA»‰‚‡¬Z0 ^†d¨ ™áVâÛråýqgQïFkJ—Nø§laΕŗqÚËœÊN°¼x¯2á m~¹·. \¹Gi¸±Ïºo“oŽ)Ξ7
+kè×êg_¸•Œ38ñ-Çý Œ\ëõûq㮂
+GƒÆTºL€ü"Šß&‚8
+Õ÷‘<Üé~þSÐĸq÷~ˆÊ¹êE¬m»ðçýéë¡yƒª[˜¨¥«¢ Ù¦W£Œö£•H:­iûŠCŸ×‡…R`aL”±¹§?È :-(÷[8jvÖÄP§H~ÉZÁ ~‡N|P‹óyW?âZ²XˆW |NŸ[¶ÛvSh¨þõÂõ³NAo¶\»í<*9\@I´)d'âÀo¢¥Áþ¦œ—ž>¯B]c; C—8 ZßZâ󳋪;tò+–h¾&?›‰´Ž%K%µQ ’;çn±ÕðZpFæ>ç_ˆ^d³&±¦'Ïä³Ä·¦õõförÑ‚&m\ñý|.f*ýŒL¦$^Öñ0EÃ=«9ŒÁ¾6lSwZ¼ÝÀp%ñ ®—ßZ×ÔJâsJyMÎNn–™w­h4™Mh¹v䧷ü£#¿’äNCÊ~`£I“xÙø\&…áŽüdÂЪ»fžÎµÃ\¹e~aXÄêží¯‚Ž¥óyk‡$¾$vÌò­w¼Ü6†«ö`åæJ_ï„tK¥‹Ñ
+ÝÑ]ŸéÉÂu§&1hºþæ+ݔɻÙ»l‚ çϵïPº(¼$“ÇE¾‘D6æŠWш‡rô+ŠË Ïð|â\c/Ì°ÑOtŒ³_€;Dn¬6IûLZÂôUy7>æ½'5N/;Œî+.d7ðyÕ´)k_ªK öÿ¯}ßÓ”·Lå·¦ˆ^ý„þ„ä>õoÒ`T6‘eµš›Ñp±ÏçºU6hKö7ïé¥Æ0d6ø>{²®’¢—Ô Å,ßW € -þsÈþB~*b”®`npW}/0NªþÑ£°<Xý„Q»ÜË#aw9n(ÕGB‰øvðÝÒ”+kN·ÆHŜҀ0Ã5Áò4·™í4Y˜æt ¹·WUƒ¡÷»@!0Í­µ~K§MõY¡ÎšÙŠ?BœJâžî‡>dÐó3oþà ,òOÜDóMû^ ‚õ‘Þ«Ks—“ 
+d¥¬®’r™ˆe´àg5lÕ1f¤F’‘î• ¾QÐøÖêÇÛlØݘ½«‰›W½< º{g®Mœ!ϧj¨<IÄŽðs5ÙÈJù"Èæ×Fß;2ßlÚðúžó=Ž‘wcH!ó““ûNy톋 w¢ÏXê%R|üˆËUÀtâˆ_r«š¼—Jñ‚EÚ<¬áÄxKŸáméÏç­T^òú>?ùÚLG—=b3¤Ã} «Ö VÃñWµçdõÏe;F':É"©÷¤rí*µØÉLß,ècòJàZðH$µô–.¶wh¹oµ*I¨"îWå}ZZxšÁ‚×7ò.»×ùÛòÛÔâ;Õ\«é x·Ï‡(\Ó%ºuß11Ö¡S´)˜ì‘u¼Äh– žàžæ52FÄ®R=²óØxð+ïø?PJ<FJMåôÑyé\´f]‡ˆ¥Œ´Ùÿ¨-Ès£ž„f©Æ*5ü”õ©®Yxþ­â¶:<ô4÷L9Â>¼]¼9i1gó¶T¾Lñ6I|dáÑ“öðʾyj“Ç®Œª<ùµ¾uÏ0éî|p ŒUäÙ R`Â'ýïò’±uš,JÖk|°—­Üì‹ÇÚß=MãiÙÎsGë~7öz?ö£Ýëõ’cÒäSvÈ®Z[›”ãbÉ/d‚’Ÿ§³™ÔàÕzŽ„ sZt@Šñ•%Ñ8†|6L K;Â`;e¥hL@–V0¦ÿmêá„/¥‚õp䥉OÃ
+ÊÛ F–l±[«º°†y1æHëèšÅÓ \C9+4Å5¿XHKÅ2™#Ñ›OMÖÜØ÷Ô¤ànƒ$¡ñœ{íQ”' ù𙽭É\øe<kyÇÞ®k©…ÕUï­õ.ŠÜ£Uj7·AÃJZ±\à Y @ã7ÚOÞ“xÒ»†"¸ãš†Miy
+dWçPï2—êÉÝu /
+XGmŒ”kˆŠ ¸àªMãq¸MpÞËwàêÓ~:T¿ãŽÈ×uÞéO¢ƒïa<hi5,»R=×8Ê@
+<f)]—Üæ¶:ùç>Žèä\¤vBSa]ü$ÝÀÙ5¬^åEÑpÛ̪í«f»†žï<œ¢b 3Ë2Ù2ö(ÃAz˵Îz4€0Ÿ-=ïŸ1ªpY}eäUÓ"j9 Š¨–¹CṈ̃½‡y¦Ð6÷…ÕuŠXÄåÛCDã½QíØ„LÄ–'IkuÜÖØG‹ôZ€ ."xcôõüÔXõFæK8T°ý ç&ÕÂ×kU/
+ší7\DFÄ÷£pA‘¨:wD"!ƒ÷Æ™UŒð£ÔŒÀ“±IøfæÐËâ#„“xï=©›®JÙZ&Ûn¾>u
+î,,<¤ˆœgdÒÛ4Ù /‘Ðjœz6Ûù_1*8ÇV_{;ÑmBTIP$U(™>|ÊW_°¥V©º©hS À¾ÿ,3yJŒDd:(þa”JD´÷S°>õý^XE©(eCØZÕ™‡€Aû† L¯"ž
+›ï,ëÿáÒÿ/ðÿDk ‘ƒ“­‘ƒÒÿ4Œ±,endstream
+endobj
+455 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1560 0 R
+/FirstChar 35
+/LastChar 126
+/Widths 1561 0 R
+/BaseFont /WQUWUJ+CMTT10
+/FontDescriptor 453 0 R
+>> endobj
+453 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /WQUWUJ+CMTT10
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/FontBBox [-4 -235 731 800]
+/Flags 4
+/CharSet (/numbersign/percent/quoteright/parenleft/parenright/asterisk/comma/hyphen/period/slash/zero/one/two/three/four/five/eight/colon/semicolon/equal/at/A/B/C/D/F/L/M/O/R/S/T/X/Y/bracketleft/backslash/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/braceleft/braceright/asciitilde)
+/FontFile 454 0 R
+>> endobj
+1561 0 obj
+[525 0 525 0 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 0 0 525 0 525 525 0 525 0 0 525 525 525 525 525 0 525 0 0 0 0 0 525 525 0 525 0 0 525 525 525 0 0 0 525 525 0 525 525 525 0 0 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 0 525 525 ]
+endobj
+1560 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 35/numbersign 36/.notdef 37/percent 38/.notdef 39/quoteright/parenleft/parenright/asterisk 43/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five 54/.notdef 56/eight 57/.notdef 58/colon/semicolon 60/.notdef 61/equal 62/.notdef 64/at/A/B/C/D 69/.notdef 70/F 71/.notdef 76/L/M 78/.notdef 79/O 80/.notdef 82/R/S/T 85/.notdef 88/X/Y 90/.notdef 91/bracketleft/backslash/bracketright 94/.notdef 96/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/braceleft 124/.notdef 125/braceright/asciitilde 127/.notdef]
+>> endobj
+415 0 obj <<
+/Length1 1120
+/Length2 3758
+/Length3 532
+/Length 4472
+/Filter /FlateDecode
+>>
+stream
+xÚí“i<”}ÛÇCÈØ2dIrÊR²Œ©,C’%!û¾3fc˜aflYK$"„²—±o-¶²ï$©ìd;dW²õLu_Wžë~ù<¯îÏ}žoÎïñ?þÇñ;–SO×@L‰³C©â°D1¨8TPÖ20P‡J
+ƒ^ømDTÑ^(¤.šˆpìáÎÔ/;
+‹ü§ rï~‰€èii«‰ü5Õ_§ºp4–hèíŠ$þ¸ÿbè&÷ö,$Ä%$ dGòû×—Õ?²]Ã"pH4–¼’R
+ ±H”€ò"K†ˆcqDò€Ü?À‡ý*¹:ˆ=ú§í7^$£óßxI€¸Âñ(¬3ÊžøÇ
+ý—õ÷ˆÿ6K‘Íä!ã›dÈá þ&ò@àH€Øý!
+KUFhê1]íô®í¡ìôLê¸6°"?z)þ›=óúÎCþ s¾Kz]¯ûwêLG¦?¨™3–¯î颭^¨®-:¿Üù^¶3I›Ñ¡bþ
+ž´ŸŒjx
+‹w±Iú@ãá3ö꿨>¿É»`Ñ|r)ÊÝŸžzHõ¤>½0ÉuÔãæ]S¼)“~ñåÜ/Ç,2mSÒ)•ÜŠßÈ™/S}uS7§‡öÈÍ‹zÕLßóºSÍI¡÷•ß4¾ù‚(¼Ó*¼ð¨ÌÝÒ$ÝdM¡Í\
+ô}_IŸ
+iÕÉØë9ÎçÀ“Ô‡›i®ˆ¸àtnÄ Âõ:WëY¢\ž'ø K)äšÎ0,ÍòíÃíQûÛ&M~'G/ TÇr鯖¦>æW¼ÇDqÆ-WÒéü×Rñ^®ÂƒNþ.Í+Þ…æ‚OŒß%†~)½%z&Ã1lâ¤ðÒÑžQ…ń׳U':%lò…ö+@ƒ =>Ô⮛E›ívîâw™‰/ º¥,Jêöš©63§ÄOgV)‹˜Gë_Q½Wðß“s¶ZÄFîyì·!WUR!˜¸pÚFª3ñ6„e¾¢>ÿý2µêEŠukzžûº«“³&Òu€þ’Ó¶ŠŒ¬L=ž#lg‹­Å¨ü™ ³#`Y×»¶ñÕ&¦.þWÉ-»}Ôm“¬Çr©¤ø‚ícsŸî
+|Št(žO’°눞,œôr=Q=qÚYp’пE’÷<O @3ß\ùÜÉÎöW4W—½AšrŒ6/‚Ý>ðåêm©½‹’Ófhà¡×‹Ó,Î^ý0çk¨[GRsn8–àÑsËå7­WX¯ì nbÖ£2ÖØË´[“ø!"bOÃÀÆè‘n¤Âí8ŸýŽ‰µ!Ô•¥DZ‘ÕûÚ32Q È+?)v'ðNЦºcôLh]èK·$RG¤éUf%éã_+…kçŤ._6¿ò_\·—2S-ÙÏþõÒø>]©ŒœÃ¼VAŸƒœÆ`£ºþŒÞÖM<ŽfÌë [Šá7Å£êS ¨²^½ I‹.ü¼QÇé`~¥ÏðȂǾÖù¶mÕe—•F;ûÄbèôúÕ2¥¼B1¹‰VŠ²GfvÍýë¹w(—¹ý#$W÷#·wc_} ^JxÖ@¿fÝIKÞ`_^Ar=°Ç®ªð7ÜUë.=Ñ¿6Vâ¶W}<Ïf«XáÅÁìdjÙ~?œnö jÀ­odÉa³‰Y™ØdOc+B›É•eì¿9Ðÿ9LjZÍknyäÛö¸k:ht0«_£d*‹uR-S'ç9$qbã‰k2~sƒ.ˆ—¥¹-êw)“^#OøšVÑxЯu~ä;"v§Y*ãYFhrSúøƒ‚ã]žŠ¶Í[U')ùë¦i˜Í±Ó3å¯O(\ii YÌ{Ÿõ±]ºêþ$(2?`ϸ¸"5—z?:Ѐ³Xü3µ +ƒÿ”m
+—ëóÏŽî¾â=¦˜çfÛª
+ÿØá«$Ü_Ú>³ò*<â!ºm2ŒßR´TÏŠùjÂåàü÷;!µ´hì ê‹n¸8”Á&[}â9F^D‘rÔÊè>¸;©lmpXÚ²¶S,t| e>zÿήVë“9
+D34˜½æz—Ò³‹c<O¤U‚Tê ïMÄÇâ ´µEãIõ¼ÊÆnvê.Œ;ôg>1œ:õl’zÛY ÚœgGA+P}Ùà¿Ð{/à•t‡àóWóþ&ò,
+íû9Ï6lYåLbrÊ—Ø,aÏ\£ålή½fÅ>Ïb{\˸ÈÄ—.ÖßvÅ5Rÿd¾«@¯áVRáÄ ­“Ô¸$úðLŠ®H³ï
+{GO¬Ý@:ïtÿÎÂñV?µAß8uS·òîÈðÅ.îËöhƒ#‹ÎRm×ëU¥fs|4„Å­°wš4Î3%^™ÏöRR”4>"E¢y¿èæTævRŽÏ§iÞLhxìá©e4Z$$þHŒÒlË÷!˜›z¯îøÎȃˆ£:³±“C’†2¯¡$3qX2oA—
+v ~‡Œâö°)ÉSó÷ ^ÊPBtÅJÆÛ˜¬YT¡#5°U 7Bï%ß¹ÍuÞ]jOo¦€SB— éh&Sݳ˜owÏ."¥'¯f\[jû@­à—œ‹²9c-œ¯ª ‘úÈeÄУ£´RˆËPÄP\h­ÉIÔì©÷ˆŸ¤ËQƒ-FsB-d2¤;ŒV
+á© â3×Óc˜¯æPH?6дDË;—–ÓLx Vðf¨ÇóqKtþöçË;4tMIçkh7òœªSlÐw?s¾hKÒmën sꪖá`fÍFñ>Ëçxì:Y™”ï ‡#!/çb¥ŠØ6Î4§r:%iÉ•´÷pPuõ Õ}°)¹Påkê\‹‹Ãò”óxÇzÔ,~\oð2N¯¯ô;}vä&ñÉ@˜È´§£d"¤‡ª²ŸÄóÌŠµiü¹|iì|{X³‹‹}$(çÆ=kØäËB9µCfoúÒŽŸSbü SŒ k•ƒû©¾BÙ 0)]dg4Úö1Û‚Â|3`¥ƒW*¶p>fƒ/ÖõŠt-`žØŠÁMf]½ÊÁÁü_¦·u„­j®ÑXi2±+Œi­ßKËS:'<Íå³å‘íe¶P²T]†ˆ žf͘uÙdÚ; —v(^W…¥Bzœ¼Z¤µ_­üYùzÛúy¦üHF"˶Ùd}pËkÓ-öL tE­øm[¯³3aj¢Zïç–ú¸ACbùŸ{+©8õ8Ÿ•ñÍ¡Iî™y˜¦¸Í%¶ß"@„á ¬–¤Z”@Ä û¯/}gs9Û˜¶èÝ×f‡j#e±¥ßõ9¾çn¢Ok¹ÈÔZŽÐ¹·(8jãžÎ lkó¹EóD ñ ‚3 Ô1ç9Ó£ºÿU±%#ÏÇ‹dgÝPJyÐÍ8‘Ü—4e|¡ßÛø%T]fîÜEj&‹}ÚööMWHæÅ·¡6µw
+•>öçÓ·êä`Ñ^9'^ËÙ•vk%ãwm½,˜fš³ÏÔ˲+)ê íù\¾s¹”ª„‚!¡WL7õörÀ·“ûøºtÉä\V5'£ŒÇü=¿Ä{›—ÞzK¿ ,aÓ )Ò;C'É”)7[&Ƥ—"(—ó“ N\ ùž&ý‚¯ð.Ç…ÀwâÖ»?ÜÔG7'æÇ
+
+‚ §˜lîòä^ÿz¼Ô);€È¯ÅvÕ¬*ƒìC WÈ}!swlÑôb9ÈŽ2D÷›ekÈ”$¦–cð¡ËñF¤Gá#2ÞQ()wîãÁ»ÌóÚCïêÎty¬‡¶<ž$¡^ö>½‰o‰"´'SÞõ–ø?> ÿø€pFÁñDœ ýJŒ'£endstream
+endobj
+416 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1562 0 R
+/FirstChar 12
+/LastChar 121
+/Widths 1563 0 R
+/BaseFont /RUMJVH+CMSSI10
+/FontDescriptor 414 0 R
+>> endobj
+414 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/FontName /RUMJVH+CMSSI10
+/ItalicAngle -12
+/StemV 80
+/XHeight 444
+/FontBBox [-97 -250 1077 759]
+/Flags 4
+/CharSet (/fi/fl/parenleft/parenright/period/S/a/b/c/e/g/h/i/j/k/l/n/o/p/r/t/u/v/w/y)
+/FontFile 415 0 R
+>> endobj
+1563 0 obj
+[536 536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 389 389 0 0 0 0 278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 556 0 0 0 0 0 0 0 0 0 0 0 0 0 481 517 444 0 444 0 500 517 239 267 489 239 0 517 500 517 0 342 0 361 517 461 683 0 461 ]
+endobj
+1562 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi/fl 14/.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 83/S 84/.notdef 97/a/b/c 100/.notdef 101/e 102/.notdef 103/g/h/i/j/k/l 109/.notdef 110/n/o/p 113/.notdef 114/r 115/.notdef 116/t/u/v/w 120/.notdef 121/y 122/.notdef]
+>> endobj
+412 0 obj <<
+/Length1 1456
+/Length2 9531
+/Length3 532
+/Length 10395
+/Filter /FlateDecode
+>>
+stream
+xÚí–UX@º¦qw—
+«²=¤¢äÿ†¨ÿ,.íbk«lúéåÿ¹Kÿ›ßôÈöóEØrpq‚Jö@°Ý†jÿ%N hrùôŸ^9gS[¹¸•-ÀÌÏÂÅó/3ÈIä´P9›[,Mm€ÿ´í,þSdóþ)ƒURü½¦†2ãMõŸNUS³Æg €íOô?™ýCö rè³±°±±C!ßÿþeøͤìÌí-@vcÁÍ0ƒM?£@΄¸_Ù ;  ;
+SÛõ$ŽÕ“ßòvJ2ȼ½wëÙ±O È,殎§®ð3¯6ðKl{}ÏAû²æQãÑcüøÆHÒ0Ë4Å ¨r@08gÍÈõ›¾ºÍ
+‚®7Ø£Âg'ßdêËÇÂe n¾~ºÁØ%ìD¶lÎñ òõVj”ñ’»áÒ÷ⶮ»cubaÈoUPtؤX¨ìi2уšõ¼?¡PÂ])‰A—ªZGï ƒŸltë"Sò—¯ACˆX9G¥]Ø(aNÊ˲ퟒ(´P‘ l°-œ7ÝÅ}Z 誺Cv(Jâ;Êq'ºFWIÍ­ƒ~­Ûÿ:°ê·åºá¨÷hM´ö|Ôziu’.*ë2ž_ÕŸosÞ*{Û1Ië9¤h@-Ô3¤£‹»þÖ^вÜTLNh£–£^µLÁoÒ1Ÿ¼ž¶ÕCO*»2’S­1¾LáÎNõYÍ.BŽœš’ô¥›ç]ºuVRÂø~ÞW<ëAÖ)&(¬v,Ø’µS#Åã¡é<:ò/hÒò¢‹iB
+J`¯âàÿ ÂL›axy•¨T0Í?*3VTPê RÏ9W[3Kê°'¦,õS/Å©f(®­jÙ2Íå(P¿òj=t|[œÁ³‹´€ ¯­ZÚ-¨H¢Ö Á…ô&2"Ë|=èJݼœÉó€¾=%vŬ c°F­9±z­x1C[ ‡§÷œRÈY§¢ò÷¨„ÿ\Ÿ9$–ãÙ ÓONºPCyxK Ó_3‘4ÙƒÈû–{e«q§”âÂ1Ôþ>q7ØæÁ{HŠ ÊS\ €\u¯ÆÅáÓ¾ù
+º¸ðÕRvØùσàUÒØ9©§›çäù0]UÊÉ9 @”¬ ¼vU檧ʸ;šÁ€7ÂMEmÿ^Ù·Å4îUxSAžC0:Ëîh’J5·x²l'r2”>\ñï©öÎ;K4Éô%ÂÌà! ¤ì3EÖç‰=p}8ÁE²—ÐÕéÍÊy Ey?Ñ2A¡Ñoùµ¿éénDW3'œŒi WÕjoÑᘥHÊU‘c ­Ú»¡1]Ê°Ë“ùÉ8õS¬«4‘Ÿº™†ót\x¡š~Úeô·2ºôlÎH;÷Z×qÕº9å zbšôS‘(m fg}?XàªJÏ×#s~1Öˆô,ÛÝ;aU¡#=æúf\ÔUqB”„0rXÖG(PûÝç´`ž†úþ”â¾Ìå»òl»c¡áᵤ¤».<¿YoòÞ“%Í\!5÷õŠ·~­ÏN½UxïLôh†i5#1´tÆ`*•Ô'¯#·>ê}©K\ QO‡¹׸FÎÈpëÓá´s¨Ž­Åp*›µCU(áŲµpÜŠ±
+ÎÂÎSCÂÀGàçPr»ùz²ŠÊ”VÄoµè}¾XßB%Ñúz÷«§!”ˆžå`9¯{ÝeåQ \z8Áx‘ŸœÉñcN†nS¥U/ÔñÚòSºô.ù¼ë`1œ@ΫÆØ— "S(šì¯/rx¾:Œˆò’XDX_ y[±šS¨ ø¬ó}ëSðõåqORÒ¡ÌL_½³Hz ÛlçLHÓuÛx){(Û Xw]û°:cë6Çüæ’(DtÊ“ÙNß/*EtÕÇ0]y<ðùº…ؾgVévñsmW`dz’OÏÔJÃU-˜ˆ™¸+¯]Ö?„); 9ÖÂ}MÏó¥eçµêØýjmnÍTÏû¤ðŸ5Ì;¢.\š|ûÂíÞÊ9Jdvl™¦;±72{B­_‘{èÀÑuRQº]ázŒšêŠÀmáõèNÞÍöQlß±–üÁ×ÖŸÎ ³·¨aDÅÔÈÔ»u:ç ÖÚ'%ØǬ"ÔÚ–˜xÞ©e4—ôK³xu´á]­é[Ÿ‡ÝnewîÌ÷w“׆‰ø)•sÔ¦dWç«+‰>9“=Wú{hßÚBÀâNæ)ΚÈц†§Ä÷ÃÎsëút£]t¥$Yîþ·b€_ͼӬ6l¦¯FâÁR´tô>]î$žxi‹FÿúÈj7,k¸èøƒk ¶³÷¥Ø|ˆ‚Â#hÃàwy'AµÅo;<šÖŒU8ÄeÑ*#|µ8¢Ùˆ«Êi÷´©›±PPœ$ǾGB¿RJs6ã‡\KŠú¶„ŸpȤ˨›èlô Â#›·X/‘‚æ6 Ë>8WR)27 ³éÁÈ8ìe„vï
+0M¿œçô…f–ÔÛÕ{á\°XIÖ”Lî ¸bû'€då1²ôh#¡cTJǸ/½q ÔëÛjO»ÙŽö-å±nØ 5Ø:Zß3uE"“<sbûöLÉ·óà@{¡c‘p„[PߎŽÃŸUÚüyÆôKs²Ó8¡úìOíôž(½ìÉ6ÉÖä¹IóÞ>ó.K'U‡ö¾nÕ,¬ ÐUÑ)[Se¨ŸûŠö¹…Ø:Û¬XÇXdu;®½·?÷ê ,oÍ[^\%á.}ž®Ãcñ?€ëÖ®t´¸vñö ¦edc²s<Üt²?ú=üÝE¼<²òeƒ¸.Fé!'òM4<ßöd•º¥üìcþfW^«r+ý#È~ ry4àä5YÀÚ—¡Ô3,Í«,­_(0µnd×_ßßÏÓ(º¦!Ï4ÎMe;…Xëi}½ñ¿n !(¥q1G”=Ñf4’åÍþºYNT’éBœ±]±ô´Ù1Z‚b@¾`Ö-^ú¬6ªe_G…ŸÚ:8 ¼¶ceýZmXÞñ…ÇËÏm_ü]ZXƒ…äÄ2$>¯û!Ë' =ç’ï4E¦-u°…ñ×ñq• Z±©aY”‡^Â8‹¢q³€¦+ù¸È÷±òj3®õűó#Í„ä@ò×Þ“'®ÖáЬÜvámšZ¦e Ü£Ì21êrßc‰÷ökÏ/ú‚Íg¾îøzÃö¡IÙ–ò:Á£Z‹Â>é Žb{ó›†9=£ä_ä2mÜÝ.ŽµçKÙ÷bb7¨¤~¾Š:E ,äŠä®ä
+J! ýÞXÏàá ôÝh®F0™»}Ýu/-8´™M0² ºê%Œ5A$ÕˆN ßÙ…|ïµ¢kBE5,M«ê§…‚ùÛ§ Y-·ÊSE¢ëÇST=5hñ±:û’7Å?=ìw”;Þ>óáïÜX²±æ¾òÍ{™ôVg SrÓ 6
+£3åGò¹q ï «ÆNŠ#Ü­‡£úÝ7îlþ"WÄZ²oÙ¢Ú”Ž®öí¥ f=ô—€÷ImDÇyiV›SÄä$ä±ÝLfÌh¦ï󹩥Å3.ãÕwž5%º7q VP’äÄ'ñ‡i|çO–3 ÷mG²ž%®íãå W À,WØÖ‡Æc…¥‹)“M%}€wPrm;\y]D­yDBÜ“b ¸ýàÌX#¬7û½ûñV”œxâ[èþR§jØõ«ÔúÁðnÒ Œ˜À¦9ä;…ÂÖÂØü8ÔÉ÷zLnŒ7-©¥pP±â‡?¦ÝZ8üò .ü~Ç<y{4#œ*]ùùÃv™?¡W.*€¯7P‘"ã¿kUäEU,
+@¯Þô0[{ýƒ
+0HÕÍâ3¡_2¡}¦›ÌÅÐ;L·¼vkí³Yâp‡Ù9¯Š’QQð¾r}¯½VÜ8Ò‰u+ˆŠ~ŒÝ¬=ð–ÒÞúzã:‘‚1¾—”ÀU©¶7ü3Î*?ÑqÔ!šoêkç>s~ï]ùtýô.öE»\+›BD!<
+qËlÖti'‚3´¶Lñg ^¹j·cßî¨fóªøƒ~Oj`ÛO]ÞÐK´cøÖ½úèÎÊ6~¥wÝ>õ0Ô/É®ÈýPf¯g‰Å¦z‘.Õjˆ1 ûØkXŸ\=.ì¯ XMùàuºƒ#ýÝÞ®Û½âo‘Jg*{
+ð>=Ê}ŠÛšãV`
+*y”¢æÙ{î„6/MôÊ!šü·tõÕP—ÕëU¹œP81%*³EG»×™A84~âOšEvå9"ºÄIèê=Ñ[Æƽ°=‹žßläˆÍ^’š@rb‰½aVķͶ`uÑ›<Íw6451kS‘ŒVè®6`³>åó*ÃLBÈ=gi=‡«‹C’fcº-ð© @¾Q/x³8/¹»/&uÕZ*5ÉÔºgrÒø
+náiˆ•Õ®ÔØj|ãAÜ:}ŠE=÷Ó¤ðT= &ÌMæ oôª÷˜W¼°Ï^X6´]³Ö:g–…c¡ÉÝàä‹$Žç Ö[XþyydQ+G,ÞÔ º£Ú<픘9÷Ó>/+<L5Ì{±$Û XÁŠä ¦†…7¿dcÎÁÊ™ ·‚9ŽtW‚<ºdÍ*0÷©'8ßéèSEüKÞ:WÕ·¶{+pHWi3Ü·•q+t×’WŠ?M–Hk•*5t±±öéñ$NLC00í†æQ_ÃOW±¯¤ºÍÏïY‰VqšŸ—ì<Ö??¥ž–ÆÚÚ¢£ÇQ‰š®áoK¾/Ÿ}~§y*‘©Jâì— +(;ѤSrÔçzò•¬Cn!’º(Ú:ï
+­
+6ŸB[}®”È)®|õµ{Ì9_s‹ï¨WÒÛ`cæQÇÓó}rvTŒáÄ°–“ÇŽK’EÛäMžwó\‹Fƒ>Ÿ~®U
+¨¶c0ÝS¼å9Æñ™¹I¼"5ܳÊsÆìü|ýÇÃ,“ï„^ó»nyøAâ$^`{Yàî°ÕëkˣÖʣÏäñ¢¶ ¬\q\¾Ó:5³º¡ž4ÖmÖ“©u£²Ôt˜Í]úK«¡»}‰å6\ŒÛ~V\ z§šïÊà.-©uŸõ”S¶uº!H!±ÓÉ5ÕxÈÐwŠéÄ­q5´Ù÷Öã©Å¼Eiþ£g·ˆ)ÉOV¢lL5ñëŒPããu'´s"G2ØvæÖ¼qfX¾®ÙâÆ\†Ï—J7e-0†Yƒ-@ÐÆN–yø"ɾêKú²h½4qm’0xÓÆ@¹®tÞ붯ê9AAÓ_•Ç8‘ð«€²:yæ{xÒ¤³§ÒìÎîϸFŽ\­t\™‡5¶~iƒò[ýxenLýJ
+½¿ ÍÅÝ™X®òØ(3ÕÛÁñ ÃiZ_¶kùu½W¦wyéôFèŽû¬g|¬µ·S¸ãç‰p½Ô·Ë]ªíòIK¤gæ›F÷YäjÃ:¬š‹ìŠ»ëÈt½•#6ÇüÛL¨‡$ËåÓäoœÙR=í)ëî8¼(Ï6šgaëh°‹üdŒ9Û†cJ£1’N‚®¹£êÁïæA[‡nûr§c‹tk[Oði0÷Ü1 ˆÕ|óÖÛxr»qÚ®ëÝ« Æ ;·—¹&{[;á»%¯ýÈÜëÝÀ1¶ª{âj·¸eè®Aéȯ;%5G\Û˜t³^2;qG“Šj%¼=_³ó+2ÙHíÑ'2b—¨ œ“:ªè—¿‘[x[7‡ÃÍwòK!?æq=Ñ•¤ØÑs=G­ç–90øZMóÌ ›,rƒ­óêeº¦˜d«oÄ%~%þâ;ä+LâtOÉ¡$$}Å—à aΫ‹a‰À$Âئf-¶KN@npUW²hÔ•Se¸Jܤ³üS;s£·” œ†þl€%ßOÍÎ\¶+9qqf”c8—\s'VÔ) ,b«åIGÖÓ1ÖŸ%ªÆ¯N]“`õõ„"ôãs²\½MÓ$Rídâ ¡ˆ™w7é0íÏ£²4)³Ý?®Xd²ÎJ‰ñûF*·,:è5\ØI«ÝÆUS£z EÝœ šÃÉBÔysvptENµx@Eƒ3L`RÉŽ‘a\„Ú4¬BÃìßmÓÈ$ CöÑÅÔ‹ÇÀå”ZàÛ¯ßg£^îÙBp‘­Vt Ù&ÑF·HTÙ{ï½IJbç´d«Y2xk)b¿Zœ™Ö‚©`À™½ïóˆæßGy`$j!ýþÌi¾Ï°ÛùV)²<•=•øÑaU`žè)+½å Üz(±'Ê1Õ¤ûd Îy,™L²]Uh#¤ÿ³»]ßÚÌ'­øº'ZVCIìú*jÜwaE£0f£&¢ðäeÞêÍŒL°Œ±^[ÒÕ«ßíøÇhç|Nßµ‡_‡‘ú ê±Í¾|¤NÑtb¦Ä¨9Ó˜"‘ž|¥×gÏ)±1g–’ÞåD.“•Nßd¨ùiJ}OzÈ>
+ÐPŸùŸ´H½•²nöÏ¥e¼úFFrÁØI€L9Âk7ÄZÌ–ÇÒzŒƒ|ž…µ(Ų.¬Ú@BÆåxþcvÝöz]Oõ»%×!÷Ò¢Ò¢à)š¬ÕɬµÜŽx.>§Û}±@>[¶àŠ"Œ8åVŸ‰ØÞÙ°5pL³Ûë-Ê/G^*þ…N¥–uÄš·«^‚·r·æÂ'ëF:’ÈÚ|¿#ÆÉó¬¶ ­æ%œÌ¼Œ£?¹ØÆSà×AóAç1•“—ÌH±8¢Å’¤-Æ,ÕwùBI¸¿®s?Šó.<ºðiyñàq¬Úž€8ëËÔ3†¯<ŠH°ÿ\³¹¶”·ÚµB™„ø´<.þ( …õ<5;Ñ÷CÁ•V¦I‹ ª'„ÔÝé†Æ¶ ,ÂŽæj/ÙzÃï¨Í‡:Fa9ÐC3-ùWï߶ñ 00Slª+õìAù¸jÈŠ;³ÍÕµU­
+“ÃKöCâš¿J³O¬Cº˜…¾g~·ýàHðm–RN›vbüÁÇJ 4Àf‚è²df.‚„ã`Wò'v™ ©+»…¨dïëe*ÝÅï¼Ø,‚²²Î¥ÃR;eÕ4éö‹x•Ú*Üâ—„ “ Q!(a9¬•ÅôMïïtƒ…GËô6“õÝ•;ÚÖàϾs·ÉLZ³k=MgÆÓzþkþ—P¦ú?0&G«ñËÛ™`1)–Ë5Šu;Ì8K_…%N%àDÖ¼;ÑÛ–‰`žÓcxàMLßéÃCßK—™z¤íÓOêe¦¹~CÔ¥k„gØÆ­íRx»T‘@¶–JR)£Ò½ŽZ“ ¡šKÆU¹ž¢²Ë
+Ž+Æ­1Nèf&¡`H«¹™ùÕ9ƒóêD°ÒgòàaqÈt(Šö«(;N©U‘ºwý l:§¸_q¤³²e^€¤Åm~+¦±NÒ0w Vh¡wåVªåÍ*,.J‰õ˜^·Ñ¹K&ªž£TÛ¼@ .PO;ŸûP÷bwcó¥/n°…{bMžFâíf ¼VÞ¹•ýÖ½q#Fÿ®ó•þIÐqÈÿgjA4Eʯ¥˜çqûi/]$.åÈ%j
+K@?³ýnƒó·²³kÙ;Í“ Ÿù
+uŠGæÌGÞo-‹ÙˆÃ¦æ”ÞíÂêm K#ÇÀï’ï"Ømk”­G‰Spb[Ìz+ßH¶/3¸²Ó|0Óâ¹ÐΧï£t½¡öak>U'+M÷_“¦ zýh䯣«IŸ÷ò£c{Ž¯BoØô fßl¿<»ÄÇb*£˔Kã_ƒW|DÎ(¡…\þ™ë Ï¬ÅR÷5ú“d§€\£ÌÜæ!â¼æ¯ÅŒÏZ¯«MEŽ-¶Žó ‡M–ò;í"?§vÁè‡g^Ž¤î)©:_ùV´ ”jì¡ás‰ÊUÏ!%'Sî髪:óŸ,Õ«J~¿#Cg.`2~A—‘E¼r~ þNŠU;ôkD‹I Ef#zÿ¬íŠÄÕ‹»Ìâ(ºùÝuzSwÍ3—“)Æ J{ItnàÂR«GõÐJ«vBárþòû{ŽØ›£ÅÙþK1ñDËt…\A¿ÔyE¾p”X ¯U£jaªûÇM¢û¸{˜ÜmaÞëäŽ
+Aoia׬³˜DZ< ÊÅoNxõ=È0 ³Ò~"¦Ð¿+=¢öìhÿ¡0î…ªú[ O o<„A­2˜Ôp[y¢¢w¹×6Á%þ¨¼6íà%BMEb…0”¦…<%x=öi𘛠e ~gvÚ} 9ýI“G¿·»01/¸¢®zÕégv²X§Kï:"O~ÿ±’ Ÿÿwä´‡bCkû¨ ?)› ˜ó(Ð'q^¥Ä¾#pußbèY+™#ZÔ.DY Å“Ð!BRqˆšQÚs3K5Ÿñ£–m:%7›¥ÝÊ9u C3¬žJò#à™´’PQ›ÍÆ[ŸÃë¢è/HîíØq1¿®’Ä‘Š‘Kë1’³¥ˆY›­Ì_zm„½‡ÃpÈžà²öY–:/V…ÂošúýH§›ÃœÐ`0ѸµÀõÚ,t ¿h{
+ÊØ´Ie¼ÖÅ¡x¤˜´b-¹î“sæû·6i”Ýí>Lv• QÃEÛ°}‡éúQ¾ ñ lÛÜC}ŒÏ'ŠÕ|)3
+&Jà¡’1?D6ƈҶ<Þ`û¼Жª¤0ˈ¸ˆ{.§™ÃPzõ¿úíF9ùQ̨ayç4}óÓzŠû©&Ð…f?—Pˆ’†^P¸§²¾æ³ »^ vœyãýîò@ò!J7 nê÷€0NË_ué¡QàDB,‚aãq„
+f…Þˆ›àé=
+[îÉÃï\ɆaX­³ú¿Ûf‘î—˜2ž¨[8À eŠnËèkk¬Ÿt¿3Žñ OCJuå·ü,ŽEú&çH›& »Èªë>ÇV%pð#b…€@yåÁ]NÌîýñD÷ƒÈüD`cV%޼ȭ8ÕAØÃ"9RM”Im¡º¦Ùîá
+ÚÂzË «¦ˆï—‚ËÀÌÍ:éi÷å@ˆ¢ÐŽdà(~ñÛèÒÏLâÒ¢(SæŒ?€%P$ÛyÅb0mTEÇô _ áZ¦­ (ž²2ãx%ÓWÖ€žúãˆùác’E! ­†š9ÜŒˆW–ëm3R=•á³Û"ƶU?WÏm{žàŒÊhò7ª™Éç…¤™ìV7û@³ßIçú3+yÒÌZmÞÞͶ¼ ©ÉXóЉ0’fÚ_0Sxå–·|¥Ÿ³³,ÁÇ œ„Ë-ÛH8ÏÔÕ­87c[æå S›ë>9fg`\U«í*˜¡ÑåV²ïŒ¥› œ_>6ëÑüU¯mCeV‚ÏXØEĘåÖ&Ói•ÓA‡a£1cÚ¯ûî48wE-¾sð“cùe¨/ÃM³«˜Ë’‰Ø14²•w$^οPùh"¡J«ä^$äëT‰Çïym®`‡t2’Š~BõHÏŒíUÙnôÆÜφpÖÝŒ1§“Yë¬Ø¢
+UÓÕïÔ§ð~ FÛ,¬²ÞÇ|Áé †éMžÔ"÷*"M¥6fÑ”Iò$SÊX·#Ô™ÔzÓ’vÛÆÔ½¼ÌC1¼C§Ó*>¯.›?úNEjyà?합Э¢õß f¥-6féÔU 3Päæ!3¦%õ?œ+¸cƒÖô"̇߄nÁ+IÒp`»|Ä´`úi¡¼ÿ4Öéª
+˜Û›WÛH$—é×cW„QõCC<ËhölX«yµh†–“Ä^çø€¶e÷Nã]Hra k—9;Jh,1g×\-‡[
+þ‹Ÿùp‡¾ø­p}AÇ@FˆÙmE‰X<@6±qÜ}Gqf¿2 Ìrã[Eq8jKÖ]¢ä|Uˆà:”"´ªþjÔQM4è˜ö#cšn`Ç쇆ü`¬f¾¼Y§©Õ‡µ'5+c:Ã]ÛaÏ> >ks ³Â½Hc ewãc˜Ãë>GÚ¿>å.‡^™]^¥±ê>ÿ¨³æœ†×œ&¯)™«Œº N,£æÜ™yß,Åáop»ÙüÞîê³µÀ>§}Ógµ¢8OkC¥(rö!ˆ"Ü]¬DuªÁ‚çD‰#ô…º\YÉ·lG¸c5¼±6ĦÆoˆé¯ÜTN.Hû†Ïvõ`g{5O"óGȺÛéo=àgžß^f̸hÓñµq5o^§õ9HÒ—Ô¦ÔC.Eö:׳¯%Cmdň›ß„kO{ÀçhÖ¦Õ4ÕZjÒ§g&å´ÂÊ’á=9~ÌvF
+ Z°ˆÏÑ…¢ú›åÐKŸL‰Ô÷~Ъ»žΦtº”~°
+µÂ°ÉuD&ñŒµ³ 
+Ÿ­oÆ.U†¬®;펙6Š?Àäù“8è¤ã¡eIETbÕ€£‘^«
+ªÑ§H>sIî>ú2z¨»:UÞŒ°qÿ<ŸNxÏÊ«¦•ç–6WDâ$!Åšû³Ãÿ]èÔGåŒò*Ñä7ŽsQ_W®—¥EÛÙqÛ~çÒDÛ¾±ÖÏ ™j¢Ha¥ìHA‹à•üÅ)-]UµûIL°Œág¥=‚ñPM7gðñEŬúéüu“§)Üí$!,^ÿƒÔ%ç‹.xÄà ^ëÇË«ùÐÐÍ*…3E{2µý™OZøpž¬sK¸²6f *í±]Øp!Ð)}òÐeíËGÍï–»‡²öËÛŠúVXÅ8Nµn»e
+˜ÛMÁÎöŸLÁ6(ÿ ³OÜ/endstream
+endobj
+413 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1564 0 R
+/FirstChar 40
+/LastChar 121
+/Widths 1565 0 R
+/BaseFont /CADUTN+CMSL10
+/FontDescriptor 411 0 R
+>> endobj
+411 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /CADUTN+CMSL10
+/ItalicAngle -9.46
+/StemV 79
+/XHeight 431
+/FontBBox [-62 -250 1123 750]
+/Flags 4
+/CharSet (/parenleft/parenright/period/one/two/three/four/five/six/seven/eight/colon/A/C/E/F/I/K/O/P/Q/S/T/V/W/a/b/c/d/e/g/h/i/k/l/m/n/o/p/q/r/s/t/u/w/x/y)
+/FontFile 412 0 R
+>> endobj
+1565 0 obj
+[389 389 0 0 0 0 278 0 0 500 500 500 500 500 500 500 500 0 278 0 0 0 0 0 0 750 0 722 0 681 653 0 0 361 0 778 0 0 0 778 681 778 0 556 722 0 750 1028 0 0 0 0 0 0 0 0 0 500 556 444 556 444 0 500 556 278 0 528 278 833 556 500 556 528 392 394 389 556 0 722 528 528 ]
+endobj
+1564 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 49/one/two/three/four/five/six/seven/eight 57/.notdef 58/colon 59/.notdef 65/A 66/.notdef 67/C 68/.notdef 69/E/F 71/.notdef 73/I 74/.notdef 75/K 76/.notdef 79/O/P/Q 82/.notdef 83/S/T 85/.notdef 86/V/W 88/.notdef 97/a/b/c/d/e 102/.notdef 103/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u 118/.notdef 119/w/x/y 122/.notdef]
+>> endobj
+373 0 obj <<
+/Length1 1413
+/Length2 5546
+/Length3 532
+/Length 6389
+/Filter /FlateDecode
+>>
+stream
+xÚí–g<œ[ûïu¢w‚0QGeô¢—‰Þ¶nŒ–ý÷š(‰$z„ JtA$D¯!A"z5QÎ콟gËÙÿ—ç¼:ŸsÏ›û{­µ®ßo]ëZ÷gxnë +;"`êHw´°˜ˆ˜@bd$&
+%åáQAÁìÑ®HwU{4L &++PövˆcÇ¥å$$ä$À¤<
+ºÄjÁ°Nþo˜úwruo8ü¾=âÏôUéŒÛ#\áþÿ™Dxx£a(
+
+ÿC؆]×B›Óáš°{€^W]+áøb+
+‚CdÃV•÷ÁÔgè–?2: þ¹´°Ôcç†Ô/ ¢ËàO;ãÚ¥ =¨ç±˜)ý6Ž-.˜É.&Z°ó¼2Û3a¤‹ùG®Ã_OÑLqV]½‰Þ¡BeÛìG(µ”GÛ«_Mˤ6|Û“ ¹rþW#:
+À=-m[ ò§„8¾
+S’3äLv‚­Ò/…K¹çï]ß–FvN­é<ó>—¹êÈ%o¥+'ÉLÊzû_/N“J¼y±ö‚3ùøY|ZyÄÊ‘'¢OÉ^,ú™EвêiïmñCYÎæåÄFÑÊØP5ûZaºžŸ—¤´=j7]9pâȼz8—Mz_è•ÑüÆ›¬øÄvQu®ûõ)´±?Øêi3zÄdäšl™ã@°©´»pª©Ÿ NÜÇ
+Ð1åQD+Êä ÄÓ`ˆÙâ©JYë„øg©:\ÛŠ2àšº
+
+ïõŒÓ•‡ ³§ÒV==ÉIú#X™–hŒwØèêFT…NˆÉÒQ7©¾SŒ]\Œ—×k=WuPú¶“ˆžQ*Ÿ¨®Ñ P« ¢^]aùÊcAÛ•ûùÛQØÃÈ
+»| ˜Ã̳ŸØcí:§Té>xS¨âtïÝL–òQHC c”)V¬„YcX—³y&>ÊÞúÉd®t!ýÆ!+‘<m¨:Œ~s×BèÙâhYET`Q¬·fb›ÉÈÚïÙÂá}éýò ê ^mYÙF7ÏïÏxöõ¶<Fq—"ªnÇ9žôH+,}î9Ì
+hÖW ÕsÕÒ
+Òø¡LÒ»
+@朦üÛÙS‘¯V2Ñò¾¼˜\á Lƒ(ï…îIªú¡®/Ô¦›õÖ8Â}¬=f)ôß^_²"E´Ãc•ˆ×ñÁRq_)vÃކŠµ)Ÿ‰ô9J¼
+ô-ÊtsѹåýÔ&ƒ±¹"#9QoÉ·ù®‹V„€´ø&8ô¶WrEED˜q&«ÍÙ)ºÈŽ›æ…:ÄËEK®G‘å+6€Í2t
+E÷j¦Síß®ŸbdžŽÊGö09A|…BµSsŒÑ/Co,Æ“iâ øÄÆw§yÉŸÆsngº‹`’«k0*’Å íÖÔy­¦ÒAæx$F ?®s£¿¿“AE \>a)‡•MZ6÷Çá,²jL1á·£+ƺŸ“ð
+:ÅHd#EGXI>??7Êåkÿá a`{×O$»¤Rð’©&Ö"ÿÕåÖÒcú×vkU‹ô+·úØËÎÒÙ Æz«k}C¾šöñª§ÏL.enU6ziµÂGË"Iš¾ã—úŽ0ª·h,ïRêr¹?í‹U‚(=<Nbx~ûe¼í(ïv½ ýèú5áþÀû&#åPOþÙfü
+‚Ò䦷GgJ½"XD.êSWÍ›‡ÖÎòöÍ^qm \>=ºÕ75ŸvPå¡ÿ.¤)ÔdjâŘlƒTÔâ+Îf^Íûï¾+iÇþåyÓgE•ëGj8N%à=ù¬ª€õÀ6a°@™ !P–9V=3K•Ñà .àø• ö©·.wèGÙŽ0¨C]".s€µ[’,K.ù ˜Rrk»fu¾~ï™ÝCG°Y ¥œµø–ÇÄnÛ|a¡Ö—VéC ½Å¢ÏZ,°žnH4vP×ÏÒîTEÊ/°1/™’'·±áPù!eŸµ¤o:·ÆB{ûns^÷™²ïkŠýšB®ÂÎV>ã˜Bãâó=ÌOs‡¼Mw;ÀxŽÁR›zC‡Üò1¢ª‹´yŠÞz ïÖ+@Á=¯Ó¼,G)àš…'hEqÖIò¸!XW†à¬j<
+Í&Ãût™$§nfb¥F÷&Ì'Ç÷YZˆ>ž‚ép¾›^eØ=u ŠÌà ‰p ^OO¹dùpð %ðkù‚~wÜŒTÒé%ØòB;ÂÍ‘äû”ºÕR]æPiÃËy•«‡Ú
+Ùj®AÀTˆš¹†çŽg}’à"g‡€Çc‘¸‚Õe ˜â±xpÑpCDdä”ïõ°¹8âX´|´YK(VíÈ¿†JÇ!-x¾g6¾IžÝ]„scÁì+9™ñî’¥|zð*¹À×.™ÑA̘"äí¨Fy‡Êט¯¼×DÍù[v:^©‘VÑBßr—¡ì¼¬x0ß7xhôæK§‹¯Q=R‰n5²ÊN¢v`¯e÷¾jýÎk*q¤1-§¿¹¦%¶¼ì§‚ß:ágéÐÛúYBÑÇ6'tú9§eâ/­à³Â¡cýBh&GÈ aï><‡*FºhšNÞœGX1õù.ñ’KÔ%^cF.-ÿLÚ¥ (»„KØ÷‡â˜Ýc‡Â¤ðG¥9/V‚¨|$(n¶¶ÊÈ?<Y΃D‰ð³àô ³†.Ýßx4ð¡’ém q½Î²eß</Iø¡©KE'°›1O÷gÄÄ->¥8¼¾‘ôûYx–/D¶Š¿­®T„5‡âI
+¼«‘™LÎ/ì5ñú)îJ¿JÛû@­êmê~Ã;Ný^ö~ú3ž ƒ™%asÅ 'TÚõ1]ôç‰á˜»š õ8Ž
+†,8íg±l´,¢z˜¥„ ›—…®c^½X&I&kÆt»#öªWîÀÞwï½)ÐÉc€JjµõrMaÊòœ6¡W&IZÍWxì¯ÏN·]\4’×1þí'ð2ŽâêÅYòO74«ŸÛÖ ]À§—Ú­YÂo6B#)::yôð‡«÷5SÓêÓöÔ znø•=yÃÓëq+}+ ~Û¢äc{A,Ÿæ™¼~uëë€!€l|8I@}Ûmµ2 QÃñÒŸ~BõSÖawmÈW­¢AþRò;øDÔq>²ƒr>Ýî»ûËjK?ÄÎ…\‘Y·lFM‚r­]¤Z)÷Ÿ½-öóoeK{ý$úžÆv„L¶Ç»àŒ Kæm6Nõ mÉ ÑŒ.ôüÀÅ¿ž¬_£a RAó&Å’E(k©)µ_%e™è¨Ëè¥|BZš¡³õ8z’鉇´r#¼tjÅCáœê×1ÿ Ãÿ#¦´vA¦¨q¿ê]¸ÿŽ*G½ÆÑÔWr³”iš_¥p[þn·ß­¨]¹Ø 2+8t9°ˆJöœ˜Öú‹¸-tÂÄ cñÀn} ­ŒÿÉ0Ðó`2S{Å@NCŽ·Äþh:HD yòCÔ§5Þ(^ˆ œi^ { ùÈ’‹þ>¤ÿ?Áÿ  p˜=
+DØ£þ/ÈAÐ+endstream
+endobj
+374 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1566 0 R
+/FirstChar 12
+/LastChar 121
+/Widths 1567 0 R
+/BaseFont /RMYFEX+CMSS10
+/FontDescriptor 372 0 R
+>> endobj
+372 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/FontName /RMYFEX+CMSS10
+/ItalicAngle 0
+/StemV 78
+/XHeight 444
+/FontBBox [-61 -250 999 759]
+/Flags 4
+/CharSet (/fi/fl/parenleft/parenright/comma/hyphen/period/two/three/C/E/F/H/I/K/L/M/N/P/R/S/T/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y)
+/FontFile 373 0 R
+>> endobj
+1567 0 obj
+[536 536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 389 389 0 0 278 333 278 0 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 639 0 597 569 0 708 278 0 694 542 875 708 0 639 0 646 556 681 0 0 0 0 0 0 0 0 0 0 0 0 481 517 444 517 444 306 500 517 239 0 489 239 794 517 500 517 0 342 383 361 517 461 683 461 461 ]
+endobj
+1566 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi/fl 14/.notdef 40/parenleft/parenright 42/.notdef 44/comma/hyphen/period 47/.notdef 50/two/three 52/.notdef 67/C 68/.notdef 69/E/F 71/.notdef 72/H/I 74/.notdef 75/K/L/M/N 79/.notdef 80/P 81/.notdef 82/R/S/T 85/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y 122/.notdef]
+>> endobj
+355 0 obj <<
+/Length1 1847
+/Length2 13030
+/Length3 532
+/Length 14048
+/Filter /FlateDecode
+>>
+stream
+xÚí¶c|d}—¨ÛÛ6;êŽmWܱmÛèضmtlÛf'žºŸ™yºgæãû~:¿“äC]«Ö^ëZ«þ{W(Hä•„Œm â6ÖŽ ,Œ,<Ä"2Âê,ÌÄ,ŒÌÌÂp"ö
+0–7w42#61°r
+ÀÅýK€IUTTHQŽî??Ó½)o`ní¨ìfûï²ÿdÿ‹Yþ0p;öæ®ÄZÌÀõ²
+ý!`Eá?¬&ò‡€¥Dÿpb±p^ñ?œVâ'•üCÀ1¿þ! ŒÔº|ûC@é?t‘ùC@Ù?t‘û7}ºÈÿ! ‹Âº(þ! ‹Òº(ÿ! ‹Êº¨þ! ‹Úv×ø7qûÚYÿÛãfûwü¿9nÎÿ<¶ÿ=ØÂàÇ5üCÀ†Fîfà¼Æ!P
+ Û¸z0°×ÉÀ
+¼ìÄÜìœ^ÿ-ÓÈÉø qü×WðÙú_lb|
+ÝÊN
+* dÛ§;µP0f'ù¯ÿ%Âä‹
+ÍKœLâ<eRÄÈsñ=n$2d³†ïp|K®I! )xÆö†Ä…ßÌe $h«Î<¿Ç½È§én?%"7®^–ºmè˜a _䀘gt+Þ6†Q¸ç±|hÞ0óÄ…™\+:: ¼•T>ú‡J¾·¬Fmg{v^OFíýÈÙ«a]Tæ3]o›.J“
+MîH†[j(Ú©ì1UUn8Œ
+ø½Â‰¨a’µ[[Öàöøœ¯èVÙ`VDÞE¹@Õýp±mªáŠSÐñ¯`Î
+Ú¡|p_FŽ‘á²Æ“°ÜZ1{±x^YLl4
+Ñ7 j}/vߊ}Ý‘º ¹AÝF<™»öÌ›‰’ÊTû¥[&ïêDâÔ[Û{Ýõû‰}fo^œÌ¸0Nˆ{%ÈÎY¥hê×h("C܆Yy£PØ^sj¹‚/1„¥M~b
+=sÏ‚v¼%ØnÝýc%~­ËA9½e­%#’ÉÌÄ…µzÁŒ^ã®·:žª"ö¨â*B‘Bu"-Z̨“ßö»Í`­ëVC–;òãäW<;‹02%æ6df,«ß–öø±E±R(>–;Žã =#ÉÆL;•/ HªÏÑ>J/a“,¢šÿD؉$T€?@ã®6´õ½i^×1ºRV¤NˆkÈÚ­ë®û²:&ü݉!sXô=)Uøxý‚¾hø·„TYóò
+£ h›$Ò*¬¹tƒE%Uj3˜ƒ8Oú—&“ÌÑwªó)e5d7#ך›ß ®3V`¿^,ƒÚÑlÞqbOŠf$°¿ìáÈ%M4‡ùÉJåóg¹¶ë=ÖùlñwþJY¶˜‚oP¡Û¢"º# Òke»lª3ê±hE¼qP{ê±+™º!£)bí¼ÅÈuÏ+t3ÏâÓ£õŽþwêßU#«5'PJ÷ÊÍ_sbÎAÿ’بÞVSƉcY‘ñŽJ™±L®…°ÿ•f”m»Äµ¤–ix¬é—H†¸Áôî@Ó ²CeF5-Í ƒ±ÿä îMÓhÝ)»Y:ýà_µšèKÁ@¦À¦åU•ÚÀ8H9¨=…24ZÃaÚkwjº©ÓÚ +`¦9Ì4ë­ß€jγð„E³¤ÅQfÞgÄþ´]nú,[Ä
+Îhçò,ºU×ÂÑO­ôé;*Ä&Ãœ¶%ÿ…𺸋ëLÉ,CÛæ»»fsÀ%w ÔÆvmoö'ÌzΦ©¹…dO2±£Éæê&oiï@Üj½î@³æðERÈóå*UmŒ¸¯KQ¦>¤$~0qJæ®.?º+R×0^0»-³/ZÆ™OPXÐ6g&'Q?‹Êú¶B4g…ý™¹Æpj[u^’o+>çÆ_u’g÷zD¡ÈÆ]¸ûUÐàx$Ë,ýéÐcmïEê\N|@ÛŠšß„I~ùÔywŠRWF¢¯Ö{€f/zèÜŠ4;‚ Á  "®:DÔC·Ðã°Ÿ
+t.xûÝÐzLFfÒ—BÛÞ§ýÑeÜ8êká*s!ú¼áí 8:#˜‹dOÙÍhiñ‘ó‹Ýl­(êY+‰S}èœ=97£éÉHS.Eú¤úÛDy¯gf”tk0ÆN¬# ‚úqN V4g»Œbúlͼ5ÅÑSTsì1;s‰~+& ÷ýêHœw{Ÿ©‰›->sæ·aÜJöRbD5-ŽD¹^$9»Þ‚‰Ï!d;Mveœ%‰“GBësxÍ/ŸšÊlìê ”~ žZˆÍS@â!~ý3‘« ÎVÆEJ¼}É]Odâþ^¨•ãFò“ôør⎘fëêjæÖÛ¥&{/ÐÏ&L&22ÉȬѱ£˜q¦YÃWkÔRż…^«ìT”Ø;áÞ{«`Ì—þiåíBFÓ“¾Ý’Å /waRƵ~dñìt²ílWÜû8ÆWm‚°œCÌu›ÑÚäãn:Þ…V.KJÎ eü»F×\‡ô4ù™0ª×íÉd¥Ä$hÎ\Ýðá84—ºwÝÇÆÅñ)1xp¸{^·–X—>ÑÛ>ç ¤¾QÚVèsŠ¦Å˜‹B=+¸¡kC‹´Ë±»Šs÷2 Ü’˜qK6x× ²é ÊoRTv>ä‹í4¨&~+  ™ò%ôn¯]Ø1fÈïÇaĪ*s#|Ûå.
+‚Ö “
+ÈÄ W®Ÿ¾/"®`ë™2÷P‚hhð»ââŽk䥫÷–©¥÷úí¢Þ"¥OÔ1zBÝÑ”—}†<1•§íì™o’+¼
+Á·•=Q‚Þù¡‚†ö\þ"¤“G–L*’V8°ò ú.££Z—}ÏU1å­‚A³{çÒ ¡†ð6!bßR.C!–ŸIôk„h1f·93¹D'è!¹ZXTK-ªÌËêàW2àvŒ¹+Nžc‡æ$“6[¨Ç>í4Ìÿìu€8fÄ>¬`1òéø€f ™jqm7ª·äå7¨Õ`;ÑA[ÌÇC è|•œÖOÑC2gÓ.îI&_3ù‡wh7ÝRF%ˆÒ,¤×É"b̼óuKžÃ©YäY`o¼OǸi-tyuDÁŽÜmÑÝ¢}”±Õ{*_¶BÙ´[à“Wˆ]§æ´p_.VÀ×Ö’ˆÂ2°„ú½¦Z5WÇŠ$;éõ¬ÛGIèBN>©°Éƒ(`íæ[z—ÞƳÀ|¦šËYiki,‰µTnFƒ´/‘c6‚8dÁ
+uíS¼‘.ù o1˜fšÄtèåÿsûJï¡ o»Aq)ÜRš;pÄG#P\T’<pñ³N¢Àú ¶[‡øbûºùýKJ…­qú²£ÈBÐämª²(Ÿmû#¡_í˹Eä4=±uß‹/ÔúÂÔ9ñUO ð˸öþQ¹jü8©ú+ˆÄž*¾uñ©˜!\µÉ>ÖÂwAÍnãùQÇ_>>kâ/·ÝîqžûÐr[÷Ãéú˜Ý¬‡R-(u6SŽÐøIl,‰Ësdž!ÚÐ`cÁ7¯'×`é8Eëi˜TÓ˘CpC
+í‹»­¹sË™”\ñ•»dÇlïÖ¥P¯ŸR:A¯<·†Vì† <,nÎPÏ¿†ã­Áš¤Ì_Íé\ÛÅziJ÷Épnzó²8׋åBè‘¢²åû­P°’7Ÿ¼„k±‹œsù–ÊÁ¢W*c?±phã1òV­<¾
+Ϙë7’’½ºZ6Ù ?»ßßýjGmˆœ¶ŽÚ
+:¥FÓfpDH‰ÝKpqV37ÂÊÒïõŒ‘@×lèyN:àº6j$àj=ì]‰( o
+DA&™)ÌÎ!Qgô«äÞ{cÎî·
+¹M¶‘Ȩ̈õ-le•°Á·Íž®­ ÎØ‘v—[CA`O&«@:ÏPO$+g:_¼T¢¾$L8zc'™Z”Y•X+ÝÓ5ŽöDb£l58þžÿiHÊ„Ïá-½zÊÒÆsý[zèR/H\ àtÛ¢J¨8\#õá:âîÃý^òòç7ÅcÌñòî2&u|è CíÁRíu¹!â¿¿¶3faêÜÍœF²Ê¨l߆OÈ?‡xh QHaØé—éò,aɧUILœ"Ž?˜µ¬1 P‚¾“‘VÁY“f{ƒ0(/²HEëM~:s•ü,ÔY“†å­Eèåhw颷lO¿r`Æf×â°¼ã|ê:ÐPx®wÓ×JZ˜ëý0ŒÏ5&ÝýÍl9¥ŠK˜ä‘¿Áø<‡@Ëßn@o×]þS­Ê\Ô÷VBa\¼£p,eÝyk&úN¥gÕ!°ü¸§…H­n%ü#¶V¾žøu\i“ôÈ[ñ zNóbþót m«,{˜‡¥‰Y¹å14b‹>Z~ý9È@öDÛ=“4 e¯θ`•ßBí“BtIó㟞a'g%׈ug,OS
+V“}®j:êê ¡$dRÍi!o_U
+³q©Ç<[¯ìçCä‰è¨&±ô ¾dnĵúyÓÎü¹Î63¡ýB[sr2‚<‹Á;9¾³´%¡T±l£'™Û½”¥÷¥X¾d6f¹Ä0º
+'œ
+O­."íFŠpˆ)dÄf-q²ªU«ûËæž´Öæ<„Do®ú\ñë»+V9è¹ÉÑÜ^â÷_au·§¨4–{óúöƒ,‚A÷‡·jAÂNóMåå#Áé¦ö ¶@
+Æ#²»Ä­R®ÇÈ ¶²1,Ø},!e"‘ûZYÊÊɬ)ÎaÕ'”2Ù£8qÜ‘ÓÜ°]bŸ*æn*QÐ {G®‚·ÅEÜ$r¬±)Ômª$õ•µÕ¡Ö7¬4U†g8±ð ’
+Ço0Ý€
+NÆÕt2nµêÔOûVÖ}†ÌÜM ÅÙ}‰öÞx¯Óÿ:™BR8…ÿÊŽ²ô; J¶kÿò5õ§ ¼2\Z8êÈÀ´Øïò%SÚÛC¶ó¡ET]P‹öel¶!]fX°Oí1+
+»½^â¨Ö<ŸŽîâÉž@–@$€ÌÂçÓ Ž ¦z+<É ®ÿ£†j/´jÄ+îÞ1¢aê~… †Ü€¤}éî ™ˆ-}¥ÏbÄJø—¬%Ý”ë½_ìŒ8ˆúõψ¦za|Èš!âxëó´eù¬O.³ôê°4®l7z|ÈË0¢"ÒÒã?2 ýµÊ(t;»42u9C´p"‡AhR+À’ƒ÷ÚÈÈúò•²E—Ìš³K‡îÛmu g3ù¡ê:ËL½>qྥ&ðX¨Z^ \éÚðª·ÊŽÖK;ãݦ(†þ
+ʃٕÂ;Yk^L]ØMH º.³m¤Ï‹l.OÚ^åž#J;8ŸÀ`Ùî8m#²n.sù’\Öðä·¥
+vû`Ùo
+ËVÑ Ž›×ËÖºòé«b›h7´ÇuÏz¤²èçáTü0h[î ±éxÒ%÷gdd£5E)æl4Ýúe¼åˆO[ùÔ¨èËL·
+âE6‰>]²´ç¥cà Q«4øÁ¢÷Öå¥Mä
+€®ä}6Õy-^m›½ çñŸ/’ü²jV'`æ¢+þK!-Î'}ÃÕ¨iL-÷Ìûuä"Ù–FNú~Uáñ•˜[ÏòF¨…ŒD¡Î—4íÓÕ8aL‡Vo
+ökŠ5/%Ãí’BþÁ åô\¥ßT³Õѱñ‘ów眖ÃT¬ø$ü4žÖßÙÓynÃM<,“GŠA¾óÀ³Í°@…ÿ<£HLÌ|Q,@› Û¦&9è¾7\’“_Qη#IÚm¼ü¶ÃÛ’Jõe|:Ž8ž-M¿)‘2¤KõBÅtÛ½w ÷ƒmØžÌÀƒlý’> _;c×£f†]Á@Jëê«Þ^tf‰
+^ò U”A”Hœ«ŸpcÆ7Îd“ý}}gª´nÙë–Û'OB20ÝE F5òÁ£,Ãÿ¥<Ýžá™5¹0ýËÆÛȘ˜«ÉC,–çD“ùÏE瀪-!Ô3‹kê¼ô¹¤AÕ¦OQöµ…Fá¾
+v2X>Ù‚ø“R¸¹Cl{ M‘˜²­ê¤"wûø´ž¬@ÈÌăÛ!µëÙºV÷}Ôr²|`à
+‡Ý¨¿U|Ý^C•«ÚF¾­Q‘
+™Ó»8;ÆøLÕ¯K9‡ Ju-ßWuŸ¬_7qQê¸È GNkz=ÏÕ†±¬ƒïS²‰7÷–méMraÖÉ0ƒ¶«™e±âÃÿÆ!Wª«fè=‘§ï£.6èUôf_HÇ f„]µ_ouZ†YÁž%‰Q¶dá’éšéÁÑ*¸vË%>)bHà³¾nA&*ù9 ¶ÌH`,s1á—oÙúñí&·€ÅÒÂ9Šv§úmÖijj™›•k"—*'33Ñ$9ç3„~ĈæWÖÒ ÉãÓ“e<[+ObO¬&RÁÞnªâ®ÐpÊœKÔ¹âW[nxq+h{ñ¡ˆªÚÄ¢©¥ºójuÓ„OÕ:‰OµJ`Γ.AŽïÍg{m»Ôèlö.С€Ü»/ö†ä¼¢š_5Z±¡ó£ÜgJÇYÁ­Öb¼jÅpË:·«ó>•UVõ蛟ãäªpÜòV8±FêÞ &o@YX®ÜÂ÷ßçß%#Šl.{0ÐáÏù\'h
+cF]~T÷ÚÆ_¸®"¦?›®ãœ2‘º/žþ%¦;ÿü§ÕÈçþ ½B²ÞŸÇÃhƱÏà[Ï·ÑŽPCãOÁfǪ¬L̤`ßí0‹”?vï7Enü:e°õW8®HÉEÖÏpµ¿yCÔOÙCo%Ì•ÓÖ34½œÏ¼ÕÃá\ªúJ,Kx±ŽY°Ñ_Ûœ¢>ÓN oГ»à½¬€#V„:íx•Ÿ—LþÍû}~ZÔ4ѤÊ
+„Nk½ÚV)0ÊýS‹“Ùû`ǧS-iZó'þO‹Öh5¼RQfð(ºT­/3¯óàäÙ` &•R0üR<rD*‰BƒI‹žr¿®Ú¡$–Xòú—ûvÛê é‹ZŽY+ÙˆÆ7aëØÅA ò{÷š¬QÄcR„8÷š°ôœ5•{5äKP;6õø}2Ddd2ï×¢sp¥†ä~dtSê)nÆ{™X‹p++ëwUž|ƒ?3~‹=W®d—ÞuLä¯K ÖW¥&>¢ÍûLŽS®Î>R¨TYN—¸âúNQïKQýz>­­ú=ì)×Ð:yû$E{ÔŸ @àUÖCÞ°›Z) Vyp¹ÞÖ©¬<ª CŠŸÑéÀs)½êú6[íšM멦es€^¢L3i10)ȫ׉íCXòÄnê¯/uJ9äm:|öZ®[Õ` °ƒAÉä„ß}iÊê*æC,L U8ƒ‘ðÚ7ÚrBW¹ó¬åÐs¢ä~”â38û(Å[ã{ùkîÚ¼AÏù“`vmìê¶å†8øìc¥ègøQAº7ð®õoÆÖFȧ~×éø"ܺ`õôçöè¸^íj$ZH{’„Xá‹ê½ÒÔÜ™ ŠC\}843 aë_’¨ Ú´üï3•r'i¡çÐ-ìqS–f^Þü.„ÂU]Ìw`rЭõ­¹ MmÚÚ0³’ÔQ¿2
+'2··ŽšÇfíò?yžoi}e¶»)ôfýrÙÆÛwQ£BpNe‰Ú‹M£¸íÉd«æÿ{5”` ìöƒ›[ĵö0_h¤g6BñªÀîgËF4ÜȤh:£ê^Uýݬ³óA}Q=ºÌ4±àwýmÈB®€VœÓkéúØsJ·Ø qša„½ öÇÙ;ÔJ%1¥€Ðï'ß<¢lÁÄnü‡­.&èÛȾ†F&›òöE3¢[˯?B¹Þ8uO! :TSa9~m*ŽDì´dGw¹€/·wo“¦d,l(ÅÊƥ隷ÚepªÆ_“¹4ƒê3È« jB¬‹¬2,W¢è¬_,•ŸÔðE·ÛãªÁ’Înýø¹V•êöF>ÍšZêRz‘ÕòMè¾’Þ3£üÅÅÑŶb— í®è2ß ŽÜϸm«Â…ø5tQ×\û¥G!ËãðˆæúÅ:w(‰"èû&ž7×õw6T;È6‚]G¬3Rt¦‹Êz‰†âɃæØ*3zø–lŠw9´ú{ðtníx¼AŸúÁµÏ4i»¡Ññ‘Ë'0¬
+ÌŽ<Ë¥¾ ÈÛðì‡Ý3̵ɺ/’º Ü_’®c8oWCŽøàŒÁSÖb—ã¼J³½T"3t{e¼ÅÕaµ*ƒòj3â§vw2åò[58¥×ã/A:S/ٸ￑õ%/s‘—Ú0Èx,ÄÚ²0© =b[`
+Á°r3•éýô°h‘ Ú¿oRéPÏ’¸ÈP5JCÓ)qØ$v0U½H:EšVC"J˜è¬#{R"†lA™Â*ÊhÈ3B07ê’ÐÛU©Âý"—eˆ¸¤•Ò×uEežò‡‘½]Mt7Ž{„¹BLƒ*YU([k.ñ?ßëÕ«ËUL·S¶’H >!Àäí;ÿþqöN¿e;Û@ߤY’N$™èÄ°·\M^L©x*'aW·p#øˆ!d”R÷Ê3 ýa½,À¯F]Qg×>Öè˜!`•gBǃXã8÷±¼3áÒŠ«¤JjESø”›‡¬°„TØ0KÚ¾‚„0¨u‚cže3^>P4­}–Y
+ûU¯ÑV?¢á,üåñjU¶Xò]YOc%ú~®"Š]r„Ðèº6ÚÑÌ©0â TÚnaOkAƒ­8ÈhŒ
+Á \;YÊûçkMÇe6ä&ŽÇj"Ôs?
+&ŒOâ9]A_VªRÍä6/{ÎQõRK.°¸\íJ£{åp Ÿ™o¢u3òj"bý\;™Wl¯B¬úC–ƒžÛ<YCB+‹nà–¦%ƒpiìÜí,À WÉkå0A¥L@ëF€àæÔûHÐÊðFôØ'uórbO“Õ–ºX.S¸àï%8°Š]N×ÛµŸÑ_qŠà§\À vàܦ/qΖ]ã)knó½­ô y²þHÕ-‰ýU¾Êy;WkF+à SìiS3«i“·&DÁ1X’.üŸïWE‡%§÷SÓ#Mlã^«Dmk)Üy*~ßMÙ%Ï´9 ^Šâ
+>3"[AáælË6$êq¬J¹‘~#kŸÙ°0ÐÂõ¸Ì(.þpƒ‘o®DìNe)p¯fá#…OèN;sÙ°VË77r1$ˆç¦}@<¼YÙG[“¤ø‰á*k‘?˧ﺛ]½`à†<aÙu¢ªƒp{©§·ý²I(È⣭Õ)—W¸Œè„I¿Zú•- òkqHýw7ÃþüKTy_ðYÖ þqÏ
+ú¼dÛÔÚ=CØ>æÝ`ŒÃ\­—«K"Õ€j"ÚÅJG~"Î\…cY¬$áU¹”@¾»â;|¯'…úõÑ©E-KyÐBÑÖa è>ÇìçpK>ùA † Çsg
+¸3,¡Pq lǸ (¢
+fŸ»iei"‡˜.„ð~-wÙêžNR*?)Í^µP»ûê`':!BÝ•Ñ»PÐ~OE¨5¼]£H›-ž§¤-Ðn.rüáax"÷\‰«bè/}ÛT$¿®ÀòÜØ{ÌÙ½¯àÜú ëü»Îm¿•’¸ˆ|H;WQ„¤;@™¨
+¼f“äóìDTº¸û±~a
+½Ë×OšÏ„2mgfO|?¯0מáM–ì°Idþÿø÷ÿ
+ü_QÀÈ
+``ïhóÝÀÞîÿ
+endobj
+356 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1568 0 R
+/FirstChar 12
+/LastChar 122
+/Widths 1569 0 R
+/BaseFont /VDDARO+CMBX10
+/FontDescriptor 354 0 R
+>> endobj
+354 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /VDDARO+CMBX10
+/ItalicAngle 0
+/StemV 114
+/XHeight 444
+/FontBBox [-301 -250 1164 946]
+/Flags 4
+/CharSet (/fi/fl/quoteright/parenleft/parenright/hyphen/period/slash/one/two/three/four/five/six/seven/eight/nine/colon/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/Y/bracketleft/bracketright/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/z)
+/FontFile 355 0 R
+>> endobj
+1569 0 obj
+[639 639 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 319 447 447 0 0 0 383 319 575 0 575 575 575 575 575 575 575 575 575 319 0 0 0 0 0 894 869 818 831 882 756 724 904 900 436 594 901 692 1092 900 864 786 864 862 639 800 885 869 1189 0 869 0 319 0 319 0 0 319 559 639 511 639 527 351 575 639 319 0 607 319 958 639 575 639 607 474 454 447 639 607 831 607 607 511 ]
+endobj
+1568 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi/fl 14/.notdef 39/quoteright/parenleft/parenright 42/.notdef 45/hyphen/period/slash 48/.notdef 49/one/two/three/four/five/six/seven/eight/nine/colon 59/.notdef 64/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W 88/.notdef 89/Y 90/.notdef 91/bracketleft 92/.notdef 93/bracketright 94/.notdef 96/quoteleft/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef]
+>> endobj
+350 0 obj <<
+/Length1 1856
+/Length2 11848
+/Length3 532
+/Length 12874
+/Filter /FlateDecode
+>>
+stream
+xÚí¶U\_“¨ ¸»ÃÆÝÝÝ@ ¸m\7îÁ5@pww—`Áƒ»Hp‡àœýgæ%3sù}Wçwà†§zuÕS««WCE¦úIÌÌÁ(í`ïÂÄÆÌÆP×fc°1³"PQI€€Æ.Vö’Æ.@~
+`ãæçàäçâD H88z‚¬,,]
+@ –¤€Íìm=f@sep- Øäÿ©ÿ™\ÚÕÖVÙØîŸôÿÚ¥ÿuÝØÎÊÖó?W8Ø9ºº
+àmû—
+`q4ímæEÙþ3ú?ƒÓ˜:ØÙ¿E¸
+z üÓ³•Û_+ÀºÎà§ñoË:Ýþrï< ð¿µÈVµ·ú[„÷ŸžmÞnâæøg3Îÿ¼ÛoApn±7ç#pN‰7'”|#pßRÿ&p×ÒoîYæÀýʾXBîÀÕÞ\]ñÀÕ•Þ\]ùÀÕUþM¼àêªo®®öFàêêo®þáÀû¬ñF`Í7»||#°‹Ö«ú7ñ±¿ÍèFðéÃò6q|àLÞœÂômêYÁ˜ý…à€á?ó‚›°ø Á]Xþ…à6þzŸXÁ}Xÿ…`'›¿,eû‚­ìÞ leÿ‚­þB°•ã_øÏtý…`+Ð_øÏÿ…`+—¿låú‚­ÜþB°•û_ØÊã/[yþ…`+¯áÿ>"ÅÅ<¼™À¯;øµóÕ÷¿-4u—}}Àí±¹øX=€¦Ë ¦!Ö©Íae~R?Ê¡é!Ä-Zâ•zg»ƒ— l‹Gœè7êµ*Ò1Q~Aÿ"u"tŽìôQ›> tŠO›ùåfô+Ý«Pû2]ÉsÏ‘üOðjGóÜõ1„ÊÌÆXYò§ÂÁ¬ó¡£<UZIß°kdïútÝû2B¸y´¥Óm5ÃCë©9ÈÔÑÒœÊ>s†¯»£%'¾_Ÿ
+ö³‡keX½pètÅx(€ËMz1„2›øhôGá4ÅyGç!~üF]€~iäŽk®Ò×O±UO&ºk¤™lº¶—Ñs4WŒ.z_«»Wªç² uîUàð9Ëe"äy­"Û»
+É4ßÕÅ×PûOµ¬çwZé(ß’Œ,Y*ȼ6}ö8ÙjœE‰mï¤!Q°Qã¡ÔÐfÐQ¾Ês(„.Ç-„J=W5ú%qŽ¯CÙ·–.ªùlÞ‹F®J9¿Æ$·Ñ´t<öeY<x[Ȳ0ÞIò#Ú¹àŽ¼z¤MoC¹Tš2øC3-/s¿è§xéÍxÛ|U)+ÅMx¿EZ£Is³3î‰Ìb¡ LMç ÅN¨§©O©­ñ›‰Í¼`pQ´¡¢ŽfJ‰Íî^+\(Wñ|•ª„Ë¥pƒY…I_9QFcÊŸ“€pU˜Ú½/ÙM¹J{0ô:ûNâ5gsù]Œ9òbÆb~)èk'[¶ùb aÛlj¼Œ¤ï)~»N9¬ˆ/Úæç +ƒ¸”³-°gTsþ2<fßëÐbõ.+«l¥M÷YCõ-"[â ƒrüó©+´Î½…}•}vPf[ŽY¹±bJ—8e9±žKwÖ²me²…OÓÑs5üGà M ¦3¸·>Ų¥üK:ì5§æÏ@Õ}Lé)®”D^Nl6ÌX1?óœ¸iв ¥ÇØQ:~þ
+œ8@a5;ar…ú“Ppø¸þ¦s$Išïî5EZóWþâ8†¿ÇÝuôK
+ÁNCq2ÎÚÂý.ÃoGÈ°‡Åt”Ú—7n`6SÕøK†Î)$D-_jý¶\ ˆê 2Všµö•}Á󘦲*tˆO¹øE³Ñég¡( Kžƒ£Â]†Ò+ <*qÙù~$5[ggBûdÎý‡¬#¢t$]û.M:ŸJ’Îm£±rÎÞ£Õø8á¸UˆÐíÓÚ­XWòägVtÁCé•_Z›™z°˜#<~Þ)vÖ
+!ƒB‰ÏáNHñ™Av\«_Øší•ñ¡ÄÑ_ÌtbÚ¨žØ‘k4‰ŒzdÔÞeÛ2â“Æ^j¤¯ó8;Óª]x•áp¿åÏŒF[lo멺
+55ϵæòPh~Œ&óPV¬âcUÄÅó¤«Ê%žåŸ¸ÅÌÁY!ÆLG´ï¡bp"%Ð{gÿn`¸Sw^7òb Í~ËpH´ Òä®TÀäB"Þ{ªÃ-až¤‰7sSóÏH¨ŠÐ·>—^‹Ù¼†Bn‡ôë ¦,höì®™Z›‡ZP¾A!U¾~3Î`r<Å ñ)”_:m¼í˜½æ}Ïü¡üO
+‘ß%M8exï}QdY«רÊo¹$”ß|¿Hg~»Ø††(–Îœt쵶¥­ú^iýniQî?´¤Xš¶Súä*
+z­Ç(\'L<©ás¡Ò¶¤ûŠÎ»Q y/!ÜÔšlžzd]Ïãij¢ (Æcaº%ÃáÝO›§½Ú(l¨ñ§xAKÛuyÒ ›Ã€ôÈæNx=[ÐH•lÒ^8¥r{Û·£åÖO#KIX$ß?¼®Vë8H&ªnRÚ-ƒ¥áJ•>Òð¯V¯g,âÛº—*è^ö{säg<uëËU1Ÿª–d>¯E«òZ]Ç3û<gŒ<ôuDiŠ·®â²5ÝÄmÈ瀋l¨UØ 6܅ךXˆ‹FÞ ‘¶F$vâT¿èØË =bê´ç<m]Î!£WÂ(ø‹p@ª9¤c8ÈñãÒôctIt}ÊR§E¡
++UxõŠ2°qéªÞY]þ!¾;OBQm,}ß+æÑâöqCüaÕS®¯Ùr2S1Øÿñ„ú};ÿ.2f™.Ð<àÀfœY•ý¢©/ÅÐ/âRn=ù®#/MrŒæö¶ÛÆw„¸»Þ)NõŽl 'ËXöõ u<§WoÀ*ËEâ‘Ú,ÃbŽwÄÒgN^Ûè²â]À(ˆ)¼ä2AEÖ$‹¸Ž §k„bø¡sóˆÖ¿Îh´Mj» áçÑM ×y8ßO6m9TÊ°^ÀE¨gU€ž„1ö\©§^<üs
+¨ø}©EIiC×-F>Ü«;$‡§‰.ë„ IÞX´˜ý«M‰Ôå¯$st¿k¿7ŠwpÌaR”º»;EØe*1Žè)O;Õ0â„D%PDÀ‘¤¦‘2 Êûç·ò¡à¯C¡æÁîùófröÒœ¦sy¾z7u¯g› íÉv›“qì–MÉ|,iÆ+å ‹í|·Ê*œlü.y!G’hvÀÜmäSÒV/·^Ú©¸lŠÖÕ:¹É86cÎ4$©Ó*1_Âýž{i;µÉBiD“*åyËjÃÞ¶*Ë^7Ž’”¾°`Wªè;_vëÛÏ*ß#õiÜvhð@£ËfÁžÂë‡7†dmFÀ-¢?˺š˜Hq#•Ïw<ê!‹¾ÚABÕê
+«®Jÿѧõ¯ ŒÈL»÷¯¶‚x¢®B€w_ÉÀ‰þ°È1Ý•í5“UYŠxÃ}p¨ì„4/¼fÙÒØü»Ø¶Sß«R€¥mW:’Waì Õ+UÔ1,Û5l|fS~…Vöòs±n“]yF€ N~dCÐP©ã&8Z¨æT³>óƒøyôg…ÐfI–£i×ïŠè{>uØt­©#߬ZÔ©Bê<4«|žü…ýâ̶›ïgÇ<ÌÑ°+ŠK#“c˜IºÆØŸ®gwÆ®“U”_Ýêf¨,| Q®E–ÖqK. çÑT ñmjr„9®,vÄcæF*¦o³Ø0 ¹6QÏ﫾j¥å %xgZ†^;Uà¾įj÷F’HIÑî0â5=À[ÍTÉ}¯ð¦bósj-^¦°˜"ôy
+ÛÔÿ•ŠU +z^¦×BËH‚¿¼–ð3år®†QœË»¿1t ÅŽ'î+”nA5K]ÿAàh’l0‰ín¬d§Á©rØóÙMrߺxOYù x$˜É1±@ÀëvèÙ=¤tðýÎaùl‚wÒ/Ó]„(ì]¶L9 {Un>«™éÅ¥þô}:R(Ž5"ìW¶Dú6Ç„÷RòäüƯprÇÎQ¾ëËz2Þl™ŸÉìÍ®"B£¦¼ß» ¦} ovÑ¡&çZDj­ƒýRë&þæùó½{mãljŸ¸,u5Á2šs’è+­=.íQ0}p.UÐÞEvõï1(0Å@î”–\Ø=-@½—”!¦þÜ{}ü§ñ/ºÇ¨þ!16Xû™\ʽ§ŒÉ­£›ˆ‘&Qj[%ð¥œ-
+Òee¨
+Z†à3q(TªiºÅò²½’ÊI)çŽä;ûé¯Z””½”\ì„Hqõír@Z=|"‰§H Èô ÝKn»co‡Ë©®m¬"Ϻ¹ßÄáÆÂ+ú‰e×™xãÛ.^6om´'oJ[]~7vAƒÁêãinR"?ƒ;Ë¥+U|?úË’xKpWq°®‹UìïlL‡˜ñ ÌX¤Sâ¢:ìK¬JĦl7Qnœ
+~%êAíwbQéŒD’ÎÔÆY¨Ú[-¯ìÿ¦I¶äØ]ä!X¸T[LGüƒÃ%Å”S€á—KåaÁåAÏññT½­š;heXÜI/’0ƒ zœ+cãÞXöçvÇý¼ÀF¼7=¾£öA’è™g>.ýˆDç?H£|ž áòÒÞ0ßZä‡f;n¼›”3®¯ø¸GHÜ…Ž3L3äp6Ò&=-‹ £å¢$6s¾øF­yHˆÆ3pR²|0W\âxE€ÂæA –}æ·èÒQ¶®Ó P,eìWaŸ§› ·RP÷ƒc?Í¡Uæ(`æãRtþ€-ÙU ¦xÞ!…§ß°¯Õì÷™Eò悾_²¥AÈô¨8L/¡ÑJù|ü¶ðÍSí–ä5Ñ(—ox.o®¶Sq¯‘9Bù²TSŒAú°­\Œ
+NfW¦  üÁEWŒúˆØÝŸ¥[´$ù“ ½3sû¿G).Ài.Ó’9ÙLÒÅk‰<5Ý>\ø5]”V²G”’öºA§
+t‹=ê§ogqƶÜÆ1æcF—š¢üRûüä¼¥Ç ý>“É»kBO•;|[$cztµlgñ^{:º*¦«
+6^õŽêóŽ >†Â`È1âÚ·É]úèÛÔü6b#×qZ낰ž¶Ø`¤Hb»>­AcT¢öß¡.š?È–Õw¥U–‹¬ù¼EðÌÆ„Aâ.þÞʆ¸çL0ƒŸXȇÄGüü¥ü¾‘]YˆòBè£óTd0E’Æ/‡2ˆíÏ
+é“ÁorÝ«[Ž¶}éö/*ÇXAŸXèü£ØóY¢—®ÛqkÜ"Uyz¯YÊø4‹*AJLA­Ö‡›Ù «Å£ e£JÏ“0»íG8êâ.Ð'·ä³I!ÆøU[¦èFêi¿Äðs˜Ÿ,oSs.\¹%ö—Š¢£ô4Ëd¡sïl/½ tÖ|Š:1žû|ñìà2€”¸¾A”Ÿ>Åti@8±cu…ŠÏ´zƒª/¢É†éßú»êÉ‘)ß0áÞ)*?–ŽŽe}—O³]ê£8
+Ú‡g!¦”Ž¯üÈ€;A“Ò œw÷PØ÷ƒ¤Õ&Œ*ÙRFD×þZSD¼ÌO/>ÍWæA›6Êÿ4´ƒ€­öhOIa›ÃŽyõÈѹÀo(ωur/85SyøYS#‚ Mh²‡÷7~ZÞµ•©©/ög£Q3 R¼g›ºü…ão#/£é{êÎ_l¢&`DSV’
+]Ô;šo-–ð9ã6“D¬'¬q€›e›R•þøZVh§LtMÚI}ý>)èð/¼iL’dAm§…䵕„ç”gOÍ-¦w©—ãÄ‚ýa‘vãG‚â;|Hj/nyS<àø>iþ$Þ[† ‹
+¶J&º£Ñ¾Ûƒ… a9UÒ.¿iCڦ݆<_·«MâiŽ:YŒ—©\Òø˜Š05PPÒ„g¨XTÍIGß©v±O˜McMÚØîí°,³´‚Dé„SdÑqÑŒe­§ ãG2¤M™—€àJ.EhDVŠ p=@Ë‘
+†&QÉcŽD“dgl®·ÅÞÀ/Ò§ŸÎ-Ãañ–ÕââÁí,Œø| 2)¿«IË/úÊ94Å«Šz yè[Ï_˜+Ö{ÿòŽŸÀ?@.!¡èh[™´)Çþ¾¶Hc¼ï¨µAºÉDœqÏù³¦‚hªn¼»A²ªî²„wÁ .ôqëNö@üÍ'ÿCÝJB E#¨D3çìx¤‘Êļqu‚ ¿Ûì<,ùÈ!@¿_÷4ñ쳧ó=<§!Š¹çRù‰¥gŽ‚þm )±ž´¤b²u‚6Ï=k›°™M¬d®(qÒ}±GÕ—X~ËÍÃ;r˜bÓWã}árˆ?¢h‡y¼V¿)³U¦÷VXÈ:6¯ÆÅRÕhš}à7ÛTå·Êk3\²9 ÙoíÈק©ñA*koD%» ’*zY>–ÀWXã씑\`D,oIÃýª\ö^¿5¹ñ-„0œºæ
+>-†n©þ2Ø‘å@-:£…N¶F¨±8»¬¼}…_›QUáeL3ˆX+Ñ%†¡®n"ï5pjÄ­ª˜vÿRYÍëGR¶§ÞÁÚfâ¬*#–¤_&dV¨&2)‡ñ2k+•Ï8a×Óò²Nøýw“p˜Ü-_Î=¬cKüžž='VVèˆa'JAŒú›ï ùúž0 :`¹ÙMƒÈm·w)t6$¯@˸r£Š†@"¯WS£ÍR¤YâÉfõÖÎÆb¬ƒ8}
+¿vR½h|’‡ô@8÷äd1ë°¾—„ÓÈ'¶¸#«¢âç×êõ¦®DËüŒL)MÊE$vGuÄ—‚º
+n|èåX–j»#ï¥ì´rY^ÀÄ;ˆ–CÍÍjÀ•~Q›8À…A'?Žc£ TìOOd¸ÛŒ¥l%/,S*BÓøxH”~o€'ïÿœâNº*qÄZ$opGôš»
+òüØÁ³‹üUkšßAhHä7ʸöH ÁËÇ=±¨Ñö+è€ÑMÆĞ$Zõ Òoíߣóù†ÆÌ+÷åûA–¾×+{wOÖÖ2Œqbd3gÎ/š‡ûÅrhé2ÌÃ
+A9Çœ õ§¿zèÙÝÔ)b>×h $©OÚŶºk½cUj¸Ã
+fþ³Ézž“«ÙÓ ãk¨¶‹%½Š„ö>O‚u¶;‘%…Æf¹ÚJÔ .KÏÐh˜Ëªó–³ÙÅ„¬™Í¢¶ø!ÑÂÀæ‡LLNÆòÒáð7iÏ¥9/ƒŽ­¤¬ )çþ,Ïß¹—Œù•ÖÚ&•ìQ¦h÷¸w;o³‹x;Sôl_¹×«÷¨Ã Ô?C@7Ë­¿Jë:šÙgXt ÀŸÅ]ÿ~–_joì¬í¢²ðJ»™]ŽËÄð¹£Lf(VÉ,‡#gPíC;gÐeiÏ4Ë•¸N¼…ÊÑð![RÙ?ó²Ü)\ˆä7‚:ï§$4.¦-Ôuüf
+Æj³Ob¡ ý Ÿ‹B+Pû&ºHMƒ6nöjKK{"¤c²,ÏÂ\³ ¨6áR©Â‹ýÉUÉ\-›=zìBøyg},ntÄ;/×é*kØœÉÖ¼E¤ÒÿtÈ9}C Ôõ ùÉ#'>m,ÁdOf:­|²ðõ2ˆP„5eadþmr´ÙÍ“çÊ;íùøµLNí¥ÚºÃÞHÿeÝ©îq0ÕIühg<DFÕ™ß`‚²ÞŠ¤Ù9ïý°íA…ØB‚FóïwÎ#·rñÝ ¼¢éÙE3·x궠wLr—%–ZH"„€oäLQÜåú•\ýÚH%°¼Ÿ.™H2ëÂé}þ*>Kë 8Ò(v_xM11ó^[ˆ]¼w»>Q>ï«Yè×€>*`ê2èƒjªÏ‹š£B7UÇTëÛ cÌy³>ÚÓ„šÅ¥ÿo5GŽ ¸¹}Ýd•NÊ÷øÄU6íïö®cÖLʔϽÄz«!¡’B.EçMh`³ekÇé›´=ˆFë6°h—I]¹ë‹c¡Ã2Ý™–Ÿv»Ôê!î¬ê'2"\‘éo3زDÐæ½f»ɼ(àÓ:©Ku¿R”
+%þΚ ,æ `´^/‚=7¯Û5Ø-¨<Qø€@<dRÄ&È“¨Ž¥Å>Ûn®7I„÷£q‘AsP–ðAŽâóû¶«øóƒ;×Ôž5Q4å‰æ^]´$ÎÖ«m¤ãv’—˜ðÃ:ü—ÕM4äg¦v&ýÇØ8e´•ii.Ò¢MÏnYák|-EµùéµÆIIì@ƒô‰J£¨mAÛi¬%+Ÿ4Ê®+²†q·îO*$±½Žt)3¼è_,¼ÄÌ8LxK¦¡§Ž¶Žá2É IâÊáªhS6ü‹5¶‰£jGH(ÔwöûÂnò±TúÒ39í]™“f
+"»ön¸áv»‘šT;‚£Â./ÑÝ£hm¶
+(´œzãCÞmpŒ,i–ŸéDÎa9ÙYvƒ:‚k¶êt2™¬Ê»üÆ1_‘ð°ÏÑk~s
+»…¶ >¹ˆrÏ ÓÍõ(«Y1Çø,LÀ¦ô}—±†TIÂb³#» SðQû.:­òÂ$˜Pr;a%ßñk0OS…ŸñQ÷½UÄä‰ZÆÑ­·_­…î­JlK©i¿ƒ.íUPƒˆ:Ï 7ô0ÓÁÿâèÐŒBEPÆÒÀ} ü¶ð!Å;™Ì÷+[òcxB~E‘ûIœ^è}ÐgDC„¨×4€×OcÖm‰[§x?¼N„ø˜æ8ÖÙÀ‹lDÒ§$èjtž9Q5‘¼0  Ò4 çÂÙJÅ®À(眨Í•Jë‡×º÷“œ²nÈwAð‚Ä ü—ª±ZÃÀ¬. v:U\ËúËÆJÇ´tKІ ”šß Í1¯#2ò‹)tq¥™Ø£¹S½ö¬&Í1„]Ÿ‹ò.}“5|¿¶—ws1 OŠõ¹|k?Š«5‡¥ÑW¥ýAô¼ ¼\ù²Hªûæ–ä¥Î8½2³{…yQ/ÚÒ¡ôyúíBÍp,ý/æ3Q©m²âð±4Ú²gRa mMv^aQ””åBצz´?¿ÒH\q‰y¢Æí¥ K؉ª&¬>o¹{4ùñT-Q®¡õŒØ$Ï\UaŒé׎Šœ]’x9}²öIöv²°ÌÁ(xD• »p¸SÕßpðt—Nþ‘5Ó/eÒÉ9|)ùàò.–¨7<Ð|¦ýê•™ýçã)û³üáQÃébe˜¼)]YiYže`÷ù”/:l;¥êëßC17ˆ3WãG@èËžÑHGXÓKð‰Nse”’ˬ´‘¼.K )&n©
+ÃrœQBâégõÜȽd ê_ö‘våÿØUªWV<éŒÑÝ6h~À6{žŒà‰C.tî}¯7ÏvLê–.ÞSñ:“–è&:œnéƒ ìæ‚pF¡g†Ð+GO
+³N±¤‰¢ÎÐRk MúB9EÙ¡d—ÃJû©¦Y‡LÍùX飙¡7?:Ÿ\ ma0¶…~Š)Ç¡Ä?RˆŸÍjWC½ ¥x®´Û öÂœ›Æ³·MyàKcž©ÔHùºÙf¾ˆ<tÏRoXÔ8Ì\ÞíëãÓI`UXbߢd ¤I§‚„²\
+ aöLN÷¬U…úʧ6zÖfôÝÁ$Zpe(¹tvÁÂI™ãäM‹±<Da= †D: ®_|MzH(žõ
+¼VÒíø&üLh€VÁöyÓ­i3¦³1N[8êOÊJMLhH?Ǽ9i„Eyî­éxœ7+fq¦0êèÐN#߇‡ýƒøa€ÌÎG’˜’(U"¬ÑK {¨ˆü†wwæb‹íæ)Ù‡— )¾®Î×µkÔ~Ù<L$§MÑôqóãÔ¥„,}G%‹)ÚlÇÈED |د…4Ÿy¹ŸÜPH|·[©˜š/é¥Ãg{ÃŒg¡œ¶¨ÍéžXx³î"YŸ=[Û-¥p™:`[J{†ÔFD’g”#þ´Ã~©ì~u Õ¶Õ)‚¹¦IEc¹î@œG8 qý|ÌO•q¨m›Õ”í|?àÚH¥ë-Šó4U4aHöÚL­ÛGÂû M…öv—o¾]G–ì)ñG¤Þ±³ÞA"/DÿËžÏ\PºÏ„ÒƒÞ
+½P¢Ú.pŒÐ"™÷OýÙàTfE!Ô …~ ëÝ—ÐDyOëÿÇ„ÿ—àÿŠ¦¶@c‹ƒ1Èáÿ
+endobj
+351 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1570 0 R
+/FirstChar 11
+/LastChar 122
+/Widths 1571 0 R
+/BaseFont /TWUAIJ+CMBX12
+/FontDescriptor 349 0 R
+>> endobj
+349 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /TWUAIJ+CMBX12
+/ItalicAngle 0
+/StemV 109
+/XHeight 444
+/FontBBox [-53 -251 1139 750]
+/Flags 4
+/CharSet (/ff/fi/fl/quotedblright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/question/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/Y/quotedblleft/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)
+/FontFile 350 0 R
+>> endobj
+1571 0 obj
+[656 625 625 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 581 0 0 0 0 0 437 437 0 0 312 375 312 562 562 562 562 562 562 562 562 562 562 562 312 0 0 0 0 531 0 850 800 812 862 738 707 884 880 419 0 881 676 1067 880 845 769 845 839 625 782 865 850 1162 0 850 0 0 581 0 0 0 0 547 625 500 625 513 344 562 625 312 344 594 312 937 625 562 625 594 459 444 437 625 594 812 594 594 500 ]
+endobj
+1570 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 11/ff/fi/fl 14/.notdef 34/quotedblright 35/.notdef 40/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon 59/.notdef 63/question 64/.notdef 65/A/B/C/D/E/F/G/H/I 74/.notdef 75/K/L/M/N/O/P/Q/R/S/T/U/V/W 88/.notdef 89/Y 90/.notdef 92/quotedblleft 93/.notdef 97/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 123/.notdef]
+>> endobj
+347 0 obj <<
+/Length1 2247
+/Length2 16639
+/Length3 532
+/Length 17882
+/Filter /FlateDecode
+>>
+stream
+xÚ¬·stݺ¸ÛllÛ¶m+¶ÆiœÆ¶ÕmØØN;m}ëÝûœÝîóû÷ÉÈX×=ïgÞ×ä³BA¢¬Æ bîh
+ttpc`adá%SPea&fadf…£ s˜¸Y;:ˆ›¸x‰YxxX‰%¦ÀÀ_^v^V8
+b1G'okK+7bj1š’¸ˆEì.Öf&Ä
+&nV
+Žæ
+È%’o}¾ðCNr+ˆÕԧх$Al·!ÃÖÈÌšÆðaAºÍÖÀ €#uJþðuÎ4ñ/u…³ÞEy¶¥y P2…GîäW>ÊÅÎm&”—ëWÅva"Œ¾Úóf¬ÛÒ×Už‹QEUxUPóë¦@[Gu„0ÛV-«Qk) Ú Jö
+ä°À“Á*È…£ Gð5Ñwf8¨…*GR”@†òð8øÞD›I^ýCðÛ¨¯ß{¹ÒÏø‹½º^Ãþ\C¬4s誜d »ùKò ­,+–5ÞºPx¡Á`jÎ8>Q·u¨Qκx3É^<±!—qr&>z¹%ÐXç‚2ùÌä3¤’€Öí–;ŠTÝqúih[­*r:Wê~ІŒÊ¦ž;k!ó[Q³».wóamU/T>nÆëã§ç¶ÕÛåŽãì«v¿î¡ñT™¸ñ¤h\l”'€ÿY©Îj„†/œ4”+õáîÓOÿO‘ ¡ b [?0ÏAöb&Ì"o^ù.–õƒ€ê™ÔìÁ5)ë?ଗX‡
+BìÍô™{lÏĨ\hö;´™ÛG “ÿdµ™½Q’j–âiŠ¤¨±Èx˜Á>–—=ÉØxc5åHÕ73÷& Ž¾¶>ö¡Ã©±ójÙ7ùÖE74ÊÚ¤&ì~/ƒw¤3sÏ!)èl™«¨$áè)Gûø~³<ÈÇñŽìÚ!Þ8…YŠ.EX4T0á% ØD$;¹Oìže#/n±³Œô0n[µ¿ Á>;ý<r2¿œÀ¸çý³¶zÌo„%ʳҾu‹^%!>¡ˆ^Ľ¥»ÁL±b‰¤t@i‘<ô19‹þ¨Í?ûbó‘îJ†¥q¼ÒÈ Ïñó÷‰ë~ª~8@x¼gŠ³¥I¤:ÆAnVÌuuÓæ ¯üض5¤Ø°§•W£eÑ[lJuª­«ÖOì³ÝÏ?Çûov`1BE:$v-ú·UbÊr£«sãR{ÐÒÐiR®å;JìQ²×¼b‚X¿šíø›`9ÃtÝ?ì*¤™µI1ùf5q²h ‘0ÓçRâ¿zá$­…oxëc;òκx²Å›ä§ËBO fè(üÚÝ Â8FJÖÏaóи`õ¸áå%\Éù`²=ž«Z³·,å“ µ[’É«ŒW5ê B4}ù³R‰^Ÿ•–q×±!Š£3WS<è%(ñÛqÇB‹ ý¥-Nì ©c+‡Išw Ž‘¹ÇØË´z÷ùtÑ#ˆ"ͶHÅYÒ-ö~VÍ…zž’†ÅK_óÍìî†
+½å[à0±¦ÃÚ,í+Ô¢FÔˆàn<¤ŠR9’ÿMâBƒ,Vüö:ÇÜDØ0;sYúGEƒ}"UÞ󂸕]´IªKgÂjZ©öqY.y…ñ×HÓ<MbGã+“†¤QMBÞæ»*G«‘½¼÷=“k¸“¼ç¸V˜.æª+
+¢—CÈ’œÆ YZüŒ÷í²ðIóÄ 6?ÃÁ]§ñÀô©ŠbÍ‹w„M«ïÃY¢ÏØi
+Ȳ3ÐÞoéX§É°’ÛU]­ðìT -vF“bƒêqÞa¤ú!2+’~ôÈþú8‘Òëý#0—¹4ѾzÈȨkY¸§k,Z±WȘµ¯\¿LeXý~×Iü¨ƒ¦lè/$àó³C¡n7¡C/®ÖÏý‰Ò•ö2ð•1 ÈÖ‚¹<TWpdR†'mX=¢Ç`¡yÒ²C!±
+Áƒ´Q•©ž¶O°îüD—+”›ù˜$²W½òŠ<m³?H¾Õ9xú’ÀÒS¾|Ñ3R?«T=â÷®s¡-Ù Ð6M~& ž
+¸J=JÖ¼K.t3L¾äùí
+“?G’îï·Ú–-zÝA•Ý®uÄ`8ä¡¥mëâñÉ}½¢H%é
+#9ÚSÓo9`¤îjñ=|›X󮌂ræÌÏóµdiv4wp¦o®ñ»|M/S“xeŽ3ƒ¨d QŽû®žðž.Ô3®´H/{)€ÙåÝ›-Ï’Ï÷Gýz¬F½±”±‰¾ºhŽ¹›{"ql£¬Ë°¶÷p&Ä%Ú> ñÃŽñÏ_à)v‡Çj±ñmyþ«#Ýn‚ñ4g<°ý©d$øüí_êåSæÐgç¡¡õ+ÙHŸ‡£æq3|¸;;™-© ‘ÑŒQo·©í°D¿A7ÍÝšhÎz['ú3ã\ûNIPÕóñÎ7fÅ!2a‹*7MÒÌL®‡ex;ͤÑ>7Tz;®·Üöý-¡©Î†Í Ây>²çšùÆÉ1_;…m.£2ø…Ÿš,ô¨#Dö¬3ÅåØx˜ ¥¿n!³ïÇ'àWs´b…l±d0‘ ºí¬·Ø²·ÞüYH=È|íp¥Û'?ÞÞèñ§…Œ`;5y‘ziD&K<¢Ég7èà› ™¸:©,ïbÝIû­2~ÎTTØp:.çU<™ýœ’¬˜è]; •ÒB¯W;J”3­ÝƘuŸ¸~` ŸmAÖ\âvšü®^ý»ê˜®§›Ç^dïÜø
+|÷¤ßŒ«RN‚¹õ¬Zä÷P…*
+‡HtBAòSŸµÐÐKWÁñRè$u)pJjÉá±›Ô$¶‡~´+çí_©<{˜Ö©«#©$¹÷õB{õî Š–3üZÉáõÇ0;”üIºy-Á2qå…i4Nê,­ªÁÙà¿gäùHON¯ê®ASçFbëˆ 'lSj8yw›Õ¸zëØÆO®éôÏrNíœèŸbóYïtö.Qe-*ÔÛ!t*
+C¸ªAmˆ¬Sƒp6štSîfÞhgÛ½¶M;V÷ÞÚø'˨)*­¤°ñUÕj¾"ÎdK#¢¸Q¸”fû?n,¿ãnù^ÒãpFò¯y÷®J@·å4·`¿†”~YO9A¯®¸ÒÍ‘týg ™—Åm«µôZɶyrŸåaÑ´?ûÏ3ÂS?Bak[øNàô48\.ŽwêŽJz-ù²mzû4\Ê«a:kSBò?ôNÓã|CFr_Ω¼-/Ún¶»(ÛÀ|€U FCã ÊRµ²Ä©)<`9¿£m•,RéÕ°¡U™$‰ý0Pië!i¼[‘`–ÝU9ŽÆQ<™.rsÓ¸÷7cÀÎ#‡qÄ?å÷Îe&Œª4ñNWÂŒÜbßoú¬d2Žæ‘ƒâ5 Τ<ç\¾aÖ þäš1;³`»õq˜“j# ´ær~Ñ Dt2ØU/0Š­ÃkS¬²šÕƒÀû± "
+$Ö
+ܼÈàSò}Çý¼aï‘tÆÔºÇV¶3yItq–_AÝÉ"jY_&-÷ÉõÁ'
+ôó×]áb͇٥,zfÆ·­ì°Ó\C¤óן…a0æÊ+h[g߃×lw}qä¼%C ñuŒt¯âì÷K~%—(q€µ«Ÿpa‡äóÚàÈž½/tnùdæç:ŽÖáž¹ºË+eøÁ̳ÑNZJíb­»2 Õùæ‚·ø; ,´Hû8>x
+4e*¾.÷zKw¦H&ëhÖS  òqÚŠÛ·Ô§¢-1c,‘nû\•ƒ¢ õc1VãΣӎö®ßF©ð¸@fãÞðC(¶Ëv·Ý]ÏtìË6Ÿˆ›H¨ Ä‘[Æd$tøƒÁ7îÑüÎŒn´@K~ŠcSæ«î®½›È/8p€YÔvö$§”½oØ!)
+Ò¡ý¶!Ëu_8{÷pÏÍ™¦ÿlm¾ 2’ª-íRÖ¾3³C¡¹ãSúÖw®¬¨!K»Ý0g°Ñon¶ž3ˆËk¬¹7RðÕ_È1tÐMËça×aÂÃTd®²–„úåq
+ãÚÈÓ×ú:Ð
+ï¥eƒõeìú`Cã+Ÿ£†n¶5î7,’½ãå/“cÐg ý¬z8‚+‘¿­,÷Û¯—;¼^nGlQf&GNžS:¯ÖŸã™-ŸÝ±¾‰7|ÚÖKîÜ&ìðO*“;U“꺆·„¤;Iªâ™A‚ åcu-x÷•UÂÉG4”VÄG¸B4êá¨ã: Û žh"úÝi âÒá”- MQ_ßίßyQ2Ä€‘¡ê7É—B7¬
+8T€®+k 1±CÞ¿yN)B&Æ-»s?•Gmc_ßùæÿb#Š¹Ñ• w—¹QàËÙß´gvˆ‹®šÚj0±nq«ªàdDÚt2øzA9†›ýëçg²rpgç''·q&qzæ·§Éö=²†[5ëOØÅÆSlêƒñ!nëT­öÐfúšó¹Xi¦Ò˧°Ó2Zý­Ô¾hŠt殺âc]qòC#rðÒ € ¸£/‡;×!›ªÑ©þ7û(ä×Ò[Û)'æÛrÖbØ)–¹"O›êD³Û½1Î ŸáÉÏ)ÊÄñ7i:È
+Vé“x´Óx´Q|&`¿«ZΨoIÎPßh1NÿM4NŒz–øDŠÚNƸ˵áòië5²-ÈŽ¿{9´¥C æ¶ _Ì^Ê¥›ò4zÀQв½ÂÏÓ¼º¿&L0;ìƒÕ7ó©° ÒÆd]@BŒösöHã ‘m3SìÚ&¼z9-ÁîãÖ¨7
+¼2Ú(¾™ò%».%A)¹¸34¯k`½yjÄ0Y3Ÿö6b„é´âðåÝ»ï´O‘¤Ž/^’Œ_ŠÑ<¤ Qï47ûÀùÅ»Já‘0‚–"
+
+÷àæ.v—³`Øò™¤;l~×Õ+J>‘ñêW£¥‡Ë ´¦y¥ÓÓá_í… ×€F"o\ãŽ}µŒ´Ù }f’äãC¯þwåò6¡ãK„‰ÙÐ[öQ9*J”t·ñáù!¸xšñ–„ieÅ™Mp/NÑéJ8Ysiôè–üÌ=ÔG±ž…²Øôâ
+sü¤:Ô®sÕ‘uÚl‚3؈á»ò=~©` )$™
+§–áÖöd9¼ýÒæß•Îà«f†IÔŒ[ 2¢œô³Ñí¬— }Ã@V¸²‹½uºM»Ù¶Tž®FÇÙRl4#¼wL!¢ÈOÛ³þðx)Y³Ê Ÿ§[o0FŠ'ª);á^GÅ}"á+ŽõÂ:6|½=°
+©WÊù¬Q~CeeL4ã'?2)º1u/´á Ÿ½—,C–Ô ÇÞÃÝË©žÌÏŸUÉlœ>µ.a\ yƒ_O?”ß—å¯í´C ¯¹»Àµ­A³ª¨rç‹øY%ÿ_9ôþ2í\ª÷[dÕ!#øòDßXôš´)ø’‘8¢©½ÖÞõÄ«á‰B‹êøbZ]™œú-h¢úy—½
+FK¢Ùé¾Ó±Pˆƒµnc@t« y­(öˆMUo掼®üàrÏ
+Ãδ„ÓßE “²t5`ur²GcjÏ_Ù²à»æ31¤=ã¡Uš ‰×®‰¹zyë• OÉAè†Êôwø3Ò3)y¾²4×aæ ÷Ç”Lèõj/nÚµuöÓÈb
+`ÏШB´–ÁãZ¾0l?;(ß÷$0CsÞeÀSxö>…Lo¡OXžßl\Á¡M?Ãaýqý0ÆøUŒnÎЯ¸khJ¦´Ô?ë.ö«Ýæé¶þ¥ÓÈàÉš«)xipKëŠÆÑk¨ã¢]Œ…{¢º¸,<!e»‹úe¹Š2ãý 2£^ÕÕ¨u&^…G»¢ºüˆÃY<| e
+οŠ/:)aÎncüæ–nÌU–5 üÛ¶4Ë~FŒØÜÍ×5á^é5â„ž`©ç­¶Wû,i½€Ûvwc¥¥ä÷ˆš^G ”*تºª»Œ@V RFëªo¹«½ùÂ-ñø472 Hñ¹›Z¨”CRQ¿¸$ÁE¯»ag4˜Dƨ¥å‘xUsxktí¸qqFzÄ[òd½rGë’SÉbDGtö]WÈœõgpYдZ:ç\ríçç÷[™×"Àej¨:Á0BD^äb©)‹­<L&zú-v1~Õ¹”ÕÄ>O(=µÇòsú5+&µ¦ß´Ž
+^s3dò‚—Û¬!r™ CDWÜu¹4‹‘\6pˆ3$¢“KuFÁ®b×sUØËuÏF¤jzÇÅŲù ˜Ú\'+'¸ÛR¤ºqamÏq3¶ÇNš½tþöW ÆæÁ·`Z]]ŠÜUõMÚ?†÷´Â
+úìeEµg=A˜ÊÁ{í½wr‘7£kHG±ƒˆS”'6Z4
+sû²2ŸÐÑ‘UÛX~œAœ¨g>k¤0aAŽ'ëÎ{bQä½hÓ‰V›ƒF|üh¶‡–‘¡‘½ŸöŒªf‰äÞôjëËáU!™%V”ÿL>™FSúnU
+ãn…§ê(Á½YGÿ·ÜVV °Tû,®oÞ£ìm_:«ï)e YzölÄ¿#‘Ðþê]ÉÁnöfTd'$ƒÈ˜3Æ¡ˆ"ì÷{å›ÊïtÖ±~mć~RTŽ]Ÿq¸li”Ÿ©©eÖPÇ+ÐLðd,ŸjIÇ`êB¾©&%°%Ìðo ¬Y¸(
+ô¸µÿ‚ý,Çük´¥Ås ¹dð]Þb†ó) wÈ·6^¡Øò8üd·ZI–Áý—n–r„ªðœ8»RW¹æUËÒÞc3Ë{dVÏ3„«\9ýb›F!¶=¡VmÐÀ£xà:¼ ’¥šWÓ\ÇîIÕ¹P.°}‚ ‘¹>U[è}ª ‰ ›šN,‘}6®ƒÜEÐÉ‘‘äš&ªß÷ê›Û4‚Hûý/.X“Yʤt‹ímúàüÙ3¾U8~P·L®øR\ðý„*,
+n…Á’£Ù€§v¾…1:¢¹»D^u9{èbcÁxø˜9dzã5„ueUþ§±Þb¿#¤žŸ/”‡LÉ«øõ‘ò€ E’N3·˜dz ôˆ†¢c?ÓÍÂœ´ŒŒ|§ÈÞa±ä
+6ü ÉC—cÄ^R}bŠ¾¢WÐP8ì …óIõŒÃ­4¯¥<&Øê'.í3m;G†àª÷P€mæE‚ˆÒög}Nq:R’æ“ß…ôêgœfûÕFl^ÜLš’¯Æ‰g4T„Ø›º4<,T¨d)Õ¼wê3ÚuW¹Þ¦•/+“ßÒ›ÆKê_&[™á±çôà –ü!öF.ÌG½–سíâcΰWðeVÝ_¦~LµYÅDõÊÜ=oªVgÕÉß:íþÆIëªk×"/— ð½Å\/!–ÈùÌ3õ“­E†:Ç/sæÍ«:\Ù{]Þ;<œµŒþñü`"({ƒ5tV±weh®bªt>­©qÍÇÐ-w±9+Ê×-50ÁQg }Íä£fýíÜÖÞ¯v‰cXcÙ©ˆU°ÒQW
+ü̃ϴпùùŠkÈÐÊoøDxƆȑˆ °,Ë
+sÃ}Ä|&b ÆËý'u^År¸¯†‘Fð7RÛAm®Æ4Š¯à“%\Ÿ3Z
+†ø¯¾ýœ¥Å„ݘݟ>´¨CuPÇÝ~[]Z ´ÎAŽǵÀì¼d? k ¸k~ ¬¨g«â!F*2C€êõþîºE?î6¿;‚ˆö9ˆyí[¥²f>—ç8BÏT®„¦Þx$·±íŒB%÷#\H gMrÕضWYôÁ·áûÁ8q_Ó‘«Œbߪ\:gªÓ{Lß·$žҥ„f´¢ìø„uÜSÛ™ûL¯Ð»cÕÂ*yfSgn¥rTÞDõfQÍY+2´oèߥšR:1m¸ˆBΚÝùF #»j´+ôò4b¯óç!'îO*dkž¾I`Ô³?¿oõm²±ØNä,%ßÌ”°Í"Ê_^ƒÌEÓ=íÆ¢øáíÉm±h1íkIj÷`7/—¡YÐæI2É™ƒÎ+šaì•óòLȦ’~Qcñœ€NÐöI,fªÝx-Ñ ¼¬4;-²± ’2‹€nããg¡i¾?§ ‘ï!¤3¾«°[bTòa&{Çþ4}4šºP¸Dç©iaëðz
+þ¾ÀõM
+ïï )H¯àÖ¿ \žežè²Ú†ÙÔLdëTAÐ~ÐýÎjí?\˜ œºã%^Dí¡%[9G<›½1x `^¬cbQ} }*¯:ùÛ¨Tç%•Š•}I—;!ï3œNñ!:¨–sۼΩ¿¤Q=pñ~­˜m²â½d‚_ZšÝ˜Â/ ‰îÚä¬U¯‘Ö·…î µ’& @?Í0bÙëEÄæšÈ¾
+‘¿”[Öá†èR'ÿý›Pð©t¦ÐÌ•ÎTQ> nïËç:—o-è…¨A;YÝå"õ<²tÍ2Ž:
+Θ€÷©cò*ëLYr‚h0ÐU'Ó;(býµ£Ç)õó¤iàåg“ºüš=øªLW¢BÊ̻֓çŠC9Ã4&[vv’<H°o ›ÃÕ?\詘)fó9CO¾ƒËk‘ɹ3Ke
+Ÿ„ˆEGŽñÕ•îWÜ2 VS©”G‘‹Ûø¾fL**| ÞMÉÆ{x=ÈÞ„Ø ¾+†R Åºh1k ÓÏ|ȉU\óJjsÍIêº-t§-E¼Ó¾(oÕ8ã)²`,ßëüJ%’]0H…¾¤P¯÷D; ÷ã)¼ËuЋéÓ5½"PX›ó¬;#EòOC¾?ç˜ÔxÕöµ¨y—õ ÷(ZtyxwÜÇW%òoŸÄö×ÂNf6†á2Ö7F[èƒdÉ@bŸÂÜ‚:øÒh:Z†¢ÎÖPŠ ./Ç`mØž°ý„Û!TFXE’Òr Dݳ²h“`á_2‘§-Áâ‹ä­|V1>¥
+¯òÅò"‘IþœD›D&+dj‚ŒË¤QÁú4¨‚8ÏÝó\cìÍÜGúEŸÑÈ›‡k¥!žcâô$PgUÚ<;.æ ²…/›výPßíµ­¢l•RwäÙt¨ò4¹°;^}=&€dÙúâ[æÈFYlã×L rA6²yáêa^“
+]q¤çtvÌùûxY3’ÛR"7v©æ$~žRZÆxp&Êpy¾I„¤¶^¶i•6ȽÈèA S`d£„aé8ƒX—äðöCÑ7±ipb³¯mÞÐZEã²0äýM *Ø:ÏíÔ%qü>•/Ç%}å ñ-]þ ¶—Ò-Áprˆ.´Xö×a1–!uÖ1å_l¡7¤¨.=Ù¼Œ‹.<c´âcÁŠ0˜z• UʱNÙižš¤«µ"ÏÂ_mü[›«˜p~0>Ó3˜šŽ(hFKÐ2 ùppLñTQWÈqà“ˆäîÝI Í@qþî‰<…¶Gþ-±H
+åmÈñÉ¥èÔÙ'Q²wQÙeêù‚Ü06Œ¡nª¾ I>E_)@àóK\##‹Ž[½è0|äy ÒDcN ü3„²SÖ¡ÇuÀ*~M±L»?«JßDÃŽ#‘¸ŠnÚ#ûPŒ¸«èj°˜3SÑÍæIw7é‰WßòNRtÃüABá—þ>dE"s4&²´MßNTð»'çÍ—òž ¡2e¤F–X6¨0m6­’ßp­I®‘T[îM¹‚NëÀ¿8\»Ðï Ž5h‰1”íÜMЛ-Ò°ÒI Mf Xh¼™¿iÄu-eËž·>+zû
+=Ѫ{nÞ=zçO4×Sƒb_BAöSHu,tÓ0¾iÁtÛ)~>tuCÔfY˜xúûk×-vœböùwWØF cÉú£çí2µS^øm
+‰¬ëé ’ÊÛ½rØá¾uw¯MÆîa2jm†'Ê‚ 3ui·¬Ý¨©Ò­‡Ÿû€;Nõ =/Èúÿ@.ÀHŽ O Ú§ÜÙ1PØW¹¥é¤n9gž3<eþEÊÁ2&¹%q
+“cÍl_ÔÉ™ÛyZébjŽDÿšmòÛ%y;ÑY“ïÚ0Ü ‰ïœErN?¿—¦Œ¤ABWp³í€è=Œ>çŠB-ãÏÌT‡¼6Õj~þ9ÿK¸-a¬3S´ ™.ü³ÍóéÉ•û¤[d·Œ#¿™hø3E“ E½F®+3,ïû‚Fç¼Þ‘ÍU²ÁE‚N¾cI»U áWåuŸË$òkø3rM^³„wÌUÀ€…•aæ‚èׯ65;Etù¾Y<í˜Q‰}”ïØS?£:ÒŠÑIé’›º¼}sö^›”É×\§ÜIykûúm!:e
+i‰-<s–'
+%Þ§,}è½7as s‘áÚ°~×½îWa¤§3ÜfXh‰>P«ÎwæY X”xãZOÆ«Yµf·Þ„ÿˆLï^{×JFVè€ÚŽ(ÝREhÇ=Ÿ,,ï ëF>ºÉ´½Ñv <7ÀåICF)*.·A~˜ÆW¬°„†œ2ÎÀbxÚ™wåä$WžÞ•…åÖ¹Šº+ôÖ[~Í-!ïe”¶Ž *Î?Òž¥ü‰ü°WsÿCþhUàzjéæEÏ×׉ ž£Þ‚²…$>\\Ž°ˆ`ÿÜ  hØ* )áÆ =& ¿E5ïCáâ @u–”¥†¢ë«{¿ó¤ü~r®o´[X_Àþɧ
+óƒòÙ©îG^Uo•m{Ñ)k^ ¬ÚÇék©^ˆÁ®ÿÊ/•½ŠÉTöð™ZÜ_üÄqWøMr;w8'Ÿï«)£2ós+¡»+ÁcTŽÌA»¹zæÔ4‘$ÈA='mgˆy„Wd"{ôʽÉéÇn–`ºÎbKKB•-=T*p+åm0ï#°|B& AÑo™×ÆÌFÕ>xR Çßá—£ÝlyýæW
+“DTÜ-eXÂÆ_LIwþnòAz¯Â.¡öÀ±Þ#ŽŽÄÅÿ3O^>MÕ]¦uåâø•óíªükr“—ú£¢x;DVŸóŠü|u˜Ü×
+BÿO¯™A‚ZŸ§)ôÔÙȳ­jÓÀó6ïáv—£ÏÊžHìéÝà^m†Óóã1Õ¾‹ÓöóŸÒC÷¾Ìó M% HL“WLΕ=4Íx/ÿA.ŸVÿ3Ù„dƒûw9ók¿x~†×>ç<ÏëÕlÇT®ü€*m®á-*œÐ€õ[R>Ô½*90Vâ¥,<0|kh§;œˆ¤Þ\a°C›’ßE¨ÜõÌÞÒ ù¿qž¨î¦¬wÌmÍBbWÍÊ©4ˆ~6ùà~ƒE5Þ\äÎ N‹ q
+ûpSWÊV}Öf–›é„SQèz.… ÿ€ˆ–T?.F3™×~¨n`cãŸ-]ˆ(I<½ýäúéïc¸û÷d×çBèGȘ¦µ\)_/)岎U§›a,0‚N%0½d/µ0á¨F7=£AîìVÌ(& ¸–ir׺EtLˆ*‰±§937 Ñ+"ºæ>§EûöÞp$ágÐÔCß¹F5)‘X¿lãzÐЯ‹™N¥çg‹¤¿h™X˜NóÙ«ß½Ó­Ülr@ñ<!`³«$0<w´TI³u/¯«7TM™¦Ç~óOÕ·u,Âä†k{5É{ƒÎ‡:2³¢9€É¦°´âwÁ„zˆáJ‚B=JŒi°jæC½;øÿ¶/òïaùïó>œ^fþë˜g®}DпW¯kgXämÝËqGoš•OÞÁSßç,úyr°AuÏBö_r";’Šv}w{.Ý ¿òäsÞºãÕkE¼m<Äû&8\ír9·#åc©  ÚÃgÅ:i¦ _´K'Š<<ïtÚñà•÷[¿KÕm_j%õøñì%%Þß—²§ÿIh’bŠ}b£Ì‘’ÉZ–RúÓgY¨áÓ­ˆs:±6TbÏÜë¢Û÷øûÄ<¦Îß·»F3¦ÆqÓ‰*ïïΓ´¤l÷Öèý"(q۠ɲñKYÊ[Ž
+Ñõ³nõêUÿ›¦ÿ[þ¾Êî<+­ÅlEç·Ftþ;—ûª(¥û%ïå#¶nLé13~~ݙҳJäØéS>¢Ò*Î÷ÞdN͵ȷX#Ü2Yé}ëgñVFýãS6/±ß]pwë…êÑÒmÆU+'g×δü0³ªÐ«£03®¢ükál—Í%SYµ?þ:Qµìˆï²ÙjÛ™³gV\úë–Û_†¹Ÿ­6´÷VYâïê¨snÁ­¶‡A/ƒÝd?òJr*êühžlòT¥ÕoÞ÷Å׈<odžÓ¼wiѹ:"šzÅŠ—)¿eþ!×ug‘,ǽ'A›œsçyúI{±žÙÜÑì"¨ÇònJ¾QÌþÔ·¹Ÿž_ËÆ5«<bå5­ÚK÷äIH§o)ˆðz&ì¤à_õáéëå“ÿY7”•:0ôY
+膸êÝK³ØÔüè¶Ò‚‚s</ž­{ðà@ó÷Ë~^úýw?ûôv†æ,ã4¶©vŸ¸ž—ˆXxU¯à¾¼ÔõЕ>¿žwKß8´Oý¢b˜DjÂœäïry>9Ævð£ò÷õo—ÄD%Ÿ}Ý'·-ñ¹Ù!—U¦ŒÛâoê³öNÏ\oÓ˱_ü‡a£Tä)¾Ê­»'¾ZÞq¸|«ÜqžÈ¨½¶ñ-ûßWá¢òL´=ç Ç™M¥áÂÿ±oÌþ{Ãq!÷÷uåKzwÇEotæ𽯳°øÔáÓÊ W¥c¢_Yš<«RþæúF•óÚQþ~K ªyž¸²}­’ÙÅÏl;_;•5T´Gð¼;ïuþôó¯Ç^…üN ]ºÖAcóÿÞ/{cŸ¼ÿ#´gûÏìfÁ"O4 „—­XýŽésöÍ©•ß^ÚÍ4ÓÙ{j¦µ¸U²í™ðþ½[Ì.Ê ý±àÈ gö¶Â¶©/ÕþÞk±6åý¹ÉY¡í
+®Ÿ(½ØPsšUXs²¸æº¶0Äpý¾mÉηâ‘É«׎ú%UþÐeY§À."^rJŒ£f1ÓÇ,'ôÚâ÷ŽÉç=vw§Vä6…T“²ï¶û½×›<½ÝÒÜâ˜ÝT-~PQ®n­ëfÝoE*뽞ä•ë/¿ÃðŸ›IuÿƒËw+ý•öìø¬($"¶dbï#
+רÀäœÔÄ¢’üÜÄ¢l.
+endobj
+348 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1572 0 R
+/FirstChar 11
+/LastChar 124
+/Widths 1573 0 R
+/BaseFont /DNBBBO+CMR10
+/FontDescriptor 346 0 R
+>> endobj
+346 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /DNBBBO+CMR10
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/FontBBox [-251 -250 1009 969]
+/Flags 4
+/CharSet (/ff/fi/fl/exclam/quotedblright/numbersign/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/X/Y/Z/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/emdash)
+/FontFile 347 0 R
+>> endobj
+1573 0 obj
+[583 556 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 500 833 0 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 0 736 556 722 750 750 1028 750 750 611 278 500 278 0 0 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 ]
+endobj
+1572 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 11/ff/fi/fl 14/.notdef 33/exclam/quotedblright/numbersign 36/.notdef 37/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright 94/.notdef 96/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/emdash 125/.notdef]
+>> endobj
+336 0 obj <<
+/Length1 929
+/Length2 2584
+/Length3 532
+/Length 3214
+/Filter /FlateDecode
+>>
+stream
+xÚí“i<”}ÛÇQJcWö–“(ÔlÖ¬ap1²e'eŒØa;Y²/¡,)d‰…H„¬MQö­(Q"köî©ë¾®«»ûåó¼z>Ïy¾9¿Çòûÿ>Çñ?ÅEŒM¡ŽDP‡H @‘0¤€205= aˆ¸8Šb(8"A C•
+H ˆŽ ‰ð{©%ø§7ÐGuÿ=«GÁàqX ‚3†pdœèhŒ£`]
+òÈÀÿ(ÄRI$@ùy¿é›ü‹pô½ƒ ˆ… õ±ÊW\Óª#Š‚´ó^3K1j:?J4¬|úºž5l0‰_Сï)5^aµY’qcšyú˜÷¶09æI€ÉK…ÏÄô¾Ýi/ûé ¿ÇÂVK¾<D¿…}欫~³2'ÇhÔ;þ¢èºu~[æ×öÏ9ÆZf÷Š04Ùz=lºyE^ÁJ'o^qBFä<WºgQ”lä˜7×õä½cÝaA®‘,5§F‰O¨<›y,·¯í^X™íU·å× õÚ¸æ@¹JH“ >kéA3Çò9'«*„qÌ)ÜævU£íô«ŒÄÅ£KÛ3NèÜôm¾~/å™Ðcp­ ê¶-;ygM¢œôG·+C¸*Š"xë8•ñÑ©Ý]Çê}y'”+øgdoú¯6F“['Òµû<ÑH^!§}Z‚­®ØõúÉUû9—YGæÀ¸×Én¼ ªúÔ¤my'U•=Éîìò
+UÊ¢dÚ[a WpÛ¹M&L;¾I|çÐ÷©¤ºZia›Õñu»Z›KÖ;R%®Ë‡‡˜>?ÂNu4}O*翸.°ãtʾ]“£lt2TŠÙ¾.€¥TsÃKîØQw‹g[o]ƒoµºlÁiFwð/üi¬CFÜžÎ÷hÉäçYôöØÑüeÜÈa0†›çAÉΖŽðì4Á,¹„Ôl†ÑWgàV`6£lo¿÷Ãù¬eç;× ²0Ö MÁÑuÉç•Ï.J°“Þ¥Þ\-Uå¢|?@ϵˆ)ºÝ_R ,9m‚ÝÜÄ8™TÙ$ÊêRŽ3žN;¢eÐÓÚ\ØůÓÐÌÞñ¸‘Äc¤¬Ï7²èT«þÒ‡}’×véhsËÛý²¢Ð&Ðד°UV¡<p7u=öS•ïpÎSP#[;»C«>µ·zïÍ;1]l¨ÊÇlýYÌB\\&¸Ë±…U£Š< v“cù
+ãA¯­á˲qóŒ8K]T»r=œ÷Hq]×ÅmøÒ§ ûÍéâÃbl00¨QÐ]´’œki½„F”·ÐÔö@"8{Ÿ#NìeÍX{·­·%æÒï®>Š Xw^X1Sö+|Ó­ÌgØ’õâ»øäàÌŠ„||µæX-Âaî uÚ¬"üÈ\l\OÄX[×£2é‘Œ‘ÖË©<±5äZî4Ãw¸g–¢ú¦}÷æ§Âg3g/­E¶D|iÊíòg§yç”'`ƒï]®ýÐ?P°4Ð@<"÷{¹§¶LF1eN£˜îµ²ðìL˜kÈ‹LP°Á¼Ù£›¬íº!•½Â„.ŒV´nÙé¿[)Ka¢uµØ¥ÿê\%_67ìçVTäº,›s|j¾qÄs?mw_CÎrko]}7!ýlTP`°¤I©æ—ÄWhžÈ;ƒX›™{èÓ:s¶MOÜ¥òoñþ‘ÏX1zW=Î$)éyí"-0Óo õæû‹ë²8Äͺ¸¯´Ü¥Ér«Š)¶¶Õ+r' `…VXŠ¯ó›Î=¯Ëcp)C®Óʉ|kŒm8º=§™õ\ž #¡¸…«]¸¶1jù(.øZË~Sx|<Ê—ƒýéÄSþšÑ’¢ÎqRbÂÛkñ)¡ÐU/ÜU‘eu§$Rõà-Wqöƒ˜è±“:+÷r€1ž
+endobj
+337 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1574 0 R
+/FirstChar 12
+/LastChar 117
+/Widths 1575 0 R
+/BaseFont /UXBPSA+CMSS8
+/FontDescriptor 335 0 R
+>> endobj
+335 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/FontName /UXBPSA+CMSS8
+/ItalicAngle 0
+/StemV 87
+/XHeight 444
+/FontBBox [-65 -250 1062 761]
+/Flags 4
+/CharSet (/fi/a/b/c/e/g/i/n/o/p/r/s/t/u)
+/FontFile 336 0 R
+>> endobj
+1575 0 obj
+[569 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 510 549 472 0 472 0 531 0 253 0 0 0 0 549 531 549 0 363 407 384 549 ]
+endobj
+1574 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi 13/.notdef 97/a/b/c 100/.notdef 101/e 102/.notdef 103/g 104/.notdef 105/i 106/.notdef 110/n/o/p 113/.notdef 114/r/s/t/u 118/.notdef]
+>> endobj
+333 0 obj <<
+/Length1 1901
+/Length2 12204
+/Length3 532
+/Length 13253
+/Filter /FlateDecode
+>>
+stream
+xÚí·UXܲ®‹»÷F‚w î®Á·4î®ÁÝ%¸»»»kpA¾ûŸk­™Ìµ/Ϲ:ÏÞªUߨªýðž\YQÄÌÁ(é`ïÌÈÊÄÊSPå°2± ½/;[9Ø‹;ù
+èìÁ±µ¨þs  
+t‚\fLH¬¬
+@3+»ÿí•q6¶µ2±·°XþËdå$iå4S¶r6µ˜Û:ÿeÚ›ýoà¶ýK³’š¤¢¼â‡Mó_.ec+{guÇ'ý'ö_Ìú‡Á½Y¹tY˜XXXÁàßÿùKÿ•’°7u0³²¯'À2ö@ï˜8^¬
+ª\Aíûªþ‡À4ÿ¸‚ÖWÐþ7_Ef±© Ðù?¶—íÏÒþ§ƒýßþsy¹þûĆƒ•üYM^°“?VbúçSÃn§Ù_øÏðþÂVë/Ë°ø Á×·ü ÁýëóÈaó‚UØþ…`v,Ãþ/Ëpø Á2ÿÂöé/Ë
+üŠî@S¤o˦üÁÖ©Í¡e¾³å°ô¢-qŠ ½ ]ÈA«ñ¶ÅãrŸé·êµ+2°Ð`ÈÜž‰œ";½U¦$/>Ç¥-½¸dx¶i]e(xüp¤¸:Eïh^¼ùÉ ©4¿5Q–¤]8”ýkø4_™V\ý~ƒ¢O×µ±/3˜‹[K2ÃöSXH=5;¹*FÚç²pŽ°M7Œ¤˜Í™ _ë0„Öë—.ï ò_õnŽç…uq³–¸ôí§—V,—íl-¿DIà ‹*ˆÉlk~¬Êbšeo¦ŽK³_ÈJ4æ’h¥LXß%ônÌöe
+ÜX ™Èwcاè UYè¥KN ¬Jƒ~’” ’åL»„.Ï ½‹ZÒù±R.XæÛ¾B0×3#kgæ&rv‚¤‹öÔÃá½Ñͽ¢‘â‰ÛŒµŽ>høµ€• E²èƼÑ[ëí|²•×@ÕMéye=²CTO¼pBNgJ“Ð(g_9)Òà{“ý
+ö’ïõÓ)”Óm`NXbë$MôîÆÌ;åÍ 4h=ß5~ˆ„³$Tî<õD¦!EĶàçÂ
+¦üÀÎKj¾¯âµ¾½'ñô&m‹1té`„a7»kÂw~}é˜gOõ÷’Ì…á,[úØûä%S¦7ß|Á9à's\"˜ZjÄ G}Žµ’'‹Äõ\!¿µC¹•í/´|´*ÙpO×Å…å¤i":ÅìõK:9{Qg‹ -dÖ@_”Y
+]o¤(1]T/Í$í—¬4QÞŠ6ëb,£ÙØœI
+
+^çòv!Y~­!zX\p~—¦¾¿ç‹zùw›”UÆ÷Y¼Œ8XÇ·“g‹ká éÛ[³nzÄ[é:.n©«ˆÉw¤±BMJ—…7s¥›¤ŸÔëåûpîÉl(m©0J£òÈ­«Â}S!ZpŠ`/å$çyÒËmൗ+&1ChYkd~F á@±ãñNõKìA$bã]mÀ0Sî} í•B9ÿ…Ñ4bk1dDCYX:È×Ú½YpªvøbC‰ªf»`T#šÒ*&=ˆkbÁ%K0ÞùÔŽ,t×C\6–£›Èb‚qÞƒ¾íé¹á|3èZQïË?„‡µo‹—©nøUìæêGÄ©qy|¸h¨¬äžÊZi«%’J=¨<ú}˜©'6Á¿åá3‚a·o<gˆ|x/E!üOè®Dógvâ:ŠïD6yyÃ"n?ÖÞ]Ú­Z8pB;†Œ5!±*ÑÆc"è™ö†5ìU*;BûÍ=£ùaÇ)DîNˆç
+”wõ„+]:KÔ‰’tÞñrœ;@ðqÊÙÅ-³€*C3Þ
+²’mçÎ]|õP@¯"uþ<VŸ+¢,jç"MoJcˆGy84œ~ƒêÑH»Ý‰k|žîÇÄЙdβrE
+
+r½‰7ÍåpbÓo§-ý„Àê¹±ŒpíÙãÛÛÙ/õš|Ÿgk#ÞÖ mdùm¯àŠñÇ(ý”_ëã⯎âeäYt“ ¾tŒjHëù»,\‡I3f¤¡°ž¿ó¥£œHa/Šiuñ¶…md*ïÏ
+¡[vÓÃcåLá
+ÃZ5Gtpi`6Ÿ#ŒŽæž‚mjEüžo°Ç®l
+üý<•£·#ÏP…;ñº4Jê2Q%LUçOÏ(×Ý
+jQ;ÀãúŠKãZÄz›Ã´BCÌ9ÿ[Y©¦ê~íT4´Ö`2çÚ*€:â6‰–ÙÔf·aXýˆ·U϶\5›§ãÄÕãd¬´æ©Ö\æm4<¥RŸ SÂᵌoè¨UŒY1Ž2kˆt¬EgòÞîwÑ¢^aú´[èšÊñ©¤°5 ÑÏ|í4潯*´÷õÉPg1 Ïú)Äg#´K¨÷
+ñYù¨£´Û„GêÛnkLÍ–²¡)éüP$±Õ¼Ð¹5Ëa-ä §Èø¡Õ™Ä[69ç×Út¬=t3$Ê=l®vºœ=׬≲’šÎÀêe!/ÅÀ ò²za¯™ðâ3Èé«ra‚u…¤ÂÈeóvëû ”È’ ä­§IFw™ûHTR,$ìuš02–³ÃïÓ~©\Üqí'–~[Æ :¥Ëˆ²ü´“Ëí¶WÙ…îûsºÂå5s›Eç“ÿ¦ÆVIû ZâQ®¡-¹ µL/—…º½Ò3Ý*AŸ/ ¯—4œÀ$¢éG©™zÄæñ7ÊòTÏ2"Àâ+e§t"àúÒïüÆÇz#c@0 ¶n’ÏSac%6Ì@¹õ|“¡ö}-ì üí`#AzU5¿?—îÛóWªÕïæ‡Yˆ…~:›µ>дz ‡\izïkI…ôñýüÜ`5e/ò²H„õ?†%†2ñøOÌ$\©cfbÝN8¿[œK
+3)˜8Í'¡©ÆÓœ@4çÞ6¬µ¹}wB¿Ô…ë%mX¯¼çpˆðv N¼‰••žq1i§¸=ºmÄA§ÈÆš—‹.Xj- $A!­9²qPwÞvä©­Â'EotØëxð×ú DPU’ü½ê?)Ç:@O?µvù“©†IÜ8“­Qj JsdD«mw»å~_ûáD'°Ú|
+€ô‡ÆŽóÏùEwýdÃ*5˜-õ¿ adrSÏJÌBoöùî±ùrŽ Zä“6 â'Yçÿ­E¤\ÐmÂZ†ÂóáÁ•kе;½#z²§R“¤Küg·ÿUÕsË—·ÚVÛåÓ^‚Ñ°Žu˜V2zhœÇÉâù¬ä²+soEÖa4;«£~ÿyb,÷Tÿlýüˆ ’Î<ÿÎoب€4ß43ÜÌP–;ƒ{só“㵟茗Ä»¿èñ«xRÁ„+/y.þäB±Û£Ÿ¶#ÒâS–¦ªýé¼põå<UÍ¿¼kÓÓt›ÀEý<M (‹~¸zO& od…×å¢û³/Ò½‹Ä)<MØex Ê‘S¨–¹f,4ØÔºèÄW!|µMÞínªnM :†*v>û8H=™õ‰N¡2ꢲªoãø,º>ª‹O¶¥ãÂ&äà0‹þ+5³±ïl}Y4)×f‘áA˜Só°m£LXì×<¬å͉¡ëÝÚ8Þïͦ¸ ¬v|}ñ”ZÉþ'†)š5† ú) drÏ'Fé&¥ž‚ØÓš ˆ©Ô+œuCké ‰zT¸Ÿ\Ë~EÆ7ßE\ 8ß­ŒzùL÷È8¤1à+T”š{ÏË.AâÇæ‚d“LúnÙõ=Ä¡“ÛÐL~ŒÀùï¦Êƒõ‚Ž-ô?‘qö2Ô¹~Fù|¢l~]-a(`È–Bt$G 34‡‘ƒC7àß’ÀúíÙžõÂj¬¡¶ 7ÎC±š¾ºíµƒCÐËÞlz•—!ï÷Iî“[†ÃÌA
+û@(–{·‘¨±"žCpd.q,–Wb§ÀœIcŒ|bØ×ï‚’ª\¯Ïmì©šç+'êv%HCÚÃ{fÞmºâ(y¿?ãÌ>q1­ín½JzyOq›'µ9b©¯½ÙÇzÕéãNœÓ8 Æšv5^¾x¥ÁJÕÝ~l'í}ŸJ&ŸlfËù4îô úÁðZιǚF`‘{MhaGå"É24‹ö‰† V/)Ó곉¡ú¨ÈéÇ•#¦A{À,>´*¶ËI …6‹È¥›Žñη2¡4Qɹš›ña+¯‡ÃÇ߸ o+ { Û-(Ì< oúñÒ}¸Ex”Äï9¢ð㞆¤gÈ‹‘«?ô‘´[È]•~Šu%²Í¥¢Žp]²â¨ÿôQ´kþ„¸6wm
+ m}¡×ÇŸªþÉ™hæ¢æ©ø ¸¼{¿ÈßUÁR€òš&£ÇÊ‘-†ë]¯ÊC¶çt%L¼ï~JVE¡Ý0C§Bf$ærcEK:ö^ÌP£ Ñ õAx£Ž°ƒfñÍ5#1µz/¾ÍCyÍ[õ‡ƒ5š2˜¨pE)1U:¹Çt„v¬0ÈDÌÌÕrÂHëº7^º¬ž×Ê1ÐÑõŒŸa‡Ë>Pãå·²@øcòšòôŽ%ÈÍ/€Tv´ƒ@€Š…ÓT͆/Dgêr–TæâT÷òë\ÕÜg~ɨ§õý¥æ•Ƶò¹¯“Ôë–Ï50Dé4z‹bpÏm€
+©¸N²Ðæñ›Ÿé l8ØÖÔA dý²v¥ §¾Ñ̯ËMz+\T cˆËÀ2À󒃄2qÔ˜JÑ^€€¤–ÍUF˜0-9Ùç=ÙfJá™üe7mjåt’pÚÈžieÍ›•aJ
+M"ÕEÙÖ–|hlžÑdr¬ry™ŠEäÖ÷°qY®lA‚œY¿èw_@7ÌÆlÕ*´CïiÊ…A'(EzmzÐ`rŒ i$®¹N Ž˜{YcÝ3Ô$WJSóFÍüÌŽÁS„>ù=ÄS¡ï£/©ðâ^Îéû!µR€.ŒÞãB²!cö9ó=$•A÷O V15'àÙ©“Ó®S²b’/.ꕾcà~Ëuï Ùì}MV÷ºF±…ûJÚ¼ìÀ.Úg=¸üh¾ÍM)äBþ-±Á$F{Ø } 6ò¹|%~­ßÏåöèêýcÉQ±Áõ éaÔôõœ±œ¿ ³Tò´žnßhk¿Ÿ:g·COÂB´eÁÁ†dûô§È&#HCÙì|ȘqOÀ‰æ$¶œ£©¤½ ´Põ³éÄ;g‡ÁK0K¯ëYÆQ
+“…¦»÷˜!…ÕLhv˜ûd`q
+WضŸsÌv¨‡lÜÚÏt…Êë†éÖݦ ¸oò „8âEŸ,?f—™o-ln:ΪešîI…ø,ï} SÖ–c?…„…ü˜þëk/ñvâ š ¨@e¯ýò|ºˆQ¹tS‰ž§RaáQ0‘ ´q>éUþÁºiŒk›Æ–¼.¨"ªâc#¹Ì¤¤Ññé#œMêw«È½Ùw€Î°û­ŽzŃ*¹ƒé¯°È¢ûýj\›uYÍ÷~î™K<˜E¥4ÌtÛ¯hÂýÃ>­W1®vý^‘ôrG¨4³M(ó›èKI'dÞfP·ç ZC›7Sa¼«ñ¢gjíZk+Œï01š&&ÏìáŸ4ÓKêÛc)•lgYMMS^Êà}s‡ë÷„Ã¥rq—ñzûk‰ T¼ñJNç3Ô¤5[¥—}Ë.&g {–¦tA0å“5¹˜ˆL ‚3/½ˆyXâ•EŸ*?»†ûM·Vëdxš+³Ö¼½df¹â&UXÖøžwt6Ö÷ 3ÎÈêÏÕ—Â"@ØzÖf°§ö£³°Ì2_} ‹{/ìú=½ø7{—º~â’j˜ÀXk…VqtH¹{1=-Lä²gþ깶ANñá7‡aK¼NÜ(Æ3s¡æŽ¤
+üy÷!ç½ßœÖ´U› ˆ ¿ ÊæƒÔ,)z¹º‘*‡ýîI]¤¢ÂUË‚]€|Ò® »Q.õx\½| Ã# Z%βàìå~ÌMŸ,•ìÎÆøþjÇm
+©*_¿×µHI=Ô~qÛY2­à i„Ç<7dõAýy µ½Úç¾p¤Áªï§ÁaÄ{¸¤lØ ¢‡' ÞÄ¿¢ë'ˆîqçWQ¢ÆG×F_1 ”5".PÒ³Qi%JqM¿/î§nw×4²O{¤TUB~¶ËØ}a6dY¹#b$ƒñš*ê&ð*Ñ%Ðý*áL“ ça
+‰Í<â›zx÷ÞÍçw|dDáÌl6·—Ãd±@ƒw¦YÁREŸ*nýތ†8kmeáâXT©šk¯H4ã&€W·Fú}Èæ{½XE…=ÚZò©•S‹jAPdvÏîÖ§™Ë}QùS×9c»°øà«øü @žC¼…>1²¾
+öwêiT¹r1FÉv5¸?bÝÓ®ê q#O¾l°ªY?ùUßoñè5$yË'À¤¼z‘³lJ\É$_×Ü#ëÎc<jÅ”¤öåÈE§íÜš5s>ûÉLï`X^O+õZÏsW:Ïi„ŽÉ×q_y¨FT²4KÇïîð•:ÑK¹Î0x@KDL„aLÀ>À’u~b¸Ò†¸çBƒ=Í@‘)lCèXLmh^ Ô DwçØ·s
+;g_¹©¹!ãê P˪5 ë£üøyf“GËÖççãQZ'Ñ›¦”^'eñе~º\š{²*¾y¥ž3÷~AkTgþ:~ëÐ+Q¢íòKœk“!›—bÕƒCU…&coí‚¢+el~U‹1ã¡„—­[Ö?µš8)€û±þR#›—¿ÍA˾¬FÌω—5@qq’7bÀáÁîbäa†0Ô¨ºG·¶:¦2#³7þŒ¡Å^ÝVªQå>›TRņ`{LÚP·ËývtÛ¿0o¬˜‚Šl ºGýk²œFëî¹izè>¤…dÀi¡Ù·ôidT_Ö6(f¸ù9š.â H3jÀ
+©XU¬1 }ʽ"«C™Å]I‘6ýΛÖM“iú)–—-fîl:vu¤ùé0«ç¬é# ‰ÓIïÜ\ni8y‹÷ MX|k1'bX4㾘&Wófx?g&ª/ wÌ÷ÍþÊê°u¹ÑÒ~Â`YÆd\ohØ Êš:ð? NŸÉPN›7  * ¨¢ WA!Ó•Ù|RÍØÙ©RT:|=½E–©=î¥xã"§CÉ
+t2Fö,ûÄÒ¦KZYx‰¬Þc7«"ÖuGVøL[_/a×1 ôs<Þ @îâ0¾i»Âè'&2ù6´)‘¼Žs,d…Ÿ6&íï;n³"I™dnn<2üœ¬\ÈS3¨ ›€jŽ=ÔI3©«
+%ñò˜õ†¾n“÷Õiue`ù„Ê'š¢–3“ÿmÿèÎTJs/…øL
+IúyÒ
+sG,£×âÄ|†íÄô¨%•LþþÃùß#gv4ÓîUÙë+¼ï|,’Gg“ø ç2oñ{ÓÆÞ ëà&Ò£ÒGòciíÝ™8µ¼“öªlѾâoŒ§†Ãã^œØN£9Õšª$Q04¡­~ 4ênOÅØVðZMîâÑFªEx‚Ç+áý`ª%z;iÿ²ü ÈHXä
+k‚‰mµlßBl%*×'8ì¡ú4ÏV{…2ûù©®n~KÍîåhÎÜ3ð{ðS“rFvD¢Ÿ¯õlT?l±´§ÑÃgÕ gOÙ&±aœz¢¨˜4jâ›Ç 9Ë1Í_Ü’€C
+׈(©Hht¿}/f\Añ9Ù‹â†ËgUkùpÔ_4 ÔOÙòSÃ…yýKÂÆA…Žõk^d\â }+ó-[ ÷‚ÙŸGý8Ç|oë¦.˜××J
+šøâ »èA,jÞ‰9ôOǺ³˜Å:±¿•yE{Ñ&+FÕ‡yuçûòû¬ZñÇe:6O%ÄWîjš¾;€èÈ
+ç@h…ÔÔòó[£Už¥¶®”?fKb~àŠsî|,ÇD<¼x ª„"mbç0¢úð»ó7Ù9gËUv9¶Úh¯Ò{Ù
+àýÇ…Z§CzÎé…ýbU¶ïqHx¶±üË6ü>?ª%wÐØ=¡Bµ…dsêTeZ„°ÕÏ澈Kd¦Â S¯¹£oÈ${Û«¢¢îa`&íODÚûú [­ñ›XçYª%?Û_Ú„Î+YË0¾²P[7HÝE'猭¶´’-ÙÑ LŒÞ×|bêzmãï¯ú±'Èc¶-Câ|à-AÇÝáÞ¿3Ò4”Wï’¶üº$@þ"TD!åÅ¢×,æ
+3A¶Àâ.¸&i(ÌyxØšê­ÓÈ×…„9gÖy§WøkœCÂÉ­ôfêQ¼×;3j‡²WÚÑr~Õ_?:áM÷<Ç♺f]ÃØϳq(à_ØnqùûK$ŸÇ¿µÊ~YFãc@ÝÄži kEWQÏíøDuÃó.Ó ÐÐôÙO•†ï*œTÞ þ]ßW¹uåÒáºv.²üx×Ê
+™ƒ¬×õìüáÛ’Ò—”´ì¾q².ƒˆzn4o4kðTÅ~4}îŸÔ¡[1Þqê[Üqçû}0Š´œÿ¶µ½{E;I~ÓN(ˆF]T” Íú"
+pTY•~ôN}«zßa°"ø>tÁQëf '&:´°Õæ‘ïß¾ã.ïÀ+]w‰:RŽužéxd!ó‡ Òñ5`µ¿Ùúù9µßCüöºæfèž×BÀ¼˜÷ö{“/l,)„´U ŽÁPî3Ö buâÇÜÚ÷[ kÄi±ïw‚Ü°f ³”ƒ`½ù»kØ¿¯‹mQrä·~Ie*- !R]ú!O~C´ñÅZÒ‰w‡1$ݼºÑŒœó‹¶1oî ˆyJW` Rþö#Þ±á¯9w‚4Ù—
+¤”0ÎÁ‹‡óEêášøFäöɾ#W‰
+]Òpƒö¤.ïz>†Ý“Û"j [Ûàgkã ¼×Xònõ~¹/2Áyƒ¥Q*,„‡)NéÙR»ö¦Åâ²[îµÏZŠ#!<_™TR o¨ç]ã½4<ÞSŒŽcêÈûKaú€è ¿Te^yî¾¥%isÊ¿3'è*X`ÃW"ÝwAN¬-¯f†fAU„Üoò={#¸a@5` ´oœð<Pvê§2«Ã¾ º®më`ùy W
+Cr²´ù›I®<öT=Õ¥Þ:Cèñý#d’ð E1E
+)˜ ž÷S}­w"FÔYµú’j RáMéEþ€8€g'+FØœÁì<žÆs³•H‹"Á m¾¡ u !rÙ´Îõ\§¯1ãHó—w篾ño§¹ ß
+;¢ª/åÎsh‰êc ~!¢È‹z¹Ódöü°çLÐÝ·‰¼üèó‘ æ#ÎM¢´žçÅSLŸ†š£ª1ÕúÇöæríw
+zQ qB¾ÅC|¯±m~öùhA¨JM5jBßú€†g¿ByóÊN1Øߊüc7ð–vç¬N–â*É
+Ìt·Ý€ûzcÑÑùÒ1“V>’qÖ8ãyi²ÁXXÎï€|9õ˜a÷%ô2B‚qÔñMXô»ÎeS’N&„¾c¦ž‘ÙóˆØ£áÚÎîÙp(ÞI{vŽH‚˜Wß÷ŠË#ÿÐWŽm¥Ãå¾Þ|M«±wÏë@¸©×²Òp“!¨ö-’©âòE>©C;r¥ÒòÕ¬kf H;Zô8–ûÙú"pïn°º®%û6úίDèqÝç]ò~1+k㇃vRÉ)A  9ü•,—3=ÆÙC„ž¶¸žkýÈ°!ÚUÖPÜÓƒ Ø·>Ò ,séS³«RÞ•;Z cj2Pd"Žó[eøžm[õæSF
+Ì#*Ë)1Éyàë߶2³€¢ŸG ¼Á„¢Çú|a`bí"þbÓóÖßགྷ2èyŸH8yuȜȆ?t·×Ú³ÊGË5Òµ'm뼨[röà’‚|ÙøéN'×çòª„MŠŸíoôc­±ÀtXxP¿†ÎìÖ¨ÒCªªrµnéˆAœþ“ûNþ"ßòU 9=ˆ …ãQY3w£jÝíÍ;¯«,ëSÂ7Â9¹°_ÁÛkzï­ñÈGdÃ͇„‹ 4#ºqÂ1M:Ž¦¼2Q5ÚÎÕO U f¿-ó<g8í‰!+Ê*šl7þ²{p¨JÉ´ùÞ> Iî«dgæïØŒÈqß:Þbr–ëj–'¼³ãïºI²&'+ƒäèùÐ|ÅP=¾_Ãê¢é™ÉõÏg‚'.ªQáêH¶GˆMÑž ¬N¾AîáhRxÈW
+>OðwË^ ªõ&ßU£ÌÕÄò^0Ü Ú®"I@xñ£,YšS°ç y…ÊÚ/uœÏ{Ð-
+„z)ú€¦ø/ófëdÁj5÷ükw’Í_à;lêÆ`’ ñ趥d{¿]rFÓq'éë@“¾ññøµ›<sÍÌ
+Í*¡ò¼Õhõ
+lÁˆ<´FkGŒ®¬ö-•Ë&Æ86~jö†7*<jö[Ÿ\‹jÆäF¡“'}…ù*üîG`¨å…ºü ñ¡:0î‚ÏÍ2öuGš¦P¯WšwË¢’ì^a%Ô´ÿ”ÅJ.ËìÖá9XMzvGe“Å9\ÑÙÀÚž®?㉑‡d¨$ùcÐ'V»þkƒ¿-F·ÐàŸÑ{‹
+endobj
+334 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1576 0 R
+/FirstChar 11
+/LastChar 122
+/Widths 1577 0 R
+/BaseFont /OSFNLN+CMR8
+/FontDescriptor 332 0 R
+>> endobj
+332 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /OSFNLN+CMR8
+/ItalicAngle 0
+/StemV 76
+/XHeight 431
+/FontBBox [-36 -250 1070 750]
+/Flags 4
+/CharSet (/ff/fi/fl/quotedblright/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/question/A/B/C/E/F/H/I/L/M/N/O/Q/R/S/T/W/X/Y/bracketleft/quotedblleft/bracketright/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/z)
+/FontFile 333 0 R
+>> endobj
+1577 0 obj
+[620 590 590 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 531 0 0 0 0 295 413 413 0 0 295 354 295 531 531 531 531 531 531 531 531 531 531 531 295 295 0 826 0 502 0 796 752 767 0 723 693 0 796 383 0 0 664 973 796 826 0 826 782 590 767 0 0 1091 796 796 0 295 531 295 0 0 295 531 590 472 590 472 325 531 590 295 0 561 295 885 590 531 590 561 414 419 413 590 561 767 561 561 472 ]
+endobj
+1576 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 11/ff/fi/fl 14/.notdef 34/quotedblright 35/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon 60/.notdef 61/equal 62/.notdef 63/question 64/.notdef 65/A/B/C 68/.notdef 69/E/F 71/.notdef 72/H/I 74/.notdef 76/L/M/N/O 80/.notdef 81/Q/R/S/T 85/.notdef 87/W/X/Y 90/.notdef 91/bracketleft/quotedblleft/bracketright 94/.notdef 96/quoteleft/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef]
+>> endobj
+330 0 obj <<
+/Length1 751
+/Length2 733
+/Length3 532
+/Length 1278
+/Filter /FlateDecode
+>>
+stream
+xÚSU ÖuLÉOJuËÏ+Ñ5Ô3´Rpö Ž4S0Ô3àRUu.JM,ÉÌÏsI,IµR0´´4Tp,MW04U00·22´26áRUpÎ/¨,ÊLÏ(QÐpÖ)2WpÌM-ÊLNÌSðM,ÉHÍš‘œ˜£œŸœ™ZR©§à˜“£ÒQ¬”ZœZT–š¢Çeh¨’™\¢”šž™Ç¥rg^Z¾‚9D8¥´
+@'¦äçåT*¤¤¦qéûåíJº„ŽB7Ü­4'Ç/1d<(0¤s3s*¡
+òs JKR‹|óSR‹òЕ†§BÜ曚’Yš‹.ëY’˜“™ì˜—ž“ª kh¢g`l
+‘È,vˬHM È,IÎPHKÌ)N‹§æ¥ ;z`‡è»ºGy¸…iCb,˜™WRYª`€P æ"øÀ0*ʬPˆ6Ð300*B+Í.×¼äü”̼t#S3…Ä¢¢ÄJ. QF¦¦
+Õ†
+™y)©
+©@ëëåå—
+ú‰ÅÀÊ,ÎÆIH’ Ó3NNùÕº&
+º–&
+†ÆF–
+æfµ(ê’K‹ŠRóJÀ©"0~Z&0SS+R“¹n^ËO¶nÉš¾­meëâ «Xõ9žXûò&ûˆu³3SjƒMç*¦—,yµðÑÖ¾ÃâÙ%¼’­§
+m‘ìõë‰û²HxÍÖ®Ë"&4˜î×»,^ÙÜ5÷Ÿ¶ú+ÏÃ…a3æ´>’¶Ú_ôxV§²ÎÍ/Êõ'x楼pŠZ¼ïû½kÜBZA“´”¤Ìo®`¿Ë(&^y÷ùÕ?ÒŠœÍó¢ƒîoOˆ­^~Æôšç·×©ÒÍå&»x,o÷:e©„Ø} š§;y¢êVÑ’¦Œ¾ ®‡Tô½~ùxÌÃ4±ülÊôWg%ä?.‰’òqp>$oWö>ÚhâJÇ;õûǺ'
+D¨G2O^ý»kÉÅ$[ñĬ÷e C6¨W¿P,Ô~¾Ù¸õù¸~ã‚Ÿ;þͳùü€¡ºg¾îd•«xÔÞŸóæMPÄ‘:o£àþ)]ØŠ^õ<Y¸¡I!l³eÿÁÇKŸJ¸œé*Ýþ1®¨Lï¢èÑ¿¡üÁçB›K¬6üÜ~ä‡Ù½ïžógåí›ý5òÒ;ÖÂs!ëŽ$«xó÷­ž7í´Ä^KÕ9ÿäwÿ¶¸µã\²g¹j»¢ÞÃ;K>¤U‹j”n:uÄ{2wG×Ù¹Þ¡iªN…Ê“Ún艜Zý\=kãÌGNs|¬« d |ý˜Óິ¡íâó
+ë‚_l{Ý·®^Ñx¥BY÷Zìž‹¯gqxœT÷ÝþDþ³”5oî\kÈù;YûÞC¦s”¾(ÏTòü£TüyNäºïÑ
+AU+‹Ke ûª½—Úµ=\qºŸ_PòÜ•z2ÖZù[ƒN5û§8?Hê½y.ó¥î‚;Ö¬7süÅU/¨Öû£Á.ÃêÌ™{'¿lî>W׶`OO<3à ‘Ê¥õwlKUßQ_Y~X*äA@N®ñë“L-RÛw\>±ö©e%ëû=;³žl­5è=Ï_²Ò°üÓÝÏiNK,LnG ÙürÐó^˜·åPÕ'™i“õX·Ïùhêÿ--ãX€Í²¿
++¥z (\£ ’sR‹Jòs‹²¹
+endobj
+331 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1578 0 R
+/FirstChar 3
+/LastChar 3
+/Widths 1579 0 R
+/BaseFont /EGZHFV+CMSY6
+/FontDescriptor 329 0 R
+>> endobj
+329 0 obj <<
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/FontName /EGZHFV+CMSY6
+/ItalicAngle -14.035
+/StemV 93
+/XHeight 431
+/FontBBox [-4 -948 1329 786]
+/Flags 4
+/CharSet (/asteriskmath)
+/FontFile 330 0 R
+>> endobj
+1579 0 obj
+[639 ]
+endobj
+1578 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 3/asteriskmath 4/.notdef]
+>> endobj
+327 0 obj <<
+/Length1 2133
+/Length2 13140
+/Length3 532
+/Length 14296
+/Filter /FlateDecode
+>>
+stream
+xÚí¶UX\ݶh‹» .…»;„àîÜ)
+w.‚Cðàîîîw·à§þµ÷^ÉÚçñÞ§û]x¡õ1fïmö!*2e5&3 PdïÂÄÆÌÆSPWç°1³"QQ‰9]¬@öâÆ.@~
+`ãæçäægçD¢ˆ<¬,,]
+Æ.–@;pSc[€ÈÔ
+èâÉ ±µ¨þó„3@è trš1#±±̬L]
+›¹:üÏÐÉ, KÒÀŠf {[O€Ð‰E®›ü¿!õ¿“KºÚÚ*Ûý“þŸ&ý_ÃÆvV¶žÿ=dçàêt(€Ì€Nöÿ{ª&ð¿Ü€fV®vÿ{TÆÅØÖÊTÄÞÂ`ý¯•³¤•ÐLÙÊÅÔàâä
+üWhoö¿Àmû—‹¦¶˜††(Ã-ç¿Æ”­ì]Ô=þôŸÉÿb¶? nŽ“•@—•™•• <üû?éÿ¯Zö¦ 3+{ð~àâ;9{"7˜¸
+sXÌ@¶¶ÆNB<
+È.šù«aÂZ0,•‰„ŽmÜP¯_Ë ýÛ{ÏÞþ9Žoá'KcÞÈ,ŽkãÉ¥'…nW
+úáH3Ômgz…r;„¹E?Îýrü£¶fø$= •ÖŽªõhºþ ˆååLŠ‘ÀI×”F!%†bŸ|;¢’åó]éÎÅ®„!v¶¤wObG„¡ì,{"?¥ÝÑ/f] ©ý°)Â? Ãà÷…TÓ§„ÂK†µ¯»,¶Ýn¦ï =ªwæKûŒ™–L·ªaÖ(I#Ü2|ŸÚWVOé´NW–ÛÖV;i¼üf(¯š„5§µ/‹@Bó®€Û' ÄRGˆ|`ˆ1 ëcþ2Oj«©Áí韥°çoD¬G(y?¬ ƒÕíõ#MËƥɽÚ}¦S.çøñ¥½íó·r¬Ñö µ\_lï(”&„¨¦N%“=d‘Z¼‚_þpW»¢Ît3ŒïÁUŠ
+ie4€Õ.¼í+$O£¿AkgIcZ ½{fâv§;“è`ü¤¾­¶éïiĻ)Qm'©ˆÔ¤€§×v|f6¬CPU½Æåû™†ˆò¥Ã@Û#Á&²QUØ+ÚÜþ¬
+´í
+ «~µ¥ÿ('<;ÖIÖåjÙ+är~YßÃþNaÃ\-k¿ZwGOÏËçR|¼"Ô{|frSü¹=BkôF¹¡ý1ØìKñÌ|ÈqxœB²¾ëOz<Wcéܱ]0FÀêAק͡V”=CådŽ‹’@ƒ˜vÖΊ囄¬™¹˜“@œh—öFá†ÜÌ|úØÍ[Á˜‚™Ÿ_ „u Ùg=¯{óZl‚B[š|ºÙEj8´ÞÐøTŠÝ
+·“ò¿Í0h­°8*„š˜Û§ko, Žß§Æ+Õ;@w¹]ÝØ|ŸO6Â9ôʇBøŽæC£«Iù›Á0Ù»þ§P-“÷ãa‘ΰ%4´š;÷hn®¾^€‘€íÎ
+/SIŠáÑÈ•39r&|ihÎ]V ; ïÅ
+ñ$ÔeøI%¾îœ)Zš„C#¨ë‘)îÓÏòkŒg>ÖÓ^Ð’Ìæ#8b 7øl"· DÿPE[?á”9Vÿ%¼yT2ÙOnBóp–©Ï–“6&ùcIíà UDÛÒ„‹9ªsÔË‚&ŒB]È<d™*_Ý»§q)°B
+‡ý¢‹OŒ3
+5ÃÆéÊ} ‡Óßâq1{ôwÜV¥¸D~Ib©øA¿Êc@Öw†
+9öPAèÀäÁ˃ç%„Ý÷9˜/¼sƒ(Q.¼D‡—›.øóQ9izÆQY’S¾¦Ç±û?]\ì©Ic®„\Ìàáfç?è8™H4ó9¿¨€l;–'m!Àì. ö Ž‘F½fM÷#xû/à ŽåP
+#%Ncv2… Õžž¡nòÜB/`¬Af®-±ˆ}…ßÙ÷Iíìv¨
+q"?³ËLH=´ŒNVG¥ù@ù|ýjŨ0a¾üN<
+ô£Ó®ø9º<Ë[ëö/)!e¨Íœñ#Å'‰s/Šk‡ã;¸†ÍŸeX÷Ië‘×höÍî¢P®Y˜þÐî•
+ÈA…ˆ' ¸Tçèy1vá⟎K¤ÙFEÍ’ ¼0u=x´?§ç­!8½§s–ç` YE`daGQH)ÄçL@óM6,ÇVd!{k¨"}ô#%ðv,å™E¡+èí<¥D8öõ·nAvÛŽÀsÎïÓÚ[ã)ekùøïAY81L‰é‘Nµè éI eÆØÇr‰!Ÿvc=ÑêpËØO!Ä•ðĬŽt\ãÈvÙû1kÔõĉhÈï’Jn]!·‚n
+
+¿ ÷;kæÓÀP¸€ø®Íåîú&õ²ÁºÓU¢dÓ€É+ë¸6çŠðE¥.÷µ6å×Á‰ÀáRǘ>BÓœ,Ϥd©Ââr¢}aHBy1Âåå_Å~*qâé­÷÷òèTöý¹¶=¹*Úç ²Òþ7QØõÐ$ $j¸µcèƒ<‡
+÷¯¹­ú®8axéµBõi×U.r»šÆ‚Ý çŽ*\è¡lÔ.éØkP=V`Sš’×Dz ç–¯¸ÛÍû^ãß µ/)Æu[Š×H0¨ì€5Qãé
+ò©šÀX‡†¥Å[¸ì{ ¡2 îY7ŠŒ¿t¢NN»‹:/a
+ò¨˜B\æ+än‘¹Êb&JØ»ceÑNÏ×Ôi‘³’‹ãeDÿSÊFëUâô–p7„°sËCvûç¬ïVOÐcíÊåÅ'>[½0.é¤^Ó4ïîÝPƒ¡VÑ;«Ë+Ÿ˜çÞófî¸ZJ¸Q LÎÅõ§ˆÝOjÚr³e‰sûíDôJ œq0st¦gÞçžÂZ¼û¦.Íà™Nl ­ªÌŸß7ÏÒ±V†Ñ¯Ãc¯Á î±=avŠê™SWîò¨ñ–#Ä~h–ÉUNyåíÍe„à˜ü)xòmo„1Á~øƈUhª¾Pä+ï뾨>y¸‰óÕìÛ›ýÊn³ær«]XîÔú®‡ÅÚÇhŽdM3çõÈ!Ó)-bÿ²t ^`ó/GþkóÏûöÒx˜°Üxð®ßž.ëø2:Ç]dõM¹9¿óQ¹IKQµŠÅå׌ڲõ›Ë/ónÖ½b
+òã6eLH2èÉÒ ôùîáÓÆÕ•"Áõùú®¥iºÕÄI×h€‹ƒàt!”Ñù¼ËE+¹Œ&rÆ1™)gÜ(µüA*ÙlŽo lŽ™ðͽúNxCßiÛŽäå]Ò8JQî«Ô.ð+;’ôAûåÛ˜´lÇĺ@ãÜù“î6§fXÖ"°Ú¤è ¹!Ì7à§øˆÛ̿ܽÿùñŒ“îÊû6*à5€Ú@‰lðð)2àÈð­c  Š ¯:ßþ)ØiX¸^ŽlC%Z¦}É,5€ãÆ’…ƒÀ
+€/a«0Ö“Þ³>uÞ5ÓO}€O4øKs«ñ“ÇNîaw ¦ˆ‚©&§×;“ã¼|z|É<VÖQó„ iŽÜv¥Éš~ƒ¯Öù{Ý—Ö¹t5Mü£¥çÓº/.³ª²]Ð?J Â’‡)BàÞƒ´£Âñ*!eÓ§Ä%CïÐbÑÛ”Bw~7\º_
+œîÄm)Ð9·9óÉû”|z ³ðŒ€/
+cͨrv9gá -¸¬ûU•F{ðåw礯߳Aõ8›OИ•Ÿ£ÔUŠØÂvúÝ Tî%N¯ ¹=#œÈqéVûrh6\&”Yç\[ªtÍ/hô0‚)Ê÷Y]¥©û2IÝ¿ûéj"ûò·R{‡y÷(›]QçØƯF
+|¥vyçáWŒCYÓ¼Å[óo-|YRÉv.r_ Jv@°E‡ŸÁT‰2ÉëúÍ*^Wþèáø'TÉë$òìUFCì(X-}?­Y̆.Û±/XŸ}æ­qY$ºæ"Ù?›°ê(ÔÓtnsKßcùØ\¡¤\:F Ïùa`åôø| =Õ{­ìÓf…á5Qkpñí2×;!èò§ÂOƒ|
+¿—›g 85ç‡z§}\ü][5b Ò‚ÇçVÃ…sëõˆUF³·êÑâ[³ê¯2}gÁóÕF6oœv«G«Æ&Ú+ÊþöLEK½í‰’  xX˜ŠW IÐ?Ö'6§‰PëE~/­'ô‹.ÞŠ‡™ÇS ³SáQsô*$–ê“a.!ÿªŸ!%k| â$\OåÞ±döœøÞ\ù
+ëغªl\yµÎ~•zžR~þå`qÍYîÜñ$ɧw£¥!d’LpØ+,Óǵ—
+_ £¥ÝÄ97òøÓftN>g¯ ÞâLzM!™ž½¾0ÞÑd|œøøŠP É£Â@7=ˆSøã9½ÝÀ¦®™ `gÔÑÈõ`é}Ix#·,[òÀU5—°Ïl²Çž£Ó Þ’íÖ•ñk)<n¸ãêÔSÐpÅo€‘ÌiCji&±pì
+r#HûD¸vl4à­m7nf9#54 gR¯¹‰©éKóÌL*ð)hÒƃqÈ·\nF™\/õGPöôØ#Z“÷¡îgXòšS!¿™*d»(>1?ÛÍS¬\_ø•Ï±®’›(Á%:¼^Î§¥lzÉ&øѼtïû›#E,mHt×HaãØCçiríæU­=ÓÜ9)C“9¶û»¿28[Rrpño@”œ8H6¯Áë°Éäpæ(rwUöX¬˜(Õaì;ä’¬ôøz]}&á•6d:LìHâ<ÔóÈÎrÍóÕ©+’ø’­;s ƒU'×òb#§å €–÷fé
+ƨ‡®.‚khÅúa⸮ÈÁè¥ìö¢O,çê‡ÖÓׂ]hùpç8d‚Š÷(=‰Í~ Š•ìívß)â:².]¡ D #ˆ2 Ô6°;µ{˯Tƒ~Ö–¤Ÿý„{x¹•ò{àVoÆáÒ°Ñ)ñ-I»Œ ( ù¹, D²u‘ÖËÎü<dã‘ñBÀÍ-÷õâ°ò~4‘ý«7
+Áè‡%çwÞ.Æ):Óo×âÌ(¯©5ýXs …´Õ¸ùØÕQ×Y•ÏïIOHÅ—4à^LHt ).<0íY„Ž5c¹äÏ%¨ÉÈ•‰"š†iÊ­ªZ3JÈ÷Ž=Ä> 35°ëG8ßH¡‘OÑÔƒT¼Ô´ü8u¿Ÿ·}Ò’l+wf‡ ØÀVªÜ#bÄs€m9|xw>eùõ]cövpGöŽX¹“Öh±G ¼‚°(櫬ӫ'ìüØ,ÝÚòQ÷.îå]츴(C:IôSSˆ
+kÜUûªÒÛ4¹²“Õ¤\@/¦‹uR•‘%¬þAßÑùhœ±ï¼\°’½çü¥vÖª4_Œ+Íá&+S®¬ƒÐcH£%#UÀmî¶ÀBîŽaæŒþ`.ñ:¬°ƒHü>¸r¸/q¡ì ßîmÂQð䈠S8éÔñM«Fc¥F½¶„ó›?h=eÛ=GWÇY&ZwõøÑœ–ÞΪEÏLf̸Ó`P¤˜Ù°ZR“.¦u€oÅ÷œ«™±$Ë%’æ.È>X´)œ’Óûë†q³J¡ò׫S¤¸üÏ+î°IÆ/Ÿf£I£ ¨Ôæ Auó'ÕØqh{½ïÝÒh*|3+ß‚ #8Ô¯ê¶}ÎÊ\
+ƒB<Ï œù¦·ùFðKK½#¨P`z*” ηdÖºçéIÞvÒΧ¡/‹»oŽD·—X0%Jm9‡‰uc|ïL†¬ý‘ˆü»0ÙaPÏ7/w/{v=YEýóÇ‹½!9T:¦žímz®œr*Œq3ˆ¬ˆÂyñÓÓÆæ thO\[fçcÅ—ØW+
+Ô©¶ªNš ì¹”/øDEâM·š72NùÖ¹
+ݎ)O
+5g]eT™^b:Éoß òƒ\‘²%Tj:
+ÌC"6ì¶f¦Q¦ëG¼$ä#y—ƒg+ºHNÖ ï‹O}µGrݺpîHýðÕZã³!=6*ÑÙ>d–E˜°¼PSmŒ£¥±Z9£‘¯L~se`…vO #¦c ÄÁÒ~™jê)ml}h>­ö)ád†÷Kâ:UÑNîþ9&MyÒk:îÖž™^ÙªðŒ,KÑ{PÞÚäçzzÇxJ†^s­ôÙB¹ÀÆh ~ê䨱)Má !ì[c€É)Cî!÷d^“L=çRKƽdÚ¡VÌ—Îw†T”Ò:©sï´ˆPZÌ’'ËgL}ïÝÄrÇs1­‚r¿”’ åÈù2e-ùM†sÀ Y~¬/'…Yv³›Ë{€“qâ†È|Ftÿ yåãø-±¸Çäê¡^Éþ>O¼ÑN‹7© &§©ŽG%Œ•e¹ó`î—H½ö­€r3â7TïHsÿKôx&[6ñËq¨±mãÁ*Ÿ’I^%ßÜÝÎñ¦¥§ û´rêOä¯ r7ó€›sŽ•~YxÝž’ðâ1³¬…чK$°F"3aC iš­
+ÐÕ_($ kæ¡p»¼èÍ?B¦3I™šï§È¼ >c«·ø¥h‚=¥`Ì™ßÐd¸Ô
+i·…&ˆ¾/^Gk(Û°?/šr«ÑªŠŠO¹Õ?]FëÑÊžeRY:QŽàðQÓ}E‘ÚëGè ñœ°Ù!/¹b‰$€B,nQü…Q‚ŒMïº*¥xdÈt#sR „2^ ±¦9y— š’u£z-i‘ùÒ…IÏõzô·>Kêï spS4n…YH¬FKŸ¹|ñ·­kyA£ÑÏ~8FBTìÅD½+öó"ÏáŒ=l Œ–À¼dÓþm
+ H³­™×-9®Éˆ Ù†©kZ‡€S7êÛø`Î{=ÒógÂkF¾XÑOœ?HP7ýÇiE _umóMÇ<Tbà4ä}7ZÀKÉø¢uáÊO@ÿÄßš¥¾ø~R!v‡…²‚‘FƒCþv &Aúúâ¦÷Z¶X‹fŽp}”A¨ïN,³^›á[ ë9-%.5Eš”ÚQ‚îÆ'rX‡E=Þ2Š:]êíof°bHf©îðé…óûãË}y? ^³†dNe‰ä?úðßìËñ‘áûå9UüY±5ú™oDñr
+IÛ‘l²Ì‰‚ùýˆ.›i{#Ôûg£GaðãR»yÅ„ "‚‚êŽKµ_Œã
+0Ì,LpYX{Š¨’c ÑNˆÊzHÑ…²¤PPÓ<×±í1ín)•ïwkµrv'Ù„.\gÕW¯;Ò^I™6ÿ(9sÐt7å¬ÓÜ,2OòžQù
+-|‡cRR Ð´ž²B¤G§Òª‹é…¹Ðh²|d×ÛÄ•¤ÌfÆêYAÔÕ*›Ù£ý:*;~žÌñ xhŠpd¨Èâÿì7Àdþ“Uò=ñŠ5 T>†/Æ[Ä5 ¶"a#‡ŸuMÕÕtRƒÚtÍhÙUû³ï|
+ÅÔzÇòg–
+_ì‚Á½/ó‹¥eú]
+ï9æSÂOUè¹of¡UVD—Wßø&u¦Yk–K~Ûi:F}ͨwÔ@RÇôq=›Ü‡‡Kc S3¸“)âMÑøjêÔ‹š6JL.ÖjÙ'߇äq¾÷P¢2[fwl6F)p7Ot€·v(%<',ðªMÅ1FÛ ü’”ãŽâfc;u–£,rYz˜ƒ*´ëýéJ¥vxÄFúëA}ýP¡¢oäEO#âwéñÄÔÞ€òþÄf'.ߥæŠcÞx&2ÉÞ¸ÒhÙo€j#QŽmÏ»pôkc(1‡~Ä‚–œ­a‰x—%äU_pìm ¿!ävYñÁÌøZ°B¢]¡($0J±ˆ5U"DЇͦU~dæmÒ$ÆgT7àùÞÅHgˆ
+.ùyÎ š1
+€¡ñ C¢îˆ¦fƒ gGBs[Ï´Â¥åªmLr­xU
+,UÍ­ìC7ðb»è´û™ÏñŽjI¶®{,‰_Óˆ ÑeÙ$±W™ÅNç(
+d•Ï¿×Y¥qzäÀHÉÿ`ï#1>"\“kòeÐ2óºÅÆFFå þÚ]zr!šIwk•²uÛn":"Ùú=>J:nWÁ£—¼/¬Ýz4—lÑ' qDc•ƒºæ°”óÍTÚî—± Χ³³†CÞôºKµ§ƒ RÏûy£¨¸­Ý}V_\<‰=™gœŸœ"âÚoSñ¥ÑÖDÆ)M›¬( îøƒ!ÃSâ™CíЋEbF+Åvy.È#%Qá’Éëyƒ«„2÷—ç¿ÞÐ!Ä \¿ Û«Ä*5B‘•ê´ÅL=H¡èŽ8 Û¶8±V𯰊â±?x|b‘ƒÏ˜²ÝöÜ-{b.`ÚWZ¡¥äî®\q{ÿ½¡5$†Pm…î®ßÍcVÊœƒù0
+š¯Iß«=ìQ-¸fC<S@÷W\±Ññç á‰N¸N#|ÜožÌóøÊ»¹¦.ä‘.E¹Ó¨WÕÉ»š¿ØÁ‹ÛÚÂ쿇ž=vNиL…ËvÙºÉ`u©[Ö §ÝœDž‘'…™xMNâv;\sÀ«ýǼ¿¢<Ù©N2|ÁjÅ']6°ìp­Á$Kù}Þá³õ:þùcc
+endobj
+328 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1580 0 R
+/FirstChar 35
+/LastChar 125
+/Widths 1581 0 R
+/BaseFont /WYCUUB+CMTT9
+/FontDescriptor 326 0 R
+>> endobj
+326 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /WYCUUB+CMTT9
+/ItalicAngle 0
+/StemV 74
+/XHeight 431
+/FontBBox [-6 -233 542 698]
+/Flags 4
+/CharSet (/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/X/Y/bracketleft/backslash/bracketright/asciicircum/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/braceleft/braceright)
+/FontFile 327 0 R
+>> endobj
+1581 0 obj
+[525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 0 525 525 525 525 0 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 0 525 ]
+endobj
+1580 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 35/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk 43/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater 63/.notdef 64/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W/X/Y 90/.notdef 91/bracketleft/backslash/bracketright/asciicircum 95/.notdef 96/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/braceleft 124/.notdef 125/braceright 126/.notdef]
+>> endobj
+324 0 obj <<
+/Length1 944
+/Length2 2684
+/Length3 532
+/Length 3317
+/Filter /FlateDecode
+>>
+stream
+xÚí’y<” ÛÇÉzF%©G˜;!cÍ‘}¯¨1s“1ØaPÊ–È6ö,Eö5Yb,Y+ʾS$GŠl¥ÈþL÷<ÇÛóçûþõ~Þûþçþ^ëï¾®Kjj!ÄA=",A¨ÚF*
+C# Nx€ÿeÂyèᨠÆGF;XÞüi ˜_E0æöSÌÊFËÔÌêô_ûüé3EádKo·Wýü“ÿ0c:$¸—ÃŒ@Æû÷—ý/½t h"G`„‚"€"‘PÞÆe0HðE
+¥/gÿ¡ÿÚc»¼¯,îÈ•ÍzܶŒsÅ|¹¢¡ÒÍUQèJùÛ±–®Ôò©2ÄÑzÝ]!'y·ñ–›îÒTKÕ°0kÁGr,ãQJZŸÜ˜´¬¹£æ'mæýlm hË‘/KR‡Ó”_~Çù‹U'Uê4j½H¿¿hÃ+<&L¾b%FyÜ“61nŸ«Îó–û[ΤèZ*%T~TÁC圳 ŽvÿzÜ c&ÒÖàçÄ:÷rC®Rƒµ
+Ý]2ô³–¦àòÜŽ„ª7·Û—És’Ãí](Ö}è"5èÚhQ±[xÙ©s[yÿD|pMÚïê÷Œ]î|·1ªLi¸Ï-`óðØ®@¾µÞ‰A¤†ñ¶sœý7DZ}®¼¹‡™aG:)eÑ÷%§û:Þ]Ì‹·:])w ] «,‘Úà¼Ëòö´o·w§@¡1Ҿ߅]#Ìig…/l"îÌ©©å,›FZ w·_"×±s;釮$:4–Ô®-•È*š õ†q·‰*—'ïÄò©%PjšŸq‡Ã¹"lxùiÔøÁsýªÔaOŧ™­Fª×½n ÆÔ–5Ÿ0·¬ouÑZ‰k’ñaßFJ‹jˆë]unN
+ǺJ·3DëØšäMš?ŒÍÕ×/l4âdONÎUꯊ·ä¥-5‰hoò^¢¢Vai£e™EԗÕRW,PpLv^ºñ,–í¡ÛÇ›ªGzÊSÝÄÛÝh>W–ŸU¼ »˜ö¬NòÖ~Öi9 Îî÷‹´¨±m+çË™3k[¿j¦uaß §ßê㈎ñj•(‡cMžcû»“80º…)â,ÑIzý‰§9^Ó­ºSxÏ€Ö·ùšM®¹]–Š_|ó¨B`}úSª)“Q@4÷ÖÀG˜úHï^¤ÙãÅ\\DQjíÔ&Íï<µ‘®–2‹¯ÎNk²h_ÕטmYrl´¸5ű‹j•ÎZ?°‹ÿ.4ëHÛ<ùˆW?­4ÄoŽä±MIÑ ˆXª­ùcEN¡+PêèòÝ~ítлÇú»Ãºi31£ö)i÷‡mì}%‹ÒÜ
+Ï )=gÔÇ| Á}ëK‹Úd¬ÊrâÑžÛùz~#§>LiÔ¤ÀfÚ¦+\?ÌUãµ.ëô¹”?m¯Œ¥Í­¢nûÝôuðˆS*`ÿcnN> aw¾=ž6âY#ñ[ìF–’ï:Vd²{à+nŽŸ}¨×(–gÿ¸CCnë} èÀò°èþî¬öà5ÜIåIuWOìw“ê¤ ¤¦±×¾Ö¾Ýq»¨ vS.Ž
+<*VÅu÷+Üb®Z\pòê[ÈÓ–¥[Ï`WÙ°½º‚ ”˜\V‰ø ÖC×/Ìü¶0Àæ}9PWÙá5OÑ Ùa!•v´~—sÞ€²é_O¹“j‹¡ëª¨o¿x á
+uy) h”ÑKºcYJ*ƒ9ÖQÎb‘l£/<—»èwüù|Š0û¿Ø=7H¼eªißrxÅΑ,ˆš{'
+‡p¢ŸGO¼œƒ8†0s•}¥gk¬„)÷Þ]Ó‚}+)”PNÉ—êô-ªº÷uʽh^ÙÀ-9vô |íUË=þšØòbmüíºa¶¶Iê6Å–×>•½¢ÎÛ)n¤Ó,xå2{µ[÷Ja ƒhç[ã^Í8‹ÐÍnÑæ©ÈJý¯ôñR+ëã¬l[À¨ö½—¾ÁÛl^ã~·õBøG{õVšæ -ñ1õ‰°kÅÜh‚ßfÉ¢Ù¬^ÌD~í¦MÃII{2Y¹ÈÙºŒ½Rç·¾eD~?Ð\r€[¯^¸ØšÎ qÊv`b§Zy–Õ0imop_)â²~Õ¼|&xíI”à) µÊ\¢“Wø¢Ÿ¯¦qÉþ`záûšE'dù³âúÉúI­¬ñìÙÈ~¼H Ÿñ%)g+h(Ç5$#i+w7Ô]Ì9Õ²ƒŠ"‹Km¦˜HXf[«õ'^sHo÷ # I½!ÙœÒIsYM78^ã±*Nû9Z<ÔVYe•½4Vö“=~wjjS¶äøEãøŒÕ‹š·çuh
+ZcIÂëRM
+æ£âRš“¹ ÃT–ôè»\\¥Þ©,¡,'>–mJØÌ ²1¥b­ÙYÛyº?þ>–(×Ѷ–|ž]Š¥UAyøC„¾QŒ¡¹ÔHøÿðüÿÐxE"]Q$È¿
+endobj
+325 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1582 0 R
+/FirstChar 12
+/LastChar 117
+/Widths 1583 0 R
+/BaseFont /UWBPQU+CMSS9
+/FontDescriptor 323 0 R
+>> endobj
+323 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -194
+/FontName /UWBPQU+CMSS9
+/ItalicAngle 0
+/StemV 83
+/XHeight 444
+/FontBBox [-63 -250 1027 760]
+/Flags 4
+/CharSet (/fi/a/b/c/d/e/g/i/n/o/p/r/s/t/u)
+/FontFile 324 0 R
+>> endobj
+1583 0 obj
+[551 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 494 531 457 531 457 0 514 0 245 0 0 0 0 531 514 531 0 351 394 371 531 ]
+endobj
+1582 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi 13/.notdef 97/a/b/c/d/e 102/.notdef 103/g 104/.notdef 105/i 106/.notdef 110/n/o/p 113/.notdef 114/r/s/t/u 118/.notdef]
+>> endobj
+321 0 obj <<
+/Length1 903
+/Length2 2778
+/Length3 532
+/Length 3415
+/Filter /FlateDecode
+>>
+stream
+xÚíSy<”û§(F¨Tö㵕%ÆK3HÖì{¡#3/†1Ã,ö}‰B‘B–c—=Çž-:JBM¶L YâØšP‰¤;Õ=Ëíþyï_÷sß÷Ÿ÷û}¾Ïóû¾Ïóü¤Å­lt0WЀ'+ÀaH@ÏÜF €)*A¤¥õˆ ŠŒ%àõQd À Cq”•
+aš”˜1<.À€n¨yÈtòß0õcqC
+gòþZžÙ£‹¢¼±¸ÀÆ Þ>2HÌ ˆÿQj~·fb°ï£Æd‹ÖÁ»ã@@é;…%b@Œ–Œö
+™ï_8Ê
+©åìr¬ºîMÉuCí\Ñc)¬¸’'¦¾r“µÛ™|<óìóbþ;¤«m!Ö†ŒHß䌑Ýy?—ùÌ {Âë™æ¯}$6£—y[‡ß­¨²ZNö•Ýt,z˜óöÑr¾•Œ¾ÝÂþ q–®Ÿý껲bÔÔ 3qçâbkÃÅmfø–Å«ÄÑýÞ¼ÁFæÇÑ,?¾Fh£Þ.äÈKÝuz·8xæçcÙ#jñOG^xŒzã<P ‰Fò*b‰…ײîµìlWeCµ©ðÆãÉøa­ìT”šA³ä‘'ÓB!õ9aŠQñ}ù¡B_¶.éJ= {:çt¿éqOˆDžˆŠUÀ`Òé¾lv­¤·¹Ùû2:»?†õ­òѧ®«Ì±½ó}DWÔƒ‹’~Ïjó]¸Ÿëš¨Í¸ÐKW¿ñVy6HÍÌ'ÅHo³¦ÏG•¨V>EâÒ…„åxO±´:b½5°2 Ùœ¶\s²<¼±SJÐ ZJ:jÍ*É'¹zÐŒ°³ÙãQ´­‰>Õ‚[3ÓšmY_R•ÅÏŽ»úO‹~qñÛÅ<.ýM'÷ù¬ZB{[§¯Ú%[+Ý+uª~æDˆÅ[ÒÞ­Sô²Ö„û7ocÏÔï»sçw‡&ÃA’Û®ÊGî.°ßñA>K‰¤§ˆhÜ7ǸYõñ~J1§g„w£E¯›ZYtú 9U±IÅ3ÛÔyѶO3¢mº#Sžšècú2©û¹ªuÿ®ü‰˜Ž„÷{–ËîgJgŸ‡±[µ)-L¨ÁWR.zÍÇ3fòÊ vY¸¾g7¶çm#e ‘â=Üìó­žbÄ?_Ôåµ o¨y™ß"8zÊŸ½æXI’fðßÛ´àgP¦!°VÞíÛMéOí²œ $“¨Ût¯ÛƒðJ¬ŒÂ[ÚOãÔÄW¶šÇHµÆsGªðÔ;…c‡„;‹ùyé¥4º¥Fæ§C5ªO} Ô¾ôM
+ËYžñ·¹;Ý~bVƒ‘óЪ'J(¡M#wêJNX9×Mcô»K÷.;¿¸SR¼£‘Yj¼'ã÷0:*LZó¤Z|w­ŠÄ”Clºä´î'År§§iÈàš¤­¯n‡Œ[+KOíÞã./®#GÖìÓz;O\©†¿¡FéLl·nnq#ˆºhÏ_Ú.;xÍ £¿§aŠ`oSÊ&)ÎÏI¥ì\r1÷¤gEد±m›õjO=}óQnçN÷Þð£!…žÁqy“’2dÑ̈[ŒvÓWãH6,m5–‘u‘`kÕ-5}mµgÝU¸zÞ„åÞ—QꇕUýD1¶n‘÷þ—z6¦A–î@à§ËÕ·oðžìÊ€¨‡–@ñGuZPï6æ§Bk^£´£C$Oñyy—jöÌåþŠºí.ŸÅ %AŽX(7õ ·M!Þ¿ÓÆ++˜po˜+ù¬›@Ý5³rXNù98Ä=>*®3ϬG”7¼BDà$Ò‹íÚ(¢k£|•ëeÂÒé,Òy`1†¼R=9(ÓïZ¾WNýÞBePAóªÒXM)uвŽlÖõdîH:$ÝìëŠßˆê‘ƒ'ˆ$É=`8oŽü2u²ø
+ƒKìi&ű$}Š-i£ä]F^Oq ë~Ö?ƒòJ  ûðú¸GxÑ^ÐöîìL­íØX«5éí²š”êõs"ý²ÁëwPç²SÊë~`Ì‚ßU#—ã¡FJGYž2VR]éµo†XP1´—MhlH"?1ÑhZQHnQZiŸšËIv™¹ ã“t`èªP¾Uhé½H:ßZ²ii~eeUJlŸ÷¹Çj;ʯòm¤f
+nÎœë[­ÊŸtä¿â%åWžÓ Óx%>îSúäa }º
+Τkzt›bŠP=lF–H~æY@MŠ9ÊŽ˜M¹œ´vv 9×Añ˜ÈÒ++H³[Y¶"EǹdiC¨œ®ÂñåÚ@@êùœÞéòêO²NüvPËëšsHê`Pªo~×|ôpvBû²µ¬á§ß^úIû›ŒLÄ,,ØÔò‹[sºµò
+>b¸åÆ>/W¬6>q¬C³ªÏ†ƒ]BÇýºìÐùW±onѵy¸G[;®Tx΢?_oN9†»úÎOxìƒcÃ~‘Îä‰û)¡3¸ ú*n~ëìÍ~^N¡‹?õyžS¶Ô×ÍLÄ@.uÇ3k'»U•G`ðŒ|™ÖLãœhVÜê»–Ó|Än=ð\ž“ÜäüÖ¯¿ªï©‚QwD” ”‹ÅKîÆ/™ë¸ú$ÝJfkq<œÖïûA´1Q—-ÙãïÅi"—ù4fQ)äÊ ùAÛÊѳáùqK¶^åñ&³î®GtsÞ´3nT;ë`ÌûRavƒmM»tŸ,ÕîÙ│†t
+×ÞjáHŸ6FÊHŸŽOêu¦„ØÈ?])̤)®ï}usÉšMä”hôšIUÈ%øËv™Ÿê„%p>¶æ<†䑨–SÈš(Áz®¦xí‘@i%ý’ÔIå© NŽ£˜…eÎuŒ~¯jŽ{di†ïªF÷ä9ñ g…¨õ¡Lõkáé3TçìFå(žy¸©íX˜¼×`IXï…Ì¥t;¸ÞTC$bŽ‡È3'Ú1Ô,0e‹Ì¹\®'â_±§É>ƒÛ_­ƒv:x 5ö¡üç±/¹Ëûîá|¸Nú]îù±§¶i«s¨}¿R]t·fq…£~ØLsõ6ÿùT ÈRd8f…Î
+ŸÝYï/›¦ð¾û:óðVØæzÚöüŽ€Ýƒ<E- Õ´»‰!Hÿ3뱌±ùæB7·:=•!5AŠÁJæe>œwe›¢ß¨´uNÔ=æĶ²+ý‡äÿþ'
+ q ŠH&x£ˆ^
+endobj
+322 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1584 0 R
+/FirstChar 48
+/LastChar 65
+/Widths 1585 0 R
+/BaseFont /YQNEQP+CMR6
+/FontDescriptor 320 0 R
+>> endobj
+320 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /YQNEQP+CMR6
+/ItalicAngle 0
+/StemV 83
+/XHeight 431
+/FontBBox [-20 -250 1193 750]
+/Flags 4
+/CharSet (/zero/one/two/three/four/five/six/seven/eight/nine/A)
+/FontFile 321 0 R
+>> endobj
+1585 0 obj
+[611 611 611 611 611 611 611 611 611 611 0 0 0 0 0 0 0 896 ]
+endobj
+1584 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 48/zero/one/two/three/four/five/six/seven/eight/nine 58/.notdef 65/A 66/.notdef]
+>> endobj
+318 0 obj <<
+/Length1 1610
+/Length2 9371
+/Length3 532
+/Length 10286
+/Filter /FlateDecode
+>>
+stream
+xÚí•UXÊÖ`ƒ[ ¸k w÷àîîÚhCãî®ÁÝ5x‚»C°Ü=¸ëô9÷þ'¹wgžæ›î—^»ªv­Ú%MI¦¤Ê l6J€íœXYx¢ò*<
+Ð èè
+4cDfa˜Y™:L€VvÈLùHÛ™ƒ\ÿ
+›¹ØÿO“+ÐÑ " †HÒ
+¶µ5þÌnéao ü=3;'ddZ°Ù?!ȬÎnàßÌýWø÷ NHáßI!ò› Kÿ‡¸ ¹$~Ä\ò7Aj(õ› úÒ¿ ’Sî↴©þ&ȺÔ~ÄNë‚\y&GcS óÔŒ‡õ÷ŽügÛ?þ³œ<œÿñŸÝ¹
+Ç àâ`öùŽ¦.Žëáü÷K ytþ‡Í­ Oè4Eþ9 6å ¶Nm -ó/œ(‡£…±hŠS¨ëžê@ š‡•ŒÈ:ЮÔjÝWd`¡íÀíº=:E¶{+Iœ8Ä¥Í<ï¸ídx¶jgÈ{lÛ“ß¾ikœ¾<â€Rœ\-KÒ.È>ýz˜¯D-¦¶‹°DöªG×µ¾'3˜“KK"¤RûžL=Í¡,œ=lÙ =)vy<È×: ±™nñ Üî‚y_ˆ˜—ø¬wƒ‹aÚNʦ²A‹­²+tTZ†þ¦æ¥èó‡L€…ª#`nQeD:(+ôs¶ç[qçxßÅÃå]Oè[ڵȞ(9õWJ¶ Ùè -‹dæ‹™O
+ÁUãZ­OSÛÄOSØ-oÔqæhŽý”pO
+ˆüÙœºØÝ0í¶S*§ä‘Ѹ¤x ”ÊcDc(„d+3¬0°àÏw5˜ñ ÄóôÚfwË«k“––.†Cø,eÂçhcq°ÈHŒê¹¶Ä|h™MxlÚ:kF‰w¡\ž)ð(g´ù ”c¹Ÿ„ŸáˆgdX;ÇÔK-—M12DíoYéGÂ3{?QŒ~Ày”)CÞs:À^Áâ¦/Gy
+(WIpõ8 &î-cx)xI'¶”0ƒ…Jæ¸Ëk¤jß¾ª¤MÏ"ÓßÄó#›o,¯ã¶
+4,i8Ò´Ñ`Ç'=å{^Ô<õ8øÎǦæ–]Ͷ¯îЦÿ8NÆ¥VÚ°x3š¸n]Œ·.%—ÈÓ°;  uÑ&-Ä.CÔk˜Û‚9ºÁ’^•M/¨ÉEeOX¥2ï3öJÆž=#ÅHD!NíqÇÒ%|ÊLå% dûÆǃS…}6ºÏ‘D{4ýJÁæ„+ÎüÉ=ÃhªàÑÞÛí
+êH0>·ŠDÏŽ¼BÁLƒU×]ÒŒ*0-ÒúÁÕé(lì2x®bžnçgýòšÏóæƒo»3t±Z0ó
+µaÂœDû¼ú@uªT $v3%,¾$ÁôMšv^zÜÌti"‰¦ ´M¾3YDãÛ¨9lP:ž;;p{9ë(N“ÇWÛIˆ£”((õ˜ÃðK€íSª¢J÷áÏ":W¹zpZlªÏ[¬°=ý¢Ô3%¥aîBײ¶Eß4|ç
+zדx9ÚI¿no—‘süÕW
+Œyò‡Ãd‚6jmÁœ‰¬Ág‘žÇtn¬Ùi»ù›ç£uî“ÓÀ¾Ë«¹ZIžœ27Ÿ klgB@ýkú+ܯ8Œ!™4røP”ÆÅ6h¢¼«^³ìÝB['ô²šE 2[£òöÚ©ù¬*ùŽ„í‘}ž—/®¼¿~ôa ’[ü Üõô7êÞOd…¹×¯ù~Y´Lýæ,ÌåïyQpĶ·N¿£…ë³:¶4>*³»ÎVò¦ng“ºÖü£8õ·#³jéU[¡óÝ늺[;Q?Œ$â0Á)®Ï‘ÈÃ0‘ÄàÃÊ2¼¸Š/ß<¡ÜÊ 7@©µáNþ®àW'Ò¦ÓØž¾H)|•z3_ÀÆ· øS0_SifËTÌE_EØ«èg•jÉ7F率љÿ¬E#ß%ÖÆÆ‹õÆædTû¶½Î–tòšÔÊÄâõv“Ó®Oô==»åâª0cWñkêÏ|=ÔØÕÑ“á ùej5EŒMAá6ï1Ãm/R5¼>XÆ„(BèÅâ:Ÿ/jÙñ„’ˆÝ¹¦-’âQ"|C?dÁKhÚÑš_ È›¦tXjl¿•Hµ@O€ž›Ab$Ò|Ku'÷‰ä¸ QRÂäYKÙ™ºÂ©}„ƒ:5V|>”ŒÚp=;è“+%Ü‘ÞÀ'ÄåN:Dðvƒ¿t?‘š$SÜ€ÓΈÕî±x¤œcסŸþŒh]CËÇìu‹0¼“„lŒ:ߢ»'4É<ã~¸n´áaPˆƒ®†ì W¿ÈŠ2Lv™  êùÇIUcã_C’+öXéƒØÃ+Ç$ܶdhñ2Œ
+P‰9Å’èZ®cžeªßhØõ4–ê”I¥Ä˜º×‚¾’oÑÈyK”«K#·ˆz æ†æ8˜P)…³LÂ"
+Ñ› ¸u¤™r±wW#bn\vãÃrw ›ÑLó¸M?R\Ä¿=ÎÇô+Zã³'ï×Å1m+=ñë
+N¾[~8´è£‡d´× çòd)êâô)?á•O§¯Ýƒ@â0ÞW‰ˆ&æ`ºe0•rdŸß*õá½*}|[²ú,YeÀŠ„‡«Šd‰ç¤ñ%Æ|â‚9Ù/–"ÐëçP<ñhÒ&Fñi¡ÇRç2ߎYÊ„ÄE: u>-Ðc}ÔŸ&o¨M«õ]‰l9nµ¿}° +Ú7PN55.pHfö›/xïVùHpËŠ‰'AY¶þ­ ˆuA[ý^p±ßìÝ?\®£nq`ÊÎ?ùØ4Øô!ÿ:ô£Jo2ßN³Yx5{°Mô–º‰†I´Š¸×®æf‚½Ô—ˆAÕ'ñçû;ÔÔØ|é¥ÀUâÛ• …]ä
+èËIÍ&£‰iDU Õ?º[ݱMèÅ“;¢ÐP ºÔ–æ›gWuÁ9Whh‚§iÇ*sØY{Þr¸f¨÷')©ÙïïÖØ)¾u9­ÇÓ—•Í©fÏ•™[<L ÓÄ»µÚÒxÊîü¾NéÖ*|Ñ$oRKÀI âZÈ,cï¢HøœR>ºHwã’ÖÐÍôZÒ{¥•#ÈézÝloÒpr±SÝcûú$¶‰”%;ýœìœˆØÉš!b/2FÙXéüâ‹|ÆRxæGÿa}zÎÊSWï=ŒÊcmÆL*¯Ès]˜¡Àñ£å €`T-‰]¼V-ˆ‹‡"Zw(!ïà!~2ùØ-‡¦¥dÂÔùÌ.ɳWWžÅᣟ¬Ò³„ä—<³ý¦ÔÉ)<2ŠãJãÊË/ÌÞVÂî ¢íx ¶b,ÇQn×êÀW,Eê ¬é?}|ç‘7æ£Ãü‘ÕéˆGõ„…l[=#ô-ÖÚ­­Ëüª”‚ •™1•T¿'põ Ö‚™b5˜‘D¸Û¼ í µßòÌn… lŠ{W"ó·:ÁE4 “|ÃÖûæ× £AŒ`ÊdèÆÛ2¨•ñ•ó¬ÑDG°8çâ]?Üv¶G¸” bOD¼^ü˜ü¸ü“þ“Û ¢+v3ÃNt–B+ÀÉ&
+ýó`‹Æû.Ê
+ÝåV{5{Y™œ­¸Ê‰3Äzœ¶Øá’Q\Ää­k\eZ5ع5J‹‚‡zʇ¦Àwba³Âi´ù3q±¤³]â¤W¼ïÅïjé0WmÞæÁ?›]ÚagÓ]Üó½/<¡˜ù1 |=çòË WÝ}¾ÚdsÛ.æâhʘŒµ“‚OisHLž4Œî{†jÖR}¸÷ñ:õtÂC¿"[ÞNE-Vùjfþب›yÜ3x×(#þœk¡c<bÙJ$°kî}þ!%7 d_Ù3`iõ‹xÒ½ÈBWü’ÓÒÔFƒ¥ëÔ¤‘ýÏÂõ1É4ž¼Í$O•ó]˜èÎ{›(Äï0uN°3ÄÖ@èªý½K ¤Ž3Cõ;b®ð5p-,›Ç-ç.öãÉw‰·(Ŭl¹‰2ãe9Á½9µÂ»‡áâ*>«p¢[¼¹/nøÌâs¬“Q3&t÷œ²(•–†ÈHxÑq= QX±ÅO¬®PÌ”8ÔXeÜCªÃŒ»°æk–~Y—k‘ÅvKTVí{Ã_¾L? ©²‡åk|ú"jä™pó)~ú’<(¯ÁV*X7¹kþ‹^Ë\ðÏ9…Ë
+/ÞÐl(7´xp¸åd‹%Múü–Y4©ö)øHàa1˜ª!ÐË’ŒR‡¦ÆDëºÞõC]× Ï¤ýÔŠ´^ê‚èn±Iï"Íêä¡U=ÑW
+GÐiŒñ×Àz­Å»~ܭükß5Œ½K_-–Šü<NêÝ]ìOÎTã)"Ü^q샃Ѯ>½9—ü®¹4ØHÿœ 7.l„CÏeFÜôï 0ˬŠÎpÓ1+$í“9IxîÍöœ©˜ÂThÈà#]Äž'aß7²âÄæ¸z‹¬“Ü÷]¾ë¿6Ãx#t^ì`Ù”©”Ú£¦Š¹Ü¶øå¾€/wÒÍÚ”_^Ö–/ž>
+·Ù†Òš´ šÇ”ß6æ†úlCsI± iÑäÑ¥4•úÏ–}6‰ÜkÚ "Õ0ÅX±¶žn*b‚©{ܹ\\ÙÉ«ìÏÀêê,V;9~:¨ ¨0åä‚®£<:ýíÄ ©[Ä^ä*ÐêLʻƸVÀêDg«WD±ŸÊìeä…%U€á;³·ËêÓñ¤¹n¿£¡½L̇dŒ¿#Ùãì´ÂþZ”(Mà#ªˆ•§UÖTöŽóqÿƒéØONO$yD“þ äú^|#QÏ/kÜÔ'Lr–°Ãó!ô‘èJ~M3ãÏ¥©‘´¤_ŸÙÒ‰oï7ýVý‹PÔœ€kõŠI‘W +U†•œ6<ß) tRËCŒ–[½&C€ÂdQȧ
+"1èã>ß®.#}‘Ðè}׺ÙO¬¨õj¼.”Ýê÷Њíìó9-’ –¼ðž˜¸¢ˆã‚á
+eÅ>uô­q™¨$Rä3 Í&XŸÓ“K?:xÙ¤*õ“áÉã%ÕQUåª"åFÁ©†ô‰ÈDÛ3ßo½À›÷5` êî•ÑÏ(IŠóïCë¯ñŠß¨PÍs÷)‚3ª5ûI†PxR?˜u˜_ ¶È Ré Œ·ÏºØÙ6ˆqh¾ æK*X«±dòé¿š-£V˜M—ÒÁꬒN›JìëÙdµác>¿~Iñjˆ‹ÉJL’Y–£
+{´£È]©€ÿxê5nF)½fY„â€òewA½ÎõÚf¡‰Ðž†º7“C”Ø;¶4Öâ$ª5#Ø×ÑÛ„Ýf½ËãxŸÃíñã3×w26‘þ%¡Q=9ó)'}_ð
+Ý)秶‡ŠöÅe‰ggþYà%ô5üÏÇ1'^nyÓ¬*Ýœ^µösú÷¡¤¬rSQì;¿^gÁü åŽ7˜ÎajÀ×aŸÐw#85Àjöóne4ëâuL”Ê£Q´àŠQmjqÛ+IÔ¼ùÕV=D)?˜ø”¯²ã_U¢‡àË»«ÝÍÌÝ;Ëí‘h(ÝÜK×(rmrQqi-è%鞢ÑdŸœ–¶˜Pe]>—èðŽÏÄÜç ,ÿˆ¶d1´q” 6¾ðà}U"ÎHJ/š%V[1²ÎfiQSÙp«¤·#¦n  År® ¨*e^–¼Æÿ”;|ê`f$‡:jy#÷©Òæ->—°Ýe#Gd–F¯HáÝtƒr®ñØÇGg¨ÓÅj ëby®Ê¯©Œ•ï6–èLõÙµ"U;ˬ¸p¤›Yï0BàÎVò›ÃK)¾$¦1Y)¯¼ø°æ×¼Ïßt¹êg‰|ÿÎ[E¸ôõºpò™lã{”ÊäΧ)̆êˆäÒ:åñì–56Ä}PmÖüðs4–7Þµ?³×V,¼lÃŨ&B¼Xt=îÐà¥é»b• ©ö ºì&®%r}ËhVÕˆ‚ äÝ.õ×Ç®6‘NTÉ%€
+<òU qO:YGzcÇZ`f›±¬N¿BwwéÓ:²‚;²P^Fî5öZ¬]¹ÊiÇ—è<ýèxá^Ÿ^Ír? jœ°p¬þ÷à±gé~w]àÉŠR87 ’ÕÈBÆÃr¹0§ÂYû˜9ð±nšk&°j-Þ„õfº“.Ú –ѯYûú‰500Ëv^õõiš?!ºuÖMŽÔXO>’@) ¿Ÿ84UŽ–Û"^V·¹ÍƒÌó øë6mÎÎòú´L…­%M—Nóô&Í©ˆÉ¤éÄ“f0ÊOZz-ü4«_ÖÖ=—³uyFl”_œ nƒ€Xù­×§D>í®ç:ݯßöW¦ÝÙØ„†š°
+­‰"»^}ÄO+Œå_HHÚxG7Оm+B*Wȸ+Îr7O˪‚ü-ï|¼¢†c•ÃE¬êRKžX".šæû|ê·Re´ˆ˹F3DÄjb< û¦¾¸g²:“Y¾B_-&¯¯×‡i#ŽS]QªEû$Ýgln’ÇÓßnwÕ@›4¢ì—iWÍ&*ë‰gð›{$…ŠMt–ȳ&Gs±5³Ö=Êg|¸m)7|Öü'÷º‹xPê«#$˜~ÇtzÒ)(0‹n[ꦂS<t·õ)õCy|ãòº?4G¿KÓÏÜŒ¥x•q,?-„PžéO~×$‰ÍÀŸ¶Žab*gëÿ¼‚ÊÊ?Cëy˜´¶±çYwrW¡öA ìgTþÆü½¯‰Û¤öä®ã`;Ußfƒ$?”¬°ÞûóãlÌÛŒW±õ_ãn–’÷dóÝÞ7§áX½¼ÿÚ s¸ß
+endobj
+319 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1586 0 R
+/FirstChar 11
+/LastChar 121
+/Widths 1587 0 R
+/BaseFont /HOSHUM+CMR9
+/FontDescriptor 317 0 R
+>> endobj
+317 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /HOSHUM+CMR9
+/ItalicAngle 0
+/StemV 74
+/XHeight 431
+/FontBBox [-39 -250 1036 750]
+/Flags 4
+/CharSet (/ff/fi/fl/quotedblright/numbersign/quoteright/parenleft/parenright/plus/comma/hyphen/period/two/colon/A/B/E/F/G/H/I/L/S/T/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)
+/FontFile 318 0 R
+>> endobj
+1587 0 obj
+[600 571 571 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 514 856 0 0 0 285 400 400 0 799 285 343 285 0 0 0 514 0 0 0 0 0 0 0 285 0 0 0 0 0 0 771 728 0 0 699 671 806 771 371 0 0 642 0 0 0 0 0 0 571 742 0 0 0 771 0 0 285 514 285 0 0 285 514 571 457 571 457 314 514 571 285 314 542 285 856 571 514 571 542 402 405 400 571 542 742 542 542 ]
+endobj
+1586 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 11/ff/fi/fl 14/.notdef 34/quotedblright/numbersign 36/.notdef 39/quoteright/parenleft/parenright 42/.notdef 43/plus/comma/hyphen/period 47/.notdef 50/two 51/.notdef 58/colon 59/.notdef 65/A/B 67/.notdef 69/E/F/G/H/I 74/.notdef 76/L 77/.notdef 83/S/T 85/.notdef 88/X 89/.notdef 91/bracketleft/quotedblleft/bracketright 94/.notdef 96/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 122/.notdef]
+>> endobj
+315 0 obj <<
+/Length1 967
+/Length2 3462
+/Length3 532
+/Length 4114
+/Filter /FlateDecode
+>>
+stream
+xÚí“y<”ûÛÇQv¢±T·dßfì[„(;ÙÆš1ÆÍ¢1vIö­0öí P$Y")ûÆV–BÉrÈ®pÂØ~Sç9§žsþ|ž¿ž×sßÿÜïë{]Ÿïçu]×-$`f!¥åŠsAèá°)ˆ4DÐ1Ö†ª
+LB€ÎÓBº
+®…E¢
+ëŠð~Ã2ÒXRP:r pÃᙾSQÑúúAJ2üIÊ€ŒÉߤ¬ÈXÿ$%@Ææo¢ÌUö“(u.?IÿM0qý!€ ⤔¢"eep¿ < ƒÿ)n½~AŠAÂ/Hñäýe)Rþ?ðß³ÒÖÆùJ)(R²
+ӾAT(
+ 57A_†½ ¸[’N-Ác"é}òr8´Ü¦“ËÑ}1[÷½¹'Þ6ÍçíY-}Óvc¦BíoŒl«=¾*.%Õ ›ñLœñ/ %kšÍoK¤¤d¾›Üo«Ç…Йۖ¿Ýh¯0ðÙ¦ŽWÅA³æ›é›4þjæóUq–nüË ·©ù™"RoBNÓ ž/÷탹½uvdaãàRÒ
+ª¥ŠürïfziÆ–ñrCïäÂFÞ¾9ö¤
+š–:°Bt™ˆ–j†Ü`å6íÙÌ[Ç°\¸‰t¢u;ÔcÝ£µ1Álß’ee¬Ô^ÚŶw«Ú)ˆÕ‡æ˜Ìx§}´feõÎõoïƒÙëy#îè‚r›yX¼=µåh[So¹ØeŽ¶D»Gôç¨Mng–·0«C,|77BF¡×ú‹Lº'wW8®„ÒË ÉóÊ'{qNSĨIêr[!¾Õ**;ÙÙž¦#*i×ÑÉ1 r´&´µà“Jr±šç<ªv¨RçæY±N3>zÂ3ýºN®(Oq–@½Œ–%Z¥Æõ^^ºKe*ÔsïmÔ“paOïÛá‘«âÕšÛ.ÙhõŒ`fâƒÜRô‘Íç{­/’{ùÈÊC«ã<OjgšéVÉ]ïN¯ªëµA\.&”ö¢wÅ$x/ùÑå‡$˜½J?:81²Þá0û|½Ü?³É¾oŽ-$ªZèˆc»¯kB¼óNu€.óÀ}UÝ€_:›?BÓãV—¸Â«/“˜®xxJèV=Ï…üDl1ùîÈÃÚÂÁgdO¯®°{µ^¬‹ê€yí³8Ó3'WÒ7û—^¹+í´>-¦/¶}s–+ O|jUÅØÞÍ)šÖîƒÙåZ>‹\læç0»}¿o=2vÉR³!¨j `Õƒhe¯ÕmÿÒ I†!éR'—µXâîÄjÒ$U칎‡TZ:L2ÌX¬ßÑ€,÷–Âéö§;™é\Ä15F%KœŽ ã1<úV⥙ê1ûåש|š¤9uL*Ë$Í“÷¾¡c>œ;ÒÙ¡ë]½âžûàªh!\1̲èm5ÂÀHÉȸ¾HÔºøÊc•¾Vî%(¿W®Ü`¬˜ú¹ÇqÁ+Š#Âí/†Å¹ü¸A߈Ì)®$ ²1Ò ®|,Í. sò@<}P?*Î¥@óÉá½O =ÉÓö&k-H†F{Ÿ»©¥ ÑÞH‡c%û^hig2)O³Û9­¿!f´Ì›Ÿ±÷€“¦lí3VÖDHu;¶×^š²èØݧ ¾ð 09Ï$ñ±g“î\ü&šíA$ë
+øì?¸[,¨ýs4PZÂM‰Ë¦mýÈeI· R$ÌØDSñÑÜŸ›o_„ÎGÕ†úÔ€4Ãvµ+Idõ=ß8smxff¸è~Yá·µŽUÞ¤®¢(î˜d3žÄ‡^1Ü /^#=•
+‹Y«ióÚ ¾º…à–½£ =¶"iMƒuåü¢{>vF¥áùP§È…Zó6OZç0Κ45N[Ô,4²çgŒ­ºýr½™Úêªî‘uüÔPÞ†ÐèÙEߎãòø£Û«ÏT»+ÆÞ7[ÑGæS&%J>­ç%3‹œè¶ôª¢ ¿±áxz ß’T=;^õ «q/;?|Åê i‚/Õ\sê
+Ž™…z%KN½v:i¬ï¡|ëæ
+Ò±(8U¤ÛÒó§w~1ÔEß^š.»£ÆÛ5‘û7™ùJéƒÚfŸ\t
+.É,àl¹ø>‹ŸÅð”NÒ @{Ÿµªä¦Ö¦3hãì1#¡„ Ïò׆§'ÄßÜ|VéiÌUó8‘×=/’ùÒ°åõÖ86[§*¹‡ýí§”Õ7fô×Ý9ä5moÒðkg³W$Ô¶+9Ò“ÅH!¼…Šñd¥ø~bà ðÿðaúÿp4†'à00ü ¦ÿ
+endobj
+316 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1588 0 R
+/FirstChar 65
+/LastChar 121
+/Widths 1589 0 R
+/BaseFont /GNTGXY+CMBX9
+/FontDescriptor 314 0 R
+>> endobj
+314 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /GNTGXY+CMBX9
+/ItalicAngle 0
+/StemV 117
+/XHeight 444
+/FontBBox [-58 -250 1195 750]
+/Flags 4
+/CharSet (/A/K/N/V/W/a/b/c/d/e/l/o/r/s/t/u/y)
+/FontFile 315 0 R
+>> endobj
+1589 0 obj
+[893 0 0 0 0 0 0 0 0 0 926 0 0 924 0 0 0 0 0 0 0 893 1222 0 0 0 0 0 0 0 0 0 575 657 526 657 543 0 0 0 0 0 0 329 0 0 592 0 0 488 467 460 657 0 0 0 625 ]
+endobj
+1588 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 65/A 66/.notdef 75/K 76/.notdef 78/N 79/.notdef 86/V/W 88/.notdef 97/a/b/c/d/e 102/.notdef 108/l 109/.notdef 111/o 112/.notdef 114/r/s/t/u 118/.notdef 121/y 122/.notdef]
+>> endobj
+312 0 obj <<
+/Length1 949
+/Length2 3204
+/Length3 532
+/Length 3850
+/Filter /FlateDecode
+>>
+stream
+xÚí’y<Ô{Ûdz%#²V‡ð#!cìÆ’%KBÖĘù “13fƾPdËI”P²Ë¾/e+{v!k%Yž©sŸszºÿ|ž¿î×ýûþó{_×õý|?¯ëºDMÌÎj¢ðŽ .G> “‚ÁíKææ0
+Ãz( á©oT'ÿ¦~×uÇb®ßåtéßòW Öû_xW‚;$—ð(ˆûµÔüÓÜ%…qwý5{ŒÀbš8',HÿÂt1^ ÊCF:d¢;ø# âP¿z ö퇨‘ÞekCK‰ ôGÒÁ‘ͽ «~¯þÁ°˜Ú"Æ °•–’–†Q ©ç¯?»_ÓÁ!ñ( Žºò
+
+¦[yºÄ‰¯Ü¤Mʽ=Ë÷ˆÙ³™Ï¹d[…3Þ)þŸéíÄOúÜþ’eÇWR_úXÆ%YR¦¹ØÊ)’¨ä&÷!Xö¸E,Eö‡÷‡B¦‚«sM™g¹,¢$‚œ'Ûü<Ž'­Ã®U—=`†
+ˆü.ßÍòÀ·›ÓåðÇ;>5G)—:jS"õhWD$œ5üJîxu†íBušL+îhZ¿ö¿Ü8-ÞØW²¤;:¦ØXßtc.[½šm•_­`Ó>Xk×3ÑÐÃT!®t†O'§Î~=?µ¬·×Êľtñ©ïJÍDÛÈ «p=xÓZQ'Ç›ƒ©#t}2ÁÃ÷§±æ²àÑ‚opéS;ÏÒÖ|íècôœIúãåøs÷ͺ-Æú8ÊÕ”OvÝ*4û–„ˆ¸Ä^F£”@aæ 4é“i$ÇñQ®E¼Ý´ê•Ú“½.ó"d¾#å#Α°Ü¶(,÷#U±áÑVÎð§Óé¯Å)ºéFÒçzèÀÛm›EáÚÚ5pŽ™ˆÒÙ¬í‚ó;f^o(¥]XÅà9çµÎ¥oÞ”°ýì£Ü]ܬ=¼à ^ö·£s눼 D7+ÊBà–ñ’©Q+/müŽï$›0Ú=øÍòf3šÓ¬S ‰c í ̧³o€& ”WÄÀá­øÃ(qüœŽ
+Úòx‹W
+è€^ߌòÂ'ˆÛšk‰ ÆZaª©5ßÉ‘·¢ÂDø²í9Ë3ù‚1x¿­´÷(- ¯¥Éˆ6ZŒûCtb²u¯Èh…“~O¿ð±JÑoŽ m öbÙJF<mêQø•Ñª¡ážsíwœ«ƒàC$‰¨ž·ç‰w·ˆb2´üôˆÌ·OÏ8Ñìl¥‹˜+˜ô…5U_˜"9EÖ«w¤wè<ÄpR}_í
+‚ÍËqš Ñï±gÏ}du8Î4³|nWloÜcši@É~3÷ÝeöGºO¥2€Ö4Œ<=ŸV$ áBN ±/b}hßòôðžôéõcÆÈ9Ò9êëHè
+–¾ŽžóñVHŒ R´)uôQ™Ðþv5
+D—œXô‰ |#žª¤KOþž6dôñaNðãœI´£ˆ_ã#YDi<ú뇼úå+«¡CÚuƦÍñ·GtsÄ`å ë &ç[Ý]fÛWCËn?õ¯üc…õâðNa…ÐÝ᎟Ù3¼SÙGØr Îk‘>'3”e&n )ñi½ûͽ€Ïšn‹ær}šÑôîcŸ3nÉïqHúLŒ¢˜”ÈXö¢Z+ƒµ?:|œM|ŸÓúU㊄ÿ0>½››C")¢lW àÆƾÌ!j\/2”˜öfÒeœt×tvÒ üý^‹¡9ŠÌŒ“nÏtnÐÓo[XÌ„L¹/Šö†$„„ž;â¬vµ·Ø¿E§kÌL]«áò`ö•›SœÎ!g<k¸^G‡9’•X 9–Qq!Ž< Æ“R<|”ÌI-¶©ÅMQÅ] #ϪJ‰ câÜÃÊ|Ü2É<þþ¢u‚K~rkçÄòØk\ÉTç T–¯ÝgŒâ6Yãé©8/ræúS®Ú{Ç$n°‡Å;•j:aÇ­AÃnjø£ç'îÓ'°øÄŒ—¯æÈX˜²h˜ÜìiЧÌPN°ª+ËhŠ¸éZ_¨&§eÊ—ê[Zu½úâgRÄr´¤Ò6O9Ý3ö88ÜÿÖm—쩶g±žG:ì8¢…!Å|<Ÿ`ÕPaGŸÓŸÜɳ³jlŸUòsk(ï
+²ÞéwÝl•9Åy;ŒTõ¦¾'€’3K!®sÚ
+¾á÷º–±çüd9¢±ì5˜Ñ•ú
+™¤u²Á0£î|Û‡àAêP«Œƒ]ÛÇ÷¼ÛÌrÇ[DVÃûY{óBÒçëÝèñS½Ã-D¨-ò³býzg»ÛBäZ¢ËÍκ©úe:ôI áäž'¿Dxsw]½ßS4mƒG|íÆד•€Ÿé’Mü¾ûÝ‹1¿ù̹œ®¿^¥ÚÈÿ)ùAŠœ°s:¢.]…0fR1¯¶5›5bèZ>ŸÂ"äÎUÅû&KÄ©·ZªØ˺©õQiH¡úSU-û„{ŒÂÎ:á²°¸úãÞo ãx“ÌÔ“ýÀ¶Çmz›åßÕӑý”æ­ÚLWóK/‚ï3§¤”^:¦å
+<“î´¿ç?Ñn³õzº s:™mZ¿N/ Òùiø‚'§d÷€åe’wƒÝT ëÃ˱‹˜ZƒÅMExyîmw²§Ï©©8Òæч g¯{0F+|y‚F9ž¨y°À”F%:Œ=aõF·×­;%Þª$Šc5ýtµMUgOúVðy$Ça°=j©¦Î6ÚoÛh©Moé-ø¹¾|êIÙqq/á Bô7§oÍ[LñÂL~PÐt´XÐ2üˆ$/3Òýz¿,g áºÃ;Ï‚.–ùÀ †âv´óɪ€ÉÓIé,ªWkâcIÚŸjЭ¿éMøè{ˆ.†¼ÑØn ñ†ûó®Ë´ËsÃ>îå2œzy`Íq@h ÊAŠÍét„D,î$\ž=Y_ŠØË'“^Cú5…^j”²2ùz3Z´˜g(yø#w–ˆ–¾÷ð˜žY9¡Ôªà7šì¥”Ì™ƒ èî†dpEüŠí­¯OÅf]GLSûZª+>â‡Ñö´Õ"(„¡(ââ'Ÿ/Ì =+L7(KÏffOöž+X’ 94¬Òül6¥É<ߤ;¢}¾ ¦¢ÒÔP{ò +ûgtí<Ü’7B3ÝžsnÁþZxpº ”Mü0šÃa9Ìã1J¦¹SÕãMÞëÏÑbCO»“s›%ȸëÄã.)¬•—ÂjÛCÅ4ÚÔãréßj0lé
+8Ì…±‰Føà–÷-ÛHÊŽRumüM33ew«Q‚Ìæ)¦NÛyÍ
+/F«ë/öqt·&”ÚÕÜ*:SZiKx¶ÓiŸ·+œ¬Tç1(TÕ|:PáÔaíâéÀQâǶظý‹!V{)âzJO6^«k)nãßjçÿ19ïÐz›E3‰[9JJ976¹ZY© hl¶Wö…ÖîKx¬9Y°FytÊ°+'¢®Å_×[´Ï?åv¢LŠŸâah¤\‰€L²:Ë4ãho–oÕ@ï¬ÔÝcë¹,u:¤¯“™/K—9€µ6ñuá–íðÒ,Ö5ò¾fÜ“¼Ú†"=§N·Xö¯?ŽµPÓÃó¶Öy†îŽÜ
+y·½8c" Æ` ° 0ÁîJBI:ùÞkÃîZߧ jÛ0~ÅÑò¸ê Áã#{Óâ6ÂJñ‰bÊ[¦H¥;Ãñ§”¶©åœsùK´×½Fr’¥ÿä¿ÿH,ˆ ’ñ®¢ ä
+endobj
+313 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1590 0 R
+/FirstChar 46
+/LastChar 117
+/Widths 1591 0 R
+/BaseFont /NGQYLW+CMTT12
+/FontDescriptor 311 0 R
+>> endobj
+311 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /NGQYLW+CMTT12
+/ItalicAngle 0
+/StemV 65
+/XHeight 431
+/FontBBox [-1 -234 524 695]
+/Flags 4
+/CharSet (/period/at/a/c/d/e/g/h/i/m/n/o/r/s/u)
+/FontFile 312 0 R
+>> endobj
+1591 0 obj
+[515 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 515 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 515 0 515 515 515 0 515 515 515 0 0 0 515 515 515 0 0 515 515 0 515 ]
+endobj
+1590 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 46/period 47/.notdef 64/at 65/.notdef 97/a 98/.notdef 99/c/d/e 102/.notdef 103/g/h/i 106/.notdef 109/m/n/o 112/.notdef 114/r/s 116/.notdef 117/u 118/.notdef]
+>> endobj
+309 0 obj <<
+/Length1 1422
+/Length2 7465
+/Length3 532
+/Length 8328
+/Filter /FlateDecode
+>>
+stream
+xÚí—eX”]×÷éRRZbèŽi)i$f€afè.‘¤¥¤»•¤ I é®g®ûzîKŸûùø¾ŸÞãù2¿ÿZ{­ÿ¹öÞçq “Î3>y0¢‚€»ñù’
+¹ÚÿVÄ>ÄoA €€Cþa”/7Ïßq”#7{ÈB
+¡yÿ¨'B]µŸ¢ÿ}ã^¾|Â
+4œ¹kŒ/KS­c¯3z^?t}Õæ§;¬²ì›2y»îaµžêÓüÐø0UËû’ù,d›¸µáëñŽúÓ/‹ƒïLò{3ö?mçèp*éoàÎ3¡ušyÔu¦½3VI…„‡Ö° 3鑤8¿x¾àI’‡µ0àŽ×Ä3w€hs'»ÌÃËŽ¿}~¼õEÎŒ2}RÔ>29m?å³EE«ñ<bŒÎ{“ÖÜr}Yž. ;&ÜÀ›ÿ*“Unb‰›X¦õ«Ëà1ÿ5t0[ÓSˆ¿f½(ÃužFÛ¤;ÛšvÆÏ{h¸
+ØÄП5îêÍî¡1æU·MÄE3E‚û+w¡š¦"¢7`tOÃyœàQ"ý¼ˆ}±ægç¢H ZIÚGH›Â³XY»/èïû©ªÇ> ƒ§G¬[@…Z‹DÃ~V¡ÇGžkQ¤à÷¤0øî&ð×V¶Ÿ´õŽW<º…Ó€ ?[«¼‰ð[ÅüA¹÷šÃ“š¬vÚ  Ê?‹m»ß`,™œìNx Jâ
+7y‰t”ñd?¥°¡d(Nÿ:®5—(õöÞõ«@LÀ‰Åù5»\yyŽáéh ˆ8`3\}pc˜B Ú|¼ëá(Ûà}·XŸÖÐkz†ç›åþK Ö­:mH6é1Å-öNÉůáãg’<
+æ­ü3‚:…Âj¢ÁŠtÒXýÂÆ×_\"E1úO3póˆé íÞ¬ŽN[Û1¯j‘Ó nh˜[QÒ³å1ýÖ?Í£2µY’ t9µû?î3Rùai©jÖoÆNK*fÑ r£ãh²•Ê¹gçx.¦$kd„ö™'vuR8¾Ù¾ô(Ó®˜íçWýP’ç^‘”jÛB_„µ3{½¡Jw¨šËÐoS7ƒ\lÞQ)\E -°ñRä‘VîáÄ–{Oe,¢AãÏQÅ£HÆTL1æ_<˜”*´â²1{䘿|Yr%¾â†•úõŠ#+νä‹z›Ù–xžTTx‰¹æÇçÅŠè–õ?ûÕ“_‰E05Ÿý,­ à,§i.›“3½Nq–‹³cìÉ™©ººùÕDÇš e™®9kö3’•°‘ªt8’[zŠ~ËV·½ISäzCnÄÖÔ¥®b¢¦Àd4þľJ‡…+”@‘äh vY¿a­!uÖm¢ oÛiSsdt1c¡þÓ:ÏÈñm6'7Rh³BPJgÀç{ÑØLd¤h­Ë…ÌÜb°Ö,‡°*Ì|‹·v8жû+²Ü·ö³GÎ=÷ÑÍmu=í¨W¤»öìì"ÂX”ïD¾]âX,Ê|íj]„ÃœlUå”­?é+9šfÖÛîê·x~]5lVW³Ëܳ6žö5mLνd2šç×myø´8á×÷Îãwmþmñ3ǧøô›n¸º—*Ø´ë·f•j€‰fŸ‰"™¸ÎÀ'«œŠ“êm}w²¸%_{’{w‰Y¦EÖÆnBXø5/ûûñ:3„ôžâXjZ¢wûzÉÛï{ëgX£'Rž½ñ›LÁËUs,„…+Òµ6ýÂØž>×< ~=Ùýä1Ÿ»uãjŒ­«xçË×ì­Di¾½u¿]àVS
+{ûÍþaM¿Îw†T®‚ŒÁW=¬tn>›4ÕU¡"ÉþçýĬQj⡺gbä‘y¬Dî—†˜žPîFÞ$«8ÀžôÒ‚§º
+zy))§(1^oàä6l›fe+˜Ï÷î³Ë*UW¦]añ)q‚×k_´Ã÷¶éÔÄl¡ÞçO™ £ÐªâÀn,ÒCdm_ä«Oy³ÔÄ
+s,.ÈÑCJžpÛ±ã\)k¹`- JiºYÜ×Wxµ1ìW¯N¢¨Ç CÑsç˜Ãt7÷:ñ´•åÐIg—Jhù
+TÄcÔ˜‘ÆÂz;q¾p'oü•ïcKfyÂ.{*4œH7áw–0^Ž¬ô´åÆ|ûRKÉóLM-âAŽ“ øâ£á“¨3ª&Í ª'õè†::ö!œe²/$Ý£Oê•Ibè¢ÊÕP°PQìç*’<®úÌP“ó}œ›©›zæsð¤…í^dŠ¨90[µ¨ò»Û!î[JæŽ ;G_"‰þ Ãj±u·ž¾w¥%[2]m·xñºGÎÐ]ßåp6m?!WGܘÃ(ùÄa’¡?8FÞ«ÌݦÃ}¥X¦Ýbáø²šýžðÏUÆæÚö¢©6ø ¸GÉ)Ò.ǧD–[~Y©ý%úܨ°t%SqRøFÖÙÚA€zC8Ç6é«0ŽišÒi<Ü4çãäå³;¼$`²œ3LKž—u«¼ÖÌn1ÀÊ6pÂp¹qRâ".x)ãuÔYßN%sw^ÅLµº‘­=øœ_bÝêüººÅLí¿iÕ‡[wŠj[)»%*%ª}ké-èñ0Ûõï2Y÷yéûöS¦þHÛ­à==ƉÖ +ŸÞè´ðã¤Ê’‰i‰v8›;âþ]o›N}Åç›}ž6_!ÝÄK¦Z_’ %+b=5ؤÏ>0¢ÿôµc™~y=‹H­Äsïî6£‚…˜ï?õZygæ¼z0©c û6msä,„1€Þ>²0¦’òœ*ù·û÷H}|Öò“w®I§s!ºÔËÖË\O£guÂœl·³„#R~~Àý’#£ãý$­#9ÿì%³Z_µj‘¥p_]b㧓Â=™oNKë…GòË<],’øûc±—NâŸ
+C:L˜ûC"+À†q1èÏiÖOï?ôd8îš=ÂÎèÀ }ªxO8¾r ¹„Ö!i‰%(óø`fpÔN´£•–´—Hˆˆýˆ–â9 ˜Æj3Οp™G¢kv.hD“/|r$Ÿ_Äé¨öÁ(“ÉOמÖE4–pJÇÏ¢P‹éö9 Ìj¸@„usˆ'lâÁñøK¼þ€HO7Œ!dqÅn_®"¹øB5ÓŸdYÁ;Í{†Ç@X]ÿò—òOéÉ÷ú:ª© AÍЇÆ¡Ãïòd™´=ä(/¶D’áé(¾ ôûº=ù˜ãùO*…ò“5=Ð’þŠöÍXˆðù˜¢Š·gÎ=ëþ'»¯Œó=ÕkÊ0dçbdjó'˜T-Ò©ÇW„O¨™è혾‹÷¾ªIlÒiâ×k›­(éa5§-9˜&ߘ`9Ÿ»5;©|5&šA‹üJ‘;¼!ûiè,–©q¿<´íÉRž%V¨½¾áõðy” ©ãž©Ì2ǯ:©þüMj
+a$›sB'ePœ’N=­8ǯ¹`š”ª‰2Œ#ßZn48žÈÑZ £[Õw ¤lDs^”·oÜÙÊÂóg`ý  ÛŽÙ`üŠµ¥¤'1"û¨H—Ëé< +2Êâ¥è$=ÛŠ— veÛÕÕûti-ðÃ.hz~/ìÕ!wð¡Âöc‘ßjÙCUqJû’LѪYŠÁÓÌXõoØFé+ûç\R„A§âª©°ôÀ™«G‘õzö!£Ø%¼ÌŽL-Ít/KïWR(Iœ–íÍ: ¯[ ѽ‚µêÎ-õ9TóyÔŽÆl%F*»°"1µk¹õÇÂ]±£<©™$Šé;ñn5[Ù}ŸUÖn÷[=RÔKuQ§/0'ñL &¡D” ž¤°g¾£õ
+,]å½ÓÜÐdK¼®Û1;X&úõãÑ{ÓK¯y›-<mA󒚇²\ãe;'i$tó¯ç÷çŒGvâ¤,eƒ‘ŒQ…»í{6mL´‰kœÝ ËÄÖƒ¹m›dÕÙñjåMNU5;ÍîqÝ8+t‚Ô‰P-Úe¸xƒÞõ¼ R”rúŽB«`ªØ°£Í‹õŽ³ÊçTWu{J1Å>¦åMÚí”N>¥c/KPÑLåû ¹úÅå¥ý‰uCXÛOg=ºFDV¬ÎQcùö‰kצˆ’íêêÏ8™X. ûœ·gÜ/À?ÎÚ¼IBÈî^'Ûe€wêž$²qìÐÔ¨xdJÙ§Ö”ÎõõÄ3#›®é¢“H‚Ÿ5v
+M¸:¼L«R–( ýUøŽ¤X!y/‰í“ÉOp£ÿ¾÷¢g4µtu»B˜~¸N^&¿ä éò·òóJG±ãꔩŒ^À;æõÁ¥R„Ae‘Ùäæ«3.ekt™ói†º2€µ ¼Ì}Ç’~Û„&‡¸ Ää¤_úno&]Hí†(æ¼é=ªÎ
+=€H‡‹}R³rŠ§ûãEÓò­ø&c‘¯ÉêŽÄ¶n
+OÝMB3C~ŽîÉÊÞPò(¸ PˆO¤ÀßnúNºzeÑ©Äžµæ²s'³C ZéSfêèèá𪺲£ã˜n$sæÒ’•×,¨5'
+Ò\ùÄD}9{hYëóøùâ+Y ïðþµGgE¯ú¹º…E;Š«a¦ÆiŠ>÷Sç…»orN<î0@˜Êê×¼d{Ö8ù%éÑÀ©P+ªàÈ—L»ÊíVå›8pL±õ­ðíÓFlƯ†á:_¬eˆÝ“é•¿ê K_µ­Æ‹3®VúËâ‘Dç7åKØr®ˆû+sÜsÅä•LÁ±· ‡e”ÊÙù•Î=ÄÜÊ' Í2®û–vxîO*ºXñ"±½©ØÊ?„¾¸àEÏå@,‹!
+¥Þûõ£Åƾ’`¹_"ׄ«éÄú>ôà¹Ô!eï—9-X~²òrFÙMjg—^ÁE>©48Bq '4að™ty$¬âÚ¤ƒJ̹rL¢
+¼¯èPÉmÈÿkç2h,ൕ×ì§LãÏåûOäi¿Ê¼ Å$¡^ uœô |•í­Œh ËrS_$U'zɬW 4çØé/ãRja=ûö¶˜·
+h6½.¦cU¸¶­)˜z¹F@Ãg+éÀM–”¤æ»°›Ùµüš°6’IOÄ+»§ úòâ ‹#WŽåŽ¯•PÖý2â‰ãÃÖì—ÁN‰bæʽ¦í¹nÑuj=1û lB)ô[¿H2&
+ðë3ŒÂj‡š]ˆtm±tRÈwSÉBèuò:Ñ.º8Uàƒ6RpÐÕ“XÌž@• Ši
+Ì«ÏMÔ—,›#~û4”0ÍÞ[?Y8Ñ­¿Ìä9f ¾£èˆ‘ÈÏû-ç/[¹G¯
+z 1qùÙq’ä}í¡©}Üxö*À‹4èëý\ùÖbw^âYÇ9x[då“0ŸGR^ô\Ég¿a6“úÁÆkÉpËYÈëá
+kÙèo¤ç^±S<R¥ ~J·o ¯hðqˆÐ^]!pÚWª:Iú{Dœ§¡‡M î•(Óù¾Ou°Ä"C“»s»§î£x"ß‹bYˆPñx›h”—eX虸MI5gÝË=Õ"ò2צº˜ç›gýD`‰3¢ýOõž{Ø0k¥.Xf\?Ÿ×É >Fãe5,*&÷µý"-8ØÕG¯ó@"¡üËp†«j™GË…«Ð–ò2€ÃWšõùúE=úÑÚö­G“"„ÌËxA$E¯Š>`&îŽwÓå»p¹JWŠ¾ yH¢<›RbF¨m7ÍlV80þZ_à”ÁJ×Fü “y ‡¤JT”Úý<’'.HTãCì“6ÌŸ;q\<kfÈþ,¶ìûì|>þó­è³×QñmÅéýDòž5÷6î]›ÍC¬ÚjÆŸ†¨Áü’ãú©¤³Ú6ªîÌ°½ôy^•Öí3Ðå=Ÿâ¸y—ñó‡ve¼%Úø×ì¬ä„ä6‡ ⻇ÅQtulÅwÄh褳¬ëaê¸ZTLuuµô2³ÁM ƒB‹^Ư,ø.B§P …¨ ¿íÒzM‰Ü§£?uÙ‚úœ& ƒ¼Œ÷”·µ*é«4}“Ä•ÒÜ•žT÷>x6Wœt@þ¶ƒlýN#òÄY÷>¶b{ó'»þö¾.€*rÒžôX‘שå…a5[2¤çkzGüàvÈ>­;3gÂç&ÅFæò Ô kU€zÓG/ùs2ëOñmwƒ‰ûG”ZUåJ-0Çx‘ô!g4_Ö¤%4m|»„.^l.[ú¾ßÈi“dÆÙê.Ÿ^’›7ˆV>¾ËÈ^Ž¿œÍåéõ;¿Kqc›ê O­3«h2Y¨¦ä‡eúÒgöèxÑ»yŠÕ.²»=Ï{öKÅ´Ðo^ÝWu'+<†Ë·Œr}6ŸÕ{&’f‚»€tÞ0,<ø5ÞÑæÒþþ¾‚€G±³ç—œqûX@Û "…7q¬ï·¹i)8f5kø Ì)4VCEqdâ0Ÿ¨¸•È<°PŽ Ò}· >ÔÑ.¹öÃzQz$Ctâƒ~ÉTV&õå`Wd{3u@“)nn`@l¶!³šmÊ[‡Xîgýµ¨Iz‘X6FiöRñ÷Áj‹»„µ-Sù¶#ž@Nú©:CŽ.ò<§¹ìÂÀ_g‡¼sø|¥Úê€)ÐÝhlë±Ø&d‡go°2õ­ß¶³Ã‚¥*^W:¸l½Ð¹X9¨@ûré㯞ý®CÿÔˆ51ü´ ¦gS™Ÿ[tG–˜9d\ª‹‡Š⧎áí1œdõ+‡X«¹K5~¾ ¤Ú-aÖp¤§kš›-`õ–„ˆ‰_øÑõ…tˆ
+õUñ#L´+8Ø37.Úµôz8½æ³s( ˆvH’‚C¬/_HÊR´¯´=?´Q¼%¶`ؼÜ]±ûÄï)kÛ¢‰9ýÔô»˜ºÞvíMŠ‘©âmåsH% ‰Åu…lÑl™YÜC,ù~YX¡é4¹s”ô‡;é*š.‰S½Y‰èêu·îÝœÚYùŸéWo4²E=7(°äe›À3äýi1S7@n¬„’àÿá‡àÿø¢€ rqC8\ þ –Cœendstream
+endobj
+310 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1592 0 R
+/FirstChar 40
+/LastChar 123
+/Widths 1593 0 R
+/BaseFont /WVWCGW+CMR12
+/FontDescriptor 308 0 R
+>> endobj
+308 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /WVWCGW+CMR12
+/ItalicAngle 0
+/StemV 65
+/XHeight 431
+/FontBBox [-34 -251 988 750]
+/Flags 4
+/CharSet (/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/seven/eight/nine/A/C/D/F/L/M/P/S/U/a/b/c/e/f/g/h/i/l/m/n/o/p/r/s/t/u/v/y/endash)
+/FontFile 309 0 R
+>> endobj
+1593 0 obj
+[381 381 0 0 272 326 272 490 490 490 490 490 490 490 0 490 490 490 0 0 0 0 0 0 0 734 0 707 748 0 639 0 0 0 0 0 612 897 0 0 666 0 0 544 0 734 0 0 0 0 0 0 0 0 0 0 0 490 544 435 0 435 299 490 544 272 0 0 272 816 544 490 544 0 381 386 381 544 517 0 0 517 0 490 ]
+endobj
+1592 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five 54/.notdef 55/seven/eight/nine 58/.notdef 65/A 66/.notdef 67/C/D 69/.notdef 70/F 71/.notdef 76/L/M 78/.notdef 80/P 81/.notdef 83/S 84/.notdef 85/U 86/.notdef 97/a/b/c 100/.notdef 101/e/f/g/h/i 106/.notdef 108/l/m/n/o/p 113/.notdef 114/r/s/t/u/v 119/.notdef 121/y 122/.notdef 123/endash 124/.notdef]
+>> endobj
+306 0 obj <<
+/Length1 1004
+/Length2 2211
+/Length3 532
+/Length 2884
+/Filter /FlateDecode
+>>
+stream
+xÚíSy<”kVY'[Y&D¯T(ÌŒ¥Écßfd)"Õ˜yafaƉcßc(©le)u˜H'Š§ÒB¶:äãØIÖ⪳8~ß_ßï{ŸÞûº®û~®ß}ßÏnåC.š(<Õ´¢Rš-„`Žv9Š€-8d÷nsˆe© ,4
+Pã™TxñT
+‰ àA CåÝòœü7L­/nÅ$‘0Xòjùµ.ýƒÇ’‰$öw•Àd€4
+a•òërôþÊ­Kä5æÍ#è$,ý/öµy0Ä­¾²5ðŸc43£²B5µõMýý¼¶"û$R/üoB“F)Œµ—Â[†±‘·@ Èqî*Î0Úsë§ÒS–…/Ë`"Ÿ›¯v Ýs¯=užˆwÑËwR&0ŠÆ.÷sSš þ¯¶Ùá ³¤hÕrɘ¤ãsRÜ„K%îi‘z Z].Pö™„l±å}ªc¶MGròbú hçâU4ºçT"šEóñ#f…õ{;6oÝ뜱w§<²ûªPÏY(»g¸mÇLmç±1î}ËÛCPºU‚ê+Ÿƒ›½ç° ¿C¼|‚^½Úç4„ºÿz¤?x~IÒ1©Á“5¡·3v÷ô—Ö|Â)…ÐÎ'BÐÖ¸ñäËóaŽ"E³‡=/›¢÷ÃR#­ë¶7èø.Ê7ïÃdKà½:ª•{ê÷ûᛕˆØ•!ùâSŸJ°þy5g-&B¯Ü1þxš®e+çèTѦÍwdR&¯»ÍS?_Á<LÐF3¹ Ùµ¾)ã0èà¤î³Ž—ÖE‘d>Q¹ aN^5dG¬Õ²`òýÁÞćºó#ŠSÑåù.Q³CÜÀïÂæ/-.u¨êY¶ÀB?öñUG/6 _÷
+œAå¸MÜ<Ûàñ8èöu#×z¥¨qPúüÔ
+šœ&„Ýн`20
+£˜Îd,–b£›\k]TP:꣑ê1eB‡Õ7&W£KâýM˜€zmÒÞq¿Vw*ô–|ÙRòs“’t´Pnì`mØ™×hÆ‚-68{aVðuÆÛ]Éj+£x¯hogÎYŽýüëýùÔ-+7ù§ÆŒLs$§ÕÞOsG¨û<Û
+ƒ¯yX²XeÈ•Ñ—P¬H)Ú2s«_¸ü a%7~=£ÅÓÓQÂ~抹™ÂwN^XŠ«õsÏ•UK;T°=?ýªäÊqA»!ûÁÆùEýš{…÷¬ª<åjB”qj(“õ.É(¥P!Ž›ãô@Öt ²•¥v Þ&ÒwÚý¨ÝTî\àâØDaëÝ“1w/¦Y'¼èßÍ—…_®¦©_ÅÕʉ7s \ý\›‘´¾í–_D–.[N9¾$t{Üž«Ü”?KXúL®hüò³6UUµW$$ߢ\¢ëQÊoX¦ÜÁ–ÚÚ{priL™ÿÖ{òµ•¼ü<‰廕?°iVËé6UnÙ¹Eïö úÈF2ò•õµ&üu *BwD§‰L]êzb°@,Rõü<Kͬ‘ZÜ%äŠî@ŽfhÉLÁF¤æMXÜm}¶1Uø•È"IOÙ÷­ÉÊ~@×y8Õ|è·¢dÚ˜Ÿ½oT!h¯­Í?>iÉŠÖŸ‹[Pê°1µÓ[±¾$3Øg79ÄW—÷öTn qEBÓHKðÝÎ* 9.ÛW`ÄŸ?y Ål~†Ø…ž9!q@øÞþ²9P Z}ïO-*½•½ÄáêÛ‰£„_\¹Š5ï’3¬rKé‘N¶Î™Ì ðÍ ;´>ýâ¶1N:“51&Ùµ=Z6ÐLôªÒ5ö˜oô´¬qçV«-×Äl3ÌÍlá‹b´‘b)ò“j¿Þ(Álïë®7ÎðŸIoé#pBŒöãˆÔ‰VVî\δ M7ÏÛ Þ&]NØñ¿ÑàÜ?
+4GÂSÂ9 É9çªyŒËDåOq¿þjA0Ð÷#v ó¿ ãóª¹çŸ´ZÌVº”ÑÎ$KÐ¥[´¤g76Ê¿i6®ËpñŠþ”x§¬ÞƒéñÚ[˜øÁa»ó;ŽdýM2`2qgCí½œàÞð‰³Ê·&‘ò]sþ,¡¾ÙÄ™üßj>}PbkH9M9&à”8¡’ó!jÜDu¼ØfÙ1”ó´ÉÜ q>7®0ðÔ!óêødè…Ò“ùE¬Åý¨ȥ¾ÒDvýòC{Œ¸vð–C½Â>J†æ­w˜¼f¼~m}Ö¦vLšt¾#~§¯{<ÿ×ø*HËb£ÓiûƳbÛò6ø;ùx=St_åÄ ¢xžÀa Ómð¢6??½£@ù3¡ûyõ¹Á—'[Ÿ–“ît‹UÍÑ}éTÜn%.1&ºbŽ`p;¼ëV‚îe6:ŽôTiÃ]–‹uÏÙÔUF¤e¾Ã¶þÅ\1¹’²ÃŠ®Öh±ùƒ=n>Ÿ+½€›ø¯ßÐ8œT›*ï.àñ
+££ÞIzòKokyìf9dÿ±Ë¤Ú·±6ˆ[8ÔA²åü®›ƒì‡qˆþG‘ý}¹ø{Ð`«+­[8H+Qò¹
+}{löEåYM\ i u¯ÓÅÚóéƒz¢‹þ“5ZÅ%OßG¸6Vt’K¾¤®(žjöÞÁ/ûâ±QðÀ/ˆÒ+3=üQhFjEü1}¥S{_L«‹È¥9ꟷ3x²õ­a¸”ئ›ÜÝtê—çýúõçB볧Æç=0Û3#ì3ôc°Æç¯îóŒmN–~˜A
+ÇwÏB5”•SÄÃ0ŸÚ¹Ñ1Þ»9”ƒlܶ—ÍEåŽü¡f lt±ø³q\¡à¬KI£sSx!ê3y"iì­YšÐxοÌNdþF­ÃN}<+Ú6V‹ÚåVaÌ=²oþö#•¤²Ü"ViÖ$þtÌfRÝZî…Ôœ=ÁçzÒ=ŠÕ `ûA©ž…§uÄ£¶eR/öŽ­tn20îì Ð'ÅÁ„Z+BqìmwN茠ñBéCèl{Ç°y™ù)]ÌÎ "ªí=ë±üV‘Ê»¡Ÿ2 RÝ»¦PÔÓînŽ{,á…ßTmÿ°ë­aØI~à©5¼Ãå«0äa{¬†ä bùÉ°FöD¸a9ôk9ÇÎÉš´¨Y™\v%)Rk15.áLSð136Ÿc³‚Ü22ÌßðQ‹a°<…ÙÇgpŽ(× éÎ0M:€òyŸ68ú&þéå1´¹‡I¶ë6Ï‹cËs$*êÅ”ÜÙ–ì:ëO\?5õΕü”ö²Ò¡À6lˆìõ!ñåŒžÈ Ï]Káÿáùÿ‰8ˆ¥1¨d,Íòo2ìendstream
+endobj
+307 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1594 0 R
+/FirstChar 0
+/LastChar 120
+/Widths 1595 0 R
+/BaseFont /ZRBQRN+CMSY10
+/FontDescriptor 305 0 R
+>> endobj
+305 0 obj <<
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/FontName /ZRBQRN+CMSY10
+/ItalicAngle -14.035
+/StemV 85
+/XHeight 431
+/FontBBox [-29 -960 1116 775]
+/Flags 4
+/CharSet (/minus/multiply/asteriskmath/bullet/arrowleft/arrowright/braceleft/braceright/angbracketleft/angbracketright/backslash/section)
+/FontFile 306 0 R
+>> endobj
+1595 0 obj
+[778 0 778 500 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 389 389 0 0 0 0 500 0 0 0 0 0 0 0 0 0 444 ]
+endobj
+1594 0 obj <<
+/Type /Encoding
+/Differences [ 0 /minus 1/.notdef 2/multiply/asteriskmath 4/.notdef 15/bullet 16/.notdef 32/arrowleft/arrowright 34/.notdef 102/braceleft/braceright/angbracketleft/angbracketright 106/.notdef 110/backslash 111/.notdef 120/section 121/.notdef]
+>> endobj
+303 0 obj <<
+/Length1 797
+/Length2 1668
+/Length3 532
+/Length 2247
+/Filter /FlateDecode
+>>
+stream
+xÚíRi<”kn±:JÉ‘Se¤ÂÌcì5¶”}I&ë˜y†‡1ÃËØâØ)‘lÉR¶LšÊuâ(Š8'd«ˆcË©wèÔù½ïûéý½Ïýå¹þÿë¾îë¾î?\ÒÜJG¢¹€4*C¥ˆRtM¬¬PX
+(!VVǨÁà€.Í‹I‡\Ý€œî‘MÀy‚tˆH &†èÉÑ (€ ¦"€£P
+J$ †V°Õã}étÊØ-N†_1â$‚ 6ôŒFÔˆtO¿]ª_Ø{ƒûèv׆dÓÚ¦þ{ƒ—¶SJ:Œ¼¾ª±]/ÏÙ5É=yÈã€O<;Øâ‰Áûpïä«Ÿ&ýœ'3ï°ýiÂœð’Z‰˜ýáîí_—æ0ÛÍú^u–¥â‹ÚræÛg Ìåô¬ßðKnk¶ó«kΊTÁÚdRÎÄDÕÈ¢%-…¯z—Å*ÇŒø §^æé‰uác{¹@cûîY/äËOùäÄë˜_
+¹m1Å£¸J‹}gé¬ýX¸ÔòÂè£þ[n¹÷à#{¹ú4‹}z#y£þº½CÖŃk8z¶Î:À«1pçxv•–`)û9E®õzÖ’˜<Ëèîp΋bœ^¤ÍÌ»¸©`ÃX‹§ÒNhÙArwリ§‚2¤¦P­Þã)û7ØSêFQ&ôÔ^eÙ aì{’c_Zðí¾’Ùž”‰õ©ö³Y=#I¸è|1dÎ6-<|K;#+ÿœhO‹´™jâõŠyÅÂ"G0Ì>tÈ@là:9o±üfî¹çî¥
+!–ac¼ƒE׳AÇÛ÷Ë2­Ã:´†¦#¤ÒxµÉ7ÒÒ§\máî<jÊcµ\ðûõÐPi«רÔ˜Jîïrðçs)Nþ3;wY‡´c¢³&’-½øŸ•ò—ߎSHsè«‹«{8ŠYZØèkËágüf,zÐiÁäÝ6¦›¬Ô+íӰ£Ô’ ÂI¸ñ·©cŠçú0“%H—Û[ûúãïdèY3ž¿‰å• ¿Ò¸ª~^ÂkÀ»Ö3—sýÌLF&Ü+´b:#B+WμŒb%Îã*Ì|MÞ‘o‰|?»ö,dÙ…¨úJË,ˆVê§\l癧+­ÆªÌ<YŽ2™mè´Ï5byØ~ü(¬- ìÒCï­.Ðd#®ÄQÞ˜*SCS‡Ncö﫶mZŒ ›Î²itoæå9ø¶nÚѨ¼,¿#8>Òe¾ýHP/*¼:~²îS›týˆ~b¥—yvÍ­»ÈAEJ Vg[;ÈèDuÖ—Xj>¾Ä?x<{¥?®Iäâ’´±r\ËECûw£¤ï·{Lë1‹üM£b„"q딸93Yª¬Äç…UþY?å­Ïï]¬ä“Ñ&tèg¼]Hä€Ðó|ÕV1®<oñ–×tœ×ÆÁ/–Õ]‹¢ìô5°½)ð4{nü¬¡éíì£âgÙEþ¿šÈUï¾³rY¸0T¿Ôã4€Î:# âJÚNß½¬å°C4?Þ.R&Ý›žÍ²ÿ-µ&Ý•} ©+i»­J¥õ c±ÓÌ~4ã1+‚R#˜Q5¹a° u­âu(Ó»Èõ'_JÂÿÆa~áI÷²Éò†Vú5åä›î«?³Wßúˆ:”…ÕgJ­çñ"Z°;iد~žûèa©ÐKfsšçŠD*TYݵu%îÃ
+g’R¬„ $ÛÃTÕ¼·BgVâqf«o7Òž]ÉmÙÑwoynÆZÍÛn„]>¡W5{ÃC‰'×Ìy-<‹—iÄêÔ\ðÅë­ÖÖ:©ð=*Зx”¾Ó-’!³»x_NÈ)/¤„.‚N}L\=Qª½~þî}Y¬ÔÄúDcîúëä¶ÒÃÞD­úÓ%°·,Y
+{¢%Òd6Òº{Úñ)qâ©\}W‚/ûaŒÕªùû®•?ö‰÷×IdǺj·¥³¢Wâ+.tÍ+ y4j#¢ôùïTôÅœL€ŽnˆQ~ˆºÞlqªëC‹QýòòY-@üfžþá1}Û¹À\µŸŽ^‚ºÿp,yÔê¼#sš•UT:óØ>דê­fYÇ—V1Ó[y«+ {:ûG’ l$#º™î‘zâÖ¶BÕƒÒbróÓÈÆ«k^ǽ'ÇïtjÕNµ§à†(KSÜF\’5™1®O3:Û±`dà×¹røî¥&ù1·¤|{qåÇÁÞ†„ æšeš5æf/“áhž$ª„z^@žëFÝ.»¡ð|Á"åxõ Çž5§ƒøwb*‡•õÂùï…#cÉvùͺu¬„{öµ‰­Í%˜KaUlÞš\£ÈNݤ›Gÿáû¿Àÿ„
+endobj
+304 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1596 0 R
+/FirstChar 12
+/LastChar 117
+/Widths 1597 0 R
+/BaseFont /EVOAYY+CMSS17
+/FontDescriptor 302 0 R
+>> endobj
+302 0 obj <<
+/Ascent 694
+/CapHeight 694
+/Descent -195
+/FontName /EVOAYY+CMSS17
+/ItalicAngle 0
+/StemV 76
+/XHeight 430
+/FontBBox [-58 -250 939 758]
+/Flags 4
+/CharSet (/fi/S/b/g/u)
+/FontFile 303 0 R
+>> endobj
+1597 0 obj
+[503 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 522 0 0 0 0 0 0 0 0 0 0 0 0 0 0 484 0 0 0 0 470 0 0 0 0 0 0 0 0 0 0 0 0 0 484 ]
+endobj
+1596 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 12/fi 13/.notdef 83/S 84/.notdef 98/b 99/.notdef 103/g 104/.notdef 117/u 118/.notdef]
+>> endobj
+300 0 obj <<
+/Length1 837
+/Length2 2309
+/Length3 532
+/Length 2900
+/Filter /FlateDecode
+>>
+stream
+xÚíRy<”íE&d—|åµoa†˜¡"Û BE"ÓÌ+¯Æ cfBvúÆg+k…Iß$ÙCÉ®²•=*[E ’¨±;£Î·œÎŸçüu~ç}þy¯û¾žë¹~×}+ÈØÚ«áIgA4‰HQGh ôk;@hÀa
+
+&dKHDS,ÔzzÀˆzЂ]}m”¾Ö~˜`Bò Cç<(€²‰Ê& yd‡%ÖXŠèÅÖÀa €= ”
+ÀÎ$p'‘a›ãDÁMÛÍÒ´Ðtø±ç¥‰ý 隸?‚íFüÔ4Ïý ²…<þÙJç¿ÃÊؘ䨮­ ¨kéÀ½ý:
+ÔèëShJ lv㧙µ`eˆŸ]Pd“&Ñè PN£Æiìn‰\ñÌ Å£ßºÃ³<;ŒÝ¹?HsìúršìÆq®Sý
+è«;Ã?õô
+”Ìsñî­º‰Ì~`xØ)&yÓ€9€¥Ì(äN8à¦}˜oë­ô&ÄS±OÔï­ˆàí­¬:OÄË{Ui§©¡:ß)Æ×Qî7„&Ž—,k ¬»äºçøUýt™n,Õzi_}!N”V§ÇÊÙ˜›WýLXa2Ö Ìú&V(‡ˆLŸžŸKyíÚDÐzpbRUôtŒA‰­­‡âžfŽØÀ`eà3(ÖI9¦#óM/äcY¡yèwÅø[ž7'屑«J—¶†åÒ{ž)¥ž|]É¢cd(oWæ´ì³*Ý€€ô¨oySoéÅ9m8ÛµO¬k%^‘†jBS‘±ßòÌ>½Ý]0˜3ë±£æÔ•ˆ„,œÊH–s1ëàªöI±éØ£T.G'1åx"&ž¦°,·õŠ3“®O°ÊÍ€%X(ýÒ’¸‡a¼‚o§e¸ò´Û%o²«-c_«,?Ï-û¦á]~ÙÒ†]|T×Sþz«»Dçþß1q¡- )Ÿ·<S-Vƒ)o.%q¼ÐŒÑ²h~< $éXã°>Áõ1síÒ®ÝÜIyñŽª7w¿èã¡3:£KOîÎ Ê(5ô ËD×ñ:^$`Y¥—-#‡ýŸÖ-ÐCÍ…5NÐ÷¦Ïçh_Ùmw p}w%§¦âNšÖÜu;_ÿËþ«yè5¹‡*B´Á1iÏ)Σé ^ëB[±!—ãiËl샗ABí$ë(3ôÚF(Â>i$À;xr¢]WJYeª
+‹œùòE¶ö.ÌÈ«gæÉáòTu¡¤\j +ÒfoÆlÔPCkwäJz5©ÂÌZv¼JiÖÞ.Mº¸ypu_€K422…Ðt_O¢×¤˜õÖÙñ} åÝ€h¡Üfìvƒéö𘅈‹MBkFœŽ¯—ϪÀ$…xæ]þj¯µjE“Tس¼çüáô1. ˜Ê9ä;‰+hMG¹Ô[ñî±*^l½•bKó{5î°Co#}ݼi·imJ¤ÃÔ{¬]ódGû˜åå½cågí¨_?ñËj5G©GÃäaEŽƒkÅ=ž
+ã1Õ¥^xÿåÜááòµ\«×^æuÉ: «v2à]æbñ&«ÒÒ/ÜØ.àýHX¬î×nr¦ï‹èغ¥–d£oîq%åvÅ¥âð&€é—CžÏ<¶<>(šÅÍØBå8y†cÑýl#c~ñÒv!1Çúne`~CücXW-U®ª.r!ãÁï.2~|²gÑÃÀ¼°)!?GmŒÙ)Ðr÷y5ÿö{ÆKèD÷AF+EîŽmLÊZÅî]ù«£Ü¯r¿}± ™­ýš[³ÊèLn@a†øVŒ[{ŸšYÓ4è«•âîÁƲß,ôòc¦…‹mùæn>Õ†6Š²-šv­IÑÔ"n”?˜k÷ ¤4#k ùiäÔÓÐØÙ,¾Þså;*uO–+/ s>Ðøx»¬…ÄõŠÜ õù9&Uâ±®syÐø<¯ $6,kSµºÛ³®7õÐËÔnp£0±Køc„µtý¶•Á:C:Æ4û–µ#Y$A¬lrp¥IcÂŽ¤“¯ß¬$,_mSlõwS›9~b´¿åYxQtõ-EWé…Iš¦ÁçÁ{ÓE¨ ¿¾IV7åõíê‰EJ+Gh¿¾bî+µ<ñL”ˆ Øº-°pdZ <.xY òÕ•C€ô¾ÖŠFyÎC~õ¥2,ƒìE_Ń’¯OIGΊÂ×+ÝÌé*E^©ð°?߈ÞkGUK¥NI>±Ÿé|“HáV=âÅßð"œ ¥ TÔÀc·êÛûD1ß?‡­yÃÿÃöÿ Ä’)$/,ù<ìÕ•óendstream
+endobj
+301 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1598 0 R
+/FirstChar 80
+/LastChar 107
+/Widths 1599 0 R
+/BaseFont /SZXDCE+CMR17
+/FontDescriptor 299 0 R
+>> endobj
+299 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -195
+/FontName /SZXDCE+CMR17
+/ItalicAngle 0
+/StemV 53
+/XHeight 430
+/FontBBox [-33 -250 945 749]
+/Flags 4
+/CharSet (/P/T/a/c/e/g/h/k)
+/FontFile 300 0 R
+>> endobj
+1599 0 obj
+[628 0 0 0 668 0 0 0 0 0 0 0 0 0 0 0 0 459 0 406 0 406 0 459 511 0 0 485 ]
+endobj
+1598 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 80/P 81/.notdef 84/T 85/.notdef 97/a 98/.notdef 99/c 100/.notdef 101/e 102/.notdef 103/g/h 105/.notdef 107/k 108/.notdef]
+>> endobj
+338 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1600 0 R
+/Kids [294 0 R 340 0 R 344 0 R 409 0 R 494 0 R 600 0 R]
+>> endobj
+745 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1600 0 R
+/Kids [696 0 R 791 0 R 795 0 R 824 0 R 842 0 R 850 0 R]
+>> endobj
+874 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1600 0 R
+/Kids [861 0 R 876 0 R 880 0 R 894 0 R 905 0 R 916 0 R]
+>> endobj
+959 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1600 0 R
+/Kids [935 0 R 961 0 R 987 0 R 997 0 R 1011 0 R 1025 0 R]
+>> endobj
+1048 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1600 0 R
+/Kids [1037 0 R 1050 0 R 1062 0 R 1074 0 R 1086 0 R 1098 0 R]
+>> endobj
+1121 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1600 0 R
+/Kids [1110 0 R 1123 0 R 1135 0 R 1147 0 R 1159 0 R 1171 0 R]
+>> endobj
+1200 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1601 0 R
+/Kids [1187 0 R 1202 0 R 1218 0 R 1230 0 R 1242 0 R 1259 0 R]
+>> endobj
+1279 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1601 0 R
+/Kids [1273 0 R 1281 0 R 1286 0 R 1293 0 R 1301 0 R 1307 0 R]
+>> endobj
+1315 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1601 0 R
+/Kids [1311 0 R 1317 0 R 1330 0 R 1350 0 R 1356 0 R 1375 0 R]
+>> endobj
+1389 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1601 0 R
+/Kids [1384 0 R 1391 0 R 1396 0 R 1402 0 R 1406 0 R 1411 0 R]
+>> endobj
+1429 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1601 0 R
+/Kids [1416 0 R 1431 0 R 1437 0 R 1448 0 R 1455 0 R 1459 0 R]
+>> endobj
+1467 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1601 0 R
+/Kids [1464 0 R 1469 0 R 1474 0 R 1479 0 R 1484 0 R 1488 0 R]
+>> endobj
+1497 0 obj <<
+/Type /Pages
+/Count 3
+/Parent 1602 0 R
+/Kids [1493 0 R 1499 0 R 1503 0 R]
+>> endobj
+1600 0 obj <<
+/Type /Pages
+/Count 36
+/Parent 1603 0 R
+/Kids [338 0 R 745 0 R 874 0 R 959 0 R 1048 0 R 1121 0 R]
+>> endobj
+1601 0 obj <<
+/Type /Pages
+/Count 36
+/Parent 1603 0 R
+/Kids [1200 0 R 1279 0 R 1315 0 R 1389 0 R 1429 0 R 1467 0 R]
+>> endobj
+1602 0 obj <<
+/Type /Pages
+/Count 3
+/Parent 1603 0 R
+/Kids [1497 0 R]
+>> endobj
+1603 0 obj <<
+/Type /Pages
+/Count 75
+/Kids [1600 0 R 1601 0 R 1602 0 R]
+>> endobj
+1604 0 obj <<
+/Type /Outlines
+/First 7 0 R
+/Last 291 0 R
+/Count 8
+>> endobj
+291 0 obj <<
+/Title 292 0 R
+/A 289 0 R
+/Parent 1604 0 R
+/Prev 207 0 R
+>> endobj
+287 0 obj <<
+/Title 288 0 R
+/A 285 0 R
+/Parent 275 0 R
+/Prev 283 0 R
+>> endobj
+283 0 obj <<
+/Title 284 0 R
+/A 281 0 R
+/Parent 275 0 R
+/Prev 279 0 R
+/Next 287 0 R
+>> endobj
+279 0 obj <<
+/Title 280 0 R
+/A 277 0 R
+/Parent 275 0 R
+/Next 283 0 R
+>> endobj
+275 0 obj <<
+/Title 276 0 R
+/A 273 0 R
+/Parent 207 0 R
+/Prev 271 0 R
+/First 279 0 R
+/Last 287 0 R
+/Count -3
+>> endobj
+271 0 obj <<
+/Title 272 0 R
+/A 269 0 R
+/Parent 207 0 R
+/Prev 267 0 R
+/Next 275 0 R
+>> endobj
+267 0 obj <<
+/Title 268 0 R
+/A 265 0 R
+/Parent 207 0 R
+/Prev 263 0 R
+/Next 271 0 R
+>> endobj
+263 0 obj <<
+/Title 264 0 R
+/A 261 0 R
+/Parent 207 0 R
+/Prev 259 0 R
+/Next 267 0 R
+>> endobj
+259 0 obj <<
+/Title 260 0 R
+/A 257 0 R
+/Parent 207 0 R
+/Prev 255 0 R
+/Next 263 0 R
+>> endobj
+255 0 obj <<
+/Title 256 0 R
+/A 253 0 R
+/Parent 207 0 R
+/Prev 251 0 R
+/Next 259 0 R
+>> endobj
+251 0 obj <<
+/Title 252 0 R
+/A 249 0 R
+/Parent 207 0 R
+/Prev 247 0 R
+/Next 255 0 R
+>> endobj
+247 0 obj <<
+/Title 248 0 R
+/A 245 0 R
+/Parent 207 0 R
+/Prev 243 0 R
+/Next 251 0 R
+>> endobj
+243 0 obj <<
+/Title 244 0 R
+/A 241 0 R
+/Parent 207 0 R
+/Prev 239 0 R
+/Next 247 0 R
+>> endobj
+239 0 obj <<
+/Title 240 0 R
+/A 237 0 R
+/Parent 207 0 R
+/Prev 235 0 R
+/Next 243 0 R
+>> endobj
+235 0 obj <<
+/Title 236 0 R
+/A 233 0 R
+/Parent 207 0 R
+/Prev 231 0 R
+/Next 239 0 R
+>> endobj
+231 0 obj <<
+/Title 232 0 R
+/A 229 0 R
+/Parent 207 0 R
+/Prev 219 0 R
+/Next 235 0 R
+>> endobj
+227 0 obj <<
+/Title 228 0 R
+/A 225 0 R
+/Parent 219 0 R
+/Prev 223 0 R
+>> endobj
+223 0 obj <<
+/Title 224 0 R
+/A 221 0 R
+/Parent 219 0 R
+/Next 227 0 R
+>> endobj
+219 0 obj <<
+/Title 220 0 R
+/A 217 0 R
+/Parent 207 0 R
+/Prev 215 0 R
+/Next 231 0 R
+/First 223 0 R
+/Last 227 0 R
+/Count -2
+>> endobj
+215 0 obj <<
+/Title 216 0 R
+/A 213 0 R
+/Parent 207 0 R
+/Prev 211 0 R
+/Next 219 0 R
+>> endobj
+211 0 obj <<
+/Title 212 0 R
+/A 209 0 R
+/Parent 207 0 R
+/Next 215 0 R
+>> endobj
+207 0 obj <<
+/Title 208 0 R
+/A 205 0 R
+/Parent 1604 0 R
+/Prev 163 0 R
+/Next 291 0 R
+/First 211 0 R
+/Last 275 0 R
+/Count -15
+>> endobj
+203 0 obj <<
+/Title 204 0 R
+/A 201 0 R
+/Parent 163 0 R
+/Prev 199 0 R
+>> endobj
+199 0 obj <<
+/Title 200 0 R
+/A 197 0 R
+/Parent 163 0 R
+/Prev 195 0 R
+/Next 203 0 R
+>> endobj
+195 0 obj <<
+/Title 196 0 R
+/A 193 0 R
+/Parent 163 0 R
+/Prev 191 0 R
+/Next 199 0 R
+>> endobj
+191 0 obj <<
+/Title 192 0 R
+/A 189 0 R
+/Parent 163 0 R
+/Prev 187 0 R
+/Next 195 0 R
+>> endobj
+187 0 obj <<
+/Title 188 0 R
+/A 185 0 R
+/Parent 163 0 R
+/Prev 183 0 R
+/Next 191 0 R
+>> endobj
+183 0 obj <<
+/Title 184 0 R
+/A 181 0 R
+/Parent 163 0 R
+/Prev 179 0 R
+/Next 187 0 R
+>> endobj
+179 0 obj <<
+/Title 180 0 R
+/A 177 0 R
+/Parent 163 0 R
+/Prev 175 0 R
+/Next 183 0 R
+>> endobj
+175 0 obj <<
+/Title 176 0 R
+/A 173 0 R
+/Parent 163 0 R
+/Prev 171 0 R
+/Next 179 0 R
+>> endobj
+171 0 obj <<
+/Title 172 0 R
+/A 169 0 R
+/Parent 163 0 R
+/Prev 167 0 R
+/Next 175 0 R
+>> endobj
+167 0 obj <<
+/Title 168 0 R
+/A 165 0 R
+/Parent 163 0 R
+/Next 171 0 R
+>> endobj
+163 0 obj <<
+/Title 164 0 R
+/A 161 0 R
+/Parent 1604 0 R
+/Prev 143 0 R
+/Next 207 0 R
+/First 167 0 R
+/Last 203 0 R
+/Count -10
+>> endobj
+159 0 obj <<
+/Title 160 0 R
+/A 157 0 R
+/Parent 143 0 R
+/Prev 155 0 R
+>> endobj
+155 0 obj <<
+/Title 156 0 R
+/A 153 0 R
+/Parent 143 0 R
+/Prev 151 0 R
+/Next 159 0 R
+>> endobj
+151 0 obj <<
+/Title 152 0 R
+/A 149 0 R
+/Parent 143 0 R
+/Prev 147 0 R
+/Next 155 0 R
+>> endobj
+147 0 obj <<
+/Title 148 0 R
+/A 145 0 R
+/Parent 143 0 R
+/Next 151 0 R
+>> endobj
+143 0 obj <<
+/Title 144 0 R
+/A 141 0 R
+/Parent 1604 0 R
+/Prev 111 0 R
+/Next 163 0 R
+/First 147 0 R
+/Last 159 0 R
+/Count -4
+>> endobj
+139 0 obj <<
+/Title 140 0 R
+/A 137 0 R
+/Parent 111 0 R
+/Prev 135 0 R
+>> endobj
+135 0 obj <<
+/Title 136 0 R
+/A 133 0 R
+/Parent 111 0 R
+/Prev 131 0 R
+/Next 139 0 R
+>> endobj
+131 0 obj <<
+/Title 132 0 R
+/A 129 0 R
+/Parent 111 0 R
+/Prev 127 0 R
+/Next 135 0 R
+>> endobj
+127 0 obj <<
+/Title 128 0 R
+/A 125 0 R
+/Parent 111 0 R
+/Prev 123 0 R
+/Next 131 0 R
+>> endobj
+123 0 obj <<
+/Title 124 0 R
+/A 121 0 R
+/Parent 111 0 R
+/Prev 119 0 R
+/Next 127 0 R
+>> endobj
+119 0 obj <<
+/Title 120 0 R
+/A 117 0 R
+/Parent 111 0 R
+/Prev 115 0 R
+/Next 123 0 R
+>> endobj
+115 0 obj <<
+/Title 116 0 R
+/A 113 0 R
+/Parent 111 0 R
+/Next 119 0 R
+>> endobj
+111 0 obj <<
+/Title 112 0 R
+/A 109 0 R
+/Parent 1604 0 R
+/Prev 63 0 R
+/Next 143 0 R
+/First 115 0 R
+/Last 139 0 R
+/Count -7
+>> endobj
+107 0 obj <<
+/Title 108 0 R
+/A 105 0 R
+/Parent 91 0 R
+/Prev 103 0 R
+>> endobj
+103 0 obj <<
+/Title 104 0 R
+/A 101 0 R
+/Parent 91 0 R
+/Prev 99 0 R
+/Next 107 0 R
+>> endobj
+99 0 obj <<
+/Title 100 0 R
+/A 97 0 R
+/Parent 91 0 R
+/Prev 95 0 R
+/Next 103 0 R
+>> endobj
+95 0 obj <<
+/Title 96 0 R
+/A 93 0 R
+/Parent 91 0 R
+/Next 99 0 R
+>> endobj
+91 0 obj <<
+/Title 92 0 R
+/A 89 0 R
+/Parent 63 0 R
+/Prev 67 0 R
+/First 95 0 R
+/Last 107 0 R
+/Count -4
+>> endobj
+87 0 obj <<
+/Title 88 0 R
+/A 85 0 R
+/Parent 67 0 R
+/Prev 83 0 R
+>> endobj
+83 0 obj <<
+/Title 84 0 R
+/A 81 0 R
+/Parent 67 0 R
+/Prev 79 0 R
+/Next 87 0 R
+>> endobj
+79 0 obj <<
+/Title 80 0 R
+/A 77 0 R
+/Parent 67 0 R
+/Prev 75 0 R
+/Next 83 0 R
+>> endobj
+75 0 obj <<
+/Title 76 0 R
+/A 73 0 R
+/Parent 67 0 R
+/Prev 71 0 R
+/Next 79 0 R
+>> endobj
+71 0 obj <<
+/Title 72 0 R
+/A 69 0 R
+/Parent 67 0 R
+/Next 75 0 R
+>> endobj
+67 0 obj <<
+/Title 68 0 R
+/A 65 0 R
+/Parent 63 0 R
+/Next 91 0 R
+/First 71 0 R
+/Last 87 0 R
+/Count -5
+>> endobj
+63 0 obj <<
+/Title 64 0 R
+/A 61 0 R
+/Parent 1604 0 R
+/Prev 15 0 R
+/Next 111 0 R
+/First 67 0 R
+/Last 91 0 R
+/Count -2
+>> endobj
+59 0 obj <<
+/Title 60 0 R
+/A 57 0 R
+/Parent 39 0 R
+/Prev 55 0 R
+>> endobj
+55 0 obj <<
+/Title 56 0 R
+/A 53 0 R
+/Parent 39 0 R
+/Prev 51 0 R
+/Next 59 0 R
+>> endobj
+51 0 obj <<
+/Title 52 0 R
+/A 49 0 R
+/Parent 39 0 R
+/Prev 47 0 R
+/Next 55 0 R
+>> endobj
+47 0 obj <<
+/Title 48 0 R
+/A 45 0 R
+/Parent 39 0 R
+/Prev 43 0 R
+/Next 51 0 R
+>> endobj
+43 0 obj <<
+/Title 44 0 R
+/A 41 0 R
+/Parent 39 0 R
+/Next 47 0 R
+>> endobj
+39 0 obj <<
+/Title 40 0 R
+/A 37 0 R
+/Parent 15 0 R
+/Prev 19 0 R
+/First 43 0 R
+/Last 59 0 R
+/Count -5
+>> endobj
+35 0 obj <<
+/Title 36 0 R
+/A 33 0 R
+/Parent 19 0 R
+/Prev 31 0 R
+>> endobj
+31 0 obj <<
+/Title 32 0 R
+/A 29 0 R
+/Parent 19 0 R
+/Prev 27 0 R
+/Next 35 0 R
+>> endobj
+27 0 obj <<
+/Title 28 0 R
+/A 25 0 R
+/Parent 19 0 R
+/Prev 23 0 R
+/Next 31 0 R
+>> endobj
+23 0 obj <<
+/Title 24 0 R
+/A 21 0 R
+/Parent 19 0 R
+/Next 27 0 R
+>> endobj
+19 0 obj <<
+/Title 20 0 R
+/A 17 0 R
+/Parent 15 0 R
+/Next 39 0 R
+/First 23 0 R
+/Last 35 0 R
+/Count -4
+>> endobj
+15 0 obj <<
+/Title 16 0 R
+/A 13 0 R
+/Parent 1604 0 R
+/Prev 7 0 R
+/Next 63 0 R
+/First 19 0 R
+/Last 39 0 R
+/Count -2
+>> endobj
+11 0 obj <<
+/Title 12 0 R
+/A 9 0 R
+/Parent 7 0 R
+>> endobj
+7 0 obj <<
+/Title 8 0 R
+/A 5 0 R
+/Parent 1604 0 R
+/Next 15 0 R
+/First 11 0 R
+/Last 11 0 R
+/Count -1
+>> endobj
+1605 0 obj <<
+/Names [(Doc-Start) 298 0 R (Hfootnote.1) 813 0 R (Hfootnote.10) 932 0 R (Hfootnote.11) 980 0 R (Hfootnote.12) 981 0 R (Hfootnote.13) 1254 0 R (Hfootnote.14) 1256 0 R (Hfootnote.15) 1269 0 R (Hfootnote.16) 1271 0 R (Hfootnote.17) 1305 0 R (Hfootnote.18) 1325 0 R (Hfootnote.19) 1327 0 R (Hfootnote.2) 818 0 R (Hfootnote.3) 870 0 R (Hfootnote.4) 903 0 R (Hfootnote.5) 912 0 R (Hfootnote.6) 913 0 R (Hfootnote.7) 914 0 R (Hfootnote.8) 898 0 R (Hfootnote.9) 928 0 R (Item.1) 805 0 R (Item.10) 1425 0 R (Item.11) 1426 0 R (Item.12) 1427 0 R (Item.13) 1428 0 R (Item.14) 1441 0 R (Item.15) 1442 0 R (Item.16) 1443 0 R (Item.17) 1444 0 R (Item.18) 1446 0 R (Item.19) 1451 0 R (Item.2) 807 0 R (Item.3) 826 0 R (Item.4) 810 0 R (Item.5) 827 0 R (Item.6) 828 0 R (Item.7) 1419 0 R (Item.8) 1420 0 R (Item.9) 1421 0 R (cite.Carl99) 840 0 R (cite.Knut86) 1328 0 R (cite.Lamp94) 822 0 R (cite.Lapk05) 1382 0 R (cite.Mitt-etal04) 838 0 R (cite.Reck97) 839 0 R (cite.Somm05) 1400 0 R (figure.1) 470 0 R (figure.10) 569 0 R (figure.11) 570 0 R (figure.12) 571 0 R (figure.13) 572 0 R (figure.14) 573 0 R (figure.15) 574 0 R (figure.16) 575 0 R (figure.17) 576 0 R (figure.18) 577 0 R (figure.19) 578 0 R (figure.2) 471 0 R (figure.20) 579 0 R (figure.21) 580 0 R (figure.22) 581 0 R (figure.23) 582 0 R (figure.24) 583 0 R (figure.25) 584 0 R (figure.26) 585 0 R (figure.27) 586 0 R (figure.28) 587 0 R (figure.29) 588 0 R (figure.3) 472 0 R (figure.30) 589 0 R (figure.31) 590 0 R (figure.32) 591 0 R (figure.33) 592 0 R (figure.34) 593 0 R (figure.35) 594 0 R (figure.36) 595 0 R (figure.37) 596 0 R (figure.38) 597 0 R (figure.39) 598 0 R (figure.4) 473 0 R (figure.4.1) 867 0 R (figure.40) 658 0 R (figure.41) 659 0 R (figure.42) 660 0 R (figure.43) 661 0 R (figure.44) 662 0 R (figure.45) 663 0 R (figure.46) 664 0 R (figure.47) 665 0 R (figure.48) 666 0 R (figure.49) 667 0 R (figure.5) 474 0 R (figure.50) 668 0 R (figure.51) 669 0 R (figure.52) 670 0 R (figure.53) 671 0 R (figure.54) 672 0 R (figure.55) 673 0 R (figure.56) 674 0 R (figure.57) 675 0 R (figure.58) 676 0 R (figure.59) 677 0 R (figure.6) 475 0 R (figure.60) 678 0 R (figure.61) 679 0 R (figure.62) 680 0 R (figure.63) 681 0 R (figure.64) 682 0 R (figure.65) 683 0 R (figure.66) 684 0 R (figure.67) 685 0 R (figure.68) 686 0 R (figure.69) 687 0 R (figure.7) 477 0 R (figure.70) 688 0 R (figure.71) 689 0 R (figure.72) 690 0 R (figure.73) 691 0 R (figure.74) 692 0 R (figure.75) 693 0 R (figure.76) 694 0 R (figure.77) 746 0 R (figure.78) 747 0 R (figure.79) 748 0 R (figure.8) 484 0 R (figure.80) 749 0 R (figure.81) 750 0 R (figure.82) 751 0 R (figure.83) 752 0 R (figure.84) 753 0 R (figure.85) 754 0 R (figure.86) 755 0 R (figure.87) 756 0 R (figure.88) 757 0 R (figure.89) 758 0 R (figure.9) 568 0 R (figure.90) 759 0 R (figure.91) 760 0 R (figure.92) 765 0 R (figure.93) 768 0 R (figure.94) 772 0 R (figure.95) 775 0 R (figure.96) 776 0 R (map.1) 787 0 R (page.1) 297 0 R (page.10) 918 0 R (page.11) 937 0 R (page.12) 963 0 R (page.13) 989 0 R (page.14) 999 0 R (page.15) 1013 0 R (page.16) 1027 0 R (page.17) 1039 0 R (page.18) 1052 0 R (page.19) 1064 0 R (page.2) 342 0 R (page.20) 1076 0 R (page.21) 1088 0 R (page.22) 1100 0 R (page.23) 1112 0 R (page.24) 1125 0 R (page.25) 1137 0 R (page.26) 1149 0 R (page.27) 1161 0 R (page.28) 1173 0 R (page.29) 1189 0 R (page.3) 496 0 R (page.30) 1204 0 R (page.31) 1220 0 R (page.32) 1232 0 R (page.33) 1244 0 R (page.34) 1261 0 R (page.35) 1275 0 R (page.36) 1283 0 R (page.37) 1288 0 R (page.38) 1295 0 R (page.39) 1303 0 R (page.4) 602 0 R (page.40) 1309 0 R (page.41) 1313 0 R (page.42) 1319 0 R (page.43) 1332 0 R (page.44) 1352 0 R (page.45) 1358 0 R (page.46) 1377 0 R (page.47) 1386 0 R (page.48) 1393 0 R (page.49) 1398 0 R (page.5) 698 0 R (page.50) 1404 0 R (page.51) 1408 0 R (page.52) 1413 0 R (page.53) 1418 0 R (page.54) 1433 0 R (page.55) 1439 0 R (page.56) 1450 0 R (page.57) 1457 0 R (page.58) 1461 0 R (page.59) 1466 0 R (page.6) 793 0 R (page.60) 1471 0 R (page.61) 1476 0 R (page.62) 1481 0 R (page.63) 1486 0 R (page.64) 1490 0 R (page.65) 1495 0 R (page.66) 1501 0 R (page.67) 1505 0 R (page.7) 882 0 R (page.8) 896 0 R (page.9) 907 0 R (section*.1) 352 0 R (section*.2) 442 0 R (section*.3) 732 0 R (section*.4) 741 0 R (section*.5) 1333 0 R (section*.6) 1359 0 R (section*.7) 1506 0 R (section.1) 6 0 R (section.2) 14 0 R (section.3) 62 0 R (section.4) 110 0 R (section.5) 142 0 R (section.6) 162 0 R (section.7) 206 0 R (section.8) 290 0 R (subfigure.10.1) 990 0 R (subfigure.10.2) 991 0 R (subfigure.11.1) 992 0 R (subfigure.11.2) 993 0 R (subfigure.12.1) 994 0 R (subfigure.12.2) 995 0 R (subfigure.13.1) 1000 0 R (subfigure.13.2) 1001 0 R (subfigure.14.1) 1002 0 R (subfigure.14.2) 1003 0 R (subfigure.15.1) 1004 0 R (subfigure.15.2) 1005 0 R (subfigure.16.1) 1006 0 R (subfigure.16.2) 1007 0 R (subfigure.17.1) 1008 0 R (subfigure.17.2) 1009 0 R (subfigure.18.1) 1014 0 R (subfigure.18.2) 1015 0 R (subfigure.19.1) 1016 0 R (subfigure.19.2) 1017 0 R (subfigure.20.1) 1018 0 R (subfigure.20.2) 1019 0 R (subfigure.21.1) 1020 0 R (subfigure.21.2) 1021 0 R (subfigure.22.1) 1022 0 R (subfigure.22.2) 1023 0 R (subfigure.23.1) 1028 0 R (subfigure.23.2) 1029 0 R (subfigure.24.1) 1030 0 R (subfigure.24.2) 1031 0 R (subfigure.25.1) 1032 0 R (subfigure.25.2) 1033 0 R (subfigure.26.1) 1034 0 R (subfigure.26.2) 1035 0 R (subfigure.27.1) 1040 0 R (subfigure.27.2) 1041 0 R (subfigure.28.1) 1042 0 R (subfigure.28.2) 1043 0 R (subfigure.29.1) 1044 0 R (subfigure.29.2) 1045 0 R (subfigure.30.1) 1046 0 R (subfigure.30.2) 1047 0 R (subfigure.31.1) 1053 0 R (subfigure.31.2) 1054 0 R (subfigure.32.1) 1055 0 R (subfigure.32.2) 1056 0 R (subfigure.33.1) 1057 0 R (subfigure.33.2) 1058 0 R (subfigure.34.1) 1059 0 R (subfigure.34.2) 1060 0 R (subfigure.35.1) 1065 0 R (subfigure.35.2) 1066 0 R (subfigure.36.1) 1067 0 R (subfigure.36.2) 1068 0 R (subfigure.37.1) 1069 0 R (subfigure.37.2) 1070 0 R (subfigure.38.1) 1071 0 R (subfigure.38.2) 1072 0 R (subfigure.39.1) 1077 0 R (subfigure.39.2) 1078 0 R (subfigure.4.1) 863 0 R (subfigure.4.2) 864 0 R (subfigure.4.3) 865 0 R (subfigure.4.4) 866 0 R (subfigure.40.1) 1079 0 R (subfigure.40.2) 1080 0 R (subfigure.41.1) 1081 0 R (subfigure.41.2) 1082 0 R (subfigure.42.1) 1083 0 R (subfigure.42.2) 1084 0 R (subfigure.43.1) 1089 0 R (subfigure.43.2) 1090 0 R (subfigure.44.1) 1091 0 R (subfigure.44.2) 1092 0 R (subfigure.45.1) 1093 0 R (subfigure.45.2) 1094 0 R (subfigure.46.1) 1095 0 R (subfigure.46.2) 1096 0 R (subfigure.47.1) 1101 0 R (subfigure.47.2) 1102 0 R (subfigure.48.1) 1103 0 R (subfigure.48.2) 1104 0 R (subfigure.49.1) 1105 0 R (subfigure.49.2) 1106 0 R (subfigure.50.1) 1107 0 R (subfigure.50.2) 1108 0 R (subfigure.51.1) 1113 0 R (subfigure.51.2) 1114 0 R (subfigure.52.1) 1115 0 R (subfigure.52.2) 1116 0 R (subfigure.53.1) 1117 0 R (subfigure.53.2) 1118 0 R (subfigure.54.1) 1119 0 R (subfigure.54.2) 1120 0 R (subfigure.55.1) 1126 0 R (subfigure.55.2) 1127 0 R (subfigure.56.1) 1128 0 R (subfigure.56.2) 1129 0 R (subfigure.57.1) 1130 0 R (subfigure.57.2) 1131 0 R (subfigure.58.1) 1132 0 R (subfigure.58.2) 1133 0 R (subfigure.59.1) 1138 0 R (subfigure.59.2) 1139 0 R (subfigure.6.1) 476 0 R (subfigure.60.1) 1140 0 R (subfigure.60.2) 1141 0 R (subfigure.61.1) 1142 0 R (subfigure.61.2) 1143 0 R (subfigure.62.1) 1144 0 R (subfigure.62.2) 1145 0 R (subfigure.63.1) 1150 0 R (subfigure.63.2) 1151 0 R (subfigure.64.1) 1152 0 R (subfigure.64.2) 1153 0 R (subfigure.65.1) 1154 0 R (subfigure.65.2) 1155 0 R (subfigure.66.1) 1156 0 R (subfigure.66.2) 1157 0 R (subfigure.67.1) 1162 0 R (subfigure.67.2) 1163 0 R (subfigure.68.1) 1164 0 R (subfigure.68.2) 1165 0 R (subfigure.69.1) 1166 0 R (subfigure.69.2) 1167 0 R (subfigure.7.1) 478 0 R (subfigure.7.2) 479 0 R (subfigure.7.3) 480 0 R (subfigure.7.4) 481 0 R (subfigure.7.5) 482 0 R (subfigure.7.6) 483 0 R (subfigure.70.1) 1168 0 R (subfigure.70.2) 1169 0 R (subfigure.71.1) 1174 0 R (subfigure.71.2) 1175 0 R (subfigure.72.1) 1176 0 R (subfigure.72.2) 1177 0 R (subfigure.73.1) 1178 0 R (subfigure.73.2) 1179 0 R (subfigure.74.1) 1190 0 R (subfigure.74.2) 1191 0 R (subfigure.75.1) 1192 0 R (subfigure.75.2) 1193 0 R (subfigure.76.1) 1194 0 R (subfigure.76.2) 1195 0 R (subfigure.77.1) 1196 0 R (subfigure.77.2) 1197 0 R (subfigure.78.1) 1198 0 R (subfigure.78.2) 1199 0 R (subfigure.79.1) 1205 0 R (subfigure.79.2) 1206 0 R (subfigure.8.1) 485 0 R (subfigure.8.10) 553 0 R (subfigure.8.11) 554 0 R (subfigure.8.12) 555 0 R (subfigure.8.13) 556 0 R (subfigure.8.14) 557 0 R (subfigure.8.15) 558 0 R (subfigure.8.16) 559 0 R (subfigure.8.17) 560 0 R (subfigure.8.18) 561 0 R (subfigure.8.19) 562 0 R (subfigure.8.2) 486 0 R (subfigure.8.20) 563 0 R (subfigure.8.21) 564 0 R (subfigure.8.22) 565 0 R (subfigure.8.23) 566 0 R (subfigure.8.24) 567 0 R (subfigure.8.3) 487 0 R (subfigure.8.4) 488 0 R (subfigure.8.5) 489 0 R (subfigure.8.6) 490 0 R (subfigure.8.7) 491 0 R (subfigure.8.8) 492 0 R (subfigure.8.9) 552 0 R (subfigure.80.1) 1207 0 R (subfigure.80.2) 1208 0 R (subfigure.81.1) 1209 0 R (subfigure.81.2) 1210 0 R (subfigure.82.1) 1211 0 R (subfigure.82.2) 1212 0 R (subfigure.83.1) 1213 0 R (subfigure.83.2) 1214 0 R (subfigure.84.1) 1221 0 R (subfigure.84.2) 1222 0 R (subfigure.85.1) 1223 0 R (subfigure.85.2) 1224 0 R (subfigure.86.1) 1225 0 R (subfigure.86.2) 1226 0 R (subfigure.87.1) 1227 0 R (subfigure.87.2) 1228 0 R (subfigure.88.1) 1233 0 R (subfigure.88.2) 1234 0 R (subfigure.89.1) 1235 0 R (subfigure.89.2) 1236 0 R (subfigure.9.1) 975 0 R (subfigure.9.2) 976 0 R (subfigure.90.1) 1237 0 R (subfigure.90.2) 1238 0 R (subfigure.91.1) 761 0 R (subfigure.91.2) 762 0 R (subfigure.91.3) 763 0 R (subfigure.91.4) 764 0 R (subfigure.92.1) 766 0 R (subfigure.92.2) 767 0 R (subfigure.93.1) 769 0 R (subfigure.93.2) 770 0 R (subfigure.93.3) 771 0 R (subfigure.94.1) 773 0 R (subfigure.94.2) 774 0 R (subfigure.95.1) 1363 0 R (subfigure.95.2) 1364 0 R (subfigure.95.3) 1365 0 R (subfigure.95.4) 1366 0 R (subfigure.96.1) 777 0 R (subfigure.96.2) 778 0 R (submap.1.1) 788 0 R (submap.1.2) 789 0 R (subsection.1.1) 10 0 R (subsection.2.1) 18 0 R (subsection.2.2) 38 0 R (subsection.3.1) 66 0 R (subsection.3.2) 90 0 R (subsection.4.1) 114 0 R (subsection.4.2) 118 0 R (subsection.4.3) 122 0 R (subsection.4.4) 126 0 R (subsection.4.5) 130 0 R (subsection.4.6) 134 0 R (subsection.4.7) 138 0 R (subsection.5.1) 146 0 R (subsection.5.2) 150 0 R (subsection.5.3) 154 0 R (subsection.5.4) 158 0 R (subsection.6.1) 166 0 R (subsection.6.10) 202 0 R (subsection.6.2) 170 0 R (subsection.6.3) 174 0 R (subsection.6.4) 178 0 R (subsection.6.5) 182 0 R (subsection.6.6) 186 0 R (subsection.6.7) 190 0 R (subsection.6.8) 194 0 R (subsection.6.9) 198 0 R (subsection.7.1) 210 0 R (subsection.7.10) 254 0 R (subsection.7.11) 258 0 R (subsection.7.12) 262 0 R (subsection.7.13) 266 0 R (subsection.7.14) 270 0 R (subsection.7.15) 274 0 R (subsection.7.2) 214 0 R (subsection.7.3) 218 0 R (subsection.7.4) 230 0 R (subsection.7.5) 234 0 R (subsection.7.6) 238 0 R (subsection.7.7) 242 0 R (subsection.7.8) 246 0 R (subsection.7.9) 250 0 R (subsubsection.2.1.1) 22 0 R (subsubsection.2.1.2) 26 0 R (subsubsection.2.1.3) 30 0 R (subsubsection.2.1.4) 34 0 R (subsubsection.2.2.1) 42 0 R (subsubsection.2.2.2) 46 0 R (subsubsection.2.2.3) 50 0 R (subsubsection.2.2.4) 54 0 R (subsubsection.2.2.5) 58 0 R (subsubsection.3.1.1) 70 0 R (subsubsection.3.1.2) 74 0 R (subsubsection.3.1.3) 78 0 R (subsubsection.3.1.4) 82 0 R (subsubsection.3.1.5) 86 0 R (subsubsection.3.2.1) 94 0 R (subsubsection.3.2.2) 98 0 R (subsubsection.3.2.3) 102 0 R (subsubsection.3.2.4) 106 0 R (subsubsection.7.15.1) 278 0 R (subsubsection.7.15.2) 282 0 R (subsubsection.7.15.3) 286 0 R (subsubsection.7.3.1) 222 0 R (subsubsection.7.3.2) 226 0 R (subtable.7.1) 785 0 R (subtable.7.2) 786 0 R (subtable.7.3) 1296 0 R (subtable.7.4) 1297 0 R (table.1) 779 0 R (table.2) 780 0 R (table.3) 781 0 R (table.3.1) 859 0 R (table.4) 782 0 R (table.5) 783 0 R (table.6) 784 0 R]
+/Limits [(Doc-Start) (table.6)]
+>> endobj
+1606 0 obj <<
+/Kids [1605 0 R]
+>> endobj
+1607 0 obj <<
+/Dests 1606 0 R
+>> endobj
+1608 0 obj <<
+/Type /Catalog
+/Pages 1603 0 R
+/Outlines 1604 0 R
+/Names 1607 0 R
+/PageMode /UseOutlines
+/OpenAction 293 0 R
+>> endobj
+1609 0 obj <<
+/Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfeTeX-1.21a)/Keywords()
+/CreationDate (D:20050708082033-04'00')
+/PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4)
+>> endobj
+xref
+0 1610
+0000000001 65535 f
+0000000002 00000 f
+0000000003 00000 f
+0000000004 00000 f
+0000000000 00000 f
+0000000009 00000 n
+0000073199 00000 n
+0000596699 00000 n
+0000000054 00000 n
+0000000084 00000 n
+0000073256 00000 n
+0000596640 00000 n
+0000000134 00000 n
+0000000178 00000 n
+0000077433 00000 n
+0000596515 00000 n
+0000000224 00000 n
+0000000259 00000 n
+0000077491 00000 n
+0000596404 00000 n
+0000000310 00000 n
+0000000346 00000 n
+0000077549 00000 n
+0000596330 00000 n
+0000000402 00000 n
+0000000447 00000 n
+0000082136 00000 n
+0000596243 00000 n
+0000000503 00000 n
+0000000549 00000 n
+0000082194 00000 n
+0000596156 00000 n
+0000000605 00000 n
+0000000666 00000 n
+0000082252 00000 n
+0000596082 00000 n
+0000000722 00000 n
+0000000776 00000 n
+0000087438 00000 n
+0000595971 00000 n
+0000000827 00000 n
+0000000862 00000 n
+0000087496 00000 n
+0000595897 00000 n
+0000000918 00000 n
+0000000961 00000 n
+0000087554 00000 n
+0000595810 00000 n
+0000001017 00000 n
+0000001058 00000 n
+0000091070 00000 n
+0000595723 00000 n
+0000001114 00000 n
+0000001163 00000 n
+0000094014 00000 n
+0000595636 00000 n
+0000001219 00000 n
+0000001269 00000 n
+0000094072 00000 n
+0000595562 00000 n
+0000001325 00000 n
+0000001372 00000 n
+0000098137 00000 n
+0000595435 00000 n
+0000001418 00000 n
+0000001465 00000 n
+0000098195 00000 n
+0000595324 00000 n
+0000001516 00000 n
+0000001567 00000 n
+0000111562 00000 n
+0000595250 00000 n
+0000001623 00000 n
+0000001667 00000 n
+0000111620 00000 n
+0000595163 00000 n
+0000001723 00000 n
+0000001768 00000 n
+0000164008 00000 n
+0000595076 00000 n
+0000001824 00000 n
+0000001876 00000 n
+0000164067 00000 n
+0000594989 00000 n
+0000001932 00000 n
+0000001976 00000 n
+0000174194 00000 n
+0000594915 00000 n
+0000002032 00000 n
+0000002078 00000 n
+0000178445 00000 n
+0000594803 00000 n
+0000002129 00000 n
+0000002179 00000 n
+0000178504 00000 n
+0000594729 00000 n
+0000002235 00000 n
+0000002292 00000 n
+0000183728 00000 n
+0000594640 00000 n
+0000002348 00000 n
+0000002407 00000 n
+0000183787 00000 n
+0000594549 00000 n
+0000002464 00000 n
+0000002501 00000 n
+0000189990 00000 n
+0000594471 00000 n
+0000002558 00000 n
+0000002604 00000 n
+0000196528 00000 n
+0000594339 00000 n
+0000002651 00000 n
+0000002705 00000 n
+0000196588 00000 n
+0000594260 00000 n
+0000002757 00000 n
+0000002792 00000 n
+0000196648 00000 n
+0000594167 00000 n
+0000002844 00000 n
+0000002877 00000 n
+0000210375 00000 n
+0000594074 00000 n
+0000002929 00000 n
+0000002965 00000 n
+0000213905 00000 n
+0000593981 00000 n
+0000003017 00000 n
+0000003067 00000 n
+0000216622 00000 n
+0000593888 00000 n
+0000003119 00000 n
+0000003154 00000 n
+0000216682 00000 n
+0000593795 00000 n
+0000003206 00000 n
+0000003240 00000 n
+0000219651 00000 n
+0000593716 00000 n
+0000003292 00000 n
+0000003361 00000 n
+0000222884 00000 n
+0000593583 00000 n
+0000003408 00000 n
+0000003441 00000 n
+0000227435 00000 n
+0000593504 00000 n
+0000003493 00000 n
+0000003529 00000 n
+0000232396 00000 n
+0000593411 00000 n
+0000003581 00000 n
+0000003624 00000 n
+0000235331 00000 n
+0000593318 00000 n
+0000003676 00000 n
+0000003731 00000 n
+0000235391 00000 n
+0000593239 00000 n
+0000003783 00000 n
+0000003818 00000 n
+0000243858 00000 n
+0000593105 00000 n
+0000003865 00000 n
+0000003920 00000 n
+0000243918 00000 n
+0000593026 00000 n
+0000003972 00000 n
+0000004051 00000 n
+0000243978 00000 n
+0000592933 00000 n
+0000004103 00000 n
+0000004188 00000 n
+0000244038 00000 n
+0000592840 00000 n
+0000004240 00000 n
+0000004377 00000 n
+0000244098 00000 n
+0000592747 00000 n
+0000004429 00000 n
+0000004523 00000 n
+0000247771 00000 n
+0000592654 00000 n
+0000004575 00000 n
+0000004662 00000 n
+0000247831 00000 n
+0000592561 00000 n
+0000004714 00000 n
+0000004794 00000 n
+0000247891 00000 n
+0000592468 00000 n
+0000004846 00000 n
+0000004933 00000 n
+0000247951 00000 n
+0000592375 00000 n
+0000004985 00000 n
+0000005059 00000 n
+0000249596 00000 n
+0000592282 00000 n
+0000005111 00000 n
+0000005217 00000 n
+0000249656 00000 n
+0000592203 00000 n
+0000005270 00000 n
+0000005345 00000 n
+0000252966 00000 n
+0000592069 00000 n
+0000005392 00000 n
+0000005420 00000 n
+0000253026 00000 n
+0000591990 00000 n
+0000005472 00000 n
+0000005506 00000 n
+0000253086 00000 n
+0000591897 00000 n
+0000005558 00000 n
+0000005601 00000 n
+0000253146 00000 n
+0000591765 00000 n
+0000005653 00000 n
+0000005697 00000 n
+0000253206 00000 n
+0000591686 00000 n
+0000005754 00000 n
+0000005814 00000 n
+0000255919 00000 n
+0000591607 00000 n
+0000005871 00000 n
+0000005926 00000 n
+0000262490 00000 n
+0000591514 00000 n
+0000005978 00000 n
+0000006016 00000 n
+0000266113 00000 n
+0000591421 00000 n
+0000006068 00000 n
+0000006114 00000 n
+0000269399 00000 n
+0000591328 00000 n
+0000006166 00000 n
+0000006207 00000 n
+0000269458 00000 n
+0000591235 00000 n
+0000006259 00000 n
+0000006296 00000 n
+0000273058 00000 n
+0000591142 00000 n
+0000006348 00000 n
+0000006395 00000 n
+0000276613 00000 n
+0000591049 00000 n
+0000006447 00000 n
+0000006494 00000 n
+0000285496 00000 n
+0000590956 00000 n
+0000006547 00000 n
+0000006622 00000 n
+0000288519 00000 n
+0000590863 00000 n
+0000006675 00000 n
+0000006749 00000 n
+0000292197 00000 n
+0000590770 00000 n
+0000006802 00000 n
+0000006846 00000 n
+0000298199 00000 n
+0000590677 00000 n
+0000006899 00000 n
+0000006948 00000 n
+0000301528 00000 n
+0000590584 00000 n
+0000007001 00000 n
+0000007052 00000 n
+0000304370 00000 n
+0000590466 00000 n
+0000007105 00000 n
+0000007166 00000 n
+0000304430 00000 n
+0000590387 00000 n
+0000007224 00000 n
+0000007264 00000 n
+0000304490 00000 n
+0000590294 00000 n
+0000007322 00000 n
+0000007359 00000 n
+0000304550 00000 n
+0000590215 00000 n
+0000007417 00000 n
+0000007457 00000 n
+0000307886 00000 n
+0000590135 00000 n
+0000007504 00000 n
+0000007539 00000 n
+0000009250 00000 n
+0000009490 00000 n
+0000007591 00000 n
+0000009372 00000 n
+0000009431 00000 n
+0000587586 00000 n
+0000584403 00000 n
+0000587423 00000 n
+0000583802 00000 n
+0000581271 00000 n
+0000583638 00000 n
+0000580371 00000 n
+0000577203 00000 n
+0000580208 00000 n
+0000576118 00000 n
+0000567506 00000 n
+0000575955 00000 n
+0000566857 00000 n
+0000562723 00000 n
+0000566693 00000 n
+0000562087 00000 n
+0000557690 00000 n
+0000561924 00000 n
+0000556453 00000 n
+0000545884 00000 n
+0000556291 00000 n
+0000545412 00000 n
+0000541716 00000 n
+0000545251 00000 n
+0000541036 00000 n
+0000537436 00000 n
+0000540873 00000 n
+0000535964 00000 n
+0000521383 00000 n
+0000535801 00000 n
+0000521053 00000 n
+0000519496 00000 n
+0000520893 00000 n
+0000518040 00000 n
+0000504503 00000 n
+0000517878 00000 n
+0000503813 00000 n
+0000500316 00000 n
+0000503650 00000 n
+0000588077 00000 n
+0000010045 00000 n
+0000009864 00000 n
+0000009718 00000 n
+0000009986 00000 n
+0000022046 00000 n
+0000013540 00000 n
+0000010086 00000 n
+0000498743 00000 n
+0000480576 00000 n
+0000498580 00000 n
+0000479288 00000 n
+0000466128 00000 n
+0000479124 00000 n
+0000021987 00000 n
+0000014066 00000 n
+0000464843 00000 n
+0000450509 00000 n
+0000464679 00000 n
+0000014222 00000 n
+0000014383 00000 n
+0000014539 00000 n
+0000014700 00000 n
+0000014866 00000 n
+0000015032 00000 n
+0000015198 00000 n
+0000015363 00000 n
+0000015524 00000 n
+0000015689 00000 n
+0000015855 00000 n
+0000016021 00000 n
+0000016187 00000 n
+0000016352 00000 n
+0000016508 00000 n
+0000449471 00000 n
+0000442797 00000 n
+0000449307 00000 n
+0000016669 00000 n
+0000016835 00000 n
+0000017001 00000 n
+0000017166 00000 n
+0000017331 00000 n
+0000017497 00000 n
+0000017658 00000 n
+0000017824 00000 n
+0000017988 00000 n
+0000018153 00000 n
+0000018318 00000 n
+0000018473 00000 n
+0000018633 00000 n
+0000018794 00000 n
+0000018955 00000 n
+0000019116 00000 n
+0000019277 00000 n
+0000019437 00000 n
+0000019596 00000 n
+0000019751 00000 n
+0000019911 00000 n
+0000020072 00000 n
+0000020233 00000 n
+0000020394 00000 n
+0000020549 00000 n
+0000020710 00000 n
+0000020871 00000 n
+0000021030 00000 n
+0000021190 00000 n
+0000021351 00000 n
+0000021512 00000 n
+0000021672 00000 n
+0000021830 00000 n
+0000033817 00000 n
+0000025423 00000 n
+0000022169 00000 n
+0000441731 00000 n
+0000431051 00000 n
+0000441567 00000 n
+0000430179 00000 n
+0000425421 00000 n
+0000430014 00000 n
+0000025949 00000 n
+0000026110 00000 n
+0000026271 00000 n
+0000026432 00000 n
+0000026588 00000 n
+0000026747 00000 n
+0000026908 00000 n
+0000027069 00000 n
+0000027235 00000 n
+0000027401 00000 n
+0000027561 00000 n
+0000027720 00000 n
+0000027881 00000 n
+0000028041 00000 n
+0000028202 00000 n
+0000028361 00000 n
+0000028522 00000 n
+0000028683 00000 n
+0000028844 00000 n
+0000029006 00000 n
+0000029168 00000 n
+0000029330 00000 n
+0000029496 00000 n
+0000029658 00000 n
+0000029825 00000 n
+0000033758 00000 n
+0000029980 00000 n
+0000030134 00000 n
+0000030289 00000 n
+0000030444 00000 n
+0000030599 00000 n
+0000030754 00000 n
+0000030909 00000 n
+0000031063 00000 n
+0000031223 00000 n
+0000031378 00000 n
+0000423992 00000 n
+0000411403 00000 n
+0000423828 00000 n
+0000031536 00000 n
+0000031694 00000 n
+0000031854 00000 n
+0000032013 00000 n
+0000032173 00000 n
+0000032333 00000 n
+0000032488 00000 n
+0000032647 00000 n
+0000032807 00000 n
+0000032967 00000 n
+0000033127 00000 n
+0000033287 00000 n
+0000033444 00000 n
+0000033600 00000 n
+0000077113 00000 n
+0000077241 00000 n
+0000077369 00000 n
+0000090824 00000 n
+0000098073 00000 n
+0000111076 00000 n
+0000111017 00000 n
+0000111503 00000 n
+0000111135 00000 n
+0000111194 00000 n
+0000111258 00000 n
+0000111317 00000 n
+0000111381 00000 n
+0000111439 00000 n
+0000116628 00000 n
+0000115156 00000 n
+0000115215 00000 n
+0000115279 00000 n
+0000115338 00000 n
+0000115402 00000 n
+0000115460 00000 n
+0000115524 00000 n
+0000115583 00000 n
+0000045496 00000 n
+0000036234 00000 n
+0000033979 00000 n
+0000045437 00000 n
+0000036808 00000 n
+0000036968 00000 n
+0000037129 00000 n
+0000037290 00000 n
+0000037451 00000 n
+0000037611 00000 n
+0000037771 00000 n
+0000037932 00000 n
+0000038093 00000 n
+0000038254 00000 n
+0000038415 00000 n
+0000038575 00000 n
+0000038735 00000 n
+0000038896 00000 n
+0000039057 00000 n
+0000039218 00000 n
+0000039379 00000 n
+0000039533 00000 n
+0000039687 00000 n
+0000039843 00000 n
+0000039999 00000 n
+0000040155 00000 n
+0000040311 00000 n
+0000040466 00000 n
+0000040621 00000 n
+0000040777 00000 n
+0000040933 00000 n
+0000041089 00000 n
+0000041244 00000 n
+0000041398 00000 n
+0000041552 00000 n
+0000041708 00000 n
+0000041864 00000 n
+0000042020 00000 n
+0000042176 00000 n
+0000042330 00000 n
+0000042485 00000 n
+0000042641 00000 n
+0000042796 00000 n
+0000042952 00000 n
+0000043108 00000 n
+0000043263 00000 n
+0000043418 00000 n
+0000043574 00000 n
+0000043730 00000 n
+0000043885 00000 n
+0000044040 00000 n
+0000044195 00000 n
+0000044350 00000 n
+0000044506 00000 n
+0000044662 00000 n
+0000044818 00000 n
+0000044974 00000 n
+0000045129 00000 n
+0000045283 00000 n
+0000115647 00000 n
+0000115706 00000 n
+0000115770 00000 n
+0000115829 00000 n
+0000115893 00000 n
+0000115952 00000 n
+0000116016 00000 n
+0000116075 00000 n
+0000116138 00000 n
+0000116197 00000 n
+0000116261 00000 n
+0000116318 00000 n
+0000116382 00000 n
+0000116441 00000 n
+0000116505 00000 n
+0000116564 00000 n
+0000123775 00000 n
+0000125687 00000 n
+0000125874 00000 n
+0000126061 00000 n
+0000128115 00000 n
+0000128304 00000 n
+0000128493 00000 n
+0000128682 00000 n
+0000128871 00000 n
+0000130837 00000 n
+0000131027 00000 n
+0000131219 00000 n
+0000131411 00000 n
+0000131603 00000 n
+0000133456 00000 n
+0000133648 00000 n
+0000133840 00000 n
+0000134032 00000 n
+0000135686 00000 n
+0000135877 00000 n
+0000136069 00000 n
+0000136260 00000 n
+0000138077 00000 n
+0000138269 00000 n
+0000138460 00000 n
+0000138650 00000 n
+0000140318 00000 n
+0000140510 00000 n
+0000140702 00000 n
+0000140894 00000 n
+0000142752 00000 n
+0000056769 00000 n
+0000047585 00000 n
+0000045593 00000 n
+0000056710 00000 n
+0000048159 00000 n
+0000048315 00000 n
+0000048471 00000 n
+0000048627 00000 n
+0000048783 00000 n
+0000048937 00000 n
+0000049092 00000 n
+0000049248 00000 n
+0000049404 00000 n
+0000049560 00000 n
+0000049716 00000 n
+0000049871 00000 n
+0000050025 00000 n
+0000050180 00000 n
+0000050336 00000 n
+0000050492 00000 n
+0000050648 00000 n
+0000050803 00000 n
+0000050958 00000 n
+0000051114 00000 n
+0000051270 00000 n
+0000051426 00000 n
+0000051582 00000 n
+0000051737 00000 n
+0000051892 00000 n
+0000052047 00000 n
+0000052203 00000 n
+0000052359 00000 n
+0000052515 00000 n
+0000052669 00000 n
+0000052823 00000 n
+0000052979 00000 n
+0000053135 00000 n
+0000053291 00000 n
+0000053447 00000 n
+0000053602 00000 n
+0000053757 00000 n
+0000053913 00000 n
+0000054069 00000 n
+0000054225 00000 n
+0000054381 00000 n
+0000054536 00000 n
+0000054691 00000 n
+0000054847 00000 n
+0000055003 00000 n
+0000055159 00000 n
+0000055315 00000 n
+0000055470 00000 n
+0000055625 00000 n
+0000055781 00000 n
+0000055937 00000 n
+0000056093 00000 n
+0000056248 00000 n
+0000056403 00000 n
+0000056557 00000 n
+0000142944 00000 n
+0000143136 00000 n
+0000143328 00000 n
+0000145057 00000 n
+0000145248 00000 n
+0000145440 00000 n
+0000145631 00000 n
+0000147488 00000 n
+0000147680 00000 n
+0000147870 00000 n
+0000148062 00000 n
+0000149802 00000 n
+0000149994 00000 n
+0000150186 00000 n
+0000150378 00000 n
+0000152234 00000 n
+0000152425 00000 n
+0000152616 00000 n
+0000152808 00000 n
+0000154557 00000 n
+0000154749 00000 n
+0000154941 00000 n
+0000155133 00000 n
+0000156981 00000 n
+0000157173 00000 n
+0000157365 00000 n
+0000157556 00000 n
+0000159314 00000 n
+0000159505 00000 n
+0000159697 00000 n
+0000159887 00000 n
+0000163562 00000 n
+0000163753 00000 n
+0000163944 00000 n
+0000166556 00000 n
+0000166748 00000 n
+0000166939 00000 n
+0000067190 00000 n
+0000059620 00000 n
+0000056879 00000 n
+0000067013 00000 n
+0000060106 00000 n
+0000060261 00000 n
+0000060417 00000 n
+0000060573 00000 n
+0000060729 00000 n
+0000060884 00000 n
+0000061039 00000 n
+0000061195 00000 n
+0000061351 00000 n
+0000061507 00000 n
+0000061663 00000 n
+0000061818 00000 n
+0000061973 00000 n
+0000062129 00000 n
+0000062285 00000 n
+0000062440 00000 n
+0000062601 00000 n
+0000062761 00000 n
+0000062921 00000 n
+0000063082 00000 n
+0000063235 00000 n
+0000063396 00000 n
+0000063557 00000 n
+0000063713 00000 n
+0000063873 00000 n
+0000064034 00000 n
+0000064195 00000 n
+0000064349 00000 n
+0000064510 00000 n
+0000064671 00000 n
+0000064827 00000 n
+0000064983 00000 n
+0000065144 00000 n
+0000067072 00000 n
+0000065305 00000 n
+0000065459 00000 n
+0000065613 00000 n
+0000065767 00000 n
+0000065921 00000 n
+0000066075 00000 n
+0000066229 00000 n
+0000066388 00000 n
+0000067131 00000 n
+0000066547 00000 n
+0000066699 00000 n
+0000066856 00000 n
+0000588195 00000 n
+0000167129 00000 n
+0000167321 00000 n
+0000170078 00000 n
+0000170270 00000 n
+0000170461 00000 n
+0000170651 00000 n
+0000170843 00000 n
+0000173553 00000 n
+0000173745 00000 n
+0000173937 00000 n
+0000174129 00000 n
+0000177998 00000 n
+0000178190 00000 n
+0000178381 00000 n
+0000193035 00000 n
+0000192795 00000 n
+0000192855 00000 n
+0000192915 00000 n
+0000192975 00000 n
+0000216557 00000 n
+0000216432 00000 n
+0000216492 00000 n
+0000227371 00000 n
+0000227178 00000 n
+0000227243 00000 n
+0000227306 00000 n
+0000232331 00000 n
+0000232201 00000 n
+0000232266 00000 n
+0000239312 00000 n
+0000239502 00000 n
+0000239377 00000 n
+0000239437 00000 n
+0000082077 00000 n
+0000087379 00000 n
+0000101322 00000 n
+0000123593 00000 n
+0000183668 00000 n
+0000213594 00000 n
+0000213654 00000 n
+0000213714 00000 n
+0000210190 00000 n
+0000210250 00000 n
+0000210310 00000 n
+0000067744 00000 n
+0000067563 00000 n
+0000067313 00000 n
+0000067685 00000 n
+0000073617 00000 n
+0000071252 00000 n
+0000067841 00000 n
+0000410314 00000 n
+0000398560 00000 n
+0000410150 00000 n
+0000071474 00000 n
+0000397691 00000 n
+0000391948 00000 n
+0000397529 00000 n
+0000071632 00000 n
+0000073314 00000 n
+0000071793 00000 n
+0000073373 00000 n
+0000071951 00000 n
+0000072107 00000 n
+0000073432 00000 n
+0000072261 00000 n
+0000072416 00000 n
+0000073491 00000 n
+0000072571 00000 n
+0000391519 00000 n
+0000389088 00000 n
+0000391356 00000 n
+0000073555 00000 n
+0000072731 00000 n
+0000072885 00000 n
+0000073044 00000 n
+0000310372 00000 n
+0000077607 00000 n
+0000076413 00000 n
+0000073843 00000 n
+0000077049 00000 n
+0000077177 00000 n
+0000077305 00000 n
+0000076571 00000 n
+0000388651 00000 n
+0000386420 00000 n
+0000388488 00000 n
+0000076734 00000 n
+0000386089 00000 n
+0000384235 00000 n
+0000385923 00000 n
+0000076892 00000 n
+0000310192 00000 n
+0000310312 00000 n
+0000310252 00000 n
+0000082310 00000 n
+0000081099 00000 n
+0000077833 00000 n
+0000081273 00000 n
+0000081434 00000 n
+0000081588 00000 n
+0000081746 00000 n
+0000081912 00000 n
+0000087612 00000 n
+0000086575 00000 n
+0000082472 00000 n
+0000383542 00000 n
+0000381319 00000 n
+0000383380 00000 n
+0000086741 00000 n
+0000086895 00000 n
+0000087061 00000 n
+0000087215 00000 n
+0000105147 00000 n
+0000091192 00000 n
+0000090240 00000 n
+0000087852 00000 n
+0000090701 00000 n
+0000090760 00000 n
+0000090883 00000 n
+0000090942 00000 n
+0000091006 00000 n
+0000090390 00000 n
+0000090544 00000 n
+0000091128 00000 n
+0000380912 00000 n
+0000379050 00000 n
+0000380748 00000 n
+0000588313 00000 n
+0000094130 00000 n
+0000093719 00000 n
+0000091392 00000 n
+0000093861 00000 n
+0000098253 00000 n
+0000097718 00000 n
+0000094318 00000 n
+0000098014 00000 n
+0000378364 00000 n
+0000375684 00000 n
+0000378197 00000 n
+0000375219 00000 n
+0000373247 00000 n
+0000375057 00000 n
+0000097860 00000 n
+0000372297 00000 n
+0000365494 00000 n
+0000372131 00000 n
+0000101445 00000 n
+0000100791 00000 n
+0000098452 00000 n
+0000101263 00000 n
+0000100941 00000 n
+0000101381 00000 n
+0000365082 00000 n
+0000362399 00000 n
+0000364918 00000 n
+0000101099 00000 n
+0000310766 00000 n
+0000105211 00000 n
+0000104291 00000 n
+0000101658 00000 n
+0000105088 00000 n
+0000104457 00000 n
+0000104614 00000 n
+0000104772 00000 n
+0000104930 00000 n
+0000310734 00000 n
+0000310702 00000 n
+0000310670 00000 n
+0000111806 00000 n
+0000109168 00000 n
+0000105372 00000 n
+0000110958 00000 n
+0000109382 00000 n
+0000109537 00000 n
+0000109695 00000 n
+0000109849 00000 n
+0000110008 00000 n
+0000110167 00000 n
+0000110327 00000 n
+0000110488 00000 n
+0000110646 00000 n
+0000111678 00000 n
+0000362047 00000 n
+0000360047 00000 n
+0000361885 00000 n
+0000111742 00000 n
+0000110797 00000 n
+0000116687 00000 n
+0000114477 00000 n
+0000112045 00000 n
+0000115097 00000 n
+0000359269 00000 n
+0000354315 00000 n
+0000359104 00000 n
+0000353472 00000 n
+0000347814 00000 n
+0000353306 00000 n
+0000347106 00000 n
+0000343031 00000 n
+0000346940 00000 n
+0000342306 00000 n
+0000338338 00000 n
+0000342141 00000 n
+0000337648 00000 n
+0000333799 00000 n
+0000337482 00000 n
+0000333108 00000 n
+0000329573 00000 n
+0000332942 00000 n
+0000114635 00000 n
+0000114788 00000 n
+0000114943 00000 n
+0000588431 00000 n
+0000123967 00000 n
+0000120905 00000 n
+0000116940 00000 n
+0000123534 00000 n
+0000121159 00000 n
+0000121318 00000 n
+0000121477 00000 n
+0000121637 00000 n
+0000121796 00000 n
+0000121955 00000 n
+0000122113 00000 n
+0000122273 00000 n
+0000122433 00000 n
+0000122593 00000 n
+0000122753 00000 n
+0000123652 00000 n
+0000123711 00000 n
+0000122911 00000 n
+0000123070 00000 n
+0000123223 00000 n
+0000123839 00000 n
+0000123903 00000 n
+0000123378 00000 n
+0000329237 00000 n
+0000327214 00000 n
+0000329073 00000 n
+0000126125 00000 n
+0000125383 00000 n
+0000124167 00000 n
+0000125505 00000 n
+0000125564 00000 n
+0000125623 00000 n
+0000125751 00000 n
+0000125810 00000 n
+0000125938 00000 n
+0000125997 00000 n
+0000128935 00000 n
+0000127809 00000 n
+0000126235 00000 n
+0000127931 00000 n
+0000127990 00000 n
+0000128050 00000 n
+0000128179 00000 n
+0000128239 00000 n
+0000128368 00000 n
+0000128428 00000 n
+0000128557 00000 n
+0000128617 00000 n
+0000128746 00000 n
+0000128806 00000 n
+0000131668 00000 n
+0000130524 00000 n
+0000129058 00000 n
+0000130649 00000 n
+0000130710 00000 n
+0000130771 00000 n
+0000130902 00000 n
+0000130961 00000 n
+0000131092 00000 n
+0000131153 00000 n
+0000131284 00000 n
+0000131345 00000 n
+0000131476 00000 n
+0000131537 00000 n
+0000134097 00000 n
+0000133143 00000 n
+0000131779 00000 n
+0000133268 00000 n
+0000133329 00000 n
+0000133390 00000 n
+0000133521 00000 n
+0000133582 00000 n
+0000133713 00000 n
+0000133774 00000 n
+0000133905 00000 n
+0000133966 00000 n
+0000136324 00000 n
+0000135372 00000 n
+0000134221 00000 n
+0000135498 00000 n
+0000135559 00000 n
+0000135620 00000 n
+0000135751 00000 n
+0000135811 00000 n
+0000135942 00000 n
+0000136003 00000 n
+0000136134 00000 n
+0000136195 00000 n
+0000588551 00000 n
+0000138715 00000 n
+0000137763 00000 n
+0000136435 00000 n
+0000137889 00000 n
+0000137950 00000 n
+0000138011 00000 n
+0000138142 00000 n
+0000138203 00000 n
+0000138334 00000 n
+0000138395 00000 n
+0000138524 00000 n
+0000138584 00000 n
+0000140959 00000 n
+0000140004 00000 n
+0000138839 00000 n
+0000140130 00000 n
+0000140191 00000 n
+0000140252 00000 n
+0000140383 00000 n
+0000140444 00000 n
+0000140575 00000 n
+0000140636 00000 n
+0000140767 00000 n
+0000140828 00000 n
+0000143393 00000 n
+0000142438 00000 n
+0000141070 00000 n
+0000142564 00000 n
+0000142625 00000 n
+0000142686 00000 n
+0000142817 00000 n
+0000142878 00000 n
+0000143009 00000 n
+0000143070 00000 n
+0000143201 00000 n
+0000143262 00000 n
+0000145695 00000 n
+0000144743 00000 n
+0000143517 00000 n
+0000144869 00000 n
+0000144930 00000 n
+0000144991 00000 n
+0000145122 00000 n
+0000145182 00000 n
+0000145313 00000 n
+0000145374 00000 n
+0000145505 00000 n
+0000145566 00000 n
+0000148127 00000 n
+0000147174 00000 n
+0000145806 00000 n
+0000147300 00000 n
+0000147361 00000 n
+0000147422 00000 n
+0000147553 00000 n
+0000147614 00000 n
+0000147745 00000 n
+0000147804 00000 n
+0000147935 00000 n
+0000147996 00000 n
+0000150443 00000 n
+0000149488 00000 n
+0000148251 00000 n
+0000149614 00000 n
+0000149675 00000 n
+0000149736 00000 n
+0000149867 00000 n
+0000149928 00000 n
+0000150059 00000 n
+0000150120 00000 n
+0000150251 00000 n
+0000150312 00000 n
+0000588676 00000 n
+0000152873 00000 n
+0000151920 00000 n
+0000150554 00000 n
+0000152046 00000 n
+0000152107 00000 n
+0000152168 00000 n
+0000152299 00000 n
+0000152360 00000 n
+0000152489 00000 n
+0000152550 00000 n
+0000152681 00000 n
+0000152742 00000 n
+0000155198 00000 n
+0000154243 00000 n
+0000152997 00000 n
+0000154369 00000 n
+0000154430 00000 n
+0000154491 00000 n
+0000154622 00000 n
+0000154683 00000 n
+0000154814 00000 n
+0000154875 00000 n
+0000155006 00000 n
+0000155067 00000 n
+0000157620 00000 n
+0000156667 00000 n
+0000155309 00000 n
+0000156793 00000 n
+0000156854 00000 n
+0000156915 00000 n
+0000157046 00000 n
+0000157107 00000 n
+0000157238 00000 n
+0000157299 00000 n
+0000157430 00000 n
+0000157491 00000 n
+0000159950 00000 n
+0000159000 00000 n
+0000157744 00000 n
+0000159126 00000 n
+0000159187 00000 n
+0000159248 00000 n
+0000159379 00000 n
+0000159439 00000 n
+0000159570 00000 n
+0000159631 00000 n
+0000159762 00000 n
+0000159823 00000 n
+0000164126 00000 n
+0000162240 00000 n
+0000160061 00000 n
+0000163374 00000 n
+0000163435 00000 n
+0000163496 00000 n
+0000163627 00000 n
+0000163687 00000 n
+0000163818 00000 n
+0000163879 00000 n
+0000162432 00000 n
+0000162589 00000 n
+0000162746 00000 n
+0000162903 00000 n
+0000163060 00000 n
+0000163217 00000 n
+0000167386 00000 n
+0000166242 00000 n
+0000164289 00000 n
+0000166368 00000 n
+0000166429 00000 n
+0000166490 00000 n
+0000166621 00000 n
+0000166682 00000 n
+0000166813 00000 n
+0000166874 00000 n
+0000167003 00000 n
+0000167063 00000 n
+0000167194 00000 n
+0000167255 00000 n
+0000588801 00000 n
+0000170908 00000 n
+0000169422 00000 n
+0000167510 00000 n
+0000169890 00000 n
+0000169951 00000 n
+0000170012 00000 n
+0000170143 00000 n
+0000170204 00000 n
+0000170335 00000 n
+0000170396 00000 n
+0000170525 00000 n
+0000170585 00000 n
+0000170716 00000 n
+0000170777 00000 n
+0000169578 00000 n
+0000169734 00000 n
+0000174250 00000 n
+0000173239 00000 n
+0000171032 00000 n
+0000173365 00000 n
+0000173426 00000 n
+0000173487 00000 n
+0000173618 00000 n
+0000173679 00000 n
+0000173810 00000 n
+0000173871 00000 n
+0000174002 00000 n
+0000174063 00000 n
+0000178563 00000 n
+0000177339 00000 n
+0000174413 00000 n
+0000177810 00000 n
+0000177871 00000 n
+0000177932 00000 n
+0000178063 00000 n
+0000178124 00000 n
+0000178255 00000 n
+0000178316 00000 n
+0000177495 00000 n
+0000177648 00000 n
+0000183978 00000 n
+0000182613 00000 n
+0000178739 00000 n
+0000183607 00000 n
+0000326860 00000 n
+0000324853 00000 n
+0000326696 00000 n
+0000182796 00000 n
+0000182956 00000 n
+0000324496 00000 n
+0000322511 00000 n
+0000324330 00000 n
+0000183115 00000 n
+0000183847 00000 n
+0000183276 00000 n
+0000183913 00000 n
+0000183442 00000 n
+0000190182 00000 n
+0000188426 00000 n
+0000184259 00000 n
+0000189929 00000 n
+0000188636 00000 n
+0000188798 00000 n
+0000188960 00000 n
+0000189122 00000 n
+0000189282 00000 n
+0000189437 00000 n
+0000189596 00000 n
+0000190050 00000 n
+0000189763 00000 n
+0000190116 00000 n
+0000193100 00000 n
+0000192608 00000 n
+0000190409 00000 n
+0000192734 00000 n
+0000322017 00000 n
+0000319996 00000 n
+0000321851 00000 n
+0000588926 00000 n
+0000196708 00000 n
+0000196168 00000 n
+0000193276 00000 n
+0000196467 00000 n
+0000196315 00000 n
+0000210435 00000 n
+0000209491 00000 n
+0000196910 00000 n
+0000210129 00000 n
+0000209656 00000 n
+0000209811 00000 n
+0000209969 00000 n
+0000213965 00000 n
+0000213065 00000 n
+0000210635 00000 n
+0000213533 00000 n
+0000213778 00000 n
+0000213839 00000 n
+0000213221 00000 n
+0000213378 00000 n
+0000216808 00000 n
+0000216065 00000 n
+0000214141 00000 n
+0000216371 00000 n
+0000216212 00000 n
+0000216742 00000 n
+0000219711 00000 n
+0000219464 00000 n
+0000217009 00000 n
+0000219590 00000 n
+0000222944 00000 n
+0000222519 00000 n
+0000219899 00000 n
+0000222823 00000 n
+0000222666 00000 n
+0000589051 00000 n
+0000227627 00000 n
+0000225977 00000 n
+0000223132 00000 n
+0000227117 00000 n
+0000226169 00000 n
+0000226325 00000 n
+0000226484 00000 n
+0000226643 00000 n
+0000226803 00000 n
+0000227495 00000 n
+0000226960 00000 n
+0000227561 00000 n
+0000310431 00000 n
+0000232456 00000 n
+0000229907 00000 n
+0000227815 00000 n
+0000232074 00000 n
+0000232135 00000 n
+0000230153 00000 n
+0000230310 00000 n
+0000230466 00000 n
+0000230622 00000 n
+0000230784 00000 n
+0000230946 00000 n
+0000231108 00000 n
+0000231270 00000 n
+0000231432 00000 n
+0000231594 00000 n
+0000231756 00000 n
+0000231918 00000 n
+0000319545 00000 n
+0000316465 00000 n
+0000319379 00000 n
+0000235451 00000 n
+0000234802 00000 n
+0000232594 00000 n
+0000235270 00000 n
+0000234958 00000 n
+0000235113 00000 n
+0000239567 00000 n
+0000237095 00000 n
+0000235575 00000 n
+0000238921 00000 n
+0000238982 00000 n
+0000237323 00000 n
+0000237480 00000 n
+0000237636 00000 n
+0000239048 00000 n
+0000239114 00000 n
+0000239180 00000 n
+0000239246 00000 n
+0000237792 00000 n
+0000237954 00000 n
+0000238116 00000 n
+0000238278 00000 n
+0000238440 00000 n
+0000238597 00000 n
+0000238759 00000 n
+0000244158 00000 n
+0000242984 00000 n
+0000239691 00000 n
+0000243797 00000 n
+0000243158 00000 n
+0000243315 00000 n
+0000243471 00000 n
+0000243638 00000 n
+0000310131 00000 n
+0000248011 00000 n
+0000247220 00000 n
+0000244334 00000 n
+0000247710 00000 n
+0000247376 00000 n
+0000247543 00000 n
+0000589176 00000 n
+0000249716 00000 n
+0000249226 00000 n
+0000248161 00000 n
+0000249535 00000 n
+0000249373 00000 n
+0000253266 00000 n
+0000252599 00000 n
+0000249840 00000 n
+0000252905 00000 n
+0000252746 00000 n
+0000310070 00000 n
+0000255979 00000 n
+0000255732 00000 n
+0000253441 00000 n
+0000255858 00000 n
+0000259192 00000 n
+0000258823 00000 n
+0000256167 00000 n
+0000259131 00000 n
+0000258970 00000 n
+0000262550 00000 n
+0000262116 00000 n
+0000259354 00000 n
+0000262429 00000 n
+0000262263 00000 n
+0000266599 00000 n
+0000265926 00000 n
+0000262738 00000 n
+0000266052 00000 n
+0000266173 00000 n
+0000266234 00000 n
+0000266295 00000 n
+0000315963 00000 n
+0000313070 00000 n
+0000315798 00000 n
+0000266356 00000 n
+0000266417 00000 n
+0000266478 00000 n
+0000266538 00000 n
+0000589301 00000 n
+0000269518 00000 n
+0000268866 00000 n
+0000266815 00000 n
+0000269338 00000 n
+0000269022 00000 n
+0000269184 00000 n
+0000273423 00000 n
+0000272524 00000 n
+0000269667 00000 n
+0000272997 00000 n
+0000272680 00000 n
+0000273118 00000 n
+0000273179 00000 n
+0000273240 00000 n
+0000273301 00000 n
+0000272843 00000 n
+0000273362 00000 n
+0000276673 00000 n
+0000276016 00000 n
+0000273585 00000 n
+0000276491 00000 n
+0000276552 00000 n
+0000276172 00000 n
+0000276334 00000 n
+0000279607 00000 n
+0000279420 00000 n
+0000276835 00000 n
+0000279546 00000 n
+0000282720 00000 n
+0000282355 00000 n
+0000279756 00000 n
+0000282659 00000 n
+0000282502 00000 n
+0000285556 00000 n
+0000285309 00000 n
+0000282921 00000 n
+0000285435 00000 n
+0000589426 00000 n
+0000288579 00000 n
+0000288144 00000 n
+0000285770 00000 n
+0000288458 00000 n
+0000288291 00000 n
+0000292257 00000 n
+0000291823 00000 n
+0000288741 00000 n
+0000292136 00000 n
+0000291970 00000 n
+0000295317 00000 n
+0000294941 00000 n
+0000292498 00000 n
+0000295256 00000 n
+0000295088 00000 n
+0000298259 00000 n
+0000298012 00000 n
+0000295479 00000 n
+0000298138 00000 n
+0000301588 00000 n
+0000301152 00000 n
+0000298434 00000 n
+0000301467 00000 n
+0000301299 00000 n
+0000304610 00000 n
+0000303999 00000 n
+0000301750 00000 n
+0000304309 00000 n
+0000304146 00000 n
+0000589551 00000 n
+0000307946 00000 n
+0000307699 00000 n
+0000304811 00000 n
+0000307825 00000 n
+0000310492 00000 n
+0000309822 00000 n
+0000308121 00000 n
+0000309948 00000 n
+0000310009 00000 n
+0000312758 00000 n
+0000310798 00000 n
+0000312594 00000 n
+0000312987 00000 n
+0000312962 00000 n
+0000316310 00000 n
+0000316175 00000 n
+0000319833 00000 n
+0000319762 00000 n
+0000322386 00000 n
+0000322241 00000 n
+0000324745 00000 n
+0000324714 00000 n
+0000327106 00000 n
+0000327075 00000 n
+0000329470 00000 n
+0000329437 00000 n
+0000333549 00000 n
+0000333348 00000 n
+0000338102 00000 n
+0000337899 00000 n
+0000342763 00000 n
+0000342556 00000 n
+0000347562 00000 n
+0000347359 00000 n
+0000354027 00000 n
+0000353746 00000 n
+0000359758 00000 n
+0000359531 00000 n
+0000362291 00000 n
+0000362260 00000 n
+0000365353 00000 n
+0000365292 00000 n
+0000372898 00000 n
+0000372589 00000 n
+0000375580 00000 n
+0000375423 00000 n
+0000378843 00000 n
+0000378604 00000 n
+0000381189 00000 n
+0000381144 00000 n
+0000384066 00000 n
+0000383811 00000 n
+0000386327 00000 n
+0000386302 00000 n
+0000388958 00000 n
+0000388873 00000 n
+0000391793 00000 n
+0000391722 00000 n
+0000398212 00000 n
+0000397987 00000 n
+0000410985 00000 n
+0000410652 00000 n
+0000424826 00000 n
+0000424487 00000 n
+0000430743 00000 n
+0000430452 00000 n
+0000442355 00000 n
+0000442075 00000 n
+0000450126 00000 n
+0000449795 00000 n
+0000465673 00000 n
+0000465286 00000 n
+0000480122 00000 n
+0000479731 00000 n
+0000499775 00000 n
+0000499342 00000 n
+0000504298 00000 n
+0000504037 00000 n
+0000518920 00000 n
+0000518530 00000 n
+0000521291 00000 n
+0000521266 00000 n
+0000536899 00000 n
+0000536526 00000 n
+0000541525 00000 n
+0000541262 00000 n
+0000545737 00000 n
+0000545658 00000 n
+0000557219 00000 n
+0000556868 00000 n
+0000562487 00000 n
+0000562317 00000 n
+0000567282 00000 n
+0000567087 00000 n
+0000576745 00000 n
+0000576468 00000 n
+0000580988 00000 n
+0000580699 00000 n
+0000584251 00000 n
+0000584008 00000 n
+0000587889 00000 n
+0000587796 00000 n
+0000589649 00000 n
+0000589771 00000 n
+0000589897 00000 n
+0000589977 00000 n
+0000590059 00000 n
+0000596809 00000 n
+0000608847 00000 n
+0000608888 00000 n
+0000608928 00000 n
+0000609062 00000 n
+trailer
+<<
+/Size 1610
+/Root 1608 0 R
+/Info 1609 0 R
+/ID [<A0133B4E0ACC1C44F418C35823A59ECA> <A0133B4E0ACC1C44F418C35823A59ECA>]
+>>
+startxref
+609326
+%%EOF
diff --git a/macros/latex/contrib/subfig/test1.tex b/macros/latex/contrib/subfig/test1.tex
new file mode 100644
index 0000000000..1056dab39b
--- /dev/null
+++ b/macros/latex/contrib/subfig/test1.tex
@@ -0,0 +1,712 @@
+%% test1.tex
+%%
+%% This is file `test1.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright © 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass[twocolumn]{article}
+
+\usepackage{caption}
+\usepackage[labelfont=bf,textfont={sl,bf},lofdepth,lotdepth]{subfig}
+\DeclareCaptionListOfFormat{colon}{#2:}
+\usepackage{fixltx2e}
+
+\captionsetup[subtable]{listofformat=colon,listofnumwidth=1.5em,
+ listofindent=3.8em}
+\newcommand{\figbox}[1]{%
+ \fbox{%
+ \vbox to 1in{%
+ \vfil
+ \hbox to 2in{%
+ \hfil
+ #1%
+ \hfil}%
+ \vfil}}}
+
+\makeatletter
+ \newcommand{\setcaptype}[1]{%
+ \listsubcaptions
+ \renewcommand{\@captype}{#1}}
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+\makeatother
+
+\begin{document}
+
+\title{Subfig Package Test Program One}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{%
+This test checks five things:
+\begin{enumerate}
+ \item if the {\bf subfig} and the {\bf fixltx2e} packages work together;
+ \item that the subcaption label format for the List-of-Float pages
+ is working;
+ \item that the subcaption numbering in the List-of-Float pages is
+ working;
+ \item it tests the {\bf figure*} and {\bf table*} environemnts in
+ two column mode; and,
+ \item that various position combinations of top and bottom captions and
+ subcaptions work together.
+\end{enumerate}}
+\maketitle
+\clearpage
+
+\listoffigures
+\clearpage
+
+\listoftables
+\clearpage
+
+\section{Overview}
+
+This test runs through the various layout options for both figures and
+subfigures; and tables and subtables. It also shows a mixture of
+figures and tables within a single float environment.
+
+\subsection{Multiple figures}
+\captionsetup[figure]{position=bottom}
+\captionsetup[table]{position=bottom}
+
+Figure~\ref{fig:Afirst}[\pageref{fig:Afirst}] has two subfigures
+\ref{fig:AfirstA}[\pageref{fig:AfirstA}] and
+\ref{fig:AfirstB}[\pageref{fig:AfirstB}].
+%
+Figure~\ref{fig:Asecond}[\pageref{fig:Asecond}] has two subfigures
+\ref{fig:AsecondA}[\pageref{fig:AsecondA}] and
+\ref{fig:AsecondB}[\pageref{fig:AsecondB}].
+%
+Figure~\ref{fig:Athird}[\pageref{fig:Athird}] has two subfigures
+\ref{fig:AthirdA}[\pageref{fig:AthirdA}] and
+\ref{fig:AthirdB}[\pageref{fig:AthirdB}].
+%
+Figure~\ref{fig:Afourth}[\pageref{fig:Afourth}] has two subfigures
+\ref{fig:AfourthA}[\pageref{fig:AfourthA}] and
+\ref{fig:AfourthB}[\pageref{fig:AfourthB}].
+%
+Figure~\ref{fig:Afifth}[\pageref{fig:Afifth}] has two subfigures
+\ref{fig:AfifthA}[\pageref{fig:AfifthA}] and
+\ref{fig:AfifthB}[\pageref{fig:AfifthB}].
+%
+Figure~\ref{fig:Asixth}[\pageref{fig:Asixth}] has two subfigures
+\ref{fig:AsixthA}[\pageref{fig:AsixthA}] and
+\ref{fig:AsixthB}[\pageref{fig:AsixthB}].
+
+\begin{figure*}%
+ \captionsetup[figure]{margin=10pt}%
+ \subfloat[One subone.\label{fig:AfirstA}]{\figbox{One subone}}
+ \hfill
+ \subfloat[One subtwo.\label{fig:AfirstB} --- but this one has a
+ very very long caption. So long that it continues over into
+ other lines so that we can test the list-of line settings.]%
+ {\figbox{One subtwo}}\\[-10pt]
+ \caption{First figure --- but this one has a very very long caption.
+ So long that it continues over into a second line so that we can
+ test the margin setting and centering of the caption command in the
+ full page mode.}%
+ \label{fig:Afirst}%
+%
+ \subfloat[Two subone.\label{fig:AsecondA}]{\figbox{Two subone}}
+ \hfill
+ \subfloat[Two subtwo.\label{fig:AsecondB}]{\figbox{Two subtwo}}\\[-10pt]
+ \caption{Second figure.}%
+ \label{fig:Asecond}%
+%
+ \subfloat[Three subone.\label{fig:AthirdA}]{\figbox{Three subone}}
+ \hfill
+ \subfloat[Three subtwo.\label{fig:AthirdB}]{\figbox{Three subtwo}}\\[-10pt]
+ \caption{Third figure.}%
+ \label{fig:Athird}%
+\end{figure*}
+
+\begin{figure*}%
+ \begin{center}%
+ \subfloat[Four subone.\label{fig:AfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{fig:AfourthB}]{\figbox{Four subtwo}}\\[-10pt]
+ \caption{Fourth figure.}%
+ \label{fig:Afourth}%
+%
+ \subfloat[Five subone.\label{fig:AfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{fig:AfifthB}]{\figbox{Five subtwo}}\\[-10pt]
+ \caption{Fifth figure.}%
+ \label{fig:Afifth}%
+%
+ \subfloat[Six subone.\label{fig:AsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{fig:AsixthB}]{\figbox{Six subtwo}}\\[-10pt]
+ \caption{Sixth figure.}%
+ \label{fig:Asixth}%
+ \end{center}
+\end{figure*}
+
+\subsection{Multiple tables}
+
+Table~\ref{tab:Afirst}[\pageref{tab:Afirst}] has two subtables
+\ref{tab:AfirstA}[\pageref{tab:AfirstA}] and
+\ref{tab:AfirstB}[\pageref{tab:AfirstB}].
+%
+Table~\ref{tab:Asecond}[\pageref{tab:Asecond}] has two subtables
+\ref{tab:AsecondA}[\pageref{tab:AsecondA}] and
+\ref{tab:AsecondB}[\pageref{tab:AsecondB}].
+%
+Table~\ref{tab:Athird}[\pageref{tab:Athird}] has two subtables
+\ref{tab:AthirdA}[\pageref{tab:AthirdA}] and
+\ref{tab:AthirdB}[\pageref{tab:AthirdB}].
+%
+Table~\ref{tab:Afourth}[\pageref{tab:Afourth}] has two subtables
+\ref{tab:AfourthA}[\pageref{tab:AfourthA}] and
+\ref{tab:AfourthB}[\pageref{tab:AfourthB}].
+%
+Table~\ref{tab:Afifth}[\pageref{tab:Afifth}] has two subtables
+\ref{tab:AfifthA}[\pageref{tab:AfifthA}] and
+\ref{tab:AfifthB}[\pageref{tab:AfifthB}].
+%
+Table~\ref{tab:Asixth}[\pageref{tab:Asixth}] has two subtables
+\ref{tab:AsixthA}[\pageref{tab:AsixthA}] and
+\ref{tab:AsixthB}[\pageref{tab:AsixthB}].
+
+\begin{table*}%
+ \begin{center}%
+ \subfloat[One subone.\label{tab:AfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{tab:AfirstB}]{\figbox{One subtwo}}\\[-10pt]
+ \caption{First table.}%
+ \label{tab:Afirst}%
+%
+ \subfloat[Two subone.\label{tab:AsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{tab:AsecondB}]{\figbox{Two subtwo}}\\[-10pt]
+ \caption{Second table.}%
+ \label{tab:Asecond}%
+%
+ \subfloat[Three subone.\label{tab:AthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{tab:AthirdB}]{\figbox{Three subtwo}}\\[-10pt]
+ \caption{Third table.}%
+ \label{tab:Athird}%
+ \end{center}%
+\end{table*}
+
+\begin{table*}%
+ \begin{center}%
+ \subfloat[Four subone.\label{tab:AfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{tab:AfourthB}]{\figbox{Four subtwo}}\\[-10pt]
+ \caption{Fourth table.}%
+ \label{tab:Afourth}%
+%
+ \subfloat[Five subone.\label{tab:AfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{tab:AfifthB}]{\figbox{Five subtwo}}\\[-10pt]
+ \caption{Fifth table.}%
+ \label{tab:Afifth}%
+%
+ \subfloat[Six subone.\label{tab:AsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{tab:AsixthB}]{\figbox{Six subtwo}}\\[-10pt]
+ \caption{Sixth table.}%
+ \label{tab:Asixth}%
+ \end{center}%
+\end{table*}
+
+\subsection{Multiple figures with the {\bf figure} caption at top}
+\captionsetup[figure]{position=top}
+
+Figure~\ref{fig:Bfirst}[\pageref{fig:Bfirst}] has two subfigures
+\ref{fig:BfirstA}[\pageref{fig:BfirstA}] and
+\ref{fig:BfirstB}[\pageref{fig:BfirstB}].
+%
+Figure~\ref{fig:Bsecond}[\pageref{fig:Bsecond}] has two subfigures
+\ref{fig:BsecondA}[\pageref{fig:BsecondA}] and
+\ref{fig:BsecondB}[\pageref{fig:BsecondB}].
+%
+Figure~\ref{fig:Bthird}[\pageref{fig:Bthird}] has two subfigures
+\ref{fig:BthirdA}[\pageref{fig:BthirdA}] and
+\ref{fig:BthirdB}[\pageref{fig:BthirdB}].
+%
+Figure~\ref{fig:Bfourth}[\pageref{fig:Bfourth}] has two subfigures
+\ref{fig:BfourthA}[\pageref{fig:BfourthA}] and
+\ref{fig:BfourthB}[\pageref{fig:BfourthB}].
+%
+Figure~\ref{fig:Bfifth}[\pageref{fig:Bfifth}] has two subfigures
+\ref{fig:BfifthA}[\pageref{fig:BfifthA}] and
+\ref{fig:BfifthB}[\pageref{fig:BfifthB}].
+%
+Figure~\ref{fig:Bsixth}[\pageref{fig:Bsixth}] has two subfigures
+\ref{fig:BsixthA}[\pageref{fig:BsixthA}] and
+\ref{fig:BsixthB}[\pageref{fig:BsixthB}].
+
+\begin{figure*}%
+ \begin{center}%
+ \caption{First figure.}%
+ \label{fig:Bfirst}%
+ \subfloat[One subone.\label{fig:BfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{fig:BfirstB}]{\figbox{One subtwo}}\\
+%
+ \caption{Second figure.}%
+ \label{fig:Bsecond}%
+ \subfloat[Two subone.\label{fig:BsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{fig:BsecondB}]{\figbox{Two subtwo}}\\
+%
+ \caption{Third figure.}%
+ \label{fig:Bthird}%
+ \subfloat[Three subone.\label{fig:BthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{fig:BthirdB}]{\figbox{Three subtwo}}%
+ \end{center}%
+\end{figure*}
+
+\begin{figure*}%
+ \begin{center}%
+ \caption{Fourth figure.}%
+ \label{fig:Bfourth}%
+ \subfloat[Four subone.\label{fig:BfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{fig:BfourthB}]{\figbox{Four subtwo}}\\
+%
+ \caption{Fifth figure.}%
+ \label{fig:Bfifth}%
+ \subfloat[Five subone.\label{fig:BfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{fig:BfifthB}]{\figbox{Five subtwo}}\\
+%
+ \caption{Sixth figure.}%
+ \label{fig:Bsixth}%
+ \subfloat[Six subone.\label{fig:BsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{fig:BsixthB}]{\figbox{Six subtwo}}
+ \end{center}%
+\end{figure*}
+
+\subsection{Multiple tables with the {\bf table} caption at top}
+\captionsetup[table]{position=top}
+
+Table~\ref{tab:Bfirst}[\pageref{tab:Bfirst}] has two subtables
+\ref{tab:BfirstA}[\pageref{tab:BfirstA}] and
+\ref{tab:BfirstB}[\pageref{tab:BfirstB}].
+%
+Table~\ref{tab:Bsecond}[\pageref{tab:Bsecond}] has two subtables
+\ref{tab:BsecondA}[\pageref{tab:BsecondA}] and
+\ref{tab:BsecondB}[\pageref{tab:BsecondB}].
+%
+Table~\ref{tab:Bthird}[\pageref{tab:Bthird}] has two subtables
+\ref{tab:BthirdA}[\pageref{tab:BthirdA}] and
+\ref{tab:BthirdB}[\pageref{tab:BthirdB}].
+%
+Table~\ref{tab:Bfourth}[\pageref{tab:Bfourth}] has two subtables
+\ref{tab:BfourthA}[\pageref{tab:BfourthA}] and
+\ref{tab:BfourthB}[\pageref{tab:BfourthB}].
+%
+Table~\ref{tab:Bfifth}[\pageref{tab:Bfifth}] has two subtables
+\ref{tab:BfifthA}[\pageref{tab:BfifthA}] and
+\ref{tab:BfifthB}[\pageref{tab:BfifthB}].
+%
+Table~\ref{tab:Bsixth}[\pageref{tab:Bsixth}] has two subtables
+\ref{tab:BsixthA}[\pageref{tab:BsixthA}] and
+\ref{tab:BsixthB}[\pageref{tab:BsixthB}].
+
+\begin{table*}%
+ \begin{center}%
+ \caption{First table.}%
+ \label{tab:Bfirst}%
+ \subfloat[One subone.\label{tab:BfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{tab:BfirstB}]{\figbox{One subtwo}}\\
+%
+ \caption{Second table.}%
+ \label{tab:Bsecond}%
+ \subfloat[Two subone.\label{tab:BsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{tab:BsecondB}]{\figbox{Two subtwo}}\\
+%
+ \caption{Third table.}%
+ \label{tab:Bthird}%
+ \subfloat[Three subone.\label{tab:BthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{tab:BthirdB}]{\figbox{Three subtwo}}\\
+ \end{center}%
+\end{table*}
+
+\begin{table*}%
+ \begin{center}%
+ \caption{Fourth table.}%
+ \label{tab:Bfourth}%
+ \subfloat[Four subone.\label{tab:BfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{tab:BfourthB}]{\figbox{Four subtwo}}
+%
+ \caption{Fifth table.}%
+ \label{tab:Bfifth}%
+ \subfloat[Five subone.\label{tab:BfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{tab:BfifthB}]{\figbox{Five subtwo}}
+%
+ \caption{Sixth table.}%
+ \label{tab:Bsixth}%
+ \subfloat[Six subone.\label{tab:BsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{tab:BsixthB}]{\figbox{Six subtwo}}
+ \end{center}%
+\end{table*}
+
+
+\subsection{Multiple figures with the {\bf figure} and {\bf subfigure}
+ captions at top}
+\captionsetup[subfigure]{position=top}
+
+Figure~\ref{fig:Cfirst}[\pageref{fig:Cfirst}] has two subfigures
+\ref{fig:CfirstA}[\pageref{fig:CfirstA}] and
+\ref{fig:CfirstB}[\pageref{fig:CfirstB}].
+%
+Figure~\ref{fig:Csecond}[\pageref{fig:Csecond}] has two subfigures
+\ref{fig:CsecondA}[\pageref{fig:CsecondA}] and
+\ref{fig:CsecondB}[\pageref{fig:CsecondB}].
+%
+Figure~\ref{fig:Cthird}[\pageref{fig:Cthird}] has two subfigures
+\ref{fig:CthirdA}[\pageref{fig:CthirdA}] and
+\ref{fig:CthirdB}[\pageref{fig:CthirdB}].
+%
+Figure~\ref{fig:Cfourth}[\pageref{fig:Cfourth}] has two subfigures
+\ref{fig:CfourthA}[\pageref{fig:CfourthA}] and
+\ref{fig:CfourthB}[\pageref{fig:CfourthB}].
+%
+Figure~\ref{fig:Cfifth}[\pageref{fig:Cfifth}] has two subfigures
+\ref{fig:CfifthA}[\pageref{fig:CfifthA}] and
+\ref{fig:CfifthB}[\pageref{fig:CfifthB}].
+%
+Figure~\ref{fig:Csixth}[\pageref{fig:Csixth}] has two subfigures
+\ref{fig:CsixthA}[\pageref{fig:CsixthA}] and
+\ref{fig:CsixthB}[\pageref{fig:CsixthB}].
+
+\begin{figure*}%
+ \begin{center}%
+ \caption{First figure.}%
+ \label{fig:Cfirst}%
+ \subfloat[One subone.\label{fig:CfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{fig:CfirstB}]{\figbox{One subtwo}}\\
+%
+ \caption{Second figure.}%
+ \label{fig:Csecond}%
+ \subfloat[Two subone.\label{fig:CsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{fig:CsecondB}]{\figbox{Two subtwo}}\\
+%
+ \caption{Third figure.}%
+ \label{fig:Cthird}%
+ \subfloat[Three subone.\label{fig:CthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{fig:CthirdB}]{\figbox{Three subtwo}}\\
+ \end{center}%
+\end{figure*}
+
+\begin{figure*}%
+ \begin{center}%
+ \caption{Fourth figure.}%
+ \label{fig:Cfourth}%
+ \subfloat[Four subone.\label{fig:CfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{fig:CfourthB}]{\figbox{Four subtwo}}\\
+%
+ \caption{Fifth figure.}%
+ \label{fig:Cfifth}%
+ \subfloat[Five subone.\label{fig:CfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{fig:CfifthB}]{\figbox{Five subtwo}}\\
+%
+ \caption{Sixth figure.}%
+ \label{fig:Csixth}%
+ \subfloat[Six subone.\label{fig:CsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{fig:CsixthB}]{\figbox{Six subtwo}}\\
+ \end{center}%
+\end{figure*}
+
+\subsection{Multiple tables with the {\bf table} and {\bf subtable}
+ captions at top}
+\captionsetup[subtable]{position=top}
+
+Table~\ref{tab:Cfirst}[\pageref{tab:Cfirst}] has two subtables
+\ref{tab:CfirstA}[\pageref{tab:CfirstA}] and
+\ref{tab:CfirstB}[\pageref{tab:CfirstB}].
+%
+Table~\ref{tab:Csecond}[\pageref{tab:Csecond}] has two subtables
+\ref{tab:CsecondA}[\pageref{tab:CsecondA}] and
+\ref{tab:CsecondB}[\pageref{tab:CsecondB}].
+%
+Table~\ref{tab:Cthird}[\pageref{tab:Cthird}] has two subtables
+\ref{tab:CthirdA}[\pageref{tab:CthirdA}] and
+\ref{tab:CthirdB}[\pageref{tab:CthirdB}].
+%
+Table~\ref{tab:Cfourth}[\pageref{tab:Cfourth}] has two subtables
+\ref{tab:CfourthA}[\pageref{tab:CfourthA}] and
+\ref{tab:CfourthB}[\pageref{tab:CfourthB}].
+%
+Table~\ref{tab:Cfifth}[\pageref{tab:Cfifth}] has two subtables
+\ref{tab:CfifthA}[\pageref{tab:CfifthA}] and
+\ref{tab:CfifthB}[\pageref{tab:CfifthB}].
+%
+Table~\ref{tab:Csixth}[\pageref{tab:Csixth}] has two subtables
+\ref{tab:CsixthA}[\pageref{tab:CsixthA}] and
+\ref{tab:CsixthB}[\pageref{tab:CsixthB}].
+
+\begin{table*}%
+ \begin{center}%
+ \caption{First table.}%
+ \label{tab:Cfirst}%
+ \subfloat[One subone.\label{tab:CfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{tab:CfirstB}]{\figbox{One subtwo}}\\
+%
+ \caption{Second table.}%
+ \label{tab:Csecond}%
+ \subfloat[Two subone.\label{tab:CsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{tab:CsecondB}]{\figbox{Two subtwo}}\\
+%
+ \caption{Third table.}%
+ \label{tab:Cthird}%
+ \subfloat[Three subone.\label{tab:CthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{tab:CthirdB}]{\figbox{Three subtwo}}\\
+ \end{center}%
+\end{table*}
+
+\begin{table*}%
+ \begin{center}%
+ \caption{Fourth table.}%
+ \label{tab:Cfourth}%
+ \subfloat[Four subone.\label{tab:CfourthA}]{\figbox{Four subone}}
+ \qquad
+ \subfloat[Four subtwo.\label{tab:CfourthB}]{\figbox{Four subtwo}}\\
+%
+ \caption{Fifth table.}%
+ \label{tab:Cfifth}%
+ \subfloat[Five subone.\label{tab:CfifthA}]{\figbox{Five subone}}
+ \qquad
+ \subfloat[Five subtwo.\label{tab:CfifthB}]{\figbox{Five subtwo}}\\
+%
+ \caption{Sixth table.}%
+ \label{tab:Csixth}%
+ \subfloat[Six subone.\label{tab:CsixthA}]{\figbox{Six subone}}
+ \qquad
+ \subfloat[Six subtwo.\label{tab:CsixthB}]{\figbox{Six subtwo}}\\
+ \end{center}%
+\end{table*}
+
+\subsection{Mixed figures and tables with only the {\bf table} caption
+ at top}
+\captionsetup[figure]{position=bottom}
+%\setcounter{subfigure}{0}
+\captionsetup[subfigure]{position=bottom}
+\captionsetup[table]{position=top}
+%\setcounter{subtable}{0}
+\captionsetup[subtable]{position=bottom}
+
+Figure~\ref{fig:Dfirst}[\pageref{fig:Dfirst}] has two subfigures
+\ref{fig:DfirstA}[\pageref{fig:DfirstA}] and
+\ref{fig:DfirstB}[\pageref{fig:DfirstB}].
+%
+Table~\ref{tab:Dfirst}[\pageref{tab:Dfirst}] has two subtables
+\ref{tab:DfirstA}[\pageref{tab:DfirstA}] and
+\ref{tab:DfirstB}[\pageref{tab:DfirstB}].
+%
+Figure~\ref{fig:Dsecond}[\pageref{fig:Dsecond}] has two subfigures
+\ref{fig:DsecondA}[\pageref{fig:DsecondA}] and
+\ref{fig:DsecondB}[\pageref{fig:DsecondB}].
+%
+Figure~\ref{fig:Dthird}[\pageref{fig:Dthird}] has two subfigures
+\ref{fig:DthirdA}[\pageref{fig:DthirdA}] and
+\ref{fig:DthirdB}[\pageref{fig:DthirdB}].
+%
+Table~\ref{tab:Dsecond}[\pageref{tab:Dsecond}] has two subtables
+\ref{tab:DsecondA}[\pageref{tab:DsecondA}] and
+\ref{tab:DsecondB}[\pageref{tab:DsecondB}].
+%
+Table~\ref{tab:Dthird}[\pageref{tab:Dthird}] has two subtables
+\ref{tab:DthirdA}[\pageref{tab:DthirdA}] and
+\ref{tab:DthirdB}[\pageref{tab:DthirdB}].
+
+\begin{figure*}%
+ \begin{center}%
+ \subfloat[One subone.\label{fig:DfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{fig:DfirstB}]{\figbox{One subtwo}}\\[-10pt]
+ \caption{First figure.}%
+ \label{fig:Dfirst}%
+%
+ \setcaptype{table}%
+ \caption{First table.}%
+ \label{tab:Dfirst}%
+ \subfloat[One subone.\label{tab:DfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{tab:DfirstB}]{\figbox{One subtwo}}\\
+ \listsubcaptions
+%
+ \setcaptype{figure}%
+ \subfloat[Two subone.\label{fig:DsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{fig:DsecondB}]{\figbox{Two subtwo}}\\[-10pt]
+ \caption{Second figure.}%
+ \label{fig:Dsecond}%
+ \end{center}%
+\end{figure*}
+
+\begin{table*}%
+ \begin{center}%
+ \caption{Second table.}%
+ \label{tab:Dsecond}%
+ \subfloat[Two subone.\label{tab:DsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{tab:DsecondB}]{\figbox{Two subtwo}}\\
+ \listsubcaptions
+%
+ \setcaptype{figure}%
+ \subfloat[Three subone.\label{fig:DthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{fig:DthirdB}]{\figbox{Three subtwo}}\\[-10pt]
+ \caption{Third figure.}%
+ \label{fig:Dthird}%
+%
+ \setcaptype{table}%
+ \caption{Third table.}%
+ \label{tab:Dthird}%
+ \subfloat[Three subone.\label{tab:DthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{tab:DthirdB}]{\figbox{Three subtwo}}\\
+ \end{center}%
+\end{table*}
+
+
+\subsection{Mixed figures and tables with {\bf table} and {\bf subtable}
+ captions at top}
+\captionsetup[figure]{position=bottom}
+%\setcounter{subfigure}{0}
+\captionsetup[subfigure]{position=bottom}
+\captionsetup[table]{position=top}
+%\setcounter{subtable}{0}
+\captionsetup[subtable]{position=top}
+
+Figure~\ref{fig:Efirst}[\pageref{fig:Efirst}] has two subfigures
+\ref{fig:EfirstA}[\pageref{fig:EfirstA}] and
+\ref{fig:EfirstB}[\pageref{fig:EfirstB}].
+%
+Table~\ref{tab:Efirst}[\pageref{tab:Efirst}] has two subtables
+\ref{tab:EfirstA}[\pageref{tab:EfirstA}] and
+\ref{tab:EfirstB}[\pageref{tab:EfirstB}].
+%
+Figure~\ref{fig:Esecond}[\pageref{fig:Esecond}] has two subfigures
+\ref{fig:EsecondA}[\pageref{fig:EsecondA}] and
+\ref{fig:EsecondB}[\pageref{fig:EsecondB}].
+%
+Figure~\ref{fig:Ethird}[\pageref{fig:Ethird}] has two subfigures
+\ref{fig:EthirdA}[\pageref{fig:EthirdA}] and
+\ref{fig:EthirdB}[\pageref{fig:EthirdB}].
+%
+Table~\ref{tab:Esecond}[\pageref{tab:Esecond}] has two subtables
+\ref{tab:EsecondA}[\pageref{tab:EsecondA}] and
+\ref{tab:EsecondB}[\pageref{tab:EsecondB}].
+%
+Table~\ref{tab:Ethird}[\pageref{tab:Ethird}] has two subtables
+\ref{tab:EthirdA}[\pageref{tab:EthirdA}] and
+\ref{tab:EthirdB}[\pageref{tab:EthirdB}].
+%
+
+\begin{figure*}%
+ \begin{center}%
+ \subfloat[One subone.\label{fig:EfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{fig:EfirstB}]{\figbox{One subtwo}}\\[-10pt]
+ \caption{First figure.}%
+ \label{fig:Efirst}%
+%
+ \setcaptype{table}%
+ \caption{First table.}%
+ \label{tab:Efirst}%
+ \subfloat[One subone.\label{tab:EfirstA}]{\figbox{One subone}}
+ \qquad
+ \subfloat[One subtwo.\label{tab:EfirstB}]{\figbox{One subtwo}}\\
+ \listsubcaptions
+%
+ \setcaptype{figure}%
+ \subfloat[Two subone.\label{fig:EsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{fig:EsecondB}]{\figbox{Two subtwo}}\\[-10pt]
+ \caption{Second figure.}%
+ \label{fig:Esecond}%
+ \end{center}%
+\end{figure*}
+
+\begin{table*}%
+ \begin{center}%
+ \caption{Second table.}%
+ \label{tab:Esecond}%
+ \subfloat[Two subone.\label{tab:EsecondA}]{\figbox{Two subone}}
+ \qquad
+ \subfloat[Two subtwo.\label{tab:EsecondB}]{\figbox{Two subtwo}}\\
+ \listsubcaptions
+%
+ \setcaptype{figure}%
+ \subfloat[Three subone.\label{fig:EthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{fig:EthirdB}]{\figbox{Three subtwo}}\\[-10pt]
+ \caption{Third figure.}%
+ \label{fig:Ethird}%
+%
+ \setcaptype{table}%
+ \caption{Third table.}%
+ \label{tab:Ethird}%
+ \subfloat[Three subone.\label{tab:EthirdA}]{\figbox{Three subone}}
+ \qquad
+ \subfloat[Three subtwo.\label{tab:EthirdB}]{\figbox{Three subtwo}}\\
+ \end{center}%
+\end{table*}
+
+\end{document}
diff --git a/macros/latex/contrib/subfig/test2.tex b/macros/latex/contrib/subfig/test2.tex
new file mode 100644
index 0000000000..d0aec15179
--- /dev/null
+++ b/macros/latex/contrib/subfig/test2.tex
@@ -0,0 +1,199 @@
+%% test2.tex
+%%
+%% This is file `test2.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright © 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+
+\usepackage{fullpage}
+\usepackage[format=hang]{subfig}
+\captionsetup[subfloat]{farskip=7pt,nearskip=3pt}
+
+\makeatletter
+ \def\mpt{\@minipagetrue}
+ \def\mpf{\@minipagefalse}
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+\makeatother
+
+\fboxsep=-\fboxrule
+\newcommand{\figbox}[1]{%
+ \fbox{%
+ \vbox to 1in{%
+ \vfil
+ \hbox to 2in{%
+ \hfil
+ #1%
+ \hfil}%
+ \vfil}}}
+\def\hrl{\hbox to 0pt{\hss\vrule height0pt depth.2pt width9.5pt}}
+\def\hrr{\hbox to 0pt{\vrule height0pt depth.2pt width9.5pt\hss}}
+
+\begin{document}
+
+\title{Subfig Package Test Program Two}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{%
+This test checks three things:
+\begin{enumerate}
+ \item subfloat references;
+ \item subfloat options; and,
+ \item extra blank space in the caption layout.
+\end{enumerate}}
+\maketitle
+\clearpage
+
+Figures wrapped to show any extra spaces introduced in processing the
+sub-floats.
+
+\begin{figure}%
+ \centering
+ \fbox{%
+ \fbox{\subfloat[Subfigure One.\label{fig:A1}]{%
+ \figbox{SUBFIG ONE}}}%
+ \hspace{10pt}%
+ \fbox{\subfloat[Subfigure Two.\label{fig:A2}]{%
+ \figbox{SUBFIG TWO}}}}
+ \caption{Two side-by-side figures.}%
+ \label{fig:A}%
+\end{figure}
+
+\begin{figure}%
+ \begin{center}%
+ \fbox{\hbox to 4.13837in{\hss\vbox{%
+ \fbox{\mpt\subfloat[Subfigure Three.\label{fig:B1}]{%
+ \figbox{SUBFIG THREE}}}%
+ \hspace{10pt}%
+ \fbox{\mpt\subfloat[Subfigure Four.\label{fig:B2}]{%
+ \figbox{SUBFIG FOUR}}}\\[-1.5pt]
+ \fbox{\subfloat[Subfigure Five.\label{fig:B3}]{%
+ \figbox{SUBFIG FIVE}}}%
+ \hspace{10pt}%
+ \fbox{\subfloat[Subfigure Six.\label{fig:B4}]{%
+ \figbox{SUBFIG SIX}}}}\hss}}%
+ \end{center}
+ \caption{Four figures with specified suppression of extra padding.}%
+ \label{fig:B}%
+\end{figure}
+
+\begin{figure}
+ \centering
+ \fbox{%
+ \begin{minipage}{4.13837in}%
+%\mpf
+ \subfloat[Subfigure Seven.\label{fig:C1}]{%
+ \figbox{SUBFIG SEVEN}}
+ \hspace{10pt}%
+ \subfloat[Subfigure Eight.\label{fig:C2}]{%
+ \figbox{SUBFIG EIGHT}}\\
+ \subfloat[Subfigure Nine.\label{fig:C3}]{%
+ \figbox{SUBFIG NINE}}
+ \hspace{10pt}%
+ \subfloat[Subfigure Ten.\label{fig:C4}]{%
+ \figbox{SUBFIG TEN}}
+ \end{minipage}}
+ \caption{Four figures with auto fitting in a minipage.}%
+ \label{fig:C}%
+\end{figure}
+
+\begin{figure}
+ \centering
+%
+ \subfloat[First caption.]{\fbox{Under figure/text}}\quad
+ \subfloat[Longer second caption.]{\fbox{Under figure/text}}\\
+%
+ \subfloat[Third caption.]{\figbox{Under figure/text}}\quad
+ \subfloat[Longer fourth caption. longer fourth caption.
+ longer fourth caption.]{\figbox{Under figure/text}}
+ \caption{Four figures testing caption fitting.}%
+\end{figure}
+
+
+\newpage
+
+\begin{table}
+ \centering
+%
+ \caption{Test for TABTOPCAP with caption.}%
+%
+ \leavevmode\vtop{\vbox{\hbox to .5in{\hfil TEST\hrr}}\vbox{\hbox to .5in{\hfil Box}}}\quad
+ \subfloat[First caption.]{\figbox{Table A with caption}}\quad
+ \subfloat[Second caption.]{\figbox{Table B with caption}}\quad
+ \vtop{\vbox{\hbox to .5in{\hrl TEST\hfil}}\vbox{\hbox to .5in{Box\hfil}}}\\
+%
+ \leavevmode\vtop{\vbox{\hbox to .5in{\hfil TEST\hrr}}\vbox{\hbox to .5in{\hfil Box}}}\quad
+ \subfloat[Third caption.]{\figbox{Table C with caption}}\quad
+ \subfloat[Longer fourth caption. longer fourth caption.
+ longer fourth caption.]{\figbox{Table D with caption}}\quad
+ \vtop{\vbox{\hbox to .5in{\hrl TEST\hfil}}\vbox{\hbox to .5in{Box\hfil}}}
+%
+\end{table}
+
+\begin{table}
+ \centering
+%
+ \caption{Test for TABTOPCAP without caption.}%
+%
+ \leavevmode\vtop{\vbox{\hbox to .5in{\hfil TEST\hrr}}\vbox{\hbox to .5in{\hfil Box}}}\quad
+ \subfloat{\figbox{Table A with/out caption}}\quad
+ \subfloat[Second caption.]{\figbox{Table B with caption}}\quad
+ \vtop{\vbox{\hbox to .5in{\hrl TEST\hfil}}\vbox{\hbox to .5in{Box\hfil}}}\\
+%
+
+ \leavevmode\vtop{\vbox{\hbox to .5in{\hfil TEST\hrr}}\vbox{\hbox to .5in{\hfil Box}}}\quad
+ \subfloat{\figbox{Table C with/out caption}}\quad
+ \subfloat[Longer fourth caption. longer fourth caption.
+ longer fourth caption.]{\figbox{Table D with caption}}\quad
+ \vtop{\vbox{\hbox to .5in{\hrl TEST\hfil}}\vbox{\hbox to .5in{Box\hfil}}}
+%
+\end{table}
+
+
+
+
+\end{document}
diff --git a/macros/latex/contrib/subfig/test3.tex b/macros/latex/contrib/subfig/test3.tex
new file mode 100644
index 0000000000..0b548d0533
--- /dev/null
+++ b/macros/latex/contrib/subfig/test3.tex
@@ -0,0 +1,206 @@
+%% test3.tex
+%%
+%% This is file `test3.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright © 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+
+\usepackage{fullpage}
+\usepackage[config=altsf]{subfig}
+\usepackage{booktabs}
+
+\newdimen\testtemp
+\newcommand{\ru}[1]{%
+ \testtemp #1%
+ \advance\testtemp .5pt%
+ \divide\testtemp 2%
+ \hbox to \testtemp{\leaders\hbox to 1mm{%
+ \vrule height1mm depth0pt width.25pt\hfil}\hfil}%
+ \hbox to 0pt{\hss\vrule height3mm depth0pt width.25pt\hss}%
+ \hbox to \testtemp{\leaders\hbox to 1mm{%
+ \hfil\vrule height1mm depth0pt width.25pt}\hfil}}
+
+\makeatletter
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+\makeatother
+
+\def\textfraction{.1}
+\fboxsep=-\fboxrule
+\newcommand{\figbox}[1]{%
+ \fbox{%
+ \vbox to 1in{%
+ \vfil
+ \hbox to 2in{%
+ \parbox{2in}{%
+ \centering
+ #1}}%
+ \vfil
+ \vbox to 0pt{%
+ \vss
+ \hbox to 2in{%
+ \hfil
+ \ru{1.1in}%
+ \hfil}}}}}
+
+\begin{document}
+
+\title{Subfig Package Test Program Three}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{%
+This test checks three things:
+\begin{enumerate}
+ \item spacing is reduced at the start of a minipage or between
+ horizontal layers of subfloats;
+ \item extra blank spaces; and,
+ \item together with initialization options, that the subfig.cfg
+ file provides approximate compatibility with the old
+ {\bf subfigure} package.
+\end{enumerate}}
+\maketitle
+\clearpage
+
+\setcounter{lofdepth}{2}
+\listoffigures
+\newpage
+
+\section{Reference Test}
+
+\begin{figure}%
+ \centering
+ \subfigure{%
+ \label{fig:A}%
+ \figbox{SUBFIGURE ONE:\\
+ (no opt)}}
+ \quad
+ \subfigure[]{%
+ \label{fig:B}%
+ \figbox{SUBFIGURE TWO:\\
+ (empty opt)}}\\
+%
+ \subfigure[Subfigure Three.]{%
+ \label{fig:C}%
+ \figbox{SUBFIGURE THREE:\\
+ (opt)}}
+ \quad
+ \subfigure[][Subfigure Four.]{%
+ \label{fig:D}%
+ \figbox{SUBFIGURE FOUR:\\
+ (empty opt and opt)}}
+ \quad
+ \subfigure[][]{%
+ \label{fig:E}%
+ \figbox{SUBFIGURE FIVE:\\
+ (both empty opt)}}\\
+%
+ \subfigure[The Sixth Subfigure.][Subfigure Six.]{%
+ \label{fig:F}%
+ \figbox{SUBFIGURE SIX:\\
+ (both opt)}}
+ \quad
+ \subfigure[The Seventh Subfigure][]{%
+ \label{fig:G}%
+ \figbox{SUBFIGURE SEVEN:\\
+ (opt and empty opt)}}
+%
+ \caption{Optional argument test.}%
+ \label{fig:main}%
+\end{figure}
+
+The figure~\ref{fig:main} on page~\pageref{fig:main} is composed
+of the seven subfigures~\subref{fig:A} (aka: \ref{fig:A}),
+\subref{fig:B} (aka: \ref{fig:B}), \subref{fig:C} (aka: \ref{fig:C}),
+\subref{fig:D} (aka: \ref{fig:D}), \subref{fig:E} (aka: \ref{fig:E}),
+\subref{fig:F} (aka: \ref{fig:F}), and \subref{fig:G} (aka:
+\ref{fig:G}).
+
+Note that the captions are correctly handled on the List-of-Figures
+page and under the subfigures according to the form of the subfigure
+command (see Table~\ref{tab:calling}).
+
+\begin{table}[b]
+ \centering
+ \caption{{\tt ${\tt\backslash}$subfigure} calling arguments.}
+ \label{tab:calling}
+ \begin{tabular}{llc} \\ \toprule
+ {\bf Subfigure Command}
+ & {\bf LoF/LoT}
+ & \multicolumn{1}{l}{\bf Subfigure Caption}
+ \\ \midrule
+ \verb/\subfigure/\{\dots fig\dots\}
+ & & \\
+ \verb/\subfigure/[~]\{\dots fig\dots\}
+ & (b)\ \ . . . . . . . . . .
+ & (b) \\
+ \verb/\subfigure/[Subcaption.]\{\dots fig\dots\}
+ & (c) Subcaption. . . .
+ & (c) Subcaption. \\
+ \verb/\subfigure/[\space][Subcaption.]\{\dots fig\dots\}
+ & & (d) Subcaption. \\
+ \verb/\subfigure/[\space][\space]\{\dots fig\dots\}
+ & & (e) \\
+ \verb/\subfigure/[List\_entry.][Subcaption.]\{\dots fig\dots\}
+ & (f) List\_entry. . . .
+ & (f) Subcaption. \\
+ \verb/\subfigure/[List\_entry.][~]\{\dots fig\dots\}
+ & (g) List\_entry. . . .
+ & (g) \\ \bottomrule
+ \end{tabular}
+\end{table}
+
+\enlargethispage{12pt}
+\section{Centering Test}
+
+Note that figures~\ref{fig:B}, \ref{fig:E} and \ref{fig:G} are centered.
+This means that \verb|\subfigcapskip| has been set to zero and is not
+offsetting the simple label to the left. Also the remaining captioned
+subfigures (figures~\ref{fig:C}, \ref{fig:D}, and \ref{fig:F}) should
+have centered labels.
+
+
+\end{document} \ No newline at end of file
diff --git a/macros/latex/contrib/subfig/test4.tex b/macros/latex/contrib/subfig/test4.tex
new file mode 100644
index 0000000000..d0181194a3
--- /dev/null
+++ b/macros/latex/contrib/subfig/test4.tex
@@ -0,0 +1,144 @@
+%% test4.tex
+%%
+%% This is file `test4.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright © 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+\usepackage[config=altsf]{subfig}
+% option for use with pdflatex
+%\usepackage{hyperref}
+%\usepackage[draft]{hyperref}
+\usepackage[pdftex]{hyperref}
+\usepackage{makeidx}
+\captionsetup[subfigure]{subrefformat=parens}
+
+% reset the index environment to print the index section in the TOC.
+\makeatletter
+\renewenvironment{theindex}{%
+ \if@twocolumn
+ \@restonecolfalse
+ \else
+ \@restonecoltrue
+ \fi
+ \columnseprule \z@
+ \columnsep 35\p@
+ \twocolumn[\section{\indexname}]%
+ \@mkboth{\MakeUppercase\indexname}{\MakeUppercase\indexname}%
+ \thispagestyle{plain}%
+ \parindent\z@
+ \parskip\z@ \@plus .3\p@\relax
+ \let\item\@idxitem
+ }{%
+ \if@restonecol
+ \onecolumn
+ \else
+ \clearpage
+ \fi
+ }
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+\makeatother
+
+\makeindex
+
+\begin{document}
+
+\title{Subfig Package Test Program Four}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{This test checks the interaction with the {\bf hyperref}
+ package and the use of the {\bf altsf.cfg} configuration file.}
+\maketitle
+\clearpage
+
+\tableofcontents
+\clearpage
+\setcounter{lofdepth}{2}
+\listoffigures
+\clearpage
+
+\section{Test of subfigure}
+
+There is a \index{test}test \index{figure}figure \ref{fig:test} with
+\index{subfigure}subfigures \ref{fig:testsub1} and \ref{fig:testsub2}.
+
+Also referenced with \ref{fig:test}\subref{fig:testsub1} and
+\ref{fig:test}\subref{fig:testsub2}.
+
+One other way to reference these is with the starred subref command.
+For example, with \subref*{fig:testsub1} and \subref*{fig:testsub2}.
+
+The chief purpose of this test is to check and verify the interaction
+between the subfigure package and the hyperref package.
+
+
+\begin{figure}[!ht]
+ \centering
+ \unitlength .5cm
+ \subfigure[SubFig1]
+ { \label(SubFig1){fig:testsub1}
+ \begin{picture}(10,10)
+ \put(0,0){\line(1,1){10}}
+ \end{picture}
+ }
+ \qquad
+ \subfigure[SubFig2]
+ { \label{fig:testsub2}
+ \begin{picture}(10,10)
+ \put(0,10){\line(1,-1){10}}
+ \end{picture}
+ }
+ \caption{Testfigures}
+ \label{fig:test}
+\end{figure}
+
+\clearpage
+
+\printindex
+
+\end{document}
+
diff --git a/macros/latex/contrib/subfig/test5.tex b/macros/latex/contrib/subfig/test5.tex
new file mode 100644
index 0000000000..509154246c
--- /dev/null
+++ b/macros/latex/contrib/subfig/test5.tex
@@ -0,0 +1,333 @@
+%% test5.tex
+%%
+%% This is file `test5.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright © 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+
+%\usepackage{captcont}
+%\usepackage{caption}
+%\usepackage{ccaption}
+
+\usepackage{subfig}
+\captionsetup[table]{position=top}
+\captionsetup[subtable]{position=top}
+
+%\usepackage{captcont}
+%\usepackage{caption}
+%\usepackage{ccaption}
+
+\makeatletter
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+\makeatother
+
+\newcommand{\figbox}[2][.8in]{%
+ \fbox{%
+ \vbox to .6in{%
+ \vfil
+ \hbox to #1{%
+ \hfil
+ #2%
+ \hfil}%
+ \vfil}}}
+
+\begin{document}
+
+\title{Subfig Package Test Program Five}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{%
+This test checks two things:
+\begin{enumerate}
+ \item the use of the references within a subfloat; and,
+ \item continued floats and subfloats.
+\end{enumerate}}
+\maketitle
+\clearpage
+
+\setcounter{lofdepth}{2}
+\listoffigures
+\clearpage
+
+\setcounter{lotdepth}{2}
+\listoftables
+\clearpage
+
+In this test, we verify the ability of the subfigure package to
+handle requests for continued figures and tables (with full support
+of the List-of pages and subfigures in continued figures and
+subtables in continued tables).
+
+In addition, by varying the various included packages at the top of
+the source, one can check the interaction of the subfigure package
+along with other common packages, such as the \texttt{captcont},
+\texttt{caption}, and \texttt{ccaption} packages.
+
+First we test the regular figures. The first figure is
+Figure~\ref{fig:First} on page \pageref{fig:First}. The second is
+Figure~\ref{fig:SecondA} and appears on pages~\pageref{fig:SecondA},
+\pageref{fig:SecondB}, \pageref{fig:SecondC}, and \pageref{fig:SecondD}.
+
+\begin{figure}%
+ \centering
+ \figbox[4in]{Regular figure \ref{fig:First}}%
+ \caption{Regular figure 1}%
+ \label{fig:First}%
+\end{figure}
+
+\begin{figure}%
+ \centering
+ \figbox[4in]{Continued figure \ref{fig:SecondA}A}%
+ \caption{Continued figure \ref{fig:SecondA}}%
+ \label{fig:SecondA}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \figbox[4in]{Continued figure \ref{fig:SecondB}B}%
+ \caption[]{Continued figure \ref{fig:SecondB}}%
+ \label{fig:SecondB}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \figbox[4in]{Continued figure \ref{fig:SecondC}C}%
+ \caption[]{Continued figure \ref{fig:SecondC}}%
+ \label{fig:SecondC}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \figbox[4in]{Continued figure \ref{fig:SecondD}D}%
+ \caption[]{Continued figure \ref{fig:SecondD}}%
+ \label{fig:SecondD}%
+\end{figure}
+
+Then we test the regular tables. The first table is
+Table~\ref{tab:First} on page \pageref{tab:First}. The second is
+Table~\ref{tab:SecondA} and appears on pages~\pageref{tab:SecondA},
+\pageref{tab:SecondB}, \pageref{tab:SecondC}, and \pageref{tab:SecondD}.
+
+\begin{table}%
+ \centering
+ \caption{Regular table 1}%
+ \label{tab:First}%
+ \figbox[4in]{Regular table 1}%
+\end{table}
+
+\begin{table}%
+ \centering
+ \caption{Continued table \ref{tab:SecondA}}%
+ \label{tab:SecondA}%
+ \figbox[4in]{Continued table \ref{tab:SecondA}A}%
+\end{table}
+
+\begin{table}%
+ \ContinuedFloat
+ \centering
+ \caption[]{Continued table \ref{tab:SecondB}}%
+ \label{tab:SecondB}%
+ \figbox[4in]{Continued table \ref{tab:SecondB}B}%
+\end{table}
+
+\begin{table}%
+ \ContinuedFloat
+ \centering
+ \caption[]{Continued table \ref{tab:SecondC}}%
+ \label{tab:SecondC}%
+ \figbox[4in]{Continued table \ref{tab:SecondC}C}%
+\end{table}
+
+\begin{table}%
+ \ContinuedFloat
+ \centering
+ \caption[]{Continued table \ref{tab:SecondD}}%
+ \label{tab:SecondD}%
+ \figbox[4in]{Continued table \ref{tab:SecondD}D}%
+\end{table}
+
+Next we look at the subfloats in a simple figure. They are
+Figures~\ref{fig:sub1A}, \ref{fig:sub1B}, \ref{fig:sub1C}, and
+\ref{fig:sub1D}, which are part of Figure~\ref{fig:sub1} on
+page~\pageref{fig:sub1}.
+
+The continued subfloats are contained in three parts. The first is
+Figure~\ref{fig:sub21} on page~\pageref{fig:sub21} which contains the
+Subfigures~\ref{fig:sub2A}, \ref{fig:sub2B}, \ref{fig:sub2C}, and
+\ref{fig:sub2D}.
+The second is
+Figure~\ref{fig:sub22} on page~\pageref{fig:sub22} which contains the
+Subfigures~\ref{fig:sub2E}, \ref{fig:sub2F}, \ref{fig:sub2G}, and
+\ref{fig:sub2H}.
+The third is
+Figure~\ref{fig:sub23} on page~\pageref{fig:sub23} which contains the
+Subfigures~\ref{fig:sub2I}, \ref{fig:sub2J}, \ref{fig:sub2K}, and
+\ref{fig:sub2L}.
+
+\begin{figure}%
+ \centering
+ \subfloat[\label{fig:sub1A}]{\figbox{Subfigure \ref{fig:sub1A}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub1B}]{\figbox{Subfigure \ref{fig:sub1B}}} \\
+ \subfloat[\label{fig:sub1C}]{\figbox{Subfigure \ref{fig:sub1C}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub1D}]{\figbox{Subfigure \ref{fig:sub1D}}}
+ \caption{This is a simple figure.}%
+ \label{fig:sub1}%
+\end{figure}
+
+\begin{figure}%
+ \centering
+ \subfloat[\label{fig:sub2A}]{\figbox{Subfigure \ref{fig:sub2A}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2B}]{\figbox{Subfigure \ref{fig:sub2B}}} \\
+ \subfloat[\label{fig:sub2C}]{\figbox{Subfigure \ref{fig:sub2C}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2D}]{\figbox{Subfigure \ref{fig:sub2D}}}
+ \caption{This is a continued figure.}%
+ \label{fig:sub21}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \subfloat[\label{fig:sub2E}]{\figbox{Subfigure \ref{fig:sub2E}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2F}]{\figbox{Subfigure \ref{fig:sub2F}}} \\
+ \subfloat[\label{fig:sub2G}]{\figbox{Subfigure \ref{fig:sub2G}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2H}]{\figbox{Subfigure \ref{fig:sub2H}}}
+ \caption[]{This is a continued figure (cont.)}%
+ \label{fig:sub22}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \subfloat[\label{fig:sub2I}]{\figbox{Subfigure \ref{fig:sub2I}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2J}]{\figbox{Subfigure \ref{fig:sub2J}}} \\
+ \subfloat[\label{fig:sub2K}]{\figbox{Subfigure \ref{fig:sub2K}}}
+ \hspace{10pt}%
+ \subfloat[\label{fig:sub2L}]{\figbox{Subfigure \ref{fig:sub2L}}}
+ \caption[]{This is a continued figure (cont.)}%
+ \label{fig:sub23}%
+\end{figure}
+
+Next we look at the subfloats in a simple table environment. They are
+Tables~\ref{tab:sub1A}, \ref{tab:sub1B}, \ref{tab:sub1C}, and
+\ref{tab:sub1D}, which are part of Table~\ref{tab:sub1} on
+page~\pageref{tab:sub1}.
+
+The continued subfloats are contained in three parts. The first is
+Table~\ref{tab:sub21} on page~\pageref{tab:sub21} which contains the
+Subtables~\ref{tab:sub2A}, \ref{tab:sub2B}, \ref{tab:sub2C}, and
+\ref{tab:sub2D}.
+The second is
+Table~\ref{tab:sub22} on page~\pageref{tab:sub22} which contains the
+Subtables~\ref{tab:sub2E}, \ref{tab:sub2F}, \ref{tab:sub2G}, and
+\ref{tab:sub2H}.
+The third is
+Table~\ref{tab:sub23} on page~\pageref{tab:sub23} which contains the
+Subtables~\ref{tab:sub2I}, \ref{tab:sub2J}, \ref{tab:sub2K}, and
+\ref{tab:sub2L}.
+
+\begin{table}%
+ \centering
+ \caption{This is a simple table.}%
+ \label{tab:sub1}%
+ \subfloat[\label{tab:sub1A}]{\figbox{Subtable \ref{tab:sub1A}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub1B}]{\figbox{Subtable \ref{tab:sub1B}}} \\
+ \subfloat[\label{tab:sub1C}]{\figbox{Subtable \ref{tab:sub1C}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub1D}]{\figbox{Subtable \ref{tab:sub1D}}}
+\end{table}
+
+\begin{table}%
+ \centering
+ \caption{This is a continued table.}%
+ \label{tab:sub21}%
+ \subfloat[\label{tab:sub2A}]{\figbox{Subtable \ref{tab:sub2A}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2B}]{\figbox{Subtable \ref{tab:sub2B}}} \\
+ \subfloat[\label{tab:sub2C}]{\figbox{Subtable \ref{tab:sub2C}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2D}]{\figbox{Subtable \ref{tab:sub2D}}}
+\end{table}
+
+\begin{table}%
+ \ContinuedFloat
+ \centering
+ \caption[]{This is a continued table (cont.)}%
+ \label{tab:sub22}%
+ \subfloat[\label{tab:sub2E}]{\figbox{Subtable \ref{tab:sub2E}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2F}]{\figbox{Subtable \ref{tab:sub2F}}} \\
+ \subfloat[\label{tab:sub2G}]{\figbox{Subtable \ref{tab:sub2G}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2H}]{\figbox{Subtable \ref{tab:sub2H}}}
+\end{table}
+
+\begin{table}%
+ \ContinuedFloat
+ \centering
+ \caption[]{This is a continued table (cont.)}%
+ \label{tab:sub23}%
+ \subfloat[\label{tab:sub2I}]{\figbox{Subtable \ref{tab:sub2I}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2J}]{\figbox{Subtable \ref{tab:sub2J}}} \\
+ \subfloat[\label{tab:sub2K}]{\figbox{Subtable \ref{tab:sub2K}}}
+ \hspace{10pt}%
+ \subfloat[\label{tab:sub2L}]{\figbox{Subtable \ref{tab:sub2L}}}
+\end{table}
+
+\end{document}
diff --git a/macros/latex/contrib/subfig/test6.tex b/macros/latex/contrib/subfig/test6.tex
new file mode 100644
index 0000000000..7a3d7b2105
--- /dev/null
+++ b/macros/latex/contrib/subfig/test6.tex
@@ -0,0 +1,542 @@
+%% test6.tex
+%%
+%% This is file `test6.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright © 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+
+\usepackage{subfig}
+\captionsetup[figure]{singlelinecheck=false,format=hang,
+ justification=raggedright,indention=38.5pt}
+\captionsetup[subfloat]{singlelinecheck=true,format=default,
+ justification=justified,indention=0pt}
+
+\def\sc{Short caption.}
+\def\lc{Non fuit causa cur postularet. Qui hoc intellegi
+ potest? Naevio neque ex societatis ratione neque
+ privatim quicquam debuit Quinctius.\par
+ Quis huic rei testis est? Idem qui acerrimus
+ adversarius; in hanc rem te, te inquam, testem,
+ Naevi, citabo.\par
+ Annum et eo diutius post mortem C. Quincti fuit
+ in Gallia tecum simul Quinctius.}
+\makeatletter
+ \renewcommand\abstract[1]{%
+ \def\@abstract{%
+ \centerline{{\large\bf Abstract}}
+ \noindent
+ #1}}
+ \renewcommand\@maketitle{%
+ \newpage
+ \null\vfil
+ \vskip 60\p@
+ \begin{center}%
+ {\LARGE \@title \par}%
+ \vskip 3em%
+ {\large
+ \lineskip .75em%
+ \begin{tabular}[t]{c}%
+ \@author
+ \end{tabular}\par}%
+ \vskip 1.5em%
+ {\large \@date \par}%
+ \end{center}%
+ \vskip 2.5em%
+ \@abstract
+ \vfil\null}%
+ \newcommand{\figshape}[3][\@empty]{%
+ \typeout{#2}%
+ \begin{figure}%
+ \centering
+ \captionsetup[subfigure]{#3}%
+ \subfloat[][\sc]{\b}\g\subfloat[][\lc\label{#2b}]{\b}
+ \ifx\@empty#1\relax
+ \caption{Options [\texttt{#3}].}%
+ \else
+ \caption[Options [\texttt{#1}{]}]{Options [\texttt{#3}].}%
+ \fi
+ \label{#2}%
+ \end{figure}}
+ \newcommand{\figfont}[3]{%
+ \captionsetup[subfigure]{#2=#3}%
+ \subfloat[{Option [\texttt{#2=#3}]}]%
+ [\sc]{\label{#1}\B{#2=#3}}}
+ \newcommand{\figfontlist}[3]{%
+ \captionsetup[subfigure]{#2={#3}}%
+ \subfloat[{Option [\texttt{#2=\{#3\}}]}]%
+ [\sc]{\label{#1}\B{#2=\{#3\}}}}
+\makeatother
+
+\def\b{\fboxsep=-\fboxrule
+ \fbox{\hbox to 2.0in{\vbox to 2mm{\vfil\null}\hfil}}}
+\def\B#1{\fboxsep=-\fboxrule
+ \fbox{\hbox to 2.0in{\vbox to 6mm{\vfil\hbox to 2.0in{%
+ \hfil[\texttt{#1}]\hfil}\vfil}\hfil}}}
+\def\g{\hspace{.5in}}
+
+\begin{document}
+
+\title{Subfig Package Test Program Six}
+\author{Steven Douglas Cochran\\
+ Digital Mapping Laboratory\\
+ School of Computer Science\\
+ Carnegie-Mellon University\\
+ 5000 Forbes Avenue\\
+ Pittsburgh, PA 15213-3890\\
+ USA}
+\date{21 December 2003}
+\abstract{This test checks the various caption formatting options.}
+\maketitle
+\clearpage
+
+\tableofcontents
+\clearpage
+
+\listoffigures
+\clearpage
+
+\makeatletter
+ \global\@topnum\z@ % Prevents figures from going at top of page.
+\makeatother
+\section{Subcaption Shape Options}
+
+There are seven options for setting the subcaption shape or ``format''.
+The default setting is produced by
+\begin{quote}
+ $\backslash$captionsetup[subfigure]\{ style=default, margin=0pt, parskip=0pt,
+ hangindent=0pt, indention=0pt, singlelinecheck=true\}
+\end{quote}
+which is shown in figure~\ref{fig:shape-01}.
+Figure~\ref{fig:shape-00} shows the same thing, but without setting
+the ``singlelinecheck'' to centering. You can see that the
+``singlelinecheck'' option only affects the short caption.
+
+Any or all of the other shape option may be used at one time, since
+they define orthogonal aspects of the caption shape. The other
+options are:
+\begin{itemize}
+ \item \texttt{singlelinecheck}, (Boolean) which causes a caption
+ that will fit on one line to be centered below the figure
+ (actually, to use the singlelinecheck format) .
+ \item \texttt{indention}, (amount) which indents the caption text.
+ \item \texttt{hangindent}, (amount) which indents the caption text, except
+ for the first line of each paragraph.
+ \item \texttt{parskip}, (amount) which adds some extra space between
+ separate paragraphs in a caption.
+ \item \texttt{format=hang}, which causes the label to hang out to
+ the left of the caption text. \texttt{normal} turns it off.
+ \item \texttt{margin}, (amount) which sets extra space to either side of
+ the caption. The option \texttt{width} may also be used. This sets
+ the margins to provide the requested width of the caption.
+\end{itemize}
+Figures~\ref{fig:shape-00} thru \ref{fig:shape-63} show the different
+combinations of these formats.
+
+\def\exin{15pt} % indention value
+\def\exhi{-10pt} % hangindent value
+\def\exps{5pt} % parskip value
+\def\exma{10pt} % margin value
+\figshape{fig:shape-00}{singlelinecheck=false}
+\figshape{fig:shape-01}{ }
+\figshape{fig:shape-02}{indention=\exin,singlelinecheck=false}
+\figshape{fig:shape-03}{indention=\exin}
+\figshape{fig:shape-04}{hangindent=\exhi,singlelinecheck=false}
+\figshape{fig:shape-05}{hangindent=\exhi}
+\figshape[hangindent=\exhi,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-06}%
+ {hangindent=\exhi,indention=\exin, singlelinecheck=false}%
+\figshape{fig:shape-07}{hangindent=\exhi,indention=\exin}
+\figshape{fig:shape-08}{parskip=\exps,singlelinecheck=false}
+\figshape{fig:shape-09}{parskip=\exps}
+\figshape[parskip=\exps,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-10}%
+ {parskip=\exps,indention=\exin, singlelinecheck=false}%
+\figshape{fig:shape-11}{parskip=\exps,indention=\exin}
+\figshape[parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-12}%
+ {parskip=\exps,hangindent=\exhi, singlelinecheck=false}%
+\figshape{fig:shape-13}{parskip=\exps,hangindent=\exhi}
+\figshape[parskip=\exps,hangindent=\exhi,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-14}%
+ {parskip=\exps,hangindent=\exhi,indention=\exin,
+ singlelinecheck=false}
+\figshape{fig:shape-15}{parskip=\exps,hangindent=\exhi,indention=\exin}
+\clearpage
+\figshape{fig:shape-16}{format=hang,singlelinecheck=false}
+\figshape{fig:shape-17}{format=hang}
+\figshape[format=hang,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-18}%
+ {format=hang,indention=\exin, singlelinecheck=false}%
+\figshape{fig:shape-19}{format=hang,indention=\exin}
+\figshape[format=hang,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-20}%
+ {format=hang,hangindent=\exhi, singlelinecheck=false}%
+\figshape{fig:shape-21}{format=hang,hangindent=\exhi}
+\figshape[hang,hangindent=\exhi,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-22}%
+ {format=hang,hangindent=\exhi,indention=\exin, singlelinecheck=false}
+\figshape{fig:shape-23}{format=hang,hangindent=\exhi,indention=\exin}
+\figshape{fig:shape-24}{format=hang,parskip=\exps,singlelinecheck=false}
+\clearpage
+\figshape{fig:shape-25}{format=hang,parskip=\exps}
+\figshape[format=hang,parskip=\exps,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-26}%
+ {format=hang,parskip=\exps,indention=\exin, singlelinecheck=false}%
+\figshape{fig:shape-27}{format=hang,parskip=\exps,indention=\exin}
+\figshape[format=hang,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-28}%
+ {format=hang,parskip=\exps,hangindent=\exhi, singlelinecheck=false}%
+\figshape{fig:shape-29}{format=hang,parskip=\exps,hangindent=\exhi}
+\figshape[format=hang,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+ {fig:shape-30}%
+ {format=hang,parskip=\exps,hangindent=\exhi,
+ indention=\exin,singlelinecheck=false}%
+\figshape[format=hang,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin]%
+ {fig:shape-31}%
+ {format=hang,parskip=\exps,hangindent=\exhi, indention=\exin}
+\figshape{fig:shape-32}{margin=\exma,singlelinecheck=false}
+\figshape{fig:shape-33}{margin=\exma}
+\figshape[margin=\exma,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-34}%
+ {margin=\exma,indention=\exin, singlelinecheck=false}
+\figshape{fig:shape-35}{margin=\exma,indention=\exin}
+\figshape[margin=\exma,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-36}%
+ {margin=\exma,hangindent=\exhi, singlelinecheck=false}
+\figshape{fig:shape-37}{margin=\exma,hangindent=\exhi}
+\figshape[margin=\exma,hangindent=\exhi,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-38}%
+ {margin=\exma,hangindent=\exhi,indention=\exin, singlelinecheck=false}
+\figshape{fig:shape-39}{margin=\exma,hangindent=\exhi,indention=\exin}
+\clearpage
+\figshape{fig:shape-40}{margin=\exma,parskip=\exps,singlelinecheck=false}
+\figshape{fig:shape-41}{margin=\exma,parskip=\exps}
+\figshape[margin=\exma,parskip=\exps,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-42}{margin=\exma,parskip=\exps,indention=\exin, singlelinecheck=false}
+\figshape{fig:shape-43}{margin=\exma,parskip=\exps,indention=\exin}
+\figshape[margin=\exma,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-44}{margin=\exma,parskip=\exps,hangindent=\exhi, singlelinecheck=false}
+\figshape{fig:shape-45}{margin=\exma,parskip=\exps,hangindent=\exhi}
+\figshape[margin=\exma,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+ {fig:shape-46}{margin=\exma,parskip=\exps,hangindent=\exhi, indention=\exin,singlelinecheck=false}
+\figshape[margin=\exma,parskip=\exps,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin]%
+ {fig:shape-47}{margin=\exma,parskip=\exps,hangindent=\exhi, indention=\exin}
+\figshape{fig:shape-48}{margin=\exma,format=hang,singlelinecheck=false}
+\figshape{fig:shape-49}{margin=\exma,format=hang}
+\figshape[margin=\exma,format=hang,indention=\exin,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-50}%
+ {margin=\exma,format=hang,indention=\exin, singlelinecheck=false}
+\figshape{fig:shape-51}{margin=\exma,format=hang,indention=\exin}
+\figshape[margin=\exma,format=hang,hangindent=\exhi,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-52}%
+ {margin=\exma,format=hang,hangindent=\exhi, singlelinecheck=false}
+\figshape{fig:shape-53}{margin=\exma,format=hang,hangindent=\exhi}
+\figshape[margin=\exma,format=hang,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+ {fig:shape-54}%
+ {margin=\exma,format=hang,hangindent=\exhi, indention=\exin,singlelinecheck=false}%
+\figshape[margin=\exma,format=hang,hangindent=\exhi,
+ \hfil\null\string\linebreak\ indention=\exin]%
+ {fig:shape-55}%
+ {margin=\exma,format=hang,hangindent=\exhi, indention=\exin}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ singlelinecheck=false]%
+ {fig:shape-56}%
+ {margin=\exma,format=hang,parskip=\exps, singlelinecheck=false}
+\figshape{fig:shape-57}{margin=\exma,format=hang,parskip=\exps}
+\clearpage
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ indention=\exin,singlelinecheck=false]%
+ {fig:shape-58}{margin=\exma,format=hang,parskip=\exps,
+ indention=\exin,singlelinecheck=false}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ indention=\exin]%
+ {fig:shape-59}%
+ {margin=\exma,format=hang,parskip=\exps, indention=\exin}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ hangindent=\exhi,singlelinecheck=false]%
+ {fig:shape-60}{margin=\exma,format=hang,parskip=\exps,
+ hangindent=\exhi,singlelinecheck=false}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ hangindent=\exhi]%
+ {fig:shape-61}%
+ {margin=\exma,format=hang,parskip=\exps, hangindent=\exhi}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ hangindent=\exhi,indention=\exin,singlelinecheck=false]%
+ {fig:shape-62}%
+ {margin=\exma,format=hang,parskip=\exps,
+ hangindent=\exhi,indention=\exin,singlelinecheck=false}
+\figshape[margin=\exma,format=hang,parskip=\exps,
+ \hfil\null\string\linebreak\ hangindent=\exhi,indention=\exin]%
+ {fig:shape-63}{margin=\exma,format=hang,parskip=\exps,
+ hangindent=\exhi, indention=\exin}
+\clearpage
+
+\makeatletter
+ \global\@topnum\z@ % Prevents figures from going at top of page.
+\makeatother
+\section{Subcaption Justification Options}
+
+There are six options for setting the subcaption format, plus another
+three if the ``ragged2e'' package is loaded. The first is
+\texttt{justified} which produces the format shows in
+figure~\ref{fig:justification-00}. Only one of these options is
+allowed. If multiple options appear, then only the last is used. The
+Figures~\ref{fig:justification-01} thru \ref{fig:justification-08}
+show each of these formats. The shape options selected along with
+each format option is the default (see Figure~\ref{fig:shape-01}),
+this shows the effect of the justification option on a single line
+caption.
+
+\figshape{fig:justification-00}{justification=justified,singlelinecheck=false}
+\figshape{fig:justification-01}{justification=centerfirst,singlelinecheck=false}
+\figshape{fig:justification-02}{justification=centerlast,singlelinecheck=false}
+\figshape{fig:justification-03}{justification=centering,singlelinecheck=false}
+\figshape{fig:justification-04}{justification=Centering,singlelinecheck=false}
+\figshape{fig:justification-05}{justification=raggedleft,singlelinecheck=false}
+\figshape{fig:justification-06}{justification=RaggedLeft,singlelinecheck=false}
+\figshape{fig:justification-07}{justification=raggedright,singlelinecheck=false}
+\figshape{fig:justification-08}{justification=RaggedRight,singlelinecheck=false}
+
+\section{Subcaption Font Options}
+
+First we show the size options and then various combinations
+of the other font options. The first subsection, shows the
+effect of setting the ``font'' or ``size'' key; the second
+subsection shows that of the ``labelfont'' key and the last
+subsection that of the ``textfont'' key.
+
+\subsection{``font'' or ``size'' font Options}
+
+Figures~\ref{fig:f_size-01}--\ref{fig:f_size-06} shows the
+effect of the ``font'' size options and the other font options
+are shown in figures~\ref{fig:f_font-01}--\ref{fig:f_font-24}.
+
+\begin{figure}%
+ \centering
+%
+ \figfont{fig:f_size-01}{font}{Large}\g
+ \figfont{fig:f_size-02}{font}{large}\\
+%
+ \figfont{fig:f_size-03}{font}{normalsize}\g
+ \figfont{fig:f_size-04}{font}{small}\\
+%
+ \figfont{fig:f_size-05}{font}{footnotesize}\g
+ \figfont{fig:f_size-06}{font}{scriptsize}\\
+%
+ \caption{Font Size Options.}%
+ \label{fig:f_size}%
+\end{figure}
+
+\begin{figure}%
+ \centering
+%
+ \figfontlist{fig:f_font-01}{font}{rm,up,md}\g
+ \figfontlist{fig:f_font-02}{font}{rm,up,bf}\\
+%
+ \figfontlist{fig:f_font-03}{font}{rm,it,md}\g
+ \figfontlist{fig:f_font-04}{font}{rm,it,bf}\\
+%
+ \figfontlist{fig:f_font-05}{font}{rm,sl,md}\g
+ \figfontlist{fig:f_font-06}{font}{rm,sl,bf}\\
+%
+ \figfontlist{fig:f_font-07}{font}{rm,sc,md}\g
+ \figfontlist{fig:f_font-08}{font}{rm,sc,bf}\\
+%
+ \figfontlist{fig:f_font-09}{font}{sf,up,md}\g
+ \figfontlist{fig:f_font-10}{font}{sf,up,bf}\\
+%
+ \figfontlist{fig:f_font-11}{font}{sf,it,md}\g
+ \figfontlist{fig:f_font-12}{font}{sf,it,bf}\\
+%
+ \figfontlist{fig:f_font-13}{font}{sf,sl,md}\g
+ \figfontlist{fig:f_font-14}{font}{sf,sl,bf}\\
+%
+ \figfontlist{fig:f_font-15}{font}{sf,sc,md}\g
+ \figfontlist{fig:f_font-16}{font}{sf,sc,bf}\\
+%
+ \figfontlist{fig:f_font-17}{font}{tt,up,md}\g
+ \figfontlist{fig:f_font-18}{font}{tt,up,bf}\\
+%
+ \figfontlist{fig:f_font-19}{font}{tt,it,md}\g
+ \figfontlist{fig:f_font-20}{font}{tt,it,bf}\\
+%
+ \figfontlist{fig:f_font-21}{font}{tt,sl,md}\g
+ \figfontlist{fig:f_font-22}{font}{tt,sl,bf}\\
+%
+ \figfontlist{fig:f_font-23}{font}{tt,sc,md}\g
+ \figfontlist{fig:f_font-24}{font}{tt,sc,bf}\\
+%
+ \caption{Other Font Options.}%
+ \label{fig:f_font}%
+\end{figure}
+
+\subsection{``labelfont'' font Options.}
+
+Figures~\ref{fig:l_size-01}--\ref{fig:l_size-06} shows the
+effect of the ``font'' size options and the other font options
+are shown in figures~\ref{fig:l_font-01}--\ref{fig:l_font-24}.
+
+\begin{figure}%
+ \centering
+%
+ \figfont{fig:l_size-01}{labelfont}{Large}\g
+ \figfont{fig:l_size-02}{labelfont}{large}\\
+%
+ \figfont{fig:l_size-03}{labelfont}{normalsize}\g
+ \figfont{fig:l_size-04}{labelfont}{small}\\
+%
+ \figfont{fig:l_size-05}{labelfont}{footnotesize}\g
+ \figfont{fig:l_size-06}{labelfont}{scriptsize}\\
+%
+ \caption{Labelfont Size Options.}%
+ \label{fig:l_size}%
+\end{figure}
+
+\begin{figure}%
+ \centering
+%
+ \figfontlist{fig:l_font-01}{labelfont}{rm,up,md}\g
+ \figfontlist{fig:l_font-02}{labelfont}{rm,up,bf}\\
+%
+ \figfontlist{fig:l_font-03}{labelfont}{rm,it,md}\g
+ \figfontlist{fig:l_font-04}{labelfont}{rm,it,bf}\\
+%
+ \figfontlist{fig:l_font-05}{labelfont}{rm,sl,md}\g
+ \figfontlist{fig:l_font-06}{labelfont}{rm,sl,bf}\\
+%
+ \figfontlist{fig:l_font-07}{labelfont}{rm,sc,md}\g
+ \figfontlist{fig:l_font-08}{labelfont}{rm,sc,bf}\\
+%
+ \figfontlist{fig:l_font-09}{labelfont}{sf,up,md}\g
+ \figfontlist{fig:l_font-10}{labelfont}{sf,up,bf}\\
+%
+ \figfontlist{fig:l_font-11}{labelfont}{sf,it,md}\g
+ \figfontlist{fig:l_font-12}{labelfont}{sf,it,bf}\\
+%
+ \figfontlist{fig:l_font-13}{labelfont}{sf,sl,md}\g
+ \figfontlist{fig:l_font-14}{labelfont}{sf,sl,bf}\\
+%
+ \figfontlist{fig:l_font-15}{labelfont}{sf,sc,md}\g
+ \figfontlist{fig:l_font-16}{labelfont}{sf,sc,bf}\\
+%
+ \figfontlist{fig:l_font-17}{labelfont}{tt,up,md}\g
+ \figfontlist{fig:l_font-18}{labelfont}{tt,up,bf}\\
+%
+ \figfontlist{fig:l_font-19}{labelfont}{tt,it,md}\g
+ \figfontlist{fig:l_font-20}{labelfont}{tt,it,bf}\\
+%
+ \figfontlist{fig:l_font-21}{labelfont}{tt,sl,md}\g
+ \figfontlist{fig:l_font-22}{labelfont}{tt,sl,bf}\\
+%
+ \figfontlist{fig:l_font-23}{labelfont}{tt,sc,md}\g
+ \figfontlist{fig:l_font-24}{labelfont}{tt,sc,bf}\\
+%
+ \caption{Other Labelfont Options.}%
+ \label{fig:l_font}%
+\end{figure}
+
+\subsection{``textfont'' font Options.}
+
+Figures~\ref{fig:t_size-01}--\ref{fig:t_size-06} shows the
+effect of the ``font'' size options and the other font options
+are shown in figures~\ref{fig:t_font-01}--\ref{fig:t_font-24}.
+
+\begin{figure}%
+ \centering
+%
+ \figfont{fig:t_size-01}{textfont}{Large}\g
+ \figfont{fig:tlsize-02}{textfont}{large}\\
+%
+ \figfont{fig:t_size-03}{textfont}{normalsize}\g
+ \figfont{fig:t_size-04}{textfont}{small}\\
+%
+ \figfont{fig:t_size-05}{textfont}{footnotesize}\g
+ \figfont{fig:t_size-06}{textfont}{scriptsize}\\
+%
+ \caption{Textfont Size Options.}%
+ \label{fig:t_size}%
+\end{figure}
+
+\begin{figure}%
+ \centering
+%
+ \figfontlist{fig:t_font-01}{textfont}{rm,up,md}\g
+ \figfontlist{fig:t_font-02}{textfont}{rm,up,bf}\\
+%
+ \figfontlist{fig:t_font-03}{textfont}{rm,it,md}\g
+ \figfontlist{fig:t_font-04}{textfont}{rm,it,bf}\\
+%
+ \figfontlist{fig:t_font-05}{textfont}{rm,sl,md}\g
+ \figfontlist{fig:t_font-06}{textfont}{rm,sl,bf}\\
+%
+ \figfontlist{fig:t_font-07}{textfont}{rm,sc,md}\g
+ \figfontlist{fig:t_font-08}{textfont}{rm,sc,bf}\\
+%
+ \figfontlist{fig:t_font-09}{textfont}{sf,up,md}\g
+ \figfontlist{fig:t_font-10}{textfont}{sf,up,bf}\\
+%
+ \figfontlist{fig:t_font-11}{textfont}{sf,it,md}\g
+ \figfontlist{fig:t_font-12}{textfont}{sf,it,bf}\\
+%
+ \figfontlist{fig:t_font-13}{textfont}{sf,sl,md}\g
+ \figfontlist{fig:t_font-14}{textfont}{sf,sl,bf}\\
+%
+ \figfontlist{fig:t_font-15}{textfont}{sf,sc,md}\g
+ \figfontlist{fig:t_font-16}{textfont}{sf,sc,bf}\\
+%
+ \figfontlist{fig:t_font-17}{textfont}{tt,up,md}\g
+ \figfontlist{fig:t_font-18}{textfont}{tt,up,bf}\\
+%
+ \figfontlist{fig:t_font-19}{textfont}{tt,it,md}\g
+ \figfontlist{fig:t_font-20}{textfont}{tt,it,bf}\\
+%
+ \figfontlist{fig:t_font-21}{textfont}{tt,sl,md}\g
+ \figfontlist{fig:t_font-22}{textfont}{tt,sl,bf}\\
+%
+ \figfontlist{fig:t_font-23}{textfont}{tt,sc,md}\g
+ \figfontlist{fig:t_font-24}{textfont}{tt,sc,bf}\\
+%
+ \caption{Other Textfont Options.}%
+ \label{fig:t_font}%
+\end{figure}
+
+
+\end{document}
diff --git a/macros/latex/contrib/subfig/test7.tex b/macros/latex/contrib/subfig/test7.tex
new file mode 100644
index 0000000000..b6f749ee2e
--- /dev/null
+++ b/macros/latex/contrib/subfig/test7.tex
@@ -0,0 +1,122 @@
+%% test7.tex
+%%
+%% This is file `test7.tex', one of a set of several test/example files
+%% in the `subfig' package.
+%%
+%% Copyright © 2003, 2004, 2005 Steven Douglas Cochran.
+%%
+%% This work (the subfig package) may be distributed and/or modified
+%% under the conditions of the LaTeX Project Public License, either
+%% version 1.3 of this license or (at your option) any later version.
+%% The latest version of this license is in
+%% http://www.latex-project.org/lppl.txt
+%% and version 1.3 or later is part of all distributions of LaTeX
+%% version 2003/12/01 or later.
+%%
+%% This work has the LPPL maintenance status "author-maintained".
+%%
+%% This Current Maintainer of this work is Steven Douglas Cochran.
+%%
+%% This work consists of all files listed under "MANIFEST" in the
+%% README file distributed with the subfig package.
+
+\documentclass{article}
+
+\makeatletter
+%% We pretend that we are a naughty class and are \let'ting our
+%% \endfigure to the \end@float, etc.
+
+\def\thefigure{\@arabic\c@figure}
+\def\fps@figure{tbp}
+\def\ftype@figure{1}
+\def\ext@figure{lof}
+\def\fnum@figure{Fig.~\thefigure}
+\def\figure{\@float{figure}}
+%% This is the bad line, it should be "\def\endfigure{\end@float}"
+\let\endfigure\end@float
+\@namedef{figure*}{\@dblfloat{figure}}
+\@namedef{endfigure*}{\end@dblfloat}
+
+\def\thetable{\@Roman\c@table}
+\def\fps@table{tbp}
+\def\ftype@table{2}
+\def\ext@table{lot}
+\def\fnum@table{TABLE~\thetable}
+\def\table{%
+ \def\@floatboxreset{\reset@font\footnotesize\@setminipage}%
+ \@float{table}}
+%% This is the bad line, it should be "\def\endtable{\end@float}"
+\let\endtable\end@float
+\@namedef{table*}{%
+ \def\@floatboxreset{\reset@font\footnotesize\@setminipage}%
+ \@dblfloat{table}}
+\@namedef{endtable*}{\end@dblfloat}
+\makeatother
+
+% Next we load the subfig package and see if it finds the problem.
+% To check this test result, you need to see the TTY listing or check
+% the test5.log (which we save as test5b.ps).
+\usepackage[position=top,nearskip=10pt,lofdepth,lotdepth]{subfig}
+
+\newcommand{\figbox}[1]{%
+ \fbox{%
+ \vbox to 1in{%
+ \vfil
+ \hbox to 2in{%
+ \hfil
+ {\normalsize #1}%
+ \hfil}%
+ \vfil}}}
+
+\newcommand{\goodgap}{\hspace{9pt}}
+
+\begin{document}
+\listoffigures
+\listoftables
+\newpage
+
+\section{Seventh Test}
+
+\begin{figure}%
+ \centering
+ \caption{Figure One.}%
+ \label{fig:first}%
+ \subfloat[Figure subone.\label{fig:first:A}]{\figbox{Figure subone}}%
+ \goodgap
+ \subfloat[Figure subtwo.\label{fig:first:B}]{\figbox{Figure subtwo}}\\
+ \subfloat[Figure subthree.\label{fig:first:C}]{\figbox{Figure subthree}}%
+ \goodgap
+ \subfloat[Figure subfour.\label{fig:first:D}]{\figbox{Figure subfour}}%
+\end{figure}
+
+\begin{figure}%
+ \ContinuedFloat
+ \centering
+ \caption[]{Figure One (cont.)}%
+ \label{fig:first_cont}%
+ \subfloat[Figure subfive.\label{fig:first:E}]{\figbox{Figure subfive}}
+ \goodgap
+ \subfloat[Figure subsix.\label{fig:first:F}]{\figbox{Figure subsix}} \\
+ \subfloat[Figure subseven.\label{fig:first:G}]{\figbox{Figure subseven}}
+ \goodgap
+ \subfloat[Figure subeight.\label{fig:first:H}]{\figbox{Figure subeight}}
+\end{figure}
+
+This test checks to see if the subfig package reacts correctly to the
+known sort of problem class. We check that on the list-of-figures page
+the continued figure correctly labeled from (a) to (h) and that on the
+list-of-tables page, the table has the two subcaptions in addition to the
+main caption. If not, than the nasty class has zapped us.
+
+(We also need to check the test7.log file to insure that the problem
+was identified by the subfig package and a warning was issued.)
+
+\begin{table}[t]%
+ \centering
+ \caption{Table One.}%
+ \label{tab:first}%
+ \subfloat[Table subone.\label{tab:first:A}]{\figbox{Table subone}} \goodgap
+ \subfloat[Table subtwo.\label{tab:first:B}]{\figbox{Table subtwo}}%
+\end{table}
+
+\end{document} \ No newline at end of file