summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/pgfplots
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-02-18 00:19:53 +0000
committerKarl Berry <karl@freefriends.org>2008-02-18 00:19:53 +0000
commit957aeb141e1e62fc19b0aedb3bc36ad058226250 (patch)
tree8fb60c82c7d6811bcf6ea09b7d9d575093c959bd /Master/texmf-dist/doc/latex/pgfplots
parentb769336d7ffd1dc4d9b838487a070b86eab16060 (diff)
pgfplots update (17feb08)
git-svn-id: svn://tug.org/texlive/trunk@6666 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/pgfplots')
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/changelog.txt31
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/manual.examples.tex443
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/manual.pdf11284
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/matlab2pgfplots.m332
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/matlab2pgfplots.sh80
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgf2pdf.sh24
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgfmathlogtest.tex174
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgfplots.bib (renamed from Master/texmf-dist/doc/latex/pgfplots/manual.bib)0
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgfplots.examples.tex899
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgfplots.importexport.tex44
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgfplots.install.tex (renamed from Master/texmf-dist/doc/latex/pgfplots/manual.install.tex)15
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgfplots.intro.tex (renamed from Master/texmf-dist/doc/latex/pgfplots/manual.intro.tex)0
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgfplots.pdf11875
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgfplots.reference.tex (renamed from Master/texmf-dist/doc/latex/pgfplots/manual.reference.tex)404
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgfplots.tex (renamed from Master/texmf-dist/doc/latex/pgfplots/manual.tex)38
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/pgfplotstest.tex884
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/todo.txt403
17 files changed, 15020 insertions, 11910 deletions
diff --git a/Master/texmf-dist/doc/latex/pgfplots/changelog.txt b/Master/texmf-dist/doc/latex/pgfplots/changelog.txt
new file mode 100644
index 00000000000..a225e8a6d98
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pgfplots/changelog.txt
@@ -0,0 +1,31 @@
+Changes since version 0.92:
+** UPGRADE INCOMPATIBILITIES **
+- Warning: I have greatly improved the legend placement.
+ If you have overwritten
+ \tikzstyle{every axis legend}
+ you will need to update the legend!
+- renamed 'manual.pdf' to 'pgfplots.pdf' to allow
+ 'texdoc pgfplots'
+- any \axispath commands need to use the 'axis cs' coordinate system.
+
+Improvements:
+- introduced a data scale transformation:
+ know, pgfplots is no longer restricted to numbers within
+ TeX's limited precision.
+ It can produce plots with numbers of order O(10^10) or O(10^-10).
+ [now even for non-logarithmic plots]
+- fixed a bug which did not allow scientific notation for normal plots,
+- improved default tick placement for normal plots,
+- enlargelimits option is now relative and has a better user interface,
+- legends are now TikZ matrizes, which fixes some bugs and improves their
+ flexibility.
+- Added the 'legend columns' option.
+- Added the 'legend plot pos' option.
+- Added the 'hide axis' option
+- Added the 'scale only axis' option
+- Added the 'xticklabels=LIST' and 'yticklabels=LIST' options
+- Added anchors to axes to allow horizontal/vertical alignment
+- rounded tick labels to \prettyprintnumberprecision digits
+- Added 'grid=major|minor|both|none' option for grid lines
+- Added '[xy]minorgrids', '[xy]majorgrids' options and corresponding styles
+- Added '[xy]majorticks', 'ticks=major|minor|both|none' options ticks
diff --git a/Master/texmf-dist/doc/latex/pgfplots/manual.examples.tex b/Master/texmf-dist/doc/latex/pgfplots/manual.examples.tex
deleted file mode 100644
index 07ebbd804ec..00000000000
--- a/Master/texmf-dist/doc/latex/pgfplots/manual.examples.tex
+++ /dev/null
@@ -1,443 +0,0 @@
-% main=manual.tex
-
-
-\section{More examples}
-This section contains a catalogue of different \PGFPlots\ features by example.
-\label{sec:examples}%
-\begingroup
-\subsection{Legend position}
-\begin{lstlisting}
-\tikzstyle{every axis legend}+=
- [at={(0.03,0.03)},anchor=south west]%
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- \addplot plot coordinates {
- (5, 8.312e-02)
- (17, 2.547e-02)
- (49, 7.407e-03)
- (129, 2.102e-03)
- (321, 5.874e-04)
- (769, 1.623e-04)
- (1793, 4.442e-05)
- (4097, 1.207e-05)
- (9217, 3.261e-06)
- };
-
- ....
-
- \legend{$d=2$\\$d=3$\\$d=4$\\$d=5$\\$d=6$\\}
- \end{loglogaxis}
-\end{tikzpicture}
-\end{lstlisting}
-\def\plots{%
- \addplot plot coordinates {
- (5, 8.312e-02)
- (17, 2.547e-02)
- (49, 7.407e-03)
- (129, 2.102e-03)
- (321, 5.874e-04)
- (769, 1.623e-04)
- (1793, 4.442e-05)
- (4097, 1.207e-05)
- (9217, 3.261e-06)
- };
-
- \addplot plot coordinates {
- (7, 8.472e-02)
- (31, 3.044e-02)
- (111, 1.022e-02)
- (351, 3.303e-03)
- (1023, 1.039e-03)
- (2815, 3.196e-04)
- (7423, 9.658e-05)
- (18943, 2.873e-05)
- (47103, 8.437e-06)
- };
-
- \addplot plot coordinates {
- (9, 7.881e-02)
- (49, 3.243e-02)
- (209, 1.232e-02)
- (769, 4.454e-03)
- (2561, 1.551e-03)
- (7937, 5.236e-04)
- (23297, 1.723e-04)
- (65537, 5.545e-05)
- (178177, 1.751e-05)
- };
-
- \addplot plot coordinates {
- (11, 6.887e-02)
- (71, 3.177e-02)
- (351, 1.341e-02)
- (1471, 5.334e-03)
- (5503, 2.027e-03)
- (18943, 7.415e-04)
- (61183, 2.628e-04)
- (187903, 9.063e-05)
- (553983, 3.053e-05)
- };
-
- \addplot plot coordinates {
- (13, 5.755e-02)
- (97, 2.925e-02)
- (545, 1.351e-02)
- (2561, 5.842e-03)
- (10625, 2.397e-03)
- (40193, 9.414e-04)
- (141569, 3.564e-04)
- (471041, 1.308e-04)
- (1496065, 4.670e-05)
- };
- \legend{$d=2$\\$d=3$\\$d=4$\\$d=5$\\$d=6$\\}
- %--------------------------------------------------
- % \addplot plot coordinates {
- % (1.60944,-2.48752)
- % (2.83321,-3.67031)
- % (3.89182,-4.90531)
- % (4.85981,-6.16490)
- % (5.77144,-7.43988)
- % (6.64509,-8.72625)
- % (7.49165,-10.02171)
- % (8.31801,-11.32467)
- % (9.12880,-12.63347)
- % };
- %--------------------------------------------------
-
- %--------------------------------------------------
- % \addplot plot coordinates {
- % (1.94591,-2.46843)
- % (3.43399,-3.49197)
- % (4.70953,-4.58327)
- % (5.86079,-5.71278)
- % (6.93049,-6.86963)
- % (7.94272,-8.04829)
- % (8.91234,-9.24515)
- % (9.84919,-10.45743)
- % (10.76009,-11.68282)
- % };
- %--------------------------------------------------
-
- %--------------------------------------------------
- % \addplot plot coordinates {
- % (2.19722,-2.54068)
- % (3.89182,-3.42861)
- % (5.34233,-4.39638)
- % (6.64509,-5.41393)
- % (7.84815,-6.46903)
- % (8.97929,-7.55482)
- % (10.05608,-8.66643)
- % (11.09037,-9.80004)
- % (12.09053,-10.95252)
- % };
- %--------------------------------------------------
-
- %--------------------------------------------------
- % \addplot plot coordinates {
- % (2.39790,-2.67548)
- % (4.26268,-3.44917)
- % (5.86079,-4.31187)
- % (7.29370,-5.23369)
- % (8.61305,-6.20135)
- % (9.84919,-7.20679)
- % (11.02162,-8.24414)
- % (12.14368,-9.30872)
- % (13.22489,-10.39672)
- % };
- %--------------------------------------------------
-
- %--------------------------------------------------
- % \addplot plot coordinates {
- % (2.56495,-2.85506)
- % (4.57471,-3.53179)
- % (6.30079,-4.30404)
- % (7.84815,-5.14269)
- % (9.27096,-6.03371)
- % (10.60145,-6.96818)
- % (11.86054,-7.93940)
- % (13.06270,-8.94206)
- % (14.21835,-9.97183)
- % };
- %--------------------------------------------------
-
- %--------------------------------------------------
- % \legend{$d=2$\\$d=3$\\$d=4$\\$d=5$\\$d=6$\\}
- %--------------------------------------------------
-}%
-{%
-\legendpreset{font=\footnotesize}%
-\tikzstyle{every axis legend}+=
- [at={(0.03,0.03)},anchor=south west]%
-\begin{center}
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- \plots
- \end{loglogaxis}
-\end{tikzpicture}
-\end{center}
-}
-
-\subsection{Font size and line width}
-\begin{lstlisting}
-\tikzstyle{every axis legend}+=%
- [at={(0.03,0.03)},anchor=south west]%
-\tikzstyle{every tick}+=[line width=0.6pt]%
-\begin{tikzpicture}[font=\large,line width=1pt]
- \begin{loglogaxis}[
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- \addplot ....
- ...
- \end{loglogaxis}
-\end{tikzpicture}
-\end{lstlisting}
-
-{%
-\tikzstyle{every axis legend}+=
- [at={(0.03,0.03)},anchor=south west]%
-\tikzstyle{every tick}+=[line width=0.6pt]
-\begin{center}
-\begin{tikzpicture}[font=\large,line width=1pt]
- \begin{loglogaxis}[
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- \plots
- \end{loglogaxis}
-\end{tikzpicture}
-\end{center}
-}%
-
-\subsection{Changing line specifications}
-\subsubsection{Using another, predefined list}
-{%
-\begin{lstlisting}
-\listcopy\blackwhiteplotspeclist\to\autoplotspeclist%
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- ...
- \end{loglogaxis}
-\end{tikzpicture}
-\end{lstlisting}
-
-\listcopy\blackwhiteplotspeclist\to\autoplotspeclist%
-\begin{center}
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- \plots
- \end{loglogaxis}
-\end{tikzpicture}
-\end{center}
-
-\subsubsection{Defining new lists}
-\begin{lstlisting}
-% will cycle through these three elements:
-\listnew{\autoplotspeclist}{%
- red,dotted,mark=-,mark options={solid}\\%
- black,dashed,mark=pentagon,mark options={solid}\\%
- mark options={fill=blue!40},mark=diamond*,blue\\%
-}%
-\tikzstyle{every axis legend}+=%
- [at={(1.03,1)},anchor=north west]%
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- ...
- \end{loglogaxis}
-\end{tikzpicture}
-\end{lstlisting}
-
-\listnew{\autoplotspeclist}{%
- red,dotted,mark=-,mark options={solid}\\%
- black,dashed,mark=pentagon,mark options={solid}\\%
- mark options={fill=blue!40},mark=diamond*,blue\\%
-}%
-\tikzstyle{every axis legend}+=%
- [at={(1.03,1)},anchor=north west]%
-\begin{center}
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- \plots
- \end{loglogaxis}
-\end{tikzpicture}
-\end{center}
-}%
-
-\subsection{Changing the ticks}
-\subsubsection{Placing ticks at $10^i$}
-\begin{lstlisting}
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xtickten={0,2,3,4,6,...,10},% place tickmarks at 10^0, 10^2,...
- ytickten={-6,-4,...,2},
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- ....
- \end{loglogaxis}
-\end{tikzpicture}
-\end{lstlisting}
-
-\begin{center}
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xtickten={0,2,3,4,6,...,10},
- ytickten={-6,-4,...,2},
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- \plots
- \end{loglogaxis}
-\end{tikzpicture}
-\end{center}
-
-\subsubsection{Placing ticks anywhere}
-\begin{lstlisting}
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xtick={12,9897,1468864}
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- ....
- \end{loglogaxis}
-\end{tikzpicture}
-\end{lstlisting}
-
-\begin{center}
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xtick={12,9897,1468864},%2.5,9.2,14.2},
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- \plots
- \end{loglogaxis}
-\end{tikzpicture}
-\end{center}
-
-\subsection{Annotating plots}
-\label{sec:annot:plot}%
-\subsubsection{Example: Placing Data Cursors}
-\begin{lstlisting}
-\tikzstyle{annotation}=[fill=white,draw=black,font=\footnotesize]
-\tikzstyle{annotedge}=[->,shorten >=3pt]
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
-
- ....
-
- \addplot plot coordinates {
- (13, 5.755e-02)
- (97, 2.925e-02)
- (545, 1.351e-02)
- (2561, 5.842e-03)
- (10625, 2.397e-03)
- (40193, 9.414e-04)
- (141569, 3.564e-04)
- (471041, 1.308e-04)
- (1496065, 4.670e-05)
- };
- ...
-
- % remember this coordinate under the name 'bad'
- \axispath\node[coordinate] (bad) at
- (8.61305,-6.20135) % = (log(10625), log(2.397e-03))
- {};
- \axispath\node[coordinate] (good) at
- (12.14368,-9.30872)
- {};
-
- % place a node above 'bad' and draw an edge to 'bad':
- \axispath\node[annotation,above of=bad]
- {Bad!}
- edge[annotedge] (bad);
- \axispath\node[annotation,above right of=good]
- {Good!}
- edge[annotedge] (good);
- \end{loglogaxis}
-\end{tikzpicture}
-\end{lstlisting}
-\begin{center}
-\begin{tikzpicture}[node distance=1cm]
-\tikzstyle{annotation}=[fill=white,draw=black,font=\footnotesize]
-\tikzstyle{annotedge}=[->,shorten >=3pt]
- \begin{loglogaxis}[
- xlabel={\textsc{Dof}},
- ylabel={$L_2$ Error}
- ]
- \plots
- \axispath\node[coordinate] (bad) at
- (8.61305,-6.20135)
- {};
- \axispath\node[coordinate] (good) at
- (12.14368,-9.30872)
- {};
-
- \axispath\node[annotation,above of=bad]
- {Bad!}
- edge[annotedge] (bad);
- \axispath\node[annotation,above right of=good]
- {Good!}
- edge[annotedge] (good);
- \end{loglogaxis}
-\end{tikzpicture}
-\end{center}
-
-One remark: the \lstinline!\axispath! prefix is necessary because neither axis nor plots will be drawn until the $x$- and $y$-limits have been determined. All drawing commands are postponed until \lstinline!\end{axis}! (unless you explicitly provide the options \lstinline!xmin!, \lstinline!xmax!, \lstinline!ymin! and \lstinline!ymax!).
-
-\subsubsection{Example: Slopes of line segments}
-\begin{lstlisting}
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xlabel=\textsc{Dof},
- ylabel=$L_2$ Error
- ]
- \axispath\draw
- (7.49165,-10.02171)
- |- (8.31801,-11.32467)
- node[near start,left] {$\frac{dy}{dx} = -1.58$};
-
- \addplot ....
- ...
- \end{loglogaxis}
-\end{tikzpicture}
-\end{lstlisting}
-\begin{center}
-\begin{tikzpicture}
- \begin{loglogaxis}[
- xlabel=\textsc{Dof},
- ylabel=$L_2$ Error
- ]
- \axispath\draw
- (7.49165,-10.02171)
- |- (8.31801,-11.32467)
- node[near start,left] {$\frac{dy}{dx} = -1.58$};
- \plots
-
- \end{loglogaxis}
-\end{tikzpicture}
-\end{center}
-
-\endgroup
diff --git a/Master/texmf-dist/doc/latex/pgfplots/manual.pdf b/Master/texmf-dist/doc/latex/pgfplots/manual.pdf
deleted file mode 100644
index 85af37071f4..00000000000
--- a/Master/texmf-dist/doc/latex/pgfplots/manual.pdf
+++ /dev/null
@@ -1,11284 +0,0 @@
-%PDF-1.2
-11 0 obj
-<<
-/Title(Introduction)
-/A<<
-/S/GoTo
-/D(section.1)
->>
-/Parent 10 0 R
-/Next 12 0 R
->>
-endobj
-13 0 obj
-<<
-/Title(Licensing)
-/A<<
-/S/GoTo
-/D(subsection.2.1)
->>
-/Parent 12 0 R
-/Next 14 0 R
->>
-endobj
-14 0 obj
-<<
-/Title(Prerequisites)
-/A<<
-/S/GoTo
-/D(subsection.2.2)
->>
-/Parent 12 0 R
-/Prev 13 0 R
-/Next 15 0 R
->>
-endobj
-15 0 obj
-<<
-/Title(Files in the Pgfplots-Bundle)
-/A<<
-/S/GoTo
-/D(subsection.2.3)
->>
-/Parent 12 0 R
-/Prev 14 0 R
-/Next 16 0 R
->>
-endobj
-16 0 obj
-<<
-/Title(Assigning the TEXINPUTS Variable)
-/A<<
-/S/GoTo
-/D(subsection.2.4)
->>
-/Parent 12 0 R
-/Prev 15 0 R
-/Next 17 0 R
->>
-endobj
-17 0 obj
-<<
-/Title(Installation into a local texmf-directory)
-/A<<
-/S/GoTo
-/D(subsection.2.5)
->>
-/Parent 12 0 R
-/Prev 16 0 R
-/Next 18 0 R
->>
-endobj
-18 0 obj
-<<
-/Title(Installation into a local TDS compliant texmf-directory)
-/A<<
-/S/GoTo
-/D(subsection.2.6)
->>
-/Parent 12 0 R
-/Prev 17 0 R
-/Next 19 0 R
->>
-endobj
-19 0 obj
-<<
-/Title(If everything else fails...)
-/A<<
-/S/GoTo
-/D(subsection.2.7)
->>
-/Parent 12 0 R
-/Prev 18 0 R
-/Next 20 0 R
->>
-endobj
-20 0 obj
-<<
-/Title(Restrictions for DVI-Viewers and dvipdfm)
-/A<<
-/S/GoTo
-/D(subsection.2.8)
->>
-/Parent 12 0 R
-/Prev 19 0 R
->>
-endobj
-12 0 obj
-<<
-/Title(Installation)
-/A<<
-/S/GoTo
-/D(section.2)
->>
-/Parent 10 0 R
-/Prev 11 0 R
-/First 13 0 R
-/Last 20 0 R
-/Count -8
-/Next 21 0 R
->>
-endobj
-22 0 obj
-<<
-/Title(A first plot)
-/A<<
-/S/GoTo
-/D(subsection.3.1)
->>
-/Parent 21 0 R
-/Next 23 0 R
->>
-endobj
-23 0 obj
-<<
-/Title(Two plots in the same axis)
-/A<<
-/S/GoTo
-/D(subsection.3.2)
->>
-/Parent 21 0 R
-/Prev 22 0 R
-/Next 24 0 R
->>
-endobj
-24 0 obj
-<<
-/Title(Logarithmic plots)
-/A<<
-/S/GoTo
-/D(subsection.3.3)
->>
-/Parent 21 0 R
-/Prev 23 0 R
-/Next 25 0 R
->>
-endobj
-25 0 obj
-<<
-/Title(Cycling line styles)
-/A<<
-/S/GoTo
-/D(subsection.3.4)
->>
-/Parent 21 0 R
-/Prev 24 0 R
-/Next 26 0 R
->>
-endobj
-26 0 obj
-<<
-/Title(Scaling plots)
-/A<<
-/S/GoTo
-/D(subsection.3.5)
->>
-/Parent 21 0 R
-/Prev 25 0 R
->>
-endobj
-21 0 obj
-<<
-/Title(Drawing axes and plots)
-/A<<
-/S/GoTo
-/D(section.3)
->>
-/Parent 10 0 R
-/Prev 12 0 R
-/First 22 0 R
-/Last 26 0 R
-/Count -5
-/Next 27 0 R
->>
-endobj
-28 0 obj
-<<
-/Title(The axis--environments)
-/A<<
-/S/GoTo
-/D(subsection.4.1)
->>
-/Parent 27 0 R
-/Next 29 0 R
->>
-endobj
-30 0 obj
-<<
-/Title(Markers)
-/A<<
-/S/GoTo
-/D(subsubsection.4.2.1)
->>
-/Parent 29 0 R
-/Next 31 0 R
->>
-endobj
-31 0 obj
-<<
-/Title(Line styles)
-/A<<
-/S/GoTo
-/D(subsubsection.4.2.2)
->>
-/Parent 29 0 R
-/Prev 30 0 R
->>
-endobj
-29 0 obj
-<<
-/Title(Available markers)
-/A<<
-/S/GoTo
-/D(subsection.4.2)
->>
-/Parent 27 0 R
-/Prev 28 0 R
-/First 30 0 R
-/Last 31 0 R
-/Count -2
-/Next 32 0 R
->>
-endobj
-32 0 obj
-<<
-/Title(\\addplot[OPTIONS] PATH)
-/A<<
-/S/GoTo
-/D(subsection.4.3)
->>
-/Parent 27 0 R
-/Prev 29 0 R
-/Next 33 0 R
->>
-endobj
-33 0 obj
-<<
-/Title(\\axispath...;)
-/A<<
-/S/GoTo
-/D(subsection.4.4)
->>
-/Parent 27 0 R
-/Prev 32 0 R
-/Next 34 0 R
->>
-endobj
-34 0 obj
-<<
-/Title(\\addlegendentry{name})
-/A<<
-/S/GoTo
-/D(subsection.4.5)
->>
-/Parent 27 0 R
-/Prev 33 0 R
-/Next 35 0 R
->>
-endobj
-36 0 obj
-<<
-/Title(Legend appearance)
-/A<<
-/S/GoTo
-/D(subsubsection.4.6.1)
->>
-/Parent 35 0 R
-/Next 37 0 R
->>
-endobj
-37 0 obj
-<<
-/Title(Legends Options)
-/A<<
-/S/GoTo
-/D(subsubsection.4.6.2)
->>
-/Parent 35 0 R
-/Prev 36 0 R
->>
-endobj
-35 0 obj
-<<
-/Title(\\legend[OPTIONS]{LIST})
-/A<<
-/S/GoTo
-/D(subsection.4.6)
->>
-/Parent 27 0 R
-/Prev 34 0 R
-/First 36 0 R
-/Last 37 0 R
-/Count -2
-/Next 38 0 R
->>
-endobj
-38 0 obj
-<<
-/Title(\\autoplotspeclist)
-/A<<
-/S/GoTo
-/D(subsection.4.7)
->>
-/Parent 27 0 R
-/Prev 35 0 R
-/Next 39 0 R
->>
-endobj
-39 0 obj
-<<
-/Title(\\logtologten{ARG})
-/A<<
-/S/GoTo
-/D(subsection.4.8)
->>
-/Parent 27 0 R
-/Prev 38 0 R
-/Next 40 0 R
->>
-endobj
-40 0 obj
-<<
-/Title(\\logten)
-/A<<
-/S/GoTo
-/D(subsection.4.9)
->>
-/Parent 27 0 R
-/Prev 39 0 R
-/Next 41 0 R
->>
-endobj
-41 0 obj
-<<
-/Title(\\prettyprintnumber{NUM})
-/A<<
-/S/GoTo
-/D(subsection.4.10)
->>
-/Parent 27 0 R
-/Prev 40 0 R
-/Next 42 0 R
->>
-endobj
-42 0 obj
-<<
-/Title(\\axispreset{key=value,key=value})
-/A<<
-/S/GoTo
-/D(subsection.4.11)
->>
-/Parent 27 0 R
-/Prev 41 0 R
-/Next 43 0 R
->>
-endobj
-43 0 obj
-<<
-/Title(\\legendpreset{key=value,key=value})
-/A<<
-/S/GoTo
-/D(subsection.4.12)
->>
-/Parent 27 0 R
-/Prev 42 0 R
-/Next 44 0 R
->>
-endobj
-44 0 obj
-<<
-/Title(Axis options)
-/A<<
-/S/GoTo
-/D(subsection.4.13)
->>
-/Parent 27 0 R
-/Prev 43 0 R
-/Next 45 0 R
->>
-endobj
-45 0 obj
-<<
-/Title(execute at begin plot=COMMANDS)
-/A<<
-/S/GoTo
-/D(subsection.4.14)
->>
-/Parent 27 0 R
-/Prev 44 0 R
-/Next 46 0 R
->>
-endobj
-46 0 obj
-<<
-/Title(execute at end plot=COMMANDS)
-/A<<
-/S/GoTo
-/D(subsection.4.15)
->>
-/Parent 27 0 R
-/Prev 45 0 R
->>
-endobj
-27 0 obj
-<<
-/Title(Reference)
-/A<<
-/S/GoTo
-/D(section.4)
->>
-/Parent 10 0 R
-/Prev 21 0 R
-/First 28 0 R
-/Last 46 0 R
-/Count -15
-/Next 47 0 R
->>
-endobj
-48 0 obj
-<<
-/Title(Legend position)
-/A<<
-/S/GoTo
-/D(subsection.5.1)
->>
-/Parent 47 0 R
-/Next 49 0 R
->>
-endobj
-49 0 obj
-<<
-/Title(Font size and line width)
-/A<<
-/S/GoTo
-/D(subsection.5.2)
->>
-/Parent 47 0 R
-/Prev 48 0 R
-/Next 50 0 R
->>
-endobj
-51 0 obj
-<<
-/Title(Using another, predefined list)
-/A<<
-/S/GoTo
-/D(subsubsection.5.3.1)
->>
-/Parent 50 0 R
-/Next 52 0 R
->>
-endobj
-52 0 obj
-<<
-/Title(Defining new lists)
-/A<<
-/S/GoTo
-/D(subsubsection.5.3.2)
->>
-/Parent 50 0 R
-/Prev 51 0 R
->>
-endobj
-50 0 obj
-<<
-/Title(Changing line specifications)
-/A<<
-/S/GoTo
-/D(subsection.5.3)
->>
-/Parent 47 0 R
-/Prev 49 0 R
-/First 51 0 R
-/Last 52 0 R
-/Count -2
-/Next 53 0 R
->>
-endobj
-54 0 obj
-<<
-/Title(Placing ticks at 10i)
-/A<<
-/S/GoTo
-/D(subsubsection.5.4.1)
->>
-/Parent 53 0 R
-/Next 55 0 R
->>
-endobj
-55 0 obj
-<<
-/Title(Placing ticks anywhere)
-/A<<
-/S/GoTo
-/D(subsubsection.5.4.2)
->>
-/Parent 53 0 R
-/Prev 54 0 R
->>
-endobj
-53 0 obj
-<<
-/Title(Changing the ticks)
-/A<<
-/S/GoTo
-/D(subsection.5.4)
->>
-/Parent 47 0 R
-/Prev 50 0 R
-/First 54 0 R
-/Last 55 0 R
-/Count -2
-/Next 56 0 R
->>
-endobj
-57 0 obj
-<<
-/Title(Example: Placing Data Cursors)
-/A<<
-/S/GoTo
-/D(subsubsection.5.5.1)
->>
-/Parent 56 0 R
-/Next 58 0 R
->>
-endobj
-59 0 obj
-[5 0 R/XYZ 124.8 716.02 null]
-endobj
-60 0 obj
-<<
-/Type/Encoding
-/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/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/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/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/hungarumlaut/tilde/dieresis/suppress
-160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis]
->>
-endobj
-63 0 obj
-<<
-/Encoding 60 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F1
-/FontDescriptor 62 0 R
-/BaseFont/IBBKJS+CMR17
-/FirstChar 33
-/LastChar 196
-/Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9
-249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6
-249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6
-471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3
-693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8
-458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1
-510.9 484.7 667.6 484.7 484.7 406.4 458.6 917.2 458.6 458.6 458.6 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576 772.1 719.8 641.1 615.3 693.3
-667.6 719.8 667.6 719.8 0 0 667.6 525.4 499.3 499.3 748.9 748.9 249.6 275.8 458.6
-458.6 458.6 458.6 458.6 693.3 406.4 458.6 667.6 719.8 458.6 837.2 941.7 719.8 249.6
-458.6]
->>
-endobj
-66 0 obj
-<<
-/Encoding 60 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F2
-/FontDescriptor 65 0 R
-/BaseFont/YQTXGK+CMR9
-/FirstChar 33
-/LastChar 196
-/Widths[285.5 513.9 856.5 513.9 856.5 799.4 285.5 399.7 399.7 513.9 799.4 285.5 342.6
-285.5 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 285.5 285.5
-285.5 799.4 485.3 485.3 799.4 770.7 727.9 742.3 785 699.4 670.8 806.5 770.7 371 528.1
-799.2 642.3 942 770.7 799.4 699.4 799.4 756.5 571 742.3 770.7 770.7 1056.2 770.7
-770.7 628.1 285.5 513.9 285.5 513.9 285.5 285.5 513.9 571 456.8 571 457.2 314 513.9
-571 285.5 314 542.4 285.5 856.5 571 513.9 571 542.4 402 405.4 399.7 571 542.4 742.3
-542.4 542.4 456.8 513.9 1027.8 513.9 513.9 513.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 642.3 856.5 799.4 713.6 685.2 770.7 742.3 799.4
-742.3 799.4 0 0 742.3 599.5 571 571 856.5 856.5 285.5 314 513.9 513.9 513.9 513.9
-513.9 770.7 456.8 513.9 742.3 799.4 513.9 927.8 1042 799.4 285.5 513.9]
->>
-endobj
-69 0 obj
-<<
-/Encoding 60 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F3
-/FontDescriptor 68 0 R
-/BaseFont/BLCJKX+CMR12
-/FirstChar 33
-/LastChar 196
-/Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6
-489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4
-462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2
-734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6
-272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6
-544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6
-489.6 0 0 0 0 0 0 0 0 0 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.8 816
-761.6 679.6 652.8 734 707.2 761.6 707.2 761.6 0 0 707.2 571.2 544 544 816 816 272
-299.2 489.6 489.6 489.6 489.6 489.6 734 435.2 489.6 707.2 761.6 489.6 883.8 992.6
-761.6 272 489.6]
->>
-endobj
-70 0 obj
-<<
-/Type/Encoding
-/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/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/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft
-161/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus
-173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade]
->>
-endobj
-73 0 obj
-<<
-/Encoding 70 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F4
-/FontDescriptor 72 0 R
-/BaseFont/DKHFIY+CMSY8
-/FirstChar 33
-/LastChar 196
-/Widths[1062.5 531.3 531.3 1062.5 1062.5 1062.5 826.4 1062.5 1062.5 649.3 649.3 1062.5
-1062.5 1062.5 826.4 288.2 1062.5 708.3 708.3 944.5 944.5 0 0 590.3 590.3 708.3 531.3
-767.4 767.4 826.4 826.4 649.3 849.5 694.7 562.6 821.7 560.8 758.3 631 904.2 585.5
-720.1 807.4 730.7 1264.5 869.1 841.6 743.3 867.7 906.9 643.4 586.3 662.8 656.2 1054.6
-756.4 705.8 763.6 708.3 708.3 708.3 708.3 708.3 649.3 649.3 472.2 472.2 472.2 472.2
-531.3 531.3 413.2 413.2 295.1 531.3 531.3 649.3 531.3 295.1 885.4 795.8 885.4 443.6
-708.3 708.3 826.4 826.4 472.2 472.2 472.2 649.3 826.4 826.4 826.4 826.4 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 826.4 295.1 826.4 531.3 826.4
-531.3 826.4 826.4 826.4 826.4 0 0 826.4 826.4 826.4 1062.5 531.3 531.3 826.4 826.4
-826.4 826.4 826.4 826.4 826.4 826.4 826.4 826.4 826.4 826.4 1062.5 1062.5 826.4 826.4
-1062.5 826.4]
->>
-endobj
-76 0 obj
-<<
-/Encoding 60 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F5
-/FontDescriptor 75 0 R
-/BaseFont/CRIGBN+CMBX9
-/FirstChar 33
-/LastChar 196
-/Widths[360.2 617.6 986.1 591.7 986.1 920.4 328.7 460.2 460.2 591.7 920.4 328.7 394.4
-328.7 591.7 591.7 591.7 591.7 591.7 591.7 591.7 591.7 591.7 591.7 591.7 328.7 328.7
-360.2 920.4 558.8 558.8 920.4 892.9 840.9 854.6 906.6 776.5 743.7 929.9 924.4 446.3
-610.8 925.8 710.8 1121.6 924.4 888.9 808 888.9 886.7 657.4 823.1 908.6 892.9 1221.6
-892.9 892.9 723.1 328.7 617.6 328.7 591.7 328.7 328.7 575.2 657.4 525.9 657.4 543
-361.6 591.7 657.4 328.7 361.6 624.5 328.7 986.1 657.4 591.7 657.4 624.5 488.1 466.8
-460.2 657.4 624.5 854.6 624.5 624.5 525.9 591.7 1183.3 591.7 591.7 591.7 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 710.8 986.1 920.4 827.2
-788.9 924.4 854.6 920.4 854.6 920.4 0 0 854.6 690.3 657.4 657.4 986.1 986.1 328.7
-361.6 591.7 591.7 591.7 591.7 591.7 892.9 525.9 616.8 854.6 920.4 591.7 1071 1202.5
-920.4 328.7 591.7]
->>
-endobj
-77 0 obj
-<<
-/Type/Encoding
-/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/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/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/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/hungarumlaut/tilde/dieresis/suppress
-160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis]
->>
-endobj
-80 0 obj
-<<
-/Encoding 77 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F6
-/FontDescriptor 79 0 R
-/BaseFont/AJODVX+CMTI9
-/FirstChar 33
-/LastChar 196
-/Widths[314.8 527.8 839.5 786.1 839.5 787 314.8 419.8 419.8 524.7 787 314.8 367.3
-314.8 524.7 524.7 524.7 524.7 524.7 524.7 524.7 524.7 524.7 524.7 524.7 314.8 314.8
-314.8 787 524.7 524.7 787 763 722.5 734.6 775 696.3 670.1 794.1 763 395.7 538.9 789.2
-643.8 920.4 763 787 696.3 787 748.8 577.2 734.6 763 763 1025.3 763 763 629.6 314.8
-527.8 314.8 524.7 314.8 314.8 524.7 472.2 472.2 524.7 472.2 314.8 472.2 524.7 314.8
-314.8 472.2 262.3 839.5 577.2 524.7 524.7 472.2 432.9 419.8 341.1 550.9 472.2 682.1
-473.8 498.5 419.8 524.7 1049.4 524.7 524.7 524.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 643.8 839.5 787 710.5 682.1 763 734.6 787 734.6
-787 0 0 734.6 629.6 577.2 603.4 905.1 918.2 314.8 341.1 524.7 524.7 524.7 524.7 524.7
-850.9 472.2 550.9 734.6 734.6 524.7 906.2 1011.1 787 262.3 524.7]
->>
-endobj
-83 0 obj
-<<
-/Encoding 60 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F7
-/FontDescriptor 82 0 R
-/BaseFont/VUQQRW+CMBX12
-/FirstChar 33
-/LastChar 196
-/Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5
-562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6
-875 531.3 531.3 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8
-675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5
-687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.8 562.5 625 312.5
-343.8 593.8 312.5 937.5 625 562.5 625 593.8 459.5 443.8 437.5 625 593.8 812.5 593.8
-593.8 500 562.5 1125 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 675.9 937.5 875 787 750 879.6 812.5 875 812.5 875 0 0 812.5
-656.3 625 625 937.5 937.5 312.5 343.8 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1
-812.5 875 562.5 1018.5 1143.5 875 312.5 562.5]
->>
-endobj
-84 0 obj
-[5 0 R/XYZ 124.8 414.11 null]
-endobj
-87 0 obj
-<<
-/Encoding 60 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F8
-/FontDescriptor 86 0 R
-/BaseFont/BUJDGT+CMBX10
-/FirstChar 33
-/LastChar 196
-/Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4
-575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4
-869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900
-863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8
-319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9
-319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9
-511.1 575 1150 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 691.7 958.3 894.4 805.6 766.7 900 830.6 894.4 830.6 894.4 0 0 830.6 670.8
-638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4
-575 1041.7 1169.4 894.4 319.4 575]
->>
-endobj
-88 0 obj
-<<
-/Rect[123.8 401.05 203.91 409.97]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(section.1)
->>
->>
-endobj
-89 0 obj
-<<
-/Rect[123.8 379.14 197.67 388.06]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(section.2)
->>
->>
-endobj
-92 0 obj
-<<
-/Encoding 60 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F9
-/FontDescriptor 91 0 R
-/BaseFont/CJDJON+CMR10
-/FirstChar 33
-/LastChar 196
-/Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8
-500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8
-750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8
-680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8
-277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6
-500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000 500
-500 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 625 833.3
-777.8 694.4 666.7 750 722.2 777.8 722.2 777.8 0 0 722.2 583.3 555.6 555.6 833.3 833.3
-277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8
-277.8 500]
->>
-endobj
-93 0 obj
-<<
-/Rect[138.75 365.24 204.26 375.99]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.2.1)
->>
->>
-endobj
-94 0 obj
-<<
-/Rect[138.75 353.29 219.59 364.03]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.2.2)
->>
->>
-endobj
-95 0 obj
-<<
-/Rect[138.75 341.33 286.23 352.19]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.2.3)
->>
->>
-endobj
-96 0 obj
-<<
-/Type/Encoding
-/Differences[1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 11/breve/minus
-14/Zcaron/zcaron/caron/dotlessi/dotlessj/ff/ffi/ffl/notequal/infinity/lessequal/greaterequal/partialdiff/summation/product/pi/grave/quotesingle/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/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/bracketleft/backslash/bracketright/asciicircum/underscore/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/bar/braceright/asciitilde
-128/Euro/integral/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/Omega/radical/approxequal
-147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/Delta/lozenge/Ydieresis
-161/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]
->>
-endobj
-99 0 obj
-<<
-/Encoding 96 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F10
-/FontDescriptor 98 0 R
-/BaseFont/ISFSAG+NimbusMonL-Regu
-/FirstChar 1
-/LastChar 255
-/Widths[600 600 600 600 600 600 600 600 600 0 600 600 0 600 600 600 600 0 0 0 0 0
-0 0 0 0 0 0 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 0 0 600 600
-600 600 600 600 600 600 600 600 600 0 0 0 0 0 0 600 600 600 600 600 600 600 600 600
-600 0 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
->>
-endobj
-100 0 obj
-<<
-/Rect[138.75 329.38 319.16 340.23]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.2.4)
->>
->>
-endobj
-101 0 obj
-<<
-/Rect[138.75 317.42 340.88 328.28]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.2.5)
->>
->>
-endobj
-102 0 obj
-<<
-/Rect[138.75 305.47 410.76 316.32]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.2.6)
->>
->>
-endobj
-103 0 obj
-<<
-/Rect[138.75 293.51 267.3 304.37]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.2.7)
->>
->>
-endobj
-104 0 obj
-<<
-/Rect[138.75 282.03 354.09 292.41]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.2.8)
->>
->>
-endobj
-105 0 obj
-<<
-/Rect[123.8 259.64 258.45 270.5]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(section.3)
->>
->>
-endobj
-106 0 obj
-<<
-/Rect[138.75 247.69 212.17 258.54]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.3.1)
->>
->>
-endobj
-107 0 obj
-<<
-/Rect[138.75 235.73 281.16 246.59]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.3.2)
->>
->>
-endobj
-108 0 obj
-<<
-/Rect[138.75 223.77 240.82 234.63]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.3.3)
->>
->>
-endobj
-109 0 obj
-<<
-/Rect[138.75 211.82 242.64 222.68]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.3.4)
->>
->>
-endobj
-110 0 obj
-<<
-/Rect[138.75 199.86 219.06 210.72]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.3.5)
->>
->>
-endobj
-113 0 obj
-<<
-/Encoding 70 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F11
-/FontDescriptor 112 0 R
-/BaseFont/FARVFN+CMSY6
-/FirstChar 33
-/LastChar 196
-/Widths[1222.2 638.9 638.9 1222.2 1222.2 1222.2 963 1222.2 1222.2 768.5 768.5 1222.2
-1222.2 1222.2 963 365.7 1222.2 833.3 833.3 1092.6 1092.6 0 0 703.7 703.7 833.3 638.9
-898.1 898.1 963 963 768.5 989.9 813.3 678.4 961.2 671.3 879.9 746.7 1059.3 709.3
-846.3 938.8 854.5 1427.2 1005.7 973 878.4 1008.3 1061.4 762 711.3 774.4 785.2 1222.7
-883.7 823.9 884 833.3 833.3 833.3 833.3 833.3 768.5 768.5 574.1 574.1 574.1 574.1
-638.9 638.9 509.3 509.3 379.6 638.9 638.9 768.5 638.9 379.6 1000 924.1 1027.8 541.7
-833.3 833.3 963 963 574.1 574.1 574.1 768.5 963 963 963 963 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 963 379.6 963 638.9 963 638.9 963 963
-963 963 0 0 963 963 963 1222.2 638.9 638.9 963 963 963 963 963 963 963 963 963 963
-963 963 1222.2 1222.2 963 963 1222.2 963]
->>
-endobj
-114 0 obj
-<<
-/Rect[139.05 183.1 385.43 191.57]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[0 1 1]
-/A<<
-/S/URI
-/URI(http://wissrech.ins.uni-bonn.de/people/feuersaenger)
->>
->>
-endobj
-116 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 1617
->>
-stream
-xXY6 ~[+k3i3;]'iMۚȒ#x Ե6=>"G<g?ϼhyv.<s)2"y{'җ!;fPA6U .;[2boPlkp@PTm|~v.ǚ[HSi_ILU Z
-aY2
-T`2wOc,2
-㐉tb el
-+hNrɮM |;h_g1OdbC"2qDhm .rsFT@L,3]~Xo'e2863' ?H=o%@OF<oƖ#?NJ^k(RP!kunl&\NW9h>] >ErH%lG]Vw`x4ˡ])у%iQ#H9,1%3<KeVEBs?z*Vr)'@_@ ֖E<鼳eǸ{=ӕ#ɯTM"dB~kwߑ=$?QxW/<+^p&${Ȼҋ9=Jxh];;ɛˆ|/"ɮksv0ա0g`SG OUu7]69
-endstream
-endobj
-118 0 obj
-[88 0 R 89 0 R 93 0 R 94 0 R 95 0 R 100 0 R 101 0 R 102 0 R 103 0 R 104 0 R 105 0 R
-106 0 R 107 0 R 108 0 R 109 0 R 110 0 R 114 0 R]
-endobj
-119 0 obj
-<<
-/F1 63 0 R
-/F2 66 0 R
-/F3 69 0 R
-/F4 73 0 R
-/F5 76 0 R
-/F6 80 0 R
-/F7 83 0 R
-/F8 87 0 R
-/F9 92 0 R
-/F10 99 0 R
-/F11 113 0 R
->>
-endobj
-6 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 119 0 R
->>
-endobj
-122 0 obj
-<<
-/Rect[123.8 705.06 190.02 713.98]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(section.4)
->>
->>
-endobj
-123 0 obj
-<<
-/Rect[138.75 693.1 263.98 702.02]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.1)
->>
->>
-endobj
-124 0 obj
-<<
-/Rect[138.75 681.15 241.81 690.07]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.2)
->>
->>
-endobj
-125 0 obj
-<<
-/Rect[161.66 669.19 230.8 678.11]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsubsection.4.2.1)
->>
->>
-endobj
-126 0 obj
-<<
-/Rect[161.66 655.3 241.73 666.16]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsubsection.4.2.2)
->>
->>
-endobj
-129 0 obj
-<<
-/Encoding 70 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F12
-/FontDescriptor 128 0 R
-/BaseFont/SBJIRC+CMSY10
-/FirstChar 33
-/LastChar 196
-/Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8
-275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8
-611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9
-820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7
-666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8
-500 500 611.1 500 277.8 833.3 750 833.3 416.7 666.7 666.7 777.8 777.8 444.4 444.4
-444.4 611.1 777.8 777.8 777.8 777.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 0 0 777.8
-777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8
-777.8 777.8 1000 1000 777.8 777.8 1000 777.8]
->>
-endobj
-130 0 obj
-<<
-/Rect[138.75 642.79 294.17 654.76]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.3)
->>
->>
-endobj
-131 0 obj
-<<
-/Rect[138.75 630.84 240.37 642.8]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.4)
->>
->>
-endobj
-132 0 obj
-<<
-/Rect[138.75 618.88 286.2 630.84]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.5)
->>
->>
-endobj
-133 0 obj
-<<
-/Rect[138.75 606.93 292.18 618.89]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.6)
->>
->>
-endobj
-134 0 obj
-<<
-/Rect[161.66 595.53 279.01 606.38]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsubsection.4.6.1)
->>
->>
-endobj
-135 0 obj
-<<
-/Rect[161.66 583.57 268.3 594.43]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsubsection.4.6.2)
->>
->>
-endobj
-136 0 obj
-<<
-/Rect[138.75 571.06 264.28 583.02]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.7)
->>
->>
-endobj
-137 0 obj
-<<
-/Rect[138.75 559.11 262.29 571.07]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.8)
->>
->>
-endobj
-138 0 obj
-<<
-/Rect[138.75 547.15 204.51 559.11]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.9)
->>
->>
-endobj
-139 0 obj
-<<
-/Rect[138.75 535.2 298.16 547.16]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.10)
->>
->>
-endobj
-140 0 obj
-<<
-/Rect[138.75 523.24 351.95 535.2]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.11)
->>
->>
-endobj
-141 0 obj
-<<
-/Rect[138.75 511.29 363.91 523.25]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.12)
->>
->>
-endobj
-142 0 obj
-<<
-/Rect[138.75 499.88 218.01 510.63]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.13)
->>
->>
-endobj
-143 0 obj
-<<
-/Rect[138.75 488.4 342.99 498.49]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.14)
->>
->>
-endobj
-144 0 obj
-<<
-/Rect[138.75 476.44 331.03 486.33]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.15)
->>
->>
-endobj
-145 0 obj
-<<
-/Rect[123.8 454.06 216.87 464.91]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(section.5)
->>
->>
-endobj
-146 0 obj
-<<
-/Rect[138.75 442.1 232.76 452.96]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.5.1)
->>
->>
-endobj
-147 0 obj
-<<
-/Rect[138.75 432.08 268.74 441]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.5.2)
->>
->>
-endobj
-148 0 obj
-<<
-/Rect[138.75 418.19 284.71 429.05]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.5.3)
->>
->>
-endobj
-149 0 obj
-<<
-/Rect[161.66 406.24 324.39 417.09]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsubsection.5.3.1)
->>
->>
-endobj
-150 0 obj
-<<
-/Rect[161.66 394.28 273 405.14]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsubsection.5.3.2)
->>
->>
-endobj
-151 0 obj
-<<
-/Rect[138.75 382.32 245.63 393.18]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.5.4)
->>
->>
-endobj
-152 0 obj
-<<
-/Type/Encoding
-/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/omega/epsilon/theta1/pi1/rho1/sigma1/phi1/arrowlefttophalf/arrowleftbothalf/arrowrighttophalf/arrowrightbothalf/arrowhookleft/arrowhookright/triangleright/triangleleft/zerooldstyle/oneoldstyle/twooldstyle/threeoldstyle/fouroldstyle/fiveoldstyle/sixoldstyle/sevenoldstyle/eightoldstyle/nineoldstyle/period/comma/less/slash/greater/star/partialdiff/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/flat/natural/sharp/slurbelow/slurabove/lscript/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/dotlessi/dotlessj/weierstrass/vector/tie/psi
-160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/alpha/beta/gamma/delta/epsilon1/zeta/eta/theta/iota/kappa/lambda/mu/nu/xi/pi/rho/sigma/tau/upsilon/phi/chi/psi/tie]
->>
-endobj
-155 0 obj
-<<
-/Encoding 152 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F13
-/FontDescriptor 154 0 R
-/BaseFont/GUXPXF+CMMI7
-/FirstChar 33
-/LastChar 196
-/Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3
-339.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 585.3 339.3
-339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6
-506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6
-1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5
-594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6
-530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4 545.8 398.6 442 730.1 585.3 339.3
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 693.8 954.4 868.9
-797.6 844.5 935.6 886.3 677.6 769.8 716.9 0 0 880 742.7 647.8 600.1 519.2 476.1 519.8
-588.6 544.1 422.8 668.8 677.6 694.6 572.8 519.8 668 592.7 662 526.8 632.9 686.9 713.8
-756 339.3]
->>
-endobj
-156 0 obj
-<<
-/Rect[161.66 370.37 279.36 382.54]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsubsection.5.4.1)
->>
->>
-endobj
-157 0 obj
-<<
-/Rect[161.66 358.41 295.39 369.27]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsubsection.5.4.2)
->>
->>
-endobj
-158 0 obj
-<<
-/Rect[138.75 346.46 237.61 357.32]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.5.5)
->>
->>
-endobj
-159 0 obj
-<<
-/Rect[161.66 334.5 334.49 345.36]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsubsection.5.5.1)
->>
->>
-endobj
-160 0 obj
-<<
-/Rect[161.66 322.55 340.86 333.4]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsubsection.5.5.2)
->>
->>
-endobj
-161 0 obj
-[120 0 R/XYZ 124.8 308.54 null]
-endobj
-164 0 obj
-<<
-/Encoding 77 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F14
-/FontDescriptor 163 0 R
-/BaseFont/ICONLE+CMTI10
-/FirstChar 33
-/LastChar 196
-/Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8
-306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7
-306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6
-525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9
-743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7
-460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7
-460 664.4 463.9 485.6 408.9 511.1 1022.2 511.1 511.1 511.1 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 627.2 817.8 766.7 692.2 664.4 743.3 715.6
-766.7 715.6 766.7 0 0 715.6 613.3 562.2 587.8 881.7 894.4 306.7 332.2 511.1 511.1
-511.1 511.1 511.1 831.3 460 536.7 715.6 715.6 511.1 882.8 985 766.7 255.6 511.1]
->>
-endobj
-165 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2199
->>
-stream
-xZIsWV [ K#)V95U"$ `4DP`IFT.$[-=O~_$Fq0&0B6cYLXR 1mɏslB#bƤ{}qTt2 9
-5Q37b:yɷȧ$Ҳȷ:ʙ ء3/ps
-}vHwVR^ՐhZ񳤨82{Sy4t?A,#JOˮuߕi^VfcȨOO?_  p(?ZX=AR"KJQDZI"*?%Y#kEL,V=GE|8` yf2pDwlƌV{(ݔ' )! :H-T"Dmݺ E7PYtف9-ES ]RKj+i/eTWWo>rDXa1@Q gňTXS;QLlUQx
-zgwSx::'BM>5taN\oʢYoNY=}(Kڶ."+J
-'WUJEj^f)ñJ)V+5Sj/︎)QAjZ<ߤM~j[bKideV
-
-5nvC<_502 أ҃R_&z26Hlǐo23F߶e
-endstream
-endobj
-166 0 obj
-[122 0 R 123 0 R 124 0 R 125 0 R 126 0 R 130 0 R 131 0 R 132 0 R 133 0 R 134 0 R
-135 0 R 136 0 R 137 0 R 138 0 R 139 0 R 140 0 R 141 0 R 142 0 R 143 0 R 144 0 R 145 0 R
-146 0 R 147 0 R 148 0 R 149 0 R 150 0 R 151 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R]
-endobj
-167 0 obj
-<<
-/F8 87 0 R
-/F9 92 0 R
-/F12 129 0 R
-/F10 99 0 R
-/F13 155 0 R
-/F7 83 0 R
-/F14 164 0 R
->>
-endobj
-121 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 167 0 R
->>
-endobj
-170 0 obj
-[168 0 R/XYZ 124.8 716.02 null]
-endobj
-171 0 obj
-[168 0 R/XYZ 124.8 696.19 null]
-endobj
-172 0 obj
-[168 0 R/XYZ 124.8 572.26 null]
-endobj
-173 0 obj
-[168 0 R/XYZ 124.8 574.19 null]
-endobj
-174 0 obj
-<<
-/Rect[207.77 541.84 371.16 551.92]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[0 1 1]
-/A<<
-/S/URI
-/URI(http://www.gnu.org/licenses)
->>
->>
-endobj
-175 0 obj
-[168 0 R/XYZ 124.8 528.43 null]
-endobj
-178 0 obj
-<<
-/Encoding 152 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F15
-/FontDescriptor 177 0 R
-/BaseFont/DVYINZ+CMMI10
-/FirstChar 33
-/LastChar 196
-/Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500
-500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9
-750 758.5 714.7 827.9 738.2 643.1 786.2 831.3 439.6 554.5 849.3 680.6 970.1 803.5
-762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9
-388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6
-298.4 878 600.2 484.7 503.1 446.4 451.2 468.8 361.1 572.5 484.7 715.9 571.5 490.3
-465 322.5 384 636.5 500 277.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 615.3 833.3 762.8 694.4 742.4 831.3 779.9 583.3 666.7 612.2 0 0 772.4
-639.7 565.6 517.7 444.4 405.9 437.5 496.5 469.4 353.9 576.2 583.3 602.5 494 437.5
-570 517 571.4 437.2 540.3 595.8 625.7 651.4 277.8]
->>
-endobj
-179 0 obj
-[168 0 R/XYZ 124.8 482.15 null]
-endobj
-180 0 obj
-[168 0 R/XYZ 124.8 443.83 null]
-endobj
-181 0 obj
-[168 0 R/XYZ 124.8 445.77 null]
-endobj
-182 0 obj
-[168 0 R/XYZ 124.8 433.82 null]
-endobj
-183 0 obj
-[168 0 R/XYZ 124.8 421.86 null]
-endobj
-184 0 obj
-[168 0 R/XYZ 124.8 409.91 null]
-endobj
-185 0 obj
-[168 0 R/XYZ 124.8 397.95 null]
-endobj
-186 0 obj
-[168 0 R/XYZ 124.8 386 null]
-endobj
-187 0 obj
-[168 0 R/XYZ 124.8 374.04 null]
-endobj
-188 0 obj
-[168 0 R/XYZ 124.8 362.09 null]
-endobj
-189 0 obj
-[168 0 R/XYZ 124.8 350.13 null]
-endobj
-190 0 obj
-[168 0 R/XYZ 124.8 338.17 null]
-endobj
-191 0 obj
-[168 0 R/XYZ 124.8 326.22 null]
-endobj
-192 0 obj
-[168 0 R/XYZ 124.8 290.35 null]
-endobj
-193 0 obj
-[168 0 R/XYZ 124.8 290.35 null]
-endobj
-196 0 obj
-<<
-/Encoding 96 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F16
-/FontDescriptor 195 0 R
-/BaseFont/OUBFPH+NimbusMonL-Bold
-/FirstChar 1
-/LastChar 255
-/Widths[600 600 600 600 600 600 600 600 600 0 600 600 0 600 600 600 600 0 0 0 0 0
-0 0 0 0 0 0 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 0 0 600 600
-600 600 600 600 600 600 600 600 600 0 0 0 0 0 0 600 600 600 600 600 600 600 600 600
-600 0 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
->>
-endobj
-199 0 obj
-<<
-/Encoding 60 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F17
-/FontDescriptor 198 0 R
-/BaseFont/UKKDSB+CMR7
-/FirstChar 33
-/LastChar 196
-/Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9
-323.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 569.4 323.4 323.4
-323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3
-874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3
-692.5 323.4 569.4 323.4 569.4 323.4 323.4 569.4 631 507.9 631 507.9 354.2 569.4 631
-323.4 354.2 600.2 323.4 938.5 631 569.4 631 600.2 446.4 452.6 446.4 631 600.2 815.5
-600.2 600.2 507.9 569.4 1138.9 569.4 569.4 569.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706.4 938.5 877 781.8 754 843.3 815.5 877 815.5
-877 0 0 815.5 677.6 646.8 646.8 970.2 970.2 323.4 354.2 569.4 569.4 569.4 569.4 569.4
-843.3 507.9 569.4 815.5 877 569.4 1013.9 1136.9 877 323.4 569.4]
->>
-endobj
-200 0 obj
-[168 0 R/XYZ 124.8 232.63 null]
-endobj
-201 0 obj
-[168 0 R/XYZ 124.8 194.32 null]
-endobj
-202 0 obj
-[168 0 R/XYZ 124.8 196.26 null]
-endobj
-203 0 obj
-[168 0 R/XYZ 124.8 158.45 null]
-endobj
-204 0 obj
-[168 0 R/XYZ 124.8 160.39 null]
-endobj
-205 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 1596
->>
-stream
-xڝnFޯБg%crFTI {ߛ7CQm4'μyΞ|Eۇ<qŤM@( B"'΅Eݤy6YY;8ZΒCG,qK}tQgII/aI4~oc&c?Yeu c魫rYtqE5W/"/b/i(E,-nli,yKŻeE燲?
-x`{>\% oeD>TyN.G9n?ߞ14ăL#%A"Rn
-MJm0„ENwHe8EyIBci}|QQ@ 9(\3muf +g%l
-C1,]k
-Xn?ίe0Ab
-oJÊiqˀ zY`Iݡ t] csiJhi<+_Z{^!;.ˠ}M0\ v怪¾Z=ƐNL緋Y-E8;S>W>I͑Uf&Ɋ:,p3URh=v{l*aSvn:[ w-=z҄aru|u}7%Ԏ$s Z? L*Kcb~>;;-vwlds{8c 88z~@f';s
-2 oj䇋Nj;~B_
-P|DDsȵ(
-endstream
-endobj
-206 0 obj
-[174 0 R]
-endobj
-207 0 obj
-<<
-/F7 83 0 R
-/F9 92 0 R
-/F10 99 0 R
-/F12 129 0 R
-/F15 178 0 R
-/F16 196 0 R
-/F17 199 0 R
->>
-endobj
-169 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 207 0 R
->>
-endobj
-210 0 obj
-[208 0 R/XYZ 124.8 632.34 null]
-endobj
-211 0 obj
-[208 0 R/XYZ 124.8 562.03 null]
-endobj
-212 0 obj
-[208 0 R/XYZ 124.8 466.12 null]
-endobj
-213 0 obj
-<<
-/Rect[201.26 409.34 436.39 419.43]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[0 1 1]
-/A<<
-/S/URI
-/URI(http://www.ctan.org/installationadvice/)
->>
->>
-endobj
-214 0 obj
-[208 0 R/XYZ 124.8 383.98 null]
-endobj
-215 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2355
->>
-stream
-xڵYK۸Wfj sr2ƩTʕպ6IU84bL
-I<ۍHhɉx58YgZ~g9lIt>[i1[#Z|&2ۢ{*?/?$S3gfcY7H8SUw)k\Lg1q@0yC8H;~~q4tzu3D*ژmqzthi1p(]Gbۛv"D#m,vi)Z,gP$v1,8oUwv
-u%q$BKQ +Z*Msl;vԜ/S#rT ͩ9
-̬U@1(nG^_T8AѦlͺothbEҧ?naiJ+$^_?ib܊-zK,آjMyκܾ(Ffo@y,Go8)uQcCG`1"P;N
-PΐMs1t&2Am9Ez0N`
-R27ǧZX:2 b`T'lIoA$$+&7|`$-2(s&["%8 K0WsidZvDHb#g\G| Zew_dBtDYPqJ%7iÛk2E(0``hTcJa*>]p}v y¤tޤ.zqM\`MfʂL=C@rN2x; Վh@hq y`TZ#&n"󁑮ػ]'Cǂޝb 8k
- j |-˴90T0Bc=S"zev%v=_|= ㅀ4)EB%,aMO#\jȳ =I~Cɰ{0F[;0OeĪd
-N`L,N(;҈0gض.z48Ƈv77:C/jIhY=†6 %57sbltb뾨2O\ex` '?;΢ryoZW M'E̱'=\PZݻJ'%,s~70q{|ȖиAOq49 vN
-KaW/!^7ПOȇ"%AF5!٪O ( =´80VFgOlAHz;_(}q
-
-(/
-endstream
-endobj
-216 0 obj
-[213 0 R]
-endobj
-217 0 obj
-<<
-/F9 92 0 R
-/F10 99 0 R
-/F17 199 0 R
-/F7 83 0 R
-/F16 196 0 R
-/F12 129 0 R
-/F14 164 0 R
->>
-endobj
-209 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 217 0 R
->>
-endobj
-220 0 obj
-[218 0 R/XYZ 170.43 517.47 null]
-endobj
-221 0 obj
-[218 0 R/XYZ 124.8 409.43 null]
-endobj
-222 0 obj
-[218 0 R/XYZ 149.71 411.92 null]
-endobj
-223 0 obj
-[218 0 R/XYZ 149.71 399.97 null]
-endobj
-226 0 obj
-<<
-/Encoding 96 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F18
-/FontDescriptor 225 0 R
-/BaseFont/IBYHQV+NimbusMonL-ReguObli
-/FirstChar 1
-/LastChar 255
-/Widths[600 600 600 600 600 600 600 600 600 0 600 600 0 600 600 600 600 0 0 0 0 0
-0 0 0 0 0 0 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 0 0 600 600
-600 600 600 600 600 600 600 600 600 0 0 0 0 0 0 600 600 600 600 600 600 600 600 600
-600 0 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
-600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
->>
-endobj
-227 0 obj
-[218 0 R/XYZ 149.71 388.01 null]
-endobj
-228 0 obj
-[218 0 R/XYZ 149.71 376.06 null]
-endobj
-229 0 obj
-<<
-/Rect[306.97 321.26 313.95 329.68]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[0 1 0]
-/A<<
-/S/GoTo
-/D(cite.tikz)
->>
->>
-endobj
-230 0 obj
-[218 0 R/XYZ 124.8 293.35 null]
-endobj
-231 0 obj
-[218 0 R/XYZ 124.8 264.7 null]
-endobj
-232 0 obj
-[218 0 R/XYZ 124.8 227.24 null]
-endobj
-233 0 obj
-[218 0 R/XYZ 124.8 229.18 null]
-endobj
-234 0 obj
-[218 0 R/XYZ 124.8 217.22 null]
-endobj
-235 0 obj
-[218 0 R/XYZ 124.8 205.27 null]
-endobj
-236 0 obj
-[218 0 R/XYZ 124.8 193.31 null]
-endobj
-237 0 obj
-[218 0 R/XYZ 124.8 181.36 null]
-endobj
-238 0 obj
-[218 0 R/XYZ 124.8 169.4 null]
-endobj
-239 0 obj
-[218 0 R/XYZ 124.8 157.45 null]
-endobj
-240 0 obj
-[218 0 R/XYZ 124.8 145.49 null]
-endobj
-241 0 obj
-[218 0 R/XYZ 124.8 133.53 null]
-endobj
-242 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2678
->>
-stream
-x[o8W,
-)9GJ %N'd_'lB0&3!M7ˉ\&8=y)9{sɏKMiGr=p/>5$\D8&OdکEbNfj¬|9j0eͣ:+Ƚ}ICˀ<S_œmD\Cc1abXZ(gvb-j1`/+v[F(㹄gAb(gj}d$z44I0rf'-\P%FgHN #rbۗat'N3q"&18ebtbH$Th޾\ ;(gvbϜ L[V #4crILٓ{&-K>j@@=PKN8UO<rQn(݊=wHkA$S&->
-ӝ`;jkcZ㠶 cuDS#D4Q@=sPsFeFE@4DPu}W;w;:u-be]k'eSŵ6Roq%i8L:Ҽ ?c䒡u 1
-ˌ9V`Μ&9hމ)N]q
-GtSM]o>D=4'N@o"(0YП\>B+COފE=J]Q
-G tI=(>B C,wVGz>УΟqFq,a¹H7R0QgyQ2¥,i0OD')cY(FU1 r fU'r<?8>> -Jy+(e=G35#V+<i\9Bs럭T\Xcyl_JL|pf/Y5BRviX^Va{G݊cg'n`{e3t:B|]ȨWܸ$q?A-؀%QCD+jAy*i
-a PPAC=\SyW|<#RÌ,=o<`?jqfM㐄Zs𔥜pcY埭Q|<듔VG
-&
-ŻP:>ϸn;(e]mKG
-eVh_ooα_<sTXཋק4?\ 6'܎jjG﷯$>.WfgEŲ'K8hٶOTx3W0=hZ7`42ߴ[kvSd<[A#>I(\:ƊJvwX|Xov-
-Sc
-c32K~<( s'6UFR.Lu 86ˮ;6\B xc;t7 ݘITl~خ !,_3l0x7!
-endstream
-endobj
-243 0 obj
-[229 0 R]
-endobj
-244 0 obj
-<<
-/F9 92 0 R
-/F12 129 0 R
-/F14 164 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F18 226 0 R
-/F7 83 0 R
->>
-endobj
-219 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 244 0 R
->>
-endobj
-247 0 obj
-[245 0 R/XYZ 171.32 516.96 null]
-endobj
-248 0 obj
-[245 0 R/XYZ 124.8 472.62 null]
-endobj
-249 0 obj
-[245 0 R/XYZ 124.8 460.67 null]
-endobj
-250 0 obj
-[245 0 R/XYZ 124.8 448.71 null]
-endobj
-251 0 obj
-[245 0 R/XYZ 124.8 436.76 null]
-endobj
-252 0 obj
-[245 0 R/XYZ 124.8 424.8 null]
-endobj
-253 0 obj
-[245 0 R/XYZ 124.8 412.85 null]
-endobj
-254 0 obj
-[245 0 R/XYZ 124.8 400.89 null]
-endobj
-255 0 obj
-<<
-/Rect[334.66 370.01 341.64 378.43]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.1)
->>
->>
-endobj
-256 0 obj
-<<
-/Rect[362.63 358.05 369.61 366.47]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[0 1 0]
-/A<<
-/S/GoTo
-/D(cite.tikz)
->>
->>
-endobj
-257 0 obj
-[245 0 R/XYZ 124.8 333.15 null]
-endobj
-258 0 obj
-<<
-/Rect[154.55 299.82 161.53 308.24]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.2)
->>
->>
-endobj
-259 0 obj
-[245 0 R/XYZ 124.8 282.89 null]
-endobj
-260 0 obj
-[245 0 R/XYZ 124.8 282.89 null]
-endobj
-261 0 obj
-[245 0 R/XYZ 124.8 270.93 null]
-endobj
-262 0 obj
-[245 0 R/XYZ 124.8 258.97 null]
-endobj
-263 0 obj
-[245 0 R/XYZ 124.8 247.02 null]
-endobj
-264 0 obj
-[245 0 R/XYZ 124.8 235.06 null]
-endobj
-265 0 obj
-[245 0 R/XYZ 124.8 223.11 null]
-endobj
-266 0 obj
-[245 0 R/XYZ 124.8 211.15 null]
-endobj
-267 0 obj
-[245 0 R/XYZ 124.8 199.2 null]
-endobj
-268 0 obj
-[245 0 R/XYZ 124.8 187.24 null]
-endobj
-269 0 obj
-[245 0 R/XYZ 124.8 175.29 null]
-endobj
-270 0 obj
-[245 0 R/XYZ 124.8 163.33 null]
-endobj
-271 0 obj
-[245 0 R/XYZ 124.8 151.38 null]
-endobj
-272 0 obj
-[245 0 R/XYZ 124.8 139.42 null]
-endobj
-273 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 3565
->>
-stream
-x]Yo#7~_Gp3,&3<(m#DD` ߷fm;Df.WkF Y,36/1&3gf6(.f\~9!?;<.iGyzPݤPᬚ}ȴh"J1ag0ke6/'h7['qS<2LJqhS/a.(QêG;,PXn|8aHk/˙=rx
->Ҫti,PIݾv&-+@}uԧԒNUG̗_Jwl )SiS@VQ-Y03tځ˜ֲ
-P[G45Bdu̘=cP|92&#@
-P>LA-'cƬ#=cޙt-7/ :ֺyĕJ988ŵ6S Nq%Ґ8H&t%o sP+.Z_3(3Zr'ib,{vSyt&k\o>ɂC2i.~n Y [&g=KIK]U
-?' sh2<GY9N)#\*
-?˕)s<0Qs2[mh}&?=7"yǕJY"(RwXZѲL,/,X~zXڹώ+EX女pg{[P䣙Q7ɤk…< N[2i%1ZnfiVp"a<ɬK`t-C YG\07c!PoxcXF mв\Q-94^j0X3n8QA:G+KWgTuwyNBW,*Bx3q (4Lmȩ^vP,XWO 2J
-i!a3dx2&^lҩk=oIs]c'b R<W#Os4i.Ǘ+\F]Os
-A$n) CNtTI$-^w-& dQQ;_aʷeTGa/:`JٖՉF2i .ʸ,؟ b%7ԉ oG۲$+c1O7c33~ib?2j´֮Y䂤1߲܀O
-NRi WUPm_P'>K ´D+Uu_^Z^HCLB:Sşl;9и5v1_cY8 UH-[C6ܕ1~+̦KZ d $^23Sp@bqQ\;/HYP7R53Oc}_Ȩwڏ%Ufd%=|!}bm|WHv $K .@Zv25lB"dZ#6&a-:GՓ4UYsDۉ$Qgcbr6[gb.k)GuMM# m^b:>6TLR1CHo'm <\771.8)R] \Jw43I``kgehm4iqRߤ],v"Ikb Kl'&q37~nui@\"3n;Oq=-ebE_VrV_ft-<_ka]\$`mۖv$ ^[m߹
-g֪m6u75f{Ѹ S>AN7;&Tpn:<9LKsNE%M#(2;JÌb@l4LOVyɿ}䱶ĶZުwi-hf7#m
-KGTqUB>j۰o`{ c b}W[P
-vI>o/4wׂb6x
-b77 F8oRnBO:<+FAɼ.m[F`AXpj͔sN}?^V7 ߯:@^P-O
-endstream
-endobj
-274 0 obj
-[255 0 R 256 0 R 258 0 R]
-endobj
-275 0 obj
-<<
-/F9 92 0 R
-/F12 129 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F14 164 0 R
-/F7 83 0 R
->>
-endobj
-246 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 275 0 R
->>
-endobj
-278 0 obj
-[276 0 R/XYZ 259.92 516.17 null]
-endobj
-279 0 obj
-[276 0 R/XYZ 124.8 484.35 null]
-endobj
-280 0 obj
-[276 0 R/XYZ 124.8 472.39 null]
-endobj
-281 0 obj
-[276 0 R/XYZ 124.8 460.44 null]
-endobj
-282 0 obj
-[276 0 R/XYZ 124.8 448.48 null]
-endobj
-283 0 obj
-[276 0 R/XYZ 124.8 436.53 null]
-endobj
-284 0 obj
-[276 0 R/XYZ 124.8 424.57 null]
-endobj
-285 0 obj
-[276 0 R/XYZ 124.8 412.62 null]
-endobj
-286 0 obj
-[276 0 R/XYZ 124.8 400.66 null]
-endobj
-287 0 obj
-[276 0 R/XYZ 124.8 388.71 null]
-endobj
-288 0 obj
-[276 0 R/XYZ 124.8 376.75 null]
-endobj
-289 0 obj
-[276 0 R/XYZ 124.8 364.8 null]
-endobj
-290 0 obj
-[276 0 R/XYZ 124.8 352.84 null]
-endobj
-291 0 obj
-[276 0 R/XYZ 124.8 340.89 null]
-endobj
-292 0 obj
-[276 0 R/XYZ 124.8 328.93 null]
-endobj
-293 0 obj
-[276 0 R/XYZ 124.8 293.47 null]
-endobj
-294 0 obj
-<<
-/Rect[151.48 251.76 158.46 260.19]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.3)
->>
->>
-endobj
-295 0 obj
-[276 0 R/XYZ 124.8 232.89 null]
-endobj
-296 0 obj
-[276 0 R/XYZ 124.8 234.83 null]
-endobj
-297 0 obj
-[276 0 R/XYZ 124.8 222.88 null]
-endobj
-298 0 obj
-[276 0 R/XYZ 124.8 210.92 null]
-endobj
-299 0 obj
-[276 0 R/XYZ 124.8 198.97 null]
-endobj
-300 0 obj
-[276 0 R/XYZ 124.8 187.01 null]
-endobj
-301 0 obj
-[276 0 R/XYZ 124.8 175.06 null]
-endobj
-302 0 obj
-[276 0 R/XYZ 124.8 163.1 null]
-endobj
-303 0 obj
-[276 0 R/XYZ 124.8 151.15 null]
-endobj
-304 0 obj
-[276 0 R/XYZ 124.8 139.19 null]
-endobj
-305 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 3323
->>
-stream
-x[o+xId·h:@Qu#Q.hТ#JS#$14-+ܝwyqȝprf1OL̙\)ɬLO<gaX=Sv';y{}0A<'U~.c*x3ys,2L{-ut5yHB<sBJ?YJi¹PS;g
-߽R]~336nӣqS
-XT#c3ޫ=D e%RQ`\ `0YZf ʨ(QFY 3cbf8#'~*%(+aFrLC_a֯C hCOS_TKb`'mǔQH6(wv \0
-nw[ L,jed+l@A͇Zp 8 l0ރp 8 X|e(Я2?A$ `8e(Яr' Ap0
-88bQWi~c4 ̽gHv
-;!s_ܣZ +l@a&Fdasaj7 sh.ш s Z
-9 @n_sxG@
-9}<^Pt:VAAa
-+:X=J<X-`@Ik@0
-9 @>wu0 бzP`HxJ2WӁ'f%:X=+3GO:V?zaZ`a@Ik@@
-6ZpܔM)f{v7 ֗y@q)K8ISTm~Gu֕Ouuku7 h0d.aF5.o'Q<U_&1mMLM/6/wzu=z|Lܵ8#Tѯ2ҝQ6gghfv9{FY:JlNN&&'s|X]-n(8T(mϦr6?;ّNKfsh8w;jCK.5)cKhfsW4]B;[w&g빘̺010 2ЄkWJ5 隡IݔI-,Ml\^]z]\WysEM6׸2,];]*p,>9nv h.A+cܬ~ 5_(d~V]~YK铩y?4Qg
-mSqL;-E'r}9n=A1SnLҔ};x2y-?ZZwΦ6GGղ}{;rqRl/Ơyhi56^[􏅿Uwjө2jTob ,N;{rپzn[Wl\[O_,y*ewZ^iJP:}iiyMi@_WsU{߶5g ԗۺ[EB|0XnϯWoVxSm7s:DiohmeVWē7ZOݙxkŋ9]݅3׋e|q{Uc;x*ɼzuJ;L |]5:>GWbyV;WԮ:iNTcoHK:~ؑZ~hpw71jRg4*{L, gR,4|&ٙwJLk)gό؝N$yeP8u+d{wnFٲ
-endstream
-endobj
-306 0 obj
-[294 0 R]
-endobj
-307 0 obj
-<<
-/F9 92 0 R
-/F17 199 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F7 83 0 R
-/F15 178 0 R
-/F12 129 0 R
-/F13 155 0 R
->>
-endobj
-277 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 307 0 R
->>
-endobj
-312 0 obj
-<<
-/Encoding 70 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F19
-/FontDescriptor 311 0 R
-/BaseFont/MBZCQL+CMSY7
-/FirstChar 33
-/LastChar 196
-/Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9
-1138.9 1138.9 892.9 329.4 1138.9 769.8 769.8 1015.9 1015.9 0 0 646.8 646.8 769.8
-585.3 831.4 831.4 892.9 892.9 708.3 917.6 753.4 620.2 889.5 616.1 818.4 688.5 978.6
-646.5 782.1 871.7 791.7 1342.7 935.6 905.8 809.2 935.9 981 702.2 647.8 717.8 719.9
-1135.1 818.9 764.4 823.1 769.8 769.8 769.8 769.8 769.8 708.3 708.3 523.8 523.8 523.8
-523.8 585.3 585.3 462.3 462.3 339.3 585.3 585.3 708.3 585.3 339.3 938.5 859.1 954.4
-493.6 769.8 769.8 892.9 892.9 523.8 523.8 523.8 708.3 892.9 892.9 892.9 892.9 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 892.9 339.3 892.9 585.3
-892.9 585.3 892.9 892.9 892.9 892.9 0 0 892.9 892.9 892.9 1138.9 585.3 585.3 892.9
-892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 892.9 1138.9 1138.9 892.9
-892.9 1138.9 892.9]
->>
-endobj
-313 0 obj
-[308 0 R/XYZ 206.59 517.41 null]
-endobj
-314 0 obj
-[308 0 R/XYZ 124.8 485.58 null]
-endobj
-315 0 obj
-[308 0 R/XYZ 124.8 473.62 null]
-endobj
-316 0 obj
-[308 0 R/XYZ 124.8 461.67 null]
-endobj
-317 0 obj
-[308 0 R/XYZ 124.8 449.71 null]
-endobj
-318 0 obj
-<<
-/Rect[254.51 394.92 261.49 403.34]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.4)
->>
->>
-endobj
-319 0 obj
-[308 0 R/XYZ 124.8 388 null]
-endobj
-320 0 obj
-[308 0 R/XYZ 124.8 389.94 null]
-endobj
-321 0 obj
-[308 0 R/XYZ 124.8 377.98 null]
-endobj
-322 0 obj
-[308 0 R/XYZ 124.8 366.03 null]
-endobj
-323 0 obj
-[308 0 R/XYZ 124.8 354.07 null]
-endobj
-324 0 obj
-[308 0 R/XYZ 124.8 342.12 null]
-endobj
-325 0 obj
-[308 0 R/XYZ 124.8 330.16 null]
-endobj
-326 0 obj
-[308 0 R/XYZ 124.8 318.21 null]
-endobj
-327 0 obj
-[308 0 R/XYZ 124.8 306.25 null]
-endobj
-328 0 obj
-[308 0 R/XYZ 124.8 294.3 null]
-endobj
-329 0 obj
-[308 0 R/XYZ 124.8 282.34 null]
-endobj
-330 0 obj
-[308 0 R/XYZ 124.8 270.39 null]
-endobj
-331 0 obj
-[308 0 R/XYZ 124.8 258.43 null]
-endobj
-332 0 obj
-[308 0 R/XYZ 124.8 246.48 null]
-endobj
-333 0 obj
-[308 0 R/XYZ 124.8 234.52 null]
-endobj
-334 0 obj
-[308 0 R/XYZ 124.8 222.57 null]
-endobj
-335 0 obj
-[308 0 R/XYZ 124.8 210.61 null]
-endobj
-336 0 obj
-[308 0 R/XYZ 124.8 198.66 null]
-endobj
-337 0 obj
-[308 0 R/XYZ 124.8 186.7 null]
-endobj
-338 0 obj
-[308 0 R/XYZ 124.8 174.75 null]
-endobj
-339 0 obj
-[308 0 R/XYZ 124.8 162.79 null]
-endobj
-340 0 obj
-[308 0 R/XYZ 124.8 150.84 null]
-endobj
-341 0 obj
-[308 0 R/XYZ 124.8 138.88 null]
-endobj
-342 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 5792
->>
-stream
-x]r7WԒ1a=E{٩Y^-37EpS,J82ŬP0D"qpuo")ܼ }Om„ͩ Bfrc6(͗>*mH~woOċ_/>P,/ۇue{ӕM׽UopA9U्y nsSɋ|Xeyud_K*%]nz9cqzgq$tbsPA)a] !=֡LʫpeS1enhM#spx@Hau(ㅗi\Ĕi@L[2Ix-}ĕa@LĔiU(c41Xa@H[2Ĕi@L[2^mf3)Ӏ2
-e>«T~*?
-/6 'NS1F$)UwxtR?z
-j)hf@Htau(d[\Ĕi@L[2V>À2 )pûB]CvVO<|mOG81xpqD24"3 67 67*H(&+Á2 )pP&Y {)À2 e 1 eS1env
-6Ab[v۳ˀ+QljԌ Ӑ: u" iƞ T!Aup%/lAo0$HC4J:;gHPiuD}BqƏ>qCsQɚcqFs 4hTϘ+  l#wv+)Ð6 uƅ;}&HLaRf[Α: ӀPҢ3^C 1uSWQ<O: Ӏ+Q מ'HPigƼÑ: ӀPQ6;Ð: pG{Pcc1k}D^`+3gfHpnHpnuLވGb0$C sb4 &MíD'T3^ AmWN
-s$NC4JU"ZÁxZlD+3^ AeԦWބNO: Ӏ+Q'
-mwT!Aup%axXq1b>N_t 8=cҴ3?&cĆ{\Rՙ ;bWN6P!AuTס2B9'M: À+Q&V3@P
-(C^̌9#AmW*-lr3a@+U~VA9GiHP\:^x'՜ϻ1$NC4:BC :#EHQA(U*#%+dŒ=(0v>*FHe)8T 1._bU@e@> x
-Tٚ*}!ƥlgR>b1*x~1x|l
-}Wa䌱[1%tTa* [S[*V$0P-_WPW@U06
-ķxU|JU
-Tٚ*UqJ`lLo3Oz
-T"{
-Uؘ*Uv6
-]U
-TL|"7|4+;&c0p. 4ffmB"@M06&
-ķxUY:T
-T:81U ūb¯U
-T2x+1U B7GV
-T&ݝ
-Uؘ*U"aA@\Lm
-⓸5,@%E14Du @I8*
-dk2ƷYKMψ0P9šhola)?;jD ?LiD \m{D~(UPmoGؖG8'55tw@\l¶G">smk.2賨W\[p!l˟مqJ3'rkyP1t3NJ2 }ͱq3QhEAz\UmGO(L)-]y1y!u)8pWaz@LMkjX_- L p-^ OEgUQWb["Q`ƪ(L)-]~fHc> ayoѱcts;p_{ӓ7OIE4";'K2)mN-%zv˜BZ}ƑUj8KZ%'Ƴw֕ÏwTDjCHeD!%G`z|z)p+1Hu2[mSSWp(_,e#(l03:I5UJ{7+8sF}ZNs?WN4&PR!D-LG fw\ɍ@Z!RS4FezZϧzHklJ
-j&*dfc fT~ntdk8<;ܘ&u1/DKy8-LSaQMI[ZNLBiꁜ4AM$`55҇~^sa΋~(QSbgH%Oa꒔>hSyq 6bX#i<yY<!Ώ
-kkec;c" A
-4c8Z{/+iuxڙc(*ysޱ=6;5oSw yl{2=ru>-ו}ۊwfyKzjBKҏfo A(b}6tPb:i3쩤qΣJ~,eۋƘǎ9#5^ yղ}{Zlo}`yWڝn>0F]cQ,7&CUJ:8 /SJ_>)5[!>I;W8-%wy
-UmEU{TM
- mW]J}ٓfSIFj~:T?>q=4i)?I
-v`.rS epgsΥO^ſnߜ]t}yWc9y3'i"nn/oo:绵+%kT*rF vN[(8;.kc9m#ǣ/n^o/Lz6HooAcp_~<'~5_ش](eQ<9?AN.ߎoqˡƁi3?yXB+m?f?.__7}d4?e2N~>/6pnk?W۽ӭ+[fp{{;]24jBxՅ!ه^,I݄x^~4ڄ8{;栅iɎ֚?o/_vvŘg0)%i<5voI"H<Vqvze(:xw, O6L0"{W[+hW'-4ˤD0䇋7c+}>$5{b?4eo ?oWg?\\}C֟Ȩ!?njC7I8yן]߾q܎ۻח7goDŽomGUGTN0miũԓA:?.Ϗ:hT!hv#-+HJ%UG) ](VSLnxj r*ڧD16BW$vx)ƁD'Å
-4o Q ̐dx2u'msgΙrC?~bl,?Α T>ݫQCuT+Dq *DcK//L~\&(b!TJ5dK8H*ȼX{6M^=)}3:/N}?V'll
-endstream
-endobj
-343 0 obj
-[318 0 R]
-endobj
-344 0 obj
-<<
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F15 178 0 R
-/F12 129 0 R
->>
-endobj
-309 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 344 0 R
->>
-endobj
-347 0 obj
-[345 0 R/XYZ 124.8 718.01 null]
-endobj
-348 0 obj
-[345 0 R/XYZ 124.8 706.06 null]
-endobj
-349 0 obj
-[345 0 R/XYZ 124.8 694.1 null]
-endobj
-350 0 obj
-[345 0 R/XYZ 124.8 682.15 null]
-endobj
-351 0 obj
-[345 0 R/XYZ 124.8 670.19 null]
-endobj
-352 0 obj
-[345 0 R/XYZ 124.8 658.24 null]
-endobj
-353 0 obj
-[345 0 R/XYZ 124.8 646.28 null]
-endobj
-354 0 obj
-[345 0 R/XYZ 124.8 634.33 null]
-endobj
-355 0 obj
-[345 0 R/XYZ 124.8 464.61 null]
-endobj
-356 0 obj
-[345 0 R/XYZ 124.8 464.61 null]
-endobj
-357 0 obj
-[345 0 R/XYZ 124.8 452.65 null]
-endobj
-358 0 obj
-[345 0 R/XYZ 124.8 440.7 null]
-endobj
-359 0 obj
-[345 0 R/XYZ 124.8 391.3 null]
-endobj
-360 0 obj
-[345 0 R/XYZ 124.8 393.24 null]
-endobj
-361 0 obj
-[345 0 R/XYZ 124.8 381.28 null]
-endobj
-362 0 obj
-[345 0 R/XYZ 124.8 369.33 null]
-endobj
-363 0 obj
-[345 0 R/XYZ 124.8 357.37 null]
-endobj
-364 0 obj
-[345 0 R/XYZ 124.8 345.42 null]
-endobj
-365 0 obj
-[345 0 R/XYZ 124.8 333.46 null]
-endobj
-366 0 obj
-[345 0 R/XYZ 124.8 321.51 null]
-endobj
-367 0 obj
-[345 0 R/XYZ 124.8 309.55 null]
-endobj
-368 0 obj
-[345 0 R/XYZ 124.8 297.6 null]
-endobj
-369 0 obj
-[345 0 R/XYZ 124.8 285.64 null]
-endobj
-370 0 obj
-[345 0 R/XYZ 124.8 273.69 null]
-endobj
-371 0 obj
-[345 0 R/XYZ 124.8 261.73 null]
-endobj
-372 0 obj
-[345 0 R/XYZ 124.8 249.78 null]
-endobj
-373 0 obj
-<<
-/Rect[167.61 219.07 174.59 227.49]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.5)
->>
->>
-endobj
-374 0 obj
-[345 0 R/XYZ 124.8 204.27 null]
-endobj
-375 0 obj
-[345 0 R/XYZ 124.8 154.18 null]
-endobj
-376 0 obj
-[345 0 R/XYZ 124.8 156.12 null]
-endobj
-377 0 obj
-[345 0 R/XYZ 124.8 144.17 null]
-endobj
-378 0 obj
-[345 0 R/XYZ 124.8 132.21 null]
-endobj
-379 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 1324
->>
-stream
-xXYoF~ﯰd*r:*/wi>G$#F31VEH=s9; Bi{po$J.nJLq"t^P9QjmʁZ%ڝq5]_|@.#wjPG"%5VxR R&<
-MIGh@p-1 VlQA_Un?|7:S
-?G DoIHv,e5o.@{1BG藊Ywv[9$Eun5E<]\XňKQW_t6ԣ
-D[*10x!?t-lbm(-CAsibGHw*k#=7-gL
-
-]y)ã
-Ckyf]۵RQ-9P qg:mS6vf9(gYF# dvf7~h8MNjw@Xr.Wz e xw,}_Nob<
- hjڍ?o[=噄hRUu^,k‹M`zafhXvS5xHN!>l"Raf@:NrLٰR 39Fx鱤lh6A{>HJ"%>l/S`߸87^1ȴU M-ko@'1CdbwA.H?n&eZra,GI]xʥ\{11Y=]Ü}c&ao`(C.W"7ڷ}*p^gASbtc-jۺM'˝?(fL]PL^? ȼ+<L
-C"B4OnZ;}nCξWy5v/!1}*mA
-endstream
-endobj
-380 0 obj
-[373 0 R]
-endobj
-381 0 obj
-<<
-/F10 99 0 R
-/F16 196 0 R
-/F9 92 0 R
-/F12 129 0 R
-/F15 178 0 R
-/F7 83 0 R
->>
-endobj
-346 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 381 0 R
->>
-endobj
-384 0 obj
-[382 0 R/XYZ 264.6 477.3 null]
-endobj
-385 0 obj
-[382 0 R/XYZ 236.55 174.73 null]
-endobj
-386 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 9949
->>
-stream
-x]˒u+jY4"0C^js8$ì%YG]8ɬbOfl4y{ȝR^N$v8!N/޽vwf޽|iD7?oB|7ͥe.|3{r3{ߗOf✹!IvZdLmp*jWq 9jR>k?vzs .Q
-wx]ǛM?*
-iS h 6j)lؖT6UDF; 6@о l+r}{k>*ǃ|Hx X4ZZJT
-6ma[6
-)A)8T0k-C$L.d FX¨d-MڀYoD\`m0¢ Ʒm5Ạ6jfm@ehC÷6km0EhQHV~^gg~]6j9-bJm!C^Xv^8 9vbv&0Ep# !2Bl}=yJ
-U$Ҁ|&ZtptPm@¬ ȷmZG
-$ڀ|Іdm2#,`|X͒!O@ʲ2.Dm_n,@\1.D6c
-
-'q}0ʪƸ }F O *,ˈc~h8=DJ&jRޖ7v킧-H%4>*@|(1.ce;dEqXzh<! HYO>QV}0e_*\)> BBe`UqxMN7V HY#/|~]>ec\>d4\S>ec\HOs!N|Ԭ2&E*gTnoʕE*ћ k(_q#uWƈ{ed\>$) HYqz^:'RR 2QR` |a}@ʢȸ}SFO`Uq!DV FY):ϯ+w0ʢȸ}J+QV}0ƅL%RyC|6-ẒE[oMï
-/ޢH
-=g?9w'Ji2·::a)w8vhuLfɹڏ<|KGR#݈I;>B/A*dk%%,=BNdhV0g:3[0R 5(LIRbi'ǔ7CrTI[šk[~ArR RSuMVZr6t>k6ml}#,0K
-*ʙG@N[aBfT̀Vc֚v|^
-<q~DSx͚!2Ն'*ڇN]YPDfqH$ҬPA޿OsĻ[0u*H.y5*M t4K&`G4Hoz jsjUSfCg9;7ߢ" 4QlP>?_&š܁T G˞vEOx\{s=V֡ƫs,Y
-2?}wgy~I 7/l{~yǿ|˩參y ͽLvԷԷso滘ᜁ8O3|@,ѳTq\<G<AOsQ+=y{Μ
-go} Tab]ٝ"c%dR'
-T@*)5HP䅑-,\
-T@~NѧAy
-TV#8OkAoG>_vNr$Faڻ#vB짨CCNc<Ciĕ!Y;Az=W/y$QA#qECqf,T)pZ$&Pj!ޠ 1z9h<Sp' LNHP
-\@N(`bT NŭG#VZ (NzqZ9a
-##zXHP
-\OxFnqْއg_NRo!-D%ěICu
-\P탐F "1$&P\@4 ɉHL
-T(S6HPlٗ"x|~7W$k#|uׄ1EU$(PG +\PaBEU$(PG /WSLHPĔgqT ,!K99Vl-be d<l.""W3R'/f@-Ab5!JdC-<E@c rE"YnH BQ*rE"\?yEEPT\H)iH-"5T|(*R"UD2"H3%<"U(*REH$7)wPT
-EEgqbh N,LJy׊g-3TtN{7Ňlx]x]TWd'9'
-T<K+ڥ)oP EPʊ\HvlD"REEPT\HH1)"U(*REHDh7% Q
-U
-EEq^H,ˬL\fTn;M~Xb[,sLJ.N1QWOXPP
- W$R΅I^~ EEPT\H?&(-"5ROBQ*"W$:IoREEPT\ѷǤ!L99_Pc"9ޫ)"5PT
-EEdSnfAQ*"WǙcs8[l6I6[hs m.?1M(:dW(:dWzhsi
-@ADǤI-BQ*r="%-a
-@ADrB95eSD%*HT\@FӶPT
-E51N"U(*RE%ĞGPc hI\HZ<"U(*RE(<# 5pdO[۪vy7qخQfJJxS|o EZm0ƅHc1PF`ː%aBPy@Vs!x<˃э8"*Js@d#m ƅH&A4Hq!Ha"7&`q0:2QȻw y
-
-k9!spSgTI;?g@Z pt۞i{Y[um mq-fTA鸞q2qE4Pb*Hr.D#ރd,F7\<:LBZy@΅C-h
-
-Ƀq.D+<˃э8">
-
-Ƀq.DI~s`l`y0<2QN3BZy@΅A?1/oqLWrI-y
-Ƀq.B>I=sY@8 Y ȸ iP:
-#k!BZi0eH5= H BZi0EHH:ilV@4 Y# ȸ828|.
-R&MvcfQn1(c.D5:~cd1.boKԪ@i@FqP%W`d42"J07Pi0Vq ๼i@eHㄗ`BZi0eHî )BZi0eH+J`ːF
-
-* FJ1.#d zǸ͜|6N糊K
-#k!* + Pd\4^56* FJ1.C+dJZ@4Y+ Ƹ i01
-#k!1+
-Q@|i0Y|VH9*ʘXMcjEn"uN{ɚd\ح%%BZi0ƅܒ/ߑȇr2HTB5[Ep+cMU[V"#HQ e,dtIjWT eD`K] v:-c) G :CT-mcfe ?>r mor
-HUU!K!x ʂQ5`|KeJzbzrzjE
-j!(Q ĶIHNC'3"j$![bQ5`|%
-lf`ʂQ5`|Ka:9[x9gc;#`)Sp>oaL!Q#dƉh}d:IhyCg^ 7IkeL/!.Rw=>ZzdyHCBAwY'C'hЋ{ INr}M4{ecJ20fZُO%m[.s-KE*dm\+z'0RRII}זeʌg팆riyg&qG<F~Íg1!II^dcrR_zHgjkR}gHSxmP3kKj{Ӷ[9Nek^F=Sd
-R?cL˪xfke%G-iBzF9;?sNDBvT7
-qG!1Eoi}CvLJAZ
-#ʚY|&ҕpXQKZg)jaMe3?g9l(xҦMP5%=>[#$<z:hIq\ᩮ#&-?D/EqFiǴ^IJiM3JٕFfK|HFS#Ր$M1SeyRƥ4"m#R4P=5Tks MVN Bك^_{!R<?K鈩[Vdp)[{<Mj(|rݱxC;98>d^Ap'/{;H-%#clVMǂ}2l?tdPD WRƓGoK\j--"~Xw"E_f|%-yi.^n]񿵎CU-hz?5q< pl<$kUl)қK-ygqE#ti0͖-MïJJQ^aQVqZ9dpWmΫdy?QO(c ʿnq6ȥ!;, \͙=^%/wMTdҠ=e' FbQjV8^P! [mǑxzIް8@,݃a"8H#x\)v]<'uzNph[ƚkY|&:n<2Ahm[Y|mRVmx0O50C㤤?aL>HމoØ0cꧫS.Z-֬Ҕ0eTksZ*+IʵGWCyާ[a9 ] -2㙶r((-5NU5AwY^A!R00f ̘:A#[2أ@zx7 5[_gyf:WM!QY)6baIW`4S'0F5Dlj:-QʪUO~5ө⾷U 8$ )9ʘ0cꧫNY38I],wZ cuHteU+aMʕG%;hmRI֢JkUӖʂ$+?JQG]^l`}x;Y e,U41ƀaқJipsX=Ϝ7b*MRgH2F˟r%>' "#&˜uOjGTQ;Pf N+;[(1 Fr4a%-(iw)F(ʒv/7`l-M:JZTd)*GQDk!/iv*̻&xw@;Ca_AL2#qceg}W8moCye3hgsŒ4MR f\'pCܤh}g^n)iN% Ӕ״`e>Ȭ/ιHᄏ K&AhxZ8k41FZf0;p|“QSzNu|Z38;mS2T$Hӈ5D:CNQjy
--f}qέs컛i:TwjioSpˡϔ5= NfLI$'`/-, `$b͘&'%i4}v4*/[{JGKd9mwsik2dwB߾[[
-qآ_L8l&hڽt۲(Z*׵Jl܎s;[)3"[,Y(ͮt_,$+$I|9X DF꽑k>&1"a)zV? ^F-MJ [5QZcxdWOR Ps^oi:#w)voȆI'^=nnHno6Yu_0]{X&;}*)ԣ3fц2Jc[~GF$tF/b4g!+0ZtE7ׂNg;yR7I;wgM#d*nX_ LhrZ_NnE6A'r02{75&/%/Zt}Jɻ67i';E{)ժ5O{cK7`$/UB]7cb 95GC[~ǡl_^NT*VIÕ ˮ# pbvO {?=ǡv;%_J>#Q݄Պqbے-mu{IvGk"Fɑ$=\5`)pR&yn Z_CꅲfDzlgu~pF}p g"ڱeg?k`yCBS#ݒu^_gxor+|.s1vj`=%C_: &N1Զxf}5٦Z|9sFyjt>yϽ#0qӦ_؆16z՘;
-UmG^a;04׆sWce2@ 6 pKfw{~j)?|R\[>F2DaX('"7Ja;P :MM7:W4|OH3C#&H9kDox- d:i0c.) ytFkgRKH2 - AE@YgmvI"FC H.H5 &qMfs~i\bM?oLCݗ0yw~R/Nfq|ih{7 _~7]ct>7w߽wwƘ?SO;k0_i.;UWp }.L?P<H΋8 ml*MC}P^?ݕ__wS9[۰{4@,oˊyԽfW(Z1V5;p9Y OT/T|kW/™|} i˧(g/$7n7(O*P=
-֖o=MR gE䫉6c^|m~U,"Z
-_wϷUd3WČEdkzU5?p&)Tv+!zٕGf\u|>)g1tv^?wC8L`ykz2\2m1ObLŘUg}.}?SKfg[Do!sj'x`=+We9%le=mYJ|"Xerpy°4.fx3~F3| ˄*NL.Q.2B~N-/'|Z9yW)G28rTlsQNlXJX%?>AdӸ0]:ǴsYr=V֓c5A>1HA3\RjcW4UkgWZDBgl>v+(
-
-endstream
-endobj
-387 0 obj
-<<
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F15 178 0 R
->>
-endobj
-383 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 387 0 R
->>
-endobj
-390 0 obj
-[388 0 R/XYZ 124.8 718.01 null]
-endobj
-391 0 obj
-[388 0 R/XYZ 124.8 706.06 null]
-endobj
-392 0 obj
-[388 0 R/XYZ 124.8 694.1 null]
-endobj
-393 0 obj
-[388 0 R/XYZ 124.8 682.15 null]
-endobj
-394 0 obj
-[388 0 R/XYZ 124.8 670.19 null]
-endobj
-395 0 obj
-[388 0 R/XYZ 124.8 658.24 null]
-endobj
-396 0 obj
-[388 0 R/XYZ 124.8 646.28 null]
-endobj
-397 0 obj
-[388 0 R/XYZ 124.8 634.33 null]
-endobj
-398 0 obj
-[388 0 R/XYZ 124.8 622.37 null]
-endobj
-399 0 obj
-[388 0 R/XYZ 124.8 610.42 null]
-endobj
-400 0 obj
-[388 0 R/XYZ 124.8 598.46 null]
-endobj
-401 0 obj
-[388 0 R/XYZ 124.8 586.51 null]
-endobj
-402 0 obj
-[388 0 R/XYZ 124.8 574.55 null]
-endobj
-403 0 obj
-[388 0 R/XYZ 124.8 562.6 null]
-endobj
-404 0 obj
-[388 0 R/XYZ 124.8 550.64 null]
-endobj
-405 0 obj
-[388 0 R/XYZ 124.8 538.69 null]
-endobj
-406 0 obj
-[388 0 R/XYZ 124.8 526.73 null]
-endobj
-407 0 obj
-[388 0 R/XYZ 124.8 514.78 null]
-endobj
-408 0 obj
-[388 0 R/XYZ 124.8 502.82 null]
-endobj
-409 0 obj
-[388 0 R/XYZ 124.8 490.87 null]
-endobj
-410 0 obj
-[388 0 R/XYZ 124.8 478.91 null]
-endobj
-411 0 obj
-[388 0 R/XYZ 124.8 466.96 null]
-endobj
-412 0 obj
-[388 0 R/XYZ 124.8 455 null]
-endobj
-413 0 obj
-[388 0 R/XYZ 124.8 443.05 null]
-endobj
-414 0 obj
-[388 0 R/XYZ 124.8 431.09 null]
-endobj
-415 0 obj
-[388 0 R/XYZ 124.8 419.14 null]
-endobj
-416 0 obj
-[388 0 R/XYZ 124.8 407.18 null]
-endobj
-417 0 obj
-[388 0 R/XYZ 124.8 395.22 null]
-endobj
-418 0 obj
-[388 0 R/XYZ 124.8 383.27 null]
-endobj
-419 0 obj
-[388 0 R/XYZ 124.8 371.31 null]
-endobj
-420 0 obj
-[388 0 R/XYZ 124.8 359.36 null]
-endobj
-421 0 obj
-[388 0 R/XYZ 124.8 347.4 null]
-endobj
-422 0 obj
-[388 0 R/XYZ 124.8 335.45 null]
-endobj
-423 0 obj
-[388 0 R/XYZ 124.8 323.49 null]
-endobj
-424 0 obj
-[388 0 R/XYZ 124.8 311.54 null]
-endobj
-425 0 obj
-[388 0 R/XYZ 124.8 299.58 null]
-endobj
-426 0 obj
-[388 0 R/XYZ 124.8 287.63 null]
-endobj
-427 0 obj
-[388 0 R/XYZ 124.8 275.67 null]
-endobj
-428 0 obj
-[388 0 R/XYZ 124.8 263.72 null]
-endobj
-429 0 obj
-[388 0 R/XYZ 124.8 251.76 null]
-endobj
-430 0 obj
-[388 0 R/XYZ 124.8 239.81 null]
-endobj
-431 0 obj
-[388 0 R/XYZ 124.8 227.85 null]
-endobj
-432 0 obj
-[388 0 R/XYZ 124.8 215.9 null]
-endobj
-433 0 obj
-[388 0 R/XYZ 124.8 203.94 null]
-endobj
-434 0 obj
-[388 0 R/XYZ 124.8 191.99 null]
-endobj
-435 0 obj
-[388 0 R/XYZ 124.8 180.03 null]
-endobj
-436 0 obj
-[388 0 R/XYZ 124.8 168.08 null]
-endobj
-437 0 obj
-[388 0 R/XYZ 124.8 156.12 null]
-endobj
-438 0 obj
-[388 0 R/XYZ 124.8 144.17 null]
-endobj
-439 0 obj
-[388 0 R/XYZ 124.8 132.21 null]
-endobj
-440 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 702
->>
-stream
-xڥMo1=Hd|y<B\ q̍VЂ*B/gv{Ys%_ǯy R ۻ^o_48x_L &۫7>|FWnܾη`S<}V N/.֛je_quweri>_oc;fb}
- "Ax62 ubxE $/" MFmD]HbM<@LX!b,B,7%L܅ -8% 2O@UJ[hej9a0uG,螇 !C Hj!29W\D}!+PJ1p➇JxQbQJQAk{.be2kESj)JXNQRg*b빈5zElwj"aL! f
-N'HO!έs
-wXJҥ0F{b>qDt(SNG@qK".cE\:
-endstream
-endobj
-441 0 obj
-<<
-/F10 99 0 R
-/F9 92 0 R
->>
-endobj
-389 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 441 0 R
->>
-endobj
-444 0 obj
-[442 0 R/XYZ 326.06 666.54 null]
-endobj
-445 0 obj
-[442 0 R/XYZ 326.06 670.13 null]
-endobj
-446 0 obj
-[442 0 R/XYZ 326.06 658.18 null]
-endobj
-447 0 obj
-[442 0 R/XYZ 326.06 646.22 null]
-endobj
-448 0 obj
-[442 0 R/XYZ 326.06 634.27 null]
-endobj
-449 0 obj
-[442 0 R/XYZ 326.06 622.31 null]
-endobj
-450 0 obj
-[442 0 R/XYZ 256.31 551.37 null]
-endobj
-451 0 obj
-[442 0 R/XYZ 124.8 519.54 null]
-endobj
-452 0 obj
-[442 0 R/XYZ 124.8 507.59 null]
-endobj
-453 0 obj
-[442 0 R/XYZ 124.8 495.63 null]
-endobj
-454 0 obj
-[442 0 R/XYZ 124.8 483.68 null]
-endobj
-455 0 obj
-[442 0 R/XYZ 124.8 471.72 null]
-endobj
-456 0 obj
-[442 0 R/XYZ 124.8 459.77 null]
-endobj
-457 0 obj
-[442 0 R/XYZ 124.8 447.81 null]
-endobj
-458 0 obj
-[442 0 R/XYZ 124.8 435.86 null]
-endobj
-459 0 obj
-[442 0 R/XYZ 124.8 423.9 null]
-endobj
-460 0 obj
-[442 0 R/XYZ 124.8 411.95 null]
-endobj
-461 0 obj
-[442 0 R/XYZ 124.8 399.99 null]
-endobj
-462 0 obj
-[442 0 R/XYZ 124.8 388.04 null]
-endobj
-463 0 obj
-[442 0 R/XYZ 124.8 376.08 null]
-endobj
-464 0 obj
-[442 0 R/XYZ 124.8 364.13 null]
-endobj
-465 0 obj
-<<
-/Rect[269.57 333.24 276.55 341.66]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.6)
->>
->>
-endobj
-466 0 obj
-[442 0 R/XYZ 124.8 308.34 null]
-endobj
-467 0 obj
-<<
-/Rect[390.33 263.05 397.31 271.47]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.7)
->>
->>
-endobj
-468 0 obj
-<<
-/Rect[418 263.05 424.99 271.47]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.8)
->>
->>
-endobj
-469 0 obj
-<<
-/Rect[459.76 239.14 466.75 247.56]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.9)
->>
->>
-endobj
-470 0 obj
-<<
-/Rect[312.12 227.19 319.11 235.61]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(section.5)
->>
->>
-endobj
-471 0 obj
-[442 0 R/XYZ 124.8 211.24 null]
-endobj
-472 0 obj
-[442 0 R/XYZ 124.8 185.37 null]
-endobj
-473 0 obj
-[442 0 R/XYZ 124.8 147.11 null]
-endobj
-474 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 9138
->>
-stream
-x}]o$Gra `\?3jf9!a6GKb6<=Ej^KleȊu'N??ןỎ'gɏ'-7|_N*o~Soo/Mc~t~\zr)Wr8BU[*WEcOΌ7\%`N9@T>/^Y<7K_eJs*lx򃥏v<A
-6OQ p1Vw/8[=#I9#u4ƈ!4)*`aH
- thíT܀5IA̰3╍8% r") ~VQs(r Jí>:~}~E1x $h< ~
->rp%3l8WJ Ɖ"Y*֒@XiBNY/' +pg%@Z<( +pg%ʌ9i8~FJqr") G$$G0u .ǀ1 u=Vr
- 6o#*GG+}]Hpg%p_j[aBI껣 JZ9@[?+QP$p ' Q2H"6=(i@HiRh"w@Xi;UN7xxAϰ3bN6HA̰g5BF c9XS&hѵ^lPȖ * Mm40CIN  #I 8A$6'6Qv2 C9IN IP~'3  "9q|K90D'ܙl*  "9Pk 8A$6'(C '3 '9$6'.+S^dh0Z*悮3kDp|&a9\UXޒ*7cѣ}p}0"oF$_U)^
-9AmqH<lNtT@Nf $OrI<pNwEm 9AmqH<pN
-80D'ă*g$M;l>ȓuf"M;l>JfkQ(4"ug"M;2fk1#1`xC:7&x!\]Lxz:^(EwoN%g@>f$M;l> (Dw|he (H| Qr`|(Hw|Dэ r/I2/y*X@;5P.i Da0:& KH;l.*Ep{Fl $Î"9Bc
-_Iv1)cy};K̈M|یB^D{yF 3
-&4|McF|@# zB@I>y͇W.XtB@I>y͇gV|T"M;l>4X[Og"M;h><N?Q 4$Yg"M;X,2Bc/4`81?{ckgp/ʌB^D{y QXB@I>y͇ 1@> iHaᔶ]'0P>iDaUr=iF| $fQ 4$ % ګH| )FW(Dw|xA(Dwd6^h<Xc_p+)31؟o5О%;^@aiجB?D<4 w+4|
-uRxދ\A/̙0>~I$~Y.@c*]
-D!s;ʪMA_w16F^ZǠVևS @9aUr0o1*O\R1hẇtcp|!y=dȅC^BV 8[Ǥtr )un+IAeb:>1{z9C=֙!*L(GK׉PC=?u|+Ilsژ@ݰq8Q#[λ>_DYI)Sjw< ,eq0"j]TR.iiwOKw=A+L ¢l0XTl99DkӐ1)UMQ8[,()
-㻜9B^Q{/+^Sn0*nƗj&{ .98/z ĻB%'$Ӝԣ֨[1Jq-ixW f%&4qRLvsyR& 0*nƗj&;܁ B k/Sy'Y4|}JI],W4y"V#wj<OI5O+UUWRdT+&}!n0.)kmpTwY~֤.m'>,EYR$%%՚w`꘭
-DekRWM&4UR-eÿXK*l0u=jdf-jbQzT%YT|גjͻ
-a&nW2:Y9O+
-ZIfq5T;1[P3O zqjX4Km2kZZ*˓9uq[H,9XvKW;[i] ]e 2wfkTA%򲌌l@\ wFTqi$@V%;1䭲
-nlI]7 <KRfui}0%UEPRMfWpg&S*@F6 ,ƑIi6%4f#L5G-dv$M_u~KH*?u iu)}Z jjv(~#T{9tS'Ѕfi,ya3i6s 7|T%t-g}F^fԮomyғ癒o7orˑ@raY:ޤLÄpw!!=jdS<EgUt*V/Vyxi &g{``lNQIv_Ҹ qD^:ixn{V5#Wϸ kD`hhgQxryϾh'_Jk U:wJ"j`?Q$\AQ3E^|T\Iv_rynҾ7V `2#JBj0K̝f<]Jk F@Y*.b)CE{O
-aH kr:-^KyҟlȾӳ%gߙg5$: rZșR8لqVS#gkuь @tWW<y2^\|K^P.es.vv<{2CwQve
-n~=˒:b4|]/C̹䇡pOGБc;GNeQS˖4LIƲ?ϋ<yIt7h]{ykגjŻʖGT|vM:IU\([հ<aWhuE\t% iJ^|l5G1x9Edik4ʼnZqlѰ.# KlI&T 2I6zJB=Mo&<MH0PZR
-WUgu $l P+)jwO˯8]7]n.+/^){5
-J^/Զpl9N)zubWb!VPVcx\5I}˲*Ϥw|,.uIOQt9;i„_l=ug0F:rzIs36@YK}Eda{4^Cqu:AՊ*<QͅCa<TYxME+FYԹN`.ivO׋ #FuDQ}me{9IЄU&VzH> ӴymP6ЖΉQ+o5kG&.Kqi,8'-y
-d"rs 3, 9Stw 6xj:pZ1-ı`\36,D-'he+73k@Hs[yfBӓp4 h;QEߐ'(]Yd%[8--uRy5׭?d}^#ǧƧJ}s/;ys;{/<y~w8UO~橡T~Lܯ.>^\ܽ:sΝ~|?}OI>njz3jZC32+|=^lFY_q8 7Y 옡}
-|:o'Kiqie=oe|?B4Ok^,-n+Ĥ.{7nSit]t=b#uud5ܑgk_\}T|zlc7b=WKDcV #ӧ.%[?f=>(4 W2"K\ɞjZ@py-ϐjWA2fA[)lz=}בQ/sH9'gsLóo_FhKv{|E<l['?l
-K2.;|בϜ@|qEy̜u
-dE\YӖONΊfO?MqTpu3ek}_n/ RW3KC2R?~׫
-vהڕW\ܼW20U$rmCmH2Lp>PɼǞobWv;݌k.v¡ǟ ݘOΟV>w*Sw︸WgQwW7o?:&N|ފ+|2S?5ԐT
-L۟^dme”T1VQW r2@U4.dC42Cr;QWѲ0TЕ wUY^&U w<Teyͯ?q|u,-+bQ+QYFFa 8 K x\njN?OG~~^gNx
-^dQrE|ǛAyVG }KZTlEc-k1*1*RcQP#矶o_VQTSyTϻo7o=ǴiAxxo{'3go?$ofCe,xl{DWiUD;8uMnyqEsr768* |\tm8k@|qVA|\^\}_PtU>|6e\eZ8m(CQ':~vwV`h:n}E^=g/G/7WіT7cL|{7諩>RMz[U}04b!ZH;NyԶ|G+BZo9 Rcϭ
-'AKOر!.n^9}n?l9}О[Umz:~QnFsOw$ {(y[`f^{[26wNuauGg:᪒P?3?@ 
-endstream
-endobj
-475 0 obj
-[465 0 R 467 0 R 468 0 R 469 0 R 470 0 R]
-endobj
-476 0 obj
-<<
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F15 178 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F7 83 0 R
-/F14 164 0 R
->>
-endobj
-443 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 476 0 R
->>
-endobj
-479 0 obj
-[477 0 R/XYZ 124.8 340.62 null]
-endobj
-480 0 obj
-[477 0 R/XYZ 124.8 340.62 null]
-endobj
-481 0 obj
-[477 0 R/XYZ 124.8 328.67 null]
-endobj
-482 0 obj
-[477 0 R/XYZ 124.8 316.71 null]
-endobj
-483 0 obj
-[477 0 R/XYZ 124.8 304.76 null]
-endobj
-484 0 obj
-[477 0 R/XYZ 124.8 292.8 null]
-endobj
-485 0 obj
-[477 0 R/XYZ 212.28 264.91 null]
-endobj
-486 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 8264
->>
-stream
-x]n$7W$^cm1 Enud<]`^{#37,
-e ?Jb0x佗 rֻvmgv1;c
-~DRww;Dy^mUyOd\m>SdsiڢR.&]XT6moߚr}\g+SVZך^~\#(*]nmk&苳<Wc+
-܎B֪u &>SqR'*tv$OEU*G2q*gL,UM"1}H
-׾#()B)$Q(jS '>SqR+JJ$OEUJ:wT>gmHBfQG A}*PJ'k;HL! )䩺($B *T
-/b%<Kr Tƨr 5*Ϻ|1K{Y^bYc&HpHp9)mYJ$@b
- v*NecbB)$B!29c;HP mFVYlGr# (Y R$JT[R)zBd3(R*UT";ߥ*U(REn3&rֱG% E?dPKPy/g.^c<hKZ%"Mw h^hC޸3_W$:]OHt2Yq=͠F
-$R=*I(* Td+yPT
-EU 䩾jAATI v]PT
-EU-DjrWLBQ*U"RR*U(REnI%&ܥ*U(REn)G7h/)魊:p nTp_F%{\ 'lgЄMLvJJ
-$J%
-KUBQ*rC*%2\s9aUPP%ܒJ{| EUPTҁwIB#+="#OBQ*U"=k$JT[R)h]Hj4!Q&ZȣÛx
-E4-TɘUBQ*rK*w]* (R*Ux`psoܜ/ nKp\}pҠJq6vvEnȴrsk@U$(QnH!-H@ArC*M'(#J
-$[R.PT
-EU-cYqPT
-EU-TuUBQ*rC*Emv=V* (@nI%\ ')JT[
-C/be<58/K Q6.5e8M}Bc8oD*ynsX $]D4VB.ш%8gaH'*%D $]DNCBG .8\<ZyL4"q0ΙB$2%*((*BhDa30uHTLF$.9#]\Nh;ۚE_QU%r K^u+Kv^>$874L1H|:8g9F
-+k^:MHX"SJBDӋC KrJ@UHT0%9D :$
-J\D#IC"t`_hDa30UHلhBR"t%eCoф%8ga됈IvH4"q0ΙD:"Ѡ:9Na㺾0' .09Ü a.a 9BF$>c#]tyߝASD $]DLj&$,)%I!V,F$.9#]D6c& KrJ@uHDvtLGKq$H!9%E!ш%8gadbG$zBR"tEUtCKq$H]<ZÜu}]aNR'60YÜ漄9椿4|D991ULǒL> KrJ@5HT.m@ \<Vio=3ay0F)FyrVڈ' *()W!OP6;=c`Ҍu0ay0F)F
-y9m`Rr 򤬂_< \GtOk(i eU2i\s^"dK$L$3Ebȏ8x4aq
-Nǩou65
- e0Hc=zשG( Vu Kgx7^l8F* &tV 6G;N8P*Abd&* ' MTѦ
- xJ٤(9Dn_tIV"ƄE0K%婃P{yLi,zjL&YrS޶<dzKȳfML  r1MImC#[Ya3qJjX|ZMI2FGC)MJbT>4>TRma/mN(Kvx(>ygrs&@4)ڔ8sHʢj*cMkX|he^WIyLj,~jZVma/sNKL<HiGUp,Md^6cR[XJ6KL@ =AgI)
-!s0a`)AXKAn!E3|IHzcѨRLⳑb-`+ԞV׍xjV1D ixSGڸSMAmoBQ:vYԑ[K \vP&┤[_ZQxYECw4h" ͻ4 
-dKxQU x[E\Y6HfgB
-U^˴9n&/P?ǘ]jy'z,Z7b6@=dGYX}ƎMX3:Vxɷj/&ʕ=%̛)lb̹Ӕ
- (̳IZIc?X9 ucZI]FGړ,Z 7Q}=槏E3/ ɓuڼtY9Gd鱺wu|d &9QfJ3sؚw;9~ n{o+mKlCeiIw[zbM[DŽ*E%7|`擨!`!&zVKJ
-.lհXLH&֌WťsLA$ 钭63!57%S. };/!EMړ<f:K93VC捞fb\8obcڒh.&JY< fH?(I]`oxuqw}iXktS޿7dH~GJoۍسy3 uWڏքǺp)S)Ĝ&66/C{Pߗϟ~۝>l/Xaf$4Й?ՊJO^db/8==?彮<_:^ޫHP5L+
-?n_Qӟ
-AnM^_
-`ܖ%<M6j O`q f7%XYB]ᣈq?S?}<fآ~?~??~r%IH8g=/?AyarTߧri}P ŶUoK&y#c7y0UWs ׷nj￷!۸}ïIg<C'?*HyP̯~ˏ?O?<kNi+@7&> ~4dI D
-endstream
-endobj
-487 0 obj
-<<
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F15 178 0 R
-/F10 99 0 R
-/F16 196 0 R
->>
-endobj
-478 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 487 0 R
->>
-endobj
-490 0 obj
-[488 0 R/XYZ 124.8 320.85 null]
-endobj
-491 0 obj
-[488 0 R/XYZ 124.8 320.85 null]
-endobj
-492 0 obj
-[488 0 R/XYZ 124.8 308.89 null]
-endobj
-493 0 obj
-[488 0 R/XYZ 124.8 296.94 null]
-endobj
-494 0 obj
-[488 0 R/XYZ 124.8 284.98 null]
-endobj
-495 0 obj
-[488 0 R/XYZ 124.8 273.03 null]
-endobj
-496 0 obj
-[488 0 R/XYZ 167.59 245.13 null]
-endobj
-497 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 8003
->>
-stream
-x]]u}ϯ] G
-U$PnHw($B *TQȒykBɸB)$B!ѥ3A"A*T7ɒR*
- $PE
-UgSB *TBB=SǑhWWŃL_MR7JAo~RϢ!DšV+ej}IH5TتS24V]O" N1! $8!W$8!Wv&dhpJ1HL! )U'"B *TQmSDb
- $
-|)tLS<!uɆ!@T$(PnH=HP
-жq|=CD+9^RȪL B *TR;. *TB!J%uX
- *TB!2gHP
-Pdy o].^cSd˧ ]kH2eKK N N:SeDb
- $
-yxgL UH#>
-TR(JH$PE
-UT:^UA@krK*U G%EUPTܒJNcJTJ@+\s10f *`54qLc^cw&\&]]UqrUPP%ܒJQ{23(R*Un"%tжE E"P2ҊܒJWOBQ*U"Wɧ.*hBM-)/wI$FT[R)S}K"Q&$*ܒBE9KH@Q*"^ěxf|
-qDPIC#}v:M@\#SjD@{4;48ga+Ȫ|F#C#sƺxKThvhq4XסKE_qM9l x.[wcQM׽u{zso]TqEM<mKi𚀸t AuLƫXFH`F(8WV;/C!s&ƺ
- npB \>VGXء9c]Fp0\O1DLx ;8g
-a+ȫ͸F#C#sƺ[k>k r>Y9M*5y 31 悜&[B1٤*5F d]F~hu(18סqe
-R"u%i-5a30uh䓲[xQq@NȺ<!q
-A3 Εc80ΙD:4rE# krJ@֕1?r
-v^ww}^N^\ vk\%#~fuLlF81[iU +rJ@uhd1G*Hf59F J4uM\ء9c]FFq;48gaШdJ4`@F!ȹ}%ƀ3p}0Fƹ}„>JѐYcYk*I
-5y7ͭ7Q.[F>C|r"W1DC/+9`u@F!ȹ
-}bQ!pӄ> :q*'MMc`',GN8XQrC8`;p}0Fƹ}J1&q>\>? mp}F(8W~7k>p> \G0|)\|gE%5y01̭0}o9x{لqQ*qgTq!q 2
-}@Ε\Er8<:.gC+9L6?9:,A6 ΕP)3:[@3Jdg c7&6ۊ c}SpaF Mq1mJxh-jO:5N# >iAxo0p
-Z^–!rMRv5 T#GmЍFRdڀ|Uq$ʞ>' 'נMg;`?C# `&hF k m05h㍲7O0Tj2BrKm k m05h3`s3_^<?s{]cu_|7ٱde}RRs
-l"hξAemGe-٭ zp=0KpE_cʫƷ6)Ȣ"E&o,~R>:c0T֩V~Ji,}j X[k"<';Ǖm "&'1AQjSֱ;yCYrhZјky3~-wP$aMXz:UݕϫLUdǤk3LeMm5k%;̉ ei;4Q v,oImLikrʴBeQ. rF2V
-8F2!GXzmVv_ܷ&4ex6FeuW+&!M+G2U3Od4/qc9HA 򤢝gDLXOd/:e[.ُbR( =
-Xv~p]yG !,1}"5V9kq֤W`V9c3ͪ?5/c*y>%O>0!{hYR7e3?gLkk ][XE h쑤|mD>˜ d*M4z_%; _s>#qF&vtLOCVJĐ>@٩쵛f)4"m|F#deI?DNXjmcDM'tX<,ُH 35@NJ͋SUd/,# cR[&O,F%HE T%kTdы+aLj$1&m"=’DjNwRr= |<TK̐‘3" 6%6FPU^Yy38=I+68cԉIi[IjˈDW,:\W|%K31Yp; L:8Xrѭ/\\rv[[yǮMᏡ&Zd F]kԜ2+Ӷ/ư9Ȝ/2i85oC]1 '4oXo#d 7.zB+yu{]'rPpɆ(x:qZv0đw`S"Y2R#1B|J*b
-8ztp<Q)i.g%<(OJFّdw<!ˆo!T_C:r9GHO䳠ѕx3<KiI1r1ܺC3j3'e
-0ֹ, l3 sY6CT5x8N 94`ׂFo䱭y=@"$r**r?lLHyqx)Z4|Li TeԁiLX#ÒU/G|-ǤW 2EamPl}zgʡLt# djIGq]%w[IJ %i֢%JXʣˣR`䭚V~JAGkQ&-$ˣV%oޕO驃K!5y[Xe0X%_hUHrأ@XwlKH Z_a2&5.҄0d*+$EX+sE }VTҸjWa,6Hw]o[+wh2J;EO]r9SG 8V,KN1.yb㸖XHά1 ^ե*g&5,+-&/aL&ki&:<$3FYzN==Do[CksDcm|_
-4#4,G͐D9(]1q2)yid` I4/N¡3/9oF>9p|l(xJE^OceS@p%٣p7_(@X- {4id >~ >+cbrVI'3+ D,O5:0#ĢuW7FXvE^k,ϡnbɽ8v_nU N^1C;Pro)81ޕ@ÿ/N} }NVo33f8>I;%O)Ϙ64#cb+ImQh|BEߟS}sSєXv1ϰAmQK7%`+DFNryH
-xNYU [,9y}LlvYy|1n,!Aȫ3aO
-ǡcY|nXSb`RӘ%f_̼@e;'isSH3Bqgcb+hZh|BEߞS~斢7<+LxUn0QbJ=tuv~ZJfwfCh)6nd;ga5LuYߧl5"c6䫄|*$CѴGfc1 Fڵ߷˔ {N]cqz's\=:
-軻
-]iv%-neAǘ>¢O8&- ^qAy[U:IDJΰͱyIm6aU4VH0i٧y̰Pr.h 폶@-*I!7/RrLٌUJ[KQK"s6?5B;]ywsJ=pwߗ4~7?~.ͱ~htы7_7?o~?oJ؋nnuC6e #WH~<{w/Rd
-<e;Wq31R|^OI&Ymzhu?2f\+`|n~%f> 0yE~oɼM 5g'?42e1 5  siwnǫyYʝea_"} ]R.>] %'Jyєud9Y$ׇzxd l֑=0$Ĥ{hd9d87bYjsiwndyʝYdE"G ]R3qQyxRQ)K\Ԩ/gTRrذaWPoрhxzq`d/rNj'0XYOjD:fT$Lj &5YCZw6C|o*WΫqnۦ/h$v&iN!q
-js\Nqw|"ɋl:'#`~
-endstream
-endobj
-498 0 obj
-<<
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F15 178 0 R
-/F10 99 0 R
-/F16 196 0 R
->>
-endobj
-489 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 498 0 R
->>
-endobj
-501 0 obj
-[499 0 R/XYZ 124.8 716.02 null]
-endobj
-502 0 obj
-[499 0 R/XYZ 149.71 718.01 null]
-endobj
-503 0 obj
-[499 0 R/XYZ 149.71 706.06 null]
-endobj
-504 0 obj
-[499 0 R/XYZ 149.71 694.1 null]
-endobj
-505 0 obj
-[499 0 R/XYZ 124.8 669.34 null]
-endobj
-506 0 obj
-[499 0 R/XYZ 124.8 649.82 null]
-endobj
-507 0 obj
-[499 0 R/XYZ 149.71 651.76 null]
-endobj
-508 0 obj
-[499 0 R/XYZ 149.71 639.8 null]
-endobj
-509 0 obj
-[499 0 R/XYZ 149.71 627.85 null]
-endobj
-510 0 obj
-[499 0 R/XYZ 124.8 603.08 null]
-endobj
-511 0 obj
-[499 0 R/XYZ 124.8 583.56 null]
-endobj
-512 0 obj
-[499 0 R/XYZ 149.71 585.5 null]
-endobj
-513 0 obj
-[499 0 R/XYZ 149.71 573.54 null]
-endobj
-514 0 obj
-[499 0 R/XYZ 149.71 561.59 null]
-endobj
-515 0 obj
-[499 0 R/XYZ 124.8 536.83 null]
-endobj
-516 0 obj
-[499 0 R/XYZ 124.8 517.3 null]
-endobj
-517 0 obj
-[499 0 R/XYZ 149.71 519.24 null]
-endobj
-518 0 obj
-[499 0 R/XYZ 149.71 507.28 null]
-endobj
-519 0 obj
-[499 0 R/XYZ 149.71 495.33 null]
-endobj
-520 0 obj
-[499 0 R/XYZ 124.8 451.54 null]
-endobj
-521 0 obj
-[499 0 R/XYZ 124.8 453.48 null]
-endobj
-522 0 obj
-[499 0 R/XYZ 124.8 441.52 null]
-endobj
-523 0 obj
-[499 0 R/XYZ 124.8 429.57 null]
-endobj
-524 0 obj
-[499 0 R/XYZ 124.8 417.61 null]
-endobj
-525 0 obj
-[499 0 R/XYZ 124.8 405.66 null]
-endobj
-526 0 obj
-[499 0 R/XYZ 124.8 360.05 null]
-endobj
-527 0 obj
-[499 0 R/XYZ 124.8 314.53 null]
-endobj
-528 0 obj
-<<
-/Rect[230.54 285.13 237.52 293.55]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[0 1 0]
-/A<<
-/S/GoTo
-/D(cite.tikz)
->>
->>
-endobj
-529 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2281
->>
-stream
-xڽZs6~_J%@
-WT[P"*|W{bS
--@&w$y@b=
-Kb.H9,0J ʰLTp"ʍ4uTz icTBeX(_OGK}yRpEG-RUd5x4-<<Sp?W ?^ʮ|ن
-aMR("kbs[QAAuZkXq1e) N㳽tپ|:sL^\y1 ¡)UkD% ࡝b4xF(ϠߴZ(42bOFNհyF Ic֘dp2YL"HFR*% dY#] I+ˊJw4A?ȥhaJճcwp2ѼkSqLf\,1֖#]4]k]uyRAH<X`{ForxP+$n]R^@mAcXt)R^@(H
-fn/6"n&JhXU'A]K\#hϺ3ɪ , C17ګ
-;V%u5UI-n0]sWH+O]VI*+"URW:*=0UBU%"SgW#-Cb!Yu%lDABV\䌖wP lƉ4r,9lfQwB8\oh6{̃d3X6`G:*=K5ؐ 4ejN!!׈{8~(]4]չ)vTF,׈ر>Q8ЇupBF ."na߇9b>auTz Ia>Gzebui#W 8\X#Gz.;;#tH5ʑ^We#HGz'ww;>~8GzH8ڑ^7N`Hv 7|2QPhMJ¨&p~z۔|KR
-endstream
-endobj
-530 0 obj
-[528 0 R]
-endobj
-531 0 obj
-<<
-/F10 99 0 R
-/F16 196 0 R
-/F9 92 0 R
-/F15 178 0 R
-/F7 83 0 R
-/F14 164 0 R
-/F8 87 0 R
-/F12 129 0 R
->>
-endobj
-500 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 531 0 R
->>
-endobj
-534 0 obj
-[532 0 R/XYZ 124.8 336.45 null]
-endobj
-535 0 obj
-[532 0 R/XYZ 124.8 338.39 null]
-endobj
-536 0 obj
-[532 0 R/XYZ 124.8 326.43 null]
-endobj
-537 0 obj
-[532 0 R/XYZ 124.8 314.48 null]
-endobj
-538 0 obj
-[532 0 R/XYZ 124.8 302.52 null]
-endobj
-539 0 obj
-[532 0 R/XYZ 124.8 255.11 null]
-endobj
-540 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 4282
->>
-stream
-x]MoW07;XvfIC$\ =xZ 4%"[W{UfUULdYM_V ݟN~I\4uVerWO/?ܿm^_?_tw#&y$j5IU)In"{1ۃfpD'[`׻WP kNLǣQ'sxR*UR0T.=R(2~ 6*y~S[9d -L9ᄇ4e껑eHOgq<AX֬T̛,gs.Y`I-rYW h]aFH hc^VLg=k1ZJgU:GV)
-Rzpy>*7ΙYMlu^4z@VY\2΃HlVQM)^_
-CͅIw;CgGa/槾Vl fTWPx{O o ƔߘW~cƬuĔ(,Ox!&jsE<HQ(Yԝ<Re.GJWHδPUQE]3Q4yR
-Yw /Ce~_ѓF+W4"7LJR%&7wRZ`SX,n̴4S)Pm
-(Mh镂$Ru?y^_,+o?ARO2 RV##
-{wƁףּt*o`_13ߛ^^Cc-WҴU%=ІFꦧ5vMSYˬn,KJd*_ɞum?1yOh1k/EaLxՁ'
-f jѱm9we#*P'a8DMls3 kb8_+l4c"`MaLl:jz I!|"`1 LH"`-P i1K
-cb`Q$41p'b/Ā'зN œ<o7q|bEq'rĉ?ĀxcL
-cb@x."<cbEisb@ Ǜ81=cb0Zdpb0z匹~ޣ'
-fq;4gHkvARfÆ'g8@, ,0ܭ@y@xޖ
-@6m5=P
-{7Xr2@'6tɣb
-PPY@Ximnx ?P& WcXMP&(Wc <\MPwXjʼnj¯Dn>sWaQHG9ET<58ݭ@]<eU cF98Јrp|AA= 5\nu]0iFwxL Bk]TDA>A3D5YuUB-~lOsѤ(;eb<b2+Ɔ|ȚVLU+~.sh0EG$@)H PwI"$:㼀suq[ "QI_h$i$) IdQDA H"ZlFwP7NfK";̦hu%aA釗E$Zju81$/hB%FŐDU#
-keӾo[RRTݢ",̥ F8/µbk8!쥤 4/%M(إ m5=<s)iZjj{O9y=(w,xjBJK#)˜y4SE+&-]͊1BWɦF4"^ZvJ,T9(RWԪc&<#j)+^b>NQB#tIɥ)!49ݒwFLR(yALš2)S'G3
-y3b8
-Tax A
-0H($u
-т(wꆗs(
-`Hi$4X.,XR
-Zz\7#p?:3{pXt6TNw+pUpLcA>A_>hp|݇t:`n!f ɸsk6xQYg+#WԶŹ>㼀V n|E-j_qͨqָMaԸM[-dCl5^fwKL<} X'g
-y34rq[ )'M4Z־O4^<Oh,c6-FܪspK=z68Wg0WI
-m1!nsb?|N߂m4mX6Q6m|e F x&/Q^IX_Jꇺ[-8?DmfMܦ0ܦhE.miU]s?F
-endstream
-endobj
-541 0 obj
-<<
-/F16 196 0 R
-/F9 92 0 R
-/F10 99 0 R
-/F8 87 0 R
-/F14 164 0 R
->>
-endobj
-533 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 541 0 R
->>
-endobj
-544 0 obj
-[542 0 R/XYZ 124.8 638.47 null]
-endobj
-545 0 obj
-[542 0 R/XYZ 124.8 600.18 null]
-endobj
-546 0 obj
-[542 0 R/XYZ 124.8 602.12 null]
-endobj
-547 0 obj
-[542 0 R/XYZ 124.8 590.16 null]
-endobj
-548 0 obj
-[542 0 R/XYZ 124.8 578.21 null]
-endobj
-549 0 obj
-[542 0 R/XYZ 124.8 566.25 null]
-endobj
-550 0 obj
-[542 0 R/XYZ 124.8 554.3 null]
-endobj
-551 0 obj
-[542 0 R/XYZ 124.8 518.49 null]
-endobj
-552 0 obj
-[542 0 R/XYZ 124.8 518.49 null]
-endobj
-553 0 obj
-[542 0 R/XYZ 124.8 506.53 null]
-endobj
-554 0 obj
-[542 0 R/XYZ 124.8 494.58 null]
-endobj
-555 0 obj
-[542 0 R/XYZ 124.8 482.62 null]
-endobj
-556 0 obj
-[542 0 R/XYZ 124.8 470.67 null]
-endobj
-557 0 obj
-<<
-/Rect[214.68 332.32 229.41 340.74]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.4.2)
->>
->>
-endobj
-558 0 obj
-[542 0 R/XYZ 124.8 305.53 null]
-endobj
-559 0 obj
-[542 0 R/XYZ 149.71 307.47 null]
-endobj
-560 0 obj
-[542 0 R/XYZ 124.8 237.87 null]
-endobj
-561 0 obj
-[542 0 R/XYZ 149.71 239.81 null]
-endobj
-562 0 obj
-[542 0 R/XYZ 149.71 227.85 null]
-endobj
-563 0 obj
-[542 0 R/XYZ 149.71 215.9 null]
-endobj
-564 0 obj
-[542 0 R/XYZ 149.71 203.94 null]
-endobj
-565 0 obj
-[542 0 R/XYZ 149.71 191.99 null]
-endobj
-566 0 obj
-[542 0 R/XYZ 149.71 180.03 null]
-endobj
-567 0 obj
-[542 0 R/XYZ 149.71 168.08 null]
-endobj
-568 0 obj
-[542 0 R/XYZ 149.71 156.12 null]
-endobj
-569 0 obj
-[542 0 R/XYZ 149.71 144.17 null]
-endobj
-570 0 obj
-[542 0 R/XYZ 149.71 132.21 null]
-endobj
-571 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 1910
->>
-stream
-xڭXKoFW=Q9h6u)hqmHbA{gAQbSn"3fQB$ϛhϋ_Se$S& "+N\]PW;S=*I"֦_8ODшjAR'Jhw-fåx+ ҟyO=wкIdR}5<9Ѹ4%YƤ#cTL3 '91הDPUS$\D{&q$)z=$dSj;Dkj6kۑ>ScyO'7n'=Sg7,ږ$ZjЀgj{L<\j{1\$ϋH2hN({[KR7ٜ"3|qmS6eSc,$
-$ nl.Sw>uMUOCcW>KSTK,ܧpcќqȂN%Ĝyul.h;w}[ַ,#Tz8Xt4{s$i ]r7m`#C gV +d<!BH
-T?͋b[5_o{?-~;6aQpu
-
-#i#[7mCC8I䐷E >V]ݯsuA׾x3A1GA㠋ٔam3{}|AB+Qן*" ƈ5{4 x4 <yHlk ŅIq3= +L ܎acKy n 3 WVue5`~E7uV`z;mV8*/r՞sXP7?–Z`Q<<sFx>o'+L:ach79>"L)n0$%nqni\56n- Xq{c_$
-`Vz\WvmI@+z3`55lCM0 vB\lǛ 1m9 ֥jpWyL27OunP}|.}o%b74![T\ @ޭJ8]MozHoso8B 5RVt@9 BCqv4GXS"P>an.-Bq~ _+0"ഺ6e}b%i$"/h}dSĩ8$a*hh)`f³R3| I A$Ӂ>g|)
-endstream
-endobj
-572 0 obj
-[557 0 R]
-endobj
-573 0 obj
-<<
-/F16 196 0 R
-/F9 92 0 R
-/F10 99 0 R
-/F7 83 0 R
-/F12 129 0 R
->>
-endobj
-543 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 573 0 R
->>
-endobj
-576 0 obj
-[574 0 R/XYZ 124.8 570.87 null]
-endobj
-577 0 obj
-[574 0 R/XYZ 124.8 530.55 null]
-endobj
-578 0 obj
-[574 0 R/XYZ 124.8 453.52 null]
-endobj
-579 0 obj
-[574 0 R/XYZ 124.8 403.33 null]
-endobj
-580 0 obj
-[574 0 R/XYZ 124.8 405.27 null]
-endobj
-581 0 obj
-[574 0 R/XYZ 124.8 369.57 null]
-endobj
-582 0 obj
-[574 0 R/XYZ 124.8 369.57 null]
-endobj
-583 0 obj
-<<
-/Rect[301.82 338.77 316.55 347.19]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(subsection.5.5)
->>
->>
-endobj
-584 0 obj
-[574 0 R/XYZ 124.8 240.24 null]
-endobj
-585 0 obj
-[574 0 R/XYZ 124.8 202 null]
-endobj
-586 0 obj
-[574 0 R/XYZ 124.8 203.94 null]
-endobj
-587 0 obj
-[574 0 R/XYZ 124.8 191.99 null]
-endobj
-588 0 obj
-[574 0 R/XYZ 124.8 180.03 null]
-endobj
-589 0 obj
-[574 0 R/XYZ 124.8 168.08 null]
-endobj
-590 0 obj
-[574 0 R/XYZ 124.8 156.12 null]
-endobj
-591 0 obj
-[574 0 R/XYZ 124.8 144.17 null]
-endobj
-592 0 obj
-[574 0 R/XYZ 124.8 132.21 null]
-endobj
-593 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2251
->>
-stream
-xڵYK6m!LH*ﮝJ.IuMGHC#){
-cTU]:sLoH.&u^Uv.0#-nohJHuh'4ߪmSoW*ܪ jN1Lۃ
-áf4T=)hsM8DU('{ݚiV #Z;q~Tm̊
-y*XaS2صcכh$"ȭHLEAAr=]#ʌnX#&V M8 <4G
-ʞ~v#ime/c~lܡ`Zf7]% y$6cHҍ |f+tҘ8wWHΙ҂nF_I vNqh|(wG7+N6/9 |ma+ mӛGC7!8݈Ď<ޞ lL`΂ĀCsicoN/Lf9gu(ay^חmCiOlf8buvԁL/2ihR ,<nv# QP5,轃xqޓ>KMqRDhrn2rUp$EdkEqhW-)4b_2L9nvm}U_zpp`&{ĠHh{yl}`~KݵUCSY1KHaSLI|ŋ?~"C'Ck|q+β(Ϣv|`}'3%!*Ȉ˭' j,!ޅ|zlAQ[[EG+6:Θr>PN]8EoǷfخI~<sXytYj 5CvY;>" A쳨B|U(-K1;Wۘ e]_("P|ưEV1![
-RlpJrRj 0`@ٗrq#x
-tܑ8rY]TDӆ,Kn3MU))EF6&1 Z@*OUHq
-)jU154iL8Iaw0ocpot(c_<e2uYݞ0Uؑjti-qKG#@m:8FK-Q8((n?֋K
-^trtӈy{NF<"``^wmZ hqmbqzD`2%o)&G?)s,.T<P1 )<x
-MF6{M^nu:)[n[ fgt
-A&+,Y6[d0;TeƒR|7c
-i# :wsfO)SJ 0{ ob7Euvj
-9PiyuHKx.˄)soayom2C-<"'X}8ɘpjՅJ
-endstream
-endobj
-594 0 obj
-[583 0 R]
-endobj
-595 0 obj
-<<
-/F9 92 0 R
-/F15 178 0 R
-/F12 129 0 R
-/F10 99 0 R
-/F14 164 0 R
-/F16 196 0 R
-/F7 83 0 R
->>
-endobj
-575 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 595 0 R
->>
-endobj
-598 0 obj
-[596 0 R/XYZ 210.05 532.84 null]
-endobj
-599 0 obj
-[596 0 R/XYZ 124.8 500.46 null]
-endobj
-600 0 obj
-[596 0 R/XYZ 124.8 488.51 null]
-endobj
-601 0 obj
-[596 0 R/XYZ 124.8 476.55 null]
-endobj
-602 0 obj
-[596 0 R/XYZ 124.8 464.59 null]
-endobj
-603 0 obj
-[596 0 R/XYZ 124.8 452.64 null]
-endobj
-604 0 obj
-[596 0 R/XYZ 124.8 440.68 null]
-endobj
-605 0 obj
-[596 0 R/XYZ 124.8 428.73 null]
-endobj
-606 0 obj
-[596 0 R/XYZ 124.8 416.77 null]
-endobj
-607 0 obj
-[596 0 R/XYZ 124.8 404.82 null]
-endobj
-608 0 obj
-[596 0 R/XYZ 124.8 392.86 null]
-endobj
-609 0 obj
-<<
-/Rect[328.38 361.98 340.34 370.4]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.10)
->>
->>
-endobj
-610 0 obj
-[596 0 R/XYZ 124.8 299.28 null]
-endobj
-611 0 obj
-[596 0 R/XYZ 124.8 262.9 null]
-endobj
-612 0 obj
-[596 0 R/XYZ 124.8 262.9 null]
-endobj
-613 0 obj
-[596 0 R/XYZ 124.8 250.94 null]
-endobj
-614 0 obj
-[596 0 R/XYZ 124.8 238.99 null]
-endobj
-615 0 obj
-[596 0 R/XYZ 124.8 227.03 null]
-endobj
-616 0 obj
-[596 0 R/XYZ 124.8 215.08 null]
-endobj
-617 0 obj
-[596 0 R/XYZ 124.8 203.12 null]
-endobj
-618 0 obj
-[596 0 R/XYZ 124.8 191.17 null]
-endobj
-619 0 obj
-[596 0 R/XYZ 124.8 143.35 null]
-endobj
-620 0 obj
-[596 0 R/XYZ 124.8 143.35 null]
-endobj
-621 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2563
->>
-stream
-x\s۸_{g,C^2tzY3m'΃*Ѳ&2Hr'{AB%
-ܜLB`w%A1l7YnjdɆ0X6Ͳe\dF/^ #./O$b/(ݣ;1nG"R0Tvd'$ e3[DqlFys(GZ$F­o\#8@h뻆3ն!@cKo컈|k lgPC `A!t>ʵoN
-^۾ѻ,2d
-qn9pko(Vܢ>c6S(頢d%82=1C1QTBgca;q'?Lkܑ: }i ̉{s%` TW.]vhV7P$Xf <9flFe_s4*ݑӆ'\&Um5NMU{qzEqz3Yn/\P)H<^gCءj,Jt x ͷdAQ#kzGݛHY#h~㨎=8@#9:9l+s ڍ(?Hp>j-ck,JONUt&kf.}z3YX  \#J?W>/d-EǷw+׺-׀<sZTT"N9N,/yY(Fk LE9YގOTOOE6CE[,7ַ|\,W/Wv qSO,
--+9'B>&>Xm*0ph`DO` 9X_]t4y1`.g|/n:ZS)|PgYۃ$jk|FY3lZA=r{JHVNk"T^eJ21g>6z= XϧeL
-PȺ^Bדq<e.T$Lp+
- ׭|^PmQvZ(;
-endstream
-endobj
-622 0 obj
-[609 0 R]
-endobj
-623 0 obj
-<<
-/F9 92 0 R
-/F12 129 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F7 83 0 R
->>
-endobj
-597 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 623 0 R
->>
-endobj
-626 0 obj
-[624 0 R/XYZ 124.8 654.69 null]
-endobj
-627 0 obj
-[624 0 R/XYZ 124.8 606.04 null]
-endobj
-628 0 obj
-[624 0 R/XYZ 124.8 607.98 null]
-endobj
-629 0 obj
-[624 0 R/XYZ 124.8 596.02 null]
-endobj
-630 0 obj
-[624 0 R/XYZ 124.8 584.07 null]
-endobj
-631 0 obj
-[624 0 R/XYZ 124.8 548.2 null]
-endobj
-632 0 obj
-[624 0 R/XYZ 124.8 548.2 null]
-endobj
-633 0 obj
-[624 0 R/XYZ 124.8 536.24 null]
-endobj
-634 0 obj
-[624 0 R/XYZ 124.8 524.29 null]
-endobj
-635 0 obj
-<<
-/Rect[147.41 457.54 154.39 465.96]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[0 1 0]
-/A<<
-/S/GoTo
-/D(cite.tikz)
->>
->>
-endobj
-636 0 obj
-[624 0 R/XYZ 124.8 422.73 null]
-endobj
-637 0 obj
-[624 0 R/XYZ 149.71 424.66 null]
-endobj
-638 0 obj
-[624 0 R/XYZ 149.71 412.71 null]
-endobj
-639 0 obj
-[624 0 R/XYZ 149.71 400.75 null]
-endobj
-640 0 obj
-[624 0 R/XYZ 124.8 354.98 null]
-endobj
-641 0 obj
-[624 0 R/XYZ 149.71 356.92 null]
-endobj
-642 0 obj
-[624 0 R/XYZ 149.71 344.96 null]
-endobj
-643 0 obj
-[624 0 R/XYZ 149.71 333.01 null]
-endobj
-644 0 obj
-[624 0 R/XYZ 124.8 261.28 null]
-endobj
-645 0 obj
-[624 0 R/XYZ 124.8 261.28 null]
-endobj
-646 0 obj
-[624 0 R/XYZ 124.8 249.32 null]
-endobj
-647 0 obj
-[624 0 R/XYZ 124.8 237.37 null]
-endobj
-648 0 obj
-[624 0 R/XYZ 124.8 225.41 null]
-endobj
-649 0 obj
-[624 0 R/XYZ 124.8 213.46 null]
-endobj
-650 0 obj
-[624 0 R/XYZ 124.8 201.5 null]
-endobj
-651 0 obj
-[624 0 R/XYZ 124.8 189.54 null]
-endobj
-652 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 1545
->>
-stream
-xڥWYoF~
-Pi)R8I]MѨ/ VaTIwvg)RG\~曃J( ϻg?Nޚ!F AIbc%H"ne+;KG6yp[,Nn׶p ..j6UpuD5ZgEE wWӟ2ӆKAP ܉ 4!:[DcXt<~k/>N@''ȰzӠZD#XPAtr$oCF,XQ68PISn*Zy,=2LnQK |Mu !`L%FE֨zUV ε"1Cc|VCgCug!M4/kǁ,pĸŻ0oLBuXq1*̖#sRyvD<DHm$\='&(4c
-D 29}bDPET>-tbnDh/;C
-~rQs2p['D lk7 "^gqYglz#-@}
-唛7^n;DZJ /%#r<WvhvۆTOe&r&<>G!RN.! S'x@{5+wƅjl>.p~Jכ֮zлT
-ck,J(=X ;Q]s]<-pm]`'PCbZr"vdrOx켩Cg=,%3Q?Emjt#E$Ckiĕo;*ڶt2ZS܍uԄ<- dHZg6Dm5/4g㲰 $.}i0!.^%WT^Xbɞ7>/
-|'^(p3ٿz-BibʏKJ8)1+%%<#)w
-endstream
-endobj
-653 0 obj
-[635 0 R]
-endobj
-654 0 obj
-<<
-/F9 92 0 R
-/F10 99 0 R
-/F8 87 0 R
-/F14 164 0 R
-/F15 178 0 R
-/F12 129 0 R
-/F18 226 0 R
->>
-endobj
-625 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 654 0 R
->>
-endobj
-657 0 obj
-[655 0 R/XYZ 124.8 716.02 null]
-endobj
-658 0 obj
-[655 0 R/XYZ 124.8 678.74 null]
-endobj
-659 0 obj
-[655 0 R/XYZ 124.8 545.29 null]
-endobj
-660 0 obj
-[655 0 R/XYZ 124.8 465.65 null]
-endobj
-661 0 obj
-[655 0 R/XYZ 124.8 467.59 null]
-endobj
-662 0 obj
-[655 0 R/XYZ 124.8 409.86 null]
-endobj
-663 0 obj
-[655 0 R/XYZ 124.8 349.63 null]
-endobj
-664 0 obj
-[655 0 R/XYZ 124.8 327.71 null]
-endobj
-665 0 obj
-[655 0 R/XYZ 149.71 329.65 null]
-endobj
-666 0 obj
-[655 0 R/XYZ 149.71 317.7 null]
-endobj
-667 0 obj
-[655 0 R/XYZ 124.8 292.19 null]
-endobj
-668 0 obj
-[655 0 R/XYZ 124.8 271.92 null]
-endobj
-669 0 obj
-[655 0 R/XYZ 149.71 273.86 null]
-endobj
-670 0 obj
-[655 0 R/XYZ 149.71 261.91 null]
-endobj
-671 0 obj
-[655 0 R/XYZ 149.71 249.95 null]
-endobj
-672 0 obj
-[655 0 R/XYZ 149.71 238 null]
-endobj
-673 0 obj
-[655 0 R/XYZ 149.71 226.04 null]
-endobj
-674 0 obj
-[655 0 R/XYZ 149.71 214.08 null]
-endobj
-675 0 obj
-[655 0 R/XYZ 149.71 190.17 null]
-endobj
-676 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 1743
->>
-stream
-xڥXr6}WɄj"
-D$⣳O'RxsYj< b}XE]GhBc$fE+q"o'麭o(vrX=@ XUWro1lO߾{ gI/*+} RC`_ QO8ޫE]dRᔴn{(2@p:2*0VV6ˢrp-}E > -CS£9EQUjݱ'y,-j 7Vp&l^ 0O a~4t&b 09X5fY\h~'4ګ,[q*-T5i9[4nrEHj{QX_ y^YQ:L%1N2ĜںN}LF2tĹd''<C'V1Bɫ޽|0A8~H=7rjm-Z}.WT?NA T
-,C+-Ug^\7gaFs^㉳]Rw9*0PkǶWR^o& J
-n|EďYanu1B;-60- B̄ *37#/@#裢Şؑyvtsn$k۽/
-8MQ媏ju&zB!,fMlKiG q;o
-<">)!CVZCl+7iժ ̪d&JTwNQ0WfZn %309
-endstream
-endobj
-677 0 obj
-<<
-/F8 87 0 R
-/F12 129 0 R
-/F9 92 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F14 164 0 R
-/F7 83 0 R
-/F18 226 0 R
->>
-endobj
-656 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 677 0 R
->>
-endobj
-680 0 obj
-[678 0 R/XYZ 124.8 716.02 null]
-endobj
-681 0 obj
-[678 0 R/XYZ 124.8 679.2 null]
-endobj
-682 0 obj
-[678 0 R/XYZ 124.8 681.69 null]
-endobj
-683 0 obj
-[678 0 R/XYZ 124.8 637.07 null]
-endobj
-684 0 obj
-[678 0 R/XYZ 124.8 589.1 null]
-endobj
-685 0 obj
-[678 0 R/XYZ 124.8 551.33 null]
-endobj
-686 0 obj
-[678 0 R/XYZ 124.8 553.27 null]
-endobj
-687 0 obj
-[678 0 R/XYZ 124.8 541.32 null]
-endobj
-688 0 obj
-[678 0 R/XYZ 124.8 529.36 null]
-endobj
-689 0 obj
-[678 0 R/XYZ 124.8 517.41 null]
-endobj
-690 0 obj
-[678 0 R/XYZ 124.8 505.45 null]
-endobj
-691 0 obj
-[678 0 R/XYZ 124.8 419.83 null]
-endobj
-692 0 obj
-[678 0 R/XYZ 124.8 421.76 null]
-endobj
-693 0 obj
-[678 0 R/XYZ 124.8 363.49 null]
-endobj
-694 0 obj
-[678 0 R/XYZ 124.8 325.73 null]
-endobj
-695 0 obj
-[678 0 R/XYZ 124.8 327.67 null]
-endobj
-696 0 obj
-[678 0 R/XYZ 124.8 315.71 null]
-endobj
-697 0 obj
-[678 0 R/XYZ 124.8 303.76 null]
-endobj
-698 0 obj
-[678 0 R/XYZ 124.8 291.8 null]
-endobj
-699 0 obj
-[678 0 R/XYZ 124.8 279.85 null]
-endobj
-700 0 obj
-[678 0 R/XYZ 124.8 267.89 null]
-endobj
-701 0 obj
-[678 0 R/XYZ 124.8 255.93 null]
-endobj
-702 0 obj
-[678 0 R/XYZ 124.8 243.98 null]
-endobj
-703 0 obj
-[678 0 R/XYZ 124.8 186.26 null]
-endobj
-704 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 1411
->>
-stream
-xڭWKo6WRTb9ld-v(!MF{gHaKQ`y| Hx[|>yS#RxHyHxg.~pMY$d^`n:BTfb[1QLff|ngHlQ!NΩ`DE Wf.l9}omg5_4y4P ő݂(/ϥ I(:K߳ͅJJrHI4]-zr9
-_τL,8y&Ha^d 5`#/[p_Z/5z!PؑuZ]|cNW8~Wћ=8,:ͷv
-̶JdsZ#7Is07X LfTze+}7yXymc04Kp63`/[n\[Ѓt{ڎ
-sƨ0,mw׶o\
- Ĺ
-Ĉ0JD@4wPjÔr'~ <g_r(-) YD 5QA&Hu<7xX'25#䞃ebӕu91` 7=?᧵Ve겜K ty!H%M`ߒ2 Lȝ{fH<5z@5
-endstream
-endobj
-705 0 obj
-<<
-/F7 83 0 R
-/F12 129 0 R
-/F16 196 0 R
-/F9 92 0 R
-/F10 99 0 R
-/F15 178 0 R
-/F13 155 0 R
-/F18 226 0 R
->>
-endobj
-679 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 705 0 R
->>
-endobj
-708 0 obj
-[706 0 R/XYZ 124.8 716.02 null]
-endobj
-709 0 obj
-[706 0 R/XYZ 124.8 667.8 null]
-endobj
-710 0 obj
-[706 0 R/XYZ 124.8 669.74 null]
-endobj
-711 0 obj
-[706 0 R/XYZ 124.8 657.78 null]
-endobj
-712 0 obj
-[706 0 R/XYZ 124.8 645.83 null]
-endobj
-713 0 obj
-[706 0 R/XYZ 124.8 633.87 null]
-endobj
-714 0 obj
-[706 0 R/XYZ 124.8 621.92 null]
-endobj
-715 0 obj
-[706 0 R/XYZ 124.8 584.11 null]
-endobj
-716 0 obj
-[706 0 R/XYZ 124.8 586.05 null]
-endobj
-717 0 obj
-[706 0 R/XYZ 124.8 521.9 null]
-endobj
-718 0 obj
-[706 0 R/XYZ 124.8 286.33 null]
-endobj
-719 0 obj
-[706 0 R/XYZ 124.8 244.48 null]
-endobj
-720 0 obj
-[706 0 R/XYZ 124.8 246.42 null]
-endobj
-721 0 obj
-[706 0 R/XYZ 124.8 234.47 null]
-endobj
-722 0 obj
-[706 0 R/XYZ 124.8 222.51 null]
-endobj
-723 0 obj
-[706 0 R/XYZ 124.8 210.56 null]
-endobj
-724 0 obj
-[706 0 R/XYZ 124.8 198.6 null]
-endobj
-725 0 obj
-[706 0 R/XYZ 124.8 186.65 null]
-endobj
-726 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2033
->>
-stream
-xڭXY~ϯ[d]alx݌fB˒#=vS)L;b*1 EN_|LY4?N"%l2Hd]`әoE;$
-]WU;}?7eLd1'3
-6aAk*lxQ4?+,Z>ܖٶѥtzMkyLx</1ɯe&q֎G[bFeDlб9Jk@4"tbId įuQ -*iv|슧eo직jOIi:GPA=s^+5oB\n~ g4|ΗLDOB AمΓX[KvyjʫۺѲ ~n/՚On"'N,;} ue]YT@%Ctm{ԂX7̻=]iŅjT$Rö}ps&ة6??/ҏW˥|"[G 7&1&+[}Aq?Ŷ;iP,agIEO.ޓ&n b!ԼeT6͛ɐm^
-1)]LlpIJ1l%iwʺЍpAeY<p`iݦּٖ;@31/S^.JH9kEP$(<Gt_3hă<GH͖5=nVEwD5s{HIKK;^6T/mr4Zqy-q .h++ˮ:S WD_Z"=iS㒘,v&;IlSXKRQm,'02GW4{ ;^Q5#5╬FjĉW"Vcj4vj= 6ՈK#RBFTIg[t #Aʆu)Ѻ ` ޣB3yٛbe3 H8Q$8P҆`Ṡ
-N~OFk0Dm 7B=ݭTM#ESítTB/ï#nKG"U-`t{B{0ߊ`¹ROnQ"_l}HnJ -P*rsQeyF
-6 3)3
-5-
- bǷT#>M3.E*LxW6r  W vf6pdG^J PgTaûޜ뿳,"p .>E3~uRK/ZX|m __E !%qDA@HȮv]>_TW~
-endstream
-endobj
-727 0 obj
-<<
-/F7 83 0 R
-/F9 92 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F8 87 0 R
-/F12 129 0 R
-/F15 178 0 R
-/F17 199 0 R
-/F14 164 0 R
->>
-endobj
-707 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 727 0 R
->>
-endobj
-730 0 obj
-[728 0 R/XYZ 124.8 716.02 null]
-endobj
-731 0 obj
-[728 0 R/XYZ 124.8 718.01 null]
-endobj
-732 0 obj
-[728 0 R/XYZ 124.8 706.06 null]
-endobj
-733 0 obj
-[728 0 R/XYZ 124.8 694.1 null]
-endobj
-734 0 obj
-[728 0 R/XYZ 124.8 682.15 null]
-endobj
-735 0 obj
-[728 0 R/XYZ 124.8 670.19 null]
-endobj
-736 0 obj
-[728 0 R/XYZ 124.8 658.24 null]
-endobj
-737 0 obj
-[728 0 R/XYZ 124.8 646.28 null]
-endobj
-738 0 obj
-[728 0 R/XYZ 124.8 634.33 null]
-endobj
-739 0 obj
-[728 0 R/XYZ 124.8 622.37 null]
-endobj
-740 0 obj
-[728 0 R/XYZ 124.8 571.96 null]
-endobj
-741 0 obj
-[728 0 R/XYZ 124.8 552.24 null]
-endobj
-742 0 obj
-[728 0 R/XYZ 124.8 554.18 null]
-endobj
-743 0 obj
-<<
-/Rect[343.99 523.29 355.95 531.71]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(figure.11)
->>
->>
-endobj
-744 0 obj
-[728 0 R/XYZ 124.8 491.91 null]
-endobj
-745 0 obj
-[728 0 R/XYZ 124.8 494.4 null]
-endobj
-746 0 obj
-[728 0 R/XYZ 124.8 369.92 null]
-endobj
-747 0 obj
-[728 0 R/XYZ 124.8 313.68 null]
-endobj
-748 0 obj
-<<
-/Rect[169.19 179.68 176.17 188.1]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[0 1 0]
-/A<<
-/S/GoTo
-/D(cite.tikz)
->>
->>
-endobj
-749 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2004
->>
-stream
-xڽXK8ek3"ER>d0>0X7Mڨ$O}X$[NŢ(*NB~6yy8IY'D X,'?Ui
-h~1t4f:agS<->Lo[EO%V,~cZRfH%1*l5M;V9SDv1=#
-26JVA74qWT-Υr75/
-̀ʑ`[vL0aRNB{Z>Ck q1v?lBLEe1gouCGTӛZaR B6J SZ*=Ե) HK+jDz[sU,|}t,w{WBŻCm%bRqD$9Z D`Fw֜7.G\D,7$!$JW;NI /w4Ac'qʪMy;V-Y>?iun]YMaiǤu6J}>MVgeuU[vR
->8.;ܖN 2$0^'t:c{{8pr0k?*m&xPݍ\kEC>d( 1zWp0$#ɤg!D塸$@‚L"ߊAQm됵KSwCUGA΄[f=rՃwUwMS-D"JÈO zHPqrABN<\x\OxY[rH,D;>B딦B6Lr^I9~v:cGl8v韏QZANew
- OIH(RGnᖀ+w jp.i 0j7:' ָCI<!C hR߽_ȋgx. ;Z@uyPhVah+WBqj!KPMzmnۼ)OP W7V-AMZ$;ɞl-}IHVs AB4*96/ %KoBYU}nQ;Ft
-VT8&WC٭6SSܿLѧNܛ+]YWH3ofx4D6;Kf %r3\<-G*mm>mИ(:<},F]V툎!|\NCzOE3Ѷ4΂V#4 iiTmG=‡
-bi֍qhWȏ跄_u>z/ .`.lVeYcZ3p }[FR~ G
-endstream
-endobj
-750 0 obj
-[743 0 R 748 0 R]
-endobj
-751 0 obj
-<<
-/F10 99 0 R
-/F16 196 0 R
-/F9 92 0 R
-/F14 164 0 R
-/F15 178 0 R
-/F17 199 0 R
-/F12 129 0 R
-/F8 87 0 R
->>
-endobj
-729 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 751 0 R
->>
-endobj
-754 0 obj
-[752 0 R/XYZ 124.8 546.89 null]
-endobj
-755 0 obj
-[752 0 R/XYZ 124.8 546.89 null]
-endobj
-756 0 obj
-[752 0 R/XYZ 124.8 534.94 null]
-endobj
-757 0 obj
-[752 0 R/XYZ 124.8 522.98 null]
-endobj
-758 0 obj
-[752 0 R/XYZ 124.8 511.02 null]
-endobj
-759 0 obj
-[752 0 R/XYZ 124.8 499.07 null]
-endobj
-760 0 obj
-[752 0 R/XYZ 124.8 487.11 null]
-endobj
-761 0 obj
-[752 0 R/XYZ 124.8 475.16 null]
-endobj
-762 0 obj
-[752 0 R/XYZ 124.8 463.2 null]
-endobj
-763 0 obj
-[752 0 R/XYZ 124.8 451.25 null]
-endobj
-764 0 obj
-[752 0 R/XYZ 124.8 439.29 null]
-endobj
-765 0 obj
-[752 0 R/XYZ 124.8 427.34 null]
-endobj
-766 0 obj
-[752 0 R/XYZ 124.8 415.38 null]
-endobj
-767 0 obj
-[752 0 R/XYZ 124.8 403.43 null]
-endobj
-768 0 obj
-[752 0 R/XYZ 124.8 391.47 null]
-endobj
-769 0 obj
-[752 0 R/XYZ 124.8 379.52 null]
-endobj
-770 0 obj
-[752 0 R/XYZ 124.8 367.56 null]
-endobj
-771 0 obj
-[752 0 R/XYZ 124.8 355.61 null]
-endobj
-772 0 obj
-[752 0 R/XYZ 124.8 343.65 null]
-endobj
-773 0 obj
-[752 0 R/XYZ 124.8 331.7 null]
-endobj
-774 0 obj
-[752 0 R/XYZ 124.8 319.74 null]
-endobj
-775 0 obj
-[752 0 R/XYZ 124.8 307.79 null]
-endobj
-776 0 obj
-[752 0 R/XYZ 124.8 295.83 null]
-endobj
-777 0 obj
-[752 0 R/XYZ 124.8 283.88 null]
-endobj
-778 0 obj
-[752 0 R/XYZ 124.8 271.92 null]
-endobj
-779 0 obj
-[752 0 R/XYZ 124.8 259.97 null]
-endobj
-780 0 obj
-[752 0 R/XYZ 124.8 248.01 null]
-endobj
-781 0 obj
-[752 0 R/XYZ 124.8 236.06 null]
-endobj
-782 0 obj
-[752 0 R/XYZ 124.8 224.1 null]
-endobj
-783 0 obj
-[752 0 R/XYZ 124.8 212.15 null]
-endobj
-784 0 obj
-[752 0 R/XYZ 124.8 200.19 null]
-endobj
-785 0 obj
-[752 0 R/XYZ 124.8 188.24 null]
-endobj
-786 0 obj
-[752 0 R/XYZ 172.59 160.34 null]
-endobj
-787 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 8599
->>
-stream
-x]WE+-4 ?b"ɲ+{X$O[Vi4*mN|HUR^io?N.F**anxgv_w_]n:y W&Ke91k(aRttjs ﮔ"al~C!`>F?RK1Bk_/S˔.e A`D2I9H+Pz,*_{|zٛ>
-RLX3
-#eT Ch4qXMr Lh p00O
-4̳Keglw~Qs>Lo:j?Y&MҴ㧣d>~I}ыr*qJ)}=Ѿ7fm86:itETМtȜd 3!:*8l8&J*8l8I `*!8l8 
-t&[:\rMpN`SDWL:
-t&[:#S/\`:G-=ua 0p;Z(C3I-N9'))>z#t&`8
-u
-zGJlYՏ4LJN#4\i<4iHCr)))>&I}͡p
-g Bq n74
-!5QT(č@ơDQT(č@!O^:GQ87GL
-q4qH}`dPU(č@F&9p*p@~CV)0N+"Y
-j7>"~#Ohcߙ
-18FpZU(č@!V1sU87"QU ȍ8xq(Y Eq(
-18H ]
-,
-q8hi%CDU87I@ #߿(*q ~C¤dQE@8oh^8wTq8SHPVs|w=
-JD$GhLl}|[o!"&"B ^|܆^ha=}eEQ07NzcnaC7,"t[n ,)Xt罃}
-v&^ AfJywdXP2;ZRH ?Rs&(2NLO$qf'J irrezARR(?ZWDH*E}MNuAQU!/㖬~oEGđe
-t@=:3S粿w{1g^iAh%X~`}*9OcAg.:LmH3|EAs$a?L$#=)|NJ'qr]/=fKA}JAc #y>wN>@˜4`:!@lPhMt&C4:XC`bB A\n`VO`t[Z=mSaB A`n`>)P.L`a2JϽHSaB A\n`_0p! 0M
-0@}| PQy!<ۜ qj']>*?eFdΥ} -~*zo^tJN߁);V}ܓ8el&/+LTE)B,Alӭb5yA/Kd&[OkD
-BXt
- lh0WY"`4E,r|4F &s` C1 :\Y22hR7dV.XCXƂ6,X0(c): fذ@cD`,a?; /!ܟ3pvѫ|f ,~oU'yu>~-ٸdcr)uI3l4d8$)
-Θ
-L _)UC px,VH`,aE ~d0Ȯ1AG"U$kHё4_d(̮"G2XIP0F2K:"@v b7|~JBǒEI"Ͻn%$m%D z2؃ !69#vï(rIiIP0F2brp ^d(̮2GbE6*X.88[u0̰a Ǣ kLHWRt0̰Q GPUաX@Ê3K** +Uc pxJ.BȒI!I$4kJaK$M"q{H\t"A_3l3d8): fذ@cBL:9ުC f8<'Uc px,F$_DƂ6,X6o1b): fذ@cQBy*Ru0̰a B.x`,a$!CRu(аb [d,,yNޟ"͵ڥ;+-W4Qhil3fgpeT?W3lX ѱhtpP,ałŋ P,Ec px,VDGƂ6,X I[hT3lX h!§` d8<
-
-dט vG1|Ϻ3l{B,`dWrwJ%ONrA-x7IE%Ӓ\2AuLЈ!MO9D^u0̰a -F|W dvEFx9'n;
-T$ <n|dnF솿Jh)n
-kZ!vgDr1H TAv-S ]Dm-Ȯ-ёH\Rd(̮"υڕ
-KWEst]^9cY27)cdeυeϚ"U*@Y ZI\M@@BeiK&WcVVDo:jUH ёPcYU"*nt$Ah EU$H:/b2 fW@v#"Cӆgo{qjKm %O޾9VK᥵~YFջYx.\$46`D
-Vwvo!l&9#MyP2>(9Yjpx}E>"mCeBdI oj-\
-R}T&͛AIƙg==j$2x^}J% [Q=ڛN Gs}`l6uޚUi  =0FkP(*Whty1FPcS)j( *ܯ3﫻 1QQRZv⵨R.gtlʸTEs>EJQW(B
-.ܔr}7]~BҜ ]B vigZjC'
-L.kPhHF(}v]2l Rl:Ia+*[{<4KQ_jUicά1MbkPD2`RB/>KQW\dQUJX-_-)gWwEFC7-,?RWykZUkjxu3 -eJA綌VHӿ2 P*x G_Z:r}u7]~zєD+"ϻUZVک6|L7_gIyID= A/3
- 2*gJZ%elܭ﫼Bީq;%}U(V*f=_O9Srb5V-FtPrZeF(P\I 3SV'>6met4aTG42HW?Ӡ5G5[3=e0_9ޙ(BʋFPME\DQPJZEGͫR4){ud؊wV߄qH hg_ʞ6NiVYky3v3:=ϻK5nz4?]-)a7l?q.y ޿(ٚ+ct?.=$u:4CZocWG73}a6 tԣV%(ğVu}NTAeGS>넮?w&Y12[ Zta^TӾ#+R
-GN=?p/_h$b97/?|-nq88yA}˟~9))EQ|/lg<|7'G=:cFs_~o_}A3sEM7oε 9|KtWJ)o=*_⧗/}6_zzކ9g <{ë7\Jӛg/_?y}/mEkx_G-^ϯ녃L3^Kb?!|2嚕в)MeҪ*A鏕 &I^-&2jyiלVNmB9l޾܀dㄾWJ{ZhfM_ lS`l6{5KԐ'OO+M~Ezv`)uӛW7_>ߧNY#l+GSkZ7T'S^퇢T;:ZÙ?0&gޫ3Fx1Y'\(cuL<Z`7:e41SOu9:ZYT1uw1q|}_y|Q
-Ei"P'_!{a ~M۾޼y-Ҙ|us}ٓ7O~?<x>CC}|64Ft5lgW/zCWCZTNMm>]=z}#k탗?k(>-|>|]}
-endstream
-endobj
-788 0 obj
-<<
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F15 178 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F18 226 0 R
->>
-endobj
-753 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 788 0 R
->>
-endobj
-791 0 obj
-[789 0 R/XYZ 124.8 716.02 null]
-endobj
-792 0 obj
-[789 0 R/XYZ 124.8 618.74 null]
-endobj
-793 0 obj
-[789 0 R/XYZ 124.8 621.23 null]
-endobj
-794 0 obj
-[789 0 R/XYZ 124.8 609.28 null]
-endobj
-795 0 obj
-[789 0 R/XYZ 124.8 534.6 null]
-endobj
-796 0 obj
-[789 0 R/XYZ 124.8 467 null]
-endobj
-797 0 obj
-<<
-/Type/Encoding
-/Differences[0/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/arrowright/arrowup/arrowdown/arrowboth/arrownortheast/arrowsoutheast/similarequal/arrowdblleft/arrowdblright/arrowdblup/arrowdbldown/arrowdblboth/arrownorthwest/arrowsouthwest/proportional/prime/infinity/element/owner/triangle/triangleinv/negationslash/mapsto/universal/existential/logicalnot/emptyset/Rfractur/Ifractur/latticetop/perpendicular/aleph/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/union/intersection/unionmulti/logicaland/logicalor/turnstileleft/turnstileright/floorleft/floorright/ceilingleft/ceilingright/braceleft/braceright/angbracketleft/angbracketright/bar/bardbl/arrowbothv/arrowdblbothv/backslash/wreathproduct/radical/coproduct/nabla/integral/unionsq/intersectionsq/subsetsqequal/supersetsqequal/section/dagger/daggerdbl/paragraph/club/diamond/heart/spade/arrowleft
-160/space/minus/periodcentered/multiply/asteriskmath/divide/diamondmath/plusminus/minusplus/circleplus/circleminus
-173/circlemultiply/circledivide/circledot/circlecopyrt/openbullet/bullet/equivasymptotic/equivalence/reflexsubset/reflexsuperset/lessequal/greaterequal/precedesequal/followsequal/similar/approxequal/propersubset/propersuperset/lessmuch/greatermuch/precedes/follows/arrowleft/spade]
->>
-endobj
-800 0 obj
-<<
-/Encoding 797 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F20
-/FontDescriptor 799 0 R
-/BaseFont/ITIGBW+CMBSY10
-/FirstChar 33
-/LastChar 196
-/Widths[1150 575 575 1150 1150 1150 894.4 1150 1150 702.8 702.8 1150 1150 1150 894.4
-344.4 1150 766.7 766.7 1022.2 1022.2 0 0 638.9 638.9 766.7 575 830.6 830.6 894.4
-894.4 702.8 920.7 747.8 613 892.1 606.9 814.1 681.6 987.4 642.4 779.4 871.2 788.2
-1377.8 937.3 905.6 809.9 939.2 989.6 696.4 644.1 714.7 737.4 1168.6 816.7 758.6 818.5
-766.7 766.7 766.7 766.7 766.7 702.8 702.8 511.1 511.1 511.1 511.1 575 575 447.2 447.2
-319.4 575 575 702.8 575 319.4 958.3 900 958.3 568.8 766.7 766.7 894.4 894.4 526.4
-511.1 511.1 702.8 894.4 894.4 894.4 894.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 894.4 319.4 894.4 575 894.4 575 894.4 894.4 894.4 894.4
-0 0 894.4 894.4 894.4 1150 575 575 894.4 894.4 894.4 894.4 894.4 894.4 894.4 894.4
-894.4 894.4 894.4 894.4 1150 1150 894.4 894.4 1150 894.4]
->>
-endobj
-801 0 obj
-[789 0 R/XYZ 124.8 320.86 null]
-endobj
-802 0 obj
-[789 0 R/XYZ 124.8 323.35 null]
-endobj
-803 0 obj
-[789 0 R/XYZ 124.8 311.4 null]
-endobj
-804 0 obj
-[789 0 R/XYZ 124.8 299.44 null]
-endobj
-805 0 obj
-[789 0 R/XYZ 124.8 287.48 null]
-endobj
-806 0 obj
-[789 0 R/XYZ 124.8 275.53 null]
-endobj
-807 0 obj
-[789 0 R/XYZ 124.8 263.57 null]
-endobj
-808 0 obj
-[789 0 R/XYZ 124.8 251.62 null]
-endobj
-809 0 obj
-[789 0 R/XYZ 124.8 239.66 null]
-endobj
-810 0 obj
-[789 0 R/XYZ 124.8 204.64 null]
-endobj
-811 0 obj
-[789 0 R/XYZ 124.8 206.57 null]
-endobj
-812 0 obj
-[789 0 R/XYZ 124.8 170.99 null]
-endobj
-813 0 obj
-[789 0 R/XYZ 124.8 173.48 null]
-endobj
-814 0 obj
-[789 0 R/XYZ 124.8 140.39 null]
-endobj
-815 0 obj
-[789 0 R/XYZ 124.8 140.39 null]
-endobj
-816 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2092
->>
-stream
-xڵYKoW(
-p^׽闏H*7DK$%j:E[؆yZFdvѐhco\_b0b54r~ʪ;qa|<g]{OokGi$A<r*]E&RPҳ;+cf#q9KXf @(Y?Xҳ抆u^nmDR'NV=9_`čc\Ulp>wkpϓW_wG@,C>|$A\lQ3"3E&trGTxOSe^*EC>~H}8Nwܹ>b[2!STcW~؀F.:7ɀZ߯5(f<,{P
-
-5]~cwK435qw?oم~=R]HGTat:b>AvTg,X-ob[R_җnKu&4t2(SNs$( d LTR0StDƺlC+(܅¢{Έό9OWDU}H[~nԟݣ,_.槒+P*r0qΐ᷹֐
-eSl|[ݎ!埦k% 1*%eA{Ao4l*:ܕC]wRzr׹bBB>{*pzWtbo*Ww8z}40%;y39JB6/q6[
-}_PKRC!bRK|
-6.r&4gVg
- GeX]aS2H]=@=Z\BN $ꔱ+ǂ>]<VyqIwUA%!VMӿp0J7tHKqL@}T*8
-O?T_/ rIc$AJHaqmڬO/tP>!;1qw>(򰿱7|,Y={%Ai/3?\UN[J:O^.S Y Vǖmu5nJ!3,k^w/&J۴7NLHٷ4/L ͯ`b@ FpXʻ=PUWnE8t_~XF"RS8i(Y8e\^bxLͰ <6nx0F{^I&U
-endstream
-endobj
-817 0 obj
-<<
-/F8 87 0 R
-/F9 92 0 R
-/F10 99 0 R
-/F13 155 0 R
-/F16 196 0 R
-/F12 129 0 R
-/F15 178 0 R
-/F14 164 0 R
-/F17 199 0 R
-/F20 800 0 R
-/F18 226 0 R
->>
-endobj
-790 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 817 0 R
->>
-endobj
-820 0 obj
-[818 0 R/XYZ 124.8 697.13 null]
-endobj
-821 0 obj
-[818 0 R/XYZ 124.8 628.94 null]
-endobj
-822 0 obj
-<<
-/Rect[147.63 598.18 153.6 604.67]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(Hfootnote.1)
->>
->>
-endobj
-823 0 obj
-[818 0 R/XYZ 124.8 561.3 null]
-endobj
-824 0 obj
-[818 0 R/XYZ 124.8 505.58 null]
-endobj
-825 0 obj
-[818 0 R/XYZ 124.8 401.52 null]
-endobj
-826 0 obj
-[818 0 R/XYZ 124.8 181.37 null]
-endobj
-829 0 obj
-<<
-/Encoding 60 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F21
-/FontDescriptor 828 0 R
-/BaseFont/FRQJZI+CMR6
-/FirstChar 33
-/LastChar 196
-/Widths[351.8 611.1 1000 611.1 1000 935.2 351.8 481.5 481.5 611.1 935.2 351.8 416.7
-351.8 611.1 611.1 611.1 611.1 611.1 611.1 611.1 611.1 611.1 611.1 611.1 351.8 351.8
-351.8 935.2 578.7 578.7 935.2 896.3 850.9 870.4 915.7 818.5 786.1 941.7 896.3 442.6
-624.1 928.7 753.7 1090.7 896.3 935.2 818.5 935.2 883.3 675.9 870.4 896.3 896.3 1220.4
-896.3 896.3 740.7 351.8 611.1 351.8 611.1 351.8 351.8 611.1 675.9 546.3 675.9 546.3
-384.3 611.1 675.9 351.8 384.3 643.5 351.8 1000 675.9 611.1 675.9 643.5 481.5 488
-481.5 675.9 643.5 870.4 643.5 643.5 546.3 611.1 1222.2 611.1 611.1 611.1 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 753.7 1000 935.2 831.5
-805.5 896.3 870.4 935.2 870.4 935.2 0 0 870.4 736.1 703.7 703.7 1055.5 1055.5 351.8
-384.3 611.1 611.1 611.1 611.1 611.1 896.3 546.3 611.1 870.4 935.2 611.1 1077.8 1207.4
-935.2 351.8 611.1]
->>
-endobj
-830 0 obj
-[818 0 R/XYZ 140.05 151.66 null]
-endobj
-833 0 obj
-<<
-/Encoding 60 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F22
-/FontDescriptor 832 0 R
-/BaseFont/QVSABM+CMR8
-/FirstChar 33
-/LastChar 196
-/Widths[295.1 531.3 885.4 531.3 885.4 826.4 295.1 413.2 413.2 531.3 826.4 295.1 354.2
-295.1 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 295.1 295.1
-295.1 826.4 501.7 501.7 826.4 795.8 752.1 767.4 811.1 722.6 693.1 833.5 795.8 382.6
-545.5 825.4 663.6 972.9 795.8 826.4 722.6 826.4 781.6 590.3 767.4 795.8 795.8 1091
-795.8 795.8 649.3 295.1 531.3 295.1 531.3 295.1 295.1 531.3 590.3 472.2 590.3 472.2
-324.7 531.3 590.3 295.1 324.7 560.8 295.1 885.4 590.3 531.3 590.3 560.8 414.1 419.1
-413.2 590.3 560.8 767.4 560.8 560.8 472.2 531.3 1062.5 531.3 531.3 531.3 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 663.6 885.4 826.4 736.8
-708.3 795.8 767.4 826.4 767.4 826.4 0 0 767.4 619.8 590.3 590.3 885.4 885.4 295.1
-324.7 531.3 531.3 531.3 531.3 531.3 795.8 472.2 531.3 767.4 826.4 531.3 958.7 1076.8
-826.4 295.1 531.3]
->>
-endobj
-834 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2453
->>
-stream
-xڭYKW{ z/6y؃ ʁ#Qc>>h>$r4F.b_VqE/2Z%"VU%M3
-|˹n>١]oZ NBZ?;G9?yɏvؽgSݞp~Nn鍕~WZs(I[(8A>u)f\~M ‡y5bVC-/ۭg+ي cS@g"-CFJ&kۼ:} 3<%>q0$p $sio } k wt?)YZs=m]~`iHࣴm}C}QNVs1M䄕?I̫|j/]6SĊ]vrHo$ f&Djn҆K>Yq7XoTl9c<?=z#bhzx_]~k=Zy\mCO<:DDOE+n}=-LO z@RN^xgv ƍW|[ y3k*-YՕD~I3IDH)"|trAc)W1f\yFu[b &$CCnl!soO>㗿@ȼiMpΫjd,L< p8P6 vuU;R%<VxhjO]^FFݓ6<XW
-P8KSMgm@Go6^T©40ƕ©H/Ǭ˼m̑jӦh 14u=ձJx|3% Cf!RWQmIn=7 ;lMgNE$x7eTw\-f5
-'Z';nf"$K>^d7PtD=^Yh
-AX'nsɎ9NN48I=I@K5SYɑp=r.c#.쭻H^qGL7q'60 ({2XLZ y3g
-Ş1I1'j]P~fjv)`'3:CY=OiJp J9;9t;H*wPRBh=cf.;KWd=#m\nqCځ@r rd݂?/krFN5Ӵi(2 |Q\<9DK=OC3 )T#x iR{bB@B 9c6|rW4˷ӌ8]j?ؐtJ//BひM pSx*N ,2Se2ľ8ߴ al
-endstream
-endobj
-835 0 obj
-[822 0 R]
-endobj
-836 0 obj
-<<
-/F16 196 0 R
-/F12 129 0 R
-/F9 92 0 R
-/F10 99 0 R
-/F15 178 0 R
-/F8 87 0 R
-/F17 199 0 R
-/F13 155 0 R
-/F19 312 0 R
-/F21 829 0 R
-/F22 833 0 R
->>
-endobj
-819 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 836 0 R
->>
-endobj
-839 0 obj
-[837 0 R/XYZ 124.8 612.1 null]
-endobj
-840 0 obj
-[837 0 R/XYZ 149.71 614.03 null]
-endobj
-841 0 obj
-[837 0 R/XYZ 149.71 602.08 null]
-endobj
-842 0 obj
-[837 0 R/XYZ 149.71 590.12 null]
-endobj
-843 0 obj
-[837 0 R/XYZ 149.71 578.17 null]
-endobj
-844 0 obj
-[837 0 R/XYZ 149.71 566.21 null]
-endobj
-845 0 obj
-[837 0 R/XYZ 124.8 452.47 null]
-endobj
-846 0 obj
-[837 0 R/XYZ 149.71 452.47 null]
-endobj
-847 0 obj
-[837 0 R/XYZ 149.71 440.52 null]
-endobj
-848 0 obj
-[837 0 R/XYZ 149.71 428.56 null]
-endobj
-849 0 obj
-[837 0 R/XYZ 149.71 416.61 null]
-endobj
-850 0 obj
-[837 0 R/XYZ 149.71 404.65 null]
-endobj
-851 0 obj
-<<
-/Rect[300.84 330.58 306.82 337.07]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[1 0 0]
-/A<<
-/S/GoTo
-/D(Hfootnote.2)
->>
->>
-endobj
-852 0 obj
-[837 0 R/XYZ 124.8 266.18 null]
-endobj
-853 0 obj
-[837 0 R/XYZ 124.8 250.59 null]
-endobj
-854 0 obj
-[837 0 R/XYZ 124.8 250.59 null]
-endobj
-855 0 obj
-[837 0 R/XYZ 124.8 238.63 null]
-endobj
-856 0 obj
-[837 0 R/XYZ 124.8 226.68 null]
-endobj
-857 0 obj
-[837 0 R/XYZ 124.8 214.72 null]
-endobj
-858 0 obj
-[837 0 R/XYZ 124.8 202.77 null]
-endobj
-859 0 obj
-[837 0 R/XYZ 140.05 129.72 null]
-endobj
-860 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 1943
->>
-stream
-xYKF-0jf/^ ALH=#P RL j>4lK{RZQ’$?}}ꭍ,:RZ2+7L-ꪙ}׫<Nhvw? EoML:fW#nܲv+WܯK ?Wτ,vm zd
-f;DvU>H9]Q$}alC`W-*d\0C>貱.b |႑|H :: J%|l;F  drR21ӱ`BIfsT"CRa/, T>
-@ɜ1<UL1XA@e(
- 0}J!͛߁>vK1b1WkXI;n-v݇_,a|^`l\9De7zGR}Ѻ!:[ק ; JZq(n8Б"a鸢?_8Kā:'T8+q9+uIp^祮yP.l]SV3775Q.>1'~qMA_%A} Kċ١*mnS<4
-A1(92M
-J
-Z87~[^`fF<᫷Ps3mɷÔCw%I<[%q/l>LKUgh֡ߤ MƲ
-@OS
-endstream
-endobj
-861 0 obj
-[851 0 R]
-endobj
-862 0 obj
-<<
-/F9 92 0 R
-/F10 99 0 R
-/F12 129 0 R
-/F15 178 0 R
-/F14 164 0 R
-/F16 196 0 R
-/F17 199 0 R
-/F8 87 0 R
-/F21 829 0 R
-/F22 833 0 R
->>
-endobj
-838 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 862 0 R
->>
-endobj
-865 0 obj
-[863 0 R/XYZ 124.8 686.24 null]
-endobj
-866 0 obj
-[863 0 R/XYZ 124.8 688.17 null]
-endobj
-867 0 obj
-[863 0 R/XYZ 124.8 676.22 null]
-endobj
-868 0 obj
-[863 0 R/XYZ 124.8 664.26 null]
-endobj
-869 0 obj
-[863 0 R/XYZ 124.8 652.31 null]
-endobj
-870 0 obj
-[863 0 R/XYZ 124.8 640.35 null]
-endobj
-871 0 obj
-[863 0 R/XYZ 124.8 552.36 null]
-endobj
-872 0 obj
-[863 0 R/XYZ 124.8 450.78 null]
-endobj
-873 0 obj
-[863 0 R/XYZ 124.8 452.72 null]
-endobj
-874 0 obj
-[863 0 R/XYZ 124.8 440.77 null]
-endobj
-875 0 obj
-[863 0 R/XYZ 124.8 428.81 null]
-endobj
-876 0 obj
-[863 0 R/XYZ 124.8 416.86 null]
-endobj
-877 0 obj
-[863 0 R/XYZ 124.8 404.9 null]
-endobj
-878 0 obj
-[863 0 R/XYZ 124.8 392.95 null]
-endobj
-879 0 obj
-[863 0 R/XYZ 124.8 380.99 null]
-endobj
-880 0 obj
-[863 0 R/XYZ 124.8 369.03 null]
-endobj
-881 0 obj
-[863 0 R/XYZ 124.8 357.08 null]
-endobj
-882 0 obj
-[863 0 R/XYZ 124.8 345.12 null]
-endobj
-883 0 obj
-[863 0 R/XYZ 124.8 333.17 null]
-endobj
-884 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 1926
->>
-stream
-x[_oDSXBDjz׻
-dѲ(WU.¬%jk5 V z]8, )Ѻ}ڨ0ZlH1PM2}*uߎ@$m;H%dp(M(8ab `\2wP^2$& Vj奵>yxi|xL,n_|M.^6ڝF "ӨnⶭqRBnNE9`]LHx
-8%:Sg`DBRefzU^G#&MTe?QrDL-+[fѦ92Msg]%o #F݈UP$(3EO <ߢ86Yyl4Oټ8*"IZHB]*K /d/&'0Dޛ4+p6
-Igٞ(]3TsPB!m֦K8ͣڠ4D)6,<m>-Ua0M?0UJlɪ*9%{iʒ2ɶ6TD!5iY
-;VQ,j{@)LZC t|fŶ(<q~]eYѲ, xg<W8*, "lI$Op$R唏CT#}aU JYr--7GC\8bCyg\З&q.i[a2n59u|x_Ix"d0kgFC@gn:B-.׉ 
-IlѸ8>_]fwEC^KuijĐ"Ӈd/AЉP3}WYA\ P
-T=[#mrZ~LLȉb[N 7(Mۗ+E;f
-*;1=ʀ]`f4]ħǠW/nɵݓY>koǓf)q,Y9uɢS:2Uw2B³b-;u@;k3mmX77މ+?ix֬*0 ǦF
-aftt?H8?E_]ABPC>g@Ґv<!'LPYOTi"9強y(1ag5t
-endstream
-endobj
-885 0 obj
-<<
-/F9 92 0 R
-/F14 164 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F8 87 0 R
-/F18 226 0 R
-/F15 178 0 R
->>
-endobj
-864 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 885 0 R
->>
-endobj
-888 0 obj
-[886 0 R/XYZ 124.8 674.27 null]
-endobj
-889 0 obj
-[886 0 R/XYZ 124.8 676.21 null]
-endobj
-890 0 obj
-[886 0 R/XYZ 124.8 664.25 null]
-endobj
-891 0 obj
-[886 0 R/XYZ 124.8 652.3 null]
-endobj
-892 0 obj
-[886 0 R/XYZ 124.8 435.38 null]
-endobj
-893 0 obj
-[886 0 R/XYZ 124.8 353.25 null]
-endobj
-894 0 obj
-[886 0 R/XYZ 124.8 293.76 null]
-endobj
-895 0 obj
-[886 0 R/XYZ 124.8 240.28 null]
-endobj
-896 0 obj
-[886 0 R/XYZ 124.8 213.57 null]
-endobj
-897 0 obj
-[886 0 R/XYZ 124.8 215.9 null]
-endobj
-898 0 obj
-[886 0 R/XYZ 124.8 203.94 null]
-endobj
-899 0 obj
-[886 0 R/XYZ 124.8 191.99 null]
-endobj
-900 0 obj
-[886 0 R/XYZ 124.8 180.03 null]
-endobj
-901 0 obj
-[886 0 R/XYZ 124.8 168.08 null]
-endobj
-902 0 obj
-[886 0 R/XYZ 124.8 156.12 null]
-endobj
-903 0 obj
-[886 0 R/XYZ 124.8 144.17 null]
-endobj
-904 0 obj
-[886 0 R/XYZ 124.8 132.21 null]
-endobj
-905 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 2317
->>
-stream
-xڭY_o0+VAcHt@C^EW[]Y2$y4w)ɖ8۾I?fg~{Yb=)x6 '|.B/K]σ 8|s3|=h2۵yZȫe^&mX]g"I%I Yx'8%!SC5pq6bnنwUvDv-|`c"Ƿx.!9*^블&Ƅk#_p6ߙIT0~o諻uk&_͘4>I+wSYS! PN9qɶI gmpHpdycS
-gAhXQk󹔁ۮ$48s
-@2
-î<8.qJq
-DŽl ,T&"~lVPRq75jW,-W\Y(N)y4$ǖ0 iiπ %7R6y!ZG)ʦM\!y8܈*uqVU9B~ ݎkw 8/7ޖ.{}
-#8ծפm+rծӆ"v|I7ohl7s$
--u
-=P8F۸
-0
-,Ki׽*'܈R94s Qm<ӾٗOw`ӧON] &uMV%'8} Kx⵹CǷ7$,>[@z
-endstream
-endobj
-906 0 obj
-<<
-/F9 92 0 R
-/F15 178 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F18 226 0 R
-/F12 129 0 R
-/F14 164 0 R
-/F7 83 0 R
-/F17 199 0 R
->>
-endobj
-887 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 906 0 R
->>
-endobj
-909 0 obj
-[907 0 R/XYZ 124.8 718.01 null]
-endobj
-910 0 obj
-[907 0 R/XYZ 124.8 706.06 null]
-endobj
-911 0 obj
-[907 0 R/XYZ 124.8 694.1 null]
-endobj
-912 0 obj
-[907 0 R/XYZ 124.8 682.15 null]
-endobj
-913 0 obj
-[907 0 R/XYZ 124.8 670.19 null]
-endobj
-914 0 obj
-[907 0 R/XYZ 124.8 658.24 null]
-endobj
-915 0 obj
-[907 0 R/XYZ 124.8 646.28 null]
-endobj
-916 0 obj
-[907 0 R/XYZ 124.8 634.33 null]
-endobj
-917 0 obj
-[907 0 R/XYZ 124.8 622.37 null]
-endobj
-918 0 obj
-[907 0 R/XYZ 124.8 610.42 null]
-endobj
-919 0 obj
-[907 0 R/XYZ 124.8 598.46 null]
-endobj
-920 0 obj
-[907 0 R/XYZ 124.8 586.51 null]
-endobj
-921 0 obj
-[907 0 R/XYZ 124.8 574.55 null]
-endobj
-922 0 obj
-[907 0 R/XYZ 124.8 562.6 null]
-endobj
-923 0 obj
-[907 0 R/XYZ 124.8 550.64 null]
-endobj
-924 0 obj
-[907 0 R/XYZ 124.8 538.69 null]
-endobj
-925 0 obj
-<<
-/Type/Encoding
-/Differences[0/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/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/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/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/hungarumlaut/tilde/dieresis/suppress
-160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis]
->>
-endobj
-928 0 obj
-<<
-/Encoding 925 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F23
-/FontDescriptor 927 0 R
-/BaseFont/DJNBQG+CMCSC10
-/FirstChar 33
-/LastChar 196
-/Widths[319.4 552.8 902.8 552.8 902.8 844.4 319.4 436.1 436.1 552.8 844.4 319.4 377.8
-319.4 552.8 552.8 552.8 552.8 552.8 552.8 552.8 552.8 552.8 552.8 552.8 319.4 319.4
-844.4 844.4 844.4 523.6 844.4 813.9 770.8 786.1 829.2 741.7 712.5 851.4 813.9 405.6
-566.7 843 683.3 988.9 813.9 844.4 741.7 844.4 800 611.1 786.1 813.9 813.9 1105.5
-813.9 813.9 669.4 319.4 552.8 319.4 552.8 319.4 319.4 613.3 580 591.1 624.4 557.8
-535.6 641.1 613.3 302.2 424.4 635.6 513.3 746.7 613.3 635.6 557.8 635.6 602.2 457.8
-591.1 613.3 613.3 835.6 613.3 613.3 502.2 552.8 1105.5 552.8 552.8 552.8 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 683.3 902.8 844.4 755.5
-727.8 813.9 786.1 844.4 786.1 844.4 0 0 786.1 552.8 552.8 319.4 319.4 523.6 302.2
-424.4 552.8 552.8 552.8 552.8 552.8 813.9 494.4 915.6 735.6 824.4 635.6 975 1091.7
-844.4 319.4 552.8]
->>
-endobj
-931 0 obj
-<<
-/Encoding 152 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F24
-/FontDescriptor 930 0 R
-/BaseFont/ZCJYGZ+CMMI8
-/FirstChar 33
-/LastChar 196
-/Widths[660.7 490.6 632.1 882.1 544.1 388.9 692.4 1062.5 1062.5 1062.5 1062.5 295.1
-295.1 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 295.1
-295.1 826.4 531.3 826.4 531.3 559.7 795.8 801.4 757.3 871.7 778.7 672.4 827.9 872.8
-460.7 580.4 896 722.6 1020.4 843.3 806.2 673.6 835.7 800.2 646.2 618.6 718.8 618.8
-1002.4 873.9 615.8 720 413.2 413.2 413.2 1062.5 1062.5 434 564.4 454.5 460.2 546.7
-492.9 510.4 505.6 612.3 361.7 429.7 553.2 317.1 939.8 644.7 513.5 534.8 474.4 479.5
-491.3 383.7 615.2 517.4 762.5 598.1 525.2 494.2 349.5 400.2 673.4 531.3 295.1 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 642.9 885.4 806.2 736.8
-783.4 872.8 823.4 619.8 708.3 654.8 0 0 816.7 682.4 596.2 547.3 470.1 429.5 467 533.2
-495.7 376.2 612.3 619.8 639.2 522.3 467 610.1 544.1 607.2 471.5 576.4 631.6 659.7
-694.5 295.1]
->>
-endobj
-932 0 obj
-[907 0 R/XYZ 124.8 313.58 null]
-endobj
-933 0 obj
-[907 0 R/XYZ 124.8 287.22 null]
-endobj
-934 0 obj
-[907 0 R/XYZ 124.8 287.22 null]
-endobj
-935 0 obj
-[907 0 R/XYZ 124.8 275.26 null]
-endobj
-936 0 obj
-[907 0 R/XYZ 124.8 263.31 null]
-endobj
-937 0 obj
-[907 0 R/XYZ 124.8 251.35 null]
-endobj
-938 0 obj
-[907 0 R/XYZ 124.8 239.4 null]
-endobj
-939 0 obj
-[907 0 R/XYZ 124.8 227.44 null]
-endobj
-940 0 obj
-[907 0 R/XYZ 124.8 215.49 null]
-endobj
-941 0 obj
-[907 0 R/XYZ 124.8 203.53 null]
-endobj
-942 0 obj
-[907 0 R/XYZ 124.8 191.58 null]
-endobj
-943 0 obj
-[907 0 R/XYZ 124.8 179.62 null]
-endobj
-944 0 obj
-[907 0 R/XYZ 124.8 167.66 null]
-endobj
-945 0 obj
-[907 0 R/XYZ 124.8 155.71 null]
-endobj
-946 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 8461
->>
-stream
-x]ێ7}߯/ a/Xh%`B#%aZYs1YTyRYvfyraKzzm`w~U]D=G_Rʣ>O3BT:
- JKpcEۀofV)=[hkǮU_Zˏ+}
-܎@^ES"A*p;Etq@
-T@yy>3AuFfgCΨ5dʯƓ{(z~}& Ɇ9BrEkމӇ!gjeчnE>:iu \_:qǖy( uy|"Hp&Hp*.1@ $@x= HL ULz!<#TgmG|qi: S>QY9`bT NmGR3VZg⌸z&8#gmGrIgI$(OETvċ8X4rd-cz
-T& $@ $ 2N7H"1H
-s6K$(PEUvkrI$i"],7͘$"A*p;yI3.
-T@3)@
-Tۉ)/b!sr YLv"<G,W̉gK$8SW$8SWffH"1H
-$H!ƕ8G$EEPTܐHN%ę'PT
-EE ;|$BQ*r;EX,{fL6/%㙧gs<\}<RBB"cT٠,AF (ψХZyʜ7HBk++"7$W:9NHTs3I(*R"UD*s0J4"QFv&9/@U$(PnH #}BJTF!r6u>"U(*REn(ؼE2q^ϱˤ_l4b<2ˤL]]ۙuEJBAI 7$RQ!Y^"U(*REnGf(
-$H!V9a$BQ*rC"a& (*R"U䆾=Mi X dI@Q*"7$#o0ιyEEPTP
-EΔ
-:,H
-$)&I(*R"UvD*V9Ӝ
-$H!2$D#UhnHDѼJTF!:Y" (*R"UvXə/yNy?)GKrC"YrsTH2,\‘]eX:ǟZj'37~ր5L1*p3
-ȃqCS,h(TNr$ C|0Ê_ҨoB
-
-fZ PLH2CjA4c\4ZemƏ TLJ1BT<7@i@2! ȸi:,2Pi02) Ƹiu ;3Pi02) Ƹi %
-Y21,[,7ׇuN00>9grx9v? )}@݅3}R:Ժe].vwɆ'ϢQo8VK/9i/6=>{zyiHCRA٠S't։hˮy )As}M4?3d'?
- 1N&1.I'M^߆q{'e;#kP+Lx|(!I퇤kKeo=ܲd Xh
-ÚӓX768I ӼgB<IiShlͯriJ$?NK1P'@6s"EμjZ|x3gcČ\,Jjm YE2lP4V[!p%6/VyÔmdX?NP
-/;=ܝoui^"ڔSjލgNÛlh#ִpXR=0*!{cbG{iLl٧=u4En{{^TAu/b$\ ߶_v% i
-#M|Bhߧ.{xiSEBK^X7(p+ Nt}K_f4=q Fɑ$]5ଊtL9b4*Rlw%.ظOв×]<%Zm‰kǞ gO|Ət+>
-2oNR׿:]K i#"-տQgI)gZHVdcTqv`HCy#7W(o LzdE-{|,no»Bio͆l*?Rm-/*\ѶP@qiM/<&&VCmS/sEr]/VVot'{늽Z>>fUoaY;f"^7/l 񚏸{ Kmpۨ11|w
-Ns+lFmSf\׋urFe6J{&Km~pۘ81|woxAոk&f2h$M6C CՉx w
-m0n˒
-^\z{}HW u98M 4ϟxW\><z??Z?|}y|s뜗CaLd }D#zP5ǯ_\|7?UtҚE=䇷/BCv+7dtto
-,N燒b/\_Ο/_>dF| /?~|w#Ey`__Zן>9<qHlJ<Fnwܱ> x{ ^qϗWG0:d~~y@GP`\<}_kE7 Ru<VQGh^tCŠ?j{SS7=7Z#-/h=50lNI#3OoԞ?y'7B`
-endstream
-endobj
-947 0 obj
-<<
-/F10 99 0 R
-/F16 196 0 R
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F23 928 0 R
-/F15 178 0 R
-/F24 931 0 R
-/F22 833 0 R
-/F7 83 0 R
-/F18 226 0 R
->>
-endobj
-908 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 947 0 R
->>
-endobj
-952 0 obj
-<<
-/Encoding 152 0 R
-/Type/Font
-/Subtype/Type1
-/Name/F25
-/FontDescriptor 951 0 R
-/BaseFont/LOVUUY+CMMI12
-/FirstChar 33
-/LastChar 196
-/Widths[609.7 458.2 577.1 808.9 505 354.2 641.4 979.2 979.2 979.2 979.2 272 272 489.6
-489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 761.6 489.6
-761.6 489.6 516.9 734 743.9 700.5 813 724.8 633.9 772.4 811.3 431.9 541.2 833 666.2
-947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2
-380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8 453.8 482.6 468.9 563.7
-334 405.1 509.3 291.7 856.5 584.5 470.7 491.4 434.1 441.3 461.2 353.6 557.3 473.4
-699.9 556.4 477.4 454.9 312.5 377.9 623.4 489.6 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
-0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606.7 816 748.3 679.6 728.7 811.3 765.8 571.2
-652.8 598 0 0 757.6 622.8 552.8 507.9 433.7 395.4 427.7 483.1 456.3 346.1 563.7 571.2
-589.1 483.8 427.7 555.4 505 556.5 425.2 527.8 579.5 613.4 636.6 272]
->>
-endobj
-953 0 obj
-[948 0 R/XYZ 124.8 511.47 null]
-endobj
-954 0 obj
-[948 0 R/XYZ 124.8 488.76 null]
-endobj
-955 0 obj
-[948 0 R/XYZ 124.8 464.78 null]
-endobj
-956 0 obj
-[948 0 R/XYZ 124.8 466.72 null]
-endobj
-957 0 obj
-[948 0 R/XYZ 124.8 454.76 null]
-endobj
-958 0 obj
-[948 0 R/XYZ 124.8 442.81 null]
-endobj
-959 0 obj
-[948 0 R/XYZ 124.8 430.85 null]
-endobj
-960 0 obj
-[948 0 R/XYZ 124.8 418.9 null]
-endobj
-961 0 obj
-[948 0 R/XYZ 124.8 406.94 null]
-endobj
-962 0 obj
-[948 0 R/XYZ 124.8 394.99 null]
-endobj
-963 0 obj
-[948 0 R/XYZ 124.8 383.03 null]
-endobj
-964 0 obj
-[948 0 R/XYZ 124.8 371.08 null]
-endobj
-965 0 obj
-[948 0 R/XYZ 124.8 145.97 null]
-endobj
-966 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 15652
->>
-stream
-x}]Gv~hgFns`pH,ja{{ofeͮbwdVU"ĉ'2";{w7ۻ۝?sg|Pݻ\{s{u^G^}7/wEx/}?|gS~O=kCv]zW<UJy
-*`ݽIQ};\U.Ż=0S `]eyʔbkM*_{xkJJJRW#)*`t}Ҍ##y4)I A5^
->n K((pmTp$\ETl@LņU|a*J
-ܮcXcx* pmU4E/PQ
-\ϳTe={kɔ_VW׍zs}7YhG
-]w~J}tq 8.ݝ11V,\ڻȹᇌJw^9?>WC-xQUiuz3ݸ
->6S)h|L0+Sv&(5>,8L]ǦEO 4l@LĆU|ߣgf
-%vmCV6%
-$<% pmf_ Tl@LņU'%e1a _,.v\8}WaH 7 7?zDew(eF$;R@ 3pW8^rX@J6$dJ'҂U3$dCJ6cz҂U"1%SR
-$dCJ6qJ-ϐ *ـ' 3$T!A%pW(f=ftT.DE~QmG Y!x cK<T8L
-<9W+oCY-J$xpC 7q1,8{lHPܕ<12縠]HPɆl]b
- TX6a( p'˂Q"Aw%O㕳aT!A%pW2
-$
-qߤDJ6$dJ5V9ӂ+$SR 1%pW8A`,@P
-e]$-ZA.
-ـ')뜗() *ـ/F̐uݴ%'Ʊ*T!A%pW2Q,zBT֢{osdyLa0j\W8P]!2SqηuϘ*) ķ51' 8P!4 ETr4 PCLj1nMè'5@LCqkzeG B5ۚ~VYM~G B5ۚ~Zbɇ@LBqcJ6BV!F&57!j=|g%^yo*wq1_KWx,zsFӅK!GȰ$ص\
-BGl
-5Ȥ4t*x#B5fB˘GUAcܚQ
-B5fB[Ы<B5fB[ЪR"j4V%+"i1nLCSؾV!F&5)J|-/E_Խdo~d{xOX`c c
-6 PALJ1nMCjT!D6bܚL
-B5fBҐgSW F%6_PfliŀATR?oc9>U1~ۘ~Fyw!MP?JmK\TBЊè~"=ͷP_N$zgBH{ `@;B dmO,b00*Ʒ1ȸE(~X1~ۘ~ZemP?JmKHC=Q 0TA~sdjQI Gnq;QI u-V D%6ǜcJ| GI{wAP]LLSH۶:@eh]1zۖ~L?JmL?l
-r*A|eǶV F%6_T:E QI .%B+A|*b@ *ķ1 zaۘǘU<} RObq^=k`#vl`bT[M$<Ҋ~֮YQe^stĠ T;VmSnfg
- *lqP$MeS2۾"3] E&eUO^93f\$ji
-EHM-9Ԥ.djN ,FSM/KP$!jR_-/ayF*qC? +(0Q6)Q&aHЇ5[.P; m@ƤcKJߗ{ čq<XYkZ_-/a׫5UȬQM2: 0 iNYM,nqLs5yfǰHE
- I% fre
-ǴNa[%=zUlh:d+)jn#%E$}i}7GfA/3N6@'@:E9o0tlq̧٫Śs.t^yu9DSC~|SxX wRs}㡇)645%ydP\nN*l#s eV 0r ]՝4J !n Ҋ1.R=wϞFd(wïƠ9DJfϧ}\yρEr.F<Ķ]𵒥" !]|"",]Oc.U2}xeh5wB\lp8ᯧaɸ֛ՃXM>!-@ΘNႆp7G1/ qܩ0R0C=E\#o=w;1P'@#Q@l5!V !DIW{ޑvɠBolHϲ!afTxHJ?˒<}]!6ł<X|h sdfK#1igYSچ, [T1q䑐7e٧ܛjVX+.lN
-䥚0ޫez 
- Mpyڦު)9d-NLtb%ISI'%YI8̓{+>%3'5%&1Q0ْ=%ۻy^9zm*=p(TCܢ^HY%m Pc)o2β
-AؒpIț)Ay(>%Pjƪv_qtx4ɏI2h(W 5vU߄Cr~LaTAL"ަ({Jg [Nu^񵤩a|Pu0ѐpgQ^SS5U;&AEk&x/3y9K byވa8ÊXw;@/} nje/%k3\crgmdISro8<Q =_LM(;{(SiC B쾯ޚŏPf&JaowAD0(%ZhB9;cg)ML/y l-i*g T&gV9ff/0uO.Nh55S֜;PzO]YmaBtʸ*d~& 3K@FrܟwX ?X`Mbƞ2;[+ҦH0O) ^_d}Ҝ;9UDv|+~,碲^3eqX/O~8jL ZKΊ9kiWfqE(Ы-K7ASSZ03O}uqhΚYn}g"mzNe_4,&';)AZeLWirn"k!j)jK/N:Pm&Jg񂨇Rc(sF6fE%7}g=Ԋ4ݜ%HjgT㵚)M&=V^MzaԧaQLwEqi\RLz`w"UrV$YK3Uޟ.8ze{T8yj,E\=ήBçTFW f^xOhnKti4qq\ٻl])ȍ{W3;S6ړKY~,zD~8K\|b|Y^^}1sAOQcA'zXL>烩=\ }.rѢ|X@Svj1_TVP{rp\z\ǧrTjt<U a
-
-/GZvuچ/[4[Wc Lb
-^K8
-.so4W*3ivqNj皔|s/i(kC\d䨏v;b).]?WxتZlPFe|&ajRfPTǟFzM죧{H)!x9rr7ҫпX'uzq\{*h3X!J 27dvOcЛIFCC`{j>`Y>U:gެBNo@"@ti>}fNvٱS%}H#-?Q g)Ѱ8^gzO3ܫ6H/{Wԇ}o=K&rA`7k)^(U: ֽٍZ :qu"D u"8vCl+n1n=j'
-Z! ;w=gj^ }lPs{i@}7/wFwJ}|:"{>p醍14d:_~ůnM~?ܲa0≞5L O՜CȉI.<y3<`D/~~ݧO?~V>sn=*vcv8yMX tF+nX.x[4/11ڳξǞ/z:ksuYBr8w?-z+EY]Sx
- '^lc?aE?=SR>WJw"x5V u3uy{7=Wm˄W&\̮ 'pPAj4iWZإ7==|CWiӜ#q5|2*|?}}oSGZdc8mL.3yao=œ۾u=Lo1JL.j%a|ӧE7S {7=u g +<qnA0sۂ|Ry<тǞ7w]=ӂ[x=ӂȇZ kA$a=9Lig_<<2<9<6<GkϦ +):߇*|fˏ"{ꛞ:3RNOwYɩ{,&{}|˒<eǞomc{˂j8/3|sI"V3FWu0.bXu/DSa1=/3B4˹eOYWUz2|~J9=r礂m]`%?r?rLhcDk0w]=r8dϴ\sxXQ^mj̻A#Dɘ F,}C<ڝǕrze>6w%q_+tI| H#[[eN((5/_|w_S&?||;Wo ?ǟ&8\'r a_??gOr_??ᇟ~F?pk)7?OoÏ?׷o랉mι$eͱF3L ooLmTs>)X[d.#%:YSg;ī#TćO?9FҔoޜp:q [?_GkPʸZ56Q<k曍Rg~/y?m˷|ZxeK
-c=+dz4Ƽ׼ D{Y1_!}baIYg*3tv>ώHqͧpհiX>/
-rY~3%Z>3ÿv=q͚ ȗu5Gl9b
-5v<<ꅈnPDi@Lی8.H$&@bvJ|0s
-$@
-ԀҐx6(Db $&
-թS/.-QG Ayԧ7#8'1un;8^0"8Sq'e nS8qw|V2@4$On'@cE#WpLdKhq/J(C7 Yu v v :& I$&@b fa N/H"1H
-ˍ Dew HL !ֆo:K6K(X@m!*D$EEjPTܐHIOAQ!#F4w
-$H!ƕD$EEjPTܐHN%ęgPTEEj 3|$AQr;UX,G343/{<sg|<RBA!3AEIU (OmJ e$豕 [ِ+Ò_gPTEEj DF9.i$AQrC"B%AD%HT
-܎@#HPj dUv/QH@Qը!7$WΆ%gPTEEj q^H*lLF<32/ {,se~,cKn?A>A>!gMqJBAI 7$RQ!E^"5(*RCnG(
-$H!V%a$AQrC"a^% (*R"5ʦd >֠c ! 91%" (*R"5DrdAQrCuY036[l3U{hR͸66W)e]]v]vCnNPlPP$E U,$AQr;"is EPP$ܐHA`,cHTD J(*Q5D*$H Ԑ۹D3_
-^)%!
-9/9yEEjPTPyG kdXs?oډљԸ\kBat 8xMٿTg"D&oDtɁL(Xny\*9aT*H'9oDwTtgB`t3y0+u
-7"`VQ<LF*3`y0<cUL)f`7"&30\Q<L61 g[EtRFˠ8/瘶qL_VZ}{
-Ʉ4 mHCE,UA4c i$̍ TLJ1ބ415/@i@2! xuXPi02) xҐbCvT* F&oC÷[T* F&oC 7Pi02) x!c <%tָq:_T\Ա=.yո{\r;qP' F%:o&@Do`dR&O@i@2! xeS3RA4c i\Vxp]ҀdB6JhPi02) xxK2
-BȤ4mHc tTA4c i 00 +95R䓣eE^5iXN,l: P1Lt MVx^`dRFNWe-qgCd#!/R#PN@nca 285aE\R"#]HQuDmL\d0
-D%gT æ& :p ⻍._`41hQ.⻍ǫ95b=~@ɏc*V.2i=xsV &
-HTnBR ʂQ Y0[eIzazqzjkUIZj6A@Q " vxUv$OPHH݄$Q+*`|7!KV&*`| ͍a:S(%8K<1=&"E]ݽ3Tؽ}̜6EY4ŢQ%Ӟ~&45q^;߳+W,mLkʼPt꿸@N|S*3ޥsAJBԿisU*ܰzE4$O<ҺDQkқRdʋ"i*}g HcsI~SR_-f߬ز-nUk{ʮ ks@\<]d_/!I'Mnhڦ>8ѳH-i*}g Hcn* Y駤%j^^k֜3ʚ5'j^!j
-) GCڦ>۰uӳ>$Eұ7_iA>D (ԗ0O-f9TYkS>gY*. &ITPLI}B/
-ʖ]X;~
-DӇ&SRqppE"kPcKJߝT2 ƤI~J̾YUOmf9VYsrϔ j<UND
-x\ &'S]gfy|3R6B7CEZveG^WI-3aJzF5+sJDB";`dmRzNĐDߘlNi}v'AᖙI3ʖ43,*h6״)ZfbY{֬>F'Y'ʇ5зftpOwjjgcZM0ynXEJelfeǴ^a0]e=ĚUliպd)Fjn$#%E;$}iσZ3חH^B@MQ~wRzo8fLNX?Y7H&sRݧēi0ʧeK(6f&)ԜT
-R#ZBý\ܰiO RpW:2(bS{bz'9^zD{<)1h߃'5xēSܡ 6*r}dHC"p%H1DjfјKLaI-7ܱ0A&{_S7hM6xcȅ)\ԜPfpuBݧϵ8&G>!&Jh9NrƢ< {B%-~KmԞBe L2#:.|7kHAQk@C*<\hx^Wb+
-U*HJt,Jaj[Y) @a/3 JKɖ֡.?(D^Q=u ̭\FP`,<UҖ[y 1J:
-p,/1O-i*}g  ЏSRg5fxjUg:OG^ۛhD/@f`1N@q*ꇋ2:%GUZ  m*Q ŧt>eU'aK
-N%GP' w"5kYUk5S_dՕ]e~?ԽS#pCRw*cV*='FO|#ZqI ך9% ,Dޠ)R$M̾G]`|(SқRl<'s>90Յ;9U^;p,(' N9vկPbI:Fra(b'gg,2(hpFڒ7%hȤJ6H1'_aJț rkvk*;v:t@\a@<W2F1Y`jg8籰~+x;P~K!qՒq|.Q պ, b6G/ZyWSE3&K #lgY9=t*[0mx6@t9L&v%k⬵~?D"gatγTTF̣Sbgsfc_%Hޢ!yf_bJ줐Fi5U3Z᜛8ti:Lw
-_Fl(6 SN]pCCS=J̹BHNɍ3=l'3qlE~n( 
-3fJؔ\eD~&~;z0S,4.%h=c+Y+gpqǻH "qTT!yj9,ѵV,ήzBTF#Ve^xMon u 4pq\ZڽԊ,])ȋW23@5_\{^/f9#W)i?,g _=z]nՇ-dս'9!$~!v/!4ZKg;/ȫQOWeG [ait@N٢[Qi?Vi,AXg YeI>Ur9#+ 6nԇoL0?I)'ӒM^PS9L ]qo>fЇţL*dd}^
-M]2<ECkS.Oy`ʜ;ܴ$ޚ~k|'A܎>#_f )^Linͮi92hه:jۍ"? JݰCjώ
-P-FlX'g[T>'w_B.iP¬"/"`>}ro[^ppoU0&)Hc"? 1i/8^fg2 7Q1 B|qM{?/ Ա\Y0&vۋk#~Su~ye=z *PkpPR~o0t]q,]@9{AUMFa
-endstream
-endobj
-967 0 obj
-<<
-/F9 92 0 R
-/F3 69 0 R
-/F22 833 0 R
-/F4 73 0 R
-/F23 928 0 R
-/F25 952 0 R
-/F7 83 0 R
-/F8 87 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F18 226 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F15 178 0 R
->>
-endobj
-949 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 967 0 R
->>
-endobj
-970 0 obj
-[968 0 R/XYZ 124.8 716.02 null]
-endobj
-971 0 obj
-[968 0 R/XYZ 124.8 718.01 null]
-endobj
-972 0 obj
-[968 0 R/XYZ 124.8 706.06 null]
-endobj
-973 0 obj
-[968 0 R/XYZ 124.8 694.1 null]
-endobj
-974 0 obj
-[968 0 R/XYZ 124.8 682.15 null]
-endobj
-975 0 obj
-[968 0 R/XYZ 124.8 670.19 null]
-endobj
-976 0 obj
-[968 0 R/XYZ 124.8 658.24 null]
-endobj
-977 0 obj
-[968 0 R/XYZ 124.8 646.28 null]
-endobj
-978 0 obj
-[968 0 R/XYZ 124.8 634.33 null]
-endobj
-979 0 obj
-[968 0 R/XYZ 124.8 622.37 null]
-endobj
-980 0 obj
-[968 0 R/XYZ 124.8 610.42 null]
-endobj
-981 0 obj
-[968 0 R/XYZ 124.8 598.46 null]
-endobj
-982 0 obj
-[968 0 R/XYZ 124.8 586.51 null]
-endobj
-983 0 obj
-[968 0 R/XYZ 124.8 574.55 null]
-endobj
-984 0 obj
-[968 0 R/XYZ 124.8 562.6 null]
-endobj
-985 0 obj
-[968 0 R/XYZ 124.8 550.64 null]
-endobj
-986 0 obj
-[968 0 R/XYZ 124.8 538.69 null]
-endobj
-987 0 obj
-[968 0 R/XYZ 124.8 313.58 null]
-endobj
-988 0 obj
-[968 0 R/XYZ 124.8 290.87 null]
-endobj
-989 0 obj
-[968 0 R/XYZ 124.8 266.89 null]
-endobj
-990 0 obj
-[968 0 R/XYZ 124.8 268.83 null]
-endobj
-991 0 obj
-[968 0 R/XYZ 124.8 256.87 null]
-endobj
-992 0 obj
-[968 0 R/XYZ 124.8 244.92 null]
-endobj
-993 0 obj
-[968 0 R/XYZ 124.8 221.01 null]
-endobj
-994 0 obj
-[968 0 R/XYZ 124.8 209.05 null]
-endobj
-995 0 obj
-[968 0 R/XYZ 124.8 197.1 null]
-endobj
-996 0 obj
-[968 0 R/XYZ 124.8 185.14 null]
-endobj
-997 0 obj
-[968 0 R/XYZ 124.8 173.19 null]
-endobj
-998 0 obj
-[968 0 R/XYZ 124.8 161.23 null]
-endobj
-999 0 obj
-[968 0 R/XYZ 124.8 149.28 null]
-endobj
-1000 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 7208
->>
-stream
-x][oGv~ϯ
-B7tI߽a$^/Nλ9"Ʈgn'o\d%GRtzqDo^44U4BqDRH^/?^_%؏~%w77{%ǭe>u~rCkhjԯUI(|+^*rRA$% 1]+:V1FEYmI+E!9ilx0TyS6-Ȗ-
-:~U8,?+Z<XfߪRclR}WµUj8Me -[Lsj@=$dDb!لR
-l)DT"1
-$FPAY"Avz|I&S Az2'gCS"J9@ ɸcDprDK 9=n>8a@CJ$HOFd|ãX2rtӒ-}xiɇ\'pJP2P(7,u-uF:gc}`pJ$FP*! MT"1
-$FPANDT"A2$(CP$ Yr\"A2$(`_RՀT"% E A%$(#A2p>Y
--%$(#A2p>y!bDe$HP'<Je,GTw>cIS_)aiv ]r Hw8`VD:#AC1 @P*Ap>:Y=dq PpqIV$cBREIPIAN^$e(JRF·$E& Qw%$$T&!$P EIdDfHy (I9#rO EIPOy Kf}2])oSrtWJg]:sΜ|:?tڻ!!d Eu:#Si'$Az HOсRXҐTB#+3=2#gDһ!AQ2%)#gDJ(JR$eHJvCr0G d9JvCQ H AZDC
-(JQeHh7d%)CQ2rFqW,9JKeT&}r_+v]*sLwqkPdg(j3r>&QWJ(HRI*3")   $e(JRF·$oE(%$$RY SBQ2%)#gDE:A#$e(JRF1)tC6`Aы2y,#gD{5(I9# E~ȩkP EI f.Sމe6Rf230]@QXhsiж
-T@A
-HǤ(I9F0dy I* IrF$9@H8#FVӖP E91"$e(JRFI|CRkP
-WR gD.!8AQ2%)#gz'cjOSٷ@~7ѮZ`0q*)9\w}4qS|oY +$N#ܬP095v0Ӡ%aBGJz@uP0=5z0
-@095n F -M@055j F
-7+L&nL4Qȋw zzJ(9 zؐӆ F%v~I'҂Qeԅ-$.ݱ$֪9/6R3KY@Yj08QĭqL4̸"X==
-Wʜ=F8Y`z0qk`2AN":GJz@-zL&nLD; ӳB`dN-|̏(L=̉#)tL-(L=iУ7=+eN$ Ɖ9}hǕ$\~|^]rNKW ؊C֌8$q6\&pBŕ2'BRy=
-F&s"H>,K.{L&nL$ݘ#=$VpJ5N(5}=VRI5;0zJ &8 jYPj0a%5IP9K4 PXA (q"id,"\)*
- J֒;' LXI &q" kE@!$MR-Z;7e"Ny0HT 7D95]F*WA1"\0eAgT Q
-$o^lkA1HTAaqJ&à&U|H4F u . .w]"V?c, Z^iX44@_|1`;a{ F
-(*ʛ-Az H &7Z$gZࠕf+H
-$6 JHNCWHPA $mwb׉LT
-&oDMc@Z0Q-)DsmZTc39=s˱rlVdїV
-) ~m۪jP`bLqo}꫷'/mP#&MpYk+aIke#շGK/,/QսWh_v2_ |ɔ#M^v$)+pFQN/qYvu?R1MrX.z9E݃;b?xE֛Zy#lYiW <|E!~u
-iAPe+z*RT7:fs0Rs,iTUAb )cm(`+ʺ@?RVVM
-u=gcDpQ7$I]헒ls;wvioP4n݁zhCHÈjvR a,#yʪi+)c\q%j
-bb@^QsJ8
-h#2WVNTSj7VfͯNۆVv^zWIkvƙpMlBoYmȄF)(em'/us>I8ҥ:c6sa sV{"ZǁQ+bV&hŽdGRm{KfNk:f;gsi8kY2Isf`ڹp#FzgzU0H-PאGAtl$?h4H^P쨍]eiomE:1&D[Q8jK}_
-GAnT
-ru=^Q[fussRh8pk87>a (Otk<,*GԷBD6x?ِEmgAWs@>DלjUd52à$w/Me| &ۜeCVQyR)֚VX[Ӏ@'| Ks#p,&9ƎUyPVӤsl56>w$U}?Su:~_
-CVEJ2TlLNm=E%6vR K+?COQBcl!щ|Wdfe
-
-cy
-:AzF&ɉPS#϶U;
- 움lg-f3Rn)Z `y&8fkE,Yut"B+~tRzXUU
-QkXBd>Bz
-ded7!ɛ5:U"h; )=C˸ff:ju
-1
-4U߿j%<.j糔5GYrͼ8jj\$2xb:%L~ovyXiT{5P-gigR:v1I:+L!Lĕ^eըz_Wg\V֍UC=͕ʷn皭w_KoOi Kw{WՙmGaO5.R9z{x!
-H,ZQUefJiΨXrq<բROVV A`3'Ѕ-2V"F}Ѽ7*yHFD@V)Y#"XYOE0>"9qNK: 䢩wjvɩ.E`4^qdqUt}+ i/Ozkщ ( >=B;9!9uvu8>1hwnKU`ۜ8,
-.(G{VktHqJC[C5۞ArŠϞZe㌰~MeOOer[ S\Y6W>Yb /M;SN%`} 5VjQw>H
-OVf|W3Y$U%,c0' =з#OR|gݯo*\sGoSSS uq?W;+MUtC)Ҳt"- wv]Zhxɕ:f
-R?VU0:YBDPޣBd_VTaTa.}g]ϕmSx\\> l-KQGKjpԅ QJuVcjuGR|tVtV.}]u]ϕmYxk/M=STO%`} 5Fr %>^.Q#|@~<yKўufDX.hۜI|<:aJ/?ϏNΏ\/N<5Iسzb ֫'
-ϴim$O_/{]P7xSGN
-)e"]իQ>G^/魻)du%>_燓7׿_.oTޘ+fI^9xru =X#rO={Ju"2I&Y}/DͲuvx-1|xzO+MU{R~,*Vr >{nkū>}g75u{]/?^_ռ|و_5On6JV[}?6+6m4$TZPoooVs^Sƺb li[~[_"1fC
-endstream
-endobj
-1001 0 obj
-<<
-/F18 226 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F23 928 0 R
-/F15 178 0 R
-/F7 83 0 R
-/F8 87 0 R
-/F13 155 0 R
->>
-endobj
-969 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 1001 0 R
->>
-endobj
-1004 0 obj
-[1002 0 R/XYZ 124.8 513.43 null]
-endobj
-1005 0 obj
-[1002 0 R/XYZ 124.8 487.12 null]
-endobj
-1006 0 obj
-[1002 0 R/XYZ 124.8 489.06 null]
-endobj
-1007 0 obj
-[1002 0 R/XYZ 124.8 477.1 null]
-endobj
-1008 0 obj
-[1002 0 R/XYZ 124.8 465.15 null]
-endobj
-1009 0 obj
-[1002 0 R/XYZ 124.8 453.19 null]
-endobj
-1010 0 obj
-[1002 0 R/XYZ 124.8 441.24 null]
-endobj
-1011 0 obj
-[1002 0 R/XYZ 124.8 429.28 null]
-endobj
-1012 0 obj
-[1002 0 R/XYZ 124.8 417.33 null]
-endobj
-1013 0 obj
-[1002 0 R/XYZ 124.8 405.37 null]
-endobj
-1014 0 obj
-[1002 0 R/XYZ 124.8 393.42 null]
-endobj
-1015 0 obj
-[1002 0 R/XYZ 124.8 168.31 null]
-endobj
-1016 0 obj
-[1002 0 R/XYZ 124.8 145.6 null]
-endobj
-1017 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 11762
->>
-stream
-x}KdqZx1S~sI `hq$tk8C)iXS*TMXIde'"3^Ziؿ2+ 3+
-queu^ޭgno_VEz+u޾j~_X>)WrXb[RPV7&Ey>]TW2Sd,OŁTzXn$+SO0Mpx,wCc=e|2r`8;5zr 83 [L?o?bڥr]2ߛ$4H09M`y}~QʯIYee^.dB(RPAwUO*쾸v?.Eﮊ/NZ$2%)zB(頻*zG'})WꯪT 6+R)T1^>^U_O^\Rk{J)RiѧHsJihRJ[ u^fN>E lBty!L0]N>Q2dpE+az/4J*iPY ):^3Fy"'V#*받\%0Y4*d` .
-D%\yu\E`@# J5,_/ZݗH/C6u
-^/
-cG_Uζs϶۫j&: %~pmO+uTV.cR&J/~bW7ѪSE| Û{\HLNiЫnuSrW*A [ w-lcW16%_7nJI>,"gqeUZ\p9BAWExND2{oN+M M8 )j}>`H@Lr.:؊X6-U$oX&
-rk.pF"T"_Lvo)`PQk}ee" !7{+>Л|_n0!ˍ`@vf-$30 h
-k1%l̸ SV-6eXw6s;%ezf ZڳOؔ1?zcotB;SG !8OZzi-%Ԩc=5ԨEZ2O_mx7U3o̡S `"Jܚ圝:hn{b@f#gWpD+SnI~?*9!;fԕ1J*%!^*͙gt d@W2Fs eaTA6xZ)` )$K*qh=x(wWv;ڐBMƠ1EJf8x5ɠBRYkn ?+aTSM|Â"AE1*&^X!G q2؅ɯ׃[}B0!<@bԲ N9PƸˡQ3aZ㝕6sðrVtd\Av'&J-Ƣ<LZ%D 2\;r
-1q`
-c}cRz[)hdå 0IEhop,nS,ґG踀\Zl(:9:[ooֳh 2EC+0Ӿ"^ WzT'RĘRu``0 K]
-&U9#Krd &GS}9w$ǒ,Ҿ"d#j;~IP1B]#tѧ<¬´IZ?`CΨѺH Y%mQm`P_/#:̚.P Qk}%7()qHފx6:6\{vLĘ_كA&q
-ZKn y W=jIsL B Nq
-GL5vԱp-SWВM֞̀J+BCc9 b.ZJT0BOh40Þ (/</YwVD5k)!Dְq<"v
-^
-OZv:mC'G#T-fSw-tm0)%sS 6;1
-"vetu`\x~UZ+&
-9s
-Mirv}RO봑=z}T;0z˫U^w{{v@,N xzR.'W+?Mߤ8w>n S YB-U !qO`~?@h#{Ȩv=oW#"7oY
-]N-9Il琶sH\9.F?IGS]N
-qѽ(N%A@Zkp% !{,EcFCwsjYX,q~y&Ze(6QŘR_? Akg?$"ԽLs[Nx@X3Pz'2PK{7Cō+n~?i#{v=`W#-޳rP2KS: JPzק5]L ݖGϢB&GĩSv,Pa*bT\e_+=,ҐJ>
-nj(Wvw_߸_kg^G}ӇVwVͮ8*Iw
-575w灊wfԷ^WA|?~ ;#WMT߁1?M%YA7L7wK<N?xO]@:A?7i.?5Γ1/[_ep̀rFk` 0\FG&4QfGw/iVIlG;z+4;2}{C;篵c7&W5[l)2Eu`̉cv+df2zk[NM,-baM?mbGw}
- ɠHCriDI1>_բTbL1xӼ_zS<P:H<E`T62 SxʦQ#IGyR}TRx"h^FOG7 Bj ΆH,L6" UV"͆H,L4"  1 eӨ‘ͤ#ü ;+OGG#ļ HcCκ|FVKx1_DZҾx
-q*DybO֛7}YYkץkW)S nfeaR&N%Gy!q*xP<J,L<2O
-[t"hd`T42VÍCDRhd2FقΞ|1AK7:pK5/iyk^ד E`eQ|KE "lwV2I#!^h}MN$Fx1ʦeH'FFE#CѸ³vH(!2DNlM'FFE#C xKmH* 2DcIxIE#!^hI2hAQ.#t䙂͞|)EQYrE5ik.דEv"Ą`t /v[ N[:T420*ܒ^ĆH|GlvEBN~F|*H5Bw#TYh"DPt#2ZH7>"e,\HTDPtEEw8RWc"(ꎉ.+ 䋠]lF{ق˞~|15tM}ي h2)\<"D:.B:6@G+,l E5"Ļ$RibA.A,$WfU%VF"Dv"+:H".B$QeOuPdPD*2KV&":P,2("%EMi-wKN^slQWPe_?>.b uPls" *'M](r>f<F@xÙ^s=u;]e=|Xyc FHx:ƀ :@3e{;gJ_a$&e,5OeGa#>O@%݋\ mdh JIQ=Ad"PsщNVk~pb5wnAEyjyS@IeW]"F.b۲H' Q$o=k 3q3C=EC zߊN:69;l˒#'бͻZK (
->>zsP10}kE< wӳ>DIѦA@4B#oE #!aWCf۳XrD|h^&U\cVE EQqoZ70Xࣣ%a#)N!%t1^}hk n~Ɂõ\r$e‮^}\%?/#^Dm+1'{̬-e {v0
-;yvZk1Tw,LB|**S lA{ۃ r_"rT~\o `>XpJz\!";!XH*:ksM;%3&̚t=%#)hZ9%Z0Km=jՈ0Ln0x0
-a IG
-* M(NpRv, aS]v1F"L"kbRD|yERo,CzZ|{ZU<m9ͬ=: fŢVk 0_`llRK5a][!`%t/V7,.dqÔ,S,QH¡?
-إ.1h#fgmP6d8ZB@D<oE'z[_q0`暉9XAV{= :[WOUt1[5.aI[t1tW0;")j"},RĺH-}+vB¯Y-.YaW AVf 6B1b꒳3jOoVI[Ծ]iEUXOq3Ij f5?޷"fE|]5&'?1'd:Ih%z[WO:ٽf$ Ѐ18D⓷h/%Q:/]L`
-s
-i;6VҀIY{|B BEY6܉Zd3S~RG0s *PyLH1H:#0
-n`)YREFH owe 5$t@gP
-;S /bْ/8-Y Bl.Z+w N5f}(=HEV?W7*୯W|^~8ٴx[fhWC"БML76*o.Vo'Q?`RZEUVÆRR+ة΄ϿqhVWKrˠؘ֝⦬lmi5;%oC6_BEyPE|B=>[<GU ."]<:s7(jm/PnQ@uQ@r,%x{wo>K:  M8γ;V@Eh(Q^5 nFCkx@U!=EHښ\WăX?UemT^ؔ& }]ݧ
->mfVا*po>R.}R6OS
-ڧ$Kr[Չj4ޭVްjq5Ej=,^
-f.)˃ oT&yS9kvrNŜYărd.u{Q^d߶^v֍ ӨYbm7j5YcԦ
-mfQVاpo>2j.n2_6|Q
-$ vQ4=|"
-$P{5e
-L|VP#C^$ĪU w,RakBUf.bm @g{Jw,d
-q/O=||}RxI]{'f|y߿Y?տs7{'|'5$n.
-t 9S
-endstream
-endobj
-1018 0 obj
-<<
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F23 928 0 R
-/F15 178 0 R
-/F8 87 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F13 155 0 R
-/F7 83 0 R
->>
-endobj
-1003 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 1018 0 R
->>
-endobj
-1021 0 obj
-[1019 0 R/XYZ 124.8 716.02 null]
-endobj
-1022 0 obj
-[1019 0 R/XYZ 124.8 718.01 null]
-endobj
-1023 0 obj
-[1019 0 R/XYZ 124.8 694.1 null]
-endobj
-1024 0 obj
-[1019 0 R/XYZ 124.8 682.15 null]
-endobj
-1025 0 obj
-[1019 0 R/XYZ 124.8 670.19 null]
-endobj
-1026 0 obj
-[1019 0 R/XYZ 124.8 658.24 null]
-endobj
-1027 0 obj
-[1019 0 R/XYZ 124.8 646.28 null]
-endobj
-1028 0 obj
-[1019 0 R/XYZ 124.8 634.33 null]
-endobj
-1029 0 obj
-[1019 0 R/XYZ 124.8 622.37 null]
-endobj
-1030 0 obj
-[1019 0 R/XYZ 124.8 610.42 null]
-endobj
-1031 0 obj
-[1019 0 R/XYZ 124.8 598.46 null]
-endobj
-1032 0 obj
-[1019 0 R/XYZ 124.8 586.51 null]
-endobj
-1033 0 obj
-[1019 0 R/XYZ 124.8 574.55 null]
-endobj
-1034 0 obj
-[1019 0 R/XYZ 124.8 562.6 null]
-endobj
-1035 0 obj
-[1019 0 R/XYZ 124.8 550.64 null]
-endobj
-1036 0 obj
-[1019 0 R/XYZ 124.8 538.69 null]
-endobj
-1037 0 obj
-[1019 0 R/XYZ 124.8 526.73 null]
-endobj
-1038 0 obj
-[1019 0 R/XYZ 124.8 514.78 null]
-endobj
-1039 0 obj
-[1019 0 R/XYZ 124.8 502.82 null]
-endobj
-1040 0 obj
-[1019 0 R/XYZ 124.8 490.87 null]
-endobj
-1041 0 obj
-[1019 0 R/XYZ 124.8 478.91 null]
-endobj
-1042 0 obj
-[1019 0 R/XYZ 124.8 466.96 null]
-endobj
-1043 0 obj
-[1019 0 R/XYZ 124.8 455 null]
-endobj
-1044 0 obj
-[1019 0 R/XYZ 124.8 443.05 null]
-endobj
-1045 0 obj
-[1019 0 R/XYZ 124.8 431.09 null]
-endobj
-1046 0 obj
-[1019 0 R/XYZ 124.8 419.14 null]
-endobj
-1047 0 obj
-[1019 0 R/XYZ 124.8 407.18 null]
-endobj
-1048 0 obj
-[1019 0 R/XYZ 124.8 383.27 null]
-endobj
-1049 0 obj
-[1019 0 R/XYZ 124.8 371.31 null]
-endobj
-1050 0 obj
-[1019 0 R/XYZ 124.8 359.36 null]
-endobj
-1051 0 obj
-[1019 0 R/XYZ 124.8 347.4 null]
-endobj
-1052 0 obj
-[1019 0 R/XYZ 124.8 335.45 null]
-endobj
-1053 0 obj
-[1019 0 R/XYZ 124.8 323.49 null]
-endobj
-1054 0 obj
-[1019 0 R/XYZ 124.8 311.54 null]
-endobj
-1055 0 obj
-[1019 0 R/XYZ 124.8 299.58 null]
-endobj
-1056 0 obj
-[1019 0 R/XYZ 124.8 287.63 null]
-endobj
-1057 0 obj
-[1019 0 R/XYZ 124.8 275.67 null]
-endobj
-1058 0 obj
-[1019 0 R/XYZ 124.8 263.72 null]
-endobj
-1059 0 obj
-[1019 0 R/XYZ 124.8 251.76 null]
-endobj
-1060 0 obj
-[1019 0 R/XYZ 124.8 239.81 null]
-endobj
-1061 0 obj
-[1019 0 R/XYZ 124.8 227.85 null]
-endobj
-1062 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 908
->>
-stream
-xڕV]F}pTɞz[(i̵+\ wֻ{Pl9;{ֳ Bu2\>%OĀQtH$E20}EӴ}msVv;*-d->'x1׼$(1m{T<)4xoST+u²w~v}Ռ3i݄H&c@DWr%5,u\dG]V7)03m5z1QBp.e˶XV!FKKr(?1apl<ۛfo\?v]Ŋ!4z-.>wo
-8\gD.ψt1%h)8(a1 <RHQ 7A DL*jQt (EIaMDdrȍR
-{ p2LQ"ҹ5T*ʁTq@DЀÊfM"굔&@NhGx=5~;ݐ>H>Vfeչ~S4{Ҕ ?(^P+j@ϱM[V囏0!bx(H1
--x1Je'a_#8 9 O04
-.k}1a(#PX\Í66 m|_
-endstream
-endobj
-1063 0 obj
-<<
-/F10 99 0 R
-/F16 196 0 R
-/F18 226 0 R
-/F9 92 0 R
->>
-endobj
-1020 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 1063 0 R
->>
-endobj
-1066 0 obj
-[1064 0 R/XYZ 124.8 453.15 null]
-endobj
-1067 0 obj
-[1064 0 R/XYZ 124.8 429.34 null]
-endobj
-1068 0 obj
-[1064 0 R/XYZ 124.8 431.28 null]
-endobj
-1069 0 obj
-[1064 0 R/XYZ 124.8 419.32 null]
-endobj
-1070 0 obj
-[1064 0 R/XYZ 124.8 407.37 null]
-endobj
-1071 0 obj
-[1064 0 R/XYZ 124.8 395.41 null]
-endobj
-1072 0 obj
-[1064 0 R/XYZ 124.8 383.46 null]
-endobj
-1073 0 obj
-[1064 0 R/XYZ 124.8 371.5 null]
-endobj
-1074 0 obj
-[1064 0 R/XYZ 124.8 359.55 null]
-endobj
-1075 0 obj
-[1064 0 R/XYZ 124.8 347.59 null]
-endobj
-1076 0 obj
-[1064 0 R/XYZ 124.8 335.64 null]
-endobj
-1077 0 obj
-[1064 0 R/XYZ 124.8 323.68 null]
-endobj
-1078 0 obj
-[1064 0 R/XYZ 124.8 311.72 null]
-endobj
-1079 0 obj
-[1064 0 R/XYZ 124.8 299.77 null]
-endobj
-1080 0 obj
-[1064 0 R/XYZ 124.8 287.81 null]
-endobj
-1081 0 obj
-[1064 0 R/XYZ 124.8 275.86 null]
-endobj
-1082 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 8849
->>
-stream
-x}moGv `K^2.EIrHc){:͞1=O>uTߪ{m!cB-$Z(cLbjaoWH"ww}ݏGO.{w!~W=&Lndś!'Br-U"xib1950UTUYt-Ytp+]a Noj@BF: ث BO6B8Hɰ9 M2VB@H7 ap& S
-FH$Ŕ@H Sf!>HU(p,=SB$l2a*%1]2n8%#wɒq*6 QN3aYℵ8Lf!
-9S d@LEv
->ޡ< L>-,UPB (7cuu7. ,L )0nиbJ $L)pƉ(ƿ 07 aڍX[1a2&f]WŔ@l{b3nhN 07 apA<0R1a2&f!ҫk K &Lbd,bS8P(!Hh,T4HDs$".Y y78y50%
-2><D M⌓!x3>8sڻ_ I;8 0Yz<EjF|1%<1#s3pX!q
-$(NFd<1'8 Ob1 C̑x'2r<!C!Q]q EWp.٩["1q
-$&N8QԈ/Dd$(NB1F]"1q
-$&N8N(F,*4=TC@QNK$(MFd<ILjS Aq2'q=y)1HBoyqI$(NFd<b8XqACB@aoT]ԁP 2Ե9qoϸ͟!1U: !T&3c0&"1,. R ,=#+e,O}>=g%KBe@@+TSeAEA |@-4 dA%A |@)lR|Bt Tl
-ĸ(R0,=#+e_ЫWaNdN> '^Pq kL5 e+ h֜y K|D˕.z?CdbD,,=#+e,F8d@,@qeIDg"d Pc|x*i d,VxgQY:* D6b|hCX
-M0 #ǀ@T$Kbx4ǀ@T$K5| "I%JI $Ǯ^=*$A\n=| &M߆9rء9;Q4c~*eo z & FUH$T_I:(>c@I Ro%"J ǀ@T$KHVbz & FUH$Nx  1$U) ķ]vPI!c@I Ro%̴F\=*%?ox᎜>^4ŧ/ݤO/MPⅇx$ӐA0 SOv7PT{I:1$U! Ʒ(3c@I Ro%1QXe=e=*$_/dKz ( DUJ${PI01`mz ( DUJ$RĀvPaVa8}I8O'FgE!F:1#I8z &FUtZR-ԶJQ@|uaM]+ z:B58B{;bD <稅a
-
-k-Rp:Z \{/id{m@h
-) -t_TĀ
-5 #
-lBFT="*]z?l-DyAC
-BJ1P~]RUrV: ~6IkH^VY I\{Y8GƳT$$e]RUح5$I]r8SlIkK=WCUpާk1ZSdNl)YrG #mOĺjz5F
-B[oBAX$^y)Wg dwIUኺk}>rx#l܅Ë% "țjIRRe.Z {]\AN ,)"6TF=RQ>}5ʄ>]0f4r [V(myMm.^BsdEկ=/Ʉ9+{mSۉSA=E eٻs5Y }[DOJ)(\7-e%S,}RUD2޸a^G;,Һ%聚cJRCV+ϕ**ܠtg8]
-UW.Q`6B\P&A7;EoҪ9/M9+}]Wg>!^er!UTWǸk55%ȴ)
-Kɇ祤A`sK5BK2Ã*!d ai+T2H*9ߓ2` ==xUZ%AQ}fET m M؆}12D-$OBzIҦajVWhU 33<iYu/PP HcPv7hR*su'Wf[ [Φt-vUꖫߖL|laU_GZۣBi˧EᓫƑ!Ll "c_sse)U4K1iQb*l5QB5GںQƓAgKW(跈ͯpz'9D(Rt|/В ,on90O֨\h1-VA&ḋwz{\\<$Tj{\)҇s,#g 5Ʊs[$V7b%[llCUZV1+rc^@bSS<ͅf6g_Q7W{\RGzw|.yK|FؤO’CP٭&*fM<}KrmwEWZޑ,BNb__igke MB;A@~xH7I?˒,ѵ}]"6G=xEZrjb]K-|?dJhKœԕ.3̳Zܸ"}.ڲ]R]re>LHsB@^j+&%]{ -VA4؂á|]9/0/TpbjbJy)(J%9~:',3<OS%a3OnuY. qEeu}ST1Qݔ]^[mJ=eP}ٻ٢%s'ZRuP("]Ro. dWqQaN^{A#o2Rae:cQ..\ }Vzzpu}vm+&[ 3\X9T|y~ NR c]15FX/F]
-8Ks2_NN Pg  w}p~0WU[-LL.Lrjw84
-T"Zঔ]I@vIgdȿSd,qx |S']YuwUrSO8/+&FڂOfw>3ֆ v%PtEc9b34Y(Qz!jglM4g8F0s椮g`)*QDo+_K\j#g+-+0zjY[ԕ.t]HNiW@ytOGaUI'>ؕZ2P
-I}*mlT7%Ť Fk'RK sܟ| uQ++Y;#Nɒ9<qq8  B]U/dy]T>z9/"jꪪөPvJ d.SoRjFnd]iN
-ܙ=Rێ
-wh>nG䗵.v&H"n z쌏\'# j=`40&Q{#蔔}.rh^y2Y8#tvj46Vq|N.,c+G OUy2nlaEkءвr
-<8nث' ZA)2͌n踳lOdupG k-%l4;`T|& O@(YmJ^)#9ԓ~UuEg-VCA]FfNjy d3F:=.a!c(}d͎)BkC$n ]Wvۮ(1x͞,adc8)͸v1|jVD8:;޶IvyvI7ڄWؠaJFfg§d)9{IW+= e.  ttsV+V'OeQeEsU{m e=CJy?4!ˑA7^ɺ:WdS|FxbkG+jߥJJސY=Aoo& EVkE| {K9z Eygu<ym
-#{-/ޯYXeU]/TT2ޜ ۏהyThjnዑSnV?R\zWM&àW">9ГZ\5?oԺڲ_Ҿ珗g_Vo|sU#JvKk"
-0|k䌾] {#X,ԓ|*t𼭽'6ZR7//?s+ԍF1ͣdB~O/8*utryMsn?]SOJ:FگaU?V {ש?/7gR>y1W=k`KM'@wv=|lq~uT7܉B"Bx?j@B{,%=k6E &|{hԛokw̭oR}˦hFٚ?^޴/w?8R͆,z󎹮~os+?P: [UŽ}}m6<7ɭf7L7Xk Y}B4>+5c$OU6~cXaL$
-endstream
-endobj
-1083 0 obj
-<<
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F22 833 0 R
-/F23 928 0 R
-/F15 178 0 R
-/F10 99 0 R
-/F16 196 0 R
-/F8 87 0 R
->>
-endobj
-1065 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 1083 0 R
->>
-endobj
-1086 0 obj
-[1084 0 R/XYZ 124.8 484.56 null]
-endobj
-1087 0 obj
-[1084 0 R/XYZ 124.8 488.54 null]
-endobj
-1088 0 obj
-<<
-/Rect[299.64 470.13 469.51 480.22]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[0 1 1]
-/A<<
-/S/URI
-/URI(http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=pgf)
->>
->>
-endobj
-1089 0 obj
-<<
-/Rect[139.3 458.18 332.58 468.27]
-/Type/Annot
-/Subtype/Link
-/Border[0 0 1]
-/C[0 1 1]
-/A<<
-/S/URI
-/URI(http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=pgf)
->>
->>
-endobj
-1090 0 obj
-<<
-/Filter[/FlateDecode]
-/Length 8002
->>
-stream
-x]]u}ϯGP0`XػH#@l?(򮴰Zk+$iTE{JݻwKiT.^G^}+?{oB}S~=kCv]zLW+zJ0awcRT)jw%3+½_VCCkʔbk*pxq8U)*9mHn^=2~B 1 qT7eX d@Hۄ0IK…@LĄi-cxX @Hۄ0VŘ3ޕI &Lb4&*#0 p&*0 Ӏ0 a9y. Rq*QDZ?GZ'e|2QCod42rVhmi7χPC;
-i!Aqp*ktiA&8#*m\ HPimTnAwiHP܆8/8[F"Aq7]w>QFCQkq8qgg4bưHpnHpnMI6(Ĺh8Ldm,b$<!spxcXp Ӑ8 qzr :4iHP܆8aAD
-N5bP8{ 9rא5BɫˢX !71gB(KvJ$&@b6*b|9 Ӑ8 qU`Db$&
-Bgl6>C?>1@Y02) dq*x#&Bef@/-*1'@Y02) d!{Xubd,^QY&* D6b|XSX
-C2wcT ;b@I *) NQWe5pg#T#g#F%_sF
-ˑTJ:6B09 "!vr,/ /o+tl*) &&B#@.^
-J I)"=t_T`b@DB $_B09 "!vrac唎oޫk)Qnk
-8A()ZqY+K.0b(5ZVz_k1z|0, +[䕱7Mߖ4[zIQfU&콹OaIHA~(ԗ{UJxk1GZL4șOGdYEH."-9ԤԝFyY>-"H^-;(IR&jR_2Z^*k<G\DUh_GڴIyG\!>+CoҺi[^ f-i*}_ WT47>dz8^r51Zͱzu2|N }^FG6SVS7<[bMycH^A |Ҍ5Qni>jf*kBGCG+!C_qXm /Q1RR$e:վlyfZ_f"mzN`sZG`H̽!V_nrk9N;oj[ߟ<1C$bOLމ@W$ *3g8-ޕ9Nv-V1̉q]=diQ|7rPb b޺1.R=ϞW(wï
-'s1ǃ ,a. k0eO\-J#ys܉I=#GIX'sX-T%y_ټ+ZPk 76^gAQ}FI*l.R&uGy2aVw55) `lbBrbCv=%͖Fβ
-Kؐ%aKޗ{99_>,ԗ{UJxW]؝P-jƊ)3M/ccc0$M+&7 %k
-NLzr&+8#{) lYJ(3<OKp'V}Jg&+NTDxO15J-yC9]۷蕣OyԆܬ9R
- M\>=Z .Bh*il܆E8 :ˊoaKޗ{%E7uR02Q}J˽UCͪUV%[+ν5nrc$zn;M7PN0SX apZ
-8?rU &AEk&p!.y9< |yoİUWaI,siQQӗ>7v㲗O5rJz19YV;S$HJߗ{Q A2^E٧AC=L@Y__q﬛C B|ޚŏf&Ja($Dc9Y0vqX(3v!ip;ْw߀Ilqfc&M=8FˬUZ#sw#T,uaBtʸ*d~& 3J@FrܟwXr\RYd,&51Kuͳ6i7i[tRe//c2> iNVDv5VXEeՔbaN<a27h-9+欥]=PQ_yr+D3O}mqhΚYn}g"mzNe_dH_aJc5ҲkUWirl"b[ECԀS2͖^Zyutn'L8tτQMQ$5-
-Y6fE%7}g=Պ4/ݜ%H2u3bjZՔjىoGX{96"qRJE1 ťqI1EhDHLxtgt*'Oݑe\z+d>ELd]u:Sͼ.*F=ܖb5 Uqq\ٻ4Rˍ:{Wgm̹'ŗ#Yq bc炞vga5
-G޵T랒S6{30>'J6Ԅ%Hξ+v_G[]y{ |e0[mH䌼Jsu6F:]axqQȆS%0éI6;1@.>QUi6sQ&G]&+8{]pR c78ƌptw!9'%_f ^Kj{H}!.u2r;8R\:9%~xUyGPFe|<'!j㘱j}*
-c{@Kjސ=Aofc& ~v"TpNeawOXT<ߴ{k R
-~
-?z T!{䂟~O?؆gvvWhK^ϔyF+y3N=&[w.2|!,YLPc=}>\]xwK|/_09|s/z|)/EV!Ea󥲡=ٶLt>ha"pL9L 7*U2+h+R۞:/@VxJ9Tڌ)޵J8honlJ1uKN/2{C+̹{]cp^}d~]u]O{SiTAgmC
-}\){;}Ӂ?ЁL@c~Os}ػ@->n@]u qT{]QģC*ơpMP滚q(3}}_2,0\|fk~}@1@T<9bǕrwny#kKfrψ{{9}z .Z M᮱I&]2cpêUkP?$"§ y6'A W/p]Pu5W'
->ӽ7Ow}.Vqtt2{:C̹{]ctp\>՝K@_w.+*P ثM}yW}gAcwKgyз=uvvG +<qQvv)a+T!+\G? 5~S|]ń/I?h% ^_onw/^7/oA>:,/Rq6OPqj?z/_~w#ўIPꚋg|/˗z˛O^} >r;f?7oǟ??{,A{ aAOu>+*T!I^'TEOQkNFv#9ѧi
-endstream
-endobj
-1091 0 obj
-[1088 0 R 1089 0 R]
-endobj
-1092 0 obj
-<<
-/F9 92 0 R
-/F17 199 0 R
-/F19 312 0 R
-/F13 155 0 R
-/F12 129 0 R
-/F15 178 0 R
-/F23 928 0 R
-/F7 83 0 R
-/F14 164 0 R
-/F10 99 0 R
->>
-endobj
-1085 0 obj
-<<
-/ProcSet[/PDF/Text/ImageC]
-/Font 1092 0 R
->>
-endobj
-62 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-33 -250 945 749]
-/FontName/IBBKJS+CMR17
-/ItalicAngle 0
-/StemV 53
-/FontFile 61 0 R
-/Flags 4
->>
-endobj
-61 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 714
-/Length2 3573
-/Length3 533
-/Length 4124
->>
-stream
-xi4[mǩ9ZjUbj Ab<7$<Hg-K͔NhmiiQJͥxyu|9|;˾}֖#da+֐H B @= k$$HXG$Xu DM @
-`2_}6D jh? K d:Xl  Ѻ.l_jwx`5[y.o:+Anz\'|k>Nړ־Unڲ6(ܓ ^ig+d?r=w8%KyTr3.ٻG@PGx扃LS4!
-sY
-ִnfR}p[2i.vT.~nopD3sUҳ:L4.nTޝaP>gfɈI++epNhuS^u2`U!rXu}/sL2Q6%*hbZ?JPvqE-;hۗС~bX'g"u_DiK|xZDyxZHG&dY^ݰe4n\*YJjam";$cGH J1
-N-hf$ VEӣN̋q4/<mH\myn|ӱv!#3&Fő;i[2R\t>.U4fWםu3&oŠ/gջI dcj 0X*əTNsu_E#N1l|nrWF^}x.O?S
-` lYХ`&Sknsz:wg35q _BY04UNװ_9jzhow8Ê^2 ]3 6.ՠbGhCgb_#@F
-ʛ2> z>h;YyD utkƸ8 Y5lmֵ] ~|T)^D|C2
-ҦA]iV61<[*2(v _KV~F/YTg&)H%'Y%FJ(M=;vb^XPuFt+U]YLe[!9S9 U]9ڶ_}k| ãkbamzO]"D*jgʰN쮑<{`#gFJg{- gj՞"{ϺݾX4CgVE88bK ~c}pc:sڎ ;B'M3@E"w肎Op֬H{CA􂝎Z(#hgE
-V믇
-"CٕRL)M}›F,eI&Д#8 Cz (B+nWU9^kZF%_Ip*o r>-핣"+{k#_;t͒ޚƮjK><m拹n-"g.ϗ@?k?Nj!¦0`X%,`+R %p݌[zvAZjf<UO)z^MoGlYd: >:e͂)Ѵ<a>f`<6 ,椟Uis 3kVԞ5<4oeVұ Z߆suMb Dyή~vnC@h`+#gwyJcB*A[7^KslX?$7,+Lf.°&P L:|z)C7t:8Ҁ,Zm@ ]BX"ߔ=-SQeދ'%ajy07ˮ;c]ZAX5{zk/Ks6TS>|dϬ2%__^?cQ$2 E
-endstream
-endobj
-65 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-39 -250 1036 750]
-/FontName/YQTXGK+CMR9
-/ItalicAngle 0
-/StemV 74
-/FontFile 64 0 R
-/Flags 4
->>
-endobj
-64 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 712
-/Length2 6853
-/Length3 533
-/Length 7409
->>
-stream
-xUT\[qw'H
- N .U.w ]C
-C vr+,n5?A/T wWp+ϘKj_}'gw:Ӫ* uwgW fa!
-?_=u #Lywg8P/O&XK:Z`` W
-IZˇ_'g y|O#$ [Bao?
-g:E
-E4a2윥:C(M:)=*לmx<݁z,/Dw^/*جF_U}$n4D8Ĵճ /`g}t_g+ ۇ7Z@r*f׵h2`Cb
-x-C΅t
-.yϊ]UqɗV`R * EahZ@rt;a9;7U\-+ yZBGGo_ky}z,jW]IUv'ɷ=ORStjψ䛩2{h R"1DU .FC jM&L7﯍ƶ|n#ٹ,~ _\>kj5l8ArL7c,vST\mo' $1";
-^IŞ1VBVN9_=0YEلiYey#ZXԲY'P`^ݿJjl<f`nfݣ? q158C~ܽ`0)HMs?M=ʓv<%>kBL8 daG/9|~h ;!O>ơ/R^aT
-rm.y]nkzʖB.㛢3RE*RJ 0~|uUc¾PnK^Aʱb`/J-wS rd@:Lo?;;1$.2Wk9srIs!%8V<؝mw@ʞ \4:O
-ϟĂ]DԤC&'s<R
-MR.P*:1J8ISy LPhat +;nLeu_\L&?-<I8 #{j>}.dޜnOދHօ=}\QlR&ktz?]XaCokDW]2he.
-ԡWa^vG*rx5ko=/m1qmPbq+揷t_!%jݡhYZ]D/:
-A]gps
-)!׿&$[߄7e\J2dP\4E3LyD~ #5 T~t #ڝ ^7R)8}R#J?MjҪx;{-7^J:FX9+*<̗Kibx"S쑏@L߄/],5>m]G>齢 (kHpq~l-|܌
-}ǐq;(Atcɛ x0BNTJeYqw#0%վL*[eׯVE空&ZኦNl wwII
-q{>I-` {Y;>J-o12Eh!3`H2x_mn"LT/P`D-DNH8V[h?`ckI!84Wʃ}"i&Kӆ
-m"+&׷3PCX7 ӒH
-|X%Mʽ]S0Ɲ\ɱ){ ./^ TiP97ML3nڌĜ
-(wF@R`J;o;;y[bxM/ZF_G_ӴԒۇe 8 ,t?96$Ɇe%]1cѹ'Ӷ&r
-YbHΖ
-7Ϡ&< ChŭGnL}8 C
-U
-~a7HQPX\*A=[89m6eoKFA1*V92u'&R, 0ܨATJ u=Zuj6WoG]Kh,XU`i[sZ[$xor;!1 P%xjO_ivo!KԖ;%?]gy/PjϦ9QyC]ꑱ?^Fف*ntN;fsT%y,ϊC mje{3@هkIHR}uFؿu{U [(^K#"? '} s<=C}kQ˵5?y$g n죢"8zx@A.gZ:U5rL7{/Q1 SL7:x.|b'i]W 4`鑲$C2OXE 1@{ƗE;UfSi3&SkiM/]2m[C`'Gnp<Ʉb3q2
- 1ί
-EƀKFrhXuAdC7+`FLgK7!НO30ޗClw·Z dgګzx\P^o9=[Wf_[^,otv ;l0 k}ۆ:%!;
-j⒲WOx=PDTJot%4" H1H\cx҂[%*Df5"m8S#sQje6)!9QZ1&#di"La~Z~bTTsI^-QǦѯASX0MwtYϬc)+jÃ)XW1仄,q
-a_s V4S
-aD2`e';3ˡtʓ2;Gi# zcT7E
-t؀1}]jpldv,fX-TdI*Vk?qy^=tiHPg£~rЈU6dī+YZ#>Cfy!<ɩEF%I2q
-"#]p)_j*SC mj.?*K>/K/fc%تn6颽L[cA*!TuA˯2|(||(jln6 IJv~V)%ȽYfKH̱.
-Bz{7UG+WA:\!]9UFj?vGn
-endstream
-endobj
-68 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-34 -251 988 750]
-/FontName/BLCJKX+CMR12
-/ItalicAngle 0
-/StemV 65
-/FontFile 67 0 R
-/Flags 4
->>
-endobj
-67 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 714
-/Length2 6994
-/Length3 533
-/Length 7551
->>
-stream
-xUTkq'-@p
-bIf#r88
-=͓ 
- B$)Q =$߄$DZT ;T"`
-b/
-
-.A(4].E
-3#g;!]<Eز7oWF|:HRa}58I+e٣61cQ @(GɃ:q((FKMLNI'u q2O;sЧܢvwbJV鿜ͺ"_wsiT*׮}N㌐T<L
- FZ>*Rh 74HWJ9Ig,r& 0HƚFɔŸrlqM`o{FŸܯ^f8#6Q h 3īr* ine-Vxa"F$اUj$#/q_ Hخ,i{oP@/X/u#X7ijagzIv!bR~徧T-X-|s' .Üom頓˨
-U-oNyivu1[ $)XZۀ^P<aN_(PL+8 `|ZfpFRڟ}ء +2!:B/Q7~cDMlE9vM-6=%<!d^u_SC3)1[ >얪`\MR޶ӝ~|yE[ZI4;'^X穯3[n"]Q$'v`CA%`91~gŷ6fo9E_r_o0=TxbbyM(<xOǕΘݱc
-gm(P c KwLbt7G3/CxOl
-X.7X]4 g"cFqRg֟aϦͺm`r ^lOȈI67QԓdO7"d5{"SMc<iKdPc0m\WUK̵Z%RO]~t()bɾ.×si "C{gҸpFx3P8YnuϿm n.JɊxW]` ;%|WWXC4hbat ӀH~8RUS'hb8kub;Q0֬,VDžD嵄lDYу_zݎ%m7ԡ /,;7<wl)w^{л̏eУTYrѴ|gwzamcڶ25}^8dk!RSB^[.$^s`⩮ P`rH*ò^`*-:nNKEat
-]cZd;m
-Z' Wj?$ !~/.:Hy
-Oؾ~  ULbHf$;݁LqݥqT7"PʰV2(M\Ξ,H42#Wf3YtbvVϏlfˁ¥ƞ[;e# {N"粓WH:{*r+ $b67HECYWovde7 eZCd $THgWdi \uRl$O6~cɏ)d PE]0|3lz7֛$7T2R}"\F$(:IIV,l:gC}O3ULڠE!ݟ;SOMt1V T6~M,0^]QQo#(AXxDٖ ػ!CekOI9BnBp%ĮeD g], UaV#Ҝfo>L58\1ur*1Um0
-dEŨm$@<LM#9.+>~rw"kL1J"nro
-FT_aKe@Q<v >M00ѣwn$LϋH#~W5\?-rtw0Qcm(6;-hk!5RUIN}x%2xf
-0ק>t3 4wtT%TMǫHеp!FuNeGyQ)p&ÙϤ̰gtq7_]UIx46լ׎ҌGj|V+>z[V
-.Cm +!,
-h[QX 쾋G8,cWLPU_^I+S$/7iU*GwimM`? ⤦8KKRq~wvF|hc֮]shQNNi7˟LZ膃hr?Km}$3Nb!x'Ldcʒ)Lk4mH[/I9 8gѻ uEˆQ{]-.𯜆MjjM?hp~
-O()lfNIc, ^1+o0%t" vKD̦\a]`a$$1Q *A]6sSG$czr|ssb(rl%MkzwhO*1]2 aZ^ٙCڟ|ZPXJ1u*i$:xpr
-/Ҋ zp&+"ł:ids)gؚ+8Mn)Ip@=07bL%5(S`R9(@%Е„w#7
-yP$X"ݐ^p^U"m|B<],VԐk&7y%gW1(l~!orW0ypvZXjy pݺc8'9Dw͗2?lݧE Qva%G2i(0?{-
-ָڪ3{~Wg5bXtB~6uSsTSW h1F{y0"v\ATq!=2oۉmgIl zZ繘Rh׏|Sx0Gdy;ؖEI.)y?gO]Ki}G?r É[ia%:gs7s3E{6>v􁔵$R:vՒEE{, ݶe4RArܝV 꽉`=
-$ESL+/rx3zB9"
-endstream
-endobj
-72 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-30 -955 1185 779]
-/FontName/DKHFIY+CMSY8
-/ItalicAngle -14.035
-/StemV 89
-/FontFile 71 0 R
-/Flags 68
->>
-endobj
-71 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 721
-/Length2 800
-/Length3 533
-/Length 1322
->>
-stream
-xSU uLOJu+53Rp P03RUu.JM,sI,IR04Tp,MW04U002224RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8
-@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D3Rɀ̼ʂTj0RQfB!P!Xh%d+$$0_Qklkij`hha`nnY04/4E,\ZTWN @i@JMHM=G41^GVk—Ww8ws,M~&6M=w3ܓizan5gα6w."?lQI;iaz˰8=ٗc/–8XsýZGKl8n.zAmjQY0XuuC鴰6Nex \z;g҉^'jUD61y)Of-⣵|k˲MTEL}SGC)qZ2MΤ~eC}JSmfD)})*hz}G\cީ=J^͘'|HN3[Wy̙wŇO}y;[}'ݞ+5<H:EjﵮHϖZFM6h(8iǜm뾱8z|yߊC93?l\q#ju֪˔of n\گu%URFJ%6 A'67' ^j26_dߕ;Wy13!}Nڮ;Wo+xJbVs2^蘑<#YMl{eɷ,:齽k"2@].WggZbb%6Tav/ʭםy.13T%v0:KؖŗqdF&e?bVKT9eS[N|Sz!#1K"?gSf!p\ǫl hm [uҰUb׬XRf׳#m*y;큂aKhʪZW]_B5j0 9'5$?7(
-endstream
-endobj
-75 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-58 -250 1195 750]
-/FontName/CRIGBN+CMBX9
-/ItalicAngle 0
-/StemV 117
-/FontFile 74 0 R
-/Flags 4
->>
-endobj
-74 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 713
-/Length2 2095
-/Length3 533
-/Length 2631
->>
-stream
-xy<T{Ei F,l!eTHc3c1nٺYSk)K\ZI,Wz{^99|Oa?N͈B
-<@/* Ge
-V nr*: baEߜnXp3Y|$_*b N'ltoSpLD%Ѽ @~f`2ހ'
-
-!.D|8 Q5BD_lӕ2gYs̒kEoǂ/ɶi>GG 6=*D2NLMffܠdS[\;>٘WO;<'l9R|n^azJr3KĻů{JD$y )mj(F]VrON4߱kܚ U~<w$AvA=707uN>\nq^L򶹮o&?$^w@+7f/:`D]ÖCG1|"%8ޫn"}<88ϮLbicѭ9WZDlπzyi-$R,#
-[lC"ܹӟ<Nٯ=Y"~;XO&w(x7nX0#jl-̴?˴H"Q/yQ/V_kf
-@U(`!7z.O֞S9 /Ece)a/^|$?iF[Ҵ[ojVӜB{zb9 X䑷 r28Uіኚ ]Arc-9pӢan{yi."ݽpɺ?wO9v>L{r
-eE$sB4V Vg-R܇(Er!!t
-_E:J.J{, p@{n\
-:fOO^U6=JwKIub'b򢵼S ˉ!K٣ Cɝdh^D舕
-/2)s<S#WKJ'KBbbzMLWCKn6?+숟(
-YXtXuQv<!#ʥԕ0%4"FM;I*9Olo;RNT
-8_&CT#];kO:7 8u蝖tXofcqN1)#/[ ~ ;vLޭϸbӽ(w$͡<swϗ]3Åu}j:&cϑ-8ϯ8K=a{:kV_%x8q:U<U1cytu%*p&jiW΂E UN VM[gG{s ìtsu!Ԃ.ءeB!^| 6  ɖ~8T5K^'`Y65X9JW׎T4Wux\t#6=}b
-2_\e^.)%>u&pE*P3>t0ba)v)`jXfH{]]K.,TiY&-y޿f/tco5\o O6<YuwM0 =]EYj
-McdG*" >\eU ( GM9r[&o]XSgi26B2Nb#uE~7ӟaN5F˓=V\(lm龌8yJ[([
-endstream
-endobj
-79 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-35 -250 1148 750]
-/FontName/AJODVX+CMTI9
-/ItalicAngle -14.04
-/StemV 70
-/FontFile 78 0 R
-/Flags 68
->>
-endobj
-78 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 720
-/Length2 1257
-/Length3 533
-/Length 1797
->>
-stream
-xiTSgYlYvb"R \Ir!$#
-e@Y<.\P7[} 6Bx]
-D0& M A vD0p@( 0L":-Oon4%wzψACċ-pal
-!0KgCtoPvv(?
-C2^A[ElRYS#nm]xcj̖+P*
-q[ȥS6nI yzZ^Dk9jMC훸S-VpU)oparyѫQ
-om~; p9#:?g{!Lpo4 #W*H2<yo6 LvM}?g30뉺k&j%8lMLwy}w(ymHC=QidM[lM j%3bʳK[J*de{0Oڭ$i5]'s)8+3D)|WtϏ]^9?3(|~02;>P;[G ZV~YC:V&|+OzJn)G!eNL1y̫^ZE+*FO|*i64C5I»
-۸w+$rw'FgE @wK4u
-`7RpjJ&2Vvw*u) 6Xn %pΟ~n
-upfטgӍ#nL**(d.lgsH[Ҳ$Z݃}U=ݶՍqNPH .[u=o@MBc&cS+[V9Na>E *2QxTttR0nyӉ&$SjhnE?k.Hv/բSC~K-k݃URޗݦ:EA|xQ,EiUH6AMn$Z|T;k:R[+tvȋ:54hG}~uYĕLRk(Y;][Q*vR)cefMj@w7' &LpQ$Ⱦb
-endstream
-endobj
-82 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-53 -251 1139 750]
-/FontName/VUQQRW+CMBX12
-/ItalicAngle 0
-/StemV 109
-/FontFile 81 0 R
-/Flags 4
->>
-endobj
-81 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 716
-/Length2 8599
-/Length3 533
-/Length 9153
->>
-stream
-xUT\Ѷw wׂ)
-w \wn BsK~{9k,:*5M6 +Hqs %\httR. s,m @. /+NjF@\lla
-vX8T co\Q;9zu\
-3n2`K 3[XWSIJB<}x
-
-U>`o4:|75g1y~ev^P7=w.[UtXߍk{#d9/㡘Ȓmz <!ee7S0Okq6yxۮFr ڙc d ܴzs: ^WeTIsٙ4 $ݡڴ1y1
-_$g|(:GOs#,) tSU;GN=`hc:7
-̜\_;pߟ=_ߞM0#8'5Ju:7#4v85hSD+I v9ݲOJ30 rZ27يD8! 1CD%GL9ԵY}'eŀ p.ji*Du+:]`?Y/& ;ZKG@6(o)NP\vIC Xp߿Msg*׻Ɵk
-kӾķҶ.'R#=3`ּI,Hs.6voJ/N7X\9̄1rd+"DJR%(?w_z`B|]-.Cff%(l2_ͶڥSOHbb;gaDc5l]@\{W3k rGe2[# ƉXe5f
- B Kޯ|~^x={EY[u@%J`t_W#6cAWO_,X kP*>й"M8:=S;R.J`Y⇚d>f(O6g;&}W21ôQ=j/Tu쎝Y@\3Fi%s9ۏ]
-?OF E}4DDR_kƤtn6@[LrPVw.j!swV 8 رcsciPiRb{wb>F6B2}xe;n YM~ȫ
-nPy5Dh.}<tsD[g<_PGPdhXfr([NXHS6x76_}#bo'0g_6zvHk/<6U1` TM|03-e?b~fu͙9MLDDũ
-n4]i!ᇘäyT/Z
-RV޳<.K]#fK}`
-4a#Cvyt37é&vbͶQu~[<BAXmJ!c+=g%-A])BQ%"
-&] |fw| O=KRSqj%ld[5J˴a{Xk
-YO#{X_Z_A_6=HźXGN wv~쓌Vk=,A;#2.`'ZQBVkik%`\ųn5Ly50}<sBӯ/,[~A
-&kT+U
-Fu8
-ew%3c 'mݖ,Tv]Cp>CYiiEa|8!o&E9Y/0%qۅ:E,=G[/\c^pv:#6`
-KKP6 eAޒ:U;$^BȜ^
-Nf1 1G Y]q;ob m_ kL#SF(*?ϫ^k=,1֞?j>~n$aj:'B[a <t%# WF xNUw`>-1@ܲV* _5ɏdKyLQ㽙zZ~9oO<eX#z4r$ 4]KI_t]~ܸS1ȪA 3ٗ:'ڦj=W0m^1yS!u%h*7S RxܽjP~8F
-h5M#"=p2ʷEWOn/`T 5t/Ci⧆ߛ33:B?Q_ҍ1 %!}[b7 ~^u d!J2|zr-e_@v)/+lwA{;= OX=ec6Xm3|0dF7% ?
-"(܌LY1R^EOzZb_Z7T#P,i?ۓ P xFGS(1d[7sO&.۶Ili"I8#-s\L4q?hǺ%S๒1;U~ốίa\g]T^eR4Nɴ@GJM\mz,]aKߺ?mn2͸eISod~gm
-ߏ4s\7i<H򠊞vղ_TХBF+/TtTRfot^bN2:Q
-W(j2B }]c
-:F>MO?*w5eJ4ly1h˟]Kc":#A \d"sѻ; b AշXؓOu6~QrMЄ`EwbRVlK )>rhtjRy^] l@^k)*9lrYj,q6m_${EC3 {pPɲlz;/dj{ӽ3:J nČ4MP $C9L6=єw[2%'u7Q_x 3!)J䥲Dy}k`lCYD[L<ŬTv2EGY8˻ V88Dn.FV3n5'K`=)*YØ7hJ}m5x֐jy5Xx*ڢVٞVO+1GBkevpZ6>(5yѾ)& |y06CճkgHFxG[uoAgbJ
-%(G1a߬ǟ;g) ma4Hc5_??RXtSfj~g&>x4
-aB##AM[kߦ?M].@-G~_ VAp[j[s~TnS[a2Wm6&}T8z5= P;d\+bhiW[ ԍ. > ekLNd;ע(xsn{TEž$\m,7tzSaRƅ#׀O&=l+ ӄI&Zڑ.LKD,iu/L>$ںGd@d?IR&(DbtEN7ǐ$>XI
-F5͠?o=i$>'rm#ftԨQ!3:DKO޶a>9Rn . fY_v8A0uQI[N.Q=mCψՍ|L+S.$܎5[O:A1uNy~fff_ p*{mw#v *=jdo ",fcC2
-yd 9xWے4<*FvҾO\&¤rAU-O`fP=2hH3Du&;.@GY1䃡/JueDz
-uCC"uK3j6ʹ\ƱPlppz,IJۇ
-wiHZG|II EBP^;9ESU<NXq-%,-ArQYJ&߳D>J,A$?1OY|
- +Ѧ?Q Z\Mtح+l65g23
- hyYk-d}τa թ@UA@_]'ðL-o(\xQ9
-I=TvУGQ&|$Xway!;Ks-r,m A[șU/d€hAMB 6Ie1SU$
-GJ ]o~uK;)T<>?.l$<,:u}^#7?)sE~dA |Ҝ!@OVt[]VDT#M0ң'ʫ.[i [^8=ylkTɧe~|_l
- Y'
-97;sg1k K=.z#u
-'2P†Z} jaVcZ,2#X֒MOCZ{'.P0+zבm~ҁ8LWx ^vjp;udrsa
-w8`uO5VF6Q2BڥtNdKq7XvhFtߗg>oy H=&TSD]WлwU_g,h$'" <+ȑzŬF 0\zkk>dC
-dJ
-7$Yg 
-k\Z?E #b2J9TcpYB@n-2ݍKBhC9_g/W)-q/aj6x(!4t_Izcp9tTh"޺k @yG#XKaߪ|`c`'Ě/
-DDXeE+O?)vL(Q* [8G;yᑮj<Rn\]ROqa\جJ7YD?9g?܇ %?X)PΖ<Y3rJT(O2Qad
-G~I\0&d0孟W)[bU<ېF/Q?hf/'Ԃٔ<Lt[FSB̬ל헝ɆF`^ۃqzHa6XeSlNtGIW4S&.mQ\PKu(opx K=zl@KB j[iA
-JMܣo*}jbG$mF.
-ܢ݋[20GT#Y>1{g[ ǥ7ڔ-͟8cA?Y@٦|Oh٬~[[r㑵VA;ؔa\/(e^*/JІç2V"anYj5_.^@_vCYE N6jMx?.N?QխblGfP:D*A'z>9+=>{hVQB[V:dA/Lk01}ldf^Q,_MPOԚwy' ,A.0
-endstream
-endobj
-86 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-301 -250 1164 946]
-/FontName/BUJDGT+CMBX10
-/ItalicAngle 0
-/StemV 114
-/FontFile 85 0 R
-/Flags 4
->>
-endobj
-85 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 721
-/Length2 9602
-/Length3 533
-/Length 10155
->>
-stream
-xUTѶqHpCn=%;%hpw .sνG/=GWÚsϯfQȔDM@v. ,,@1Qmf #3(J dbeo'n%A&/^v^fN
-(fdea (b r25*XljV OF P g*2c
-,+E/Ž P-1J5z}^ȉq Vom,z[ q:lygˏ#hDrxJ>PBsu"+en'.lp]A#Vi8j\m~0a ?F.>׮jʇ~K[7`p;1zܘqI-D|%63Xy}ve Ne߭(ur4!~u<T>AK/75`#%xz-4)v@gGg%oh|"fa9'wFBb77Z7ـ$>
-xŽ_;,*"P9"ťJ^lǸN&G8/ny!1 WtcwK3ВK{=h(X*oƄޤ ~^.ِAVvVJ"d\; |ՠV8d}0zpw9+Ɲgm;1 .BFt=Av/XwjI]p@IV\uD|YΣPnzE7PE~SDz
-˖SQOJyz}+61<Ųo>-k1Bi}6<'?ھAGZLTK\7&C *E:MO; o-۟A̓"{5_lppRr޼7F᳢qv5gRE*2L5 _xH,Ou8^mOQl+ii+eN\I9]eQ[Fo . d\12g81MW9ա壙lV)P`=i5}l};~l[#Q,sC%n2gЁ?6Yuwc>X:.Aɲ -2m+I+h{ubAH +x|H]PVZ0F E7)e:h6@F t6-p^#W8{(~ Я,c_o \eWkpԶ
-gy}O=|C.Bf~?`MS;73%Ρ|*H!}z٬B"boV>>ˏĸ,q].q|;ȴzV >61kG9F_rnhIS?&~Sa%(RmPp ?hVl z 2:ı*r8>Y3.+Ft_)zR]Djqp+GlAP- R3q__5'.wpŹ$ g1v٥?D G ,ybtu U0N;߾]p^+3Ƃ;Gs]jY'l`Zvbh/}W/ x6GF$
- am X$!>=iS]fU>hAyH+)/9#w0,λoõ.{۽Z!_1*Q8yNQ{e|,gQȪ`8'J ro K۹^fF]2ôAV?'{M@E (jCX)8*q>@'hZja҈ R@s8sD.Qt%-GOM1%\+#Db?8vlLrr)H|5!G}Vi<p
-0
-D҄?lT|ѥQUU`_k,lqsvq&ZBcz2fqvEvpM.]* ?:CMﬖ@Aͤ/ bU>hL3Qg` @Qyv ͇1W
-W*rjH޼.$Dj&'ZgG1ryJaF\vuVmE2}6F?$H&5-~du@K1) <Q:q:KP.G:0Ě\Ow*GIjgƸ<ˇϺ@?l B/[@CPkV.|jkWATZm:4*DXc4S"R͇S (=p @=hne'#RVXkB;Ps3ޣj}2,4n
-adh#}/U@Rl1qS)OZbh$ aB@uq>F3#]ޠt0Q`0Ntۗ5ʌXZ!O0 D\"R/+˸r9<Bf }Ӝ> _>jkߓue|7^6sş MhؾL&w0 =ޑb&ү5YZ5*
-R^=OWfiph>"B45m.{s,ݔg'Q64'Lkw:1^
-Ugx-RaJLhZ,oSk>Z1>y(uGv+-1Y'?WgfPHqݐ32=K"?EG&M*EVb;sX:zCB9|\ajXzF]HހT{ ?qW:h)o׺{sŖE64ܧr7 3D*~pB" |/?#TY=3CG:r)8$E𯗲|'3\SYSt"T -r:Z^Qbdz '@1`h,GP3ήφA^u{.=QugDBuvN\vu O}&aN)X>6"Zhj#"ªjsQ6Z̙zI"#OIg`yl;{Ϛ`$w´pGҾ`@b#V@||',З*Cf
-I\95:#/q$Mz+@w0q&~vNE]4(Us C[O)\VE^\hrg;)dub: 'OV'; 6q&%G X!Ɛ8t ^KD쁿~jx2g p.)/j$ݵs*!ד;ni&|yHAq>YTLe#@Snv`(`Tgm0;W-yfH^%&~p 9-!U#*Dmu5ov!GP6 CTV8\^*T{zJXpf
-q
-0oT 0r]Ֆ 0:S=BU½j]j;͈3E'l!{0f^9K6I7l3sgpQw6lz|tmY$ ?D*P_뾃3,<k#:-JШ]/߬>a<>Bl1qEvNKЦ
-O^Gl
-`)zA-BAc鈠rbo(WInKd 1%wuɋ<_Vtj*$_K~(e84#i{ o^ޅ3b!~F
-oIJLaӴVb^λ+dMS?oDvV0ۨʹޣj&I 3[HnXX^Ĵq7OrP]6 u#aԕq6a4Z)䣎Ə(NzJyϘ%8:zrk|P_q?*_ ,t 1c'P@)pg@vk|[7XÝj$ߏo1^SV4t+80#Z!<(~^]gK0pv\"]SvFM^i϶Kdрt"y
-rcvK\J>i8_&: -R!|ڪ\cL]?2Le)tC5AJpR$W &sp⽤ӧx}>닪gKx3^n:EN w%b.V窷m.vj"Q]N$ߴPǗF?HDY.͉ /bvÌL% CX.pU1KM yH6;ӡm6 V;J3¼WĂp $wgKvPwOi
-pOuuxl,+go^|On ;#yl|Iywg▅F K>qp &k\%MՇ9LY u:i s9uud&ZNNejٺ'|fr_<=^xg{m]m xVF&Ox_ r=&P0c-
-N“'Xjm~`01㘺HC`QSmU'Sہ]
-B`ڭ2Q10 r%+F^ R?"pkvۖ0MaHjY=ZI+0UC.mUkQeRqn >1rW}Qy{g*1A}*qՓ3bu-F.聹iJPWEFB[%笕_͔=gڎ?{*v:0qh
-aؘuG/%ܸݒ,iBʆ׳B~eIctR'G4ʷrJ^ٗe?iUTiōtΝ䳉 c,S<
-z.|  ހz)2;^A<PFhG
-nG)U͡<'L!/*|zĘ҉h>2]+_895}e?yk;>_0}&-Zo*Qo(s]Nނʈd U=R5TQtwuoKESiۻ R˔C }c;gCMdq.&=LU:vamZ#5/=0F>oRTe;(xYh^N1sc,o3(~N?uYDDe
-$̵C W0Wط<dǒ~z%/$,6=x5ZxR2Cթ7i;ճ7JC* aJo5Uq'*gg:cn{2C%rcE`jKmA)K\˔y&VkydǙ>l/hS^7/h&V噫0Mo"bzj4aKyF6έҦ,_W] 'VF8U+oO']5񵬖x=ZI?a`
-;;
-endstream
-endobj
-91 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-251 -250 1009 969]
-/FontName/CJDJON+CMR10
-/ItalicAngle 0
-/StemV 69
-/FontFile 90 0 R
-/Flags 4
->>
-endobj
-90 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 720
-/Length2 15414
-/Length3 533
-/Length 15965
->>
-stream
-xS0֥m۶mm۶m۶m۶mwz_}SztfXk͘ %W050qec$Qdd `c`"%r0w2w2$`C jl䟇)Tl62Nf[(;XY(k### $lLl 6r?\&$ʝ^VVW%sv2v 52vR5;[1R探nFNf&Vw:oz!IaI9Ym8h1_561521%Prҷ1w0JP͓ #?+Sbcnl,!LﬡӿO?__?16v36SR@c@ӭ$X* Vaو9nK#l"bAj={d H]澐HS}Ed{\Ogʆ#@lmSK֤{SWs
-#@*G*ʏXZk&H82-l9$&mʞ. Cl&cп` t`ťMuc?+W-uAkNM
-I-lf 3
-ii0e##)aD*],@5e0?Y )gcrOfju?[O{7j "?`$ί7Ze]Zss
-vY"01B9,I/gAM録
-d@2TLTh7<{/N%2VIl+櫈۶&j}Oo)T4} Qn4?\WQ1!י7G5Wxvs4/Zի#"4EU߸[k[
-5
-Ǐ:P ;ͨjOp
-[!rQ߯)}DQhW@ʰ7eIM姌_Z?LghG d~lM(s>S{5bt#d}32ZJ;_) =8 ,ug
-KrMg14^+bj#c\?(+:Zct^M
-tOSׅ_flT]BZ-=xt *d/l2qS<^p'Y ]5 G眼!c9Ӫ4/n>3I_{-^ߓ IX;*KQxDo&G{>#Bv n$]~tPi%~3q쉓)P<~+əp85IZf[!7+:>vrXs/4`c7='xDܩ<?TY8D.VYdp(%е9vB;g
-yV[jC7PIBǂ[\:v6ͥlmv2=npe60tE ž͊P>3u-e'#)(zΑ7uI* 'H~G,ʺ$P;p>.&MZ1@m?(Z(V&5Lq5xp?:& xV糉-vhRzg-_F9\K^_qMmE9|:c-?_{"=kKPT0 qmFC5GZtpUutL^$_|D7:PU/ec涝
-<$ĢYM^:#8"*GU}΃@O
-+̶Mj2t*$4g2TS'_H>+Q:b( \֌i$dBK-zOZQJ%uR+2S^2"T;B%
-[c޲VӻWy>"ͻ 8ӭ2*5H1i|9rT o ~ @IJQ$O_YPqP/$G7C4^vvˡjțn)ƧK,8Zs?~]2MVlDi T]Ymk6l /paw VodRf1p9 ,Qr!5)viR@i$SDn}
-D;BȆh8vUUv^|6ZXL;}&3՟rW r EosFYYII dXqNuH !rX^C`Eo|̆#
-53J
- I^`l h/2FQW>!.i7
-{3­[=p]TUN} <A{+苕"kSr5E/ {sB+k D 3άTw*!eg؄4Pj1Vnl!YyEo.x ȫ4FFi[=b cm8D݌ZWXQ-3Vc *&jp8{I2VMե(:){܅mDE%b#n[: \3Vh|K6z4 )lq,vzJn.cY1gg\LbP.ڄtdP}t1.#D|Ĕ
-Rd}hٛYJ`#u\4[H rF0:wrb0u8T13Ip"gb1-Ty6W[FCπh4 jMe "(,1T;a`lk/d)9(KʴsE= 4rsD%,WW(:yJ&tٸ{TW6.ebh$9Ply8U!VQ'OsfYw3Ie5 h]dٛu'VNr 6
-vEY$d-^`&R"񭦊"g0fmſ\eR7A*,"?~m|:._(<Mz8&հ0!^V=Mde-̡2W[Lo:+>41sH)PtIso``8eiS%1 % _
-ωMxWݢ"d[MZ7/6aȰ! O9"tڀkE=``r
-&k]lnO㩚Yj$B`õ ȵ_l9$u^|=~TA5(J:g;vtHi\'5ӧ=$,M3@2%wkr成rO)tſ#4F\p]hpToI+[LCz?SԄ<:2 if`Z ʰH]
-\5#Aȫ`r%T] |%-
-3b[ !Sh_իLz#Ox{Ozyu[TL}KOn>7TyA`tڦ#TI9TpO
-
-mUʼX_/F
-,ZGə}M*~lEYVC!ե 2_]%\=S3:fjJ_ TE2w̨H.Aecvb`"P䯫0kHm٣
- a|f*Jo^aFz}2Fg*bF(&:pm,2%;<:^*^^?@N=(uYQ;CD˽2/
- %nS}9:T)'!(c0>11vn$G&B_tB~Y R=h2b{V&_e Izr W/1Ş$L=yˏAD
-䡺 UI}Fh$){@Jdz)#uDN*CԻ ݵY|#a%ɜa>w?.cP QbSc2ȬE3x$bFys2|C g݊-F,7c: Q[9k4yJSҙAVZD'X{iX+DqFg5:[J^~):ʲs4 f &-}W,@K7Ԅ跌!՛ L& g^sv${W !kWEwdowFm !Il9 3BjW/I`<C{mPTi^ bo?DV}+@Oo?C2؅Zڎ*)&/ƌs~edpj}E>3菩c1oh ^J_`$c!㽯H[' U=aGW8O}<$`'I)~A7n[ k&hO̽f!.;HL$HZ}/"]E}x?y.$rrG4К ӡ2}a\ͼxF+j.B);]TJn!Lު%i۟][VB]
-My49РRV?F,z-+Ĩ4&0YJ
-FFkq so
-
-|ecY$clr=K+5gWiٍlgBBJwͪ;rǢ<Oeqv:eՍR;
-֔iHCH mX{~~{N,|$Y} \W`Z꫇XiO
-F_"!FX7i9E7r*ȴtWlzbV숐;FLˍKͲWH&KÚ 0V
-8»T >t>XOjY+<_5|q&Fw1:eaD @@%PP"=ZmҖ#fJ9+%w}׃DqڅC)I攘祥$ps+9tGY -!ҔUpx+Y&xr]~r2𻢆== 蒘f޸@o2[qAK?xB\d=[%` $ml$.!`}aquht#a`2!䗗oR*Kny% N +ɾئ!W=两e,I?!%YS'3ÌaVdHvS~%MmRsw^psMS1&^V>VCZϠu heH{fՍhrMqj}pِZ$9_Kt0{fj7ĥV`e}]ⓂrmQ'2WwwhU5uljB9YvxVZ*ɖ""Q1TL)R;$i(D484J͔hga,P}n᫙{g34n
->oVvvW)/$޳C
-nv:>_G}6^oڭ6+bcY1|MM/w8UX=&>G>
-5{Bs)P[WY|f)Fm)
-t<,^OՐOQ6BaPKcCy=NNK&k|?Z7rp,2@g=)yMq+n, hgx#HeAș ݑgu#y:{)FHb3+ˍP7p #uvB
-v7^e`ʼ
-|74˕lM-9v(
-<ˋoޟHVJEP z7.J8$Z @$3WVUVV>
-{U=WЛ͝δ|/ۣ2x4F s(WD&`-M(7u2(R*&2Ip9kTGNgYdo1@q/B X[9xHib` ;h́rQrẲnA@Al2NXN O'AOsGeA20.![-*@Y
-飈%5d]WztP1}8o=d@bW8=$Utjl(iZZ_Pd (
-P56²~eu1 g2iBW/[̿Z/R?Y CIIJ(S,%?pJ䝑 ׉^WGuS<@Ք e+.M7,tA*Z4 EJ(csqr9{"~Fٮp"&H 0+ B|=[@<L MK4}] ם86_DBtX4b%2JPJY(4`Kq"R+^z2Gn+!z,P*htmNPo]+]\+JMCO4hq3|J <t./?q-OȽ&;Mq0.!u@tA&tuʈ';9(O㭫Z~D-Du=Y2qUmE&0@ɲ#Zoߙv48/#_dz,6QsU6G3EV;2tA8/t ,AX&(@{7Ml)ͽNn y俆i!B9y 2tM<I#4&I ?nWPYXs93U6Dþ.0r/fi7@$οyUj9C9@wp<,)#>v/nK3g-.4ԾyLk!֫Vk lk`آͣ35m3DzY, DiW$K ;~x
-Ʒ&5f/OB9rGƶmF
-2Šk",K\xL0Ѝ7vg;}Ļ@s*xB:c2Re|Q|c&(T/@ԔNo)0!݇G# n;S%$s Qn3\r+2
-NT[W+J&n !`Mhņc˂-G%[ӢFPԚͭ/pnŌ)Pd/@Й8bQ~Da&@[$S9' lϡfuV w/*~d6 -*Gc~Ayںԛae8*W@7hX㣜 /ؓrtΧkkk >ilK1lY צZ!WoW0EE]$
-@꭯=Q@ږդLr۞w8oja$>-D%K"= U#uT\ڋM =vlnc-oZzTLxa(TpP~9n(~:/L<
- Z(찞Mc <IIe@k0,L;8{8Z|xOS:>(v:SpzrE\ݝ}W!э2Fjб$=<?nn7/Z~j!)ᾙ
-#JGL'Σ oJxQ4,t{ &%,ZGiQߴգ&/;y}_0mOQ*M\?3iV+j"4s!6Xk&qWEGNz Ұm{O"w3\ccHAl9 v|\)+Z9
-endstream
-endobj
-98 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-12 -237 650 811]
-/FontName/ISFSAG+NimbusMonL-Regu
-/ItalicAngle 0
-/StemV 41
-/FontFile 97 0 R
-/Flags 4
->>
-endobj
-97 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 1644
-/Length2 21131
-/Length3 532
-/Length 22061
->>
-stream
-xڬct].v$IN:;|b۶;mwԱm۶yg}~cܳUWUs1I酌m 6N LrֆΎ62J@Sg_#;9F 4
- !zy޽T^4iy
-l!K
-||sE*G @HAn1b"j eXxڋiFvODqMDlNVDteEu͘%$#oXzAU3%pE]FD}?^+ >vH8<}lo qՅrEX5#QKpY]P;|9<f{GEqͣ
-)T™lc}܄?I&gЁruk%X@ b5=c@o̳?rVeskZL*3_?(.XJz-j)j7VGٜߩ4j ;! FtE.ئJB\ 1c+%pdU6NБSSFyz<@r͛ϷhAtg/c*Vݥ3v{Jxƴp;7-|#yt=CZnΕƿ 9M'kvu!'reإ Zv 7r_8oel|^O]-=tS1%!˥+}BB'B4Ye5 ˆ^۟0lZ/<\LPe8J+gM
-z\3eDg: Zm0Dv:>lCؽ<7B>HƦ=mq-Ϋlfo4&w-5GDb]A~hSD !d 狡lNĖh-5B?
-F/L]]08e&*ȒGJiʘk.$-9dSQ{m|'Vm&TsЧ԰2LfW.ӦY\Inw 5^䛎?=Ú6J+ULZowJSjt@!EG o"* Ŏ=dϞ3wr,N Vݝ&(L-X}D;Fho3|
-,}@\6`]U(ȯ1©rzH6 CNsLaJšbe +;Gs&A6`o$J$.&3y7Ҭ.Nb{8Lw|S6)s| #J]yhTo~A
-eSw"Q_<`tАvԹ7@V]InPb{
-R39a)u6]84= y=˿]|E@3U (Gvʕ EL}oi v8.CaoiS~
-?Tcm9tW-,qƄ0z^}9%F#%\= ђ.$t`S1³?Q"Hpѓ/E#iڦv!lA-^Z0H9,ZL"W- y0|{سtL[+a)kDrN2UPKN6Dydt$(˶^w^Bt?73}TVrggp-07FDaq)9lI= '2*ʶ»^YGw
-c!Uj<6~|ƚКE兦g.Ǫl?[RV8򅛒9lɻpV:4+TK7h `oQJfQ*<b>]VRw]T?!*EFE".R=މ)S+/iN'#*˲', խpT볌tnՉ03 zjf|d {QX~2/E8<W\Iu'*q1|_q D-_;EY9f5vmڿ)ݒx^) v3B a#:9Yt:p(i[84ћ;yS`Пurh*y}^Y-v[BD)<3|yg (_:ҔgO P(S'l^31:qؑSliǦy eAi'KOT
-'}wȎ*ۊ[#9v3?m08$8r51pEQkHAs);ǢZO7D1ģ]>7` ھ(P߭B7dDUXoORȒp߷F \iOv}֍-/ܦO{Eys34:0BSZGvޜ׼ w- x|g)һnc ^ 8XsD5!G %2%8*V}svTZ o\EhgMq;l\uI^b&Zρ}M&%ԴhYkv@痾1<j~
-q}=~#/Hzv b hя,ġx}XOrk~(*bQ=E\@6'kևe>Xu}K糐ܟ6"px>PvNd9uS?871$HC\֮~6tX;Djk|Ρq
-[Ft&xFCa{$lnr#΍}x;\=HM%pZuCFEbgSm:Y6&SB&Z*p|(M`vEyW"tqwd*_ WSN1n\j)/>RBϕ#ݲ`jU_W\{MEFNkפS*q ۈ'U䜂ۨ`bKκg@hx3M}wMrGXe\n;B `*e8-D,0{^ 4zwb<DvfLC;oT
-͉r{,o &JL+pޥr8)i}mģ$穨8 C`e<z|"~(uʲatzHLUS z_fJ^2{萶d6>X6\|ym?SS78ج1a3zL~OI}TLEz[Rߘkt ]ߘm
-ER2kQ„c1yD9$΅} 2ħ@Y}v</2=
-,OsK(~U)dmt[ꩠEr =L㥑/t96}Mzr܋ ͯt؂Tc5h(SYDnF0%7`9E'>yb};fcJZ@ټe{޺:8$ߖoPj-,/ihpQN=nͮ#)Ǽmb *IHnW:9d{tc \K$y;Yp^G{";QnXv[)[4=P.oډЬUoU =([]v`ނ97&"K
-z&<"2PU[&)Mic\C_HMH,ݳa> , xS+Si%`^GihSz4H-d;7ssG<Q5@Mx/;jHOKb+)`(0pZo>pj=Rj]&S`5caiVG5Y<ѝ&<0+afR_ˌPQt6NT3fT\XOtjj0~uy*ԛO3i|B,;Dp{i_?V=hZ0)IOZ098N+.Gl33($biՐ@Ax>WfAV6lFHr/j|4Ąخ&ynsBdQfTmUZuXIhJox<f9Pit<B'[^5IQoupr:+1^*kHa>7ʒOCp:kw!!}8q*(ͦzv|HՕ:$'sKm {s,5[l615 FߧFA^m _6ߚl=է FһCuepd~8CO R{ &x=pI|̋m8Y_Qi1OnvS7]eP,3M}谔5xBHR, S80}݅J}1}9X-׹>Zf\E]'줖0N@8E
-e=ר$w| !@QorT+uNߊQjQ&9Hj
-ʹP'v IRj{xX9yddx݁6-7o}uzFxI>:]+xZj~c: 
-!e0V}+7DPEJ"U
- ]|U2-gV $\s'=LVäBi:¾Ǫ7Sr D/穁uAP
- weR={Qh5cJ `"]jU3v cؑrܦ1P.
-FOC?l"ײ͏;'(}#dƞÀʴAW򇺣tX1 %&QZ{)[ުV:řNЕkަݪ=Qb9 Ri hO?5 XY;0XqYhvA %|Gmkˀ hbLd ~H~`^Y4Z}Ÿ$"4GYNtJ!CP"7681r{m\,kEݒеSֹ9@@cgUGޠgHʯx v,[<ܘѬP
-8h?[ /փ:|]aV $_ 2~7'#7/UR0+_~?tXel#hQU
-A1kH=4&? 74$R UMAO#Yq1Qv(Rͧ^fy GhzVY-P)+9rǫq6
-ջ~PR
-xGU0La+H}H` N/ߦjrc*ܓG#/p{{Z&XGpmcӄgA
-V{(P>wӚ'cjH6WAmgaSE'}޺B!FB9fڽP5OKMt8&iO2(! ΟAbUP_l!Ez8ľmJ&HM?d>v{dcRxu*I#{\etߌob0Ng! `*i73Rbd6.mQ5(sVs9bU,ehSVl*)6MԎ_SPw  y48mwCvʐһu
-SX>ѬkZ"<^~DWs{'9h^~<閩j!ƒa}TXwADN>^0b#'=~Q᪔A!&b#ǚu'șm:R7--G]1na@ $LuVz-sK.?qUff#t"j}^ǚkG (n* ."2Q*f_d1uNH38n̘tsG|I4pU`8{v%ͫu&,Iz
-!c(nY&oil*K :1R!VUv@XUݶά=;w>Użb"zaeoke_a-]|/<,_czpoZ YZ61<AW괼&Cxxv~"|_d7Xc?դ_bIqaqepWG"q(F/|$<(QHÅٗQ#Jp5ie}>U1q;f^{9?QOٚJx
-$? LD{13v Li2ڣ|piSCq[jHlDW!3˛xaFKul۞({AEe]BrS[+hXdUW8Fʐ6pS;t`Ddv*4wOSi57;ZHMff.:NhIf
-U 3*9<0I"etȽD{@y<#y KsDTI5=qs.qdo>A2q/[ُ^1=g‘W@rM#!2h*+vG^wY-UX Jt_0I ꮵPtGN{7κl\EyKYGǶGa#:IH ON9rI"Mwg`;dFo{?j\L>WF$=sO˖ƍd`$xt^p5R 
-~
-Ta(OQ۪p ;,df#Xme|MT4g;=&̌H b>$6}W=dBK
-Fus#hlv<zG࿹ YP}P63F`
->%bF/,׽ԣx:$n, :HVWȲ%ei黮
-k\鬻“3[^i6{j`ߦk3A:)"gii`!M9E%+PBU`߸~\@cY# L q384kh(F(H޵Mp&7X^t7A$ Bh+ !ɨ_#EwZg2Nvu r9*ް<̏RE3t#&yZ@zroD߷aSPW ,
-
-gKB]brɷ<\`oTi]־ӹiQlaGs?j3AEA2F-
-Pg(085x]_@j_Kfcmj_jyKI)HꆉC4B?#Y2GCokOٹW0(0jp*_g{2
-{30KJv91)T5DQ=C'dR-[ }U[o
-Kʻ@ĩWgٌX:ƐKԪ[D744/v^"7BpA된 ?Jf*"hCKY9 7Ab㥡=Y-2[**Iw<@sZZԣP͐ Pvw_Q&BW[n"*vb`}=m 1'9zϱ} VxxZDۤ[I۴}BN kE>mIW06% h.S|LRh=Wu ՈTch}`=;1R%S9R^8cY%;[02&d
-3?|yZB}^2EDmjxv>㭶'k1ዩ[^BR9pMVP8%K#R/tFw8Eoᑸ
-
-Emwc ;u{((cer[/WX ~ښ9!mH]|VxW}H֓#J K6:lӷ_A?K 4N~$n?XcL (AR3| ^i|omS@$]'cT1#%p?:dAX>8@65MгZ6:sX~M&ցqL.\ׯ^8;U}%>|9(% ؈oaFFˑ3mٺ%[ӭz#b}[9Iq rF,m+
-Tb m 1Cb~`l9
-VIM+XvqC'C;3.;)PCCL7.#}%+q${wuec6nN?
-߱ƃ#/b1t!< ILhwY(Xlz@{]~]gōV0e.rD8kַ'6)Ȃ!efbYu-n:aΙ@"kե|># `N6CvʓM UE5&4eVhG ^9 ֦OY<ǔ) n?#~˦LTN)&+w\; 痡<4}ZXhC.z2^b3(N}#>-Ե
-UG9L(*0ʲ @'9.my{X~ukR77AibPJn8%տ^::glʐ)4,gi4-Evg,XC6\=*kbJ#(9uKA|3@BVQmN֭%\1DxJ>c⑰+
-b̕(V0wa:͌9C8I.u梄IkPBKR̍9&S"eĵB> K3 drT3*YA=,݁lR-$%1'U-$:t>ϱ:@xeH&A
-UjnST{b,1EKLm{^$TXw'€ ~@f!c3X;]c ;l_AK6F:)ۨW)fOVۜG#1
-,{ѱVߏdVؾk]1DAq6L$(whÎK0f|EAIꡢ\p\ǧ}~o
-yUuNdM4RA?7\!Zq8f|:!ՈlVlFAδ!? We>&P}9j=2RoK|zݡل JE;5+ֆLPHDQEe= G`z[
-$a!,JU㎙vqU H0]W
-zº<> E?K͍h8K
-K4jIrw$;
-u~p
-W ?3 3Pyf?e[
--M"' 9A
->kUvfu(j?-OtWںf8rYU/;Αd?k_'Z?zEy+
-o,,ऊ)+0c~ N/9(7DL}vsWУH4ZC$O3)L"ͪoԬW؁;#Yl
-?3 ѝrVzRX*~%vǽ"%o6=q4J>.G%E_΢QW%;X jӴwG>rY?bPtׯgEr/):<6Zjf4zA'1-+'Jd=#y^>7Tje:ѕTO4W6<q3 ::6z/[&kO:n];~ ԑsz-us҄i$,_3|MIf.M9YFxG&GFB,^~;%r8q|cl*T
-TLS D{9cw8q?§Vy[F xP_4%x)T[\OXoLcoy[_E2נEΘ%נ.NB5_Evת@ޔ`*u&ސ?j[QrlL`*ƹ/JI#KXNVh`ȹKut&9ƌ;ځWbQBv7'M?:۴$8ڏ
-E칸dUt
-[֘Z5~simwL,˝aL'KY+Sg,\-u"I2O=gThi)`OۆY\F9ڄC.Q{pB\'?l<(X(fxd侸 ;BWV4/b}~ wem?׻e}
-55$<mfBqzwB*̧@ٚJbIVo$ AY3߸}&j6J4ǡG2 <y_D
--{CDA6A7FB`b'UqYa8Yjn
-ә}tU:GL/"NMAԆV_->T#'SlZ"x򚠺$
-G,ehӐ.~\;24ek¨~TI#+}q3B發Ccq#bYɐW$–x^0M 5I(obѷ}WWb NuC6?ji><\`.:s\igXSZX}iEg<x[j7yaL#bw(kD5\w] pxO ly=`,TRjOyi,7-slD=K'+m&~};Ly\;Sxey2_-ױw锱.IRSM"/}KD\ҜTc J7-aUҡ.m:YM )dOV-
-͋jf淋wPk]qUઈztFșq<ZMʍClw -֪MdvX'tfLib袗_/ĎLL5 U0G͜ഉ`"9}. d`:2yzn\ܛ /W'v(R:KWt#^Z\bP-Ay)d- /㫘)MGMn}XpM?oҢꝓ
-}Mkj[Yrv ȒCUEGX|A}ù]~;/YPV>v(bܝQxrk$pI&lL(dpHXz<lؠMgH"J1\IH ϰ(E+"jt#4ᔧ D:u
-endstream
-endobj
-112 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-4 -948 1329 786]
-/FontName/FARVFN+CMSY6
-/ItalicAngle -14.035
-/StemV 93
-/FontFile 111 0 R
-/Flags 68
->>
-endobj
-111 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 720
-/Length2 751
-/Length3 533
-/Length 1267
->>
-stream
-xSU uLOJu+53Rp 4S03RUu.JM,sI,IR04Tp,MW04U002226RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8
-@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D1(Oɀ̼ʂTj0RQfB!P!Xh%d+$$0_Qkkib`hld`naV.4/4E ,\ZTWN @i0JMHM=G41^GVk—Ww8ws,M~&6M=w3ܓizan5gα6w."?lQI;iaz˰8=ٗc/–8XsýZGKl8n.zAmjQY0XuuC,U{.YGq'^KQx`5,V)ij:91Uz8wlSBAO},F@+dz Ig߅sDEx\w`F<4
-_0^
-mB?=jiy_?/emuVs
-sI+".ճZdaIk4VAZQlHm-m
- )?>})snevf;5I:&Vj_JMwvRjͯhP)['M:g_71[G
-p6as=}8p.<*`mȒ5ߌWll9mW2@Ĵ;8
-6p0, HIM,*M,
-endstream
-endobj
-128 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-29 -960 1116 775]
-/FontName/SBJIRC+CMSY10
-/ItalicAngle -14.035
-/StemV 85
-/FontFile 127 0 R
-/Flags 68
->>
-endobj
-127 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 724
-/Length2 1943
-/Length3 533
-/Length 2486
->>
-stream
-xy<Pp/<8" 30pEdcfŒLYTeh[Vpm)KFe !rU}>?<U9IThM0H] up>D
-gA!D<p!
-I,RHgr{UJB
-3 1v\T顜h:m%-f
-V{!҈hNj8ه
-&}C=U}O<}|Z6˅On%הv7?<O!4 vdtiz P' 3d6OMCҽ@Vو s+2%BY7LRh.<fʴjvJႫ_#3T/эSv3.PM_vnJP3
-sKO-=5.ɜNC-Be}lfA(4er"/F,G|Tv)ߕܾgk)8uL'Oa\"XWZtjՠNOMߕojZp\+q߸_EZy úTfjͱ K+hDT߻+j6l:v@fqCeڷNOoJ/n
-wMAѱmpBVx1"h[K$ս\j
-=-Wh5k޽dz5Sr:e&6W Β}{M-%]CUثw6ya_'Сǥ
-f=,®Y0ړ2|T'\7N'GȾyK1JByU.DbRc[ "D[~`JE$_hV90x+vd؞K3Gz mw݆r!1Wk
-<9<QceG>.jNzjdy\Rj-Iꅗ:l;Qe87,[,5zF4^9"=8{֌%|80gjY2 4xN>/[7wGլˇ-fg6Yo<,N-2*d$J:]D(YG죘憱VipLK(½Ɩj[njU/cI+2K,)bް)|ޭ]1;J msf_0JZ2N}quӗkh{HD ZJ4fáp%6]ǝ]6QUJ=/*˯W*Gh%ܫɭ0DNR)ܕsjDbv;ckfܭe>ᄐV| 6нA%jR7- ~Pz2j9xx])A!EG_nHA#/4./iX?ajy.vwnjͅB<r e⫭JL>
-}񌿢IÉ׊DB+L
-z$AQX5yvM.5#f`w<{iplDP0qx̆#ys?"Ht&5O 5
-endstream
-endobj
-154 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[0 -250 1171 750]
-/FontName/GUXPXF+CMMI7
-/ItalicAngle -14.04
-/StemV 81
-/FontFile 153 0 R
-/Flags 68
->>
-endobj
-153 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 722
-/Length2 2385
-/Length3 533
-/Length 2926
->>
-stream
-xy<T)L*ѢCu׬S.Lf5![HdRDքYRFKUns_?}11WGA<(+FFzrk@$i!"
-#)túpN}^[Y$bSR/]{,EunC*E!L}]hD}OB}DE .dk]FO` kk񁻣+昒lrQ݈GOE0=~Bnh TBb8^Gs6f3mi)SLLRg ZuOV*=g"SP* x%. ӌ,vbE σ[m !"Y/0sI )wX!"Li9#Ҝ
->N˳CnÕ+tC%z( qzX/Zg ddÝՕ@(Rj 3XB}c Jn|It
-&%)NY{8xES# kU:4oWbTv )\Lca9vz[~k=iG6M+(jf߻-4g _E{ǩx,<sO
- m1 qPqg/ }6К\7+#?OM,v M S>¦f)ȉmT4wL8)W]V{u&aR-Yߦtfs{$= 6Ն@ҽV+k~N!\i/zּBDHr3`xz%fQ
-L{'('&Zc}G뚅BAܙgtUWn]!u`U$1a VjVSo41.a~uҘ?rl8CBS=5sn-^T7l/B7J=@`:dyHz_܋^CZZG-1&^mKEG^FaǕb-sk9񋤦Yڈi"#Zy|t3ǒXgv:$62"٧t> dtя $RwK0'F01% R N-,NԦvsca1y[;+ a.ۮiCoSvT6&) ^/$9p.75/$F<hy|߯#|d"B]Ƌx}g<';\M:CQ-k<@Yǵغ(x"n!?LWQDxyNA:ۜ?v1d}k%)VYQOѬ 9Q#!ljVé79B6-QXwq+e&
-:Qe/X#*=wRlubW
-uw)ڭMN' \6[r.(E)-qy7h߇(c- [o|߷Dw|5,hT ϓoڎ\bgp9$>Ƚ#d«0cɫr2Fei7$
-?pfRY=fSexTz6\Tn ogKݡs6:^jz }$WfD|R=/i5lӰs_˓qJds"i|!u0y4~϶39TjT'd*ѬaSSn]NW ,J([PYtȐ^xȀ AwrD1(ћujY/YUvhOά -ϸ42|JZm^'|'/Ƴ3xrW=>A:@ѡszD1 1ؔr]u'i K0x -^1UNx~j;vhM/żdLlD=/UCVaA:U?c3{_ϋwBeT֢djM&/C:͆KW[(ھ]i4 :!7z7-Ms w CL|x?\Բi<n9) n^y6oKi3"|ܑc9ĴkmjƒB,RݒPLf!os ?" " D<IpB
-endstream
-endobj
-163 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-163 -250 1146 969]
-/FontName/ICONLE+CMTI10
-/ItalicAngle -14.04
-/StemV 68
-/FontFile 162 0 R
-/Flags 68
->>
-endobj
-162 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 728
-/Length2 5161
-/Length3 533
-/Length 5716
->>
-stream
-xeXkSr
-
-y!^8a`3
-+ԄB!0 
-!f&s vaTPHrZYӫ~L%OxOfVb~<W8U6.T9\] qQƫ@/k
-G_ĞRev[zh3`e'EÙcšncʣG
-=>#,a/^5<?6FĿtn=
-yQ_>ar$y ]RSyI\}ߵ>7Rs']:EZS3&6W$aݲx9H(GR
-]g6_4p80z{haD~35yR 2XTs@1$ CU^[攱kO~#s4> Ч?|H)FX=3;kPְzF+h" 3T.b& CDMH8$ࢷFY(dE`s,2,۠g(|GLݬ}>+DLoЫv߿L.<Qhkd_(B0-mS2ǯcpڏT=t';0N8_o]rڬ'ߙ+d-Á?hg2Ě.jʬp+ﺿo(Rf/]LXɍ8L' 44pNЙ 4kl1sMNSE Uedg`U?RjW\e \v5&jW؞ '$@u/%}[LS-@BE~)nAV5y'~8!;8ˡLL,W_q.~(ϸs+dmЂOݸ )^oܥE̛%f8+1RAQ3Zɢ̓#nɸrgչ<eӷnuX߾GѸZ0_}#nUk_9|J Ye"/ߟ(5>0
- 06\DyG 8
-g-R/GYb*{IbÍO49i<G {KLb_i1a6Y 4,x{k$Nxī֓v
-Th;,gS{>w@~=D;_,w(/~Z#ʋR˛4dR~k) IDGNveNo/OA~Xx!v7!a /X 7+K^)A@l!kSh(4K훬Baf.d4;h3$—TޗޮT>*/'CB:<q"@Q}[w)
-4vKc&2ٕs^KpķŴx-c:S Nzxt򅉐=@2UF;^v8yfA1De݂l~a;,s=֖.9G> -om_MlQәOrm CQ K##kڳ3|_?w0.|p*Q@C qCO3F ^M]ҘŬq oR kT ٢UP ?]L~r2DËO
-r'4V hviHatFiaᷕb:׏دʹwC\͘ p%*-b3A[X1V$t8dy\,~ڤt*sT'7sѮfL? 0L[? d.
-/#a\#VL.
-q<bב-JQd\Mv$PI`'̬)|^F}^UkuKi( tw`
-l[ h's ¸,U ªRDoMV>Zt~kI#BM\^ 0rU̗g y(ĻKWC(vIczͺJUYKhkm h""WZ>tJ4qOHKF8$wqϛ~h=̀<ח8, rK)Zz~>)ΖoydhGn>hwN&0&_w+yA՜&̴o:f5Yc{~/G$Ts^(}eb
-=3!La𤂆(Fe B
-h_OW_N}rFyuf{O.=0޻Zy+$gH:6 kS4mK¨CS2+Y#xUz5CSUV%9mBb是9Cz|yVi v.X9JG}Ŀ"xΪ#e}r-Z?\egI{Ǝ3T E6r é]AZt+KVvY+a<DM3GR<+a]3Dɫ?&2k$I!N}A>p
-C )ָq(u*=]v_[el6Zy_X&+FFWXw<¬'gt608^{WH3E5.jjz=W;G)aB~~`U"r,:~Ss/$iʬ$lN=zZtԪccϱ;3lywUw~J<U3".P ӀZ]8:wv`<WybG2W&~fuNLH1B#ٞmz#ikf\R>萔;RG
-1T!cVWSYC=VӋ{TlP[,]3Ju|NcUWrM?ɢM'j9D?ꖔ$
-endstream
-endobj
-177 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-32 -250 1048 750]
-/FontName/DVYINZ+CMMI10
-/ItalicAngle -14.04
-/StemV 72
-/FontFile 176 0 R
-/Flags 68
->>
-endobj
-176 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 727
-/Length2 3441
-/Length3 533
-/Length 3997
->>
-stream
-xgXS뚆iAZ(HchFRH I $`H"" RJ/4-E"I)93sZy|zw-qa\^6"=sscEp@Xh EGꀢ%T]UY]"yy '
-D,A
- UKED4<?k7ɐh4%T% DMw2-#y
-\FtSlE%#%.MON_6AZ :G]вQ:MڦEK}—=bQ-vvRÎWV:WKz%rzJ6qMs˴Φ C-G㜙W?h MLYTMubn8^4Eo3EU&gȜr\wOr s̆/zJ7 Vwd9?>ЦT>`;xc?HQ^%-3W5d߮H t YřDD,+hn2H=ߨ1̨eHs>N``J “6cTmFYʙLFOzUY)
-P-Mo[wN L{(ݦ1hlxnR69O0RJߚV<N6Q^ h|zКw{ xK;\7#Q$]u諟x&ۘItr6ܠ̎TW<Y 53EB:/ʒJ%:}9=.bc{ŽH 1;Te^}@Hpjok0Z;QO9ē\A.=TCjMdYh5u:*eߓ|1~57 +MZZTt[>I I9Ny3|kK߮s4J*"#mжWOl95z,h}&%?Ϛ,JTcN: Ӕ s|{$m5c0faHF_pҋU ?<
-$އ&֊y4U]=nk),i.^Wm41gSwc-IjUfc>Cn!B e-o1G@<:)Y.K潡6
-\+xn[K
-βLsy(ŲW_+1 I};VrlR%ʿ )=,Μj
-1t
-r2i >HP/=Mm{
--s+h6X&6p,HPng!rc̖#b"R*a܎HjvBѼKV?TM:z‹dPã,17t?83vDuä.-a'%k;PE>ӤYK}n󸌜6 TwcAz65lC ~cpMZ
-qu$2'*{DJ0U _N!_O`h=;6)"_Tn5}|K}A)4f+m= k dp9uߎ `9nR혤5(;> m 4W{
-mQ1Nj̧)U+%rF;+vh]2Wz=hGFB n4ڄ8Kj|ȥ!v*(mzyY7Q<ͱx#.VdnjV RV奵&YF I+߱
-nOi
->t=bJ.a5#^C-TDa<ǙNK_ٓ&RZUrv#5G!r??' *GSS鹇J _nn,48H=ҙ-]_ٲ\#4WVaFҽyQP4` %Ԁ"}zڭ{@5c@k </A:9y:m50hqi,n]uIeGUA¬soOsbīB^*3#*Έ1
-uXuyjVsĝ@
-96rծ}'!cƆwrB |= Blƒuuuu,S@#BQ"栭cz&<dBr&ɏA%{{cU;WC]iq1نS)=I}$<;@ȘZ˚hM0SRke EoI9>5*!¦Xׯ~я:n3n]7ߛ X|9o!&`'x7J(ÆֿejߣX=AAqۛu.TNcpqopdwhyec"^Zݩ'3E[: mh=%lVqs& ԣ󊪪J!X@7Z&D{Ϧ1 X?D
-endstream
-endobj
-195 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-43 -278 681 871]
-/FontName/OUBFPH+NimbusMonL-Bold
-/ItalicAngle 0
-/StemV 101
-/FontFile 194 0 R
-/Flags 4
->>
-endobj
-194 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 1638
-/Length2 18083
-/Length3 532
-/Length 19016
->>
-stream
-xڬcx]-vltwlc6VI۶mc'{gq_=jUcZ QT276330
-
-'3#Nd03
-4gXB
-_wLJo,Ll89_oC_W4nŰyN:~aϞ0b:ޡH|m.5:m>S< @^s7_ ~nSo + KvyA<j2^.#KY0+(eX؉6ܒ=ht>|1"~<)fnxkE1/t4l XUk3[N*\"UQøxsl}I=f{&u"-B7Ӌ9`1L|f<6>BUE+E'9U7AhgY
-
-\5|JJ͜^z\Fwӯ(3;FkN;6lŧ|gjó,}D#uVhc-zzd>B5s;ɝd27# * )ZhʭT^<OyeI"U9 +^# QvrJAHY
-Gw0\b뀘7=gm;/1
-[`4D? X9 [tÚ!^w?O4³dLA[V4i$^FojbS^qw5"8!F︿;vȪ5r 7C^_/gK# !&Rr2ħ4nh=;_VR!LB0xOC*C'A T_4<jαmgY=de>"D=ԇb/@-ko.e] ~|JVu6Dg\S[ۮT[u8T:X`
-80ƫAAGmR\[f{:`E;9cĻo2ԣm3M ?g3Z@EaIttm':/FS̴mŻRT8lt̏
- NEiQ"@qT~mg3TJL`<s`Gʅ~ob$U/:_(r
-]D!gkܵ]zX#&fB:4hMbLz}/ҋ8uaK-c9ȅŔ1*.f}0(`"sS9af3O25 a4H#$`)nF8 YNacڌ^%X~f]5!EvΣΡ8:AG%/Vp=[G壔A~ P
-Y2w WcL8 }@L .E]~}"2nN2Ġqo]6m˶|?!3?7IFL0pkm}vM*`
-NOIYG&G~پ4.-S3C Bߘpfů\uHZA{c #b"Y|0DR>I <:hF,K[R;Zz?@4挍X kfs?' :SȣSs
-YW~9Fy9 Ŗ)qQ5ɍS4)N Z\(=W Y0񁾀/I?'z%m&#~M~=dPnc[7Ѳ,LIO;\. U/CDb~q(Cb1UV4d% HUC@E6e/2~elxA@oȸ-V WO)D ؘ|^ʶ9\eE$X7yy}O(I.ўd YT H _p k/&Kwb!/3 mEZ+n&9k> ld]x^w{1p
-EӖ( jX*H.g7LNS9 G:bݠL,`fw+Lˆ.a
-L?_⇄zؐǥbֻ- I2򺇭&T5\җ<+&c8Ʉs3Xd
-P2,Hns$
-fl)UlqV[@w,%G,w&[]XƵN9 cs9} ¦01eR,@ڪjHGDkCks`4m#otG?in<{%88b)=c:#o^,֌{aJ%nQS ,J-4M&: t 2_>1& -wjN~h,ej:՘Ay|2 qu' .cn|z3RGJ#w IFs\GxS8Gc73`B3HB@Iv$t[eU,ÓDV
- jjnjʿ8
-cnzr#Q- ?`$cYVҼd}J鑠=ngKi- "U rD+A]xyMWgӁ>
-5#e9CM`7kApD;NY=I0fQ+o7?hh4~S
-JLcvuː
-|7Y 6ᣊl9jM6%L!ԴZ /s+AGޏyFW¦ȡA|{'{}'i2Jx~`b*Y!gIG{'Vr cns@7rx^o ۾u%_-M[S =&.,0/j˽<^%Ə^@@[4j`+1sFKt-hA)AꤕZQ
-
-;U4ےLfJ<=cUSG
-#Qb(TBCEEN9<hu f.,U| U ay:JR_غMB.}s0식j+gռ6^]
-P'%tn\҉JiQ/Mh㽚,$a]3{ڭĈLߞ<&Q
-Ka9>+zO!s8'Xy̖v%[p=D/-onaN]/7f|Ɛ֓Lg*aYBWa_A*tNq$7 o8;LdEg:x*ڏ=лGQ9S`o%Wت yjyKqުhQX=@E }Į ^
-*BE߃Go)f":~<ɚT8ì)4٨?aQ_AmD*[ Y|=WRqaP?*걋} #|ʨ2l-^3ED%:n.vhk
-87YC*vH/L=Ը14CӅ%a} r"In~VMjp{nlQc
-/W
-ʙq>o/l!bF'lf2~YhiHd>ļ TW7^5v|Ԯ hjO+/BP'uu.r+)1EN.b؏Z4i8rr:< @Sy呮V h{(Q|)Q~ՎdD #Ou2|5,y]^X\PYUD0$[B7<nVz,9(6V q,Lc(|U_j1uoߺ w*͡r'<{*!=e$촻l Cmd{Ne`SL2
-  ÎKNF!)>:51BLֵZf\<nBIh~7{cڭm𚅗y.T%?tf'pTSԚsgK]6ذE~]EhU")^F_}cm<C`2r>W?XDdO
-KTahVA%M۽DJJSNk3f٣ ~љþ#)n66nՙb{^a tacF<ut@Vq!>9L!J%0|@vAUv=>G Pkx$2c閎$ ^źĊ3T\$Kˑ*Qu~njҾ{sBy= kEmCiH$>v+"50zQ=#
-۠ui_oJS$k}!sdgF<t\hjunޒ1K!nд~AW={ǺDn#Xe<oG8kֹS/D"e,;d5_3glpvš<w0<q]5Ą9ؘyM\IQ _ߌe4~(vV!L( "x{gp0;b} .h@P^YMcU~ƒ39.x(X")+A|QO֌ߟ;fE&kfi݊͞HG
-j jlxF!W6ufm'/ʘ4v5~r93уGԝL
-L5,}*7.s,r.e/mp|
-Yo,}Wz'"|L(c /\%Ir,k9
-lq+MJ0QqY&t9}VЕa? 3^SYɁ=}pz4Bd~8
-yuf}:VJg1y}rhSרS<a~ Xv[ -#SPZjJޏydZBQvJ' %<k@2|?v[gDJsu4MvӃi-!bi!e"_.
-ȗpI?^tXA[j|Q3DHLy7 j.'ߨQ9-7eK)Ʃ.qeY](s iQuUr]%c)weFV5Q?0d{6{}!T֌_e="D9Pn=㙥}yF|7 Uc@^|ZS-ӽ$9j45߃0ڌ#!=[ +nnx#1.qƎobthqv >6H_ĭJ
->y嗐 |{^ͲLB~AW}
-$L`k^%tmB*G^al8CW1qD8H9OT)Am+.Kbʐ /%uo&: `l-
-Z1dt_"Ehž3w}PxGӚ?RyFZyU_ҦßH0QfOݺ~Ɵc~Vs#mdr'뽳fSK$}G2[">9cF9?;AW'jtٷ3)Pncd\7AجUcqH,,pCjD " )О(})VM~ʉjv>Qoֻ5m_J.o}7"Giro ?;W\mXX}S\?<:juӺ
-(r2
-/EM]Rx~((!{KL9]sWe]i1Η_H́r{h!U`y2[[ YlX
-d.}3Aq`<Hͧ[7p Ĥg9B :a=gyށ<~ҦSʙJRK^P:E͛y!9e)9ӯxnJfN~^ߐd/3I E͸%cf|ϣhixU6<.{OGXԼ.3>MQm_Ԟ܋C 9Z3#l͒B OrS
-v%yKooEK0˚
-
--me!s~(W)81
- x|Ԧ`CU',%IOnN.Q+Cf>zf8J*(VuNWA0]Hy)LJ ++;uuM80l0՝Pb,SVū&XjW}ڄ U9O.DKtP/ĢA.=0
-36^3o<j.UT@*~WmYI}hHN::hn ƴsM a2EU@pwYqڴ5p=~!3i+G:lkU׃׃#g *8s BS՜ tѭp\}5;K_:{$3qg#cˍx͚29tMtঐ!la|S1rݝo2qek`DIc=撅9{[Kjآ7}ˤ
-.&膭8x>3c#}`Er^l)YY9CmmZF-:L\lK|VQ>CjP>Gk,0^l$y$s%n,.`|v ]<#s+ӣ^P{%WpTw6U;gIx~A{d>Ll {  _?hct^܏
-l6l~8FS4b/e3gkWΊ$PYs[CyW12)%Pӄrc L
-^ ?\g/Liѧ;xxޘllwa.$ţRr9Gl4Yr(7r_ {S]8:HɟH8C 1}.N—{LqtdnP~dZ"FD߃"ЉSV[nEK-~ Da`@-lM~yͣH&|4xW Jt#Oh '3&= HqET[K uR\W̖Bǁ5Ψ2#?r>.y;72: peRm:Қl?\7?TУCOd1ͿBٗKYiH|<秿* 4݇j<>Ol!T|҇`mZaC hLQ3% {ց}H<fI;+KC 6Ep=m{\ESg-ĕD ?8Hۢo7_WN N)Npd;[H4α '+38_Uz"qBI)Rg;dLYO;Rǐa]
-ŬyK
-
-JU4R](ow>9(p>_7Hk,fdhe<m[Sig&&Hd7WE|T?t!x1M/A_Hmq)RK8JzYqJcl(:pxr>lKޫCsxC2>H}gP]*b5@+tIH,94GNf^r]c_hvK, $z[ R=݋X:6^Frg>/ g'(6iJߌL4;T$tr0~Fa#IgjL
- 66~xL8
-2qG
-0v5nxb~er*&#^3siM%@lpt?ݽGy*N!i^;E`f,\˛8,I:jyqPߎ+9}E4izTrq}"0/̧WX8V1@˨X{'C V!6ip.uT7&zGZp*Bөf'ڰG;#4_&[տRkԂst^zxhXgU3jZiuqV?="zZr@~00z|򂼗_B!I잎Ix > teʪa kv&64b96^ o)+]=y3/[ Ou&APN
-. oPPTu_.Z><IպA"֕G3,)>ÉdUdEQwa.ʛ>>Ӕ<
-<)f+FX jv1!c(Dl޹#d
-<hfO[*lE, o*I 04r.I2J+ 5Avuo:+ P\M:j)6}ڋGDgq*M<1$?qٝ7wmˊV~^v*~Hפ[іb "4/-5~H$hOL?Ԁ?TS6VŵN8@V{1s~ ڒ疗:]YfX /3 T&B+]L0d&ܿΨˍ\p3T."w*HOJ ;S 4PEJ2#9PqX_r<|2X? \!㲶Gx. BZ-zP?)O{31E4ɓS|8<K)0vAppo*TR:=wv]K \p'uckZYddo?Q %'$۝NS!,JxTx]r+zǴSG\dϨ*N *,˫lRYXgsɎ֘,T|E#"1fGHI}@Ǿ0}:cf߫+5?"w
-ՐҥWGa$H}Xc+eQm4Q*eQ>$&[L\Z<4HҦ. 6zo'^R48EPP~%E B-{u92MH?lm=pPunMu5A+rF|TQέ@ "84Jo9Brsnd:gk1 ˧8B2.'\[\l9tZUѺEA:сaAӌu
-S<8'Y{/XcṼNɤF<!'E0:>{-)ٖB-<`RjI2aEPM=DyNgxS{PH5Ix|1eș!)9.2*dn?V`Xg~v.tcI@:h?7~ѕZ8)ƔYv<v IVZ\K*C\1av~cI2:OJlZ9*s3uEA.}z7kYz|7GrHTu&2_S6?MAv(1ԣ Jkbzq;GTJ)uc,'</RbO|/þ@86 s 3ܣ`'ʻO͜"ɫt̿,'qWE#^xnGF1IXMcނ>EY]lИU}[̳"dw 4s-c T3lRUHZOΌR_3fVa?,̕pޖ ڒ۶)`KUL ~}ud)~e^y5iYFxө~:jWQ/wA,t q(5Z XGwLXH41w:znMj@\ThPSp9f.K4)`]X9bzyȪ6 0%z{
-y\*lKJ&Fl]5tPBv
-#&Ġ-wH1GX[~E 2HHa:/$6:gq
-c0_zݙ>H&@nȷqS9F։>Z@
-,ƌ_}nj[W`$6*}
-MD_b;e_< ]i9R9|>2XL#x5:}xWTwfU.\^>
-G,}fܷi=&{\!aĖTU1L|x_fQq Yn[^ֈX[Ϲ*yg<x!Yu'?{Z8N>3iպ9ux-
-?ܼlb-@
-tKXc|ŀ~hTy%O;(cy=\Z#ȗjK,,H>Ykc+@϶6:łT%q )umG)6Ǟ iVN
-q7 (*8~zځປGGf c_n+%05wF8ZqPi/$v˰J3yוal.d P
- υtBgWK5&gHZa\Rq"TaބEEN:w_ɖN؜gH
-endstream
-endobj
-198 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-27 -250 1122 750]
-/FontName/UKKDSB+CMR7
-/ItalicAngle 0
-/StemV 79
-/FontFile 197 0 R
-/Flags 4
->>
-endobj
-197 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 712
-/Length2 2689
-/Length3 533
-/Length 3229
->>
-stream
-xy<TǑ,c-r5̘!{YZL,4Ȓ,[˾-dl- Yw_|>}<20 hA"R`H8R0spD^ޔ )8 M
-ZB[o( )?`{ppwE*=~gSrHN`@B\|k.f}S6:W}N?e٫J[1*}}W4{.tǍM<x۽V%_N7|JP2g0n*͝kߝjb7MS\A|fqV Eb4ⶎ.Î^Y_<_:3F%
-~H'=1<~AK5_)6sn[nȽ$^|Bk]-BBxsWg؝'&yWN蟖zR*s$݆WA"</Y"+v@Wj.Ce޲WwxOK|ٕ&&b@"3r}(zke9yFJK(pfۄ~];ekg+ڥ]aPo?~[}٫%N̈́Tzޗygor s Ԛqm뻛Vvd!L_f{6XڎkE) 9%.8Gu8mU*@F8'x)vl]n<wɬu]\Mn ivgj=]4d g . +KRG;Ԓ-'tZ(3*KNt܊9-_ى}HNjCy2MQ:z|_^,VxDgyo`oFik,W*u\AM¬U4gYRN9gKnCGl;Hb,8֭!!܋ʳu
-O轟])s9_CC7Si4QSe_"鸞?[ܵwQxP—TU%Y+eg:Ya<Bm/t^#DERaVúsWߕO6 3K^dF{Вc98xeSxNݽl6֩FRW
-l`,y<{>.ڴ[V4".)WXM\-acFZb.lGq5y$'%\h9dS>^Qp ,WNx?L&word.,;Nܴ3Vhª_>9zM l ړ2(1nKR@@羢EVFCtywqAJ)J_v= F&2sſg&p(*Rnx2MR rb/$[|t$'*,F#N <3k.ě$}7c:oq娭{w'PahdCQ}sPo̩s2cvssP<aqĸ#j.eoi:
-~jb$IM_0?/I<#ϽC?ӫ2AVNIW=sx%uT%@2&?2((p*2ÚLˌV EBgG!l^u~csG/dʼ@ApLGPEBC[5:/<Fn^NZBzWk #bMlמYR],9o=/I빢tzv(ܕ`(@vGV3
-Z$GA{x6@=W-<Mހ;ygh1Ŋ
-"bk3`Y
-﬽uG0쟸<siu0Է/#]b!~+}̲5kxu)OK).rǖXv୸/cξղ%JBN)OIp,YJ47M|E/ޒd'gWB3IK)X6n,#߳$\|̻^ԝP=:؝tvGDl(o/(zZN~̓dc_^Q|00P=Z*[:02ѷ!c7{~^K`D;j*wqϫW*'de&G&{SqYyΉumAD|2j
-^
-w1"a67GK84}Nl0FPmmޢ9M'j z;9SJSC܇ʲV@x6h$n xœT)`&p.LR
-x1U1qv{s1ZD:]W vawI^+}op|%Crܘde耠c(3O†ۊV[b$E {YuQE7Go HBcV%KZ&\kI.1؆hTk3ۻ(՘*y mn=g!gj݋
-|-c@E;], :Ven 'c7-K:=Ÿ|V4a뚵BCVPwg*OqR_13'g29>҃B1fCyG-_9l)Ԯx25suݣ`ٍܲ3f˱
-nּ(0.<O=PO@3O|hSe8݃0B%8-rjm4+
- رyoTccfjU_L׎X>
-=>.÷v0; D/D)$ t?s
-endstream
-endobj
-225 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-61 -237 774 811]
-/FontName/IBYHQV+NimbusMonL-ReguObli
-/ItalicAngle -12
-/StemV 43
-/FontFile 224 0 R
-/Flags 68
->>
-endobj
-224 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 1662
-/Length2 15228
-/Length3 532
-/Length 16127
->>
-stream
-xetݲ%(fK333Kl,fffbb`ۯ_ϛ5~͚Z+k 'vLJRe5FsGS+#+WHAQhdjg DsZ;:
--fghb=d
-^N@h?
- ?j`nm2k/|[XX
-Trpěv\=RXhs>aG<~fozD[c]hCG
-[y|?7Hϝ0|;ؐ.ll5 ^(}ҟhF*̃r`E;ݗ q+^zȐV<X |
-+J3`㽰!jj=&ni~k/Nӛ.wKN4
-Օ⌽DddQlc|;a穉ODE;B1lUvV@u(٫8D-9XwI)-x3>t#mN5pF\avQ
-P,uJk
-,A0ёK`pՔpr6'pXZ:qmJ1+r2HQBGWU:̵UWg*q1xO}ŽDv 6Qq?.?%UݦB./Q8؆vַ<d4[<k ^4lT :2^yEebE 譕>dx
-r9 _- 1-^grKG# +`4ޯޗw *ΊpL:gaxc}EзpջR"w2"yM$3v̌>2mPбH;e#Aб{%+eҗ><kl2_mCWA2i z.usH*>Cm:+;KZqaVYk67.$& 9S4V A[&|EEhM{L5Pagζہ]6<g]C
-`QnnUٚs-6An:c}2쟺SRZj2B(<5[;حRf 8&Rt2D05<utvnĊ8-K9{d~A+60:QݛDVN3E"/uv3w%nd,~⤳)ώ:B|kDC-67tG?(TWgKZA)VpJ/o<F4\vEF甶*Jmgw^J[bf !gΟOg6:kfGJAgf:0?},X{'^ IzlcTS<@+T"sбݾ=r?iZBEv@hy5=%2{8TE1
-$Io٨Va$*/蒻,E5;Kq%׮\Sb~9)FBƬG񛞄rQ{Mmqb64Nú¨?k~J<* 1 {#p׷ +g l*5oT*ԤSle|'Rqh#Gt9'~W@lY";b)k6#jYl[^FʮE]vXX<e%fI'6!׊mEkƤBw;!F5v,DvNSb$aXB|.c^nF.Be)Ɯ?&tÒs˚
-Z {p. 4 $v5@ KnsuV۷3WV')
-up2 d:_C'1jъt80CM֯\=9p,?Z׾16
-dLg_*zԞ{LqJŠ,\*_q3R% y:n=N,ӥ0#; ã;Ekz zd_ 幮k" X~MFQی
-zc},4u'ٝ-2Gk'n
-ȋ~JUsmZPK{[ѡ<7I r+ىCP]yFPX#@@Fؑi!j:<AH9$ 3dFC$aU:^8otKRϊ`ڊix%/IO<45%(ka4ڷ]9U}Gϴs[w8<w*LGۜ p 6Db @P1
-3VJIir&Cp)R`"RYHS@|Nŗ!Js̃9WJDE՝u]?;F&?Yt4Djk Lf ~&#5C{cGp>*籀 x_ $ݔ;{]_Qt1=9}C=KZS@&{'Iγ-</˜{,{/|
-#t40gDʈ{(iFKUȶA3}Jz1B?̓ϐ&w;`9~V)]?J8ch'\SܕSd1DR9;-[ti;G ۚI&/&.6GDf GǹzwHЀ4tןW`ϰ sYJ:A|`twژ҃(os=ƪ, P`q[̡͆\yUS^Gh8_K lu"1u3-xHU2
-q?ch\
--kB0T
-CAZn0PML6%`Cɬ9
-$
-yk.X~RRBqg5y#i\Wk'p]uǺRԚT,t+ͮc"h݀n` o7·YEv%}x 
-fT4*ߋeЏew<
-\8>s=K`VFTܐadA)  Fނ}Dx#TUv[Q&$O7Ň8Z>ż30+(V /۽(g:t_|*ݮ:._o)\^zn
-aT춊L%
-c1./"Ee> xBhl4 WF5Qwy}I<ǬI]H 'ئz<`TzS .O]*@_&ħn20pR%"v7Et@!݋ӺA@XKY8 Qgԇj)ny| ^U1h^l2\΍QJͷncWaeAp {ayOP8?7ʴt/3n T 0 iNߊ}.L2>waf|3.){ [GrB#fyHkT97i@;G^#b\r
-#~7c$RVqjw=#XiֱJGؕx{*4n2O1wte<o'Kc[-%83 FH$;Cmqʈ0{4rjͭbX3.gofCSLzΛ)QfʓF&_% NALx|ZD,_ :
-^oI=?j1x8CH|*5>vVgT!zOL0j aRۼbF7 U<KIg{\^רMJxm-O8ɨ]=~ՒV&)$X(?V%e`=+4kIPSNgJK[`ך$}MS^I(6c٤ }_NwKQUoH5(l%h'70k>A >W<&>#C#"XO;dZt(n8 ̃:S1 1*7sG `T9זR7mFgzGrsPeIG5wUfI!e ),J!Ωp^ϋW*<19,*`~fT3I}vb$A<Ϝj?SyoZ_"%<T#xJ8b4hs4,Vݐ9غ~Q*3ZTIG$Su׸14\}Xgxn&v8cؔ\8x=GN7F"nEYAxQ!Ҝ QuZ4=a'ԁILOВo(2gǪ
-׷M( ;LoDL";
-/'g<$S"
-<zIPt-<
-ѦrCҶ%o<MqO΄'{cM0e
-18kX5e lԒ|g$y~-+[%þIiZ\0ց
-vɴgX!i'3T׮ ӣGt*u@YlE9҈9ݫ|X_x|l
-V^m$1xi0wݯ77=3el(Vϣeʤ@@+| fWA>ڇjM}Zߔ+Ro
-=+g~$r}p=>uOk+a ZAMD7E֗G٥Ju|m0
-q .?R#=vdg*V;lt\MKT% 6$p Hm79ꅺ;ՓصY'z G!=`l
-֏KbٿWu6s,IX&0oX &7,㍫U Z}1rn$;7 &P"eS
->YB%,ߨ&=vg<,N=ΡW G=.EWTPr>N{"%W}: \M^3(72 gUO.uܭ'r]bĤ? KPgxx?9>;y
-{!l"2#Ch-y 'g(M)Q<6AHemLOE3O}/3|9L$9Q] ]6[!tEë}aEXN,h iDL$ &Z3M͌!KpiLj~Aeo%UYv w%a3O}9RSz6v;c{1Y|{2)R7mVC!߯l5n9|VphWIk; ҩd4Qs QOBGѠ
-E;==J|@i tapZx,[Оb&VNm҇ڒ5-.賉N+:RpBeh 0G\Ƌ(O}F৞u|GdkojJSߊ߫R z wܘ ;oU9="]ʂd'>F
-ւ~Cӯ_8 (]8"p!S2͚!.\E=/%TFA{Q$AOuKSw-ٍ D#Zb![ uOYf*U-}ګwI5\Gt%zDBc0uqKist]1ꉢ0n"N5Q=?|A~Eѯ xYPɾT=IS- GfШZbW`
-2HOμ0JTDη==HuC_Ĝ~$O/fBh2rrFdG%ɭDhfD2g
-ǵzש˱)ߌ!
-hFW}q7 s)</#]zAB֯p>/]cv]G|ʿu@/>n$O)Hν#BsXT'tv@7UӜnj3T/?a%r2\FOn?17@5qsڲi .AD7IG cG f-(׊- 5C[-g@V#wxpC E>^NDz_J"*OU?g}L@v.2'ԥVE ,n`Nc_XD:'| ĩk ܃(S9X'Xl=ϲT4nH۷8Cu%fԸtӹx+KWn7<? ͊k1EWA:B
-'U2K۝5}"[D'q.;mQ7|HO]yƆ#RXUSݙ&}ƛC`Xmj[oi"LFsuGIGnJp0<J0.1O8rˌu0*,SeŸ]Rr(~
-{y-26npO ,SNҞͳJm䉆d۬Kk_?B(veIz9s/* ܉N^ %a̋mީߞ3K6xĪMcD&&e~͏j0hhک]AB2K"OLa7`[GOEk lkma8|wQ4
-OM8P݂uM0=CBFcWzʜO4F Y(yQ,E ( B%8_)Q{jf:.X5a6z!oJ4g ty5 ֏a
-o%7oleJM[))Ƭ5lro9 /tĉbQ zwծhR׃{cl>x>Xveĩ5kpI7?Z.7+cgUǜ2s@b(_m[m՝=d郀嵝x%Ju|!#Ced Ǿh{w9NQyJJll'lܟ)@d`('oq`z(c
- ADW^BGIC?M}-z E:3+GETN MzB)|& ۡRE.Dq@8bI`
-P 5TBpk%z;jU
-g6\C'(5lst,x%;&y.wσg;*!<D%dQ *{5n;{]}eU7]Q\id=X&IH2k
-uB3As(xWt1ߣJ{=$]a
-;4.⊭(A_P$F_,gģ(Q'jCw|;F}g>/ҐQa jJbnNN}2Cv]HR4+:Hׯqॄ;.R?+F_"鴧 =Oc9ҭQ|O3O3Å(+'7{?;XIYaB4sA^&yԘ GhkV8AO0=|;%S&eqIz1^
- H[71%/_[3R?#|z.ǖ3L[<.\*ZqU5j1Z[엲 %vfcL3(;f40{{fA| 8E)6@$'isC8͛ρ?5.ry;NM,2ޒ~;6.eWXaT/]Y?z1'Az;8QwI)Azsή<EwDt:R?ؾFd^߬t(SJ6[[+MhE\\IbPԷ?)g._hÿ,Ƿμ1~#i t̛]AI.dAǑb6T7UiX)~\
-R_EOBٻU+ǡTwx;<H\>HFu#Jcx7pdT aw<UHC~No>]~H|y?]tPVK`mhJ|W3 V{k~C2
-D ,j}t]s9g^j.t%F,gk&ʺj
-jPsB,: v'i]Kmx\I4љS֟Eusz>?-tUv~eL 
-筀L%Axg(8Ac&5mlRa^0/;=K n30ۉ2=B
-p΀{oV/XAY6ߕ+dُDIԤ'\.=-FLC fU'W6&$}!%F/|l`:dA[0PxD |㯾AmWo=gjRq띌Ǯ҈*V)~:J\@o lPʼntUƱRnS2t9<]<en0.X tD\!15LH L]J Je96=+~-'<kU$E+GIhׂVqsX:
-<-N^a3{òWp[RS
-x[B)Da$eX{)
-x906EUuD! nһ(fU.~Oȕ/σU+ps; ?WfпNq#1m
-c-]8]PG trEC%Rf-.4Py"2}FIKXxcD3(gbt}n.^Q <A=i~)PA?X%6HR A%B{E&vNo OVx@h-ԟ=6Rs .#}JZkaFb=ݨ%!"0+3Cz"\B\[
-vNP:% e}dlWpK(/@,'aO$T2꾨DK' >5zH[?%ж۾Z.&SMQa]:dmq0%A\\ZE,U}nRLU,Ad3ܷ0y&bz;`
-: dw5UFUcZiSP|>'BzBÙ\ "s`K) Rʰ뿤6q<BsA|ob:&" uhw)4!8!?kjPN7;-ΰQf4c wU>j^(We/QYG3N/qpO#eUO C&Z֛`FsW[6q)\dt~P-X/"W[_vZwZ Эr##1!ߟ~KA,\|鏧!5/}vJ7
-S Ђ)MBxz^fSCpÚزxo <rޚñyx#պ5ΧN5x߲]&׻`Εn%S "K]K2jQ JRQyOH?m t?l(`7W^+b}m N<?3#`>!w6 ɡ(9H Cb <dew`=wޔ RftS驥_axyq+Xbw&5v@
-endstream
-endobj
-311 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-15 -951 1252 782]
-/FontName/MBZCQL+CMSY7
-/ItalicAngle -14.035
-/StemV 93
-/FontFile 310 0 R
-/Flags 68
->>
-endobj
-310 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 721
-/Length2 599
-/Length3 533
-/Length 1109
->>
-stream
-xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp2WpM-LNSM,HZRRZZTeh\ǥrg^Z9D8
-@WT*qmKdgaqn99~ A!S U[PZZZ4<6Ԕ\tYϒĜdǼT]C=cSDf[fEjJ@fIrBZbNq*X<5/);D)9Gɀ̼ʂTj0RQfB!P!Xh%d+$$0_Q LC
-FF
-F
-C2 KS=]L , ɥEEy%
-=m^un)[TZbeQ9E%E\\
-endstream
-endobj
-799 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-27 -940 1332 825]
-/FontName/ITIGBW+CMBSY10
-/ItalicAngle -14.035
-/StemV 85
-/FontFile 798 0 R
-/Flags 68
->>
-endobj
-798 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 726
-/Length2 1070
-/Length3 533
-/Length 1596
->>
-stream
-xiTW!R ( DIÚ
-D4$6 
-
-fP+ԾV~1n *0BT,%rT j
-mϻ%@f.1CYI) o1q%jAmrS "Ը-|G{m/R}}GNƩIH0W9EXp26Ӈ}Wб2{ws*&Ԝ8%nq׃IizJyI%hYkⲐ<CLcݾ韢Ld*vUqf<Hr$7˶ju˃9to{RbY/%I
-endstream
-endobj
-828 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-20 -250 1193 750]
-/FontName/FRQJZI+CMR6
-/ItalicAngle 0
-/StemV 83
-/FontFile 827 0 R
-/Flags 4
->>
-endobj
-827 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 712
-/Length2 1318
-/Length3 533
-/Length 1846
->>
-stream
-x{<TyejRjЎh̘!Y<L
-әfΌĸreUnEQ$Z"uEn-%!nCOy=s|~=_=gNgl#
-:ֱcO,P ' L;k%^<?ti,)We!.}B谀kͧ1abB
-~!>;w>
-=2h<&!4= .0fcN*dK$~ƧڨuI `ErpcfM!nQnBrmvD<RzSCwG)NRAG6S7+RnߠK50%!#27J|qk㑧䡌1S,Om ΏgIE!aֻ`Ѿۇ'zm~ xaD9=X`mV&*NLuM?Pmv[yqL7A}GM)ڏ.\e*{BlH~jNǧ+8X* ?0LWDو,OlJN<Vj4[I+fg-%m.4-וN]G
-3p^piRd7ۇS𻸑d /J1rԣ͚Z:1gy@UͰ_|[vy16?O%{I+Iz{d^Oǜv\p.|MLނm1ёfﺽ!ݹ{ԙM#V5mL(Hd²ryCOI*|)HP]h=%tnܹ!?`s Cuj4Y (0&=0xl!}.dկO=i _R3}$+'n-$
-endstream
-endobj
-832 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-36 -250 1070 750]
-/FontName/QVSABM+CMR8
-/ItalicAngle 0
-/StemV 76
-/FontFile 831 0 R
-/Flags 4
->>
-endobj
-831 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 712
-/Length2 7369
-/Length3 533
-/Length 7916
->>
-stream
-xUT\Ѷqw ^^ww'Cp@'9K~{9ZCMlsvqs U>
-ق8d W'//'/% 
-p8B]'HQ) /*k77|3 F#
-'ܙ m2L
-'}227ne)3C޼A].GIڟX~^RNe7kBr4q8D^K}oS3h)T4NvWVt "<cz?€&_RYjI W)*-^حz(%@$PF==6Ӌ
- ~ƴcYGYٽ+b~"GH붑,w!@\Ճ`n[+OO  P[io}gèABSSxH;>j!
-&LZyDP~mCsVX%OEmllLz_=@|0-Wl9[lʊDf~/-5okgJcf
-;&ArWAzK&Fdٝsu4%c5;W#WiE9a}1Z1:ֳ9ߤK[TŒg+p(h~XQRfCi@ֺ>f s䜆W-0!b מ4xbiD NNC'cU=/Yg#8OuD ,UA,>
-!J
-->~3tzn);˧ᑦ'< 1n=V
-!V`ky/{xpw1t
-r<7ۢuuDd~$ۃe'!MuдYd+[;Nj&,;gՙ*]p~FQkI:
-PYFq+܍00H?
->C$?Yu 4*Ԃ'vȵZ7l0_c~@AH }ANZTOێ̱^D$Y/7t[+Rvuvo@{pd}+F/'zfRJ8g~Ƶ uVkЕy7fplϷ
-pI<M\ ɍHېC M }G.q`tIȲSX/$2e ?~Vujuh›Lt%VT/Zɠ[QE<',*Zɻ2Fӓ8)}BIv?L(`mnVY3*Nl)Nq&⋦Ajҽ}.:4,5 ZBtL#@h?>ɼ !xs:<}|]QET'dpKr)w\V-6M)4m4ވwt߰(p|w( }
-Jĉ5y!uZdz|uD
-3wI8&J®`(#A*WtR+Ma|fqDl=Y58vk6O㯟!rx4lM Y?9A<5Z3wpw=wج9C.
-8|m;B#KwǮ=pOBs~ օdyY\r ˭UvCc=[j.CPYC4=9CsXdS!y'`F%YjŒ'-luzÞ}w ج
-r^J6DKT
-M V ŧ"i#z8D<*3z2.2%'a33txF^VjQVm+*Fs @{tbx
-؈`3bjʾ5 q_e~ɫɲm&+ ƈ,•x [hm=և32UaV S(; +TmE]sw*zx%b4'V/\[f 0Jy?zwďOc5t<bTJW: N*(leW
-<UG
-
-{VskWgPX["ay\ ԭxe9[LK$.1Kht۰(3 E^.Xg`D9_5z]a1%G0b-?4"Z_jbl'̅~ǫg]g8T8*2M9=aM6kǯVo=ƿ<T)(`u+)mΉY>k4]Ԙy7ZY1{&~A+ +&.'/#d27@*0xj3!ғSy,!E*}ι$l$OI{I Ex8ݡts>)r a\
-EɻwOYǩ gEC^$V4[i%Q7E5"b[J9xUp3Cꖬu>\ 푫!CZ.Uc|֡A8JDak$^c٬]b̡δHV"xPKm3$ھP;,%UbLqq/AO(ouϺoT2|->dӡqdhW`HL"{Ҙ6Q{GֆP!:И/#'n$RZc<sx5 Y32<jA ?s8,m*tޔ<
-m {Ĉ9ͷEu]pyi@UI]'4.~7 )tǘyn>;[qGm@'|6hc>ԓ(f?X+ <Z:]!삎h_!7]m-bw~80_8Ш48S=F&yyz@^S<mn4m 뉪RՄ*Wo+V%è#KUN>'e{ÒOm)`3 ׃]G'RL0:bT*8OpiZpB5iƊ((+yo$M>O3//.)%Vk
-HrsT9,(Y '{ ]e(=@Fz,k=!e"/Q(GEjC?Hjhƾ6{JD6 ˘5 Eů5Iǰ\Hs17iLcq\FҏҹAp9#2$C07ߝ?qmIƪSt`Jqf9ۑ$V}xI%v-qck]ĵŚwArn/Q,=[Bz4SoNʻЌmrC_fg
-9={&
-~/4(zġn0<
-
-]0t@-.)i#{Q y 1gj1),%5a*]4V_Els>s Wa XY 8c_tEhvoH~kr!B߈#(sǥ4Y7|9Ejf?G~0_3=hd{ۃ H8E:-+,$['lXQ wlrF,pf[/%r*~٪¢!bt?ù^BB2aX53/*77xcJ*?!sl⵻1ʜ{˘zX$ȼPum\fϨdޤ'l6؄<☆vE##ay56hZӅ)Vqr¾{3y:O#-z@>^!א:dG /Ǽ {`H8,4-`1<M}@)vz7{e
-Kv<HݲUꛨ¢ lK?z%cGL:6:3xdRdp6b_It`&YaHk<<]I`=369C!(c<jAOXC@nPgGK74
-endstream
-endobj
-927 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[14 -250 1077 750]
-/FontName/DJNBQG+CMCSC10
-/ItalicAngle 0
-/StemV 72
-/FontFile 926 0 R
-/Flags 4
->>
-endobj
-926 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 720
-/Length2 1418
-/Length3 533
-/Length 1951
->>
-stream
-x{8TǣLe&D-rmfŒ)בq-\ƬŘaѸr#[ȶmt9%$G#"IssgJN: b1:x]<8P\)xšUU)Dc,% 0x' Fh*@aE!p`Рhy(tpPA
- !p`m9@ kæ1`93 A@
---!N
-ɾ6 7$Nf۶;oJ2k _HQ4'n1]iOyzʴGXt~NHW'OWTvo@_<v%^A~T5-9#֑:c&23#&Ď<*B'|_I89\U/Og4UO~{4~Fv왴gv4Dpa>>K|\sKpXx[bAXs&/ʞUoAar:ی_Q#;p񁯖RB|_ oy5F^I͵nZ!6egfكʓ]
-yHqL.|3 fҐ4an
-endstream
-endobj
-930 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-24 -250 1110 750]
-/FontName/ZCJYGZ+CMMI8
-/ItalicAngle -14.04
-/StemV 78
-/FontFile 929 0 R
-/Flags 68
->>
-endobj
-929 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 724
-/Length2 1240
-/Length3 533
-/Length 1777
->>
-stream
-x{8Tlj8JFYR5qqw؈Ye QbTt\~M.[C7l"b'H.s}}?]F[X40b̜D$Q [ ȈBl "DHV"5BR,q8#. @` N7]rY468`H
-~,\  oV3D| [4ߵP" pr!YmV؜!.,cl>̡!A|0'YAebc`
--]M"2Ε]ia
-ڻW(2e 
-ƃ|L(5نrD(
-! ;,!.2 ۽/^$xݰD &ՖLxCL~vJU%՚)yBu 5D2i`s֠>&n}@~I{a[TOV y}ÝK7ȿoLdXGLvtjsŅ+j~n=RX矽VH+`5I.k
-v'DR:;~imV"#o}j慘o"u.kڙ҈}pҗ!2E[N:0Rp@A@yj:q3ƴ7>Y-7Bx{ɛMY+4T&Mphvq73H<%_h~fU&ni4|c_(sgCAPe)Y:TA~|/:l70P7dz
-yҢ!';
-eGqN㑇t/
-LO\!i[`-_\-\אΙL?4 #%3:bI]Yέv=1O᧓:k>D
-endstream
-endobj
-951 0 obj
-<<
-/Type/FontDescriptor
-/CapHeight 850
-/Ascent 850
-/Descent -200
-/FontBBox[-30 -250 1026 750]
-/FontName/LOVUUY+CMMI12
-/ItalicAngle -14.04
-/StemV 65
-/FontFile 950 0 R
-/Flags 68
->>
-endobj
-950 0 obj
-<<
-/Filter[/FlateDecode]
-/Length1 727
-/Length2 2443
-/Length3 533
-/Length 2991
->>
-stream
-xy<T{#%ENE͌1>e"c c`좐n eK)nH(YE"K$[W}><~>s^v{9l>@
-IA-RR2;K̹ȵPMSbI<ζT$.nr*n-49G&{|zL}&h`}֐ă|؜].׿hlˉuV4s7eС7!,Pe=uՖTtj**{7$V
-opq{IMsCGTzH<Ъ
-G*3㓪Rkh鮬[UNeo(Ie޵Q/#p~GwvMDTGuXYC`hÍwmGu?+9bUL"+ngjQ΂n2T\QqLHITKRЖnCQ:iCj7ʜ 1}ыDV弃ٟZ#Ӄh#NZ$s>k({-􊗥"V)[4 ީ@x"vdݒ߈eC=Bif}|KUdulU>6vTqՉqpk50b^w+C6HZ 8FVT2¤v|h0VrT 1-PQޮLrhg}zJBݮvbI?cIS[ίO{;\EDkQh#XHHւKdsfXMoZb/oyOק@7l979鞃WuҐh,UHy
-(yJӠ™.Æ۷H v:Eȃ/YQ::
-q9||Sb*ҩĶBYuJy^Ǻ(^[~ڶDsH~# Q]d?'!vG۷~Cb_9~e.u"yG VSRpr#[sp{[
-!uzҌ t??v7y8Xe{*`bޜYR
-rܕbWN
-1yi=iQL
-!2 uCK.?O: ns֍>>O,`
-u|IM>V/M"6fb.e.Z"Upg^.'!Ii:X6!Yվz*`W`(ؼ<Є739=-Jo|Bk:'iBbi)6-H릆yȴs MY헒]|6W $Dt#Ӈ:7@2I"fAu%?y+Fְc)U~瘘sCdZ/5᧷ 6̕JHFg~<^c]BYÞʼnKfFƉ/]t\
-(e&Wċz->qL|r5>_,f3CUC§y%9TDyu T`MIZPX4SgsJϯZ 3Lz}- vxmo^7i?v%:bku(!YKn7Iu;#Z'z~aU~.§KE$=~is?"<>E1
-endstream
-endobj
-1 0 obj
-<<
-/Creator( TeX output 2008.01.31:1812)
-/Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks)
-/CreationDate(D:20080131181242+01'00')
->>
-endobj
-5 0 obj
-<<
-/Type/Page
-/Resources 6 0 R
-/Contents[115 0 R 4 0 R 116 0 R 117 0 R]
-/Annots 118 0 R
-/Parent 1094 0 R
->>
-endobj
-120 0 obj
-<<
-/Type/Page
-/Resources 121 0 R
-/Contents[115 0 R 4 0 R 165 0 R 117 0 R]
-/Annots 166 0 R
-/Parent 1094 0 R
->>
-endobj
-1094 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[5 0 R 120 0 R]
-/Parent 1093 0 R
->>
-endobj
-168 0 obj
-<<
-/Type/Page
-/Resources 169 0 R
-/Contents[115 0 R 4 0 R 205 0 R 117 0 R]
-/Annots 206 0 R
-/Parent 1095 0 R
->>
-endobj
-208 0 obj
-<<
-/Type/Page
-/Resources 209 0 R
-/Contents[115 0 R 4 0 R 215 0 R 117 0 R]
-/Annots 216 0 R
-/Parent 1095 0 R
->>
-endobj
-1095 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[168 0 R 208 0 R]
-/Parent 1093 0 R
->>
-endobj
-218 0 obj
-<<
-/Type/Page
-/Resources 219 0 R
-/Contents[115 0 R 4 0 R 242 0 R 117 0 R]
-/Annots 243 0 R
-/Parent 1096 0 R
->>
-endobj
-245 0 obj
-<<
-/Type/Page
-/Resources 246 0 R
-/Contents[115 0 R 4 0 R 273 0 R 117 0 R]
-/Annots 274 0 R
-/Parent 1096 0 R
->>
-endobj
-1096 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[218 0 R 245 0 R]
-/Parent 1093 0 R
->>
-endobj
-276 0 obj
-<<
-/Type/Page
-/Resources 277 0 R
-/Contents[115 0 R 4 0 R 305 0 R 117 0 R]
-/Annots 306 0 R
-/Parent 1097 0 R
->>
-endobj
-308 0 obj
-<<
-/Type/Page
-/Resources 309 0 R
-/Contents[115 0 R 4 0 R 342 0 R 117 0 R]
-/Annots 343 0 R
-/Parent 1097 0 R
->>
-endobj
-345 0 obj
-<<
-/Type/Page
-/Resources 346 0 R
-/Contents[115 0 R 4 0 R 379 0 R 117 0 R]
-/Annots 380 0 R
-/Parent 1097 0 R
->>
-endobj
-1097 0 obj
-<<
-/Type/Pages
-/Count 3
-/Kids[276 0 R 308 0 R 345 0 R]
-/Parent 1093 0 R
->>
-endobj
-1093 0 obj
-<<
-/Type/Pages
-/Count 9
-/Kids[1094 0 R 1095 0 R 1096 0 R 1097 0 R]
-/Parent 3 0 R
->>
-endobj
-382 0 obj
-<<
-/Type/Page
-/Resources 383 0 R
-/Contents[115 0 R 4 0 R 386 0 R 117 0 R]
-/Parent 1099 0 R
->>
-endobj
-388 0 obj
-<<
-/Type/Page
-/Resources 389 0 R
-/Contents[115 0 R 4 0 R 440 0 R 117 0 R]
-/Parent 1099 0 R
->>
-endobj
-1099 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[382 0 R 388 0 R]
-/Parent 1098 0 R
->>
-endobj
-442 0 obj
-<<
-/Type/Page
-/Resources 443 0 R
-/Contents[115 0 R 4 0 R 474 0 R 117 0 R]
-/Annots 475 0 R
-/Parent 1100 0 R
->>
-endobj
-477 0 obj
-<<
-/Type/Page
-/Resources 478 0 R
-/Contents[115 0 R 4 0 R 486 0 R 117 0 R]
-/Parent 1100 0 R
->>
-endobj
-1100 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[442 0 R 477 0 R]
-/Parent 1098 0 R
->>
-endobj
-488 0 obj
-<<
-/Type/Page
-/Resources 489 0 R
-/Contents[115 0 R 4 0 R 497 0 R 117 0 R]
-/Parent 1101 0 R
->>
-endobj
-499 0 obj
-<<
-/Type/Page
-/Resources 500 0 R
-/Contents[115 0 R 4 0 R 529 0 R 117 0 R]
-/Annots 530 0 R
-/Parent 1101 0 R
->>
-endobj
-1101 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[488 0 R 499 0 R]
-/Parent 1098 0 R
->>
-endobj
-532 0 obj
-<<
-/Type/Page
-/Resources 533 0 R
-/Contents[115 0 R 4 0 R 540 0 R 117 0 R]
-/Parent 1102 0 R
->>
-endobj
-542 0 obj
-<<
-/Type/Page
-/Resources 543 0 R
-/Contents[115 0 R 4 0 R 571 0 R 117 0 R]
-/Annots 572 0 R
-/Parent 1102 0 R
->>
-endobj
-574 0 obj
-<<
-/Type/Page
-/Resources 575 0 R
-/Contents[115 0 R 4 0 R 593 0 R 117 0 R]
-/Annots 594 0 R
-/Parent 1102 0 R
->>
-endobj
-1102 0 obj
-<<
-/Type/Pages
-/Count 3
-/Kids[532 0 R 542 0 R 574 0 R]
-/Parent 1098 0 R
->>
-endobj
-1098 0 obj
-<<
-/Type/Pages
-/Count 9
-/Kids[1099 0 R 1100 0 R 1101 0 R 1102 0 R]
-/Parent 3 0 R
->>
-endobj
-596 0 obj
-<<
-/Type/Page
-/Resources 597 0 R
-/Contents[115 0 R 4 0 R 621 0 R 117 0 R]
-/Annots 622 0 R
-/Parent 1104 0 R
->>
-endobj
-624 0 obj
-<<
-/Type/Page
-/Resources 625 0 R
-/Contents[115 0 R 4 0 R 652 0 R 117 0 R]
-/Annots 653 0 R
-/Parent 1104 0 R
->>
-endobj
-1104 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[596 0 R 624 0 R]
-/Parent 1103 0 R
->>
-endobj
-655 0 obj
-<<
-/Type/Page
-/Resources 656 0 R
-/Contents[115 0 R 4 0 R 676 0 R 117 0 R]
-/Parent 1105 0 R
->>
-endobj
-678 0 obj
-<<
-/Type/Page
-/Resources 679 0 R
-/Contents[115 0 R 4 0 R 704 0 R 117 0 R]
-/Parent 1105 0 R
->>
-endobj
-1105 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[655 0 R 678 0 R]
-/Parent 1103 0 R
->>
-endobj
-706 0 obj
-<<
-/Type/Page
-/Resources 707 0 R
-/Contents[115 0 R 4 0 R 726 0 R 117 0 R]
-/Parent 1106 0 R
->>
-endobj
-728 0 obj
-<<
-/Type/Page
-/Resources 729 0 R
-/Contents[115 0 R 4 0 R 749 0 R 117 0 R]
-/Annots 750 0 R
-/Parent 1106 0 R
->>
-endobj
-1106 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[706 0 R 728 0 R]
-/Parent 1103 0 R
->>
-endobj
-752 0 obj
-<<
-/Type/Page
-/Resources 753 0 R
-/Contents[115 0 R 4 0 R 787 0 R 117 0 R]
-/Parent 1107 0 R
->>
-endobj
-789 0 obj
-<<
-/Type/Page
-/Resources 790 0 R
-/Contents[115 0 R 4 0 R 816 0 R 117 0 R]
-/Parent 1107 0 R
->>
-endobj
-818 0 obj
-<<
-/Type/Page
-/Resources 819 0 R
-/Contents[115 0 R 4 0 R 834 0 R 117 0 R]
-/Annots 835 0 R
-/Parent 1107 0 R
->>
-endobj
-1107 0 obj
-<<
-/Type/Pages
-/Count 3
-/Kids[752 0 R 789 0 R 818 0 R]
-/Parent 1103 0 R
->>
-endobj
-1103 0 obj
-<<
-/Type/Pages
-/Count 9
-/Kids[1104 0 R 1105 0 R 1106 0 R 1107 0 R]
-/Parent 3 0 R
->>
-endobj
-837 0 obj
-<<
-/Type/Page
-/Resources 838 0 R
-/Contents[115 0 R 4 0 R 860 0 R 117 0 R]
-/Annots 861 0 R
-/Parent 1109 0 R
->>
-endobj
-863 0 obj
-<<
-/Type/Page
-/Resources 864 0 R
-/Contents[115 0 R 4 0 R 884 0 R 117 0 R]
-/Parent 1109 0 R
->>
-endobj
-1109 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[837 0 R 863 0 R]
-/Parent 1108 0 R
->>
-endobj
-886 0 obj
-<<
-/Type/Page
-/Resources 887 0 R
-/Contents[115 0 R 4 0 R 905 0 R 117 0 R]
-/Parent 1110 0 R
->>
-endobj
-907 0 obj
-<<
-/Type/Page
-/Resources 908 0 R
-/Contents[115 0 R 4 0 R 946 0 R 117 0 R]
-/Parent 1110 0 R
->>
-endobj
-948 0 obj
-<<
-/Type/Page
-/Resources 949 0 R
-/Contents[115 0 R 4 0 R 966 0 R 117 0 R]
-/Parent 1110 0 R
->>
-endobj
-1110 0 obj
-<<
-/Type/Pages
-/Count 3
-/Kids[886 0 R 907 0 R 948 0 R]
-/Parent 1108 0 R
->>
-endobj
-968 0 obj
-<<
-/Type/Page
-/Resources 969 0 R
-/Contents[115 0 R 4 0 R 1000 0 R 117 0 R]
-/Parent 1111 0 R
->>
-endobj
-1002 0 obj
-<<
-/Type/Page
-/Resources 1003 0 R
-/Contents[115 0 R 4 0 R 1017 0 R 117 0 R]
-/Parent 1111 0 R
->>
-endobj
-1111 0 obj
-<<
-/Type/Pages
-/Count 2
-/Kids[968 0 R 1002 0 R]
-/Parent 1108 0 R
->>
-endobj
-1019 0 obj
-<<
-/Type/Page
-/Resources 1020 0 R
-/Contents[115 0 R 4 0 R 1062 0 R 117 0 R]
-/Parent 1112 0 R
->>
-endobj
-1064 0 obj
-<<
-/Type/Page
-/Resources 1065 0 R
-/Contents[115 0 R 4 0 R 1082 0 R 117 0 R]
-/Parent 1112 0 R
->>
-endobj
-1084 0 obj
-<<
-/Type/Page
-/Resources 1085 0 R
-/Contents[115 0 R 4 0 R 1090 0 R 117 0 R]
-/Annots 1091 0 R
-/Parent 1112 0 R
->>
-endobj
-1112 0 obj
-<<
-/Type/Pages
-/Count 3
-/Kids[1019 0 R 1064 0 R 1084 0 R]
-/Parent 1108 0 R
->>
-endobj
-1108 0 obj
-<<
-/Type/Pages
-/Count 10
-/Kids[1109 0 R 1110 0 R 1111 0 R 1112 0 R]
-/Parent 3 0 R
->>
-endobj
-3 0 obj
-<<
-/Type/Pages
-/Count 37
-/Kids[1093 0 R 1098 0 R 1103 0 R 1108 0 R]
-/MediaBox[0 0 595 842]
->>
-endobj
-115 0 obj
-<<
-/Length 1
->>
-stream
-
-endstream
-endobj
-117 0 obj
-<<
-/Length 1
->>
-stream
-
-endstream
-endobj
-4 0 obj
-<<
-/Length 33
->>
-stream
-1.00028 0 0 1.00028 72 769.82 cm
-endstream
-endobj
-47 0 obj
-<<
-/Title(More examples)
-/A<<
-/S/GoTo
-/D(section.5)
->>
-/Parent 10 0 R
-/Prev 27 0 R
-/First 48 0 R
-/Last 56 0 R
-/Count -5
->>
-endobj
-56 0 obj
-<<
-/Title(Annotating plots)
-/A<<
-/S/GoTo
-/D(subsection.5.5)
->>
-/Parent 47 0 R
-/Prev 53 0 R
-/First 57 0 R
-/Last 58 0 R
-/Count -2
->>
-endobj
-58 0 obj
-<<
-/Title(Example: Slopes of line segments)
-/A<<
-/S/GoTo
-/D(subsubsection.5.5.2)
->>
-/Parent 56 0 R
-/Prev 57 0 R
->>
-endobj
-10 0 obj
-<<
-/First 11 0 R
-/Last 47 0 R
-/Count 5
->>
-endobj
-1113 0 obj
-<<
-/Limits[(Doc-Start)(Hfootnote.1)]
-/Names[(Doc-Start) 59 0 R(Hfootnote.1) 830 0 R]
->>
-endobj
-1114 0 obj
-<<
-/Limits[(Hfootnote.2)(Item.10)]
-/Names[(Hfootnote.2) 859 0 R(Item.1) 473 0 R(Item.10) 512 0 R]
->>
-endobj
-1115 0 obj
-<<
-/Limits[(Item.11)(Item.13)]
-/Names[(Item.11) 513 0 R(Item.12) 514 0 R(Item.13) 515 0 R]
->>
-endobj
-1116 0 obj
-<<
-/Limits[(Item.14)(Item.16)]
-/Names[(Item.14) 517 0 R(Item.15) 518 0 R(Item.16) 519 0 R]
->>
-endobj
-1117 0 obj
-<<
-/Limits[(Doc-Start)(Item.16)]
-/Kids[1113 0 R 1114 0 R 1115 0 R 1116 0 R]
->>
-endobj
-1118 0 obj
-<<
-/Limits[(Item.17)(Item.18)]
-/Names[(Item.17) 576 0 R(Item.18) 577 0 R]
->>
-endobj
-1119 0 obj
-<<
-/Limits[(Item.19)(Item.20)]
-/Names[(Item.19) 663 0 R(Item.2) 502 0 R(Item.20) 665 0 R]
->>
-endobj
-1120 0 obj
-<<
-/Limits[(Item.21)(Item.23)]
-/Names[(Item.21) 666 0 R(Item.22) 667 0 R(Item.23) 669 0 R]
->>
-endobj
-1121 0 obj
-<<
-/Limits[(Item.24)(Item.26)]
-/Names[(Item.24) 670 0 R(Item.25) 671 0 R(Item.26) 672 0 R]
->>
-endobj
-1122 0 obj
-<<
-/Limits[(Item.17)(Item.26)]
-/Kids[1118 0 R 1119 0 R 1120 0 R 1121 0 R]
->>
-endobj
-1123 0 obj
-<<
-/Limits[(Item.27)(Item.28)]
-/Names[(Item.27) 673 0 R(Item.28) 674 0 R]
->>
-endobj
-1124 0 obj
-<<
-/Limits[(Item.29)(Item.4)]
-/Names[(Item.29) 675 0 R(Item.3) 503 0 R(Item.4) 504 0 R]
->>
-endobj
-1125 0 obj
-<<
-/Limits[(Item.5)(Item.7)]
-/Names[(Item.5) 505 0 R(Item.6) 507 0 R(Item.7) 508 0 R]
->>
-endobj
-1126 0 obj
-<<
-/Limits[(Item.8)(cite.tikz)]
-/Names[(Item.8) 509 0 R(Item.9) 510 0 R(cite.tikz) 1087 0 R]
->>
-endobj
-1127 0 obj
-<<
-/Limits[(Item.27)(cite.tikz)]
-/Kids[1123 0 R 1124 0 R 1125 0 R 1126 0 R]
->>
-endobj
-1128 0 obj
-<<
-/Limits[(figure.1)(figure.10)]
-/Names[(figure.1) 220 0 R(figure.10) 598 0 R]
->>
-endobj
-1129 0 obj
-<<
-/Limits[(figure.11)(figure.3)]
-/Names[(figure.11) 786 0 R(figure.2) 247 0 R(figure.3) 278 0 R]
->>
-endobj
-1130 0 obj
-<<
-/Limits[(figure.4)(figure.6)]
-/Names[(figure.4) 313 0 R(figure.5) 384 0 R(figure.6) 385 0 R]
->>
-endobj
-1131 0 obj
-<<
-/Limits[(figure.7)(figure.9)]
-/Names[(figure.7) 450 0 R(figure.8) 485 0 R(figure.9) 496 0 R]
->>
-endobj
-1132 0 obj
-<<
-/Limits[(figure.1)(figure.9)]
-/Kids[1128 0 R 1129 0 R 1130 0 R 1131 0 R]
->>
-endobj
-1133 0 obj
-<<
-/Limits[(Doc-Start)(figure.9)]
-/Kids[1117 0 R 1122 0 R 1127 0 R 1132 0 R]
->>
-endobj
-1134 0 obj
-<<
-/Limits[(lstlisting.-1)(lstlisting.-10)]
-/Names[(lstlisting.-1) 172 0 R(lstlisting.-10) 319 0 R]
->>
-endobj
-1135 0 obj
-<<
-/Limits[(lstlisting.-11)(lstlisting.-13)]
-/Names[(lstlisting.-11) 355 0 R(lstlisting.-12) 359 0 R(lstlisting.-13) 375 0 R]
->>
-endobj
-1136 0 obj
-<<
-/Limits[(lstlisting.-14)(lstlisting.-16)]
-/Names[(lstlisting.-14) 444 0 R(lstlisting.-15) 479 0 R(lstlisting.-16) 490 0 R]
->>
-endobj
-1137 0 obj
-<<
-/Limits[(lstlisting.-17)(lstlisting.-19)]
-/Names[(lstlisting.-17) 501 0 R(lstlisting.-18) 506 0 R(lstlisting.-19) 511 0 R]
->>
-endobj
-1138 0 obj
-<<
-/Limits[(lstlisting.-1)(lstlisting.-19)]
-/Kids[1134 0 R 1135 0 R 1136 0 R 1137 0 R]
->>
-endobj
-1139 0 obj
-<<
-/Limits[(lstlisting.-2)(lstlisting.-20)]
-/Names[(lstlisting.-2) 180 0 R(lstlisting.-20) 516 0 R]
->>
-endobj
-1140 0 obj
-<<
-/Limits[(lstlisting.-21)(lstlisting.-23)]
-/Names[(lstlisting.-21) 520 0 R(lstlisting.-22) 534 0 R(lstlisting.-23) 545 0 R]
->>
-endobj
-1141 0 obj
-<<
-/Limits[(lstlisting.-24)(lstlisting.-26)]
-/Names[(lstlisting.-24) 551 0 R(lstlisting.-25) 558 0 R(lstlisting.-26) 560 0 R]
->>
-endobj
-1142 0 obj
-<<
-/Limits[(lstlisting.-27)(lstlisting.-29)]
-/Names[(lstlisting.-27) 579 0 R(lstlisting.-28) 581 0 R(lstlisting.-29) 585 0 R]
->>
-endobj
-1143 0 obj
-<<
-/Limits[(lstlisting.-2)(lstlisting.-29)]
-/Kids[1139 0 R 1140 0 R 1141 0 R 1142 0 R]
->>
-endobj
-1144 0 obj
-<<
-/Limits[(lstlisting.-3)(lstlisting.-30)]
-/Names[(lstlisting.-3) 192 0 R(lstlisting.-30) 611 0 R]
->>
-endobj
-1145 0 obj
-<<
-/Limits[(lstlisting.-31)(lstlisting.-33)]
-/Names[(lstlisting.-31) 619 0 R(lstlisting.-32) 627 0 R(lstlisting.-33) 631 0 R]
->>
-endobj
-1146 0 obj
-<<
-/Limits[(lstlisting.-34)(lstlisting.-36)]
-/Names[(lstlisting.-34) 636 0 R(lstlisting.-35) 640 0 R(lstlisting.-36) 644 0 R]
->>
-endobj
-1147 0 obj
-<<
-/Limits[(lstlisting.-37)(lstlisting.-39)]
-/Names[(lstlisting.-37) 660 0 R(lstlisting.-38) 664 0 R(lstlisting.-39) 668 0 R]
->>
-endobj
-1148 0 obj
-<<
-/Limits[(lstlisting.-3)(lstlisting.-39)]
-/Kids[1144 0 R 1145 0 R 1146 0 R 1147 0 R]
->>
-endobj
-1149 0 obj
-<<
-/Limits[(lstlisting.-4)(lstlisting.-40)]
-/Names[(lstlisting.-4) 201 0 R(lstlisting.-40) 681 0 R]
->>
-endobj
-1150 0 obj
-<<
-/Limits[(lstlisting.-41)(lstlisting.-43)]
-/Names[(lstlisting.-41) 685 0 R(lstlisting.-42) 691 0 R(lstlisting.-43) 694 0 R]
->>
-endobj
-1151 0 obj
-<<
-/Limits[(lstlisting.-44)(lstlisting.-46)]
-/Names[(lstlisting.-44) 709 0 R(lstlisting.-45) 715 0 R(lstlisting.-46) 719 0 R]
->>
-endobj
-1152 0 obj
-<<
-/Limits[(lstlisting.-47)(lstlisting.-49)]
-/Names[(lstlisting.-47) 730 0 R(lstlisting.-48) 741 0 R(lstlisting.-49) 744 0 R]
->>
-endobj
-1153 0 obj
-<<
-/Limits[(lstlisting.-4)(lstlisting.-49)]
-/Kids[1149 0 R 1150 0 R 1151 0 R 1152 0 R]
->>
-endobj
-1154 0 obj
-<<
-/Limits[(lstlisting.-1)(lstlisting.-49)]
-/Kids[1138 0 R 1143 0 R 1148 0 R 1153 0 R]
->>
-endobj
-1155 0 obj
-<<
-/Limits[(lstlisting.-5)(lstlisting.-50)]
-/Names[(lstlisting.-5) 203 0 R(lstlisting.-50) 754 0 R]
->>
-endobj
-1156 0 obj
-<<
-/Limits[(lstlisting.-51)(lstlisting.-53)]
-/Names[(lstlisting.-51) 792 0 R(lstlisting.-52) 801 0 R(lstlisting.-53) 810 0 R]
->>
-endobj
-1157 0 obj
-<<
-/Limits[(lstlisting.-54)(lstlisting.-56)]
-/Names[(lstlisting.-54) 812 0 R(lstlisting.-55) 814 0 R(lstlisting.-56) 839 0 R]
->>
-endobj
-1158 0 obj
-<<
-/Limits[(lstlisting.-57)(lstlisting.-59)]
-/Names[(lstlisting.-57) 845 0 R(lstlisting.-58) 853 0 R(lstlisting.-59) 865 0 R]
->>
-endobj
-1159 0 obj
-<<
-/Limits[(lstlisting.-5)(lstlisting.-59)]
-/Kids[1155 0 R 1156 0 R 1157 0 R 1158 0 R]
->>
-endobj
-1160 0 obj
-<<
-/Limits[(lstlisting.-6)(lstlisting.-60)]
-/Names[(lstlisting.-6) 221 0 R(lstlisting.-60) 872 0 R]
->>
-endobj
-1161 0 obj
-<<
-/Limits[(lstlisting.-61)(lstlisting.-63)]
-/Names[(lstlisting.-61) 888 0 R(lstlisting.-62) 896 0 R(lstlisting.-63) 933 0 R]
->>
-endobj
-1162 0 obj
-<<
-/Limits[(lstlisting.-64)(lstlisting.-66)]
-/Names[(lstlisting.-64) 955 0 R(lstlisting.-65) 970 0 R(lstlisting.-66) 989 0 R]
->>
-endobj
-1163 0 obj
-<<
-/Limits[(lstlisting.-67)(lstlisting.-69)]
-/Names[(lstlisting.-67) 1005 0 R(lstlisting.-68) 1021 0 R(lstlisting.-69) 1067 0 R]
->>
-endobj
-1164 0 obj
-<<
-/Limits[(lstlisting.-6)(lstlisting.-69)]
-/Kids[1160 0 R 1161 0 R 1162 0 R 1163 0 R]
->>
-endobj
-1165 0 obj
-<<
-/Limits[(lstlisting.-7)(lstlisting.-8)]
-/Names[(lstlisting.-7) 232 0 R(lstlisting.-8) 259 0 R]
->>
-endobj
-1166 0 obj
-<<
-/Limits[(lstlisting.-9)(lstnumber.-10.1)]
-/Names[(lstlisting.-9) 295 0 R(lstnumber.-1.1) 173 0 R(lstnumber.-10.1) 320 0 R]
->>
-endobj
-1167 0 obj
-<<
-/Limits[(lstnumber.-10.10)(lstnumber.-10.12)]
-/Names[(lstnumber.-10.10) 329 0 R(lstnumber.-10.11) 330 0 R(lstnumber.-10.12) 331 0 R]
->>
-endobj
-1168 0 obj
-<<
-/Limits[(lstnumber.-10.13)(lstnumber.-10.15)]
-/Names[(lstnumber.-10.13) 332 0 R(lstnumber.-10.14) 333 0 R(lstnumber.-10.15) 334 0 R]
->>
-endobj
-1169 0 obj
-<<
-/Limits[(lstlisting.-7)(lstnumber.-10.15)]
-/Kids[1165 0 R 1166 0 R 1167 0 R 1168 0 R]
->>
-endobj
-1170 0 obj
-<<
-/Limits[(lstnumber.-10.16)(lstnumber.-10.17)]
-/Names[(lstnumber.-10.16) 335 0 R(lstnumber.-10.17) 336 0 R]
->>
-endobj
-1171 0 obj
-<<
-/Limits[(lstnumber.-10.18)(lstnumber.-10.2)]
-/Names[(lstnumber.-10.18) 337 0 R(lstnumber.-10.19) 338 0 R(lstnumber.-10.2) 321 0 R]
->>
-endobj
-1172 0 obj
-<<
-/Limits[(lstnumber.-10.20)(lstnumber.-10.22)]
-/Names[(lstnumber.-10.20) 339 0 R(lstnumber.-10.21) 340 0 R(lstnumber.-10.22) 341 0 R]
->>
-endobj
-1173 0 obj
-<<
-/Limits[(lstnumber.-10.23)(lstnumber.-10.25)]
-/Names[(lstnumber.-10.23) 347 0 R(lstnumber.-10.24) 348 0 R(lstnumber.-10.25) 349 0 R]
->>
-endobj
-1174 0 obj
-<<
-/Limits[(lstnumber.-10.16)(lstnumber.-10.25)]
-/Kids[1170 0 R 1171 0 R 1172 0 R 1173 0 R]
->>
-endobj
-1175 0 obj
-<<
-/Limits[(lstlisting.-5)(lstnumber.-10.25)]
-/Kids[1159 0 R 1164 0 R 1169 0 R 1174 0 R]
->>
-endobj
-1176 0 obj
-<<
-/Limits[(lstnumber.-10.26)(lstnumber.-10.27)]
-/Names[(lstnumber.-10.26) 350 0 R(lstnumber.-10.27) 351 0 R]
->>
-endobj
-1177 0 obj
-<<
-/Limits[(lstnumber.-10.28)(lstnumber.-10.3)]
-/Names[(lstnumber.-10.28) 352 0 R(lstnumber.-10.29) 353 0 R(lstnumber.-10.3) 322 0 R]
->>
-endobj
-1178 0 obj
-<<
-/Limits[(lstnumber.-10.30)(lstnumber.-10.5)]
-/Names[(lstnumber.-10.30) 354 0 R(lstnumber.-10.4) 323 0 R(lstnumber.-10.5) 324 0 R]
->>
-endobj
-1179 0 obj
-<<
-/Limits[(lstnumber.-10.6)(lstnumber.-10.8)]
-/Names[(lstnumber.-10.6) 325 0 R(lstnumber.-10.7) 326 0 R(lstnumber.-10.8) 327 0 R]
->>
-endobj
-1180 0 obj
-<<
-/Limits[(lstnumber.-10.26)(lstnumber.-10.8)]
-/Kids[1176 0 R 1177 0 R 1178 0 R 1179 0 R]
->>
-endobj
-1181 0 obj
-<<
-/Limits[(lstnumber.-10.9)(lstnumber.-11.1)]
-/Names[(lstnumber.-10.9) 328 0 R(lstnumber.-11.1) 356 0 R]
->>
-endobj
-1182 0 obj
-<<
-/Limits[(lstnumber.-11.2)(lstnumber.-12.1)]
-/Names[(lstnumber.-11.2) 357 0 R(lstnumber.-11.3) 358 0 R(lstnumber.-12.1) 360 0 R]
->>
-endobj
-1183 0 obj
-<<
-/Limits[(lstnumber.-12.10)(lstnumber.-12.12)]
-/Names[(lstnumber.-12.10) 369 0 R(lstnumber.-12.11) 370 0 R(lstnumber.-12.12) 371 0 R]
->>
-endobj
-1184 0 obj
-<<
-/Limits[(lstnumber.-12.13)(lstnumber.-12.3)]
-/Names[(lstnumber.-12.13) 372 0 R(lstnumber.-12.2) 361 0 R(lstnumber.-12.3) 362 0 R]
->>
-endobj
-1185 0 obj
-<<
-/Limits[(lstnumber.-10.9)(lstnumber.-12.3)]
-/Kids[1181 0 R 1182 0 R 1183 0 R 1184 0 R]
->>
-endobj
-1186 0 obj
-<<
-/Limits[(lstnumber.-12.4)(lstnumber.-12.5)]
-/Names[(lstnumber.-12.4) 363 0 R(lstnumber.-12.5) 364 0 R]
->>
-endobj
-1187 0 obj
-<<
-/Limits[(lstnumber.-12.6)(lstnumber.-12.8)]
-/Names[(lstnumber.-12.6) 365 0 R(lstnumber.-12.7) 366 0 R(lstnumber.-12.8) 367 0 R]
->>
-endobj
-1188 0 obj
-<<
-/Limits[(lstnumber.-12.9)(lstnumber.-13.10)]
-/Names[(lstnumber.-12.9) 368 0 R(lstnumber.-13.1) 376 0 R(lstnumber.-13.10) 396 0 R]
->>
-endobj
-1189 0 obj
-<<
-/Limits[(lstnumber.-13.11)(lstnumber.-13.13)]
-/Names[(lstnumber.-13.11) 397 0 R(lstnumber.-13.12) 398 0 R(lstnumber.-13.13) 399 0 R]
->>
-endobj
-1190 0 obj
-<<
-/Limits[(lstnumber.-12.4)(lstnumber.-13.13)]
-/Kids[1186 0 R 1187 0 R 1188 0 R 1189 0 R]
->>
-endobj
-1191 0 obj
-<<
-/Limits[(lstnumber.-13.14)(lstnumber.-13.16)]
-/Names[(lstnumber.-13.14) 400 0 R(lstnumber.-13.15) 401 0 R(lstnumber.-13.16) 402 0 R]
->>
-endobj
-1192 0 obj
-<<
-/Limits[(lstnumber.-13.17)(lstnumber.-13.19)]
-/Names[(lstnumber.-13.17) 403 0 R(lstnumber.-13.18) 404 0 R(lstnumber.-13.19) 405 0 R]
->>
-endobj
-1193 0 obj
-<<
-/Limits[(lstnumber.-13.2)(lstnumber.-13.21)]
-/Names[(lstnumber.-13.2) 377 0 R(lstnumber.-13.20) 406 0 R(lstnumber.-13.21) 407 0 R]
->>
-endobj
-1194 0 obj
-<<
-/Limits[(lstnumber.-13.22)(lstnumber.-13.24)]
-/Names[(lstnumber.-13.22) 408 0 R(lstnumber.-13.23) 409 0 R(lstnumber.-13.24) 410 0 R]
->>
-endobj
-1195 0 obj
-<<
-/Limits[(lstnumber.-13.14)(lstnumber.-13.24)]
-/Kids[1191 0 R 1192 0 R 1193 0 R 1194 0 R]
->>
-endobj
-1196 0 obj
-<<
-/Limits[(lstnumber.-10.26)(lstnumber.-13.24)]
-/Kids[1180 0 R 1185 0 R 1190 0 R 1195 0 R]
->>
-endobj
-1197 0 obj
-<<
-/Limits[(Doc-Start)(lstnumber.-13.24)]
-/Kids[1133 0 R 1154 0 R 1175 0 R 1196 0 R]
->>
-endobj
-1198 0 obj
-<<
-/Limits[(lstnumber.-13.25)(lstnumber.-13.26)]
-/Names[(lstnumber.-13.25) 411 0 R(lstnumber.-13.26) 412 0 R]
->>
-endobj
-1199 0 obj
-<<
-/Limits[(lstnumber.-13.27)(lstnumber.-13.29)]
-/Names[(lstnumber.-13.27) 413 0 R(lstnumber.-13.28) 414 0 R(lstnumber.-13.29) 415 0 R]
->>
-endobj
-1200 0 obj
-<<
-/Limits[(lstnumber.-13.3)(lstnumber.-13.31)]
-/Names[(lstnumber.-13.3) 378 0 R(lstnumber.-13.30) 416 0 R(lstnumber.-13.31) 417 0 R]
->>
-endobj
-1201 0 obj
-<<
-/Limits[(lstnumber.-13.32)(lstnumber.-13.34)]
-/Names[(lstnumber.-13.32) 418 0 R(lstnumber.-13.33) 419 0 R(lstnumber.-13.34) 420 0 R]
->>
-endobj
-1202 0 obj
-<<
-/Limits[(lstnumber.-13.25)(lstnumber.-13.34)]
-/Kids[1198 0 R 1199 0 R 1200 0 R 1201 0 R]
->>
-endobj
-1203 0 obj
-<<
-/Limits[(lstnumber.-13.35)(lstnumber.-13.36)]
-/Names[(lstnumber.-13.35) 421 0 R(lstnumber.-13.36) 422 0 R]
->>
-endobj
-1204 0 obj
-<<
-/Limits[(lstnumber.-13.37)(lstnumber.-13.39)]
-/Names[(lstnumber.-13.37) 423 0 R(lstnumber.-13.38) 424 0 R(lstnumber.-13.39) 425 0 R]
->>
-endobj
-1205 0 obj
-<<
-/Limits[(lstnumber.-13.4)(lstnumber.-13.41)]
-/Names[(lstnumber.-13.4) 390 0 R(lstnumber.-13.40) 426 0 R(lstnumber.-13.41) 427 0 R]
->>
-endobj
-1206 0 obj
-<<
-/Limits[(lstnumber.-13.42)(lstnumber.-13.44)]
-/Names[(lstnumber.-13.42) 428 0 R(lstnumber.-13.43) 429 0 R(lstnumber.-13.44) 430 0 R]
->>
-endobj
-1207 0 obj
-<<
-/Limits[(lstnumber.-13.35)(lstnumber.-13.44)]
-/Kids[1203 0 R 1204 0 R 1205 0 R 1206 0 R]
->>
-endobj
-1208 0 obj
-<<
-/Limits[(lstnumber.-13.45)(lstnumber.-13.46)]
-/Names[(lstnumber.-13.45) 431 0 R(lstnumber.-13.46) 432 0 R]
->>
-endobj
-1209 0 obj
-<<
-/Limits[(lstnumber.-13.47)(lstnumber.-13.49)]
-/Names[(lstnumber.-13.47) 433 0 R(lstnumber.-13.48) 434 0 R(lstnumber.-13.49) 435 0 R]
->>
-endobj
-1210 0 obj
-<<
-/Limits[(lstnumber.-13.5)(lstnumber.-13.51)]
-/Names[(lstnumber.-13.5) 391 0 R(lstnumber.-13.50) 436 0 R(lstnumber.-13.51) 437 0 R]
->>
-endobj
-1211 0 obj
-<<
-/Limits[(lstnumber.-13.52)(lstnumber.-13.54)]
-/Names[(lstnumber.-13.52) 438 0 R(lstnumber.-13.53) 439 0 R(lstnumber.-13.54) 451 0 R]
->>
-endobj
-1212 0 obj
-<<
-/Limits[(lstnumber.-13.45)(lstnumber.-13.54)]
-/Kids[1208 0 R 1209 0 R 1210 0 R 1211 0 R]
->>
-endobj
-1213 0 obj
-<<
-/Limits[(lstnumber.-13.55)(lstnumber.-13.56)]
-/Names[(lstnumber.-13.55) 452 0 R(lstnumber.-13.56) 453 0 R]
->>
-endobj
-1214 0 obj
-<<
-/Limits[(lstnumber.-13.57)(lstnumber.-13.59)]
-/Names[(lstnumber.-13.57) 454 0 R(lstnumber.-13.58) 455 0 R(lstnumber.-13.59) 456 0 R]
->>
-endobj
-1215 0 obj
-<<
-/Limits[(lstnumber.-13.6)(lstnumber.-13.61)]
-/Names[(lstnumber.-13.6) 392 0 R(lstnumber.-13.60) 457 0 R(lstnumber.-13.61) 458 0 R]
->>
-endobj
-1216 0 obj
-<<
-/Limits[(lstnumber.-13.62)(lstnumber.-13.64)]
-/Names[(lstnumber.-13.62) 459 0 R(lstnumber.-13.63) 460 0 R(lstnumber.-13.64) 461 0 R]
->>
-endobj
-1217 0 obj
-<<
-/Limits[(lstnumber.-13.55)(lstnumber.-13.64)]
-/Kids[1213 0 R 1214 0 R 1215 0 R 1216 0 R]
->>
-endobj
-1218 0 obj
-<<
-/Limits[(lstnumber.-13.25)(lstnumber.-13.64)]
-/Kids[1202 0 R 1207 0 R 1212 0 R 1217 0 R]
->>
-endobj
-1219 0 obj
-<<
-/Limits[(lstnumber.-13.65)(lstnumber.-13.66)]
-/Names[(lstnumber.-13.65) 462 0 R(lstnumber.-13.66) 463 0 R]
->>
-endobj
-1220 0 obj
-<<
-/Limits[(lstnumber.-13.67)(lstnumber.-13.8)]
-/Names[(lstnumber.-13.67) 464 0 R(lstnumber.-13.7) 393 0 R(lstnumber.-13.8) 394 0 R]
->>
-endobj
-1221 0 obj
-<<
-/Limits[(lstnumber.-13.9)(lstnumber.-14.2)]
-/Names[(lstnumber.-13.9) 395 0 R(lstnumber.-14.1) 445 0 R(lstnumber.-14.2) 446 0 R]
->>
-endobj
-1222 0 obj
-<<
-/Limits[(lstnumber.-14.3)(lstnumber.-14.5)]
-/Names[(lstnumber.-14.3) 447 0 R(lstnumber.-14.4) 448 0 R(lstnumber.-14.5) 449 0 R]
->>
-endobj
-1223 0 obj
-<<
-/Limits[(lstnumber.-13.65)(lstnumber.-14.5)]
-/Kids[1219 0 R 1220 0 R 1221 0 R 1222 0 R]
->>
-endobj
-1224 0 obj
-<<
-/Limits[(lstnumber.-15.1)(lstnumber.-15.2)]
-/Names[(lstnumber.-15.1) 480 0 R(lstnumber.-15.2) 481 0 R]
->>
-endobj
-1225 0 obj
-<<
-/Limits[(lstnumber.-15.3)(lstnumber.-15.5)]
-/Names[(lstnumber.-15.3) 482 0 R(lstnumber.-15.4) 483 0 R(lstnumber.-15.5) 484 0 R]
->>
-endobj
-1226 0 obj
-<<
-/Limits[(lstnumber.-16.1)(lstnumber.-16.3)]
-/Names[(lstnumber.-16.1) 491 0 R(lstnumber.-16.2) 492 0 R(lstnumber.-16.3) 493 0 R]
->>
-endobj
-1227 0 obj
-<<
-/Limits[(lstnumber.-16.4)(lstnumber.-2.1)]
-/Names[(lstnumber.-16.4) 494 0 R(lstnumber.-16.5) 495 0 R(lstnumber.-2.1) 181 0 R]
->>
-endobj
-1228 0 obj
-<<
-/Limits[(lstnumber.-15.1)(lstnumber.-2.1)]
-/Kids[1224 0 R 1225 0 R 1226 0 R 1227 0 R]
->>
-endobj
-1229 0 obj
-<<
-/Limits[(lstnumber.-2.10)(lstnumber.-2.11)]
-/Names[(lstnumber.-2.10) 190 0 R(lstnumber.-2.11) 191 0 R]
->>
-endobj
-1230 0 obj
-<<
-/Limits[(lstnumber.-2.2)(lstnumber.-2.4)]
-/Names[(lstnumber.-2.2) 182 0 R(lstnumber.-2.3) 183 0 R(lstnumber.-2.4) 184 0 R]
->>
-endobj
-1231 0 obj
-<<
-/Limits[(lstnumber.-2.5)(lstnumber.-2.7)]
-/Names[(lstnumber.-2.5) 185 0 R(lstnumber.-2.6) 186 0 R(lstnumber.-2.7) 187 0 R]
->>
-endobj
-1232 0 obj
-<<
-/Limits[(lstnumber.-2.8)(lstnumber.-21.1)]
-/Names[(lstnumber.-2.8) 188 0 R(lstnumber.-2.9) 189 0 R(lstnumber.-21.1) 521 0 R]
->>
-endobj
-1233 0 obj
-<<
-/Limits[(lstnumber.-2.10)(lstnumber.-21.1)]
-/Kids[1229 0 R 1230 0 R 1231 0 R 1232 0 R]
->>
-endobj
-1234 0 obj
-<<
-/Limits[(lstnumber.-21.2)(lstnumber.-21.4)]
-/Names[(lstnumber.-21.2) 522 0 R(lstnumber.-21.3) 523 0 R(lstnumber.-21.4) 524 0 R]
->>
-endobj
-1235 0 obj
-<<
-/Limits[(lstnumber.-21.5)(lstnumber.-22.2)]
-/Names[(lstnumber.-21.5) 525 0 R(lstnumber.-22.1) 535 0 R(lstnumber.-22.2) 536 0 R]
->>
-endobj
-1236 0 obj
-<<
-/Limits[(lstnumber.-22.3)(lstnumber.-23.1)]
-/Names[(lstnumber.-22.3) 537 0 R(lstnumber.-22.4) 538 0 R(lstnumber.-23.1) 546 0 R]
->>
-endobj
-1237 0 obj
-<<
-/Limits[(lstnumber.-23.2)(lstnumber.-23.4)]
-/Names[(lstnumber.-23.2) 547 0 R(lstnumber.-23.3) 548 0 R(lstnumber.-23.4) 549 0 R]
->>
-endobj
-1238 0 obj
-<<
-/Limits[(lstnumber.-21.2)(lstnumber.-23.4)]
-/Kids[1234 0 R 1235 0 R 1236 0 R 1237 0 R]
->>
-endobj
-1239 0 obj
-<<
-/Limits[(lstnumber.-13.65)(lstnumber.-23.4)]
-/Kids[1223 0 R 1228 0 R 1233 0 R 1238 0 R]
->>
-endobj
-1240 0 obj
-<<
-/Limits[(lstnumber.-23.5)(lstnumber.-24.1)]
-/Names[(lstnumber.-23.5) 550 0 R(lstnumber.-24.1) 552 0 R]
->>
-endobj
-1241 0 obj
-<<
-/Limits[(lstnumber.-24.2)(lstnumber.-24.4)]
-/Names[(lstnumber.-24.2) 553 0 R(lstnumber.-24.3) 554 0 R(lstnumber.-24.4) 555 0 R]
->>
-endobj
-1242 0 obj
-<<
-/Limits[(lstnumber.-24.5)(lstnumber.-26.1)]
-/Names[(lstnumber.-24.5) 556 0 R(lstnumber.-25.1) 559 0 R(lstnumber.-26.1) 561 0 R]
->>
-endobj
-1243 0 obj
-<<
-/Limits[(lstnumber.-26.10)(lstnumber.-26.3)]
-/Names[(lstnumber.-26.10) 570 0 R(lstnumber.-26.2) 562 0 R(lstnumber.-26.3) 563 0 R]
->>
-endobj
-1244 0 obj
-<<
-/Limits[(lstnumber.-23.5)(lstnumber.-26.3)]
-/Kids[1240 0 R 1241 0 R 1242 0 R 1243 0 R]
->>
-endobj
-1245 0 obj
-<<
-/Limits[(lstnumber.-26.4)(lstnumber.-26.5)]
-/Names[(lstnumber.-26.4) 564 0 R(lstnumber.-26.5) 565 0 R]
->>
-endobj
-1246 0 obj
-<<
-/Limits[(lstnumber.-26.6)(lstnumber.-26.8)]
-/Names[(lstnumber.-26.6) 566 0 R(lstnumber.-26.7) 567 0 R(lstnumber.-26.8) 568 0 R]
->>
-endobj
-1247 0 obj
-<<
-/Limits[(lstnumber.-26.9)(lstnumber.-28.1)]
-/Names[(lstnumber.-26.9) 569 0 R(lstnumber.-27.1) 580 0 R(lstnumber.-28.1) 582 0 R]
->>
-endobj
-1248 0 obj
-<<
-/Limits[(lstnumber.-29.1)(lstnumber.-29.11)]
-/Names[(lstnumber.-29.1) 586 0 R(lstnumber.-29.10) 601 0 R(lstnumber.-29.11) 602 0 R]
->>
-endobj
-1249 0 obj
-<<
-/Limits[(lstnumber.-26.4)(lstnumber.-29.11)]
-/Kids[1245 0 R 1246 0 R 1247 0 R 1248 0 R]
->>
-endobj
-1250 0 obj
-<<
-/Limits[(lstnumber.-29.12)(lstnumber.-29.13)]
-/Names[(lstnumber.-29.12) 603 0 R(lstnumber.-29.13) 604 0 R]
->>
-endobj
-1251 0 obj
-<<
-/Limits[(lstnumber.-29.14)(lstnumber.-29.16)]
-/Names[(lstnumber.-29.14) 605 0 R(lstnumber.-29.15) 606 0 R(lstnumber.-29.16) 607 0 R]
->>
-endobj
-1252 0 obj
-<<
-/Limits[(lstnumber.-29.17)(lstnumber.-29.3)]
-/Names[(lstnumber.-29.17) 608 0 R(lstnumber.-29.2) 587 0 R(lstnumber.-29.3) 588 0 R]
->>
-endobj
-1253 0 obj
-<<
-/Limits[(lstnumber.-29.4)(lstnumber.-29.6)]
-/Names[(lstnumber.-29.4) 589 0 R(lstnumber.-29.5) 590 0 R(lstnumber.-29.6) 591 0 R]
->>
-endobj
-1254 0 obj
-<<
-/Limits[(lstnumber.-29.12)(lstnumber.-29.6)]
-/Kids[1250 0 R 1251 0 R 1252 0 R 1253 0 R]
->>
-endobj
-1255 0 obj
-<<
-/Limits[(lstnumber.-29.7)(lstnumber.-29.8)]
-/Names[(lstnumber.-29.7) 592 0 R(lstnumber.-29.8) 599 0 R]
->>
-endobj
-1256 0 obj
-<<
-/Limits[(lstnumber.-29.9)(lstnumber.-30.1)]
-/Names[(lstnumber.-29.9) 600 0 R(lstnumber.-3.1) 193 0 R(lstnumber.-30.1) 612 0 R]
->>
-endobj
-1257 0 obj
-<<
-/Limits[(lstnumber.-30.2)(lstnumber.-30.4)]
-/Names[(lstnumber.-30.2) 613 0 R(lstnumber.-30.3) 614 0 R(lstnumber.-30.4) 615 0 R]
->>
-endobj
-1258 0 obj
-<<
-/Limits[(lstnumber.-30.5)(lstnumber.-30.7)]
-/Names[(lstnumber.-30.5) 616 0 R(lstnumber.-30.6) 617 0 R(lstnumber.-30.7) 618 0 R]
->>
-endobj
-1259 0 obj
-<<
-/Limits[(lstnumber.-29.7)(lstnumber.-30.7)]
-/Kids[1255 0 R 1256 0 R 1257 0 R 1258 0 R]
->>
-endobj
-1260 0 obj
-<<
-/Limits[(lstnumber.-23.5)(lstnumber.-30.7)]
-/Kids[1244 0 R 1249 0 R 1254 0 R 1259 0 R]
->>
-endobj
-1261 0 obj
-<<
-/Limits[(lstnumber.-31.1)(lstnumber.-32.1)]
-/Names[(lstnumber.-31.1) 620 0 R(lstnumber.-32.1) 628 0 R]
->>
-endobj
-1262 0 obj
-<<
-/Limits[(lstnumber.-32.2)(lstnumber.-33.1)]
-/Names[(lstnumber.-32.2) 629 0 R(lstnumber.-32.3) 630 0 R(lstnumber.-33.1) 632 0 R]
->>
-endobj
-1263 0 obj
-<<
-/Limits[(lstnumber.-33.2)(lstnumber.-34.1)]
-/Names[(lstnumber.-33.2) 633 0 R(lstnumber.-33.3) 634 0 R(lstnumber.-34.1) 637 0 R]
->>
-endobj
-1264 0 obj
-<<
-/Limits[(lstnumber.-34.2)(lstnumber.-35.1)]
-/Names[(lstnumber.-34.2) 638 0 R(lstnumber.-34.3) 639 0 R(lstnumber.-35.1) 641 0 R]
->>
-endobj
-1265 0 obj
-<<
-/Limits[(lstnumber.-31.1)(lstnumber.-35.1)]
-/Kids[1261 0 R 1262 0 R 1263 0 R 1264 0 R]
->>
-endobj
-1266 0 obj
-<<
-/Limits[(lstnumber.-35.2)(lstnumber.-35.3)]
-/Names[(lstnumber.-35.2) 642 0 R(lstnumber.-35.3) 643 0 R]
->>
-endobj
-1267 0 obj
-<<
-/Limits[(lstnumber.-36.1)(lstnumber.-36.3)]
-/Names[(lstnumber.-36.1) 645 0 R(lstnumber.-36.2) 646 0 R(lstnumber.-36.3) 647 0 R]
->>
-endobj
-1268 0 obj
-<<
-/Limits[(lstnumber.-36.4)(lstnumber.-36.6)]
-/Names[(lstnumber.-36.4) 648 0 R(lstnumber.-36.5) 649 0 R(lstnumber.-36.6) 650 0 R]
->>
-endobj
-1269 0 obj
-<<
-/Limits[(lstnumber.-36.7)(lstnumber.-4.1)]
-/Names[(lstnumber.-36.7) 651 0 R(lstnumber.-37.1) 661 0 R(lstnumber.-4.1) 202 0 R]
->>
-endobj
-1270 0 obj
-<<
-/Limits[(lstnumber.-35.2)(lstnumber.-4.1)]
-/Kids[1266 0 R 1267 0 R 1268 0 R 1269 0 R]
->>
-endobj
-1271 0 obj
-<<
-/Limits[(lstnumber.-40.1)(lstnumber.-41.1)]
-/Names[(lstnumber.-40.1) 682 0 R(lstnumber.-41.1) 686 0 R]
->>
-endobj
-1272 0 obj
-<<
-/Limits[(lstnumber.-41.2)(lstnumber.-41.4)]
-/Names[(lstnumber.-41.2) 687 0 R(lstnumber.-41.3) 688 0 R(lstnumber.-41.4) 689 0 R]
->>
-endobj
-1273 0 obj
-<<
-/Limits[(lstnumber.-41.5)(lstnumber.-43.1)]
-/Names[(lstnumber.-41.5) 690 0 R(lstnumber.-42.1) 692 0 R(lstnumber.-43.1) 695 0 R]
->>
-endobj
-1274 0 obj
-<<
-/Limits[(lstnumber.-43.2)(lstnumber.-43.4)]
-/Names[(lstnumber.-43.2) 696 0 R(lstnumber.-43.3) 697 0 R(lstnumber.-43.4) 698 0 R]
->>
-endobj
-1275 0 obj
-<<
-/Limits[(lstnumber.-40.1)(lstnumber.-43.4)]
-/Kids[1271 0 R 1272 0 R 1273 0 R 1274 0 R]
->>
-endobj
-1276 0 obj
-<<
-/Limits[(lstnumber.-43.5)(lstnumber.-43.7)]
-/Names[(lstnumber.-43.5) 699 0 R(lstnumber.-43.6) 700 0 R(lstnumber.-43.7) 701 0 R]
->>
-endobj
-1277 0 obj
-<<
-/Limits[(lstnumber.-43.8)(lstnumber.-44.2)]
-/Names[(lstnumber.-43.8) 702 0 R(lstnumber.-44.1) 710 0 R(lstnumber.-44.2) 711 0 R]
->>
-endobj
-1278 0 obj
-<<
-/Limits[(lstnumber.-44.3)(lstnumber.-44.5)]
-/Names[(lstnumber.-44.3) 712 0 R(lstnumber.-44.4) 713 0 R(lstnumber.-44.5) 714 0 R]
->>
-endobj
-1279 0 obj
-<<
-/Limits[(lstnumber.-45.1)(lstnumber.-46.2)]
-/Names[(lstnumber.-45.1) 716 0 R(lstnumber.-46.1) 720 0 R(lstnumber.-46.2) 721 0 R]
->>
-endobj
-1280 0 obj
-<<
-/Limits[(lstnumber.-43.5)(lstnumber.-46.2)]
-/Kids[1276 0 R 1277 0 R 1278 0 R 1279 0 R]
->>
-endobj
-1281 0 obj
-<<
-/Limits[(lstnumber.-31.1)(lstnumber.-46.2)]
-/Kids[1265 0 R 1270 0 R 1275 0 R 1280 0 R]
->>
-endobj
-1282 0 obj
-<<
-/Limits[(lstnumber.-13.25)(lstnumber.-46.2)]
-/Kids[1218 0 R 1239 0 R 1260 0 R 1281 0 R]
->>
-endobj
-1283 0 obj
-<<
-/Limits[(lstnumber.-46.3)(lstnumber.-46.4)]
-/Names[(lstnumber.-46.3) 722 0 R(lstnumber.-46.4) 723 0 R]
->>
-endobj
-1284 0 obj
-<<
-/Limits[(lstnumber.-46.5)(lstnumber.-47.1)]
-/Names[(lstnumber.-46.5) 724 0 R(lstnumber.-46.6) 725 0 R(lstnumber.-47.1) 731 0 R]
->>
-endobj
-1285 0 obj
-<<
-/Limits[(lstnumber.-47.2)(lstnumber.-47.4)]
-/Names[(lstnumber.-47.2) 732 0 R(lstnumber.-47.3) 733 0 R(lstnumber.-47.4) 734 0 R]
->>
-endobj
-1286 0 obj
-<<
-/Limits[(lstnumber.-47.5)(lstnumber.-47.7)]
-/Names[(lstnumber.-47.5) 735 0 R(lstnumber.-47.6) 736 0 R(lstnumber.-47.7) 737 0 R]
->>
-endobj
-1287 0 obj
-<<
-/Limits[(lstnumber.-46.3)(lstnumber.-47.7)]
-/Kids[1283 0 R 1284 0 R 1285 0 R 1286 0 R]
->>
-endobj
-1288 0 obj
-<<
-/Limits[(lstnumber.-47.8)(lstnumber.-47.9)]
-/Names[(lstnumber.-47.8) 738 0 R(lstnumber.-47.9) 739 0 R]
->>
-endobj
-1289 0 obj
-<<
-/Limits[(lstnumber.-48.1)(lstnumber.-5.1)]
-/Names[(lstnumber.-48.1) 742 0 R(lstnumber.-49.1) 745 0 R(lstnumber.-5.1) 204 0 R]
->>
-endobj
-1290 0 obj
-<<
-/Limits[(lstnumber.-50.1)(lstnumber.-50.11)]
-/Names[(lstnumber.-50.1) 755 0 R(lstnumber.-50.10) 764 0 R(lstnumber.-50.11) 765 0 R]
->>
-endobj
-1291 0 obj
-<<
-/Limits[(lstnumber.-50.12)(lstnumber.-50.14)]
-/Names[(lstnumber.-50.12) 766 0 R(lstnumber.-50.13) 767 0 R(lstnumber.-50.14) 768 0 R]
->>
-endobj
-1292 0 obj
-<<
-/Limits[(lstnumber.-47.8)(lstnumber.-50.14)]
-/Kids[1288 0 R 1289 0 R 1290 0 R 1291 0 R]
->>
-endobj
-1293 0 obj
-<<
-/Limits[(lstnumber.-50.15)(lstnumber.-50.16)]
-/Names[(lstnumber.-50.15) 769 0 R(lstnumber.-50.16) 770 0 R]
->>
-endobj
-1294 0 obj
-<<
-/Limits[(lstnumber.-50.17)(lstnumber.-50.19)]
-/Names[(lstnumber.-50.17) 771 0 R(lstnumber.-50.18) 772 0 R(lstnumber.-50.19) 773 0 R]
->>
-endobj
-1295 0 obj
-<<
-/Limits[(lstnumber.-50.2)(lstnumber.-50.21)]
-/Names[(lstnumber.-50.2) 756 0 R(lstnumber.-50.20) 774 0 R(lstnumber.-50.21) 775 0 R]
->>
-endobj
-1296 0 obj
-<<
-/Limits[(lstnumber.-50.22)(lstnumber.-50.24)]
-/Names[(lstnumber.-50.22) 776 0 R(lstnumber.-50.23) 777 0 R(lstnumber.-50.24) 778 0 R]
->>
-endobj
-1297 0 obj
-<<
-/Limits[(lstnumber.-50.15)(lstnumber.-50.24)]
-/Kids[1293 0 R 1294 0 R 1295 0 R 1296 0 R]
->>
-endobj
-1298 0 obj
-<<
-/Limits[(lstnumber.-50.25)(lstnumber.-50.26)]
-/Names[(lstnumber.-50.25) 779 0 R(lstnumber.-50.26) 780 0 R]
->>
-endobj
-1299 0 obj
-<<
-/Limits[(lstnumber.-50.27)(lstnumber.-50.29)]
-/Names[(lstnumber.-50.27) 781 0 R(lstnumber.-50.28) 782 0 R(lstnumber.-50.29) 783 0 R]
->>
-endobj
-1300 0 obj
-<<
-/Limits[(lstnumber.-50.3)(lstnumber.-50.31)]
-/Names[(lstnumber.-50.3) 757 0 R(lstnumber.-50.30) 784 0 R(lstnumber.-50.31) 785 0 R]
->>
-endobj
-1301 0 obj
-<<
-/Limits[(lstnumber.-50.4)(lstnumber.-50.6)]
-/Names[(lstnumber.-50.4) 758 0 R(lstnumber.-50.5) 759 0 R(lstnumber.-50.6) 760 0 R]
->>
-endobj
-1302 0 obj
-<<
-/Limits[(lstnumber.-50.25)(lstnumber.-50.6)]
-/Kids[1298 0 R 1299 0 R 1300 0 R 1301 0 R]
->>
-endobj
-1303 0 obj
-<<
-/Limits[(lstnumber.-46.3)(lstnumber.-50.6)]
-/Kids[1287 0 R 1292 0 R 1297 0 R 1302 0 R]
->>
-endobj
-1304 0 obj
-<<
-/Limits[(lstnumber.-50.7)(lstnumber.-50.8)]
-/Names[(lstnumber.-50.7) 761 0 R(lstnumber.-50.8) 762 0 R]
->>
-endobj
-1305 0 obj
-<<
-/Limits[(lstnumber.-50.9)(lstnumber.-51.2)]
-/Names[(lstnumber.-50.9) 763 0 R(lstnumber.-51.1) 793 0 R(lstnumber.-51.2) 794 0 R]
->>
-endobj
-1306 0 obj
-<<
-/Limits[(lstnumber.-52.1)(lstnumber.-52.3)]
-/Names[(lstnumber.-52.1) 802 0 R(lstnumber.-52.2) 803 0 R(lstnumber.-52.3) 804 0 R]
->>
-endobj
-1307 0 obj
-<<
-/Limits[(lstnumber.-52.4)(lstnumber.-52.6)]
-/Names[(lstnumber.-52.4) 805 0 R(lstnumber.-52.5) 806 0 R(lstnumber.-52.6) 807 0 R]
->>
-endobj
-1308 0 obj
-<<
-/Limits[(lstnumber.-50.7)(lstnumber.-52.6)]
-/Kids[1304 0 R 1305 0 R 1306 0 R 1307 0 R]
->>
-endobj
-1309 0 obj
-<<
-/Limits[(lstnumber.-52.7)(lstnumber.-52.8)]
-/Names[(lstnumber.-52.7) 808 0 R(lstnumber.-52.8) 809 0 R]
->>
-endobj
-1310 0 obj
-<<
-/Limits[(lstnumber.-53.1)(lstnumber.-55.1)]
-/Names[(lstnumber.-53.1) 811 0 R(lstnumber.-54.1) 813 0 R(lstnumber.-55.1) 815 0 R]
->>
-endobj
-1311 0 obj
-<<
-/Limits[(lstnumber.-56.1)(lstnumber.-56.3)]
-/Names[(lstnumber.-56.1) 840 0 R(lstnumber.-56.2) 841 0 R(lstnumber.-56.3) 842 0 R]
->>
-endobj
-1312 0 obj
-<<
-/Limits[(lstnumber.-56.4)(lstnumber.-57.1)]
-/Names[(lstnumber.-56.4) 843 0 R(lstnumber.-56.5) 844 0 R(lstnumber.-57.1) 846 0 R]
->>
-endobj
-1313 0 obj
-<<
-/Limits[(lstnumber.-52.7)(lstnumber.-57.1)]
-/Kids[1309 0 R 1310 0 R 1311 0 R 1312 0 R]
->>
-endobj
-1314 0 obj
-<<
-/Limits[(lstnumber.-57.2)(lstnumber.-57.3)]
-/Names[(lstnumber.-57.2) 847 0 R(lstnumber.-57.3) 848 0 R]
->>
-endobj
-1315 0 obj
-<<
-/Limits[(lstnumber.-57.4)(lstnumber.-58.1)]
-/Names[(lstnumber.-57.4) 849 0 R(lstnumber.-57.5) 850 0 R(lstnumber.-58.1) 854 0 R]
->>
-endobj
-1316 0 obj
-<<
-/Limits[(lstnumber.-58.2)(lstnumber.-58.4)]
-/Names[(lstnumber.-58.2) 855 0 R(lstnumber.-58.3) 856 0 R(lstnumber.-58.4) 857 0 R]
->>
-endobj
-1317 0 obj
-<<
-/Limits[(lstnumber.-58.5)(lstnumber.-59.2)]
-/Names[(lstnumber.-58.5) 858 0 R(lstnumber.-59.1) 866 0 R(lstnumber.-59.2) 867 0 R]
->>
-endobj
-1318 0 obj
-<<
-/Limits[(lstnumber.-57.2)(lstnumber.-59.2)]
-/Kids[1314 0 R 1315 0 R 1316 0 R 1317 0 R]
->>
-endobj
-1319 0 obj
-<<
-/Limits[(lstnumber.-59.3)(lstnumber.-59.5)]
-/Names[(lstnumber.-59.3) 868 0 R(lstnumber.-59.4) 869 0 R(lstnumber.-59.5) 870 0 R]
->>
-endobj
-1320 0 obj
-<<
-/Limits[(lstnumber.-6.1)(lstnumber.-6.3)]
-/Names[(lstnumber.-6.1) 222 0 R(lstnumber.-6.2) 223 0 R(lstnumber.-6.3) 227 0 R]
->>
-endobj
-1321 0 obj
-<<
-/Limits[(lstnumber.-6.4)(lstnumber.-60.10)]
-/Names[(lstnumber.-6.4) 228 0 R(lstnumber.-60.1) 873 0 R(lstnumber.-60.10) 882 0 R]
->>
-endobj
-1322 0 obj
-<<
-/Limits[(lstnumber.-60.11)(lstnumber.-60.3)]
-/Names[(lstnumber.-60.11) 883 0 R(lstnumber.-60.2) 874 0 R(lstnumber.-60.3) 875 0 R]
->>
-endobj
-1323 0 obj
-<<
-/Limits[(lstnumber.-59.3)(lstnumber.-60.3)]
-/Kids[1319 0 R 1320 0 R 1321 0 R 1322 0 R]
->>
-endobj
-1324 0 obj
-<<
-/Limits[(lstnumber.-50.7)(lstnumber.-60.3)]
-/Kids[1308 0 R 1313 0 R 1318 0 R 1323 0 R]
->>
-endobj
-1325 0 obj
-<<
-/Limits[(lstnumber.-60.4)(lstnumber.-60.5)]
-/Names[(lstnumber.-60.4) 876 0 R(lstnumber.-60.5) 877 0 R]
->>
-endobj
-1326 0 obj
-<<
-/Limits[(lstnumber.-60.6)(lstnumber.-60.8)]
-/Names[(lstnumber.-60.6) 878 0 R(lstnumber.-60.7) 879 0 R(lstnumber.-60.8) 880 0 R]
->>
-endobj
-1327 0 obj
-<<
-/Limits[(lstnumber.-60.9)(lstnumber.-61.2)]
-/Names[(lstnumber.-60.9) 881 0 R(lstnumber.-61.1) 889 0 R(lstnumber.-61.2) 890 0 R]
->>
-endobj
-1328 0 obj
-<<
-/Limits[(lstnumber.-61.3)(lstnumber.-62.10)]
-/Names[(lstnumber.-61.3) 891 0 R(lstnumber.-62.1) 897 0 R(lstnumber.-62.10) 910 0 R]
->>
-endobj
-1329 0 obj
-<<
-/Limits[(lstnumber.-60.4)(lstnumber.-62.10)]
-/Kids[1325 0 R 1326 0 R 1327 0 R 1328 0 R]
->>
-endobj
-1330 0 obj
-<<
-/Limits[(lstnumber.-62.11)(lstnumber.-62.12)]
-/Names[(lstnumber.-62.11) 911 0 R(lstnumber.-62.12) 912 0 R]
->>
-endobj
-1331 0 obj
-<<
-/Limits[(lstnumber.-62.13)(lstnumber.-62.15)]
-/Names[(lstnumber.-62.13) 913 0 R(lstnumber.-62.14) 914 0 R(lstnumber.-62.15) 915 0 R]
->>
-endobj
-1332 0 obj
-<<
-/Limits[(lstnumber.-62.16)(lstnumber.-62.18)]
-/Names[(lstnumber.-62.16) 916 0 R(lstnumber.-62.17) 917 0 R(lstnumber.-62.18) 918 0 R]
->>
-endobj
-1333 0 obj
-<<
-/Limits[(lstnumber.-62.19)(lstnumber.-62.20)]
-/Names[(lstnumber.-62.19) 919 0 R(lstnumber.-62.2) 898 0 R(lstnumber.-62.20) 920 0 R]
->>
-endobj
-1334 0 obj
-<<
-/Limits[(lstnumber.-62.11)(lstnumber.-62.20)]
-/Kids[1330 0 R 1331 0 R 1332 0 R 1333 0 R]
->>
-endobj
-1335 0 obj
-<<
-/Limits[(lstnumber.-62.21)(lstnumber.-62.22)]
-/Names[(lstnumber.-62.21) 921 0 R(lstnumber.-62.22) 922 0 R]
->>
-endobj
-1336 0 obj
-<<
-/Limits[(lstnumber.-62.23)(lstnumber.-62.3)]
-/Names[(lstnumber.-62.23) 923 0 R(lstnumber.-62.24) 924 0 R(lstnumber.-62.3) 899 0 R]
->>
-endobj
-1337 0 obj
-<<
-/Limits[(lstnumber.-62.4)(lstnumber.-62.6)]
-/Names[(lstnumber.-62.4) 900 0 R(lstnumber.-62.5) 901 0 R(lstnumber.-62.6) 902 0 R]
->>
-endobj
-1338 0 obj
-<<
-/Limits[(lstnumber.-62.7)(lstnumber.-62.9)]
-/Names[(lstnumber.-62.7) 903 0 R(lstnumber.-62.8) 904 0 R(lstnumber.-62.9) 909 0 R]
->>
-endobj
-1339 0 obj
-<<
-/Limits[(lstnumber.-62.21)(lstnumber.-62.9)]
-/Kids[1335 0 R 1336 0 R 1337 0 R 1338 0 R]
->>
-endobj
-1340 0 obj
-<<
-/Limits[(lstnumber.-63.1)(lstnumber.-63.10)]
-/Names[(lstnumber.-63.1) 934 0 R(lstnumber.-63.10) 943 0 R]
->>
-endobj
-1341 0 obj
-<<
-/Limits[(lstnumber.-63.11)(lstnumber.-63.2)]
-/Names[(lstnumber.-63.11) 944 0 R(lstnumber.-63.12) 945 0 R(lstnumber.-63.2) 935 0 R]
->>
-endobj
-1342 0 obj
-<<
-/Limits[(lstnumber.-63.3)(lstnumber.-63.5)]
-/Names[(lstnumber.-63.3) 936 0 R(lstnumber.-63.4) 937 0 R(lstnumber.-63.5) 938 0 R]
->>
-endobj
-1343 0 obj
-<<
-/Limits[(lstnumber.-63.6)(lstnumber.-63.8)]
-/Names[(lstnumber.-63.6) 939 0 R(lstnumber.-63.7) 940 0 R(lstnumber.-63.8) 941 0 R]
->>
-endobj
-1344 0 obj
-<<
-/Limits[(lstnumber.-63.1)(lstnumber.-63.8)]
-/Kids[1340 0 R 1341 0 R 1342 0 R 1343 0 R]
->>
-endobj
-1345 0 obj
-<<
-/Limits[(lstnumber.-60.4)(lstnumber.-63.8)]
-/Kids[1329 0 R 1334 0 R 1339 0 R 1344 0 R]
->>
-endobj
-1346 0 obj
-<<
-/Limits[(lstnumber.-63.9)(lstnumber.-64.1)]
-/Names[(lstnumber.-63.9) 942 0 R(lstnumber.-64.1) 956 0 R]
->>
-endobj
-1347 0 obj
-<<
-/Limits[(lstnumber.-64.2)(lstnumber.-64.4)]
-/Names[(lstnumber.-64.2) 957 0 R(lstnumber.-64.3) 958 0 R(lstnumber.-64.4) 959 0 R]
->>
-endobj
-1348 0 obj
-<<
-/Limits[(lstnumber.-64.5)(lstnumber.-64.7)]
-/Names[(lstnumber.-64.5) 960 0 R(lstnumber.-64.6) 961 0 R(lstnumber.-64.7) 962 0 R]
->>
-endobj
-1349 0 obj
-<<
-/Limits[(lstnumber.-64.8)(lstnumber.-65.1)]
-/Names[(lstnumber.-64.8) 963 0 R(lstnumber.-64.9) 964 0 R(lstnumber.-65.1) 971 0 R]
->>
-endobj
-1350 0 obj
-<<
-/Limits[(lstnumber.-63.9)(lstnumber.-65.1)]
-/Kids[1346 0 R 1347 0 R 1348 0 R 1349 0 R]
->>
-endobj
-1351 0 obj
-<<
-/Limits[(lstnumber.-65.10)(lstnumber.-65.11)]
-/Names[(lstnumber.-65.10) 980 0 R(lstnumber.-65.11) 981 0 R]
->>
-endobj
-1352 0 obj
-<<
-/Limits[(lstnumber.-65.12)(lstnumber.-65.14)]
-/Names[(lstnumber.-65.12) 982 0 R(lstnumber.-65.13) 983 0 R(lstnumber.-65.14) 984 0 R]
->>
-endobj
-1353 0 obj
-<<
-/Limits[(lstnumber.-65.15)(lstnumber.-65.2)]
-/Names[(lstnumber.-65.15) 985 0 R(lstnumber.-65.16) 986 0 R(lstnumber.-65.2) 972 0 R]
->>
-endobj
-1354 0 obj
-<<
-/Limits[(lstnumber.-65.3)(lstnumber.-65.5)]
-/Names[(lstnumber.-65.3) 973 0 R(lstnumber.-65.4) 974 0 R(lstnumber.-65.5) 975 0 R]
->>
-endobj
-1355 0 obj
-<<
-/Limits[(lstnumber.-65.10)(lstnumber.-65.5)]
-/Kids[1351 0 R 1352 0 R 1353 0 R 1354 0 R]
->>
-endobj
-1356 0 obj
-<<
-/Limits[(lstnumber.-65.6)(lstnumber.-65.7)]
-/Names[(lstnumber.-65.6) 976 0 R(lstnumber.-65.7) 977 0 R]
->>
-endobj
-1357 0 obj
-<<
-/Limits[(lstnumber.-65.8)(lstnumber.-66.1)]
-/Names[(lstnumber.-65.8) 978 0 R(lstnumber.-65.9) 979 0 R(lstnumber.-66.1) 990 0 R]
->>
-endobj
-1358 0 obj
-<<
-/Limits[(lstnumber.-66.10)(lstnumber.-66.3)]
-/Names[(lstnumber.-66.10) 999 0 R(lstnumber.-66.2) 991 0 R(lstnumber.-66.3) 992 0 R]
->>
-endobj
-1359 0 obj
-<<
-/Limits[(lstnumber.-66.4)(lstnumber.-66.6)]
-/Names[(lstnumber.-66.4) 993 0 R(lstnumber.-66.5) 994 0 R(lstnumber.-66.6) 995 0 R]
->>
-endobj
-1360 0 obj
-<<
-/Limits[(lstnumber.-65.6)(lstnumber.-66.6)]
-/Kids[1356 0 R 1357 0 R 1358 0 R 1359 0 R]
->>
-endobj
-1361 0 obj
-<<
-/Limits[(lstnumber.-66.7)(lstnumber.-66.9)]
-/Names[(lstnumber.-66.7) 996 0 R(lstnumber.-66.8) 997 0 R(lstnumber.-66.9) 998 0 R]
->>
-endobj
-1362 0 obj
-<<
-/Limits[(lstnumber.-67.1)(lstnumber.-67.3)]
-/Names[(lstnumber.-67.1) 1006 0 R(lstnumber.-67.2) 1007 0 R(lstnumber.-67.3) 1008 0 R]
->>
-endobj
-1363 0 obj
-<<
-/Limits[(lstnumber.-67.4)(lstnumber.-67.6)]
-/Names[(lstnumber.-67.4) 1009 0 R(lstnumber.-67.5) 1010 0 R(lstnumber.-67.6) 1011 0 R]
->>
-endobj
-1364 0 obj
-<<
-/Limits[(lstnumber.-67.7)(lstnumber.-67.9)]
-/Names[(lstnumber.-67.7) 1012 0 R(lstnumber.-67.8) 1013 0 R(lstnumber.-67.9) 1014 0 R]
->>
-endobj
-1365 0 obj
-<<
-/Limits[(lstnumber.-66.7)(lstnumber.-67.9)]
-/Kids[1361 0 R 1362 0 R 1363 0 R 1364 0 R]
->>
-endobj
-1366 0 obj
-<<
-/Limits[(lstnumber.-63.9)(lstnumber.-67.9)]
-/Kids[1350 0 R 1355 0 R 1360 0 R 1365 0 R]
->>
-endobj
-1367 0 obj
-<<
-/Limits[(lstnumber.-46.3)(lstnumber.-67.9)]
-/Kids[1303 0 R 1324 0 R 1345 0 R 1366 0 R]
->>
-endobj
-1368 0 obj
-<<
-/Limits[(lstnumber.-68.1)(lstnumber.-68.10)]
-/Names[(lstnumber.-68.1) 1022 0 R(lstnumber.-68.10) 1031 0 R]
->>
-endobj
-1369 0 obj
-<<
-/Limits[(lstnumber.-68.11)(lstnumber.-68.13)]
-/Names[(lstnumber.-68.11) 1032 0 R(lstnumber.-68.12) 1033 0 R(lstnumber.-68.13) 1034 0 R]
->>
-endobj
-1370 0 obj
-<<
-/Limits[(lstnumber.-68.14)(lstnumber.-68.16)]
-/Names[(lstnumber.-68.14) 1035 0 R(lstnumber.-68.15) 1036 0 R(lstnumber.-68.16) 1037 0 R]
->>
-endobj
-1371 0 obj
-<<
-/Limits[(lstnumber.-68.17)(lstnumber.-68.19)]
-/Names[(lstnumber.-68.17) 1038 0 R(lstnumber.-68.18) 1039 0 R(lstnumber.-68.19) 1040 0 R]
->>
-endobj
-1372 0 obj
-<<
-/Limits[(lstnumber.-68.1)(lstnumber.-68.19)]
-/Kids[1368 0 R 1369 0 R 1370 0 R 1371 0 R]
->>
-endobj
-1373 0 obj
-<<
-/Limits[(lstnumber.-68.2)(lstnumber.-68.20)]
-/Names[(lstnumber.-68.2) 1023 0 R(lstnumber.-68.20) 1041 0 R]
->>
-endobj
-1374 0 obj
-<<
-/Limits[(lstnumber.-68.21)(lstnumber.-68.23)]
-/Names[(lstnumber.-68.21) 1042 0 R(lstnumber.-68.22) 1043 0 R(lstnumber.-68.23) 1044 0 R]
->>
-endobj
-1375 0 obj
-<<
-/Limits[(lstnumber.-68.24)(lstnumber.-68.26)]
-/Names[(lstnumber.-68.24) 1045 0 R(lstnumber.-68.25) 1046 0 R(lstnumber.-68.26) 1047 0 R]
->>
-endobj
-1376 0 obj
-<<
-/Limits[(lstnumber.-68.27)(lstnumber.-68.29)]
-/Names[(lstnumber.-68.27) 1048 0 R(lstnumber.-68.28) 1049 0 R(lstnumber.-68.29) 1050 0 R]
->>
-endobj
-1377 0 obj
-<<
-/Limits[(lstnumber.-68.2)(lstnumber.-68.29)]
-/Kids[1373 0 R 1374 0 R 1375 0 R 1376 0 R]
->>
-endobj
-1378 0 obj
-<<
-/Limits[(lstnumber.-68.3)(lstnumber.-68.30)]
-/Names[(lstnumber.-68.3) 1024 0 R(lstnumber.-68.30) 1051 0 R]
->>
-endobj
-1379 0 obj
-<<
-/Limits[(lstnumber.-68.31)(lstnumber.-68.33)]
-/Names[(lstnumber.-68.31) 1052 0 R(lstnumber.-68.32) 1053 0 R(lstnumber.-68.33) 1054 0 R]
->>
-endobj
-1380 0 obj
-<<
-/Limits[(lstnumber.-68.34)(lstnumber.-68.36)]
-/Names[(lstnumber.-68.34) 1055 0 R(lstnumber.-68.35) 1056 0 R(lstnumber.-68.36) 1057 0 R]
->>
-endobj
-1381 0 obj
-<<
-/Limits[(lstnumber.-68.37)(lstnumber.-68.39)]
-/Names[(lstnumber.-68.37) 1058 0 R(lstnumber.-68.38) 1059 0 R(lstnumber.-68.39) 1060 0 R]
->>
-endobj
-1382 0 obj
-<<
-/Limits[(lstnumber.-68.3)(lstnumber.-68.39)]
-/Kids[1378 0 R 1379 0 R 1380 0 R 1381 0 R]
->>
-endobj
-1383 0 obj
-<<
-/Limits[(lstnumber.-68.4)(lstnumber.-68.40)]
-/Names[(lstnumber.-68.4) 1025 0 R(lstnumber.-68.40) 1061 0 R]
->>
-endobj
-1384 0 obj
-<<
-/Limits[(lstnumber.-68.5)(lstnumber.-68.7)]
-/Names[(lstnumber.-68.5) 1026 0 R(lstnumber.-68.6) 1027 0 R(lstnumber.-68.7) 1028 0 R]
->>
-endobj
-1385 0 obj
-<<
-/Limits[(lstnumber.-68.8)(lstnumber.-69.1)]
-/Names[(lstnumber.-68.8) 1029 0 R(lstnumber.-68.9) 1030 0 R(lstnumber.-69.1) 1068 0 R]
->>
-endobj
-1386 0 obj
-<<
-/Limits[(lstnumber.-69.10)(lstnumber.-69.12)]
-/Names[(lstnumber.-69.10) 1077 0 R(lstnumber.-69.11) 1078 0 R(lstnumber.-69.12) 1079 0 R]
->>
-endobj
-1387 0 obj
-<<
-/Limits[(lstnumber.-68.4)(lstnumber.-69.12)]
-/Kids[1383 0 R 1384 0 R 1385 0 R 1386 0 R]
->>
-endobj
-1388 0 obj
-<<
-/Limits[(lstnumber.-68.1)(lstnumber.-69.12)]
-/Kids[1372 0 R 1377 0 R 1382 0 R 1387 0 R]
->>
-endobj
-1389 0 obj
-<<
-/Limits[(lstnumber.-69.13)(lstnumber.-69.14)]
-/Names[(lstnumber.-69.13) 1080 0 R(lstnumber.-69.14) 1081 0 R]
->>
-endobj
-1390 0 obj
-<<
-/Limits[(lstnumber.-69.2)(lstnumber.-69.4)]
-/Names[(lstnumber.-69.2) 1069 0 R(lstnumber.-69.3) 1070 0 R(lstnumber.-69.4) 1071 0 R]
->>
-endobj
-1391 0 obj
-<<
-/Limits[(lstnumber.-69.5)(lstnumber.-69.7)]
-/Names[(lstnumber.-69.5) 1072 0 R(lstnumber.-69.6) 1073 0 R(lstnumber.-69.7) 1074 0 R]
->>
-endobj
-1392 0 obj
-<<
-/Limits[(lstnumber.-69.8)(lstnumber.-7.1)]
-/Names[(lstnumber.-69.8) 1075 0 R(lstnumber.-69.9) 1076 0 R(lstnumber.-7.1) 233 0 R]
->>
-endobj
-1393 0 obj
-<<
-/Limits[(lstnumber.-69.13)(lstnumber.-7.1)]
-/Kids[1389 0 R 1390 0 R 1391 0 R 1392 0 R]
->>
-endobj
-1394 0 obj
-<<
-/Limits[(lstnumber.-7.10)(lstnumber.-7.11)]
-/Names[(lstnumber.-7.10) 248 0 R(lstnumber.-7.11) 249 0 R]
->>
-endobj
-1395 0 obj
-<<
-/Limits[(lstnumber.-7.12)(lstnumber.-7.14)]
-/Names[(lstnumber.-7.12) 250 0 R(lstnumber.-7.13) 251 0 R(lstnumber.-7.14) 252 0 R]
->>
-endobj
-1396 0 obj
-<<
-/Limits[(lstnumber.-7.15)(lstnumber.-7.2)]
-/Names[(lstnumber.-7.15) 253 0 R(lstnumber.-7.16) 254 0 R(lstnumber.-7.2) 234 0 R]
->>
-endobj
-1397 0 obj
-<<
-/Limits[(lstnumber.-7.3)(lstnumber.-7.5)]
-/Names[(lstnumber.-7.3) 235 0 R(lstnumber.-7.4) 236 0 R(lstnumber.-7.5) 237 0 R]
->>
-endobj
-1398 0 obj
-<<
-/Limits[(lstnumber.-7.10)(lstnumber.-7.5)]
-/Kids[1394 0 R 1395 0 R 1396 0 R 1397 0 R]
->>
-endobj
-1399 0 obj
-<<
-/Limits[(lstnumber.-7.6)(lstnumber.-7.7)]
-/Names[(lstnumber.-7.6) 238 0 R(lstnumber.-7.7) 239 0 R]
->>
-endobj
-1400 0 obj
-<<
-/Limits[(lstnumber.-7.8)(lstnumber.-8.1)]
-/Names[(lstnumber.-7.8) 240 0 R(lstnumber.-7.9) 241 0 R(lstnumber.-8.1) 260 0 R]
->>
-endobj
-1401 0 obj
-<<
-/Limits[(lstnumber.-8.10)(lstnumber.-8.12)]
-/Names[(lstnumber.-8.10) 269 0 R(lstnumber.-8.11) 270 0 R(lstnumber.-8.12) 271 0 R]
->>
-endobj
-1402 0 obj
-<<
-/Limits[(lstnumber.-8.13)(lstnumber.-8.15)]
-/Names[(lstnumber.-8.13) 272 0 R(lstnumber.-8.14) 279 0 R(lstnumber.-8.15) 280 0 R]
->>
-endobj
-1403 0 obj
-<<
-/Limits[(lstnumber.-7.6)(lstnumber.-8.15)]
-/Kids[1399 0 R 1400 0 R 1401 0 R 1402 0 R]
->>
-endobj
-1404 0 obj
-<<
-/Limits[(lstnumber.-8.16)(lstnumber.-8.18)]
-/Names[(lstnumber.-8.16) 281 0 R(lstnumber.-8.17) 282 0 R(lstnumber.-8.18) 283 0 R]
->>
-endobj
-1405 0 obj
-<<
-/Limits[(lstnumber.-8.19)(lstnumber.-8.20)]
-/Names[(lstnumber.-8.19) 284 0 R(lstnumber.-8.2) 261 0 R(lstnumber.-8.20) 285 0 R]
->>
-endobj
-1406 0 obj
-<<
-/Limits[(lstnumber.-8.21)(lstnumber.-8.23)]
-/Names[(lstnumber.-8.21) 286 0 R(lstnumber.-8.22) 287 0 R(lstnumber.-8.23) 288 0 R]
->>
-endobj
-1407 0 obj
-<<
-/Limits[(lstnumber.-8.24)(lstnumber.-8.26)]
-/Names[(lstnumber.-8.24) 289 0 R(lstnumber.-8.25) 290 0 R(lstnumber.-8.26) 291 0 R]
->>
-endobj
-1408 0 obj
-<<
-/Limits[(lstnumber.-8.16)(lstnumber.-8.26)]
-/Kids[1404 0 R 1405 0 R 1406 0 R 1407 0 R]
->>
-endobj
-1409 0 obj
-<<
-/Limits[(lstnumber.-69.13)(lstnumber.-8.26)]
-/Kids[1393 0 R 1398 0 R 1403 0 R 1408 0 R]
->>
-endobj
-1410 0 obj
-<<
-/Limits[(lstnumber.-8.27)(lstnumber.-8.3)]
-/Names[(lstnumber.-8.27) 292 0 R(lstnumber.-8.3) 262 0 R]
->>
-endobj
-1411 0 obj
-<<
-/Limits[(lstnumber.-8.4)(lstnumber.-8.6)]
-/Names[(lstnumber.-8.4) 263 0 R(lstnumber.-8.5) 264 0 R(lstnumber.-8.6) 265 0 R]
->>
-endobj
-1412 0 obj
-<<
-/Limits[(lstnumber.-8.7)(lstnumber.-8.9)]
-/Names[(lstnumber.-8.7) 266 0 R(lstnumber.-8.8) 267 0 R(lstnumber.-8.9) 268 0 R]
->>
-endobj
-1413 0 obj
-<<
-/Limits[(lstnumber.-9.1)(lstnumber.-9.11)]
-/Names[(lstnumber.-9.1) 296 0 R(lstnumber.-9.10) 314 0 R(lstnumber.-9.11) 315 0 R]
->>
-endobj
-1414 0 obj
-<<
-/Limits[(lstnumber.-8.27)(lstnumber.-9.11)]
-/Kids[1410 0 R 1411 0 R 1412 0 R 1413 0 R]
->>
-endobj
-1415 0 obj
-<<
-/Limits[(lstnumber.-9.12)(lstnumber.-9.13)]
-/Names[(lstnumber.-9.12) 316 0 R(lstnumber.-9.13) 317 0 R]
->>
-endobj
-1416 0 obj
-<<
-/Limits[(lstnumber.-9.2)(lstnumber.-9.4)]
-/Names[(lstnumber.-9.2) 297 0 R(lstnumber.-9.3) 298 0 R(lstnumber.-9.4) 299 0 R]
->>
-endobj
-1417 0 obj
-<<
-/Limits[(lstnumber.-9.5)(lstnumber.-9.7)]
-/Names[(lstnumber.-9.5) 300 0 R(lstnumber.-9.6) 301 0 R(lstnumber.-9.7) 302 0 R]
->>
-endobj
-1418 0 obj
-<<
-/Limits[(lstnumber.-9.8)(section*.1)]
-/Names[(lstnumber.-9.8) 303 0 R(lstnumber.-9.9) 304 0 R(section*.1) 84 0 R]
->>
-endobj
-1419 0 obj
-<<
-/Limits[(lstnumber.-9.12)(section*.1)]
-/Kids[1415 0 R 1416 0 R 1417 0 R 1418 0 R]
->>
-endobj
-1420 0 obj
-<<
-/Limits[(section*.10)(section*.11)]
-/Names[(section*.10) 795 0 R(section*.11) 796 0 R]
->>
-endobj
-1421 0 obj
-<<
-/Limits[(section*.12)(section*.14)]
-/Names[(section*.12) 820 0 R(section*.13) 821 0 R(section*.14) 823 0 R]
->>
-endobj
-1422 0 obj
-<<
-/Limits[(section*.15)(section*.17)]
-/Names[(section*.15) 824 0 R(section*.16) 825 0 R(section*.17) 826 0 R]
->>
-endobj
-1423 0 obj
-<<
-/Limits[(section*.18)(section*.2)]
-/Names[(section*.18) 852 0 R(section*.19) 871 0 R(section*.2) 658 0 R]
->>
-endobj
-1424 0 obj
-<<
-/Limits[(section*.10)(section*.2)]
-/Kids[1420 0 R 1421 0 R 1422 0 R 1423 0 R]
->>
-endobj
-1425 0 obj
-<<
-/Limits[(section*.20)(section*.3)]
-/Names[(section*.20) 1086 0 R(section*.3) 659 0 R]
->>
-endobj
-1426 0 obj
-<<
-/Limits[(section*.4)(section*.6)]
-/Names[(section*.4) 717 0 R(section*.5) 718 0 R(section*.6) 740 0 R]
->>
-endobj
-1427 0 obj
-<<
-/Limits[(section*.7)(section*.9)]
-/Names[(section*.7) 746 0 R(section*.8) 747 0 R(section*.9) 791 0 R]
->>
-endobj
-1428 0 obj
-<<
-/Limits[(section.1)(section.3)]
-/Names[(section.1) 161 0 R(section.2) 170 0 R(section.3) 230 0 R]
->>
-endobj
-1429 0 obj
-<<
-/Limits[(section*.20)(section.3)]
-/Kids[1425 0 R 1426 0 R 1427 0 R 1428 0 R]
->>
-endobj
-1430 0 obj
-<<
-/Limits[(lstnumber.-8.27)(section.3)]
-/Kids[1414 0 R 1419 0 R 1424 0 R 1429 0 R]
->>
-endobj
-1431 0 obj
-<<
-/Limits[(section.4)(section.5)]
-/Names[(section.4) 471 0 R(section.5) 894 0 R]
->>
-endobj
-1432 0 obj
-<<
-/Limits[(subsection.2.1)(subsection.2.3)]
-/Names[(subsection.2.1) 171 0 R(subsection.2.2) 175 0 R(subsection.2.3) 179 0 R]
->>
-endobj
-1433 0 obj
-<<
-/Limits[(subsection.2.4)(subsection.2.6)]
-/Names[(subsection.2.4) 200 0 R(subsection.2.5) 210 0 R(subsection.2.6) 211 0 R]
->>
-endobj
-1434 0 obj
-<<
-/Limits[(subsection.2.7)(subsection.3.1)]
-/Names[(subsection.2.7) 212 0 R(subsection.2.8) 214 0 R(subsection.3.1) 231 0 R]
->>
-endobj
-1435 0 obj
-<<
-/Limits[(section.4)(subsection.3.1)]
-/Kids[1431 0 R 1432 0 R 1433 0 R 1434 0 R]
->>
-endobj
-1436 0 obj
-<<
-/Limits[(subsection.3.2)(subsection.3.3)]
-/Names[(subsection.3.2) 257 0 R(subsection.3.3) 293 0 R]
->>
-endobj
-1437 0 obj
-<<
-/Limits[(subsection.3.4)(subsection.4.1)]
-/Names[(subsection.3.4) 374 0 R(subsection.3.5) 466 0 R(subsection.4.1) 472 0 R]
->>
-endobj
-1438 0 obj
-<<
-/Limits[(subsection.4.10)(subsection.4.12)]
-/Names[(subsection.4.10) 684 0 R(subsection.4.11) 693 0 R(subsection.4.12) 703 0 R]
->>
-endobj
-1439 0 obj
-<<
-/Limits[(subsection.4.13)(subsection.4.15)]
-/Names[(subsection.4.13) 708 0 R(subsection.4.14) 892 0 R(subsection.4.15) 893 0 R]
->>
-endobj
-1440 0 obj
-<<
-/Limits[(subsection.3.2)(subsection.4.15)]
-/Kids[1436 0 R 1437 0 R 1438 0 R 1439 0 R]
->>
-endobj
-1441 0 obj
-<<
-/Limits[(subsection.4.2)(subsection.4.3)]
-/Names[(subsection.4.2) 526 0 R(subsection.4.3) 544 0 R]
->>
-endobj
-1442 0 obj
-<<
-/Limits[(subsection.4.4)(subsection.4.6)]
-/Names[(subsection.4.4) 578 0 R(subsection.4.5) 584 0 R(subsection.4.6) 610 0 R]
->>
-endobj
-1443 0 obj
-<<
-/Limits[(subsection.4.7)(subsection.4.9)]
-/Names[(subsection.4.7) 662 0 R(subsection.4.8) 680 0 R(subsection.4.9) 683 0 R]
->>
-endobj
-1444 0 obj
-<<
-/Limits[(subsection.5.1)(subsection.5.3)]
-/Names[(subsection.5.1) 895 0 R(subsection.5.2) 932 0 R(subsection.5.3) 953 0 R]
->>
-endobj
-1445 0 obj
-<<
-/Limits[(subsection.4.2)(subsection.5.3)]
-/Kids[1441 0 R 1442 0 R 1443 0 R 1444 0 R]
->>
-endobj
-1446 0 obj
-<<
-/Limits[(subsection.5.4)(subsubsection.4.2.1)]
-/Names[(subsection.5.4) 987 0 R(subsection.5.5) 1015 0 R(subsubsection.4.2.1) 527 0 R]
->>
-endobj
-1447 0 obj
-<<
-/Limits[(subsubsection.4.2.2)(subsubsection.4.6.2)]
-/Names[(subsubsection.4.2.2) 539 0 R(subsubsection.4.6.1) 626 0 R(subsubsection.4.6.2)
-657 0 R]
->>
-endobj
-1448 0 obj
-<<
-/Limits[(subsubsection.5.3.1)(subsubsection.5.4.1)]
-/Names[(subsubsection.5.3.1) 954 0 R(subsubsection.5.3.2) 965 0 R(subsubsection.5.4.1)
-988 0 R]
->>
-endobj
-1449 0 obj
-<<
-/Limits[(subsubsection.5.4.2)(subsubsection.5.5.2)]
-/Names[(subsubsection.5.4.2) 1004 0 R(subsubsection.5.5.1) 1016 0 R(subsubsection.5.5.2)
-1066 0 R]
->>
-endobj
-1450 0 obj
-<<
-/Limits[(subsection.5.4)(subsubsection.5.5.2)]
-/Kids[1446 0 R 1447 0 R 1448 0 R 1449 0 R]
->>
-endobj
-1451 0 obj
-<<
-/Limits[(section.4)(subsubsection.5.5.2)]
-/Kids[1435 0 R 1440 0 R 1445 0 R 1450 0 R]
->>
-endobj
-1452 0 obj
-<<
-/Limits[(lstnumber.-68.1)(subsubsection.5.5.2)]
-/Kids[1388 0 R 1409 0 R 1430 0 R 1451 0 R]
->>
-endobj
-1453 0 obj
-<<
-/Limits[(Doc-Start)(subsubsection.5.5.2)]
-/Kids[1197 0 R 1282 0 R 1367 0 R 1452 0 R]
->>
-endobj
-1454 0 obj
-null
-endobj
-1455 0 obj
-<<
-/Dests 1453 0 R
->>
-endobj
-2 0 obj
-<<
-/Type/Catalog
-/OpenAction[5 0 R/Fit]
-/PageMode/UseOutlines
-/Pages 3 0 R
-/Outlines 10 0 R
-/Threads 1454 0 R
-/Names 1455 0 R
->>
-endobj
-7 0 obj
-<<
-/Type/Encoding
-/Differences[24/breve/caron/circumflex/dotaccent/hungarumlaut/ogonek/ring/tilde 39/quotesingle
-96/grave 128/bullet/dagger/daggerdbl/ellipsis/emdash/endash/florin/fraction/guilsinglleft/guilsinglright/minus/perthousand/quotedblbase/quotedblleft/quotedblright/quoteleft/quoteright/quotesinglbase/trademark/fi/fl/Lslash/OE/Scaron/Ydieresis/Zcaron/dotlessi/lslash/oe/scaron/zcaron
-164/currency 166/brokenbar 168/dieresis/copyright/ordfeminine 172/logicalnot/.notdef/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu
-183/periodcentered/cedilla/onesuperior/ordmasculine 188/onequarter/onehalf/threequarters
-192/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]
->>
-endobj
-8 0 obj
-<<
-/Type/Font
-/Subtype/Type1
-/Name/ZaDb
-/BaseFont/ZapfDingbats
->>
-endobj
-9 0 obj
-<<
-/Type/Font
-/Subtype/Type1
-/Name/Helv
-/BaseFont/Helvetica
-/Encoding 7 0 R
->>
-endobj
-xref
-0 1456
-0000000000 65535 f
-0000422152 00000 n
-0000475602 00000 n
-0000428548 00000 n
-0000428759 00000 n
-0000422316 00000 n
-0000026380 00000 n
-0000475746 00000 n
-0000476931 00000 n
-0000477012 00000 n
-0000429258 00000 n
-0000000009 00000 n
-0000001185 00000 n
-0000000110 00000 n
-0000000213 00000 n
-0000000333 00000 n
-0000000468 00000 n
-0000000607 00000 n
-0000000755 00000 n
-0000000917 00000 n
-0000001051 00000 n
-0000001932 00000 n
-0000001336 00000 n
-0000001442 00000 n
-0000001575 00000 n
-0000001699 00000 n
-0000001825 00000 n
-0000004525 00000 n
-0000002093 00000 n
-0000002425 00000 n
-0000002209 00000 n
-0000002315 00000 n
-0000002586 00000 n
-0000002716 00000 n
-0000002837 00000 n
-0000003196 00000 n
-0000002966 00000 n
-0000003082 00000 n
-0000003363 00000 n
-0000003488 00000 n
-0000003613 00000 n
-0000003728 00000 n
-0000003860 00000 n
-0000004001 00000 n
-0000004144 00000 n
-0000004264 00000 n
-0000004402 00000 n
-0000428841 00000 n
-0000004674 00000 n
-0000004783 00000 n
-0000005160 00000 n
-0000004914 00000 n
-0000005043 00000 n
-0000005572 00000 n
-0000005332 00000 n
-0000005451 00000 n
-0000428980 00000 n
-0000005734 00000 n
-0000429127 00000 n
-0000005862 00000 n
-0000005908 00000 n
-0000258529 00000 n
-0000258343 00000 n
-0000006813 00000 n
-0000262953 00000 n
-0000262767 00000 n
-0000007808 00000 n
-0000270662 00000 n
-0000270476 00000 n
-0000008777 00000 n
-0000009695 00000 n
-0000278521 00000 n
-0000278327 00000 n
-0000011311 00000 n
-0000280144 00000 n
-0000279956 00000 n
-0000012318 00000 n
-0000013318 00000 n
-0000283082 00000 n
-0000282889 00000 n
-0000014225 00000 n
-0000285182 00000 n
-0000284993 00000 n
-0000015191 00000 n
-0000016138 00000 n
-0000294639 00000 n
-0000294449 00000 n
-0000016184 00000 n
-0000017121 00000 n
-0000017258 00000 n
-0000305097 00000 n
-0000304909 00000 n
-0000017395 00000 n
-0000018313 00000 n
-0000018456 00000 n
-0000018599 00000 n
-0000018742 00000 n
-0000321374 00000 n
-0000321178 00000 n
-0000020557 00000 n
-0000021692 00000 n
-0000021836 00000 n
-0000021980 00000 n
-0000022124 00000 n
-0000022267 00000 n
-0000022411 00000 n
-0000022548 00000 n
-0000022692 00000 n
-0000022836 00000 n
-0000022980 00000 n
-0000023124 00000 n
-0000343747 00000 n
-0000343552 00000 n
-0000023268 00000 n
-0000024210 00000 n
-0000428657 00000 n
-0000024391 00000 n
-0000428708 00000 n
-0000026083 00000 n
-0000026233 00000 n
-0000422439 00000 n
-0000037672 00000 n
-0000026442 00000 n
-0000026580 00000 n
-0000026723 00000 n
-0000026867 00000 n
-0000027015 00000 n
-0000345325 00000 n
-0000345128 00000 n
-0000027163 00000 n
-0000028117 00000 n
-0000028261 00000 n
-0000028404 00000 n
-0000028547 00000 n
-0000028691 00000 n
-0000028840 00000 n
-0000028988 00000 n
-0000029132 00000 n
-0000029276 00000 n
-0000029420 00000 n
-0000029564 00000 n
-0000029708 00000 n
-0000029853 00000 n
-0000029998 00000 n
-0000030142 00000 n
-0000030287 00000 n
-0000030425 00000 n
-0000030568 00000 n
-0000030709 00000 n
-0000030853 00000 n
-0000031002 00000 n
-0000031148 00000 n
-0000031292 00000 n
-0000348119 00000 n
-0000347926 00000 n
-0000032247 00000 n
-0000033245 00000 n
-0000033394 00000 n
-0000033543 00000 n
-0000033687 00000 n
-0000033835 00000 n
-0000033983 00000 n
-0000351357 00000 n
-0000351160 00000 n
-0000034032 00000 n
-0000035016 00000 n
-0000037290 00000 n
-0000037565 00000 n
-0000422649 00000 n
-0000043978 00000 n
-0000037736 00000 n
-0000037785 00000 n
-0000037834 00000 n
-0000037883 00000 n
-0000037932 00000 n
-0000038090 00000 n
-0000357384 00000 n
-0000357188 00000 n
-0000038139 00000 n
-0000039089 00000 n
-0000039138 00000 n
-0000039187 00000 n
-0000039236 00000 n
-0000039285 00000 n
-0000039334 00000 n
-0000039383 00000 n
-0000039432 00000 n
-0000039478 00000 n
-0000039527 00000 n
-0000039576 00000 n
-0000039625 00000 n
-0000039674 00000 n
-0000039723 00000 n
-0000039772 00000 n
-0000361695 00000 n
-0000361496 00000 n
-0000039821 00000 n
-0000381017 00000 n
-0000380829 00000 n
-0000040958 00000 n
-0000041926 00000 n
-0000041975 00000 n
-0000042024 00000 n
-0000042073 00000 n
-0000042122 00000 n
-0000042171 00000 n
-0000043842 00000 n
-0000043869 00000 n
-0000422776 00000 n
-0000046974 00000 n
-0000044042 00000 n
-0000044091 00000 n
-0000044140 00000 n
-0000044189 00000 n
-0000044359 00000 n
-0000044408 00000 n
-0000046838 00000 n
-0000046865 00000 n
-0000422988 00000 n
-0000052092 00000 n
-0000047038 00000 n
-0000047088 00000 n
-0000047137 00000 n
-0000047187 00000 n
-0000384566 00000 n
-0000384361 00000 n
-0000047237 00000 n
-0000048378 00000 n
-0000048428 00000 n
-0000048478 00000 n
-0000048617 00000 n
-0000048666 00000 n
-0000048714 00000 n
-0000048763 00000 n
-0000048812 00000 n
-0000048861 00000 n
-0000048910 00000 n
-0000048959 00000 n
-0000049008 00000 n
-0000049056 00000 n
-0000049105 00000 n
-0000049154 00000 n
-0000049203 00000 n
-0000051956 00000 n
-0000051983 00000 n
-0000423115 00000 n
-0000057476 00000 n
-0000052156 00000 n
-0000052206 00000 n
-0000052255 00000 n
-0000052304 00000 n
-0000052353 00000 n
-0000052402 00000 n
-0000052450 00000 n
-0000052499 00000 n
-0000052548 00000 n
-0000052686 00000 n
-0000052825 00000 n
-0000052874 00000 n
-0000053012 00000 n
-0000053061 00000 n
-0000053110 00000 n
-0000053159 00000 n
-0000053208 00000 n
-0000053257 00000 n
-0000053306 00000 n
-0000053355 00000 n
-0000053404 00000 n
-0000053452 00000 n
-0000053501 00000 n
-0000053550 00000 n
-0000053599 00000 n
-0000053648 00000 n
-0000053697 00000 n
-0000057337 00000 n
-0000057380 00000 n
-0000423327 00000 n
-0000062498 00000 n
-0000057540 00000 n
-0000057590 00000 n
-0000057639 00000 n
-0000057688 00000 n
-0000057737 00000 n
-0000057786 00000 n
-0000057835 00000 n
-0000057884 00000 n
-0000057933 00000 n
-0000057982 00000 n
-0000058031 00000 n
-0000058080 00000 n
-0000058128 00000 n
-0000058177 00000 n
-0000058226 00000 n
-0000058275 00000 n
-0000058324 00000 n
-0000058462 00000 n
-0000058511 00000 n
-0000058560 00000 n
-0000058609 00000 n
-0000058658 00000 n
-0000058707 00000 n
-0000058756 00000 n
-0000058805 00000 n
-0000058853 00000 n
-0000058902 00000 n
-0000058951 00000 n
-0000062349 00000 n
-0000062376 00000 n
-0000423454 00000 n
-0000071085 00000 n
-0000401007 00000 n
-0000400811 00000 n
-0000062562 00000 n
-0000063574 00000 n
-0000063624 00000 n
-0000063673 00000 n
-0000063722 00000 n
-0000063771 00000 n
-0000063820 00000 n
-0000063958 00000 n
-0000064004 00000 n
-0000064053 00000 n
-0000064102 00000 n
-0000064151 00000 n
-0000064200 00000 n
-0000064249 00000 n
-0000064298 00000 n
-0000064347 00000 n
-0000064396 00000 n
-0000064444 00000 n
-0000064493 00000 n
-0000064542 00000 n
-0000064591 00000 n
-0000064640 00000 n
-0000064689 00000 n
-0000064738 00000 n
-0000064787 00000 n
-0000064836 00000 n
-0000064884 00000 n
-0000064933 00000 n
-0000064982 00000 n
-0000065031 00000 n
-0000065080 00000 n
-0000070947 00000 n
-0000070974 00000 n
-0000423581 00000 n
-0000074324 00000 n
-0000071149 00000 n
-0000071198 00000 n
-0000071247 00000 n
-0000071295 00000 n
-0000071344 00000 n
-0000071393 00000 n
-0000071442 00000 n
-0000071491 00000 n
-0000071540 00000 n
-0000071589 00000 n
-0000071638 00000 n
-0000071687 00000 n
-0000071735 00000 n
-0000071783 00000 n
-0000071832 00000 n
-0000071881 00000 n
-0000071930 00000 n
-0000071979 00000 n
-0000072028 00000 n
-0000072077 00000 n
-0000072126 00000 n
-0000072175 00000 n
-0000072223 00000 n
-0000072272 00000 n
-0000072321 00000 n
-0000072370 00000 n
-0000072419 00000 n
-0000072557 00000 n
-0000072606 00000 n
-0000072655 00000 n
-0000072704 00000 n
-0000072753 00000 n
-0000072802 00000 n
-0000074201 00000 n
-0000074228 00000 n
-0000423903 00000 n
-0000084583 00000 n
-0000074388 00000 n
-0000074436 00000 n
-0000074486 00000 n
-0000084510 00000 n
-0000424014 00000 n
-0000087912 00000 n
-0000084647 00000 n
-0000084696 00000 n
-0000084745 00000 n
-0000084793 00000 n
-0000084842 00000 n
-0000084891 00000 n
-0000084940 00000 n
-0000084989 00000 n
-0000085038 00000 n
-0000085087 00000 n
-0000085136 00000 n
-0000085185 00000 n
-0000085234 00000 n
-0000085283 00000 n
-0000085331 00000 n
-0000085380 00000 n
-0000085429 00000 n
-0000085478 00000 n
-0000085527 00000 n
-0000085576 00000 n
-0000085625 00000 n
-0000085674 00000 n
-0000085723 00000 n
-0000085769 00000 n
-0000085818 00000 n
-0000085867 00000 n
-0000085916 00000 n
-0000085965 00000 n
-0000086014 00000 n
-0000086063 00000 n
-0000086112 00000 n
-0000086161 00000 n
-0000086209 00000 n
-0000086258 00000 n
-0000086307 00000 n
-0000086356 00000 n
-0000086405 00000 n
-0000086454 00000 n
-0000086503 00000 n
-0000086552 00000 n
-0000086601 00000 n
-0000086650 00000 n
-0000086699 00000 n
-0000086747 00000 n
-0000086796 00000 n
-0000086845 00000 n
-0000086894 00000 n
-0000086943 00000 n
-0000086992 00000 n
-0000087041 00000 n
-0000087090 00000 n
-0000087866 00000 n
-0000424210 00000 n
-0000099289 00000 n
-0000087976 00000 n
-0000088026 00000 n
-0000088076 00000 n
-0000088126 00000 n
-0000088176 00000 n
-0000088226 00000 n
-0000088276 00000 n
-0000088326 00000 n
-0000088375 00000 n
-0000088424 00000 n
-0000088473 00000 n
-0000088522 00000 n
-0000088571 00000 n
-0000088620 00000 n
-0000088669 00000 n
-0000088718 00000 n
-0000088766 00000 n
-0000088815 00000 n
-0000088864 00000 n
-0000088913 00000 n
-0000088962 00000 n
-0000089011 00000 n
-0000089149 00000 n
-0000089198 00000 n
-0000089336 00000 n
-0000089471 00000 n
-0000089609 00000 n
-0000089748 00000 n
-0000089797 00000 n
-0000089846 00000 n
-0000089895 00000 n
-0000099108 00000 n
-0000099167 00000 n
-0000424337 00000 n
-0000108133 00000 n
-0000099353 00000 n
-0000099402 00000 n
-0000099451 00000 n
-0000099500 00000 n
-0000099549 00000 n
-0000099598 00000 n
-0000099646 00000 n
-0000099696 00000 n
-0000108035 00000 n
-0000424533 00000 n
-0000116717 00000 n
-0000108197 00000 n
-0000108246 00000 n
-0000108295 00000 n
-0000108344 00000 n
-0000108393 00000 n
-0000108442 00000 n
-0000108491 00000 n
-0000108541 00000 n
-0000116619 00000 n
-0000424644 00000 n
-0000120754 00000 n
-0000116781 00000 n
-0000116830 00000 n
-0000116880 00000 n
-0000116930 00000 n
-0000116979 00000 n
-0000117028 00000 n
-0000117077 00000 n
-0000117127 00000 n
-0000117176 00000 n
-0000117226 00000 n
-0000117275 00000 n
-0000117324 00000 n
-0000117373 00000 n
-0000117423 00000 n
-0000117473 00000 n
-0000117522 00000 n
-0000117570 00000 n
-0000117620 00000 n
-0000117670 00000 n
-0000117720 00000 n
-0000117769 00000 n
-0000117818 00000 n
-0000117867 00000 n
-0000117916 00000 n
-0000117965 00000 n
-0000118014 00000 n
-0000118063 00000 n
-0000118112 00000 n
-0000118251 00000 n
-0000120607 00000 n
-0000120634 00000 n
-0000424856 00000 n
-0000125552 00000 n
-0000120818 00000 n
-0000120867 00000 n
-0000120916 00000 n
-0000120965 00000 n
-0000121014 00000 n
-0000121063 00000 n
-0000121112 00000 n
-0000125469 00000 n
-0000424967 00000 n
-0000129138 00000 n
-0000125616 00000 n
-0000125665 00000 n
-0000125714 00000 n
-0000125763 00000 n
-0000125812 00000 n
-0000125861 00000 n
-0000125910 00000 n
-0000125958 00000 n
-0000126007 00000 n
-0000126056 00000 n
-0000126105 00000 n
-0000126154 00000 n
-0000126203 00000 n
-0000126252 00000 n
-0000126396 00000 n
-0000126445 00000 n
-0000126495 00000 n
-0000126544 00000 n
-0000126594 00000 n
-0000126644 00000 n
-0000126693 00000 n
-0000126743 00000 n
-0000126793 00000 n
-0000126843 00000 n
-0000126893 00000 n
-0000126943 00000 n
-0000126993 00000 n
-0000127043 00000 n
-0000129028 00000 n
-0000129055 00000 n
-0000425094 00000 n
-0000132589 00000 n
-0000129202 00000 n
-0000129251 00000 n
-0000129300 00000 n
-0000129349 00000 n
-0000129398 00000 n
-0000129447 00000 n
-0000129496 00000 n
-0000129545 00000 n
-0000129689 00000 n
-0000129738 00000 n
-0000129784 00000 n
-0000129833 00000 n
-0000129882 00000 n
-0000129931 00000 n
-0000129980 00000 n
-0000130029 00000 n
-0000130078 00000 n
-0000130127 00000 n
-0000132453 00000 n
-0000132480 00000 n
-0000425416 00000 n
-0000136616 00000 n
-0000132653 00000 n
-0000132703 00000 n
-0000132752 00000 n
-0000132801 00000 n
-0000132850 00000 n
-0000132899 00000 n
-0000132948 00000 n
-0000132997 00000 n
-0000133046 00000 n
-0000133095 00000 n
-0000133144 00000 n
-0000133193 00000 n
-0000133331 00000 n
-0000133380 00000 n
-0000133428 00000 n
-0000133476 00000 n
-0000133525 00000 n
-0000133574 00000 n
-0000133623 00000 n
-0000133672 00000 n
-0000133721 00000 n
-0000133770 00000 n
-0000133819 00000 n
-0000133868 00000 n
-0000136506 00000 n
-0000136533 00000 n
-0000425543 00000 n
-0000139803 00000 n
-0000136680 00000 n
-0000136729 00000 n
-0000136778 00000 n
-0000136827 00000 n
-0000136876 00000 n
-0000136925 00000 n
-0000136973 00000 n
-0000137021 00000 n
-0000137070 00000 n
-0000137119 00000 n
-0000137258 00000 n
-0000137307 00000 n
-0000137357 00000 n
-0000137407 00000 n
-0000137457 00000 n
-0000137506 00000 n
-0000137556 00000 n
-0000137606 00000 n
-0000137656 00000 n
-0000137705 00000 n
-0000137754 00000 n
-0000137803 00000 n
-0000137852 00000 n
-0000137901 00000 n
-0000137950 00000 n
-0000137998 00000 n
-0000138047 00000 n
-0000139667 00000 n
-0000139694 00000 n
-0000425755 00000 n
-0000142741 00000 n
-0000139867 00000 n
-0000139916 00000 n
-0000139965 00000 n
-0000140014 00000 n
-0000140063 00000 n
-0000140112 00000 n
-0000140161 00000 n
-0000140210 00000 n
-0000140259 00000 n
-0000140309 00000 n
-0000140358 00000 n
-0000140407 00000 n
-0000140456 00000 n
-0000140506 00000 n
-0000140556 00000 n
-0000140606 00000 n
-0000140653 00000 n
-0000140703 00000 n
-0000140753 00000 n
-0000140803 00000 n
-0000142621 00000 n
-0000425866 00000 n
-0000145586 00000 n
-0000142805 00000 n
-0000142854 00000 n
-0000142902 00000 n
-0000142951 00000 n
-0000143000 00000 n
-0000143048 00000 n
-0000143097 00000 n
-0000143146 00000 n
-0000143195 00000 n
-0000143244 00000 n
-0000143293 00000 n
-0000143342 00000 n
-0000143391 00000 n
-0000143440 00000 n
-0000143489 00000 n
-0000143538 00000 n
-0000143587 00000 n
-0000143636 00000 n
-0000143685 00000 n
-0000143733 00000 n
-0000143782 00000 n
-0000143831 00000 n
-0000143880 00000 n
-0000143929 00000 n
-0000143978 00000 n
-0000145464 00000 n
-0000426062 00000 n
-0000148770 00000 n
-0000145650 00000 n
-0000145699 00000 n
-0000145747 00000 n
-0000145796 00000 n
-0000145845 00000 n
-0000145894 00000 n
-0000145943 00000 n
-0000145992 00000 n
-0000146041 00000 n
-0000146090 00000 n
-0000146138 00000 n
-0000146187 00000 n
-0000146236 00000 n
-0000146285 00000 n
-0000146334 00000 n
-0000146383 00000 n
-0000146432 00000 n
-0000146480 00000 n
-0000146529 00000 n
-0000148637 00000 n
-0000426173 00000 n
-0000152178 00000 n
-0000148834 00000 n
-0000148883 00000 n
-0000148932 00000 n
-0000148981 00000 n
-0000149029 00000 n
-0000149078 00000 n
-0000149127 00000 n
-0000149176 00000 n
-0000149225 00000 n
-0000149274 00000 n
-0000149323 00000 n
-0000149372 00000 n
-0000149421 00000 n
-0000149470 00000 n
-0000149609 00000 n
-0000149658 00000 n
-0000149706 00000 n
-0000149755 00000 n
-0000149804 00000 n
-0000149942 00000 n
-0000152021 00000 n
-0000152056 00000 n
-0000426385 00000 n
-0000162642 00000 n
-0000152242 00000 n
-0000152291 00000 n
-0000152340 00000 n
-0000152389 00000 n
-0000152438 00000 n
-0000152487 00000 n
-0000152536 00000 n
-0000152585 00000 n
-0000152634 00000 n
-0000152682 00000 n
-0000152731 00000 n
-0000152780 00000 n
-0000152829 00000 n
-0000152878 00000 n
-0000152927 00000 n
-0000152976 00000 n
-0000153025 00000 n
-0000153074 00000 n
-0000153123 00000 n
-0000153172 00000 n
-0000153220 00000 n
-0000153269 00000 n
-0000153318 00000 n
-0000153367 00000 n
-0000153416 00000 n
-0000153465 00000 n
-0000153514 00000 n
-0000153563 00000 n
-0000153612 00000 n
-0000153660 00000 n
-0000153709 00000 n
-0000153758 00000 n
-0000153807 00000 n
-0000153857 00000 n
-0000162531 00000 n
-0000426496 00000 n
-0000168642 00000 n
-0000162706 00000 n
-0000162755 00000 n
-0000162804 00000 n
-0000162853 00000 n
-0000162902 00000 n
-0000162950 00000 n
-0000162996 00000 n
-0000402428 00000 n
-0000402230 00000 n
-0000164619 00000 n
-0000165580 00000 n
-0000165629 00000 n
-0000165678 00000 n
-0000165726 00000 n
-0000165775 00000 n
-0000165824 00000 n
-0000165873 00000 n
-0000165922 00000 n
-0000165971 00000 n
-0000166020 00000 n
-0000166069 00000 n
-0000166118 00000 n
-0000166167 00000 n
-0000166216 00000 n
-0000166265 00000 n
-0000166314 00000 n
-0000168481 00000 n
-0000426607 00000 n
-0000173913 00000 n
-0000168706 00000 n
-0000168755 00000 n
-0000168804 00000 n
-0000168944 00000 n
-0000168992 00000 n
-0000169041 00000 n
-0000169090 00000 n
-0000404327 00000 n
-0000404139 00000 n
-0000169139 00000 n
-0000170143 00000 n
-0000406476 00000 n
-0000406288 00000 n
-0000170193 00000 n
-0000171197 00000 n
-0000173725 00000 n
-0000173752 00000 n
-0000426929 00000 n
-0000177301 00000 n
-0000173977 00000 n
-0000174025 00000 n
-0000174075 00000 n
-0000174125 00000 n
-0000174175 00000 n
-0000174225 00000 n
-0000174275 00000 n
-0000174324 00000 n
-0000174374 00000 n
-0000174424 00000 n
-0000174474 00000 n
-0000174524 00000 n
-0000174574 00000 n
-0000174715 00000 n
-0000174764 00000 n
-0000174813 00000 n
-0000174862 00000 n
-0000174911 00000 n
-0000174960 00000 n
-0000175009 00000 n
-0000175058 00000 n
-0000175108 00000 n
-0000177126 00000 n
-0000177153 00000 n
-0000427056 00000 n
-0000180405 00000 n
-0000177365 00000 n
-0000177414 00000 n
-0000177463 00000 n
-0000177512 00000 n
-0000177561 00000 n
-0000177610 00000 n
-0000177659 00000 n
-0000177708 00000 n
-0000177757 00000 n
-0000177806 00000 n
-0000177855 00000 n
-0000177904 00000 n
-0000177953 00000 n
-0000178001 00000 n
-0000178050 00000 n
-0000178099 00000 n
-0000178148 00000 n
-0000178197 00000 n
-0000178246 00000 n
-0000178295 00000 n
-0000180296 00000 n
-0000427252 00000 n
-0000183827 00000 n
-0000180469 00000 n
-0000180518 00000 n
-0000180567 00000 n
-0000180616 00000 n
-0000180664 00000 n
-0000180713 00000 n
-0000180762 00000 n
-0000180811 00000 n
-0000180860 00000 n
-0000180909 00000 n
-0000180957 00000 n
-0000181006 00000 n
-0000181055 00000 n
-0000181104 00000 n
-0000181153 00000 n
-0000181202 00000 n
-0000181251 00000 n
-0000181300 00000 n
-0000183692 00000 n
-0000427363 00000 n
-0000197029 00000 n
-0000183891 00000 n
-0000183940 00000 n
-0000183989 00000 n
-0000184037 00000 n
-0000184086 00000 n
-0000184135 00000 n
-0000184184 00000 n
-0000184233 00000 n
-0000184282 00000 n
-0000184331 00000 n
-0000184380 00000 n
-0000184429 00000 n
-0000184478 00000 n
-0000184527 00000 n
-0000184575 00000 n
-0000184624 00000 n
-0000184673 00000 n
-0000414697 00000 n
-0000414507 00000 n
-0000185642 00000 n
-0000416958 00000 n
-0000416763 00000 n
-0000186644 00000 n
-0000187647 00000 n
-0000187696 00000 n
-0000187745 00000 n
-0000187794 00000 n
-0000187843 00000 n
-0000187892 00000 n
-0000187941 00000 n
-0000187989 00000 n
-0000188038 00000 n
-0000188087 00000 n
-0000188136 00000 n
-0000188185 00000 n
-0000188234 00000 n
-0000188283 00000 n
-0000188332 00000 n
-0000196868 00000 n
-0000427474 00000 n
-0000214625 00000 n
-0000419046 00000 n
-0000418850 00000 n
-0000197093 00000 n
-0000198067 00000 n
-0000198116 00000 n
-0000198165 00000 n
-0000198214 00000 n
-0000198263 00000 n
-0000198312 00000 n
-0000198361 00000 n
-0000198410 00000 n
-0000198458 00000 n
-0000198507 00000 n
-0000198556 00000 n
-0000198605 00000 n
-0000198654 00000 n
-0000198703 00000 n
-0000214431 00000 n
-0000427678 00000 n
-0000223600 00000 n
-0000214689 00000 n
-0000214738 00000 n
-0000214787 00000 n
-0000214836 00000 n
-0000214884 00000 n
-0000214933 00000 n
-0000214982 00000 n
-0000215031 00000 n
-0000215080 00000 n
-0000215129 00000 n
-0000215178 00000 n
-0000215227 00000 n
-0000215276 00000 n
-0000215325 00000 n
-0000215374 00000 n
-0000215422 00000 n
-0000215471 00000 n
-0000215520 00000 n
-0000215569 00000 n
-0000215618 00000 n
-0000215667 00000 n
-0000215716 00000 n
-0000215765 00000 n
-0000215814 00000 n
-0000215863 00000 n
-0000215912 00000 n
-0000215960 00000 n
-0000216009 00000 n
-0000216058 00000 n
-0000216107 00000 n
-0000216156 00000 n
-0000223440 00000 n
-0000427790 00000 n
-0000236312 00000 n
-0000223665 00000 n
-0000223716 00000 n
-0000223767 00000 n
-0000223818 00000 n
-0000223868 00000 n
-0000223919 00000 n
-0000223970 00000 n
-0000224021 00000 n
-0000224072 00000 n
-0000224123 00000 n
-0000224174 00000 n
-0000224225 00000 n
-0000224276 00000 n
-0000224326 00000 n
-0000236165 00000 n
-0000427990 00000 n
-0000239519 00000 n
-0000236378 00000 n
-0000236429 00000 n
-0000236480 00000 n
-0000236530 00000 n
-0000236581 00000 n
-0000236632 00000 n
-0000236683 00000 n
-0000236734 00000 n
-0000236785 00000 n
-0000236836 00000 n
-0000236887 00000 n
-0000236938 00000 n
-0000236989 00000 n
-0000237040 00000 n
-0000237090 00000 n
-0000237141 00000 n
-0000237192 00000 n
-0000237243 00000 n
-0000237294 00000 n
-0000237345 00000 n
-0000237396 00000 n
-0000237447 00000 n
-0000237498 00000 n
-0000237546 00000 n
-0000237597 00000 n
-0000237648 00000 n
-0000237699 00000 n
-0000237750 00000 n
-0000237801 00000 n
-0000237852 00000 n
-0000237903 00000 n
-0000237953 00000 n
-0000238004 00000 n
-0000238055 00000 n
-0000238106 00000 n
-0000238157 00000 n
-0000238208 00000 n
-0000238259 00000 n
-0000238310 00000 n
-0000238361 00000 n
-0000238412 00000 n
-0000238463 00000 n
-0000239446 00000 n
-0000428104 00000 n
-0000249461 00000 n
-0000239585 00000 n
-0000239636 00000 n
-0000239687 00000 n
-0000239738 00000 n
-0000239789 00000 n
-0000239840 00000 n
-0000239891 00000 n
-0000239942 00000 n
-0000239992 00000 n
-0000240043 00000 n
-0000240094 00000 n
-0000240145 00000 n
-0000240196 00000 n
-0000240247 00000 n
-0000240298 00000 n
-0000240349 00000 n
-0000240400 00000 n
-0000249325 00000 n
-0000428218 00000 n
-0000258277 00000 n
-0000249527 00000 n
-0000249578 00000 n
-0000249629 00000 n
-0000249821 00000 n
-0000250012 00000 n
-0000258090 00000 n
-0000258128 00000 n
-0000423801 00000 n
-0000422566 00000 n
-0000422903 00000 n
-0000423242 00000 n
-0000423708 00000 n
-0000425314 00000 n
-0000424125 00000 n
-0000424448 00000 n
-0000424771 00000 n
-0000425221 00000 n
-0000426827 00000 n
-0000425670 00000 n
-0000425977 00000 n
-0000426300 00000 n
-0000426734 00000 n
-0000428445 00000 n
-0000427167 00000 n
-0000427585 00000 n
-0000427904 00000 n
-0000428349 00000 n
-0000429316 00000 n
-0000429422 00000 n
-0000429541 00000 n
-0000429653 00000 n
-0000429765 00000 n
-0000429862 00000 n
-0000429957 00000 n
-0000430068 00000 n
-0000430180 00000 n
-0000430292 00000 n
-0000430387 00000 n
-0000430482 00000 n
-0000430591 00000 n
-0000430698 00000 n
-0000430812 00000 n
-0000430909 00000 n
-0000431010 00000 n
-0000431129 00000 n
-0000431246 00000 n
-0000431363 00000 n
-0000431460 00000 n
-0000431558 00000 n
-0000431679 00000 n
-0000431826 00000 n
-0000431973 00000 n
-0000432120 00000 n
-0000432228 00000 n
-0000432349 00000 n
-0000432496 00000 n
-0000432643 00000 n
-0000432790 00000 n
-0000432898 00000 n
-0000433019 00000 n
-0000433166 00000 n
-0000433313 00000 n
-0000433460 00000 n
-0000433568 00000 n
-0000433689 00000 n
-0000433836 00000 n
-0000433983 00000 n
-0000434130 00000 n
-0000434238 00000 n
-0000434346 00000 n
-0000434467 00000 n
-0000434614 00000 n
-0000434761 00000 n
-0000434908 00000 n
-0000435016 00000 n
-0000435137 00000 n
-0000435284 00000 n
-0000435431 00000 n
-0000435581 00000 n
-0000435689 00000 n
-0000435808 00000 n
-0000435955 00000 n
-0000436112 00000 n
-0000436269 00000 n
-0000436379 00000 n
-0000436510 00000 n
-0000436665 00000 n
-0000436822 00000 n
-0000436979 00000 n
-0000437092 00000 n
-0000437202 00000 n
-0000437333 00000 n
-0000437488 00000 n
-0000437642 00000 n
-0000437794 00000 n
-0000437906 00000 n
-0000438033 00000 n
-0000438185 00000 n
-0000438342 00000 n
-0000438496 00000 n
-0000438607 00000 n
-0000438734 00000 n
-0000438886 00000 n
-0000439040 00000 n
-0000439197 00000 n
-0000439309 00000 n
-0000439466 00000 n
-0000439623 00000 n
-0000439778 00000 n
-0000439935 00000 n
-0000440048 00000 n
-0000440161 00000 n
-0000440267 00000 n
-0000440398 00000 n
-0000440555 00000 n
-0000440710 00000 n
-0000440867 00000 n
-0000440980 00000 n
-0000441111 00000 n
-0000441268 00000 n
-0000441423 00000 n
-0000441580 00000 n
-0000441693 00000 n
-0000441824 00000 n
-0000441981 00000 n
-0000442136 00000 n
-0000442293 00000 n
-0000442406 00000 n
-0000442537 00000 n
-0000442694 00000 n
-0000442849 00000 n
-0000443006 00000 n
-0000443119 00000 n
-0000443232 00000 n
-0000443363 00000 n
-0000443517 00000 n
-0000443669 00000 n
-0000443821 00000 n
-0000443933 00000 n
-0000444060 00000 n
-0000444212 00000 n
-0000444364 00000 n
-0000444514 00000 n
-0000444624 00000 n
-0000444751 00000 n
-0000444898 00000 n
-0000445045 00000 n
-0000445194 00000 n
-0000445305 00000 n
-0000445457 00000 n
-0000445609 00000 n
-0000445761 00000 n
-0000445913 00000 n
-0000446024 00000 n
-0000446136 00000 n
-0000446263 00000 n
-0000446415 00000 n
-0000446567 00000 n
-0000446721 00000 n
-0000446832 00000 n
-0000446959 00000 n
-0000447111 00000 n
-0000447263 00000 n
-0000447418 00000 n
-0000447530 00000 n
-0000447661 00000 n
-0000447818 00000 n
-0000447972 00000 n
-0000448124 00000 n
-0000448236 00000 n
-0000448363 00000 n
-0000448514 00000 n
-0000448666 00000 n
-0000448818 00000 n
-0000448929 00000 n
-0000449040 00000 n
-0000449167 00000 n
-0000449319 00000 n
-0000449471 00000 n
-0000449623 00000 n
-0000449734 00000 n
-0000449861 00000 n
-0000450013 00000 n
-0000450165 00000 n
-0000450315 00000 n
-0000450425 00000 n
-0000450552 00000 n
-0000450704 00000 n
-0000450856 00000 n
-0000451008 00000 n
-0000451119 00000 n
-0000451271 00000 n
-0000451423 00000 n
-0000451575 00000 n
-0000451727 00000 n
-0000451838 00000 n
-0000451949 00000 n
-0000452061 00000 n
-0000452188 00000 n
-0000452340 00000 n
-0000452492 00000 n
-0000452644 00000 n
-0000452755 00000 n
-0000452882 00000 n
-0000453032 00000 n
-0000453187 00000 n
-0000453344 00000 n
-0000453456 00000 n
-0000453587 00000 n
-0000453744 00000 n
-0000453899 00000 n
-0000454056 00000 n
-0000454169 00000 n
-0000454300 00000 n
-0000454457 00000 n
-0000454612 00000 n
-0000454764 00000 n
-0000454876 00000 n
-0000454987 00000 n
-0000455114 00000 n
-0000455266 00000 n
-0000455418 00000 n
-0000455570 00000 n
-0000455681 00000 n
-0000455808 00000 n
-0000455960 00000 n
-0000456112 00000 n
-0000456264 00000 n
-0000456375 00000 n
-0000456502 00000 n
-0000456654 00000 n
-0000456806 00000 n
-0000456958 00000 n
-0000457069 00000 n
-0000457221 00000 n
-0000457368 00000 n
-0000457520 00000 n
-0000457674 00000 n
-0000457785 00000 n
-0000457896 00000 n
-0000458023 00000 n
-0000458175 00000 n
-0000458327 00000 n
-0000458481 00000 n
-0000458593 00000 n
-0000458724 00000 n
-0000458881 00000 n
-0000459038 00000 n
-0000459194 00000 n
-0000459307 00000 n
-0000459438 00000 n
-0000459593 00000 n
-0000459745 00000 n
-0000459897 00000 n
-0000460009 00000 n
-0000460138 00000 n
-0000460293 00000 n
-0000460445 00000 n
-0000460597 00000 n
-0000460708 00000 n
-0000460819 00000 n
-0000460946 00000 n
-0000461098 00000 n
-0000461250 00000 n
-0000461402 00000 n
-0000461513 00000 n
-0000461644 00000 n
-0000461801 00000 n
-0000461956 00000 n
-0000462108 00000 n
-0000462220 00000 n
-0000462347 00000 n
-0000462499 00000 n
-0000462653 00000 n
-0000462805 00000 n
-0000462916 00000 n
-0000463068 00000 n
-0000463223 00000 n
-0000463378 00000 n
-0000463533 00000 n
-0000463644 00000 n
-0000463755 00000 n
-0000463866 00000 n
-0000463997 00000 n
-0000464157 00000 n
-0000464317 00000 n
-0000464477 00000 n
-0000464589 00000 n
-0000464720 00000 n
-0000464880 00000 n
-0000465040 00000 n
-0000465200 00000 n
-0000465312 00000 n
-0000465443 00000 n
-0000465603 00000 n
-0000465763 00000 n
-0000465923 00000 n
-0000466035 00000 n
-0000466166 00000 n
-0000466321 00000 n
-0000466476 00000 n
-0000466636 00000 n
-0000466748 00000 n
-0000466860 00000 n
-0000466993 00000 n
-0000467148 00000 n
-0000467303 00000 n
-0000467455 00000 n
-0000467566 00000 n
-0000467693 00000 n
-0000467845 00000 n
-0000467995 00000 n
-0000468142 00000 n
-0000468252 00000 n
-0000468375 00000 n
-0000468522 00000 n
-0000468674 00000 n
-0000468826 00000 n
-0000468936 00000 n
-0000469088 00000 n
-0000469239 00000 n
-0000469391 00000 n
-0000469543 00000 n
-0000469654 00000 n
-0000469766 00000 n
-0000469891 00000 n
-0000470038 00000 n
-0000470185 00000 n
-0000470335 00000 n
-0000470446 00000 n
-0000470573 00000 n
-0000470720 00000 n
-0000470867 00000 n
-0000471005 00000 n
-0000471111 00000 n
-0000471222 00000 n
-0000471354 00000 n
-0000471486 00000 n
-0000471616 00000 n
-0000471718 00000 n
-0000471828 00000 n
-0000471955 00000 n
-0000472082 00000 n
-0000472204 00000 n
-0000472305 00000 n
-0000472410 00000 n
-0000472513 00000 n
-0000472660 00000 n
-0000472807 00000 n
-0000472954 00000 n
-0000473058 00000 n
-0000473181 00000 n
-0000473328 00000 n
-0000473480 00000 n
-0000473632 00000 n
-0000473742 00000 n
-0000473865 00000 n
-0000474012 00000 n
-0000474159 00000 n
-0000474306 00000 n
-0000474415 00000 n
-0000474573 00000 n
-0000474745 00000 n
-0000474917 00000 n
-0000475092 00000 n
-0000475206 00000 n
-0000475315 00000 n
-0000475430 00000 n
-0000475539 00000 n
-0000475562 00000 n
-trailer
-<<
-/Size 1456
-/Root 2 0 R
-/Info 1 0 R
->>
-startxref
-477106
-%%EOF
diff --git a/Master/texmf-dist/doc/latex/pgfplots/matlab2pgfplots.m b/Master/texmf-dist/doc/latex/pgfplots/matlab2pgfplots.m
new file mode 100644
index 00000000000..c591a7a4af7
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pgfplots/matlab2pgfplots.m
@@ -0,0 +1,332 @@
+function matlab2pgfplots(varargin )
+% matlab2pgfplots(outfile )
+% matlab2pgfplots( outfile, OPTIONS )
+%
+% Generate LaTeX code for use in package pgfplots to
+% draw line plots.
+%
+% It will use every (2d) line plot in the figure specified by handler fighandle.
+%
+% It understands
+% - axis labels,
+% - legends,
+% - any 2d line plots,
+% - line styles/markers (in case of styles=1),
+% - tick positions, labels and axis limits (in case of axes=1).
+%
+% Linestyles and markers will follow as an option. However, pgfplots has its
+% own line styles which may be appropriate.
+%
+% OPTIONS are key value pairs. Known options are
+% - 'fig',HANDLE
+% a figure handle (default is 'gcf').
+% - 'styles',0|1
+% a boolean indicating whether line styles, markers and colors shall be exported (default 1).
+% - 'axes',0|1
+% a boolean indicating whether axis ticks, tick labels and limits shall be exported (default 0).
+% - 'maxpoints',100
+% an integer denoting the maximum number of points exported to tex. If the actual number is larger,
+% the data will be interpolated to 'maxpoints'. The interpolation assumes
+% parametric plots if x and y are not monotonically increasing.
+%
+% See
+% http://tug.ctan.org/tex-archive/graphics/pgf/contrib/pgfplots/
+% for details about pgfplots.
+%
+%
+% Copyright Christian Feuersaenger 2008
+%
+parser = inputParser;
+
+parser.addRequired( 'outfile', @(x) ischar(x) );
+parser.addParamValue( 'fig', gcf, @(x) ishandle(x) );
+parser.addParamValue( 'styles', 1, @(x) x==0 || x==1 );
+parser.addParamValue( 'axes' , 0, @(x) x==0 || x==1 );
+parser.addParamValue( 'maxpoints', 100000, @(x) isnumeric(x) );
+
+parser.parse( varargin{:} );
+
+
+fighandle = parser.Results.fig;
+
+lineobjs = findobj(fighandle, 'Type', 'line' );
+axesobj = findobj( fighandle, 'Type', 'axes' );
+
+legendobj = findobj( fighandle, 'tag', 'legend' );
+if length(legendobj) > 0
+ allchildsoflegend = [ findobj( legendobj ) ];
+ lineobjs = setdiff( lineobjs, allchildsoflegend );
+ axesobj = setdiff( axesobj, allchildsoflegend );
+end
+
+FID=fopen( parser.Results.outfile, 'w' );
+assert( FID >= 0, [ 'could not open file ' parser.Results.outfile ' for writing' ] );
+
+ENDL=sprintf('\n');
+TAB=sprintf('\t');
+fwrite( FID, [ ...
+ '\begin{tikzpicture}%' ENDL ...
+ '\begin{axis}'] );
+
+xislog = 0;
+yislog = 0;
+
+if length(axesobj) > 0
+ axis = axesobj(1);
+ xlabel = get( get(axis, 'XLabel'), 'String');
+ ylabel = get( get(axis, 'YLabel'), 'String');
+ zlabel = get( get(axis, 'ZLabel'), 'String');
+ xscale = get(axis,'XScale');
+ yscale = get(axis,'YScale');
+
+ axisoptions = {};
+ if length(xlabel) > 0
+ axisoptions = [ axisoptions [ 'xlabel={' xlabel '}'] ];
+ end
+ if length(ylabel) > 0
+ axisoptions = [ axisoptions ['ylabel={' ylabel '}'] ];
+ end
+ if strcmp(xscale,'log')
+ xislog=1;
+ axisoptions = [ axisoptions ['xmode=log'] ];
+ end
+ if strcmp(yscale,'log')
+ yislog = 1;
+ axisoptions = [ axisoptions ['ymode=log'] ];
+ end
+ if parser.Results.axes
+ for k = 'xy'
+ L = get(gca, [ k 'Lim'] );
+ axisoptions = [ axisoptions [ k 'min=' num2str(L(1)) ] ];
+ axisoptions = [ axisoptions [ k 'max=' num2str(L(2)) ] ];
+ end
+
+ for k = 'xy'
+ L = get(gca, [ k 'Tick'] );
+ opt = [ k 'tick={' ];
+ for q=1:length(L)
+ if q>1
+ opt = [opt ',' ];
+ end
+ opt = [opt num2str(L(q)) ];
+ end
+ opt = [ opt '}' ];
+ axisoptions = [axisoptions opt ];
+ end
+
+ end
+
+
+ axisoptstr = [];
+ for i = 1:length(axisoptions)
+ if i>1
+ axisoptstr = [axisoptstr ',' ENDL TAB];
+ end
+ axisoptstr = [axisoptstr axisoptions{i}];
+ end
+ if length( axisoptstr )
+ fwrite( FID, [ '[' ENDL TAB axisoptstr ']' ENDL ] );
+ end
+end
+fwrite( FID, ENDL );
+
+if length(legendobj) > 0
+ legentries = get(legendobj, 'String');
+ if length(legentries) > 0
+ legstr = ['\legend{%' ENDL TAB ];
+ for i = 1:length(legentries)
+ legstr = [ legstr legentries{i} '\\%' ENDL ];
+ if i ~= length(legentries)
+ legstr = [ legstr TAB ];
+ end
+ end
+ legstr = [ legstr '}%' ENDL ];
+ fwrite( FID, legstr );
+ end
+end
+
+xpointformat = '%f';
+ypointformat = '%f';
+if xislog
+ xpointformat = '%e';
+end
+if yislog
+ ypointformat = '%e';
+end
+
+for i = 1:length(lineobjs)
+
+ x = get(lineobjs(i), 'XData');
+ y = get(lineobjs(i), 'YData');
+ z = get(lineobjs(i), 'ZData');
+
+ if size(x,1) > 1
+ disp( ['line element ' num2str(i) ' skipped: size ' num2str(size(x)) ' not supported']);
+ end
+ if abs(max(z) > 0)
+ disp( ['line element ' num2str(i) ' skipped: only 2d-plots supported up to now']);
+ end
+
+ if size(x,2) > parser.Results.maxpoints
+ % we need to re-interpolate the data!
+ q = find( diff(x) < 0 );
+ if length(q)
+ % parametric plot x(t), y(t), z(t).
+ % we assume t = 1:size(x,2)
+ X = 1:parser.Results.maxpoints;
+ x = interp1( 1:size(x,2),x, X);
+ y = interp1( 1:size(y,2),y, X);
+ z = interp1( 1:size(z,2),z, X);
+
+ else
+ % a normal plot y(x):
+ X = linspace( min(x), max(x), parser.Results.maxpoints );
+ y = interp1( x,y, X );
+ x = X;
+ end
+ end
+
+ coordstr = [];
+ for j = 1:size(x,2)
+ coordstr = [coordstr sprintf(['\t(' xpointformat ',\t' ypointformat ')\n'], x(j), y(j)) ];
+ end
+
+ addplotoptstr = [];
+ if parser.Results.styles
+ markOpts = {};
+ mark = [];
+ linestyle = [];
+ color = [];
+
+ C = matlabColorToPGFColor( get(lineobjs(i), 'Color') );
+ if length(C)
+ color = [ 'color=' C ];
+ end
+
+ L = get(lineobjs(i), 'LineStyle' );
+ switch L
+ case 'none'
+ linestyle = 'only marks';
+ case '-'
+ linestyle = [];
+ case ':'
+ linestyle = 'densely dotted';
+ case '-:'
+ linestyle = 'dash pattern=on 2pt off 3pt on 1pt off 3pt]';
+ case '--'
+ linestyle = 'densely dashed';
+ end
+
+ M = get(lineobjs(i), 'Marker');
+ switch M
+ case '.'
+ mark = '*';
+ markOpts = [ markOpts 'scale=0.1' ];
+ case 'o'
+ mark = '*';
+ case 'x'
+ mark = 'x';
+ case '+'
+ mark = '+';
+ case '*'
+ mark = 'asterisk';
+ case 'square'
+ mark = 'square*';
+ case 'diamond'
+ mark = 'diamond*';
+ case '^'
+ mark = 'triangle*';
+ case 'v'
+ mark = 'triangle*';
+ markOpts = [ markOpts 'rotate=180' ];
+ case '<'
+ mark = 'triangle*';
+ markOpts = [ markOpts 'rotate=90' ];
+ case '>'
+ mark = 'triangle*';
+ markOpts = [ markOpts 'rotate=270' ];
+ case 'pentagramm'
+ mark = 'pentagon*';
+ case 'hexagram'
+ mark = 'oplus*';
+ end
+
+ M = matlabColorToPGFColor( get(lineobjs(i), 'MarkerFaceColor') );
+ if length(M)
+ markOpts = [ markOpts ['fill=' M] ];
+ end
+
+ M = matlabColorToPGFColor( get(lineobjs(i), 'MarkerEdgeColor') );
+ if length(M)
+ markOpts = [ markOpts ['draw=' M] ];
+ end
+
+ if length(color)
+ if length(addplotoptstr)
+ addplotoptstr = [addplotoptstr ',' ];
+ end
+ addplotoptstr = [ addplotoptstr color ];
+ end
+
+ if length(linestyle)
+ if length(addplotoptstr)
+ addplotoptstr = [addplotoptstr ',' ];
+ end
+ addplotoptstr = [ addplotoptstr linestyle ];
+ end
+
+ if length(mark)
+ if length(addplotoptstr)
+ addplotoptstr = [addplotoptstr ',' ];
+ end
+ addplotoptstr = [ addplotoptstr [ 'mark=' mark ] ];
+
+ if length(markOpts)
+ markOptsStr = 'mark options={';
+ for q = 1:length(markOpts)
+ if q > 1
+ markOptsStr = [markOptsStr ',' ];
+ end
+ markOptsStr = [ markOptsStr markOpts{q} ];
+ end
+ markOptsStr = [ markOptsStr '}' ];
+
+ addplotoptstr = [ addplotoptstr ',' markOptsStr ];
+ end
+ end
+
+
+ if length(addplotoptstr)
+ addplotoptstr = [ '[' addplotoptstr ']' ];
+ end
+
+ end
+ fwrite( FID, [ ...
+ '\addplot' addplotoptstr ' plot coordinates {' ENDL coordstr '};' ENDL ] );
+
+end
+
+
+fwrite( FID, [ ...
+ '\end{axis}' ENDL ...
+ '\end{tikzpicture}%' ENDL ] );
+
+end
+
+function cstr = matlabColorToPGFColor( C )
+
+if length(C) ~= 3 | ischar(C) & strcmp(C,'none'), cstr = [];
+elseif norm( C - [0 0 1 ], 'inf' ) < 1e-10, cstr = 'blue';
+elseif norm( C - [0 1 0 ], 'inf' ) < 1e-10, cstr = 'green';
+elseif norm( C - [1 0 0 ], 'inf' ) < 1e-10, cstr = 'red';
+elseif norm( C - [0 1 1 ], 'inf' ) < 1e-10, cstr = 'cyan';
+elseif norm( C - [1 0 1 ], 'inf' ) < 1e-10, cstr = 'magenta';
+elseif norm( C - [1 1 0 ], 'inf' ) < 1e-10, cstr = 'yellow';
+elseif norm( C - [0 0 0 ], 'inf' ) < 1e-10, cstr = 'black';
+elseif norm( C - [1 1 1 ], 'inf' ) < 1e-10, cstr = 'white';
+else
+ cstr= 'blue'; % FIXME
+% cstr = [ '{rgb:red,' num2str( floor( C(1)*100) ) ';green,' num2str(floor(C(2)*100)) ';blue,' num2str(floor(C(3)*100)) '}' ];
+end
+
+end
diff --git a/Master/texmf-dist/doc/latex/pgfplots/matlab2pgfplots.sh b/Master/texmf-dist/doc/latex/pgfplots/matlab2pgfplots.sh
new file mode 100644
index 00000000000..9bc84642506
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pgfplots/matlab2pgfplots.sh
@@ -0,0 +1,80 @@
+#!/bin/sh
+
+
+CONVERT_STYLES=1
+CONVERT_AXES=1
+OUTFILE=""
+MAXPOINTS=100000
+
+function echoHelp()
+{
+ echo -e \
+ "matlab2pgfplots.sh [--maxpoints N] [--styles [0|1] ] [ --axes [0|1] ] [ -o OUTFILE ] INFILE ...\n"\
+ "converts Matlab figures (.fig-files) to pgfplots-files (.pgf-files).\n"\
+ "This script is a front-end for matlab2pgfplots.m (which needs to be in matlab's search path)\n"\
+ "type\n"\
+ " >> help matlab2pgfplots\n"\
+ "at your matlab prompt for more information.\n"
+ exit 0
+}
+
+LONGOPTS="styles:,axes:,help,maxpoints:"
+SHORTOPTS="o:"
+ARGS=`getopt -l "$LONGOPTS" "$SHORTOPTS" "$@"`
+if [ $? -ne 0 ]; then
+ echo "`basename $0`: Could not process command line arguments. Use the '--help' option for documentation."
+ exit 1
+fi
+
+eval set -- "$ARGS"
+while [ $# -gt 0 ]; do
+ ARG=$1
+ # echo "PROCESSING OPTION '$ARG' (next = $@)"
+ case "$ARG" in
+ --maxpoints) shift; MAXPOINTS=$1; shift;;
+ --styles) shift; CONVERT_STYLES="$1"; shift;;
+ --axes) shift; CONVERT_AXES="$1"; shift;;
+ -o) shift; OUTFILE="$1"; shift;;
+ --help) shift; echoHelp;;
+ --) shift; break;;
+ *) break;
+ esac
+done
+
+if [ $# -eq 0 ]; then
+ echo "No input files specified."
+ exit 1
+fi
+
+HAS_OUTFILE=0
+if [ $# -gt 1 -a -n "$OUTFILE" ]; then
+ HAS_OUTFILE=1
+fi
+
+for A; do
+ INFILE="$A"
+ if [ $HAS_OUTFILE -eq 0 ]; then
+ OUTFILE="${INFILE%%.*}.pgf"
+ fi
+ echo "$INFILE -> $OUTFILE ... "
+
+ M_LOGFILE=`mktemp`
+ matlab -nojvm -nodesktop -nosplash 1>/dev/null 2>&1 -logfile $M_LOGFILE <<-EOF
+ f=hgload( '$INFILE' );
+ matlab2pgfplots( '$OUTFILE', 'fig', f, 'styles', $CONVERT_STYLES, 'axes', $CONVERT_AXES, 'maxpoints', $MAXPOINTS );
+ exit
+ EOF
+ grep -q "Error" $M_LOGFILE
+ CODE=$?
+ if [ $CODE -eq 0 ]; then
+ echo "Matlab output:" 1>&2
+ cat $M_LOGFILE 1>&2
+ CODE=1
+ else
+ CODE=0
+ fi
+ rm -f $M_LOGFILE
+ if [ $CODE -ne 0 ]; then
+ exit $CODE
+ fi
+done
diff --git a/Master/texmf-dist/doc/latex/pgfplots/pgf2pdf.sh b/Master/texmf-dist/doc/latex/pgfplots/pgf2pdf.sh
index adfc7f92f73..027a6157b77 100644
--- a/Master/texmf-dist/doc/latex/pgfplots/pgf2pdf.sh
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgf2pdf.sh
@@ -43,8 +43,14 @@ function dumpHelp() {
" input file will be skipped.\n"\
"\n"\
"--texdefs FILE\n"\
- " Uses a clean tex file which inputs FILE and the PGF image to convert\n"\
- " and processes this one.\n"\
+ " Generates a temporary tex-file\n"\
+ " \documentclass{article}\n"\
+ " \input{FILE}\n"\
+ " \begin{document}\n"\
+ " \input{plot1.pgf}\n"\
+ " \end{document}\n"\
+ " and converts this one to pdf.\n"\
+ " If FILE is '-', the input step is omitted.\n"
"-v\n"\
" each -v option increases the verbosity.\n"\
""
@@ -218,20 +224,14 @@ for A in "${PGF_FILES[@]}"; do
rm -f "${BASE}.pdf"
cat >"$TMP_TEX_FILE" <<-EOF
- \documentclass[a4paper]{report}
- \usepackage{german}
- \usepackage[utf8]{inputenc} % erlaubt direkte Nutzung von Umlauten
- %\usepackage{ifpdf}
- %\usepackage{graphicx}
- \usepackage[intlimits]{amsmath}
- \usepackage{amssymb}
- \usepackage{amsfonts}
+ \documentclass{report}
+
+ \input{${TEX_DEFINES}}
+
%\def\pgfsysdriver{pgfsys-dvipdfm.def}
%\def\pgfsysdriver{pgfsys-pdftex.def}
\usepackage{tikz}
\pgfrealjobname{${TMP_TEX_FILE%%.tex}}
-
- \input{${TEX_DEFINES}}
\begin{document}
\let\oldjobname=\jobname%
% make sure that PGF recognises that jobname==target file name
diff --git a/Master/texmf-dist/doc/latex/pgfplots/pgfmathlogtest.tex b/Master/texmf-dist/doc/latex/pgfplots/pgfmathlogtest.tex
index 8fbc889f526..86fa5795a87 100644
--- a/Master/texmf-dist/doc/latex/pgfplots/pgfmathlogtest.tex
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgfmathlogtest.tex
@@ -20,9 +20,6 @@
\begin{document}
\maketitle
-Hier evaluiere ich logarithmen.
-
-\message{HIER GEHTS LOS!}%
\def\vgl#1#2{%
\begingroup
\message{COMPUTING LOG(#1)}%
@@ -45,8 +42,9 @@ Hier evaluiere ich logarithmen.
\def\normalize#1{%
\begingroup
\message{NORMALISING #1...}%
- \pgfmathnormalisedfloatingpoint#1\to\M\powten\E
- \[ #1 \mapsto \M\cdot 10^{\E} \]
+ \sciparse#1\to\M\powten\E
+ \sciparsesign{#1}\S\MM\EE
+ \[ #1 \mapsto \M \cdot 10^{\E}\quad \bigl( = \MM\cdot 10^{\EE}\quad [S=\S]\, \bigr) \]
\endgroup
}
@@ -66,7 +64,7 @@ Hier evaluiere ich logarithmen.
% log(6.241e-7)=\pgfmathlog{6.241}\pgfmathadd{\pgfmathresult}{-16.11809}\pgfmathresult\par
%--------------------------------------------------
-Referenz:
+\section{logarithms, compared with PGF arithmetics}
\vgl{0.1}{-2.30259}
\vgl{0.12}{-2.12026}
@@ -123,7 +121,7 @@ Referenz:
\vgl{9217}{9.12880488399366}%
-Umwandlung nach float:
+\section{Conversion to normalised floating point numbers basis 10}
\normalize{123.41251}%
\normalize{123412.51}%
\normalize{12341251.0}%
@@ -148,9 +146,12 @@ Umwandlung nach float:
\normalize{3261.01452e-06}%
\normalize{0.000326101452e-06}%
-\message{SONDERFALL 0}%
+\message{SPECIAL CASE 0}%
\normalize{0}
\normalize{-0}
+\normalize{-0.000}
+\normalize{+0.000}
+\normalize{+0}
\normalize{-1}
\normalize{1.0e1}
\tracingmacros=2\tracingcommands=2
@@ -159,7 +160,7 @@ Umwandlung nach float:
\normalize{1141}
\normalize{-53e-5}
-\section{Test fuer prettyprinter}
+\section{Test for prettyprinter}
\message{PRETTY PRINTING}
\pretty{1}
\pretty{1.0}
@@ -175,9 +176,158 @@ Umwandlung nach float:
\pretty{-0.559}
\pretty{-0.554}
+\section{testing scimathlessthan}
+\def\testsci#1#2{%
+ \sciparsesign{#1}\S\M\E
+ \sciparsesign{#2}\SS\MM\EE
+ \message{checking #1 <= #2; [\S] \M * 10^\E <= [\SS] \MM * 10^\EE}%
+ \scimathlessthan\S\M\E\and\SS\MM\EE
+ \ifscimathlessthan
+ \def\result{<}%
+ \else
+ \def\result{\ge}%
+ \fi
+ \[ \text{scimathlessthan: } \bigl( [\S]\, \M \cdot 10^{\E} \bigr)\; = #1 \result #2\; \bigl( = [\SS]\, \MM \cdot 10^{\EE} \big). \]
+}%
-\bibliographystyle{gerabbrv} %gerapali} %gerabbrv} %gerunsrt.bst} %gerabbrv}% gerplain}
-% \bibliography{literatur.bib}
-\end{document}
+\testsci{4}{5}
+\testsci{0}{2}
+\testsci{91751123}{241924}
+\testsci{-1}{-1}
+\testsci{-1231}{0}
+\testsci{10}{-5}
+\testsci{0}{0}
+\testsci{-0}{-0}
+\testsci{0}{14}
+\testsci{114812}{-123124123}
+\testsci{114812}{1241231451}
+\testsci{-141285}{29}
+\testsci{-141285}{0}
+\testsci{-141285}{-50}
+\testsci{-141285}{-12498149012}
+\section{Sci to fixed test}
+\def\testscitofixed#1{%
+ \sciparsesign{#1}\S\M\E
+%\tracingmacros=2\tracingcommands=2
+ \message{converting #1 = [\S] \M * 10^\E\ to fixed point}%
+ \scitofixed\S\M\E\result
+ \message{-> \result}%
+%\tracingmacros=0\tracingcommands=0
+ \[ \bigl( [\S]\, \M \cdot 10^{\E} \bigr)\; = #1 \mapsto \result \]
+}%
+\testscitofixed{0}
+\testscitofixed{5}
+\testscitofixed{5.520241}
+\testscitofixed{124.10241}
+\testscitofixed{-121.248}
+\testscitofixed{-12e-5}
+\testscitofixed{412e3}
+\testscitofixed{0.0001}
+\testscitofixed{0.0}
+\testscitofixed{-0.012125}
+\testscitofixed{1.2e-1}
+\testscitofixed{1.2e-2}
+\testscitofixed{1.2e4}
+\testscitofixed{1.2345e4}
+\testscitofixed{1.234567e4}
+\testscitofixed{1.51234e0}
+\testscitofixed{15}
+\testscitofixed{-20}
+\section{Testing scimathmax and scimathmin}
+\def\testscimathminmax#1#2{%
+ \sciparsesign{#1}\S\M\E
+ \sciparsesign{#2}\SS\MM\EE
+%\tracingmacros=2\tracingcommands=2
+ \message{computing min/max #1 and #2}%
+ \scimathmin\S\M\E\and\SS\MM\EE\to\SSS\MMM\EEE
+ \scitofixed\SSS\MMM\EEE\result
+ \[ \min\{#1,#2\} = \min\{ [\S]\, \M \cdot 10^{\E}, [\SS]\, \MM\cdot 10^{\EE}\} \; = [\SSS]\; \MMM\cdot10^{\EEE} = \result \]
+ %
+ \scimathmax\S\M\E\and\SS\MM\EE\to\SSS\MMM\EEE
+ \scitofixed\SSS\MMM\EEE\result
+ \[ \max\{#1,#2\} = \max\{ [\S]\, \M \cdot 10^{\E}, [\SS]\, \MM\cdot 10^{\EE}\} \; = [\SSS]\; \MMM\cdot10^{\EEE} = \result \]
+}%
+\testscimathminmax{42}{56}
+\testscimathminmax{-4122}{1256}
+\testscimathminmax{1e12}{5.235412e24}
+\testscimathminmax{-12}{-145}
+
+\section{Testing scimathshift}
+\def\testscimathshift#1#2{%
+ \sciparsesign{#1}\S\M\E
+ \message{computing mathshift #1 by #2}%
+ \let\SS=\S\let\MM=\M\let\EE=\E
+ \scimathshift\S\M\E{#2}%
+ \scitofixed\S\M\E\result
+ \[ #1 \cdot 10^{#2} = [\SS]\, \MM \cdot 10^{\EE} \cdot 10^{#2} = [\S]\, \M \cdot 10^{\E} = \result \]
+}%
+\testscimathshift{4}{1}
+\testscimathshift{4}{2}
+\testscimathshift{4}{-1}
+\testscimathshift{4}{-2}
+\testscimathshift{0}{-2}
+\testscimathshift{1.1415130}{-2}
+\testscimathshift{1.1415130}{5}
+
+\section{Testing name floating point data structure}
+\let\SS=\empty
+\let\MM=\empty
+\let\EE=\empty
+\def\testsciDS#1#2{%
+ \sciparsesign{#1}\S\M\E
+ \message{assigning #1=(\S,\M,\E) to single-name-macro ... }%
+ \scisetcomponents{#2}\S\M\E
+ \scigetcomponents{#2}\SS\MM\EE
+ \message{result: (\SS,\MM,\EE)}%
+ \edef\expandedtest{{\noexpand #2}{\S}{\M}{\E}}%
+ \message{now with raw-numbers to single-name-macro ... }%
+ \expandafter\scisetcomponents\expandedtest
+ \scigetcomponents{#2}\SSS\MMM\EEE
+ \message{result: (\SSS,\MMM,\EEE)}%
+ \scitofixed\SS\MM\EE\result
+ \scitofixed\SSS\MMM\EEE\resultX
+ \[ #1 = [\S]\, \M \cdot 10^{\E}\text{ re-extracted }\to[\SS]\, \MM \cdot 10^{\EE} = \result\; [ \text{again: }\resultX ] \]
+}%
+\testsciDS{141.241}\test
+\testsciDS{141.241}{test}
+\testsciDS{141.241}{341}
+\def\test{eins zwei drei}
+\testsciDS{141.241}\test
+
+
+\scitofixed{1}{1.0}{2}\result\result
+
+\section{Testing fixedpointround}
+\def\testfpround#1#2{%
+\tracingmacros=2\tracingcommands=2
+ \message{computing fixedpointround(#1):}%
+ \fixedpointround#1\prec#2\to\result
+ \message{fixedpointround(#1) -> \result}%
+ \[ \text{rnd }#1 \text{ to }#2 \to \result \]
+\tracingmacros=0\tracingcommands=0
+}%
+\testfpround{1.0000}{2}
+\testfpround{-1.0000}{2}
+\testfpround{+1.0000}{2}
+\testfpround{1.003}{2}
+\testfpround{-1.003}{2}
+\testfpround{1.123}{2}
+\testfpround{1.12300012}{5}
+\testfpround{9}{2}
+\testfpround{1341}{2}
+\testfpround{0.996}{2}
+\testfpround{19999.9996}{2}
+\testfpround{-19999.9996}{2}
+\testfpround{+19999.9996}{2}
+\testfpround{9999.9996}{2}
+\testfpround{0.0004982}{3}
+\testfpround{0.0004982}{4}
+\testfpround{0.0004982}{5}
+\testfpround{0.0004982}{6}
+\testfpround{0.0004982}{7}
+\testfpround{0.0004982}{8}
+\testfpround{0.0004982}{9}
+
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/pgfplots/manual.bib b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.bib
index 4eb003d9fe0..4eb003d9fe0 100644
--- a/Master/texmf-dist/doc/latex/pgfplots/manual.bib
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.bib
diff --git a/Master/texmf-dist/doc/latex/pgfplots/pgfplots.examples.tex b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.examples.tex
new file mode 100644
index 00000000000..fb3e8706368
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.examples.tex
@@ -0,0 +1,899 @@
+% main=manual.tex
+
+
+\section{More examples}
+This section contains a catalogue of different \PGFPlots\ features by example.
+\label{sec:examples}%
+\begingroup
+\subsection{Legend position and appearance}
+\subsubsection{Legend in the lower left corner}
+\begin{lstlisting}
+\tikzstyle{every axis legend}+=
+ [at={(0.03,0.03)},anchor=south west]%
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \addplot plot coordinates {
+ (5, 8.312e-02)
+ (17, 2.547e-02)
+ (49, 7.407e-03)
+ (129, 2.102e-03)
+ (321, 5.874e-04)
+ (769, 1.623e-04)
+ (1793, 4.442e-05)
+ (4097, 1.207e-05)
+ (9217, 3.261e-06)
+ };
+
+ ....
+
+ \legend{$d=2$\\$d=3$\\$d=4$\\$d=5$\\$d=6$\\}
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+\def\plots{%
+ \addplot plot coordinates {
+ (5, 8.312e-02)
+ (17, 2.547e-02)
+ (49, 7.407e-03)
+ (129, 2.102e-03)
+ (321, 5.874e-04)
+ (769, 1.623e-04)
+ (1793, 4.442e-05)
+ (4097, 1.207e-05)
+ (9217, 3.261e-06)
+ };
+
+ \addplot plot coordinates {
+ (7, 8.472e-02)
+ (31, 3.044e-02)
+ (111, 1.022e-02)
+ (351, 3.303e-03)
+ (1023, 1.039e-03)
+ (2815, 3.196e-04)
+ (7423, 9.658e-05)
+ (18943, 2.873e-05)
+ (47103, 8.437e-06)
+ };
+
+ \addplot plot coordinates {
+ (9, 7.881e-02)
+ (49, 3.243e-02)
+ (209, 1.232e-02)
+ (769, 4.454e-03)
+ (2561, 1.551e-03)
+ (7937, 5.236e-04)
+ (23297, 1.723e-04)
+ (65537, 5.545e-05)
+ (178177, 1.751e-05)
+ };
+
+ \addplot plot coordinates {
+ (11, 6.887e-02)
+ (71, 3.177e-02)
+ (351, 1.341e-02)
+ (1471, 5.334e-03)
+ (5503, 2.027e-03)
+ (18943, 7.415e-04)
+ (61183, 2.628e-04)
+ (187903, 9.063e-05)
+ (553983, 3.053e-05)
+ };
+
+ \addplot plot coordinates {
+ (13, 5.755e-02)
+ (97, 2.925e-02)
+ (545, 1.351e-02)
+ (2561, 5.842e-03)
+ (10625, 2.397e-03)
+ (40193, 9.414e-04)
+ (141569, 3.564e-04)
+ (471041, 1.308e-04)
+ (1496065, 4.670e-05)
+ };
+ \legend{$d=2$\\$d=3$\\$d=4$\\$d=5$\\$d=6$\\}
+}%
+{%
+\tikzstyle{every axis legend}+=
+ [at={(0.03,0.03)},anchor=south west]%
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+}
+
+\subsubsection{Horizontal Legends}
+\begin{lstlisting}
+\tikzstyle{every axis legend}+=
+ [at={(0.5,0.98)},anchor=north]%
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ legend columns=2,
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \addplot plot coordinates {
+ (5, 8.312e-02)
+ (17, 2.547e-02)
+ (49, 7.407e-03)
+ (129, 2.102e-03)
+ (321, 5.874e-04)
+ (769, 1.623e-04)
+ (1793, 4.442e-05)
+ (4097, 1.207e-05)
+ (9217, 3.261e-06)
+ };
+
+ ....
+
+ \legend{$d=2$\\$d=3$\\$d=4$\\$d=5$\\$d=6$\\}
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+{%
+\tikzstyle{every axis legend}+=
+ [at={(0.5,0.98)},anchor=north]%
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ legend columns=2,
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+}
+
+\subsubsection{Horizontal Legends (2)}
+\begin{lstlisting}
+\tikzstyle{every axis legend}+=
+ [at={(0.5,-0.2)},anchor=north]%
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ legend columns=-1,
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \addplot plot coordinates {
+ (5, 8.312e-02)
+ (17, 2.547e-02)
+ (49, 7.407e-03)
+ (129, 2.102e-03)
+ (321, 5.874e-04)
+ (769, 1.623e-04)
+ (1793, 4.442e-05)
+ (4097, 1.207e-05)
+ (9217, 3.261e-06)
+ };
+
+ ....
+
+ \legend{$d=2$\\$d=3$\\$d=4$\\$d=5$\\$d=6$\\}
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+{%
+\tikzstyle{every axis legend}+=
+ [at={(0.5,-0.2)},anchor=north]%
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ legend columns=-1,
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+}
+
+\subsubsection{Modifying legend spacing}
+\label{sec:legendexamples:cols}%
+\begin{lstlisting}
+\tikzstyle{every axis legend}+=
+ [at={(0.5,1.02)},anchor=south,inner sep=0pt]%
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ legend columns=-1,
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \addplot plot coordinates {
+ (5, 8.312e-02)
+ (17, 2.547e-02)
+ (49, 7.407e-03)
+ (129, 2.102e-03)
+ (321, 5.874e-04)
+ (769, 1.623e-04)
+ (1793, 4.442e-05)
+ (4097, 1.207e-05)
+ (9217, 3.261e-06)
+ };
+
+ ....
+
+ \legend{$d=2$\\$d=3$\\$d=4$\\$d=5$\\$d=6$\\}
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+{%
+\tikzstyle{every axis legend}+=
+ [at={(0.5,0.98)},anchor=north,inner sep=0pt]%
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ legend columns=-1,
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+}
+
+\subsubsection{Modifying legend's small plots}
+\label{sec:legendexamples:plotpos}%
+\begin{lstlisting}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ legend plot pos=right,
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \addplot plot coordinates {
+ (5, 8.312e-02)
+ (17, 2.547e-02)
+ (49, 7.407e-03)
+ (129, 2.102e-03)
+ (321, 5.874e-04)
+ (769, 1.623e-04)
+ (1793, 4.442e-05)
+ (4097, 1.207e-05)
+ (9217, 3.261e-06)
+ };
+
+ ....
+
+ \legend{$d=2$\\$d=3$\\$d=4$\\$d=5$\\$d=6$\\}
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+{%
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ legend plot pos=right,
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+}
+
+\subsection{Font size and line width}
+\begin{lstlisting}
+\tikzstyle{every axis legend}+=%
+ [at={(0.03,0.03)},anchor=south west]%
+\tikzstyle{every tick}+=[line width=0.6pt]%
+\begin{tikzpicture}[font=\large,line width=1pt]
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \addplot ....
+ ...
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+
+{%
+\tikzstyle{every axis legend}+=
+ [at={(0.03,0.03)},anchor=south west]%
+\tikzstyle{every tick}+=[line width=0.6pt]
+\begin{center}
+\begin{tikzpicture}[font=\large,line width=1pt]
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+}%
+
+\subsection{Changing line specifications}
+\subsubsection{Using another, predefined list}
+{%
+\begin{lstlisting}
+\listcopy\blackwhiteplotspeclist\to\autoplotspeclist%
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ ...
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+
+\listcopy\blackwhiteplotspeclist\to\autoplotspeclist%
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+
+\subsubsection{Defining new lists}
+\begin{lstlisting}
+% will cycle through these three elements:
+\listnew{\autoplotspeclist}{%
+ red,dotted,mark=-,mark options={solid}\\%
+ black,dashed,mark=pentagon,mark options={solid}\\%
+ mark options={fill=blue!40},mark=diamond*,blue\\%
+}%
+\tikzstyle{every axis legend}+=%
+ [at={(1.03,1)},anchor=north west]%
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ ...
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+
+\listnew{\autoplotspeclist}{%
+ red,dotted,mark=-,mark options={solid}\\%
+ black,dashed,mark=pentagon,mark options={solid}\\%
+ mark options={fill=blue!40},mark=diamond*,blue\\%
+}%
+\tikzstyle{every axis legend}+=%
+ [at={(1.03,1)},anchor=north west]%
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+}%
+
+\subsection{Changing the ticks}
+\subsubsection{Placing ticks at $10^i$}
+\begin{lstlisting}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xtickten={0,2,3,4,6,...,10},% place tickmarks at 10^0, 10^2,...
+ ytickten={-6,-4,...,2},
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ ....
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xtickten={0,2,3,4,6,...,10},
+ ytickten={-6,-4,...,2},
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+
+\subsubsection{Placing ticks anywhere}
+\begin{lstlisting}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xtick={12,9897,1468864}
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ ....
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xtick={12,9897,1468864},%2.5,9.2,14.2},
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+
+\subsection{Annotating plots}
+\label{sec:annot:plot}%
+\subsubsection{Example: Placing Data Cursors}
+\begin{lstlisting}
+\tikzstyle{every pin}=[fill=white,draw=black,font=\footnotesize]
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+
+ ....
+
+ \addplot plot coordinates {
+ (11, 6.887e-02)
+ (71, 3.177e-02)
+ (351, 1.341e-02)
+ (1471, 5.334e-03)
+ (5503, 2.027e-03)
+ (18943, 7.415e-04)
+ (61183, 2.628e-04)
+ (187903, 9.063e-05)
+ (553983, 3.053e-05)
+ };
+ ...
+
+ \axispath\node[coordinate,pin=above:Bad!]
+ at (axis cs:5503,2.027e-03) {};
+ \axispath\node[coordinate,pin=above right:Good!]
+ at (axis cs:187903,9.063e-05) {};
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+\begin{center}
+{
+\tikzstyle{every pin}=[fill=white,draw=black,font=\footnotesize]
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error}
+ ]
+ \plots
+
+ \axispath\node[coordinate,pin=above:Bad!]
+ at (axis cs:5503,2.027e-03) {};
+ \axispath\node[coordinate,pin=above right:Good!]
+ at (axis cs:187903,9.063e-05) {};
+ \end{loglogaxis}
+\end{tikzpicture}
+}
+\end{center}
+
+One remark: the \lstinline!\axispath! prefix is necessary because neither axis nor plots will be drawn until the $x$- and $y$-limits have been determined. All drawing commands are postponed until \lstinline!\end{axis}! (unless you explicitly provide the options \lstinline!xmin!, \lstinline!xmax!, \lstinline!ymin! and \lstinline!ymax!).
+
+\subsubsection{Example: Slopes of line segments}
+\begin{lstlisting}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel=\textsc{Dof},
+ ylabel=$L_2$ Error
+ ]
+ \axispath\draw
+ (axis cs:1793,4.442e-05)
+ |- (axis cs:4097,1.207e-05)
+ node[near start,left] {$\frac{dy}{dx} = -1.58$};
+
+ \addplot plot coordinates {
+ (5, 8.312e-02)
+ (17, 2.547e-02)
+ (49, 7.407e-03)
+ (129, 2.102e-03)
+ (321, 5.874e-04)
+ (769, 1.623e-04)
+ (1793, 4.442e-05)
+ (4097, 1.207e-05)
+ (9217, 3.261e-06)
+ };
+ ...
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel=\textsc{Dof},
+ ylabel=$L_2$ Error
+ ]
+ \axispath\draw
+ (axis cs:1793,4.442e-05)
+ |- (axis cs:4097,1.207e-05)
+ node[near start,left] {$\frac{dy}{dx} = -1.58$};
+ \plots
+
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+
+\subsection{Vertical alignment with the \texttt{baseline} option}
+\label{sec:align}%
+The default axis anchor is \texttt{south west}, which means that the picture coordinate $(0,0)$ is the lower left corner of the axis. As a consequence, the \Tikz\ option ``\texttt{baseline}'' allows vertical alignment of adjacent plots, see figure~\ref{fig:baseline:example} for an example.
+\begin{figure}
+ \centering
+ \noindent
+ \lstinline!\begin{tikzpicture}...\end{tikzpicture}!:\par
+ \noindent
+ \begin{tikzpicture}%
+ \begin{axis}[width=0.4\linewidth,xlabel=A normal sized $x$ label]
+ \addplot[smooth,blue,mark=*] plot coordinates {
+ (-1, 1)
+ (-0.75, 0.5625)
+ (-0.5, 0.25)
+ (-0.25, 0.0625)
+ (0, 0)
+ (0.25, 0.0625)
+ (0.5, 0.25)
+ (0.75, 0.5625)
+ (1, 1)
+ };
+ \end{axis}
+ \end{tikzpicture}%
+ \hspace{0.15cm}
+ \begin{tikzpicture}%
+ \begin{axis}[width=0.4\linewidth,xlabel={xlabel: $\displaystyle \sum_{i=0}^N n_i $ }]
+ \addplot[smooth,blue,mark=*] plot coordinates {
+ (-1, 1)
+ (-0.75, 0.5625)
+ (-0.5, 0.25)
+ (-0.25, 0.0625)
+ (0, 0)
+ (0.25, 0.0625)
+ (0.5, 0.25)
+ (0.75, 0.5625)
+ (1, 1)
+ };
+ \end{axis}
+ \end{tikzpicture}
+ \hfill
+ \vskip 0.3cm%
+ \noindent
+ \lstinline!\begin{tikzpicture}[baseline]...\end{tikzpicture}!:\par
+ \noindent
+ \begin{tikzpicture}[baseline]%
+ \begin{axis}[width=0.4\linewidth,xlabel=A normal sized $x$ label]
+ \addplot[smooth,blue,mark=*] plot coordinates {
+ (-1, 1)
+ (-0.75, 0.5625)
+ (-0.5, 0.25)
+ (-0.25, 0.0625)
+ (0, 0)
+ (0.25, 0.0625)
+ (0.5, 0.25)
+ (0.75, 0.5625)
+ (1, 1)
+ };
+ \end{axis}
+ \end{tikzpicture}%
+ \hspace{0.15cm}
+ \begin{tikzpicture}[baseline]%
+ \begin{axis}[width=0.4\linewidth,xlabel={xlabel: $\displaystyle \sum_{i=0}^N n_i $ }]
+ \addplot[smooth,blue,mark=*] plot coordinates {
+ (-1, 1)
+ (-0.75, 0.5625)
+ (-0.5, 0.25)
+ (-0.25, 0.0625)
+ (0, 0)
+ (0.25, 0.0625)
+ (0.5, 0.25)
+ (0.75, 0.5625)
+ (1, 1)
+ };
+ \end{axis}
+ \end{tikzpicture}
+ \hfill
+
+ \caption{An example of the \Tikz-``\texttt{baseline}'' option for vertical alignment. Top row: without ``\texttt{baseline}'', bottom row: with ``\texttt{baseline}''.}
+ \label{fig:baseline:example}
+\end{figure}
+
+\subsection{Horizontal Alignment}
+{%
+\label{sec:halign}%
+The last subsection used the \texttt{baseline}-option to allow \emph{vertical} alignment of plots. You can also apply \emph{horizontal} alignment, if you place multiple \texttt{axes} into a single \texttt{tikzpicture} and use the `\texttt{anchor}'-option:
+\def\plots{
+\addplot[red,only marks,mark options={fill=red,scale=0.8},mark=*] plot coordinates {
+ (0.190600, 0.860900)
+ (0.194400, 0.908000)
+ (0.179900, 0.140700)
+ (0.212400, 0.294200)
+ (0.218900, 0.779100)
+ (0.201700, 0.388400)
+ (0.209100, 0.679900)
+ (0.196200, 0.470800)
+ (0.199900, 0.812700)
+ (0.199300, 0.850500)
+ (0.204300, 0.980300)
+ (0.209500, 0.953000)
+ (0.176200, 0.145300)
+ (0.207400, 0.351900)
+ (0.199000, 0.304500)
+ (0.202200, 0.256300)
+ (0.197000, 0.744300)
+ (0.181100, 0.998900)
+ (0.193400, 0.554900)
+ (0.218300, 0.506500)
+ (0.193800, 0.201000)
+ (0.208100, 0.531900)
+ (0.204100, 0.635500)
+ (0.217000, 0.069800)
+ (0.196100, 0.710300)
+ (0.198900, 0.440900)
+ (0.213000, 0.591900)
+ (0.206000, 0.030700)
+ (0.186000, 0.395900)
+ (0.206500, 0.082500)
+ (0.195500, 0.672000)
+ (0.221400, -0.013500)
+ (0.202300, 0.222300)
+ (0.193300, 0.959700)
+};
+\addplot[black,only marks,mark options={fill=black,scale=0.8},mark=square*] plot coordinates {
+ (0.005300, 0.369500)
+ (-0.016100, 0.610000)
+ (-0.007400, 0.252100)
+ (0.002900, 0.699600)
+ (0.010900, 0.232000)
+ (-0.014100, 0.152400)
+ (-0.008000, -0.003100)
+ (-0.009100, 0.639900)
+ (-0.008700, 0.125800)
+ (-0.003700, 0.897400)
+ (0.009600, 0.432200)
+ (-0.009100, 0.770800)
+ (-0.030300, 0.974200)
+ (-0.004000, 0.675900)
+ (-0.002100, 0.089500)
+ (0.003300, 0.319700)
+ (0.006100, 0.863300)
+ (0.000600, 0.263700)
+ (-0.008900, 0.471500)
+ (0.016000, 0.505700)
+ (0.000000, 0.602600)
+ (-0.012300, 0.404400)
+ (-0.007000, 0.911900)
+ (0.006700, 0.747200)
+ (0.009000, 0.825300)
+ (-0.001500, 0.534400)
+ (-0.020600, 0.336300)
+ (0.012600, 0.039800)
+ (0.011600, 0.944100)
+ (-0.003600, 0.068000)
+ (-0.022400, 0.575400)
+ (-0.002900, 0.184500)
+};
+\addplot[blue] plot coordinates {
+ (0.093947, -0.011481)
+ (0.101957, 0.494273)
+ (0.109967, 1.000027)
+};
+}%
+\begin{lstlisting}
+\begin{tikzpicture}
+ \begin{axis}[width=4cm,scale only axis]
+ \addplot[red,only marks,mark options={fill=red,scale=0.8},mark=*] plot coordinates {
+ (0.190600, 0.860900)
+ (0.194400, 0.908000)
+ (0.179900, 0.140700)
+ (0.212400, 0.294200)
+ ....
+ (0.202300, 0.222300)
+ (0.193300, 0.959700)
+ };
+ \addplot[black,only marks,mark options={fill=black,scale=0.8},mark=square*] plot coordinates {
+ (0.005300, 0.369500)
+ (-0.016100, 0.610000)
+ (-0.007400, 0.252100)
+ (0.002900, 0.699600)
+ (0.010900, 0.232000)
+ ....
+ (-0.003600, 0.068000)
+ (-0.022400, 0.575400)
+ (-0.002900, 0.184500)
+ };
+ \addplot[blue] plot coordinates {
+ (0.093947, -0.011481)
+ (0.101957, 0.494273)
+ (0.109967, 1.000027)
+ };
+ \end{axis}
+
+ \draw[thick,gray,->]
+ (0,0) -- (0cm,-0.6cm)
+ node[black,midway,left] {0.6cm$\to$};
+
+ \begin{scope}[yshift=-0.6cm]
+ \begin{axis}[%
+ anchor=north west,
+ width=4cm,scale only axis,
+ height=0.8cm,
+ ytick=\empty
+ ]
+
+ \addplot[red,only marks,mark options={fill=red,scale=0.8},mark=*] plot coordinates {
+ (0.968555, 0)
+ (0.030884, 0)
+ ...
+ (0.468750, 0)
+ (0, 0)
+ };
+ \addplot[black,only marks,mark options={fill=black,scale=0.8},mark=square*] plot coordinates {
+ (0.367188, 0)
+ (0.312500, 0)
+ ...
+ (0.125000, 0)
+ (0.156250, 0)
+ };
+ \end{axis}
+ \end{scope}
+\end{tikzpicture}
+\end{lstlisting}
+The result of this alignment is shown in figure~\ref{fig:halign}.
+
+\begin{figure}
+{\centering
+\begin{minipage}[t]{4.4cm}%
+\vspace{0pt}%
+\centering
+\begin{tikzpicture}
+ \begin{axis}[width=4cm,scale only axis]
+ \plots
+ \end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{axis}[%
+ width=4cm,scale only axis,
+ height=0.8cm,
+ ytick=\empty
+ ]
+
+ \addplot[red,only marks,mark options={fill=red,scale=0.8},mark=*] plot coordinates {
+ (0.968555, 0)
+ (0.030884, 0)
+ (0.750000, 0)
+ (0.468750, 0)
+ (1.000000, 0)
+ (0.030176, 0)
+ (0.750000, 0)
+ (0.468750, 0)
+ (0, 0)
+ };
+ \addplot[black,only marks,mark options={fill=black,scale=0.8},mark=square*] plot coordinates {
+ (0.367188, 0)
+ (0.312500, 0)
+ (0.136719, 0)
+ (0.828125, 0)
+ (0.656250, 0)
+ (0.343750, 0)
+ (0.125000, 0)
+ (0.156250, 0)
+ };
+ \end{axis}
+\end{tikzpicture}
+\end{minipage}
+\hspace{1cm}
+\begin{minipage}[t]{4.4cm}%
+\vspace{0pt}%
+\centering
+\begin{tikzpicture}
+ \begin{axis}[width=4cm,scale only axis]
+ \plots
+ \end{axis}
+
+ \draw[thick,gray,->]
+ (0,0) -- (0cm,-0.6cm)
+ node[black,midway,left] {0.6cm$\to$};
+
+ \begin{scope}[yshift=-0.6cm]
+ \begin{axis}[%
+ anchor=north west,
+ width=4cm,scale only axis,
+ height=0.8cm,
+ ytick=\empty
+ ]
+
+ \addplot[red,only marks,mark options={fill=red,scale=0.8},mark=*] plot coordinates {
+ (0.968555, 0)
+ (0.030884, 0)
+ (0.750000, 0)
+ (0.468750, 0)
+ (1.000000, 0)
+ (0.030176, 0)
+ (0.750000, 0)
+ (0.468750, 0)
+ (0, 0)
+ };
+ \addplot[black,only marks,mark options={fill=black,scale=0.8},mark=square*] plot coordinates {
+ (0.367188, 0)
+ (0.312500, 0)
+ (0.136719, 0)
+ (0.828125, 0)
+ (0.656250, 0)
+ (0.343750, 0)
+ (0.125000, 0)
+ (0.156250, 0)
+ };
+ \end{axis}
+ \end{scope}
+\end{tikzpicture}
+\end{minipage}
+
+}
+ \caption{Demonstration of horizontal alignment with the `\texttt{anchor}' option. Left: two \texttt{tikzpicture}s placed above each other; right: one \texttt{tikzpicture} with horizontal alignment using the `\texttt{anchor}'-option. The source code is in the text.}
+ \label{fig:halign}
+\end{figure}
+}
+
+\subsection{Gridlines}
+\label{sec:gridlines}%
+\begin{lstlisting}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error},
+ grid=major
+ ]
+ ...
+ \end{loglogaxis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error},
+ grid=both
+ ]
+ ...
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{lstlisting}
+\begin{center}
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error},
+ grid=major
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\hfill
+\begin{tikzpicture}
+ \begin{loglogaxis}[
+ xlabel={\textsc{Dof}},
+ ylabel={$L_2$ Error},
+ grid=both
+ ]
+ \plots
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{center}
+
+\endgroup
diff --git a/Master/texmf-dist/doc/latex/pgfplots/pgfplots.importexport.tex b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.importexport.tex
new file mode 100644
index 00000000000..e5a2a81b047
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.importexport.tex
@@ -0,0 +1,44 @@
+\section{Import/Export from other formats}
+There are two (experimental) scripts which may be used to generate \LaTeX-code with plot coordinates or to simplify format conversion. They are not necessary to run \PGFPlots.
+
+\subsection{pgf2pdf.sh}
+This is a unix \texttt{bash}--script which attempts to simplify the workflow of creating PDF-Dokuments for single plots.
+
+\PGF\ provides a method to externalize graphics, meaning to write specific portions of the \LaTeX-file to separate PDF/EPS-files. The script pgf2pdf.sh assumes that portions which need externalization are in files `\texttt{.pgf}' and should be converted to PDF/EPS. Two ways are supported:
+\begin{enumerate}
+ \item Run \LaTeX\ on the complete document and write only the portion of interest,
+ \item Run \LaTeX\ \emph{only} on the `\texttt{.pgf}'-file. This mode requires a \TeX-file which defines all required commands and includes all required packages (a header).
+\end{enumerate}
+
+If you are interested in externalized graphics, you should read\cite[Section~54]{tikz}. You may also type
+\begin{lstlisting}
+ pgf2pdf.sh --help.
+\end{lstlisting}
+This script is experimental.
+
+\subsection{matlab2pgfplots.m}
+This is a matlab (tm) script which attempts to convert a matlab figure to \PGFPlots.
+
+The idea is to
+\begin{itemize}
+ \item use a complete matlab figure as input,
+ \item acquire axis labels, axis scaling (log or normal) and legend entries,
+ \item acquire all plot coordinates
+\end{itemize}
+and write an equivalent \texttt{.pgf} file which typesets the plot with \PGFPlots.
+
+The indention is \emph{not} to simulate matlab. It is a first step for a conversion. Type
+\begin{lstlisting}
+> help matlab2pgfplots
+\end{lstlisting}
+on your matlab prompt for more information about its features and its limitations.
+
+This script is experimental.
+
+\subsection{matlab2pgfplots.sh}
+A \texttt{bash}-script which simply starts matlab and runs
+\begin{lstlisting}
+ f=hgload( 'somefigure.fig' );
+ matlab2pgfplots( 'outputfile.pgf', 'fig', f );
+\end{lstlisting}
+See matlab2pgfplots.m above.
diff --git a/Master/texmf-dist/doc/latex/pgfplots/manual.install.tex b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.install.tex
index df1f42789b6..0761f12be9c 100644
--- a/Master/texmf-dist/doc/latex/pgfplots/manual.install.tex
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.install.tex
@@ -25,16 +25,21 @@ You may also visit~\url{http://www.gnu.org/licenses}.
The \PGFPlots\ package consists of the files
\begin{lstlisting}
latex/pgfplots/pgfplots.sty
-doc/latex/pgfplots/manual.bib
-doc/latex/pgfplots/manual.tex
-doc/latex/pgfplots/manual.pdf
-doc/latex/pgfplots/todo.txt
generic/pgfmathlog/pgfmathlog.sty
generic/liststructure/liststructure.sty
+generic/sciformat/sciformat.sty
+generic/pgfplotshelpers/pgfplotshelpers.sty
+doc/latex/pgfplots/pgfplots.bib
+doc/latex/pgfplots/pgfplots.*tex
+doc/latex/pgfplots/pgfplots.pdf
+doc/latex/pgfplots/todo.txt
+doc/latex/pgfplots/changelog.txt
test/liststructuretest/liststructuretest.tex
test/pgfplotstest/pgfplotstest.tex
test/pgfmathlogtest/pgfmathlogtest.tex
-shellscripts/pgf2pdf.sh
+ext_scripts/pgf2pdf.sh
+ext_scripts/matlab2pgfplots.m
+ext_scripts/matlab2pgfplots.sh
\end{lstlisting}
If is used with
\begin{lstlisting}
diff --git a/Master/texmf-dist/doc/latex/pgfplots/manual.intro.tex b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.intro.tex
index 0a1d34d2ccf..0a1d34d2ccf 100644
--- a/Master/texmf-dist/doc/latex/pgfplots/manual.intro.tex
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.intro.tex
diff --git a/Master/texmf-dist/doc/latex/pgfplots/pgfplots.pdf b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.pdf
new file mode 100644
index 00000000000..824dd8fa874
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.pdf
@@ -0,0 +1,11875 @@
+%PDF-1.4
+%
+5 0 obj
+<< /S /GoTo /D (section.1) >>
+endobj
+8 0 obj
+(Introduction)
+endobj
+9 0 obj
+<< /S /GoTo /D (section.2) >>
+endobj
+12 0 obj
+(Upgrade remarks)
+endobj
+13 0 obj
+<< /S /GoTo /D (section.3) >>
+endobj
+16 0 obj
+(Installation)
+endobj
+17 0 obj
+<< /S /GoTo /D (subsection.3.1) >>
+endobj
+20 0 obj
+(Licensing)
+endobj
+21 0 obj
+<< /S /GoTo /D (subsection.3.2) >>
+endobj
+24 0 obj
+(Prerequisites)
+endobj
+25 0 obj
+<< /S /GoTo /D (subsection.3.3) >>
+endobj
+28 0 obj
+(Files in the Pgfplots-Bundle)
+endobj
+29 0 obj
+<< /S /GoTo /D (subsection.3.4) >>
+endobj
+32 0 obj
+(Assigning the TEXINPUTS Variable)
+endobj
+33 0 obj
+<< /S /GoTo /D (subsection.3.5) >>
+endobj
+36 0 obj
+(Installation into a local texmf-directory)
+endobj
+37 0 obj
+<< /S /GoTo /D (subsection.3.6) >>
+endobj
+40 0 obj
+(Installation into a local TDS compliant texmf-directory)
+endobj
+41 0 obj
+<< /S /GoTo /D (subsection.3.7) >>
+endobj
+44 0 obj
+(If everything else fails...)
+endobj
+45 0 obj
+<< /S /GoTo /D (subsection.3.8) >>
+endobj
+48 0 obj
+(Restrictions for DVI-Viewers and dvipdfm)
+endobj
+49 0 obj
+<< /S /GoTo /D (section.4) >>
+endobj
+52 0 obj
+(Drawing axes and plots)
+endobj
+53 0 obj
+<< /S /GoTo /D (subsection.4.1) >>
+endobj
+56 0 obj
+(A first plot)
+endobj
+57 0 obj
+<< /S /GoTo /D (subsection.4.2) >>
+endobj
+60 0 obj
+(Two plots in the same axis)
+endobj
+61 0 obj
+<< /S /GoTo /D (subsection.4.3) >>
+endobj
+64 0 obj
+(Logarithmic plots)
+endobj
+65 0 obj
+<< /S /GoTo /D (subsection.4.4) >>
+endobj
+68 0 obj
+(Cycling line styles)
+endobj
+69 0 obj
+<< /S /GoTo /D (subsection.4.5) >>
+endobj
+72 0 obj
+(Scaling plots)
+endobj
+73 0 obj
+<< /S /GoTo /D (section.5) >>
+endobj
+76 0 obj
+(Reference)
+endobj
+77 0 obj
+<< /S /GoTo /D (subsection.5.1) >>
+endobj
+80 0 obj
+(The axis--environments)
+endobj
+81 0 obj
+<< /S /GoTo /D (subsection.5.2) >>
+endobj
+84 0 obj
+(Available markers)
+endobj
+85 0 obj
+<< /S /GoTo /D (subsubsection.5.2.1) >>
+endobj
+88 0 obj
+(Markers)
+endobj
+89 0 obj
+<< /S /GoTo /D (subsubsection.5.2.2) >>
+endobj
+92 0 obj
+(Line styles)
+endobj
+93 0 obj
+<< /S /GoTo /D (subsection.5.3) >>
+endobj
+96 0 obj
+(\134addplot[OPTIONS] PATH)
+endobj
+97 0 obj
+<< /S /GoTo /D (subsection.5.4) >>
+endobj
+100 0 obj
+(\134addplot+[OPTIONS] ...)
+endobj
+101 0 obj
+<< /S /GoTo /D (subsection.5.5) >>
+endobj
+104 0 obj
+(\134axispath...;)
+endobj
+105 0 obj
+<< /S /GoTo /D (subsection.5.6) >>
+endobj
+108 0 obj
+(Accessing axis coordinates with axis cs)
+endobj
+109 0 obj
+<< /S /GoTo /D (subsection.5.7) >>
+endobj
+112 0 obj
+(\134addlegendentry\173name\175)
+endobj
+113 0 obj
+<< /S /GoTo /D (subsection.5.8) >>
+endobj
+116 0 obj
+(\134legend[OPTIONS]\173LIST\175)
+endobj
+117 0 obj
+<< /S /GoTo /D (subsubsection.5.8.1) >>
+endobj
+120 0 obj
+(Legend appearance)
+endobj
+121 0 obj
+<< /S /GoTo /D (subsection.5.9) >>
+endobj
+124 0 obj
+(\134autoplotspeclist)
+endobj
+125 0 obj
+<< /S /GoTo /D (subsection.5.10) >>
+endobj
+128 0 obj
+(\134logtologten\173ARG\175)
+endobj
+129 0 obj
+<< /S /GoTo /D (subsection.5.11) >>
+endobj
+132 0 obj
+(\134logten)
+endobj
+133 0 obj
+<< /S /GoTo /D (subsection.5.12) >>
+endobj
+136 0 obj
+(\134prettyprintnumber\173NUM\175)
+endobj
+137 0 obj
+<< /S /GoTo /D (subsection.5.13) >>
+endobj
+140 0 obj
+(\134axispreset\173key=value,key=value\175)
+endobj
+141 0 obj
+<< /S /GoTo /D (subsection.5.14) >>
+endobj
+144 0 obj
+(Axis options)
+endobj
+145 0 obj
+<< /S /GoTo /D (subsubsection.5.14.1) >>
+endobj
+148 0 obj
+([xy]min=COORD, [xy]max=COORD)
+endobj
+149 0 obj
+<< /S /GoTo /D (subsubsection.5.14.2) >>
+endobj
+152 0 obj
+([xy]label=TEXT)
+endobj
+153 0 obj
+<< /S /GoTo /D (subsubsection.5.14.3) >>
+endobj
+156 0 obj
+(title=TEXT)
+endobj
+157 0 obj
+<< /S /GoTo /D (subsubsection.5.14.4) >>
+endobj
+160 0 obj
+([xy]mode=normal|log)
+endobj
+161 0 obj
+<< /S /GoTo /D (subsubsection.5.14.5) >>
+endobj
+164 0 obj
+([xy]tick=\173LIST\175)
+endobj
+165 0 obj
+<< /S /GoTo /D (subsubsection.5.14.6) >>
+endobj
+168 0 obj
+([xy]tickten=\173LIST\175)
+endobj
+169 0 obj
+<< /S /GoTo /D (subsubsection.5.14.7) >>
+endobj
+172 0 obj
+([xy]ticklabels=\173LIST\175)
+endobj
+173 0 obj
+<< /S /GoTo /D (subsubsection.5.14.8) >>
+endobj
+176 0 obj
+([xy]ticklabel=\173COMMAND\175)
+endobj
+177 0 obj
+<< /S /GoTo /D (subsubsection.5.14.9) >>
+endobj
+180 0 obj
+(tickpos=left|right|both)
+endobj
+181 0 obj
+<< /S /GoTo /D (subsubsection.5.14.10) >>
+endobj
+184 0 obj
+([xy]minorticks=true|false)
+endobj
+185 0 obj
+<< /S /GoTo /D (subsubsection.5.14.11) >>
+endobj
+188 0 obj
+([xy]majorticks=true|false)
+endobj
+189 0 obj
+<< /S /GoTo /D (subsubsection.5.14.12) >>
+endobj
+192 0 obj
+(ticks=minor|major|both|none)
+endobj
+193 0 obj
+<< /S /GoTo /D (subsubsection.5.14.13) >>
+endobj
+196 0 obj
+(major tick length=DIMEN)
+endobj
+197 0 obj
+<< /S /GoTo /D (subsubsection.5.14.14) >>
+endobj
+200 0 obj
+(minor tick length=DIMEN)
+endobj
+201 0 obj
+<< /S /GoTo /D (subsubsection.5.14.15) >>
+endobj
+204 0 obj
+([xy]minorgrids=true|false)
+endobj
+205 0 obj
+<< /S /GoTo /D (subsubsection.5.14.16) >>
+endobj
+208 0 obj
+([xy]majorgrids=true|false)
+endobj
+209 0 obj
+<< /S /GoTo /D (subsubsection.5.14.17) >>
+endobj
+212 0 obj
+(grid=minor|major|both|none)
+endobj
+213 0 obj
+<< /S /GoTo /D (subsubsection.5.14.18) >>
+endobj
+216 0 obj
+(enlargelimits=[true|false|auto|VAL])
+endobj
+217 0 obj
+<< /S /GoTo /D (subsubsection.5.14.19) >>
+endobj
+220 0 obj
+(legend columns=NUMBER)
+endobj
+221 0 obj
+<< /S /GoTo /D (subsubsection.5.14.20) >>
+endobj
+224 0 obj
+(legend plot pos=left|right|none)
+endobj
+225 0 obj
+<< /S /GoTo /D (subsubsection.5.14.21) >>
+endobj
+228 0 obj
+(disablelogfilter)
+endobj
+229 0 obj
+<< /S /GoTo /D (subsubsection.5.14.22) >>
+endobj
+232 0 obj
+(disabledatascaling)
+endobj
+233 0 obj
+<< /S /GoTo /D (subsubsection.5.14.23) >>
+endobj
+236 0 obj
+(anchor=NAME)
+endobj
+237 0 obj
+<< /S /GoTo /D (subsubsection.5.14.24) >>
+endobj
+240 0 obj
+(width=DIMEN, height=DIMEN)
+endobj
+241 0 obj
+<< /S /GoTo /D (subsubsection.5.14.25) >>
+endobj
+244 0 obj
+(scale only axis=[true|false])
+endobj
+245 0 obj
+<< /S /GoTo /D (subsubsection.5.14.26) >>
+endobj
+248 0 obj
+(x=DIMEN, y=DIMEN)
+endobj
+249 0 obj
+<< /S /GoTo /D (subsubsection.5.14.27) >>
+endobj
+252 0 obj
+(hide axis=[true|false])
+endobj
+253 0 obj
+<< /S /GoTo /D (subsubsection.5.14.28) >>
+endobj
+256 0 obj
+([xy]filter=CMD)
+endobj
+257 0 obj
+<< /S /GoTo /D (subsection.5.15) >>
+endobj
+260 0 obj
+(execute at begin plot=COMMANDS)
+endobj
+261 0 obj
+<< /S /GoTo /D (subsection.5.16) >>
+endobj
+264 0 obj
+(execute at end plot=COMMANDS)
+endobj
+265 0 obj
+<< /S /GoTo /D (section.6) >>
+endobj
+268 0 obj
+(More examples)
+endobj
+269 0 obj
+<< /S /GoTo /D (subsection.6.1) >>
+endobj
+272 0 obj
+(Legend position and appearance)
+endobj
+273 0 obj
+<< /S /GoTo /D (subsubsection.6.1.1) >>
+endobj
+276 0 obj
+(Legend in the lower left corner)
+endobj
+277 0 obj
+<< /S /GoTo /D (subsubsection.6.1.2) >>
+endobj
+280 0 obj
+(Horizontal Legends)
+endobj
+281 0 obj
+<< /S /GoTo /D (subsubsection.6.1.3) >>
+endobj
+284 0 obj
+(Horizontal Legends \(2\))
+endobj
+285 0 obj
+<< /S /GoTo /D (subsubsection.6.1.4) >>
+endobj
+288 0 obj
+(Modifying legend spacing)
+endobj
+289 0 obj
+<< /S /GoTo /D (subsubsection.6.1.5) >>
+endobj
+292 0 obj
+(Modifying legend's small plots)
+endobj
+293 0 obj
+<< /S /GoTo /D (subsection.6.2) >>
+endobj
+296 0 obj
+(Font size and line width)
+endobj
+297 0 obj
+<< /S /GoTo /D (subsection.6.3) >>
+endobj
+300 0 obj
+(Changing line specifications)
+endobj
+301 0 obj
+<< /S /GoTo /D (subsubsection.6.3.1) >>
+endobj
+304 0 obj
+(Using another, predefined list)
+endobj
+305 0 obj
+<< /S /GoTo /D (subsubsection.6.3.2) >>
+endobj
+308 0 obj
+(Defining new lists)
+endobj
+309 0 obj
+<< /S /GoTo /D (subsection.6.4) >>
+endobj
+312 0 obj
+(Changing the ticks)
+endobj
+313 0 obj
+<< /S /GoTo /D (subsubsection.6.4.1) >>
+endobj
+316 0 obj
+(Placing ticks at 10i)
+endobj
+317 0 obj
+<< /S /GoTo /D (subsubsection.6.4.2) >>
+endobj
+320 0 obj
+(Placing ticks anywhere)
+endobj
+321 0 obj
+<< /S /GoTo /D (subsection.6.5) >>
+endobj
+324 0 obj
+(Annotating plots)
+endobj
+325 0 obj
+<< /S /GoTo /D (subsubsection.6.5.1) >>
+endobj
+328 0 obj
+(Example: Placing Data Cursors)
+endobj
+329 0 obj
+<< /S /GoTo /D (subsubsection.6.5.2) >>
+endobj
+332 0 obj
+(Example: Slopes of line segments)
+endobj
+333 0 obj
+<< /S /GoTo /D (subsection.6.6) >>
+endobj
+336 0 obj
+(Vertical alignment with the baseline option)
+endobj
+337 0 obj
+<< /S /GoTo /D (subsection.6.7) >>
+endobj
+340 0 obj
+(Horizontal Alignment)
+endobj
+341 0 obj
+<< /S /GoTo /D (subsection.6.8) >>
+endobj
+344 0 obj
+(Gridlines)
+endobj
+345 0 obj
+<< /S /GoTo /D (section.7) >>
+endobj
+348 0 obj
+(Import/Export from other formats)
+endobj
+349 0 obj
+<< /S /GoTo /D (subsection.7.1) >>
+endobj
+352 0 obj
+(pgf2pdf.sh)
+endobj
+353 0 obj
+<< /S /GoTo /D (subsection.7.2) >>
+endobj
+356 0 obj
+(matlab2pgfplots.m)
+endobj
+357 0 obj
+<< /S /GoTo /D (subsection.7.3) >>
+endobj
+360 0 obj
+(matlab2pgfplots.sh)
+endobj
+361 0 obj
+<< /S /GoTo /D [362 0 R /Fit ] >>
+endobj
+387 0 obj <<
+/Length 1580
+/Filter /FlateDecode
+>>
+stream
+xXKs6WVp&"3V2&9$aB
+q<=w,Jf' vILHy>LNiPE2]$TK\HLtEu
+4UqТiCuI!*&~X.6Uw/H0 J$XSIUL٦{aeBal3g1,0c
++͂UkޖVt*
+$yyH)_xD<07+!M44ˁRΠq?7o(! 7˶GY {v!v}YE?2]:*0,K;3u7xa|!>6{hRM/#<,sޚ|,ni!^/@ ʓd OY#eOt6tCuvY‡ $Qs9t*Lӑ8{uzzqwwS6vyc?:^Pm #)) &&WLo[Ui
+JQqD,$z}GhCU@S`нU(
+i˱ E#*r7shNO(]aD/w
+w hH$Vzz=JG=Bﯪ^EB>{>,`.<<Hf=|<q$ ]2,Lf듷I2p\]'K,Urq[rk)KZ|/$7+aQ1(W}y2]bhmᡶY]6uf1ͦ2#Zg_vt6A5TѾ
+endstream
+endobj
+362 0 obj <<
+/Type /Page
+/Contents 387 0 R
+/Resources 386 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 402 0 R
+/Annots [ 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 363 0 R ]
+>> endobj
+364 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [123.806 400.995 203.908 409.906]
+/Subtype /Link
+/A << /S /GoTo /D (section.1) >>
+>> endobj
+365 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [123.806 377.14 227.743 387.988]
+/Subtype /Link
+/A << /S /GoTo /D (section.2) >>
+>> endobj
+366 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [123.806 357.16 197.662 366.071]
+/Subtype /Link
+/A << /S /GoTo /D (section.3) >>
+>> endobj
+367 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 343.267 204.254 354.005]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.1) >>
+>> endobj
+368 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 331.312 219.586 342.05]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.2) >>
+>> endobj
+369 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 319.357 286.225 330.205]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.3) >>
+>> endobj
+370 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 307.402 319.157 318.25]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.4) >>
+>> endobj
+371 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 295.447 340.881 306.295]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.5) >>
+>> endobj
+372 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 283.491 410.758 294.34]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.6) >>
+>> endobj
+373 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 271.536 267.296 282.384]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.7) >>
+>> endobj
+374 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 259.954 354.081 270.429]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.8) >>
+>> endobj
+375 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [123.806 237.663 258.442 248.511]
+/Subtype /Link
+/A << /S /GoTo /D (section.4) >>
+>> endobj
+376 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 225.708 212.169 236.556]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.1) >>
+>> endobj
+377 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 213.753 281.16 224.601]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+378 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 201.798 240.812 212.646]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.3) >>
+>> endobj
+379 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 189.843 242.638 200.691]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.4) >>
+>> endobj
+380 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 177.887 219.06 188.736]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.5) >>
+>> endobj
+363 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 1]
+/Rect [139.049 159.456 385.425 170.914]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://wissrech.ins.uni-bonn.de/people/feuersaenger)>>
+>> endobj
+388 0 obj <<
+/D [362 0 R /XYZ 124.802 740.998 null]
+>> endobj
+389 0 obj <<
+/D [362 0 R /XYZ 124.802 716.092 null]
+>> endobj
+397 0 obj <<
+/D [362 0 R /XYZ 124.802 414.044 null]
+>> endobj
+386 0 obj <<
+/Font << /F15 390 0 R /F16 391 0 R /F17 392 0 R /F24 393 0 R /F39 394 0 R /F40 395 0 R /F42 396 0 R /F43 398 0 R /F8 399 0 R /F50 400 0 R /F25 401 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+450 0 obj <<
+/Length 1830
+/Filter /FlateDecode
+>>
+stream
+xoHW?tCڤBRtR6ֱ5:$ KqY33ߙY`kԂOo`GJZ
+(yB qK@Vuf¬}tt1W\~Q./@E(Ɗ"q?6/& OG,?$gYj,at s$)? pge8%B~#G
+ӝBXZi#( PЍE nD+R38 FVmx(Nx]hfrI`Uc[3o0eɜhfgK&)\< 8G}n ~(|[
+c%MD;ԛz]]8_V7~}
+l,QYlJb4er!қqNsͮBwwtb;fއo=k䜵Ps6sWa{%?{Mn\sӾ9sbyC6  LkZJGt\Yꝯc|R_gDŊ`qfjlv87Q|?:͇(J,s:␟(ӼeΘ_Suj&So7l\@di~?GWAѫ<^zDUN0?iAvz^eR q,Gl)R9󦍭[+_YcGńQ&YB&oz(]'4U
+fa8ra=
+endstream
+endobj
+449 0 obj <<
+/Type /Page
+/Contents 450 0 R
+/Resources 448 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 402 0 R
+/Annots [ 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R 418 0 R 419 0 R 420 0 R 421 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R ]
+>> endobj
+381 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [123.806 705.133 190.016 714.044]
+/Subtype /Link
+/A << /S /GoTo /D (section.5) >>
+>> endobj
+382 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 693.177 263.975 702.088]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.1) >>
+>> endobj
+383 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 681.222 241.808 690.133]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.2) >>
+>> endobj
+384 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 669.267 230.794 678.178]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.2.1) >>
+>> endobj
+385 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 655.375 241.725 666.223]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.2.2) >>
+>> endobj
+403 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 642.866 294.167 654.821]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.3) >>
+>> endobj
+404 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 630.911 294.167 642.866]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.4) >>
+>> endobj
+405 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 618.956 240.369 630.911]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.5) >>
+>> endobj
+406 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 607.554 346.609 618.402]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.6) >>
+>> endobj
+407 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 595.045 286.197 607.001]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.7) >>
+>> endobj
+408 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 583.09 292.174 595.045]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.8) >>
+>> endobj
+409 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 571.689 279.002 582.537]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.8.1) >>
+>> endobj
+410 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 559.18 264.279 571.135]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.9) >>
+>> endobj
+411 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 547.225 262.287 559.18]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.10) >>
+>> endobj
+412 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 535.27 204.503 547.225]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.11) >>
+>> endobj
+413 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 523.314 298.152 535.27]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.12) >>
+>> endobj
+414 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 511.359 351.95 523.314]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.13) >>
+>> endobj
+415 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 499.958 218.008 510.695]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.14) >>
+>> endobj
+416 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 488.002 357.042 498.537]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.1) >>
+>> endobj
+417 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 476.42 279.223 486.397]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.2) >>
+>> endobj
+418 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 465.905 255.313 474.627]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.3) >>
+>> endobj
+419 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 451.583 305.901 463.539]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.4) >>
+>> endobj
+420 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 439.628 283.208 451.583]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.5) >>
+>> endobj
+421 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 427.673 301.141 439.628]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.6) >>
+>> endobj
+422 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 415.718 319.074 427.673]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.7) >>
+>> endobj
+423 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 403.763 331.029 415.718]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.8) >>
+>> endobj
+424 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 391.808 326.601 403.763]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.9) >>
+>> endobj
+425 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 379.852 341.766 391.808]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.10) >>
+>> endobj
+426 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 367.897 341.766 379.852]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.11) >>
+>> endobj
+427 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 355.942 347.301 367.897]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.12) >>
+>> endobj
+428 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 344.913 333.021 355.075]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.13) >>
+>> endobj
+429 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 332.958 333.021 343.12]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.14) >>
+>> endobj
+430 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 320.077 341.766 332.032]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.15) >>
+>> endobj
+431 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 308.121 341.766 320.077]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.16) >>
+>> endobj
+432 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 296.166 341.323 308.121]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.17) >>
+>> endobj
+433 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 284.211 395.122 296.166]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.18) >>
+>> endobj
+434 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 273.182 321.066 283.159]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.19) >>
+>> endobj
+435 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 260.301 374.422 272.256]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.20) >>
+>> endobj
+436 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 249.272 291.178 259.434]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.21) >>
+>> endobj
+437 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 237.317 303.133 247.479]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.22) >>
+>> endobj
+438 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 226.801 261.29 235.339]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.23) >>
+>> endobj
+439 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 213.034 339.11 223.568]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.24) >>
+>> endobj
+440 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 200.525 359.699 212.48]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.25) >>
+>> endobj
+441 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 189.123 285.311 199.473]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.26) >>
+>> endobj
+442 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 176.615 323.833 188.57]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.27) >>
+>> endobj
+443 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 165.586 279.223 175.748]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.28) >>
+>> endobj
+444 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 153.631 342.984 163.793]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.15) >>
+>> endobj
+445 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 141.676 331.029 151.653]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.16) >>
+>> endobj
+451 0 obj <<
+/D [449 0 R /XYZ 124.802 740.998 null]
+>> endobj
+448 0 obj <<
+/Font << /F43 398 0 R /F8 399 0 R /F14 452 0 R /F50 400 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+477 0 obj <<
+/Length 1960
+/Filter /FlateDecode
+>>
+stream
+xY[D~﯈xa,a|C@[TZ\gֱtw3s쬓Mٲs|j>[#Nߞ?:{,D&LHe\RDBK01{Ѵ&U*֛tA(9SigO+(z
+qL E"djJ ,mjUw|1SE]9la?<mȿf
+ˎ`|S5=BMLJ~
+u>HL >bP0
+ <ļU+>EQkP/|m5-{)!(yUCѼYf6>pxKN WM
+<7EeúٽOIsq291Z㚍/,hJsT$qH*/d2f}ِix*lfzd$g=bܔd~kC4ܫCLDEZ5 %YgOƶ/-f-\MM.d d8$%r!q/U3oJ7LǤd\o$y."/ttLl9!T)J9ZNQ?\j[Jm@'oK;ϤWM NXub A[;74KSy>T:r 2S\ u:2/m>+j;bfUT` ֨{ht~?
+4:{|eiؘ ˹̕+mc1fb=Uԡ]B[h9V 0uX WXBIlQ|pmmiP`
+I Ѻu9lݯfՊc N>l>L+.؃l]Xp6YTM_-RX"q&_cD"֒3Pk)أ@2jBk $M4u>;4U%wa)UAt;vʲyq\7KhL])T%T}!]O߹Ω78d /Q0oCLϞNzk;ՠF
+莂<c!#iE=pǟتsw= $4*4(痴̝
+O
+B 5&&=s( qGqI
+w*o+CJ:"}|!dȮ81wY6js1hWCGA |SA#$ iB(
+#{{Ɵ&pysbWQ>],69NOCi#dKбu'Z5
+endstream
+endobj
+476 0 obj <<
+/Type /Page
+/Contents 477 0 R
+/Resources 475 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 402 0 R
+/Annots [ 446 0 R 447 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R ]
+>> endobj
+446 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [123.806 703.195 216.867 714.044]
+/Subtype /Link
+/A << /S /GoTo /D (section.6) >>
+>> endobj
+447 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 691.24 304.462 702.088]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.1) >>
+>> endobj
+453 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 679.285 329.424 690.133]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.1.1) >>
+>> endobj
+454 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 667.33 279.334 678.178]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.1.2) >>
+>> endobj
+455 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 654.821 295.385 666.776]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.1.3) >>
+>> endobj
+456 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 643.42 306.288 654.268]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.1.4) >>
+>> endobj
+457 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 631.464 327.985 642.313]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.1.5) >>
+>> endobj
+458 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 621.446 268.735 630.357]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.2) >>
+>> endobj
+459 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 607.554 284.703 618.402]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.3) >>
+>> endobj
+460 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 595.599 324.387 606.447]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.3.1) >>
+>> endobj
+461 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 583.644 272.996 594.492]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.3.2) >>
+>> endobj
+462 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 571.689 245.627 582.537]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.4) >>
+>> endobj
+463 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 559.733 279.856 571.893]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.4.1) >>
+>> endobj
+464 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 547.778 295.385 558.626]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.4.2) >>
+>> endobj
+465 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 535.823 237.601 546.671]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.5) >>
+>> endobj
+466 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 523.868 334.488 534.716]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.5.1) >>
+>> endobj
+467 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [161.664 511.913 340.853 522.761]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.5.2) >>
+>> endobj
+468 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 499.958 365.649 510.806]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.6) >>
+>> endobj
+469 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 488.002 257.776 498.851]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.7) >>
+>> endobj
+470 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 477.984 203.106 486.895]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.8) >>
+>> endobj
+471 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [123.806 453.576 316.618 465.531]
+/Subtype /Link
+/A << /S /GoTo /D (section.7) >>
+>> endobj
+472 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 442.174 208.82 453.022]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.1) >>
+>> endobj
+473 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 430.219 244.797 441.067]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.2) >>
+>> endobj
+474 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [138.75 418.264 245.959 429.112]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.7.3) >>
+>> endobj
+478 0 obj <<
+/D [476 0 R /XYZ 124.802 740.998 null]
+>> endobj
+6 0 obj <<
+/D [476 0 R /XYZ 124.802 404.247 null]
+>> endobj
+10 0 obj <<
+/D [476 0 R /XYZ 124.802 277.749 null]
+>> endobj
+481 0 obj <<
+/D [476 0 R /XYZ 124.802 210.1 null]
+>> endobj
+482 0 obj <<
+/D [476 0 R /XYZ 124.802 160.287 null]
+>> endobj
+483 0 obj <<
+/D [476 0 R /XYZ 149.709 162.224 null]
+>> endobj
+475 0 obj <<
+/Font << /F43 398 0 R /F8 399 0 R /F10 479 0 R /F50 400 0 R /F42 396 0 R /F52 480 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+489 0 obj <<
+/Length 1569
+/Filter /FlateDecode
+>>
+stream
+xڕn6_GiiQԵ"2ti8(dȒ&Isx(6s,c&oFc,`0Љ0ƃlzS|c%/YC\.d1c_eW';G;e ]šG}CdUЍY=\ϒIjD;B;Q*QKPW}BO*)f(Էt)5p/ !{;FYR!aJTl> \s>[7"1?Lz>mN v@Cn*YV_Cj6+BM5,|C@7јuR4^%*+Ϝ(7V !Tͳ|XzIdysmy'!7&K#zVV!=JtFéN@) B%EszMk
+7TMV,j7@)""S%E@Vu^<k85\'1I-C&4)Qu6]+C)BqkSUI7Z3YpLb( ܔW 9~d!k ^R EbXU5K,BNMqLsΉ:)myL^( KʵdL[OaY7?_
+;X8<J
+Yx?.rs|(GUNպH4u{:AEmR<ns2ͦ}DB8i_ ` \ ! OT'*YveR,$;4z~8!5pDVߧ2s|Q4iU><ǚk8OnM3 `2\0^Km,J;I}a˿|;@18x{7$
+endstream
+endobj
+488 0 obj <<
+/Type /Page
+/Contents 489 0 R
+/Resources 487 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 402 0 R
+/Annots [ 484 0 R 485 0 R 486 0 R ]
+>> endobj
+484 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [203.618 656.249 218.34 665.16]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.5) >>
+>> endobj
+485 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [239.04 656.249 253.763 665.16]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.6) >>
+>> endobj
+486 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 1]
+/Rect [207.769 441.28 371.156 452.128]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.gnu.org/licenses)>>
+>> endobj
+490 0 obj <<
+/D [488 0 R /XYZ 124.802 740.998 null]
+>> endobj
+491 0 obj <<
+/D [488 0 R /XYZ 124.802 716.092 null]
+>> endobj
+492 0 obj <<
+/D [488 0 R /XYZ 149.709 718.084 null]
+>> endobj
+493 0 obj <<
+/D [488 0 R /XYZ 124.802 693.277 null]
+>> endobj
+494 0 obj <<
+/D [488 0 R /XYZ 124.802 653.492 null]
+>> endobj
+14 0 obj <<
+/D [488 0 R /XYZ 124.802 622.971 null]
+>> endobj
+18 0 obj <<
+/D [488 0 R /XYZ 124.802 595.173 null]
+>> endobj
+495 0 obj <<
+/D [488 0 R /XYZ 124.802 471.699 null]
+>> endobj
+496 0 obj <<
+/D [488 0 R /XYZ 124.802 473.636 null]
+>> endobj
+22 0 obj <<
+/D [488 0 R /XYZ 124.802 428.535 null]
+>> endobj
+26 0 obj <<
+/D [488 0 R /XYZ 124.802 382.457 null]
+>> endobj
+498 0 obj <<
+/D [488 0 R /XYZ 124.802 344.607 null]
+>> endobj
+499 0 obj <<
+/D [488 0 R /XYZ 124.802 346.545 null]
+>> endobj
+500 0 obj <<
+/D [488 0 R /XYZ 124.802 334.589 null]
+>> endobj
+501 0 obj <<
+/D [488 0 R /XYZ 124.802 322.634 null]
+>> endobj
+502 0 obj <<
+/D [488 0 R /XYZ 124.802 310.679 null]
+>> endobj
+503 0 obj <<
+/D [488 0 R /XYZ 124.802 298.724 null]
+>> endobj
+504 0 obj <<
+/D [488 0 R /XYZ 124.802 286.769 null]
+>> endobj
+505 0 obj <<
+/D [488 0 R /XYZ 124.802 274.814 null]
+>> endobj
+506 0 obj <<
+/D [488 0 R /XYZ 124.802 262.858 null]
+>> endobj
+507 0 obj <<
+/D [488 0 R /XYZ 124.802 250.903 null]
+>> endobj
+508 0 obj <<
+/D [488 0 R /XYZ 124.802 238.948 null]
+>> endobj
+509 0 obj <<
+/D [488 0 R /XYZ 124.802 226.993 null]
+>> endobj
+510 0 obj <<
+/D [488 0 R /XYZ 124.802 215.038 null]
+>> endobj
+511 0 obj <<
+/D [488 0 R /XYZ 124.802 203.083 null]
+>> endobj
+512 0 obj <<
+/D [488 0 R /XYZ 124.802 191.127 null]
+>> endobj
+513 0 obj <<
+/D [488 0 R /XYZ 124.802 179.172 null]
+>> endobj
+514 0 obj <<
+/D [488 0 R /XYZ 124.802 167.217 null]
+>> endobj
+515 0 obj <<
+/D [488 0 R /XYZ 124.802 132.281 null]
+>> endobj
+516 0 obj <<
+/D [488 0 R /XYZ 124.802 132.281 null]
+>> endobj
+487 0 obj <<
+/Font << /F50 400 0 R /F8 399 0 R /F42 396 0 R /F14 452 0 R /F11 497 0 R /F55 517 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+521 0 obj <<
+/Length 2035
+/Filter /FlateDecode
+>>
+stream
+xYێ6}Wme D}Hl( R4i[l}g8&-s=s gY8QxQpg)KPzƅd:$TtX~܏B{屢ޡ2Gn
+澌ؚlFȫ\$Np]Mk%NiJZ֘l+q:)&FYL`$SZ5HH?XEőq.cэ[֊.rrc[c" 9w.,LV{hϋh/4"<4yi/,[ZG45M
+ 5EQәxL@4hAMboeٱhh6YYSMCDA"SVh T: "xsF ZǛ6{"ԜNX&ѝ/m8_eS!eμ( (JIr|CG2˦rCя^xթ'υb? Kb1"\@_]˒0IJ+rg-!Q
+
+hyX}W7NjQ}:Zb}=mCU9ٝ蒥R%z(%-%%xI5sX $2),A}.&CYv6ȯzJ(fZuir7D8q\Qg`t,htX-b oWҁC"ŢөS,OԭźKw"
+O!dJtARwT{[XRDj!IgQ8!T4mYz91vIÄs;sYULrd^4A1{S3j6$:'
+5S$`HrؗI| (A|TY ĉ|d\qmNШ3̰&k'ݬn^;,Ip&(㏸V(/wDTCMG
+Rh)S.
+HH}
+6DZ/}9ٳ}9-:rg^iKU?$n4'Ap:ز %Vlu/CV@ \( ZI>?amI8$hFH7fan{.~6ukFilo^orss+D'@Z[8JW_; >2 Ppʛ1\^"c`"@v?SO$KS5\YEjT C_&~sW,}!pdP 17LuLt$ 6PwV<ZboWh
+endstream
+endobj
+520 0 obj <<
+/Type /Page
+/Contents 521 0 R
+/Resources 519 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 402 0 R
+/Annots [ 518 0 R ]
+>> endobj
+518 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 1]
+/Rect [215.504 265.406 450.622 275.881]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ctan.org/installationadvice/)>>
+>> endobj
+522 0 obj <<
+/D [520 0 R /XYZ 124.802 740.998 null]
+>> endobj
+30 0 obj <<
+/D [520 0 R /XYZ 124.802 678.296 null]
+>> endobj
+524 0 obj <<
+/D [520 0 R /XYZ 124.802 639.981 null]
+>> endobj
+525 0 obj <<
+/D [520 0 R /XYZ 124.802 641.918 null]
+>> endobj
+526 0 obj <<
+/D [520 0 R /XYZ 124.802 604.116 null]
+>> endobj
+527 0 obj <<
+/D [520 0 R /XYZ 124.802 606.053 null]
+>> endobj
+34 0 obj <<
+/D [520 0 R /XYZ 124.802 502.448 null]
+>> endobj
+38 0 obj <<
+/D [520 0 R /XYZ 124.802 432.136 null]
+>> endobj
+42 0 obj <<
+/D [520 0 R /XYZ 124.802 322.277 null]
+>> endobj
+46 0 obj <<
+/D [520 0 R /XYZ 124.802 240.134 null]
+>> endobj
+519 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F42 396 0 R /F55 517 0 R /F50 400 0 R /F14 452 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+534 0 obj <<
+/Length 1828
+/Filter /FlateDecode
+>>
+stream
+xڵnFХ(kd&F6)0Uc'ȿwfgII6M{vggf=LfY2YzvqrafWea\䳫r&E}j֯<VG
+;p 7u;њpm%"jO'DXnCrolWD\4AȾ^<y5u[9^y&tn@V(<Px&z;P:ݲw=A|tELNqrN/Q}ڮH%)$Ev2a9_\jq^:g\g [, leSt1Vp3Z0@@ Pے%b(&rq<tHWKC
+SjG*=vz8"<J_^½"Z٦>e'\iwX..:61
+{M=l`Q$)CT>4`\% ӤTGŝB#O0
+B{z/G.GO_U9ni6qVٻ0=e椚|)UkcNSqW𜀈feN?M̵fDVg @*R%a=rgF}}q9**CJ<ݾ)i]eN)U{:u%q#9rml#m<&wB`imu#'w-"\:ON"LC2i"L)~zCW\ri3@"3OK/7)pOezzR|VScv':#Ğ=8f1̌gߓ{fΗZ?cѕL5IwѪV<nC_Z-c^?&YoHMdtB9FHx{T c/
+endstream
+endobj
+533 0 obj <<
+/Type /Page
+/Contents 534 0 R
+/Resources 532 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 402 0 R
+/Annots [ 528 0 R 529 0 R 530 0 R ]
+>> endobj
+528 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [306.975 444.777 313.949 453.19]
+/Subtype /Link
+/A << /S /GoTo /D (cite.tikz) >>
+>> endobj
+529 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [334.665 141.303 341.639 152.151]
+/Subtype /Link
+/A << /S /GoTo /D (figure.1) >>
+>> endobj
+530 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [362.632 131.285 369.606 139.697]
+/Subtype /Link
+/A << /S /GoTo /D (cite.tikz) >>
+>> endobj
+535 0 obj <<
+/D [533 0 R /XYZ 124.802 740.998 null]
+>> endobj
+536 0 obj <<
+/D [533 0 R /XYZ 124.802 531.852 null]
+>> endobj
+537 0 obj <<
+/D [533 0 R /XYZ 149.709 534.342 null]
+>> endobj
+538 0 obj <<
+/D [533 0 R /XYZ 149.709 522.387 null]
+>> endobj
+540 0 obj <<
+/D [533 0 R /XYZ 149.709 510.432 null]
+>> endobj
+541 0 obj <<
+/D [533 0 R /XYZ 149.709 498.477 null]
+>> endobj
+50 0 obj <<
+/D [533 0 R /XYZ 124.802 417.002 null]
+>> endobj
+54 0 obj <<
+/D [533 0 R /XYZ 124.802 388.351 null]
+>> endobj
+542 0 obj <<
+/D [533 0 R /XYZ 124.802 351.202 null]
+>> endobj
+543 0 obj <<
+/D [533 0 R /XYZ 124.802 353.139 null]
+>> endobj
+544 0 obj <<
+/D [533 0 R /XYZ 124.802 341.184 null]
+>> endobj
+545 0 obj <<
+/D [533 0 R /XYZ 124.802 329.228 null]
+>> endobj
+546 0 obj <<
+/D [533 0 R /XYZ 124.802 317.273 null]
+>> endobj
+547 0 obj <<
+/D [533 0 R /XYZ 124.802 305.318 null]
+>> endobj
+548 0 obj <<
+/D [533 0 R /XYZ 124.802 293.363 null]
+>> endobj
+549 0 obj <<
+/D [533 0 R /XYZ 124.802 281.408 null]
+>> endobj
+550 0 obj <<
+/D [533 0 R /XYZ 124.802 269.453 null]
+>> endobj
+551 0 obj <<
+/D [533 0 R /XYZ 124.802 257.497 null]
+>> endobj
+552 0 obj <<
+/D [533 0 R /XYZ 124.802 245.542 null]
+>> endobj
+553 0 obj <<
+/D [533 0 R /XYZ 124.802 233.587 null]
+>> endobj
+554 0 obj <<
+/D [533 0 R /XYZ 124.802 221.632 null]
+>> endobj
+555 0 obj <<
+/D [533 0 R /XYZ 124.802 209.677 null]
+>> endobj
+556 0 obj <<
+/D [533 0 R /XYZ 124.802 197.722 null]
+>> endobj
+557 0 obj <<
+/D [533 0 R /XYZ 124.802 185.766 null]
+>> endobj
+558 0 obj <<
+/D [533 0 R /XYZ 124.802 173.811 null]
+>> endobj
+532 0 obj <<
+/Font << /F8 399 0 R /F52 480 0 R /F14 452 0 R /F50 400 0 R /F55 517 0 R /F59 539 0 R /F42 396 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+563 0 obj <<
+/Length 1959
+/Filter /FlateDecode
+>>
+stream
+xXnG}W DN/Yaw7oX4E˄yQHjlϩ鞙nqHJ :UëۊWoOy%*)9ZVhE5[]^jWM"qQXRTJͤF
+>Cjv! \
+*󾵡@^^X(2rs3!W "&R
+e,f\H&es)kvip!?N][ɝ2iFp:gVdȞ{bqҎy}
+aV SN;GW"IOq^貹-\ss_9=we'ggm#Ѡ60-) "-ᡉc&MBFKLG
+KhZGQ~Y8KR˔IdVZb[ Q5!g4Uh؂Ts]Mzl'-k&4Q-pB$ -W>fVZ@QIk1U:,BbC&aL˓Z"GåpUa;i4$QG5Ƥ
+lq~ 30;ԟŗ-f{[JhOg7tܐ\n`+Wt]M*UWMBYGwr}LVWb7FZnԒ+|ǩIM]#ֹ\OOj\x>3ڠ^VNj *
+=.FIM[S .q:`~)kkM0 旘 4N% vϒp*rYβIt!6d&@ڈPSchX~/;
+endstream
+endobj
+562 0 obj <<
+/Type /Page
+/Contents 563 0 R
+/Resources 561 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 590 0 R
+/Annots [ 531 0 R ]
+>> endobj
+531 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [154.552 427.242 161.525 438.09]
+/Subtype /Link
+/A << /S /GoTo /D (figure.2) >>
+>> endobj
+564 0 obj <<
+/D [562 0 R /XYZ 124.802 740.998 null]
+>> endobj
+560 0 obj <<
+/D [562 0 R /XYZ 170.431 516.255 null]
+>> endobj
+58 0 obj <<
+/D [562 0 R /XYZ 124.802 458.527 null]
+>> endobj
+565 0 obj <<
+/D [562 0 R /XYZ 124.802 412.243 null]
+>> endobj
+566 0 obj <<
+/D [562 0 R /XYZ 124.802 412.243 null]
+>> endobj
+567 0 obj <<
+/D [562 0 R /XYZ 124.802 400.288 null]
+>> endobj
+568 0 obj <<
+/D [562 0 R /XYZ 124.802 388.332 null]
+>> endobj
+569 0 obj <<
+/D [562 0 R /XYZ 124.802 376.377 null]
+>> endobj
+570 0 obj <<
+/D [562 0 R /XYZ 124.802 364.422 null]
+>> endobj
+571 0 obj <<
+/D [562 0 R /XYZ 124.802 352.467 null]
+>> endobj
+572 0 obj <<
+/D [562 0 R /XYZ 124.802 340.512 null]
+>> endobj
+573 0 obj <<
+/D [562 0 R /XYZ 124.802 328.557 null]
+>> endobj
+574 0 obj <<
+/D [562 0 R /XYZ 124.802 316.601 null]
+>> endobj
+575 0 obj <<
+/D [562 0 R /XYZ 124.802 304.646 null]
+>> endobj
+576 0 obj <<
+/D [562 0 R /XYZ 124.802 292.691 null]
+>> endobj
+577 0 obj <<
+/D [562 0 R /XYZ 124.802 280.736 null]
+>> endobj
+578 0 obj <<
+/D [562 0 R /XYZ 124.802 268.781 null]
+>> endobj
+579 0 obj <<
+/D [562 0 R /XYZ 124.802 256.826 null]
+>> endobj
+580 0 obj <<
+/D [562 0 R /XYZ 124.802 244.87 null]
+>> endobj
+581 0 obj <<
+/D [562 0 R /XYZ 124.802 232.915 null]
+>> endobj
+582 0 obj <<
+/D [562 0 R /XYZ 124.802 220.96 null]
+>> endobj
+583 0 obj <<
+/D [562 0 R /XYZ 124.802 209.005 null]
+>> endobj
+584 0 obj <<
+/D [562 0 R /XYZ 124.802 197.05 null]
+>> endobj
+585 0 obj <<
+/D [562 0 R /XYZ 124.802 185.095 null]
+>> endobj
+586 0 obj <<
+/D [562 0 R /XYZ 124.802 173.139 null]
+>> endobj
+587 0 obj <<
+/D [562 0 R /XYZ 124.802 161.184 null]
+>> endobj
+588 0 obj <<
+/D [562 0 R /XYZ 124.802 149.229 null]
+>> endobj
+589 0 obj <<
+/D [562 0 R /XYZ 124.802 137.274 null]
+>> endobj
+561 0 obj <<
+/Font << /F8 399 0 R /F14 452 0 R /F52 480 0 R /F50 400 0 R /F42 396 0 R /F55 517 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+596 0 obj <<
+/Length 3297
+/Filter /FlateDecode
+>>
+stream
+xZIoWqpڵW AdaQ̌,){W{M7 pQdWoߪYw۱;uBNk+7t?^urp{a=fr VwiqV
+MϵaeC'蜌EϤC?(N&^zt9vst#*\_|@]iju a&._ #S6˚z1䰼3} k(35|xQjSERx/
+gD$T!W˰r>'gO
+[vgδ3KK(K>zc92ο lC`4y>cZK1>tFR0J}U?X
++,>ΰ]Y|\>E cG8"=^ng|\z>vPq5j>Bg:ZT#SurvɕF/ZA\'Ip]aO<Gj}U߽JWz (w~zɜQ!%^Tb0=YKn0OZt;f#9TV `v t$Spd襱G+"iX.$"E@`F`;Q
+lv)[CPM!M7Q RUxe8HPp崷G7SQ.R6H)1l%&z[T Ł(g tM^)o8b\qM"iqÙ@RZv~ct nIkIRmA, J7A[D! !ڧYpMR|U:O3iyp*e|p=ki;IOL(mvZ3+$oӢ\jLɜvIOxȵF
++98=NCt}h$K4P[+w% A5j
+9\)-]7F_)MCA>oP'8Dž+4@ D@*YW>L:dp v^@+YJx}+'`}K%hE"76g:F`]M D0 %Z)4AHrKӚZ%@ WUZQMW(_:dbUir Vڊ*7 j
+ ia* 49Ap PbKK TV P)xa@;IXԦj>v0{aMm
+B2h o TM.2߸6Bam gfoa Ģ\&77Zh: ]|M[M;
+</gJknRh
+GSdRXQo/C#OrzZ ip6~p:7$|108`!(B_QvQ#h]`+變=ݜfa8ӹ@﷟0-{ޖ`qX^Υ3>}oYQm3x5iR~y ;D5ݏP98QP []H{oz vSI#òNK*?>c*Ĕ/*ύ)n^ƪ2gKGͫ5V( df߮n|&f/fwt|e
+UJvGA>ܭw1x$6QS~`@DPx&mYzfO0yqwefjHQ6xstUqPMAk c;,w.ŚnX!D^V3Lz[RSl#|1gqurJAt[Ifؑ﯂)@~:ɟ``rGW7ø_Wm|>j
+82"Dab*?|h+u1\~zX n_\m_S(,\f"op*mjggz/LSbWB0Aܰ+DĚkiQU9 Yg`JRl64[
+z5.b": ]>eD+c@Y|Z@Pڽ9.#񻽯n|<uv67$~<k>Rs%δ R|pO3}>2g_|kQ}a4՗DT* ~.Ep,G0iu|ܭ
+Z6,C:za[s٭ai㍊ PO 1@a:QgPOvz{s]`?&vn
+endstream
+endobj
+595 0 obj <<
+/Type /Page
+/Contents 596 0 R
+/Resources 594 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 590 0 R
+/Annots [ 592 0 R 593 0 R ]
+>> endobj
+592 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [151.483 369.591 158.457 380.439]
+/Subtype /Link
+/A << /S /GoTo /D (figure.3) >>
+>> endobj
+593 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [254.51 154.398 261.484 165.246]
+/Subtype /Link
+/A << /S /GoTo /D (figure.4) >>
+>> endobj
+597 0 obj <<
+/D [595 0 R /XYZ 124.802 740.998 null]
+>> endobj
+591 0 obj <<
+/D [595 0 R /XYZ 171.322 516.934 null]
+>> endobj
+598 0 obj <<
+/D [595 0 R /XYZ 124.802 472.6 null]
+>> endobj
+599 0 obj <<
+/D [595 0 R /XYZ 124.802 460.645 null]
+>> endobj
+600 0 obj <<
+/D [595 0 R /XYZ 124.802 448.69 null]
+>> endobj
+62 0 obj <<
+/D [595 0 R /XYZ 124.802 413.23 null]
+>> endobj
+601 0 obj <<
+/D [595 0 R /XYZ 124.802 352.654 null]
+>> endobj
+602 0 obj <<
+/D [595 0 R /XYZ 124.802 354.591 null]
+>> endobj
+603 0 obj <<
+/D [595 0 R /XYZ 124.802 342.636 null]
+>> endobj
+604 0 obj <<
+/D [595 0 R /XYZ 124.802 330.681 null]
+>> endobj
+605 0 obj <<
+/D [595 0 R /XYZ 124.802 318.726 null]
+>> endobj
+606 0 obj <<
+/D [595 0 R /XYZ 124.802 306.771 null]
+>> endobj
+607 0 obj <<
+/D [595 0 R /XYZ 124.802 294.816 null]
+>> endobj
+608 0 obj <<
+/D [595 0 R /XYZ 124.802 282.86 null]
+>> endobj
+609 0 obj <<
+/D [595 0 R /XYZ 124.802 270.905 null]
+>> endobj
+610 0 obj <<
+/D [595 0 R /XYZ 124.802 258.95 null]
+>> endobj
+611 0 obj <<
+/D [595 0 R /XYZ 124.802 246.995 null]
+>> endobj
+612 0 obj <<
+/D [595 0 R /XYZ 124.802 235.04 null]
+>> endobj
+613 0 obj <<
+/D [595 0 R /XYZ 124.802 223.084 null]
+>> endobj
+614 0 obj <<
+/D [595 0 R /XYZ 124.802 211.129 null]
+>> endobj
+615 0 obj <<
+/D [595 0 R /XYZ 124.802 149.416 null]
+>> endobj
+616 0 obj <<
+/D [595 0 R /XYZ 124.802 151.353 null]
+>> endobj
+617 0 obj <<
+/D [595 0 R /XYZ 124.802 139.398 null]
+>> endobj
+594 0 obj <<
+/Font << /F8 399 0 R /F14 452 0 R /F50 400 0 R /F55 517 0 R /F42 396 0 R /F11 497 0 R /F10 479 0 R /F7 523 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+622 0 obj <<
+/Length 6621
+/Filter /FlateDecode
+>>
+stream
+x]M7rWQ:4߼]E]EAI҆,T&23 Pz|W@2( ^~w?]pI.T
+w/ڔ7gDDR JhlI^kzEK385
+-K0Q)s
+,zrpRD`࠭AZ%,*+\߄,cJV2YVRdȺddL
+YSCvVUƔd.)8c*e Ӳ9du&C悭}{q3%q \n!g؛p{5=:C8/NIIOȉ)BQ7֠Te8ӝK0GԕΕI)%˘L%;;ƴeauEfRȪ)YdYI]mdu\ǘL%v qӲ9dud<\2ϓ/(k %~WH 򒴃 PKK%$ GLyskw!%ww&IO=Dޠ{ v{8u/KzvŬ']%wHKZ4ӧ.hR^EzneI^.޸2Ғ;%yMki'i҂$]IKe´`]A]T$,BYܥ䭾 jiҒ橄y )!-ywѯ/?Kx
+AC :\BΗM).T^Ȇ٤zpb>mڻN02.|;K:^Qj7`jqpL;Rs8LVƦV,eęɠdL^3*l8FڃIb؂KN︂RJZL$ )yj/%KR񮦾xh<f2(|z/ֹ #?rP \3
+DW c/?{,54qsϯ:89'/ެ)мiIyb MƜ.:*WYWBz<ϗkУ"qZ}ÇO7D::.eS7n+m繊<4ts|!neOW߄c_>?~_>׏:_?UwvɅ`%qLlj-EE
+pZ- lUft[ž,!>)݁ncKetG!B(ϻX"LtKΩylPcKetGJʥm]t,ut OAc!;K]´.[0N͍ұ%L2 I%L2ݳrkvq
+]P}ͯ8|:Zһa
+X)$Ln! X)$L.*_DR&pfxeݵ'mnOt\<Une+T5pqzY8j1 nظ NF{pؓ=
+Kr)][pǟΊL+K8#i1=L1%]\gI.aZW0.F8/cZW0^i][LE'`L
+%g5lmy6ÀJ:KJ{aGFza;c\Ѝ}6c*RaLw:NpR̦AƔd]]K)ˉVL1=$kاN{:IYp`&ƻ9M'mڂ+TfPkKЖ5mL# Nڂ+{M;an'6) PjsNʂ+{Ɂ A[B-LHkIb}ٛ&yo".ƛ
+Mw\ńv2DWv?^ɥw
+m^{ ~0kzACp ^)NJ7I[p`i7}3?JI[p`´mtĠ֖\-kNz06I[p`i',t_cp\-kiؤ<Rxpܚ##v v{;Wnۺwǽ u/oԽjrQG7 NPpeTr0zĘVL!,k@ d\rNm/BZ״:28i 5mL۬v Nڂ+{m[ђg NW#5
+.p,ⰩrV8p}p_vQKhzlP\~AOGγ
+.M-qYP97̣ۣzԌ{PN]ac
+x#:_Q1.k 'ZQ7 (R Kc޸~.춢ioibJa6q%
+ۆ:&_6X/(X9Q|k. Xϰ|m8ťV73fl`T(~,aL
+ 8f3>d#:W 8(B즊a *tt&^5|񣰛ZrvA VPr;~[~ (Ťd詧 qFQD`%ctsp&n.sv=t!1BNl!
+Q~Pg9<~c\?ԿUD"\FvQ8=< "WcwS߳nBdO_eM1w/'煜\Pm'5Ҋ VrT_|r_IJJ#?>^:0U Kܱ?`v{)a,G*OY)N'C\U˙<Ky8+.}\p'=ú
+70d;[vK+~J{
+endstream
+endobj
+621 0 obj <<
+/Type /Page
+/Contents 622 0 R
+/Resources 620 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 590 0 R
+>> endobj
+623 0 obj <<
+/D [621 0 R /XYZ 124.802 740.998 null]
+>> endobj
+618 0 obj <<
+/D [621 0 R /XYZ 259.92 476.027 null]
+>> endobj
+619 0 obj <<
+/D [621 0 R /XYZ 206.592 174.148 null]
+>> endobj
+620 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+627 0 obj <<
+/Length 1153
+/Filter /FlateDecode
+>>
+stream
+xXo6~_alw!/-a{
+ YHMV ;N$K"ݑ}w'>Woί84 dp
+0~Yyq',P0YQ?e>H2*>\log  </tmuxvfue+泅42@ӅLi[B%a)h0$7Ж,A`# 5B@
+э' Q;' %
+ %(ԫ(`H87(PS4*QAӯA?t='AN~>HG)m1#E
+pT
+8C/|^L:deSjŸ8) F"<.i^sV^^TChT"׮jAy-̬>M= ]E2yK#Ui«KMB{(>MSLK#~qCGT8˒$HkN|a7 ά8>;lPj_ۜ7e'wv\
+zҪf"%?emmkg_iԲMNhݳWn^ӶqQVHNi ^nSҳ޹/ ፹YgK~}'yͻ^rBSYH|ZcE__6
+endstream
+endobj
+626 0 obj <<
+/Type /Page
+/Contents 627 0 R
+/Resources 625 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 590 0 R
+>> endobj
+628 0 obj <<
+/D [626 0 R /XYZ 124.802 740.998 null]
+>> endobj
+629 0 obj <<
+/D [626 0 R /XYZ 124.802 718.084 null]
+>> endobj
+630 0 obj <<
+/D [626 0 R /XYZ 124.802 706.129 null]
+>> endobj
+631 0 obj <<
+/D [626 0 R /XYZ 124.802 694.174 null]
+>> endobj
+632 0 obj <<
+/D [626 0 R /XYZ 124.802 682.219 null]
+>> endobj
+633 0 obj <<
+/D [626 0 R /XYZ 124.802 670.263 null]
+>> endobj
+634 0 obj <<
+/D [626 0 R /XYZ 124.802 658.308 null]
+>> endobj
+635 0 obj <<
+/D [626 0 R /XYZ 124.802 646.353 null]
+>> endobj
+636 0 obj <<
+/D [626 0 R /XYZ 124.802 634.398 null]
+>> endobj
+637 0 obj <<
+/D [626 0 R /XYZ 124.802 622.443 null]
+>> endobj
+638 0 obj <<
+/D [626 0 R /XYZ 124.802 610.488 null]
+>> endobj
+639 0 obj <<
+/D [626 0 R /XYZ 124.802 598.532 null]
+>> endobj
+640 0 obj <<
+/D [626 0 R /XYZ 124.802 586.577 null]
+>> endobj
+641 0 obj <<
+/D [626 0 R /XYZ 124.802 574.622 null]
+>> endobj
+642 0 obj <<
+/D [626 0 R /XYZ 124.802 562.667 null]
+>> endobj
+643 0 obj <<
+/D [626 0 R /XYZ 124.802 550.712 null]
+>> endobj
+644 0 obj <<
+/D [626 0 R /XYZ 124.802 538.757 null]
+>> endobj
+645 0 obj <<
+/D [626 0 R /XYZ 124.802 526.801 null]
+>> endobj
+646 0 obj <<
+/D [626 0 R /XYZ 124.802 514.846 null]
+>> endobj
+647 0 obj <<
+/D [626 0 R /XYZ 124.802 502.891 null]
+>> endobj
+648 0 obj <<
+/D [626 0 R /XYZ 124.802 490.936 null]
+>> endobj
+649 0 obj <<
+/D [626 0 R /XYZ 124.802 478.981 null]
+>> endobj
+650 0 obj <<
+/D [626 0 R /XYZ 124.802 467.026 null]
+>> endobj
+651 0 obj <<
+/D [626 0 R /XYZ 124.802 455.07 null]
+>> endobj
+652 0 obj <<
+/D [626 0 R /XYZ 124.802 443.115 null]
+>> endobj
+653 0 obj <<
+/D [626 0 R /XYZ 124.802 431.16 null]
+>> endobj
+654 0 obj <<
+/D [626 0 R /XYZ 124.802 419.205 null]
+>> endobj
+655 0 obj <<
+/D [626 0 R /XYZ 124.802 407.25 null]
+>> endobj
+656 0 obj <<
+/D [626 0 R /XYZ 124.802 395.295 null]
+>> endobj
+657 0 obj <<
+/D [626 0 R /XYZ 124.802 227.198 null]
+>> endobj
+658 0 obj <<
+/D [626 0 R /XYZ 124.802 227.198 null]
+>> endobj
+659 0 obj <<
+/D [626 0 R /XYZ 124.802 215.242 null]
+>> endobj
+660 0 obj <<
+/D [626 0 R /XYZ 124.802 203.287 null]
+>> endobj
+661 0 obj <<
+/D [626 0 R /XYZ 124.802 154.254 null]
+>> endobj
+662 0 obj <<
+/D [626 0 R /XYZ 124.802 156.191 null]
+>> endobj
+663 0 obj <<
+/D [626 0 R /XYZ 124.802 144.236 null]
+>> endobj
+664 0 obj <<
+/D [626 0 R /XYZ 124.802 132.281 null]
+>> endobj
+625 0 obj <<
+/Font << /F50 400 0 R /F55 517 0 R /F8 399 0 R /F14 452 0 R /F11 497 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+668 0 obj <<
+/Length 2843
+/Filter /FlateDecode
+>>
+stream
+x[n}W>Pe<d / h%Z&V$7cS5ӗEU:]U3cu{u!G+;i-ERsV8cſ; z&E!LڻT^ e}wɆ`:+t)}u1WR.}hکh~q :O;\L)t pT~f,h p&>ݛ/cVݛ6^(ys۽worlXzMrgk_ƃ R,=(
+VpLYsIx񜇙p{Ny.:3 CBL|W1fp>{ ybY=lrg{/TzP>AVQFhN{@RpNsٱ犩#˝=c%`R]w3]ŘNwIg{q58=lh:{OCa)i/x:`{:Ew~w1ޞRֵ
+r6xMIFxH3lsoهGYK_+}|x6Fp;4LqU@26#NDbʄI w.xd T M8oYh&aN Pm㪄Id wV…(YHURfӥINXf㺄It w.ȼU1KDp%4L@L(aNZ4|K*_93V`,pƍJ"#;GsبdpSEb{2tPH&;r9R mDYX
+ăHp5rJx<;1Mk9E%@BgIbL2,NҍoڳV&%)g Qlxmd[1IDpF0 -P݊1]l;IAx%LKtАY<U&%IERG A "BF铅p^B@6,Ia4iX;i*PYj ? ,eOۭ~~;=;aO־G]AMD'i [~'Yi צ\MӴ=ni.&IV֟`\00N5aVncRƝ).&)4K|Rk|rh Ds\`l<@UdHY6M}mXG!F4{Rx{g^9
+6$„;톋@y[.K$h@x צ\MӴ $ci.&Io|ȵ)hS4퀇;.Hp6aO$VA~ۉr}'ʞm
+ jErEO++Y\t0U޵Xޠ/Q7'=ƫOS͙I9adRJYº
+6!PMcx.X0C Xk0yT^mh
+`ҧƪnύ8‚#`{["
+/KPWP
+~,63(Zب`8tT]c**jf<a
+n{+
+Zal7*C45bg6>jE UP "KV7d8[0{KmXP{V$8vQe&5ZI0|a*5;(b*cgt< M",wrȆyO/D( Roo9fP8k*m;^B$?Z@L*J/>n*RM7Rf k2̟fWT{^ 0gqr3$烚^W JPST Q ¹m;9jfrucc֑T{#_iAE(ɶG| jXVBXAwTZ[F {Q }*䰅o!UTo٨m<\a^wK?s5h~ 9odR?o1Go<dYէu<-!=rxcaJ5P
+/]\juu7Yѻm90WNB!/'_.>nsc}{90||X_7wjy3ov/$rsH 63 *|G餺-rGWʟ\o+oOwWJ쀿d•S (:)m! ws
+R,qO?-OymtY}:>_v~=KO9#f.׻ү/ XY.Rʦ*
+endstream
+endobj
+667 0 obj <<
+/Type /Page
+/Contents 668 0 R
+/Resources 666 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 590 0 R
+/Annots [ 665 0 R ]
+>> endobj
+665 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [167.614 343.625 174.588 354.473]
+/Subtype /Link
+/A << /S /GoTo /D (figure.5) >>
+>> endobj
+669 0 obj <<
+/D [667 0 R /XYZ 124.802 740.998 null]
+>> endobj
+670 0 obj <<
+/D [667 0 R /XYZ 264.597 515.868 null]
+>> endobj
+671 0 obj <<
+/D [667 0 R /XYZ 124.802 484.043 null]
+>> endobj
+672 0 obj <<
+/D [667 0 R /XYZ 124.802 472.088 null]
+>> endobj
+673 0 obj <<
+/D [667 0 R /XYZ 124.802 460.133 null]
+>> endobj
+674 0 obj <<
+/D [667 0 R /XYZ 124.802 448.178 null]
+>> endobj
+675 0 obj <<
+/D [667 0 R /XYZ 124.802 436.222 null]
+>> endobj
+676 0 obj <<
+/D [667 0 R /XYZ 124.802 424.267 null]
+>> endobj
+677 0 obj <<
+/D [667 0 R /XYZ 124.802 412.312 null]
+>> endobj
+678 0 obj <<
+/D [667 0 R /XYZ 124.802 400.357 null]
+>> endobj
+679 0 obj <<
+/D [667 0 R /XYZ 124.802 388.402 null]
+>> endobj
+680 0 obj <<
+/D [667 0 R /XYZ 124.802 376.447 null]
+>> endobj
+66 0 obj <<
+/D [667 0 R /XYZ 124.802 330.681 null]
+>> endobj
+681 0 obj <<
+/D [667 0 R /XYZ 124.802 280.411 null]
+>> endobj
+682 0 obj <<
+/D [667 0 R /XYZ 124.802 282.348 null]
+>> endobj
+683 0 obj <<
+/D [667 0 R /XYZ 124.802 270.393 null]
+>> endobj
+684 0 obj <<
+/D [667 0 R /XYZ 124.802 258.438 null]
+>> endobj
+685 0 obj <<
+/D [667 0 R /XYZ 124.802 246.483 null]
+>> endobj
+686 0 obj <<
+/D [667 0 R /XYZ 124.802 234.527 null]
+>> endobj
+687 0 obj <<
+/D [667 0 R /XYZ 124.802 222.572 null]
+>> endobj
+688 0 obj <<
+/D [667 0 R /XYZ 124.802 210.617 null]
+>> endobj
+689 0 obj <<
+/D [667 0 R /XYZ 124.802 198.662 null]
+>> endobj
+690 0 obj <<
+/D [667 0 R /XYZ 124.802 186.707 null]
+>> endobj
+691 0 obj <<
+/D [667 0 R /XYZ 124.802 174.752 null]
+>> endobj
+692 0 obj <<
+/D [667 0 R /XYZ 124.802 162.796 null]
+>> endobj
+693 0 obj <<
+/D [667 0 R /XYZ 124.802 150.841 null]
+>> endobj
+694 0 obj <<
+/D [667 0 R /XYZ 124.802 138.886 null]
+>> endobj
+666 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F50 400 0 R /F55 517 0 R /F42 396 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+697 0 obj <<
+/Length 7222
+/Filter /FlateDecode
+>>
+stream
+x]]q}ׯG #A^x yɻYŲ<"YŪ;[B|J}tdXl6ǜ~<oޘ՟kNYRr}~sj7f3 Mv &wz:5,Xx
+=և2KHR *xST0hB:|0Q2T%sJ. 6PUi]G7\%S9u%w.SEuS
+.
+]y)1Si]+R /@Q}wq7jWFdQ8/Q#܉FQcuF+VMҶ7y&s%\)F2T%sJ]H)]ɜK7OQ1+BWpws😳q`NpwBSgKL+tunŘL+tbӓ~ƴ`
+]ݥrTљ1+BWpwE (p<6QJ_5<D j η^Ԙ5ڈͯ3j4&5gaL[`
+=W!A61!cJW2Z-2"t X-}hV%-LJYp`Ӯz&p-R[wi[d֖͠\-&p-R[iǶRKl<RxrH_0+e҂+ A}Wr7kC
+B|ېY":c31A6(ػzX|3&ڒ+%{<T#+W@W} &\i }ڐ7璢&p-R[wiGݾZ*LPkKЖ}n :-J[p`ӎKN>j[cp-R[iŭ`Vʓ)'w_l̋
+g(֯1 \yc{/mŘWcBYRtAs\YJ3]v!v:gbL+ ] r2{ҒO;-' Wj >mȰK5:3\-vXtQ+7>mo1Wy+mڂO;.1&\-gjJ[p`mWpy_s߭F?+3Zpe_ .aMVL!,t[R *ʒ+%{v·my+mڂOZW1Jm޷[¨zWWn}i\i }E7\i }0'4խ\-|G_W؏w+o1 LtȈIqQzT[[HŎRM0ś5<dWSă-,-g6ܘzCP;t<ONK'8ҫ"o1yud*}}^ǽx
+pl2[\QPTnS1@j(,'*}G9nCz}B"֭p{')@g*eK9 B.H#Ff3,!m2
+ nfq+Bv+UO֎8|33r<*B8K#
+Rѿ<|t'
+qn˛a4|J|Yy;lWLp€FUMm6
+q"R8DA` ƚsಡ LN`paڙPک}&>p`|h {p&/zh4~?wKx}pMxA`p&/Н ]
+:xlQj!<g{<*e-Wp Yh&mkr/fF
+8c=fr!y>]q&i,u]>Y%7
+9[ƠJfҌ*`9<l mϹkxA ft'NwB-]8(6܆h@` Հsߵ^!Nc jht&DxD<'QeXt {g8ݶG $`ckC;/`#\B5Jx91<dwn9<KJ~d1y<̲!Ic`fUȔ$HnZ1TaHHwd GunSIb.CP6"11֢Pt(/EG
+8d.Cx/Wpg3oƀȽ0mo'%<Iq \*I]
+ ?NɐL &YHWȔJE2$sA͠6ڻTG:c{)xvɽ=cPp \*<$FZm 7U)lJˈI\ZD7XIiI ) ~(p<q*ri3Q1q幨6|&^[MrɦMkj7/N&I?I<y6UӃ+҄HRhgs'ҏ*gp ?(Md/}FQۊ,#^^=Fn[Ke
+
+Ǫ<]NRT>PsU\.atswXx:t`GB[U fQi KzS | nCפus!C[,L>)Sl ^^%fQuF
+"v/r#fZ{#ú ]y8ݶw+TaV*ds n,\pr \*a|u Mܯ
+͐&0`i/KĔ hں.TQDH(L%b; ˂)HTqJϻ5cמiۼ[a >((/@@eg}RjfN80s1ƖE@\3k09޸~'E./KܞrnEU=d#gx૜:^q /kv,8(f"m7CTcmO$L|jZBjq
+rB!Dz?6~:-#iMf~;B(:v{ms9aˠۦ&bx9tj<r]".ǘ
+<RjWMnŕɀWs\pxm#;uH˸ڲÇ} 96mp5042@Of#δ210c_ta3]%GW}صOU x'4ZT xWw yܦocDL0Q\P6UsxЍcҦ) ecmf9ËRt>l+}1׶S=lSq@|hL$ZxܤoP"*dEWV*07 q;(6jLPr*b1F_3Ԉ_K0
+~o)+as"ޞ{1C4l^f172n',9c8F8
+bq_3|}*gKwc;ۦ۾0;Ol-Ok_|%j#!5?4xQ\q4;_I95Y]&B"4.tyq"TƸ\jx & <rN3,Lp' agvsH?n?D߁)_ ӣ`C'g\ceF6(t*.pD'Ƀ{c%9 wb2g8kۡI`X9-8xiiV>k˫̧m𶟎M`a.ũ #_g=CiVu nM cwe*~#c^q#u`j(O/=xᦻw*{ߛ>Q2&>w~Q=S9lہ)s~σѡ~6~3!ķOO<˧\yK/-$|
+xmy-7x<%?!dk|Q"R}BDwa?h#"b,"W2BZTnH1z!.1ć&͙?ꖿMX "˧&|ݶ.@?F`
+endstream
+endobj
+696 0 obj <<
+/Type /Page
+/Contents 697 0 R
+/Resources 695 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 590 0 R
+>> endobj
+698 0 obj <<
+/D [696 0 R /XYZ 124.802 740.998 null]
+>> endobj
+699 0 obj <<
+/D [696 0 R /XYZ 236.549 513.887 null]
+>> endobj
+700 0 obj <<
+/D [696 0 R /XYZ 124.802 481.508 null]
+>> endobj
+701 0 obj <<
+/D [696 0 R /XYZ 124.802 469.553 null]
+>> endobj
+702 0 obj <<
+/D [696 0 R /XYZ 124.802 457.598 null]
+>> endobj
+703 0 obj <<
+/D [696 0 R /XYZ 124.802 445.643 null]
+>> endobj
+704 0 obj <<
+/D [696 0 R /XYZ 124.802 433.688 null]
+>> endobj
+705 0 obj <<
+/D [696 0 R /XYZ 124.802 421.733 null]
+>> endobj
+706 0 obj <<
+/D [696 0 R /XYZ 124.802 409.777 null]
+>> endobj
+707 0 obj <<
+/D [696 0 R /XYZ 124.802 397.822 null]
+>> endobj
+708 0 obj <<
+/D [696 0 R /XYZ 124.802 385.867 null]
+>> endobj
+709 0 obj <<
+/D [696 0 R /XYZ 124.802 373.912 null]
+>> endobj
+710 0 obj <<
+/D [696 0 R /XYZ 124.802 361.957 null]
+>> endobj
+711 0 obj <<
+/D [696 0 R /XYZ 124.802 350.002 null]
+>> endobj
+712 0 obj <<
+/D [696 0 R /XYZ 124.802 338.046 null]
+>> endobj
+713 0 obj <<
+/D [696 0 R /XYZ 124.802 326.091 null]
+>> endobj
+714 0 obj <<
+/D [696 0 R /XYZ 124.802 314.136 null]
+>> endobj
+715 0 obj <<
+/D [696 0 R /XYZ 124.802 302.181 null]
+>> endobj
+716 0 obj <<
+/D [696 0 R /XYZ 124.802 290.226 null]
+>> endobj
+717 0 obj <<
+/D [696 0 R /XYZ 124.802 278.271 null]
+>> endobj
+718 0 obj <<
+/D [696 0 R /XYZ 124.802 266.315 null]
+>> endobj
+719 0 obj <<
+/D [696 0 R /XYZ 124.802 254.36 null]
+>> endobj
+720 0 obj <<
+/D [696 0 R /XYZ 124.802 242.405 null]
+>> endobj
+721 0 obj <<
+/D [696 0 R /XYZ 124.802 230.45 null]
+>> endobj
+722 0 obj <<
+/D [696 0 R /XYZ 124.802 218.495 null]
+>> endobj
+723 0 obj <<
+/D [696 0 R /XYZ 124.802 206.54 null]
+>> endobj
+724 0 obj <<
+/D [696 0 R /XYZ 124.802 194.584 null]
+>> endobj
+725 0 obj <<
+/D [696 0 R /XYZ 124.802 182.629 null]
+>> endobj
+726 0 obj <<
+/D [696 0 R /XYZ 124.802 170.674 null]
+>> endobj
+727 0 obj <<
+/D [696 0 R /XYZ 124.802 158.719 null]
+>> endobj
+728 0 obj <<
+/D [696 0 R /XYZ 124.802 146.764 null]
+>> endobj
+729 0 obj <<
+/D [696 0 R /XYZ 124.802 134.808 null]
+>> endobj
+695 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F11 497 0 R /F50 400 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+737 0 obj <<
+/Length 8020
+/Filter /FlateDecode
+>>
+stream
+x][oq~ׯ8@a#^A^$#HGZZ؎=U]s搜"!@|/U՗ч}+i`&&e;UJ՟ C|+9r@X
+_-XʄlF 0
+X o^]{bɞV٘rrhT9DQ́x>B(X H34״? ƎL+*ƨң`$hNcT%9"gD+=N]b^zͼ/.XgK;=f$923/+c'=KNfցh,T~;!SACsjuQ~<fSK9\OpR
+w,:\(XYa^ t[H lv봊el^P""Gڡ=7Y[~ʹÛTgK;=Y6tPjsY26
+tU:Q_~ͼ.  +W<|>.}^S&˶^6@wUР?dg+=^E%УdL,Y iPlY6t˨grE<^3h%/a3@z]1%/a3@FcgK;=>I|2u>͏UeOpg>^p+Z6(CR1CxJRF`elެvm?K^fށF]~MTq%lޠ5zԗ%/a3@”g%lެ%/a3@Cw ,W" " x} E?m`P [;,uYGr!5 ~ͼ3V<|?u29@w01.r)el&00q.Ral(00q=4vQ\l x7Xu; ftWjYg&f3/)%[W tnncg]cy{ mX/I:P,F贵ʁk
+!MM{ $<?O[3kبp̛L.۩wqƊo&nōOL7 N<"L._])r)g8,̃i l_3.^3\Q?X00 Q93~̄u~ b0,. xfP`&p=]q4k
+^!<d y y[xp)8+%kwi+f^!)x^a(>m/pV`\gAMvO{zAXXAaOow )6ZDߐ .PDD]|=2xa4ݐZ7$(INYr4q
+)$7qzUtc3BvoR9\&^f^!)x^ý+%ċ 1RͼBR
+M0#f^!)x&ހgi\_f^!)x&ވHfblWnrTx^øh/.8 g: Fy0Fƨt>)"fB ^16J+e7f<EތͼBR
+M*QYՐ!f'>336
+IA+d7U3/a3BvoŬI Y 8*IY[xy726J+e79*ac<^ϸl/.8z|ӀzWw]uE:s/i$hYP>!I3h2c3Bv o*j?;+&^)9x&ޠBvihͼBR
+Mxȗɸ06
+I+d7ss;6
+I+dFiYWJ^)תm+$ 'YyƯ<c7y\t6kGJ
+[Qe<³<FΜǨt kȬx,%Ԏ6=k s\k!)֞6ި|
+b!AzoYJj!&3Ť1[HoNg&nBVr m," l<$%v4BCQbF8!d!Rwa[0II<d2a#ȣ<Ϟ_yĞD
+N'%`\4m-u2K
+n);A'=QBVr mԃZ/M[Jn!̓Q7)CO.N= YyIHoʆy-$x1znoBVR mg\p Y-ma+ؐ>ˮ!lWߵoz\=Bm1T/Z~ƫ<}*
+pv5mm٭m D퓀;| "V\;!pCq0L6G!汨>|-ckFNL ; \.9-ZlD' {#hZʁ@=d!R^B91B-!0j`Y%v2XCJԧtV g5Hhu`E;I0'
+`t=# )l`2.q98wd=ޜf}Ib !i%DyB fEdH't$ Nc-i+Y-k̉xeȏ$E __
+.w,CRR}/4w03tmT,&jr:_k譵w`B$~m`gb(c6_[-<빯
+Z\5=9v<(PXS^+e<9y >b.J,J6`p0xP(nhQRcm0L$Av/&(tvߋD=iGAs(7<ZG ۍxB+זRb~gɴ7.6+βCowfmXΊjq7ҋmQPK$mB0pbF֖#0+Y8/`㞪tlmT۲'VSrX _;XJ$¼?aUDH5hk1E& 1;ڡ0k0"~CsS0-axGebNVjf.Ƥ1?[@M(6
+?RgNl׃nV.O| V9H&%{<
+^Ͽ˔},.| L}_o>|yx} c]}O/R,?I*25ճ`ZVw /LX1&D2fZ¯Byr-2&¹uzGu ֭rzS#}l\7$CoH˦OSPğ(JXQ~<sB~_~?Ӡs^"K3|`;=r?CIhȂkk;^r\ *c\RgK_CqZ
+ x
+endstream
+endobj
+736 0 obj <<
+/Type /Page
+/Contents 737 0 R
+/Resources 735 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 770 0 R
+/Annots [ 730 0 R 731 0 R 732 0 R 733 0 R ]
+>> endobj
+730 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.573 211.378 276.547 222.226]
+/Subtype /Link
+/A << /S /GoTo /D (figure.6) >>
+>> endobj
+731 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [390.334 141.303 397.308 152.151]
+/Subtype /Link
+/A << /S /GoTo /D (figure.7) >>
+>> endobj
+732 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [418.008 141.303 424.982 152.151]
+/Subtype /Link
+/A << /S /GoTo /D (figure.8) >>
+>> endobj
+733 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [459.768 117.392 466.742 128.24]
+/Subtype /Link
+/A << /S /GoTo /D (figure.9) >>
+>> endobj
+738 0 obj <<
+/D [736 0 R /XYZ 124.802 740.998 null]
+>> endobj
+739 0 obj <<
+/D [736 0 R /XYZ 326.062 665.998 null]
+>> endobj
+740 0 obj <<
+/D [736 0 R /XYZ 326.062 669.585 null]
+>> endobj
+741 0 obj <<
+/D [736 0 R /XYZ 326.062 657.63 null]
+>> endobj
+742 0 obj <<
+/D [736 0 R /XYZ 326.062 645.675 null]
+>> endobj
+743 0 obj <<
+/D [736 0 R /XYZ 326.062 633.72 null]
+>> endobj
+744 0 obj <<
+/D [736 0 R /XYZ 326.062 621.764 null]
+>> endobj
+745 0 obj <<
+/D [736 0 R /XYZ 256.309 550.207 null]
+>> endobj
+746 0 obj <<
+/D [736 0 R /XYZ 124.802 518.906 null]
+>> endobj
+747 0 obj <<
+/D [736 0 R /XYZ 124.802 506.951 null]
+>> endobj
+748 0 obj <<
+/D [736 0 R /XYZ 124.802 494.996 null]
+>> endobj
+749 0 obj <<
+/D [736 0 R /XYZ 124.802 483.041 null]
+>> endobj
+750 0 obj <<
+/D [736 0 R /XYZ 124.802 471.085 null]
+>> endobj
+751 0 obj <<
+/D [736 0 R /XYZ 124.802 459.13 null]
+>> endobj
+752 0 obj <<
+/D [736 0 R /XYZ 124.802 447.175 null]
+>> endobj
+753 0 obj <<
+/D [736 0 R /XYZ 124.802 435.22 null]
+>> endobj
+754 0 obj <<
+/D [736 0 R /XYZ 124.802 423.265 null]
+>> endobj
+755 0 obj <<
+/D [736 0 R /XYZ 124.802 411.31 null]
+>> endobj
+756 0 obj <<
+/D [736 0 R /XYZ 124.802 399.354 null]
+>> endobj
+757 0 obj <<
+/D [736 0 R /XYZ 124.802 387.399 null]
+>> endobj
+758 0 obj <<
+/D [736 0 R /XYZ 124.802 375.444 null]
+>> endobj
+759 0 obj <<
+/D [736 0 R /XYZ 124.802 363.489 null]
+>> endobj
+760 0 obj <<
+/D [736 0 R /XYZ 124.802 351.534 null]
+>> endobj
+761 0 obj <<
+/D [736 0 R /XYZ 124.802 339.579 null]
+>> endobj
+762 0 obj <<
+/D [736 0 R /XYZ 124.802 327.623 null]
+>> endobj
+763 0 obj <<
+/D [736 0 R /XYZ 124.802 315.668 null]
+>> endobj
+764 0 obj <<
+/D [736 0 R /XYZ 124.802 303.713 null]
+>> endobj
+765 0 obj <<
+/D [736 0 R /XYZ 124.802 291.758 null]
+>> endobj
+766 0 obj <<
+/D [736 0 R /XYZ 124.802 279.803 null]
+>> endobj
+767 0 obj <<
+/D [736 0 R /XYZ 124.802 267.848 null]
+>> endobj
+768 0 obj <<
+/D [736 0 R /XYZ 124.802 255.892 null]
+>> endobj
+769 0 obj <<
+/D [736 0 R /XYZ 124.802 243.937 null]
+>> endobj
+70 0 obj <<
+/D [736 0 R /XYZ 124.802 188.528 null]
+>> endobj
+735 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F11 497 0 R /F50 400 0 R /F55 517 0 R /F42 396 0 R /F52 480 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+775 0 obj <<
+/Length 7324
+/Filter /FlateDecode
+>>
+stream
+x]ˎ$7vW$ h-* <`x#
+hشӮpߝz}rLڲ*_QF&jK6^~=D;4
+ߢtY Ͳ="7I],C@|`~=d;4
+t YwY Ͳ="7gk!,;#xE&{eZ24MS7oazTl~͖-!sNwZodJW|.qg4,-)w߾͗锷L8} Fjş|O&>iHyo1|ZQ^W ތ6~-2CU^̖C/(#
+ޕ$XBcI#5yDҌ->"msBYwdF.REy|nH3 [|DY
+rBcI͚f@J3H4M]J @J3HiNx98Cq8U[Lia-rJ8:ֻ8Z^p ad N|hez)+̾3xD} !۱YXG#-H16
+]ݣX*isJ.@;-UtuS
+.ݼvج+BWpZĬVk)Ф*xCT0wi$ج*BVpwͅ24=
+4sOtx0mUCRR@]81g
+]bj#c?*u%1!7k#Unu 0T<4}o0=Đ h&UGa™ix34
+=/2T%sJ.]YDoS<бYW0ҥ͊jjcfG3-'7׵cdYݥ(՚vlL+t=c7\uS
+.?5l@sϛ
+v7MM͖QOm=/ w_G/F_nXcl{){ x;vlҕ̡+{tn6ht%sJF)ڣ1Wxs#"ő}4k3h } |Jmާ7 egmmڂ/~Ih;d҂+SiާmarJm˄hN%msrӯP3XRrO;t,㑮8QY4}:<[`.8z?,BZwi#=4V)-B[ighԻJmޥ :GVw-B[i-f+E[p`NFYE[p`
+)㋱YY05ȜTtJiنh%&mrۻħyoӓޅ9/..⑮yQW]/K/\ {W/ aA/֮
+m޷Nb((R"rDiGԻJmޥ橇L%WhK>mdS/mE[p`ӎq~7Jmާ1@;h ]Y#KY[rdp^yiiiTxO4Ӟq>7=xkfTzl1|wp鉂+{`ZUneL˵\@płdF%ڒ+%{vVK;h };c- .{Wn
+}qfp\-szfp\-+ K\Wj .m`Ɩu
+m儽`O"=m
+mfS
+M55K[ lkI
+mޥMn%WhK>m--R[iM%:\gfp\-vXMy=V+7Y >mEolK;h }D-cJmާZ 6JmgDžhem]C(Eߴ$uqh kU
+ȮЎʣhmc*Hh\C tGb[ h/d)F htA
+ ,QS@אָs$Nctj>PXɃ9$JP[-jidfh:BvnQQ5.Jmk\}b$Yx'4Dˎ#zt:*<^0}!<:,aIJt@QINZR@ ?[
+pIMsզyxfw@' Zn@O$%CD2a64"r0X(G^G)ƨ@+첞a.~mpA>Pd1ZrzD}"g4e<JiI!-vndfFi1HUʽawQf/_kC{!lL
+RG,)lßj4Mh!Q9hLO3_R#UsC/GǏLLVNG'Oݮ MzkJUzmmO'6g:.5!)C"ptT@[0Ʈm4(BC(}n~UKEus[L8{%(AWmk!PZr.]j }Q%(Bo`_DqKs|nݕ8v˾Q
+KH>7):`'{/"}2O4bicΕ(
+
+"PQ7\^R/w[8\Q:,'G\'*oMqyBi_~9D gJo1.C HL$4hs]/n@[(17B.Ce`G5zqm~YAN偌ARݨ<RLetr 3-QPsf:"TSpWTD;:-2 -:ĺގ~@Ϋ;P#t;t_(ERtQZH&k|I@ <'.3Kxh+!$+94Ædc̱[q̦Q8t4Yb~nhʕsH&ʹVwq 9@9R7:F4=G5dzM=Ҳ پv* T}${QJ4.aCM+_T(Oj?u[\|hw~귬Le8Xnp)C"ׯ uHxJc
+MyLZBLZ&SPѯIq@kt-pFnjizIDd$GJy|r~hͼѩ~(DnG5ЦI"p|Kچqt|w׭y4XOŸF߷]me?Ŧ{!-⭍󃼻j
+T{3׹4izͣz -*Dk8n7ҏ&~ҋxw,Hu
+)ZS):ֻDveaB[D<,S#] Em̷Eg_JM151K7H5/"Q3,mL')~ԶByjbFkT+9Dժҡ.*fOhm?8MQ&kg ܭd Ȥwgt{9y$N:| wʼnz1X*fQljR[,?0qThYQe:tQ$
+vG+ͳi!-B6i~Mmh,dPN\jOh쇾J:sBF^;C'{ gr+_jCLMJєTjriU" MwEj cD9*bn;ZK]NaF
+SGTZ4@~%## m/6iP-tv3jL1>\{'x+<>/ƦTr:~`Yh6?fsʷsǏL۟?
+(nύGf'AǏ?pQnT7ꕊNOge >-[ћx{(sxV|gNI=(#n ('q0\~v}d50$04
+Dj M59tץ[5?GrU%fw
+JFKB_1ohEiCE
+${]nq*խW4Ni Cvu'hMF^>?O/o-///w홏 <ʹN,|P͢% ٲ JΪ&w K
+ϹUͮ>SOa0s|υ!A( |%fcvFnw;\k9_k&@~6yCT m /;cG^p)9?}h$59-Z0~_~_?~o4nrKMnǟ?O޶m/x+Q>l7X?;\I|_#I|/o}h?*mZs۷LϪiu?l l~SKw~~U_?[ۓCh!civM xD
+endstream
+endobj
+774 0 obj <<
+/Type /Page
+/Contents 775 0 R
+/Resources 773 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 770 0 R
+>> endobj
+776 0 obj <<
+/D [774 0 R /XYZ 124.802 740.998 null]
+>> endobj
+777 0 obj <<
+/D [774 0 R /XYZ 124.802 339.692 null]
+>> endobj
+778 0 obj <<
+/D [774 0 R /XYZ 124.802 339.692 null]
+>> endobj
+779 0 obj <<
+/D [774 0 R /XYZ 124.802 327.737 null]
+>> endobj
+780 0 obj <<
+/D [774 0 R /XYZ 124.802 315.782 null]
+>> endobj
+781 0 obj <<
+/D [774 0 R /XYZ 124.802 303.827 null]
+>> endobj
+782 0 obj <<
+/D [774 0 R /XYZ 124.802 291.872 null]
+>> endobj
+771 0 obj <<
+/D [774 0 R /XYZ 212.279 263.976 null]
+>> endobj
+773 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F11 497 0 R /F50 400 0 R /F55 517 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+785 0 obj <<
+/Length 7522
+/Filter /FlateDecode
+>>
+stream
+x]KqW4|? "X`.a;%<=ʂ"]3]E
+'wYGoҵ*FH+98zILqB\~XL0.=N0hۣ-BOkNLG7HNpfV.{-*\wbB+LvW6%wvaOUÍ1*:4[G~<)Xs5ʿ/EA=÷?@`{0ܝ^/Q
+Cnz^[
+xB% J% ȧ9|3H/Kv (Fm5hd] (g!2=AM.N @vB.L(CО&xvQI@FeB{R=@o)(D
+8HdIE(S투"Em[Bq`R1*nuF9jG&Hx*&c2UݤT)EIU1Qbn=Xt9 xɘ4*9v41ʘLq>? laдn΢ ce0Ӛ+jP7A\= {jZ_q*aefeEڽ7T `!( L6>dq4AL'ѻ'&t9t9wne(|Ӏ*(cnL0>
+=1ʙ$˹tQIU1Qbn`N&:1ʙ$˹t7gٌ$UDI3%ф$54I3lKdwbxkvba@ /!T#蜯/,]/]<%[߀QcM =)!go6`{c""$Pjs.mY䵓\h3.fM֪͢ڜ˴9{6FSb\h3.fm7>Ef\b$G.FΌˇΌM+^ f\[y2ʪMYu+XG~~cqO:Ʊ[s,,K +t-EC~`HL㺔w JeeҜMsX!f\؛q :/62mަ1E'f\؛a8uYhOPjs.mǔd'f\۴ANhp͸\7iðNhkڜ˴9{k#k15vexubRV:/u1>I9_UCYb/dFFX\4C͐75T.)
+62m޴RN 9-Vp6mf4 mڌmECrź!ަ,=210q7ZC2YOP*s.mNypN'f\۴J~1GBq6cosoVLs]^fݮҗb-i79_͘U7CYfX_ShA Op7E Q!gb2aݦ 6-&\(3.fMwÝ@͹LihZ/f\6 8bˆ{{vė,ڌ˵{6\.k3&dwN.p(9is6lp3ٕf+/ѐ.7 |f\^ٌsR܌ ڜ˴9{6:/62m޴F徛 ʝ7p6
+#D qQ '#BG_pAL <m)T)x^&ǃc N%ug\|<[/VKHj, C XL( ͧ&tHUpe<Ol"CAH7vGO
+:"tIyD*L.>_׳kTO5*k)f<A
+Qۺ77>[<yyj YwT(
+i :j2zF[
+ېts:Qm65Pv@BK#p01xd9T,D=]`]8…fIrƔ*GŶ' ^Ij g5 tW.A8\LH-*6sx"iXyaz{{>
+5f`F֊B:m֙rS#h⭄_TA0\u@x+eo3Ҷ:`N5?%0LR'A
+gZqX}b܁JHnO#'@F?D@HDP&Ǡ
+,9&l0"c$wˁ
+3b f9 XIb#szrl(ț^=ЃBnEZtS-c` m!P
+V:ֈMDxx+:BxRgd \v@m073eQ{Rxo޺Emt813[܁JHᮇy"qjj@Ԣ
+ 'Y 5c;2Y$5)$ ǂӳ3IL#Dd](xd.Kom XKn9^G"A!eƞ'fT%ئB A?uBvRr"Y`BfMh['`:R7T#Nޱhy@vHc#΢J,gNkho00"Zɝz7Oh@8 m8m;"4; _hAj (9l B50AزGY
+JnYڱ±ZI|Φ&ˁQxo!@%wp2fWTăvi{pWE Mmd==D'1施ba 8K Arn瞦}YgqlB>,_
+PHd
+ũ`h<)* c0w W`De]z"1%\4um9"2r `6/S!X_*RZb'OJ*<gfu(1*~7bU>؈-
+ʏr7(ew{I{:…J_T\@뎳YsV
+.X1»$Q ,m]!1{o.?AFGpQ~uM[#=k^\".ޓqYfqx!`[8Z965ha}; "'.G d65y_U).4U"ۀe).UN*FWd]t'@Mo1J`.d'$ C\ub\õ8^d] ^{C8Ӏu]%I\bB}۳VwUf`L q 4&` qܸ _O"&mPrJa4b0*/ڗf0 
+Q<{KWV[VRPVP/ +!SwBXĭf6DܴaJlĜL+
+`8h?R<34x{Nn:p| F~wWoڗ~4C|޵ ~f͜oj ڣb?5ħ\'mypnWypo 後_?LZNcntG F{!]L+-ܯrR:ֶx˖ywƀJ1@p7@)#BSi\gq?<he4hUI[KXm,׌mtc~sf}C|yvҖW.)n{yͷ:_k ߽LxUfuopvwXܩ<FzN `u?ۿ#TS=%.x{_;~WR뙀?yBp¹K9k:cZjˊ'o}HqX[k"nom˛oo~5?tP}ǏF6]@3 Of =%Vy=T0^J_s>4%%j-z#`p!??M #_w~3OU Y>7u?N6eon}?ҝa;um>w'RxMooyO5}OkiA
+/!HW5#y| Yt3:໛u9U"SQq嗝 v~lWM3
+2˖FhKiRX \he6ӵ\炿G |<x4<}<6]3.p(ƓaߛFKN| z\jT`,.]ݬϷP?/eǷM#9[ 
+endstream
+endobj
+784 0 obj <<
+/Type /Page
+/Contents 785 0 R
+/Resources 783 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 770 0 R
+/Annots [ 734 0 R ]
+>> endobj
+734 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [312.128 309.618 319.101 320.467]
+/Subtype /Link
+/A << /S /GoTo /D (section.6) >>
+>> endobj
+786 0 obj <<
+/D [784 0 R /XYZ 124.802 740.998 null]
+>> endobj
+787 0 obj <<
+/D [784 0 R /XYZ 124.802 431.898 null]
+>> endobj
+788 0 obj <<
+/D [784 0 R /XYZ 124.802 431.898 null]
+>> endobj
+789 0 obj <<
+/D [784 0 R /XYZ 124.802 419.943 null]
+>> endobj
+790 0 obj <<
+/D [784 0 R /XYZ 124.802 407.988 null]
+>> endobj
+791 0 obj <<
+/D [784 0 R /XYZ 124.802 396.033 null]
+>> endobj
+792 0 obj <<
+/D [784 0 R /XYZ 124.802 384.078 null]
+>> endobj
+772 0 obj <<
+/D [784 0 R /XYZ 167.588 356.182 null]
+>> endobj
+74 0 obj <<
+/D [784 0 R /XYZ 124.802 295.634 null]
+>> endobj
+78 0 obj <<
+/D [784 0 R /XYZ 124.802 269.772 null]
+>> endobj
+793 0 obj <<
+/D [784 0 R /XYZ 124.802 231.626 null]
+>> endobj
+794 0 obj <<
+/D [784 0 R /XYZ 124.802 209.82 null]
+>> endobj
+795 0 obj <<
+/D [784 0 R /XYZ 149.709 211.757 null]
+>> endobj
+796 0 obj <<
+/D [784 0 R /XYZ 149.709 199.802 null]
+>> endobj
+797 0 obj <<
+/D [784 0 R /XYZ 149.709 187.847 null]
+>> endobj
+798 0 obj <<
+/D [784 0 R /XYZ 124.802 162.455 null]
+>> endobj
+799 0 obj <<
+/D [784 0 R /XYZ 124.802 142.299 null]
+>> endobj
+800 0 obj <<
+/D [784 0 R /XYZ 149.709 144.236 null]
+>> endobj
+801 0 obj <<
+/D [784 0 R /XYZ 149.709 132.281 null]
+>> endobj
+783 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F11 497 0 R /F50 400 0 R /F55 517 0 R /F42 396 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+806 0 obj <<
+/Length 2134
+/Filter /FlateDecode
+>>
+stream
+xZ[o~ׯma(Ї
+4 P;H$fpxgDYv]?8g0UE~p6yB.+hj+MfwQVfXQO/,:M,Q˺vvۮuɒ/L(Q +dz]KJg3u[fq LrƯ].Wa\u^_X
+k tz<!<J9r9whDb
+˛M\dɧgm TJC6ίKRɔ$Uu3e(̗ut9LYUQ$cB#҆#u^X޴ͻ`j,Ry}A@b
+z %Y}ܴ[!)_fk6 F•%*Uj"$RRXk\ԫwf ª`)`2xQMb=|qQ*./c߂@n]esa<F>*68K(ɧI$VU{iNvIz`)lwnhSfG-;?Z`o8Qhlmzvz&m,qT4X%x dH&5Q =\4.s i
+y QL=[1iA˭8`IID4m se\;qJU?Z bjcn?} dűQfdvoC\"-cyH+L <+ՙ1S:+}ޠUI0MmT0F| 4c0Kr#K EI(VM8ϋ:#~1ˉ9r21GIb QחP)cg%0+OݨVFI+_q;,C~Q`C#pƨsyTxTG0E(Hx!<٭9oH>Ar*Cz,w 1ֿ%Da~C J=S>'H|SF s[iwv:(/[ᦥܽ흒n6|5[}qFu1 cHWX^ԀNۙtu7o(f0S;r)/7<yRr[,8(kCi"Ba1<Bp}!<?-{pvy{G hRC!xiS?O|G<OZն,9)܉촄ΓliV.N$:Pc`mk 'BW/TRuA,:-T!}ftŸ"KSQBH=s\zyT_BݞqULƘ98vKÓp+UqՀ?iI0;y!Zg|m%Vo 3 |<m)5/F S411Ah>^~ƫ61lڕͥ+&1Z$aƙOrX ƥȶ=-\ o0';2Yc[uG 2 aaR)o
+endstream
+endobj
+805 0 obj <<
+/Type /Page
+/Contents 806 0 R
+/Resources 804 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 770 0 R
+/Annots [ 802 0 R ]
+>> endobj
+803 0 obj <<
+/Type /XObject
+/Subtype /Form
+/BBox [0 0 100 100]
+/FormType 1
+/Matrix [1 0 0 1 0 0]
+/Resources 825 0 R
+/Length 15
+/Filter /FlateDecode
+>>
+stream
+xP(
+endstream
+endobj
+825 0 obj <<
+/Shading << /Sh << /ShadingType 3 /ColorSpace /DeviceRGB /Domain [0.0 50.00064] /Coords [40.00052 60.00076 0.0 50.00064 50.00064 50.00064] /Function << /FunctionType 3 /Domain [0.0 50.00064] /Functions [ << /FunctionType 2 /Domain [0.0 50.00064] /C0 [0.85 0.85 1] /C1 [0.25 0.25 1] /N 1 >> << /FunctionType 2 /Domain [0.0 50.00064] /C0 [0.25 0.25 1] /C1 [0 0 0.7] /N 1 >> << /FunctionType 2 /Domain [0.0 50.00064] /C0 [0 0 0.7] /C1 [0 0 0.5] /N 1 >> << /FunctionType 2 /Domain [0.0 50.00064] /C0 [0 0 0.5] /C1 [0 0 0] /N 1 >> ] /Bounds [ 9.00009 18.00021 25.00032] /Encode [0 1 0 1 0 1 0 1] >> /Extend [true false] >> >>
+/ProcSet [ /PDF ]
+>> endobj
+802 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [230.545 369.489 237.518 377.902]
+/Subtype /Link
+/A << /S /GoTo /D (cite.tikz) >>
+>> endobj
+807 0 obj <<
+/D [805 0 R /XYZ 124.802 740.998 null]
+>> endobj
+808 0 obj <<
+/D [805 0 R /XYZ 149.709 718.084 null]
+>> endobj
+809 0 obj <<
+/D [805 0 R /XYZ 124.802 692.58 null]
+>> endobj
+810 0 obj <<
+/D [805 0 R /XYZ 124.802 672.311 null]
+>> endobj
+811 0 obj <<
+/D [805 0 R /XYZ 149.709 674.248 null]
+>> endobj
+812 0 obj <<
+/D [805 0 R /XYZ 149.709 662.293 null]
+>> endobj
+813 0 obj <<
+/D [805 0 R /XYZ 149.709 650.338 null]
+>> endobj
+814 0 obj <<
+/D [805 0 R /XYZ 124.802 624.834 null]
+>> endobj
+815 0 obj <<
+/D [805 0 R /XYZ 124.802 604.565 null]
+>> endobj
+816 0 obj <<
+/D [805 0 R /XYZ 149.709 606.502 null]
+>> endobj
+817 0 obj <<
+/D [805 0 R /XYZ 149.709 594.547 null]
+>> endobj
+818 0 obj <<
+/D [805 0 R /XYZ 149.709 582.592 null]
+>> endobj
+819 0 obj <<
+/D [805 0 R /XYZ 124.802 536.819 null]
+>> endobj
+820 0 obj <<
+/D [805 0 R /XYZ 124.802 538.757 null]
+>> endobj
+821 0 obj <<
+/D [805 0 R /XYZ 124.802 526.801 null]
+>> endobj
+822 0 obj <<
+/D [805 0 R /XYZ 124.802 514.846 null]
+>> endobj
+823 0 obj <<
+/D [805 0 R /XYZ 124.802 502.891 null]
+>> endobj
+824 0 obj <<
+/D [805 0 R /XYZ 124.802 490.936 null]
+>> endobj
+82 0 obj <<
+/D [805 0 R /XYZ 124.802 444.617 null]
+>> endobj
+86 0 obj <<
+/D [805 0 R /XYZ 124.802 398.892 null]
+>> endobj
+804 0 obj <<
+/Font << /F50 400 0 R /F55 517 0 R /F8 399 0 R /F11 497 0 R /F42 396 0 R /F52 480 0 R /F43 398 0 R /F14 452 0 R >>
+/XObject << /Fm1 803 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+828 0 obj <<
+/Length 2192
+/Filter /FlateDecode
+>>
+stream
+xZݏ۸߿BW]D<~؇
+(r辴<Z$lEq{I:ޝKp8|P go跸!22Ma" ITv͚Sy;07WpF2*0Je
+3$1n_2`|uW1EvYA
+Fc4dWZyg ĄwfT_xf *woQt?{ͮt0Og[>&W}8Dh7[J$߃qF0RDhQ6(qx`YpJ=`ĥDyl(~AhQJÑ a5OyWKoH)+DuOHoYnh\
+BRBtvRr/r5Sи&"h1 Mh>x>zQH J #T&G`Ԑ $9XΐJ#b%gޜQ\r33%g<C(Q>3F$9cW5)} ϟ(DtÃ5{u7G|.g 0eI-io4`H)1mEtPtqoKZSUL 0=[KϗcC³2(hu ?$ZR!ϖTKRҤriI~R9!C\&J*_>/6壹s8<玡oE:ik҂>n#uDz0;&X|TGD kIkY%Os93kik#pfgFB x!|/st)|" hݦZw@ %dΫrz0N1xC佲Dje IA$T2zSi,J@ZL'*LxEЄ}-<\h1N@Gp.RHA?9 v8b:wqT|9/QqIz!"-EnQYKA“,|4|,@.%SA}tv,1 l''VO~4j s'ć Pp8qFX:+hN TnUFW< yWG'`_4Oe[ܭc.ȴ^üt :#2u p-e]L)m81xť RPb $DTw ctL
+~_HmoQVU<sWN)LyBռD]5}뇲i+5 OBpfb?jlx!
+"YͶ9út^#'@ɢw5g9^{ 8x2{g |ڔ'Lx[.{J,7,j81㾆p|,n?M,39;;+8O;Pz#~Rqˉxkk^<Rp/J!)bǍa;ocߧ[ O (>dY۲~Ɖ)a( TcC 1HPzdC#0KNQj]=n;^nojH "is䴝f)b9zq)RGr丝f)"9
+endstream
+endobj
+827 0 obj <<
+/Type /Page
+/Contents 828 0 R
+/Resources 826 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 770 0 R
+>> endobj
+829 0 obj <<
+/D [827 0 R /XYZ 124.802 740.998 null]
+>> endobj
+830 0 obj <<
+/D [827 0 R /XYZ 124.802 407.174 null]
+>> endobj
+831 0 obj <<
+/D [827 0 R /XYZ 124.802 409.111 null]
+>> endobj
+832 0 obj <<
+/D [827 0 R /XYZ 124.802 397.156 null]
+>> endobj
+833 0 obj <<
+/D [827 0 R /XYZ 124.802 385.201 null]
+>> endobj
+834 0 obj <<
+/D [827 0 R /XYZ 124.802 373.246 null]
+>> endobj
+835 0 obj <<
+/D [827 0 R /XYZ 124.802 361.29 null]
+>> endobj
+836 0 obj <<
+/D [827 0 R /XYZ 124.802 349.335 null]
+>> endobj
+837 0 obj <<
+/D [827 0 R /XYZ 124.802 337.38 null]
+>> endobj
+90 0 obj <<
+/D [827 0 R /XYZ 124.802 303.988 null]
+>> endobj
+826 0 obj <<
+/Font << /F55 517 0 R /F8 399 0 R /F50 400 0 R /F59 539 0 R /F43 398 0 R /F52 480 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+841 0 obj <<
+/Length 1655
+/Filter /FlateDecode
+>>
+stream
+xڭXKs6WH&AڙMMfC;4SbzXq`ⱻ]nf| -^|L'-gBjq9KaBrv%L/|+VqfTQC$I2%IXfX.u;\xyl8>XYr# 20#,SR*[K jhG UsCeZ͒cunevI+E'pa (: L* 4N_qNmeii#O8?n31nSh­ѱg¨&ζ;>Pl{}Uo٪^+ 3Q2KgP
+&Jxv 1A:,pgeux$ SɔI_kN0:}#<gI"PlmHR<T`0j`]> <˔e2 陏97aۏb9p6D2rMpF
+l_qޗ%NP+_j]۳5VO]HEPu5VfWc ܒik1阿Hˎ S8D%s,*Wj3*!R%,3fqBc.
+9$pheǤ<O`(\C1isV58(N1@{a 9ErMꨬg`?Yן͏:l?lƞN t:Q=ֵ6 U <
+endstream
+endobj
+840 0 obj <<
+/Type /Page
+/Contents 841 0 R
+/Resources 839 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 770 0 R
+/Annots [ 838 0 R ]
+>> endobj
+838 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [214.687 375.511 229.41 386.36]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.2) >>
+>> endobj
+842 0 obj <<
+/D [840 0 R /XYZ 124.802 740.998 null]
+>> endobj
+94 0 obj <<
+/D [840 0 R /XYZ 124.802 716.092 null]
+>> endobj
+843 0 obj <<
+/D [840 0 R /XYZ 124.802 681.223 null]
+>> endobj
+844 0 obj <<
+/D [840 0 R /XYZ 124.802 683.16 null]
+>> endobj
+845 0 obj <<
+/D [840 0 R /XYZ 124.802 671.205 null]
+>> endobj
+846 0 obj <<
+/D [840 0 R /XYZ 124.802 659.25 null]
+>> endobj
+847 0 obj <<
+/D [840 0 R /XYZ 124.802 647.295 null]
+>> endobj
+848 0 obj <<
+/D [840 0 R /XYZ 124.802 635.34 null]
+>> endobj
+849 0 obj <<
+/D [840 0 R /XYZ 124.802 602.271 null]
+>> endobj
+850 0 obj <<
+/D [840 0 R /XYZ 124.802 602.271 null]
+>> endobj
+851 0 obj <<
+/D [840 0 R /XYZ 124.802 590.316 null]
+>> endobj
+852 0 obj <<
+/D [840 0 R /XYZ 124.802 578.361 null]
+>> endobj
+853 0 obj <<
+/D [840 0 R /XYZ 124.802 566.405 null]
+>> endobj
+854 0 obj <<
+/D [840 0 R /XYZ 124.802 554.45 null]
+>> endobj
+855 0 obj <<
+/D [840 0 R /XYZ 124.802 466.45 null]
+>> endobj
+856 0 obj <<
+/D [840 0 R /XYZ 149.709 468.388 null]
+>> endobj
+857 0 obj <<
+/D [840 0 R /XYZ 124.802 430.096 null]
+>> endobj
+858 0 obj <<
+/D [840 0 R /XYZ 149.709 432.033 null]
+>> endobj
+859 0 obj <<
+/D [840 0 R /XYZ 124.802 329.491 null]
+>> endobj
+860 0 obj <<
+/D [840 0 R /XYZ 149.709 331.429 null]
+>> endobj
+861 0 obj <<
+/D [840 0 R /XYZ 149.709 319.473 null]
+>> endobj
+862 0 obj <<
+/D [840 0 R /XYZ 149.709 307.518 null]
+>> endobj
+863 0 obj <<
+/D [840 0 R /XYZ 149.709 295.563 null]
+>> endobj
+864 0 obj <<
+/D [840 0 R /XYZ 149.709 283.608 null]
+>> endobj
+865 0 obj <<
+/D [840 0 R /XYZ 149.709 271.653 null]
+>> endobj
+866 0 obj <<
+/D [840 0 R /XYZ 149.709 259.698 null]
+>> endobj
+867 0 obj <<
+/D [840 0 R /XYZ 149.709 247.742 null]
+>> endobj
+868 0 obj <<
+/D [840 0 R /XYZ 149.709 235.787 null]
+>> endobj
+869 0 obj <<
+/D [840 0 R /XYZ 149.709 223.832 null]
+>> endobj
+870 0 obj <<
+/D [840 0 R /XYZ 149.709 211.877 null]
+>> endobj
+871 0 obj <<
+/D [840 0 R /XYZ 149.709 199.922 null]
+>> endobj
+839 0 obj <<
+/Font << /F42 396 0 R /F14 452 0 R /F55 517 0 R /F8 399 0 R /F50 400 0 R /F11 497 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+876 0 obj <<
+/Length 2426
+/Filter /FlateDecode
+>>
+stream
+xڽYKFWr bu/6iZ;6[}H%Lht!qfk}4I(~y~[H.2gFIRESw?&Hº}{ɸioVB0>MUw/aldnw]\Sm/mmі#TE{giNyY|:V\k* 0?.%䍿} vAWD2`&5ay )4K6l0*OD)ˍFKrP\2V*v=g~=j/ + 辦ɂeiX]Y9+2L7Uq-oñ>~[tvi-mvZKMM+k'HKVqzv4RGCÑN#LUJöL=n/gkPw!u-Q a6Mm[н`iu'Kn˺@b/X݁0
+'#e?'L>a
++%8KrLh_6seD 7E}O:YHG
+2;ۧΐǾ!˃?[μY,ЇҢJ}Q/qT`.8Or _KdQ"\L+)T4. `eQҁMRFhs&=0sn]Q,?1x%8punGr)#ՓXKH
+*ZeCOLFfh
+E@]up5e|3x`敓iPqelxs<<37P3\V僻Gvn(qq--ଉrU&0. ?C$MJ>d'xI)" 1pAemToB+8[0!Ǔ>~}L m=G˘ rLk}tPv^^|1T,Kr#
+%ҶK}I;(Ķ+jZLE}^KS_[QmCR9(3֕+#&S韍2=a8)Ƅ~'ON9Ucdjpyb2-p%<4g%פe ^Wxqņ<9x;PHs}0E̓j;.Xh@b{2^?O2#qww mP
+endstream
+endobj
+875 0 obj <<
+/Type /Page
+/Contents 876 0 R
+/Resources 874 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 888 0 R
+/Annots [ 872 0 R ]
+>> endobj
+872 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [234.64 599.584 267.074 610.432]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.14.22) >>
+>> endobj
+877 0 obj <<
+/D [875 0 R /XYZ 124.802 740.998 null]
+>> endobj
+880 0 obj <<
+/D [875 0 R /XYZ 124.802 490.991 null]
+>> endobj
+881 0 obj <<
+/D [875 0 R /XYZ 124.802 450.587 null]
+>> endobj
+98 0 obj <<
+/D [875 0 R /XYZ 124.802 373.439 null]
+>> endobj
+882 0 obj <<
+/D [875 0 R /XYZ 124.802 299.259 null]
+>> endobj
+883 0 obj <<
+/D [875 0 R /XYZ 124.802 301.196 null]
+>> endobj
+884 0 obj <<
+/D [875 0 R /XYZ 124.802 263.393 null]
+>> endobj
+885 0 obj <<
+/D [875 0 R /XYZ 124.802 265.331 null]
+>> endobj
+102 0 obj <<
+/D [875 0 R /XYZ 124.802 219.565 null]
+>> endobj
+886 0 obj <<
+/D [875 0 R /XYZ 124.802 169.295 null]
+>> endobj
+887 0 obj <<
+/D [875 0 R /XYZ 124.802 171.232 null]
+>> endobj
+874 0 obj <<
+/Font << /F14 452 0 R /F8 399 0 R /F11 497 0 R /F7 523 0 R /F10 479 0 R /F9 878 0 R /F47 879 0 R /F50 400 0 R /F52 480 0 R /F55 517 0 R /F42 396 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+894 0 obj <<
+/Length 1845
+/Filter /FlateDecode
+>>
+stream
+xڭXK6W9ɅWҢ)S.P"sR43JmfIp8㛡fW?ՋWo#XxuuRUc&dڮJw.?_ KXB,<382Ø󠰯dB8݄S<M$p=egp
+ ;/tv )E߬C`zps}gi2 zK })mhs"v2iy,1ʾʋQ\cݶV6s_2 Z
+jFqxh#5%&#)S=ƯnA,v$F阪Q|¦ȫ~`#lLS.6*I~ hPT6E5l'~ZCb,`$L Œ,6ccAAU
+$h y;aH75
+TXg&c8n? \kjKcYgYM.]E2ŌdLMXXL+h7mR+BƣtErQ^h~J%KSR:QePO᭕8& Qge+˗R0%|8r"u0̺T@0cuGPi1\F@ ȩ0( 򈳽&fic-xpr?PXYz G$ |K/mЌA5M4z1jٱUu3)1_To/a 뿇S$hˠn8UyؖxGNoLL
+endstream
+endobj
+893 0 obj <<
+/Type /Page
+/Contents 894 0 R
+/Resources 892 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 888 0 R
+/Annots [ 873 0 R 889 0 R 890 0 R 891 0 R ]
+>> endobj
+873 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [301.819 661.352 316.541 672.201]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.5) >>
+>> endobj
+889 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [387.893 529.845 402.616 540.694]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.6) >>
+>> endobj
+890 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [210.204 517.89 224.927 528.739]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.5) >>
+>> endobj
+891 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [173.176 375.971 187.899 386.819]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.5) >>
+>> endobj
+895 0 obj <<
+/D [893 0 R /XYZ 124.802 740.998 null]
+>> endobj
+896 0 obj <<
+/D [893 0 R /XYZ 124.802 716.092 null]
+>> endobj
+897 0 obj <<
+/D [893 0 R /XYZ 124.802 718.084 null]
+>> endobj
+898 0 obj <<
+/D [893 0 R /XYZ 124.802 706.129 null]
+>> endobj
+899 0 obj <<
+/D [893 0 R /XYZ 124.802 694.174 null]
+>> endobj
+106 0 obj <<
+/D [893 0 R /XYZ 124.802 504.946 null]
+>> endobj
+900 0 obj <<
+/D [893 0 R /XYZ 124.802 432.703 null]
+>> endobj
+901 0 obj <<
+/D [893 0 R /XYZ 124.802 432.703 null]
+>> endobj
+902 0 obj <<
+/D [893 0 R /XYZ 124.802 420.748 null]
+>> endobj
+903 0 obj <<
+/D [893 0 R /XYZ 124.802 408.793 null]
+>> endobj
+904 0 obj <<
+/D [893 0 R /XYZ 124.802 363.027 null]
+>> endobj
+110 0 obj <<
+/D [893 0 R /XYZ 124.802 313.22 null]
+>> endobj
+905 0 obj <<
+/D [893 0 R /XYZ 124.802 274.906 null]
+>> endobj
+906 0 obj <<
+/D [893 0 R /XYZ 124.802 276.843 null]
+>> endobj
+907 0 obj <<
+/D [893 0 R /XYZ 124.802 264.888 null]
+>> endobj
+908 0 obj <<
+/D [893 0 R /XYZ 124.802 252.933 null]
+>> endobj
+909 0 obj <<
+/D [893 0 R /XYZ 124.802 240.978 null]
+>> endobj
+910 0 obj <<
+/D [893 0 R /XYZ 124.802 229.022 null]
+>> endobj
+911 0 obj <<
+/D [893 0 R /XYZ 124.802 217.067 null]
+>> endobj
+912 0 obj <<
+/D [893 0 R /XYZ 124.802 205.112 null]
+>> endobj
+913 0 obj <<
+/D [893 0 R /XYZ 124.802 193.157 null]
+>> endobj
+914 0 obj <<
+/D [893 0 R /XYZ 124.802 181.202 null]
+>> endobj
+915 0 obj <<
+/D [893 0 R /XYZ 124.802 169.247 null]
+>> endobj
+916 0 obj <<
+/D [893 0 R /XYZ 124.802 157.291 null]
+>> endobj
+917 0 obj <<
+/D [893 0 R /XYZ 124.802 145.336 null]
+>> endobj
+918 0 obj <<
+/D [893 0 R /XYZ 124.802 133.381 null]
+>> endobj
+892 0 obj <<
+/Font << /F50 400 0 R /F8 399 0 R /F11 497 0 R /F55 517 0 R /F42 396 0 R /F52 480 0 R /F43 398 0 R /F14 452 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+922 0 obj <<
+/Length 2664
+/Filter /FlateDecode
+>>
+stream
+xZmo_ d.pW\Eh$yc DK>|Y8=(Dpp^(ճ)?D%eҩͼcgUz™T*"A
+ͤlQ iX(q./vL潨jϼ_"^<Ϯ^& I,[mWtv MuR2MxΫW~/'?EQJQ٬k68 Z^e@rOt
+{$àӒ).@w#=~*D3Ht$0 1`uك}X׊q[y\`i=7Y6v؁.]TXkH1d.{=s9/=Ҍ@}mec;muy\`i=^# $Vvcg[[nMAӣ͵R1EJPfL۞|4&AWŤt#}דtܣ
+2ÐkgVކ\/BrGq(Q]K2\d+Ymæo.x^vxd[PL(QGdkX
+)
+||ea=)-ْV :^YgNh#Uf2_ 1t`E' \-o멎5B`%r5(iX
+(&i .hf[
+ʔJwl|!2`G+FR73+Y֎q[F.E T , 3΢$
+bqrYzZ]V;DCFAEqʗ:5fkS p J#9<=SVD#>t+*$Loq:[lif׍cF5,HdCi) -kK/ "(M>R$zBhYH9ZBLX2X吷0!I:̛C$!~QmUx "OHBB3QrDKV6ey9pFPt{/r7a&_湑De):xh5Vtl.NE:}U Hc6ΠvB iL1$Yqٳ4@ <Hp}_oQ$=2-k l ѥܝRupr c1P5^#WoQN0PX#Ɖ;Ȕxu{Z+vmR5hΧW*X]oXz".``_DWFҢg 7(׷"x.da'lzpQ#W]rpbO>7V@ ,ަ>_ܬ/'f2ߦW=沍 Iakhr{g%j<*7 }CĔfG݁W_G2%,^m{{hї@ ud1%n)7
+ 0MwXu,|y&Si'a8_ׯi wZۆOonF!Hn6*<lWC(a<~ˑIFL֍|XLg# \/M]xXo,r0: WiX#lpcCQ2mJF?-"b@$7Aצ> mN:
+U,bϰWH\|E;@w+:?[],*^7w*kߪrF>M4_ŀ^Ȣ
+endstream
+endobj
+921 0 obj <<
+/Type /Page
+/Contents 922 0 R
+/Resources 920 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 888 0 R
+/Annots [ 919 0 R ]
+>> endobj
+919 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [333.864 406.779 345.819 417.628]
+/Subtype /Link
+/A << /S /GoTo /D (figure.10) >>
+>> endobj
+923 0 obj <<
+/D [921 0 R /XYZ 124.802 740.998 null]
+>> endobj
+924 0 obj <<
+/D [921 0 R /XYZ 210.052 531.755 null]
+>> endobj
+925 0 obj <<
+/D [921 0 R /XYZ 124.802 499.377 null]
+>> endobj
+926 0 obj <<
+/D [921 0 R /XYZ 124.802 487.422 null]
+>> endobj
+927 0 obj <<
+/D [921 0 R /XYZ 124.802 475.466 null]
+>> endobj
+928 0 obj <<
+/D [921 0 R /XYZ 124.802 463.511 null]
+>> endobj
+929 0 obj <<
+/D [921 0 R /XYZ 124.802 451.556 null]
+>> endobj
+930 0 obj <<
+/D [921 0 R /XYZ 124.802 439.601 null]
+>> endobj
+114 0 obj <<
+/D [921 0 R /XYZ 124.802 369.925 null]
+>> endobj
+931 0 obj <<
+/D [921 0 R /XYZ 124.802 333.547 null]
+>> endobj
+932 0 obj <<
+/D [921 0 R /XYZ 124.802 333.547 null]
+>> endobj
+933 0 obj <<
+/D [921 0 R /XYZ 124.802 321.592 null]
+>> endobj
+934 0 obj <<
+/D [921 0 R /XYZ 124.802 309.637 null]
+>> endobj
+935 0 obj <<
+/D [921 0 R /XYZ 124.802 297.682 null]
+>> endobj
+936 0 obj <<
+/D [921 0 R /XYZ 124.802 285.727 null]
+>> endobj
+937 0 obj <<
+/D [921 0 R /XYZ 124.802 273.771 null]
+>> endobj
+938 0 obj <<
+/D [921 0 R /XYZ 124.802 261.816 null]
+>> endobj
+939 0 obj <<
+/D [921 0 R /XYZ 124.802 212.058 null]
+>> endobj
+940 0 obj <<
+/D [921 0 R /XYZ 124.802 213.996 null]
+>> endobj
+920 0 obj <<
+/Font << /F8 399 0 R /F11 497 0 R /F14 452 0 R /F50 400 0 R /F55 517 0 R /F42 396 0 R /F43 398 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+944 0 obj <<
+/Length 1402
+/Filter /FlateDecode
+>>
+stream
+xXYo6~ϯ0+6]edbb}h
+U㼙[Pk :k
+Th{p20`$d =Ҡ$w7m
+Ij|+Tگs|L!]<ǭM@uWYk7}Wz&~-KTvIͬTZV
+͐yn3¡gρ6
+-QTi6AK ??G(ŹYew]i?m?jKP.Hv
+3NEmMa: L- ʥf͞6 #-1'6gj*3\e|9=sA mZEQמCqi+lҴrcvƾ"+z4DQ+ue6p!k[ /o j'}ʳn\E{}-os|)l5Univ%SiOhsU[n`CLH ámv\FFvS =B( w;
+endstream
+endobj
+943 0 obj <<
+/Type /Page
+/Contents 944 0 R
+/Resources 942 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 888 0 R
+/Annots [ 941 0 R ]
+>> endobj
+941 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [240.304 519.371 247.278 527.784]
+/Subtype /Link
+/A << /S /GoTo /D (cite.tikz) >>
+>> endobj
+945 0 obj <<
+/D [943 0 R /XYZ 124.802 740.998 null]
+>> endobj
+118 0 obj <<
+/D [943 0 R /XYZ 124.802 716.092 null]
+>> endobj
+946 0 obj <<
+/D [943 0 R /XYZ 124.802 667.87 null]
+>> endobj
+947 0 obj <<
+/D [943 0 R /XYZ 124.802 669.807 null]
+>> endobj
+948 0 obj <<
+/D [943 0 R /XYZ 124.802 657.852 null]
+>> endobj
+949 0 obj <<
+/D [943 0 R /XYZ 124.802 645.896 null]
+>> endobj
+950 0 obj <<
+/D [943 0 R /XYZ 124.802 610.031 null]
+>> endobj
+951 0 obj <<
+/D [943 0 R /XYZ 124.802 610.031 null]
+>> endobj
+952 0 obj <<
+/D [943 0 R /XYZ 124.802 598.076 null]
+>> endobj
+953 0 obj <<
+/D [943 0 R /XYZ 124.802 586.121 null]
+>> endobj
+954 0 obj <<
+/D [943 0 R /XYZ 124.802 500.497 null]
+>> endobj
+955 0 obj <<
+/D [943 0 R /XYZ 124.802 502.434 null]
+>> endobj
+956 0 obj <<
+/D [943 0 R /XYZ 124.802 490.479 null]
+>> endobj
+957 0 obj <<
+/D [943 0 R /XYZ 124.802 478.524 null]
+>> endobj
+958 0 obj <<
+/D [943 0 R /XYZ 124.802 466.569 null]
+>> endobj
+959 0 obj <<
+/D [943 0 R /XYZ 124.802 454.614 null]
+>> endobj
+960 0 obj <<
+/D [943 0 R /XYZ 124.802 404.856 null]
+>> endobj
+961 0 obj <<
+/D [943 0 R /XYZ 124.802 406.793 null]
+>> endobj
+962 0 obj <<
+/D [943 0 R /XYZ 124.802 394.838 null]
+>> endobj
+963 0 obj <<
+/D [943 0 R /XYZ 124.802 382.883 null]
+>> endobj
+964 0 obj <<
+/D [943 0 R /XYZ 124.802 370.928 null]
+>> endobj
+965 0 obj <<
+/D [943 0 R /XYZ 124.802 358.972 null]
+>> endobj
+966 0 obj <<
+/D [943 0 R /XYZ 124.802 347.017 null]
+>> endobj
+967 0 obj <<
+/D [943 0 R /XYZ 124.802 293.274 null]
+>> endobj
+968 0 obj <<
+/D [943 0 R /XYZ 149.709 295.211 null]
+>> endobj
+969 0 obj <<
+/D [943 0 R /XYZ 149.709 283.256 null]
+>> endobj
+970 0 obj <<
+/D [943 0 R /XYZ 149.709 271.301 null]
+>> endobj
+971 0 obj <<
+/D [943 0 R /XYZ 124.802 225.528 null]
+>> endobj
+972 0 obj <<
+/D [943 0 R /XYZ 149.709 227.466 null]
+>> endobj
+973 0 obj <<
+/D [943 0 R /XYZ 149.709 215.51 null]
+>> endobj
+974 0 obj <<
+/D [943 0 R /XYZ 149.709 203.555 null]
+>> endobj
+942 0 obj <<
+/Font << /F43 398 0 R /F8 399 0 R /F50 400 0 R /F52 480 0 R /F11 497 0 R /F55 517 0 R /F14 452 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+977 0 obj <<
+/Length 1560
+/Filter /FlateDecode
+>>
+stream
+xڵXI6W rc3(j C&A{*
+PL#c!t<ɣz&^O>7Ht\MHǓ dYMnO&6)hyqkWR܉:-nϢ3g $:n/I_ %y
+
+<e)ԋ#oʵjhhO3{x (^nͬw{15wN,S7[^`D،klTk܁3Ċ;@^X4bwPWYU-b(Ӕ%WӪŭ٘Y?a1*4v d(dN 3o82F4V[|޷=Xwyvyrp*EwQ%IG픑HhaKI0raKĊ綠βH+J̟0RmԷ*5uڜeYqٝٵ@J)[6v¢Vh;[g~oHml2TP!'^8iH
+ IT.
+AY'YWi|gV*Ҝ(%LC{'ۃ=I^4Q֫v+$ʯˋ0IJnS#Z{Q{KpLW+p/#Z3~O,i:AJC%9$7jgGڄTs~1? Zr-Ι"lj\Zhmcfs}Fy;$,@0 inеt࡚
+)ӊJXQyz6$rҲTR~cҾ,+}i`@^R"(>^"Fs)2?H_y?1EI ţyk
+endstream
+endobj
+976 0 obj <<
+/Type /Page
+/Contents 977 0 R
+/Resources 975 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 888 0 R
+>> endobj
+978 0 obj <<
+/D [976 0 R /XYZ 124.802 740.998 null]
+>> endobj
+979 0 obj <<
+/D [976 0 R /XYZ 124.802 716.092 null]
+>> endobj
+980 0 obj <<
+/D [976 0 R /XYZ 124.802 718.084 null]
+>> endobj
+981 0 obj <<
+/D [976 0 R /XYZ 124.802 706.129 null]
+>> endobj
+982 0 obj <<
+/D [976 0 R /XYZ 124.802 694.174 null]
+>> endobj
+983 0 obj <<
+/D [976 0 R /XYZ 124.802 670.263 null]
+>> endobj
+984 0 obj <<
+/D [976 0 R /XYZ 124.802 658.308 null]
+>> endobj
+985 0 obj <<
+/D [976 0 R /XYZ 124.802 646.353 null]
+>> endobj
+986 0 obj <<
+/D [976 0 R /XYZ 124.802 634.398 null]
+>> endobj
+987 0 obj <<
+/D [976 0 R /XYZ 124.802 622.443 null]
+>> endobj
+988 0 obj <<
+/D [976 0 R /XYZ 124.802 610.488 null]
+>> endobj
+989 0 obj <<
+/D [976 0 R /XYZ 124.802 575.027 null]
+>> endobj
+990 0 obj <<
+/D [976 0 R /XYZ 124.802 546.789 null]
+>> endobj
+991 0 obj <<
+/D [976 0 R /XYZ 124.802 548.726 null]
+>> endobj
+122 0 obj <<
+/D [976 0 R /XYZ 124.802 513.266 null]
+>> endobj
+992 0 obj <<
+/D [976 0 R /XYZ 124.802 454.683 null]
+>> endobj
+993 0 obj <<
+/D [976 0 R /XYZ 124.802 432.765 null]
+>> endobj
+994 0 obj <<
+/D [976 0 R /XYZ 149.709 434.702 null]
+>> endobj
+995 0 obj <<
+/D [976 0 R /XYZ 149.709 422.747 null]
+>> endobj
+996 0 obj <<
+/D [976 0 R /XYZ 124.802 397.243 null]
+>> endobj
+997 0 obj <<
+/D [976 0 R /XYZ 124.802 376.974 null]
+>> endobj
+998 0 obj <<
+/D [976 0 R /XYZ 149.709 378.912 null]
+>> endobj
+999 0 obj <<
+/D [976 0 R /XYZ 149.709 366.956 null]
+>> endobj
+1000 0 obj <<
+/D [976 0 R /XYZ 149.709 355.001 null]
+>> endobj
+1001 0 obj <<
+/D [976 0 R /XYZ 149.709 343.046 null]
+>> endobj
+1002 0 obj <<
+/D [976 0 R /XYZ 149.709 331.091 null]
+>> endobj
+1003 0 obj <<
+/D [976 0 R /XYZ 149.709 319.136 null]
+>> endobj
+1004 0 obj <<
+/D [976 0 R /XYZ 149.709 295.225 null]
+>> endobj
+126 0 obj <<
+/D [976 0 R /XYZ 124.802 213.594 null]
+>> endobj
+1005 0 obj <<
+/D [976 0 R /XYZ 124.802 174.726 null]
+>> endobj
+1006 0 obj <<
+/D [976 0 R /XYZ 124.802 177.217 null]
+>> endobj
+975 0 obj <<
+/Font << /F50 400 0 R /F59 539 0 R /F43 398 0 R /F8 399 0 R /F52 480 0 R /F42 396 0 R /F14 452 0 R /F55 517 0 R /F11 497 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1009 0 obj <<
+/Length 1312
+/Filter /FlateDecode
+>>
+stream
+xXKo6WRT".za $E '/bwM;DI]#ÇVt>Xp87c` ?./p2!hrb$8Ffr| "dy˻,A,ItB9ʒ(- 246Lg$HXynHi+eUMC( |~ d$MW8M uQi/v$$\]+Dz Xj pjS8ƍv(hx奒;ga(X sO'!0i:~}xӞnQ.[$ Tg6Jïsr@ YϴI*Q$GY(*4xƸM,Xlr-ZbcrC˵۫:]wڽl2/6/<݃69F!8 '&' ]u!fF4Pr0uF? ́ dD2vD0Ng0
+dN,6!N
+endstream
+endobj
+1008 0 obj <<
+/Type /Page
+/Contents 1009 0 R
+/Resources 1007 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 888 0 R
+>> endobj
+1010 0 obj <<
+/D [1008 0 R /XYZ 124.802 740.998 null]
+>> endobj
+130 0 obj <<
+/D [1008 0 R /XYZ 124.802 716.092 null]
+>> endobj
+134 0 obj <<
+/D [1008 0 R /XYZ 124.802 659.353 null]
+>> endobj
+1011 0 obj <<
+/D [1008 0 R /XYZ 124.802 621.592 null]
+>> endobj
+1012 0 obj <<
+/D [1008 0 R /XYZ 124.802 623.529 null]
+>> endobj
+1013 0 obj <<
+/D [1008 0 R /XYZ 124.802 611.574 null]
+>> endobj
+1014 0 obj <<
+/D [1008 0 R /XYZ 124.802 599.619 null]
+>> endobj
+1015 0 obj <<
+/D [1008 0 R /XYZ 124.802 587.663 null]
+>> endobj
+1016 0 obj <<
+/D [1008 0 R /XYZ 124.802 575.708 null]
+>> endobj
+1017 0 obj <<
+/D [1008 0 R /XYZ 124.802 490.085 null]
+>> endobj
+1018 0 obj <<
+/D [1008 0 R /XYZ 124.802 492.022 null]
+>> endobj
+138 0 obj <<
+/D [1008 0 R /XYZ 124.802 433.748 null]
+>> endobj
+1019 0 obj <<
+/D [1008 0 R /XYZ 124.802 395.987 null]
+>> endobj
+1020 0 obj <<
+/D [1008 0 R /XYZ 124.802 397.924 null]
+>> endobj
+1021 0 obj <<
+/D [1008 0 R /XYZ 124.802 385.969 null]
+>> endobj
+1022 0 obj <<
+/D [1008 0 R /XYZ 124.802 374.013 null]
+>> endobj
+1023 0 obj <<
+/D [1008 0 R /XYZ 124.802 362.058 null]
+>> endobj
+1024 0 obj <<
+/D [1008 0 R /XYZ 124.802 350.103 null]
+>> endobj
+1025 0 obj <<
+/D [1008 0 R /XYZ 124.802 338.148 null]
+>> endobj
+1026 0 obj <<
+/D [1008 0 R /XYZ 124.802 326.193 null]
+>> endobj
+1027 0 obj <<
+/D [1008 0 R /XYZ 124.802 314.238 null]
+>> endobj
+142 0 obj <<
+/D [1008 0 R /XYZ 124.802 256.517 null]
+>> endobj
+1028 0 obj <<
+/D [1008 0 R /XYZ 124.802 206.247 null]
+>> endobj
+1029 0 obj <<
+/D [1008 0 R /XYZ 124.802 208.184 null]
+>> endobj
+1030 0 obj <<
+/D [1008 0 R /XYZ 124.802 196.229 null]
+>> endobj
+1031 0 obj <<
+/D [1008 0 R /XYZ 124.802 184.274 null]
+>> endobj
+1032 0 obj <<
+/D [1008 0 R /XYZ 124.802 172.318 null]
+>> endobj
+1033 0 obj <<
+/D [1008 0 R /XYZ 124.802 160.363 null]
+>> endobj
+1007 0 obj <<
+/Font << /F42 396 0 R /F14 452 0 R /F55 517 0 R /F8 399 0 R /F10 479 0 R /F11 497 0 R /F50 400 0 R /F59 539 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1036 0 obj <<
+/Length 1942
+/Filter /FlateDecode
+>>
+stream
+xڵXmo*WII<lqŽ
+5xiP`
+nSQ2U54;981 .c&"~!BΖSz AP yICL1os0!g2[xG(pGc#dрWEpyaJۙHG
+Ir
+BpϦ6fNTh_5Uۧz jz2j}zMuOTԘQi8%ΧRyNR^'wU$jLU$&#7#.}hY4tm"/ۼ/@vwxj@>΂!kl
+ACϫh7Gfߺ~+j"
+[FV8il:Ǻ=RG$S&aR5֮XNp|‚f3qGdV;;=S֤3al޳!UFzwAmuF# 7sM{bXj>{}+?O:fSP mǜ&yNQ#i"&mCBUє}f
+kIP!l6mևUp`sM 䕙j; *u/i?o{WCXO7KI{P&,>۾Gлi-fD3!ڿ ue{ϫ9^?j̥꓅S sR;4]Ao^_ *TPzFel삺j!HV:jj!9V1I 0
+endstream
+endobj
+1035 0 obj <<
+/Type /Page
+/Contents 1036 0 R
+/Resources 1034 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1057 0 R
+>> endobj
+1037 0 obj <<
+/D [1035 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1038 0 obj <<
+/D [1035 0 R /XYZ 124.802 716.092 null]
+>> endobj
+1039 0 obj <<
+/D [1035 0 R /XYZ 124.802 718.084 null]
+>> endobj
+146 0 obj <<
+/D [1035 0 R /XYZ 124.802 672.318 null]
+>> endobj
+150 0 obj <<
+/D [1035 0 R /XYZ 124.802 424.795 null]
+>> endobj
+1040 0 obj <<
+/D [1035 0 R /XYZ 124.802 364.563 null]
+>> endobj
+1041 0 obj <<
+/D [1035 0 R /XYZ 124.802 366.5 null]
+>> endobj
+1042 0 obj <<
+/D [1035 0 R /XYZ 124.802 354.545 null]
+>> endobj
+1043 0 obj <<
+/D [1035 0 R /XYZ 124.802 342.589 null]
+>> endobj
+1044 0 obj <<
+/D [1035 0 R /XYZ 124.802 330.634 null]
+>> endobj
+1045 0 obj <<
+/D [1035 0 R /XYZ 124.802 318.679 null]
+>> endobj
+1046 0 obj <<
+/D [1035 0 R /XYZ 124.802 306.724 null]
+>> endobj
+1047 0 obj <<
+/D [1035 0 R /XYZ 124.802 245.011 null]
+>> endobj
+1048 0 obj <<
+/D [1035 0 R /XYZ 124.802 246.948 null]
+>> endobj
+1049 0 obj <<
+/D [1035 0 R /XYZ 124.802 234.993 null]
+>> endobj
+1050 0 obj <<
+/D [1035 0 R /XYZ 124.802 223.038 null]
+>> endobj
+1051 0 obj <<
+/D [1035 0 R /XYZ 124.802 211.083 null]
+>> endobj
+1052 0 obj <<
+/D [1035 0 R /XYZ 124.802 199.127 null]
+>> endobj
+1053 0 obj <<
+/D [1035 0 R /XYZ 124.802 187.172 null]
+>> endobj
+1054 0 obj <<
+/D [1035 0 R /XYZ 124.802 175.217 null]
+>> endobj
+1055 0 obj <<
+/D [1035 0 R /XYZ 124.802 163.262 null]
+>> endobj
+1056 0 obj <<
+/D [1035 0 R /XYZ 124.802 151.307 null]
+>> endobj
+1034 0 obj <<
+/Font << /F50 400 0 R /F8 399 0 R /F43 398 0 R /F55 517 0 R /F14 452 0 R /F11 497 0 R /F7 523 0 R /F52 480 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1062 0 obj <<
+/Length 2053
+/Filter /FlateDecode
+>>
+stream
+xڭY_۸ϧKE>\ѤP \YZB ;䐔dkcwsOpKvFg}Eի7$y<[mfG$|&iLOg|v|bakc/9Η1AT8+{U~-!n~;_2FR!:>k7 I0ăz 0ȓ /6G\Zy*UF|]/ʢOHXt;$:OESM l,hyc IHt%2(RݬBҡKKd {?ye(:3S)}(̗Q]aXj. V$4!Q|. 1hipТ0bVPUͤpU m:`>4wR?UCi`
+t?8ʨ_0%:fۨu] `Үsv*oUnp5?6ysa:eW 78X0Ʒ9뱜9Xzbui(pb
+ʬ{0+wdSlw.LU)b
+?ucg)7`tMji5enh)?H(JFe=s6D|(IÓתՁ>NL4%18m좾I,Mʐ&eLq2JWb#<js(GDȞUc0p2%ݰRjTB~ꢋUn%MU7%'-}\GNd-!cd@4.Z}#K{ P)[Acȭft#4Xݸe;pQBk8Ӌ ,`<uvqC}D8c+dע
+O't%Kk1>&p2%KimR\e]|3a"$2rox4a& HL}v
+;FHŨ& $cFhU٠Q0Bmj . sƪ' 2c]Pk6kAaɨ"fŰﳑΒ'Z}?pd@ %/g:q 
+[>TEݗ)пv
+M!NLyY5aPjst˗GC؍OP;{dJNzdc=}7bh= r(أ uʨ^=6' %JB*#wWR
+endstream
+endobj
+1061 0 obj <<
+/Type /Page
+/Contents 1062 0 R
+/Resources 1060 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1057 0 R
+/Annots [ 1058 0 R 1059 0 R ]
+>> endobj
+1058 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [343.995 581.202 355.95 592.05]
+/Subtype /Link
+/A << /S /GoTo /D (figure.11) >>
+>> endobj
+1059 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [169.191 239.525 176.165 247.938]
+/Subtype /Link
+/A << /S /GoTo /D (cite.tikz) >>
+>> endobj
+1063 0 obj <<
+/D [1061 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1064 0 obj <<
+/D [1061 0 R /XYZ 124.802 716.092 null]
+>> endobj
+1065 0 obj <<
+/D [1061 0 R /XYZ 124.802 718.084 null]
+>> endobj
+1066 0 obj <<
+/D [1061 0 R /XYZ 124.802 706.129 null]
+>> endobj
+1067 0 obj <<
+/D [1061 0 R /XYZ 124.802 694.174 null]
+>> endobj
+154 0 obj <<
+/D [1061 0 R /XYZ 124.802 648.408 null]
+>> endobj
+1068 0 obj <<
+/D [1061 0 R /XYZ 124.802 612.086 null]
+>> endobj
+1069 0 obj <<
+/D [1061 0 R /XYZ 124.802 614.023 null]
+>> endobj
+1070 0 obj <<
+/D [1061 0 R /XYZ 124.802 551.756 null]
+>> endobj
+1071 0 obj <<
+/D [1061 0 R /XYZ 124.802 554.247 null]
+>> endobj
+158 0 obj <<
+/D [1061 0 R /XYZ 124.802 448.705 null]
+>> endobj
+162 0 obj <<
+/D [1061 0 R /XYZ 124.802 392.465 null]
+>> endobj
+1060 0 obj <<
+/Font << /F50 400 0 R /F8 399 0 R /F43 398 0 R /F55 517 0 R /F52 480 0 R /F11 497 0 R /F7 523 0 R /F14 452 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1075 0 obj <<
+/Length 8052
+/Filter /FlateDecode
+>>
+stream
+x͝[u+΃PSK=Ĉmo1zHI9LщC=zZ93S=1.uuW>ɜ~odO6t,)݋?j}aoK<Y5/!pzwzaYl^.?xln o^%=åC-,R9L.% t
+ba @h<BG9s$x%z\mn;UX
+ԃO71ńj/Ի\:}݉{ &^Z?:R3F2Mv</~qwzF ;\:Rv(t(O1 X
+cV(ePю@k0P*ڑ, e-_eQqE<+\,*q%MCEs-P px @y @X
+̢x|̂"OC`EӨkX!;!u,*~1qEP`XC#ҕぁȶY\)o#*Z>6n\lAaYRT (8ge<@n"
+3-*%K\4 f \NqR
+x~1$M>@9Iw%4s9ZMr;hTq*x&yxL!z2DP7>aYOy=Bk#!M~ntIƨ%NNttҼeu\NqiY/bD\pSܴT:΢i.8 )nik$֥eMs \NQ)DZWe*xn15eMs \Nqi|թ, qeРK}As.
+ut6j6?a ]]NۉweS4'p;M˒o@9 E惢i*8 )nݍI Ui.8 )n^
+-55'p;ŭ)ƪ)h Nw\ԷqES\t.z-嬧"i.8 ɡJ"<d\W!l~f@?dlϻpWKgChs2۔Ju8UTw
+5os
+{uxt6<6?ၺ ]]NۉwH1t9%.xp%Az7x7؎vGcczwlwl"sXVlwl"srvYܱlpϱ۸mlwl"ܓØD NOx8O^:>'.bC,k#M[DF/=ǦANO>YqŇTq1K{m9,E2?{~ABW=ǶK^Nbq/=TsK,E68(",E6-;,E6gö y""τǔVmfߦ B jZ<&a -|]݃J>%KՁļ ַI<U,i1a}Ҟzr*%`XM~AѐKUB5,5e%19j2DH'DV^6Ntr'>"ܶH RJ9&Q7Dz֫Z m;ޭ]ZxO˞!ljJk)zLX٬| ahTc;IÕC=D`p eNW〈Y"v["pM-8t;вYhj)P!նQ/
+a6 mrb}MkO_]DR((mCޯaHUqvi1¦
+)]R,ߑ^{Q-(͒-fqE,m'bi]RSAhf2&Ͷ4E9k\?QZK@lO )oIx(d.ꔣ*V7DjHnq@
+DQn];6l"ꬍ~LBؾLKwi5ԺI½(nTWW"V6q]a*vkm .ܮs6nԳo\?cU?\Mp>DV1Ufi}0d@omtbE}M,mg\ՐMʃ(n߱aIUgm|Ǥ}>)&DLUJkR0/q-]5+j{+TjbEmCKI*ٟ˵}̳
+VS%9k]?gs~0G'.4E۞PRҎ$`pDퟤV:S؆v:mEkM9*nr?;7l܂Qվ4lחo@=h
+B M}9ZRHݟOس<ߝ}6>wҦn'ܐlCzgܔջ-k{~㇏7ĕQ7h5Ƶiz9EC&)t_4Zش=p?Ɨ6G
+>#Ξ3Z:EӉ0&&9ȓek;8ߝ\J"Z$$v
+*h^m ,e"Ҽ8h)ʚ8m5)#,1)kqZ`$G|&O} Lt볥†=ϐ,Ŵd*eN$>DH:YpTyhȗ;Rʘh5
+*( RF(k
+*h 7DzRF(k
+*Zp@pxt/mUx upqiϙ'gY7w%oMz_rlY"&E$UT2{:sS#7ݒS ;K\nR蝹H܅]F.jGe
+%ܴ#@2U%˂6Z
+̢z`{j ]ԏE= ]`QۃČYP`5X#&EP`5X#ಸ,(0,pp.fQE=2 ] x
+jKX6?MaX ), )ln?1i55#`:<3쉦`,X6۵5#`:GhA!"jx lyp']=0\F?/y kj Fujnou K
+:l)$vL@TgZuriƁEdorxwMaXNa)21bYSX0SXтKg,gMaXN&wY'XaIA 83*gMATN\00quq^q.+qbхqb4q{K4uopsS7Db\fMaXNj), ֩{1v)I7cXSwcc:kZ6nIx˚‚`Lݝ|SwwMaXNfI cIA 8l0k
+
+Fu 9<V\W
+
++
+wu0P?"%.S|T#t:NeƥBFgf hXNaRC%fMaXNA-@T1L4upSX2[T), ,BQ4#`:ɘ-7
+ Fu2 ]), (#M&2
+9{Gy {u{ta~nE-goڥ^% :0N6fwI4f0@Nf>;A), d%snCO""<:j>u5:,8Ch"̳I,j4X D٧j`E4gf`E4'Xsl,@Tה%i#a{:hؽ_4D|<sTA6 VDy6e{"*4Z9iT=Qh0&՜'F`ljHeǹ VDyfWA?F`CSz VDy.V(1rW?Np*b~S iM/,9m]-$]m]N%6VAC{0]~% m2G#4u=yeo{لփ0=5InӷDC+O~RahusYiYiheE¨ zܤD'9tZ``r{$.ihߴ-?35skڎvb)75I}<g[n:Xk,/
+o״]}Fnּؽ*^
+Pp񮏚ZM[jIՔ:F;B5s1?[b#:mPۄ53
+{Z.ږEZi}w}t-C~*҉2C&%PwjӾ f"i +=sLd%v
+GU0^E^1ݨf~ rۿ;6l}99~&&ɩIJ3>%)?)5JJ]HJR?")uliSܮeXr6{;/䦎-wl^iǻZ~]lz ?.!@g5hGJm⥟ D͵Mz0{szMӚVz*Zsk;}~'5= Xg[P;ҼG~mm?Sk}}T*H7߿}BrǷMEa>!5|{_:pEj﷯?U
+z}vOoi?{<_2п{7ᄁ?Wyh立޽꯿vdk/~7ɘ߽zxS?~ku`.
+K^݇O>to߿.uf:&{C½1T{5dwٗeVK0cCa lpڶm?_o޿t[c8 _x6B}7ִL =?|ݻKvt}O r \zAGKdRf'W󈗹/w݇_}|˻Weh헅,?;ȿdi U fyDܐ/G\r4#-5,dP ޠ'#Jr˓b<IMh
+Po~{ڼMKkZy$_^nhm~ؔ>-vz_u}Ï~x}^wo߼~UG؄(^>W_?[o?7ooUwoDu{{GSo:')^׹V'ZȮqz.f(7=uYyiy$
+endstream
+endobj
+1074 0 obj <<
+/Type /Page
+/Contents 1075 0 R
+/Resources 1073 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1057 0 R
+>> endobj
+1076 0 obj <<
+/D [1074 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1077 0 obj <<
+/D [1074 0 R /XYZ 124.802 545.996 null]
+>> endobj
+1078 0 obj <<
+/D [1074 0 R /XYZ 124.802 545.996 null]
+>> endobj
+1079 0 obj <<
+/D [1074 0 R /XYZ 124.802 534.041 null]
+>> endobj
+1080 0 obj <<
+/D [1074 0 R /XYZ 124.802 522.085 null]
+>> endobj
+1081 0 obj <<
+/D [1074 0 R /XYZ 124.802 510.13 null]
+>> endobj
+1082 0 obj <<
+/D [1074 0 R /XYZ 124.802 498.175 null]
+>> endobj
+1083 0 obj <<
+/D [1074 0 R /XYZ 124.802 486.22 null]
+>> endobj
+1084 0 obj <<
+/D [1074 0 R /XYZ 124.802 474.265 null]
+>> endobj
+1085 0 obj <<
+/D [1074 0 R /XYZ 124.802 462.31 null]
+>> endobj
+1086 0 obj <<
+/D [1074 0 R /XYZ 124.802 450.354 null]
+>> endobj
+1087 0 obj <<
+/D [1074 0 R /XYZ 124.802 438.399 null]
+>> endobj
+1088 0 obj <<
+/D [1074 0 R /XYZ 124.802 426.444 null]
+>> endobj
+1089 0 obj <<
+/D [1074 0 R /XYZ 124.802 414.489 null]
+>> endobj
+1090 0 obj <<
+/D [1074 0 R /XYZ 124.802 402.534 null]
+>> endobj
+1091 0 obj <<
+/D [1074 0 R /XYZ 124.802 390.579 null]
+>> endobj
+1092 0 obj <<
+/D [1074 0 R /XYZ 124.802 378.623 null]
+>> endobj
+1093 0 obj <<
+/D [1074 0 R /XYZ 124.802 366.668 null]
+>> endobj
+1094 0 obj <<
+/D [1074 0 R /XYZ 124.802 354.713 null]
+>> endobj
+1095 0 obj <<
+/D [1074 0 R /XYZ 124.802 342.758 null]
+>> endobj
+1096 0 obj <<
+/D [1074 0 R /XYZ 124.802 330.803 null]
+>> endobj
+1097 0 obj <<
+/D [1074 0 R /XYZ 124.802 318.848 null]
+>> endobj
+1098 0 obj <<
+/D [1074 0 R /XYZ 124.802 306.892 null]
+>> endobj
+1099 0 obj <<
+/D [1074 0 R /XYZ 124.802 294.937 null]
+>> endobj
+1100 0 obj <<
+/D [1074 0 R /XYZ 124.802 282.982 null]
+>> endobj
+1101 0 obj <<
+/D [1074 0 R /XYZ 124.802 271.027 null]
+>> endobj
+1102 0 obj <<
+/D [1074 0 R /XYZ 124.802 259.072 null]
+>> endobj
+1103 0 obj <<
+/D [1074 0 R /XYZ 124.802 247.117 null]
+>> endobj
+1104 0 obj <<
+/D [1074 0 R /XYZ 124.802 235.161 null]
+>> endobj
+1105 0 obj <<
+/D [1074 0 R /XYZ 124.802 223.206 null]
+>> endobj
+1106 0 obj <<
+/D [1074 0 R /XYZ 124.802 211.251 null]
+>> endobj
+1107 0 obj <<
+/D [1074 0 R /XYZ 124.802 199.296 null]
+>> endobj
+1108 0 obj <<
+/D [1074 0 R /XYZ 124.802 187.341 null]
+>> endobj
+1072 0 obj <<
+/D [1074 0 R /XYZ 172.594 159.445 null]
+>> endobj
+1073 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F11 497 0 R /F50 400 0 R /F55 517 0 R /F59 539 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1111 0 obj <<
+/Length 2843
+/Filter /FlateDecode
+>>
+stream
+xZ[~_ )b&[$h TcӶ:JL{uͥ)
+e,/_|7W#HXC-D 5a.>_/e4-oV_~C-X9}e,\K#MZ\4CsOJ\qĸ
+۹c%RC.k+ v㠩%>r]YВE"hKק2ov4:!w`D6=rx4+iolsN0e*f%m<# !2@BMdBY]SGݤNI䆃Grs9!00թRcZoTYWFQ6n'?'',摠@DjvVYIM/+wDVߚHR`f)r4%kh umSLv|^H9-tŖ
+5
+1~ն]U)<QG!M*_P>tk޽5OSX;< qtY sgo5cpBeo [m%);$RI@覧@bܟr{>R?r )BG.$BLD D^@dK
+uL I`
+ȓӅ
+})G/
+k!zZu{\9oG(V]EtU CI
+3 z6O%H
+
+ۑ҅ٗ;6uw! ,(X-\9է?zXQ-NB, G_it
+endstream
+endobj
+1110 0 obj <<
+/Type /Page
+/Contents 1111 0 R
+/Resources 1109 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1057 0 R
+>> endobj
+1112 0 obj <<
+/D [1110 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1113 0 obj <<
+/D [1110 0 R /XYZ 124.802 716.092 null]
+>> endobj
+1114 0 obj <<
+/D [1110 0 R /XYZ 124.802 473.964 null]
+>> endobj
+1115 0 obj <<
+/D [1110 0 R /XYZ 124.802 476.454 null]
+>> endobj
+1116 0 obj <<
+/D [1110 0 R /XYZ 124.802 464.499 null]
+>> endobj
+1117 0 obj <<
+/D [1110 0 R /XYZ 124.802 428.634 null]
+>> endobj
+1118 0 obj <<
+/D [1110 0 R /XYZ 124.802 428.634 null]
+>> endobj
+1119 0 obj <<
+/D [1110 0 R /XYZ 124.802 416.678 null]
+>> endobj
+166 0 obj <<
+/D [1110 0 R /XYZ 124.802 347.002 null]
+>> endobj
+170 0 obj <<
+/D [1110 0 R /XYZ 124.802 279.18 null]
+>> endobj
+1120 0 obj <<
+/D [1110 0 R /XYZ 124.802 182.709 null]
+>> endobj
+1121 0 obj <<
+/D [1110 0 R /XYZ 124.802 184.646 null]
+>> endobj
+1122 0 obj <<
+/D [1110 0 R /XYZ 124.802 133.843 null]
+>> endobj
+1123 0 obj <<
+/D [1110 0 R /XYZ 124.802 135.781 null]
+>> endobj
+1109 0 obj <<
+/Font << /F43 398 0 R /F8 399 0 R /F50 400 0 R /F52 480 0 R /F11 497 0 R /F14 452 0 R /F10 479 0 R /F55 517 0 R /F7 523 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1127 0 obj <<
+/Length 3048
+/Filter /FlateDecode
+>>
+stream
+xZ[o[~ׯ8.Bf~HZH4p)Z"̋#ҍ]Y%_FlQs}=tf?%V0E|}
+d(1{<~8ʼn
+*BAa( . DjJSx*>Es@Fmo@ YEEY!wbDr
+Pi7Cݐߙ
+ndg5.$Qaгd݌p\
+qb`c
+[)!cg-84EBmRz(z8;y5I<si@9,UUBg8!)|'@ɴ`lj-+ҩqYh0LuPf*,Uwr!\"FR\\BR&ǷV*uKqUX꬝I`8jjY  Ħ
+H`bV-hӻVU @R,tFݥ%C)a<xw
+WSn%a"Yd
+=DV1rC?pư<̀U).A8*H
+ʻ=_v0ѻoCLy"Ā-
+\+ޔ„L
+,+^\N
+&Zl.zs[ǵ1=x|0,ƠvX]6<%4"& BhXҍL(3vy ku6雷
+>Ho, laW~JKCb©3muǻGxLw8D03[o-O\6 w\H…_ӱ-kR$y<HvA;~ZF}s_Flp1u
+KgrH򷱨ld5
+,nwƸJ'\NK1ӖIfb{#i`e>ZvZ|"m>&P0EWO$ܡJbPM1/_>1>|>3p^VN_ XBޯMپ8;Woq~hz#!)')͑T 5E&h>~vo@fjsN8Kԥ$?ni-!u b-#NjyYj.śj*md綞 $QqAfldX׻EjA柕wWM dv}zxҳTjkUw٣(o>MM pXFG&O '~f@j
+endstream
+endobj
+1126 0 obj <<
+/Type /Page
+/Contents 1127 0 R
+/Resources 1125 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1057 0 R
+/Annots [ 1124 0 R ]
+>> endobj
+1124 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [179.514 233.258 191.469 244.106]
+/Subtype /Link
+/A << /S /GoTo /D (figure.12) >>
+>> endobj
+1128 0 obj <<
+/D [1126 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1129 0 obj <<
+/D [1126 0 R /XYZ 292.322 709.915 null]
+>> endobj
+1130 0 obj <<
+/D [1126 0 R /XYZ 292.322 713.501 null]
+>> endobj
+1131 0 obj <<
+/D [1126 0 R /XYZ 292.322 701.546 null]
+>> endobj
+1132 0 obj <<
+/D [1126 0 R /XYZ 292.322 689.591 null]
+>> endobj
+1133 0 obj <<
+/D [1126 0 R /XYZ 292.322 677.636 null]
+>> endobj
+1134 0 obj <<
+/D [1126 0 R /XYZ 292.322 665.681 null]
+>> endobj
+1135 0 obj <<
+/D [1126 0 R /XYZ 292.322 653.725 null]
+>> endobj
+1136 0 obj <<
+/D [1126 0 R /XYZ 292.322 641.77 null]
+>> endobj
+1137 0 obj <<
+/D [1126 0 R /XYZ 292.322 629.815 null]
+>> endobj
+1138 0 obj <<
+/D [1126 0 R /XYZ 227.32 589.406 null]
+>> endobj
+1139 0 obj <<
+/D [1126 0 R /XYZ 124.802 538.761 null]
+>> endobj
+1140 0 obj <<
+/D [1126 0 R /XYZ 124.802 540.698 null]
+>> endobj
+1141 0 obj <<
+/D [1126 0 R /XYZ 124.802 528.743 null]
+>> endobj
+1142 0 obj <<
+/D [1126 0 R /XYZ 124.802 516.788 null]
+>> endobj
+1143 0 obj <<
+/D [1126 0 R /XYZ 124.802 504.833 null]
+>> endobj
+1144 0 obj <<
+/D [1126 0 R /XYZ 124.802 492.877 null]
+>> endobj
+1145 0 obj <<
+/D [1126 0 R /XYZ 124.802 480.922 null]
+>> endobj
+1146 0 obj <<
+/D [1126 0 R /XYZ 124.802 468.967 null]
+>> endobj
+1147 0 obj <<
+/D [1126 0 R /XYZ 124.802 457.012 null]
+>> endobj
+1148 0 obj <<
+/D [1126 0 R /XYZ 124.802 445.057 null]
+>> endobj
+1149 0 obj <<
+/D [1126 0 R /XYZ 124.802 433.102 null]
+>> endobj
+1150 0 obj <<
+/D [1126 0 R /XYZ 124.802 421.146 null]
+>> endobj
+1151 0 obj <<
+/D [1126 0 R /XYZ 124.802 409.191 null]
+>> endobj
+1152 0 obj <<
+/D [1126 0 R /XYZ 124.802 397.236 null]
+>> endobj
+1153 0 obj <<
+/D [1126 0 R /XYZ 124.802 385.281 null]
+>> endobj
+1154 0 obj <<
+/D [1126 0 R /XYZ 124.802 373.326 null]
+>> endobj
+1155 0 obj <<
+/D [1126 0 R /XYZ 124.802 361.371 null]
+>> endobj
+1156 0 obj <<
+/D [1126 0 R /XYZ 124.802 349.415 null]
+>> endobj
+1157 0 obj <<
+/D [1126 0 R /XYZ 124.802 337.46 null]
+>> endobj
+1158 0 obj <<
+/D [1126 0 R /XYZ 124.802 325.505 null]
+>> endobj
+1159 0 obj <<
+/D [1126 0 R /XYZ 124.802 313.55 null]
+>> endobj
+1160 0 obj <<
+/D [1126 0 R /XYZ 124.802 301.595 null]
+>> endobj
+1161 0 obj <<
+/D [1126 0 R /XYZ 124.802 289.64 null]
+>> endobj
+1162 0 obj <<
+/D [1126 0 R /XYZ 124.802 277.684 null]
+>> endobj
+1163 0 obj <<
+/D [1126 0 R /XYZ 124.802 265.729 null]
+>> endobj
+174 0 obj <<
+/D [1126 0 R /XYZ 124.802 220.464 null]
+>> endobj
+1125 0 obj <<
+/Font << /F14 452 0 R /F8 399 0 R /F7 523 0 R /F11 497 0 R /F50 400 0 R /F59 539 0 R /F55 517 0 R /F43 398 0 R /F52 480 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1167 0 obj <<
+/Length 1976
+/Filter /FlateDecode
+>>
+stream
+xn_A,RTB\H0Rn
+%޾‡}ST]u=o>[o Ak7gg#(Q,[;M
+f" oޮ[u._6Qxn@L\ٕL-UO~ 5'')8~yRҢ8fvo??{o>7>Q_`N63Pb&HB|@>,HSj~iH9VuYUwJ )Nc&'wnϐ T
+  np9/ː4<wv3)x֭m
+N/
+>8`J0= Âc3Qv۫Ү;$zȐZ 2bBV9ʧœ&3m oKѕ wխ%66/eE 5QaGDž]YTܜ$rC6LPm ~^PP]* o-DSwMQDr#S^F(#=$*c 
+?*ի.9l;mpg]<6ڝ"s|Wuб()Fα;
+C-0J& (M]fhjAF٤#|%SÃ7Ojskv¥P,>N*]Sr+iњ5 U~T v$>;9.2N_+;-u - J^-P >\Ÿw.2YX hTz|츢xmx$OĎEw=IAa(8Dp!|K`.yQ\bH[% J|_i<*huhj#-,5E<UYm
+pqzNAOtkxEDRRFCQ#~BCUwRxMSG)tIʸ|!~HTxl1.4K+~?d\Ϸ0ywސA~`Rȅ'c-
+gYxRj3'\eGsW|74?ʇ԰<sC!ꨗ:i/eVwhMJ$Xn0
+o>)fOĩ/e֝UIO, ҁI4m+uc=ěXp
+endstream
+endobj
+1166 0 obj <<
+/Type /Page
+/Contents 1167 0 R
+/Resources 1165 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1057 0 R
+/Annots [ 1164 0 R ]
+>> endobj
+1164 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [221.052 203.251 227.514 215.29]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.1) >>
+>> endobj
+1168 0 obj <<
+/D [1166 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1170 0 obj <<
+/D [1166 0 R /XYZ 124.802 598.034 null]
+>> endobj
+1171 0 obj <<
+/D [1166 0 R /XYZ 124.802 600.525 null]
+>> endobj
+1172 0 obj <<
+/D [1166 0 R /XYZ 124.802 588.57 null]
+>> endobj
+1173 0 obj <<
+/D [1166 0 R /XYZ 124.802 576.615 null]
+>> endobj
+1174 0 obj <<
+/D [1166 0 R /XYZ 124.802 564.659 null]
+>> endobj
+1175 0 obj <<
+/D [1166 0 R /XYZ 124.802 552.704 null]
+>> endobj
+1176 0 obj <<
+/D [1166 0 R /XYZ 124.802 540.749 null]
+>> endobj
+1177 0 obj <<
+/D [1166 0 R /XYZ 124.802 528.794 null]
+>> endobj
+1178 0 obj <<
+/D [1166 0 R /XYZ 124.802 516.839 null]
+>> endobj
+1179 0 obj <<
+/D [1166 0 R /XYZ 124.802 479.036 null]
+>> endobj
+1180 0 obj <<
+/D [1166 0 R /XYZ 124.802 480.973 null]
+>> endobj
+1181 0 obj <<
+/D [1166 0 R /XYZ 124.802 442.617 null]
+>> endobj
+1182 0 obj <<
+/D [1166 0 R /XYZ 124.802 445.108 null]
+>> endobj
+1183 0 obj <<
+/D [1166 0 R /XYZ 124.802 409.242 null]
+>> endobj
+1184 0 obj <<
+/D [1166 0 R /XYZ 124.802 409.242 null]
+>> endobj
+178 0 obj <<
+/D [1166 0 R /XYZ 124.802 373.782 null]
+>> endobj
+182 0 obj <<
+/D [1166 0 R /XYZ 124.802 307.236 null]
+>> endobj
+186 0 obj <<
+/D [1166 0 R /XYZ 124.802 288.293 null]
+>> endobj
+190 0 obj <<
+/D [1166 0 R /XYZ 124.802 269.904 null]
+>> endobj
+1186 0 obj <<
+/D [1166 0 R /XYZ 140.045 161.661 null]
+>> endobj
+1165 0 obj <<
+/Font << /F62 1169 0 R /F43 398 0 R /F8 399 0 R /F50 400 0 R /F14 452 0 R /F55 517 0 R /F59 539 0 R /F11 497 0 R /F7 523 0 R /F19 1185 0 R /F18 1187 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1191 0 obj <<
+/Length 1719
+/Filter /FlateDecode
+>>
+stream
+xXKoFWRhMM/5
+P@R"3;K)p bfwv޿
+_.^,aI$͌ L(fq1.jv|R5uEA-?rYeu~W߁ic*D̸ ұ.ms*&TVbho-8gt7-V`VN7&=jƈZԬ♦E$/j؀g^Ԛ.gȢ%R|!yd \IuIfmT7s`3D7L8l )]諢Q{yn 2[>% 8Q6HWBGs9(΁<ddyϝSr)I|hۭ{UTZ;FAUnf}o9!jY,a$}ahyθgb,cmdкm֛4ωCe++,{a>b
+4N*yWb$q9
+j_E9 k@Z}ABE 렲 g<
+ͣΧBP+ZeEغGNNNn1.I(F |鐀wu8*^Hw* q` +
+endstream
+endobj
+1190 0 obj <<
+/Type /Page
+/Contents 1191 0 R
+/Resources 1189 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1201 0 R
+/Annots [ 1188 0 R ]
+>> endobj
+1188 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [342.32 290.466 357.043 301.314]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.8) >>
+>> endobj
+1192 0 obj <<
+/D [1190 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1193 0 obj <<
+/D [1190 0 R /XYZ 124.802 716.092 null]
+>> endobj
+1194 0 obj <<
+/D [1190 0 R /XYZ 124.802 718.084 null]
+>> endobj
+1195 0 obj <<
+/D [1190 0 R /XYZ 124.802 694.174 null]
+>> endobj
+1196 0 obj <<
+/D [1190 0 R /XYZ 124.802 670.263 null]
+>> endobj
+194 0 obj <<
+/D [1190 0 R /XYZ 124.802 602.524 null]
+>> endobj
+198 0 obj <<
+/D [1190 0 R /XYZ 124.802 582.72 null]
+>> endobj
+202 0 obj <<
+/D [1190 0 R /XYZ 124.802 515.939 null]
+>> endobj
+206 0 obj <<
+/D [1190 0 R /XYZ 124.802 495.059 null]
+>> endobj
+210 0 obj <<
+/D [1190 0 R /XYZ 124.802 476.67 null]
+>> endobj
+1197 0 obj <<
+/D [1190 0 R /XYZ 124.802 381.126 null]
+>> endobj
+1198 0 obj <<
+/D [1190 0 R /XYZ 124.802 383.063 null]
+>> endobj
+1199 0 obj <<
+/D [1190 0 R /XYZ 124.802 359.152 null]
+>> endobj
+1200 0 obj <<
+/D [1190 0 R /XYZ 124.802 335.242 null]
+>> endobj
+214 0 obj <<
+/D [1190 0 R /XYZ 124.802 277.521 null]
+>> endobj
+1189 0 obj <<
+/Font << /F50 400 0 R /F59 539 0 R /F8 399 0 R /F43 398 0 R /F55 517 0 R /F14 452 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1206 0 obj <<
+/Length 2765
+/Filter /FlateDecode
+>>
+stream
+xڝZێ}Ws;I~&`EL
+~N m0/?56&r4#mxM.𨻪8tP{jqc?-Ϫx
+pG/Ň)jb9ۼ}Iu$HZ^b+2c%DỪ@%qm^{?/5k
+f#Xz@s:6SY lOmA90|<Ӂ:j~ 7--A |3# b(eщMTt3:NThq}'Z T:#EoCl5t KzѱR'IۗpGgmi^omO3|8ʁ0)*Jk ÝIx١kфgWlɐyT"C Vӽ]=H֪aρph߇QH62
+|3
+?Mގu
+c7V*tǼl14`kPlehL^Fs(tI~
+ s"+64KeE· <e5N]ۙ_Xd,qa$02?74x ʻq65- $$(_66'H>'3!QGǔ
+o9VC7j9By[A4m‰Z}HUMj||e嘊[,kuT1Tܐ.k!S@E:W,l9lMF!ǩs!|4٘ePe3$
+QbߟYU|Qa0@F̯g=g&',5/|^$ -6Tz
+_wygY:yɄKtԄ\;vZw9DM)>g13<G_OuRl:Ol:( _\H<&x qV5hӻ3ōj|.d7ϊC?¹٬`)#;Be5B92wl;㎁ k3u9tC%5gxd-P]~RZ5ehSHU 5/G@rM?Bv@lS'S#ߞ0vkvΔZf, 2#
+1}A_Hd2[@
+fػLΌW$"
+endstream
+endobj
+1205 0 obj <<
+/Type /Page
+/Contents 1206 0 R
+/Resources 1204 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1201 0 R
+/Annots [ 1202 0 R 1203 0 R ]
+>> endobj
+1202 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [273.771 545.336 296.243 556.184]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.1.4) >>
+>> endobj
+1203 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [425.923 489.096 448.395 499.944]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.1.5) >>
+>> endobj
+1207 0 obj <<
+/D [1205 0 R /XYZ 124.802 740.998 null]
+>> endobj
+218 0 obj <<
+/D [1205 0 R /XYZ 124.802 600.587 null]
+>> endobj
+222 0 obj <<
+/D [1205 0 R /XYZ 124.802 532.392 null]
+>> endobj
+226 0 obj <<
+/D [1205 0 R /XYZ 124.802 476.151 null]
+>> endobj
+230 0 obj <<
+/D [1205 0 R /XYZ 124.802 255.97 null]
+>> endobj
+1204 0 obj <<
+/Font << /F14 452 0 R /F8 399 0 R /F50 400 0 R /F11 497 0 R /F7 523 0 R /F43 398 0 R /F55 517 0 R /F10 479 0 R /F13 624 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1214 0 obj <<
+/Length 2614
+/Filter /FlateDecode
+>>
+stream
+xڵ]6}/5+$C.)RE,hڵZYHr6{f8CY_Y\#r8oapW!Wi`UR[Dq7>_~7"=@UR η!IP$&xEDaY^=U ߗuGж^oT]Qe]YE{7G}K5%9k]6GX}߶hsişȭSG*I)5PB!H$l*=o( ZX"†_ ]&WTnxۜAғ3NWݢZBz(ʒ'$; H)9WDx: WEvySee &:ɪnY֢U-~8L6kjjKdEK
+Į<{'l$521qۮnJih,6'.#I Py6{_滬mVܦ2LWE[ʖ6ZX{$FJ(Z!5F>Pi<krmkmhw74/k=}86(!#ज़1h 1 {𭒳S&:uzMD
+jHDVJl:V['Jr" #VsUq:'r>ʤ+.SЄe}5E?j ~6g=jOU耢 \ZsjJךb}ɪn^O/:0.{Yy)vEԀlQ c~DMWlOq{O2uBFF<kM(AԜHNt}G袒i`ܗ!㥓Cq| {=ZcaHA.z 26V
+eɱgĞrfTpDT t$D9 t^/D61
+eBh%H;nW@!pW! 7,`;@p54A\ b~ u_Ϡ["M1ٓ3C0fS*$\6PHevHrS@]S,f19q o"|LP^q{*k,s@R@[!eHXbDqHs&Xc͉e,XICKdEJ$Q`D"b@j2y@ B(/qFh4"b<ϓ`V,y9g4,i@03: ,Fagemb&q;'Й [g 8;\碅id,CC1l+/Nˀ͠p{߯֡+XŦ<\.O), d)+C j{*m8cХYDOvc]?yvljp}ϋ}76HRs']pJYΰck]װ雃]߄,:*>YQ{SYyKa,2ɦw |'eVNNN(ۉTBXΰsv}
+ stkP3$rSFrc)v,Ze<|pg+G -vْGog|IHU]4S
+Ůe<Ă!k*:c>;)AֽJY<]c^[`kֵ)#}%Zjfyv0=%^BB_=v&GkN_ցߕr<8CAs%{`J|(c6H h=Z )L
+endstream
+endobj
+1213 0 obj <<
+/Type /Page
+/Contents 1214 0 R
+/Resources 1212 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1201 0 R
+/Annots [ 1208 0 R 1209 0 R 1210 0 R 1211 0 R ]
+>> endobj
+1208 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [421.578 643.212 428.04 655.459]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.2) >>
+>> endobj
+1209 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [341.462 562.715 347.924 575.308]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.3) >>
+>> endobj
+1210 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [296.99 529.396 311.712 540.244]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.6) >>
+>> endobj
+1211 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [365.677 529.396 380.399 540.244]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.7) >>
+>> endobj
+1215 0 obj <<
+/D [1213 0 R /XYZ 124.802 740.998 null]
+>> endobj
+234 0 obj <<
+/D [1213 0 R /XYZ 124.802 606.011 null]
+>> endobj
+238 0 obj <<
+/D [1213 0 R /XYZ 124.802 291.414 null]
+>> endobj
+1216 0 obj <<
+/D [1213 0 R /XYZ 140.045 193.258 null]
+>> endobj
+1218 0 obj <<
+/D [1213 0 R /XYZ 140.045 164.825 null]
+>> endobj
+1212 0 obj <<
+/Font << /F8 399 0 R /F43 398 0 R /F52 480 0 R /F11 497 0 R /F50 400 0 R /F7 523 0 R /F55 517 0 R /F14 452 0 R /F19 1185 0 R /F18 1187 0 R /F21 1217 0 R /F24 393 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1222 0 obj <<
+/Length 2069
+/Filter /FlateDecode
+>>
+stream
+xڵYKsW`8<tVS[D{H
+LED
+rx{WAR#Lp LYLGq.-7I[XJ!fyVe3M2'mha8voTۡ[%b &c DKBjfR}_ȫSODۅH9K4XrRmK2:)4+II'Bs!bix)o{}X,ErM6_؏uI.
+ U?4_iqm]_Ӎcu?p!~4s(Ta[em[[{NlbK%_6Ht*+{i[/mNOňS"YY ӽkYDaTv+_'HY{ۨh3g,
+1KZRz"r:\}vQ,Iz?}j|Gd3Ro5曟y$o9%XpBc.1g@tnĸWn_;ya
+"%# }k73T)a^_&ֻU6@3q~ b4^)5wlܗ,•8NS&w:UeT1%[/J(O.8i4[`6
+R3'psp= Lx%d2+>\[s=pWuy24_`MH9ka[ZtyBR j16~)P ?c:_5h[3wf0L^clI|j/^"Nz,
+&^H<"VkO:]/\FQV۬a)(xuR_CЦX)a2>d5;Zbl滬ܣyl׈ ;Tyɒ
+ٮ)
+8(L|C1V(XGIptKw$fʵW,JYARW$d
+endstream
+endobj
+1221 0 obj <<
+/Type /Page
+/Contents 1222 0 R
+/Resources 1220 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1201 0 R
+/Annots [ 1219 0 R ]
+>> endobj
+1219 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [300.848 260.854 307.31 272.894]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.4) >>
+>> endobj
+1223 0 obj <<
+/D [1221 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1224 0 obj <<
+/D [1221 0 R /XYZ 124.802 654.378 null]
+>> endobj
+1225 0 obj <<
+/D [1221 0 R /XYZ 149.709 656.316 null]
+>> endobj
+1226 0 obj <<
+/D [1221 0 R /XYZ 149.709 644.361 null]
+>> endobj
+1227 0 obj <<
+/D [1221 0 R /XYZ 149.709 632.405 null]
+>> endobj
+1228 0 obj <<
+/D [1221 0 R /XYZ 149.709 620.45 null]
+>> endobj
+1229 0 obj <<
+/D [1221 0 R /XYZ 149.709 608.495 null]
+>> endobj
+1230 0 obj <<
+/D [1221 0 R /XYZ 124.802 478.483 null]
+>> endobj
+1231 0 obj <<
+/D [1221 0 R /XYZ 149.709 480.973 null]
+>> endobj
+1232 0 obj <<
+/D [1221 0 R /XYZ 149.709 469.018 null]
+>> endobj
+1233 0 obj <<
+/D [1221 0 R /XYZ 149.709 457.063 null]
+>> endobj
+1234 0 obj <<
+/D [1221 0 R /XYZ 149.709 445.108 null]
+>> endobj
+1235 0 obj <<
+/D [1221 0 R /XYZ 149.709 433.153 null]
+>> endobj
+1236 0 obj <<
+/D [1221 0 R /XYZ 124.802 389.317 null]
+>> endobj
+1237 0 obj <<
+/D [1221 0 R /XYZ 149.709 389.317 null]
+>> endobj
+1238 0 obj <<
+/D [1221 0 R /XYZ 149.709 377.362 null]
+>> endobj
+1239 0 obj <<
+/D [1221 0 R /XYZ 149.709 365.407 null]
+>> endobj
+1240 0 obj <<
+/D [1221 0 R /XYZ 149.709 353.451 null]
+>> endobj
+1241 0 obj <<
+/D [1221 0 R /XYZ 149.709 341.496 null]
+>> endobj
+242 0 obj <<
+/D [1221 0 R /XYZ 124.802 220.014 null]
+>> endobj
+1242 0 obj <<
+/D [1221 0 R /XYZ 140.045 135.682 null]
+>> endobj
+1220 0 obj <<
+/Font << /F14 452 0 R /F8 399 0 R /F11 497 0 R /F52 480 0 R /F50 400 0 R /F55 517 0 R /F7 523 0 R /F43 398 0 R /F19 1185 0 R /F18 1187 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1245 0 obj <<
+/Length 1783
+/Filter /FlateDecode
+>>
+stream
+xXo6޿0T,VC}
+P
+9󉘯gK0ê^o,R-ā-F=e$gw'!;oʩXSwdc&J4)t+eeHe0lARA
+w)4+uBG&\p5N,glή,V*)^f+.[ bz#AɦɊE/c=΁7<gMw)h2#*Kem`c=체Y=
+`\`۳mf뤺L
+'meynpaJcz
+3ՖlfdfϝTF$iCza{=f(Wl4tRB^25T@0[D'Cfr@˷,Efuٰ&7FɱĚ)x'i>$m\K\**q
+c;WFg&VB]M^6LDজ))?/c'X30,d'íZ~iuTj`*yf *=nOkT0 [A1XRLPio,2i'.t:nxP*ȴOIU+B|6)sS#$j|7SUp'闩Z%=zh@5 p1_۬jN:P r.ےreng5\x$RAK~WLLI"壿 hL%4(LFFy.6uvQh\t Q*_Ə瀒޿ ~ ?lTt!@!O|ǥ s\0#b<0ώk5$1_}c+>ISUHL;׏AWq eϼUvh
+endstream
+endobj
+1244 0 obj <<
+/Type /Page
+/Contents 1245 0 R
+/Resources 1243 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1201 0 R
+>> endobj
+1246 0 obj <<
+/D [1244 0 R /XYZ 124.802 740.998 null]
+>> endobj
+246 0 obj <<
+/D [1244 0 R /XYZ 124.802 716.092 null]
+>> endobj
+1247 0 obj <<
+/D [1244 0 R /XYZ 124.802 681.762 null]
+>> endobj
+1248 0 obj <<
+/D [1244 0 R /XYZ 124.802 681.762 null]
+>> endobj
+1249 0 obj <<
+/D [1244 0 R /XYZ 124.802 669.807 null]
+>> endobj
+1250 0 obj <<
+/D [1244 0 R /XYZ 124.802 657.852 null]
+>> endobj
+1251 0 obj <<
+/D [1244 0 R /XYZ 124.802 645.896 null]
+>> endobj
+1252 0 obj <<
+/D [1244 0 R /XYZ 124.802 633.941 null]
+>> endobj
+1253 0 obj <<
+/D [1244 0 R /XYZ 124.802 536.363 null]
+>> endobj
+1254 0 obj <<
+/D [1244 0 R /XYZ 124.802 538.3 null]
+>> endobj
+1255 0 obj <<
+/D [1244 0 R /XYZ 124.802 526.345 null]
+>> endobj
+1256 0 obj <<
+/D [1244 0 R /XYZ 124.802 514.39 null]
+>> endobj
+1257 0 obj <<
+/D [1244 0 R /XYZ 124.802 502.434 null]
+>> endobj
+1258 0 obj <<
+/D [1244 0 R /XYZ 124.802 490.479 null]
+>> endobj
+250 0 obj <<
+/D [1244 0 R /XYZ 124.802 420.25 null]
+>> endobj
+254 0 obj <<
+/D [1244 0 R /XYZ 124.802 352.607 null]
+>> endobj
+1259 0 obj <<
+/D [1244 0 R /XYZ 124.802 220.644 null]
+>> endobj
+1260 0 obj <<
+/D [1244 0 R /XYZ 124.802 222.581 null]
+>> endobj
+1261 0 obj <<
+/D [1244 0 R /XYZ 124.802 210.626 null]
+>> endobj
+1262 0 obj <<
+/D [1244 0 R /XYZ 124.802 198.671 null]
+>> endobj
+1263 0 obj <<
+/D [1244 0 R /XYZ 124.802 186.716 null]
+>> endobj
+1264 0 obj <<
+/D [1244 0 R /XYZ 124.802 174.761 null]
+>> endobj
+1265 0 obj <<
+/D [1244 0 R /XYZ 124.802 162.805 null]
+>> endobj
+1266 0 obj <<
+/D [1244 0 R /XYZ 124.802 150.85 null]
+>> endobj
+1267 0 obj <<
+/D [1244 0 R /XYZ 124.802 138.895 null]
+>> endobj
+1243 0 obj <<
+/Font << /F43 398 0 R /F55 517 0 R /F8 399 0 R /F50 400 0 R /F11 497 0 R /F52 480 0 R /F14 452 0 R /F59 539 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1270 0 obj <<
+/Length 2870
+/Filter /FlateDecode
+>>
+stream
+xZmo_A 8D}>$wIТ5^+Fm"!f_([gg晝%..
+\>ɷ. 2 #iDlYs:1'!<¸I( je4B[ySwsʐ!4N_U跛 }e{!ju:g6U]fR˳ %i
+n82ɿ `|]8Ѣ.,9%1a(V TS@f/N0"1:]0$`eT!݃4A4m$y
+VXwEy{ØF>< ;˳ź{2
+S?U̹Ks9TPD*"XFxi <HRR\xdt FcC BOzAoK0CxS2?r
+:˃?87 Op9
+Eqg¹wY/F&gaQa6%
+K;!I@Î|%HarCGFRo0"I۷v=^X]omĝy5_±q>ΩUrUL\&
+HW(y|>_NnYMW]ժ\ -=)S0Hv? ,b0Ҫb;t)'N`WL͏cizYZ8\SU{)R nN!&/sFy.ֿ|}Y//?;rnE49jvm=LUWpd4G2몫r.=}
+ .?VIw4b5 FL2Ϡ.\BȒ<8p鏖]Z#F@y A-ӈ Cjj{BW)ĕ=؆!uioȍ
+5vJ뺿Wy&wM!ӤxB&4g$us vJgr7)T3`*::{:tpK?BGHq*&΅P!,r!p|kXz':gPn7ijs$~ڳJcL͡5I,ڍ돮{MRYrtQN&+tfL&BdNZCdߗ ;i.&z6TP8-i /veƥڦNfyYm9X&$2AV`2ij<EqpֶZH}
+OavvWaݛ{:}<~ÛuH@}e1p&@*_s]a>m?n'
+, ܥm(7ow16Rpz!aW}6DކIk,ɞ-AuPQdt_`t㒌ٲa]̔a'hBq"vb;9:7|CC .!Cؕ-=Ic]F=@4e
+ x4dC=
+uC?1YHLg8[_'A#L1n|Wq<;X
+endstream
+endobj
+1269 0 obj <<
+/Type /Page
+/Contents 1270 0 R
+/Resources 1268 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1201 0 R
+>> endobj
+1271 0 obj <<
+/D [1269 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1272 0 obj <<
+/D [1269 0 R /XYZ 124.802 718.084 null]
+>> endobj
+1273 0 obj <<
+/D [1269 0 R /XYZ 124.802 706.129 null]
+>> endobj
+1274 0 obj <<
+/D [1269 0 R /XYZ 124.802 694.174 null]
+>> endobj
+1275 0 obj <<
+/D [1269 0 R /XYZ 124.802 431.028 null]
+>> endobj
+1276 0 obj <<
+/D [1269 0 R /XYZ 124.802 432.966 null]
+>> endobj
+1277 0 obj <<
+/D [1269 0 R /XYZ 124.802 421.01 null]
+>> endobj
+1278 0 obj <<
+/D [1269 0 R /XYZ 124.802 409.055 null]
+>> endobj
+258 0 obj <<
+/D [1269 0 R /XYZ 124.802 162.681 null]
+>> endobj
+1268 0 obj <<
+/Font << /F50 400 0 R /F55 517 0 R /F8 399 0 R /F11 497 0 R /F59 539 0 R /F14 452 0 R /F52 480 0 R /F42 396 0 R /F7 523 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1281 0 obj <<
+/Length 1176
+/Filter /FlateDecode
+>>
+stream
+xڝVn6}W!Ee4&RDᇴ-P$mEhU$CN {)rdK$ eΰ0;{! R`SHrH,*̓Ij3C:Ih2LHL"jخƽ{fUϦڼ*ݖmޮ&g?!(^Y"/Z]OB<tRbDel+GTF"-{;k1D4$A*6pnWi?O u&<,ݒޥFíYm[D0n\af0\yc@[;UvwU}ĜAjbDI$FD,C.5zM 0mSs.v774ɑ3u掗0ݹ7zEeBzM`r{6էO=& UrH%[X5v:u0B$H/;x:l_#=HۛUi9G^`*AT
+zyХIFf Lt+ FPi$fd)C/AYڙ@JĆ4>Pb
+9T ݷ$|'Ҽ˩_H۴r=&LGra ,tn%upG]"O|X֭vmtVM[Kf
+̴aI1EzG''ZvP`yk~tuK=ձ NTȧ"kO6cm=نb
+ứeHr\Ji;cم9\@6tVckJ S~3xD*$XS;PDIg^/!yGQ{u\Do%_IJ?˄"bRwmP%pHH}M?z;j+c7Z)?KV;νeUwz+
+8\ơx8~-bEI!*l15lE;i#c)=7c6 D?85mvG"XeMlp7 Nq0ydjvK b
+endstream
+endobj
+1280 0 obj <<
+/Type /Page
+/Contents 1281 0 R
+/Resources 1279 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1308 0 R
+>> endobj
+1282 0 obj <<
+/D [1280 0 R /XYZ 124.802 740.998 null]
+>> endobj
+262 0 obj <<
+/D [1280 0 R /XYZ 124.802 678.296 null]
+>> endobj
+266 0 obj <<
+/D [1280 0 R /XYZ 124.802 618.783 null]
+>> endobj
+270 0 obj <<
+/D [1280 0 R /XYZ 124.802 565.296 null]
+>> endobj
+274 0 obj <<
+/D [1280 0 R /XYZ 124.802 544.527 null]
+>> endobj
+1283 0 obj <<
+/D [1280 0 R /XYZ 124.802 520.547 null]
+>> endobj
+1284 0 obj <<
+/D [1280 0 R /XYZ 124.802 522.484 null]
+>> endobj
+1285 0 obj <<
+/D [1280 0 R /XYZ 124.802 510.529 null]
+>> endobj
+1286 0 obj <<
+/D [1280 0 R /XYZ 124.802 498.574 null]
+>> endobj
+1287 0 obj <<
+/D [1280 0 R /XYZ 124.802 486.619 null]
+>> endobj
+1288 0 obj <<
+/D [1280 0 R /XYZ 124.802 474.664 null]
+>> endobj
+1289 0 obj <<
+/D [1280 0 R /XYZ 124.802 462.709 null]
+>> endobj
+1290 0 obj <<
+/D [1280 0 R /XYZ 124.802 450.753 null]
+>> endobj
+1291 0 obj <<
+/D [1280 0 R /XYZ 124.802 438.798 null]
+>> endobj
+1292 0 obj <<
+/D [1280 0 R /XYZ 124.802 426.843 null]
+>> endobj
+1293 0 obj <<
+/D [1280 0 R /XYZ 124.802 414.888 null]
+>> endobj
+1294 0 obj <<
+/D [1280 0 R /XYZ 124.802 402.933 null]
+>> endobj
+1295 0 obj <<
+/D [1280 0 R /XYZ 124.802 390.978 null]
+>> endobj
+1296 0 obj <<
+/D [1280 0 R /XYZ 124.802 379.022 null]
+>> endobj
+1297 0 obj <<
+/D [1280 0 R /XYZ 124.802 367.067 null]
+>> endobj
+1298 0 obj <<
+/D [1280 0 R /XYZ 124.802 355.112 null]
+>> endobj
+1299 0 obj <<
+/D [1280 0 R /XYZ 124.802 343.157 null]
+>> endobj
+1300 0 obj <<
+/D [1280 0 R /XYZ 124.802 331.202 null]
+>> endobj
+1301 0 obj <<
+/D [1280 0 R /XYZ 124.802 319.247 null]
+>> endobj
+1302 0 obj <<
+/D [1280 0 R /XYZ 124.802 307.291 null]
+>> endobj
+1303 0 obj <<
+/D [1280 0 R /XYZ 124.802 295.336 null]
+>> endobj
+1304 0 obj <<
+/D [1280 0 R /XYZ 124.802 283.381 null]
+>> endobj
+1305 0 obj <<
+/D [1280 0 R /XYZ 124.802 271.426 null]
+>> endobj
+1306 0 obj <<
+/D [1280 0 R /XYZ 124.802 259.471 null]
+>> endobj
+1307 0 obj <<
+/D [1280 0 R /XYZ 124.802 247.516 null]
+>> endobj
+1279 0 obj <<
+/Font << /F8 399 0 R /F50 400 0 R /F42 396 0 R /F55 517 0 R /F7 523 0 R /F43 398 0 R /F59 539 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1311 0 obj <<
+/Length 7358
+/Filter /FlateDecode
+>>
+stream
+x]]$q}_1
+ !m~ ЋA
+ȃmZrg^wWbUOϽ{1dii]bsdNzan¿ɞ3KcXB=//|үN,xmK0酭aƚp ;
+Eۡhku.f ^ť&tC X6AXcYb5!ՉC~1ɘJt)4 R ,FҤKIdu)5Rh4<Z\iYF' ҵ%L2zHiʎK: -JMgaH*cJvtݒ|1lP|-u Ӻѽ#- >"/65_?$jb?Y FwjwlQ|9iWK%9b.藄?e9UO:}Ǔ ߜ~5_/)-5=qKDB΋_|=Pb/E]Fs5g]XNҢ C<s
+=,-cJW2uK9h]´`
+]ݥ>Y%L
+]ieWi]K,&$5Ҫ'D's/JĭՔ-"xlNm_,dԏsj[=Gͪ|;X3fc _ycfTIH̼Gfgpu dmziLa|p_f ITo
+MH&JQƔdNYݥJJ0+BWpF^u2cJW2}h]´`
+]ݥ>/AZudLm뫊iUK7/%fpjR0+BWpwE*(j<_PԸ.nF!ĨL]R|8j)Q#=9jQCh#j6?Ϩq%ӪiA&Od+(QƔdNYݣ `ɘҕ̩+t3.YӺ)twW>91 Hw.$0uֺi]K7}^Vi]K7-68=gL
+]yI)GӺ)twWĚǣ>Mq3jSShF +jmD5io0-O0 ˫ Đ1+SWrw[EjaS >]4&p,RZiW\=uVk\-ػATfPkKЖ}\Yk\-c`RL)<t@/ZJińp_B+Q!
+)F!E4yk <Qgcpe+mPw?RfLj3%WhK7 xFW ށ| "EM:1\-!o%EMJ[p`Ə}*U֖\-tZ6Jmާ|ԶJ[p`΋[e'S
+O&|'
+11QcH6[1fh+F?ʒ z
+W`9cZY0Mc~U }iIX=ep-R[iC]1Jm޷\/\@i{|\i }qy7Jmާ<SC0Wڂ+{_lcS
+ǘn9\\Ym!pׂ+ZwuɸFk´`
+aݥ[ݒ
+Q)̠V\!-m[\i }ڐVֺ Wj RFE۴&/%rÔ`^OoMJ[p`ӎ/BJ[p`ӆ9nEJmÅ`?~[yD_=N;fʿCFHŒ;־қڂB*v ji.ԈQx "lgfi<,г)E=xr]"d<Aɖ^x ì#%S<Uuf`^X!pߔj@pI|] -4;3~b⹥VUi"s;и;h[z̛Ү[{\IYxr w?:T}
+ǥa
+}%4t Pmf
+t3 %N=G\60o g» ߻lFW.As'?Z\O:o*BysƸsb;P!zg`xHX\l^^/7abfߌ3C(m .q'ӅAgYZn܅J|U}`je dV0-R ۚ6Q "KVO`&ۍ .]Awt'( |5bm Jȸ8P 8g*]40f "v@,nBN43
+E:zjAm#BLNn-*EW .;Qt4
+:t `< te~ЎLڙ!D__.C2G *n<AuC?^hMgۓ;PͥzCjKoġ"Aٖ
+fY ~1P ~3<OH :3!Yϒo(!m2
+-<b 72й+8\u{G_Ϯ/BfB6bpz'PͥFG\g0 iR; IL͏;I BEM$ΉT",dL@Q3qV[.bd
+[fp{Efo
+3clY5CNwRNB[>k)7_TC8rW
+
+ʩ<h n΂Bm)Riv3O5&npD"\a瞯ޠ% !2 hpzBXsOe$}<ms̯{\eמ:Qpю7`qq\Ϋ:2aDAm{@"ݦZ<6w1yT{U)_mBq&dւ!.<э:dx$i\pqmYלa{ gt^OcR.ģl
+>ҧ*<sX-j*<໅<AnS`&(
+(WPFG1XpiӇC܂]2p pIHLESžxk[ώ)b >C&-<nR7\(x2ɢ+j+]ۛE& (
+)dRrN/޿t ~g.9|}?cm[(`5w7u: ֶv۟o8o?2zzc.sXӸUpхPPk|-
+endstream
+endobj
+1310 0 obj <<
+/Type /Page
+/Contents 1311 0 R
+/Resources 1309 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1308 0 R
+>> endobj
+1312 0 obj <<
+/D [1310 0 R /XYZ 124.802 740.998 null]
+>> endobj
+278 0 obj <<
+/D [1310 0 R /XYZ 124.802 511.957 null]
+>> endobj
+1314 0 obj <<
+/D [1310 0 R /XYZ 124.802 485.653 null]
+>> endobj
+1315 0 obj <<
+/D [1310 0 R /XYZ 124.802 487.59 null]
+>> endobj
+1316 0 obj <<
+/D [1310 0 R /XYZ 124.802 475.635 null]
+>> endobj
+1317 0 obj <<
+/D [1310 0 R /XYZ 124.802 463.679 null]
+>> endobj
+1318 0 obj <<
+/D [1310 0 R /XYZ 124.802 451.724 null]
+>> endobj
+1319 0 obj <<
+/D [1310 0 R /XYZ 124.802 439.769 null]
+>> endobj
+1320 0 obj <<
+/D [1310 0 R /XYZ 124.802 427.814 null]
+>> endobj
+1321 0 obj <<
+/D [1310 0 R /XYZ 124.802 415.859 null]
+>> endobj
+1322 0 obj <<
+/D [1310 0 R /XYZ 124.802 403.904 null]
+>> endobj
+1323 0 obj <<
+/D [1310 0 R /XYZ 124.802 391.948 null]
+>> endobj
+1324 0 obj <<
+/D [1310 0 R /XYZ 124.802 379.993 null]
+>> endobj
+1325 0 obj <<
+/D [1310 0 R /XYZ 124.802 368.038 null]
+>> endobj
+1326 0 obj <<
+/D [1310 0 R /XYZ 124.802 356.083 null]
+>> endobj
+1327 0 obj <<
+/D [1310 0 R /XYZ 124.802 344.128 null]
+>> endobj
+1328 0 obj <<
+/D [1310 0 R /XYZ 124.802 332.173 null]
+>> endobj
+1329 0 obj <<
+/D [1310 0 R /XYZ 124.802 320.217 null]
+>> endobj
+1330 0 obj <<
+/D [1310 0 R /XYZ 124.802 308.262 null]
+>> endobj
+1331 0 obj <<
+/D [1310 0 R /XYZ 124.802 296.307 null]
+>> endobj
+1332 0 obj <<
+/D [1310 0 R /XYZ 124.802 284.352 null]
+>> endobj
+1333 0 obj <<
+/D [1310 0 R /XYZ 124.802 272.397 null]
+>> endobj
+1334 0 obj <<
+/D [1310 0 R /XYZ 124.802 260.442 null]
+>> endobj
+1335 0 obj <<
+/D [1310 0 R /XYZ 124.802 248.486 null]
+>> endobj
+1336 0 obj <<
+/D [1310 0 R /XYZ 124.802 236.531 null]
+>> endobj
+1337 0 obj <<
+/D [1310 0 R /XYZ 124.802 224.576 null]
+>> endobj
+1338 0 obj <<
+/D [1310 0 R /XYZ 124.802 212.621 null]
+>> endobj
+1339 0 obj <<
+/D [1310 0 R /XYZ 124.802 200.666 null]
+>> endobj
+1309 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F63 1313 0 R /F11 497 0 R /F43 398 0 R /F50 400 0 R /F59 539 0 R /F55 517 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1342 0 obj <<
+/Length 7380
+/Filter /FlateDecode
+>>
+stream
+x][$q~_1
+ !:m/b~W@l#gZ!gv:-O*VsW C&fs黓9_ 6'{r,)Sa t H>5 ZO/W.Nk-
+w);.ꀴ(G4#Q)ىuKkKe mOy|5C6.ӝPa4vXfşϗ6Tq)֝b~IXϿy_S7:9_Π|ϭ~Oi#'$K$7 )hl 9ƥQC,s
+<-!0==2NseLN.X*i]FcԚ\a@e0W3&|L̻q' \i3|L;/.2WP>];'
+o8*~`ޘ;A>jͨGfpu d=cO0=e,AJU`фt0`eLJ攕]@ VuS
+hpܫNfLJԕ]O1KL+t%HN]m}U1*BVpw FMuS
+.O%
+mާƠӲ Wj >k Wj >UJy2mVy]!Yc>?+i}cf|l31,)WPp0]0BtĘVL!,t嘵ep+%{vZ1V Wj >mȰK5ڧ3\-vX4Q3W Wn0}b6Wڂ+{v\b^-Mp-R[iJmۄ`>Yyv4%$WVg\ʾ]}]2nӚ0,BXpwVNT
+3%WHK>oVq+mڂOZW>Jm޷[¬zWWn}i\i }E7\i }V[\i }6\
+O+lGooc)v1;־қڂB*v j ojC(<^\N3rQZj/l1 vJt<ONK1OqWE-ނaud*}}^ǽx
+ofq+Bv+UO?|ʌZ9f.
+`-F xDAA~؊eTq v+~`
+ǥm}tG(M"bn蝫(B|[:*q,olK(GTb+9v _³3VsU5hD3N8DA`ƚs` B@paڙPک}&>b8KyGp0?C4=f8e=4w%<>>MXA`p&-Н ]
+:xlQj.<g{<*e-W0҄Yh&/&L^̌qzE`r!8 .uIciE0*F{mX%7
+C rN}UMR=ƯS-d` 4WНhC0_tmA6D
+%d`_
+~:{s;>:ق= nDqa%dlwn1;AP+4rqv_+G,j.ps <2e, d(Q c(ye1B2@ f/ӫۑ)I1&e]rc. v3@Ť{W'\5EHGK 6"11H|Ng0v("]ˋ&DxDиD.bԖe
+Nlw_ۦKk XKlv'b+.K%`B!@8GNrLdj0Qgq"]#"Svf+ːq6h*OPЏZS9&A%TsRkHs%W)'rnTc% !Ӓ.RGQ`xƩHȹE\bLsQWmȕ[Mݛ7*j7/N&Iߏ c^Mw}Q`
+4!F$)3rG*gp ?(Md=(ۊ# YFνƽzG]u2NC-*exSkT\FK`;p,]$^kK*p<(j mrIo`ᑏb蚴t.dh 6YxJȹWWYTg.gݲW>\$Ďf0)޸wtm0T^
+ò bN#<ǙgIL7TH{ 1eS .ǯKPU<X \pr \*a|u fHynf4ߗ%O"6?`'- U5;'
+DlgqYdL@Q3qV[.bd
+[fp{Efo
+3clY5CCNwR|!\jZr{ͺUv5ᕂrxO&>f'| w1١bb!E*3n@ .H+ :Դ݅ B Na1iIO>Jρ \Yg=oLE c\6/E06y{@ =s nS-B][I/7Eh8{[qe2Uka
+[c6 '0a⪀i\/
+kvxn6}H<-)kx7! OFHEbux$.
+*T=._zvLaM2hqgBI][,mبe,2C5x">GP#~OD+@d=coجv?E17vAgs1d}j_e_kyh3Ŭ BZpp}0aeZNx`GRX睳m:a`SBSjzC4*価wAN?SGm d .}L-"q!21\(=nr! Ḳ󋙖 jM\'3R{1j~H-;,ů+8/a\J~Gc0x@#Kj6ܤoe (}D<-laU[WsR'\`{u=3OWK<䓊 \zu;
+iA6 E4b)kvMl3*kMLab;6fCCEWTA@<XDjݟ^V
+n~1֞JcQkdtK0lk-"Rko[ k)h9ć߽i;hn6;ȶߙdžpgA,\M> [R`
+9Hء~fb;@/7ZоYKt@7B:i\: C o)pv(5I,[!wtZNP=r9-Ձ\
+Ri9Sp?C
+I` KT]"n%ivn ^=bvnIC/lP<pt1zTP;YVU|QB-lQrz)^qu`j=
+yp0/
+endstream
+endobj
+1341 0 obj <<
+/Type /Page
+/Contents 1342 0 R
+/Resources 1340 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1308 0 R
+>> endobj
+1343 0 obj <<
+/D [1341 0 R /XYZ 124.802 740.998 null]
+>> endobj
+282 0 obj <<
+/D [1341 0 R /XYZ 124.802 511.957 null]
+>> endobj
+1344 0 obj <<
+/D [1341 0 R /XYZ 124.802 485.099 null]
+>> endobj
+1345 0 obj <<
+/D [1341 0 R /XYZ 124.802 487.59 null]
+>> endobj
+1346 0 obj <<
+/D [1341 0 R /XYZ 124.802 475.635 null]
+>> endobj
+1347 0 obj <<
+/D [1341 0 R /XYZ 124.802 463.679 null]
+>> endobj
+1348 0 obj <<
+/D [1341 0 R /XYZ 124.802 451.724 null]
+>> endobj
+1349 0 obj <<
+/D [1341 0 R /XYZ 124.802 439.769 null]
+>> endobj
+1350 0 obj <<
+/D [1341 0 R /XYZ 124.802 427.814 null]
+>> endobj
+1351 0 obj <<
+/D [1341 0 R /XYZ 124.802 415.859 null]
+>> endobj
+1352 0 obj <<
+/D [1341 0 R /XYZ 124.802 403.904 null]
+>> endobj
+1353 0 obj <<
+/D [1341 0 R /XYZ 124.802 391.948 null]
+>> endobj
+1354 0 obj <<
+/D [1341 0 R /XYZ 124.802 379.993 null]
+>> endobj
+1355 0 obj <<
+/D [1341 0 R /XYZ 124.802 368.038 null]
+>> endobj
+1356 0 obj <<
+/D [1341 0 R /XYZ 124.802 356.083 null]
+>> endobj
+1357 0 obj <<
+/D [1341 0 R /XYZ 124.802 344.128 null]
+>> endobj
+1358 0 obj <<
+/D [1341 0 R /XYZ 124.802 332.173 null]
+>> endobj
+1359 0 obj <<
+/D [1341 0 R /XYZ 124.802 320.217 null]
+>> endobj
+1360 0 obj <<
+/D [1341 0 R /XYZ 124.802 308.262 null]
+>> endobj
+1361 0 obj <<
+/D [1341 0 R /XYZ 124.802 296.307 null]
+>> endobj
+1362 0 obj <<
+/D [1341 0 R /XYZ 124.802 284.352 null]
+>> endobj
+1363 0 obj <<
+/D [1341 0 R /XYZ 124.802 272.397 null]
+>> endobj
+1364 0 obj <<
+/D [1341 0 R /XYZ 124.802 260.442 null]
+>> endobj
+1365 0 obj <<
+/D [1341 0 R /XYZ 124.802 248.486 null]
+>> endobj
+1366 0 obj <<
+/D [1341 0 R /XYZ 124.802 236.531 null]
+>> endobj
+1367 0 obj <<
+/D [1341 0 R /XYZ 124.802 224.576 null]
+>> endobj
+1368 0 obj <<
+/D [1341 0 R /XYZ 124.802 212.621 null]
+>> endobj
+1369 0 obj <<
+/D [1341 0 R /XYZ 124.802 200.666 null]
+>> endobj
+1340 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F63 1313 0 R /F11 497 0 R /F43 398 0 R /F50 400 0 R /F59 539 0 R /F55 517 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1372 0 obj <<
+/Length 7396
+/Filter /FlateDecode
+>>
+stream
+x][q~q/b΃Ly@^RLщ=U]U*6{zcNߞ̍?-ߜYO1%/' Ԙk>!,5 ]~d`Bq3[b5g
+g);ꀴ(G4;-TG|,TS=R06",.`#bZKdOm\;4ֱͩF|9iSK%9\Ow1@$,_=oʩbuoNCK= W/NԚտ7a8qKDBγ_5Z_p[wa:8i@z8xv=|,?a0zHlMK]´.Gtah| ]>)݉{g>i]F=nʎC: -J!M0群t,U Ӳэ`rʬB1;C`M-<Xu=䁶؋{U~'`}$֓\] Fs>b_=v)>c0==2Xu=B1;Ceq&6T|,u Ӻ`]|eLN.Xuof?%L2zH G>i]Fe .K]´.2M0N̩&\0l2zH-);ꀴ(-!<£6>!Gt
+Xi0 `?=W>amќ'J[X*bȸ:9{.cJwtGV%L2zhإ\ r&A=1c`ލ=MJcyq99Gƀ&p1
+n9(mW ҆{86RA=c`~j \i3|Gݲ'_<jOv&!
+fj3zP1mX"@&p1uæHM5`dt8.9~P4zs>f*%
+MHIQt 攕]y.aZW0uf >UumS9u%w[rAuS
+.
+Yݥ3X5KL+|7`/o67F~H.)>77-!7f?Nq:ӪP =&O 3NGDS9e%w.Q>1+SWrwf)ʶ0uS
+WtV'"]Cu Ӻ)twnίӺ)twnZlp:gL
+]yI)GӺ)twϚ\ǣ6MqoU o*mo4&0Ǟ`'{^4ĠCƔdN]5gd<sF^L1g$tq\U0+e҂OZJmޥmE%km
+mާ f6+mڂO;uZz`+ɔ“O`E R\)-ػP`Kȥ6%7}
+^\>ةZSשNeViéf^m\BPwK2֖͠\-ѯz"a`N0(jҮJmާ s.)jmWڂ+{6U
+mާĠS Wj >k Wj >U&Jy2nVy]!'Ye^+xyeflGeBYRtA: ơʁ(ػFb鼉1,BXpw&P1kKWHK>$cj\i }ڐejWgp-R[3h<g V\j =>\n Wj >ļJ[p` no0Wڂ+{wS
+{fc,!ZHCયW`k|^Ϲ2S .TЋJa
+iާ*rcp-R[iCbYg2\-MU/ؚjʥSO=Hm+mڂO;$|+mڂOBSj+mڂφ [v)vm׈>=o6Ic+*Y*XRcT]8}S#z,v]aT JK 67fN)B&
+v0& <Nȸ[0LLKj`1e {f1SE]&-@66g6 BR1ZWMdmOB#d,޻(.
+%evXw=al*2[Q`WT
+YFکT=FҮZ;U(3kk8(\%nv_j~Bf@`+"BPS14d۩ %)DY)Ky7܊Yܺwb;_> ]{*Co&>r1[%&=[o *o{pB/\h:0`5)c dz(3 ҘqL64\1Sh@NL;峖|jX<!qdoB g鏷/{gܻ 7yC}_| Q^­?ZOo*By;sFsb[z#M_X\lҾNp͋~?6[ ].ck'ՅࠎIc`,CB%>h GaAΖѩҰ4J1>b]ʶ\Ullp
+ÝPm拮8(6n!2"} 0f*m[g "W,nBN45
+iB8HRh'wU$Y:Kɞ{DQ- F{{1Kn-Eel
+q[n@cV.@)*ڹ*.0pwX8H'<זpVxQ@-T1ii&l4!q)6sb\κe#K|t.Hu}(a"t/ySq`9M3(e5-|kA#<)4
+"v.rfZ{"ú ֊8]wut}ն
+]8 N.K%8`0 iR IGtw&BxD!mW . Bȹo}7j4=uy˥PP La z~paXc-
+>=j*7U]|g
+
+>ʩ\h8N` fB nNuM4om .M3 :Դ݅ B Na1yiI}A׭ .kzloߨhǸl.Uo ᎂ? n@"ݦZAׅ61y.T{T)ocMnřɀWC\03eEupIӸܲ"@s6mp90dӯ &D#δp^OcRe.Ml
+6Cp`9&F5UB ,!Jq(co,8CJ!n.H2~ap Q$nT$&][Nb AOsc
+cׇm*οmDT '
+DL
+<td!n;F-c J1<@ŝQ,9(QFOVKY盁zye ްY@co-2.',9 8F
+- +gWtDT3|?{'J i<~G>~< d .}yHr{颣t<# G-W0qDq{yt~1DmǕqr1/a~£cŚżp`r=WI53Ј帚 )ᓧtY;J# U[3T$
+g=EemSpT I~,
+N:mA6 # q[ 0bgU62/靘Ķ} C2u]S]M ͬ"R{Wo"֊jxTxw'ùTZs' N8 ]{v,\1p,"fn%I ~[*㗂o߾y{JPhl9mߛv;f/PB>Ư>;@#n>&~sr 5O=tf[\{B>wׂ}|H%RzxcNs~i,QPc|.
+endstream
+endobj
+1371 0 obj <<
+/Type /Page
+/Contents 1372 0 R
+/Resources 1370 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1308 0 R
+>> endobj
+1373 0 obj <<
+/D [1371 0 R /XYZ 124.802 740.998 null]
+>> endobj
+286 0 obj <<
+/D [1371 0 R /XYZ 124.802 491.487 null]
+>> endobj
+1374 0 obj <<
+/D [1371 0 R /XYZ 124.802 465.183 null]
+>> endobj
+1375 0 obj <<
+/D [1371 0 R /XYZ 124.802 467.12 null]
+>> endobj
+1376 0 obj <<
+/D [1371 0 R /XYZ 124.802 455.165 null]
+>> endobj
+1377 0 obj <<
+/D [1371 0 R /XYZ 124.802 443.21 null]
+>> endobj
+1378 0 obj <<
+/D [1371 0 R /XYZ 124.802 431.255 null]
+>> endobj
+1379 0 obj <<
+/D [1371 0 R /XYZ 124.802 419.3 null]
+>> endobj
+1380 0 obj <<
+/D [1371 0 R /XYZ 124.802 407.345 null]
+>> endobj
+1381 0 obj <<
+/D [1371 0 R /XYZ 124.802 395.389 null]
+>> endobj
+1382 0 obj <<
+/D [1371 0 R /XYZ 124.802 383.434 null]
+>> endobj
+1383 0 obj <<
+/D [1371 0 R /XYZ 124.802 371.479 null]
+>> endobj
+1384 0 obj <<
+/D [1371 0 R /XYZ 124.802 359.524 null]
+>> endobj
+1385 0 obj <<
+/D [1371 0 R /XYZ 124.802 347.569 null]
+>> endobj
+1386 0 obj <<
+/D [1371 0 R /XYZ 124.802 335.614 null]
+>> endobj
+1387 0 obj <<
+/D [1371 0 R /XYZ 124.802 323.658 null]
+>> endobj
+1388 0 obj <<
+/D [1371 0 R /XYZ 124.802 311.703 null]
+>> endobj
+1389 0 obj <<
+/D [1371 0 R /XYZ 124.802 299.748 null]
+>> endobj
+1390 0 obj <<
+/D [1371 0 R /XYZ 124.802 287.793 null]
+>> endobj
+1391 0 obj <<
+/D [1371 0 R /XYZ 124.802 275.838 null]
+>> endobj
+1392 0 obj <<
+/D [1371 0 R /XYZ 124.802 263.883 null]
+>> endobj
+1393 0 obj <<
+/D [1371 0 R /XYZ 124.802 251.927 null]
+>> endobj
+1394 0 obj <<
+/D [1371 0 R /XYZ 124.802 239.972 null]
+>> endobj
+1395 0 obj <<
+/D [1371 0 R /XYZ 124.802 228.017 null]
+>> endobj
+1396 0 obj <<
+/D [1371 0 R /XYZ 124.802 216.062 null]
+>> endobj
+1397 0 obj <<
+/D [1371 0 R /XYZ 124.802 204.107 null]
+>> endobj
+1398 0 obj <<
+/D [1371 0 R /XYZ 124.802 192.152 null]
+>> endobj
+1399 0 obj <<
+/D [1371 0 R /XYZ 124.802 180.196 null]
+>> endobj
+1370 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F63 1313 0 R /F11 497 0 R /F43 398 0 R /F50 400 0 R /F59 539 0 R /F55 517 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1402 0 obj <<
+/Length 7299
+/Filter /FlateDecode
+>>
+stream
+x]]q}ׯ d`_AJ
+%*Uwfg B+M9C*fۓ9񯅿ɞcXB=//roO,xY~rMv &w?5,Xnx
+M&4RKR0-!ݼd|a]i]FV;Mq)UE <,PPeLN[/_K]´.Gto؈hh#k|I쩍tg-dֱͩFrҦRs,*.M9UO:}>TǠ|//Oi#KDB΋_;Pb/E^Zq4\MMj\5 ݠ<d{;_K@vknjfcR0]h&H.cJwt2뙯.aZC`ѽRHxH /i1]KU´,Gt#2eLN.XtS ei]Fm{!|# ,_
+%f6ZFpCnNq)UE <n O 9|O(y]~'T Oj>'}>Srk٪͊#:8_ ]ƔD m_K]´.1]juN0 2Գ> ݸYP>cd (mW ӮƝuN&p!m? j }S
+Nި]Ɣdbov)A\!OhԅD-B *xST0hB8XON2k\0K 8Y/u Ӻ)tw3Kg˘ҕ̩+tݒkZ0+BWpwCX$u Ӻ)twnZE+ƴ`
+]ݥ[CiGSZOBVjL}c<6%.)l̘9aOQj7Ճol Dl 2=]CyYcQYokn|' 3KHR *xST0hBD|0Q2T%sJ. m@&u Ӻ)twn48MU%3t%sJ.]ܨ%L
+]U'ON.*ɘVL!+tRb&u Ӻ)twV߈d* SFz҆ߘ<FLJ7yM架p<%ʘR)+{t!$ )]ɜK74OQ1+BWpwtWY9N0EX't!%L
+]:bL
+]i?cZW0KJ9*̘L+|ִ:8n~JVzo 7M17f?OxԸ1S=*&58dLJԕ]sF~=gDusFOUuI R\)-+Ρ: \i ]A/*Yk3%WhK>m0k. \i }ڱ[)O}`x-LJYp`cBCy-!r۔)xryS
+fPkKЖ}+!xFWk!+C{vFQvm Wj >msIQk\-ػn_
+&%WhK>
+9m/(g{
+<e2Y2؟ XU;\{WKt;71S .j9fmi\ս
+iާdՃZWڂ+{6D٥\i } ,+>m؍JmާWq\i }y5tcp-R[y7a+<ŮmV>G; n-4Zpe] .7nMVL!,t[RA/*ʒ+%{vUȍJmާ e+J[p`7eWTakS+N >m{zWڂ+{vz%|+mڂOf5Wڂ+{ S
+f}58@vDFH;־қڂ'O!;NK5 ojL<_N0(kOF*0JKm @zpja
+v& <N`d-&LKk`1e{a1SDS&q 4+3b⹥VUj"s;и;6$e 9S7 ][s<Z|= F^́ pu͂ s֭ tm7'' {T4_
+i.-S6mKlcCVs;AT$-/6+) Ŵ7*fRH83F<%u]^'׆ $ &h 8At 8#/I=QKL64St@^!v8#ʸvh23tiU|W wEf3
+
+j|1C 1@jX(,'J}C9n>Ӓz~B$֥p{%q@(OgSCK8 Bl#Ff3L!m2
+ofr+Bv+eO3?|53r<(\C/Yv_j~ :VTEAQN%Аm2 y:fѧ,AqB$r)frҎڹy]D@hfͶ-C}?M8|]4 F[FO<\q Zԙ  KNi8&
+ @)t @NL;|*X;<!qd0χ7}3Dc+/8َ%<>MXA`p&-P U
+:x~Qj.<g{<*e-Vp O PM/'t^8l=F`r#q>]q8i,cz`=֬1[FJ
+}UMR=ƷS-ƆLJNQ6<m EZ$\n]HLB q0j1S7\gtnG>[A5gr"]w؍H4S3L#u`R1\xܡ0
+ .K)1<Dwn1<KJ~d1y<̴!IcfUɔ$H紮J1T`Hwǫd {un㻙IbNc]P6"10tE//EC
+99d.Cx/gpg18m€=zo<`ގBKx4ֽ½ ٻ(S_Nɐ &HWȔLE2$cAŠ6ʻTE:cy)xɽ<kPp \J<FZ.m7~)lJa$Bͣj@ȴ bFqtH
+ 8 98UG<rV/-'dn&͊cj/닓Ibcc^Mw}Q` 0!Fl$)rgB*gp ,Md}DQh-% F{{
+1S.-׃q,*rK
+Nێ\<g0tǫ7i )% A
+'B 1iIOJ`׭ .kzloh
+c\6*EУ 7y@ @s nSvFk78czWAJj?\ߏ7g&Z 6`d@BNjF7Ӹܲë} 96mp90ldӟ &Fie\10񅽜tj2]$XmإUy%4簚Ttx.W<AnS#Y0Px(
+(WPFa>XpjӇC܂]2@p 0I܈+L:EC>xgƩT1a&7xN<
+dx.
+me!n;F-c J1<@œQ,9(>@!3BVKWˎa(6Ͼ`yq;A=faH0Z/V/Ci̊/@;jɀ /s;p S`!`8]m#P64K8Ohy\>~SGNs><?J$=uQј:NOTA#Y G-WqDq{yt~1DmǕqr1/a~тcb\Y90=̗WIaz w thĵtٮfkMJP.K]@pG%uj M2TT$:
+g=EiR7)pT5Iey?6^Ĺ[ ԃy ~ͅ, FKLFDR|^މicԎsI(^*oA=H zWQ#3/8y %εXT;Y^pBUOw bX%CYDj֋K?
+Qo:XGgQVm<S1w]Y'u3a)X<3\ 0(G c#^Hb_3yO_~-\o޾?|īwch
+Z+:U߼}FR0O?? ٭ǿQS[_}L^C_%cZûE{z̶MҔOoy#H!.wWj{Em~w_\0sTC;V1߽~-?߿}z?d|G4_,޺7wj7%m3]
+x"ȋ(/_t>ϱ_^wpjF/EySVv]\;%gqJ?٪$;hq
+endstream
+endobj
+1401 0 obj <<
+/Type /Page
+/Contents 1402 0 R
+/Resources 1400 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1308 0 R
+>> endobj
+1403 0 obj <<
+/D [1401 0 R /XYZ 124.802 740.998 null]
+>> endobj
+290 0 obj <<
+/D [1401 0 R /XYZ 124.802 511.957 null]
+>> endobj
+1404 0 obj <<
+/D [1401 0 R /XYZ 124.802 485.653 null]
+>> endobj
+1405 0 obj <<
+/D [1401 0 R /XYZ 124.802 487.59 null]
+>> endobj
+1406 0 obj <<
+/D [1401 0 R /XYZ 124.802 475.635 null]
+>> endobj
+1407 0 obj <<
+/D [1401 0 R /XYZ 124.802 463.679 null]
+>> endobj
+1408 0 obj <<
+/D [1401 0 R /XYZ 124.802 451.724 null]
+>> endobj
+1409 0 obj <<
+/D [1401 0 R /XYZ 124.802 439.769 null]
+>> endobj
+1410 0 obj <<
+/D [1401 0 R /XYZ 124.802 427.814 null]
+>> endobj
+1411 0 obj <<
+/D [1401 0 R /XYZ 124.802 415.859 null]
+>> endobj
+1412 0 obj <<
+/D [1401 0 R /XYZ 124.802 403.904 null]
+>> endobj
+1413 0 obj <<
+/D [1401 0 R /XYZ 124.802 391.948 null]
+>> endobj
+1414 0 obj <<
+/D [1401 0 R /XYZ 124.802 379.993 null]
+>> endobj
+1415 0 obj <<
+/D [1401 0 R /XYZ 124.802 368.038 null]
+>> endobj
+1416 0 obj <<
+/D [1401 0 R /XYZ 124.802 356.083 null]
+>> endobj
+1417 0 obj <<
+/D [1401 0 R /XYZ 124.802 344.128 null]
+>> endobj
+1418 0 obj <<
+/D [1401 0 R /XYZ 124.802 332.173 null]
+>> endobj
+1419 0 obj <<
+/D [1401 0 R /XYZ 124.802 320.217 null]
+>> endobj
+1420 0 obj <<
+/D [1401 0 R /XYZ 124.802 308.262 null]
+>> endobj
+1421 0 obj <<
+/D [1401 0 R /XYZ 124.802 296.307 null]
+>> endobj
+1422 0 obj <<
+/D [1401 0 R /XYZ 124.802 284.352 null]
+>> endobj
+1423 0 obj <<
+/D [1401 0 R /XYZ 124.802 272.397 null]
+>> endobj
+1424 0 obj <<
+/D [1401 0 R /XYZ 124.802 260.442 null]
+>> endobj
+1425 0 obj <<
+/D [1401 0 R /XYZ 124.802 248.486 null]
+>> endobj
+1426 0 obj <<
+/D [1401 0 R /XYZ 124.802 236.531 null]
+>> endobj
+1427 0 obj <<
+/D [1401 0 R /XYZ 124.802 224.576 null]
+>> endobj
+1400 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F63 1313 0 R /F11 497 0 R /F43 398 0 R /F50 400 0 R /F55 517 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1430 0 obj <<
+/Length 14001
+/Filter /FlateDecode
+>>
+stream
+x}[lq~E?d
+9ZN>_%ӟM2L~T2Zd
+xDf9{kdd2LΦ8ɏJ&CL Zl\yR[
+zHn>d|2JNSxR
+eLgK ձPyVR[N\wNP2;6"]F䳍[_=d{jzz9:6Ө|VS%8źK . ů.
+}W=9_AW_̚ïǟu>s~qd
+zH.Yvg-UbM2N,&?h5\wNQK*C~P]q#s>mPkp|o|Fu>cP-Eogݫ[GUuq~C
+ȝ!d٣bYel+y cϵ:'ns>&̻q'fp#[cX,
+<3ҍ^edzIIM`Z nV!ժOJ
+xUF
+L|.%Iц\z?9ج2HU)T1I`q>9-Ts܇s r[*u|˻lS>$םsa*W1\}Hny\V*Cr9:[~%*W1\}Hn9oU)Lm*~^J[uo!6>ccj[b&C~SJo9˨{cvF߉5wfkJJ#5U~u<`M^ckSLއ}%$-EML
+&j-R5s܇f%E.c\Tr`/,"W3\}H.)elJ>$7zZN:Lm![*35-Ub*RV{׈B'F2^9^#J1yzL Z䩮7h-R5sGR8lS>$7c,EUb*P<G9/1`kD*S܇ROCU.c\Tr!~JUb*t~V*Cr9,*W1\}cM[]nɸ5;^cp~Zyюטu<MmZ,=O1USGz^
+Zb?&"RV\-[]`a:/P\@V\-[1o&Zb?&;ScV\-[mV]s߬|v4sHl0ikmu~֌S V܇VwNNT pJf?&;am3np#[ql~L6n|يe+c,}uݦ5~)1zִ nd+؏ɎOp#[ql~L6 Mu-j nd+؏pe+Ď~ĮoVOct#!#4⎵\mA)bGbT 0yS#!P؋9rFi-`scjYON" Б9R'8Rqgo0yud*>/c2 2炊}aC`R#"$k 29;zٝfc0rs),<w KKh<;:hb4Y=JHi^^-ΤѨB";.U_=A[0D\Eèn)NA,Si>)WKy(8R )nvxo!jTW4VRCj[WC$*x
+BCu9tYK7@  gQTH_~) Oԗnjٛe#~~W VLÄS${gCirAHPNi ͒`yuj)ȴFa":s75MqkzKP(d# qjcs[̧l--[:"#8T4-m6V5
+hϦES DFS1\m{&$W &1dH@4]
+6g
+':HĴ3ApZ܎?bd4#8>C4="J/?wKh\b>}GVx08d *BOy;RIs9V%HU0Ҥ$a,Ugmp'7Ed
++.+Kx]c <:Ɍ1]P ca%1'0c Wɐ1&Oԗnj1.d _undpa{S'L뚟uAAiyϙ! HEWxyU܄X.~;QW(YڒroEIՐn;*C"(]ew@2%dz]\.u ٻ.( 3 aȩ_N) &*YXZȔv%B
+cEv껉 ԎZS wɽ>cPq]\Boy
+Xm)dĵ\5HsT)lJI\G7XMiA%KrQ8%2ri#Dy)ꦎ#qצI.ٴ{F1ڍdpa_ c^Mw}]P`
+0!FtZ\z
+Q^E pt6!{#RoH͏8d0+ȥkS<,<ZF6TV
+`RŬ"Ӯq.G LmRy[0E!}1֖piC0|)iӞ.`E'Pqm>;0=S1b?$'w񆉂Q),<uc[YNQ˘dC57Ȉb je>~JZyK݁v{57lV'h# vz!%LaX/
+GRʾey3YqމL!}Z# 9f}&(Z w+*B8p9٦*FF64jG*KV\>~SGܭn6%Ob)4c"LEq2F J[cd p~1Dmw8Km9 cc\Ⱥ#xX?vYĕo+8OA/+WMFaz"wLt4b-]۰I +O tYvϞluVmtI0;,QϘ?" GN>Xc'Q0(\> z2oc͋0cQ 03.ov"/խ|&abK氙Pad/U2EQ;ăŤv/M~ o`x(<=Jx̵X\]w7LD߀Z%cp,&j޹\P(YȮ4>9㴑6Шˬ4ṃJSb8Hf52Iujrqw~W%34%o:&ac }2hsXzgDToYLj-˩ɳ_r{y[rFJ|KōGIn]\Ƶ"tcK P碰|^c5X$;XX0nqBYY?wCAx|߿le(!`e,[@uEkL&-r>ȤG&Ϣ:DؐP-</nyq~qy1nbyE[Ek`qSz!&YN NE˱v/Gzy˧'{hGn{ öD=0Pm='םN=ޠ,1*9>=ptAzeJ|m_z&[탩Yz8|uX^}
+ǜ2(o}??^ϯ?_1?Ϳׯw_rVH,b#|BWν{Ewoᗿ_I&߾#xnC!!2w㷗j7bF%W>* ΍
+_}N^?{_;jT7?wŶ-hkMV,bU*t?zH삖ׯԕn޹ʔD_~?](qPiCr[
+`<.fuhsi
+*
+mfj0Z3o~^&(ZV }Rڡ<+[T*RldYتz}\;&.ۂ(7]ھCfe@V"(bN'Ϻ1v8ApcY آDU]iNEVUAT!+9?+[T*X/B
+*
+8 YتϪ@$*VUA e}Qu@
+GV >%5KwD\ܓ ۂ۞\=n6=;hTOǐOuclu>*ɳRAE>^"KZV}v&`ٮM0z6Hu>hO,8.m ,j0QCȸI5ܨ!jTi8^
+ nY5*gTC
+{T@Ex'تb*
+-5y*(RAqn덐
+L?kC6&ovүI-~G/nha(}b9f0/^B zE,^J-}WeT"j^%ckTL1`e$bR0(xSbOqDlQ@3{T+a YUT*(Af/d4sGU]dI*0J=}fДUS'Զ/ZUT(Ql[UPLuаIbOu"T0!i|S1TឧRjxYS>FgCk<-'`LXf/آfN 4
+vURAE͜*hQ2b[UPL l͸UGbVqتb*
+ZF*(RAqnh[UPLU>咢c
+TPܣsvV%vUw]OEjTT!OU?]O5T柽k<R^+SJ=+[`
+9UܣoWmu(~S* kuiՁPjTLh;F j(Q5,.(yUCU Ujha5KvU 7j(VCUmLV!㎿ZV(Z >DbsN쾵~֍ƒ;nl~j7֎SU^3p?WO>|.MpUCs}xE I,i1YR\؇@.q$C\`pj5H{UR\`pj5H<] jhRCܨZ >F<EܨZ >.+w2uîU#vj2]ް\Z@g9~jf5֞_UZ@ q*>qu&
+*J=B"@jܼUZha5u0.F j(a5*u!F j(}+&(S[WʈUPjL7j(VC_5W؇]2G>bįݷ\θƕ~.7o@qPoڱu[U T:(QCAeJhBҺm
+QCq}Xzvn5W؇Yp~w)a5<׍ܨZ >Fľu+7j(VCTـF j(ȃX폘.-ח\=
+-pվj O!;7[1V#g"V.a%SpI&@򦸟,ToȠlyZr"N:\‰H"g{Y&qaR#"0 2sJӝfc0Ү?ү^~)mB,2<3KmoɌXF.McVOxRmm {/A2 yEFP+ CWN[0DuߺvBS˽BR4_@_+Х<DS@;}5X­_56.(O m{>"Q`ˌI;,AXf FbYU*E2_jZf{kUOp{  )q߮װY
+ nY֨?7SDg.f)n-[o
+l4nW z쨌?;e
+FGVKK5-m6V5
+shE-[߇b N幨:65M72HbۯLqq, |&KFpiY[D>4zb&3?裚gclB41riNBGI8vUX`qm' Tl1"P܀f!21Z,H
+N!.=7يiP[hm?v]ӣ48fѧX.#JommG܌.
+Yx;XzEOɷB;%܂\]YAvt289Kd =5)SSdoH%9~953>\&k4dRu>pA.lwcPڨ ].#m'ࠎ4ϱx2,XTڣ.#**w+f}!=1%W v yll
+Cʰ ブ6jgݢP(Ag5n℥!H:cy)ȋerO.T\FW.[V[
+Y#q-W ҧm78M(0|#M5Vh dZ#E C=GQdx:ȥbB奨:xƭ^&d~MBk^k7;'?xy6uA-ƒ/rM!V3ry{3# KQuz Ej~JnQ'XA.]㮞q%fiQv2R6Ӹ-1AˎI
+
+Q%s
+p쎺;Np6>\[¬CP Z\eb!lp~fYN?ڄM֟f1ۖ)l bWIXh+]nbC3J^5o` ov4m0X)u* JݲxB>(bĕ)C Y H!U@,VPro$\\@VdD@+8Rm}Gߎ]Zp“JFb0}ǂFG37<p.h0mAiOKԐ ~4mNZ U5_N%ޒ!9Kp94h/Ermr0/
+p): B~'D5b$s\9xo;+|!`5QKnoY7+If
+
+rX7 LDq'3NHۈB2üj(swN>x5Cj~bB)
+Cx}L}iIȯ[;\re:сLEc=.6^j(&w~ pO#>"%6B/-Ujٟvq.bf2`}ZA@NN2!+ǸbnYiþ*s4v\y b۽äш3mC3[F1]ei2]5n6}vCrd 9l&FW*-Ys
+i&uQ
+,?"rZ 6}H-좐kxw4!C>čĴiI\"T쓁w6SiC1ZTdFDIUO{,}بeL2TdQ5H?BHV@d=aaJhVh# vzʿ!%OaX/
+G Kqn/SẙC5Nd
+yv7S<0yGf迣]1UA 6U12 ߏ)WUs=Py@] 5^zN#em6m"Glװin/]54JD\dt+.m\9P<b)ڮIׯqr
+^gAPOm4B},F5v&ۅND#Q7f`ZpE+,ltjk3-1O{{dOOp3vnw\:sT"Ti^,'Y^s.+c.
+7oO9~nqmnqK+YԱvyPJ>}\`VkiAx.vԎ`a2k厗S_ qz.~Ot^+7X`"L!6@&ɷ~nUD{VƋz&J9K]ځj.bfKr_]7bBݝYԺW{@me굴:Iz{h+6 an< փ{ FAT m{qB7~+⿖A6l}q҃Lz֋$?12:X7wjٛμyۮzð-At(;Q ;{@zbuye7(8JΧ(Ȍ¬zK[П(#mzŎk-YE,\"Ͻv뱷)ѷ OiP}Tnig[psaW((zAbY;p@ J_
+endstream
+endobj
+1429 0 obj <<
+/Type /Page
+/Contents 1430 0 R
+/Resources 1428 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1308 0 R
+>> endobj
+1431 0 obj <<
+/D [1429 0 R /XYZ 124.802 740.998 null]
+>> endobj
+294 0 obj <<
+/D [1429 0 R /XYZ 124.802 511.957 null]
+>> endobj
+1432 0 obj <<
+/D [1429 0 R /XYZ 124.802 485.597 null]
+>> endobj
+1433 0 obj <<
+/D [1429 0 R /XYZ 124.802 485.597 null]
+>> endobj
+1434 0 obj <<
+/D [1429 0 R /XYZ 124.802 473.642 null]
+>> endobj
+1435 0 obj <<
+/D [1429 0 R /XYZ 124.802 461.687 null]
+>> endobj
+1436 0 obj <<
+/D [1429 0 R /XYZ 124.802 449.732 null]
+>> endobj
+1437 0 obj <<
+/D [1429 0 R /XYZ 124.802 437.777 null]
+>> endobj
+1438 0 obj <<
+/D [1429 0 R /XYZ 124.802 425.821 null]
+>> endobj
+1439 0 obj <<
+/D [1429 0 R /XYZ 124.802 413.866 null]
+>> endobj
+1440 0 obj <<
+/D [1429 0 R /XYZ 124.802 401.911 null]
+>> endobj
+1441 0 obj <<
+/D [1429 0 R /XYZ 124.802 389.956 null]
+>> endobj
+1442 0 obj <<
+/D [1429 0 R /XYZ 124.802 378.001 null]
+>> endobj
+1443 0 obj <<
+/D [1429 0 R /XYZ 124.802 366.046 null]
+>> endobj
+1444 0 obj <<
+/D [1429 0 R /XYZ 124.802 354.09 null]
+>> endobj
+1428 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F63 1313 0 R /F11 497 0 R /F42 396 0 R /F50 400 0 R /F59 539 0 R /F55 517 0 R /F17 392 0 R /F18 1187 0 R /F24 393 0 R /F20 1445 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1448 0 obj <<
+/Length 7732
+/Filter /FlateDecode
+>>
+stream
+x]moǑ_8t's.@/|vЫDxTHlG]3
+b(&3kUuOOڼۨ<rf7o~h㦤&0i7߼|<LŅ?ﮮ߽?_]ow~^}^_\߽7&O9ɫͅNM=Ic^=ﻚn/on_{vv^ֿk^Cm5u|~W-"-d4KZ7'J`B?MYޤ݉d"Քl|)D}9SJx?\m}Bv1Pp]ru/_}<'l37 iQ>~}çO/hS3_WEPnoon[;e=54 pxzߞ[q֞1d[,-Rw6~g~Q1FM!~!og
+y9]|MOȽi%q
+|m8{:mtmmg s^gmp!O- 9'`8NDN9wΉ"}N)e1zb 0BWu0>@g1 ^QB30h8fx6  ^ >Q δ^ >@m6&tnFE}0(8fxc{ٓ{iŞmg s\gltٔzfLH up69Q %{ YbxUJ U HmG MMLuqCߧ= rmax6D30h8fx6<XA63:(꜀A6ë+p
+"0yЯuS
+"4)1DШyB3hJ+@V "ee8/LRj ]9w2_ qZۇԉ;_8ZiY9w+E/5LVqz}O0E%i&,AuQ\ 3`RAU2.ҍӃ.a`
+]]ۡt%J"]ܶӨKب+BWp:KШyB3iv𐌍)dwn`Ԥ.a`
+]]䩄 {A^㼹85z >559stk2^b$ƾyu撞pܫAAU2.х頃 AW2.ҍēب+BWp?>a8L1E0y%lL+tgǹc`
+]]&36
+Eq
+!;36
+Er rgMYcL];hx day^К0,=O0E%=/Ya ]]캒hHY026ֺ`"]*0
+8S\)-˴3=j8\-؋A-B[iQ3QJm^NQa3ĝL x4
+8S\)-؋N`Kȡ7%g=
+6NJ?˥xh=K!?֥3.EK2} ZԨ18냂+`/PKI1-B[=c6=!p DpC^S0:6gڂ+{vH?j8\-؋o0U-B[i;эӲδWj 2m?`i eq2Y0c3ĝ̷ [AIv\f式&s}Szt4?s>蔏B}KSƍq^(
+~am9c`
+a]@-8Ygu/BZi)(ǀJm^'}:3mڂlwF~l L~6ocp-R[i\gڂ+{vq18\-|cbWǜ7+_irgu-{Q][`aMب,BXpf3O0
+i^i,ncp-R[i< δWj RFEiup_Jp)^ !ִδWj 2m"'i elf[i e6\
+O+lGϛ\#1feҪ)넇o.$ݎ 9@4qkx3\\Oq2&dX88̓%Cp.QS!e&YG٪Lo`q[2)VoF4 ( #P<T௾4hh6KSJJ <3lZHv[$O[k6"90HYB%ǔ=Bpjǥ>դVŗ vzP<T6qBf PrD&8⽌b*N'`eh[2؉\ NDyk޵BVtC{ M i0ijS;LQ9-FHr[k ᝜5q9Rj91kC -ni;ٕ40B:R(4Sb>#X ԜD xu7D,LiVűQ5!v A[|D6_[ -G)IGER!EA=DO
+\1 {왧Xئ:3f
+fJ}Cnޖ3j~B$楪pk%?V9> (s} = |k0  XO
+u$|WArμ7Uʹ=.Q79p@Y\5.Axo {18VCqeAb}hkʮpvj
+.#R؏
+!tD?A2=pn){G90 te_l 1@^.C2^ JDygPj9j^cb-OL\BG.Pk:%FQk.STN@QKsElcVYiIPFi') cwU-)0<;cW$d[b1q92Ñ7=UݪX7 ZjӞu&n߷0Ru/}P|۝ <LWgOȶ +IU,ܵSnk`TQ-0mCjIz? d v\ZJ;¯X8aM
+&|i2:p9VQA%5RPagU,<љ ]֖Niteʮ t'wwlkkEyt%k5|j潉uP5XWWuNeװmU>/Iǒn~\ǂ 7`8m;Qk 1D^FńgrrX2 vb/'w\VAf(CT[2wRL
+
+)4lnƖoÍ Ns\Iu$ΎB(˙< g|]!z\8Q)[}OWJaCA2 #mubGf{S92_
+;I=Äè;
+C9!I*KOœ1xsЗU~)jjIPb*AG/Y* o8 !sLU՗ǺaK=:,{#vl:4o4E#p(Ebt ::dp`wEZ@ .\p,@ Ay/X@eUs8%%de
+ Gg%=="8k5&`AFЩɭ:q5~ & Ț\Hjދ.ʢ_rlzʵp!BiG{~Gm_'z3F/aL8 Lv`)8Zvp/>*(y|*/- Y^uNSÔp݂Y-ޕq9k>x4ݩ۶@S3p[<" `ڦ;_5DK Ɖ==}OӒKVII|9xFUgBP_Xܝ+U(8ķT^懣#zg-='_85JRaQi.dyA(.ǀD\,_j,"bԛ?1a`xt|J^%4S++HocA :'LƚAIcx͎R .K:.G{Y|+ЂNlO+.8okݞf>h9.{S ՓR ;1׸"8P/ r- qZ%Άn08||OgjݷwƏ2տzqab:~zػ[<q*Wws%6ٹgMX<p<"I&銿YnDRa NrCоN.Ш=f>iIgug;kWwY3;AhѠq gXwyv '#ݢt [t"~ w:\3nkn#RQ~flcBqYi|\PdG]/j𪇻]dVq׿VL &Զl lS04WϿ}aݓ׻|uwW+g"[ M|A?_zwbw]uvwєԨu<u)G->mY/qSne.ʒN˷7py㫋fݫw7033?(O*L/^޽ |j|ws.^p5gb?@S~_Tps]զWj*ZKL\;|#>i[m3DZU*__Z+򗫻~nwӿ:M4w>Fo/_}NyϨ^jMzyy}s ww9qy h^'wﮮO>b}t+<3qÆy_>.)/wX6O^VєQM?|U10UpOŀ
+endstream
+endobj
+1447 0 obj <<
+/Type /Page
+/Contents 1448 0 R
+/Resources 1446 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1477 0 R
+>> endobj
+1449 0 obj <<
+/D [1447 0 R /XYZ 124.802 740.998 null]
+>> endobj
+298 0 obj <<
+/D [1447 0 R /XYZ 124.802 716.092 null]
+>> endobj
+302 0 obj <<
+/D [1447 0 R /XYZ 124.802 697.37 null]
+>> endobj
+1450 0 obj <<
+/D [1447 0 R /XYZ 124.802 673.391 null]
+>> endobj
+1451 0 obj <<
+/D [1447 0 R /XYZ 124.802 675.328 null]
+>> endobj
+1452 0 obj <<
+/D [1447 0 R /XYZ 124.802 663.373 null]
+>> endobj
+1453 0 obj <<
+/D [1447 0 R /XYZ 124.802 651.417 null]
+>> endobj
+1454 0 obj <<
+/D [1447 0 R /XYZ 124.802 639.462 null]
+>> endobj
+1455 0 obj <<
+/D [1447 0 R /XYZ 124.802 627.507 null]
+>> endobj
+1456 0 obj <<
+/D [1447 0 R /XYZ 124.802 615.552 null]
+>> endobj
+1457 0 obj <<
+/D [1447 0 R /XYZ 124.802 603.597 null]
+>> endobj
+1458 0 obj <<
+/D [1447 0 R /XYZ 124.802 591.642 null]
+>> endobj
+1459 0 obj <<
+/D [1447 0 R /XYZ 124.802 579.686 null]
+>> endobj
+306 0 obj <<
+/D [1447 0 R /XYZ 124.802 353.036 null]
+>> endobj
+1460 0 obj <<
+/D [1447 0 R /XYZ 124.802 326.732 null]
+>> endobj
+1461 0 obj <<
+/D [1447 0 R /XYZ 124.802 328.669 null]
+>> endobj
+1462 0 obj <<
+/D [1447 0 R /XYZ 124.802 316.714 null]
+>> endobj
+1463 0 obj <<
+/D [1447 0 R /XYZ 124.802 304.759 null]
+>> endobj
+1464 0 obj <<
+/D [1447 0 R /XYZ 124.802 292.804 null]
+>> endobj
+1465 0 obj <<
+/D [1447 0 R /XYZ 124.802 280.848 null]
+>> endobj
+1466 0 obj <<
+/D [1447 0 R /XYZ 124.802 268.893 null]
+>> endobj
+1467 0 obj <<
+/D [1447 0 R /XYZ 124.802 256.938 null]
+>> endobj
+1468 0 obj <<
+/D [1447 0 R /XYZ 124.802 244.983 null]
+>> endobj
+1469 0 obj <<
+/D [1447 0 R /XYZ 124.802 233.028 null]
+>> endobj
+1470 0 obj <<
+/D [1447 0 R /XYZ 124.802 221.073 null]
+>> endobj
+1471 0 obj <<
+/D [1447 0 R /XYZ 124.802 209.117 null]
+>> endobj
+1472 0 obj <<
+/D [1447 0 R /XYZ 124.802 197.162 null]
+>> endobj
+1473 0 obj <<
+/D [1447 0 R /XYZ 124.802 185.207 null]
+>> endobj
+1474 0 obj <<
+/D [1447 0 R /XYZ 124.802 173.252 null]
+>> endobj
+1475 0 obj <<
+/D [1447 0 R /XYZ 124.802 161.297 null]
+>> endobj
+1476 0 obj <<
+/D [1447 0 R /XYZ 124.802 149.342 null]
+>> endobj
+1446 0 obj <<
+/Font << /F42 396 0 R /F43 398 0 R /F50 400 0 R /F55 517 0 R /F59 539 0 R /F8 399 0 R /F7 523 0 R /F13 624 0 R /F63 1313 0 R /F11 497 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1480 0 obj <<
+/Length 9112
+/Filter /FlateDecode
+>>
+stream
+x][%q~_q@vڼ_\ y2|
+ޑYA"YŪ>3=+g!k?K&囋%ưz> $ߘ/yAXc=aWL(ְXcM/
+EwZ]_KMS -ŇlT ƲTkB q$c*qң$Hq2x,'A3-8GIdgXjɳsYi=ś/Kϒ0)
+Nv<JiRp: 3-TG,XS=agKe a#byCq_
+9:6(~}hSK%9
+U/1@$,_ߖK˗zq,ٺ7>_}w?|IK͠ $KB(od:bd_pkɯM*5F H+?Xrog.S`Ml,Yy= abxY2x'z,z,Yy= S»I;%4)8fӳd%L2z7Q)3/? ^DOE7.%L2z '$a_6`ќW N;R:J`Սs/cwxMlYy=ÛdyeLN/Xuof?%L2z H~i^FOeI%/aSkM0N̋MzMrSnN(YI <n  9|OHg}Bq7>aќW
+R?K"Lg:8? ^DOe>gKe>K΍^z7c7;{7r,sMsܸs P> s8'7A=s`~r \q3|Gݲ'_<iO'!aTBp#l`4=0P.Kƀ.Ww0!Yŀu'p9np
+fr3zU9n8$@&p9uæHM95@3 F<48H1n8ޜ32R/
+PT+A=s`0 P>wL?DsÀ:C"Ms`*`n7+nqWtY97ç0>枀</ ~<s`SQvh:sM^ix5F 3[eLII.%\' v4`%H
+I*$p‚8$eLRo^bzKWuf >U5)^)9y!^䚃%L
+I+de%L
+I+d%:[^1yxbBRs :<)
+CJXrϰ6nn#FXm$SG<mgpm6"nfZ(o ݛGT/fy41*%'=
+I+d׫+4BoZlp:gL
+I+d%{fL
+I+di s<i3o47J/vUzm 6M1k6f_ۀ4&0UOH
+GTPThȘ╒W02 #t Ia$d^U41+f!+1jnWBVr C,*Ys3Ǹ&p-d%>!KM=S/pEbZHrcB?y-!r۔t)8<اAO"ק>ehǧVNbm!uF;WJ(d
+C
+j)};U[Jn!}֕|&+n!+#SfEg&:4%d)!}=}>m+n!+1g#[ Ǹ!(4խΩ[HV}]a;z۬|5ba7囯.#/)f p1^~Պ1Ą`<~қڂ o!;rlY5bR6LaE; µ6@ڛ5ln܃;
+v([zd-,HJ<elT_UOk^p-E , \qu*Ջ)۲ Nw f=9P`:ީal_<{ fcfOb݋dpKD ƛu[=7-(WÁ8v@n[ )9 9-g'&^#5_9ٶ ni#n`Nd?Pu7yet7rcM3數d
+`TFX Ih~#4K1I_(I
+l6
+SJ<uF+`M8Q$
+
+HKW({ &ت#Khv(28!Ȩ\zQ
+ԛe
+t ]oP9!zt7s1I$(dk>R1G|0PBݦTi.F4ʈ !D=t/U׮wsdrPM*<gc;Fƀhr^ZP /CvIb\6p'qlg=qV qBq _dkkz(PKdݓ#6;mTIՕ]OFtCwk.bv]]!i<Z4}m!ٝwXhĨ0͸h21Ԯu5Xg}|Ƥh0l3&~ CUFB1 Jڍýx
+!{kq!gGm<(v\%^@pGmOsx.K ]ୢ壵=0u' u[wAZvmZ[6YgAXLBXj[q4 
+*.[ঈF5NU$ca_ih-k{aOnQc`nd s
+cxARBUH{=
+$tD-Uz]U$qG"m!u/^f{xbxБ 7w2~G3e M!td4ќi87kyBUH7Ua2S\l'_Axg+xc;]VLiN)mo[RИZ Ю&-s?_ͷ}޿\\``96fYҢ>|}텕pX<Ͼa縺:ru<.(7}'1u?l}Qc͜~)F KoݟP)01a~aeO_ 6?@'w{߆,oQ
+6~+/?K|o0j_1>f<S柝5mOwgO}ޅVekÇxkҾхx~5pROLqA//zp KRuX9j>7Q^o$!!eS48pgU"EXc  E]%|nNU.o!ƛ59C1?^x}c z~i|7k!/x&qw0o[S ifuxGz ْ4z4 2;l?O%σ^%i!ebv^%Qv?C%-!e 2W-5,qr k?WVc,
+'egT)
+m_;~ΰ5f)M[gh@ S۝g3 cܼƥm]e7<W.7$i SXn6K۶5ao\q떝@]1.U'Ztm'!lRP\ڣv]>,%.81Ԝ ][G 7io=4+pV>C;,"xw1C22FEA %W\֦[v&y+ VL v^WlM^(>0rmw͜1f˘TvU^Ļ+x{
+֨?oJ$u26-]l'vNc`7PQU$N㫦TUH0}gN-\۵Q1g婨m{l {kܨ`ɠle\-u
+۴ګs_`Rr<=`#~7b\QҶq3w5_*~&Xݓf n2rmwB/⫸T!N^{zDT
+sVN: .03FIS @`baO:DcaM!סgiWuo1<š>
+ZFOzB1K۴vM(3g6(w:S޿<l۟`+߳'b2KC,%:vb{ bnML+Vąt ZGn Q30p1bxmu+=[)yQ޼N-wە+rO+VzN첷7X xD\x~U
+k-7!⽶, Q?޹|m ,8mc2S&лѝh%TR G1<
+d12jƘrxe1Br^k sM[1WڴrP]r_Frwl'չ.INOgל
+Eqxy|!l$-J /vhh\)Y_T߹
+N .nomCk XK@W^%%q89y%TR `BAq>o\ƗKr?5hs0o\k!8AwNPߜ+КB7/?nroO..Sf%TR ֈ]˃#ɶm ^,~A+&E 1^5GQ`oWڴqG6nO(xQ3j7]NI$[>X-~PL,bIi=WrP,mBD{UGA[`ǗZqakܫ'mk)_-)V
+.˨F;Pw<Ѓ[}gpm3WlsY\{
+^UH9ܦsz&k;o)[*ffø**ՙYl6|蕏.7 bGC3J oGiKABf,C
+-&2; ==p ߁CDq '(هfq d'9ȕ/~xfpqFB`,̐j5,i%b$CP-K%ǬZfX&z",lS\-q4 -KEM(*@!\Ȑ͙r9DFXkEmZ9{nwݍ¼OV@Sڝ{|{0!8@-p<}"Y!PpvMܐC['X:~hZBj~*-G1TiAz?GH|ڗ*VSGdU_!u(d{J缪B=Hf&﫞J"{mT|Oqv>};ߏw&C"b1Y0-U~`|F2 z{,pqoY~ob?!v<*Ō<ys~pG$q9?OE_ez գa(МjcTR(e˾H) I3(wB=5 ;<\7[F<&[p S8H/0&tylļDI~I<(Rpx=B9}Qlj6wEaeqY,{AYN'LPrQH>GFsDaL#+,R&.yLF*.\Rs?HYP)z
+m}4b){( [0盔c?U|YJ+AHNx~x7IЭVkVY) SZ<龐 7|wSZ )z,89V;9Vh<m-0*L;9ZZҧY>Bysx!\q 6 7-F-nP"*B&V<+wwk;AB`k娶?3@t'0=ٟ)$4d^kU֏xypChCg<_5^YЋf hx<q.<˚,+Sc)L|MЇ)#u'^e[M5Fb/Jd/FYV";I_d܂JO(zQrua(><sp1 -O zQua+Ew"oz{|D.# ~B*k
+endstream
+endobj
+1479 0 obj <<
+/Type /Page
+/Contents 1480 0 R
+/Resources 1478 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1477 0 R
+>> endobj
+1481 0 obj <<
+/D [1479 0 R /XYZ 124.802 740.998 null]
+>> endobj
+310 0 obj <<
+/D [1479 0 R /XYZ 124.802 511.957 null]
+>> endobj
+314 0 obj <<
+/D [1479 0 R /XYZ 124.802 489.25 null]
+>> endobj
+1482 0 obj <<
+/D [1479 0 R /XYZ 124.802 465.271 null]
+>> endobj
+1483 0 obj <<
+/D [1479 0 R /XYZ 124.802 467.208 null]
+>> endobj
+1484 0 obj <<
+/D [1479 0 R /XYZ 124.802 455.253 null]
+>> endobj
+1485 0 obj <<
+/D [1479 0 R /XYZ 124.802 443.298 null]
+>> endobj
+1486 0 obj <<
+/D [1479 0 R /XYZ 124.802 419.387 null]
+>> endobj
+1487 0 obj <<
+/D [1479 0 R /XYZ 124.802 407.432 null]
+>> endobj
+1488 0 obj <<
+/D [1479 0 R /XYZ 124.802 395.477 null]
+>> endobj
+1489 0 obj <<
+/D [1479 0 R /XYZ 124.802 383.522 null]
+>> endobj
+1490 0 obj <<
+/D [1479 0 R /XYZ 124.802 371.567 null]
+>> endobj
+1491 0 obj <<
+/D [1479 0 R /XYZ 124.802 359.611 null]
+>> endobj
+1492 0 obj <<
+/D [1479 0 R /XYZ 124.802 347.656 null]
+>> endobj
+1478 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F63 1313 0 R /F11 497 0 R /F42 396 0 R /F43 398 0 R /F10 479 0 R /F50 400 0 R /F55 517 0 R /F59 539 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1495 0 obj <<
+/Length 6252
+/Filter /FlateDecode
+>>
+stream
+x]IoɕW Pc_ `O`6 6EIDvw["+dJA`je|xK,Ybz7Q))7~;Ie 䅛7lf|'|uv~yNV~@k/n/VŴC\_6e`懋w+E8P.OwD u#>D7^ݼß_.?|8/_~E ѿƅL(PWWg?\\xz1V_>R98jO^8;߯7ٷ7P"ߚ1}qfQ53~J>-lb[*S-bqNFl';ݔ'b1ċ? fMj Dro4_ЩY(-&{: u1"N/E!?9Gg'K_ˌ`/k'pt!,RcVWASzrKg~N}&
+%E3K!9&' xE3\FJ(fKJ;Q*0VM7PrZ?K'450s}hdz&c(Wc\Ybj५u6]8[)/4 ׳`Y&Ae)5>,WtJUFMi҇4
+ؑ69hL t)s2رz#=:)Cn\J;IlqP8yleH˰[xvq&x9r&^כF^d 9-[e#/C2^fdF^d 7¸aUq#pr+Pm#`\8WvȺ>ˇʨf3:ZU*S >TU܉U_fZd^։Uy]oȯ~T*!1aF8m Ir k#,'m#;-nЁ`[e#/C2^kŬC'7ˑc7 F*y2&^8B[E#k1Ҏf|d hv/a8o xvbVG؋7~Y/.R=7
+ so*7lD#*UѨ}ǔ# i i9v ׳l#;/nEBlK xvSNCdcVǐ,cM
+!F^d 9=WM62$eMnF xvvM62$eM>ۂ:q5GF%/1Q?7
+ }o*70BK7-M6C2c-Nš!8l#;/nZ3n5*{!ٚn%ʍU`fXN۸1imUfXЛ%f
+~n‘c7GoYSF
+ ˹zՋfق#9qnၯ#q.S3&?,Du(%ե7%G}
+ %_T
+3-T*:u̩*8U S%Fkׄ -dX iaM8rs,m;!zVH.Bo06nntmMfX۸접v7rnmFCЅ#72nmS.\p3,fmvNQךpͰqY-2&[0w$'mލيbeWǬ2"0[)eQ/ӫez1avV1i…2,WDޤI&3&^6ohip ˨9zr jpͰqل(Fބ n 휁$aG=kIG zƃv5ႛa97CoU򋅸.\p3,fm~1q5ႛa97ConV4/Ҽqq*,T᢯5Co08ldfHF̰x]prPpdXF۸-"&\p3,fmqV1.|f.s3sS"pqra)ƍZ.s36nK#Ɲ.\p3,fm܎Na*\p3,fm6يfGcW=nV^gi)@}W"|w"@!Ds-$ɸ\/i.Z惤@K+AYaڊFtФ>!zVéM"@[
+8m5\oD+YZH"`CjF:t=~PFeQQCբ@F7Œ)<+*/=ۤTzqKk05;o:
+v`kF+nVt<:̅Еh A~In<U* f/e5I_' b-
+QUDO5\~+렕[V&y}0B贻 95$ PJ!,zTkBn!kqLR:2Zв@*$-n\鐛M~IQU
+?aGD)e/
+}&@xʚR0h0\TZ10s ;p7 Nn/ri{ה*j4.~Bs<x J:V828"lFwN]<
+wɅ{O~o୬t{A4਼sW_?&/eF
+d(MsC/I*%1왞ckt*9Fǵ귲Z1`H*YS; d;
+d}<w|]}J)R#Cm-4%\Ex+:^ Yq]Ty.%C8IQVhiks *FJ۩=*l V鈭%\9A7{A
+L6/FT>5ȰU:bk 瑰`ks!R2%ZR"/B*9O]D!9 HIL+I*#=؄/2ãH;cTZ[Qm,ȁ[ݧEz\ +jU;
+d}~JJP ֒8PlկqD/*yڂLMð8h? cMrkp(~sST
+XZ8GOѪ"}`QTZZDRLz1s:a~ҭ*^ TɊ<W1Wj[9˖>
+EDB[A6\ctJ[Zg}?H=$ǒt^X_$|+Һ0CDVTTJzK-C/ !TSIl5kVVA+K-
+!hP*@*jqN:Gd~HX>Q)_H}"MNt cX<| 0ڍ9jiu{U!fsV
+mIJŅէW{6ZzS9C )bGz &ӖemÇ
+N|%?eL=@CS{ ctuIIOجb!@u<+:Gr{H`*,;`a؜:)Ԟ 1Pz;&;E7Dzm %*u*mUrdu[ױV& J D}XR#BhtCB[o"åe^ӵgBZsF k 50R2Hȣ{hD.ӎIRY5˴Bz,tYG>YbH7Jn-rr
+D*$TVUr {Ms0Ҧ a-vEz,e(ph0Z"֍u8]sA)ŰGTǴm)o}XH/puq@B$X5O6,u,2Cњ{f>'=P6D tWt5Yϡ4jWH`'qcsMy!Yˇz!y/6X^-6ט.@&BL>88.zhώ
+-JK)ǀc:a0QO)lLimjMTZ}B;u٧*,m TeMIY/YGSGn(bϰ(l:ȀͥKQ@aXC}@kBZ;b߷}:dAt9&) z ) yi|߷}Ap0h@-sFh)Iiq-wMwre\g@꼆ϴ>eYw(mrZzUަP V "ddaS d1b%W2W+"N1K{(R87XzWT<ܼ=x)x)hp'Mv]jkvI\p
+h5Tk7
+Rvq dGɲ+m);$ӂp]oyOM>1`ZE:A+AR4VyKZ 'C؃SLgkKyc_xiz ~e?8#I[gyA ؋Snɱc$MjRX'{QtrTI}0l״C: adL$~6m/j||8K>5iMkLWJ^8}Ó$`>k !+-C Yg[2! `<xFc'!VF_MKfUv $LRh^Elo~بŋa]BJR 3+z#$8]ִGu.EUs$mӹ{դ@=&+׌ڒgwsm8zE{@ ;2m۰zNq%ޱ=\ٱ/_EKe: JPw@)7wgwk}݇9×IQ>EۡYoOW{N0~7gwgnn?<[{>zuo3^^]ŋ7g?t?x{s}ȗ-Z|_kkZUՂI"E_WFoz_c%ǯjckr xQ3hF|Lu%tI,ΡkN(ׁ7_ҵ% ^D
+endstream
+endobj
+1494 0 obj <<
+/Type /Page
+/Contents 1495 0 R
+/Resources 1493 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1477 0 R
+>> endobj
+1496 0 obj <<
+/D [1494 0 R /XYZ 124.802 740.998 null]
+>> endobj
+318 0 obj <<
+/D [1494 0 R /XYZ 124.802 716.092 null]
+>> endobj
+1497 0 obj <<
+/D [1494 0 R /XYZ 124.802 691.78 null]
+>> endobj
+1498 0 obj <<
+/D [1494 0 R /XYZ 124.802 693.717 null]
+>> endobj
+1499 0 obj <<
+/D [1494 0 R /XYZ 124.802 681.762 null]
+>> endobj
+1500 0 obj <<
+/D [1494 0 R /XYZ 124.802 669.807 null]
+>> endobj
+1501 0 obj <<
+/D [1494 0 R /XYZ 124.802 657.852 null]
+>> endobj
+1502 0 obj <<
+/D [1494 0 R /XYZ 124.802 645.896 null]
+>> endobj
+1503 0 obj <<
+/D [1494 0 R /XYZ 124.802 633.941 null]
+>> endobj
+1504 0 obj <<
+/D [1494 0 R /XYZ 124.802 621.986 null]
+>> endobj
+1505 0 obj <<
+/D [1494 0 R /XYZ 124.802 610.031 null]
+>> endobj
+1506 0 obj <<
+/D [1494 0 R /XYZ 124.802 598.076 null]
+>> endobj
+322 0 obj <<
+/D [1494 0 R /XYZ 124.802 371.425 null]
+>> endobj
+326 0 obj <<
+/D [1494 0 R /XYZ 124.802 348.719 null]
+>> endobj
+1507 0 obj <<
+/D [1494 0 R /XYZ 124.802 324.739 null]
+>> endobj
+1508 0 obj <<
+/D [1494 0 R /XYZ 124.802 326.677 null]
+>> endobj
+1509 0 obj <<
+/D [1494 0 R /XYZ 124.802 302.766 null]
+>> endobj
+1510 0 obj <<
+/D [1494 0 R /XYZ 124.802 290.811 null]
+>> endobj
+1511 0 obj <<
+/D [1494 0 R /XYZ 124.802 278.856 null]
+>> endobj
+1512 0 obj <<
+/D [1494 0 R /XYZ 124.802 266.901 null]
+>> endobj
+1513 0 obj <<
+/D [1494 0 R /XYZ 124.802 254.946 null]
+>> endobj
+1514 0 obj <<
+/D [1494 0 R /XYZ 124.802 242.99 null]
+>> endobj
+1515 0 obj <<
+/D [1494 0 R /XYZ 124.802 231.035 null]
+>> endobj
+1516 0 obj <<
+/D [1494 0 R /XYZ 124.802 219.08 null]
+>> endobj
+1517 0 obj <<
+/D [1494 0 R /XYZ 124.802 207.125 null]
+>> endobj
+1518 0 obj <<
+/D [1494 0 R /XYZ 124.802 195.17 null]
+>> endobj
+1519 0 obj <<
+/D [1494 0 R /XYZ 124.802 183.215 null]
+>> endobj
+1520 0 obj <<
+/D [1494 0 R /XYZ 124.802 171.259 null]
+>> endobj
+1521 0 obj <<
+/D [1494 0 R /XYZ 124.802 159.304 null]
+>> endobj
+1522 0 obj <<
+/D [1494 0 R /XYZ 124.802 147.349 null]
+>> endobj
+1523 0 obj <<
+/D [1494 0 R /XYZ 124.802 135.394 null]
+>> endobj
+1493 0 obj <<
+/Font << /F43 398 0 R /F50 400 0 R /F55 517 0 R /F8 399 0 R /F7 523 0 R /F10 479 0 R /F13 624 0 R /F63 1313 0 R /F11 497 0 R /F42 396 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1526 0 obj <<
+/Length 8130
+/Filter /FlateDecode
+>>
+stream
+x]]o%}_qA^~8XX8c``\]ѕ&9U$XWRl0GyQ"lڽ٩WT7߼)v|L]Ta&ᄍ}{*h].g!K}Aaܒ',⟺{b'[.nz/[Jm&=UC[wǷw7w?_|yudKVfW_x62mK˟~n\HyI=ܼyWK 5: G0/LO9F9]7hMS8?޿_S2/WKow7E?~J/jwƨ)ļsL.W]!RCXS?rnwtvVZs0e*$WwMQlJ^$߯^]zK9K3%ô eЧɇ2_︊~J:,Z&M nL1{ҤKIРM ]<֤KIР&M7{T%letnlP6.]K]F]F7f;tv)U4Ehi.k MOmRlP|-u uݢ{Gx/qx5CO\3:`ѝkR
+]ڬ^02|I"N8U q =ܱS-d
+T-\)2h<S .q*R{v${ IҊF]ht Es&HQ.+tK]F]FרِelЕ̮+tst.a`
+]]> "Kب+BWpWblL+tӤ\Aj \)
+5և2 RAU`ф`Ny)ؠ*]VrWFKب+BWpzvd]캒J)46
+UC4vUl}"$c`
+Y] NGpjRQW0ஊT Pxq]Tc7gFQÝ=G QӌW20L"hיk,/JW(cdvY] A"$cdv]]q' QW0ச|qF'bJ'taCQQW0upV)twn3㠟QW03c`
+]]/Ϡqe*9~lԀ:Lh_7jsQh!j2QZSY1 c <]cy&ʻa`ؠ+]WrW)[E"ZLZ$tѬ 03e҂N;ѣ63mڂJ[D) ڒ+%{685l i uھl6SL)ܹt@O03e҂* AyWr6`!kܹtH!ίR̙"rRD?͘u5ju lPp
+*+i ڒ+%{<T#g@W>u"118\-b
+~&p-R[WiK6aQ[rdvpei u~i uf`fʝ);w]l̋
+'M(Ęuc>czbL/'c\7n08Bf(ث찬s&Fe‚J7Zq ^pdSPJZgڂ+{v\j δWj ] {lL[p`%δWj :mpM918\-bc^W8Ɯw+irgu-{U]qQY0f
+ fpT\!->mi uy29b&3mڂn^mZ\aJiÐqkZgڂ+{}δWj :mlf[i u>\
+/+Gϻw6Û6Rs;@F>}VMY'<
++?J0IP\ËAH9 P<C32-FHr_Nk  {RP(=HJwr֘NJYej%hZQa΃+4\ y0JPi3
+8)YSVkB;-nnqt}mPW$d_S>$IJ:Bx#zR=5}+73OIɩcu'F}Q :c"x2Ȼ_!rICh)Ơtť/l<1R:-\ӀV+#CJy9 w8k 5(p(dd -|'
+x01D^Fč]OcE^2Rn vRO2z&h#ã
+l&A'0q0mW#Qʩ籼**|?p~<
+»>wYy Ʒ|YϙhL5U<CAvEZ2*gTA-
+%Ljqog ZrC
+40? Y}}:s? gFvƺsCn$l]v&O6] ,E,fp("U2+FU;]ma(ЄVV;Z0讠:q㲗ֆl|d R@?v
+Pu8fJ^k4{o0f "r@wOCvA؉,.ÚA giyZnbP7A%C[˅vP?s/WXp 8`s 9
+20;hb$'=8J9Fq9RCaX0m/ձ<L&^:>%t0ڃz,N p$޻3A86( DH:cutގ1 Q[R!3؉iy7Ka[Ěp^N@ x"%tR
+㜠
+(Ti1}*+-i0ReI1Bx#_U~K
+Ac슄ˈeiyNꤌm>rV%'1EUn*֍cr-i;I߶A<yq@5NڮP&xF\9#=!z(W<kdxwOC$#LͶ%9~pA29<*DO4Zi0n%HCP
+`V.Shn %X;pUĠ=QTC-%ʂG>:ӓkӹ,'&.֐}b(ϜμdOGǚyob ]0!6T 5[kku
+Ӥ
+?cy愛ppJ)Av"L֣$|2$ct˽Bx eh_S^ NOGǚ ڒ!ttcR8u;БK)Πp~CF&0`j.KĐ!X|ʺ4eTGH( %|9 ӂ!HĩblȾwr4='uRVߧc-RPio Ly)<v 6pdֻo" )77;X_óbuK+oT\CV;rW
+>W}\OxAp_}CgAI2b)RӼbO&pD"\auz&JD g0`!|_/:eFR2Xs Ux ,\g=:\ s\6, (AQlz; 0sϡ HTPSq</ACGRb8(ێ^s07eA4\-KFgI˸0ŵeK(@\s1>Hk`hd&U[ F#F2>1O0e_4ަAg:J-c@O hn0:R1i\ -ĶrƂ `*0^t8gp .mZBzp cNpaнa*ØKA8u1 esY >C&-<.R7\(xfiHw@_,X-2a@ٻ'x":'_fKo)3zq 2ߞ{ٱ!](#i vAg8_,ѵcx> &P|*TCi̊Bj@si9p ~zť
+e0 ;ggtD db?NasRqo%<e=IWq%-=
+ruJ&AF/-"ɭq!~
+8b/sE& .b r&lř~ʵp CiG[~H Ķḱ8.aL8Zcp-Xz|.[nR'O岀-O 5[0<;Ny g=t}0Sm?KfĹ[ Ԃ{k~y݅, nNKlTi/ G0561r+>'LMfT}e l෉A0
+d M+w_3iS;˜7HpIx
+k]|$S
+Js)̋} w'C8h#wվ"R)֟؋ Xī{Pr?LJfc_\o{8CQЇq-isį,<TНŒc cqE^ꬠ"Cik׺m]ptOCSk|,Sd:f{zt]SvyI/BX$mB>5-
+e2 Vo
+灮9h\~]0"k|c:? cWF4FZc,t_X~fjODUr/}oc=ݸDZӸ\
+u`aߗbnnL6Rc\J`>/fln?=pz].jx%k?·|pR5QHvn~p&$P;\ܼy;_=T/*p{@|
+j Jwn3=ŏ77L>axqp\xW/ëǛFgVN>~~/kZWw i|RRJQa4Uܡxx8'+.:BܽiKZu5áܿyl QԌ'ͨP\81襖g4_^` p՝W?݂Ռ^><Ԋp_X87ûxs~!5XmyK6R J'z᥉<՟^8˩^-`l4=gW4jNI]6>"/\{j.O׷`\ڋtÛ#(<.)7/6Ԫ%/\o|wK3ja=!W
+޿?}{^_?nÇ^0V|^%>o_淟]:~53w?^XjA/ts79gʣ 4#=8}?=|
+3_9~?_~I=wp˷y}?\]=Z.v
+4YkU uq@7/Bϸ |y@]ٴܻ0-@
+endstream
+endobj
+1525 0 obj <<
+/Type /Page
+/Contents 1526 0 R
+/Resources 1524 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1477 0 R
+>> endobj
+1527 0 obj <<
+/D [1525 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1528 0 obj <<
+/D [1525 0 R /XYZ 124.802 718.084 null]
+>> endobj
+1529 0 obj <<
+/D [1525 0 R /XYZ 124.802 706.129 null]
+>> endobj
+1530 0 obj <<
+/D [1525 0 R /XYZ 124.802 694.174 null]
+>> endobj
+1531 0 obj <<
+/D [1525 0 R /XYZ 124.802 682.219 null]
+>> endobj
+1532 0 obj <<
+/D [1525 0 R /XYZ 124.802 670.263 null]
+>> endobj
+1533 0 obj <<
+/D [1525 0 R /XYZ 124.802 658.308 null]
+>> endobj
+1534 0 obj <<
+/D [1525 0 R /XYZ 124.802 646.353 null]
+>> endobj
+1535 0 obj <<
+/D [1525 0 R /XYZ 124.802 634.398 null]
+>> endobj
+1536 0 obj <<
+/D [1525 0 R /XYZ 124.802 622.443 null]
+>> endobj
+1537 0 obj <<
+/D [1525 0 R /XYZ 124.802 610.488 null]
+>> endobj
+1538 0 obj <<
+/D [1525 0 R /XYZ 124.802 598.532 null]
+>> endobj
+1539 0 obj <<
+/D [1525 0 R /XYZ 124.802 586.577 null]
+>> endobj
+330 0 obj <<
+/D [1525 0 R /XYZ 124.802 299.653 null]
+>> endobj
+1540 0 obj <<
+/D [1525 0 R /XYZ 124.802 275.839 null]
+>> endobj
+1541 0 obj <<
+/D [1525 0 R /XYZ 124.802 277.777 null]
+>> endobj
+1542 0 obj <<
+/D [1525 0 R /XYZ 124.802 265.821 null]
+>> endobj
+1543 0 obj <<
+/D [1525 0 R /XYZ 124.802 253.866 null]
+>> endobj
+1544 0 obj <<
+/D [1525 0 R /XYZ 124.802 241.911 null]
+>> endobj
+1545 0 obj <<
+/D [1525 0 R /XYZ 124.802 229.956 null]
+>> endobj
+1546 0 obj <<
+/D [1525 0 R /XYZ 124.802 218.001 null]
+>> endobj
+1547 0 obj <<
+/D [1525 0 R /XYZ 124.802 206.046 null]
+>> endobj
+1548 0 obj <<
+/D [1525 0 R /XYZ 124.802 194.09 null]
+>> endobj
+1549 0 obj <<
+/D [1525 0 R /XYZ 124.802 182.135 null]
+>> endobj
+1550 0 obj <<
+/D [1525 0 R /XYZ 124.802 170.18 null]
+>> endobj
+1551 0 obj <<
+/D [1525 0 R /XYZ 124.802 158.225 null]
+>> endobj
+1552 0 obj <<
+/D [1525 0 R /XYZ 124.802 146.27 null]
+>> endobj
+1553 0 obj <<
+/D [1525 0 R /XYZ 124.802 134.315 null]
+>> endobj
+1524 0 obj <<
+/Font << /F50 400 0 R /F55 517 0 R /F8 399 0 R /F7 523 0 R /F13 624 0 R /F18 1187 0 R /F63 1313 0 R /F11 497 0 R /F43 398 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1557 0 obj <<
+/Length 8234
+/Filter /FlateDecode
+>>
+stream
+x]]oGr}ׯK.l6XE+!A5m1%eZ{OUwWuܹ$gd$bLQowjWw)vh`.0iw:/^Y_ԹS^|3ie[?t~ /e~bxf?vS9 z2ďސdpnxϿ^*4M:ġh/?[87el)[Ko??^\s┌~ZZp>^>]9zݻW~P;3FM!n>W]aR~!, G?ꠡdv׻W:;ZS0e*$W7MQlJ^(_{K9K3%ô eЧɇ2<i'ʤIBA-i6fOt)4 4ܢͤaM ntSNW._KUFYF7eҵ%letnCmRA([4!Q ݤ &.a.[tO7}&c7dɠj?ihEsu,Q?FSK) x elQ.$|
+Oڌ绅o~[`-\G -4n aײc6,Ft .cnG7qֱkKب c+8 E eo L δަ'}e δަ#꜀A6Ûa+lf@j38jwx6}o δN2'+XX?gX6<ã>Ú\ևn3HR+ vZC['C#p޶X +ަ >x )63m7i[!'h: ;MQQ δަ >E,A6۴xE0h8fx>Ŷ |=ax6
+]]klC26JfוUf9QQW0upH6
+UaF_16
+UiR. cQhgєV3Ee8U8d?YMuq8_qi5\/=.;@ƯDش,w+y/&ON8v=ƾ' އ4 RAU`ф0XelP.+t#Kب+BWpzkvd]캒J-46
+UC4vU<$c`
+Y]#Kب+BWpWy*ak<^8m.Nz !\^q5³;5zF/30M"h{'^gy˽DT%J]7xH]캒J7O, c`
+]]_>!alStJ~:)tw[16
+UaΌ~F]J7N!D?xgF]cu[@IAn85Ur\^q~YaOyQ^׀TVaS<]2ʻabؠ+]WrW)F"ZLZ$t[eFagʂ+{vSGmgڂ+{60R%WhK:m0j8j8\-}i9J7lܙRsOFagʂ+{3l 9ӦG\
+m^F7ei u~18\-dfQ0c3ĝη [AYv\#f崏&s} DK?c19Z1/Ǹ4o8ap WvC^=fS *
+a]:Q),BZi|618\-drLgڂ+{n) "۴:8/%rÔ`ӆ)ִδWj :m"'i u0'T̶8\-llGcW؎6+ow(Cxh~u{ Rf ΃ & jƍi y=e ]+ ;T_)(^F3}ڽaWbVFa ʌ՛TKc S"N΀ /[$ >xdJq. $4Dqᾩ,@ҪZҘ5/oQi>ͷVA \H.r:eY0xO !KAYWt,Uga& :<z'괸 x:V,5%,+-s̱DZg
+-1L/)pr"]QL){rKw]%-[+h
+ )[ m4AR&$b|RN>Q[9#b$b VIA< )IYcg:*eA^ŗ}$q29mHd!F)gL*3
+BrR$ oCyU`˱lv'b=:SNA!@cdCU+3ȁçF9~OD
+VϏY|ء·a韻:n1,Ƈu<on8n0
+E^#8S*eXAEZ[h:w"Z}BtīP\xD^K<ʗC5~KTL:81'87kO}abd4
+wNkL _Bо|قޓ={r͠K3^ N -71=
+cLa@aA8ue7 Р< te|P 1!VV^.C2F^ Jn8aPzL5\5/ \R'&S
+.#R5N aK
+S;.-瓖v.bI
+󄔠};(I&{P9c<eh_^ NƏgׇ ڒ!tgR8uƂKȥZ{\gP0¤r Leɝ7UYwНݹ,I/HqZ0*vɆ9-gLsRGl}j)†L{ dĽK\Y>+D}QםʷvN\m1:kuR.S+  Z+>F'|,%w>١3!Ѥ|Cz\ G .c+ :X0PՅ BdD!|.:%"i[X1u<WmQy
+-K2o'"963xbe&c]}N=/vk];a^0hS},e9+{]oV;|N#H Z,+.U(qhpn=ۦ#
+F 1ejJŽ\q4{.W*isj_f*BVݾǬ$.*SDži3q _p!u8 ܚh0GZʲ;#kޏܑ-m5ƕκ3NqR]|1~ p`Nz|.UmI <nܖzxDnf;<^-Ϻg)Сa:o Ԗvϸ>5 s<LGNީX޶@W3p[<,`jͥ
+މB 1p B7%6*a!y#>NOƗpp۱0 ϡ` ;<ĹՍEn9:zƛmbl]|'b(aq.4HOpc/~
+ƪq}ߪܱI)ץWb$'_;GCav);z-nk lZN cNq.]<GFMF*;S:?Нe;v]})yyMݞ
+1v $>צ@d
+endstream
+endobj
+1556 0 obj <<
+/Type /Page
+/Contents 1557 0 R
+/Resources 1555 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1477 0 R
+/Annots [ 1554 0 R ]
+>> endobj
+1554 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [457.554 312.905 469.509 323.754]
+/Subtype /Link
+/A << /S /GoTo /D (figure.13) >>
+>> endobj
+1558 0 obj <<
+/D [1556 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1559 0 obj <<
+/D [1556 0 R /XYZ 124.802 718.084 null]
+>> endobj
+1560 0 obj <<
+/D [1556 0 R /XYZ 124.802 706.129 null]
+>> endobj
+1561 0 obj <<
+/D [1556 0 R /XYZ 124.802 694.174 null]
+>> endobj
+1562 0 obj <<
+/D [1556 0 R /XYZ 124.802 682.219 null]
+>> endobj
+1563 0 obj <<
+/D [1556 0 R /XYZ 124.802 670.263 null]
+>> endobj
+1564 0 obj <<
+/D [1556 0 R /XYZ 124.802 658.308 null]
+>> endobj
+1565 0 obj <<
+/D [1556 0 R /XYZ 124.802 646.353 null]
+>> endobj
+1566 0 obj <<
+/D [1556 0 R /XYZ 124.802 634.398 null]
+>> endobj
+1567 0 obj <<
+/D [1556 0 R /XYZ 124.802 622.443 null]
+>> endobj
+1568 0 obj <<
+/D [1556 0 R /XYZ 124.802 610.488 null]
+>> endobj
+1569 0 obj <<
+/D [1556 0 R /XYZ 124.802 598.532 null]
+>> endobj
+334 0 obj <<
+/D [1556 0 R /XYZ 124.802 372.086 null]
+>> endobj
+338 0 obj <<
+/D [1556 0 R /XYZ 124.802 288.067 null]
+>> endobj
+1570 0 obj <<
+/D [1556 0 R /XYZ 124.802 225.985 null]
+>> endobj
+1571 0 obj <<
+/D [1556 0 R /XYZ 124.802 227.922 null]
+>> endobj
+1572 0 obj <<
+/D [1556 0 R /XYZ 124.802 215.967 null]
+>> endobj
+1573 0 obj <<
+/D [1556 0 R /XYZ 124.802 204.012 null]
+>> endobj
+1574 0 obj <<
+/D [1556 0 R /XYZ 124.802 180.101 null]
+>> endobj
+1575 0 obj <<
+/D [1556 0 R /XYZ 124.802 168.146 null]
+>> endobj
+1576 0 obj <<
+/D [1556 0 R /XYZ 124.802 156.191 null]
+>> endobj
+1577 0 obj <<
+/D [1556 0 R /XYZ 124.802 144.236 null]
+>> endobj
+1578 0 obj <<
+/D [1556 0 R /XYZ 124.802 132.281 null]
+>> endobj
+1555 0 obj <<
+/Font << /F50 400 0 R /F55 517 0 R /F8 399 0 R /F7 523 0 R /F13 624 0 R /F10 479 0 R /F14 452 0 R /F11 497 0 R /F63 1313 0 R /F42 396 0 R /F52 480 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1582 0 obj <<
+/Length 2743
+/Filter /FlateDecode
+>>
+stream
+x]KoDvrH@HZI s
+ME|=ӏ١ėZTWWuUWy?/  Vm'gN8δٛ
+O<3x 5,89=ͻ>1Q20]_?l/n>^o~c,`VffFp,(5+9rO6 Ov9^VOg+
+D'a*NTn^vǷtH?A
+˕/@#*J6)EYL&(]<Uʴr3EwH+(iİ;J*ĴF2+r3$ua
+#
+qV-\`DóX(XeWQ=&` tG2Z-4(#ФA\B6Sb"L-^SIBc9a"*^/YW,^^UT/&;,2M:E`\uȡ\GYtT@Bܛ
+%"BC[rDG#p,t](3I“-2v:#Jk!Rf򚑶O(_>猚 1XGm;M‰d. ђ, Jɺ!v?$Y F)4ssZn}lLM-H")ȥ(uEHmY(TE#^j 3 |)JHdX Nӄ*zOb"zYfXe+Q=؃Mp
+`Y<+1g{Ser#ԫ\NpE|VB5@&l_DH/XeWQ=tR 6Auz\b)*p:Z0(@`=皰8AakUT۾sMPE岡HXa+Q=6VZM^7^ t׸RߢK3sETHϝ2O~}{W쯮w>yL+ɽ/^<7קkO6wc= `jjgߍB4N|.\#vЏ0 5\$nx-<wFkbuYF4񝌟8z "9y:b55^.04Qϑ&ͻ@5a5oXc:cwDX8_9P("^c^sF! H\ZyrSu^;
+d]* yĦD1 '#5Ӓ("A6 iMld 4ȦA6 iMl' [/YAη_) KVR-ۆMd_]L O%BOgE{j:ǹQu l\Q@k ^C9xg<Ss|z#\A^`GhMG^7?.IYsR
+ w{1)g<%x=$Uj3R4#uι)ͣRjR? 4Evt<jam:MGyB!4\pKey>jR8 Pbei@*<Ѥm<  <8p,GU1 jkP[֠5Am jkP[֦T,_<txh)sQK
+endstream
+endobj
+1581 0 obj <<
+/Type /Page
+/Contents 1582 0 R
+/Resources 1580 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1477 0 R
+>> endobj
+1583 0 obj <<
+/D [1581 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1579 0 obj <<
+/D [1581 0 R /XYZ 173.046 285.188 null]
+>> endobj
+1580 0 obj <<
+/Font << /F50 400 0 R /F55 517 0 R /F8 399 0 R /F14 452 0 R /F11 497 0 R /F10 479 0 R /F1 1584 0 R /F7 523 0 R /F52 480 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1587 0 obj <<
+/Length 759
+/Filter /FlateDecode
+>>
+stream
+xVK0JUz*zԭsnil -XQ^ >0f [y|ǞFZMH4f_1L(Ɠ;ƷfMyw4C h:h
+endstream
+endobj
+1586 0 obj <<
+/Type /Page
+/Contents 1587 0 R
+/Resources 1585 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1636 0 R
+>> endobj
+1588 0 obj <<
+/D [1586 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1589 0 obj <<
+/D [1586 0 R /XYZ 124.802 718.084 null]
+>> endobj
+1590 0 obj <<
+/D [1586 0 R /XYZ 124.802 706.129 null]
+>> endobj
+1591 0 obj <<
+/D [1586 0 R /XYZ 124.802 694.174 null]
+>> endobj
+1592 0 obj <<
+/D [1586 0 R /XYZ 124.802 682.219 null]
+>> endobj
+1593 0 obj <<
+/D [1586 0 R /XYZ 124.802 658.308 null]
+>> endobj
+1594 0 obj <<
+/D [1586 0 R /XYZ 124.802 646.353 null]
+>> endobj
+1595 0 obj <<
+/D [1586 0 R /XYZ 124.802 634.398 null]
+>> endobj
+1596 0 obj <<
+/D [1586 0 R /XYZ 124.802 622.443 null]
+>> endobj
+1597 0 obj <<
+/D [1586 0 R /XYZ 124.802 610.488 null]
+>> endobj
+1598 0 obj <<
+/D [1586 0 R /XYZ 124.802 598.532 null]
+>> endobj
+1599 0 obj <<
+/D [1586 0 R /XYZ 124.802 586.577 null]
+>> endobj
+1600 0 obj <<
+/D [1586 0 R /XYZ 124.802 574.622 null]
+>> endobj
+1601 0 obj <<
+/D [1586 0 R /XYZ 124.802 562.667 null]
+>> endobj
+1602 0 obj <<
+/D [1586 0 R /XYZ 124.802 550.712 null]
+>> endobj
+1603 0 obj <<
+/D [1586 0 R /XYZ 124.802 538.757 null]
+>> endobj
+1604 0 obj <<
+/D [1586 0 R /XYZ 124.802 526.801 null]
+>> endobj
+1605 0 obj <<
+/D [1586 0 R /XYZ 124.802 514.846 null]
+>> endobj
+1606 0 obj <<
+/D [1586 0 R /XYZ 124.802 502.891 null]
+>> endobj
+1607 0 obj <<
+/D [1586 0 R /XYZ 124.802 490.936 null]
+>> endobj
+1608 0 obj <<
+/D [1586 0 R /XYZ 124.802 478.981 null]
+>> endobj
+1609 0 obj <<
+/D [1586 0 R /XYZ 124.802 467.026 null]
+>> endobj
+1610 0 obj <<
+/D [1586 0 R /XYZ 124.802 455.07 null]
+>> endobj
+1611 0 obj <<
+/D [1586 0 R /XYZ 124.802 443.115 null]
+>> endobj
+1612 0 obj <<
+/D [1586 0 R /XYZ 124.802 431.16 null]
+>> endobj
+1613 0 obj <<
+/D [1586 0 R /XYZ 124.802 419.205 null]
+>> endobj
+1614 0 obj <<
+/D [1586 0 R /XYZ 124.802 407.25 null]
+>> endobj
+1615 0 obj <<
+/D [1586 0 R /XYZ 124.802 395.295 null]
+>> endobj
+1616 0 obj <<
+/D [1586 0 R /XYZ 124.802 383.339 null]
+>> endobj
+1617 0 obj <<
+/D [1586 0 R /XYZ 124.802 371.384 null]
+>> endobj
+1618 0 obj <<
+/D [1586 0 R /XYZ 124.802 359.429 null]
+>> endobj
+1619 0 obj <<
+/D [1586 0 R /XYZ 124.802 347.474 null]
+>> endobj
+1620 0 obj <<
+/D [1586 0 R /XYZ 124.802 335.519 null]
+>> endobj
+1621 0 obj <<
+/D [1586 0 R /XYZ 124.802 323.563 null]
+>> endobj
+1622 0 obj <<
+/D [1586 0 R /XYZ 124.802 311.608 null]
+>> endobj
+1623 0 obj <<
+/D [1586 0 R /XYZ 124.802 287.698 null]
+>> endobj
+1624 0 obj <<
+/D [1586 0 R /XYZ 124.802 275.743 null]
+>> endobj
+1625 0 obj <<
+/D [1586 0 R /XYZ 124.802 263.788 null]
+>> endobj
+1626 0 obj <<
+/D [1586 0 R /XYZ 124.802 251.832 null]
+>> endobj
+1627 0 obj <<
+/D [1586 0 R /XYZ 124.802 239.877 null]
+>> endobj
+1628 0 obj <<
+/D [1586 0 R /XYZ 124.802 227.922 null]
+>> endobj
+1629 0 obj <<
+/D [1586 0 R /XYZ 124.802 215.967 null]
+>> endobj
+1630 0 obj <<
+/D [1586 0 R /XYZ 124.802 192.057 null]
+>> endobj
+1631 0 obj <<
+/D [1586 0 R /XYZ 124.802 180.101 null]
+>> endobj
+1632 0 obj <<
+/D [1586 0 R /XYZ 124.802 168.146 null]
+>> endobj
+1633 0 obj <<
+/D [1586 0 R /XYZ 124.802 156.191 null]
+>> endobj
+1634 0 obj <<
+/D [1586 0 R /XYZ 124.802 144.236 null]
+>> endobj
+1635 0 obj <<
+/D [1586 0 R /XYZ 124.802 132.281 null]
+>> endobj
+1585 0 obj <<
+/Font << /F50 400 0 R /F55 517 0 R /F59 539 0 R /F8 399 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1640 0 obj <<
+/Length 7656
+/Filter /FlateDecode
+>>
+stream
+x]m]q_q  tO"_I X@?$A+׺J$G4{!9],5Qy!y81gs9=؜ɖpyO}~hk̂ŏ5/V#kKv7)^8[k% ]ٴdkܐ/E[<1L3_b/O7U*-)U]j(vӿu'W
+ɔɣV/5txBOoa<?<ͣ_=0+ -:Ts> 9ڔ/+ Onö|ۜK
+~9osp~m" K-ĺ-9w{~gc?QDzww4 >C TP<.κw6{Kf]~W~L3;iI(5Mp%oEkMgckw+k!-*ahECͅ*aH4wJJqRU]?AvހL8EN%b'#3"z3ØmVAAxD{Yz5MZRt򁓵%5DdAK Vl~+uI%[IӔwy33TCᷟ(.ΔsږHsJd
+DMBu> %"3KjV@j'2Ql jLQiv&.-i=7Mï[zJp20L!,)zh@J.HSAn(2G)uvYl+r,PCKDwaun!𛆣?0mRŶ%\:vP<ҟ
+k8&NRQ@{I-69 `f!C:[pӔ: k=ٜ;bLmX0RZPt`!5A ME|E-`ޘ<yMdȤ
+4Ѫ+eJnHۡڤSVufQ<Uܲ]gJiiɪiB7SM.H!4NVheERA^$ nƎ7ښ%IBϘ؆,i"ӳE"F4A:9JkpX)P3VIhғͅmMDyeuB%WDaAbmZH3O 0d&gB0DED8߇n& :&#Z`7(5ЕEن+Sz`O1\Jm(VD]ʒ1,9;
+iQڴK`L ҍcL@d ٛ։
+MHāańl. `v6hc,X-!Єu4",b ]=2h5"E;Y) 죞1(ocs8X/!݅չ!o~ݗ<My%b]g=bYkBr
+]IaVr+(yE)3f:25лE2y1}Oy"`;2+V !tY81bT^f@^MѶG?-޾ֻ'B#xf1u'Vz4|`_arB6,r)o =|VB& %2CexOXU0UwHr#Bhns렄8Nä 3"Pt D-KNy՚dsn$LS3=1 ~fJZ:Mlix
+ Sp+*n%d0`o b
+3j9 Sܮ>90bn> @)6}Bc[#L~+3~Ag- bt/6ۀX( {#_ VQ*t2kp;ttb?X)ךO' mhC(rƻ~M #&GIM*2'a$ׇ rb8LNpV@&P>&2hchg`>mx+vv")*)2%yI!M ptw0'D OS@z&R}4Qf8-]pEB
+9OE-8x|^Q%>ay#*7 uNF /M+ͅӹ}tv6w}QL!
+aD 48)9NScc
+bH2 ;9+E#4&hl.m`ݕ}X > K!`0a-tbT&o*&
+<isۅAi1+yigY`ێ@)}I7Wq;@b컊O@CGs wйXfT'xR }*ld
+;n:"'N0fB1VʓjfCzVc;MLsS 7(yu9b74;<)0c@g|oGc!MZ2X;PE)AJI7Wqi#].vZ„.4x"fq@WmpDl;)p}ҍxܠ(o{qgRu'{OOtPRx"q\V:ף$];ixpۉ7H%B&l UaVrAN
+dŸ,+, [Lbc?֖3>d[, /k)eCo'"*H O\-b ؋}QaYAd9\-b޴×mK684Zf;8kE,ACܜS
+<i0;u8 -W:! 4"
+<)Jt
+yR5x"fq>Oof_1
+vXZ=X-b \%9WGG f? x"fŸBYm)9o|,}[eOlq$1zzsٺHKF>~kKYO40(
+;n⍘QK8Oa 4jf
+<n$җDҏՔLR=tssЁ)#YzvO9nX}f0$,K7LA\-;7z3~! nEe:٤ *PfWrO¶?}yyXRYWFhc|nn=ʇڹ Jt5Rb%BRnl_E@;ߎ笃JqZCos俥Z(:^#12Ca{nZv\xC_r69T]f,{nw G{Un,zh[/V~W^L3^͌|O6o0^PN>ڷQdP_"#I´߾ Alc0¹@_{х2-P_HV"_\P%覧й]I-918 S4CA": Ӹ/DuW`V9 XJ؆tAX,%zɕ<LDi7apb3E쉡РKCN|>٦/5>aAa$oOuOD:!r>;5I&ԛB8"mh4HDgaraZ00:h:vט6?¤}FŞLh5I}p"uz >\.= ATzXp4TA9aŃ^GFG΂FuhfVAk4묂ƙi4X=hAA)jzLT =Q!Wv&lߐc+2f֙E|=4^wCC3Te@ʝT / *tyouWR3ĜʕJ)-W&OisN(E(\ve Z El+1] sO1ʕ&OisNȾKhgrQBb裂dbSMWb ̽j`Sӄp=
+2c@:fH^t@W +H
+{ҽ^t@W +H
+{ҽ^t@W +H
+{ҽ^t@W +H
+{ҽ^t@W +H
+{ҽ^t@W +H
+{ҽ^t@i{ɓ+iGj^5eӀIM\ ;| ~Hmce׬$ 0smu^*HK."F3|Ŭo_ǵ滮]V{"}֎2镥0a&pI7/]`".9_9Ӛ/.%CRʋ
+rwh+>̣ظҡ. ,l1(Q!gW(Tj }l?hdDsOqYwYX˱RpBc'%L>}+^9*B۵k8#wT+J#"ڱ[տ4dWJ+X] lFM]Iت&Kϫ:D]DFYO캛F)[ݡ\V@JU&7|}4iviY?(t4KNp{TD B mXĪ ݴmzVwP
+Hi\uԯTȥb7!B"mĪQ bp.BghsBzHL^šQWSbVsl8&_D*M-'F^}Vaw#:h*@k^VwZ u b,1sSh]
+DÊέ=+=}@4ٮgDtqU#{A=\bW.« z8|= sUdRM=7r]Wޫl4Ui-O+
+=n]ɔB+
+2' 򳂾+Rw%SⰖA~Vw%SJd*TqW27JdJޕL*ZY{chڟ$?+)|W299enU^!.Bj~Xy0OKt aZ.*oϟ}`c~U/o_zozЕo:O}VEL<Vp`Rߒ QSMDO^|\H_oyKF͠ՆF}[ UR+A+oOOon??3d Wo?g{뫗:D9)+Ӯ[\u~$̏}gG3*EpUϮ0h!9oWx}ֳͫ__NXj,6VdvEJ{BR
+=R7*Rz4!޾zK2]">7?t횜nM̛W޲@%. 5~Xuxe6Rǯo|wzK?i{{$Og㒈Ɵ,%/;{cCk Ku/dZV'NK.>O_޾jûgk#avW{<P3ӯnO]Z)fCzB SB~U2^~ۘ_xq6-˲:0!aI د
+endstream
+endobj
+1639 0 obj <<
+/Type /Page
+/Contents 1640 0 R
+/Resources 1638 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1636 0 R
+/Annots [ 1637 0 R ]
+>> endobj
+1637 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [328.594 436.721 340.549 447.569]
+/Subtype /Link
+/A << /S /GoTo /D (figure.14) >>
+>> endobj
+1641 0 obj <<
+/D [1639 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1642 0 obj <<
+/D [1639 0 R /XYZ 175.714 559.206 null]
+>> endobj
+1643 0 obj <<
+/D [1639 0 R /XYZ 124.802 493.453 null]
+>> endobj
+1644 0 obj <<
+/D [1639 0 R /XYZ 124.802 481.497 null]
+>> endobj
+1645 0 obj <<
+/D [1639 0 R /XYZ 124.802 469.542 null]
+>> endobj
+342 0 obj <<
+/D [1639 0 R /XYZ 124.802 423.776 null]
+>> endobj
+1646 0 obj <<
+/D [1639 0 R /XYZ 124.802 399.354 null]
+>> endobj
+1647 0 obj <<
+/D [1639 0 R /XYZ 124.802 399.354 null]
+>> endobj
+1648 0 obj <<
+/D [1639 0 R /XYZ 124.802 387.399 null]
+>> endobj
+1649 0 obj <<
+/D [1639 0 R /XYZ 124.802 375.444 null]
+>> endobj
+1650 0 obj <<
+/D [1639 0 R /XYZ 124.802 363.489 null]
+>> endobj
+1651 0 obj <<
+/D [1639 0 R /XYZ 124.802 351.533 null]
+>> endobj
+1652 0 obj <<
+/D [1639 0 R /XYZ 124.802 339.578 null]
+>> endobj
+1653 0 obj <<
+/D [1639 0 R /XYZ 124.802 327.623 null]
+>> endobj
+1654 0 obj <<
+/D [1639 0 R /XYZ 124.802 315.668 null]
+>> endobj
+1655 0 obj <<
+/D [1639 0 R /XYZ 124.802 303.713 null]
+>> endobj
+1656 0 obj <<
+/D [1639 0 R /XYZ 124.802 291.758 null]
+>> endobj
+1657 0 obj <<
+/D [1639 0 R /XYZ 124.802 279.802 null]
+>> endobj
+1658 0 obj <<
+/D [1639 0 R /XYZ 124.802 267.847 null]
+>> endobj
+1659 0 obj <<
+/D [1639 0 R /XYZ 124.802 255.892 null]
+>> endobj
+1660 0 obj <<
+/D [1639 0 R /XYZ 124.802 243.937 null]
+>> endobj
+1661 0 obj <<
+/D [1639 0 R /XYZ 124.802 231.982 null]
+>> endobj
+1662 0 obj <<
+/D [1639 0 R /XYZ 124.802 220.027 null]
+>> endobj
+1663 0 obj <<
+/D [1639 0 R /XYZ 124.802 208.071 null]
+>> endobj
+1664 0 obj <<
+/D [1639 0 R /XYZ 124.802 196.116 null]
+>> endobj
+1665 0 obj <<
+/D [1639 0 R /XYZ 124.802 184.161 null]
+>> endobj
+1638 0 obj <<
+/Font << /F8 399 0 R /F11 497 0 R /F14 452 0 R /F50 400 0 R /F55 517 0 R /F42 396 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1668 0 obj <<
+/Length 15310
+/Filter /FlateDecode
+>>
+stream
+x}[9{f5>x11`iH:Rޱ#x F0)`_E`A&T?_ߨ5W]/޻Ϳ^@"ZlNa?OKxFgh;
+
+Xx2{s3ŸcTK!(ϡ='D`B /<tLn2N&cᤄgN;|y;&y$e3F-Ά,-aK^.;kL2)^YqގI^&xoXI+$/dLv7-ч:$Y#ڵw8ڵ];)Ð4'&0q)~ޟu~7җ.#|mwߴ7?)30(~0ՊJaˌ>&/N(pdf3ٙ+r C R&9 `0%-ӂcI2^&;I \rr)^\eN:ϊ!:鐜 eѳIV&ho\8o$/dLv.H?wFG;N>n0x/>A%O';>D;g2ǹ^-Ҷ6<X3=')aKZ.; S'"-aK^.;q* EeN/?>F1"L0$b2)^!1$/upc=$/dLv7,9!L2IdxB"&y$esHx30=<yz9t<m_{,ļLi2_7أ3J{/3TVA&/d ~HS \rr٩90eqq똬u&/6l$rj&=ǝqNh7Lz[D)Jn%7e\zq6J,fsܾ, [1IN<dx@$qWLS3鹘$}sI=0Ȅ9/ Mf#> M(4&fˌMZ'xFII-3YޖT?ZJ@rn%7e\zn5QWo,EĤ4d$pd97Q|LK,fSܸIZ \(,sntr87Lz/1X/+n&˹w\jLN؊yHr!;VbDTBOUwypP
+_sLj2_7Zh5J/4Zo̼\g&4I>.(0$1 }U3YFͥ2&pd971Jf,fs84/uL/`sF,fs~q587Lz;.ی`,fғJz7Zq=PK1-.ZSc1".ZcI2b&;ścNLd沌Kq|% \q3Yͤa*fIϭo+\X7
+7&˗19no>b,fsWȵ\q3Yͤ!T٬vpd97[lȽ!|"|젾uǯۈOnێ[\ZdpcBm85=n[G09q܋*/9R;dh/àEu Įk9eYȄBPΐ9fZq u17W
+I "v Mt>n5)$ި^=H]ul,Ul&`x=ù8hqA&_Rh uxŎ\}ʇ⢣L@:#H^TgƎ`襁6::Z'3qȷ8BgLaOew/#$4ZvPof
+ n\:zFKHɑC7Lp l&@ Zcf\ʱuZw_ $EQF[n%.\!ʑ6 ţ]ۆ|Cֶtv[u}kp&z.،nS^8W 5MWU0`9^CF!N8s1=ԙr
+ K 3. Pͤd 'ˍrb|nX9 hq.]E_yC? 
+»űUڕoqŀԁX8S8ǿ+^GPX_h:/"Z}
+<W(!<F{r/7k<V0ӄh0gW@/t^ \Rɺv/oy>]Hr' Rt.>K
+F"ެ -w5"D@wxL66@wՉ˞6<Nj8PL,]YPq~~0gJu] `fvC݀:/;P
+8nkoKݷVo Ԧ_a{/NoBRkxcn=bup@)ylbck7mza1ftu; "1U9^b'&SU2َJٮ< XuJ(8]]VJGI\ !U1Έ7KTol#גqTmllMXUݪXsji<dd%7j0LIpD-vy%.p ?i5(ٶ\#0ZBĵxL1mY:iiCA51 Qi*K% 4wҡK}kmgE E5LXҪ̤p+Sg~ݹ}SW&t2@ kȵzIڲV V M, ĦWuu(@5Lȵ{[:o|RIM,𻊜r̸B v
+zˇ1uur/b-IZy#C]>CpAf׷Z Ym)پ%iR:_ǂCRkh5qA'7F&1̠6[%/,oUwCasH;
+/;J.HA"eCuV2ғ[B)|P&נe
+7~ ǃ1`‘cޗQ5n`yr<%SYK,Ox7z-E4SUNnx6Gp;}gBP/; P<MMV8ÀC'x@4,.8cBacDz9ȧSF$?&2d!eGAUxހ='Kb\^qz&7z$bx.
+wHBYz׹jqp NmZBzJ6d hs8,KPY{A&C:x \}pm}QQ O<N8Qp($,Hw/o~P,M2a@ٻ'Dq u1
+~'D=h=~ z7Y/!]7\(u ]1Ktm :{@.6`sY#hzpе?\6B}9p mS!J2V0 db?asIM\8=@ƓWi{jgO
+ :s+^fw2/bkY5
+EyMKSkp!$uG^cy^yfk<#\?V;ƃun;Th|'˟tzGZx߹G{HuЯG;Y~G'Os?˿,Nst=W#-[͂d!
+q%OoznH mj|'o ns˾Q˹Nfgnbγ'9Nsn6 ?:~y9Ntt=ʏv,ε!zZXw4 ǏqqߌܯY|8~bE,:0vXð\rd2-z[OIVVlKγVdHa-VVlKΓVWFNz;%Y+ ށI++%<׍q,z6MRw tHP y*&)
+v*ɟq,0U.9Ϯ];"L9#VlKγV$ǰhJz[Kc*sVV(gpk LZqGXU.9ZqaI++%Y+2V60išaV<&Lp
+w9UzĚry
+hVVlKγޯx^\ȊV_%<>by>'D՜ၢ&ds?#V<d\sVV(g$ށI++%v4~xlKγV@Nk LZqGXU.9Z;ށI++%Y+pg4;0išaV<xW^{xxW_zKc=Ó<:Dj9Wt<-z>=$U<(gz瑭\K\ǎfqoYh3ѵFwgjE%q fuZnG=,i|g7u/n 76~qбyu(?bC^|B,?2N\:v4[|37Kѭ{ϴPͲo*{ϴPͲoaFU%3-T~cG,)?V~ [k_?fGg~.. Ps%Ǖt1u/'RjoWM ^"ifðf@&q:zoO`Z+0;eg|{}vE;xg陎^xaV]rMY<OyYtB,; uh_͔-ON{ϴPͲovt\K/?ױY7S~gZLǎfY~7S~wUཥ:CV,)y(̯"0i3;e%L|vU[~th|3WY=#f 8df@\ iܠ | d@D;аf@@аU+;W{x*:wk:v4&V;ϵs;EW|3R)
+Q͔߀ Nf][~th|3wp]zo*?ӱY_͔2IB-?Bg:v4Kq.ѯ2hB-?Bg:v4K<F=z
+t3}i~tdnd2Q hR3 xq t~P?`:v4~ &ANd \K/?ױY7.I٥%%uwIL Kb:v4wIoa k:|L0iS2BrNY-k+:|LϰiSBrXLV|\Y)V8`dk+:|LϰiSBrNYk#z C0aѼ2@MBdim@ﶀ&0-{WFHΙ,G(ztsrbd)rݓRɒ9JFv%fK͖NLZG;LL˞U3}j<i\3' ^+kS.XqN"#(,#눘iSZJ$9
+gX)_Y!93Rk+:|LϰiSBrXQ۬W2
+ZK+VSV8խ|LϰiSBrNY_nﶂV0-{WVH)+b6Ąm2L:v4 |SYz
+uWI8AQDten(V,jb(릌[-_0=c0-{W]Cr ckB&0;oMp=dײ\✲yTz=&n+aӲ|e䜲"/.i++:|LϰiSBrN_|xg,gZK)+,7sm3`ZSV m3`ZSV1),w[ +=++$T+;ʢwE)D\_dS=/9gڹw^2, |3f )({-zeO4b9eEU{%w[ +=++$y19o| w[ +=++$hP^B7໿AczGhL˞ghs
+?dV0=
+eO
+9eǯ֫|LϰiSBrNYhm3`ZSί(S'QpM^9_N8``_'A:F˅۱}!^+G<4 1c=VOނtYڧE2AZH
+K:6˨\qs%%YrVhP;5aS#R^<F?] g&P<E.8Slh4x&-Хp7 RǠ΋Z29x 2A2[+h
+ )[o m-<L(H.YP9u9D EH<נe< N!FrT|ҵVN'Kb7fwNB)Y"R)'1Y34># hԤr
+>?;7upXdkOƁC"~` ԃOew/#$4ZNꂾPoqcѮf
+,!)u5r+v
+Qa
+ K . Pͤ~
+҈*xk[3xx(A4!:&S\讠:1qֆxєj 1
+".4ЏL !$c6Vˬ9P{߸0u_~!wnkouC؍$h>]9dGd;*eG9ƠFw nc x
+F(%1Ɛ냇N?1UkĠc 9*>XcaX0mձ`[O'
+~{ꀯͰw.y(lJ80L|tamp!u:cgyށ1 IƬ-hKK R[t+ƀUj/[㰽{|G!Q)5<1p{7B1@Q
+:qL`u ||P 11Bo^lza1ftu; "1U9^ܯb'&S`]CyQhq1 ½ E:r-]e$B bH!o$l*T1cG%j#1*<#z+%)rU~Kզǖc b#\qxоaH x8E\QмS8G+ކukͨ*
+Fj}UA-!ZZ<&׍ڶ,~S'!oEnÚ
+tpe%TȒVBЍ%5"ˢR&ha,iUfRxЛ3CM\~+:h{jG<e|5ZXDR̤gmYmx&bӫ:gp &ڽjwG)&PhY[p!%f\yJH;tm'`=r{A::oPo1᱙!^LZ!8 u[{[o[-PHGl?>,)|c!Q)58Ϡp|@# ʹ4fPӒ7;!0ܹT ST—I !zP+QIVq˭Z>(P`w@`k2G2>
+Jz]1{(Zݧ1q /L\1嚵wR!mPM3 _ WP|O%p_}OkI)a޾ ā,̎3 8tWDBS0!@F@`px^ZH?Fw|:eDRӾlmb @BYztn\ s8U^5GAi~CIRXIP(±Cdpe)8}x^.**9p(ێޕ83p,< 'eH}0Źe^{@s}ps`
+MHBYz׹jqp NmZz)ل]0duj@p.YCd^
+"+hP1Y\
+<ʻšŹvl խy&=j5p<Y$c|ڤP1}{*]\T!+XݧO?mS]1
+j? өtY t:'WSIc:<Go"{M`SeسY׶ _[÷cKq zg!(ԯu{!85.!3_a.kFA[V>QӼ.
+>},MجySE?h+o緕̛->>+jh{M*~jZrZ{c.V8 /l(fB>Mu?³uGLƎX)SMM$qgh0>WT]1Gޢ_D?GT/_r׋L59ۂV<SUyj2&+I[pnH~.XKR!/JǬq='jio%~]qKEUHz`=B$qLw4EMݫ pm
+endstream
+endobj
+1667 0 obj <<
+/Type /Page
+/Contents 1668 0 R
+/Resources 1666 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1636 0 R
+>> endobj
+1669 0 obj <<
+/D [1667 0 R /XYZ 124.802 740.998 null]
+>> endobj
+346 0 obj <<
+/D [1667 0 R /XYZ 124.802 320.03 null]
+>> endobj
+350 0 obj <<
+/D [1667 0 R /XYZ 124.802 240.823 null]
+>> endobj
+1670 0 obj <<
+/D [1667 0 R /XYZ 124.802 145.341 null]
+>> endobj
+1666 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F13 624 0 R /F63 1313 0 R /F11 497 0 R /F42 396 0 R /F50 400 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1675 0 obj <<
+/Length 1386
+/Filter /FlateDecode
+>>
+stream
+xڽWK6 m=@%?[E $9nTkU[G}ISl=Y(>~}Λ u{q:u2<v{'1˒I<ssrɹ"w1w"E3"a"g~/4?+fJ[Tr"AQ93d3
+
+˚g[8 ^-=Ϙ, &Kb/cfM;;ђ,Dh}wŨ8f!&REvGpGFYʲu'ٮ*YRmźޕCV{@0)#_~K
+%srm̫
+
+UKz sS4~֐L=X:])ʰ,y
+Ar447A覔9ݖYt )A6w)R NJBĐ=Q PTX[!ZQArfU \e΂p,{x癤$4L{ s[*&HR8>8:v0/ܢLC9z@ /stR(0es #at, ]$Ѭ:( ̝V!r%z`!юA庖xH'K6M68np ?C&4u?ȞbP}=^ ̅ZxMAe@}@D^`<mIF׍ydRAz]c:>lkc+)zCմ$ޏ;-٥%XL-'b~}8z0`G#E= )XThFhH{,;{W Km=zDnV ARWH͢sdžN M|;Zx%ّ&>sVOJ=(^ hFv u!o/_šldDKPJ5v K"2Zd
+endstream
+endobj
+1674 0 obj <<
+/Type /Page
+/Contents 1675 0 R
+/Resources 1673 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 1636 0 R
+/Annots [ 1671 0 R 1672 0 R 1686 0 R ]
+>> endobj
+1671 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 0]
+/Rect [406.978 661.297 413.952 669.71]
+/Subtype /Link
+/A << /S /GoTo /D (cite.tikz) >>
+>> endobj
+1672 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 1]
+/Rect [299.646 228.545 469.509 240.5]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=pgf)>>
+>> endobj
+1686 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[0 1 1]
+/Rect [139.303 217.516 332.578 227.678]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=pgf)>>
+>> endobj
+1676 0 obj <<
+/D [1674 0 R /XYZ 124.802 740.998 null]
+>> endobj
+1677 0 obj <<
+/D [1674 0 R /XYZ 124.802 716.092 null]
+>> endobj
+1678 0 obj <<
+/D [1674 0 R /XYZ 124.802 642.423 null]
+>> endobj
+1679 0 obj <<
+/D [1674 0 R /XYZ 124.802 644.361 null]
+>> endobj
+354 0 obj <<
+/D [1674 0 R /XYZ 124.802 598.595 null]
+>> endobj
+1680 0 obj <<
+/D [1674 0 R /XYZ 124.802 432.758 null]
+>> endobj
+1681 0 obj <<
+/D [1674 0 R /XYZ 124.802 434.695 null]
+>> endobj
+358 0 obj <<
+/D [1674 0 R /XYZ 124.802 365.019 null]
+>> endobj
+1682 0 obj <<
+/D [1674 0 R /XYZ 124.802 326.705 null]
+>> endobj
+1683 0 obj <<
+/D [1674 0 R /XYZ 124.802 328.642 null]
+>> endobj
+1684 0 obj <<
+/D [1674 0 R /XYZ 124.802 316.687 null]
+>> endobj
+1685 0 obj <<
+/D [1674 0 R /XYZ 124.802 243.987 null]
+>> endobj
+559 0 obj <<
+/D [1674 0 R /XYZ 124.802 247.972 null]
+>> endobj
+1673 0 obj <<
+/Font << /F8 399 0 R /F7 523 0 R /F52 480 0 R /F50 400 0 R /F42 396 0 R /F14 452 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1687 0 obj
+[1444.5]
+endobj
+1688 0 obj
+[666.2 947.3 784.1 748.3 631.1 775.5 745.3 602.2 573.9 665 570.8 924.4 812.6 568.1 670.2 380.8 380.8 380.8 979.2 979.2 410.9 514 416.3 421.4 508.8]
+endobj
+1689 0 obj
+[829.2 741.7 712.5 851.4 813.9 405.6 566.7 843.1 683.3 988.9 813.9 844.4 741.7 844.4 800 611.1 786.1 813.9 813.9 1105.5 813.9 813.9 669.4 319.4 552.8 319.4 552.8 319.4 319.4 613.3 580 591.1 624.4 557.8 535.6 641.1 613.3 302.2 424.4 635.6 513.3 746.7 613.3 635.6]
+endobj
+1690 0 obj
+[531.3 826.4 531.3 559.7 795.8 801.4 757.3 871.7 778.7 672.4 827.9 872.8 460.7 580.4 896 722.6 1020.4 843.3 806.2 673.6 835.7 800.2 646.2 618.6 718.8 618.8 1002.4 873.9 615.8 720 413.2 413.2 413.2 1062.5 1062.5 434 564.4 454.5 460.2 546.7 492.9 510.4 505.6 612.3 361.7 429.7 553.2 317.1 939.8 644.7 513.5 534.8 474.4 479.5 491.3 383.7 615.2 517.4 762.5 598.1]
+endobj
+1691 0 obj
+[619.8 590.3 590.3 885.4 885.4 295.1 324.7 531.3 531.3 531.3 531.3 531.3 795.8 472.2 531.3 767.4 826.4 531.3 958.7 1076.8 826.4 295.1 295.1 531.3 885.4 531.3 885.4 826.4 295.1 413.2 413.2 531.3 826.4 295.1 354.2 295.1 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 295.1 295.1 295.1 826.4 501.7 501.7 826.4 795.8 752.1 767.4 811.1 722.6 693.1 833.5 795.8 382.6 545.5 825.4 663.6 972.9 795.8 826.4 722.6 826.4 781.6 590.3 767.4 795.8 795.8 1091 795.8 795.8 649.3 295.1 531.3 295.1 531.3 295.1 295.1 531.3 590.3 472.2 590.3 472.2 324.7 531.3 590.3 295.1 324.7 560.8 295.1 885.4 590.3 531.3 590.3 560.8 414.1 419.1 413.2 590.3 560.8 767.4 560.8 560.8]
+endobj
+1692 0 obj
+[611.1 611.1 611.1 611.1 611.1 611.1 611.1 611.1 611.1 351.8 351.8 351.8 935.2 578.7 578.7 935.2 896.3 850.9 870.4 915.7 818.5 786.1 941.7 896.3 442.6 624.1 928.7 753.7 1090.7 896.3 935.2 818.5 935.2 883.3 675.9 870.4 896.3 896.3 1220.4 896.3 896.3 740.7 351.8 611.1 351.8 611.1 351.8 351.8 611.1 675.9 546.3 675.9 546.3 384.3 611.1 675.9 351.8 384.3 643.5 351.8 1000 675.9 611.1 675.9 643.5 481.5 488 481.5 675.9 643.5 870.4 643.5]
+endobj
+1693 0 obj
+[575]
+endobj
+1694 0 obj
+[666.7]
+endobj
+1695 0 obj
+[791.7 730.6]
+endobj
+1696 0 obj
+[892.9]
+endobj
+1698 0 obj
+[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 0 0 600 600 600 600 600 600 600]
+endobj
+1699 0 obj
+[569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 323.4 323.4 323.4 877 538.7 538.7 877 843.3 798.6 815.5 860.1 767.9 737.1 883.9 843.3 412.7 583.3 874 706.4 1027.8 843.3 877 767.9 877 829.4 631 815.5 843.3 843.3 1150.8 843.3 843.3 692.5 323.4 569.5 323.4 569.5 323.4 323.4 569.5 631 507.9 631 507.9 354.2 569.5 631 323.4 354.2 600.2 323.4 938.5 631 569.5 631 600.2 446.4 452.6 446.4 631 600.2 815.5 600.2]
+endobj
+1700 0 obj
+[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
+endobj
+1701 0 obj
+[602.6 494 437.5 570 517 571.4 437.2 540.3 595.8 625.7 651.4 622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 750 758.5 714.7 827.9 738.2 643.1 786.3 831.3 439.6 554.5 849.3 680.6 970.1 803.5 762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 298.4 878 600.2 484.7 503.1 446.4 451.2 468.8 361.1 572.5 484.7 715.9 571.5 490.3]
+endobj
+1702 0 obj
+[357.8 306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 460 664.4 463.9 485.6 408.9]
+endobj
+1703 0 obj
+[339.3 339.3 892.9 585.3 892.9 585.3 610.1 859.1 863.2 819.4 934.1 838.7 724.5 889.4 935.6 506.3 632 959.9 783.7 1089.4 904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 530.4 539.2 431.6 675.4 571.4 826.4 647.8 579.4]
+endobj
+1704 0 obj
+[777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 1000 777.8 777.8 1000 1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 500 500 611.1 500]
+endobj
+1705 0 obj
+[638.9]
+endobj
+1706 0 obj
+[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 0 0 600 600 600 600 600 600 600 600 600 600 600 0 0 0 0 0 0 600 600 600 600 600 600]
+endobj
+1707 0 obj
+[583.3 555.6 555.6 833.3 833.3 277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 277.8 277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500]
+endobj
+1708 0 obj
+[670.8 638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 575 1041.7 1169.4 894.4 319.4 350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 511.1]
+endobj
+1709 0 obj
+[625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 812.5 875 562.5 1018.5 1143.5 875 312.5 342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 875 531.2 531.2 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 593.7 500 562.5]
+endobj
+1710 0 obj
+[472.2]
+endobj
+1711 0 obj
+[892.9 840.9 854.6 906.6 776.5 743.7 929.9 924.4 446.3 610.8 925.8 710.8 1121.6 924.4 888.9 808 888.9 886.7 657.4 823.1 908.6 892.9 1221.6 892.9 892.9 723.1 328.7 617.6 328.7 591.7 328.7 328.7 575.2 657.4 525.9 657.4 543 361.6 591.7 657.4 328.7 361.6 624.5 328.7 986.1 657.4 591.7 657.4 624.5 488.1 466.8 460.2]
+endobj
+1712 0 obj
+[826.4 295.1 826.4 531.3]
+endobj
+1713 0 obj
+[272 326.4 272 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8 435.2 489.6 979.2 489.6 489.6 489.6]
+endobj
+1714 0 obj
+[285.5 399.7 399.7 513.9 799.4 285.5 342.6 285.5 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 285.5 285.5 285.5 799.4 485.3 485.3 799.4 770.7 727.9 742.3 785 699.4 670.8 806.5 770.7 371 528.1 799.2 642.3 942 770.7 799.4 699.4 799.4 756.5 571 742.3 770.7 770.7 1056.2 770.7 770.7 628.1 285.5 513.9 285.5 513.9 285.5 285.5 513.9 571 456.8 571 457.2 314 513.9 571 285.5 314 542.4 285.5 856.5 571 513.9 571 542.4 402 405.4 399.7 571 542.4 742.3 542.4 542.4 456.8 513.9]
+endobj
+1715 0 obj
+[850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 510.9]
+endobj
+1716 0 obj <<
+/Length1 757
+/Length2 1014
+/Length3 0
+/Length 1546
+/Filter /FlateDecode
+>>
+stream
+xڭiTSGǡHԠ.(V5AHjț/A4a$.QQ\@zDqKHREŴX+E,S3a *(!bmvlWl;J{I@@]˵~w
+0(!pL (2 $Q}1,P *Ũo )d9
+
+ե ?y~nԪSTu@*u&;}o.6 G5Enr犬ny2%7ԃnne?b%S1ާC~-6.ʌ ֿG-T;ٰaߢ;+#:K9ioXK2tw/yi橭}<u>7~^8*^kTRDf|R)_U/0!;33DsANp#Kd虨I/-K)ʍiyS'>;ZYskyd8-Ω/([yVzYf6+di[P|h:(Z7Jo,̽Y =7QDz˺QE34EDzyl3QbmݳSɘsͥzјi3Bi^Βim$6"f~uBҳ<rIܽڸ kk8`jn?b,Ǎ7G;217&+T"Aڱ`ܼjwZ9+ioCqcm}'`K }m _Swקl9^Jv◦LM*И`bHM26ȄڮEtvr@A&G<ю2gӐG5.߿SX|98YEWt3ڕL^u)!(G膉4kw׬7í/>k[s&/
+endstream
+endobj
+1717 0 obj <<
+/Type /FontDescriptor
+/FontName /EGUQXT+CMBSY10
+/Flags 4
+/FontBBox [-27 -940 1332 825]
+/Ascent 750
+/CapHeight 686
+/Descent -194
+/ItalicAngle -14
+/StemV 85
+/XHeight 444
+/CharSet (/backslash)
+/FontFile 1716 0 R
+>> endobj
+1718 0 obj <<
+/Length1 1565
+/Length2 10194
+/Length3 0
+/Length 11093
+/Filter /FlateDecode
+>>
+stream
+xڭeT\ϖ! @ܽqwwhq`kNp CHзdfԳwU &9,wa`
+
+ alBXv9rT{=8:Og`# ' s
+uI柆T[-uw[R+CB#sO#,U[ɗ(mPp_`TpZ
+2 p~&Fl{VĹ z ?Im # ξ`,>evus!p#`]*)*p3f㇕]Q}|c-SuwoKڧC^гܬZy{Y^gUHN;GqsnMA]‚\ޚ
+\ǻGj*0˵F3a\Ŧ[vV*3>Н?2#s/~#K8wi"4,w܇V:lռ2U@Q|RSⲟ)3ϏeXUrCZ(qxW0çlk͇;d"VȈdzʋ7RE]ID\&`լZރL;b
+g0qFk2i͆Ke&'|hFu}~-$ Wn)E`
+7./݅}&=
+BKgݼa=.-]آ-@ _OhDg^zƍgUIk )?WYk#_͡ƣhB$&<¢Jk̊Ùla/'bLIҕNeŠmplkMNkݏC^rx~a"Rs]:N`یEDr@\cG擫a!>^Ԡ P\ ra=RH2O 哏b{b*d7&F::lw %;[FooЩKZTvñg]jyO_>8&VuwrkAN;$&&1`#)iuY
+wm+
+uYDyU,
+J‘D\}]m= J(AE9oǾU $Je7_v6%x+TVdq&iyp7 $jK2$c^0  !]Ԍ"_941t3-!l̽ۧ_ pZSOIN{u95.6C\)b>d0O (??dN6+6^fΤ[IڻpQ޻œ)SheL$|jnHntBnc
+<ǫL9/8tDU ٤-Eu4AS!g_B88Ct1 qP #'9v őYChH&T"<Ⱦ%P$;pQ/{TomrNއtI2Fxu=Uؖ6\TB}g>p[~߃&Zs<tGlb0ۺ=0`^/Ks^##L뿇cg pjTOGϚI^`1WU\%S5<SSн_eHhyv^%Ѳ+^qP^ϲ_Cb]/-p1-Z=.f?
+ٓ Y-Gc.S-_ѝ J!NJėlW$qB3[2/+,'yK# -.h:v:-۪{̽}b
+dO,3b (+㹣R C\أՕF3Tە^WD⇵eBlyR2 ԊbS$Ne2Z\֡n;|6U1zPVwħ˂ :j@A/IFػݜn<?}9*WƸ3*# zGJj օBqQA=">&wfOyJ&;9 NS=ޔV6qq53"uYY_TLmy%C&,KqK+7TSZL}
+KYznOtd^ SVa8jj FRW! g6]Gk{e̕9>õH{Ƌʌz}Tn>k^53s_cwf!=6RԐtZ.>VB9gɭgE
+b*SUBb&Owu뿯?P}0fגKc2$ vE>SxE`V^Af>=-=u% 8bَ+ٿ$UMRadGs&nVy+&^ԅ*]2 `Nr!>*&|
+3^kL^FLqa u u
+2%99Qg?)Wq Yũ q9 y;#q5P=`R]zV=&$/hnIF7<M>-<3?77rk/"
+paxrmάuިh2e]
+U1w= b;H%ɎCPs/neW`k{\riJ̦uܲm=CKBe~Ȕ S
+TU, z:L0[点A}ƍ9׃X3=ۄLPͻ,ؙ
+bFvyjȉAkzAX>24(&@Σuȇ4%.ۣVblvHR'fv)hi>E7<Kbp5rqׄ}I>s]\
+qM" %nι}\egY@ xwN *t{(fBvZq\M0٨5iC(";maX_ڭڇz=!fCso mů$'v^vjȃ{tOfwZEd;6sYx0e
+RYX$ ֙x4f+o|xϣNTN\`~ϵ8~Cje<prQ7d%v|i^.o*|-T)iF#I!^YW)WhRgi sL XAl?&oE 33E,2MB :8@WN5usU_|˘${@1tRCԢJak[
+2G::StԅPfK296Fy4
+B)G &o2dU0R
+Q#* }PΟ8NR7@3oi
+͗ä\Pσ۷ ί*w&TpƗ̍uT=էxTD uFmU<q~V[Ԁϒ:7L+><_zΚ Z%B,C
+gMr!qzJqRmD_1[$:1zq*:ʚFE6G>(I\=<GWRLVW_CU-Mࢉ.HգjիhQD7gDL^ҏU|
+N0AM {r w^,NYmdx2"F}xNxʵdk' װkgbU8v /j$ڇX$-}Ul|iSk"uX4LLEB Mnc*x;{M26|Fyn--ˏ_}yԺq
+jIoPΦB$_$ezӁa{37>*Y]+IG{3z3Sys(
+-[fۛ,qu:_HY5|Bj/$L8qZK Xc7#q襚(S6h߀_u\b<ڑ2O!UJO6fHT4rhom bT$
+#NP;_z<XhYabLL;p
+ u]{7\x >!,h+1yI=J:uA]Eh\k?zy>{9.JԼ ߟ͵cLTv?mϬ&< GVW/Q-1g}xCxׂߘt ~DzO(lӦ+bG^4 jlpWC8 g[]o^ܥ}ȋBBpU[/`*m vn#{Sw",M9Upvv'ogjNjF *zSvŸxLW}a(7r-6YfyaHQr;NqAmaCo<s뭩6HhZE
+`2 ֓x }ٲXVyʧGmU.H}a:E,Yz~qX/E0YR"W.G3pÄCcm9L4 t#u!a A
+CB 5&]mz^:Ѕ&vBG"f8&@W,夰eq2ǚ#\'Db{uCnw[mj(2}òx/4RN"T}dj  hl ݯ1Zb25`-lTMރErDvF6wlY\n k삨j{4^4tgd2Thg˿ h? G~|nSyHt0Ş
+Yy_]b/WfR0qYti*3 Wj UWQ ~&X8= ~ĝ06ܸoÜDv#
+;FAt,2h1SD=`no4go(;ì Jrܼc,}^PAn>ۀm ӣ'jv\ <V8nW6 <8"jS|XLRA]Xo1łxw)(WPɱ;+{dIe
+v@Jx}b IT)xEəx>C0MtXs2hN[e t1̦g^pBY}$U\!P{V6Yc(h5"C\UYG,2?EQJ,dzӨ}f2ݙtCmqeFgP:ȼ$=8 _ݚ@z4f򶱣x@9IILzԒΡ!GqB~UBSYt2t`'L P:7ꎪEFt6;47oq#Vk_D[}J
+R%Sl#Fn c!VWhv:Gg˺(kzeJo%,WwcaPxMP[2Zѷ27 {cD:T>+HVd/{eJ'V$hSZ}^S)ȕfY][ N0?$, f>E4Esi!焯M?1ʀv+&U涥d_4w3_,3Ls֡\.~{
+QOevk[ ,%dk[ɚu*
+rb37!46~13D!v`ɝsrW|"i
+y>5ml|Œ?莲+}SBK7#کFL7@I܈$rO1aK5`
+>ܷQx_VS6LoݖﶲyL%^Hz6V~
+endstream
+endobj
+1719 0 obj <<
+/Type /FontDescriptor
+/FontName /DRJRAU+CMBX10
+/Flags 4
+/FontBBox [-301 -250 1164 946]
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/ItalicAngle 0
+/StemV 114
+/XHeight 444
+/CharSet (/A/C/D/E/H/I/L/M/P/R/S/U/a/c/colon/comma/d/e/eight/f/ff/fi/five/four/g/h/i/k/l/m/n/nine/o/one/p/parenleft/parenright/period/quoteright/r/s/seven/six/slash/t/three/two/u/w/x/y/z/zero)
+/FontFile 1718 0 R
+>> endobj
+1720 0 obj <<
+/Length1 1594
+/Length2 9271
+/Length3 0
+/Length 10163
+/Filter /FlateDecode
+>>
+stream
+xڭUX͚q &kpwm,hNp]{pw 
+02u,PXQ$cgnoNQ
+f@ Xٙ wbV;{gH
+
+VcY8gغVRTuR }˛WCX {]7.1&kY@]9wzU]+Us9:H_"dyЭ": )ԡji;,t H,~7{jňiQi N03rȅ,.HT69bYKU`Q*Q2l4.%/ p X9k`]!K`G~*
+JAbq."i9z]Q&oBQ'Q)S"ֻnKlJ?e+d4PU$re*xѻv!.ƥib!WȨx9E*2PPkܗr wi~
+Bwhm
+-9hҶ՝.>ݲ~iƏo"{AKVP:F#M"@gnsq
+\eo(f3Ey*p1ŒZQ9 }+EbSp凿fcʭ􉖼8mxLFZ8@"P;*_XS;+Ue#!a"eLE/bfLZ)E4M~6xvY cyM]5dל]M𻀜_'R}PR0W8('^@$]vn.@C*~QL't2䔗1#RY<IL*1Lx)Xٽ _+]rIX},Em0LJLLj/dco5]x4*+ܚ12ϩ? F
+ #{+<jV?d_&>!1 i׊2ox>7jGrΜFFxUtX͐qg( 3wT7cr7(9Y\#dy~po:/O]( 3S}Vɋ)zi%X&Fǯ,oAl}4Jrә+hʵa:GTNbaUҜ d!ֲ#2̯-\bZ6dXИ3ct:Jk Ijtp*z>PkaS`1y&"vKUb[.R<2kBܸ>ه'iu4X؏1nW>8y{ؼ-6ȍ`
+}mJNeRH(]0U>`xX!Qek-<3[0
+y%W4 X)G7|V8ZH-d]eBm ud\!Ȋ1H4MJ]%MZp~mjg#V:ڨ\L;G>ޏwCӒGlDEfO’,ف=r>s'`0=/cT4=IP_:U},YlGlπ*&xOΘ3ÇC {DxvhM3t;B~4:6RlDZAqNw"_ A;'[/jL\b=r{c?ik
+PDf,0<Q[ݝ)sr͎ė80E7T=NЃ
+~?YA~k*ɓBRbdr?5xwtLڢHs[A?  uQA6tQD?K(|j"MqGۻ $j6DWB%Qǽ.V^lz ]>y˺ ;,{"~,Zb5X/
+FC
+ 旹 8}fK]9AAҔ)O7<_c:tTwn*'ͼFȩ8ʅa-C"m!`o94Ir<??I6B߇L;Yڮ8
+AF㝨I3`B9Sjlꤢ`A 9֭z
+2g?y=X
+&!Zc?Zj~SA7vZ]z.]. T q!n
+q҇\Zo2@[ 8ns͒X{UQڈ`F]3 ^:\7FgQ2Ř)5DW<,<NuXkڠMz#"3 Z"lFLC`AюHpc^Rr*=Il6w̅<|đ* ԃ;+-at_7?ib!кL[} b gɴ(tQ [M,^ndK/)[)`Hj>J>`)Fu{Q6ØZ;o*|_deQ$\*W{輂}<!(/$LTbɘͰHAN#Cp6›!9Hն"^m椹Mp9 NGA1.!ҖjA? _,Z6h2!=pj,;%/nl2$ZSPaP(D>972'_'NjD؞t{kNݡAj[Ml_VZțg]K8SjV
+e;`<)#ùM.vtMi 2mS6{l`KĖO ^}X$4t:=V]os ZM uIʬm~64ˤ
+jMga^1GN4[29Jiijk+_D
+R; `V{륶}QWpj RK`^oدv!BJ_KvGAܣ:tgF3W#42}ScoUi$$ZR Fn.Ƭ'+쳺 Krsoˆ>C=l n=Ujh}]T=W"Y.`1[Ey|-57L9i26_]8ת"EU8v8—n;1i+nA#Uؘ-V%(:cDRag*a8Ӌz<'3ZsT)uBF`S5>P+V>>
+8C³j_?l s\2{NE ÚL'*}Hi_:ŽoЂ߮mDMdeߴt]~w{Nm€i菪} }rmNܤ
+` Ԋ׊a}S>W
+0qRĸk &`a7HuͲ$2t$,iS+0{v3s8͙[LFC@P2#v7?QH(.~w 4| | QVyѣT@A!Ѯ0-P m*+pakNo6 6TS1f.kȄW0 9A;zthan\eвMqJE|;6
+/7p O^N/5Y^=*;|QĦy>ܽ&x; _#-9gz;?y<{W+ucK}̾;߶yFL2[w#jS#3mnQQ\ j|J9͏)D* sHi<u-.UD7^gĥ`瞨J=<)'T)egˮd0桳:'t- NUSݺ6qt\iE7Ѳ!NG9%+ʡsR9Qi$t=x^09ghNa{ǵG$k "יygP\RnN LThS]z^u%Ŏy2%/CՒ+zVd[4ImY_uSThrD),3r=1x}gK7BKУ ]xCytGo/TUdԩ#L4:y!HQCd庴^B|q%.뛣YiwT+hnz_(܆ `wHa
+ߕ՘:ծgu3o>lL`+)e3uY4:>OԸDDG^kAf
+ AEsǻB[R|X
+
+endstream
+endobj
+1721 0 obj <<
+/Type /FontDescriptor
+/FontName /PRMCVC+CMBX12
+/Flags 4
+/FontBBox [-53 -251 1139 750]
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/ItalicAngle 0
+/StemV 109
+/XHeight 444
+/CharSet (/A/B/C/D/E/F/G/H/I/L/M/P/R/S/T/U/V/a/b/c/d/e/eight/endash/f/fi/five/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/period/q/r/s/seven/six/slash/t/three/two/u/v/w/x/y/z/zero)
+/FontFile 1720 0 R
+>> endobj
+1722 0 obj <<
+/Length1 821
+/Length2 1985
+/Length3 0
+/Length 2549
+/Filter /FlateDecode
+>>
+stream
+xڭRy8{jl^dcvd2(dc F0%K&ei&KY:DMNFu~w?u? Xߝ5"`
+T047* 99C2MőT6
+
+q*AC&DN%SX
+Gxh<[Jm
+5e4!Cd,{s|86
+3~2bjzgħjy+Q@:`vyY93:"S>"Yycw
+{(T}rȯoKw7@/n<Վq>稯 7#>ů6*
+5}eNDG\)ڕ򼼴J׷TjѷO h8B|*7fq9q/a6~+a֯Z:N0Dqz3(CKUM RE|F^g*,ᤄwƞD)?Q94'R:*7Gj~c)ז"Ook{34ЬgOJ
+4l8!;?"jkA_n)Ex1q
+ejo<聍TiG6 0z3yd
+kqdP6ŏyIK9l+QKZGj(O.wݣľ!BQ*ԍ$ \;Q퇭/܅uw%zDN܏v 8+_'\q $YZ#i"c@mQk8sUIe1n]iITHcV*޳V!:[<r訍v!]bo:GU
+endstream
+endobj
+1723 0 obj <<
+/Type /FontDescriptor
+/FontName /EUWOLL+CMBX9
+/Flags 4
+/FontBBox [-58 -250 1195 750]
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/ItalicAngle 0
+/StemV 117
+/XHeight 444
+/CharSet (/A/a/b/c/r/s/t)
+/FontFile 1722 0 R
+>> endobj
+1724 0 obj <<
+/Length1 771
+/Length2 1312
+/Length3 0
+/Length 1849
+/Filter /FlateDecode
+>>
+stream
+xڭR{<O(U&m3.9se)clC-c7f`$#eY-HسrQrI"#D亶rbCc=<yy82 ]!@xR "DKt1a
+B0a`=fr#nb: <?"WfRb<"έI |,?t-Ksb]awpHȕ
+XCN5/:;#Xl vvΆ?<FP kfq°fcrwէKN\b!2̽^ʭ\G䐣N 6khrK,jrXOBʀC,
+<UgA[ Z/JX<=7uO}>iɰ9oQ2,{l8}ar,j7<i|\3>C/Ͽ-$uQ32t]t鲋/M
+cGR5ADj^?hAY7D{9i£ߌ1QE Uԙ,i3ش[ncOxo]D]ӿDbKoMXJKVjX.;1PgQ3D&OQfJ_ٙ1.R^fQ!P#-i $1+Zk14nr;lSj9#=woU?Q۷ ӽ?$DujJy^ G6;zM#v -E2m=ҼJu,2|
+endstream
+endobj
+1725 0 obj <<
+/Type /FontDescriptor
+/FontName /YZWRRW+CMCSC10
+/Flags 4
+/FontBBox [14 -250 1077 750]
+/Ascent 514
+/CapHeight 683
+/Descent 0
+/ItalicAngle 0
+/StemV 72
+/XHeight 431
+/CharSet (/D/f/o)
+/FontFile 1724 0 R
+>> endobj
+1726 0 obj <<
+/Length1 757
+/Length2 1108
+/Length3 0
+/Length 1645
+/Filter /FlateDecode
+>>
+stream
+xڭiTWǥE"1bYªP)R[CfBF K
+ZDPR*UTRQTVq iT~/s{eX-`4;;9
+A$C`\fB!:!$FA$)
+L$Na  XΔFB`Iͬ\!cB8K!RCa
+̈́ FFk0.eNc?1I4BH|60Ap%D"r4p L4QWW`/M_HBlJAT[:ݜ 'pqo((>bg|S`闛oMSt_EWW|CO:ª1㵥&%1nJ d؞P H4PGYxO41I'Z%e\è>}xrVkl҉ﲜ]bX 9;S-# \F&٨hjf}XSG
+_O|Rqd~ɣ6̌>VЖuڬF7fX4TsP{=?h#.˞gO;|Zz:~?z1əh}.:/G2'7v;ydt?Q?[
+2g(_oj|~gu#ƵVY{,>^KkB[]C 6t1IGU<-2湛Z4 5825GPWǓ oε.Z+z*\wDǭ>xlmф(*^g?('A6^ũTᑷdtx1s۹W#5a+lMCF WFf3 rܕ姱ŵo )'oOιV&7xZ1"_ׯ]Z>zH]6g~ScwtMc.nB*1omh+63aר&_<0-h.{9+j٨109dLlTi~uqxg*bqtO&
+endstream
+endobj
+1727 0 obj <<
+/Type /FontDescriptor
+/FontName /YQJSDJ+CMEX10
+/Flags 4
+/FontBBox [-24 -2960 1454 772]
+/Ascent 40
+/CapHeight 0
+/Descent -600
+/ItalicAngle 0
+/StemV 47
+/XHeight 431
+/CharSet (/summationdisplay)
+/FontFile 1726 0 R
+>> endobj
+1728 0 obj <<
+/Length1 1015
+/Length2 4424
+/Length3 0
+/Length 5090
+/Filter /FlateDecode
+>>
+stream
+xڭy<-%Ya0c 
+YB,Y"%{H}(;w-w\su:| Pu$-("$" Z"
+xU
+ܡ(!h;.#`PF^PQTDp9{3 A
+K HD:"p?D
+CAqZ?d37q+N?w E`#g}ā0oz8A "Büa 8A^v(Jp k
+{m"3I(QL t!Q I
+E2;p{bHǮ)5o򆊉S *'6+GUʺCN
++J)9:I3(vǩirҌn9YduSg<]`[ؚ?\wED*a#ʛ $Zg5&A͖?k =7o\L0 MDg ʟ]8aHE&3eeI%ex
+u:M/|2 ׇB&k2=`*ΡqxgV?hqW@E.VҸU ʿM2;>|vet2e![|xFt[@\J4ga̷Ѣ''DIWdSTu?RXt bsvDڨX5 V(b]YG_PɮpYJjphį4HJf l]Q(D#-Vh݄?@zNߐtiUw/=OIa[7~2גe*~f6)u:er^}~..۾m4Ui^SK;X|{#ڤo+!g|1Ph:? .xk{L-,v|AC?97Z]b8uw&yB Cy#ECAQj'
+w=t_ŒXa]ĸ.?PE39DOnN|mca9sWV؝YWgVX< U="4V^ 7ϾmDzppIl.b'vy[͗u{bKQ]=rFGoXP݁tJMM2-륗ĦP^ax b
+s,0n\ۊ)BVY'?6RҤSy\K,+}ե3pfb% 1@*ъ`+A;L<;KTf0U^ߚDˡE܋$V(2ki̎ #Cxr/-z K3PZH}9Gfl/W:~  <2t4uU(Q"%;n,>Iiݱ.6뭐K앳inrIY왥չHY?sm!з83!`q6ֺi2kIWzҷdYvOBY&gӤHlF.sn9|[ ٵb,92+RfgbkjA/^MDGVi
+~gгyzgRq|\ƃo Sc4b5ɳCG4ߺ)Ӕw ʆ{n)3ݾR= XqsaA)ӓ+Z;_/ߑlL1W88Lթ>.Yyi-X ǃgrv:蚗-瘫-g%ο~E9x#UY(w3/exN Win޵gWOn,b Gw✏{7=kn&ֆܾ.Tg:K(8~c#\iƗvH2\C yv>牷yk@ *Zυ8ˢJ%OPԄ!AG-t#at-Y4 &\{e-+ ?e˿tײ/Tɪ~PT'\mvhT#CURTnzz_iNRߺue"m?7O83-vDgFbr^1?ώJ"[_7J8$'Ậ0Lvx wߐBClLhCfbƗϣlbXu +)=&U:,L_dkj.$*0ؚ8pwohbBǢ񘊮 uIp5Ufr<aYzEX1-UԳ`
+]~ø+UԻLlɋ :;&ɰCL>Y{M[ԅFgޏfg^vOS%9ˆEm-T9䒪+O'UQGAEc,Gةvwc;#Tk1$PDQ`H
+b鵧m^6U&j*zy0+jEr9$嗆Ċ82qElwEw7뺳<p<
+ځ GG=j /|]@,/HAK,P-0!و=w\%AXtk7ENlg̠lͯRfG.նLe;˝9FSB͙vۗ2Fs:sRs hL;fm(9 @Yc=sD-VFxmQ5Ul{ݻfN[ z.s,QH=I٭ ^2K^9YZ&3ۧ̂a 5'PQy&D,'wD ]^mh`<s8(\4{2@=Ks=8ҟ |
+JFwN;|Ơh-N<.M%ɬXÌm^Vt=B| .]7 |ƴ;QP w1(쬶-N|1kɿMTfsw}Wxk(BF^얀+M@P^H@h,c}0/wNu6_@#nKĚ>0&TpVU^j,lEp0-oY u4n:a$~yB<6mrC MzAw"/;yΈr;s..,wToOoPٯm1If
+I% i{剄e^XGfE7J}HFP{s(2$vV9rp4ZG>Q1"[ y}&l")6VDqd>*}֓qcSC^W5!?3֮<h1'Ԓ~N5Rbd^lK Ұ!ܬ DŸ<Qn|
+ h]ocH ν%n>}t<nh>N=Z625S9nrUɹO?</ ]={ im;IN}KC~Lz%ӏ ueKb>:nP` `[2aJ lZJo⚴*7HےU$(ItIfq܊~5TP)a-g`@Dr S=M5ɚ&K0_ ^>i bsBzӊ(6+6/*KWnyìb
+;YEoOAQ~Or%ev=
+eqyTwg|+)XV5޾UCg9B!]^U W_Ɩhc5P}I୨KN%jRڱKyqױ+֪DcG;;['\Kayy7.Mt; T=DA c5sg`3J /Աy=EKȫFX&r9)K{Z OGf,l>b)g#>7vw>o Y>il]
+endstream
+endobj
+1729 0 obj <<
+/Type /FontDescriptor
+/FontName /IAJMMH+CMMI10
+/Flags 4
+/FontBBox [-32 -250 1048 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 72
+/XHeight 431
+/CharSet (/L/T/comma/d/e/h/i/k/m/mu/n/period/q/s/sigma/slash/x/y)
+/FontFile 1728 0 R
+>> endobj
+1730 0 obj <<
+/Length1 763
+/Length2 1351
+/Length3 0
+/Length 1888
+/Filter /FlateDecode
+>>
+stream
+xڭ{<iǥ5[~Td̡3+(cY3hfh&Z!&qI)$c;,+!jBޡ<u޿˛c"!'' TJ Ga0|.#]QEq
+ G
+(m( #L(B NQ~٩\#Kp#x"LR
+xB>B@0d @b^ъH&yLH gC+@L,GR,
+pOGD1x%#D @!cGȈ!pQ9^BbzUKv/S1:x9&|w+GN_h[$Z/gv14\h]lc4dr{VMný#Omz4Yc@)4?{AW4s)Th~IӴ;Ɯ"lڐwk><,{. v89/;}]{vAφl{-)D.)&N~멣rR^G6qY[xcjwy,kV=6\h>GO˨4ny8u-/(Kn:5&j]>{)y!W$-=N U8:L׿+:{O]|dIVC *P T!ժ A1ɇ+Dt/831:b lYh|eSu7vʦaf3 !imt[(Aɫ !wLߘPn_%S -c%~6j>8Tf@jlnŞ\&21ʇC [$HFI榧׏qզF5{M\o(gL_r>4= #aJ썇,ٵwjVtL՚zg+g5F0/ߍݑ#u3/?<,dUw',R *hYs'U}XC{xܽq<T2b:gz<rMLYӸo/ K页Τf^Ց ғ~;Gt3z gwyw^CMqwRqv%j<FX 2T;'MbM: .WZh0R\q?:~psc->9mzX_
+>NyXPX~v{)\0Ff^]kC33VR{\JS٭o\ o.Y{Ɓ(tD@y${FMR=U=~zh# x_|},WNѲ?sS<X[OWӤ,ys3ا2uɛt[.cmrxK=1uejv׳)ek8xE5uh&pX-
+endstream
+endobj
+1731 0 obj <<
+/Type /FontDescriptor
+/FontName /NSFTTR+CMMI12
+/Flags 4
+/FontBBox [-30 -250 1026 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 65
+/XHeight 431
+/CharSet (/L/d)
+/FontFile 1730 0 R
+>> endobj
+1732 0 obj <<
+/Length1 760
+/Length2 1503
+/Length3 0
+/Length 2039
+/Filter /FlateDecode
+>>
+stream
+xڭ{8iǙ$Iz[d0ɘaf %E3ïdys(bm ZBѵڐՔ6/9rڮzy>yσcFP8] W 2$8(/
+.Y<
+BW&BM6J>>|dB$iGvd!t,PsF8Z Re޿.[j;䛩$Vũӛ*''>Г[۩}4FuԼH۵"kM9CHg$::mG3r6t )%{Ou<L?*!sLKMS aU-9#eȭCg=_V!ף%g^TLQz;+{R }b=]䞺evޖҨ[7oIMm]N2Y;ӥ3$h/8^E}  e8Z6.-(cEjWDmsRѢV乱֙u_/*[;m0=60<B~1xz'o!TlX@ϬzCoq:/I\p>#{A1> Y{yRؔ.iA9]7)h= '( ~;THSt%=dz>&O]Ѷ-E{co߯2)'# {)ZM9-0ZMr;, T w:RHv 5"9풸 Nb~, )oLau8­|㷙X:p|hv~aM|o׎1#I3'scQ6kg KSG0&5J?;?ۙ׫"LRb4Yen HDx7D<?`3x?Z/:լP޲-S5 ۶?$,$.bp^ϖlqg
+ekL7V>Ƶ9R-TlV>ZYd`l]k~LGF֝c]sh8S#WHUmi+1gyj);
+~'gmhwӓ-o@z<E7 a7͢u/>W)s`NfA/jS k41VMUgU15~c4H\ekVZ&7}%!5eVUP{Ө-))|yQqRߦ3zkS{> <
+nbN[WsH mA롅]:rS)Q1U2;)<^ œ
+endstream
+endobj
+1733 0 obj <<
+/Type /FontDescriptor
+/FontName /UPGFAJ+CMMI5
+/Flags 4
+/FontBBox [37 -250 1349 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 90
+/XHeight 431
+/CharSet (/x/y)
+/FontFile 1732 0 R
+>> endobj
+1734 0 obj <<
+/Length1 897
+/Length2 3254
+/Length3 0
+/Length 3858
+/Filter /FlateDecode
+>>
+stream
+xڭy<dzkTsQe Pdɾ/J c=Kf"BYl,#ʒH";a,)~Ss?wOu}sιD-eXCA
+L H/ Xc($,hрx
+Gn r (@€ ?-b\a $O3H) L"4@ ]A3,֟zD4AW &O˛H@
+C!{#1_"W塴B.bX
+(gΙ I)`/@aH$ C0X
+@-ܪY
+@! ~C
+ޤߐ֛ {X<
+o28Cb^ڂaWmH$  `!U $y!<OV[UUA
+p@OX2. \aUZ~֐;8ZrKfX,:ҷ4{ݝO{WK/^Ԅ
+Uy»tުA$/ k&b;vY6)\M#=GU#M>PT8Uf9֫٘ WѠ(84+9bY-`sbk=-}Fa3u{Adc /9͹f*é$KS}ϭDA885pH~ 9} 2YAn˷+
+7ʎӫW"V7Vɉ 15SE7`CY|jFM^G2ky<Nb@XXNdܡ!۲5mJaA,͉tOJ>v~ U$EJ,[Zn9尽u]b3FgXp<n׾x޹~wVАC~R7 Bk1t֍jI!)eKBɈ͚umZ>]aǼ[X{"p˛ᯔefj~ a?h}[q-A'oz{+Y<﫸ljg1Lb-J&!>p\G"?)8n!kNc;/E;tlFji2?-'g\֨r:`$Tゅ
+HY1tNjcVT8,Ě jA|AfH%-u?~j!.ZȍFe%yoL*Ҿ~"prPdk&ӛw:*ȲzJ^`n 2~D|k3$amD
+,8չI-->C9V=Z- OR؍'ءt3NB2 ]NޕA~Tw|<S&pb:/f
+{3 mlEiʫ:Fkw4T,NR%GaKֶ6~d3Վ}k#On7.ExҵxItG<#8YÏ||KA\ ں91
+.lv Z@h?Hmݠtϭܥ,}*K/Q$)96[Үn)PM"i/\6ˈQdR&{S5 mM=_p5Ei[6|Xq`p~e;ekx2^` Lc'~$;W8$y.!>RYZe%w: uQi}zLKYc6lW+rDw ;] fyk`^'JlU$y=TD%\?1ĦN;CenJbbX
+' nDղiO35]?'f|fT*. l0FsE)ƚ+ iQMˢ]J8@si2l%'K7+ bP#CXL]!r[@u*7p\I8NOz.ӵ$E'-Օ'|3OO\^/5}ի~yj羛;*޾`;9U> eȞ
+ƥZWQSg|@+=Ovl^'/"J3\PR0恞%GAϋejs[ɓUa["Cv:gu۠o7utrlYDW^ P*<yfD U727#<)/aB)FTHF4[a3C+S#቗lREhFNJTT/u 'Xa$v'\_vRwjҗlspٓ&ծb /-Ɣ!qi6w#lSk,x~ffB .;ϻ6*l( -h$QsR*.tAJ_Q^;vl+vl?v1OdDBa
+iqmjoتX箞!?/.@?9o\(kˏu <^xVu}6pO6Kl^Jm-_Cx=*J ӖJ5ߛ/<& \ +iYx7G\<<|_}HvE..gtPPcƛ,e:g:y#L$.<Sxk3|c>OqR~BbbCvKw
+ׇn倥m U,re^,V y |#|xw բ2VpwZu/^ثf45Q.ռs]gJP#:orgh sOUf"|ږ^׌Dvn]T\4OWaui>Akk%zlֶ"kɔl5S?!pPP>k;UBuk\ OM;@L0vx/)R~A܏y-ٖˌujv.4lQ$?{G%O3&PJ(<y*B!,y=5h
+It b, 9 PJ4=F 'Ofy2SƷ2|i}~縌^oȝ3-UD\iTڽJƼ`4!
+S˔˄'J'br/҄.zr`$GQY߻*1"q:nG^9?ӑW}wkCW{nݳ+y'*S'I]<u,ROދ<@rA
+endstream
+endobj
+1735 0 obj <<
+/Type /FontDescriptor
+/FontName /OTPBEO+CMMI7
+/Flags 4
+/FontBBox [0 -250 1171 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 81
+/XHeight 431
+/CharSet (/N/d/e/i/k/m/period/q/s/x/y)
+/FontFile 1734 0 R
+>> endobj
+1736 0 obj <<
+/Length1 764
+/Length2 1257
+/Length3 0
+/Length 1796
+/Filter /FlateDecode
+>>
+stream
+xڭ{8ic oUt~9$3VXc~?cifhdơ%ہuHZ!ڰJ޶PFV)Y6]۵k}sߟ<fl+ûQԊ'9
+h|NH,ő0ǒH
+
+Pax&
+bR CҪx4OHv d0-BAyX-%Q۷Aa`ppvp/ƤbEb $DZ^vKfx($b b17
+KT"S( "X&ET}!$@ \IBz1C"AVΨ,ڊlbyb1,.~7N<JþN*u)(ŘK'Ҩ1?>h%i a2(j-MP<6h[e^֙j)ݼRjӳdӃ^/H k^*Qο=_U#Y؀zL&\"Tuji5SLyA׫KZO[>ּUtgip[dMtlAq.V٩6dٽ$A/ 26Wv̨%`Y]q6| ujӷd&n"s`'{`]9Ŵ)tF_tvSp$&уc72pmy?m)n lw~ՍuI=+NIY ZSV^ήayזTJ|&L2?7v_ncKO{9dnƛ.#쪻OUuAwVimz\{(h8V6`m6@VMm."M~(Ҫima x˩7Z;r:pHUgi}ȫ{u"QfjpB|`[Qr9'&{u ]Yw{9<ݳK~=^C3;|gS[Bz|y,ˎyB[Q۝ګ)vTƑMCHvWҖ*,xٹ{:ϬIr}:mgyE9tŲm4^w&<{+h]RBߜ>}>I+2p/}y9߽1HkzjU쪑FƪZ3=Gk+72tg5>!i6qT^˴[ Oí  !cR\94cl}]EӲjgG*8 O
+endstream
+endobj
+1737 0 obj <<
+/Type /FontDescriptor
+/FontName /RNZDTL+CMMI8
+/Flags 4
+/FontBBox [-24 -250 1110 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 78
+/XHeight 431
+/CharSet (/slash/x)
+/FontFile 1736 0 R
+>> endobj
+1738 0 obj <<
+/Length1 2065
+/Length2 15040
+/Length3 0
+/Length 16150
+/Filter /FlateDecode
+>>
+stream
+xڭeTݲCpk`C~x{%k=YUwͪ9MNE fgHXVQ\`lag+b "bd&}~|sr1Ð {8Z;Q SHhalhK$klalhMlglp'&R'‰H pt01X;,la)IԎ&.
+pt,_eR}ibgkAd0aT|GY7?ilhca?v6.
+~/3~ ?L
+w)%5 <S7 x6pi,N7ܯ5d36"28|o,e4hU1IaKwR /z-bAVTZ a(NԡRZ(z%dOÒ0>P{v#-O"1XH' 3%y}-47\aD
+ 8>"=QkŜx;zB\Y9թmN,r:G߱Rz{`D(TOeR3&#D. JB/g3 De@p}w;_ʋ ,`7WУ @#sd黬f\-{SjjAVˌ;u*T21-|ٕ yqQl/OH8G
+1+grH?Q0
+CƳ"?N^
+K,HˊĖۖ%Mޔr TK Jv`QYKz%恏'VBXJ{adɡ3%&f;f0N" 97^T ćٷʜ2l<b;zjd
+xPO&jZt50oql'1{
+ʠ9"gEõ̩1g~+ h R3x2V JP.r) N[hVgZڍNndn9_(RGGOFٽ-f|SY=XKX[%z.1o黋vIb7ȉ{EuXҵY9;dgzN_/䟘&z: qw|AiaNP7$;g|qq^jRI݆ptdѺ7*ylgT]cQ[Ie-
+q*81fӋ _f
+L0RuY{|VPɥVfDenJLB)(3MhosQ(x:<>ܔ j@/VGv,&P@=ѴB-umgû
+Zٛ
+!9)?Y&j_Pkd8 XfI{
+dN*shpL,^_@͙Nv;.䌩l޾M@ኮN."ǷN_*6t%=3,6')xX7jNb]T
+"2G
+n6WǠͭq:Ce`%}Tbyҏ^j2|٧<=P/ySjܱ^7+.0<ZUhm$K_ѲWahyDxw@2 >"i5/~sa.$ *:M_;7w:\WEb&N6eQA'l3. #$/% 9@k70Q`P<gn/oH8L (t%[$|2V<yS-<|;Yg%=)tb;xǷ-:
+X/kk.rKɾ9빌HBx,^l؈WSE#*ePx< k m"(]ߴN?m,ebC-p3gژ3,E=<sڕKġ7ްT8/inXk<$TK q*ays .$%_-@ TXeǣAoy6 p H!S,pmpORhq
+Fng6k"W]=D{}.4P4-0R"
+&36KA*|>BQ }cK;M~v%Ng{WWY겨4Sx5[Ȱԗki
+k}R
+Z=YPwBVRSL-F`O'"Clo*#؏Yp滋dUD:pwi
+'jEʁRE7CֽN&{GHdbpy$}7gj,ډ'ii!M'w2OjJE)VE{,A|s-[jfMWN'uD ;dI]zBkj2}HvzJ膘)Tj[܀L
+[^:ЉSqT`N^kHѳDM K?ڟo>TX!Ԩ9V> ߷Q]$rD"W?x*OIo)wZExA-OfXs %2~tN$:7&ԯP2 TⳏJb6 aenRge}ʓB BGUx:eG&%JP䇁l
+(q,8t
+?mrneg`aRuͽMgFWw^4oYZy&V=1.-P&}~~?u^#$=|~*noȿ:wQ:3@^.ah̢US }Do { $dk|w8e<;HRWhae!j?CgGx"̍VAxa╼eXŲk&3;#xt`;d$R^6K6 8Պ%=jx&6;Zy+
+)/0jďؤ#{%OE;tf/O,kZRf3+|9B+= 75b5b$>V+@+i-f0]/kF.<gΕРK46@de=Oz<-9T+ʏToPpCiS'4;o,|B}y"GSnp~qTD>.jGpC#f& 7܃Ҹ~f`_6 D[Ӈ[TPkp^(} ݆ESYDkEq&Fu{TvFG{LRp.7l0e|Lm1dfJ2w&~95b@ytxoaC
+Cqg5sF_O5dZ8Bb+l Kl|2/pX?wsB{XIGO‚=
+@DFUxxձYח^!w7zEM(k-aؘOw7iY'5d{WG=N+f{,t1714T/; Cg2|Gﭭ37)@U]AqZ ~[-#<(OvW^~4 ?ݩU|Q\A1`ch\˺'"&bH<TD9ml!^tÔl+a5[B8 kpdu7|8D;0#,qԂ}`1U{?quQ!3V`aӣ+rNL,V(9 $6Q>8oD}zv3Y,fD}ԩxCwV.F]QQF缕ެsP2m6pDa^t5>pg}E\IX"NW?/AyD#D\XQ;e2VR.JS'ȭ]F9ϙ*/hfܭ!矦' YZMx%zwGhO7>[ўƚ9.mY-QB`Ahy:<[
+A}-a0+}2*?06%3H29
+o[ۭ2Yࣞ⴯~k=egm./S䝏7XLSl"qQO fP] y~Pbc~ Țl]$-ǴrTՑ}(k9c1hpOahK͚˧vTٕg^8[p@Sb0|afrRc~s2%}$ndu>/(#d_Gdc}70".0R j4 `l̝,Ckj9.4YGzn3_چԻo0.g- _*Oct_G(夾ovqq92[J|5m"e:"i($U!@HBM)K.5/oex\%Q$v+1IP^{0✉Z-*D˨+/G_¶DT
+~Tԙi
+JT
+[ލs՚S&竊Mt;ocԃ?@qcG3Ȭ3
+Yx¼go%k:{ 6aǗf8;Ӻ^p'Xf
+dU1ȽoYbyX^
+KD &n+ŭ(|OMuY`+ꈻV~P}X#CgD5J0bnEspuoJƆEV._< n;zlqHpA
+!m:syX%Dp?Q=%ʛvd*!{vxZvset`zQ-k3HOP^
+EvM>9i(埃@[۲:6+v[ݪaؗ00DБ[lS޳M\ak>/ ݏC M6"h/ ;gR䍡R[ i<B|o k ی@;f1NR6rtb@DEu;=&,͵ha՛RҎbSzV+Cmn=v27c 6\AIvm1rCj~<нON^j½"{gp axF;lZ X-^GqS< Lxp$_Յ;
+, Z`X5.0~G|c0'tRp+)o "2 YCi(f^n{Pg<O,4E^w 0)!'?rc2B:}5ƶf$a?N*EnZXRlH~CT19ē[>Uꩻ(YE.38ߝFctzY_!
+&A'c#3FJ|B9kƇT-kH%z&Jm| %SAn&^*2k/] 8H4S^HA$d.ja0B7} 5t5]RvJqG.}Tr`P__А^z+GƼUN(VZ9Jz#eta^wS҇RhCyY-AR}ݍ$y@p@㘭I_q%K561i9kjˑB4Y=l#~NA@>np^өZm<6r0tEHWzC.᫐ 7j ,3#KY8-JEMՠ5-oHtW Jj  DݶvA
+\xyQ
+!{%V ˠi~vayՁ_h$;_%0FQg,X@.PF{e(#]
+%pHٱDOf_ޟIO@?k;V{D~>Pu*gɼ6~ohvD4[T!X
+a3[,I&t=Ue#"/Ժ_çBHD-)q-K3חO4J:>np^'% g<:Z :۵Ȕ_2V$02hwt+s(bK?IUH`J{Fʰ&9
+:  f{hYy#׎[|ΆhTjg#~
+M^1YIDIrF]/Z1`?)ip4T;p2P HaW\jGWS<)!Ղ_Z#9bhj3e
+w0z?
+}xnrP9F]+QٴFW:DGitȜÐHۆYx{UW8/l]dJ庱!e!6@
+w>K\Z6BNZy[55_J
+=,;C¡t3YJagVυ~Mm/%Ys0Axd4'|~9wby<3QM%Rn(qɯv
+5 y{|I"ސa V s4dWd/!;Lj@&Qoo.CZ\ZѠ"P.
+TQ KBX,m\}0h/%#ih/rʬSKP
+h ">pN4~&㑖5֞'LѯI&g:F~2CPW]%Z`7ǗhܧN5m:a /oewe8\L :OʳK"ciIw7ZN FA_a62T%ԉ.+DEV\%9
+Ej l>U[`cdta/n0-nrD_!
+ <`Zd}d-1,Jl%f9eT**
+:{O-|iP{XBIqݣ:$Vye^P,oNkd+%f!mihHppY7t)f^pex$-Ȍuo&=x8,?M;^Yז;rb5A|HF9D{zXDFw Rցj‹-GSV2ݡ )C<KHmCx3Jsf<=H\<%/`Dy,i\/~RFAEEDǣlh|4Q<ݶ ;ɏt>>X8XUk1;@<ꂟԘ2_W*V`z49n)3ソ+S&㰖E$D{}#9>pp?\ koZnªR}sbzWw&9 #&e |̯rjF$HRܢZ3MJkA
+endstream
+endobj
+1739 0 obj <<
+/Type /FontDescriptor
+/FontName /UMGXQW+CMR10
+/Flags 4
+/FontBBox [-251 -250 1009 969]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/W/X/Y/Z/a/b/bracketleft/bracketright/c/colon/comma/d/e/eight/endash/equal/exclam/f/ff/ffi/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/percent/period/plus/q/quotedblleft/quotedblright/quoteleft/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/v/w/x/y/z/zero)
+/FontFile 1738 0 R
+>> endobj
+1740 0 obj <<
+/Length1 1325
+/Length2 6984
+/Length3 0
+/Length 7780
+/Filter /FlateDecode
+>>
+stream
+xڭe\]nIRBrFbRz:i$I N $x_7][k`)آa*(; $@Q "( PtA(& (x
+(t/ZQ]\І:.{I u#|o
+B\jG^uw(nG
+!@ 4|p-
+Z(׿!!Z_z,?(*/DCBr;C袿 SNG
+Qt3wW_ո{J@/D Qv>ģG(o_>a
+@$iNԡTͥ9&=$3x,Q~OU#Q/nj,Elx\:;3Z.,ފ$-bׄ"[SJ1~n"xs̛Cm7Es4{l\LUt]0S2H4`3RspcZ tTv>oa{MGi7;o~ Ժ
+
+iN\,4y3K +~/CFjQ_ȅڻ=6d
+r6umŤU*lOŐ Sr>A$m`)dF)6zH `o[Cީl6z~ݟ%:?*j_Buw(g5̔DXOrKZL Xsc^}
+#{6% Hषq +cQTV*3"GHi$1Jjϐ,0R[0Ri=Kb > ecGğӍvh2(1j<vnvDuZt!ٺuṘ/tG ȥz?WA+}ƭYC? So!7XF%.2W=%LG- óq ?*eN H/ ƪL3Q[UdZq;(f,IyS
+U^3Q;8kt2ܴY~[&n40 +vde %7 #"a | b:)<"gq10ա#q{xH]aqeXJqQ~lE.ʀkW)W $|.(y;,n3USbtGUz[K1fU|)"66I2E5? d߱t ZuA$rpr =9Lfxy]`!>/#쩒 qgrK%x7~ǪvPH8Լ7u΀ غPo沓9?P(tKeSAP-
+:}~ұឫQ ofMi2Kv=>c+#%.|9h wwJ{Y>>_)l 2ַe]\nq:; 3M{9Zzyn( ,5BG ԥQ |@0t'dmTzE*vdV3bmNyNX̏-"ޛz:[\?*d ؚdH;û~ʨxh* RK@Ҽ*%X1ј80䃂Mդ|L7ZZَ [B!lVF4Ns#Z]_ei
+\EC0-ԢLIES47D=nRi`,h*N9/LR8ޡesh<9쿶I}ZɓFBym u#?96(ыBE=8;xFK3
+ =tzqslr'K0CV?o}ji>^
+ۼK:uU<A3(e;9/]:i*>04!7#r:i*e 3;t7s)оAIRVtlb
+Gq=S̝e鼧S(t g|EmXu0A|nSl_@ﶅ`
+}o<;OQ=I ~냵t^YuLQPjXMu~¦~jrw>ɘ#f<=JԦz߮zzo{9'!~l|y_lh/KfH0Hv8yC}†dI^'@f,4~@EI8`wI1+9B:q/*G7(.U3Q+u"v ~[O].7d& fcsVr zw-e2>!dỵ.CCPqK _'fnܤp}軣k+OV"8g22i(#: ܎ jTb? 'c$榊#kTŷsC2a}:j{+%&!L'T~;4}Єm?D]=r̐!qkyykO2J =7btcmiCıV)D$]xx % b?UAuvadgNE=nq'$uܕibCB\]J.H=Nu̇H (܀^>}CR2g9VuGͱ'n=F{Zq :t̻"iʾ!ϓtmҫ0ԵBcl60|g!3+ (7`\o++1#Zj^$U6ٞ˃SM<.K)&&}_aԐ:DG~f.3G Uưi /ѐK^"4ǗT}œ!f/雱Ll"o}wq[biMA‚Ƚu$L5T3('Z42zl IbRO)[;fĐJlp;O)W48sDd~ 1iSGPD‹ňl#o}*q}lu0{buY6r&iTI*hlJH J:Qz.R &#wdCnPQFcrqn7`të˭meam2Nx='h:HHywߔ˦={G1g²a 0Z.U!a3 T+"1>wo?-32} bUaհi5}֚bq0>MOپ9ʢnk6(,wkU_8a[>*0Ww,;晚}N)A̩p1uqnRWC/6k8Zna)0il $a&{2 ؼwiwH7z|SMyU3`i)̌;
+&VUy0OF-,6Sm*Ӵ? 7q;&uy)JuNI7*O?9Oc<& SkqNlɿ.y5(6_C*YeLafQ`;GJ6H۫Ty1b6l& 
+endstream
+endobj
+1741 0 obj <<
+/Type /FontDescriptor
+/FontName /BYLMUU+CMR12
+/Flags 4
+/FontBBox [-34 -251 988 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle 0
+/StemV 65
+/XHeight 431
+/CharSet (/B/C/E/F/G/I/N/S/U/a/b/c/comma/dieresis/e/eight/equal/f/five/four/g/h/i/l/m/n/o/one/r/s/seven/six/t/three/two/u/v/y/zero)
+/FontFile 1740 0 R
+>> endobj
+1742 0 obj <<
+/Length1 957
+/Length2 3462
+/Length3 0
+/Length 4085
+/Filter /FlateDecode
+>>
+stream
+xڭy<ǭ))!ԅ,a-,2`3KidJ!첓YR}YBY){<Ss߿|^A>S  b D22 IFAA-Ga1p<R((@
+
+hG(>KQn;ژ?HuEl.EWt",MmgVzVS^~\ʜ'3һ82^g@fo<|H깹6=!thOTzwYR1 aNjMf
+{{$@S%$Bs}x]zwz>gertjPM]g6Oye[֮bG," < ؿVyzt\LR}:XeS 1WE%HG~~T5?ks#F t!wpnzA:N|^))Xvxl<T+GڍYɼoۜ1DQp9
+rX^Sɛw^EKsuӳE>dGǿL}$N2x~F9澁8zk'ZEsoYwR@&Le}Q"NLgf"a #MAWWM6KM#ElUY^N$?3STJ;SJ= Uތ U-vD Q9j#BH?wmK ov4j,/r:7~~xUc0BvJd3fd28zb|lR&5q\蘨gK>{6nx>QgþRـǰW{Y6NۻTt Tl;F ^/Zly,QVX7smرED];OxZf'Hn";Ao<*!]{2zg^h`_Yox J3v}J=Zg7z6!CBfZ3I:wS'pTTfÔOxu''n7H3Sǘ_1r3S[5S߼q*F,Dضw2
+^: %Yփ@3.VTQڝ% {մ^^3 ~AYAWG<;eO:Q U2}ZZ,ݮ{A ǖlR</ɟE(cQu dB.1ZisjƑAԣ!'l^Fϛ4t"k>yҲXmtN>Gȍ+PÙ2DU`|n~fU|1&e3.D96Rw%9N׀Y T;>Q'07b'G{o
+B[<{:2?iWܯ짊tɓ<kiʭ F(
+{']/FgKtȼD;~=U#Yf_NwOyw#]v&g^,/Dh׺~[q8<m؈,rFsU- ށpv'v Z
+'nلR9ٿdyw5ӾwQxrꭏ=o=aa7%M;ѭ(/ [͍XNj3ʯи0qg{KJ "\Wk*(~̂zʂbǸ Sj=ɳ4K8B/ԧ_(@w#4̰ulYb
+ĹO,҉G퓀znZ+ׁU'Q]0>G)qU)3
+i_~%,J1lzW`
+@.MO,J۪puԀ<F1
+Y%îCJ-?p_yX +Te u+cIǠ-MdqD:$1; |Gw +ђXz`v/!NOG:Ý#bR)kB*\+*$t]4d<n+VNŒ䃭V0LVyx˒ܥzݖg
+/ީ3QБtɦؤrA`݀׌Dt;]cVVK<Zv3vt,u2q[eԽKsqPF ;èю&Xk5_\҄cn)UMҮtP#~W{;}vMBAnb'*ȩ\0mLnLSb7-Z}-x/sxًctaO{U<&Q#?Ąd j
+Ƞ\/˞L=yqSj!v,#1+T! βŧ%{Զְ<x]RABBۮܓ[i6!lhf_/e=9j>~PبqQf\Jms@%sK;7c /s+k絭m.JZڨ\ IW h.6!/1q|V-wbiѾrm% (1.B&<@ʝbZ\6DR'gډ;B,#喋/ZhݏN-ei Tk٫<[f+݊O2!74XjB:jM$!wLhׯfhUlz՟G[q m2eBIeŧ/}~)klB\ b& {{/,z`UKx,KDS$4$?QdGD}hlbGͣ7ȎfSO
+endstream
+endobj
+1743 0 obj <<
+/Type /FontDescriptor
+/FontName /WANHEY+CMR17
+/Flags 4
+/FontBBox [-33 -250 945 749]
+/Ascent 694
+/CapHeight 683
+/Descent -195
+/ItalicAngle 0
+/StemV 53
+/XHeight 430
+/CharSet (/M/P/a/c/e/f/g/k/l/n/o/p/r/s/t/u)
+/FontFile 1742 0 R
+>> endobj
+1744 0 obj <<
+/Length1 860
+/Length2 2434
+/Length3 0
+/Length 3018
+/Filter /FlateDecode
+>>
+stream
+xڭRy8{&
+s(E"0-!؊j2/3, ]ɮDh!' C҈
+"2o|tοs?゙瑗sT5ςdMPZ
+
+P<p"b$B=!04I%@@c93WC['}4XBY  btUk0!y@
+29aQߑ:
+UuNhkCGAP@mrs0C?;!,̢YΧmx}Vdnµ6~J7O+_!Irξr!rk3$O|FʮE0Nv`,ͥab|7;d򯻟}2p<.A ,xdxPZ
+x_TwmK??uuev)1Ɛwh7L$0 VEs7U 1S,Ҡ!#eq[.e1K\]nZ`LwAi}aӮwqN6_
+i8d<{ߓ :>uO^BNuiHSw65xd׸vʢ`Vfks(SZ]*`
+ Ĝ~ Ʋ]rY(}c<$j*^(pamLX:j!ҫa,3GMJizM0 3}R'vdC/RyuVW%6ﮉ.&f,uʊ@(tKgd7l^H|7dw8U9DKUkDz3lg =l6S}m'uk?TVnKdmf0'H.k
+%Ԓ*nůo6z$ lCEs]/V櫛 ŇuH%Jަ54A-}1X\=se@ėמᆪ]+b’Jvem|sws$_:),w~*Qr¨UBC?"%Z& +HϬ{3>RZ<^&Mx{qS"bsWOzJ) r0*W/K{Wjo&{=6CG5 ǔ<#ja<KHE^X|DdzUc)Bᕢ]uIK>/,3#-wdE\}4s&N xynEm{a_T԰`DDel9^+O!NXın^HvuZ
+z΍4{I#; w<Q$?z0,}*&=e膴qL(-& A!9ɇT^ U.v.J<ݗSݖ{ͺ9hP
+zИ?H]'Y_iv;Nrk6?&zZ޸톆5p$T4O~\m8+;:jD:dĢ}HQg6t~7jhc# ^ۏ˪}ѷL{6NcߎV;Bz]J;+"ҕ^w.P^Uw cu0!B'7ǻ#џNAUmk'ǚƝĐ2c arD󐡥uʇxW_Ӛܓ#YJrlPeFĤ1ÕgvJ~lALozܳkH0wϩjx{K3C= Qy17#_cZ W Swr=
+ KW7ȽzSTuyDžBڮ
+Q{ZP.^iڲ>_h&ȴʚȊm.(JE) WlB
+;%5;
+U&1Oy|gvη kQ5:xbRY6^wm:"_I#/qD@Ut4'=f,Xy,c1f9QޕQ=YVgfbK?L{P˹箲}~"I[{DJwPeO;w*2;m]8nYo]PW/s]/*Fium[}y`S<}K3 [ǭa=c#
+SٺhWJV6H-tZJC05e0T&)->h+ʚcoUSp*[}WPumۭ/%4UN>-5gs
+endstream
+endobj
+1745 0 obj <<
+/Type /FontDescriptor
+/FontName /KIBOMX+CMR6
+/Flags 4
+/FontBBox [-20 -250 1193 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle 0
+/StemV 83
+/XHeight 431
+/CharSet (/a/four/i/m/n/one/three/two/x)
+/FontFile 1744 0 R
+>> endobj
+1746 0 obj <<
+/Length1 978
+/Length2 3595
+/Length3 0
+/Length 4249
+/Filter /FlateDecode
+>>
+stream
+xڭSy<צ'YcădaٗIy,2`3 -R"RdɾdIQ/}'Id'[>{߿羮su9+"`f)Ĺ pX T
+[(PY. qX=
+@UT; *rP@Cģ=ď$%@G"1h"0%"em QXP
+hWrGc?bp4P
+G1SLJ
+HT
+bqJ @I(3X
+_F FC~g(( e60"!塀p0
+wצ
+Sd(BP
+K"()B\Gpjўi1EaHR?K4!5kbKt]򕜩/`c^Y<<wU^KKl72|w,C[+
+Ԧ3E)vyo2ȏ>N PԴ<VT5{ZT^[t;JI>9KW'5{f1]+u]ه6`dU-tr߽Bbf.iw^>3y szsiӾ=5'_y4\^=Am<"9F!Š !\ꋬ|s [ 5sil๗L?SD Q9èu<SC]o_c^^uHVg4Mar.LP!/y'u&Z%fOӨOlA`Hi&yRɑ >Hk͍( oWӝe&ʾ$5iDgIb Iu&*a{pn;v&ɮޓP%UfUi('={l{{339*#!D#ǜfu}? o r<;Me6j09}(uڥ$Oͅ<B/YϯވUpw)໒q1qTC:R8]zqϜGHVg!b`,pKƶp-1f}w3 Җ(9n) VqyEy|'%6ؑ\$c;1yH`C/\Ҥ`PI'/ig(ٴ ٽ!QrOCR>#9R7FSo[Y`a֤**5\"2K|~~
+*ڲ|,]Ql2xc?otL
+Fs߹`ФQRLG1QڤQG=+͚j=pVi)/[֗3~~h0>|"M[K6dUH`u;PjUf)).shժ\x.vQ7ˋ:?0>uFs>?},\TP&k/X}R-&b-[D0;72L8e*[ɯA,Ƌ"]*M¼=dQp)/g<dB/ŏ};FF ^^IM*q{@Gwc+\^phfRi֓<Pk]g],@nĩ!aO"Dl_8 <}a&%K
+sOuꋱ߯m0M2%=¼;XJe.®XuMIa
+-dUr1vYQ (H%NQ|1Wӳ FgՓ+LI'V?a|A4ޘ+)^p*fG<2 8͍R\ė'g~,nE#nsDlg1t\R5Ԧ cX4^沘Uwuwr;^FVdӠ^iCig qknc-lD#1qJƀy^~4cHS΋V+_B#U זz=JƓeTY
+E4ߏ[dTHez\
+ 4k0o35Ydu*t_.rzydne-s 8?IYY|~~Q|4[sՓqܵ'wx_qIv6hŝ_{%EY}s6;mw{^yoQH4S)N<͗˺zȐߡ2ܑ%dJ}֨wNoݫh3\.-5qB\_0r&_#]mLzJCX_xi̮ZHRϋv_4B[svLs6[ɔTE0e/ 8f`tQQo <ϕeL-; 6:͚{Kq&,,q0Y_1-N*Ni$rݲsxĔ+eȌ+b k C%ݽhϐ
+w' k&k.BSxΑϷPU!nP5u,9ͼ:;6xhrcYU /gfawDbthD3$"u͉_ *jVĭ?}Ei̿tkpҡNwa ?r}Do/uք7o2'!vө̊W-`> >2WZNaJ[ bQ_n, y{zF;_oޏ͂!}aA2cqägt!f6n_Lvo<v|z!i83I~꣣u<9_iwq5Bt֨J>Yei3B#?w[Q Pfķ{*r\0,X0V#@R;`+S)z=o~y-ٴzW:, ='<AO,xA^O 2:u.4۾5xiirD+aS;qξ iVD]:Mt%3;pKvڭ]*
+=vMa46ۀEY
+󗧮^::Zד|s|ݘVRcӰ6Y#FJuR{PmO=ݛsx˦I0S@R=h1# <ITjvv_S.D5}j J=iOoN63synC_Lgԅt U^&l;:H/i4DB 5yIF?wKIpC<31v2*AC3y'IjϘ3GB zG[#=J!.)kԶܓ&gR22oO2m̡/>MeUۗ>L?B<2!x 3.r\==D>WJFyYfг#ClHP%6vn_#)LKVeŘG1?DE (nP'Ǹiv_bʅ;*j?WlsmyY8 Ӂw(/a=*Uz&LײRJHiQRzuvȱ&X-M߈"׹ôJp
+KU<_'>[g5f>4 ̐f]MB,~۸Y>F`%O
+t?L, 26b (x^aEne+M/
+z~B{MEku2e/46~w[IHr9d!wp֯5%DTf^K}6}a'|V伓JI@j6iw3*W4[Ս^ivH,1Ì|Et3+=s_˟i, GWXsryTcow@
+endstream
+endobj
+1747 0 obj <<
+/Type /FontDescriptor
+/FontName /NWLFTQ+CMR7
+/Flags 4
+/FontBBox [-27 -250 1122 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle 0
+/StemV 79
+/XHeight 431
+/CharSet (/A/a/eight/equal/five/four/i/m/n/one/seven/six/three/two/x/zero)
+/FontFile 1746 0 R
+>> endobj
+1748 0 obj <<
+/Length1 1467
+/Length2 8279
+/Length3 0
+/Length 9131
+/Filter /FlateDecode
+>>
+stream
+xڭeXiCj膡Sb AQZFJnD᝵K}9~FZ m5,uv
+A!`k  wl"-KAHVZߧwJпjfo{x9B3G9[A!ׁ_
+ lA^"jNT
+8 1^`p  |S?@f \)Z:pe.^ l;
+w__?a9>SWz@5W=! “n7w>w3?\ {3~*^?&zp=@(x|᭾`ؿfSZ+
+<`p?_`o,J4>!8P.o Qڶ1QTVDǂAeWt§4^n1#g!3/w}) .U}v\nÎp['W~8;`C_E44OwԍaKu-Z{ee,,>
+Ճ.c҃Sљ9Y'G;8|4qy3?ߕgrI60%:Og&Y5ѿ <1žMB +5+"@ŽJ$hF="g0 fwJ$?O%Mt)9Y{FN1_nDK}@cĖ Ŧib)RL- /OD6HhDe2ƻC^C[kr<(1`o;LY;<)qb6&I gaXyiH+28.i_6O4!
+5qNyWZi%~LP5UMiblwg5`Ibԫnbd{w3Siv'5T^OLYTr
+E]o&.XV#FZv g? 8
+H IoW(Pnċ4g\Y[gR1沉vc2kKO2 6K8_|prߒAij_6uís3%g} t 2>{$[ 꺯4܊9٠RVۄp+'Rtl"Ғ&<7"RZSn*k 2ኲ Bgqv +?>
+ěhSd!F},s)l8y瘭܈n$ Xa^U2fչwBWX r
+B&jKBydv.4ž0QyuLy,JuYWbo~l_vO<SO2
+.FxBgB.GIȭ*yc8Mʗ9/}9zg(bRm 6|u>20-Ͼoۄ:fIC6kH'=lm"أ,O!-+ج3K4,HxIK6DUXxԶQd1<=b~ٴvRjª"
+Oᷱwr\We`X^Η~S=~MŒ,频OtvAק_mQџ'{U v_'xB]`u,;:i5 Q:)nk H1c/aݭsjcg1:0R>ev^q_3b-1vZZUN !|ROi~vہS
+b" E8 ^P7E&J A1*3ca5:e*Ə eegk"jL(8x_ ÷;Ta~\TvnUj9ѵkvqP?jyXU,ڨnw)(^!\:+Ӛ
+)kKmo^iG" qm 92%Dėz#DAJV뛗d;YP?#yHgz$1?V0{@̩h2Ā'3TT5ǜRJ;\2p@}џ-Iͮz9F1o&6?[-s}nL9 /{{䲠UHv['D!5W1em5%@EY.OY왼;%P=噠;fxPygp:L8xXMjNz'
+qTmQ;G ߳#' ZX)ޅ$ֶ–6÷Β$m_XNCBcg/g2YB!ߚܘ;!/fܟL}7S ┑LFK4ɶ ^~F I_aH# # կj-O$Y9EOi=+~ MfҺLL AWnQ|}Of'SP(xu+5X.ӗƝI&t\/ތ{CvH4.[zZxF|g`&!0弓5F;aLO?5@F)ː
+P)] f7x@;6w~,6-I-%iͺz_ݜb=֩N!R@,(6af~.
+&U:]KLX/^q]6x.[`1y DnnpDKM*Az"CAv_Dm~/1R>,@6$xl%NHt\MGF ?,_a-E5}\x{q yM;}^v$vbKwNuQ5QrZrWP$Qt)W*39ܿ@qj^.$HxGV?pBQ,JAErٔ0rǓ`2s}s4?E|xɘq ? zЄ3n$mV B򽣬;teQP aVyS'FOXVnC#N^FJLVܖ=a釞([A2C#^;CH?aT*FU?NF6B"teAޓ/=%H/
+x\e520x@!{${F&B;K캕AB}4N
+g~;v -,*E8.}>31[K)
+=Ɯ#iie` Z -U͆>)]iX?\H>H
+G uɱcɤЫ'K7^9ök<'S8|c?{‡жV8
+fT/Z o"שr 1A { p͠8ͥ]xIA̱UT8"#nϼk"5߫{N00ubHav NH($sL%,8JXr{.y)!an U_]oQe;DU{*`Fб\mgYεkdfAS{b42qnbO:R])S"tmը^aCݒ^~oŊ+l{)}Kb^Lb1-PL'Y)|]f%rքF5*v\N oT]9<2'SH[u\k7H_
+u1 Or^$iQ,tT0[1P}*%Ŝ(dA)PU _10e%⦺SLvC$L Mcڜ(v
+5Ǧ9 9I ߇dS4
+>~i}HEn}2{7|<F0!vS./%TgB \7s&)v$m$b0/u m6b'ДuK>
+Ĝ8}E"9U:VaVT|_ɧ/ospMСiԍ.-~?2z@ϢS^!/ou ::2
+`E{7,ߋ_2 '_v]x#^Y1s8q.kÒOTDհD dOaݮ1JQRJOS6^ ZC)`r^찺?)] %̕i6W^;V!Hޡ<m\&r1e] .^<ݷF碱Jws0d-֘b|_gT?^”1rU̕
+_ͩ2/ISm={(nZxȎ}uc-VȀ.]a%QWͰrrƟEd+.bgd\,"6E*s m+h&Ud4bFfE"L(BS츴` c7 BHv|Gj>sM^,~_)wjD' ~ګE\q< ֽ2/>8-E*Om>bh(+Ȭ|ЄCA7X11%!Fl]zae2G!>_6 V.aօ-JhQ?>EO/zמDQZ oq3~CڑVF<ILf
+\_t*Oݙ~\n=&4"1N>wCsdJT93t"''Ҙ>jrpUhɹ?eڱx%i
+H΢^ʔުSP(і|ŃH]9 x2]O?M4:"QԸ,MsNރ }96o0x)OVn(l:KBG1oȞ9PC a(eOO0-7wo-N̖*0uApseW]`TE糷<II>싨#].1 C"A`S*4/Mr~vY+. sz)BN; h!| o=!Ԍ3PZzxD](qjyg-^7Ua~b{|hNfD~voG.BSS6si 1lS֫e^lan摞 aE_
+endstream
+endobj
+1749 0 obj <<
+/Type /FontDescriptor
+/FontName /HQZDBU+CMR8
+/Flags 4
+/FontBBox [-36 -250 1070 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle 0
+/StemV 76
+/XHeight 431
+/CharSet (/A/B/G/I/N/P/T/a/b/c/comma/d/e/exclam/f/ff/five/fl/four/g/h/i/k/l/m/n/o/one/p/parenleft/parenright/period/q/quoteleft/quoteright/r/s/six/t/three/two/u/v/w/x/y/zero)
+/FontFile 1748 0 R
+>> endobj
+1750 0 obj <<
+/Length1 1343
+/Length2 6871
+/Length3 0
+/Length 7674
+/Filter /FlateDecode
+>>
+stream
+xڭu\[T@:.`!JS:FZB F$E:A9~}?|ZZ{X-Upsra10  Tp s=
+`M={ omh`dli @=t}\Mo /&\\\p!fUJjb¯
+TVDOIu]a ɈN*n o*qPh(cBܒ2f,|) O|6].q[g#j|Y)O3*=_,ī;;\@P!I/*##/6^[y4_woaQMlK'.m7EoSL/hxX%+í}
+Bb41ThWv{OExj3u)˒dPEG
+*Z9u څƊ:!`(H G}>2cч%cqQ^ !F t5,]:*&
+7l :kUV~cL0Ɲ>]@ɕQɶN4wBM%ɠ }rJQQa2D'#i?glaxNku8/~Щd,^OH_
+JgJfՙؼ|RnW sAoN._ueɛ!G:0qPCgJ;?@}](
+3:et.{RJoڐzn)8Tg,/^VxLVhtVud a7Sr?
+ E_ϊjhNC%9tqs&#0 4e;RȗKvw(xjߠ_ve5@+I2\x>
+57`/* |՛fk֒sJUJ<?X#,~It WԚ4y'41jV=o#'I@%`:6;ڭ **6mtZ 53C&MvN;v׋ ȩ TN KdF"" ~
+mZ@"6?V~68A}&Ϋtκus'*NǒzZ,J}x4O6&_NY~$soP܉*b~ O\XuWҰ_D[X}D#vN
+[5ܪd  ^0PԚ_
+:OB{;U5ٿe.qVXJ#xge͞/vMjB- ULj>$*ejZ ȑ(do|ݬW{{{T 8
+lsz`fۋv,kKTrJp@jc7j%U7CSy0/z{q#65gM(Mًg2UzR\~)V_@Ҷ2<qX6+"wsM&&:6( ywF *pMi*
+nx $_1_bh.?,m yWow{ E[
+
+u}G~܍z֭c}%>#Ac@h;W ]O@4պhbB.A^iA}c!@iX~^&&$!VГ4j񪊸! Ʉ>g:Ie>I}љN: &*vttl2m8y
+!h+_܈$v[8)s5*[qspp]Tۻ[ QhhԹrXf!x ZKCZ:=!F7}m|JgDR`Ŗ잦%b6eӺY.
+j(ڎĿ5 oɆ4\.N_y' α:gCZmk6^ئ&I^Z5H\v~BڝwєIǽbM'F3^CD C`'l(E|W't%jBC2X&?l>CGcw MR]k}iVUV6MX6w]pC"t~,XzBIҋV$f"%uj+C_$U+_A,4 1y]A4RO"N -q#GŋOXD'U7>iIWϸo@ó<k1, =_ rҢje
+ق0\nm넭L/E6K{zp$Z-:'JC/b0g\վNjheXe&Hj+#uk􊨔;GFc<vϧdfϊӨ5(pȎ7dZ6 x%wK/4ḟ-<!H/n]B~j +Nի-,(JaYA7l5,QT|юנjG]8R2oE~a ~utr7X)Dtz˶ fmjAŢbysQ$nc}a"TyU
+Aiǩ>~͓}`?^L0{9) E>bbrk#bKI[2Tд_}A+$ش JTÜl~nf,*.^Oh6Pf ؕ~[8Jb5n/:2SIڝWOCѱ0c$ FP1u6Ǚx[潊󭕎Tf & <Z,*RhR3;~t+MF8ʅWsvvC.vM@Mj/J0g`rj\ G/ /Ǐ$ɳ[W̧țL_
+ʆi
+!E{EVղfөe*TRSIDŽOj(:QLצ@YD03|Z1/'t >c,Vڊ-<VϲnH9/ Sߔ! )WY\3e&+KUXZ0֩gb2R6_n:еwl}0ЁλJ9JS0hxj÷X%\UPdQ1
+GoǮ aUA 5'3<^LA}SRl@=KGtt-%7VoEA0Srr٧aݬ1X&([A
+cH= XAm;|9^ChRUR"2XkϱpsQPvg L> 
+zBd|Ϡj8r[ yRFLB-C;D L|a~<Ȏ3?d*yJFr醉:7<I2;7{'Ov̅Mxb@GM`'
+Tfnٜ֗
+endstream
+endobj
+1751 0 obj <<
+/Type /FontDescriptor
+/FontName /WWIZZI+CMR9
+/Flags 4
+/FontBBox [-39 -250 1036 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle 0
+/StemV 74
+/XHeight 431
+/CharSet (/F/G/I/P/T/V/Z/a/b/c/comma/d/e/endash/f/four/g/h/hyphen/i/k/l/m/n/nine/o/p/period/q/quoteright/r/s/slash/t/two/u/w/x/y/zero)
+/FontFile 1750 0 R
+>> endobj
+1752 0 obj <<
+/Length1 994
+/Length2 2051
+/Length3 0
+/Length 2702
+/Filter /FlateDecode
+>>
+stream
+xڭSy<TVfݱ"%1sf0f[*HRvRтoI%;tto9yy߯OfzVLEa s+`Q9$r &Â P3a uJ9†4jB "
+0(  Ǘ/,$&bP.@d!  `1`r
+F9|o׭xPvuu=N/'642Ĕ%(B{3M."C&ssAV{[lTZsIm8])|}LR
+@-br5.-:){7Tibg (~SON
+qL'oj^ɒ{M!rSF'L_?)\s9r,.^ePqX<07zV%GOD)LYw
+g6hg=T1R|֋XMQ[C(#6.29VF׈j=_32eTE ڱ! ǍפBwU@kLj|P0Qr\ٷ^<GѦbuDu]"#f80()>7FǭؐfH>/9͑xCnȕL֞vaW6!Upi4eC:EwBT5??W`Vns}؞?f ]@tVʸ%CdBԞcLc.KV1Ϲz (V'K ny)ey;;xKg9Wf=/U_Ύ"j**aKbcϹf _ED8<md~mD$vr򜈵pW.I/-~{E~˯rNLϣ7#~!󈬢BfҠrs)ƹAyq;掆͊v<r[+e2oFOa EA7 D}Iq ؇a &*
+58;zkGm : uMW7r !c|Q
+endstream
+endobj
+1753 0 obj <<
+/Type /FontDescriptor
+/FontName /QQQQIL+CMSY10
+/Flags 4
+/FontBBox [-29 -960 1116 775]
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 85
+/XHeight 431
+/CharSet (/approxequal/arrowright/backslash/bar/braceleft/braceright/bullet/element/greaterequal/lessequal/minus/periodcentered)
+/FontFile 1752 0 R
+>> endobj
+1754 0 obj <<
+/Length1 751
+/Length2 733
+/Length3 0
+/Length 1257
+/Filter /FlateDecode
+>>
+stream
+xSU uLOJu+53Rp 4S03RUu.JM,sI,IR04Tp,MW04U002226RUp/,L(Qp)2WpM-LNSM,HZRQZZTeh\ǥrg^Z9D8
+@'T*qJB7ܭ4'/1d<(0s3s*
+s JKR|SRЕB曚Y.Y옗khg`l
+,vˬHM ,IPHK)N楠;z`軇xkCb,WRY`P "0*ʬP6300*B+.׼̼t#S3ĢJ.QF
+y)
+@
+,IH 3NNպ&
+&
+F
+f(KRJ"0~Z&0SS+Rn^Onɚme X9X&u3SjM*,y־%
+mHx֮"&4׻,^5+Åa3>_xV/'x楼pZkBZAo`(&^y?ҊoO^~ש&x,o:e} ;yVђ T~x̝4lWg%?.qp>$oW>hJ;Ǻ'
+DG2O^k$[Ĭe C6WP,~ٸ~ゟ;ͳgdxMPđ:o)]؊^<YI!leKJ*1LѿBK6~ٽg5;s!$x7^K9w\gj;K>Ujn:u{2wGٹޡiNʓn艜Z\=kGNs| d |ິ
+_l{ݷ^xBYZ잋gqxTD5o\k;YCs(TTyN
+AU+Ke ڵ=\q_Pܕz2Z[N58?Hy.;֬7sU/.̙{'l>W`OO<3 ʥwlKUQ_Y~X*A@NL-Rw\>e%=;l5=_ҰiNK,LnG r^P'iXh--XͲ
++z3Z
+endstream
+endobj
+1755 0 obj <<
+/Type /FontDescriptor
+/FontName /GUOWTK+CMSY6
+/Flags 4
+/FontBBox [-4 -948 1329 786]
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 93
+/XHeight 431
+/CharSet (/asteriskmath)
+/FontFile 1754 0 R
+>> endobj
+1756 0 obj <<
+/Length1 745
+/Length2 581
+/Length3 0
+/Length 1092
+/Filter /FlateDecode
+>>
+stream
+xSU uLOJu+53Rp 4W03RUu.JM,sI,IR04Tp,MW04U002225RUp/,L(Qp)2WpM-LNSM,HZRQZZTeh\ǥrg^Z9D8
+@'T*qJB7ܭ4'/1d<(0s3s*
+s JKR|SRЕB曚Y.Y옗khg`l
+,vˬHM ,IPHK)N楠;z`D8{hCb,WRY`P "0*ʬP6300*B+.׼̼t#S3ĢJ.QF
+y)
+@
+y Q.L_89WTSQ-ҢԼp: Ԋd[ok[Y*V}Ο'־~ bG̔`y%K^-|xE dE[${z,^k nW6wMpa،9=թsr y)/~V$-%)+2W}~)Snʞ6-*Аbm?k/H&gB;A[":SZ}qMw~O: 77s7;8?lj9MuLWŭ94͟N>/rW7Uj{E=ۙ^ m<ZykuN˩(yU9tcȼY >WMXZ7_m]ToنU]0RܭboWd☭znڶ *nnd UDU+˸RIѱC&N3.0G߯Н69# 4W쪻t`j7nߎMȑ:/SFE?O.Ut[ڐJg_,]{RP͓nj-._alyyȗVk&'
+i=81wry_
+endstream
+endobj
+1757 0 obj <<
+/Type /FontDescriptor
+/FontName /PXBGHL+CMSY7
+/Flags 4
+/FontBBox [-15 -951 1252 782]
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 93
+/XHeight 431
+/CharSet (/minus)
+/FontFile 1756 0 R
+>> endobj
+1758 0 obj <<
+/Length1 769
+/Length2 782
+/Length3 0
+/Length 1314
+/Filter /FlateDecode
+>>
+stream
+xڭyPgƥ "A;x"njG*$8
+T$X#Y h"(H"xP(`kfCZED` P8;~|]SdW
+O$ 2$Q c0cJM$dT*U EA,H$N
+qC$hJL inH̓Je8:~"d,Tj5Щij2 & CMnla թSU)I<JVB. "@I $"IW$L:(\z&aLl`tXVMZ$FR:m~8s1#A9#K2kI%oX vP rW
+WU+kFǵY5~CӛX3N׊x__8yK릜su
+[ٿe3VF 3H8nY:sFC9j!|F",qe6Eg_ #Cw- U3ڤ="my.I,fmS9J9_a]xqXõ%kʝUfBʶHXݜ^crƬ+zIk,/;+2άFɒ+u+,
+UW1dUD|VnOi]kS>W;~W޶}>VWP8|HοJTYq푑goZZqT=+ߧ{dYi#v ݭU8λ:n|T֮sͣ
+endstream
+endobj
+1759 0 obj <<
+/Type /FontDescriptor
+/FontName /XYBSMX+CMSY8
+/Flags 4
+/FontBBox [-30 -955 1185 779]
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 89
+/XHeight 431
+/CharSet (/asteriskmath/minus)
+/FontFile 1758 0 R
+>> endobj
+1760 0 obj <<
+/Length1 1110
+/Length2 6161
+/Length3 0
+/Length 6853
+/Filter /FlateDecode
+>>
+stream
+xڭeX])AJaFk!f`ZF@$i.;sx^s]ϰ1khZ!,J8 CU|@0/M 5GpsT*A-B`a
+g_r?WUP0KYWZiP@ksq(?M35yڿ5apO y
+ABwd qw^xguQw BwfN
+
+A?Np4A]]Û,,
+' }+B3S~B#_oB3yH%먺H$r0ҫ?wGM0s_SGG&HXuݵ56"p%w;dz֊lq7E!
+ Sn6S< *ȩ_VDJ*c"O6&m4hۭAc%J-a܈3暣6-rCdԘ8 PN%;Ĭּq%c8̠9Q:d}.Q/B$k1fb҄^K`銥qd: p|2Fq#$k_i/['w2ZV|o6%!wwŕ·_1=EԼkL'i9B톨gRaOk&Eϵb:/ l/zlJH:E$6qO
+L;ۙc >~']O_V/{YB]:Pa~-  Mɀgi_I|ğh#db/
+a)vi VSo]Է?oYJ b9z^!}yJ%DkEƼ,vQl]L%Yb-bc6T U€ma{+y
+IHLOQ"1qs?'M^/O-V
+"9 _&{8>iȳ;} m'$h+%}ycZ2
+ɴEW3 7sC=,g`6|%jKŚhk-.Es亘C'L~KZ*_{R[ uq ޤSRߏp
+TLN?1fzfβ610%?"ZrkhkueB'^FY$ó풉?(iEV9na^O컪5n hD+k+lLiezg|6҅j!)^@b$|fP3+
+N`D~hXbܤe)&KԽW}`_*'>
+k!ג8YNMU&ԠuLՂU Ԭ}s4L42
+Y+
+1#(|Uj@W&5F:N< pWxHQ̹ AgO%+M:']L1s4-9Nf8!0yRo ޕ=׈G'pxA`vA
+yb-%˭_B=S)7?zvw\H~5kUv_5 x?NũD|?X<"}=ޒqA t0L,v5:P"_c,wɖ>f#g9ɤ sZϿj?o;V'x
+!1pX=%^jt-7 Tޘm ZVSQxst]|ޡ#IB˸d"tsjU[w /;8Y"/Jb5T̹S5hwMRhۃӠ4Cu-W<uSmFwt7\ʤp 1
+]y!/DeM`T+,ԥf.3eVWZ}wG)_ T 2hҺLI[9Cf =':p|J1>ڑVG>˪&NCvM}~zO}Nz$de!HJ<,{lMsfwgB]f4GLG}cnL7LsRIpQ,HU ŸN}φyԤN˔W  > uհh\C3?EL;lSرP}:ZtgF|%}5!=cϬSŠ2[?ioT~s^ڡw*6͆s`ºJn**^ʉ Isu EZgg4%P21o!ݏű~c~D,5HKo8mC- }.ͺYGw:;]+HR!
+?yD(|5Y'b""$a_LOt3F ] z8%<7Uj`Jގ%8ct\T{U߿L{c 糮x_&1>wHHޓFόi|OR]|YcN #NCJM<WDvn. 1U BR
+=f~16Qe"%\s)O1cqYsc٢\Ub(%xKu,Q oduGړŵ2ѓOK18HE;b
+]#Zض/mt)JO Ce X%=^I|}eb6IŏUx;DR̛Si9jUts-D= ~FcC A@!kS$}+FYUWT*+ZxLl Ń_LRN&?>d Y Le{omj&J}t%닂S^L U$d1̥MäT:<6|3`ysV:catq9\քMO4zehJ\ +"'F>ƍ=6șM>WydX⼑gn@g<.H#řQ\3œzd z
+J6ʵb 
+K§ZNG*cJ-i]An*>}񓺣l"nԁt%86)6JML,Ɵcrʑ FΩ`-Ok=٫GqSoU4v}-ʘ?-uҡMT+Uճt&wT/V( )\uT+]Uhu*ۿ{, ad$D&V7ka$e}dZƳ,\E3;K4ź5!`g8!<#7U4dJWҜV!MW4+mV~W"IDJD4w1
+M-41ɚm
+UyF \;;,ԕu
+endstream
+endobj
+1761 0 obj <<
+/Type /FontDescriptor
+/FontName /JHINCU+CMTI10
+/Flags 4
+/FontBBox [-163 -250 1146 969]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 68
+/XHeight 431
+/CharSet (/P/a/b/c/d/e/f/g/h/hyphen/i/k/l/m/n/o/p/r/s/t/u/v/w/y/z)
+/FontFile 1760 0 R
+>> endobj
+1762 0 obj <<
+/Length1 742
+/Length2 1193
+/Length3 0
+/Length 1722
+/Filter /FlateDecode
+>>
+stream
+xڭ{<\('%3ø%Kɸ]j<3so4P :"V՞T 㶧زUjҮM֝k_{^?y>ys`-]E+\
++Qa) gPA`8h.T(:
+L1P@*P>
+YqhN:Cyn@M e=ֽgUq1YQ~m]¹_xztJ,S6Wpjͣޅ}Zg˥W޽* Qg63h{*]rc5d+go(s_H]lzdp:PCJKL|DRw~(W"f_<3=rbZ/-껺YAenͺ)cj{^j8 VLMmU/./(,;M s}Hv߲C*F?_97 6b'ƁHY-υ>"6*锜{@ xS>Hs̸Sgc$z %v[%S.pȜ;cb)4]krnbr
+T}<wK3m:8{ǔvϙvz:GOE(tL쥩׫HF^sUM^X\2qR;DXtTm l8E.y~,,3o ]VFZIߖ1=O}XRﵟ_}Y·+踢kY2nuhnq@ur]"CԭյG10ڰUXghD^o'9]8L󜕪5/.gVKQMdax^tL!Kl]
+zS[L:[sSZk|"?g[޴g-%LShh})ﰺѶ_TeȭvD}8M'Z_&umT\" \&B
+endstream
+endobj
+1763 0 obj <<
+/Type /FontDescriptor
+/FontName /NGREAZ+CMTI9
+/Flags 4
+/FontBBox [-35 -250 1148 750]
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/ItalicAngle -14
+/StemV 70
+/XHeight 431
+/CharSet (/k)
+/FontFile 1762 0 R
+>> endobj
+1764 0 obj <<
+/Length1 801
+/Length2 1131
+/Length3 0
+/Length 1680
+/Filter /FlateDecode
+>>
+stream
+xڭRkXgV[,\!@M\I2ILL SE@TT(]+[lAˢ؊]R+E[l>K}wy̡{
+L0PC,t."a PH!j
+
+R%r d>$u 3c቉~FUD<7z>S[QHaX7=ĢTbLd (84EC
+}ƌ+M-lr_Jqu)#^} xzri{ifesL~rб W
+mvL|}Wz&w;ҟ~IӮd_~unDzm:V_耼·v^˫"Ӏ;'f38>ۆZ7>i+E[G5Xm,iN܈n4wK:v<m#dwy==ؼ6, 88 ym=4| r|_TqK^q՚;Z}S^ZUS)dFIsߩgjLʊw8과TMƔj#Lˤ3ǫLtKS4=}Vj^7ls]Uţ}*z
+6l:uϣ'sy+O銁*]tPZŅYpat\\%n%}IԊ۬{}mJs47xxE4(j7t&H^tc Q{aV n\Œ#',FFYsʖwҞTHmtd_ r25[]߶ۦ5Je_a;o탳6 丝:SdX|06xg>i|y#*ʉ|=.twd#Ykwgo=\HMGE%aYp6,4~D`N'(}
+endstream
+endobj
+1765 0 obj <<
+/Type /FontDescriptor
+/FontName /AICAWW+MSBM10
+/Flags 4
+/FontBBox [-55 -420 2343 920]
+/Ascent 464
+/CapHeight 689
+/Descent 0
+/ItalicAngle 0
+/StemV 40
+/XHeight 463
+/CharSet (/Z)
+/FontFile 1764 0 R
+>> endobj
+1766 0 obj <<
+/Length1 1606
+/Length2 14346
+/Length3 0
+/Length 15170
+/Filter /FlateDecode
+>>
+stream
+xڭc_-\fSm۶m]vwٶm۶mvo̍y{É+WʝPAVT΅ gik,ko'C+dockd!%v25t1t1
+73u2(Xd,MM)fN
+.N.YDΖ
+<yV
+T:nV6>~1ZQ>qF54@$,x ^YGaRa38!_ ZbfnS2ln/$;
+VW˅y@L2$zPD uROb I@y m(7Rc*ǾLobb"-zTndC1#YH}&nt֓5JZgri6,H y<^/n, Pg&n$BBt| i3R%81CBwQT 01Qw
+CWQ\9{u&5F?T\%x[@f0?6yW2 L:5v|&ijȺd/<X:q7XiW+4Ww%N$
+rhCk@P^^mODϖ@ɋU95@d-B۟+V>BFи[FZbgm#P|Ub|7E UćMlM/c2H >^qI
+((gb䈢+9=`yαS< ]5ETGAj>X4$岴b#vKa4Aqiz٭fRG\p$ꥷ/`G&Se$%:Z/QW/N6
+\ؙ7kȖPK3Cjͨq3Wwdo S!En:CKN﫿a>tn>:
+//C) }1cJ.Rag7$U6|VqA^S(nh٢ `hWZd&pN3+q늉#IкcfHnZD̩
+0w
+ '$(E
+/M7B
+{ʻ~9 85S\p;ZWtGMr.R0׹*A2z+rwgYÍцC;l
+*EJS=8gbG=2ᇭ,'twRDDuܨ^⟳N#9JreR%GMq4>I#,!G*X!~1`pa*P:,$3uG[qr*E.BYKzтA*|-~8s޹ָhy$u@2|i#<;p'6XJ5^#K~yf+o9NfatN4`F"tjúLUceiJtwLݬ&\X,0"8BHFa/JU+8Ъg_xglXFTEQF-3yӘtDӡ5_MG;E&7SqdSI4ñg6"k9FE5NϞitՄB@Pլם[XIo&2Y pdQpܕ*\ qI!:[X
+K#NDwms 6rH&=Bp„W qSmÄ|8kzFqZÙ9gA2-򃧚a}U^߃ S/2
+JڄiO .MZf!uLgkGbZ> a65WyG.2d cYh\Eҋb-A<@G!X~3Fn>埵Pgܶ|}t&NڻSQh#V
+ci rc\8KkxºvG(JWoCt'_>r7Fȉ 7)h)Z/asQм"zOJWK Uʜ
+C W]8q W=WNjfE;)G&9nèd'eD∵^xtA(x+,maQյ:
+V>b7tne!!TRZ
+ qrwaB#?X&ⵂ+.? ivlha3 +Ja9=
+[2_bCL?
+jcp^WG
+DΰkEO"hf촦+UǦFS]:<TE Щ:mJ avczFPw"_}HRY&7 o~s^ɒPw]E vvHx<n+#R$],Q>)墐ѧ/|ZL}j5-=$6|T6l?CrUАˁUCzEJ
+s!Lu;8mTi c9拎=܈ *:< jd:;z@mU?I\XHUA V"o%X)ukľ,݅H}i7 7O`G}w@?EÝ6V>g"-pҦDRX2["cQG1fb Z$ߎA礤˟ y;T2d1Fnޛ6e+"D5isXWߓ,>DK4 G=Y$ 6GiF 9rXH|eۛn:gfGJ&<r |
+V[:B{JĠb{j 04P 6g|g7O6H59CХзƮI| 纇eZ\ZE V"OLHqܬ=R5|*b/ǐ71sS0b`'I%%8
+[Qi=t.+U8!xa tNUtP
+I6f84|ݰ#ܿJ O>  ?c38ݟ`>P@?MCrpҳ&J}@[^ >
+Z!iss>WzKcoטO.߳8[qVw7@abJyãEf~LSTq}xQgX su*8[]mnƅZ
+Վ^ǢEA* Ĝ҅ZBw VVw:В\-G CykUn˥D]BLGEޔ_$yAʡt<ba4JRxXī~ڏ7d@䶏o:k-zLgx_Vm]bG> |B W+А0
+8#9~T$p6%A%W|PޜסQR8L~ j8II#(,x:JuIƈP8@)r[[!{>AqZl&>K *AIޫlY$rTļcO` II/BEY fӲ SZ ޡw¶ߢ 5
+!T4LNp';55uʣ~!<#<}d5`43?FcY:*^J6Ƣ]0Tg^L-f~'<zb?چ;Vc\zyCض3-pV|ZbdfB^>27!pQLLcΐ " n1߭bƵ<q/`woEYib[ERPjr/o$a5QBʥ=wV+d@otO8>ϰgnF5^4m1\ h#elKպ<Y=Zk]g9`'>;o32R ۡGiФH;Et
+IncӮч1ۆ؟?j>2C%ʓKH-wZv'|Fz.A\p[RE<>jB306 RjRH T[6bo,/Q{
+P`%`7˃&CrZMxӦ|Dۖ %wP۴tGٽ˙tl>@v(求,yPVdcMd#jJ 6HȊF0ԍqz/2zz.SKc ޖ/2Fq'Oȟڹ} J/ $F ّG\ (jwxWXg#QRςu0rj$#0'XdJ!uNxҋ]Q|UgQhC tR*DoST~t,iXzqoKE#t2h\m.N"D&AL^h= ĨҔ`ŽtOv \$ lM]`Q/k/1Rк&BIo`@۬xtpCJb԰ƭgw@!|d}MeP)SRٞv{E)ܓ<Ѣó/OeL#F銿en)\?SF)(Cy43bx;0
+#]v.@FJ2*ArYM Q5mAvڱcB‰%7ҏHL7y#*(#q-[F
+2rŚ]lַ Žþ:/e$ +"2P jCq~uF}ƶ'L+N(Z󯔾ܬSt`B>@ݙxPiYC9=@^P[W&s=`&yٍBեJ!
+*q$W>[Z Q[KNi[^P(pP{HCL(>3gNӡΠ6 ySqT=Mx9%"5F{?'qV_hHM9 5Jrl&QAuavB`݂W[_b4?Q{KTF6@A
+7~iBOOt駩^._ڙBȵuJp "KI~OWL,;4+%q-2v[baEL_[`ZrOaSsOcLvzN,+N>s[B`(Fvű1#Z|W5L#۲IΎ?ʀb˚8nczE]*T Llv1&nSp0FY
+/_,K~E.j,)rxb9S:YتvQC E ƗȞ 8*nmvYke, P8PerW 9o
+<!:!2ay`(?4t&N%B
+0V5lk
+O wLKݖHFP1aAţ5@#}%YS
+,:quiN\s:%I
+CmpNv)LmMGDZAKmsXuAk2 \tdט{$;lw91I2 Yߔ{AJ{ѻbXrsSߣ!О:'ҨJ pU@0WT 21_oOB
+j^8*/8&vrr5b|ځ yEZ[!˸]ddV2%=r΃PPg-$fu@Jm91ه`<$ߵU^
+!˶ǘхf<A
+ C1^n [!f~~%.St(l_kX' )4H3hf;n-!,<$|]S?uIj<8E$c~]x:V^l<U3Xa2Fz;-?%k%eYK͹i;=:ny%I8˿4 FRPۊole4MuSRxjx^[ӷ+gnM3Otl!mW-&݈qnqS"l6ؔ0J?,Q;N܍§nmi
+w"c%;x}K[lcW!,Ys;gB)82HL֤}un?Gu/m ָ7tQ=;DͯqCi1K^[` ,
+ Dv; MEF{~BR\ B;k!P0STϓ cg*ظU|V&>dTdܶuz?*Xъb>~PXm4t>[M~|`1̳ߚ/C=o$xmC:$C!6
+gzPwDM ]TOqPĹC,h_hE˗NTU). ,HyS?eft1-/<&UOU{BZA-9еOmtg
+
+ނSR@#^ܲ\j3p}X/?%VJzb];S19n+49Y
+ <0C,}AW:`3"<(U"8-,oi}3`זa&(`r@"
+q>Kؠ|Dۊ4j>K{Ls&s1gJa՝zv}̜7`WS3ܔJUngC6(3eoԎL9yS Oi) #:`V d'0Qz 5q(a˻@}P̞{%#ioxzT/XHY6wK _?*ۖSzOD" -:=٭z!wʼyJ~Cc_. j #<
+<
+}TwZ};DZDS<xnľ1WaU6)7
+M4f2Yu d!4DM6fQ%.qvc85'=xAsZ(x,(P{
+9 `߿. eFvVz05y/"b2% m
+c!2倆P<iMi?/S†'[1aWoYt6`CoJk.!&f6? G~OyוL6"!민PFsy}BȎr]?y?#(*G+iHruM1Uw~8&O).d)^٨TKDXaUɞKD'L
+ sq@)DLj3K|4хA#<W϶zBFS`B-|XdƐhܾ}S{$D|+wqj,t.n䯚/b`y䅟/4$, h^mw*rZS/E\T aTu!ibY ]=jD0;AXu= c!x\
+Ui@!d 3&cF|@V%MH~N5zx-w
+Sf-DW?
+ȺJ)-BDۭ:,׆hL Vju?(ng/w,~`\74bJ_#}GBpKBC'qH8ryH\Ҏ($b&R+c'.!ʼtzRtPNR%zX7Dl+kpi
+uCʊ(i"="u
+J]֡=w/oEQoߜ1K;H$q9n%' bOrL.d1f.0pkhKN,+g'ёdчl/7tTJ|F~Z2v?Sh)vNR@7˼ZvP7㈦w/'58ٶnjz*c
+a"tR4֐S!N/ A#?VؑeL0|7=bl%nU\?QnH}F3],[٣'
+endstream
+endobj
+1767 0 obj <<
+/Type /FontDescriptor
+/FontName /BZFYNM+NimbusMonL-Bold
+/Flags 4
+/FontBBox [-43 -278 681 871]
+/Ascent 624
+/CapHeight 552
+/Descent -126
+/ItalicAngle 0
+/StemV 101
+/XHeight 439
+/CharSet (/A/B/C/D/E/G/H/I/L/M/N/O/P/R/S/T/U/V/X/a/asterisk/b/bracketleft/bracketright/c/comma/d/e/equal/f/g/h/i/j/k/l/m/n/o/p/period/plus/q/r/s/semicolon/t/u/v/w/x/y/z)
+/FontFile 1766 0 R
+>> endobj
+1768 0 obj <<
+/Length1 1612
+/Length2 18029
+/Length3 0
+/Length 18858
+/Filter /FlateDecode
+>>
+stream
+xڬcg_%Z겍_ٶm۶.m۶mWWUm?̼ϝeD{\wĉCJL+hbod*foBH5ruU25w5B
+;XۉrMM
+73u2(Xd,MM)fN
+.N.YDΖ
++K?W^bcP;ڟRT+dv~'v+G%yr5NmCBlB+<;'K<y~"?ġΉAGïZA sqE㥗GJMi+`a!ϓ($vX~0#89J*ӌ;4p7gM4 ـ?rC1Ug[C8:U
+qH@;Z/LSgUH,;..yiI݈o޺\$Wש.S%аVdpZf$FKnR\ѳ*m
+sU ^$ٛ!7l/}] twUTk^"kI015U0`(zvK蘄hcB플^sB&T&Q ~Q<?>%J~`,Bkr6v0Dy3mvo+yslcjB~׻b8%E4zd,ݠ?O!da핊xEDs'M-̋b=PO*? "#QT0l-lgs5(͒rk4!wۊY\q1Ȯf1QXyV2ikbRk8G8f5Wht>M!%^ <Jْƒ\.7cI!"-2CRdy<ɞncA.j
+=G"JxY[Udq],@HMf@kR~gGdc%ybZGx -ժHUX=}c)ʜKUƌݢ'4_y=9AZ$̿Fבq
+/ҙkvRWdgS1ӭԟ-PE)w[hd/;*{Ėec[~x Av+w7
+Rfa8Kt $gr:k*gǢ#kcv/8&& pxIe+8,sY;#uZ B`j)H89By25H SBC^:1sl;} mfu;ҥ )Rm]ޙ&Qv *`Z9 s.)e1K[FEnʛ
+lN'*gC]49U1DfE . *;>j/ni0ifr7ըg\=Pu. įe)pvb/ՙZyMk1.^ 7i@m6X4~kQC㆟cu>q-T R3@ Q
+峽E>H`j*1a e47ǡ3si:;WBd[=m ߱92X_$Ќ։Wx'f,3XEED`+d<=mS=P&QA@JSǧ6^\9HX&1$W| $ nޯ*96cHNjݤDc P[סJE܅F'[2ߚ F=B4GGxea$9=sDZ.yUX80ng "Q.7%\=~`/{c rAG۸S2Y1,))[ CT`Ļ`WϖpLhfs,{7ғ v%ŝ23S
+s޾-/zslU L)*GKum>Ap4Džƙ}=ʦKHiV8v!dZsGt.\j2c 2Sl
+S+{M,7r'.lxV(61[BbaɨoVgc)밞 z[{5,R)"ϧsO&-;رIPJuAiնSzLėŹ `[Sa8w0z.4j u|}M_Y|Awvg[ŠYSO/h[ -[h>3Sus? Z˭9CW·*JƫW۳XfTM5B{I?E\3L=.jޑT z_, R^_o5(Lώ+BƱ
+4f_Dw^G LVQɟ:Msy,ZQ:* U[D9٦)NC4npv 'F3z ~~Pvg (,Ǒq٬ht e~G
+"+s
+^+]WMd/8[.miT}W);Ì)cN$Oqs\O(
+jvH$z,75KKj䧟X4<pgdɽ>(9XQqb}4zf3u82B7  J^l]&nӷW?rw5Hek@Iowe7KBчŨĭ4aYŴJ2 M4o8YiєB4써ɽ^6
+8~LBNF bIEsįQAM;ͅ#njٶ6Z~4*ȹ<t )EDy=JJ0cv`-Nbj:{8h<b2ڐF1)7_y?mh0/S%cF
+՟kUI{
+ڙ^U7xDaFZ4kn.X8uͬO,ryueP"
+7fX3'LIf9{S
+ۦ/xM 5α;L*yQ*V9s  ~2 (@#ea8vqVAk~zcpYFCr<Vy,F5b<&!pODc(1dk8(/2Ue?F@Fj&R]w<Dp[r}.MJe_18Rθ{@c]xciVk+5RZZz CN5+ x ڪ" ޒ覭[n*ŭui.+^Jd+>LD8Kxbr2>{bafziOQz*7<k<b/t6lr|y0Lw \ z;&H2~
+'gZY)0]c +N46OL9g,aAq eWV)ٚ[-LlrSkCOVm8H]=E_# oATBV)G<~0h?3HZnEL/Ì<i8Eȗv*%icE%x,Г.%#c w1En%DzBOyLl{`⦁e 󥩥ņLQom.1}V7j@<ZԇJlQYЃlP /~LrB)R}ǀte?L?s )
+%"?i: 5YZ 3f MlOvX
+n{@e8ϼ?Xwjͽ7.s,  e@-Uv7AXToaԝ|Ψ`q]1_5 L{݋ ܠ$B,%|Q{hL.PLQH;PJl]6(u]Ґ~Zs[W1NHes~Bpa-D&"
+]T qԵ\춓+0 !hA͓osbBM5dF!'ٿ4T8! @L?쒏ޱEgZiDGe;8?͹We2hacoq
+' ,z7
+?ǀ JПϜ֡z9Sc"<a<x[Iڭ[FNiC+,n'"x3"`,L AI+lEKJfjgc8ZQ&r%
+c9[?Ns2S^ױ`N!75 '.׈"a/t͵33S
+$B/4Pn-/ctw26Ruav+vFMi)ai(x53lo 9CQ0XUd{j+ë=GHa90TE8a5Z*i ᵮ (Vcrسl^>5D cgIȭRjg5e辽d+1ﯨAQJc?2x^7;h,@\aʋ;c~C͋"䨲t,3xeus˼oҋ)O;VE#SBW}ʠ5K)}~a}> #Q;Zg2sYDHR2%LV-y)E?7CA]1Q~\x.ELNvJqe
+a]6(޳Ҥv9.wǣCGp2F_X;<زBi}Nt<\Mj9;\z2+x{X j
+ܿs
+.g,67>8;J`j:<>,=Æi0ped={7Xk{brasUtYa#qD| ޶XK9WM7sHQ3+@<8]IoyӱF/^2
+🽃W`5=JBwJw\z\MK%[Lq|,B7Cl]2Ym;ӊu:%p<]xH3hSЎ\~F40OAEj*٧D]?AfQfLU /QN ]uG{'X
+(Y<;[+lv-XAǜL|h~BdLdJnǙ; "!x߰Dn֓RK7vGQJh5Ю{s ~*{Auƺ."cbذlbNʋ37K<t"=Vs)3&][3^gzYB ΍3 d5 fm
+Ҟ]T~<íH>Z8QdMYGbK^Rn"J84X}jTKI1W
+#qp X*@խ0,-lI[ZP=A
+pw'ԙ,u6>S}qDkZsBJ 䅮S&TR]u5~ jCds^0TcmU [4zM?-u]iWҸ"V΍Tݺi>EF^('UP)a8|/`EUkz^D\t'iw& -&0ORc6zA˚zEHrn7 Ӫ5JԎ O$Mv#Qx/'M*e9aq
+@QN[Afi*]܃{+a\+v"c`~!0P`T]kߓaQ^OE_nJ) HvI OLVh5ʔ?e _UK/n+4̷jEꨮ4ۃ?035itROT `hL;5øwd:qFI+h3Gр
+TޜA.Xʴ{E4-RܶJ$ htN-(*u7DM*rGmGķF*˰x.o;,7K =͛gi7$"$
+;OP'QѡXC[2?i2mZj1Zw[ N&ACtWZD' qW/"4Z>bF \<*Cȕ + %$T fߠVw͍zf8JUpm#Ix ǽսl)[ (QR;4RAk)e
+<y*}S͑
+w `C}RQ~V܊R?*SUREGfu@L\zTW(O;XZ4BHb*䪺M^ w$%.b&C*+^y52Gg+zYΡj 'Lydž` ,qrLFz,$rp
+nVY|e  4\/i,w B8
+ "v%fQJ7V:eX`쪆U>4-Y @{\be8*}y 76Aq[Ƃhr@2 %-VtSm3SrM!T.&!X%TT{˒6.dRcCq}/B zz]Mjtoe#Am`W"ab(s˽{)3FRŻ(o$v`<Y27LcQ,kY(9f [ (*R 4zȨ թD)`U*%" =j.zP+o+[Eus3MVE_4üB"@<z4"A%vkFI kLӠb"@+o'Ä,n~\#ZF2Ҋh8[흡7(+27gI3anL 9Ih3,ܷRM}_wHx5%E yV
++'$dECoЧ ғE(9E
+p).?xԢ7nF@Ԗ@GNj'R0~0.ڰb
+xEY\P*2~΢Na Cn0vT 8'CX ,*v]k.G(i)9|Ĩq$,H4z3+YCuGVcp, ~d螿^SA8N{B$p
+9SE
+Hx›?f[ 0[
+Y'A[a,-igF~fVD`< Ehn"2w#Ls5|8
+fjUFǢQZ,ұa4d\Tl+J D bA Ԭ!1p<wعq}p\䧧F"<v8"tH}e  FhgW oU7!#cH#t2bHjιI^b#5:]x3(M6ڧZU~I`9pXt8i"xbr̩l|nETy;'Po Qŧz#,*Nil"G'
+L`J+&1C:zT9 3y2e7Wɦx4?\'93!K=c!{h;{祎XV_')V
+:+~aXeu[  T+fT ɣGfW
+͏$)-3 Ս&8͵N15,Wgm?‰Zyj{Y\ EXzDyHmHI] Y07x剮E`kn,dSmv9{Zn74Fg`t{i^ǜX1;)2b<Bީ+X0 ?g*no_V\FmЖIsb6ǴKIErxWd·ne^BGL_tՎJG,BavU_hٕ^ l(2+I#]4BomBljgd NinzK½&vf>P/sBP3aj&j>k~.X .m)EJ,t)ڢ2k,4MS(}Nw>܋}W++E?}YrVFejP<ܔoSTW&1", ?R\ jHfG{
+pUS<JXLcxYF/9ngBF?h| Ro4E{&\ߝdTva`<=;Q.(:m@z{XMIAUE}"s|_z:>}u,qB83WAaj>k9Cl3oL {<G+C܎pMw(p֚{z~>eFSfr5MX{ *fyowBrμ@qb ܁z .q>Y4ͳA<1x
+I$kt-|JpNϗܸ{!9|x\Ʊ=Sq0h?;>d :N *\E2dR*` wtl 0.^U1-׳stedtH( 8m.NbBYRn:aKd䪌xrŢhtbKx^\`/ 11UT)l0c5>=f#BpW?_i ?}&oLn_hLVdIiܽ-_g4 <*<F+
+TZ$y{|h旛|YPN}k22X̨ÒѮl0H@9V~Ӈߏ%SHT׸.$gy[j*]Jɕx6|vcsA3Z4+=DJ<$q8aEr8e_[a%`S XFt ͢n0b>hڇk!) +:61Im;$$zcA)Q L/aEg/Cm>G|Q9CH?X ڒP5g3~#
+0g}<2`ݩ4D> 8\":M>4{:aEy>8eE
+K*"PG
+*J)+%e%x g7pi2֝z
+r.9O"g#]';Xx_Dx7,a’O.x-`/Еl*ZUC,d/puGOՑwKS/hzgg C\|_W`XJ%LG +=2ú"Ӑ.QTN3vxhicd.^U¨-P0(<u1es3
+y;Zs51wX n4
+nuU5Wz$am.Ȕ%Ea@&fVrd\3bIBhm1 ?ԧ9RjT'2
+![ q H[R?B*f |=Pك5,qy* n7wFA&39?1ϣ {w~<Jgl!Q+Ք$AUX`~p%QF'O"4ؔt&: Ib0~ٰ%5^o"cl®Xbik/Y'rZ9H /;?*
+
+JD)t&љ-[G޽\ [@ވ~dmm7O\{>{pOloe
+}
+ҡxPj{u<W頙>=Fוm&٨*莔(F`nvrZg t(4^G~PHUp?{8ZK[1?b3I}7uL]ߖ.z5 ""6d]
+vcl;z$̧s {dWLV.3X\~Hv,
+{nʓ Hu>*Ğ Y"A3'#OJ^xd4d_Zg\p8GC!$Jkk>XñMr QxrݞsmoO5=G8?b]I*/`>.z<; 9pmO$Kg
+D$<ߵ_ױƽk6Y&XGX8="컧$L[\N7iY`>w[+8kz.b.:+=ۭ2s مq5ĦxS߯d<,m k{޻QZ4azt JđV NL D(YMyNl6oPmOdậ3pLX};ytؒGNޡ9TO8m۲Y?nn ~,8qTEz{ž(A~STt5U[&C; ڜ:AE^O7.9h/~ _-zYrkCgIjZ/TNmBǺ`]=CܚAzMo؟:CثFn ԗ,1Ġfv:/0X>_,A/e*Viik)O3kʻ.n_0tW'!Q7ErBzJ495gCt提
+3.f\`,9&s= *"v]ح󳙡eq`$XW?QDяK :.b⢌tS;gF\li=7
+v\)gg,_j &ٻm⨝ŨB{3_w̑&7Y66tzcqF͑.H(SNG}4Q1{AZrȰX\-O?$Yv7zzYg!XNz%sFrˆ*P?zEDdL7v?D:ubΪWא4lOlhmގ})͆d#L`=eAQݐEvlHƭOi,
+mr|D6) _Yg 6<Ee`i8phvLJ{<}`% Gǀ<TJ{+:͘sX쏊m_+2X8V眊1
+?Ս$o<%-2}8)q8,~P_KW-8j?UjOPd P\ n;fIH͇/'?\b;^j
+endstream
+endobj
+1769 0 obj <<
+/Type /FontDescriptor
+/FontName /WWSEXD+NimbusMonL-Regu
+/Flags 4
+/FontBBox [-12 -237 650 811]
+/Ascent 625
+/CapHeight 557
+/Descent -147
+/ItalicAngle 0
+/StemV 41
+/XHeight 426
+/CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/X/a/ampersand/asterisk/b/backslash/bar/braceleft/braceright/bracketleft/bracketright/c/circumflex/colon/comma/d/dollar/e/eight/equal/exclam/f/five/four/g/greater/h/hyphen/i/j/k/l/m/n/nine/numbersign/o/one/p/parenleft/parenright/period/plus/q/question/quoteright/r/s/semicolon/seven/six/slash/t/three/tilde/two/u/underscore/v/w/x/y/z/zero)
+/FontFile 1768 0 R
+>> endobj
+1770 0 obj <<
+/Length1 1630
+/Length2 9606
+/Length3 0
+/Length 10447
+/Filter /FlateDecode
+>>
+stream
+xڭteX[5pwwN^w N. ݂K`-@{o~={}6-%P!Pw(jm=,
+-l"c
+
+w@X@=5+_ix]l hka^i^t_u[nnNyu9؃A@'6NטVض.(E1$,]]|@vUWkH
+w$#"3I%v:>^U'DŽUfMLbep & ̭jqgˀsǬA^
+Â\Fs,ҿ J}pp2F~se J= ˱"dE48u],>_R_ܳp;KN\`w\s]$s'hhӐv6L;0=VcOUc(
+FRs(@WJSShvyW-XE!{TΣf k|&>*> ?;*|sX=ʅRg{,;!NLC&E&?EEX#԰Ԏ$[oEDb(
+ЯbSz^5W=HŦzS`sH,-\77|GSʚ`UJ0
+˯ v8so;^0sF9Pxş-|HD߃֊3 FȪxTHMq5ʾZg~eDi^Y7g}):PakTUJ'v]5OG;(=Wl'sIN4KPP:/-ڎ|p('OSXmr%98 fi9_biϵ>--"mɛSN0? ?ma,`d>ug9'Lȧ#of
+
+xXu7%!HyDNcr>{B՝"T}ewaJX![p)f9Y\'M-a 9Go.}jxU Քn 9BQ] Fh0O#OQ``%m<.ۦ.Q\a"8us};Rh]qc9;}\F0/M27*[yYCP
+!oR02C-+DK%wrh1N2ɴwn"Tq2W <8ܷ精 B%{ҋE:nN.}#d"aݸk7%x:jwY E7X~t zwBbZFMĊQ8T]Tbrb,va:ofi$df8;sC3_Co#$V:lE9to
+
+m% =tJ&ȹڼʢU8
+aA\0nr$ơ>nT@m2MO#hQ&\
+SJ^~!Ȭ{ό;>Z.G؃y%n/̜s''=j+d10'I%򏲔6JUZO,&X G{BޫDҀ? Rڧ9;_g2^R_>tFM܁Xԉ, Wy`Q5 H b?Qks-d} G-p W-
+./orD6@:R- i^І*`%yi7NEެ
+dyy@ȣ/69`J,Z9)櫥[؉cb07Lӳλv|dAL_Q= kZpiB.91*f@aJݍ7_<Ғt Pd: ]X g rAilmo5\[M{;^On|MNYZ<"/JTsۘ3& _O
+ N
+9`
+#r`kS5RHJg*gKV|8\5=&wEJWMYG ՑW!$YtJ<ZQ ]G{4R(2o7xuHЖ/L>mV 4P]";` vO*Gfʨ[+ W}ԧdI37WPJ% "1",샐)A6(mct^ iN;_sID~{ф'HDJf!mt^S^'C/eI;R~$RiڌwܾlJij9,-"pDB{@<zO:RN`"ɼ]uook_~T]ϯr|8e?X0QV|k^v>R Sk/mSttVr0<H{#
+z?, HlEj AgEc V8y;+гJ= $.zwCZ6[ fUk4'TdD {윱PxuGT0uHS÷/~!`+óޛUuP!s+Or48ƕYB *ʠDhn#mgY[bj.AJ2RKP57KBC/⿘wh6B ;'
+*]j|_>oW*irt;skۂ@2Kׁy 4j95@=ԧ9DB(J33|O0 1ؾGzx%G94TW{2S[mdoiDz8IVjo30u 8?bUɲ,9Xo'\[;Y, @Ojb1Ka"J
+Pqq{r*)M4Mm~
+?;cC2g\FMD^
+ˡJۆ…_s>&m[M&Gdl[Ve[/x4KJRk׭ydTꍴۺFzn`POTZUĢIJ,
+̧sz>*e%=h =vK].=:4BjB樉`=lF&[V>zf5\UE6<3CIڎAGfq|!<qL&I},l ALҊ\IKZΐ\ʏ&H4_ *Nj 8}|da:eym&mh</ \[蒷;zӓ H7<߰e?o*^eqV?+.MeMؿ\f/QyL_C@-2Ņ A <souj#W
+!>#OoH,~oFqD7"vET (z@3ÇlyR#("Xp@|~ʓcm)Bw5oa@q$ܐmopO:QgOk*l?幔NNS:<u!0ÅsBJ%)y"g4tHOFeR3ԼkOAJ =Ď9MIoH(0;h<J6{IYaVxQ.\M je`0ɝ 7*M|tv\1}N<a&8&j*#;$ܲ +KG|U{e~Ż' 5YZ(jPEC+/N؎R?F
+ ]?8e{NfKQIpP{}i{$(w޶O# B5 kLC +|_C1ױ#y~޽lјR;BSMh:0
+|r(*%%Kh*r8UFaMx"H$
+UȕY) ߱{Nk&akC_?[Od1xੴ&?Z#PMJ7SI~Q{/)үC.'aFzU39&EWFгZGUM.Hó!> _Ymao5'|O%Ans\ScZӳľX5{8Z`tLՆ
+(SFUfT8Si
+Cy ¸c@(jG
+[r: ~]g+3 R.Է;jb՜6i%mH5!m6
+^H]nbfTr" Qsv(mwƻ%!_&@
+KMgi@P+1N>u
+mӼv0ae4HNnr%p/PIH
+`{%Ҥ `ȹS_Dq/%9Kϥ NJ(rT-`+n.g3椗I}vZ2PFbBES!Qws nth.iL;˝H~`j-*6^Q,xcUsܐ P,()Qu 88Rϛ ͳwt;dݭ2cJDZnP?A0 @iƖHKnӖNăVM%k3 "x: lߚ-b,
+Gd/+*w*ֽYک8-.WO]w(jo~ŎkMǰ<
+az9{Tzi֖U+^HrMwPluRTG.2"H9b-Q)Ӿ]f?6ZlOF:19DJ0àTv&V[fu#T={T
+AՈy1d
+ӡh%ٿ–栱ryX2YM͋㭭0hKGm+9_\OU6Nhr.nW]Up?$ƛ~(E5dxaZ{ J7cx%ƾ\e Ĉ:@admiO,%9,6&{L]~yA +Q^9*hX¯
+endstream
+endobj
+1771 0 obj <<
+/Type /FontDescriptor
+/FontName /SLVZEL+NimbusMonL-ReguObli
+/Flags 4
+/FontBBox [-61 -237 774 811]
+/Ascent 625
+/CapHeight 557
+/Descent -147
+/ItalicAngle -12
+/StemV 43
+/XHeight 426
+/CharSet (/a/backslash/braceleft/braceright/c/circumflex/colon/comma/d/e/f/g/h/hyphen/i/j/k/l/m/n/o/one/p/percent/period/r/s/t/two/u/v/w/x/y/zero)
+/FontFile 1770 0 R
+>> endobj
+1697 0 obj <<
+/Type /Encoding
+/Differences [33/exclam 35/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon 61/equal/greater/question 65/A/B/C/D/E/F/G/H/I 76/L/M/N/O/P 82/R/S/T/U/V 88/X 91/bracketleft/backslash/bracketright 95/underscore 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/braceleft/bar/braceright 136/circumflex 152/tilde]
+>> endobj
+1169 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /EGUQXT+CMBSY10
+/FontDescriptor 1717 0 R
+/FirstChar 110
+/LastChar 110
+/Widths 1693 0 R
+>> endobj
+398 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /DRJRAU+CMBX10
+/FontDescriptor 1719 0 R
+/FirstChar 11
+/LastChar 122
+/Widths 1708 0 R
+>> endobj
+396 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /PRMCVC+CMBX12
+/FontDescriptor 1721 0 R
+/FirstChar 12
+/LastChar 123
+/Widths 1709 0 R
+>> endobj
+394 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /EUWOLL+CMBX9
+/FontDescriptor 1723 0 R
+/FirstChar 65
+/LastChar 116
+/Widths 1711 0 R
+>> endobj
+1313 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /YZWRRW+CMCSC10
+/FontDescriptor 1725 0 R
+/FirstChar 68
+/LastChar 111
+/Widths 1689 0 R
+>> endobj
+1584 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /YQJSDJ+CMEX10
+/FontDescriptor 1727 0 R
+/FirstChar 88
+/LastChar 88
+/Widths 1687 0 R
+>> endobj
+497 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /IAJMMH+CMMI10
+/FontDescriptor 1729 0 R
+/FirstChar 22
+/LastChar 121
+/Widths 1701 0 R
+>> endobj
+1445 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /NSFTTR+CMMI12
+/FontDescriptor 1731 0 R
+/FirstChar 76
+/LastChar 100
+/Widths 1688 0 R
+>> endobj
+878 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /UPGFAJ+CMMI5
+/FontDescriptor 1733 0 R
+/FirstChar 120
+/LastChar 121
+/Widths 1695 0 R
+>> endobj
+479 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /OTPBEO+CMMI7
+/FontDescriptor 1735 0 R
+/FirstChar 58
+/LastChar 121
+/Widths 1703 0 R
+>> endobj
+1217 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /RNZDTL+CMMI8
+/FontDescriptor 1737 0 R
+/FirstChar 61
+/LastChar 120
+/Widths 1690 0 R
+>> endobj
+399 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /UMGXQW+CMR10
+/FontDescriptor 1739 0 R
+/FirstChar 11
+/LastChar 123
+/Widths 1707 0 R
+>> endobj
+392 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /BYLMUU+CMR12
+/FontDescriptor 1741 0 R
+/FirstChar 44
+/LastChar 127
+/Widths 1713 0 R
+>> endobj
+390 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /WANHEY+CMR17
+/FontDescriptor 1743 0 R
+/FirstChar 77
+/LastChar 117
+/Widths 1715 0 R
+>> endobj
+1185 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /KIBOMX+CMR6
+/FontDescriptor 1745 0 R
+/FirstChar 49
+/LastChar 120
+/Widths 1692 0 R
+>> endobj
+523 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /NWLFTQ+CMR7
+/FontDescriptor 1747 0 R
+/FirstChar 48
+/LastChar 120
+/Widths 1699 0 R
+>> endobj
+1187 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /HQZDBU+CMR8
+/FontDescriptor 1749 0 R
+/FirstChar 11
+/LastChar 121
+/Widths 1691 0 R
+>> endobj
+391 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /WWIZZI+CMR9
+/FontDescriptor 1751 0 R
+/FirstChar 39
+/LastChar 123
+/Widths 1714 0 R
+>> endobj
+452 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /QQQQIL+CMSY10
+/FontDescriptor 1753 0 R
+/FirstChar 0
+/LastChar 110
+/Widths 1704 0 R
+>> endobj
+401 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /GUOWTK+CMSY6
+/FontDescriptor 1755 0 R
+/FirstChar 3
+/LastChar 3
+/Widths 1705 0 R
+>> endobj
+624 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /PXBGHL+CMSY7
+/FontDescriptor 1757 0 R
+/FirstChar 0
+/LastChar 0
+/Widths 1696 0 R
+>> endobj
+393 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /XYBSMX+CMSY8
+/FontDescriptor 1759 0 R
+/FirstChar 0
+/LastChar 3
+/Widths 1712 0 R
+>> endobj
+480 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /JHINCU+CMTI10
+/FontDescriptor 1761 0 R
+/FirstChar 45
+/LastChar 122
+/Widths 1702 0 R
+>> endobj
+395 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /NGREAZ+CMTI9
+/FontDescriptor 1763 0 R
+/FirstChar 107
+/LastChar 107
+/Widths 1710 0 R
+>> endobj
+879 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /AICAWW+MSBM10
+/FontDescriptor 1765 0 R
+/FirstChar 90
+/LastChar 90
+/Widths 1694 0 R
+>> endobj
+517 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /BZFYNM+NimbusMonL-Bold
+/FontDescriptor 1767 0 R
+/FirstChar 42
+/LastChar 122
+/Widths 1700 0 R
+/Encoding 1697 0 R
+>> endobj
+400 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /WWSEXD+NimbusMonL-Regu
+/FontDescriptor 1769 0 R
+/FirstChar 33
+/LastChar 152
+/Widths 1706 0 R
+/Encoding 1697 0 R
+>> endobj
+539 0 obj <<
+/Type /Font
+/Subtype /Type1
+/BaseFont /SLVZEL+NimbusMonL-ReguObli
+/FontDescriptor 1771 0 R
+/FirstChar 37
+/LastChar 136
+/Widths 1698 0 R
+/Encoding 1697 0 R
+>> endobj
+402 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1772 0 R
+/Kids [362 0 R 449 0 R 476 0 R 488 0 R 520 0 R 533 0 R]
+>> endobj
+590 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1772 0 R
+/Kids [562 0 R 595 0 R 621 0 R 626 0 R 667 0 R 696 0 R]
+>> endobj
+770 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1772 0 R
+/Kids [736 0 R 774 0 R 784 0 R 805 0 R 827 0 R 840 0 R]
+>> endobj
+888 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1772 0 R
+/Kids [875 0 R 893 0 R 921 0 R 943 0 R 976 0 R 1008 0 R]
+>> endobj
+1057 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1772 0 R
+/Kids [1035 0 R 1061 0 R 1074 0 R 1110 0 R 1126 0 R 1166 0 R]
+>> endobj
+1201 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1772 0 R
+/Kids [1190 0 R 1205 0 R 1213 0 R 1221 0 R 1244 0 R 1269 0 R]
+>> endobj
+1308 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1773 0 R
+/Kids [1280 0 R 1310 0 R 1341 0 R 1371 0 R 1401 0 R 1429 0 R]
+>> endobj
+1477 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1773 0 R
+/Kids [1447 0 R 1479 0 R 1494 0 R 1525 0 R 1556 0 R 1581 0 R]
+>> endobj
+1636 0 obj <<
+/Type /Pages
+/Count 4
+/Parent 1773 0 R
+/Kids [1586 0 R 1639 0 R 1667 0 R 1674 0 R]
+>> endobj
+1772 0 obj <<
+/Type /Pages
+/Count 36
+/Parent 1774 0 R
+/Kids [402 0 R 590 0 R 770 0 R 888 0 R 1057 0 R 1201 0 R]
+>> endobj
+1773 0 obj <<
+/Type /Pages
+/Count 16
+/Parent 1774 0 R
+/Kids [1308 0 R 1477 0 R 1636 0 R]
+>> endobj
+1774 0 obj <<
+/Type /Pages
+/Count 52
+/Kids [1772 0 R 1773 0 R]
+>> endobj
+1775 0 obj <<
+/Type /Outlines
+/First 7 0 R
+/Last 347 0 R
+/Count 7
+>> endobj
+359 0 obj <<
+/Title 360 0 R
+/A 357 0 R
+/Parent 347 0 R
+/Prev 355 0 R
+>> endobj
+355 0 obj <<
+/Title 356 0 R
+/A 353 0 R
+/Parent 347 0 R
+/Prev 351 0 R
+/Next 359 0 R
+>> endobj
+351 0 obj <<
+/Title 352 0 R
+/A 349 0 R
+/Parent 347 0 R
+/Next 355 0 R
+>> endobj
+347 0 obj <<
+/Title 348 0 R
+/A 345 0 R
+/Parent 1775 0 R
+/Prev 267 0 R
+/First 351 0 R
+/Last 359 0 R
+/Count -3
+>> endobj
+343 0 obj <<
+/Title 344 0 R
+/A 341 0 R
+/Parent 267 0 R
+/Prev 339 0 R
+>> endobj
+339 0 obj <<
+/Title 340 0 R
+/A 337 0 R
+/Parent 267 0 R
+/Prev 335 0 R
+/Next 343 0 R
+>> endobj
+335 0 obj <<
+/Title 336 0 R
+/A 333 0 R
+/Parent 267 0 R
+/Prev 323 0 R
+/Next 339 0 R
+>> endobj
+331 0 obj <<
+/Title 332 0 R
+/A 329 0 R
+/Parent 323 0 R
+/Prev 327 0 R
+>> endobj
+327 0 obj <<
+/Title 328 0 R
+/A 325 0 R
+/Parent 323 0 R
+/Next 331 0 R
+>> endobj
+323 0 obj <<
+/Title 324 0 R
+/A 321 0 R
+/Parent 267 0 R
+/Prev 311 0 R
+/Next 335 0 R
+/First 327 0 R
+/Last 331 0 R
+/Count -2
+>> endobj
+319 0 obj <<
+/Title 320 0 R
+/A 317 0 R
+/Parent 311 0 R
+/Prev 315 0 R
+>> endobj
+315 0 obj <<
+/Title 316 0 R
+/A 313 0 R
+/Parent 311 0 R
+/Next 319 0 R
+>> endobj
+311 0 obj <<
+/Title 312 0 R
+/A 309 0 R
+/Parent 267 0 R
+/Prev 299 0 R
+/Next 323 0 R
+/First 315 0 R
+/Last 319 0 R
+/Count -2
+>> endobj
+307 0 obj <<
+/Title 308 0 R
+/A 305 0 R
+/Parent 299 0 R
+/Prev 303 0 R
+>> endobj
+303 0 obj <<
+/Title 304 0 R
+/A 301 0 R
+/Parent 299 0 R
+/Next 307 0 R
+>> endobj
+299 0 obj <<
+/Title 300 0 R
+/A 297 0 R
+/Parent 267 0 R
+/Prev 295 0 R
+/Next 311 0 R
+/First 303 0 R
+/Last 307 0 R
+/Count -2
+>> endobj
+295 0 obj <<
+/Title 296 0 R
+/A 293 0 R
+/Parent 267 0 R
+/Prev 271 0 R
+/Next 299 0 R
+>> endobj
+291 0 obj <<
+/Title 292 0 R
+/A 289 0 R
+/Parent 271 0 R
+/Prev 287 0 R
+>> endobj
+287 0 obj <<
+/Title 288 0 R
+/A 285 0 R
+/Parent 271 0 R
+/Prev 283 0 R
+/Next 291 0 R
+>> endobj
+283 0 obj <<
+/Title 284 0 R
+/A 281 0 R
+/Parent 271 0 R
+/Prev 279 0 R
+/Next 287 0 R
+>> endobj
+279 0 obj <<
+/Title 280 0 R
+/A 277 0 R
+/Parent 271 0 R
+/Prev 275 0 R
+/Next 283 0 R
+>> endobj
+275 0 obj <<
+/Title 276 0 R
+/A 273 0 R
+/Parent 271 0 R
+/Next 279 0 R
+>> endobj
+271 0 obj <<
+/Title 272 0 R
+/A 269 0 R
+/Parent 267 0 R
+/Next 295 0 R
+/First 275 0 R
+/Last 291 0 R
+/Count -5
+>> endobj
+267 0 obj <<
+/Title 268 0 R
+/A 265 0 R
+/Parent 1775 0 R
+/Prev 75 0 R
+/Next 347 0 R
+/First 271 0 R
+/Last 343 0 R
+/Count -8
+>> endobj
+263 0 obj <<
+/Title 264 0 R
+/A 261 0 R
+/Parent 75 0 R
+/Prev 259 0 R
+>> endobj
+259 0 obj <<
+/Title 260 0 R
+/A 257 0 R
+/Parent 75 0 R
+/Prev 143 0 R
+/Next 263 0 R
+>> endobj
+255 0 obj <<
+/Title 256 0 R
+/A 253 0 R
+/Parent 143 0 R
+/Prev 251 0 R
+>> endobj
+251 0 obj <<
+/Title 252 0 R
+/A 249 0 R
+/Parent 143 0 R
+/Prev 247 0 R
+/Next 255 0 R
+>> endobj
+247 0 obj <<
+/Title 248 0 R
+/A 245 0 R
+/Parent 143 0 R
+/Prev 243 0 R
+/Next 251 0 R
+>> endobj
+243 0 obj <<
+/Title 244 0 R
+/A 241 0 R
+/Parent 143 0 R
+/Prev 239 0 R
+/Next 247 0 R
+>> endobj
+239 0 obj <<
+/Title 240 0 R
+/A 237 0 R
+/Parent 143 0 R
+/Prev 235 0 R
+/Next 243 0 R
+>> endobj
+235 0 obj <<
+/Title 236 0 R
+/A 233 0 R
+/Parent 143 0 R
+/Prev 231 0 R
+/Next 239 0 R
+>> endobj
+231 0 obj <<
+/Title 232 0 R
+/A 229 0 R
+/Parent 143 0 R
+/Prev 227 0 R
+/Next 235 0 R
+>> endobj
+227 0 obj <<
+/Title 228 0 R
+/A 225 0 R
+/Parent 143 0 R
+/Prev 223 0 R
+/Next 231 0 R
+>> endobj
+223 0 obj <<
+/Title 224 0 R
+/A 221 0 R
+/Parent 143 0 R
+/Prev 219 0 R
+/Next 227 0 R
+>> endobj
+219 0 obj <<
+/Title 220 0 R
+/A 217 0 R
+/Parent 143 0 R
+/Prev 215 0 R
+/Next 223 0 R
+>> endobj
+215 0 obj <<
+/Title 216 0 R
+/A 213 0 R
+/Parent 143 0 R
+/Prev 211 0 R
+/Next 219 0 R
+>> endobj
+211 0 obj <<
+/Title 212 0 R
+/A 209 0 R
+/Parent 143 0 R
+/Prev 207 0 R
+/Next 215 0 R
+>> endobj
+207 0 obj <<
+/Title 208 0 R
+/A 205 0 R
+/Parent 143 0 R
+/Prev 203 0 R
+/Next 211 0 R
+>> endobj
+203 0 obj <<
+/Title 204 0 R
+/A 201 0 R
+/Parent 143 0 R
+/Prev 199 0 R
+/Next 207 0 R
+>> endobj
+199 0 obj <<
+/Title 200 0 R
+/A 197 0 R
+/Parent 143 0 R
+/Prev 195 0 R
+/Next 203 0 R
+>> endobj
+195 0 obj <<
+/Title 196 0 R
+/A 193 0 R
+/Parent 143 0 R
+/Prev 191 0 R
+/Next 199 0 R
+>> endobj
+191 0 obj <<
+/Title 192 0 R
+/A 189 0 R
+/Parent 143 0 R
+/Prev 187 0 R
+/Next 195 0 R
+>> endobj
+187 0 obj <<
+/Title 188 0 R
+/A 185 0 R
+/Parent 143 0 R
+/Prev 183 0 R
+/Next 191 0 R
+>> endobj
+183 0 obj <<
+/Title 184 0 R
+/A 181 0 R
+/Parent 143 0 R
+/Prev 179 0 R
+/Next 187 0 R
+>> endobj
+179 0 obj <<
+/Title 180 0 R
+/A 177 0 R
+/Parent 143 0 R
+/Prev 175 0 R
+/Next 183 0 R
+>> endobj
+175 0 obj <<
+/Title 176 0 R
+/A 173 0 R
+/Parent 143 0 R
+/Prev 171 0 R
+/Next 179 0 R
+>> endobj
+171 0 obj <<
+/Title 172 0 R
+/A 169 0 R
+/Parent 143 0 R
+/Prev 167 0 R
+/Next 175 0 R
+>> endobj
+167 0 obj <<
+/Title 168 0 R
+/A 165 0 R
+/Parent 143 0 R
+/Prev 163 0 R
+/Next 171 0 R
+>> endobj
+163 0 obj <<
+/Title 164 0 R
+/A 161 0 R
+/Parent 143 0 R
+/Prev 159 0 R
+/Next 167 0 R
+>> endobj
+159 0 obj <<
+/Title 160 0 R
+/A 157 0 R
+/Parent 143 0 R
+/Prev 155 0 R
+/Next 163 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 75 0 R
+/Prev 139 0 R
+/Next 259 0 R
+/First 147 0 R
+/Last 255 0 R
+/Count -28
+>> endobj
+139 0 obj <<
+/Title 140 0 R
+/A 137 0 R
+/Parent 75 0 R
+/Prev 135 0 R
+/Next 143 0 R
+>> endobj
+135 0 obj <<
+/Title 136 0 R
+/A 133 0 R
+/Parent 75 0 R
+/Prev 131 0 R
+/Next 139 0 R
+>> endobj
+131 0 obj <<
+/Title 132 0 R
+/A 129 0 R
+/Parent 75 0 R
+/Prev 127 0 R
+/Next 135 0 R
+>> endobj
+127 0 obj <<
+/Title 128 0 R
+/A 125 0 R
+/Parent 75 0 R
+/Prev 123 0 R
+/Next 131 0 R
+>> endobj
+123 0 obj <<
+/Title 124 0 R
+/A 121 0 R
+/Parent 75 0 R
+/Prev 115 0 R
+/Next 127 0 R
+>> endobj
+119 0 obj <<
+/Title 120 0 R
+/A 117 0 R
+/Parent 115 0 R
+>> endobj
+115 0 obj <<
+/Title 116 0 R
+/A 113 0 R
+/Parent 75 0 R
+/Prev 111 0 R
+/Next 123 0 R
+/First 119 0 R
+/Last 119 0 R
+/Count -1
+>> endobj
+111 0 obj <<
+/Title 112 0 R
+/A 109 0 R
+/Parent 75 0 R
+/Prev 107 0 R
+/Next 115 0 R
+>> endobj
+107 0 obj <<
+/Title 108 0 R
+/A 105 0 R
+/Parent 75 0 R
+/Prev 103 0 R
+/Next 111 0 R
+>> endobj
+103 0 obj <<
+/Title 104 0 R
+/A 101 0 R
+/Parent 75 0 R
+/Prev 99 0 R
+/Next 107 0 R
+>> endobj
+99 0 obj <<
+/Title 100 0 R
+/A 97 0 R
+/Parent 75 0 R
+/Prev 95 0 R
+/Next 103 0 R
+>> endobj
+95 0 obj <<
+/Title 96 0 R
+/A 93 0 R
+/Parent 75 0 R
+/Prev 83 0 R
+/Next 99 0 R
+>> endobj
+91 0 obj <<
+/Title 92 0 R
+/A 89 0 R
+/Parent 83 0 R
+/Prev 87 0 R
+>> endobj
+87 0 obj <<
+/Title 88 0 R
+/A 85 0 R
+/Parent 83 0 R
+/Next 91 0 R
+>> endobj
+83 0 obj <<
+/Title 84 0 R
+/A 81 0 R
+/Parent 75 0 R
+/Prev 79 0 R
+/Next 95 0 R
+/First 87 0 R
+/Last 91 0 R
+/Count -2
+>> endobj
+79 0 obj <<
+/Title 80 0 R
+/A 77 0 R
+/Parent 75 0 R
+/Next 83 0 R
+>> endobj
+75 0 obj <<
+/Title 76 0 R
+/A 73 0 R
+/Parent 1775 0 R
+/Prev 51 0 R
+/Next 267 0 R
+/First 79 0 R
+/Last 263 0 R
+/Count -16
+>> endobj
+71 0 obj <<
+/Title 72 0 R
+/A 69 0 R
+/Parent 51 0 R
+/Prev 67 0 R
+>> endobj
+67 0 obj <<
+/Title 68 0 R
+/A 65 0 R
+/Parent 51 0 R
+/Prev 63 0 R
+/Next 71 0 R
+>> endobj
+63 0 obj <<
+/Title 64 0 R
+/A 61 0 R
+/Parent 51 0 R
+/Prev 59 0 R
+/Next 67 0 R
+>> endobj
+59 0 obj <<
+/Title 60 0 R
+/A 57 0 R
+/Parent 51 0 R
+/Prev 55 0 R
+/Next 63 0 R
+>> endobj
+55 0 obj <<
+/Title 56 0 R
+/A 53 0 R
+/Parent 51 0 R
+/Next 59 0 R
+>> endobj
+51 0 obj <<
+/Title 52 0 R
+/A 49 0 R
+/Parent 1775 0 R
+/Prev 15 0 R
+/Next 75 0 R
+/First 55 0 R
+/Last 71 0 R
+/Count -5
+>> endobj
+47 0 obj <<
+/Title 48 0 R
+/A 45 0 R
+/Parent 15 0 R
+/Prev 43 0 R
+>> endobj
+43 0 obj <<
+/Title 44 0 R
+/A 41 0 R
+/Parent 15 0 R
+/Prev 39 0 R
+/Next 47 0 R
+>> endobj
+39 0 obj <<
+/Title 40 0 R
+/A 37 0 R
+/Parent 15 0 R
+/Prev 35 0 R
+/Next 43 0 R
+>> endobj
+35 0 obj <<
+/Title 36 0 R
+/A 33 0 R
+/Parent 15 0 R
+/Prev 31 0 R
+/Next 39 0 R
+>> endobj
+31 0 obj <<
+/Title 32 0 R
+/A 29 0 R
+/Parent 15 0 R
+/Prev 27 0 R
+/Next 35 0 R
+>> endobj
+27 0 obj <<
+/Title 28 0 R
+/A 25 0 R
+/Parent 15 0 R
+/Prev 23 0 R
+/Next 31 0 R
+>> endobj
+23 0 obj <<
+/Title 24 0 R
+/A 21 0 R
+/Parent 15 0 R
+/Prev 19 0 R
+/Next 27 0 R
+>> endobj
+19 0 obj <<
+/Title 20 0 R
+/A 17 0 R
+/Parent 15 0 R
+/Next 23 0 R
+>> endobj
+15 0 obj <<
+/Title 16 0 R
+/A 13 0 R
+/Parent 1775 0 R
+/Prev 11 0 R
+/Next 51 0 R
+/First 19 0 R
+/Last 47 0 R
+/Count -8
+>> endobj
+11 0 obj <<
+/Title 12 0 R
+/A 9 0 R
+/Parent 1775 0 R
+/Prev 7 0 R
+/Next 15 0 R
+>> endobj
+7 0 obj <<
+/Title 8 0 R
+/A 5 0 R
+/Parent 1775 0 R
+/Next 11 0 R
+>> endobj
+1776 0 obj <<
+/Names [(Doc-Start) 389 0 R (Hfootnote.1) 1186 0 R (Hfootnote.2) 1216 0 R (Hfootnote.3) 1218 0 R (Hfootnote.4) 1242 0 R (Item.1) 481 0 R]
+/Limits [(Doc-Start) (Item.1)]
+>> endobj
+1777 0 obj <<
+/Names [(Item.10) 798 0 R (Item.11) 800 0 R (Item.12) 801 0 R (Item.13) 808 0 R (Item.14) 809 0 R (Item.15) 811 0 R]
+/Limits [(Item.10) (Item.15)]
+>> endobj
+1778 0 obj <<
+/Names [(Item.16) 812 0 R (Item.17) 813 0 R (Item.18) 814 0 R (Item.19) 816 0 R (Item.2) 483 0 R (Item.20) 817 0 R]
+/Limits [(Item.16) (Item.20)]
+>> endobj
+1779 0 obj <<
+/Names [(Item.21) 818 0 R (Item.22) 880 0 R (Item.23) 881 0 R (Item.24) 992 0 R (Item.25) 994 0 R (Item.26) 995 0 R]
+/Limits [(Item.21) (Item.26)]
+>> endobj
+1780 0 obj <<
+/Names [(Item.27) 996 0 R (Item.28) 998 0 R (Item.29) 999 0 R (Item.3) 492 0 R (Item.30) 1000 0 R (Item.31) 1001 0 R]
+/Limits [(Item.27) (Item.31)]
+>> endobj
+1781 0 obj <<
+/Names [(Item.32) 1002 0 R (Item.33) 1003 0 R (Item.34) 1004 0 R (Item.35) 1670 0 R (Item.36) 1677 0 R (Item.4) 493 0 R]
+/Limits [(Item.32) (Item.4)]
+>> endobj
+1782 0 obj <<
+/Names [(Item.5) 494 0 R (Item.6) 793 0 R (Item.7) 795 0 R (Item.8) 796 0 R (Item.9) 797 0 R (cite.tikz) 559 0 R]
+/Limits [(Item.5) (cite.tikz)]
+>> endobj
+1783 0 obj <<
+/Names [(figure.1) 560 0 R (figure.10) 924 0 R (figure.11) 1072 0 R (figure.12) 1138 0 R (figure.13) 1579 0 R (figure.14) 1642 0 R]
+/Limits [(figure.1) (figure.14)]
+>> endobj
+1784 0 obj <<
+/Names [(figure.2) 591 0 R (figure.3) 618 0 R (figure.4) 619 0 R (figure.5) 670 0 R (figure.6) 699 0 R (figure.7) 745 0 R]
+/Limits [(figure.2) (figure.7)]
+>> endobj
+1785 0 obj <<
+/Names [(figure.8) 771 0 R (figure.9) 772 0 R (lstlisting.-1) 482 0 R (lstlisting.-10) 565 0 R (lstlisting.-11) 601 0 R (lstlisting.-12) 615 0 R]
+/Limits [(figure.8) (lstlisting.-12)]
+>> endobj
+1786 0 obj <<
+/Names [(lstlisting.-13) 657 0 R (lstlisting.-14) 661 0 R (lstlisting.-15) 681 0 R (lstlisting.-16) 739 0 R (lstlisting.-17) 777 0 R (lstlisting.-18) 787 0 R]
+/Limits [(lstlisting.-13) (lstlisting.-18)]
+>> endobj
+1787 0 obj <<
+/Names [(lstlisting.-19) 794 0 R (lstlisting.-2) 491 0 R (lstlisting.-20) 799 0 R (lstlisting.-21) 810 0 R (lstlisting.-22) 815 0 R (lstlisting.-23) 819 0 R]
+/Limits [(lstlisting.-19) (lstlisting.-23)]
+>> endobj
+1788 0 obj <<
+/Names [(lstlisting.-24) 830 0 R (lstlisting.-25) 843 0 R (lstlisting.-26) 849 0 R (lstlisting.-27) 855 0 R (lstlisting.-28) 857 0 R (lstlisting.-29) 859 0 R]
+/Limits [(lstlisting.-24) (lstlisting.-29)]
+>> endobj
+1789 0 obj <<
+/Names [(lstlisting.-3) 495 0 R (lstlisting.-30) 882 0 R (lstlisting.-31) 884 0 R (lstlisting.-32) 886 0 R (lstlisting.-33) 896 0 R (lstlisting.-34) 900 0 R]
+/Limits [(lstlisting.-3) (lstlisting.-34)]
+>> endobj
+1790 0 obj <<
+/Names [(lstlisting.-35) 905 0 R (lstlisting.-36) 931 0 R (lstlisting.-37) 939 0 R (lstlisting.-38) 946 0 R (lstlisting.-39) 950 0 R (lstlisting.-4) 498 0 R]
+/Limits [(lstlisting.-35) (lstlisting.-4)]
+>> endobj
+1791 0 obj <<
+/Names [(lstlisting.-40) 954 0 R (lstlisting.-41) 960 0 R (lstlisting.-42) 967 0 R (lstlisting.-43) 971 0 R (lstlisting.-44) 979 0 R (lstlisting.-45) 990 0 R]
+/Limits [(lstlisting.-40) (lstlisting.-45)]
+>> endobj
+1792 0 obj <<
+/Names [(lstlisting.-46) 993 0 R (lstlisting.-47) 997 0 R (lstlisting.-48) 1005 0 R (lstlisting.-49) 1011 0 R (lstlisting.-5) 515 0 R (lstlisting.-50) 1017 0 R]
+/Limits [(lstlisting.-46) (lstlisting.-50)]
+>> endobj
+1793 0 obj <<
+/Names [(lstlisting.-51) 1019 0 R (lstlisting.-52) 1028 0 R (lstlisting.-53) 1038 0 R (lstlisting.-54) 1040 0 R (lstlisting.-55) 1047 0 R (lstlisting.-56) 1064 0 R]
+/Limits [(lstlisting.-51) (lstlisting.-56)]
+>> endobj
+1794 0 obj <<
+/Names [(lstlisting.-57) 1068 0 R (lstlisting.-58) 1070 0 R (lstlisting.-59) 1077 0 R (lstlisting.-6) 524 0 R (lstlisting.-60) 1114 0 R (lstlisting.-61) 1117 0 R]
+/Limits [(lstlisting.-57) (lstlisting.-61)]
+>> endobj
+1795 0 obj <<
+/Names [(lstlisting.-62) 1120 0 R (lstlisting.-63) 1122 0 R (lstlisting.-64) 1139 0 R (lstlisting.-65) 1129 0 R (lstlisting.-66) 1170 0 R (lstlisting.-67) 1179 0 R]
+/Limits [(lstlisting.-62) (lstlisting.-67)]
+>> endobj
+1796 0 obj <<
+/Names [(lstlisting.-68) 1181 0 R (lstlisting.-69) 1183 0 R (lstlisting.-7) 526 0 R (lstlisting.-70) 1193 0 R (lstlisting.-71) 1197 0 R (lstlisting.-72) 1224 0 R]
+/Limits [(lstlisting.-68) (lstlisting.-72)]
+>> endobj
+1797 0 obj <<
+/Names [(lstlisting.-73) 1230 0 R (lstlisting.-74) 1236 0 R (lstlisting.-75) 1247 0 R (lstlisting.-76) 1253 0 R (lstlisting.-77) 1259 0 R (lstlisting.-78) 1275 0 R]
+/Limits [(lstlisting.-73) (lstlisting.-78)]
+>> endobj
+1798 0 obj <<
+/Names [(lstlisting.-79) 1283 0 R (lstlisting.-8) 536 0 R (lstlisting.-80) 1314 0 R (lstlisting.-81) 1344 0 R (lstlisting.-82) 1374 0 R (lstlisting.-83) 1404 0 R]
+/Limits [(lstlisting.-79) (lstlisting.-83)]
+>> endobj
+1799 0 obj <<
+/Names [(lstlisting.-84) 1432 0 R (lstlisting.-85) 1450 0 R (lstlisting.-86) 1460 0 R (lstlisting.-87) 1482 0 R (lstlisting.-88) 1497 0 R (lstlisting.-89) 1507 0 R]
+/Limits [(lstlisting.-84) (lstlisting.-89)]
+>> endobj
+1800 0 obj <<
+/Names [(lstlisting.-9) 542 0 R (lstlisting.-90) 1540 0 R (lstlisting.-91) 1570 0 R (lstlisting.-92) 1646 0 R (lstlisting.-93) 1678 0 R (lstlisting.-94) 1680 0 R]
+/Limits [(lstlisting.-9) (lstlisting.-94)]
+>> endobj
+1801 0 obj <<
+/Names [(lstlisting.-95) 1682 0 R (lstnumber.-10.1) 566 0 R (lstnumber.-10.10) 575 0 R (lstnumber.-10.11) 576 0 R (lstnumber.-10.12) 577 0 R (lstnumber.-10.13) 578 0 R]
+/Limits [(lstlisting.-95) (lstnumber.-10.13)]
+>> endobj
+1802 0 obj <<
+/Names [(lstnumber.-10.14) 579 0 R (lstnumber.-10.15) 580 0 R (lstnumber.-10.16) 581 0 R (lstnumber.-10.17) 582 0 R (lstnumber.-10.18) 583 0 R (lstnumber.-10.19) 584 0 R]
+/Limits [(lstnumber.-10.14) (lstnumber.-10.19)]
+>> endobj
+1803 0 obj <<
+/Names [(lstnumber.-10.2) 567 0 R (lstnumber.-10.20) 585 0 R (lstnumber.-10.21) 586 0 R (lstnumber.-10.22) 587 0 R (lstnumber.-10.23) 588 0 R (lstnumber.-10.24) 589 0 R]
+/Limits [(lstnumber.-10.2) (lstnumber.-10.24)]
+>> endobj
+1804 0 obj <<
+/Names [(lstnumber.-10.25) 598 0 R (lstnumber.-10.26) 599 0 R (lstnumber.-10.27) 600 0 R (lstnumber.-10.3) 568 0 R (lstnumber.-10.4) 569 0 R (lstnumber.-10.5) 570 0 R]
+/Limits [(lstnumber.-10.25) (lstnumber.-10.5)]
+>> endobj
+1805 0 obj <<
+/Names [(lstnumber.-10.6) 571 0 R (lstnumber.-10.7) 572 0 R (lstnumber.-10.8) 573 0 R (lstnumber.-10.9) 574 0 R (lstnumber.-11.1) 602 0 R (lstnumber.-11.10) 611 0 R]
+/Limits [(lstnumber.-10.6) (lstnumber.-11.10)]
+>> endobj
+1806 0 obj <<
+/Names [(lstnumber.-11.11) 612 0 R (lstnumber.-11.12) 613 0 R (lstnumber.-11.13) 614 0 R (lstnumber.-11.2) 603 0 R (lstnumber.-11.3) 604 0 R (lstnumber.-11.4) 605 0 R]
+/Limits [(lstnumber.-11.11) (lstnumber.-11.4)]
+>> endobj
+1807 0 obj <<
+/Names [(lstnumber.-11.5) 606 0 R (lstnumber.-11.6) 607 0 R (lstnumber.-11.7) 608 0 R (lstnumber.-11.8) 609 0 R (lstnumber.-11.9) 610 0 R (lstnumber.-12.1) 616 0 R]
+/Limits [(lstnumber.-11.5) (lstnumber.-12.1)]
+>> endobj
+1808 0 obj <<
+/Names [(lstnumber.-12.10) 636 0 R (lstnumber.-12.11) 637 0 R (lstnumber.-12.12) 638 0 R (lstnumber.-12.13) 639 0 R (lstnumber.-12.14) 640 0 R (lstnumber.-12.15) 641 0 R]
+/Limits [(lstnumber.-12.10) (lstnumber.-12.15)]
+>> endobj
+1809 0 obj <<
+/Names [(lstnumber.-12.16) 642 0 R (lstnumber.-12.17) 643 0 R (lstnumber.-12.18) 644 0 R (lstnumber.-12.19) 645 0 R (lstnumber.-12.2) 617 0 R (lstnumber.-12.20) 646 0 R]
+/Limits [(lstnumber.-12.16) (lstnumber.-12.20)]
+>> endobj
+1810 0 obj <<
+/Names [(lstnumber.-12.21) 647 0 R (lstnumber.-12.22) 648 0 R (lstnumber.-12.23) 649 0 R (lstnumber.-12.24) 650 0 R (lstnumber.-12.25) 651 0 R (lstnumber.-12.26) 652 0 R]
+/Limits [(lstnumber.-12.21) (lstnumber.-12.26)]
+>> endobj
+1811 0 obj <<
+/Names [(lstnumber.-12.27) 653 0 R (lstnumber.-12.28) 654 0 R (lstnumber.-12.29) 655 0 R (lstnumber.-12.3) 629 0 R (lstnumber.-12.30) 656 0 R (lstnumber.-12.4) 630 0 R]
+/Limits [(lstnumber.-12.27) (lstnumber.-12.4)]
+>> endobj
+1812 0 obj <<
+/Names [(lstnumber.-12.5) 631 0 R (lstnumber.-12.6) 632 0 R (lstnumber.-12.7) 633 0 R (lstnumber.-12.8) 634 0 R (lstnumber.-12.9) 635 0 R (lstnumber.-13.1) 658 0 R]
+/Limits [(lstnumber.-12.5) (lstnumber.-13.1)]
+>> endobj
+1813 0 obj <<
+/Names [(lstnumber.-13.2) 659 0 R (lstnumber.-13.3) 660 0 R (lstnumber.-14.1) 662 0 R (lstnumber.-14.10) 677 0 R (lstnumber.-14.11) 678 0 R (lstnumber.-14.12) 679 0 R]
+/Limits [(lstnumber.-13.2) (lstnumber.-14.12)]
+>> endobj
+1814 0 obj <<
+/Names [(lstnumber.-14.13) 680 0 R (lstnumber.-14.2) 663 0 R (lstnumber.-14.3) 664 0 R (lstnumber.-14.4) 671 0 R (lstnumber.-14.5) 672 0 R (lstnumber.-14.6) 673 0 R]
+/Limits [(lstnumber.-14.13) (lstnumber.-14.6)]
+>> endobj
+1815 0 obj <<
+/Names [(lstnumber.-14.7) 674 0 R (lstnumber.-14.8) 675 0 R (lstnumber.-14.9) 676 0 R (lstnumber.-15.1) 682 0 R (lstnumber.-15.10) 691 0 R (lstnumber.-15.11) 692 0 R]
+/Limits [(lstnumber.-14.7) (lstnumber.-15.11)]
+>> endobj
+1816 0 obj <<
+/Names [(lstnumber.-15.12) 693 0 R (lstnumber.-15.13) 694 0 R (lstnumber.-15.14) 700 0 R (lstnumber.-15.15) 701 0 R (lstnumber.-15.16) 702 0 R (lstnumber.-15.17) 703 0 R]
+/Limits [(lstnumber.-15.12) (lstnumber.-15.17)]
+>> endobj
+1817 0 obj <<
+/Names [(lstnumber.-15.18) 704 0 R (lstnumber.-15.19) 705 0 R (lstnumber.-15.2) 683 0 R (lstnumber.-15.20) 706 0 R (lstnumber.-15.21) 707 0 R (lstnumber.-15.22) 708 0 R]
+/Limits [(lstnumber.-15.18) (lstnumber.-15.22)]
+>> endobj
+1818 0 obj <<
+/Names [(lstnumber.-15.23) 709 0 R (lstnumber.-15.24) 710 0 R (lstnumber.-15.25) 711 0 R (lstnumber.-15.26) 712 0 R (lstnumber.-15.27) 713 0 R (lstnumber.-15.28) 714 0 R]
+/Limits [(lstnumber.-15.23) (lstnumber.-15.28)]
+>> endobj
+1819 0 obj <<
+/Names [(lstnumber.-15.29) 715 0 R (lstnumber.-15.3) 684 0 R (lstnumber.-15.30) 716 0 R (lstnumber.-15.31) 717 0 R (lstnumber.-15.32) 718 0 R (lstnumber.-15.33) 719 0 R]
+/Limits [(lstnumber.-15.29) (lstnumber.-15.33)]
+>> endobj
+1820 0 obj <<
+/Names [(lstnumber.-15.34) 720 0 R (lstnumber.-15.35) 721 0 R (lstnumber.-15.36) 722 0 R (lstnumber.-15.37) 723 0 R (lstnumber.-15.38) 724 0 R (lstnumber.-15.39) 725 0 R]
+/Limits [(lstnumber.-15.34) (lstnumber.-15.39)]
+>> endobj
+1821 0 obj <<
+/Names [(lstnumber.-15.4) 685 0 R (lstnumber.-15.40) 726 0 R (lstnumber.-15.41) 727 0 R (lstnumber.-15.42) 728 0 R (lstnumber.-15.43) 729 0 R (lstnumber.-15.44) 746 0 R]
+/Limits [(lstnumber.-15.4) (lstnumber.-15.44)]
+>> endobj
+1822 0 obj <<
+/Names [(lstnumber.-15.45) 747 0 R (lstnumber.-15.46) 748 0 R (lstnumber.-15.47) 749 0 R (lstnumber.-15.48) 750 0 R (lstnumber.-15.49) 751 0 R (lstnumber.-15.5) 686 0 R]
+/Limits [(lstnumber.-15.45) (lstnumber.-15.5)]
+>> endobj
+1823 0 obj <<
+/Names [(lstnumber.-15.50) 752 0 R (lstnumber.-15.51) 753 0 R (lstnumber.-15.52) 754 0 R (lstnumber.-15.53) 755 0 R (lstnumber.-15.54) 756 0 R (lstnumber.-15.55) 757 0 R]
+/Limits [(lstnumber.-15.50) (lstnumber.-15.55)]
+>> endobj
+1824 0 obj <<
+/Names [(lstnumber.-15.56) 758 0 R (lstnumber.-15.57) 759 0 R (lstnumber.-15.58) 760 0 R (lstnumber.-15.59) 761 0 R (lstnumber.-15.6) 687 0 R (lstnumber.-15.60) 762 0 R]
+/Limits [(lstnumber.-15.56) (lstnumber.-15.60)]
+>> endobj
+1825 0 obj <<
+/Names [(lstnumber.-15.61) 763 0 R (lstnumber.-15.62) 764 0 R (lstnumber.-15.63) 765 0 R (lstnumber.-15.64) 766 0 R (lstnumber.-15.65) 767 0 R (lstnumber.-15.66) 768 0 R]
+/Limits [(lstnumber.-15.61) (lstnumber.-15.66)]
+>> endobj
+1826 0 obj <<
+/Names [(lstnumber.-15.67) 769 0 R (lstnumber.-15.7) 688 0 R (lstnumber.-15.8) 689 0 R (lstnumber.-15.9) 690 0 R (lstnumber.-16.1) 740 0 R (lstnumber.-16.2) 741 0 R]
+/Limits [(lstnumber.-15.67) (lstnumber.-16.2)]
+>> endobj
+1827 0 obj <<
+/Names [(lstnumber.-16.3) 742 0 R (lstnumber.-16.4) 743 0 R (lstnumber.-16.5) 744 0 R (lstnumber.-17.1) 778 0 R (lstnumber.-17.2) 779 0 R (lstnumber.-17.3) 780 0 R]
+/Limits [(lstnumber.-16.3) (lstnumber.-17.3)]
+>> endobj
+1828 0 obj <<
+/Names [(lstnumber.-17.4) 781 0 R (lstnumber.-17.5) 782 0 R (lstnumber.-18.1) 788 0 R (lstnumber.-18.2) 789 0 R (lstnumber.-18.3) 790 0 R (lstnumber.-18.4) 791 0 R]
+/Limits [(lstnumber.-17.4) (lstnumber.-18.4)]
+>> endobj
+1829 0 obj <<
+/Names [(lstnumber.-18.5) 792 0 R (lstnumber.-23.1) 820 0 R (lstnumber.-23.2) 821 0 R (lstnumber.-23.3) 822 0 R (lstnumber.-23.4) 823 0 R (lstnumber.-23.5) 824 0 R]
+/Limits [(lstnumber.-18.5) (lstnumber.-23.5)]
+>> endobj
+1830 0 obj <<
+/Names [(lstnumber.-24.1) 831 0 R (lstnumber.-24.2) 832 0 R (lstnumber.-24.3) 833 0 R (lstnumber.-24.4) 834 0 R (lstnumber.-24.5) 835 0 R (lstnumber.-24.6) 836 0 R]
+/Limits [(lstnumber.-24.1) (lstnumber.-24.6)]
+>> endobj
+1831 0 obj <<
+/Names [(lstnumber.-24.7) 837 0 R (lstnumber.-25.1) 844 0 R (lstnumber.-25.2) 845 0 R (lstnumber.-25.3) 846 0 R (lstnumber.-25.4) 847 0 R (lstnumber.-25.5) 848 0 R]
+/Limits [(lstnumber.-24.7) (lstnumber.-25.5)]
+>> endobj
+1832 0 obj <<
+/Names [(lstnumber.-26.1) 850 0 R (lstnumber.-26.2) 851 0 R (lstnumber.-26.3) 852 0 R (lstnumber.-26.4) 853 0 R (lstnumber.-26.5) 854 0 R (lstnumber.-27.1) 856 0 R]
+/Limits [(lstnumber.-26.1) (lstnumber.-27.1)]
+>> endobj
+1833 0 obj <<
+/Names [(lstnumber.-28.1) 858 0 R (lstnumber.-29.1) 860 0 R (lstnumber.-29.10) 869 0 R (lstnumber.-29.11) 870 0 R (lstnumber.-29.12) 871 0 R (lstnumber.-29.2) 861 0 R]
+/Limits [(lstnumber.-28.1) (lstnumber.-29.2)]
+>> endobj
+1834 0 obj <<
+/Names [(lstnumber.-29.3) 862 0 R (lstnumber.-29.4) 863 0 R (lstnumber.-29.5) 864 0 R (lstnumber.-29.6) 865 0 R (lstnumber.-29.7) 866 0 R (lstnumber.-29.8) 867 0 R]
+/Limits [(lstnumber.-29.3) (lstnumber.-29.8)]
+>> endobj
+1835 0 obj <<
+/Names [(lstnumber.-29.9) 868 0 R (lstnumber.-3.1) 496 0 R (lstnumber.-30.1) 883 0 R (lstnumber.-31.1) 885 0 R (lstnumber.-32.1) 887 0 R (lstnumber.-33.1) 897 0 R]
+/Limits [(lstnumber.-29.9) (lstnumber.-33.1)]
+>> endobj
+1836 0 obj <<
+/Names [(lstnumber.-33.2) 898 0 R (lstnumber.-33.3) 899 0 R (lstnumber.-34.1) 901 0 R (lstnumber.-34.2) 902 0 R (lstnumber.-34.3) 903 0 R (lstnumber.-35.1) 906 0 R]
+/Limits [(lstnumber.-33.2) (lstnumber.-35.1)]
+>> endobj
+1837 0 obj <<
+/Names [(lstnumber.-35.10) 915 0 R (lstnumber.-35.11) 916 0 R (lstnumber.-35.12) 917 0 R (lstnumber.-35.13) 918 0 R (lstnumber.-35.14) 925 0 R (lstnumber.-35.15) 926 0 R]
+/Limits [(lstnumber.-35.10) (lstnumber.-35.15)]
+>> endobj
+1838 0 obj <<
+/Names [(lstnumber.-35.16) 927 0 R (lstnumber.-35.17) 928 0 R (lstnumber.-35.18) 929 0 R (lstnumber.-35.19) 930 0 R (lstnumber.-35.2) 907 0 R (lstnumber.-35.3) 908 0 R]
+/Limits [(lstnumber.-35.16) (lstnumber.-35.3)]
+>> endobj
+1839 0 obj <<
+/Names [(lstnumber.-35.4) 909 0 R (lstnumber.-35.5) 910 0 R (lstnumber.-35.6) 911 0 R (lstnumber.-35.7) 912 0 R (lstnumber.-35.8) 913 0 R (lstnumber.-35.9) 914 0 R]
+/Limits [(lstnumber.-35.4) (lstnumber.-35.9)]
+>> endobj
+1840 0 obj <<
+/Names [(lstnumber.-36.1) 932 0 R (lstnumber.-36.2) 933 0 R (lstnumber.-36.3) 934 0 R (lstnumber.-36.4) 935 0 R (lstnumber.-36.5) 936 0 R (lstnumber.-36.6) 937 0 R]
+/Limits [(lstnumber.-36.1) (lstnumber.-36.6)]
+>> endobj
+1841 0 obj <<
+/Names [(lstnumber.-36.7) 938 0 R (lstnumber.-37.1) 940 0 R (lstnumber.-38.1) 947 0 R (lstnumber.-38.2) 948 0 R (lstnumber.-38.3) 949 0 R (lstnumber.-39.1) 951 0 R]
+/Limits [(lstnumber.-36.7) (lstnumber.-39.1)]
+>> endobj
+1842 0 obj <<
+/Names [(lstnumber.-39.2) 952 0 R (lstnumber.-39.3) 953 0 R (lstnumber.-4.1) 499 0 R (lstnumber.-4.10) 508 0 R (lstnumber.-4.11) 509 0 R (lstnumber.-4.12) 510 0 R]
+/Limits [(lstnumber.-39.2) (lstnumber.-4.12)]
+>> endobj
+1843 0 obj <<
+/Names [(lstnumber.-4.13) 511 0 R (lstnumber.-4.14) 512 0 R (lstnumber.-4.15) 513 0 R (lstnumber.-4.16) 514 0 R (lstnumber.-4.2) 500 0 R (lstnumber.-4.3) 501 0 R]
+/Limits [(lstnumber.-4.13) (lstnumber.-4.3)]
+>> endobj
+1844 0 obj <<
+/Names [(lstnumber.-4.4) 502 0 R (lstnumber.-4.5) 503 0 R (lstnumber.-4.6) 504 0 R (lstnumber.-4.7) 505 0 R (lstnumber.-4.8) 506 0 R (lstnumber.-4.9) 507 0 R]
+/Limits [(lstnumber.-4.4) (lstnumber.-4.9)]
+>> endobj
+1845 0 obj <<
+/Names [(lstnumber.-40.1) 955 0 R (lstnumber.-40.2) 956 0 R (lstnumber.-40.3) 957 0 R (lstnumber.-40.4) 958 0 R (lstnumber.-40.5) 959 0 R (lstnumber.-41.1) 961 0 R]
+/Limits [(lstnumber.-40.1) (lstnumber.-41.1)]
+>> endobj
+1846 0 obj <<
+/Names [(lstnumber.-41.2) 962 0 R (lstnumber.-41.3) 963 0 R (lstnumber.-41.4) 964 0 R (lstnumber.-41.5) 965 0 R (lstnumber.-41.6) 966 0 R (lstnumber.-42.1) 968 0 R]
+/Limits [(lstnumber.-41.2) (lstnumber.-42.1)]
+>> endobj
+1847 0 obj <<
+/Names [(lstnumber.-42.2) 969 0 R (lstnumber.-42.3) 970 0 R (lstnumber.-43.1) 972 0 R (lstnumber.-43.2) 973 0 R (lstnumber.-43.3) 974 0 R (lstnumber.-44.1) 980 0 R]
+/Limits [(lstnumber.-42.2) (lstnumber.-44.1)]
+>> endobj
+1848 0 obj <<
+/Names [(lstnumber.-44.2) 981 0 R (lstnumber.-44.3) 982 0 R (lstnumber.-44.4) 983 0 R (lstnumber.-44.5) 984 0 R (lstnumber.-44.6) 985 0 R (lstnumber.-44.7) 986 0 R]
+/Limits [(lstnumber.-44.2) (lstnumber.-44.7)]
+>> endobj
+1849 0 obj <<
+/Names [(lstnumber.-44.8) 987 0 R (lstnumber.-44.9) 988 0 R (lstnumber.-45.1) 991 0 R (lstnumber.-48.1) 1006 0 R (lstnumber.-49.1) 1012 0 R (lstnumber.-49.2) 1013 0 R]
+/Limits [(lstnumber.-44.8) (lstnumber.-49.2)]
+>> endobj
+1850 0 obj <<
+/Names [(lstnumber.-49.3) 1014 0 R (lstnumber.-49.4) 1015 0 R (lstnumber.-49.5) 1016 0 R (lstnumber.-5.1) 516 0 R (lstnumber.-50.1) 1018 0 R (lstnumber.-51.1) 1020 0 R]
+/Limits [(lstnumber.-49.3) (lstnumber.-51.1)]
+>> endobj
+1851 0 obj <<
+/Names [(lstnumber.-51.2) 1021 0 R (lstnumber.-51.3) 1022 0 R (lstnumber.-51.4) 1023 0 R (lstnumber.-51.5) 1024 0 R (lstnumber.-51.6) 1025 0 R (lstnumber.-51.7) 1026 0 R]
+/Limits [(lstnumber.-51.2) (lstnumber.-51.7)]
+>> endobj
+1852 0 obj <<
+/Names [(lstnumber.-51.8) 1027 0 R (lstnumber.-52.1) 1029 0 R (lstnumber.-52.2) 1030 0 R (lstnumber.-52.3) 1031 0 R (lstnumber.-52.4) 1032 0 R (lstnumber.-52.5) 1033 0 R]
+/Limits [(lstnumber.-51.8) (lstnumber.-52.5)]
+>> endobj
+1853 0 obj <<
+/Names [(lstnumber.-53.1) 1039 0 R (lstnumber.-54.1) 1041 0 R (lstnumber.-54.2) 1042 0 R (lstnumber.-54.3) 1043 0 R (lstnumber.-54.4) 1044 0 R (lstnumber.-54.5) 1045 0 R]
+/Limits [(lstnumber.-53.1) (lstnumber.-54.5)]
+>> endobj
+1854 0 obj <<
+/Names [(lstnumber.-54.6) 1046 0 R (lstnumber.-55.1) 1048 0 R (lstnumber.-55.2) 1049 0 R (lstnumber.-55.3) 1050 0 R (lstnumber.-55.4) 1051 0 R (lstnumber.-55.5) 1052 0 R]
+/Limits [(lstnumber.-54.6) (lstnumber.-55.5)]
+>> endobj
+1855 0 obj <<
+/Names [(lstnumber.-55.6) 1053 0 R (lstnumber.-55.7) 1054 0 R (lstnumber.-55.8) 1055 0 R (lstnumber.-55.9) 1056 0 R (lstnumber.-56.1) 1065 0 R (lstnumber.-56.2) 1066 0 R]
+/Limits [(lstnumber.-55.6) (lstnumber.-56.2)]
+>> endobj
+1856 0 obj <<
+/Names [(lstnumber.-56.3) 1067 0 R (lstnumber.-57.1) 1069 0 R (lstnumber.-58.1) 1071 0 R (lstnumber.-59.1) 1078 0 R (lstnumber.-59.10) 1087 0 R (lstnumber.-59.11) 1088 0 R]
+/Limits [(lstnumber.-56.3) (lstnumber.-59.11)]
+>> endobj
+1857 0 obj <<
+/Names [(lstnumber.-59.12) 1089 0 R (lstnumber.-59.13) 1090 0 R (lstnumber.-59.14) 1091 0 R (lstnumber.-59.15) 1092 0 R (lstnumber.-59.16) 1093 0 R (lstnumber.-59.17) 1094 0 R]
+/Limits [(lstnumber.-59.12) (lstnumber.-59.17)]
+>> endobj
+1858 0 obj <<
+/Names [(lstnumber.-59.18) 1095 0 R (lstnumber.-59.19) 1096 0 R (lstnumber.-59.2) 1079 0 R (lstnumber.-59.20) 1097 0 R (lstnumber.-59.21) 1098 0 R (lstnumber.-59.22) 1099 0 R]
+/Limits [(lstnumber.-59.18) (lstnumber.-59.22)]
+>> endobj
+1859 0 obj <<
+/Names [(lstnumber.-59.23) 1100 0 R (lstnumber.-59.24) 1101 0 R (lstnumber.-59.25) 1102 0 R (lstnumber.-59.26) 1103 0 R (lstnumber.-59.27) 1104 0 R (lstnumber.-59.28) 1105 0 R]
+/Limits [(lstnumber.-59.23) (lstnumber.-59.28)]
+>> endobj
+1860 0 obj <<
+/Names [(lstnumber.-59.29) 1106 0 R (lstnumber.-59.3) 1080 0 R (lstnumber.-59.30) 1107 0 R (lstnumber.-59.31) 1108 0 R (lstnumber.-59.4) 1081 0 R (lstnumber.-59.5) 1082 0 R]
+/Limits [(lstnumber.-59.29) (lstnumber.-59.5)]
+>> endobj
+1861 0 obj <<
+/Names [(lstnumber.-59.6) 1083 0 R (lstnumber.-59.7) 1084 0 R (lstnumber.-59.8) 1085 0 R (lstnumber.-59.9) 1086 0 R (lstnumber.-6.1) 525 0 R (lstnumber.-60.1) 1115 0 R]
+/Limits [(lstnumber.-59.6) (lstnumber.-60.1)]
+>> endobj
+1862 0 obj <<
+/Names [(lstnumber.-60.2) 1116 0 R (lstnumber.-61.1) 1118 0 R (lstnumber.-61.2) 1119 0 R (lstnumber.-62.1) 1121 0 R (lstnumber.-63.1) 1123 0 R (lstnumber.-64.1) 1140 0 R]
+/Limits [(lstnumber.-60.2) (lstnumber.-64.1)]
+>> endobj
+1863 0 obj <<
+/Names [(lstnumber.-64.10) 1149 0 R (lstnumber.-64.11) 1150 0 R (lstnumber.-64.12) 1151 0 R (lstnumber.-64.13) 1152 0 R (lstnumber.-64.14) 1153 0 R (lstnumber.-64.15) 1154 0 R]
+/Limits [(lstnumber.-64.10) (lstnumber.-64.15)]
+>> endobj
+1864 0 obj <<
+/Names [(lstnumber.-64.16) 1155 0 R (lstnumber.-64.17) 1156 0 R (lstnumber.-64.18) 1157 0 R (lstnumber.-64.19) 1158 0 R (lstnumber.-64.2) 1141 0 R (lstnumber.-64.20) 1159 0 R]
+/Limits [(lstnumber.-64.16) (lstnumber.-64.20)]
+>> endobj
+1865 0 obj <<
+/Names [(lstnumber.-64.21) 1160 0 R (lstnumber.-64.22) 1161 0 R (lstnumber.-64.23) 1162 0 R (lstnumber.-64.24) 1163 0 R (lstnumber.-64.3) 1142 0 R (lstnumber.-64.4) 1143 0 R]
+/Limits [(lstnumber.-64.21) (lstnumber.-64.4)]
+>> endobj
+1866 0 obj <<
+/Names [(lstnumber.-64.5) 1144 0 R (lstnumber.-64.6) 1145 0 R (lstnumber.-64.7) 1146 0 R (lstnumber.-64.8) 1147 0 R (lstnumber.-64.9) 1148 0 R (lstnumber.-65.1) 1130 0 R]
+/Limits [(lstnumber.-64.5) (lstnumber.-65.1)]
+>> endobj
+1867 0 obj <<
+/Names [(lstnumber.-65.2) 1131 0 R (lstnumber.-65.3) 1132 0 R (lstnumber.-65.4) 1133 0 R (lstnumber.-65.5) 1134 0 R (lstnumber.-65.6) 1135 0 R (lstnumber.-65.7) 1136 0 R]
+/Limits [(lstnumber.-65.2) (lstnumber.-65.7)]
+>> endobj
+1868 0 obj <<
+/Names [(lstnumber.-65.8) 1137 0 R (lstnumber.-66.1) 1171 0 R (lstnumber.-66.2) 1172 0 R (lstnumber.-66.3) 1173 0 R (lstnumber.-66.4) 1174 0 R (lstnumber.-66.5) 1175 0 R]
+/Limits [(lstnumber.-65.8) (lstnumber.-66.5)]
+>> endobj
+1869 0 obj <<
+/Names [(lstnumber.-66.6) 1176 0 R (lstnumber.-66.7) 1177 0 R (lstnumber.-66.8) 1178 0 R (lstnumber.-67.1) 1180 0 R (lstnumber.-68.1) 1182 0 R (lstnumber.-69.1) 1184 0 R]
+/Limits [(lstnumber.-66.6) (lstnumber.-69.1)]
+>> endobj
+1870 0 obj <<
+/Names [(lstnumber.-7.1) 527 0 R (lstnumber.-70.1) 1194 0 R (lstnumber.-70.2) 1195 0 R (lstnumber.-70.3) 1196 0 R (lstnumber.-71.1) 1198 0 R (lstnumber.-71.2) 1199 0 R]
+/Limits [(lstnumber.-7.1) (lstnumber.-71.2)]
+>> endobj
+1871 0 obj <<
+/Names [(lstnumber.-71.3) 1200 0 R (lstnumber.-72.1) 1225 0 R (lstnumber.-72.2) 1226 0 R (lstnumber.-72.3) 1227 0 R (lstnumber.-72.4) 1228 0 R (lstnumber.-72.5) 1229 0 R]
+/Limits [(lstnumber.-71.3) (lstnumber.-72.5)]
+>> endobj
+1872 0 obj <<
+/Names [(lstnumber.-73.1) 1231 0 R (lstnumber.-73.2) 1232 0 R (lstnumber.-73.3) 1233 0 R (lstnumber.-73.4) 1234 0 R (lstnumber.-73.5) 1235 0 R (lstnumber.-74.1) 1237 0 R]
+/Limits [(lstnumber.-73.1) (lstnumber.-74.1)]
+>> endobj
+1873 0 obj <<
+/Names [(lstnumber.-74.2) 1238 0 R (lstnumber.-74.3) 1239 0 R (lstnumber.-74.4) 1240 0 R (lstnumber.-74.5) 1241 0 R (lstnumber.-75.1) 1248 0 R (lstnumber.-75.2) 1249 0 R]
+/Limits [(lstnumber.-74.2) (lstnumber.-75.2)]
+>> endobj
+1874 0 obj <<
+/Names [(lstnumber.-75.3) 1250 0 R (lstnumber.-75.4) 1251 0 R (lstnumber.-75.5) 1252 0 R (lstnumber.-76.1) 1254 0 R (lstnumber.-76.2) 1255 0 R (lstnumber.-76.3) 1256 0 R]
+/Limits [(lstnumber.-75.3) (lstnumber.-76.3)]
+>> endobj
+1875 0 obj <<
+/Names [(lstnumber.-76.4) 1257 0 R (lstnumber.-76.5) 1258 0 R (lstnumber.-77.1) 1260 0 R (lstnumber.-77.10) 1273 0 R (lstnumber.-77.11) 1274 0 R (lstnumber.-77.2) 1261 0 R]
+/Limits [(lstnumber.-76.4) (lstnumber.-77.2)]
+>> endobj
+1876 0 obj <<
+/Names [(lstnumber.-77.3) 1262 0 R (lstnumber.-77.4) 1263 0 R (lstnumber.-77.5) 1264 0 R (lstnumber.-77.6) 1265 0 R (lstnumber.-77.7) 1266 0 R (lstnumber.-77.8) 1267 0 R]
+/Limits [(lstnumber.-77.3) (lstnumber.-77.8)]
+>> endobj
+1877 0 obj <<
+/Names [(lstnumber.-77.9) 1272 0 R (lstnumber.-78.1) 1276 0 R (lstnumber.-78.2) 1277 0 R (lstnumber.-78.3) 1278 0 R (lstnumber.-79.1) 1284 0 R (lstnumber.-79.10) 1293 0 R]
+/Limits [(lstnumber.-77.9) (lstnumber.-79.10)]
+>> endobj
+1878 0 obj <<
+/Names [(lstnumber.-79.11) 1294 0 R (lstnumber.-79.12) 1295 0 R (lstnumber.-79.13) 1296 0 R (lstnumber.-79.14) 1297 0 R (lstnumber.-79.15) 1298 0 R (lstnumber.-79.16) 1299 0 R]
+/Limits [(lstnumber.-79.11) (lstnumber.-79.16)]
+>> endobj
+1879 0 obj <<
+/Names [(lstnumber.-79.17) 1300 0 R (lstnumber.-79.18) 1301 0 R (lstnumber.-79.19) 1302 0 R (lstnumber.-79.2) 1285 0 R (lstnumber.-79.20) 1303 0 R (lstnumber.-79.21) 1304 0 R]
+/Limits [(lstnumber.-79.17) (lstnumber.-79.21)]
+>> endobj
+1880 0 obj <<
+/Names [(lstnumber.-79.22) 1305 0 R (lstnumber.-79.23) 1306 0 R (lstnumber.-79.24) 1307 0 R (lstnumber.-79.3) 1286 0 R (lstnumber.-79.4) 1287 0 R (lstnumber.-79.5) 1288 0 R]
+/Limits [(lstnumber.-79.22) (lstnumber.-79.5)]
+>> endobj
+1881 0 obj <<
+/Names [(lstnumber.-79.6) 1289 0 R (lstnumber.-79.7) 1290 0 R (lstnumber.-79.8) 1291 0 R (lstnumber.-79.9) 1292 0 R (lstnumber.-8.1) 537 0 R (lstnumber.-8.2) 538 0 R]
+/Limits [(lstnumber.-79.6) (lstnumber.-8.2)]
+>> endobj
+1882 0 obj <<
+/Names [(lstnumber.-8.3) 540 0 R (lstnumber.-8.4) 541 0 R (lstnumber.-80.1) 1315 0 R (lstnumber.-80.10) 1324 0 R (lstnumber.-80.11) 1325 0 R (lstnumber.-80.12) 1326 0 R]
+/Limits [(lstnumber.-8.3) (lstnumber.-80.12)]
+>> endobj
+1883 0 obj <<
+/Names [(lstnumber.-80.13) 1327 0 R (lstnumber.-80.14) 1328 0 R (lstnumber.-80.15) 1329 0 R (lstnumber.-80.16) 1330 0 R (lstnumber.-80.17) 1331 0 R (lstnumber.-80.18) 1332 0 R]
+/Limits [(lstnumber.-80.13) (lstnumber.-80.18)]
+>> endobj
+1884 0 obj <<
+/Names [(lstnumber.-80.19) 1333 0 R (lstnumber.-80.2) 1316 0 R (lstnumber.-80.20) 1334 0 R (lstnumber.-80.21) 1335 0 R (lstnumber.-80.22) 1336 0 R (lstnumber.-80.23) 1337 0 R]
+/Limits [(lstnumber.-80.19) (lstnumber.-80.23)]
+>> endobj
+1885 0 obj <<
+/Names [(lstnumber.-80.24) 1338 0 R (lstnumber.-80.25) 1339 0 R (lstnumber.-80.3) 1317 0 R (lstnumber.-80.4) 1318 0 R (lstnumber.-80.5) 1319 0 R (lstnumber.-80.6) 1320 0 R]
+/Limits [(lstnumber.-80.24) (lstnumber.-80.6)]
+>> endobj
+1886 0 obj <<
+/Names [(lstnumber.-80.7) 1321 0 R (lstnumber.-80.8) 1322 0 R (lstnumber.-80.9) 1323 0 R (lstnumber.-81.1) 1345 0 R (lstnumber.-81.10) 1354 0 R (lstnumber.-81.11) 1355 0 R]
+/Limits [(lstnumber.-80.7) (lstnumber.-81.11)]
+>> endobj
+1887 0 obj <<
+/Names [(lstnumber.-81.12) 1356 0 R (lstnumber.-81.13) 1357 0 R (lstnumber.-81.14) 1358 0 R (lstnumber.-81.15) 1359 0 R (lstnumber.-81.16) 1360 0 R (lstnumber.-81.17) 1361 0 R]
+/Limits [(lstnumber.-81.12) (lstnumber.-81.17)]
+>> endobj
+1888 0 obj <<
+/Names [(lstnumber.-81.18) 1362 0 R (lstnumber.-81.19) 1363 0 R (lstnumber.-81.2) 1346 0 R (lstnumber.-81.20) 1364 0 R (lstnumber.-81.21) 1365 0 R (lstnumber.-81.22) 1366 0 R]
+/Limits [(lstnumber.-81.18) (lstnumber.-81.22)]
+>> endobj
+1889 0 obj <<
+/Names [(lstnumber.-81.23) 1367 0 R (lstnumber.-81.24) 1368 0 R (lstnumber.-81.25) 1369 0 R (lstnumber.-81.3) 1347 0 R (lstnumber.-81.4) 1348 0 R (lstnumber.-81.5) 1349 0 R]
+/Limits [(lstnumber.-81.23) (lstnumber.-81.5)]
+>> endobj
+1890 0 obj <<
+/Names [(lstnumber.-81.6) 1350 0 R (lstnumber.-81.7) 1351 0 R (lstnumber.-81.8) 1352 0 R (lstnumber.-81.9) 1353 0 R (lstnumber.-82.1) 1375 0 R (lstnumber.-82.10) 1384 0 R]
+/Limits [(lstnumber.-81.6) (lstnumber.-82.10)]
+>> endobj
+1891 0 obj <<
+/Names [(lstnumber.-82.11) 1385 0 R (lstnumber.-82.12) 1386 0 R (lstnumber.-82.13) 1387 0 R (lstnumber.-82.14) 1388 0 R (lstnumber.-82.15) 1389 0 R (lstnumber.-82.16) 1390 0 R]
+/Limits [(lstnumber.-82.11) (lstnumber.-82.16)]
+>> endobj
+1892 0 obj <<
+/Names [(lstnumber.-82.17) 1391 0 R (lstnumber.-82.18) 1392 0 R (lstnumber.-82.19) 1393 0 R (lstnumber.-82.2) 1376 0 R (lstnumber.-82.20) 1394 0 R (lstnumber.-82.21) 1395 0 R]
+/Limits [(lstnumber.-82.17) (lstnumber.-82.21)]
+>> endobj
+1893 0 obj <<
+/Names [(lstnumber.-82.22) 1396 0 R (lstnumber.-82.23) 1397 0 R (lstnumber.-82.24) 1398 0 R (lstnumber.-82.25) 1399 0 R (lstnumber.-82.3) 1377 0 R (lstnumber.-82.4) 1378 0 R]
+/Limits [(lstnumber.-82.22) (lstnumber.-82.4)]
+>> endobj
+1894 0 obj <<
+/Names [(lstnumber.-82.5) 1379 0 R (lstnumber.-82.6) 1380 0 R (lstnumber.-82.7) 1381 0 R (lstnumber.-82.8) 1382 0 R (lstnumber.-82.9) 1383 0 R (lstnumber.-83.1) 1405 0 R]
+/Limits [(lstnumber.-82.5) (lstnumber.-83.1)]
+>> endobj
+1895 0 obj <<
+/Names [(lstnumber.-83.10) 1414 0 R (lstnumber.-83.11) 1415 0 R (lstnumber.-83.12) 1416 0 R (lstnumber.-83.13) 1417 0 R (lstnumber.-83.14) 1418 0 R (lstnumber.-83.15) 1419 0 R]
+/Limits [(lstnumber.-83.10) (lstnumber.-83.15)]
+>> endobj
+1896 0 obj <<
+/Names [(lstnumber.-83.16) 1420 0 R (lstnumber.-83.17) 1421 0 R (lstnumber.-83.18) 1422 0 R (lstnumber.-83.19) 1423 0 R (lstnumber.-83.2) 1406 0 R (lstnumber.-83.20) 1424 0 R]
+/Limits [(lstnumber.-83.16) (lstnumber.-83.20)]
+>> endobj
+1897 0 obj <<
+/Names [(lstnumber.-83.21) 1425 0 R (lstnumber.-83.22) 1426 0 R (lstnumber.-83.23) 1427 0 R (lstnumber.-83.3) 1407 0 R (lstnumber.-83.4) 1408 0 R (lstnumber.-83.5) 1409 0 R]
+/Limits [(lstnumber.-83.21) (lstnumber.-83.5)]
+>> endobj
+1898 0 obj <<
+/Names [(lstnumber.-83.6) 1410 0 R (lstnumber.-83.7) 1411 0 R (lstnumber.-83.8) 1412 0 R (lstnumber.-83.9) 1413 0 R (lstnumber.-84.1) 1433 0 R (lstnumber.-84.10) 1442 0 R]
+/Limits [(lstnumber.-83.6) (lstnumber.-84.10)]
+>> endobj
+1899 0 obj <<
+/Names [(lstnumber.-84.11) 1443 0 R (lstnumber.-84.12) 1444 0 R (lstnumber.-84.2) 1434 0 R (lstnumber.-84.3) 1435 0 R (lstnumber.-84.4) 1436 0 R (lstnumber.-84.5) 1437 0 R]
+/Limits [(lstnumber.-84.11) (lstnumber.-84.5)]
+>> endobj
+1900 0 obj <<
+/Names [(lstnumber.-84.6) 1438 0 R (lstnumber.-84.7) 1439 0 R (lstnumber.-84.8) 1440 0 R (lstnumber.-84.9) 1441 0 R (lstnumber.-85.1) 1451 0 R (lstnumber.-85.2) 1452 0 R]
+/Limits [(lstnumber.-84.6) (lstnumber.-85.2)]
+>> endobj
+1901 0 obj <<
+/Names [(lstnumber.-85.3) 1453 0 R (lstnumber.-85.4) 1454 0 R (lstnumber.-85.5) 1455 0 R (lstnumber.-85.6) 1456 0 R (lstnumber.-85.7) 1457 0 R (lstnumber.-85.8) 1458 0 R]
+/Limits [(lstnumber.-85.3) (lstnumber.-85.8)]
+>> endobj
+1902 0 obj <<
+/Names [(lstnumber.-85.9) 1459 0 R (lstnumber.-86.1) 1461 0 R (lstnumber.-86.10) 1470 0 R (lstnumber.-86.11) 1471 0 R (lstnumber.-86.12) 1472 0 R (lstnumber.-86.13) 1473 0 R]
+/Limits [(lstnumber.-85.9) (lstnumber.-86.13)]
+>> endobj
+1903 0 obj <<
+/Names [(lstnumber.-86.14) 1474 0 R (lstnumber.-86.15) 1475 0 R (lstnumber.-86.16) 1476 0 R (lstnumber.-86.2) 1462 0 R (lstnumber.-86.3) 1463 0 R (lstnumber.-86.4) 1464 0 R]
+/Limits [(lstnumber.-86.14) (lstnumber.-86.4)]
+>> endobj
+1904 0 obj <<
+/Names [(lstnumber.-86.5) 1465 0 R (lstnumber.-86.6) 1466 0 R (lstnumber.-86.7) 1467 0 R (lstnumber.-86.8) 1468 0 R (lstnumber.-86.9) 1469 0 R (lstnumber.-87.1) 1483 0 R]
+/Limits [(lstnumber.-86.5) (lstnumber.-87.1)]
+>> endobj
+1905 0 obj <<
+/Names [(lstnumber.-87.10) 1492 0 R (lstnumber.-87.2) 1484 0 R (lstnumber.-87.3) 1485 0 R (lstnumber.-87.4) 1486 0 R (lstnumber.-87.5) 1487 0 R (lstnumber.-87.6) 1488 0 R]
+/Limits [(lstnumber.-87.10) (lstnumber.-87.6)]
+>> endobj
+1906 0 obj <<
+/Names [(lstnumber.-87.7) 1489 0 R (lstnumber.-87.8) 1490 0 R (lstnumber.-87.9) 1491 0 R (lstnumber.-88.1) 1498 0 R (lstnumber.-88.2) 1499 0 R (lstnumber.-88.3) 1500 0 R]
+/Limits [(lstnumber.-87.7) (lstnumber.-88.3)]
+>> endobj
+1907 0 obj <<
+/Names [(lstnumber.-88.4) 1501 0 R (lstnumber.-88.5) 1502 0 R (lstnumber.-88.6) 1503 0 R (lstnumber.-88.7) 1504 0 R (lstnumber.-88.8) 1505 0 R (lstnumber.-88.9) 1506 0 R]
+/Limits [(lstnumber.-88.4) (lstnumber.-88.9)]
+>> endobj
+1908 0 obj <<
+/Names [(lstnumber.-89.1) 1508 0 R (lstnumber.-89.10) 1517 0 R (lstnumber.-89.11) 1518 0 R (lstnumber.-89.12) 1519 0 R (lstnumber.-89.13) 1520 0 R (lstnumber.-89.14) 1521 0 R]
+/Limits [(lstnumber.-89.1) (lstnumber.-89.14)]
+>> endobj
+1909 0 obj <<
+/Names [(lstnumber.-89.15) 1522 0 R (lstnumber.-89.16) 1523 0 R (lstnumber.-89.17) 1528 0 R (lstnumber.-89.18) 1529 0 R (lstnumber.-89.19) 1530 0 R (lstnumber.-89.2) 1509 0 R]
+/Limits [(lstnumber.-89.15) (lstnumber.-89.2)]
+>> endobj
+1910 0 obj <<
+/Names [(lstnumber.-89.20) 1531 0 R (lstnumber.-89.21) 1532 0 R (lstnumber.-89.22) 1533 0 R (lstnumber.-89.23) 1534 0 R (lstnumber.-89.24) 1535 0 R (lstnumber.-89.25) 1536 0 R]
+/Limits [(lstnumber.-89.20) (lstnumber.-89.25)]
+>> endobj
+1911 0 obj <<
+/Names [(lstnumber.-89.26) 1537 0 R (lstnumber.-89.27) 1538 0 R (lstnumber.-89.28) 1539 0 R (lstnumber.-89.3) 1510 0 R (lstnumber.-89.4) 1511 0 R (lstnumber.-89.5) 1512 0 R]
+/Limits [(lstnumber.-89.26) (lstnumber.-89.5)]
+>> endobj
+1912 0 obj <<
+/Names [(lstnumber.-89.6) 1513 0 R (lstnumber.-89.7) 1514 0 R (lstnumber.-89.8) 1515 0 R (lstnumber.-89.9) 1516 0 R (lstnumber.-9.1) 543 0 R (lstnumber.-9.10) 552 0 R]
+/Limits [(lstnumber.-89.6) (lstnumber.-9.10)]
+>> endobj
+1913 0 obj <<
+/Names [(lstnumber.-9.11) 553 0 R (lstnumber.-9.12) 554 0 R (lstnumber.-9.13) 555 0 R (lstnumber.-9.14) 556 0 R (lstnumber.-9.15) 557 0 R (lstnumber.-9.16) 558 0 R]
+/Limits [(lstnumber.-9.11) (lstnumber.-9.16)]
+>> endobj
+1914 0 obj <<
+/Names [(lstnumber.-9.2) 544 0 R (lstnumber.-9.3) 545 0 R (lstnumber.-9.4) 546 0 R (lstnumber.-9.5) 547 0 R (lstnumber.-9.6) 548 0 R (lstnumber.-9.7) 549 0 R]
+/Limits [(lstnumber.-9.2) (lstnumber.-9.7)]
+>> endobj
+1915 0 obj <<
+/Names [(lstnumber.-9.8) 550 0 R (lstnumber.-9.9) 551 0 R (lstnumber.-90.1) 1541 0 R (lstnumber.-90.10) 1550 0 R (lstnumber.-90.11) 1551 0 R (lstnumber.-90.12) 1552 0 R]
+/Limits [(lstnumber.-9.8) (lstnumber.-90.12)]
+>> endobj
+1916 0 obj <<
+/Names [(lstnumber.-90.13) 1553 0 R (lstnumber.-90.14) 1559 0 R (lstnumber.-90.15) 1560 0 R (lstnumber.-90.16) 1561 0 R (lstnumber.-90.17) 1562 0 R (lstnumber.-90.18) 1563 0 R]
+/Limits [(lstnumber.-90.13) (lstnumber.-90.18)]
+>> endobj
+1917 0 obj <<
+/Names [(lstnumber.-90.19) 1564 0 R (lstnumber.-90.2) 1542 0 R (lstnumber.-90.20) 1565 0 R (lstnumber.-90.21) 1566 0 R (lstnumber.-90.22) 1567 0 R (lstnumber.-90.23) 1568 0 R]
+/Limits [(lstnumber.-90.19) (lstnumber.-90.23)]
+>> endobj
+1918 0 obj <<
+/Names [(lstnumber.-90.24) 1569 0 R (lstnumber.-90.3) 1543 0 R (lstnumber.-90.4) 1544 0 R (lstnumber.-90.5) 1545 0 R (lstnumber.-90.6) 1546 0 R (lstnumber.-90.7) 1547 0 R]
+/Limits [(lstnumber.-90.24) (lstnumber.-90.7)]
+>> endobj
+1919 0 obj <<
+/Names [(lstnumber.-90.8) 1548 0 R (lstnumber.-90.9) 1549 0 R (lstnumber.-91.1) 1571 0 R (lstnumber.-91.10) 1590 0 R (lstnumber.-91.11) 1591 0 R (lstnumber.-91.12) 1592 0 R]
+/Limits [(lstnumber.-90.8) (lstnumber.-91.12)]
+>> endobj
+1920 0 obj <<
+/Names [(lstnumber.-91.13) 1593 0 R (lstnumber.-91.14) 1594 0 R (lstnumber.-91.15) 1595 0 R (lstnumber.-91.16) 1596 0 R (lstnumber.-91.17) 1597 0 R (lstnumber.-91.18) 1598 0 R]
+/Limits [(lstnumber.-91.13) (lstnumber.-91.18)]
+>> endobj
+1921 0 obj <<
+/Names [(lstnumber.-91.19) 1599 0 R (lstnumber.-91.2) 1572 0 R (lstnumber.-91.20) 1600 0 R (lstnumber.-91.21) 1601 0 R (lstnumber.-91.22) 1602 0 R (lstnumber.-91.23) 1603 0 R]
+/Limits [(lstnumber.-91.19) (lstnumber.-91.23)]
+>> endobj
+1922 0 obj <<
+/Names [(lstnumber.-91.24) 1604 0 R (lstnumber.-91.25) 1605 0 R (lstnumber.-91.26) 1606 0 R (lstnumber.-91.27) 1607 0 R (lstnumber.-91.28) 1608 0 R (lstnumber.-91.29) 1609 0 R]
+/Limits [(lstnumber.-91.24) (lstnumber.-91.29)]
+>> endobj
+1923 0 obj <<
+/Names [(lstnumber.-91.3) 1573 0 R (lstnumber.-91.30) 1610 0 R (lstnumber.-91.31) 1611 0 R (lstnumber.-91.32) 1612 0 R (lstnumber.-91.33) 1613 0 R (lstnumber.-91.34) 1614 0 R]
+/Limits [(lstnumber.-91.3) (lstnumber.-91.34)]
+>> endobj
+1924 0 obj <<
+/Names [(lstnumber.-91.35) 1615 0 R (lstnumber.-91.36) 1616 0 R (lstnumber.-91.37) 1617 0 R (lstnumber.-91.38) 1618 0 R (lstnumber.-91.39) 1619 0 R (lstnumber.-91.4) 1574 0 R]
+/Limits [(lstnumber.-91.35) (lstnumber.-91.4)]
+>> endobj
+1925 0 obj <<
+/Names [(lstnumber.-91.40) 1620 0 R (lstnumber.-91.41) 1621 0 R (lstnumber.-91.42) 1622 0 R (lstnumber.-91.43) 1623 0 R (lstnumber.-91.44) 1624 0 R (lstnumber.-91.45) 1625 0 R]
+/Limits [(lstnumber.-91.40) (lstnumber.-91.45)]
+>> endobj
+1926 0 obj <<
+/Names [(lstnumber.-91.46) 1626 0 R (lstnumber.-91.47) 1627 0 R (lstnumber.-91.48) 1628 0 R (lstnumber.-91.49) 1629 0 R (lstnumber.-91.5) 1575 0 R (lstnumber.-91.50) 1630 0 R]
+/Limits [(lstnumber.-91.46) (lstnumber.-91.50)]
+>> endobj
+1927 0 obj <<
+/Names [(lstnumber.-91.51) 1631 0 R (lstnumber.-91.52) 1632 0 R (lstnumber.-91.53) 1633 0 R (lstnumber.-91.54) 1634 0 R (lstnumber.-91.55) 1635 0 R (lstnumber.-91.56) 1643 0 R]
+/Limits [(lstnumber.-91.51) (lstnumber.-91.56)]
+>> endobj
+1928 0 obj <<
+/Names [(lstnumber.-91.57) 1644 0 R (lstnumber.-91.58) 1645 0 R (lstnumber.-91.6) 1576 0 R (lstnumber.-91.7) 1577 0 R (lstnumber.-91.8) 1578 0 R (lstnumber.-91.9) 1589 0 R]
+/Limits [(lstnumber.-91.57) (lstnumber.-91.9)]
+>> endobj
+1929 0 obj <<
+/Names [(lstnumber.-92.1) 1647 0 R (lstnumber.-92.10) 1656 0 R (lstnumber.-92.11) 1657 0 R (lstnumber.-92.12) 1658 0 R (lstnumber.-92.13) 1659 0 R (lstnumber.-92.14) 1660 0 R]
+/Limits [(lstnumber.-92.1) (lstnumber.-92.14)]
+>> endobj
+1930 0 obj <<
+/Names [(lstnumber.-92.15) 1661 0 R (lstnumber.-92.16) 1662 0 R (lstnumber.-92.17) 1663 0 R (lstnumber.-92.18) 1664 0 R (lstnumber.-92.19) 1665 0 R (lstnumber.-92.2) 1648 0 R]
+/Limits [(lstnumber.-92.15) (lstnumber.-92.2)]
+>> endobj
+1931 0 obj <<
+/Names [(lstnumber.-92.3) 1649 0 R (lstnumber.-92.4) 1650 0 R (lstnumber.-92.5) 1651 0 R (lstnumber.-92.6) 1652 0 R (lstnumber.-92.7) 1653 0 R (lstnumber.-92.8) 1654 0 R]
+/Limits [(lstnumber.-92.3) (lstnumber.-92.8)]
+>> endobj
+1932 0 obj <<
+/Names [(lstnumber.-92.9) 1655 0 R (lstnumber.-93.1) 1679 0 R (lstnumber.-94.1) 1681 0 R (lstnumber.-95.1) 1683 0 R (lstnumber.-95.2) 1684 0 R (page.1) 388 0 R]
+/Limits [(lstnumber.-92.9) (page.1)]
+>> endobj
+1933 0 obj <<
+/Names [(page.10) 628 0 R (page.11) 669 0 R (page.12) 698 0 R (page.13) 738 0 R (page.14) 776 0 R (page.15) 786 0 R]
+/Limits [(page.10) (page.15)]
+>> endobj
+1934 0 obj <<
+/Names [(page.16) 807 0 R (page.17) 829 0 R (page.18) 842 0 R (page.19) 877 0 R (page.2) 451 0 R (page.20) 895 0 R]
+/Limits [(page.16) (page.20)]
+>> endobj
+1935 0 obj <<
+/Names [(page.21) 923 0 R (page.22) 945 0 R (page.23) 978 0 R (page.24) 1010 0 R (page.25) 1037 0 R (page.26) 1063 0 R]
+/Limits [(page.21) (page.26)]
+>> endobj
+1936 0 obj <<
+/Names [(page.27) 1076 0 R (page.28) 1112 0 R (page.29) 1128 0 R (page.3) 478 0 R (page.30) 1168 0 R (page.31) 1192 0 R]
+/Limits [(page.27) (page.31)]
+>> endobj
+1937 0 obj <<
+/Names [(page.32) 1207 0 R (page.33) 1215 0 R (page.34) 1223 0 R (page.35) 1246 0 R (page.36) 1271 0 R (page.37) 1282 0 R]
+/Limits [(page.32) (page.37)]
+>> endobj
+1938 0 obj <<
+/Names [(page.38) 1312 0 R (page.39) 1343 0 R (page.4) 490 0 R (page.40) 1373 0 R (page.41) 1403 0 R (page.42) 1431 0 R]
+/Limits [(page.38) (page.42)]
+>> endobj
+1939 0 obj <<
+/Names [(page.43) 1449 0 R (page.44) 1481 0 R (page.45) 1496 0 R (page.46) 1527 0 R (page.47) 1558 0 R (page.48) 1583 0 R]
+/Limits [(page.43) (page.48)]
+>> endobj
+1940 0 obj <<
+/Names [(page.49) 1588 0 R (page.5) 522 0 R (page.50) 1641 0 R (page.51) 1669 0 R (page.52) 1676 0 R (page.6) 535 0 R]
+/Limits [(page.49) (page.6)]
+>> endobj
+1941 0 obj <<
+/Names [(page.7) 564 0 R (page.8) 597 0 R (page.9) 623 0 R (section*.1) 397 0 R (section*.2) 904 0 R (section*.3) 989 0 R]
+/Limits [(page.7) (section*.3)]
+>> endobj
+1942 0 obj <<
+/Names [(section*.4) 1113 0 R (section*.5) 1685 0 R (section.1) 6 0 R (section.2) 10 0 R (section.3) 14 0 R (section.4) 50 0 R]
+/Limits [(section*.4) (section.4)]
+>> endobj
+1943 0 obj <<
+/Names [(section.5) 74 0 R (section.6) 266 0 R (section.7) 346 0 R (subsection.3.1) 18 0 R (subsection.3.2) 22 0 R (subsection.3.3) 26 0 R]
+/Limits [(section.5) (subsection.3.3)]
+>> endobj
+1944 0 obj <<
+/Names [(subsection.3.4) 30 0 R (subsection.3.5) 34 0 R (subsection.3.6) 38 0 R (subsection.3.7) 42 0 R (subsection.3.8) 46 0 R (subsection.4.1) 54 0 R]
+/Limits [(subsection.3.4) (subsection.4.1)]
+>> endobj
+1945 0 obj <<
+/Names [(subsection.4.2) 58 0 R (subsection.4.3) 62 0 R (subsection.4.4) 66 0 R (subsection.4.5) 70 0 R (subsection.5.1) 78 0 R (subsection.5.10) 126 0 R]
+/Limits [(subsection.4.2) (subsection.5.10)]
+>> endobj
+1946 0 obj <<
+/Names [(subsection.5.11) 130 0 R (subsection.5.12) 134 0 R (subsection.5.13) 138 0 R (subsection.5.14) 142 0 R (subsection.5.15) 258 0 R (subsection.5.16) 262 0 R]
+/Limits [(subsection.5.11) (subsection.5.16)]
+>> endobj
+1947 0 obj <<
+/Names [(subsection.5.2) 82 0 R (subsection.5.3) 94 0 R (subsection.5.4) 98 0 R (subsection.5.5) 102 0 R (subsection.5.6) 106 0 R (subsection.5.7) 110 0 R]
+/Limits [(subsection.5.2) (subsection.5.7)]
+>> endobj
+1948 0 obj <<
+/Names [(subsection.5.8) 114 0 R (subsection.5.9) 122 0 R (subsection.6.1) 270 0 R (subsection.6.2) 294 0 R (subsection.6.3) 298 0 R (subsection.6.4) 310 0 R]
+/Limits [(subsection.5.8) (subsection.6.4)]
+>> endobj
+1949 0 obj <<
+/Names [(subsection.6.5) 322 0 R (subsection.6.6) 334 0 R (subsection.6.7) 338 0 R (subsection.6.8) 342 0 R (subsection.7.1) 350 0 R (subsection.7.2) 354 0 R]
+/Limits [(subsection.6.5) (subsection.7.2)]
+>> endobj
+1950 0 obj <<
+/Names [(subsection.7.3) 358 0 R (subsubsection.5.14.1) 146 0 R (subsubsection.5.14.10) 182 0 R (subsubsection.5.14.11) 186 0 R (subsubsection.5.14.12) 190 0 R (subsubsection.5.14.13) 194 0 R]
+/Limits [(subsection.7.3) (subsubsection.5.14.13)]
+>> endobj
+1951 0 obj <<
+/Names [(subsubsection.5.14.14) 198 0 R (subsubsection.5.14.15) 202 0 R (subsubsection.5.14.16) 206 0 R (subsubsection.5.14.17) 210 0 R (subsubsection.5.14.18) 214 0 R (subsubsection.5.14.19) 218 0 R]
+/Limits [(subsubsection.5.14.14) (subsubsection.5.14.19)]
+>> endobj
+1952 0 obj <<
+/Names [(subsubsection.5.14.2) 150 0 R (subsubsection.5.14.20) 222 0 R (subsubsection.5.14.21) 226 0 R (subsubsection.5.14.22) 230 0 R (subsubsection.5.14.23) 234 0 R (subsubsection.5.14.24) 238 0 R]
+/Limits [(subsubsection.5.14.2) (subsubsection.5.14.24)]
+>> endobj
+1953 0 obj <<
+/Names [(subsubsection.5.14.25) 242 0 R (subsubsection.5.14.26) 246 0 R (subsubsection.5.14.27) 250 0 R (subsubsection.5.14.28) 254 0 R (subsubsection.5.14.3) 154 0 R (subsubsection.5.14.4) 158 0 R]
+/Limits [(subsubsection.5.14.25) (subsubsection.5.14.4)]
+>> endobj
+1954 0 obj <<
+/Names [(subsubsection.5.14.5) 162 0 R (subsubsection.5.14.6) 166 0 R (subsubsection.5.14.7) 170 0 R (subsubsection.5.14.8) 174 0 R (subsubsection.5.14.9) 178 0 R (subsubsection.5.2.1) 86 0 R]
+/Limits [(subsubsection.5.14.5) (subsubsection.5.2.1)]
+>> endobj
+1955 0 obj <<
+/Names [(subsubsection.5.2.2) 90 0 R (subsubsection.5.8.1) 118 0 R (subsubsection.6.1.1) 274 0 R (subsubsection.6.1.2) 278 0 R (subsubsection.6.1.3) 282 0 R (subsubsection.6.1.4) 286 0 R]
+/Limits [(subsubsection.5.2.2) (subsubsection.6.1.4)]
+>> endobj
+1956 0 obj <<
+/Names [(subsubsection.6.1.5) 290 0 R (subsubsection.6.3.1) 302 0 R (subsubsection.6.3.2) 306 0 R (subsubsection.6.4.1) 314 0 R (subsubsection.6.4.2) 318 0 R (subsubsection.6.5.1) 326 0 R]
+/Limits [(subsubsection.6.1.5) (subsubsection.6.5.1)]
+>> endobj
+1957 0 obj <<
+/Names [(subsubsection.6.5.2) 330 0 R]
+/Limits [(subsubsection.6.5.2) (subsubsection.6.5.2)]
+>> endobj
+1958 0 obj <<
+/Kids [1776 0 R 1777 0 R 1778 0 R 1779 0 R 1780 0 R 1781 0 R]
+/Limits [(Doc-Start) (Item.4)]
+>> endobj
+1959 0 obj <<
+/Kids [1782 0 R 1783 0 R 1784 0 R 1785 0 R 1786 0 R 1787 0 R]
+/Limits [(Item.5) (lstlisting.-23)]
+>> endobj
+1960 0 obj <<
+/Kids [1788 0 R 1789 0 R 1790 0 R 1791 0 R 1792 0 R 1793 0 R]
+/Limits [(lstlisting.-24) (lstlisting.-56)]
+>> endobj
+1961 0 obj <<
+/Kids [1794 0 R 1795 0 R 1796 0 R 1797 0 R 1798 0 R 1799 0 R]
+/Limits [(lstlisting.-57) (lstlisting.-89)]
+>> endobj
+1962 0 obj <<
+/Kids [1800 0 R 1801 0 R 1802 0 R 1803 0 R 1804 0 R 1805 0 R]
+/Limits [(lstlisting.-9) (lstnumber.-11.10)]
+>> endobj
+1963 0 obj <<
+/Kids [1806 0 R 1807 0 R 1808 0 R 1809 0 R 1810 0 R 1811 0 R]
+/Limits [(lstnumber.-11.11) (lstnumber.-12.4)]
+>> endobj
+1964 0 obj <<
+/Kids [1812 0 R 1813 0 R 1814 0 R 1815 0 R 1816 0 R 1817 0 R]
+/Limits [(lstnumber.-12.5) (lstnumber.-15.22)]
+>> endobj
+1965 0 obj <<
+/Kids [1818 0 R 1819 0 R 1820 0 R 1821 0 R 1822 0 R 1823 0 R]
+/Limits [(lstnumber.-15.23) (lstnumber.-15.55)]
+>> endobj
+1966 0 obj <<
+/Kids [1824 0 R 1825 0 R 1826 0 R 1827 0 R 1828 0 R 1829 0 R]
+/Limits [(lstnumber.-15.56) (lstnumber.-23.5)]
+>> endobj
+1967 0 obj <<
+/Kids [1830 0 R 1831 0 R 1832 0 R 1833 0 R 1834 0 R 1835 0 R]
+/Limits [(lstnumber.-24.1) (lstnumber.-33.1)]
+>> endobj
+1968 0 obj <<
+/Kids [1836 0 R 1837 0 R 1838 0 R 1839 0 R 1840 0 R 1841 0 R]
+/Limits [(lstnumber.-33.2) (lstnumber.-39.1)]
+>> endobj
+1969 0 obj <<
+/Kids [1842 0 R 1843 0 R 1844 0 R 1845 0 R 1846 0 R 1847 0 R]
+/Limits [(lstnumber.-39.2) (lstnumber.-44.1)]
+>> endobj
+1970 0 obj <<
+/Kids [1848 0 R 1849 0 R 1850 0 R 1851 0 R 1852 0 R 1853 0 R]
+/Limits [(lstnumber.-44.2) (lstnumber.-54.5)]
+>> endobj
+1971 0 obj <<
+/Kids [1854 0 R 1855 0 R 1856 0 R 1857 0 R 1858 0 R 1859 0 R]
+/Limits [(lstnumber.-54.6) (lstnumber.-59.28)]
+>> endobj
+1972 0 obj <<
+/Kids [1860 0 R 1861 0 R 1862 0 R 1863 0 R 1864 0 R 1865 0 R]
+/Limits [(lstnumber.-59.29) (lstnumber.-64.4)]
+>> endobj
+1973 0 obj <<
+/Kids [1866 0 R 1867 0 R 1868 0 R 1869 0 R 1870 0 R 1871 0 R]
+/Limits [(lstnumber.-64.5) (lstnumber.-72.5)]
+>> endobj
+1974 0 obj <<
+/Kids [1872 0 R 1873 0 R 1874 0 R 1875 0 R 1876 0 R 1877 0 R]
+/Limits [(lstnumber.-73.1) (lstnumber.-79.10)]
+>> endobj
+1975 0 obj <<
+/Kids [1878 0 R 1879 0 R 1880 0 R 1881 0 R 1882 0 R 1883 0 R]
+/Limits [(lstnumber.-79.11) (lstnumber.-80.18)]
+>> endobj
+1976 0 obj <<
+/Kids [1884 0 R 1885 0 R 1886 0 R 1887 0 R 1888 0 R 1889 0 R]
+/Limits [(lstnumber.-80.19) (lstnumber.-81.5)]
+>> endobj
+1977 0 obj <<
+/Kids [1890 0 R 1891 0 R 1892 0 R 1893 0 R 1894 0 R 1895 0 R]
+/Limits [(lstnumber.-81.6) (lstnumber.-83.15)]
+>> endobj
+1978 0 obj <<
+/Kids [1896 0 R 1897 0 R 1898 0 R 1899 0 R 1900 0 R 1901 0 R]
+/Limits [(lstnumber.-83.16) (lstnumber.-85.8)]
+>> endobj
+1979 0 obj <<
+/Kids [1902 0 R 1903 0 R 1904 0 R 1905 0 R 1906 0 R 1907 0 R]
+/Limits [(lstnumber.-85.9) (lstnumber.-88.9)]
+>> endobj
+1980 0 obj <<
+/Kids [1908 0 R 1909 0 R 1910 0 R 1911 0 R 1912 0 R 1913 0 R]
+/Limits [(lstnumber.-89.1) (lstnumber.-9.16)]
+>> endobj
+1981 0 obj <<
+/Kids [1914 0 R 1915 0 R 1916 0 R 1917 0 R 1918 0 R 1919 0 R]
+/Limits [(lstnumber.-9.2) (lstnumber.-91.12)]
+>> endobj
+1982 0 obj <<
+/Kids [1920 0 R 1921 0 R 1922 0 R 1923 0 R 1924 0 R 1925 0 R]
+/Limits [(lstnumber.-91.13) (lstnumber.-91.45)]
+>> endobj
+1983 0 obj <<
+/Kids [1926 0 R 1927 0 R 1928 0 R 1929 0 R 1930 0 R 1931 0 R]
+/Limits [(lstnumber.-91.46) (lstnumber.-92.8)]
+>> endobj
+1984 0 obj <<
+/Kids [1932 0 R 1933 0 R 1934 0 R 1935 0 R 1936 0 R 1937 0 R]
+/Limits [(lstnumber.-92.9) (page.37)]
+>> endobj
+1985 0 obj <<
+/Kids [1938 0 R 1939 0 R 1940 0 R 1941 0 R 1942 0 R 1943 0 R]
+/Limits [(page.38) (subsection.3.3)]
+>> endobj
+1986 0 obj <<
+/Kids [1944 0 R 1945 0 R 1946 0 R 1947 0 R 1948 0 R 1949 0 R]
+/Limits [(subsection.3.4) (subsection.7.2)]
+>> endobj
+1987 0 obj <<
+/Kids [1950 0 R 1951 0 R 1952 0 R 1953 0 R 1954 0 R 1955 0 R]
+/Limits [(subsection.7.3) (subsubsection.6.1.4)]
+>> endobj
+1988 0 obj <<
+/Kids [1956 0 R 1957 0 R]
+/Limits [(subsubsection.6.1.5) (subsubsection.6.5.2)]
+>> endobj
+1989 0 obj <<
+/Kids [1958 0 R 1959 0 R 1960 0 R 1961 0 R 1962 0 R 1963 0 R]
+/Limits [(Doc-Start) (lstnumber.-12.4)]
+>> endobj
+1990 0 obj <<
+/Kids [1964 0 R 1965 0 R 1966 0 R 1967 0 R 1968 0 R 1969 0 R]
+/Limits [(lstnumber.-12.5) (lstnumber.-44.1)]
+>> endobj
+1991 0 obj <<
+/Kids [1970 0 R 1971 0 R 1972 0 R 1973 0 R 1974 0 R 1975 0 R]
+/Limits [(lstnumber.-44.2) (lstnumber.-80.18)]
+>> endobj
+1992 0 obj <<
+/Kids [1976 0 R 1977 0 R 1978 0 R 1979 0 R 1980 0 R 1981 0 R]
+/Limits [(lstnumber.-80.19) (lstnumber.-91.12)]
+>> endobj
+1993 0 obj <<
+/Kids [1982 0 R 1983 0 R 1984 0 R 1985 0 R 1986 0 R 1987 0 R]
+/Limits [(lstnumber.-91.13) (subsubsection.6.1.4)]
+>> endobj
+1994 0 obj <<
+/Kids [1988 0 R]
+/Limits [(subsubsection.6.1.5) (subsubsection.6.5.2)]
+>> endobj
+1995 0 obj <<
+/Kids [1989 0 R 1990 0 R 1991 0 R 1992 0 R 1993 0 R 1994 0 R]
+/Limits [(Doc-Start) (subsubsection.6.5.2)]
+>> endobj
+1996 0 obj <<
+/Dests 1995 0 R
+>> endobj
+1997 0 obj <<
+/Type /Catalog
+/Pages 1774 0 R
+/Outlines 1775 0 R
+/Names 1996 0 R
+/PageMode/UseOutlines
+/OpenAction 361 0 R
+>> endobj
+1998 0 obj <<
+ /Author (Christian Feuersaenger) /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.3)/Keywords()
+/CreationDate (D:20080217140921+01'00')
+/ModDate (D:20080217140921+01'00')
+/Trapped /False
+/PTEX.Fullbanner (This is pdfTeX using libpoppler, Version 3.141592-1.40.3-2.2 (Web2C 7.5.6) kpathsea version 3.5.6)
+>> endobj
+xref
+0 1999
+0000000001 65535 f
+0000000002 00000 f
+0000000003 00000 f
+0000000004 00000 f
+0000000000 00000 f
+0000000015 00000 n
+0000030367 00000 n
+0000531074 00000 n
+0000000060 00000 n
+0000000090 00000 n
+0000030427 00000 n
+0000530987 00000 n
+0000000135 00000 n
+0000000169 00000 n
+0000033407 00000 n
+0000530861 00000 n
+0000000215 00000 n
+0000000246 00000 n
+0000033468 00000 n
+0000530787 00000 n
+0000000297 00000 n
+0000000325 00000 n
+0000033653 00000 n
+0000530700 00000 n
+0000000376 00000 n
+0000000408 00000 n
+0000033714 00000 n
+0000530613 00000 n
+0000000459 00000 n
+0000000506 00000 n
+0000037593 00000 n
+0000530526 00000 n
+0000000557 00000 n
+0000000608 00000 n
+0000037902 00000 n
+0000530439 00000 n
+0000000659 00000 n
+0000000719 00000 n
+0000037963 00000 n
+0000530352 00000 n
+0000000770 00000 n
+0000000844 00000 n
+0000038024 00000 n
+0000530265 00000 n
+0000000895 00000 n
+0000000941 00000 n
+0000038085 00000 n
+0000530191 00000 n
+0000000992 00000 n
+0000001051 00000 n
+0000041171 00000 n
+0000530065 00000 n
+0000001097 00000 n
+0000001138 00000 n
+0000041232 00000 n
+0000529991 00000 n
+0000001189 00000 n
+0000001220 00000 n
+0000044949 00000 n
+0000529904 00000 n
+0000001271 00000 n
+0000001316 00000 n
+0000050826 00000 n
+0000529817 00000 n
+0000001367 00000 n
+0000001403 00000 n
+0000066925 00000 n
+0000529730 00000 n
+0000001454 00000 n
+0000001492 00000 n
+0000088347 00000 n
+0000529656 00000 n
+0000001543 00000 n
+0000001575 00000 n
+0000105114 00000 n
+0000529527 00000 n
+0000001621 00000 n
+0000001649 00000 n
+0000105175 00000 n
+0000529453 00000 n
+0000001700 00000 n
+0000001741 00000 n
+0000110428 00000 n
+0000529329 00000 n
+0000001792 00000 n
+0000001828 00000 n
+0000110489 00000 n
+0000529255 00000 n
+0000001884 00000 n
+0000001910 00000 n
+0000113688 00000 n
+0000529181 00000 n
+0000001966 00000 n
+0000001996 00000 n
+0000115977 00000 n
+0000529094 00000 n
+0000002047 00000 n
+0000002091 00000 n
+0000120962 00000 n
+0000529005 00000 n
+0000002142 00000 n
+0000002187 00000 n
+0000121271 00000 n
+0000528914 00000 n
+0000002239 00000 n
+0000002275 00000 n
+0000124682 00000 n
+0000528822 00000 n
+0000002327 00000 n
+0000002386 00000 n
+0000125054 00000 n
+0000528730 00000 n
+0000002438 00000 n
+0000002488 00000 n
+0000129677 00000 n
+0000528599 00000 n
+0000002540 00000 n
+0000002591 00000 n
+0000132344 00000 n
+0000528534 00000 n
+0000002648 00000 n
+0000002685 00000 n
+0000136979 00000 n
+0000528442 00000 n
+0000002737 00000 n
+0000002777 00000 n
+0000137852 00000 n
+0000528350 00000 n
+0000002830 00000 n
+0000002876 00000 n
+0000139795 00000 n
+0000528258 00000 n
+0000002929 00000 n
+0000002959 00000 n
+0000139858 00000 n
+0000528166 00000 n
+0000003012 00000 n
+0000003064 00000 n
+0000140433 00000 n
+0000528074 00000 n
+0000003117 00000 n
+0000003178 00000 n
+0000141072 00000 n
+0000527942 00000 n
+0000003231 00000 n
+0000003263 00000 n
+0000144021 00000 n
+0000527863 00000 n
+0000003321 00000 n
+0000003369 00000 n
+0000144084 00000 n
+0000527770 00000 n
+0000003427 00000 n
+0000003461 00000 n
+0000148307 00000 n
+0000527677 00000 n
+0000003519 00000 n
+0000003549 00000 n
+0000148626 00000 n
+0000527584 00000 n
+0000003607 00000 n
+0000003646 00000 n
+0000148689 00000 n
+0000527491 00000 n
+0000003704 00000 n
+0000003745 00000 n
+0000163053 00000 n
+0000527398 00000 n
+0000003803 00000 n
+0000003847 00000 n
+0000163116 00000 n
+0000527305 00000 n
+0000003905 00000 n
+0000003952 00000 n
+0000169335 00000 n
+0000527212 00000 n
+0000004010 00000 n
+0000004059 00000 n
+0000172952 00000 n
+0000527119 00000 n
+0000004117 00000 n
+0000004160 00000 n
+0000173015 00000 n
+0000527026 00000 n
+0000004219 00000 n
+0000004264 00000 n
+0000173078 00000 n
+0000526933 00000 n
+0000004323 00000 n
+0000004368 00000 n
+0000173141 00000 n
+0000526840 00000 n
+0000004427 00000 n
+0000004474 00000 n
+0000175894 00000 n
+0000526747 00000 n
+0000004533 00000 n
+0000004576 00000 n
+0000175957 00000 n
+0000526654 00000 n
+0000004635 00000 n
+0000004678 00000 n
+0000176019 00000 n
+0000526561 00000 n
+0000004737 00000 n
+0000004782 00000 n
+0000176082 00000 n
+0000526468 00000 n
+0000004841 00000 n
+0000004886 00000 n
+0000176145 00000 n
+0000526375 00000 n
+0000004945 00000 n
+0000004991 00000 n
+0000176463 00000 n
+0000526282 00000 n
+0000005050 00000 n
+0000005105 00000 n
+0000180053 00000 n
+0000526189 00000 n
+0000005164 00000 n
+0000005205 00000 n
+0000180116 00000 n
+0000526096 00000 n
+0000005264 00000 n
+0000005315 00000 n
+0000180179 00000 n
+0000526003 00000 n
+0000005374 00000 n
+0000005410 00000 n
+0000180242 00000 n
+0000525910 00000 n
+0000005469 00000 n
+0000005507 00000 n
+0000184034 00000 n
+0000525817 00000 n
+0000005566 00000 n
+0000005597 00000 n
+0000184097 00000 n
+0000525724 00000 n
+0000005656 00000 n
+0000005701 00000 n
+0000188169 00000 n
+0000525631 00000 n
+0000005760 00000 n
+0000005808 00000 n
+0000190538 00000 n
+0000525538 00000 n
+0000005867 00000 n
+0000005903 00000 n
+0000191366 00000 n
+0000525445 00000 n
+0000005962 00000 n
+0000006004 00000 n
+0000191428 00000 n
+0000525366 00000 n
+0000006063 00000 n
+0000006097 00000 n
+0000195815 00000 n
+0000525274 00000 n
+0000006150 00000 n
+0000006200 00000 n
+0000197498 00000 n
+0000525196 00000 n
+0000006253 00000 n
+0000006301 00000 n
+0000197561 00000 n
+0000525064 00000 n
+0000006348 00000 n
+0000006381 00000 n
+0000197624 00000 n
+0000524946 00000 n
+0000006433 00000 n
+0000006483 00000 n
+0000197687 00000 n
+0000524867 00000 n
+0000006540 00000 n
+0000006591 00000 n
+0000207126 00000 n
+0000524774 00000 n
+0000006648 00000 n
+0000006686 00000 n
+0000216677 00000 n
+0000524681 00000 n
+0000006743 00000 n
+0000006787 00000 n
+0000226244 00000 n
+0000524588 00000 n
+0000006844 00000 n
+0000006888 00000 n
+0000235711 00000 n
+0000524509 00000 n
+0000006945 00000 n
+0000006995 00000 n
+0000251742 00000 n
+0000524416 00000 n
+0000007047 00000 n
+0000007091 00000 n
+0000260867 00000 n
+0000524284 00000 n
+0000007143 00000 n
+0000007191 00000 n
+0000260930 00000 n
+0000524205 00000 n
+0000007248 00000 n
+0000007298 00000 n
+0000261632 00000 n
+0000524126 00000 n
+0000007355 00000 n
+0000007393 00000 n
+0000272353 00000 n
+0000523994 00000 n
+0000007445 00000 n
+0000007483 00000 n
+0000272416 00000 n
+0000523915 00000 n
+0000007540 00000 n
+0000007580 00000 n
+0000279905 00000 n
+0000523836 00000 n
+0000007637 00000 n
+0000007679 00000 n
+0000280607 00000 n
+0000523704 00000 n
+0000007731 00000 n
+0000007767 00000 n
+0000280670 00000 n
+0000523625 00000 n
+0000007824 00000 n
+0000007873 00000 n
+0000291174 00000 n
+0000523546 00000 n
+0000007930 00000 n
+0000007982 00000 n
+0000301688 00000 n
+0000523453 00000 n
+0000008034 00000 n
+0000008097 00000 n
+0000301751 00000 n
+0000523360 00000 n
+0000008149 00000 n
+0000008189 00000 n
+0000318342 00000 n
+0000523281 00000 n
+0000008241 00000 n
+0000008270 00000 n
+0000335401 00000 n
+0000523162 00000 n
+0000008317 00000 n
+0000008369 00000 n
+0000335463 00000 n
+0000523083 00000 n
+0000008421 00000 n
+0000008451 00000 n
+0000338194 00000 n
+0000522990 00000 n
+0000008503 00000 n
+0000008540 00000 n
+0000338385 00000 n
+0000522911 00000 n
+0000008592 00000 n
+0000008630 00000 n
+0000010343 00000 n
+0000013247 00000 n
+0000010618 00000 n
+0000010770 00000 n
+0000010921 00000 n
+0000011072 00000 n
+0000011228 00000 n
+0000011383 00000 n
+0000011539 00000 n
+0000011694 00000 n
+0000011850 00000 n
+0000012005 00000 n
+0000012161 00000 n
+0000012317 00000 n
+0000012469 00000 n
+0000012625 00000 n
+0000012780 00000 n
+0000012936 00000 n
+0000013092 00000 n
+0000016259 00000 n
+0000016411 00000 n
+0000016567 00000 n
+0000016723 00000 n
+0000016885 00000 n
+0000013632 00000 n
+0000008682 00000 n
+0000013446 00000 n
+0000013508 00000 n
+0000519204 00000 n
+0000519783 00000 n
+0000519059 00000 n
+0000520356 00000 n
+0000517745 00000 n
+0000520644 00000 n
+0000517599 00000 n
+0000013570 00000 n
+0000517453 00000 n
+0000518914 00000 n
+0000521109 00000 n
+0000520072 00000 n
+0000521461 00000 n
+0000017047 00000 n
+0000017203 00000 n
+0000017359 00000 n
+0000017515 00000 n
+0000017671 00000 n
+0000017827 00000 n
+0000017982 00000 n
+0000018144 00000 n
+0000018299 00000 n
+0000018455 00000 n
+0000018611 00000 n
+0000018767 00000 n
+0000018923 00000 n
+0000019080 00000 n
+0000019243 00000 n
+0000019405 00000 n
+0000019568 00000 n
+0000019731 00000 n
+0000019894 00000 n
+0000020057 00000 n
+0000020220 00000 n
+0000020383 00000 n
+0000020546 00000 n
+0000020710 00000 n
+0000020874 00000 n
+0000021038 00000 n
+0000021202 00000 n
+0000021365 00000 n
+0000021529 00000 n
+0000021693 00000 n
+0000021857 00000 n
+0000022021 00000 n
+0000022185 00000 n
+0000022349 00000 n
+0000022513 00000 n
+0000022677 00000 n
+0000022840 00000 n
+0000023003 00000 n
+0000023166 00000 n
+0000023330 00000 n
+0000023493 00000 n
+0000023657 00000 n
+0000023814 00000 n
+0000026507 00000 n
+0000026659 00000 n
+0000024033 00000 n
+0000015744 00000 n
+0000013833 00000 n
+0000023971 00000 n
+0000519927 00000 n
+0000026814 00000 n
+0000026976 00000 n
+0000027137 00000 n
+0000027299 00000 n
+0000027460 00000 n
+0000027622 00000 n
+0000027778 00000 n
+0000027934 00000 n
+0000028096 00000 n
+0000028258 00000 n
+0000028414 00000 n
+0000028576 00000 n
+0000028738 00000 n
+0000028894 00000 n
+0000029056 00000 n
+0000029218 00000 n
+0000029374 00000 n
+0000029530 00000 n
+0000029686 00000 n
+0000029838 00000 n
+0000029993 00000 n
+0000030149 00000 n
+0000030672 00000 n
+0000026184 00000 n
+0000024143 00000 n
+0000030305 00000 n
+0000518623 00000 n
+0000520498 00000 n
+0000030488 00000 n
+0000030548 00000 n
+0000030610 00000 n
+0000032613 00000 n
+0000032768 00000 n
+0000032923 00000 n
+0000034953 00000 n
+0000032458 00000 n
+0000030808 00000 n
+0000033097 00000 n
+0000033159 00000 n
+0000033221 00000 n
+0000033283 00000 n
+0000033345 00000 n
+0000033529 00000 n
+0000033591 00000 n
+0000518184 00000 n
+0000033775 00000 n
+0000033837 00000 n
+0000033899 00000 n
+0000033961 00000 n
+0000034023 00000 n
+0000034085 00000 n
+0000034147 00000 n
+0000034209 00000 n
+0000034271 00000 n
+0000034333 00000 n
+0000034395 00000 n
+0000034457 00000 n
+0000034519 00000 n
+0000034581 00000 n
+0000034643 00000 n
+0000034705 00000 n
+0000034767 00000 n
+0000034829 00000 n
+0000034891 00000 n
+0000520935 00000 n
+0000037344 00000 n
+0000038146 00000 n
+0000037205 00000 n
+0000035089 00000 n
+0000037531 00000 n
+0000519494 00000 n
+0000037654 00000 n
+0000037716 00000 n
+0000037778 00000 n
+0000037840 00000 n
+0000040345 00000 n
+0000040496 00000 n
+0000040647 00000 n
+0000044675 00000 n
+0000042347 00000 n
+0000040190 00000 n
+0000038281 00000 n
+0000040799 00000 n
+0000040861 00000 n
+0000040923 00000 n
+0000040985 00000 n
+0000521283 00000 n
+0000041047 00000 n
+0000041109 00000 n
+0000041293 00000 n
+0000041355 00000 n
+0000041417 00000 n
+0000041479 00000 n
+0000041541 00000 n
+0000041603 00000 n
+0000041665 00000 n
+0000041727 00000 n
+0000041789 00000 n
+0000041851 00000 n
+0000041913 00000 n
+0000041975 00000 n
+0000042037 00000 n
+0000042099 00000 n
+0000042161 00000 n
+0000042223 00000 n
+0000042285 00000 n
+0000338704 00000 n
+0000044887 00000 n
+0000046557 00000 n
+0000044536 00000 n
+0000042496 00000 n
+0000044825 00000 n
+0000045010 00000 n
+0000045072 00000 n
+0000045134 00000 n
+0000045196 00000 n
+0000045258 00000 n
+0000045320 00000 n
+0000045382 00000 n
+0000045444 00000 n
+0000045506 00000 n
+0000045568 00000 n
+0000045630 00000 n
+0000045692 00000 n
+0000045754 00000 n
+0000045816 00000 n
+0000045878 00000 n
+0000045940 00000 n
+0000046001 00000 n
+0000046063 00000 n
+0000046124 00000 n
+0000046186 00000 n
+0000046247 00000 n
+0000046309 00000 n
+0000046371 00000 n
+0000046433 00000 n
+0000046495 00000 n
+0000521579 00000 n
+0000050581 00000 n
+0000050218 00000 n
+0000050369 00000 n
+0000051937 00000 n
+0000050071 00000 n
+0000046693 00000 n
+0000050519 00000 n
+0000050643 00000 n
+0000050703 00000 n
+0000050765 00000 n
+0000050886 00000 n
+0000050948 00000 n
+0000051010 00000 n
+0000051072 00000 n
+0000051134 00000 n
+0000051196 00000 n
+0000051258 00000 n
+0000051320 00000 n
+0000051381 00000 n
+0000051443 00000 n
+0000051504 00000 n
+0000051566 00000 n
+0000051627 00000 n
+0000051689 00000 n
+0000051751 00000 n
+0000051813 00000 n
+0000051875 00000 n
+0000058981 00000 n
+0000059042 00000 n
+0000059104 00000 n
+0000058800 00000 n
+0000052098 00000 n
+0000058919 00000 n
+0000520214 00000 n
+0000062844 00000 n
+0000060434 00000 n
+0000059200 00000 n
+0000060553 00000 n
+0000060615 00000 n
+0000060677 00000 n
+0000060739 00000 n
+0000060801 00000 n
+0000060863 00000 n
+0000060925 00000 n
+0000060987 00000 n
+0000061049 00000 n
+0000061111 00000 n
+0000061173 00000 n
+0000061235 00000 n
+0000061297 00000 n
+0000061359 00000 n
+0000061421 00000 n
+0000061483 00000 n
+0000061545 00000 n
+0000061607 00000 n
+0000061669 00000 n
+0000061731 00000 n
+0000061793 00000 n
+0000061855 00000 n
+0000061917 00000 n
+0000061979 00000 n
+0000062040 00000 n
+0000062102 00000 n
+0000062163 00000 n
+0000062225 00000 n
+0000062286 00000 n
+0000062348 00000 n
+0000062410 00000 n
+0000062472 00000 n
+0000062534 00000 n
+0000062596 00000 n
+0000062658 00000 n
+0000062720 00000 n
+0000062782 00000 n
+0000066030 00000 n
+0000067854 00000 n
+0000065891 00000 n
+0000062967 00000 n
+0000066181 00000 n
+0000066243 00000 n
+0000066305 00000 n
+0000066367 00000 n
+0000066429 00000 n
+0000066491 00000 n
+0000066553 00000 n
+0000066615 00000 n
+0000066677 00000 n
+0000066739 00000 n
+0000066801 00000 n
+0000066863 00000 n
+0000066986 00000 n
+0000067048 00000 n
+0000067110 00000 n
+0000067172 00000 n
+0000067234 00000 n
+0000067296 00000 n
+0000067358 00000 n
+0000067420 00000 n
+0000067482 00000 n
+0000067544 00000 n
+0000067606 00000 n
+0000067668 00000 n
+0000067730 00000 n
+0000067792 00000 n
+0000077379 00000 n
+0000075279 00000 n
+0000067976 00000 n
+0000075398 00000 n
+0000075460 00000 n
+0000075522 00000 n
+0000075584 00000 n
+0000075646 00000 n
+0000075708 00000 n
+0000075770 00000 n
+0000075832 00000 n
+0000075894 00000 n
+0000075956 00000 n
+0000076018 00000 n
+0000076080 00000 n
+0000076142 00000 n
+0000076204 00000 n
+0000076266 00000 n
+0000076328 00000 n
+0000076390 00000 n
+0000076452 00000 n
+0000076514 00000 n
+0000076576 00000 n
+0000076638 00000 n
+0000076700 00000 n
+0000076761 00000 n
+0000076823 00000 n
+0000076884 00000 n
+0000076946 00000 n
+0000077007 00000 n
+0000077069 00000 n
+0000077131 00000 n
+0000077193 00000 n
+0000077255 00000 n
+0000077317 00000 n
+0000085765 00000 n
+0000085916 00000 n
+0000086067 00000 n
+0000086218 00000 n
+0000104466 00000 n
+0000088408 00000 n
+0000085602 00000 n
+0000077501 00000 n
+0000086368 00000 n
+0000086430 00000 n
+0000086492 00000 n
+0000086554 00000 n
+0000086615 00000 n
+0000086677 00000 n
+0000086738 00000 n
+0000086800 00000 n
+0000086862 00000 n
+0000086924 00000 n
+0000086986 00000 n
+0000087048 00000 n
+0000087110 00000 n
+0000087172 00000 n
+0000087233 00000 n
+0000087295 00000 n
+0000087356 00000 n
+0000087418 00000 n
+0000087479 00000 n
+0000087541 00000 n
+0000087603 00000 n
+0000087665 00000 n
+0000087727 00000 n
+0000087789 00000 n
+0000087851 00000 n
+0000087913 00000 n
+0000087975 00000 n
+0000088037 00000 n
+0000088099 00000 n
+0000088161 00000 n
+0000088223 00000 n
+0000088285 00000 n
+0000521697 00000 n
+0000096527 00000 n
+0000105052 00000 n
+0000096589 00000 n
+0000095974 00000 n
+0000088569 00000 n
+0000096093 00000 n
+0000096155 00000 n
+0000096217 00000 n
+0000096279 00000 n
+0000096341 00000 n
+0000096403 00000 n
+0000096465 00000 n
+0000105793 00000 n
+0000104327 00000 n
+0000096724 00000 n
+0000104618 00000 n
+0000104680 00000 n
+0000104742 00000 n
+0000104804 00000 n
+0000104866 00000 n
+0000104928 00000 n
+0000104990 00000 n
+0000105236 00000 n
+0000105298 00000 n
+0000105359 00000 n
+0000105421 00000 n
+0000105483 00000 n
+0000105545 00000 n
+0000105607 00000 n
+0000105669 00000 n
+0000105731 00000 n
+0000109161 00000 n
+0000108295 00000 n
+0000110550 00000 n
+0000108156 00000 n
+0000105941 00000 n
+0000109313 00000 n
+0000109375 00000 n
+0000109437 00000 n
+0000109498 00000 n
+0000109560 00000 n
+0000109622 00000 n
+0000109684 00000 n
+0000109746 00000 n
+0000109808 00000 n
+0000109870 00000 n
+0000109932 00000 n
+0000109994 00000 n
+0000110056 00000 n
+0000110118 00000 n
+0000110180 00000 n
+0000110242 00000 n
+0000110304 00000 n
+0000110366 00000 n
+0000108494 00000 n
+0000113749 00000 n
+0000113013 00000 n
+0000110740 00000 n
+0000113132 00000 n
+0000113194 00000 n
+0000113256 00000 n
+0000113318 00000 n
+0000113380 00000 n
+0000113442 00000 n
+0000113504 00000 n
+0000113565 00000 n
+0000113627 00000 n
+0000115760 00000 n
+0000117831 00000 n
+0000115621 00000 n
+0000113885 00000 n
+0000115915 00000 n
+0000116038 00000 n
+0000116100 00000 n
+0000116161 00000 n
+0000116223 00000 n
+0000116284 00000 n
+0000116346 00000 n
+0000116407 00000 n
+0000116469 00000 n
+0000116531 00000 n
+0000116593 00000 n
+0000116655 00000 n
+0000116717 00000 n
+0000116778 00000 n
+0000116839 00000 n
+0000116901 00000 n
+0000116963 00000 n
+0000117025 00000 n
+0000117087 00000 n
+0000117149 00000 n
+0000117211 00000 n
+0000117273 00000 n
+0000117335 00000 n
+0000117397 00000 n
+0000117459 00000 n
+0000117521 00000 n
+0000117583 00000 n
+0000117645 00000 n
+0000117707 00000 n
+0000117769 00000 n
+0000120613 00000 n
+0000123745 00000 n
+0000121457 00000 n
+0000120474 00000 n
+0000117967 00000 n
+0000120776 00000 n
+0000518477 00000 n
+0000520790 00000 n
+0000120838 00000 n
+0000120900 00000 n
+0000121023 00000 n
+0000121085 00000 n
+0000121147 00000 n
+0000121209 00000 n
+0000121333 00000 n
+0000121395 00000 n
+0000521815 00000 n
+0000123902 00000 n
+0000124059 00000 n
+0000124215 00000 n
+0000125983 00000 n
+0000123582 00000 n
+0000121656 00000 n
+0000124372 00000 n
+0000124434 00000 n
+0000124496 00000 n
+0000124558 00000 n
+0000124620 00000 n
+0000124744 00000 n
+0000124806 00000 n
+0000124868 00000 n
+0000124930 00000 n
+0000124992 00000 n
+0000125115 00000 n
+0000125177 00000 n
+0000125239 00000 n
+0000125301 00000 n
+0000125363 00000 n
+0000125425 00000 n
+0000125487 00000 n
+0000125549 00000 n
+0000125611 00000 n
+0000125673 00000 n
+0000125735 00000 n
+0000125797 00000 n
+0000125859 00000 n
+0000125921 00000 n
+0000129029 00000 n
+0000130359 00000 n
+0000128890 00000 n
+0000126145 00000 n
+0000129181 00000 n
+0000129243 00000 n
+0000129305 00000 n
+0000129367 00000 n
+0000129429 00000 n
+0000129491 00000 n
+0000129553 00000 n
+0000129615 00000 n
+0000129739 00000 n
+0000129801 00000 n
+0000129863 00000 n
+0000129925 00000 n
+0000129987 00000 n
+0000130049 00000 n
+0000130111 00000 n
+0000130173 00000 n
+0000130235 00000 n
+0000130297 00000 n
+0000132130 00000 n
+0000134202 00000 n
+0000131991 00000 n
+0000130508 00000 n
+0000132282 00000 n
+0000132406 00000 n
+0000132467 00000 n
+0000132529 00000 n
+0000132591 00000 n
+0000132653 00000 n
+0000132715 00000 n
+0000132777 00000 n
+0000132839 00000 n
+0000132901 00000 n
+0000132963 00000 n
+0000133025 00000 n
+0000133087 00000 n
+0000133149 00000 n
+0000133211 00000 n
+0000133273 00000 n
+0000133335 00000 n
+0000133397 00000 n
+0000133459 00000 n
+0000133521 00000 n
+0000133583 00000 n
+0000133645 00000 n
+0000133707 00000 n
+0000133769 00000 n
+0000133831 00000 n
+0000133893 00000 n
+0000133955 00000 n
+0000134017 00000 n
+0000134079 00000 n
+0000134140 00000 n
+0000138040 00000 n
+0000135992 00000 n
+0000134351 00000 n
+0000136111 00000 n
+0000136173 00000 n
+0000136235 00000 n
+0000136297 00000 n
+0000136359 00000 n
+0000136421 00000 n
+0000136483 00000 n
+0000136545 00000 n
+0000136607 00000 n
+0000136669 00000 n
+0000136731 00000 n
+0000136793 00000 n
+0000136855 00000 n
+0000136917 00000 n
+0000137041 00000 n
+0000137103 00000 n
+0000137165 00000 n
+0000137227 00000 n
+0000137289 00000 n
+0000137351 00000 n
+0000137413 00000 n
+0000137475 00000 n
+0000137537 00000 n
+0000137600 00000 n
+0000137663 00000 n
+0000137726 00000 n
+0000137789 00000 n
+0000137914 00000 n
+0000137977 00000 n
+0000141519 00000 n
+0000139609 00000 n
+0000138215 00000 n
+0000139731 00000 n
+0000139921 00000 n
+0000139985 00000 n
+0000140049 00000 n
+0000140113 00000 n
+0000140177 00000 n
+0000140241 00000 n
+0000140305 00000 n
+0000140369 00000 n
+0000140496 00000 n
+0000140560 00000 n
+0000140624 00000 n
+0000140688 00000 n
+0000140752 00000 n
+0000140816 00000 n
+0000140880 00000 n
+0000140944 00000 n
+0000141008 00000 n
+0000141135 00000 n
+0000141199 00000 n
+0000141263 00000 n
+0000141327 00000 n
+0000141391 00000 n
+0000141455 00000 n
+0000145233 00000 n
+0000143706 00000 n
+0000141682 00000 n
+0000143829 00000 n
+0000143893 00000 n
+0000143957 00000 n
+0000144147 00000 n
+0000144211 00000 n
+0000144273 00000 n
+0000144337 00000 n
+0000144401 00000 n
+0000144465 00000 n
+0000144529 00000 n
+0000144593 00000 n
+0000144657 00000 n
+0000144721 00000 n
+0000144785 00000 n
+0000144849 00000 n
+0000144913 00000 n
+0000144977 00000 n
+0000145041 00000 n
+0000145105 00000 n
+0000145169 00000 n
+0000521934 00000 n
+0000147683 00000 n
+0000147834 00000 n
+0000148752 00000 n
+0000147530 00000 n
+0000145395 00000 n
+0000147987 00000 n
+0000148051 00000 n
+0000148115 00000 n
+0000148179 00000 n
+0000148243 00000 n
+0000148370 00000 n
+0000148434 00000 n
+0000148498 00000 n
+0000148562 00000 n
+0000159280 00000 n
+0000159344 00000 n
+0000157048 00000 n
+0000148914 00000 n
+0000157171 00000 n
+0000157235 00000 n
+0000157299 00000 n
+0000157363 00000 n
+0000157427 00000 n
+0000157491 00000 n
+0000157554 00000 n
+0000157618 00000 n
+0000157681 00000 n
+0000157745 00000 n
+0000157808 00000 n
+0000157872 00000 n
+0000157936 00000 n
+0000158000 00000 n
+0000158064 00000 n
+0000158128 00000 n
+0000158192 00000 n
+0000158256 00000 n
+0000158320 00000 n
+0000158384 00000 n
+0000158448 00000 n
+0000158512 00000 n
+0000158576 00000 n
+0000158640 00000 n
+0000158704 00000 n
+0000158768 00000 n
+0000158832 00000 n
+0000158896 00000 n
+0000158960 00000 n
+0000159024 00000 n
+0000159088 00000 n
+0000159152 00000 n
+0000159216 00000 n
+0000163434 00000 n
+0000162418 00000 n
+0000159493 00000 n
+0000162541 00000 n
+0000162605 00000 n
+0000162669 00000 n
+0000162733 00000 n
+0000162797 00000 n
+0000162861 00000 n
+0000162925 00000 n
+0000162989 00000 n
+0000163178 00000 n
+0000163242 00000 n
+0000163306 00000 n
+0000163370 00000 n
+0000166883 00000 n
+0000169398 00000 n
+0000166739 00000 n
+0000163609 00000 n
+0000167036 00000 n
+0000167100 00000 n
+0000167164 00000 n
+0000167228 00000 n
+0000167292 00000 n
+0000167356 00000 n
+0000167420 00000 n
+0000167484 00000 n
+0000167548 00000 n
+0000167611 00000 n
+0000167675 00000 n
+0000167738 00000 n
+0000167802 00000 n
+0000167866 00000 n
+0000167930 00000 n
+0000167994 00000 n
+0000168058 00000 n
+0000168122 00000 n
+0000168186 00000 n
+0000168250 00000 n
+0000168314 00000 n
+0000168378 00000 n
+0000168442 00000 n
+0000168506 00000 n
+0000168570 00000 n
+0000168634 00000 n
+0000168698 00000 n
+0000168762 00000 n
+0000168826 00000 n
+0000168890 00000 n
+0000168953 00000 n
+0000169017 00000 n
+0000169080 00000 n
+0000169144 00000 n
+0000169207 00000 n
+0000169271 00000 n
+0000171775 00000 n
+0000173268 00000 n
+0000171631 00000 n
+0000169573 00000 n
+0000171929 00000 n
+0000517304 00000 n
+0000171993 00000 n
+0000172057 00000 n
+0000172121 00000 n
+0000172184 00000 n
+0000172248 00000 n
+0000172312 00000 n
+0000172376 00000 n
+0000172440 00000 n
+0000172504 00000 n
+0000172568 00000 n
+0000172632 00000 n
+0000172696 00000 n
+0000172760 00000 n
+0000172824 00000 n
+0000172888 00000 n
+0000519349 00000 n
+0000173204 00000 n
+0000519638 00000 n
+0000175417 00000 n
+0000176526 00000 n
+0000175273 00000 n
+0000173472 00000 n
+0000175574 00000 n
+0000175638 00000 n
+0000175702 00000 n
+0000175766 00000 n
+0000175830 00000 n
+0000176207 00000 n
+0000176271 00000 n
+0000176335 00000 n
+0000176399 00000 n
+0000522059 00000 n
+0000179663 00000 n
+0000179826 00000 n
+0000180304 00000 n
+0000179510 00000 n
+0000176663 00000 n
+0000179989 00000 n
+0000183346 00000 n
+0000183500 00000 n
+0000183655 00000 n
+0000183812 00000 n
+0000184288 00000 n
+0000183175 00000 n
+0000180479 00000 n
+0000183970 00000 n
+0000184160 00000 n
+0000518768 00000 n
+0000184224 00000 n
+0000186800 00000 n
+0000188296 00000 n
+0000186656 00000 n
+0000184505 00000 n
+0000186954 00000 n
+0000187018 00000 n
+0000187082 00000 n
+0000187146 00000 n
+0000187210 00000 n
+0000187274 00000 n
+0000187337 00000 n
+0000187401 00000 n
+0000187465 00000 n
+0000187529 00000 n
+0000187593 00000 n
+0000187657 00000 n
+0000187721 00000 n
+0000187785 00000 n
+0000187849 00000 n
+0000187913 00000 n
+0000187977 00000 n
+0000188041 00000 n
+0000188105 00000 n
+0000188232 00000 n
+0000192066 00000 n
+0000190351 00000 n
+0000188486 00000 n
+0000190474 00000 n
+0000190601 00000 n
+0000190665 00000 n
+0000190729 00000 n
+0000190793 00000 n
+0000190857 00000 n
+0000190921 00000 n
+0000190985 00000 n
+0000191049 00000 n
+0000191111 00000 n
+0000191175 00000 n
+0000191238 00000 n
+0000191302 00000 n
+0000191491 00000 n
+0000191555 00000 n
+0000191619 00000 n
+0000191683 00000 n
+0000191747 00000 n
+0000191811 00000 n
+0000191875 00000 n
+0000191939 00000 n
+0000192002 00000 n
+0000195878 00000 n
+0000195181 00000 n
+0000192229 00000 n
+0000195304 00000 n
+0000195368 00000 n
+0000195432 00000 n
+0000195496 00000 n
+0000195560 00000 n
+0000195624 00000 n
+0000195688 00000 n
+0000195751 00000 n
+0000199350 00000 n
+0000197311 00000 n
+0000196053 00000 n
+0000197434 00000 n
+0000197750 00000 n
+0000197814 00000 n
+0000197878 00000 n
+0000197942 00000 n
+0000198006 00000 n
+0000198070 00000 n
+0000198134 00000 n
+0000198198 00000 n
+0000198262 00000 n
+0000198326 00000 n
+0000198390 00000 n
+0000198454 00000 n
+0000198518 00000 n
+0000198582 00000 n
+0000198646 00000 n
+0000198710 00000 n
+0000198774 00000 n
+0000198838 00000 n
+0000198902 00000 n
+0000198966 00000 n
+0000199030 00000 n
+0000199094 00000 n
+0000199158 00000 n
+0000199222 00000 n
+0000199286 00000 n
+0000522184 00000 n
+0000208852 00000 n
+0000206939 00000 n
+0000199499 00000 n
+0000207062 00000 n
+0000517890 00000 n
+0000207189 00000 n
+0000207253 00000 n
+0000207316 00000 n
+0000207380 00000 n
+0000207444 00000 n
+0000207508 00000 n
+0000207572 00000 n
+0000207636 00000 n
+0000207700 00000 n
+0000207764 00000 n
+0000207828 00000 n
+0000207892 00000 n
+0000207956 00000 n
+0000208020 00000 n
+0000208084 00000 n
+0000208148 00000 n
+0000208212 00000 n
+0000208276 00000 n
+0000208340 00000 n
+0000208404 00000 n
+0000208468 00000 n
+0000208532 00000 n
+0000208596 00000 n
+0000208660 00000 n
+0000208724 00000 n
+0000208788 00000 n
+0000218403 00000 n
+0000216490 00000 n
+0000209028 00000 n
+0000216613 00000 n
+0000216740 00000 n
+0000216804 00000 n
+0000216867 00000 n
+0000216931 00000 n
+0000216995 00000 n
+0000217059 00000 n
+0000217123 00000 n
+0000217187 00000 n
+0000217251 00000 n
+0000217315 00000 n
+0000217379 00000 n
+0000217443 00000 n
+0000217507 00000 n
+0000217571 00000 n
+0000217635 00000 n
+0000217699 00000 n
+0000217763 00000 n
+0000217827 00000 n
+0000217891 00000 n
+0000217955 00000 n
+0000218019 00000 n
+0000218083 00000 n
+0000218147 00000 n
+0000218211 00000 n
+0000218275 00000 n
+0000218339 00000 n
+0000227967 00000 n
+0000226057 00000 n
+0000218579 00000 n
+0000226180 00000 n
+0000226307 00000 n
+0000226371 00000 n
+0000226434 00000 n
+0000226498 00000 n
+0000226561 00000 n
+0000226625 00000 n
+0000226687 00000 n
+0000226751 00000 n
+0000226815 00000 n
+0000226879 00000 n
+0000226943 00000 n
+0000227007 00000 n
+0000227071 00000 n
+0000227135 00000 n
+0000227199 00000 n
+0000227263 00000 n
+0000227327 00000 n
+0000227391 00000 n
+0000227455 00000 n
+0000227519 00000 n
+0000227583 00000 n
+0000227647 00000 n
+0000227711 00000 n
+0000227775 00000 n
+0000227839 00000 n
+0000227903 00000 n
+0000237309 00000 n
+0000235524 00000 n
+0000228143 00000 n
+0000235647 00000 n
+0000235774 00000 n
+0000235838 00000 n
+0000235901 00000 n
+0000235965 00000 n
+0000236029 00000 n
+0000236093 00000 n
+0000236157 00000 n
+0000236221 00000 n
+0000236285 00000 n
+0000236349 00000 n
+0000236413 00000 n
+0000236477 00000 n
+0000236541 00000 n
+0000236605 00000 n
+0000236669 00000 n
+0000236733 00000 n
+0000236797 00000 n
+0000236861 00000 n
+0000236925 00000 n
+0000236989 00000 n
+0000237053 00000 n
+0000237117 00000 n
+0000237181 00000 n
+0000237245 00000 n
+0000252636 00000 n
+0000251555 00000 n
+0000237472 00000 n
+0000251678 00000 n
+0000251805 00000 n
+0000251869 00000 n
+0000251933 00000 n
+0000251997 00000 n
+0000252061 00000 n
+0000252125 00000 n
+0000252189 00000 n
+0000252253 00000 n
+0000252317 00000 n
+0000252381 00000 n
+0000252445 00000 n
+0000252509 00000 n
+0000252573 00000 n
+0000518330 00000 n
+0000262783 00000 n
+0000260680 00000 n
+0000252866 00000 n
+0000260803 00000 n
+0000260992 00000 n
+0000261056 00000 n
+0000261120 00000 n
+0000261184 00000 n
+0000261248 00000 n
+0000261312 00000 n
+0000261376 00000 n
+0000261440 00000 n
+0000261504 00000 n
+0000261568 00000 n
+0000261695 00000 n
+0000261759 00000 n
+0000261823 00000 n
+0000261887 00000 n
+0000261951 00000 n
+0000262015 00000 n
+0000262079 00000 n
+0000262143 00000 n
+0000262207 00000 n
+0000262271 00000 n
+0000262335 00000 n
+0000262399 00000 n
+0000262463 00000 n
+0000262527 00000 n
+0000262591 00000 n
+0000262655 00000 n
+0000262719 00000 n
+0000522309 00000 n
+0000273182 00000 n
+0000272166 00000 n
+0000262972 00000 n
+0000272289 00000 n
+0000272478 00000 n
+0000272542 00000 n
+0000272606 00000 n
+0000272670 00000 n
+0000272734 00000 n
+0000272798 00000 n
+0000272862 00000 n
+0000272926 00000 n
+0000272990 00000 n
+0000273054 00000 n
+0000273118 00000 n
+0000281818 00000 n
+0000279718 00000 n
+0000273384 00000 n
+0000279841 00000 n
+0000279968 00000 n
+0000280031 00000 n
+0000280095 00000 n
+0000280159 00000 n
+0000280223 00000 n
+0000280287 00000 n
+0000280351 00000 n
+0000280415 00000 n
+0000280479 00000 n
+0000280543 00000 n
+0000280733 00000 n
+0000280797 00000 n
+0000280861 00000 n
+0000280925 00000 n
+0000280989 00000 n
+0000281053 00000 n
+0000281117 00000 n
+0000281181 00000 n
+0000281244 00000 n
+0000281308 00000 n
+0000281371 00000 n
+0000281435 00000 n
+0000281498 00000 n
+0000281562 00000 n
+0000281626 00000 n
+0000281690 00000 n
+0000281754 00000 n
+0000292130 00000 n
+0000290219 00000 n
+0000282007 00000 n
+0000290342 00000 n
+0000290406 00000 n
+0000290470 00000 n
+0000290534 00000 n
+0000290598 00000 n
+0000290662 00000 n
+0000290726 00000 n
+0000290790 00000 n
+0000290854 00000 n
+0000290918 00000 n
+0000290982 00000 n
+0000291046 00000 n
+0000291110 00000 n
+0000291237 00000 n
+0000291301 00000 n
+0000291365 00000 n
+0000291429 00000 n
+0000291493 00000 n
+0000291557 00000 n
+0000291621 00000 n
+0000291685 00000 n
+0000291749 00000 n
+0000291812 00000 n
+0000291876 00000 n
+0000291939 00000 n
+0000292003 00000 n
+0000292066 00000 n
+0000300767 00000 n
+0000302390 00000 n
+0000300623 00000 n
+0000292307 00000 n
+0000300920 00000 n
+0000300984 00000 n
+0000301048 00000 n
+0000301112 00000 n
+0000301176 00000 n
+0000301240 00000 n
+0000301304 00000 n
+0000301368 00000 n
+0000301432 00000 n
+0000301496 00000 n
+0000301560 00000 n
+0000301624 00000 n
+0000301814 00000 n
+0000301878 00000 n
+0000301942 00000 n
+0000302006 00000 n
+0000302070 00000 n
+0000302134 00000 n
+0000302198 00000 n
+0000302262 00000 n
+0000302326 00000 n
+0000305604 00000 n
+0000305668 00000 n
+0000305417 00000 n
+0000302592 00000 n
+0000305540 00000 n
+0000518038 00000 n
+0000309876 00000 n
+0000306684 00000 n
+0000305843 00000 n
+0000306807 00000 n
+0000306871 00000 n
+0000306935 00000 n
+0000306999 00000 n
+0000307063 00000 n
+0000307127 00000 n
+0000307191 00000 n
+0000307255 00000 n
+0000307319 00000 n
+0000307383 00000 n
+0000307447 00000 n
+0000307511 00000 n
+0000307575 00000 n
+0000307639 00000 n
+0000307703 00000 n
+0000307767 00000 n
+0000307831 00000 n
+0000307895 00000 n
+0000307959 00000 n
+0000308023 00000 n
+0000308087 00000 n
+0000308151 00000 n
+0000308215 00000 n
+0000308278 00000 n
+0000308342 00000 n
+0000308405 00000 n
+0000308469 00000 n
+0000308532 00000 n
+0000308596 00000 n
+0000308660 00000 n
+0000308724 00000 n
+0000308788 00000 n
+0000308852 00000 n
+0000308916 00000 n
+0000308980 00000 n
+0000309044 00000 n
+0000309108 00000 n
+0000309172 00000 n
+0000309236 00000 n
+0000309300 00000 n
+0000309364 00000 n
+0000309428 00000 n
+0000309492 00000 n
+0000309556 00000 n
+0000309620 00000 n
+0000309684 00000 n
+0000309748 00000 n
+0000309812 00000 n
+0000522434 00000 n
+0000317869 00000 n
+0000319685 00000 n
+0000317725 00000 n
+0000309987 00000 n
+0000318022 00000 n
+0000318086 00000 n
+0000318150 00000 n
+0000318214 00000 n
+0000318278 00000 n
+0000318405 00000 n
+0000318469 00000 n
+0000318533 00000 n
+0000318597 00000 n
+0000318661 00000 n
+0000318725 00000 n
+0000318789 00000 n
+0000318853 00000 n
+0000318917 00000 n
+0000318981 00000 n
+0000319045 00000 n
+0000319109 00000 n
+0000319173 00000 n
+0000319237 00000 n
+0000319301 00000 n
+0000319365 00000 n
+0000319429 00000 n
+0000319493 00000 n
+0000319557 00000 n
+0000319621 00000 n
+0000335590 00000 n
+0000335214 00000 n
+0000319822 00000 n
+0000335337 00000 n
+0000335526 00000 n
+0000337370 00000 n
+0000337522 00000 n
+0000338767 00000 n
+0000337208 00000 n
+0000335740 00000 n
+0000337938 00000 n
+0000338002 00000 n
+0000338066 00000 n
+0000338130 00000 n
+0000338257 00000 n
+0000338321 00000 n
+0000338448 00000 n
+0000338512 00000 n
+0000338576 00000 n
+0000338640 00000 n
+0000337729 00000 n
+0000338903 00000 n
+0000338930 00000 n
+0000339096 00000 n
+0000339377 00000 n
+0000339755 00000 n
+0000340441 00000 n
+0000340892 00000 n
+0000340916 00000 n
+0000340942 00000 n
+0000340974 00000 n
+0000516827 00000 n
+0000341000 00000 n
+0000341414 00000 n
+0000341850 00000 n
+0000342194 00000 n
+0000342764 00000 n
+0000343234 00000 n
+0000343639 00000 n
+0000344276 00000 n
+0000344302 00000 n
+0000344784 00000 n
+0000345412 00000 n
+0000346052 00000 n
+0000346700 00000 n
+0000346726 00000 n
+0000347056 00000 n
+0000347100 00000 n
+0000347567 00000 n
+0000348072 00000 n
+0000348336 00000 n
+0000350002 00000 n
+0000350235 00000 n
+0000361450 00000 n
+0000361853 00000 n
+0000372137 00000 n
+0000372522 00000 n
+0000375191 00000 n
+0000375425 00000 n
+0000377394 00000 n
+0000377617 00000 n
+0000379382 00000 n
+0000379617 00000 n
+0000384828 00000 n
+0000385104 00000 n
+0000387112 00000 n
+0000387338 00000 n
+0000389497 00000 n
+0000389721 00000 n
+0000393699 00000 n
+0000393945 00000 n
+0000395861 00000 n
+0000396090 00000 n
+0000412362 00000 n
+0000412912 00000 n
+0000420813 00000 n
+0000421151 00000 n
+0000425356 00000 n
+0000425606 00000 n
+0000428744 00000 n
+0000428991 00000 n
+0000433360 00000 n
+0000433641 00000 n
+0000442893 00000 n
+0000443274 00000 n
+0000451069 00000 n
+0000451410 00000 n
+0000454232 00000 n
+0000454571 00000 n
+0000455947 00000 n
+0000456180 00000 n
+0000457391 00000 n
+0000457618 00000 n
+0000459051 00000 n
+0000459291 00000 n
+0000466265 00000 n
+0000466543 00000 n
+0000468385 00000 n
+0000468608 00000 n
+0000470408 00000 n
+0000470627 00000 n
+0000485919 00000 n
+0000486306 00000 n
+0000505286 00000 n
+0000505890 00000 n
+0000516458 00000 n
+0000522541 00000 n
+0000522663 00000 n
+0000522762 00000 n
+0000522835 00000 n
+0000531147 00000 n
+0000531340 00000 n
+0000531511 00000 n
+0000531681 00000 n
+0000531852 00000 n
+0000532024 00000 n
+0000532198 00000 n
+0000532367 00000 n
+0000532556 00000 n
+0000532735 00000 n
+0000532943 00000 n
+0000533170 00000 n
+0000533396 00000 n
+0000533623 00000 n
+0000533848 00000 n
+0000534073 00000 n
+0000534300 00000 n
+0000534529 00000 n
+0000534762 00000 n
+0000534993 00000 n
+0000535226 00000 n
+0000535457 00000 n
+0000535690 00000 n
+0000535921 00000 n
+0000536154 00000 n
+0000536384 00000 n
+0000536623 00000 n
+0000536866 00000 n
+0000537107 00000 n
+0000537346 00000 n
+0000537583 00000 n
+0000537822 00000 n
+0000538057 00000 n
+0000538300 00000 n
+0000538542 00000 n
+0000538785 00000 n
+0000539025 00000 n
+0000539260 00000 n
+0000539499 00000 n
+0000539736 00000 n
+0000539974 00000 n
+0000540217 00000 n
+0000540459 00000 n
+0000540702 00000 n
+0000540944 00000 n
+0000541187 00000 n
+0000541428 00000 n
+0000541669 00000 n
+0000541912 00000 n
+0000542154 00000 n
+0000542397 00000 n
+0000542634 00000 n
+0000542869 00000 n
+0000543104 00000 n
+0000543339 00000 n
+0000543574 00000 n
+0000543809 00000 n
+0000544044 00000 n
+0000544282 00000 n
+0000544517 00000 n
+0000544751 00000 n
+0000544986 00000 n
+0000545229 00000 n
+0000545469 00000 n
+0000545704 00000 n
+0000545939 00000 n
+0000546174 00000 n
+0000546408 00000 n
+0000546640 00000 n
+0000546867 00000 n
+0000547102 00000 n
+0000547337 00000 n
+0000547572 00000 n
+0000547807 00000 n
+0000548045 00000 n
+0000548284 00000 n
+0000548525 00000 n
+0000548766 00000 n
+0000549007 00000 n
+0000549248 00000 n
+0000549489 00000 n
+0000549733 00000 n
+0000549982 00000 n
+0000550230 00000 n
+0000550479 00000 n
+0000550724 00000 n
+0000550963 00000 n
+0000551204 00000 n
+0000551453 00000 n
+0000551701 00000 n
+0000551947 00000 n
+0000552188 00000 n
+0000552429 00000 n
+0000552670 00000 n
+0000552911 00000 n
+0000553149 00000 n
+0000553390 00000 n
+0000553631 00000 n
+0000553872 00000 n
+0000554113 00000 n
+0000554356 00000 n
+0000554597 00000 n
+0000554840 00000 n
+0000555089 00000 n
+0000555337 00000 n
+0000555582 00000 n
+0000555818 00000 n
+0000556058 00000 n
+0000556307 00000 n
+0000556555 00000 n
+0000556799 00000 n
+0000557043 00000 n
+0000557292 00000 n
+0000557540 00000 n
+0000557785 00000 n
+0000558028 00000 n
+0000558277 00000 n
+0000558525 00000 n
+0000558771 00000 n
+0000559012 00000 n
+0000559261 00000 n
+0000559509 00000 n
+0000559754 00000 n
+0000559997 00000 n
+0000560241 00000 n
+0000560482 00000 n
+0000560723 00000 n
+0000560969 00000 n
+0000561214 00000 n
+0000561455 00000 n
+0000561698 00000 n
+0000561939 00000 n
+0000562180 00000 n
+0000562427 00000 n
+0000562674 00000 n
+0000562923 00000 n
+0000563168 00000 n
+0000563406 00000 n
+0000563641 00000 n
+0000563868 00000 n
+0000564108 00000 n
+0000564357 00000 n
+0000564605 00000 n
+0000564848 00000 n
+0000565093 00000 n
+0000565342 00000 n
+0000565590 00000 n
+0000565839 00000 n
+0000566086 00000 n
+0000566333 00000 n
+0000566582 00000 n
+0000566830 00000 n
+0000567079 00000 n
+0000567323 00000 n
+0000567570 00000 n
+0000567817 00000 n
+0000568058 00000 n
+0000568280 00000 n
+0000568451 00000 n
+0000568621 00000 n
+0000568795 00000 n
+0000568970 00000 n
+0000569147 00000 n
+0000569322 00000 n
+0000569499 00000 n
+0000569671 00000 n
+0000569850 00000 n
+0000570037 00000 n
+0000570240 00000 n
+0000570461 00000 n
+0000570685 00000 n
+0000570920 00000 n
+0000571144 00000 n
+0000571371 00000 n
+0000571598 00000 n
+0000571866 00000 n
+0000572149 00000 n
+0000572430 00000 n
+0000572710 00000 n
+0000572982 00000 n
+0000573248 00000 n
+0000573515 00000 n
+0000573632 00000 n
+0000573749 00000 n
+0000573871 00000 n
+0000574001 00000 n
+0000574131 00000 n
+0000574262 00000 n
+0000574395 00000 n
+0000574528 00000 n
+0000574662 00000 n
+0000574795 00000 n
+0000574927 00000 n
+0000575059 00000 n
+0000575191 00000 n
+0000575323 00000 n
+0000575456 00000 n
+0000575589 00000 n
+0000575721 00000 n
+0000575854 00000 n
+0000575988 00000 n
+0000576121 00000 n
+0000576254 00000 n
+0000576387 00000 n
+0000576519 00000 n
+0000576651 00000 n
+0000576783 00000 n
+0000576917 00000 n
+0000577050 00000 n
+0000577174 00000 n
+0000577297 00000 n
+0000577427 00000 n
+0000577562 00000 n
+0000577666 00000 n
+0000577792 00000 n
+0000577924 00000 n
+0000578057 00000 n
+0000578191 00000 n
+0000578328 00000 n
+0000578423 00000 n
+0000578553 00000 n
+0000578593 00000 n
+0000578725 00000 n
+trailer
+<< /Size 1999
+/Root 1997 0 R
+/Info 1998 0 R
+/ID [<E205CBDFF32059EA9F5682441A826F3D> <E205CBDFF32059EA9F5682441A826F3D>] >>
+startxref
+579091
+%%EOF
diff --git a/Master/texmf-dist/doc/latex/pgfplots/manual.reference.tex b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.reference.tex
index 5cb97da2080..e1afbddbef4 100644
--- a/Master/texmf-dist/doc/latex/pgfplots/manual.reference.tex
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.reference.tex
@@ -70,6 +70,7 @@ This list is copied from~\cite[section~29]{tikz}:
\item[mark=*] \showit{mark=*}
\item[mark=x] \showit{mark=x}
\item[mark=+] \showit{mark=+}
+ \item[mark=ball] \showit{mark=ball}
\end{longdescription}
And with \lstinline!\usetikzlibrary{plotmarks}!:
\begin{longdescription}
@@ -96,7 +97,10 @@ All these options have been drawn with the additional options
\draw[
gray,
thin,
- mark options={scale=2,fill=yellow!80!black,draw=black}]
+ mark options={%
+ scale=2,fill=yellow!80!black,draw=black
+ }
+]
\end{lstlisting}
\subsubsection{Line styles}
@@ -142,15 +146,19 @@ The first syntax chooses the next unused plot specification of the list \lstinli
\noindent
Some more details:
\begin{itemize}
- \item \lstinline!\addplot! is a shortcut for \lstinline!\draw[OPTIONS]!, that means anything up to the next semicolon is part of a \PGF-path. The semicolon is required.
- \item The \texttt{OPTIONS} are remembered for the legend.
- \item See subsection~\ref{sec:markers} for a list of available markers and line styles.
\item You can modify \texttt{OPTIONS} with
\begin{lstlisting}[gobble=1]
\tikzstyle{every axis plot}=[...]
\end{lstlisting}
+ or, even better, with
+ \begin{lstlisting}[gobble=1]
+ \tikzstyle{every axis plot}+=[...]
+ \end{lstlisting}
+ \item The \texttt{OPTIONS} are remembered for the legend.
+ \item See subsection~\ref{sec:markers} for a list of available markers and line styles.
\item For log plots, \PGFPlots\ will compute the natural logarithm $\log(\cdot)$ numerically. This works with normal fixed point numbers or in scientific notation. For example, the following numbers are valid input to \lstinline!\addplot!.
\begin{lstlisting}
+\begin{tikzpicture}
\begin{loglogaxis}
\addplot plot coordinate {
(769, 1.6227e-04)
@@ -161,10 +169,15 @@ Some more details:
(2.3e7, 0.00131415)
;
\end{loglogaxis}
+\end{tikzpicture}
\end{lstlisting}
You can represent arbirtrarily small or very large numbers as long as its logarithm can be represented as a \TeX-length (up to about~$16384$). Of course, any coordinate~$x\le 0$ is not possible since the logarithm of a non-positive number is not defined. Such coordinates will be skipped automatically.
- \item As a consequence of the coordinate parsing routines, you can't use the mathematical expression parsing method of \PGF\ as coordinates.
+ \item For normal plots, \PGFPlots\ understands arbirtrarily large or small numbers like 0.00000001234 or $1.234\cdot 10^{24}$. \PGFPlots\ has its own number parsing tools which are complete text based and do not rely on \TeX's limited numerical number representation. Before the plots are actually drawn, any input coordinate is transformed into \TeX-precision using transformations
+ \[ T_x(x) = 10^{s_x} \cdot x \text{ and } T_y(y) = 10^{s_y} \cdot y \]
+ with properly chosen integers $s_x, s_y \in \Z$. This ensures invariance of axis ranges. See section~\ref{sec:disabledatascaling} for more details.
+
+ \item As a consequence of the coordinate parsing routines, you can't use the mathematical expression parsing method of \PGF\ as coordinates (that means: you will need to provide coordinates without suffixes like ``cm'' or ``pt'' and you can't invoke mathematical functions).
\item If you did not specify axis limits for $x$ and $y$ manually, \lstinline!\addplot! will compute them automatically.
@@ -178,14 +191,30 @@ Some more details:
\end{enumerate}
\end{itemize}
+\subsection{\texttt{\textbackslash addplot+[OPTIONS] ...}}
+Does the same like \lstinline!\addplot[OPTIONS] ...! except that \texttt{OPTIONS} is \emph{appended} to the arguments which would have been taken for \lstinline!\addplot ...! (the element of the default list).
+
+Example:
+\begin{lstlisting}
+\addplot+[only marks] plot coordinates {...};
+\end{lstlisting}
+will use the same line style, markers, colors as
+\begin{lstlisting}
+\addplot plot coordinates {...};
+\end{lstlisting}
+but it will only draw markers, no lines.
+
\subsection{\texttt{\textbackslash axispath...;}}
+\label{sec:axispath}%
This command allows to draw custom content into an axis. The argument to \lstinline!\axispath! may be any \Tikz-command like
\begin{lstlisting}
-\axispath\node at (12.14368,-9.30872) {};
+\axispath\node at (axis cs:12.14368,-9.30872) {};
\end{lstlisting}
or
\begin{lstlisting}
-\axispath\draw (12.14368,-9.30872) -- (0,1);
+\axispath\draw
+ (axis cs:12.14368,-9.30872)
+ -- (axis cs:0,1);
\end{lstlisting}
A useful example is presented in section~\ref{sec:annot:plot} where annotations are placed near some data points.
@@ -193,9 +222,26 @@ The \lstinline!\axispath! command is necessary to communicate drawing commands t
A missing \lstinline!\axispath! may corrupt your graphics because the clipping area may not yet be known.
+The ``\texttt{axis cs}'' coordinate system allows you to access axis coordinates. You can use the same numbers as in \lstinline!\addplot! all required transformations like logarithms or data scaling transformations will be applied. All \lstinline!\axispath! commands should use these coordinate systems. See section~\ref{sec:axis:coords} for more information and section~\ref{sec:annot:plot} for examples.
+
+\subsection{Accessing axis coordinates with \texttt{axis cs}}
+\label{sec:axis:coords}%
+\PGFPlots\ provides a new coordinate system for use inside of an axis, the ``axis coordinate system'', \texttt{axis cs}.
+
+Its can be used in conjunction with \lstinline!\axispath! to draw any \Tikz-graphics at axis coordinates. It is used like
+\begin{lstlisting}
+ \axispath\draw
+ (axis cs:18943,2.873391e-05)
+ |- (axis cs:47103,8.437499e-06);
+\end{lstlisting}
+see section~\ref{sec:annot:plot} for example graphics.
+
+\paragraph{Attention:} Whenever you draw additional graphics, consider using \texttt{axis cs}! It applies any logarithms, data scaling transformations or whatever \PGFPlots\ usually does!
+
\subsection{\texttt{\textbackslash addlegendentry\{name\}}}
Adds a single legend entry to the legend list. Example:
\begin{lstlisting}
+\begin{tikzpicture}
\begin{axis}
\addplot[smooth,mark=*,blue] plot coordinates {
(0,2)
@@ -213,6 +259,7 @@ Adds a single legend entry to the legend list. Example:
};
\addlegendentry{Case 2}
\end{axis}
+\end{tikzpicture}
\end{lstlisting}
The outcome of this listing is shown in figure~\ref{fig:addlegendentry}.
\begin{figure}
@@ -240,9 +287,8 @@ The outcome of this listing is shown in figure~\ref{fig:addlegendentry}.
\caption{An example for the \texttt{\textbackslash addlegendentry} command}%
\label{fig:addlegendentry}%
\end{figure}%
-It does not matter where \lstinline!\addlegendentry! commands are placed, only the sequence matters. You will need one \lstinline!\addlegendentry! for every \lstinline!\addplot! command.
+It does not matter where \lstinline[breaklines=false]!\addlegendentry! commands are placed, only the sequence matters. You will need one \lstinline[breaklines=false]!\addlegendentry! for every \lstinline!\addplot! command.
-You may also consider the command \lstinline!\legend!. It also accepts several formatting options.
\subsection{\texttt{\textbackslash legend[OPTIONS]\{LIST\}}}
\label{sec:legenddef}%
@@ -256,11 +302,11 @@ You can use
\end{axis}
\end{tikzpicture}
\end{lstlisting}
-to assign a complete legend. The \lstinline!\legend! command takes the following arguments:
+to assign a complete legend. \textbf{Attention:} the final \lstinline!\\! is necessary! The \lstinline[breaklines=false]!\legend! command takes the following arguments:
\begin{lstlisting}
\legend[OPTIONS]{TEXT1\\TEXT2\\TEXT3\\...\\}
\end{lstlisting}
-where each legend element needs to be terminated by \lstinline!\\!. If \texttt{LIST} is empty, the current legend will not be touched (see \lstinline!\addlegendentry!). The short marker/line combination shown in legends is acquired from the argument to \lstinline!\addplot[...]!.
+where each legend element needs to be terminated by \lstinline[breaklines=false]!\\!. The short marker/line combination shown in legends is acquired from the argument to \lstinline[breaklines=false]!\addplot[...]!.
\subsubsection{Legend appearance}
The style ``\texttt{every axis legend}'' determines the legend's position and outer appearance:
@@ -277,8 +323,25 @@ will draw it at the lower left corner of the axis while
\end{lstlisting}
means the upper right corner. The `\texttt{anchor}' option determines which point \emph{of the legend} will be placed at $(0,0)$ or $(1,1)$ (see below for more examples).
-The legend is a node, so you can use any \Tikz\ option which affects
-nodes (see~\cite[section~13]{tikz}). The node's option ``\texttt{text width}'' is set automatically, depending on the \lstinline!\legend[textwidth=...]! option.
+The legend is a \Tikz-matrix, so you can use any \Tikz\ option which affects
+nodes and matrizes (see~\cite[section 13~and~14]{tikz}). The matrix is created by something like
+\begin{lstlisting}
+\matrix[style=every axis legend] {
+ draw plot specification 1 & \node{legend 1}\\
+ draw plot specification 2 & \node{legend 2}\\
+ ...
+};
+\end{lstlisting}
+You can configure the number of horizontal legend entries with the axis-option ``\texttt{legend columns=NUMBER}''. For example,
+\begin{lstlisting}
+\begin{tikzpicture}
+\begin{axis}[legend columns=4]
+...
+\legend{legend 1\\legend 2\\legend 3\\}
+\end{axis}
+\end{tikzpicture}
+\end{lstlisting}
+would use (up to)~$4$ adjacent legend entries.
Examples:
\begin{itemize}
@@ -303,6 +366,8 @@ draws the legend INSIDE MIDDLE RIGHT, separated by 0.5cm from the axis.
The default is
\begin{lstlisting}
\tikzstyle{every axis legend}=[%
+ cells={anchor=center},
+ inner xsep=3pt,inner ysep=2pt,nodes={inner sep=2pt,text depth=0.15em},
anchor=north east,%
shape=rectangle,%
fill=white,%
@@ -310,28 +375,10 @@ The default is
at={(0.98,0.98)}
]
\end{lstlisting}
-
-\subsubsection{Legends Options}
-\subsubsection*{textwidth=auto$|$none$|$DIMENSION}
-Assigns a width to the legend. Choices are
-\begin{description}
- \item[auto] Determines the width automatically;
- \item[none] does not perform any line breaking;
- \item[DIMENSION] uses a fixed width like \lstinline!2cm! for the (total) legend (including the small marker/line combination).
-\end{description}
-Default is ``\texttt{auto}''.
-
-\subsubsection*{font=COMMANDS}
-Changes the legend font. Examples:
-\begin{itemize}
- \item \lstinline!font=\Huge!
- \item \lstinline!font={\Huge\bfseries}!
-\end{itemize}
-Please note that the \Tikz\ option ``\texttt{font}'' will also be used, so you can also say
+\paragraph{Attention:} you should \emph{not reset} the default style to stay compatible with future versions. If possible, use
\begin{lstlisting}
-\tikzstyle{every axis legend}+=[font=\Huge]
+\tikzstyle{every axis legend}+=[...]
\end{lstlisting}
-to get the same effect. The difference is that I didn't figure out how to determine the legend's width without a legend option.
\subsection{\texttt{\textbackslash autoplotspeclist}}
@@ -405,9 +452,6 @@ Allows to define default options for any axis. For example,
\end{lstlisting}
will produce a width of \lstinline!\textwidth! for any following axis. You can preset any of the \texttt{axis}-options described below.
-\subsection{\texttt{\textbackslash legendpreset\{key=value,key=value\}}}
-Allows to define default options for any legend (See \lstinline!\axispreset!, it works in the same way.).
-
\subsection{Axis options}
There are several required and even more optional arguments to modify axes. They are used like
\begin{lstlisting}
@@ -419,12 +463,12 @@ There are several required and even more optional arguments to modify axes. They
\end{lstlisting}
The overall appeareance can be changed with
\begin{lstlisting}
-\tikzstyle{every axis}=[line width=1pt]
+\tikzstyle{every axis}+=[line width=1pt]
\end{lstlisting}
for example.
-\subsubsection*{\texttt{xmin=COORD}, \texttt{xmax=COORD}, \texttt{ymin=COORD}, \texttt{ymax=COORD}}
-These options denote the axis limits, i.e. the lower left and the upper right corner. Some remarks
+\subsubsection{\texttt{[xy]min=COORD}, \texttt{[xy]max=COORD}}
+The options \texttt{xmin}, \texttt{xmax} and \texttt{ymin}, \texttt{ymax} allow to define the axis limits, i.e. the lower left and the upper right corner. Some remarks:
\begin{itemize}
\item The axis limits determine the plotted range. Everything else will be clipped away.
\item The width of every unit $x$-coordinate will be scaled such that the plot has width \lstinline!\axisdefaultwidth! (including the tick- and axis labels). The height of every unit $y$-coordinate will be scaled such that the plot has height \lstinline!\axisdefaultheight!.
@@ -435,8 +479,8 @@ These options denote the axis limits, i.e. the lower left and the upper right co
\item The option \lstinline!enlargelimits! will automatically increase the plotted range.
\end{itemize}
-\subsubsection*{\texttt{xlabel=TEXT}, \texttt{ylabel=TEXT}}
-Changes the axis labels to `\texttt{TEXT}' which is any \LaTeX\ text. Use `\lstinline!{TEXT}!' if you need grouping.
+\subsubsection{\texttt{[xy]label=TEXT}}
+The options \texttt{xlabel} and \texttt{ylabel} change axis labels to `\texttt{TEXT}' which is any \LaTeX\ text. Use `\lstinline!{TEXT}!' if you need grouping.
Labels are \Tikz-Nodes which are placed with
\begin{lstlisting}
@@ -461,8 +505,15 @@ The default styles are
xshift=-35pt,
rotate=90]
\end{lstlisting}
+You should use
+\begin{lstlisting}
+\tikzstyle{every axis label}+=[...]
+\tikzstyle{every axis x label}+=[...]
+\tikzstyle{every axis y label}+=[...]
+\end{lstlisting}
+to modify options to ensure compatibility with future versions.
-\subsubsection*{\texttt{title=TEXT}}
+\subsubsection{\texttt{title=TEXT}}
Adds a caption to the plot. This will place a \Tikz-Node with
\begin{lstlisting}
\node[style=every axis title] {TEXT};
@@ -554,17 +605,19 @@ Please note that using the \LaTeX\ floating figures together with \lstinline!\ca
\end{figure}
-\subsubsection*{\texttt{xmode=normal$|$log}, \texttt{ymode=normal$|$log}}
+\subsubsection{\texttt{[xy]mode=normal$|$log}}
Allows to choose between normal plots or logplots for each $x,y$-combination. Default is \lstinline!xmode=normal!, \lstinline!ymode=normal!.
-\subsubsection*{\texttt{xtick=\{LIST\}}, \texttt{ytick=\{LIST\}}}
-Assigns a list of \emph{Positions} where ticks shall be placed. The argument \texttt{LIST} will be used inside of a \lstinline!\foreach \x in {LIST}! statement, and \texttt{LIST} contains one of the following formats:
+\subsubsection{\texttt{[xy]tick=\{LIST\}}}
+The options \texttt{xtick} and \texttt{ytick} assigns a list of \emph{Positions} where ticks shall be placed. The argument \texttt{LIST} will be used inside of a \lstinline!\foreach \x in {LIST}! statement, and \texttt{LIST} contains one of the following formats:
\begin{itemize}
\item \lstinline!{0,1,2,5,8}! (a series of coordinates),
\item \lstinline!{0,...,5}! (the same as \lstinline!{0,1,2,3,4,5}!),
\item \lstinline!{0,2,...,10}! (the same as \lstinline!{0,2,4,6,8,10}!),
\item \lstinline!{9,...,3.5}! (the same as \lstinline!{9, 8, 7, 6, 5, 4}!),
\item See \cite[Section~34]{tikz} for a more detailed definition of the options.
+ \item Use `\texttt{xtick=}' to use the default tick placement rules.
+ \item Use `\lstinline!xtick=\empty!' to disable any ticks.
\end{itemize}
For logplots, \PGFPlots\ will apply $\log(\cdot)$ to each element in `\texttt{LIST}'.
@@ -572,20 +625,127 @@ For logplots, \PGFPlots\ will apply $\log(\cdot)$ to each element in `\texttt{LI
\vspace*{0.3cm}
\noindent
-The default choice for ticks in a normal plot is to place them at each integer. The default for logplots it to place ticks at each $10^i$ in the axis' range.
+The default choice for tick \emph{positions} in normal plots is to place a tick at each coordinate~$i\cdot h$. The step size~$h$ depends on the axis scaling and the axis limits. It is chosen from a list a ``feasable'' step sizes such that neither too much nor too few ticks will be generated. The default for logplots it to place ticks at each $10^i$ in the axis' range. The default tick positions can be reconfigured with
+\begin{itemize}
+ \item \lstinline!\renewcommand{\axisdefaulttickwidth}{35}! where the integer argument denotes the maximum space between adjacent ticks in full points. The suffix ``\texttt{pt}'' has to be omitted and fractional numbers are not supported.
+ \item \lstinline!\renewcommand{\axisdefaulttryminticks}{4}! configures a loose lower bound on the number of ticks. It should be considered as a suggestion, not a tight limit.
+\end{itemize}
+
-The tick appearance can be (re-)configured with
+\noindent
+The tick \emph{appearance} can be (re-)configured with
\begin{lstlisting}
\tikzstyle{every tick}=[very thin,gray]
\tikzstyle{every minor tick}=[]
\end{lstlisting}
+or
+\begin{lstlisting}
+\tikzstyle{every tick}+=[very thin,gray]
+\tikzstyle{every minor tick}+=[black]
+\end{lstlisting}
+Please prefer the `\texttt{+=}' versions to ensure compatibility with future versions.
+
This style commands can be used at any time. The tick line width can be configured with the \lstinline!axis!-options `\texttt{tickwidth}' and `\texttt{subtickwidth}'.
-\subsubsection*{\texttt{xtickten=\{LIST\}}, \texttt{ytickten=\{LIST\}}}
-These options allow to place ticks at selected positions $10^k, k \in \text{\texttt{LIST}}$. They are only used for logplots. The syntax for `\texttt{LIST}' is the same as above for `\texttt{xtick=LIST}' or `\texttt{ytick=LIST}'.
+\subsubsection{\texttt{[xy]tickten=\{LIST\}}}
+The options \texttt{xtickten} and \texttt{ytickten} allow to place ticks at selected positions $10^k, k \in \text{\texttt{LIST}}$. They are only used for logplots. The syntax for `\texttt{LIST}' is the same as above for `\texttt{xtick=LIST}' or `\texttt{ytick=LIST}'.
+
+\subsubsection{\texttt{[xy]ticklabels=\{LIST\}}}
+Assigns a \emph{list} of tick \emph{labels} to each tick position. Tick \emph{positions} are assigned using the \texttt{xtick} and \texttt{ytick}-options.
-\subsubsection*{\texttt{xticklabel=\{TEXT\}}, \texttt{yticklabel=\{TEXT\}}}
-Allows to change the \emph{text} assigned to each tick position (see options \texttt{xtick} and \texttt{ytick}). The argument `\texttt{TEXT}' can be any \LaTeX-text. The following commands are valid inside of \texttt{TEXT}:
+This is one of two options to assign tick labels directly. The other option is `\texttt{xticklabel=\{COMMAND\}}' (or \texttt{yticklabel=\{COMMAND\}}).
+Option `\texttt{\*ticklabel}' offers higher flexibility while `\texttt{\*ticklabels}' is easier to use.
+
+The argument \texttt{LIST} has the same format as for ticks, that means
+\begin{lstlisting}
+xticklabels={$\frac{1}{2}$,$e$}
+\end{lstlisting}
+Denotes the two--element--list $\{\frac 12, e\}$. The list indices match the indices of the tick positions. If you need commas inside of list elements, use
+\begin{lstlisting}
+xticklabels={{0,5}, $e$}.
+\end{lstlisting}
+
+
+Example:
+\begin{lstlisting}
+\begin{tikzpicture}
+\begin{axis}[
+ xtick={-1.5,-1,...,1.5},
+ xticklabels={%
+ $-1\frac 12$,
+ $-1$,
+ $-\frac 12$,
+ $0$,
+ $\frac 12$,
+ $1$}
+]
+\addplot[smooth,blue,mark=*] plot coordinates {
+ (-1, 1)
+ (-0.75, 0.5625)
+ (-0.5, 0.25)
+ (-0.25, 0.0625)
+ (0, 0)
+ (0.25, 0.0625)
+ (0.5, 0.25)
+ (0.75, 0.5625)
+ (1, 1)
+};
+\end{axis}
+\end{tikzpicture}
+\end{lstlisting}
+yields figure~\ref{fig:ticklistexample}.
+\begin{figure}
+ \centering
+ \begin{tikzpicture}[baseline]
+ \begin{axis}[
+ anchor=north east,
+ width=6cm,
+ xtick={-1.5,-1,...,1.5},
+ xticklabels={%
+ $-1\frac 12$,
+ $-1$,
+ $-\frac 12$,
+ $0$,
+ $\frac 12$,
+ $1$}
+ ]
+ \addplot[smooth,blue,mark=*] plot coordinates {
+ (-1, 1)
+ (-0.75, 0.5625)
+ (-0.5, 0.25)
+ (-0.25, 0.0625)
+ (0, 0)
+ (0.25, 0.0625)
+ (0.5, 0.25)
+ (0.75, 0.5625)
+ (1, 1)
+ };
+ \end{axis}
+ \end{tikzpicture}
+ \hspace{10pt}%
+ \begin{minipage}[t]{6cm}%
+ \vspace{0pt}%
+ \begin{lstlisting}
+xtick={-1.5,-1,...,1.5},
+xticklabels={%
+ $-1\frac 12$,
+ $-1$,
+ $-\frac 12$,
+ $0$,
+ $\frac 12$,
+ $1$}
+ \end{lstlisting}
+ \end{minipage}
+ \caption{An example for the \texttt{xticklabels} option.}
+ \label{fig:ticklistexample}
+\end{figure}
+
+\subsubsection{\texttt{[xy]ticklabel=\{COMMAND\}}}
+Use \texttt{xticklabel} or \texttt{yticklabel} to change the \LaTeX-command which creates the tick \emph{labels} assigned to each tick position (see options \texttt{xtick} and \texttt{ytick}).
+
+This is one of two options to assign tick labels directly. The other option is `\texttt{xticklabels=\{LIST\}}' (or \texttt{yticklabels=\{LIST\}}). Option `\texttt{\*ticklabel}' offers higher flexibility while `\texttt{\*ticklabels}' is easier to use.
+
+The argument `\texttt{COMMAND}' can be any \LaTeX-text. The following commands are valid inside of \texttt{COMMAND}:
\begin{description}
\item[\textbackslash tick] The current element of option \lstinline!xtick! (or \lstinline!ytick!).
\item[\textbackslash ticknum] The current tick number, starting with~0 (a counter).
@@ -608,34 +768,71 @@ The default argument is
\end{lstlisting}
You can change the appearance of tick labels with
\begin{lstlisting}
-\tikzstyle{every tick label}=[]
+\tikzstyle{every tick label}+=[font=\tiny]
\end{lstlisting}
and/or
\begin{lstlisting}
-\tikzstyle{every x tick label}=[]
+\tikzstyle{every x tick label}+=[above]
\end{lstlisting}
and
\begin{lstlisting}
-\tikzstyle{every y tick label}=[]
+\tikzstyle{every y tick label}+=[font=\bfseries]
\end{lstlisting}
-\subsubsection*{\texttt{tickpos=left$|$right$|$both}}
+\subsubsection{\texttt{tickpos=left$|$right$|$both}}
Allows to choose where to place the small tick lines. Default is ``\texttt{both}''. This setting applies to both $x$~and~$y$ axis where ``left'' and ``right'' mean ``bottom'' and ``top'' for~$y$.
-\subsubsection*{\texttt{xminorticks=true$|$false}, \texttt{yminorticks=true$|$false}}
-Enables/disables the small minor tick lines. They are only used in log plots. Please note that minor ticks are automatically disabled if \texttt{xtick} is not a uniform range\footnote{A uniform list means the difference between all elements is~$1$ for normal plots or, for logplots, $\log(10)$.}. Default is \texttt{true}.
+\subsubsection{\texttt{[xy]minorticks=true$|$false}}
+\subsubsection{\texttt{[xy]majorticks=true$|$false}}
+\subsubsection{\texttt{ticks=minor$|$major$|$both$|$none}}
+Enables/disables the small tick lines either for single axis or for all of them. Major ticks are those placed at the tick positions and minor ticks are only used in log plots. Please note that minor ticks are automatically disabled if \texttt{xtick} is not a uniform range\footnote{A uniform list means the difference between all elements is~$1$ for normal plots or, for logplots, $\log(10)$.}. Default is to use minor and major ticks.
+
+You can configure the length of the tick line with `\texttt{minor tick length=DIMEN}' and `\texttt{major tick length=DIMEN}' (where DIMEN is a \TeX-length like 1cm) and its appearance using the following styles:
+\begin{lstlisting}
+\tikzstyle{every tick}+=[color=black] % applies to major and minor ticks,
+\tikzstyle{every minor tick}+=[thin] % applies only to minor ticks,
+\tikzstyle{every major tick}+=[thick] % applies only to major ticks.
+\end{lstlisting}
+There is also the style ``\texttt{every tick}'' which applies to both, major and minor ticks.
+
+\subsubsection{\texttt{major tick length=DIMEN}}
+\subsubsection{\texttt{minor tick length=DIMEN}}
+Allows to configure the length of the small tick lines. Minor ticks are only displayed for logarithmic plots. See option ``\texttt{ticks}'' for appearance styles for ticks.
-\subsubsection*{\texttt{tickwidth=DIMEN}, \texttt{subtickwidth=DIMEN}}
-Allows to configure the width of the small tick lines. Sub ticks are only displayed for logarithmic plots.
+\subsubsection{\texttt{[xy]minorgrids=true$|$false}}
+\subsubsection{\texttt{[xy]majorgrids=true$|$false}}
+\subsubsection{\texttt{grid=minor$|$major$|$both$|$none}}
+Enables/disables different grid lines. Major grid lines are placed at the normal tick positions (see \texttt{xmajorticks}) while minor grid lines are placed at minor ticks (see \texttt{xminorticks}).
-\subsubsection*{\texttt{enlargelimits}}
-Enlarges the axis size somewhat.
+Grid lines will be drawn before tick lines are processed, so ticks will be drawn on top of grid lines. You can configure the appearance of grid lines with the styles
+\begin{lstlisting}
+\tikzstyle{every axis grid}=[style=help lines] % applies to major and minor grids,
+\tikzstyle{every minor grid}+=[color=blue] % applies only to minor grid lines,
+\tikzstyle{every major grid}+=[thick] % applies only to major grid lines.
+\end{lstlisting}
+An example for grid lines can be found in section~\ref{sec:gridlines}.
+
+\subsubsection{\texttt{enlargelimits=[true$|$false$|$auto$|$VAL]}}
+Enlarges the axis size somewhat if enabled.
You can set \texttt{xmin}, \texttt{xmax} and \texttt{ymin}, \texttt{ymax} to the minimum/maximum values of your data and \texttt{enlargelimits} will enlarge the canvas such that the axis doesn't touch the plots.
-Default is \lstinline!true! if axis limits are determined automatically and \lstinline!false! if you provide them manually.
+\begin{itemize}
+ \item The value \texttt{true} enlarges all axes.
+ \item The value \texttt{false} uses tight axis limits as specified by the user (or read from input coordinates).
+ \item The value \texttt{auto} will enlarge limits only for axis for which axis limits have been determined automatically.
+ \item All other values like `\texttt{enlargelimits=0.1}' will enlarge all axis limits relatively (in this example, 10\% of the axis limits will be added at all sides).
+ \item If no relative threshold is provided, axis enlargement is done relatively to $x_\text{max}-x_\text{min}$ for normal plots and absolutely for log--plots up to now.
+\end{itemize}
+A small value of \texttt{enlargelimits} may avoid problems with large markers near the boundary.
+
+\subsubsection{\texttt{legend columns=NUMBER}}
+Allows to configure the maximum number of adjacent legend entries. The default is \texttt{legend columns=1}, so legends are placed vertically below each other. Examples can be found in section~\ref{sec:legendexamples:cols}.
+
+\subsubsection{\texttt{legend plot pos=left$|$right$|$none}}
+Configures where the small line specifications will be drawn: left of the description, right of the description or not at all. See an example in section~\ref{sec:legendexamples:plotpos}.
-\subsubsection*{\texttt{disablelogfilter}}
+\subsubsection{\texttt{disablelogfilter}}
Disables numerical evaluation of $\log(x)$ in \LaTeX. If you specify this option, any plot coordinates and tick positions must be provided as $\log(x)$ instead of $x$. This may be faster and -- possibly -- more accurate than the numerical log. The current implementation of $\log(x)$ normalizes~$x$ to $m\cdot 10^e$ and computes
\[ \log(x) = \log(m) + e \log(10) \]
where $y = \log(m)$ is computed with a newton method applied to $\exp(y) - m$. The normalization involves string parsing without \TeX-registers. You can savely evaluate $\log(1\cdot 10^{-7})$ although \TeX-registers would produce an underflow for such small numbers.
@@ -644,7 +841,57 @@ The exponential function is implemented in pgf using a truncated Euler McLaurin-
The current implementation of $\log(\cdot)$ is done by the macro \lstinline!\pgfmathlog! which is provided by package \lstinline!pgfmathlog.sty! (contained in the \PGFPlots-bundle).
-\subsubsection*{\texttt{width=DIMEN}, \texttt{height=DIMEN}}
+\subsubsection{\texttt{disabledatascaling}}
+\label{sec:disabledatascaling}%
+Disables internal re-scaling of input data. Normally, every input data like plot coordinates, tick positions or whatever, are parsed without using \TeX's limited number precision. Then, a transformation like
+ \[ T(x) = 10^{q-m} \cdot x \]
+is applied to every input coordinate/position where $m$ is ``the order of $x$'' base~$10$. Example: $x=1234 = 1.234\cdot 10^3$ has order~$m=4$ while $x=0.001234 = 1.234\cdot 10^{-3}$ has order $m=-2$. The parameter~$q$ is the order of the axis' width/height.
+
+The \textbf{effect} is that your plot coordinates can be of \emph{arbitrary precision} like $0.0000001$ and $0.0000004$. For these two coordinates, \PGFPlots\ will use 100pt and 400pt internally. The transformation is quit fast since it relies only on period shifts.
+
+The option ``\texttt{disabledatascaling}'' disables this data transformation. That means you are restricted to coordinates which \TeX\ can handle\footnote{Please note that the axis' scaling requires to compute $1/( x_\text{max} - x_{\text{min}} )$. The option \texttt{disabledatascaling} may lead to overflow or underflow in this context, so use it with care! Normally, the data scale transformation avoids this problem.}.
+
+So far, the data scale transformation applies only to normal axis (logarithmic scales do not need it).
+
+\subsubsection{\texttt{anchor=NAME}}
+This option shifts the axis horizontally and vertically such that the axis anchor (a point on the axis) is placed at coordinate $(0,0)$\footnote{I haven't understood how to implement an axis as a path command. In the future, the last path coordinate may be used in this place.}.
+
+\begin{itemize}
+ \item
+Anchors are useful in conjunction with horizontal or vertical alignment of plots, see the examples in section~\ref{sec:align} and section~\ref{sec:halign}.
+
+ \item Anchors are placed on the axis rectangle; any axis labels, titles or legends are completely unaffected.
+
+ \item Valid choices for \texttt{NAME} are
+ \texttt{north},
+ \texttt{north west},
+ \texttt{west},
+ \texttt{south west},
+ \texttt{south},
+ \texttt{south east},
+ \texttt{east},
+ \texttt{north east},
+ \texttt{center}.
+ They denote the places
+ \begin{center}
+ \begin{tikzpicture}[x=3cm,y=3cm]
+ \draw (0,0) rectangle (1,1);
+ \node[above] at (0.5,1) {N};
+ \node[above left] at (0,1) {NW};
+ \node[left] at (0,0.5) {W};
+ \node[below left] at (0,0) {SW};
+ \node[below] at (0.5,0) {S};
+ \node[below right] at (1,0) {SE};
+ \node[right] at (1,0.5) {E};
+ \node[above right] at (1,1) {NE};
+ \node at (0.5,0.5) {C};
+ \end{tikzpicture}
+ \end{center}
+ \item The default value is \texttt{anchor=south west}.
+
+\end{itemize}
+
+\subsubsection{\texttt{width=DIMEN}, \texttt{height=DIMEN}}
The axis is always scaled such that its dimension is
{\centering\lstinline!(\axisdefaultwidth,\axisdefaultheight)!.
@@ -655,7 +902,7 @@ The options \lstinline!width=DIMEN! and \lstinline!height=DIMEN! override the de
\noindent\underline{Remarks:}
\begin{itemize}
- \item The scaling only affects the width of one unit in $x$-direction or the height for one unit in $y$-direction. Axis labels and tick labels won't be resized.
+ \item The scaling only affects the width of one unit in $x$-direction or the height for one unit in $y$-direction. Axis labels and tick labels won't be resized, but their size is used to determine the axis scaling.
\item You can use the \Tikz-\lstinline!scale=NUMBER! option,
\begin{lstlisting}
@@ -669,6 +916,15 @@ The options \lstinline!width=DIMEN! and \lstinline!height=DIMEN! override the de
\item The \Tikz-options \lstinline!x! and \lstinline!y! which set the unit dimensions in $x$ and $y$ directions can be specified as arguments to \lstinline!\begin{axis}[x=1.5cm,y=2cm]! if needed (see below). These settings override the \lstinline!width! and \lstinline!height! options.
+ \item You can also force a fixed width/height of the axis (without looking at labels) with
+ \begin{lstlisting}
+ \begin{tikzpicture}
+ \begin{axis}[width=5cm,scale only axis]
+ ...
+ \end{axis}
+ \end{tikzpicture}
+ \end{lstlisting}
+
\item Use
\begin{lstlisting}
\renewcommand{\axisdefaultwidth}{3cm}
@@ -681,11 +937,15 @@ The options \lstinline!width=DIMEN! and \lstinline!height=DIMEN! override the de
\item Please note that up to the writing of this manual, \PGFPlots\ only estimates the size needed for axis- and tick labels. It does not include legends which have been placed outside of the axis\footnote{I.e. the `\texttt{width}' option will not work as expected, but the bounding box is still ok.}. This may be fixed in future versions.
- Use the \lstinline!x=DIMEN! and \lstinline!y=DIMEN! options if the scaling happens to be wrong.
+ Use the \lstinline!x=DIMEN!, \lstinline!y=DIMEN! and \lstinline!scale only axis! options if the scaling happens to be wrong.
\end{itemize}
+\subsubsection{\texttt{scale only axis=[true$|$false]}}
+This boolean option allows to apply \texttt{width} and \texttt{height} only to the axis rectangle. If `\texttt{scale only axis}' is enabled, label, tick and legend dimensions won't influence the size of the axis rectangle.
-\subsubsection*{\texttt{x=DIMEN}, \texttt{y=DIMEN}}
+If \texttt{scale only axis=false} (the default), \PGFPlots\ will try to produce the desired width \emph{including} labels, titles and ticks.
+
+\subsubsection{\texttt{x=DIMEN}, \texttt{y=DIMEN}}
Use
\begin{lstlisting}
\begin{tikzpicture}
@@ -714,8 +974,13 @@ Use
\noindent
(see the \lstinline!width! option).
-\subsubsection*{\texttt{xfilter=CMD}, \texttt{yfilter=CMD}}
-These options allow coordinate filtering. A coordinate filter maps an input coordinate to an output coordinate (or discards it completely).
+\subsubsection{\texttt{hide axis=[true$|$false]}}
+Allows to hide the axis. No outer rectangle, no tick marks and no labels will be drawn. Only titles and legends will be processed as usual.
+
+Axis scaling and clipping will be done as if you did not use \texttt{hide axis}.
+
+\subsubsection{\texttt{[xy]filter=CMD}}
+The option \texttt{xfilter} and \texttt{yfilter} allow coordinate filtering. A coordinate filter maps an input coordinate to an output coordinate (or discards it completely).
Coordinate filters are useful in automatic processing system, where \PGFPlots\ is used to display automatically generated plots. You may not want to filter your coordinates by hand, so these options provide a tool to do this automatically.
@@ -763,6 +1028,7 @@ This example uses the \TeX-command \lstinline!\def! to define variables and comm
\begin{itemize}
\item \PGFPlots\ invokes the filter with argument \texttt{\#1} set to the input coordinate. For $x$-filters, this is the $x$-coordinate as it is specified to \lstinline!\addplot!, for $y$-filters it is the $y$-coordinate.
\item If the corresponding axis is logarithmic, \texttt{\#1} is the \emph{logarithm} of the coordinate as a real number, for example \texttt{\#1=4.2341}.
+ \item The arguments to coordinate filters are not transformed. You may need to call coordinate parsing routines.
\item Argument \texttt{\#2} is the name of a \TeX\ command. The filter should assign this command. The first filter above assigned the constant~$0.5$ and the second filter did not filter anything because it is the identity.
The replacement text of \texttt{\#2} is expected to be \emph{either} empty \emph{or} a real number (without any length-suffix like `cm' or `pt'). If it is empty, the coordinate won't be drawn at all, it will be thrown away.
diff --git a/Master/texmf-dist/doc/latex/pgfplots/manual.tex b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.tex
index a78b88be948..2feb78a99bd 100644
--- a/Master/texmf-dist/doc/latex/pgfplots/manual.tex
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgfplots.tex
@@ -32,6 +32,10 @@
\usepackage{amssymb}
\usepackage{amsfonts}
+\newcommand{\R}{\mathbb{R}}
+\newcommand{\N}{\mathbb{N}}
+\newcommand{\Z}{\mathbb{Z}}
+
\usepackage{listings}
\usepackage{courier}
\lstset{%
@@ -62,6 +66,11 @@
\newcommand\PGF{PGF}
\newcommand\PGFPlots{Pgfplots}
+% Fix overful hboxes automatically:
+\tolerance=2000
+\emergencystretch=10pt
+
+
\author{%
Christian Feuers\"anger\footnote{\url{http://wissrech.ins.uni-bonn.de/people/feuersaenger}}\\%
Institut f\"ur Numerische Simulation\\
@@ -77,18 +86,33 @@
\section{Introduction}
This package provides tools to generate plots and labeled axes easily. It draws normal plots, logplots and semi-logplots. Axis ticks, labels, legends (in case of multiple plots) can be added with key-value options. It can cycle through a set of predefined line/marker/color specifications. In summary, its purpose is to simplify the generation of high-quality function plots, especially for use in scientific contexts (logplots).
-It is build completely on \Tikz\ and \PGF\ and may be used as \Tikz\ library. While \Tikz\ supports a wide range of plotting utilities, axis generation, labels and legends are usually done with several foreach statements. This is substantially easier with \PGFPlots.
-
+It is build completely on \Tikz\ and \PGF\ and may be used as \Tikz\ library.
-\input{manual.install.tex}%
-\input{manual.intro.tex}%
-\input{manual.reference.tex}%
-\input{manual.examples.tex}%
+\section{Upgrade remarks}
+This release provides a lot of improvements which can be found in all detail in ``\texttt{changelog.txt}'' for interested readers. However, some attention is required for upgrades:
+\begin{enumerate}
+ \item I have re-implemented legends as \Tikz-matrizes and the default legend styles have been changed accordingly.
+ Please \emph{replace}
+ \begin{lstlisting}
+\tikzstyle{every axis legend}=[...]
+ \end{lstlisting}
+ \emph{with}
+\begin{lstlisting}
+\tikzstyle{every axis legend}+=[...].
+\end{lstlisting}
+ \item Update each \lstinline!\axispath...! command in your files. You will need to use \lstinline!axis cs! as coordinate system to apply any axis transformations. See sections~\ref{sec:axispath} and~\ref{sec:axis:coords} for details.
+ \item The manual file name has been renamed.
+\end{enumerate}
+\input{pgfplots.install.tex}%
+\input{pgfplots.intro.tex}%
+\input{pgfplots.reference.tex}%
+\input{pgfplots.examples.tex}%
+\input{pgfplots.importexport.tex}%
\bibliographystyle{abbrv} %gerapali} %gerabbrv} %gerunsrt.bst} %gerabbrv}% gerplain}
-\bibliography{manual.bib}
+\bibliography{pgfplots.bib}
\end{document}
diff --git a/Master/texmf-dist/doc/latex/pgfplots/pgfplotstest.tex b/Master/texmf-dist/doc/latex/pgfplots/pgfplotstest.tex
index 6a55a787b42..4fb394c5450 100644
--- a/Master/texmf-dist/doc/latex/pgfplots/pgfplotstest.tex
+++ b/Master/texmf-dist/doc/latex/pgfplots/pgfplotstest.tex
@@ -26,6 +26,12 @@
%\def\pgfsysdriver{pgfsys-pdftex.def}
\usepackage{pgfplots}
+\pgfrealjobname{pgfplotstest}
+
+\def\testsection#1{\message{STARTING TEST SECTION '#1'}\section{#1}}
+\def\testsubsection#1{\message{STARTING TEST SUBSECTION '#1'}\subsection{#1}}
+\def\testsubsubsection#1{\message{STARTING TEST SUBSUBSECTION '#1'}\subsubsection{#1}}
+
\def\smallplotstest{%
\addplot[smooth,blue,mark=*] plot coordinates {
(-1, 1)
@@ -68,36 +74,316 @@
\addlegendentry{$d=3$}
}%
+\def\manylogplots{%
+ \addplot plot coordinates {
+ (5, 8.312e-02)
+ (17, 2.547e-02)
+ (49, 7.407e-03)
+ (129, 2.102e-03)
+ (321, 5.874e-04)
+ (769, 1.623e-04)
+ (1793, 4.442e-05)
+ (4097, 1.207e-05)
+ (9217, 3.261e-06)
+ };
+
+ \addplot plot coordinates {
+ (7, 8.472e-02)
+ (31, 3.044e-02)
+ (111, 1.022e-02)
+ (351, 3.303e-03)
+ (1023, 1.039e-03)
+ (2815, 3.196e-04)
+ (7423, 9.658e-05)
+ (18943, 2.873e-05)
+ (47103, 8.437e-06)
+ };
+
+ \addplot plot coordinates {
+ (9, 7.881e-02)
+ (49, 3.243e-02)
+ (209, 1.232e-02)
+ (769, 4.454e-03)
+ (2561, 1.551e-03)
+ (7937, 5.236e-04)
+ (23297, 1.723e-04)
+ (65537, 5.545e-05)
+ (178177, 1.751e-05)
+ };
+
+ \addplot plot coordinates {
+ (11, 6.887e-02)
+ (71, 3.177e-02)
+ (351, 1.341e-02)
+ (1471, 5.334e-03)
+ (5503, 2.027e-03)
+ (18943, 7.415e-04)
+ (61183, 2.628e-04)
+ (187903, 9.063e-05)
+ (553983, 3.053e-05)
+ };
+
+ \addplot plot coordinates {
+ (13, 5.755e-02)
+ (97, 2.925e-02)
+ (545, 1.351e-02)
+ (2561, 5.842e-03)
+ (10625, 2.397e-03)
+ (40193, 9.414e-04)
+ (141569, 3.564e-04)
+ (471041, 1.308e-04)
+ (1496065, 4.670e-05)
+ };
+ \legend{$d=2$\\$d=3$\\$d=4$\\$d=5$\\$d=6$\\}
+}%
+
\author{Christian Feuers\"anger}
\title{Tests for pgfplots.sty}
\begin{document}
\maketitle
+\testsection{Standard placement normal plot}
\begin{tikzpicture}
\begin{axis}
\smallplotstest
\end{axis}
\end{tikzpicture}
+\testsection{Scaling tests}
+\testsubsection{width=5cm}
\begin{tikzpicture}
\begin{axis}[width=5cm]
\smallplotstest
\end{axis}
\end{tikzpicture}
+\testsubsection{width=textwidth}
\begin{tikzpicture}
\begin{axis}[width=\textwidth]
\smallplotstest
\end{axis}
\end{tikzpicture}
+\testsubsection{width=textwidth, height=textheight}
\begin{tikzpicture}
\begin{axis}[height=\textheight,width=\textwidth]
\smallplotstest
\end{axis}
\end{tikzpicture}
+\testsubsection{height=3cm}
+\begin{tikzpicture}
+\begin{axis}[height=3cm]
+\smallplotstest
+\end{axis}
+\end{tikzpicture}
+
+\testsubsection{x=3cm}
+\hrule width3cm height1pt
+\vskip10pt
+\begin{tikzpicture}[baseline]
+\begin{axis}[x=3cm]
+\smallplotstest
+\end{axis}
+\end{tikzpicture}
+
+\testsubsection{x=3cm, y=4cm}
+\hrule width3cm height1pt
+\noindent
+\vrule height4cm width1pt
+\hskip10pt
+\begin{tikzpicture}[baseline]
+\begin{axis}[x=3cm,y=4cm]
+\smallplotstest
+\end{axis}
+\end{tikzpicture}
+
+\testsubsection{y=3cm}
+\noindent
+\vrule height3cm width1pt
+\hskip10pt
+\begin{tikzpicture}[baseline]
+\begin{axis}[y=3cm]
+\smallplotstest
+\end{axis}
+\end{tikzpicture}
+
+\testsubsection{Scale vs. Datascale trafo}
+All should have the same size; especially the same height.
+This tests the data scale transformation and rounding inaccuracies during the computation of $x$~and~$y$ unit vectors,
+\[ x = \frac{W}{T(\bar x) - T(\underline x)}. \]
+The larger $x$, the higher the scaling accuracy. Large $x$ means small $T(\bar x) - T(\underline x)$ (relative to width~$W$). But this implies low accuracy for the input data! And nobody wants inaccurate plots.
+
+The datascale transformation~$T$ is set up such that $O(W) = O(x)$, but I am not sure if I need to adjust some parameters. Some parameters lead to inaccurate~$x$ and~$y$ vectors, such that axis sizes are \emph{not} the same although $W$~and~$H$ (width and height) are the same.
+
+\noindent
+{\tikzstyle{every picture}+=[baseline]
+\axispreset{width=3cm,scale only axis,ytick=\empty}%
+\listnew\autoplotspeclist{blue\\}%
+\begin{tikzpicture}%
+\begin{axis}
+\addplot plot coordinates {
+ (0.000000, 0.113142)
+ (0.062500, 0.114457)
+ (0.125000, 0.115773)
+ (0.187500, 0.117088)
+ (0.250000, 0.118404)
+ (0.312500, 0.119719)
+ (0.375000, 0.121035)
+ (0.437500, 0.122350)
+ (0.500000, 0.123666)
+ (0.562500, 0.124981)
+ (0.625000, 0.126297)
+ (0.687500, 0.127612)
+ (0.750000, 0.128928)
+ (0.812500, 0.130243)
+ (0.875000, 0.131559)
+ (0.937500, 0.132874)
+ (1.000000, 0.134190)
+};
+\end{axis}
+\end{tikzpicture}%
+\begin{tikzpicture}%
+\begin{axis}
+\addplot plot coordinates {
+ (0.000000, 0.192392)
+ (0.020408, 0.551660)
+ (0.040816, 0.816371)
+ (0.061224, 0.957528)
+ (0.081633, 0.936301)
+ (0.102041, 0.784097)
+ (0.122449, 0.539922)
+ (0.142857, 0.257432)
+ (0.163265, -0.039651)
+ (0.183673, -0.313379)
+ (0.204082, -0.533386)
+ (0.224490, -0.712582)
+ (0.244898, -0.856655)
+ (0.265306, -0.932880)
+ (0.285714, -0.953862)
+ (0.306122, -0.957749)
+ (0.326531, -0.890993)
+ (0.346939, -0.774152)
+ (0.367347, -0.602360)
+ (0.387755, -0.396801)
+ (0.408163, -0.132261)
+ (0.428571, 0.161664)
+ (0.448980, 0.460018)
+ (0.469388, 0.720198)
+ (0.489796, 0.880398)
+ (0.510204, 0.967384)
+ (0.530612, 0.900632)
+ (0.551020, 0.729232)
+ (0.571429, 0.460479)
+ (0.591837, 0.155311)
+ (0.612245, -0.153827)
+ (0.632653, -0.430787)
+ (0.653061, -0.653561)
+ (0.673469, -0.819444)
+ (0.693878, -0.931060)
+ (0.714286, -0.984394)
+ (0.734694, -0.981970)
+ (0.755102, -0.940272)
+ (0.775510, -0.825804)
+ (0.795918, -0.664138)
+ (0.816327, -0.465371)
+ (0.836735, -0.219185)
+ (0.857143, 0.070697)
+ (0.877551, 0.377456)
+ (0.897959, 0.658660)
+ (0.918367, 0.853564)
+ (0.938776, 0.925472)
+ (0.959184, 0.868936)
+ (0.979592, 0.629528)
+ (1.000000, 0.228732)
+};
+\end{axis}
+\end{tikzpicture}%
+\begin{tikzpicture}%
+\begin{axis}
+
+\addplot plot coordinates {
+ (0.000000, 0.112104)
+ (0.062500, 0.098029)
+ (0.125000, 0.083954)
+ (0.187500, 0.069879)
+ (0.250000, 0.055804)
+ (0.312500, 0.041729)
+ (0.375000, 0.027654)
+ (0.437500, 0.013579)
+ (0.500000, -0.000496)
+ (0.562500, -0.014571)
+ (0.625000, -0.028646)
+ (0.687500, -0.042722)
+ (0.750000, -0.056797)
+ (0.812500, -0.070872)
+ (0.875000, -0.084947)
+ (0.937500, -0.099022)
+ (1.000000, -0.113097)
+};
+\end{axis}
+\end{tikzpicture}%
+\begin{tikzpicture}%
+\begin{axis}
+\addplot plot coordinates {
+ (0.000000, -0.963159)
+ (0.020408, -0.781664)
+ (0.040816, -0.488585)
+ (0.061224, -0.137738)
+ (0.081633, 0.234861)
+ (0.102041, 0.556489)
+ (0.122449, 0.791942)
+ (0.142857, 0.941856)
+ (0.163265, 0.977486)
+ (0.183673, 0.930499)
+ (0.204082, 0.809581)
+ (0.224490, 0.653308)
+ (0.244898, 0.474588)
+ (0.265306, 0.268631)
+ (0.285714, 0.048692)
+ (0.306122, -0.168568)
+ (0.326531, -0.380963)
+ (0.346939, -0.577633)
+ (0.367347, -0.751043)
+ (0.387755, -0.893755)
+ (0.408163, -0.960465)
+ (0.428571, -0.932380)
+ (0.448980, -0.841830)
+ (0.469388, -0.650880)
+ (0.489796, -0.346509)
+ (0.510204, -0.007265)
+ (0.530612, 0.329744)
+ (0.551020, 0.621489)
+ (0.571429, 0.826905)
+ (0.591837, 0.947602)
+ (0.612245, 0.956706)
+ (0.632653, 0.872426)
+ (0.653061, 0.724325)
+ (0.673469, 0.528915)
+ (0.693878, 0.310032)
+ (0.714286, 0.081807)
+ (0.734694, -0.143046)
+ (0.755102, -0.363063)
+ (0.775510, -0.559141)
+ (0.795918, -0.733031)
+ (0.816327, -0.880063)
+ (0.836735, -0.959350)
+ (0.857143, -0.968957)
+ (0.877551, -0.885145)
+ (0.897959, -0.702171)
+ (0.918367, -0.410704)
+ (0.938776, -0.035900)
+ (0.959184, 0.359062)
+ (0.979592, 0.719407)
+ (1.000000, 0.940563)
+};
+\end{axis}
+\end{tikzpicture}%
+}
+
+
+\testsection{Tick placement}
\begin{tikzpicture}
\begin{axis}[
xtick={-1.5,-1,...,1.5},
@@ -115,8 +401,10 @@
\end{axis}
\end{tikzpicture}
+\testsubsection{Enlargelimits tests}
+\testsubsubsection{enlargelimits=false, x limits provided}
\begin{tikzpicture}
-\begin{axis}[
+\begin{axis}[%
enlargelimits=false,
xmin=0,xmax=1,
xtick={-1.5,-1.25,...,1.5}]
@@ -124,6 +412,29 @@
\end{axis}
\end{tikzpicture}
+\testsubsubsection{enlargelimits=false, no limits provided}
+\begin{tikzpicture}
+\begin{axis}[enlargelimits=false]
+\smallplotstest
+\end{axis}
+\end{tikzpicture}
+
+\testsubsubsection{enlargelimits=true, all limits provided $[-1,1]\times [-1,1]$}
+\begin{tikzpicture}
+\begin{axis}[enlargelimits=true,xmin=-1,xmax=1,ymin=-1,ymax=1]
+\smallplotstest
+\end{axis}
+\end{tikzpicture}
+
+\testsubsubsection{enlargelimits=0.5}
+\begin{tikzpicture}
+\begin{axis}[enlargelimits=0.5]
+\smallplotstest
+\end{axis}
+\end{tikzpicture}
+
+\testsubsection{modified labels}
+
{
\tikzstyle{every axis label}=[]
\tikzstyle{every axis x label}=[
@@ -132,7 +443,7 @@
yshift=+15pt]
\tikzstyle{every axis y label}=[
at={(1,0.5)},
- xshift=+15pt,
+ xshift=+35pt,
rotate=90]
\begin{tikzpicture}
@@ -158,6 +469,8 @@
\end{axis}
\end{tikzpicture}
+\testsection{Tick label assigment tests}
+\testsubsection{Using xticklabel and xtick}
\begin{tikzpicture}
\begin{axis}[
xtick={-1.5,-1,...,1.5},
@@ -177,12 +490,99 @@
\end{axis}
\end{tikzpicture}
+\testsubsection{Using xticklabels}%
+\begin{tikzpicture}
+\begin{axis}[
+ xtick={-1.5,-1,...,1.5},
+ xticklabels={%
+ $-1\frac 12$,
+ $-1$,
+ $-\frac 12$,
+ $0$,
+ $\frac 12$,
+ $1$}
+]
+\smallplotstest
+\end{axis}
+\end{tikzpicture}
+
+\testsubsection{With commas}
+\begin{tikzpicture}
+\begin{axis}[
+ xtick={-1.5,-1,...,1.5},
+ xticklabels={%
+ {-1,5},
+ -1,
+ {-0,5},
+ 0,
+ {0,5},
+ 1,
+ {1,5}}
+]
+\smallplotstest
+\end{axis}
+\end{tikzpicture}
+
+\testsubsection{Using yticklabels in logplot}%
+{
+\def\tickformat#1{1e#1}%
+\begin{tikzpicture}
+\begin{loglogaxis}[
+ ytick={1e-8,1e-7,1e-6,1e-5,1e-4,1e-3,1e-2,1e-1,1e0,1e1},
+ yticklabels={%
+ \tickformat{-8},
+ \tickformat{-7},
+ \tickformat{-6},
+ \tickformat{-5},
+ \tickformat{-4},
+ \tickformat{-3},
+ \tickformat{-2},
+ \tickformat{-1},
+ \tickformat{-0}}
+]
+\loglogtestplot
+\end{loglogaxis}
+\end{tikzpicture}
+}
+
+\testsection{Default options log plot}
\begin{tikzpicture}
\begin{loglogaxis}
\loglogtestplot
\end{loglogaxis}
\end{tikzpicture}
+\testsection{Semilogy plot}
+\begin{tikzpicture}
+ \begin{semilogyaxis}[xlabel=Index,ylabel=Value]
+ \addplot[color=blue,mark=*] plot coordinates {
+ (1,8)
+ (2,16)
+ (3,32)
+ (4,64)
+ (5,128)
+ (6,256)
+ (7,512)
+ };
+ \end{semilogyaxis}
+\end{tikzpicture}
+
+\testsection{Semilogx plot}
+\begin{tikzpicture}
+ \begin{semilogxaxis}[xlabel=Index,ylabel=Value]
+ \addplot[color=blue,mark=*] plot coordinates {
+ (8,1)
+ (16,2)
+ (32,3)
+ (64,4)
+ (128,5)
+ (256,6)
+ (512,7)
+ };
+ \end{semilogxaxis}
+\end{tikzpicture}
+
+\testsection{Scaling log plots}
\hrule
\nobreak
\vskip10pt
@@ -206,6 +606,7 @@
\end{loglogaxis}
\end{tikzpicture}
+\testsection{Tick/Tick-Label placement log plots}
\begin{tikzpicture}
\begin{loglogaxis}[
xmin=0.99e2,xmax=1e4,
@@ -222,13 +623,486 @@
\end{loglogaxis}
\end{tikzpicture}
+\testsection{Legends}
+\begingroup
\begin{tikzpicture}
\begin{loglogaxis}[title=A test title,xlabel=Dof,ylabel=Error]
\loglogtestplot
+\legend{Eins\\Zwei\\}%
\end{loglogaxis}
\end{tikzpicture}
-\bibliographystyle{gerabbrv} %gerapali} %gerabbrv} %gerunsrt.bst} %gerabbrv}% gerplain}
-% \bibliography{literatur.bib}
-\end{document}
+\begin{tikzpicture}
+\begin{loglogaxis}[title=A test title,xlabel=Dof,ylabel=Error,legend columns=2]
+\manylogplots
+\end{loglogaxis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+\begin{loglogaxis}[title=A test title,xlabel=Dof,ylabel=Error,legend columns=3]
+\manylogplots
+\end{loglogaxis}
+\end{tikzpicture}
+
+{
+\tikzstyle{every axis legend}+=[inner sep=0pt,nodes={inner sep=0pt}]
+\begin{tikzpicture}
+\begin{loglogaxis}[title=A test title,xlabel=Dof,ylabel=Error,legend columns=4]
+\manylogplots
+\end{loglogaxis}
+\end{tikzpicture}
+}
+
+{\tikzstyle{every axis legend}+=[at={(0.5,-0.2)},anchor=north]
+\begin{tikzpicture}
+\begin{loglogaxis}[title=A test title,xlabel=Dof,ylabel=Error,legend columns=6]
+\manylogplots
+\end{loglogaxis}
+\end{tikzpicture}
+}%
+
+{\tikzstyle{every axis legend}+=[at={(0.5,0.98)},anchor=north,inner sep=0pt]
+\begin{tikzpicture}
+\begin{loglogaxis}[title=A test title,xlabel=Dof,ylabel=Error,legend columns=-1]
+\manylogplots
+\end{loglogaxis}
+\end{tikzpicture}
+}%
+
+\testsubsection{``legend plot pos'' options}
+\begin{tikzpicture}
+\begin{loglogaxis}[title=A test title,xlabel=Dof,ylabel=Error,legend plot pos=left]
+\manylogplots
+\end{loglogaxis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+\begin{loglogaxis}[title=A test title,xlabel=Dof,ylabel=Error,legend plot pos=right]
+\manylogplots
+\end{loglogaxis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+\begin{loglogaxis}[title=A test title,xlabel=Dof,ylabel=Error,legend plot pos=none]
+\manylogplots
+\end{loglogaxis}
+\end{tikzpicture}
+\endgroup
+
+\testsection{Title-option}
+\begin{tikzpicture}
+\begin{loglogaxis}[title=A test title,xlabel=Dof,ylabel=Error]
+\loglogtestplot
+\end{loglogaxis}
+\end{tikzpicture}
+
+\testsection{Scaling test for very small or very large x values}
+\testsubsection{1e-2}
+\begin{tikzpicture}
+\begin{axis}
+ \addplot plot coordinates {
+ (0.005,1)
+ (0.01,2)
+ (0.02,4)
+ };
+\end{axis}
+\end{tikzpicture}
+
+\testsubsection{1e+2}
+% \tracingmacros=2\tracingcommands=2
+\begin{tikzpicture}
+\begin{axis}
+ \addplot plot coordinates {
+ (50,1)
+ (100,2)
+ (200,4)
+ };
+\end{axis}
+\end{tikzpicture}
+% \tracingmacros=0\tracingcommands=0
+
+\testsubsection{x=1e+11; y=1e-6}
+\begin{tikzpicture}
+\begin{axis}
+ \addplot plot coordinates {
+ (5e10,1e-6)
+ (1e11,2e-6)
+ (2e11,4e-6)
+ };
+\end{axis}
+\end{tikzpicture}
+
+\testsubsection{1e+2}
+\begin{tikzpicture}
+\begin{axis}
+ \addplot plot coordinates {
+ (5,1)
+ (10,2)
+ (20,4)
+ };
+\end{axis}
+\end{tikzpicture}
+
+\testsection{Filter test}
+{%
+\def\myOwnYfilter#1\to#2{%
+ \def#2{0.5}%
+}%
+\begin{tikzpicture}
+\begin{axis}[yfilter={\myOwnYfilter}]
+\addplot plot coordinates {
+ (4,0)
+ (6,1)
+};
+\end{axis}
+\end{tikzpicture}
+}%
+
+\testsection{Test for addplot+[...]}
+{
+\tikzstyle{every axis legend}+=[at={(1.03,1)},anchor=north west]
+\begin{enumerate}
+ \item Ohne aenderung:
+
+\begin{tikzpicture}
+\begin{axis}
+\smallplotstest
+
+\addplot plot coordinates {
+ (4,0)
+ (6,1)
+};
+\legend{eins\\zwei\\}%
+\end{axis}
+\end{tikzpicture}
+
+\item MIT aenderung:
+
+\begin{tikzpicture}
+\begin{axis}
+\smallplotstest
+
+\addplot+[only marks] plot coordinates {
+ (4,0)
+ (6,1)
+};
+\legend{eins\\zwei\\}%
+\end{axis}
+\end{tikzpicture}
+\end{enumerate}
+}
+
+\testsection{Baseline alignment}
+\noindent
+\begin{tikzpicture}[baseline]
+\begin{axis}[width=0.4\linewidth,xlabel=An x label]
+ \smallplotstest
+\end{axis}
+\end{tikzpicture}
+\hspace{1cm}
+\begin{tikzpicture}[baseline]
+\begin{axis}[width=0.4\linewidth,xlabel={\Huge An x label}]
+ \smallplotstest
+\end{axis}
+\end{tikzpicture}
+
+\testsubsection{Baseline alignment and externalized graphics}
+One needs \texttt{\textbackslash beginpgfgraphicnamed} around the complete paragraph, so this here doesn't work (see source code):
+
+\beginpgfgraphicnamed{baselinetesta}
+\begin{tikzpicture}[baseline]
+\begin{axis}[width=0.4\linewidth,xlabel=An x label]
+ \smallplotstest
+\end{axis}
+\end{tikzpicture}
+\endpgfgraphicnamed
+%
+%
+\hspace{1cm}
+\beginpgfgraphicnamed{baselinetestb}
+\begin{tikzpicture}[baseline]
+\begin{axis}[width=0.4\linewidth,xlabel={\Huge An x label}]
+ \smallplotstest
+\end{axis}
+\end{tikzpicture}
+\endpgfgraphicnamed
+
+\testsubsection{Baseline alignment and externalized graphics II}
+\beginpgfgraphicnamed{baselinetestc}
+\begin{tikzpicture}[baseline]
+\begin{axis}[width=0.4\linewidth,xlabel=An x label]
+ \smallplotstest
+\end{axis}
+\end{tikzpicture}
+%
+%
+\hspace{1cm}
+\begin{tikzpicture}[baseline]
+\begin{axis}[width=0.4\linewidth,xlabel={\Huge An x label}]
+ \smallplotstest
+\end{axis}
+\end{tikzpicture}
+\endpgfgraphicnamed
+
+\testsubsection{Horizontal and Vertical alignment}
+\begin{tikzpicture}[baseline]
+\begin{axis}[width=0.4\linewidth,xlabel=An x label,ylabel=An y label]
+ \smallplotstest
+\end{axis}
+
+\begin{scope}[yshift=-4cm]
+\begin{axis}[width=0.4\linewidth,xlabel=An x label,ylabel={$\displaystyle\sum_{k=1}^n \frac 1n$}]
+ \smallplotstest
+\end{axis}
+\end{scope}
+
+\node[fill=yellow,circle] at (0,0) {$(0,0)$};
+\end{tikzpicture}
+%
+%
+\hspace{1cm}
+\begin{tikzpicture}[baseline]
+\begin{axis}[width=0.4\linewidth,xlabel={\Huge An x label}]
+ \smallplotstest
+\end{axis}
+
+\begin{scope}[yshift=-4cm]
+\begin{axis}[width=0.4\linewidth,xlabel={\Huge An x label},ylabel={$\displaystyle\sum_{k=1}^n \frac 1n$}]
+ \smallplotstest
+\end{axis}
+\end{scope}
+\node[fill=yellow,circle] at (0,0) {$(0,0)$};
+\end{tikzpicture}
+
+\testsection{Scaletest}
+
+{
+\listnew{\autoplotspeclist}{%
+ red,only marks,mark options={fill=red!80!black},mark=*\\%
+ black,only marks,mark options={fill=black},mark=square*\\%
+}%
+\begin{tikzpicture}
+\begin{axis}[%
+ width=8cm,
+ height=2cm,
+ xtick=\empty,
+ ytick=\empty
+]
+
+\addplot plot coordinates {
+ (0.968555, 0.000000)
+ (0.984277, 0.000000)
+ (0.030884, 0.000000)
+ (0.250000, 0.000000)
+ (0.750000, 0.000000)
+ (0.468750, 0.000000)
+ (0.750000, 0.000000)
+ (0.484375, 0.000000)
+ (0.968555, 0.000000)
+ (0.968555, 0.000000)
+ (1.000000, 0.000000)
+ (1.000000, 0.000000)
+ (0.030176, 0.000000)
+ (0.250000, 0.000000)
+ (0.250000, 0.000000)
+ (0.250000, 0.000000)
+ (0.750000, 0.000000)
+ (1.000000, 0.000000)
+ (0.500000, 0.000000)
+ (0.500000, 0.000000)
+ (0.234375, 0.000000)
+ (0.500000, 0.000000)
+ (0.750000, 0.000000)
+ (0.000000, 0.000000)
+ (0.750000, 0.000000)
+ (0.468750, 0.000000)
+ (0.500000, 0.000000)
+ (0.000000, 0.000000)
+ (0.468750, 0.000000)
+ (0.000000, 0.000000)
+ (0.750000, 0.000000)
+ (0.000000, 0.000000)
+ (0.234375, 0.000000)
+ (1.000000, 0.000000)
+};
+\addplot plot coordinates {
+ (0.367188, 0.000000)
+ (0.625000, 0.000000)
+ (0.312500, 0.000000)
+ (0.656250, 0.000000)
+ (0.312500, 0.000000)
+ (0.148438, 0.000000)
+ (0.125000, 0.000000)
+ (0.640625, 0.000000)
+ (0.136719, 0.000000)
+ (0.875000, 0.000000)
+ (0.390625, 0.000000)
+ (0.828125, 0.000000)
+ (0.875000, 0.000000)
+ (0.656250, 0.000000)
+ (0.125000, 0.000000)
+ (0.343750, 0.000000)
+ (0.861328, 0.000000)
+ (0.312500, 0.000000)
+ (0.578125, 0.000000)
+ (0.578125, 0.000000)
+ (0.625000, 0.000000)
+ (0.375000, 0.000000)
+ (0.875000, 0.000000)
+ (0.812500, 0.000000)
+ (0.847656, 0.000000)
+ (0.589844, 0.000000)
+ (0.343750, 0.000000)
+ (0.125000, 0.000000)
+ (0.875000, 0.000000)
+ (0.125000, 0.000000)
+ (0.609375, 0.000000)
+ (0.156250, 0.000000)
+};
+\end{axis}
+\end{tikzpicture}
+}
+
+\testsection{Anchortest}
+{
+\def\plot#1{
+\vbox{\hsize=5cm
+#1:
+
+\begin{tikzpicture}
+ \begin{axis}[width=5cm,anchor=#1]
+ \smallplotstest
+ \end{axis}
+ \node[fill=yellow,circle] at (0,0) {$(0,0)$};
+\end{tikzpicture}
+}
+}%
+\noindent
+\plot{north}
+\plot{north west}
+\plot{west}
+\plot{south west}
+\plot{south}
+\plot{south east}
+\plot{east}
+\plot{north east}
+\plot{center}
+}
+
+\testsection{Hide axis test}
+\begin{tikzpicture}
+ \begin{axis}
+ \smallplotstest
+ \end{axis}
+\end{tikzpicture}
+\begin{tikzpicture}
+ \begin{axis}[hide axis]
+ \smallplotstest
+ \end{axis}
+\end{tikzpicture}
+\vskip 1cm
+\noindent
+\begin{tikzpicture}
+ \begin{axis}[hide axis,title=A plot with hidden axis]
+ \smallplotstest
+ \end{axis}
+\end{tikzpicture}
+\begin{tikzpicture}
+ \begin{axis}[hide axis,title=A plot with hidden axis]
+ \smallplotstest
+ \legend{A legend\\}
+ \end{axis}
+\end{tikzpicture}
+
+\testsection{Style--test}
+{
+%\tikzstyle{every axis}=[xmin=-3,xmax=3]
+\begin{tikzpicture}
+ \begin{axis}
+ \smallplotstest
+ \end{axis}
+\end{tikzpicture}
+}
+
+\testsection{Grid lines test}
+\begin{tikzpicture}
+ \begin{axis}[xmajorgrids]
+ \smallplotstest
+ \end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{axis}[ymajorgrids,xmajorgrids]
+ \smallplotstest
+ \end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{loglogaxis}[ymajorgrids,xmajorgrids]
+ \loglogtestplot
+ \end{loglogaxis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{loglogaxis}[grid=both]
+ \loglogtestplot
+ \end{loglogaxis}
+\end{tikzpicture}
+
+{
+\tikzstyle{every major tick}+=[color=black,thick]
+\begin{tikzpicture}
+ \begin{loglogaxis}[grid=major]
+ \loglogtestplot
+ \end{loglogaxis}
+\end{tikzpicture}
+
+\tikzstyle{every minor tick}+=[color=black,thick]
+\begin{tikzpicture}
+ \begin{loglogaxis}[grid=both]
+ \loglogtestplot
+ \end{loglogaxis}
+\end{tikzpicture}
+}
+
+\testsection{Tick lines test}
+\begin{tikzpicture}
+ \begin{loglogaxis}[xmajorticks=false,xminorticks=true]
+ \loglogtestplot
+ \end{loglogaxis}
+\end{tikzpicture}
+\begin{tikzpicture}
+ \begin{loglogaxis}[ymajorticks=false,yminorticks=false]
+ \loglogtestplot
+ \end{loglogaxis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{loglogaxis}[ticks=none]
+ \loglogtestplot
+ \end{loglogaxis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{loglogaxis}[ticks=major]
+ \loglogtestplot
+ \end{loglogaxis}
+\end{tikzpicture}
+
+\testsection{TikZ-coordinate system ``axis''}
+\begin{tikzpicture}
+\begin{axis}
+\smallplotstest
+\axispath\draw (axis cs:0.5,0.6) -- (axis cs:-1,0);
+\end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{loglogaxis}
+ \axispath\draw
+ (axis cs:18943,2.873391e-05) |- (axis cs:47103,8.437499e-06);
+ \loglogtestplot
+ \end{loglogaxis}
+\end{tikzpicture}
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/pgfplots/todo.txt b/Master/texmf-dist/doc/latex/pgfplots/todo.txt
index 49d55dc2452..2c27f484bbd 100644
--- a/Master/texmf-dist/doc/latex/pgfplots/todo.txt
+++ b/Master/texmf-dist/doc/latex/pgfplots/todo.txt
@@ -1,32 +1,77 @@
-------------------------------------------------------------
-FLEISS:
+BUGS
-------------------------------------------------------------
-+ mache paket-abhaengigkeiten + versionsnummern ordentlich.
-
-- implementiere irgendwas, sodass \ref{} und \label{} auch fuer plots benutzt
- werden koennen. Ziel: suche die plotspec zum letzten plot raus!
++ axis limits of zero width are not fixed causing division by zero
-- dokumentiere trim-feature (oder shcmeisse es raus)
++ ytick=\empty is broken again :-(
-+ dokumentiere filter-feature
- + xfilter
- + yfilter
- + execute at begin plot
- + execute at end plot
+- if a logplot has very small axis ranges, only ONE tick label will be placed.
+ Thats not enough.
+ In such a case, tick labels should be placed at MINOR TICKS [2-9]*10^i.
+ BTW:
+ if someone places tick marks at [1-9]*10^i, the minor ticks should NOT be
+ disabled.
+ Instead, tick positions should be RECOGNISED AS MINOR TICKS (which is not
+ that simple).
-- aktualisiere doku fuer die neue log-evaluation
- + listing <-> axen konsistenz
- + textanpassungen
- + semilogxaxis - beispiel + doku
+- bei normalen plots wird der parser nicht angeworfen
-+ dokumentiere beispiel mit steigungsdreieck
-
-+ verwende die neuen umgebungen 'loglogaxis', 'semilogaxis' etc.
++ die legend[font=] variable ist doch dasselbe wie in dem tikzstyle zu legenden,
+ oder? warum funktioniert es dann anders?
--------------------------------------------------------------
-BUGS
--------------------------------------------------------------
+- implementiere enlargelimits fuer log-achsen
+
++ markers werden rausgeclipped, wenn die achsen TIGHT sind.
+
++ man kann keine leeren listen an tick labels uebergeben!
+
++ width/height produziert NICHT die gewuenschte breite.
+ Man sollte ne zusatzoption haben, die die labels grundsaetzlich NICHT
+ beruecksichtigt.
+
+X Fix the scaling estimations.
+ Problem: I don't know sizes of labels, legends, titles and tick labels.
+ Idea:
+ -Create a temporary picture
+ \hbox{%
+ \begin{tikzpicture}[xshift=...,yshift=...] % skaliere auf (0,0)--(1,1)
+ \draw (0,0) rectangle (1,1)
+ plaziere labels + legende + vllt. ein tick auf jede achse (?)
+ \end{tikzpicture}
+ }%
+ - measure and remember its size
+ - throw it away
+ -> 9.2.2008:
+ ATTEMPT FAILED.
+ Reasons:
+ 1. it is not possible to place a tikzpicture into a tikzpicture.
+ And it can't be because Tikz updates bounding box parameters GLOBALLY.
+ 2. I could use a combination of
+ - scope,
+ - the 'current bounding box' node,
+ - \pgfpointanchor{current bounding box}{ anchor name },
+ - drawing commands for labels,legend etc.
+ Effect: bounding box is determined correctly. BUT:
+ - bounding box of real picture may be affected,
+ - every output is drawn because nodes can't be 'thrown away'.
+ At least I do not know how.
+
+
++ enlargelimits muss RELATIV nicht ABSOLUT gemacht werden.
+
++ es gibt einen fehler in der achsen skalierung, wenn
+ man sehr grosse limits hat (normale achsen)
+
++ default ticks muessen besser an achsenlimits angepasst werden
+ -> bei sehr grossen oder sehr kleinen limits schlaegt die derzeitige
+ einschraenkung der step sizes fehl
+
+- addplot plot coordinates { (235 , 43252) }
+ ^
+ funzt nicht wegen dem leerzeichen vor dem komma
+
+- verschiebung des ylabels ist komisch, wegen der rotate option
- die standard-positionierung der achsenlabels beruecksichtigt nicht die breite
der ticklabels - entweder ist es daher zu weit weg oder zu nah
@@ -38,16 +83,13 @@ BUGS
+ das log-ding kann
1e7 nicht lesen, nur 1.0e7
-- wenn man jetzt ticks angibt, sieht man die rechenfehler angezeigt. das ist
++ wenn man jetzt ticks angibt, sieht man die rechenfehler angezeigt. das ist
doof. Vllt. kann ich ja zugriff auf die normalisierte gleitpunktdarstellung
bekommen und so das als 10^i darstellen??
HALT: die ticks WAREN doch mal als normale zahlen gegeben, oder? Die sollte
ich nehmen!
-- bei bel. ticks moechte ich nur ne gewisse anzahl stellen im tick label haben!
-
-- die legend[font=] variable ist doch dasselbe wie in dem tikzstyle zu legenden,
- oder? warum funktioniert es dann anders?
++ bei bel. ticks moechte ich nur ne gewisse anzahl stellen im tick label haben!
+ beim auto-limit-lesen geht
\addplot[color=red,mark=x]
@@ -81,10 +123,6 @@ X durch die verwendung der TEX-Register scheinen ungeauigkeiten beim clippen
+ diese liste sollte nicht '\\' fuer die interne repr verwenden.
-X meine achsenlimits gehen immer in log10 waehrend der rest wohl eher ln ist!
- das hat alles seine richtigkeit.
-
-+ die legende ist zu breit.
+ fuehre optionen fuer die legende ein
(position, font)
@@ -102,7 +140,267 @@ X Die gesamtbreite enthaelt zu viele nur grob einkalkulierte einfluesse!
FEATURES
-------------------------------------------------------------
-- es waere nicht schlecht, wenn man die ticklabels bessere angeben koennte
+- prettyprintnumber is not adequate.
+ There are different aims:
+ 1. The user provides
+ - precision
+ - number format (sci, fixed, truncate to int, 'whatever fits best')
+ - the number in any precision or format.
+ Details:
+ - I need \scifloatround
+ - sollte die mantisse einer exponential-darstellung runden
+ - erfordert u.U. renormalisierungen
+ - the fixed point rounding routine needs to distinguish between
+ - MAXIMUM precision, 1.000 -> 1
+ - FIXED precision 1.000 -> 1.00
+ - the 'std' format should use
+ - fixed point if
+ -4 < e < precision
+ - scientific in all other cases.
+ - this is copied from 'printf' manual. Motivation:
+ - 0.00013 wastes more space than 1.3e-4 and the latter
+ one may have higher precision.
+ - with precision 3, exponent > precision like 12345 =
+ 1.2345e4, the fixed point repr has as much digits as
+ the sci format. If exponent >> precision, it is
+ better to use scientific notation and round the
+ mantisse to 'precision'.
+ 2. The user says "show the information appropriately". Examples:
+ - "format my axis tick labels so that information is represented well
+ with very few space"
+ - "format my numbers such that absolute values above THRESH1 are
+ formatted with SCI, and absolute numbers below THRESH2 are formatted
+ with SCI, and those within with fixed pt.
+ - "format my numbers relatively to a reference number - I want to see
+ the difference!"
+ That may also be an appropriate choice for axis descriptions...
+ -> these informal requirements should be converted into a precise
+ definition. They should be available as configurable, predefined
+ "display strategies".
+ 3. The user may not only want to specify the NUMBER FORMAT (sci, fixed, ...),
+ but maybe he also wants to CONFIGURE THE GENERATED STRINGS. Examples:
+ - '1.002' vs '1,002' vs '1\cdot 002' , ...
+ - '1\cdot 10^4' vs '1e4' versus '1e+4' versus '1_{4}', ....
+ -> allow such possiblities.
+ Details for the display-methods (they don't round!):
+ - for log-displays: call \shownumberexponential{1}\empty\exponent
+ -> 10^i; 10^{0.702}
+ -> the precision should be used to round the exponent!
+ -> round exponent with \shownumberfixedpt.
+ Well, maybe a separate method like
+ \shownumberlogdisplay\exponent would be more appropriate.
+ - for scientific format: call
+ \shownumberexponential\sign\mantisse\exponent
+ There are different possible methods to display \mantisse:
+ - MAXIMUM precision
+ - FIXED precision
+ The same holds for the exponent:
+ - zero-pad to X digits
+ - minimum space
+ - for "normal" numbers, either with fixed or maximum precision:
+ \shownumberfixedpt\preperiod\postperiod
+ -> this should also be used for \mantisse!
+ My idea is that any input number HAS a period; then I simply need
+ to divide into the part before and after that.
+ -> conflicts with the idea of rounding: the rounded result may be
+ an integer!
+ Maybe I can return the \preperiod and \postperiod parts from the
+ rounding-routines.
+ Ideas:
+ - prettyprintnumber should access a bunch of configuration variables.
+ - these variables should be configurable by a key-value-parser.
+ - there should be a key-value-interface for prettyprintnumber, but it would
+ be best if that one is not necessarily needed. Most applications will not call
+ prettyprintnumber directly; they will configure the number format once and
+ invoke prettyprintnumber without options.
+ At least I think so....
+ - I could create a tabular-column format for column pretty printing
+ (possibly with alignment)
+ - I guess I can take the manual for printf and re-implement all of its
+ features (together with some of LaTeX like subscript exponentials or so)
+
+- document 'legend plot pos' option
+
+- Most of my loops are quite inefficient. I have learned how to employ
+ \@ifnextchar (or the PGF-pendant) to create efficient loops on top of TeXs
+ parser:
+ - use \@ifnextchar to check for a TERMINATE token and recurse otherwise.
+ - linear runtime
+ - I fear, my loops have quadratic runtime
+
+- there are some clipping paths in the tick-placement loop which can be
+ replacement with simple \ifdim's.
+ I guess clipping is not the cheapest operation.
+
+
+- remember unfiltered (non-logarithmized) input ticks with \listnew and provide
+ them like '\tick' during ticklabel typesetting
+
+
+- Es sollte unbedingt moeglich sein, die TikZ-Styles zu verwenden. Das
+ \axispreset ist reichlich nervig und inkonsistent mit der restlichen nutzung
+ -> optimal:
+ \path (0,0) axis[xlabel=X,width=...] {
+ \addplot plot coordinates {...};
+ };
+ or
+ \path (0,0) axis[xlabel=X] {
+ \addplot plot coordinates {...};
+ }
+ (1,1);
+ and the scaling would create a plot of dimension (1*x,1*y).
+
+ What do I really need?
+ - Path commands,
+ - style support,
+ - ... ?
+
+- provide accessable names for external axis labels, for example
+ \path[use as bounding box] (0,0) rectangle (1,1) (axis x label.south);
+ -> would only use the axis rectangle and the x label as bounding box.
+
++ improve tick placement (more) systematically
+
++ provide auto tick labels at 5*i if appropriate
+
++ implement the legend as tikz-matrix
+ -> width computation works correctly (there is a bug with font scaling)
+
++ provide tick labels as a list like
+ axis[tick labels={A,B,1,4,5,$\frac 12$}]
+ -> convert to \listnew, use listpopfront to access elements
+
+
+- provide options for log plot tick formatting:
+ 10^0.703 vs fixed point format
+
++ I could provide a global coordinate transformation
+ T(x) = x * 10^{q-m}
+ where 'q' is the desired range of numbers. It depends on TeXs numerical
+ capacities and the desired size (cm) of the plot.
+
+ The number 'm' is the order of the input data, \abs{x} \in O(10^m).
+ Advantages:
+ - such a transformation is purely based on period shifts
+ (multiplication/division by 10)
+ and is therefor purely TEXT BASED
+ - one can avoid TeXs limitations on numbers
+ - the full plot precision is maintained
+ Disadvantages:
+ - takes some more time,
+ - any \axispath commands need to use the transformation as well
+ - I need to provide a good implementation of T and T^{-1}
+ - needs a lot of care in programming
+ Ideas:
+ - the transformation could be included into my 'filter coordinates'
+ framework. However, one special treatment has to be done because
+ the transformation can only be done as soon as axis limits are known.
+ I guess it would be better to transform BEFORE TikZ touches the first
+ point.
+ - I should use my normalized floating point parser, possibly with some
+ simplifications
+ + implement numerics on floating point repr
+ + less than,
+ + minimum,
+ + format conversions,
+ + arithmetic shifts
+ - Maybe I could be evil and overwrite PGF's number parsing routine(s)
+ (\pgfmathparse?)
+ Advantage: I could apply log to user input; I could apply this
+ transformation transparently
+ -> maybe the number parsing is only performed by TikZ routines, not the
+ lowlevel PGF ones... perhaps thats easier to replace?
+
+- I could try to use the plot-stream framework of PGF directly instead of using
+ the 'plot coordinates' command of tikz.
+ Advantage: would be faster. And the additional features can't be used anyway
+ because of my own number parsing routines...
+
++ rename manual.pdf to pgfplots.pdf -> allows texdoc pgfplots
+
+
++ alignment: vertikal kann ich jetzt mit baseline. Kann ich horizontales
+ alignment an (0,0) hinbekommen?
+
++ axis hide option ? macht das sinn?
+
+- axis equal option
+
++ legende anders formatierbar?
+ - ausserhalb des (und isoliert von dem) plots?
+ + horizontal?
+
++ grid lines
+ + minor
+ + major
+ -> einfach als verlaengerung der kleinen tick lines
+
+- hintergrundfarbe des plots auf "weiss" fixierbar
+ -> sinnvoll fuer vortraege, bei denen anderer hintergrund ist
+ - option: GANZER plot oder nur achse
+
+- je eine autoplotspeclist fuer jeden achsentyp (d.h. 4 insgesamt)
+
+- es gibt scheinbar in PDF viewern die moeglichkeit, fuer den Druck ein anderes
+ dokument/dokumentteile zu verwenden als fuers Bildschirmbetrachten
+ (draft-package bspw?).
+ Kann man das nutzen, um sowohl farbige als auch S/W-plots zu generieren?
+ -> pruefe draftcopy paket
+
+- koennte man den kram auch aus (grossen) tabellen rauslesen? Also sowas wie
+ "plot X versus Y aus file Z"?
+ -> das geht sicher!
+ Ideen:
+ - abstrakte datenstruktur als liste von spalten, eine spalte ist ne liste
+ von nummern
+ - einlesen:
+ - zeilenweise, haengt an die jeweiligen spalten mit \listpushback
+ coordinaten dran
+ - read first line as header (optionally my $flags line for column
+ formatting advice)
+ - read just strings, no parsing
+ - optimal: '\t' as separator. How can I teach TeX to use '\t' as
+ separator!?
+ - would allow
+ \addplot plot table[x=X,y=Z] {\table}
+ and
+ \typesettable[columns=...,format=sci,...,formatting options=...] {\table}
+ - implementation: simple run through column lists
+ -> I need a method for simultaneous traversal of multiple lists, not
+ difficult
+ -> CONSISTENT data representation, powerful display options
+
+
+
++ man sollte \addplot mit '+[OPTIONEN]' starten koennen.
+
++ ich sollte das enlargelimits deaktivierbar machen! vllt. auch ne option 'tight'
+
++ automatisches tick-platzieren koennte verbessert werden
+ -> insbesondere fuer normale plots
+
+- fehlerbars waeren nett
+
+- es waere schoen, wenn man auf legend extern zugreifen koennte oder diese sogar
+ plotten koennte
+
++ es waere nicht schlecht, wenn man die ticklabels bessere angeben koennte
+ z.B.
+ ticklabellist={1\\2\\3\\}
+ oder so
+
+- prettyprintnumber: sollte SCI benutzen, wenn underflow
+
++ baseline option, die die linke unter ecke als '(0,0)' koordinate annimmt.
+ Wuerde generell sinn machen, oder?
+
+- andere plot-befehle
+ - domain option verwenden zum update der limits
+ - kann man logs anwenden?
+ - plot function
+ - plot file
+ - plot (...)
+ -> see tikz.code.tex for how to implement that!
- es waere schoen, wenn ich die ANZAHL der sinnvollen ticks angeben wuerde, d.h.
TICKS PRO ACHSE anstelle von TICKS PRO UNIT DIFFERENZ
@@ -118,29 +416,6 @@ FEATURES
2. beim lesen sucht er nach '\includegraphics{zeug.PDF}', was natuerlich
NICHT funktioniert, weil das pdf keine bounding box hat. supi.
-- ich brauche ne einbindung als Tikz paket. Ich wuerde bspw. gerne mit
- tikzstyle{every axis}=[width=0.5\textwidth] oder so arbeiten koennen.
- Wie geht das?
-
-- vllt. waere sowas wie 'filter' nicht schlecht: plotte einfach nichts, was
- ausserhalb eines gewissen domains liegt
-
-- mache die default styles etwas professioneller: statt hellere marker lieber
- dunklere
-
-- ich brauche ne option, die verspaetetes drawen erzwingt [selbst mit geg.
- limits].
-
-- ich koennte log implementieren.
- EINGABE:
- x = +m*10^e
- -> log(x) = log(m) + e*log(10)
- d.h. ich muesste nur ne implementierung fuer
- log(m), 0<m<1 finden.
-
- Ich koennte auch ne beliebe Zahl x=DDDDD.DDDDDDD in SCI format konvertieren,
- indem ich einfach kommas verschiebe und mitzaehle. Das geht alles ohne
- tex-register!
+ passe bounding box und x/y-skalierung "sinnvoll" an.
+ mache ne option "width=" die die GESAMTbreite angibt.
@@ -158,11 +433,9 @@ FEATURES
+ Nur mit der 'x=' bzw. 'y=' option sollte es NACH AUSSEN moeglich sein,
direkt einfluss auf die koordinaten zu nehmen.
-- entscheide automatisch, ob der abstand zwischen ticks an die skalierung
++ entscheide automatisch, ob der abstand zwischen ticks an die skalierung
angepasst werden sollte.
-- Einbinden als Tikz-Library
-
+ [xy]min = auto
-> berechne die werte numerisch
Ideen:
@@ -200,19 +473,3 @@ FEATURES
\addplot[OPTIONS] plot coordinates {...};
-> das \addplot ersetzt gewissermaßen das \draw
--------------------------------------------------------------
-Implementierungsideen
--------------------------------------------------------------
-+ Eine einfache Datenstruktur mit
- + push_back
- + create
- + copy
- + pop_front()
- + get(i)
- waere sehr hilfreich.
- Mir schwant sowas wie eine reihe von makros \array@index ... das kann man aber
- nicht loeschen :-(
- alternativ geht natuerlich
- \array{{1}{2}{3}}
- oder so. Das verbraet nur eine variable, hat aber hohe zugriffszeiten
-