diff options
| author | Paul Buetow <paul@buetow.org> | 2008-08-09 21:26:58 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-08-09 21:26:58 +0000 |
| commit | 8a9b34513b277dd1c6da5ffefde9431ed6a700b6 (patch) | |
| tree | 0a7a7bc030af5995d9b65c6a975ec5cb62c110fd | |
| parent | 0a18dc94f2bde02b00eb1f36514dfe1aee2041b3 (diff) | |
writte
| -rw-r--r-- | LaTeX/chapters/implementierung.tex | 44 | ||||
| -rw-r--r-- | LaTeX/diplomarbeit.pdf | 6493 |
2 files changed, 3384 insertions, 3153 deletions
diff --git a/LaTeX/chapters/implementierung.tex b/LaTeX/chapters/implementierung.tex index 9b69bf0..86ed5da 100644 --- a/LaTeX/chapters/implementierung.tex +++ b/LaTeX/chapters/implementierung.tex @@ -507,6 +507,8 @@ registerEvent("protocols.implementations.VSMyProtocol", \section{GUI sowie Simulationsvisualisierung}
+\subsection{Funktionsweise}
+
Das Paket \textit{simulator} (vereinfacht auf Abbildung \ref{fig:PackageProtocols} dargestellt) implementiert die eigentliche graphische Benutzeroberf\"{a}che des Simulators. Ausnahmen sind die Editorklassen in \textit{prefs.editors} sowie \textit{utils.VSFrame}.
\begin{figure}[h]
@@ -520,15 +522,47 @@ Beim Starten des Simulators wird auf die Main-Methode, welche sich in \textit{VS \textit{VSSimulatorVisualization} ist bei Weitem die kryptischste Klasse des Simulators. Die greift auf die Java's Grafikbibliothek Java2D zur\"{u}ck und ist aus Performancegr\"{u}nden mit dem Simulationsverlauf stark verzahnt. Variablen, die stets den selbe Wert haben, wurden stets als finale Variablen angelegt. Variablen, die von Konfigurationen oder Einstellungen abh\"{a}ngig sind, die sich nur nach Konfigurations\"{a}nderung oder Vergr\"{o}ern beziehungsweise Verkleinern des Simulationsfensters \"{a}ndern, werden nur wenn es n\"{o}tig ist neu berechnet.
-Die Klasse \textit{VSMenuItemStates} wird f\"{u}r die Synchronisierung des Simulationsstatusses, der Toolbar und des Simulations-Men\"{u}s (beide Letztere auf Abbildung \ref{fig:Toolbar} zu sehen) verwendet. Damit ist gemeint, ob die Simulation bereits gestartet wurde oder nicht oder gegebenenfalls schon abgelaufen ist. Oder ob die Simulation sich in einem pausierten Status befindet. Abh\"{a}ngig davon kann der Benutzer bestimmte Aktionen durchf\"{u}hren oder nicht (beispielsweise kann eine Simulation nur pausiert werden, wenn sie aktuell abgespielt wird). Alle hier m\"{o}glichen Aktionen wurden bereits in Kapitel 2.1 im Abschnitt ``Die Toolbar'' behandelt.
+Die Klasse \textit{VSMenuItemStates} wird f\"{u}r die Synchronisierung des Simulationsstatusses, der Toolbar und des Simulations-Men\"{u}s (beide Letztere auf Abbildung \ref{fig:Toolbar} zu sehen) verwendet. Damit ist gemeint, ob die Simulation bereits gestartet wurde, noch nicht gestartet wurde oder gegebenenfalls schon abgelaufen ist. Oder ob die Simulation sich in einem pausierten Status befindet. Abh\"{a}ngig davon kann der Benutzer bestimmte Aktionen durchf\"{u}hren oder nicht (beispielsweise kann eine Simulation nur pausiert werden, wenn sie aktuell abgespielt wird). Alle hier m\"{o}glichen Aktionen wurden bereits in Kapitel 2.1 im Abschnitt ``Die Toolbar'' behandelt.
-Die klasse \textit{VSCreateTask} wird vom Ereigniseditor verwendet. Der Ereigniseditor (Abbildung \ref{fig:SidebarMitEreignissen}) wird in der Klasse \textit{VSSimulator} implementiert. Hinter jeder Ereignisauswahl verbirgt sich intern ein \textit{VSCreateTask}-Objekt, welches definiert wie das jeweilige Ereignis anzulegen ist und es automatisch in ein \textit{VSTask}-Objekt gekapselt f\"{u}r eine sp\"{a}tere Ausf\"{u}hrung dem Task-Manager \"{u}bergibt.
+Die Klasse \textit{VSCreateTask} wird vom Ereigniseditor verwendet. Der Ereigniseditor (Abbildung \ref{fig:SidebarMitEreignissen}) wird in der Klasse \textit{VSSimulator} implementiert. Hinter jeder Ereignisauswahl verbirgt sich intern ein \textit{VSCreateTask}-Objekt, welches definiert wie das jeweilige Ereignis anzulegen ist und es automatisch in ein \textit{VSTask}-Objekt gekapselt f\"{u}r eine sp\"{a}tere Ausf\"{u}hrung dem Task-Manager \"{u}bergibt.
\textit{VSLogging} kapselt ein \textit{javax.swing.JTextArea}-Objekt, wo alle Nachrichten geloggt werden. Hier werden alle Loggfunktionen (inklusive Loggfilter sowie tempor\"{a}re Deaktivierung des Loggen) implementiert. Die \textit{JTextArea} wird dem \textit{VSSimulator}-Objekt \"{u}bergeben und dort dargestellt. F\"{u}r den Loggfilter wird intern auf das Java-Standardpaket \textit{java.util.regex} zugegriffen, womit anhand von regul\"{a}ren Ausdr\"{u}cken in Java-Syntax die Loggs gefiltert werden k\"{o}nnen.
+\subsection{Threads und Zeitsynchronisierung}
+
+Ziel vom Simulator is es bis auf jede Millisekunde genau zu simulieren. Jede simulierte Sekunde soll relativ zur echten Zeit fortschreiten. Die Simulationsabspielgeschwindigkeit l\"{a}t sich bei den Simulationseinstellungen unter ``Abspielgeschwindigkeit der Simulation'' (Float: \textit{sim.clock.speed}) einstellen. Damit dies gew\"{a}hrleistet wird, mu folgendes ber\"{u}cksichtigt werden:
+
+\begin{itemize}
+ \item Das Zeichnen der Visualisierung ben\"{o}tigt pro Aktualisierung einige Millisekunden. Dies ist der Rechenintensivste Teil des Simulators. Hier werden st\"{a}ndig mathematische Berechnungen (wie zum Beispiel die Gerade einer Nachrichtenlinie, die automatische Skalierung des Diagrams die sich automatisch an die Fenstergr\"{o}e und der Simulationsdauer anpasst und vieles mehr).
+ \item Das Neuberechnen der Simulation ben\"{o}tigt pro Aktualisierung einige Millisekunden. Hier wird insbesondere der Task-Manager beansprucht, der \"{u}berpr\"{u}ft, ob Ereignisse auszuf\"{u}hren sind und sie gegebenenfalls dann auch ausf\"{u}hrt.
+ \item Jeder simulierte Prozess sollte mit selber Geschwindigkeit fortschreiten, und dies auf jedem Rechner wo der Simulator ausgef\"{u}hrt wird. Da Java-Threads nicht komplett platformunabh\"{a}ngig sind (Threads sind im Betriebssystem implementiert), kann das Verhalten auf verschiedenen Rechnern minimal variieren. Ausserdem \"{u}bernimmt das Betriebssystem die Entscheidung, wann welcher Thread arbeiten darf. Ausser man synchronisiert Threads manuell so, dass sie den eigenen Anspr\"{u}chen entsprechen. Letzteres bedeutet aber auch mehr Programmieraufwand.
+ \item Die Simulationszeit ist stets in Millisekunden angegeben, welche in einer \textit{long}-Variable abgespeichert wird. Somit kann eine Simulationszeit immer nur eine ganze Zahl sein. Berechnungsrundungsfehler wegen \textit{sim.clock.speed} m\"{u}ssen ber\"{u}cksichtig werden.
+ \item Der Simulator soll nicht st\"{a}ndig die komplette CPU des Anwender-Computers voll beanspruchen.
+\end{itemize}
+
+Es wurde folgende relativ einfache L\"{o}sung gew\"{a}hlt, bei der lediglich ein einziger Thread fuer die Visualisierung und die Berechnung der Simulation zust\"{a}ndig ist (alle Zeitangaben sind in Millisekunden). Der Algorithmus verl\"{a}uft leicht vereinfacht in folgender Form ab:
+
+\begin{enumerate}
+ \item Die simulierte Startzeit sei $s$ und die Zeit wo die Simulation aufh\"{o}rt sei $e$.
+ \item Wenn $s > e$, dann $s := e$ setzen.
+ \item Neuberechnen und Zeichnen der Visualisierung zum Zeitpunkt $s$. Die dabei verstrichene Zeit sei $v$.
+ \item Wenn $s == e$, dann Simulation beenden.
+ \item F\"{u}r einige Millisekunden den Thread pausieren (schlafen lassen). Hierbei sei $p$ die beim Schlafen verstrichene Zeit.
+ \item
+ \begin{verbatim}
+for (i = s; i < s + v + p && i < e; i++)
+ Alle Ereignisse des Zeitpunktes i hintereinander ausfhren
+ \end{verbatim}
+ \item Bei Punkt 2 mit neuer Startzeit $s := s + v + p$ weitermachen.
+\end{enumerate}
+
+Hinzu kommt noch die Ber\"{u}cksichtigung der Simulationsvariable \textit{sim.clock.speed}, die wegen der \"{U}bersicht im Algorithmus nicht dargestellt wurde. Intern hat der Simulator die echte Zeit und die Simulationszeit abgespeichert. Es werden st\"{a}ndig die verstrichenen echten Zeiten gemessen und anschliessend anhand von \textit{sim.clock.speed} die neuen tats\"{a}chlichen Simulationszeiten berechnet. Rundungsfehler werden pro Durchgang in eine \textit{double}-Variable (Fliekommazahl doppelter Genauigkeit) abgespeichert und wenn der Betrag der Rundungsfehler $>= 1$ ist, dann werden davon die ganzen Werteanteile in der Simulationszeit ber\"{u}cksichtigt.
+
+Jede Simulation besitzt somit seinen eigenen Simulationsthread. Bei mehreren parallel laufenden Simulationen laufen auch mehrere parallele voneinander unabh\"{a}ngige Threads. Des Weiteren gibt es noch den Java Swing-Thread, der f\"{u}r die GUI und der Anwenderinteraktion zust\"{a}ndig ist. Der Anwender kann zu jedem Zeitpunkt in die Simulation eingreifen. Anwendereingriffe m\"{u}ssen daher synchronisiert werden, da es ansonsten zu zeitgleichen Zugriffen/\"{A}nderungen gleicher Objekte kommen kann und somit eine Java-Ausnahme geworfen wird die das Stoppen eines Threads verursacht.
+
\section{Serialisierung und Deserialisierung von Simulationen}
-Der Anwender kann eine erstellte Simulation im Datei-Men\"{u} speichern und/oder eine bereits abgespeicherte Simulation laden. Hierbei wird von den aus Java angebotenen M\"{o}glichkeit Objekte zu Serialisieren gebrauch gemacht. Im Paket \textit{serialize} (Abbildung \ref{fig:PackageSerialize}) befinden sich Helferklassen, die bei einer Serialisierung und einer Deserialisierung einer Simulation unter die Arme greifen.
+Der Anwender kann eine erstellte Simulation im Datei-Men\"{u} speichern und/oder eine bereits abgespeicherte Simulation laden. Hierbei wird von den aus Java angebotenen M\"{o}glichkeit Objekte zu Serialisieren gebrauch gemacht. Im Paket \textit{serialize} (Abbildung \ref{fig:PackageSerialize}) befinden sich Helfer, die bei einer Serialisierung und einer Deserialisierung einer Simulation unter die Arme greifen.
Der Simulator serialisiert nur notwendige Daten, und nicht jedes existierende Objekt. Alle Serialisierbaren Klassen implementieren das Interface \textit{VSSerializable} mit folgenden zwei Methoden:
@@ -537,7 +571,7 @@ Der Simulator serialisiert nur notwendige Daten, und nicht jedes existierende Ob \item \textit{public void deserialize(VSSerialize serialize, ObjectInputStream ois)}: Diese Methode wird bei jedem Deserialisierungsvorgang aufgerufen (beim Laden einer Simulation).
\end{itemize}
-Die Methoden \textit{serialize} und \textit{deserialize} erhalten neben einen Dateistream auch ein \textit{VSSerialize}-Objekt. F\"{u}r jeden (De)serialisierungsvorgang wird ein \textit{VSSerialize}-Objekt erzeugt, welches dabei Hilft die ben\"{o}tigten Aktionen durchzuf\"{u}hren. Eine zu serialisierende Simulation besteht aus vielen voneinander abh\"{a}ngigen Objekte. Jedes Objekt kann dabei Referenzen auf andere Objekte besitzen. W\"{u}rde jedes Objekt komplett serialisiert werden, so w\"{u}rden Objekte, auf denen mehrere Referenzen existieren, in mehrfacher Ausf\"{u}hrung seriaisiert werden. Bei Kreissverweisen w\"{u}rde die Serialisierung sogar in einer Endlosschleife enden.
+Die Methoden \textit{serialize} und \textit{deserialize} erhalten neben einen Dateistream auch ein \textit{VSSerialize}-Objekt. F\"{u}r jeden (De)serialisierungsvorgang wird ein \textit{VSSerialize}-Objekt erzeugt, welches dabei Hilft die ben\"{o}tigten Aktionen durchzuf\"{u}hren. Eine zu serialisierende Simulation besteht aus vielen voneinander abh\"{a}ngigen Objekten. Jedes Objekt kann dabei Referenzen auf andere Objekte besitzen. W\"{u}rde jedes Objekt komplett serialisiert werden, so w\"{u}rden Objekte, auf denen mehrere Referenzen existieren, in mehrfacher Ausf\"{u}hrung serialisiert werden. Bei Kreissverweisen (Objekt A hat eine Referenz auf Objekt B und Objekt B hat eine Referenz auf Objekt A als Attribut gespeichert) w\"{u}rde die Serialisierung sogar in einer Endlosschleife enden.
\textit{VSSerialize} hilft hierbei dies zu vermeiden und merkt sich Informationen von allen bereits serialisierten Objekten, sodass jedes Objekt nur genau einmal serialisiert wird. Bei der Deserialisierung werden alle Objekte wieder automatisch mit den richtigen Referenzen ausgestattet, wobei kein Objekt doppelt deserialisiert wird.
@@ -572,7 +606,7 @@ Vor- und nach der eigenlichen Objektserialisierung wird jeweils ein boolsches Fl Das zu serialisierende Objekt besitzt hier lediglich zwei Attribute, die serialisiert werden sollen. Alle anderen Klassenattribute k\"{o}nnen vernachl\"{a}igt werden. Mit \textit{serialize.setObject} speichert \textit{serialize} eine Referenz auf das aktuelle Objekt ab, worauf andere Objektserialisierungen zur\"{u}ckgreifen k\"{o}nnen. Danach wird ein \textit{prefs} und \textit{someOtherSerializableObject} serialisiert. Die Deserialisierung folgt genau den Umgekehrten weg. Wobei hier zuerst die Instanzen der Klassen auf normalen Weg erstellt werden und dann nachtr\"{a}glich die relevanten Attribute deserialisiert und den Objekten zugewiesen werden. Hierbei werden auch mithilfe von \textit{VSSerialize} mehrere Referenzen auf das selbe Objekt korrekt behandelt.
-Wenn der Anwender \textit{Datei $\rightarrow$ Simulation speichern} w\"{a}hlt, dann wird zun\"{a}chst ein \textit{VSSerialize}-Objekt erstellt. Ausgehend davon wird \textit{serialize} auf \textit{VSSimulator} ausgef\"{u}hrt (siehe Serialisierungssequenz auf Abbildung \ref{fig:SequenceSerialize}). Das Simulator-Objekt f\"{u}hrt \textit{serialize} wiederum auf das \textit{VSSimulatorVisualization}-Objekt aus. Dort wird jeder Prozess inklusive alle Protokollobjekte serialisiert. Anschliessend folgt der Task-Manager inklusive allen programmierten Ereignissen. Alle Instanzen von \textit{VSSerializablePrefs} werden automatisch mitserialisiert. Sie beinhalten alle Simulationseinstellungen.
+Wenn der Anwender \textit{Datei $\rightarrow$ Simulation speichern} w\"{a}hlt, dann wird zun\"{a}chst ein \textit{VSSerialize}-Objekt erstellt. Ausgehend davon wird \textit{serialize} auf \textit{VSSimulator} ausgef\"{u}hrt (siehe Serialisierungssequenz auf Abbildung \ref{fig:SequenceSerialize}). Das Simulator-Objekt f\"{u}hrt \textit{serialize} wiederum auf das \textit{VSSimulatorVisualization}-Objekt aus. Dort wird jeder Prozess inklusive alle Protokollobjekte serialisiert. Anschliessend folgt der Task-Manager inklusive allen programmierten Ereignissen.
\begin{figure}
\centering
diff --git a/LaTeX/diplomarbeit.pdf b/LaTeX/diplomarbeit.pdf index ad0a15b..e1330de 100644 --- a/LaTeX/diplomarbeit.pdf +++ b/LaTeX/diplomarbeit.pdf @@ -246,51 +246,63 @@ endobj (\376\377\0003\000.\0005\000\040\000G\000U\000I\000\040\000s\000o\000w\000i\000e\000\040\000S\000i\000m\000u\000l\000a\000t\000i\000o\000n\000s\000v\000i\000s\000u\000a\000l\000i\000s\000i\000e\000r\000u\000n\000g) endobj 169 0 obj -<< /S /GoTo /D (section.3.6) >> +<< /S /GoTo /D (subsection.3.5.1) >> endobj 172 0 obj -(\376\377\0003\000.\0006\000\040\000S\000e\000r\000i\000a\000l\000i\000s\000i\000e\000r\000u\000n\000g\000\040\000u\000n\000d\000\040\000D\000e\000s\000e\000r\000i\000a\000l\000i\000s\000i\000e\000r\000u\000n\000g\000\040\000v\000o\000n\000\040\000S\000i\000m\000u\000l\000a\000t\000i\000o\000n\000e\000n) +(\376\377\0003\000.\0005\000.\0001\000\040\000F\000u\000n\000k\000t\000i\000o\000n\000s\000w\000e\000i\000s\000e) endobj 173 0 obj -<< /S /GoTo /D (section.3.7) >> +<< /S /GoTo /D (subsection.3.5.2) >> endobj 176 0 obj -(\376\377\0003\000.\0007\000\040\000H\000e\000l\000f\000e\000r\000k\000l\000a\000s\000s\000e\000n\000\040\000u\000n\000d\000\040\000K\000l\000a\000s\000s\000e\000n\000\040\000f\000\374\000r\000\040\000A\000u\000s\000n\000a\000h\000m\000e\000b\000e\000h\000a\000n\000d\000l\000u\000n\000g\000e\000n) +(\376\377\0003\000.\0005\000.\0002\000\040\000T\000h\000r\000e\000a\000d\000s\000\040\000u\000n\000d\000\040\000Z\000e\000i\000t\000s\000y\000n\000c\000h\000r\000o\000n\000i\000s\000i\000e\000r\000u\000n\000g) endobj 177 0 obj -<< /S /GoTo /D (section.3.8) >> +<< /S /GoTo /D (section.3.6) >> endobj 180 0 obj -(\376\377\0003\000.\0008\000\040\000P\000r\000o\000g\000r\000a\000m\000m\000i\000e\000r\000r\000i\000c\000h\000t\000l\000i\000n\000i\000e\000n) +(\376\377\0003\000.\0006\000\040\000S\000e\000r\000i\000a\000l\000i\000s\000i\000e\000r\000u\000n\000g\000\040\000u\000n\000d\000\040\000D\000e\000s\000e\000r\000i\000a\000l\000i\000s\000i\000e\000r\000u\000n\000g\000\040\000v\000o\000n\000\040\000S\000i\000m\000u\000l\000a\000t\000i\000o\000n\000e\000n) endobj 181 0 obj -<< /S /GoTo /D (section.3.9) >> +<< /S /GoTo /D (section.3.7) >> endobj 184 0 obj -(\376\377\0003\000.\0009\000\040\000E\000n\000t\000w\000i\000c\000k\000l\000u\000n\000g\000s\000u\000m\000g\000e\000b\000u\000n\000g) +(\376\377\0003\000.\0007\000\040\000H\000e\000l\000f\000e\000r\000k\000l\000a\000s\000s\000e\000n\000\040\000u\000n\000d\000\040\000K\000l\000a\000s\000s\000e\000n\000\040\000f\000\374\000r\000\040\000A\000u\000s\000n\000a\000h\000m\000e\000b\000e\000h\000a\000n\000d\000l\000u\000n\000g\000e\000n) endobj 185 0 obj -<< /S /GoTo /D (chapter.4) >> +<< /S /GoTo /D (section.3.8) >> endobj 188 0 obj -(\376\377\0004\000\040\000A\000u\000s\000b\000l\000i\000c\000k) +(\376\377\0003\000.\0008\000\040\000P\000r\000o\000g\000r\000a\000m\000m\000i\000e\000r\000r\000i\000c\000h\000t\000l\000i\000n\000i\000e\000n) endobj 189 0 obj -<< /S /GoTo /D (appendix.A) >> +<< /S /GoTo /D (section.3.9) >> endobj 192 0 obj -(\376\377\000A\000\040\000A\000k\000r\000o\000n\000y\000m\000e) +(\376\377\0003\000.\0009\000\040\000E\000n\000t\000w\000i\000c\000k\000l\000u\000n\000g\000s\000u\000m\000g\000e\000b\000u\000n\000g) endobj 193 0 obj -<< /S /GoTo /D (appendix.B) >> +<< /S /GoTo /D (chapter.4) >> endobj 196 0 obj -(\376\377\000B\000\040\000L\000i\000t\000e\000r\000a\000t\000u\000r\000v\000e\000r\000z\000e\000i\000c\000h\000n\000i\000s) +(\376\377\0004\000\040\000A\000u\000s\000b\000l\000i\000c\000k) endobj 197 0 obj -<< /S /GoTo /D [198 0 R /Fit ] >> +<< /S /GoTo /D (appendix.A) >> endobj -201 0 obj << +200 0 obj +(\376\377\000A\000\040\000A\000k\000r\000o\000n\000y\000m\000e) +endobj +201 0 obj +<< /S /GoTo /D (appendix.B) >> +endobj +204 0 obj +(\376\377\000B\000\040\000L\000i\000t\000e\000r\000a\000t\000u\000r\000v\000e\000r\000z\000e\000i\000c\000h\000n\000i\000s) +endobj +205 0 obj +<< /S /GoTo /D [206 0 R /Fit ] >> +endobj +209 0 obj << /Length 827 /Filter /FlateDecode >> @@ -299,14 +311,14 @@ xڍUMs6W(͔ͮWvҦZD#.d% ι>wyW 7Ve{'}
n4~' , ŨF&qeXd˩ʝgZN
p.ͩ2):os>0]e{JK|hF"{gj,wy*fxIϫ608J|-_`_K_!sPӱbk{>>3(~Zuh엗qDh\P@4w1ωuȷgH%Աf`.O{F,s>`ϮbtEEiOԡӀpFu<|9ҊPypΎ|L^KSqt8c&4(܋endstream endobj -198 0 obj << +206 0 obj << /Type /Page -/Contents 201 0 R -/Resources 200 0 R +/Contents 209 0 R +/Resources 208 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R +/Parent 218 0 R >> endobj -199 0 obj << +207 0 obj << /Type /XObject /Subtype /Image /Width 500 @@ -467,18 +479,18 @@ j'F{E, 5M%jKqizlO<ԕ#C~%(4p<]gʟ~c]'?Ӹ)E- sOyGKrm{ endobj -202 0 obj << -/D [198 0 R /XYZ 74.4095 769.8898 null] +210 0 obj << +/D [206 0 R /XYZ 74.4095 769.8898 null] >> endobj -203 0 obj << -/D [198 0 R /XYZ 74.4095 769.8898 null] +211 0 obj << +/D [206 0 R /XYZ 74.4095 769.8898 null] >> endobj -200 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> -/XObject << /Im1 199 0 R >> +208 0 obj << +/Font << /F26 214 0 R /F28 217 0 R >> +/XObject << /Im1 207 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -213 0 obj << +221 0 obj << /Length 892 /Filter /FlateDecode >> @@ -490,21 +502,21 @@ vsqy#oj
>qԳDR&ڦ C1D\q{oJ7.
pV1H9<E YJ=ZN~P#Qm`Wŀ;>: n@endstream endobj -212 0 obj << +220 0 obj << /Type /Page -/Contents 213 0 R -/Resources 211 0 R +/Contents 221 0 R +/Resources 219 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R +/Parent 218 0 R >> endobj -214 0 obj << -/D [212 0 R /XYZ 74.4095 793.4011 null] +222 0 obj << +/D [220 0 R /XYZ 74.4095 793.4011 null] >> endobj -211 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> +219 0 obj << +/Font << /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -217 0 obj << +225 0 obj << /Length 790 /Filter /FlateDecode >> @@ -518,21 +530,21 @@ xڕVMs0Wp"[>d2$3A)_ I C֫}ڷJ08$b<zE[ 7, =js+&f endobj -216 0 obj << +224 0 obj << /Type /Page -/Contents 217 0 R -/Resources 215 0 R +/Contents 225 0 R +/Resources 223 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R +/Parent 218 0 R >> endobj -218 0 obj << -/D [216 0 R /XYZ 74.4095 793.4011 null] +226 0 obj << +/D [224 0 R /XYZ 74.4095 793.4011 null] >> endobj -215 0 obj << -/Font << /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +223 0 obj << +/Font << /F26 214 0 R /F28 217 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -224 0 obj << +232 0 obj << /Length 2296 /Filter /FlateDecode >> @@ -547,386 +559,403 @@ o,*Ev>ΠwT?/z\ri? ǝ&<Bu*?2Dz}֦ >E 5ηׅok)95yN /;&Ͷ37C7Mp!RM`ة"%ɕD,UhBk
ȆFJ¢wt?)& P^է}Y\#jp٩"E),JQ}YT%M@h- u!Mue@ endobj -223 0 obj << +231 0 obj << /Type /Page -/Contents 224 0 R -/Resources 222 0 R +/Contents 232 0 R +/Resources 230 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R -/Annots [ 227 0 R 228 0 R 229 0 R 230 0 R 231 0 R 232 0 R 233 0 R 234 0 R 235 0 R 236 0 R 237 0 R 238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 249 0 R 250 0 R 251 0 R 252 0 R ] +/Parent 218 0 R +/Annots [ 235 0 R 236 0 R 237 0 R 238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 249 0 R 250 0 R 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R 257 0 R 258 0 R 259 0 R 260 0 R ] >> endobj -227 0 obj << +235 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 607.8694 132.1982 618.3978] /Subtype /Link /A << /S /GoTo /D (chapter.1) >> >> endobj -228 0 obj << +236 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 591.1647 150.1131 599.7295] /Subtype /Link /A << /S /GoTo /D (section.1.1) >> >> endobj -229 0 obj << +237 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 570.8377 156.4611 581.42] /Subtype /Link /A << /S /GoTo /D (section.1.2) >> >> endobj -230 0 obj << +238 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 544.8461 147.4677 553.4916] /Subtype /Link /A << /S /GoTo /D (chapter.2) >> >> endobj -231 0 obj << +239 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 524.555 252.1763 535.0296] /Subtype /Link /A << /S /GoTo /D (section.2.1) >> >> endobj -232 0 obj << +240 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 506.0392 172.6274 516.3075] /Subtype /Link /A << /S /GoTo /D (section.2.2) >> >> endobj -233 0 obj << +241 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 487.4157 151.3326 497.7917] /Subtype /Link /A << /S /GoTo /D (section.2.3) >> >> endobj -234 0 obj << +242 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 468.8999 163.3025 479.2759] /Subtype /Link /A << /S /GoTo /D (section.2.4) >> >> endobj -235 0 obj << +243 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 450.4917 219.7364 460.7601] /Subtype /Link /A << /S /GoTo /D (subsection.2.4.1) >> >> endobj -236 0 obj << +244 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 431.8683 237.2476 442.4505] /Subtype /Link /A << /S /GoTo /D (subsection.2.4.2) >> >> endobj -237 0 obj << +245 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 413.3525 280.8776 423.7285] /Subtype /Link /A << /S /GoTo /D (subsection.2.4.3) >> >> endobj -238 0 obj << +246 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 394.8367 269.5888 405.2127] /Subtype /Link /A << /S /GoTo /D (subsection.2.4.4) >> >> endobj -239 0 obj << +247 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 378.1321 149.1627 386.6968] /Subtype /Link /A << /S /GoTo /D (section.2.5) >> >> endobj -240 0 obj << +248 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 357.9127 245.963 368.3873] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.1) >> >> endobj -241 0 obj << +249 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 339.2892 235.2122 349.6652] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.2) >> >> endobj -242 0 obj << +250 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 322.5846 234.1633 331.1494] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.3) >> >> endobj -243 0 obj << +251 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 302.2576 430.8561 312.8399] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.4) >> >> endobj -244 0 obj << +252 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 283.7418 339.714 294.324] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.5) >> >> endobj -245 0 obj << +253 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 265.226 361.5826 275.8082] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.6) >> >> endobj -246 0 obj << +254 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 248.5214 273.5162 257.2924] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.7) >> >> endobj -247 0 obj << +255 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 230.0056 279.3982 238.7766] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.8) >> >> endobj -248 0 obj << +256 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 209.6785 278.1965 220.2608] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.9) >> >> endobj -249 0 obj << +257 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 191.1627 283.3791 201.745] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.10) >> >> endobj -250 0 obj << +258 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 172.7546 178.9666 183.0229] /Subtype /Link /A << /S /GoTo /D (section.2.6) >> >> endobj -251 0 obj << +259 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 154.2388 325.7265 164.7134] /Subtype /Link /A << /S /GoTo /D (subsection.2.6.1) >> >> endobj -252 0 obj << +260 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 135.6153 281.8817 146.1976] /Subtype /Link /A << /S /GoTo /D (subsection.2.6.2) >> >> endobj -225 0 obj << -/D [223 0 R /XYZ 74.4095 793.4011 null] +233 0 obj << +/D [231 0 R /XYZ 74.4095 793.4011 null] >> endobj -226 0 obj << -/D [223 0 R /XYZ 74.4095 638.5029 null] +234 0 obj << +/D [231 0 R /XYZ 74.4095 638.5029 null] >> endobj -222 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> +230 0 obj << +/Font << /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -255 0 obj << -/Length 1967 +263 0 obj << +/Length 2092 /Filter /FlateDecode >> stream -x[o)(tݦ7,>(6c. gH9g((&0`_s|.#Xa$ԩ8+n/hq:&7͋YaZ79aaћaժ<f}_7|8%Vk4RË
<\Xݫ$u*Exm*G6ه..Yo֫rƮݕ>WROʌ&JJQĶR*b9'V
19!bAbd`pF.vN҆ z]էsAʺ
ߥk·#<= -0&5g3"co4ƿ=}_i9ty e{q>i)D2jy/{]/d6l:y:wx.Sߊ;Uƥإ@bDc:S*f0y -+uНG$;OWkHT$bVL}Lȥ 4fjthyKʠxũ`cѦrT,hrbVUR\#㻐 -3xH{KtQ!.b3^w+}8GXNaC<aTi gP-\/tfzf>KÌ LEe\bxAMTsj =#G@A'fendstream +x[6+ti53M۴>ǫյP%J8(M~sfhe~Xf$ԪXe{tY]y*T?yךe9Zu5',ŋjޝOo\-KͶ*Oo{8%aNI!g+8\Pݩ$uڼ?Deǻ49Me10&4y ˕zUY,W?wžeqTw2Rd{JD*3IuCLŔQS +A+w1\l5 sA|Nb8UKu<-χ#< +0"F4g3"rBiE
{{ja@jA:i#?oO2G:"
<HFs"s|NfN<56<^QܟEX1>5cJH,hlRXbV`wjJeL$!
2hh%N/^r»}d|7LxG1bVBP4"_qՏEye)SQ"tz*MЩ\60;G0zMzk殉fV[hIXg3ח\R%нimתZtod>"a=ʁÏYp$bJqC<šy}Y2h,H.\wYXUquقBQ:͵S%P*eG~?̍#
G<Z͛
zUp0gFKf_ڭw *L fǥ7ۆr=Ftp~[f8]O <̌[+oxz*M),|8ӏAg<&Q͓YrceEj2Oc"JM9BsqUU 8nl'ZT: +Tu*C +;uocs|G4QC+|9)"ZrN,*1vY}K$:<|h5yf<5ZM֝N9U](ʜ07Nh"^*Ij|jg^bģcVlWeN^I~H}{?Zn"݉VpCjcE~D,RhR$bVP"<mhU%\Tۑ돀YQGsQ1b=qM<ybgT!BXTqve*rqݭ/hKpW8DJLDFz0Y +!U.
koFT:mLxݪ}l6R[Y1U02QUn +pP|qu endobj -254 0 obj << +262 0 obj << /Type /Page -/Contents 255 0 R -/Resources 253 0 R +/Contents 263 0 R +/Resources 261 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R -/Annots [ 260 0 R 261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R 267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R 279 0 R 280 0 R 281 0 R ] +/Parent 218 0 R +/Annots [ 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R 279 0 R 280 0 R 281 0 R 282 0 R 283 0 R 284 0 R 285 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R ] >> endobj -260 0 obj << +268 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 756.786 177.5405 767.3144] /Subtype /Link /A << /S /GoTo /D (chapter.3) >> >> endobj -261 0 obj << +269 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 738.8587 216.6336 749.2347] /Subtype /Link /A << /S /GoTo /D (section.3.1) >> >> endobj -262 0 obj << +270 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 720.9315 215.4148 731.3075] /Subtype /Link /A << /S /GoTo /D (subsection.3.1.1) >> >> endobj -263 0 obj << +271 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 703.1119 190.4974 713.3802] /Subtype /Link /A << /S /GoTo /D (subsection.3.1.2) >> >> endobj -264 0 obj << +272 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 685.077 151.3326 695.453] /Subtype /Link /A << /S /GoTo /D (section.3.2) >> >> endobj -265 0 obj << +273 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 667.1498 265.653 677.5258] /Subtype /Link /A << /S /GoTo /D (subsection.3.2.1) >> >> endobj -266 0 obj << +274 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 649.2225 308.7178 659.5985] /Subtype /Link /A << /S /GoTo /D (subsection.3.2.2) >> >> endobj -267 0 obj << +275 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 631.2953 334.173 641.8776] /Subtype /Link /A << /S /GoTo /D (section.3.3) >> >> endobj -268 0 obj << +276 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 615.1793 199.5985 623.7441] /Subtype /Link /A << /S /GoTo /D (subsection.3.3.1) >> >> endobj -269 0 obj << +277 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 595.4408 336.6387 606.0231] /Subtype /Link /A << /S /GoTo /D (subsection.3.3.2) >> >> endobj -270 0 obj << +278 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 579.3248 149.1627 587.8896] /Subtype /Link /A << /S /GoTo /D (section.3.4) >> >> endobj -271 0 obj << +279 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 561.3976 275.6593 569.9624] /Subtype /Link /A << /S /GoTo /D (subsection.3.4.1) >> >> endobj -272 0 obj << +280 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 541.6591 301.5626 552.0351] /Subtype /Link /A << /S /GoTo /D (subsection.3.4.2) >> >> endobj -273 0 obj << +281 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 523.7319 327.3494 534.3141] /Subtype /Link /A << /S /GoTo /D (subsection.3.4.3) >> >> endobj -274 0 obj << +282 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 505.8046 253.8798 516.3869] /Subtype /Link /A << /S /GoTo /D (section.3.5) >> >> endobj -275 0 obj << +283 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [86.8628 487.8774 319.4854 498.4597] +/Rect [107.4855 489.6886 199.5985 498.2534] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.1) >> +>> endobj +284 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [107.4855 469.9502 273.8479 480.3262] +/Subtype /Link +/A << /S /GoTo /D (subsection.3.5.2) >> +>> endobj +285 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [86.8628 452.0229 319.4854 462.6052] /Subtype /Link /A << /S /GoTo /D (section.3.6) >> >> endobj -276 0 obj << +286 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [86.8628 469.9502 330.353 480.5324] +/Rect [86.8628 434.0957 330.353 444.678] /Subtype /Link /A << /S /GoTo /D (section.3.7) >> >> endobj -277 0 obj << +287 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [86.8628 452.0229 199.1048 462.399] +/Rect [86.8628 416.1685 199.1048 426.5445] /Subtype /Link /A << /S /GoTo /D (section.3.8) >> >> endobj -278 0 obj << +288 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [86.8628 434.0957 203.8034 444.4717] +/Rect [86.8628 398.2412 203.8034 408.6173] /Subtype /Link /A << /S /GoTo /D (section.3.9) >> >> endobj -279 0 obj << +289 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [73.4132 409.0851 125.6888 417.7306] +/Rect [73.4132 373.2306 125.6888 381.8761] /Subtype /Link /A << /S /GoTo /D (chapter.4) >> >> endobj -280 0 obj << +290 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [73.4132 380.4475 132.3418 390.6442] +/Rect [73.4132 344.593 132.3418 354.7897] /Subtype /Link /A << /S /GoTo /D (appendix.A) >> >> endobj -281 0 obj << +291 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [73.4132 355.2979 174.1512 363.9433] +/Rect [73.4132 319.4434 174.1512 328.0889] /Subtype /Link /A << /S /GoTo /D (appendix.B) >> >> endobj -256 0 obj << -/D [254 0 R /XYZ 74.4095 793.4011 null] +264 0 obj << +/D [262 0 R /XYZ 74.4095 793.4011 null] >> endobj -253 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> +261 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -284 0 obj << +294 0 obj << /Length 2387 /Filter /FlateDecode >> @@ -943,336 +972,338 @@ i]hj.(ɒ^-ɧ&JR^guE3s!-IBej 2&J j <x<
8:9`)ۘߡc401U$-35pz*k8tendstream endobj -283 0 obj << +293 0 obj << /Type /Page -/Contents 284 0 R -/Resources 282 0 R +/Contents 294 0 R +/Resources 292 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R -/Annots [ 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R 292 0 R 293 0 R 294 0 R 295 0 R 296 0 R 297 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R 304 0 R 305 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R 313 0 R ] +/Parent 218 0 R +/Annots [ 297 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R 304 0 R 305 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R 313 0 R 314 0 R 315 0 R 316 0 R 317 0 R 318 0 R 319 0 R 320 0 R 321 0 R 322 0 R 323 0 R ] >> endobj -287 0 obj << +297 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 614.0499 190.237 622.821] /Subtype /Link /A << /S /GoTo /D (figure.1.1) >> >> endobj -288 0 obj << +298 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 596.1014 203.516 604.8725] /Subtype /Link /A << /S /GoTo /D (figure.1.2) >> >> endobj -289 0 obj << +299 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 568.1903 265.2216 576.9613] /Subtype /Link /A << /S /GoTo /D (figure.2.1) >> >> endobj -290 0 obj << +300 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 550.3225 155.8157 558.8066] /Subtype /Link /A << /S /GoTo /D (figure.2.2) >> >> endobj -291 0 obj << +301 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 532.2933 194.1104 541.0644] /Subtype /Link /A << /S /GoTo /D (figure.2.3) >> >> endobj -292 0 obj << +302 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 514.3448 234.6025 522.9096] /Subtype /Link /A << /S /GoTo /D (figure.2.4) >> >> endobj -293 0 obj << +303 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 494.5851 323.1705 505.1674] /Subtype /Link /A << /S /GoTo /D (figure.2.5) >> >> endobj -294 0 obj << +304 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 478.4479 254.9919 487.2189] /Subtype /Link /A << /S /GoTo /D (figure.2.6) >> >> endobj -295 0 obj << +305 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 458.6881 257.9592 469.2704] /Subtype /Link /A << /S /GoTo /D (figure.2.7) >> >> endobj -296 0 obj << +306 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 440.7397 318.4276 451.1157] /Subtype /Link /A << /S /GoTo /D (figure.2.8) >> >> endobj -297 0 obj << +307 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 422.7912 237.633 433.3734] /Subtype /Link /A << /S /GoTo /D (figure.2.9) >> >> endobj -298 0 obj << +308 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 404.8427 174.9945 415.4249] /Subtype /Link /A << /S /GoTo /D (figure.2.10) >> >> endobj -299 0 obj << +309 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 387.0018 241.7841 397.4764] /Subtype /Link /A << /S /GoTo /D (figure.2.11) >> >> endobj -300 0 obj << +310 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 369.0533 233.9117 379.528] /Subtype /Link /A << /S /GoTo /D (figure.2.12) >> >> endobj -301 0 obj << +311 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 350.9972 289.0185 361.5795] /Subtype /Link /A << /S /GoTo /D (figure.2.13) >> >> endobj -302 0 obj << +312 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 333.0487 319.2616 343.631] /Subtype /Link /A << /S /GoTo /D (figure.2.14) >> >> endobj -303 0 obj << +313 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 315.1002 206.5199 325.4762] /Subtype /Link /A << /S /GoTo /D (figure.2.15) >> >> endobj -304 0 obj << +314 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 297.1517 239.1211 307.734] /Subtype /Link /A << /S /GoTo /D (figure.2.16) >> >> endobj -305 0 obj << +315 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 281.0145 205.4709 289.5792] /Subtype /Link /A << /S /GoTo /D (figure.2.17) >> >> endobj -306 0 obj << +316 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 261.2547 284.5622 271.837] /Subtype /Link /A << /S /GoTo /D (figure.2.18) >> >> endobj -307 0 obj << +317 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 243.3063 357.9149 253.8885] /Subtype /Link /A << /S /GoTo /D (figure.2.19) >> >> endobj -308 0 obj << +318 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 225.3578 332.8902 235.94] /Subtype /Link /A << /S /GoTo /D (figure.2.20) >> >> endobj -309 0 obj << +319 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 209.2205 244.8239 217.9915] /Subtype /Link /A << /S /GoTo /D (figure.2.21) >> >> endobj -310 0 obj << +320 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 191.272 250.7058 200.0431] /Subtype /Link /A << /S /GoTo /D (figure.2.22) >> >> endobj -311 0 obj << +321 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 173.3235 225.385 181.8883] /Subtype /Link /A << /S /GoTo /D (figure.2.23) >> >> endobj -312 0 obj << +322 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 155.375 235.6693 163.9398] /Subtype /Link /A << /S /GoTo /D (figure.2.24) >> >> endobj -313 0 obj << +323 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 135.723 187.9328 145.9913] /Subtype /Link /A << /S /GoTo /D (figure.2.25) >> >> endobj -285 0 obj << -/D [283 0 R /XYZ 74.4095 793.4011 null] +295 0 obj << +/D [293 0 R /XYZ 74.4095 793.4011 null] >> endobj -286 0 obj << -/D [283 0 R /XYZ 74.4095 639.0049 null] +296 0 obj << +/D [293 0 R /XYZ 74.4095 639.0049 null] >> endobj -282 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> +292 0 obj << +/Font << /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -343 0 obj << -/Length 1360 +353 0 obj << +/Length 1357 /Filter /FlateDecode >> stream -xKoF<ؠKЃl3=\I.|\j0|m
oG]+$:U'~sCGxu`|f%NkYܾ/kONo-~+]្ET2x?lC7?j/M -A(5X
yk!?kUQrzriEjT0c%U䤨$ im>?~}C@e&tO5+GzBxY֛tYձm%7V{^\m6vX%ךhuqJ&A3 N94g9kQh5:u/jL@F&GAX#WRccSDZ8xWiWeYg8YM͌#TAzA{FOp<X9U;
pyFR=0N$sWN\pD
0'E|F>Azk45ux 0\24u0P -RxGSjMVv)00d52I{A, =5 k\[#7_4#9~2yLТcc"Jxh#jw#omm_δwFj-:}W|dzkT?4,'g;ݡ +xKoF<ؠKЃl3=\I.|\j0|e
oG]+$:U'~sCGu`|f%NkYܾ/kONo-~+]្ET2x?lC7?j/M +A(5X
yk!?kUQrzriEjT0c%U䤨$ im>{w/?M!D rVݕ̣E=!q<X]dpM:\z,Xn\`m6U{WoE;kMԺ8%۠CS'㜿r浊(Dzj TyNֺL& #pQ Gŏm)b +&;RЅǃ7?
Qa%*.]V'Nꨜѵ&sq^b.LhAj:kJK"!uݾj=֛*f%+YĉLȟ9E +a&6&x6*x;?Qguz SyoV_ +Z6i6/E\g; 5j>+>2DEXFUI5Xg:eʼnfalhwh8}Ӝj)TEݧnl.uuRDRLWhT9khkQ7ez*jH9[ \tVyg_..@?b?ҝߕCjLDF|YɿS)*PiYy(qf}N4&tD4*tmh,HK-1LFn*ufiGFx>`k?DVendstream endobj -342 0 obj << +352 0 obj << /Type /Page -/Contents 343 0 R -/Resources 341 0 R +/Contents 353 0 R +/Resources 351 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 359 0 R -/Annots [ 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R 356 0 R 357 0 R 358 0 R ] +/Parent 369 0 R +/Annots [ 355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R ] >> endobj -345 0 obj << +355 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 756.8936 179.8813 767.1619] /Subtype /Link /A << /S /GoTo /D (figure.2.26) >> >> endobj -346 0 obj << +356 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 738.8587 267.6428 749.441] /Subtype /Link /A << /S /GoTo /D (figure.2.27) >> >> endobj -347 0 obj << +357 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 711.0765 172.9861 721.5511] /Subtype /Link /A << /S /GoTo /D (figure.3.1) >> >> endobj -348 0 obj << +358 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 693.1492 202.2519 703.6238] /Subtype /Link /A << /S /GoTo /D (figure.3.2) >> >> endobj -349 0 obj << +359 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 676.9256 233.9432 685.4904] /Subtype /Link /A << /S /GoTo /D (figure.3.3) >> >> endobj -350 0 obj << +360 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 658.9983 189.7217 667.5631] /Subtype /Link /A << /S /GoTo /D (figure.3.4) >> >> endobj -351 0 obj << +361 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 641.0711 170.4263 649.6359] /Subtype /Link /A << /S /GoTo /D (figure.3.5) >> >> endobj -352 0 obj << +362 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 621.4403 254.8524 631.7087] /Subtype /Link /A << /S /GoTo /D (figure.3.6) >> >> endobj -353 0 obj << +363 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 605.2166 249.4056 613.7814] /Subtype /Link /A << /S /GoTo /D (figure.3.7) >> >> endobj -354 0 obj << +364 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 587.2894 190.0803 595.8542] /Subtype /Link /A << /S /GoTo /D (figure.3.8) >> >> endobj -355 0 obj << +365 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 569.3622 296.1243 577.927] /Subtype /Link /A << /S /GoTo /D (figure.3.9) >> >> endobj -356 0 obj << +366 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 549.6237 202.4313 560.206] /Subtype /Link /A << /S /GoTo /D (figure.3.10) >> >> endobj -357 0 obj << +367 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 533.5077 168.9961 542.0725] /Subtype /Link /A << /S /GoTo /D (figure.3.11) >> >> endobj -358 0 obj << +368 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 513.8769 195.644 524.1452] /Subtype /Link /A << /S /GoTo /D (figure.3.12) >> >> endobj -344 0 obj << -/D [342 0 R /XYZ 74.4095 793.4011 null] +354 0 obj << +/D [352 0 R /XYZ 74.4095 793.4011 null] >> endobj -341 0 obj << -/Font << /F61 259 0 R /F28 209 0 R >> +351 0 obj << +/Font << /F61 267 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -376 0 obj << +386 0 obj << /Length 1851 /Filter /FlateDecode >> @@ -1291,158 +1322,158 @@ U2ɢL`?Et(*mv`۱Q-Nv4< Z f ugܟGΨ<g=;
L,S(V;ZU4oX-o݇7AjGkgTm{wY_2wZoW{ :Tea'\; {/Z[ozF.9L:vF51<S[u(~=|صloO|!,d"sZ͋:=ݬu<KXPbM[JtgwjXjco6 )u_0Ik :dA_|lendstream endobj -375 0 obj << +385 0 obj << /Type /Page -/Contents 376 0 R -/Resources 374 0 R +/Contents 386 0 R +/Resources 384 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 359 0 R -/Annots [ 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R ] +/Parent 369 0 R +/Annots [ 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R ] >> endobj -379 0 obj << +389 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 612.425 338.2165 623.0073] /Subtype /Link /A << /S /GoTo /D (table.2.1) >> >> endobj -380 0 obj << +390 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 594.4978 298.9616 605.0801] /Subtype /Link /A << /S /GoTo /D (table.2.2) >> >> endobj -381 0 obj << +391 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 576.5706 180.2935 586.9466] /Subtype /Link /A << /S /GoTo /D (table.2.3) >> >> endobj -382 0 obj << +392 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 558.6433 257.1971 569.0193] /Subtype /Link /A << /S /GoTo /D (table.2.4) >> >> endobj -383 0 obj << +393 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 540.7161 289.7984 551.2984] /Subtype /Link /A << /S /GoTo /D (table.2.5) >> >> endobj -384 0 obj << +394 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 522.7889 256.1481 533.1649] /Subtype /Link /A << /S /GoTo /D (table.2.6) >> >> endobj -385 0 obj << +395 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 504.8616 335.2394 515.4439] /Subtype /Link /A << /S /GoTo /D (table.2.7) >> >> endobj -386 0 obj << +396 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 486.9344 406.6109 497.5167] /Subtype /Link /A << /S /GoTo /D (table.2.8) >> >> endobj -387 0 obj << +397 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 469.0072 319.7369 479.3832] /Subtype /Link /A << /S /GoTo /D (table.2.9) >> >> endobj -388 0 obj << +398 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 451.0799 295.5011 461.6622] /Subtype /Link /A << /S /GoTo /D (table.2.10) >> >> endobj -389 0 obj << +399 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 433.1527 301.3831 443.735] /Subtype /Link /A << /S /GoTo /D (table.2.11) >> >> endobj -390 0 obj << +400 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 415.2255 371.7415 425.8077] /Subtype /Link /A << /S /GoTo /D (table.2.12) >> >> endobj -391 0 obj << +401 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 397.2982 385.1908 407.8805] /Subtype /Link /A << /S /GoTo /D (table.2.13) >> >> endobj -392 0 obj << +402 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 379.371 276.0623 389.747] /Subtype /Link /A << /S /GoTo /D (table.2.14) >> >> endobj -393 0 obj << +403 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 361.4438 286.3466 371.8198] /Subtype /Link /A << /S /GoTo /D (table.2.15) >> >> endobj -394 0 obj << +404 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 343.5165 356.705 353.8925] /Subtype /Link /A << /S /GoTo /D (table.2.16) >> >> endobj -395 0 obj << +405 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 325.5893 370.1543 336.1716] /Subtype /Link /A << /S /GoTo /D (table.2.17) >> >> endobj -396 0 obj << +406 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 299.5107 177.8368 308.0754] /Subtype /Link /A << /S /GoTo /D (table.3.1) >> >> endobj -397 0 obj << +407 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 281.5834 345.4789 290.3545] /Subtype /Link /A << /S /GoTo /D (table.3.2) >> >> endobj -377 0 obj << -/D [375 0 R /XYZ 74.4095 793.4011 null] +387 0 obj << +/D [385 0 R /XYZ 74.4095 793.4011 null] >> endobj -378 0 obj << -/D [375 0 R /XYZ 74.4095 643.0739 null] +388 0 obj << +/D [385 0 R /XYZ 74.4095 643.0739 null] >> endobj -374 0 obj << -/Font << /F26 206 0 R /F28 209 0 R /F61 259 0 R >> +384 0 obj << +/Font << /F26 214 0 R /F28 217 0 R /F61 267 0 R >> /ProcSet [ /PDF /Text ] >> endobj -419 0 obj << +429 0 obj << /Length 1758 /Filter /FlateDecode >> @@ -1457,35 +1488,35 @@ D|R]7yЎŋ"J,Z4,v2YZ)+EJyC".Ce /2|ʾGbڠ%"6c]+B?'5y{ K4<9s2GNBr{,KqY3R 3_kܸiʵ\yO`6zKiW QبנS2<'G3s96lΕcM|mekYsi,NC{jTI>H;Wqn5chk/}o이 endobj -418 0 obj << +428 0 obj << /Type /Page -/Contents 419 0 R -/Resources 417 0 R +/Contents 429 0 R +/Resources 427 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 359 0 R -/Annots [ 421 0 R ] +/Parent 369 0 R +/Annots [ 431 0 R ] >> endobj -421 0 obj << +431 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [75.9058 417.1708 102.2418 425.7356] /Subtype /Link /A << /S /GoTo /D (cite.Tanenbaum) >> >> endobj -420 0 obj << -/D [418 0 R /XYZ 74.4095 793.4011 null] +430 0 obj << +/D [428 0 R /XYZ 74.4095 793.4011 null] >> endobj 6 0 obj << -/D [418 0 R /XYZ 74.4095 771.7323 null] +/D [428 0 R /XYZ 74.4095 771.7323 null] >> endobj 10 0 obj << -/D [418 0 R /XYZ 74.4095 570.9064 null] +/D [428 0 R /XYZ 74.4095 570.9064 null] >> endobj -417 0 obj << -/Font << /F26 206 0 R /F28 209 0 R /F61 259 0 R >> +427 0 obj << +/Font << /F26 214 0 R /F28 217 0 R /F61 267 0 R >> /ProcSet [ /PDF /Text ] >> endobj -427 0 obj << +437 0 obj << /Length 1854 /Filter /FlateDecode >> @@ -1498,30 +1529,30 @@ cu>Nfk yK0<]6|z<s0c 17݇#rX$v; {*06UMvG}0=ϧz琹ӿuJh3)C@j RӔg:pKr+ʌW={&_ٽ#}1mGD9$= 0:T9s_S/lkYVim*+(3ZZp7M@4Io)4k蒾2B[Ǯ1b9k
%zdC1D6bOS&6βRQ
Ky ?lnf2Uu < endobj -426 0 obj << +436 0 obj << /Type /Page -/Contents 427 0 R -/Resources 425 0 R +/Contents 437 0 R +/Resources 435 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 359 0 R -/Annots [ 430 0 R ] +/Parent 369 0 R +/Annots [ 440 0 R ] >> endobj -423 0 obj << +433 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/client-server.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 433 0 R +/PTEX.InfoDict 443 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 382.00000000 112.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 434 0 R ->>/Font << /R8 435 0 R >> +/R7 444 0 R +>>/Font << /R8 445 0 R >> >> -/Length 436 0 R +/Length 446 0 R /Filter /FlateDecode >> stream @@ -1529,60 +1560,60 @@ xTn0+xl{p%RE[$F/A,E"N~Ejx0"g槮Ӣ>yTFc5P (C!R;}tI6<o}/[˿w?K\2x
, endobj -433 0 obj +443 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212342Z00'00') -/ModDate (D:20080809212342Z00'00') +/CreationDate (D:20080809222040Z00'00') +/ModDate (D:20080809222040Z00'00') >> endobj -434 0 obj +444 0 obj << /Type /ExtGState /OPM 1 >> endobj -435 0 obj +445 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -436 0 obj +446 0 obj 452 endobj -430 0 obj << +440 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [439.9225 458.2842 454.378 468.8664] /Subtype /Link /A << /S /GoTo /D (figure.1.1) >> >> endobj -428 0 obj << -/D [426 0 R /XYZ 74.4095 793.4011 null] +438 0 obj << +/D [436 0 R /XYZ 74.4095 793.4011 null] >> endobj 14 0 obj << -/D [426 0 R /XYZ 74.4095 771.7323 null] +/D [436 0 R /XYZ 74.4095 771.7323 null] >> endobj -429 0 obj << -/D [426 0 R /XYZ 74.4095 659.2541 null] +439 0 obj << +/D [436 0 R /XYZ 74.4095 659.2541 null] >> endobj -314 0 obj << -/D [426 0 R /XYZ 288.3666 523.6815 null] +324 0 obj << +/D [436 0 R /XYZ 288.3666 523.6815 null] >> endobj -431 0 obj << -/D [426 0 R /XYZ 74.4095 396.6881 null] +441 0 obj << +/D [436 0 R /XYZ 74.4095 396.6881 null] >> endobj -432 0 obj << -/D [426 0 R /XYZ 74.4095 235.3536 null] +442 0 obj << +/D [436 0 R /XYZ 74.4095 235.3536 null] >> endobj -425 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im2 423 0 R >> +435 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im2 433 0 R >> /ProcSet [ /PDF /Text ] >> endobj -439 0 obj << +449 0 obj << /Length 1352 /Filter /FlateDecode >> @@ -1596,29 +1627,29 @@ UԂWM鎞xT5bOOPCRraLsu:KȠ§Jpto #c-ݻЩ ҂φ0ΗX;$q!Lq˝2:϶:*se)])ZLAқLPR$}ɒ')@7Xo{I<gpN6DϾf8ow믃~lhY2 3YdTz0O>%/ Ova &/3kl ,M F[~7)_3ㅏR2v'Jg}#)aendstream endobj -438 0 obj << +448 0 obj << /Type /Page -/Contents 439 0 R -/Resources 437 0 R +/Contents 449 0 R +/Resources 447 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 359 0 R +/Parent 369 0 R >> endobj -424 0 obj << +434 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/client-server-protokolle.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 442 0 R +/PTEX.InfoDict 452 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 376.00000000 320.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 443 0 R ->>/Font << /R8 444 0 R >> +/R7 453 0 R +>>/Font << /R8 454 0 R >> >> -/Length 445 0 R +/Length 455 0 R /Filter /FlateDecode >> stream @@ -1628,44 +1659,44 @@ xMo0<;l"îkP6AbGJGb:,P/E
'+Oz?}
l YLa- 7pD7[: B|jZ%Tp'endstream endobj -442 0 obj +452 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212341Z00'00') -/ModDate (D:20080809212341Z00'00') +/CreationDate (D:20080809222040Z00'00') +/ModDate (D:20080809222040Z00'00') >> endobj -443 0 obj +453 0 obj << /Type /ExtGState /OPM 1 >> endobj -444 0 obj +454 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -445 0 obj +455 0 obj 499 endobj -440 0 obj << -/D [438 0 R /XYZ 74.4095 793.4011 null] +450 0 obj << +/D [448 0 R /XYZ 74.4095 793.4011 null] >> endobj -441 0 obj << -/D [438 0 R /XYZ 74.4095 750.3359 null] +451 0 obj << +/D [448 0 R /XYZ 74.4095 750.3359 null] >> endobj -315 0 obj << -/D [438 0 R /XYZ 281.7271 358.4221 null] +325 0 obj << +/D [448 0 R /XYZ 281.7271 358.4221 null] >> endobj -437 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im3 424 0 R >> +447 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im3 434 0 R >> /ProcSet [ /PDF /Text ] >> endobj -448 0 obj << +458 0 obj << /Length 1762 /Filter /FlateDecode >> @@ -1677,35 +1708,35 @@ xڍn8ޯQbV$%J:&tw[`hrdY˴GwCɒ%7Eh839//B$bQŋ$ CG1zPI.A 0 endobj -447 0 obj << +457 0 obj << /Type /Page -/Contents 448 0 R -/Resources 446 0 R +/Contents 458 0 R +/Resources 456 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 359 0 R -/Annots [ 452 0 R ] +/Parent 369 0 R +/Annots [ 462 0 R ] >> endobj -452 0 obj << +462 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [126.1829 465.5316 140.6385 476.1138] /Subtype /Link /A << /S /GoTo /D (figure.1.2) >> >> endobj -449 0 obj << -/D [447 0 R /XYZ 74.4095 793.4011 null] +459 0 obj << +/D [457 0 R /XYZ 74.4095 793.4011 null] >> endobj -450 0 obj << -/D [447 0 R /XYZ 74.4095 750.7482 null] +460 0 obj << +/D [457 0 R /XYZ 74.4095 750.7482 null] >> endobj -451 0 obj << -/D [447 0 R /XYZ 74.4095 608.3473 null] +461 0 obj << +/D [457 0 R /XYZ 74.4095 608.3473 null] >> endobj -446 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> +456 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -456 0 obj << +466 0 obj << /Length 1160 /Filter /FlateDecode >> @@ -1715,15 +1746,15 @@ xڭWKs6WH͔0ޏⱝI:m%ʁ6!)E9"Uw iJ鴣 l0.JRCvF';%ZhS.ʳµRX+ﱬ}+J"+2pamlhUOH~ kZ((i;GK9e/)-!I!3NlA%0F>*7*!LM|jSv[y r.`+tNq k9Wiy,!88bPq."C_x=(.@>~*<30l7T[%=eghFVCcgzCuIHLiXU|YC.S#K+i;?U&o} D7悝˅pPM.z72AnD)1pujR._k~ǃP+&
O97+T!6y<$u"omY崀tSF`OkDwrL}W]>H?٢1|EP<m`'|#jRUq oF=t|O,:`3P9F0=I$ :t-/b|.r _Mq'X45_wP0,#qqa$rڿ/_/N;6?6_[J0<sJ/1x@ks^6qUqx?Cendstream endobj -455 0 obj << +465 0 obj << /Type /Page -/Contents 456 0 R -/Resources 454 0 R +/Contents 466 0 R +/Resources 464 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 461 0 R -/Annots [ 458 0 R 459 0 R 460 0 R ] +/Parent 471 0 R +/Annots [ 468 0 R 469 0 R 470 0 R ] >> endobj -453 0 obj << +463 0 obj << /Type /XObject /Subtype /Image /Width 1024 @@ -1745,45 +1776,45 @@ pz폎6?
t?y#rϲP{@Z PZ8 endobj -458 0 obj << +468 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 189.397 87.8688 199.9793] /Subtype /Link /A << /S /GoTo /D (figure.2.1) >> >> endobj -459 0 obj << +469 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [389.0928 189.397 403.5483 199.9793] /Subtype /Link /A << /S /GoTo /D (figure.2.2) >> >> endobj -460 0 obj << +470 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [300.1067 135.6153 314.5622 146.1976] /Subtype /Link /A << /S /GoTo /D (figure.2.3) >> >> endobj -457 0 obj << -/D [455 0 R /XYZ 74.4095 793.4011 null] +467 0 obj << +/D [465 0 R /XYZ 74.4095 793.4011 null] >> endobj 18 0 obj << -/D [455 0 R /XYZ 74.4095 771.7323 null] +/D [465 0 R /XYZ 74.4095 771.7323 null] >> endobj 22 0 obj << -/D [455 0 R /XYZ 74.4095 581.9662 null] +/D [465 0 R /XYZ 74.4095 581.9662 null] >> endobj -316 0 obj << -/D [455 0 R /XYZ 250.8743 253.9309 null] +326 0 obj << +/D [465 0 R /XYZ 250.8743 253.9309 null] >> endobj -454 0 obj << -/Font << /F26 206 0 R /F28 209 0 R /F61 259 0 R >> -/XObject << /Im4 453 0 R >> +464 0 obj << +/Font << /F26 214 0 R /F28 217 0 R /F61 267 0 R >> +/XObject << /Im4 463 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -467 0 obj << +477 0 obj << /Length 1704 /Filter /FlateDecode >> @@ -1796,15 +1827,15 @@ gGK_7p 6"T(PMoWȂw1}
0b[wZ*4J<A 6d p1nD*},f#վCJw]Xl-hpvG =wa7n2zc6h٘"OiĬ{v\WWO[lp:
i{Lxܘl|NTtloG2qcCK$?~i2Cf㮣K>%<!E:g=ݴMOd&?17bkjO
cFaxxg/B+wxBY\9xKo] &<o~uYL9i&~Z4V)B$zADendstream endobj -466 0 obj << +476 0 obj << /Type /Page -/Contents 467 0 R -/Resources 465 0 R +/Contents 477 0 R +/Resources 475 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 461 0 R -/Annots [ 470 0 R 472 0 R ] +/Parent 471 0 R +/Annots [ 480 0 R 482 0 R ] >> endobj -462 0 obj << +472 0 obj << /Type /XObject /Subtype /Image /Width 234 @@ -1843,38 +1874,38 @@ ze+*zq& 3~qsPV"v|r9ʠus1W>M/..N]"nN# TzZz`QE^^^RRRH/EzI/EzWl֬Y˗/WFF:wqyK'snڰaٳ.]*_5bwhhhh͚5p7nT
sNl߮oِ)jطo [۷ ;;;Uz"ndAhY\Ct-7T Ezvޝ"竮fm2.+Hw"_.Qk3Cd+K~@P
>OsL':TYT EzĽxXBW.QYf:ٗ.]Zds=W]]t%(K^K^K^"
/LLL*Dz)KQH/Ez)R(K^"Ez)KQH/E^R(K^K^"Ez)KQH/E^R(K^"5}#endstream endobj -470 0 obj << +480 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [183.9175 721.5786 198.3731 732.1608] /Subtype /Link /A << /S /GoTo /D (figure.2.2) >> >> endobj -472 0 obj << +482 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [323.2532 153.5425 337.7088 164.1248] /Subtype /Link /A << /S /GoTo /D (figure.2.4) >> >> endobj -468 0 obj << -/D [466 0 R /XYZ 74.4095 793.4011 null] +478 0 obj << +/D [476 0 R /XYZ 74.4095 793.4011 null] >> endobj -469 0 obj << -/D [466 0 R /XYZ 74.4095 752.2837 null] +479 0 obj << +/D [476 0 R /XYZ 74.4095 752.2837 null] >> endobj -317 0 obj << -/D [466 0 R /XYZ 305.5773 401.9113 null] +327 0 obj << +/D [476 0 R /XYZ 305.5773 401.9113 null] >> endobj -471 0 obj << -/D [466 0 R /XYZ 74.4095 184.2476 null] +481 0 obj << +/D [476 0 R /XYZ 74.4095 184.2476 null] >> endobj -465 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im5 462 0 R >> +475 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im5 472 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -475 0 obj << +485 0 obj << /Length 1085 /Filter /FlateDecode >> @@ -1884,14 +1915,14 @@ xڭWn6}WQ*}jSh:/#DgliRX4C(K{eQJ-h 6&\$ΒfiG3&0&=gyXݜ?o]m|_Тxى@o1kډJZLҁ&xO^U:Fv,.HzuYdP[(09]{@ )eM2vӈ{eZ,H[dλ,ݧa4-Ц`۩Pja_Ӕn$ \:muf[䭍w764'n=7k'{ %F1&bA5
fip>8+jFUf-&ԭd\K@]em ?koLAYfs^3 =]R?S*Dm͒p5Sdm%UJe
jan
X
6Ce
qS _i!YNw19-pE3#7O~yS8QQl۴|B١&CI.ʅ/lnW QWA(?<1pDQ-g!7cI|5;xX\&qZ]kŬmN 9=gMzk8=5րt71 KQq=2si!ܖaR3_ endobj -474 0 obj << +484 0 obj << /Type /Page -/Contents 475 0 R -/Resources 473 0 R +/Contents 485 0 R +/Resources 483 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 461 0 R +/Parent 471 0 R >> endobj -463 0 obj << +473 0 obj << /Type /XObject /Subtype /Image /Width 1024 @@ -1963,7 +1994,7 @@ Oo9/s\2~pkJ(%[۷ʒ%KG?q<L no?~|РAeرc<o q^/jY skg-vfz=Eu^||ڿ]1r'o/43-NS%$ endobj -464 0 obj << +474 0 obj << /Type /XObject /Subtype /Image /Width 180 @@ -1991,21 +2022,21 @@ SȈoD\`tZǓ!:#tcoheX+X ٘Zl7Z%lL-6Z!7,7>L")dcjb,>߰ߞ{و|t9T,t)T(«8 endobj -476 0 obj << -/D [474 0 R /XYZ 74.4095 793.4011 null] +486 0 obj << +/D [484 0 R /XYZ 74.4095 793.4011 null] >> endobj -318 0 obj << -/D [474 0 R /XYZ 286.4299 503.2659 null] +328 0 obj << +/D [484 0 R /XYZ 286.4299 503.2659 null] >> endobj -319 0 obj << -/D [474 0 R /XYZ 266.1839 382.6614 null] +329 0 obj << +/D [484 0 R /XYZ 266.1839 382.6614 null] >> endobj -473 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F35 221 0 R >> -/XObject << /Im6 463 0 R /Im7 464 0 R >> +483 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F35 229 0 R >> +/XObject << /Im6 473 0 R /Im7 474 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -481 0 obj << +491 0 obj << /Length 1296 /Filter /FlateDecode >> @@ -2019,15 +2050,15 @@ xڭWYoF~ׯ#9p[$m$6z$%h2,wIQ
XٹwI0Dqı2B' jq\ԯMz1EF T Ra:*@UrD|S
`7:ur5HX WbLנNX|,[m&qi`9WɈ{U>aV?R~0"ς endobj -480 0 obj << +490 0 obj << /Type /Page -/Contents 481 0 R -/Resources 479 0 R +/Contents 491 0 R +/Resources 489 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 461 0 R -/Annots [ 484 0 R ] +/Parent 471 0 R +/Annots [ 494 0 R ] >> endobj -477 0 obj << +487 0 obj << /Type /XObject /Subtype /Image /Width 586 @@ -2042,7 +2073,7 @@ xvQQt՝ɢA(`tϺ?;d>YzϚ29k33Yܴ9^C_+nZ 7-XW [r7g7U~Zz?ކ[1gbǗsI9ۮ㥧
'&7Wjo_E3/jcOL˺=.cuQ1]uUKc-usg1uzJݦY,Ց;[aaX,uV7bX,usX,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,RFu[c5Y,5Mݾ8;b-n"n`{M[bX6Jݎ_гsX,KݞvVyn,Śn{QRv"aX,u˯kbXm=
vb[BQDnbX]Vyn,Śnů\X,kvcX,(uܼqncLsncM1ƨ1ӷnߞ{&1Ƙ.uLX,kXNX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,ݯbXiյ9,nu[vqkwRQv҅bXkcucX,|u[bX,U3qvb[~>^S7b=ngnsX,KJZ)~fݬ&b2V|\X,k](X,˵dX,VӺU~vncLs,mf1u1Ƙm#3u3m{&1Ƙ.uLX,kXNX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,ݯbXiյ9,nu[vqkwRQv҅bXkcucX,|u[bX,U3qvb[~>^S7b=ngnsX,KJZ)~fݬ&b2V|\X,k](X,u$b[Glww1Ƙ&sU7c1#mwW1ncLhݾҩ1Ƙ~uk6LX,k|NX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KRc5Y,5ᵛ1c1c1c1c1yg&뵙onqZL }I^9g/b[RgzK.in=3"Ǹwiøik_tZzk9{ř;[=ҧ|C;q(Uoq'GkrdBu{\d1NV3Xfpw#uBImOu蓄4J1tqUI\=0got9MO&#GĞx\瓫&}M;1?&(X}a___ˡ{֊;\݊X\ӌeB~|*y컑J{ӫnF:v[-rtUߞ<nvq%V> 3<ms֫k9h|97<ԟ:^z +|riiirh1'g\Vendstream endobj -478 0 obj << +488 0 obj << /Type /XObject /Subtype /Image /Width 310 @@ -2062,31 +2093,31 @@ B{oucC.<Q>qf32Ls"*ܺF!:mgօ6m6ig(ΉPIo M>7pm-!tۖQr06RUpuMΉ!r:9s"oh'tZ0P""Bvjx:KP^xi^ʋ/KP^xi^*P^xi^ʋ/PW/KP^x!/ x/@ oendstream endobj -484 0 obj << +494 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [151.9713 397.9679 166.4269 408.5502] /Subtype /Link /A << /S /GoTo /D (figure.2.5) >> >> endobj -482 0 obj << -/D [480 0 R /XYZ 74.4095 793.4011 null] +492 0 obj << +/D [490 0 R /XYZ 74.4095 793.4011 null] >> endobj -483 0 obj << -/D [480 0 R /XYZ 74.4095 750.7482 null] +493 0 obj << +/D [490 0 R /XYZ 74.4095 750.7482 null] >> endobj -320 0 obj << -/D [480 0 R /XYZ 221.8999 480.5224 null] +330 0 obj << +/D [490 0 R /XYZ 221.8999 480.5224 null] >> endobj -321 0 obj << -/D [480 0 R /XYZ 255.9892 182.3152 null] +331 0 obj << +/D [490 0 R /XYZ 255.9892 182.3152 null] >> endobj -479 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im8 477 0 R /Im9 478 0 R >> +489 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im8 487 0 R /Im9 488 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -487 0 obj << +497 0 obj << /Length 2254 /Filter /FlateDecode >> @@ -2097,42 +2128,42 @@ xڭYYoF~Уz& fHjS)jb~d/V`ܮN-(cDI3H2 c<mwԦg"AAC._@s|zQ*8IYAk2aŹw9Rm6P@Qg;$Z(=a0܍++DP 2PuG*;j;6HqiL
J.Y;7e¶gJ96qZO$dx6 A_K]<,t__ks<3gЛ)L6˦쟐/_*Wendstream endobj -486 0 obj << +496 0 obj << /Type /Page -/Contents 487 0 R -/Resources 485 0 R +/Contents 497 0 R +/Resources 495 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 461 0 R -/Annots [ 489 0 R 491 0 R ] +/Parent 471 0 R +/Annots [ 499 0 R 501 0 R ] >> endobj -489 0 obj << +499 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [337.1593 481.275 351.6149 491.8573] /Subtype /Link /A << /S /GoTo /D (figure.2.6) >> >> endobj -491 0 obj << +501 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [321.3617 311.8411 335.8173 322.4233] /Subtype /Link /A << /S /GoTo /D (table.2.1) >> >> endobj -488 0 obj << -/D [486 0 R /XYZ 74.4095 793.4011 null] +498 0 obj << +/D [496 0 R /XYZ 74.4095 793.4011 null] >> endobj -398 0 obj << -/D [486 0 R /XYZ 208.6475 629.4466 null] +408 0 obj << +/D [496 0 R /XYZ 208.6475 629.4466 null] >> endobj -490 0 obj << -/D [486 0 R /XYZ 74.4095 355.9148 null] +500 0 obj << +/D [496 0 R /XYZ 74.4095 355.9148 null] >> endobj -485 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> +495 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -496 0 obj << +506 0 obj << /Length 1303 /Filter /FlateDecode >> @@ -2145,15 +2176,15 @@ OU'v{_FN> fyZxC8dɹmM۫?cXU+p11[u,D e:8"Źi.dff!p
Xt!빞e*-dɺu d33y&L6(Ø||I^ؘ0DQn8c`)ƶaK p4Z1iՑ{E#l=j/g'{i-<8zNL 2PB<n<S20S
"1t̜~Bŗendstream endobj -495 0 obj << +505 0 obj << /Type /Page -/Contents 496 0 R -/Resources 494 0 R +/Contents 506 0 R +/Resources 504 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 461 0 R -/Annots [ 499 0 R ] +/Parent 471 0 R +/Annots [ 509 0 R ] >> endobj -492 0 obj << +502 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2173,7 +2204,7 @@ x݊VK9Nr4 BbHb3Mqm &Tz^>JRUZuy' sq2s2Ud0'3_y%S8|Rʱ lL2U*v-ol+b~qendstream endobj -493 0 obj << +503 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2196,31 +2227,31 @@ ArB.䢱|=cxܪ!r1N{-Zᄎ6;ۏƻ={#x aT7*r~ȍNKv-\U4^mdwEkQ+^Jrز~hZnoƖ>yk0sKgo\P_r~`E/_~`E/?zi0"ԗd00Aw
5Zյ%uZ;kkK,\ זX+-Su!w%rm22UrW"זX+-Su!w%rm 2UrW"ז䫫_HՅܕܶϒZGluCz썚\˿ܬD^ZϛQ~K\+XFsv)SՌ-{y/a.0AqMYa}ێ-ATylsTn"pqMYy}[ύvN!w6D*/۰ov9AMYfs3 -{ e/Yq~e[.Լ"3ڒZiK,|U_r~ojaee\-Z1kpf{/k
R.L0䶽Vf#ڌO^V\_neEſnq+C.ڌ%neECrIW"oV=gD|c[endstream endobj -499 0 obj << +509 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [419.3512 493.1175 433.8068 503.6997] /Subtype /Link /A << /S /GoTo /D (figure.2.7) >> >> endobj -497 0 obj << -/D [495 0 R /XYZ 74.4095 793.4011 null] +507 0 obj << +/D [505 0 R /XYZ 74.4095 793.4011 null] >> endobj -498 0 obj << -/D [495 0 R /XYZ 74.4095 752.6311 null] +508 0 obj << +/D [505 0 R /XYZ 74.4095 752.6311 null] >> endobj -322 0 obj << -/D [495 0 R /XYZ 254.5056 542.162 null] +332 0 obj << +/D [505 0 R /XYZ 254.5056 542.162 null] >> endobj -323 0 obj << -/D [495 0 R /XYZ 224.2713 182.8845 null] +333 0 obj << +/D [505 0 R /XYZ 224.2713 182.8845 null] >> endobj -494 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im10 492 0 R /Im11 493 0 R >> +504 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im10 502 0 R /Im11 503 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -504 0 obj << +514 0 obj << /Length 1764 /Filter /FlateDecode >> @@ -2235,15 +2266,15 @@ hB#bEa.j rHZH"Xc 7իe#hߎy@#I8HfÄܖ:AtE<iY}Ӎ4}[A{}<e~}!i KU`k
0u~gyk m{OuI4u8PteFr} .X\Sk<2E Fop酓ї,gm:V~f`@k endobj -503 0 obj << +513 0 obj << /Type /Page -/Contents 504 0 R -/Resources 502 0 R +/Contents 514 0 R +/Resources 512 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 509 0 R -/Annots [ 506 0 R 507 0 R 508 0 R ] +/Parent 519 0 R +/Annots [ 516 0 R 517 0 R 518 0 R ] >> endobj -500 0 obj << +510 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2271,39 +2302,39 @@ Of"WRE+<nzM0"sqk{یT־Jr٢kFms*(9zl]F|O g}(mvy^[/F !Օ\ VZ?endstream endobj -506 0 obj << +516 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [165.0658 756.7859 179.5214 767.3682] /Subtype /Link /A << /S /GoTo /D (figure.2.6) >> >> endobj -507 0 obj << +517 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [225.5754 738.8587 240.0309 749.441] /Subtype /Link /A << /S /GoTo /D (figure.2.9) >> >> endobj -508 0 obj << +518 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [335.0373 720.9315 349.4929 733.0693] /Subtype /Link /A << /S /GoTo /D (figure.2.8) >> >> endobj -505 0 obj << -/D [503 0 R /XYZ 74.4095 793.4011 null] +515 0 obj << +/D [513 0 R /XYZ 74.4095 793.4011 null] >> endobj -324 0 obj << -/D [503 0 R /XYZ 264.6686 374.7253 null] +334 0 obj << +/D [513 0 R /XYZ 264.6686 374.7253 null] >> endobj -502 0 obj << -/Font << /F61 259 0 R /F28 209 0 R >> -/XObject << /Im12 500 0 R >> +512 0 obj << +/Font << /F61 267 0 R /F28 217 0 R >> +/XObject << /Im12 510 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -513 0 obj << +523 0 obj << /Length 2365 /Filter /FlateDecode >> @@ -2320,15 +2351,15 @@ R#;E6a@ z lmA*xz7X,aqVU{FƑ#1zלV6;,q6.iC']Q?.%i1f%dP#8*ݩ$qyCn@VkO]C,]k |: {h\i4-qCJXQ nc[3k;CYXvSK3[lS3/GpUUD:y:+gΜ.h@%QP>QkaqΓ1:%&]χ܂lFO!L"#5k3T1`d]1z
E%Լv}uzU`ִ,xbI:~N'EKƷc0!ZmCw_e1ji}NXv塿ߝ5͕B+zK_I}NJu~Ƕ endobj -512 0 obj << +522 0 obj << /Type /Page -/Contents 513 0 R -/Resources 511 0 R +/Contents 523 0 R +/Resources 521 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 509 0 R -/Annots [ 516 0 R 517 0 R 518 0 R ] +/Parent 519 0 R +/Annots [ 526 0 R 527 0 R 528 0 R ] >> endobj -501 0 obj << +511 0 obj << /Type /XObject /Subtype /Image /Width 576 @@ -2350,45 +2381,45 @@ IIFɝ"9{ 6?%O !v'(/ endobj -516 0 obj << +526 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [187.2684 594.8817 201.7239 605.464] /Subtype /Link /A << /S /GoTo /D (figure.2.3) >> >> endobj -517 0 obj << +527 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [144.4782 576.9545 163.919 587.5367] /Subtype /Link /A << /S /GoTo /D (figure.2.10) >> >> endobj -518 0 obj << +528 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [491.0001 171.4698 510.4409 182.052] /Subtype /Link /A << /S /GoTo /D (figure.2.11) >> >> endobj -514 0 obj << -/D [512 0 R /XYZ 74.4095 793.4011 null] +524 0 obj << +/D [522 0 R /XYZ 74.4095 793.4011 null] >> endobj -515 0 obj << -/D [512 0 R /XYZ 74.4095 750.7482 null] +525 0 obj << +/D [522 0 R /XYZ 74.4095 750.7482 null] >> endobj -325 0 obj << -/D [512 0 R /XYZ 298.4805 642.0881 null] +335 0 obj << +/D [522 0 R /XYZ 298.4805 642.0881 null] >> endobj 26 0 obj << -/D [512 0 R /XYZ 74.4095 332.4608 null] +/D [522 0 R /XYZ 74.4095 332.4608 null] >> endobj -511 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im13 501 0 R >> +521 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im13 511 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -521 0 obj << +531 0 obj << /Length 1673 /Filter /FlateDecode >> @@ -2403,15 +2434,15 @@ xg\,FM$Q$Fʓ`JWQm˲J
N7W%}U;ETd35~
V[4Ud1Fq'. SbAdQmhs`Ǘ>P5K@aw>Gd؆LсȽ[#g4GEPeemJZ(M \7heN]_-EUh]$uI`<$Xg!&WDHAdeU5yNXoI@
":ǮWEAbbzc5ԋF˿Bat-&<5㶇XۗLvFU\TB@%-Zkۺ(LB@(KT-͞;!e1L{ 쀛~A<#4YgYZ!9^| ?lUQAf~KH?3q/xᮘ]PcxQLeD\V. &7.+:uM/WuMCGYG=pi:.rM7$0o`ۭ/UU酅[H; VX$Ȟ*A/xeH$\{]X SCF
T鈧!ӵxNƤN@t]
$>gtɑ1VAۚDOv5:S)P,g^Mx%,|La笱endstream endobj -520 0 obj << +530 0 obj << /Type /Page -/Contents 521 0 R -/Resources 519 0 R +/Contents 531 0 R +/Resources 529 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 509 0 R -/Annots [ 524 0 R ] +/Parent 519 0 R +/Annots [ 534 0 R ] >> endobj -510 0 obj << +520 0 obj << /Type /XObject /Subtype /Image /Width 1024 @@ -2469,31 +2500,31 @@ Krg/Mm6O~kF-FYږEaI<`ߢgWxk,5Vaw,][˪5" lU endobj -524 0 obj << +534 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [321.4034 417.8288 340.8443 428.4111] /Subtype /Link /A << /S /GoTo /D (figure.2.12) >> >> endobj -522 0 obj << -/D [520 0 R /XYZ 74.4095 793.4011 null] +532 0 obj << +/D [530 0 R /XYZ 74.4095 793.4011 null] >> endobj -326 0 obj << -/D [520 0 R /XYZ 265.0857 503.2659 null] +336 0 obj << +/D [530 0 R /XYZ 265.0857 503.2659 null] >> endobj -523 0 obj << -/D [520 0 R /XYZ 74.4095 447.2385 null] +533 0 obj << +/D [530 0 R /XYZ 74.4095 447.2385 null] >> endobj -525 0 obj << -/D [520 0 R /XYZ 74.4095 181.0693 null] +535 0 obj << +/D [530 0 R /XYZ 74.4095 181.0693 null] >> endobj -519 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F26 206 0 R >> -/XObject << /Im14 510 0 R >> +529 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F26 214 0 R >> +/XObject << /Im14 520 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -529 0 obj << +539 0 obj << /Length 1708 /Filter /FlateDecode >> @@ -2505,14 +2536,14 @@ xڭXo6_GYR8u@d{hbd.2Zw#eٖx_<Dǃ,fqT$AVHp 2?r=`x+5, ZjiF2MonLXQ2J+88i*LX.3eIf/'ڐ-K4Xth`ƀd d~ K\S^˔[<x!C{ڛ3$ǷKt\:IAs7h_i
v{" O0r^c^nCMH\mBKUVþ;頔s5V3u`0h7{OT#o*x "__EVendstream endobj -528 0 obj << +538 0 obj << /Type /Page -/Contents 529 0 R -/Resources 527 0 R +/Contents 539 0 R +/Resources 537 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 509 0 R +/Parent 519 0 R >> endobj -526 0 obj << +536 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2540,21 +2571,21 @@ r쵩rrөi\P."4 !\" !EA.Br\" !ȅ\ !!ErB 3S.JܿxkgqVs5TO-JKcU 'ޣׂű*\<(--U)BRԢ8V~rű*\O-JKcU#H%Qp_=<UǪ4H"2?2!4b2b<vxIQpߗendstream endobj -530 0 obj << -/D [528 0 R /XYZ 74.4095 793.4011 null] +540 0 obj << +/D [538 0 R /XYZ 74.4095 793.4011 null] >> endobj -327 0 obj << -/D [528 0 R /XYZ 269.0219 441.3597 null] +337 0 obj << +/D [538 0 R /XYZ 269.0219 441.3597 null] >> endobj -531 0 obj << -/D [528 0 R /XYZ 74.4095 312.4026 null] +541 0 obj << +/D [538 0 R /XYZ 74.4095 312.4026 null] >> endobj -527 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F26 206 0 R >> -/XObject << /Im15 526 0 R >> +537 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F26 214 0 R >> +/XObject << /Im15 536 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -534 0 obj << +544 0 obj << /Length 2206 /Filter /FlateDecode >> @@ -2571,30 +2602,30 @@ R?Mb=v@ys&OS#1ugi+ۤazo[?k3>X"Z'P{JtB͝Owh P2H|Ix,+':?ίXxLQjb~eS"32L"LmI=|U]lё}FUCy?j~˝!DCH$019̦XW7]+8_Ӎ% 6e4c="qhu&c"X\r/
\5_1CW,acĨc-oc? 4z,VB!Sǩwi _uU(?MF7}a=Oendstream endobj -533 0 obj << +543 0 obj << /Type /Page -/Contents 534 0 R -/Resources 532 0 R +/Contents 544 0 R +/Resources 542 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 509 0 R +/Parent 519 0 R >> endobj -535 0 obj << -/D [533 0 R /XYZ 74.4095 793.4011 null] +545 0 obj << +/D [543 0 R /XYZ 74.4095 793.4011 null] >> endobj 30 0 obj << -/D [533 0 R /XYZ 74.4095 704.5199 null] +/D [543 0 R /XYZ 74.4095 704.5199 null] >> endobj -536 0 obj << -/D [533 0 R /XYZ 74.4095 491.1097 null] +546 0 obj << +/D [543 0 R /XYZ 74.4095 491.1097 null] >> endobj -537 0 obj << -/D [533 0 R /XYZ 74.4095 270.8578 null] +547 0 obj << +/D [543 0 R /XYZ 74.4095 270.8578 null] >> endobj -532 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F26 206 0 R >> +542 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F26 214 0 R >> /ProcSet [ /PDF /Text ] >> endobj -540 0 obj << +550 0 obj << /Length 2156 /Filter /FlateDecode >> @@ -2607,27 +2638,27 @@ Qf-WhLzE3dP*H0fC܀e^^w>5[u;1C.H<"!W(IL%cF3 XotQFygvF,tP>s{*H(d3+u\A'IHV~s k^Вj]5g\P2'>m:
Sn>0 H=. WN|̍tLh!;u#WczCl"O< `"$EW/^kc뮦3<D곀:DO~t|`maF}:g[ycdNZ#4m X=n\49b endobj -539 0 obj << +549 0 obj << /Type /Page -/Contents 540 0 R -/Resources 538 0 R +/Contents 550 0 R +/Resources 548 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 509 0 R +/Parent 519 0 R >> endobj -541 0 obj << -/D [539 0 R /XYZ 74.4095 793.4011 null] +551 0 obj << +/D [549 0 R /XYZ 74.4095 793.4011 null] >> endobj -542 0 obj << -/D [539 0 R /XYZ 74.4095 493.8957 null] +552 0 obj << +/D [549 0 R /XYZ 74.4095 493.8957 null] >> endobj -543 0 obj << -/D [539 0 R /XYZ 74.4095 307.4495 null] +553 0 obj << +/D [549 0 R /XYZ 74.4095 307.4495 null] >> endobj -538 0 obj << -/Font << /F61 259 0 R /F35 221 0 R /F28 209 0 R /F26 206 0 R >> +548 0 obj << +/Font << /F61 267 0 R /F35 229 0 R /F28 217 0 R /F26 214 0 R >> /ProcSet [ /PDF /Text ] >> endobj -547 0 obj << +557 0 obj << /Length 2361 /Filter /FlateDecode >> @@ -2639,41 +2670,41 @@ U~%`faL5d7c[& <g|D&?@TB``cˉ.)^I-;䛆( [bwcH*UNP+ ]_T3-@ UL?'^Ƨ@囪+'xdVendstream endobj -546 0 obj << +556 0 obj << /Type /Page -/Contents 547 0 R -/Resources 545 0 R +/Contents 557 0 R +/Resources 555 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 551 0 R -/Annots [ 550 0 R ] +/Parent 561 0 R +/Annots [ 560 0 R ] >> endobj -550 0 obj << +560 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [125.6642 225.2515 140.1197 235.8337] /Subtype /Link /A << /S /GoTo /D (table.2.2) >> >> endobj -548 0 obj << -/D [546 0 R /XYZ 74.4095 793.4011 null] +558 0 obj << +/D [556 0 R /XYZ 74.4095 793.4011 null] >> endobj -399 0 obj << -/D [546 0 R /XYZ 228.2749 645.8849 null] +409 0 obj << +/D [556 0 R /XYZ 228.2749 645.8849 null] >> endobj -549 0 obj << -/D [546 0 R /XYZ 74.4095 585.7398 null] +559 0 obj << +/D [556 0 R /XYZ 74.4095 585.7398 null] >> endobj 34 0 obj << -/D [546 0 R /XYZ 74.4095 480.9258 null] +/D [556 0 R /XYZ 74.4095 480.9258 null] >> endobj 38 0 obj << -/D [546 0 R /XYZ 74.4095 320.5086 null] +/D [556 0 R /XYZ 74.4095 320.5086 null] >> endobj -545 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> +555 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -555 0 obj << +565 0 obj << /Length 1678 /Filter /FlateDecode >> @@ -2687,15 +2718,15 @@ Tx 3( ;s
;st}ǽnls*lU V߷ endobj -554 0 obj << +564 0 obj << /Type /Page -/Contents 555 0 R -/Resources 553 0 R +/Contents 565 0 R +/Resources 563 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 551 0 R -/Annots [ 557 0 R ] +/Parent 561 0 R +/Annots [ 567 0 R ] >> endobj -544 0 obj << +554 0 obj << /Type /XObject /Subtype /Image /Width 400 @@ -2774,28 +2805,28 @@ g0NCC#{`t-.QF^
+^ݺs/8B[]V.%ȫaū >>+fe?.ɮ7 endobj -557 0 obj << +567 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [496.9433 365.4795 516.3841 376.0617] /Subtype /Link /A << /S /GoTo /D (figure.2.13) >> >> endobj -556 0 obj << -/D [554 0 R /XYZ 74.4095 793.4011 null] +566 0 obj << +/D [564 0 R /XYZ 74.4095 793.4011 null] >> endobj -328 0 obj << -/D [554 0 R /XYZ 241.4685 458.3832 null] +338 0 obj << +/D [564 0 R /XYZ 241.4685 458.3832 null] >> endobj 42 0 obj << -/D [554 0 R /XYZ 74.4095 420.171 null] +/D [564 0 R /XYZ 74.4095 420.171 null] >> endobj -553 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F26 206 0 R /F35 221 0 R >> -/XObject << /Im16 544 0 R >> +563 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F26 214 0 R /F35 229 0 R >> +/XObject << /Im16 554 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -560 0 obj << +570 0 obj << /Length 1661 /Filter /FlateDecode >> @@ -2812,14 +2843,14 @@ p O{A<̄{5Ageۥp?J,iu)Ik/ߢ+tq!bsNN$4r:E< }y}mL r?oˬϻU$Jp:Nߖ^;Hqݴ7>w=8?%
"Yll@ Bxr$9?CԙAa/MY(YuZ^#imØQ3gZ-1%sCk'.,+,
O ai;L+bsA_tHI۾?ķWQHsP!endstream endobj -559 0 obj << +569 0 obj << /Type /Page -/Contents 560 0 R -/Resources 558 0 R +/Contents 570 0 R +/Resources 568 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 551 0 R +/Parent 561 0 R >> endobj -552 0 obj << +562 0 obj << /Type /XObject /Subtype /Image /Width 400 @@ -2935,18 +2966,18 @@ o]=^JVTT۷rWKJwTAC7W^S*xEԮtK5;phةVe ^!B^WW!W`tUC;^xsWڥ膮UJ#+-ϯ={رիWK5 ^dzUa3AX'X)WB^!B+W!ʬR1ñjO^-Sgbūs5$b[֡ŊWy/cuhWy/cuhտ}O^-Sgbūk_O^mO'gyW8o0up-gZIB6ͯc豦G}˿] Ct&O?c$]SgA,/}Wi~ޙւ\^~?8Q6Oګ_X8<"xe[nU:e:iAYzk˩znn٠~eϴ~$*.P|~/sΓIwڔlJT@[_yu鯖' ?.>+(?3Dɗ..恼|mڕ.**<~酑#Gr˭ͧ[U1Aet7(dPz2!*ߏgk<?ax;g8G!=Nߤy[`ohY8w) ٔL&7[=1yeνs/ѣ#]{_߱feݷ7Q+lJuuSkv%1C*/S:AyK˄g}cIi}ߜϒdlp}Û|DQl7$ހUa7k}]qx'w}=I,zId
IGWVxmȵ2G2e:5E Qi5n:fXiRe_|xUӫO~&=ߞ_
}6%!6\>1JhvbTVM6=_o*
2[ƭJVS7IZ&$z:33mÆv퓐~Mm(_|yG.¬.|[{Gd6vͭ;M5Wx#G6?D+K"z&UMn8zRo+/S]]=4BP2uٜ4ṣ̴2u?,ML{waSpP隐(ϰ$.y2b~WA Oqhՙ?w+~|C*dS2^5W*۷Òq?:~$z[ɶٴ͜%˟-VwuOñ_$.2zlIR*4_S}:<L{*S=\rW=N/e%T&$J:3;nۥ1%cMmh:ser+ɮKB({%]ehթ?O仧'& Ի)Л/98xIUwQG^O'ߵfNw{eUWFrTySg͡5d/6Lg{ʹtOEO>5xAޙ?$|*]%6;/ >:/'B&⎟[*~~N}hɶiK"elZxև{eCB{IZfzO][Zf8s^5^y/cuhZ:iK"elZxu'4%2up-V:xmo:f8[+^8y>$b[֡ŊWx#:gDAJB^!B+xD^!P<BȫB!P܄endstream endobj -561 0 obj << -/D [559 0 R /XYZ 74.4095 793.4011 null] +571 0 obj << +/D [569 0 R /XYZ 74.4095 793.4011 null] >> endobj -329 0 obj << -/D [559 0 R /XYZ 226.347 458.3832 null] +339 0 obj << +/D [569 0 R /XYZ 226.347 458.3832 null] >> endobj -558 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F35 221 0 R /F26 206 0 R >> -/XObject << /Im17 552 0 R >> +568 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F35 229 0 R /F26 214 0 R >> +/XObject << /Im17 562 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -564 0 obj << +574 0 obj << /Length 2472 /Filter /FlateDecode >> @@ -2958,24 +2989,24 @@ xڭY_o8O{sNv7wX\9`$jc3)vl<X)I_HX-p ZYaP( GT`*jHR.F`* endobj -563 0 obj << +573 0 obj << /Type /Page -/Contents 564 0 R -/Resources 562 0 R +/Contents 574 0 R +/Resources 572 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 551 0 R +/Parent 561 0 R >> endobj -565 0 obj << -/D [563 0 R /XYZ 74.4095 793.4011 null] +575 0 obj << +/D [573 0 R /XYZ 74.4095 793.4011 null] >> endobj 46 0 obj << -/D [563 0 R /XYZ 74.4095 240.9316 null] +/D [573 0 R /XYZ 74.4095 240.9316 null] >> endobj -562 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F35 221 0 R /F26 206 0 R >> +572 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F35 229 0 R /F26 214 0 R >> /ProcSet [ /PDF /Text ] >> endobj -568 0 obj << +578 0 obj << /Length 3000 /Filter /FlateDecode >> @@ -2990,21 +3021,21 @@ QR΄vNS<䴹2DIJN~:nö<)]Fip[6I)p LF_ZMh%e}d80mo:Yf8P P"*?V$Lendstream endobj -567 0 obj << +577 0 obj << /Type /Page -/Contents 568 0 R -/Resources 566 0 R +/Contents 578 0 R +/Resources 576 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 551 0 R +/Parent 561 0 R >> endobj -569 0 obj << -/D [567 0 R /XYZ 74.4095 793.4011 null] +579 0 obj << +/D [577 0 R /XYZ 74.4095 793.4011 null] >> endobj -566 0 obj << -/Font << /F61 259 0 R /F35 221 0 R /F26 206 0 R /F28 209 0 R /F66 572 0 R /F70 575 0 R /F62 578 0 R /F65 581 0 R >> +576 0 obj << +/Font << /F61 267 0 R /F35 229 0 R /F26 214 0 R /F28 217 0 R /F66 582 0 R /F70 585 0 R /F62 588 0 R /F65 591 0 R >> /ProcSet [ /PDF /Text ] >> endobj -584 0 obj << +594 0 obj << /Length 2773 /Filter /FlateDecode >> @@ -3023,42 +3054,42 @@ FRykTGp-]4۱2b"i ےDu$_R5P8X{̪nAa M|gO;wI]bvcEڔPX.6,<GD~tE}U]/L&qª]T(̊Ww4}&bƏ(ܹC74, ᪰T^helQ< 9<x84,ڃz_R@Ƌ4}uT#V/tٸkxwV0GG
]vGt566?Ev9dlO^g\ ߹֎H9܀F&_6'=S''Oai)-xwNқ TAAdȳd],3X!]g;"'sg # c8baiʿ\X+lCTFB$\p?t3aP1~
D}y&$& &kI6@FwHwKTɩDUu^!h'n59jG1]t*7Zrn|>egPw8ڜd7_lLJu}[W.h?]kN3I6oJts`0kj%\Μi(P\m@22F}cݿ?1E>}&AGo嫚nb>$QPtӚTm2;LqR_Wj%ߚapӫO/Fg(cuQ^&#)g=Z*ۛIVҌw$:KӱjTcȸ,brwnv@5V̄6;hÒrt]S}[<]] Wd_l]f
̩#.~y0Eݽ; endobj -583 0 obj << +593 0 obj << /Type /Page -/Contents 584 0 R -/Resources 582 0 R +/Contents 594 0 R +/Resources 592 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 551 0 R -/Annots [ 589 0 R 590 0 R ] +/Parent 561 0 R +/Annots [ 599 0 R 600 0 R ] >> endobj -589 0 obj << +599 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [305.3601 171.4698 324.8009 182.052] /Subtype /Link /A << /S /GoTo /D (figure.2.14) >> >> endobj -590 0 obj << +600 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [219.4036 153.5425 233.8592 164.1248] /Subtype /Link /A << /S /GoTo /D (table.2.3) >> >> endobj -585 0 obj << -/D [583 0 R /XYZ 74.4095 793.4011 null] +595 0 obj << +/D [593 0 R /XYZ 74.4095 793.4011 null] >> endobj -400 0 obj << -/D [583 0 R /XYZ 287.609 530.5247 null] +410 0 obj << +/D [593 0 R /XYZ 287.609 530.5247 null] >> endobj 50 0 obj << -/D [583 0 R /XYZ 74.4095 260.2966 null] +/D [593 0 R /XYZ 74.4095 260.2966 null] >> endobj -582 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F72 588 0 R /F66 572 0 R /F35 221 0 R /F62 578 0 R /F70 575 0 R /F65 581 0 R >> +592 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F72 598 0 R /F66 582 0 R /F35 229 0 R /F62 588 0 R /F70 585 0 R /F65 591 0 R >> /ProcSet [ /PDF /Text ] >> endobj -593 0 obj << +603 0 obj << /Length 1050 /Filter /FlateDecode >> @@ -3073,27 +3104,27 @@ wMcN_*\f"oEfg]B<9FTY)IS2aNM?K< 'sb<6f[ Kyq-T/]a 3Q endobj -592 0 obj << +602 0 obj << /Type /Page -/Contents 593 0 R -/Resources 591 0 R +/Contents 603 0 R +/Resources 601 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 595 0 R +/Parent 605 0 R >> endobj -594 0 obj << -/D [592 0 R /XYZ 74.4095 793.4011 null] +604 0 obj << +/D [602 0 R /XYZ 74.4095 793.4011 null] >> endobj 54 0 obj << -/D [592 0 R /XYZ 74.4095 771.7323 null] +/D [602 0 R /XYZ 74.4095 771.7323 null] >> endobj 58 0 obj << -/D [592 0 R /XYZ 74.4095 600.9345 null] +/D [602 0 R /XYZ 74.4095 600.9345 null] >> endobj -591 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> +601 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -600 0 obj << +610 0 obj << /Length 1312 /Filter /FlateDecode >> @@ -3104,15 +3135,15 @@ rv!~ @^30R;,kVKqMP nQ>D?ʬendstream endobj -599 0 obj << +609 0 obj << /Type /Page -/Contents 600 0 R -/Resources 598 0 R +/Contents 610 0 R +/Resources 608 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 595 0 R -/Annots [ 602 0 R 603 0 R ] +/Parent 605 0 R +/Annots [ 612 0 R 613 0 R ] >> endobj -596 0 obj << +606 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -3188,7 +3219,7 @@ CСC˗/1cȵhѢ;wp``7nj-K*, R;ןuOys)Ǯ]d *544K/L+Jj!,)JVBrܳgϒ%KI`uժUǎ;~8|HWm Ka~G\}yW^K)%XPJ(lV~ʕ+<M,\oI`⋻wN>Pim endobj -597 0 obj << +607 0 obj << /Type /XObject /Subtype /Image /Width 586 @@ -3729,38 +3760,38 @@ YdènUM-0KPa癰!WX VR`EN@8R****zeeeذ[@FEOt"'i<12BJ[qrdffUH"(EvIt;`iHt lS`-*//ONNF/M@nȆCdCqJKK
^@JeHWKNNעy endobj -602 0 obj << +612 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [232.8089 485.2654 252.2497 495.8476] /Subtype /Link /A << /S /GoTo /D (figure.2.15) >> >> endobj -603 0 obj << +613 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 413.5564 87.8688 424.1387] /Subtype /Link /A << /S /GoTo /D (table.2.4) >> >> endobj -601 0 obj << -/D [599 0 R /XYZ 74.4095 793.4011 null] +611 0 obj << +/D [609 0 R /XYZ 74.4095 793.4011 null] >> endobj 62 0 obj << -/D [599 0 R /XYZ 74.4095 771.7323 null] +/D [609 0 R /XYZ 74.4095 771.7323 null] >> endobj -330 0 obj << -/D [599 0 R /XYZ 282.7178 535.1877 null] +340 0 obj << +/D [609 0 R /XYZ 282.7178 535.1877 null] >> endobj -331 0 obj << -/D [599 0 R /XYZ 266.4172 185.9366 null] +341 0 obj << +/D [609 0 R /XYZ 266.4172 185.9366 null] >> endobj -598 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im18 596 0 R /Im19 597 0 R >> +608 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im18 606 0 R /Im19 607 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -606 0 obj << +616 0 obj << /Length 2117 /Filter /FlateDecode >> @@ -3772,42 +3803,42 @@ n d<݉eNA3!A6 F,ы1bDďwe^q8KT8Jy_xL3ä DF=:f,G䌮>e\MSa 8M?|:yQaʰ3-]u94ə+*5]Yڙoi_PߺWt=%KK+UZrⵑbRۅQ Ϡ|k_%A endobj -605 0 obj << +615 0 obj << /Type /Page -/Contents 606 0 R -/Resources 604 0 R +/Contents 616 0 R +/Resources 614 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 595 0 R -/Annots [ 608 0 R 609 0 R ] +/Parent 605 0 R +/Annots [ 618 0 R 619 0 R ] >> endobj -608 0 obj << +618 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [224.0423 426.8697 238.4979 437.4519] /Subtype /Link /A << /S /GoTo /D (table.2.5) >> >> endobj -609 0 obj << +619 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [163.3983 373.088 182.8391 383.6702] /Subtype /Link /A << /S /GoTo /D (figure.2.16) >> >> endobj -607 0 obj << -/D [605 0 R /XYZ 74.4095 793.4011 null] +617 0 obj << +/D [615 0 R /XYZ 74.4095 793.4011 null] >> endobj -401 0 obj << -/D [605 0 R /XYZ 249.1572 703.8744 null] +411 0 obj << +/D [615 0 R /XYZ 249.1572 703.8744 null] >> endobj -402 0 obj << -/D [605 0 R /XYZ 232.8565 592.9685 null] +412 0 obj << +/D [615 0 R /XYZ 232.8565 592.9685 null] >> endobj -604 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> +614 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -613 0 obj << +623 0 obj << /Length 1797 /Filter /FlateDecode >> @@ -3826,14 +3857,14 @@ xڽ[o6)heo!C}Plb˫%/>E/I2ut?D_(86"Q! u"_;wyU竺sf0啯9m F
x+V \G4+WYpl4E%LMo{r;!3y-ZU9%tQڦέ~ybApQl~PSwgoCtޝie@s2dfi
>Wl#ĴISv~ۚ\3p@P^Z͕]W]M~r6,(w
~>j(LvW htԷ. mr"6]ɢȫ|>؎uHOWv)9wpoˇ} h[tmz[CVgZjC(I^k%}ڗC1O0Zh endobj -612 0 obj << +622 0 obj << /Type /Page -/Contents 613 0 R -/Resources 611 0 R +/Contents 623 0 R +/Resources 621 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 595 0 R +/Parent 605 0 R >> endobj -610 0 obj << +620 0 obj << /Type /XObject /Subtype /Image /Width 621 @@ -4106,24 +4137,24 @@ I%8o5<$6<_0ߘfV6|"C@;B[e:ZRv9;p[Oŕ 痗3ꐓCr* iqA~LM/7npH&9T'O0#8T%'n̡)Lq4+hGGGFFƑ#G9$(s+;;Jj
Cii)szb=9T=7r1E(.Ξ=+m]]2:ePĞju[P)̡3s7o<z(Ņ͙62AVVF~*BSSSzz:s*/]d<4B:1`8|pqqFJJ OblqA̡FCENMMŘD9.̡R322*++9`02?njendstream endobj -614 0 obj << -/D [612 0 R /XYZ 74.4095 793.4011 null] +624 0 obj << +/D [622 0 R /XYZ 74.4095 793.4011 null] >> endobj -403 0 obj << -/D [612 0 R /XYZ 249.6817 544.9705 null] +413 0 obj << +/D [622 0 R /XYZ 249.6817 544.9705 null] >> endobj 66 0 obj << -/D [612 0 R /XYZ 74.4095 507.7865 null] +/D [622 0 R /XYZ 74.4095 507.7865 null] >> endobj -332 0 obj << -/D [612 0 R /XYZ 283.2423 270.3205 null] +342 0 obj << +/D [622 0 R /XYZ 283.2423 270.3205 null] >> endobj -611 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im20 610 0 R >> +621 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im20 620 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -617 0 obj << +627 0 obj << /Length 754 /Filter /FlateDecode >> @@ -4135,36 +4166,36 @@ S9rp)oOr28"k"Q):rFBLoL`8;p$ڲu5fB!`FP]NED f x+ЧK/ֿK&cgW{Ҙ#nBV^VdY@y.WTGw"p$7Ɣ^[Jd"yRiJU:/L_AM`GK&撞%@sPIP9A0:Sendstream endobj -616 0 obj << +626 0 obj << /Type /Page -/Contents 617 0 R -/Resources 615 0 R +/Contents 627 0 R +/Resources 625 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 595 0 R -/Annots [ 619 0 R 620 0 R ] +/Parent 605 0 R +/Annots [ 629 0 R 630 0 R ] >> endobj -619 0 obj << +629 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [499.9291 756.7859 519.3699 767.3682] /Subtype /Link /A << /S /GoTo /D (figure.2.17) >> >> endobj -620 0 obj << +630 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [305.6841 703.0042 320.1396 713.5865] /Subtype /Link /A << /S /GoTo /D (table.2.6) >> >> endobj -618 0 obj << -/D [616 0 R /XYZ 74.4095 793.4011 null] +628 0 obj << +/D [626 0 R /XYZ 74.4095 793.4011 null] >> endobj -615 0 obj << -/Font << /F61 259 0 R /F28 209 0 R >> +625 0 obj << +/Font << /F61 267 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -624 0 obj << +634 0 obj << /Length 2410 /Filter /FlateDecode >> @@ -4179,15 +4210,15 @@ xڵYKϯQ*`< Е#vR\eWbV֢Ik4H"53[~Pe*VXY ~ Ťѓ?I&H2$@،5D(MS+PY~wJ,Xt&F㟻7b^ۄ朱sXrm[z
㟺<GXU2(F>lpZtw}mr;
髮<OQL1^R0^i%J7nqX؍SqoEnB[oo=MK$dpg=F#IBw*s HW'6ԹlM& WUCsO=≢Z;w,Ɋ&RKendstream endobj -623 0 obj << +633 0 obj << /Type /Page -/Contents 624 0 R -/Resources 622 0 R +/Contents 634 0 R +/Resources 632 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 595 0 R -/Annots [ 626 0 R 627 0 R 628 0 R ] +/Parent 605 0 R +/Annots [ 636 0 R 637 0 R 638 0 R ] >> endobj -621 0 obj << +631 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -4246,42 +4277,42 @@ G/۷%lNp]~=7b}fۼypwyeˊ~L$냃 X`X+X`X`"`X`N`X`aaaaaaaaaX;o3g>~=3/ٳgv>|J/.5-:~M}"c&&&o߾zjiƍ=~__eI$wzOXnu_9OMlH;vLƴ|?z۹she{ŷz5=jݺu +ޡJ6Ȑ,d_27dk||OP~z0ızIJDS^bOr<'Y,IV^+R`8ZÚ|db+:JH՞(n.!O8yd|`u]|ϟoɤ7_ϟY &Ԕ?w}WN:Pqe㉦4d'),Ii
)u^9sF{СCCm۶IDT%&cFGGb]ʗL]MOXhP4(>r۷}` J|;E~vbYzɿAS^=aOri<N'EU0g%a֭-i%Q m^r`e,Dbɲ+>
6xm̟SKWOX*W?xwd\},{O4D7!;|Hݥ?uTek˖-Xj(r̢ܹSd#:oׯl|`=Ǐ>KF^}CtMp{Ų:xRJ^}ha^Rڵkٓ4XnzFV><'L>u]O}(/Y߿?۷%(ҍ===ɫMz{{ŲW,g>;v[|^d |Ye,{Ov<QNI4}sv<)*, endobj -626 0 obj << +636 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [139.6116 341.341 159.0524 353.4789] /Subtype /Link /A << /S /GoTo /D (figure.2.18) >> >> endobj -627 0 obj << +637 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [236.3086 189.397 255.7494 199.9793] /Subtype /Link /A << /S /GoTo /D (figure.2.18) >> >> endobj -628 0 obj << +638 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [356.9041 171.4698 371.3597 182.052] /Subtype /Link /A << /S /GoTo /D (table.2.7) >> >> endobj -625 0 obj << -/D [623 0 R /XYZ 74.4095 793.4011 null] +635 0 obj << +/D [633 0 R /XYZ 74.4095 793.4011 null] >> endobj 70 0 obj << -/D [623 0 R /XYZ 74.4095 771.7323 null] +/D [633 0 R /XYZ 74.4095 771.7323 null] >> endobj -333 0 obj << -/D [623 0 R /XYZ 243.6967 392.988 null] +343 0 obj << +/D [633 0 R /XYZ 243.6967 392.988 null] >> endobj -622 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F66 572 0 R /F35 221 0 R /F62 578 0 R /F70 575 0 R /F65 581 0 R >> -/XObject << /Im21 621 0 R >> +632 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F66 582 0 R /F35 229 0 R /F62 588 0 R /F70 585 0 R /F65 591 0 R >> +/XObject << /Im21 631 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -631 0 obj << +641 0 obj << /Length 1901 /Filter /FlateDecode >> @@ -4297,27 +4328,27 @@ vbSܷ&{N|L[pFϏ0(.qm~RWkP_le Ķgp$ ˁUۑdt?R~^+Cdaguk,aC1 khv;jgmgcQ;YO[&_Zw_a.oZʥgd"3r;j(;fG,
endobj -630 0 obj << +640 0 obj << /Type /Page -/Contents 631 0 R -/Resources 629 0 R +/Contents 641 0 R +/Resources 639 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 634 0 R +/Parent 644 0 R >> endobj -632 0 obj << -/D [630 0 R /XYZ 74.4095 793.4011 null] +642 0 obj << +/D [640 0 R /XYZ 74.4095 793.4011 null] >> endobj -404 0 obj << -/D [630 0 R /XYZ 210.136 674.7766 null] +414 0 obj << +/D [640 0 R /XYZ 210.136 674.7766 null] >> endobj -633 0 obj << -/D [630 0 R /XYZ 74.4095 560.9913 null] +643 0 obj << +/D [640 0 R /XYZ 74.4095 560.9913 null] >> endobj -629 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R /F66 572 0 R >> +639 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F35 229 0 R /F66 582 0 R >> /ProcSet [ /PDF /Text ] >> endobj -638 0 obj << +648 0 obj << /Length 2428 /Filter /FlateDecode >> @@ -4335,15 +4366,15 @@ X--bz '̾7]H<AZq]mCK yQi&U8.KX[sCN*^ÿ&wMA'hx1CҞ2iaҜ=B$4P?<KHCS+fL. S0҄hM3um[MqǴ*BL lϩ
"uHN endobj -637 0 obj << +647 0 obj << /Type /Page -/Contents 638 0 R -/Resources 636 0 R +/Contents 648 0 R +/Resources 646 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 634 0 R -/Annots [ 640 0 R 641 0 R 642 0 R 643 0 R ] +/Parent 644 0 R +/Annots [ 650 0 R 651 0 R 652 0 R 653 0 R ] >> endobj -635 0 obj << +645 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -4439,49 +4470,49 @@ z,`^A,`^1,+XzXz;X@W`X ?ϻEOIAXgϞ 4
%IXr-SMAXiU8H}$N/Rw-P|"YzR),:::<!HSrHh<5dD^9sFwE*"h.fA(r,aцO(mgwqzYuEr7oޤͲsYh<aWXB s^X"I.8BfMLL].gNM) t Ԍ"h=Ev¢-n]_WFD`}kRJM7k=l.'/xK/\sB$BS|իWu~)ݺA\D`uvv: vy7n0ږ^BfҦ6 ªV7B+>'Ѣ8' Bjfz97X|&xbI;|I.3zR !ZZv@ 'AOHendstream endobj -640 0 obj << +650 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [178.7098 270.9467 210.5959 279.7177] /Subtype /Link /A << /S /GoTo /D (cite.Vorlesung) >> >> endobj -641 0 obj << +651 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [400.831 243.1787 420.2718 253.761] /Subtype /Link /A << /S /GoTo /D (figure.2.18) >> >> endobj -642 0 obj << +652 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 189.397 92.854 199.9793] /Subtype /Link /A << /S /GoTo /D (figure.2.19) >> >> endobj -643 0 obj << +653 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.9769 153.5425 309.4325 164.1248] /Subtype /Link /A << /S /GoTo /D (table.2.8) >> >> endobj -639 0 obj << -/D [637 0 R /XYZ 74.4095 793.4011 null] +649 0 obj << +/D [647 0 R /XYZ 74.4095 793.4011 null] >> endobj 74 0 obj << -/D [637 0 R /XYZ 74.4095 771.7323 null] +/D [647 0 R /XYZ 74.4095 771.7323 null] >> endobj -334 0 obj << -/D [637 0 R /XYZ 207.0203 531.8696 null] +344 0 obj << +/D [647 0 R /XYZ 207.0203 531.8696 null] >> endobj -636 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F66 572 0 R /F62 578 0 R /F70 575 0 R /F35 221 0 R /F65 581 0 R >> -/XObject << /Im22 635 0 R >> +646 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F66 582 0 R /F62 588 0 R /F70 585 0 R /F35 229 0 R /F65 591 0 R >> +/XObject << /Im22 645 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -647 0 obj << +657 0 obj << /Length 1749 /Filter /FlateDecode >> @@ -4496,32 +4527,32 @@ I< ixG0sY?95!Eba+~o3sg+ g08&#,/||Bu&Q]n[ӹw5S|6l %"6 Q+e0xs^zFƕՃBQU,CO*3ۊ,:me@b|C_ެ\DBId.Сpɿh˨FLP]BCRoS|0B: 8^
"8Ei#Zg!Ξ09o?];#DwLͮ懻F!
ERvQn=Lfendstream endobj -646 0 obj << +656 0 obj << /Type /Page -/Contents 647 0 R -/Resources 645 0 R +/Contents 657 0 R +/Resources 655 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 634 0 R -/Annots [ 649 0 R ] +/Parent 644 0 R +/Annots [ 659 0 R ] >> endobj -649 0 obj << +659 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [147.8853 551.235 167.3261 561.8172] /Subtype /Link /A << /S /GoTo /D (figure.2.19) >> >> endobj -648 0 obj << -/D [646 0 R /XYZ 74.4095 793.4011 null] +658 0 obj << +/D [656 0 R /XYZ 74.4095 793.4011 null] >> endobj -405 0 obj << -/D [646 0 R /XYZ 174.4503 602.5475 null] +415 0 obj << +/D [656 0 R /XYZ 174.4503 602.5475 null] >> endobj -645 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F66 572 0 R >> +655 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F66 582 0 R >> /ProcSet [ /PDF /Text ] >> endobj -653 0 obj << +663 0 obj << /Length 2298 /Filter /FlateDecode >> @@ -4537,14 +4568,14 @@ tq Yt/v|lj d$ćY[q[E}Pij-
鍤몇a}kMj2CJs'r0uAsKzKd)C/_p=ϋGX >Rd}je
^ݒꅍ>\XLHz5;#Fp;'tox<{]8BN`?WLj
FHKKU_\^/\͵J~ZC$p[1gv0y5M~
g~K endobj -652 0 obj << +662 0 obj << /Type /Page -/Contents 653 0 R -/Resources 651 0 R +/Contents 663 0 R +/Resources 661 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 634 0 R +/Parent 644 0 R >> endobj -650 0 obj << +660 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -4656,21 +4687,21 @@ z,`^A,`^ab`X H8pBhpAuÅXfd`:tƙ
zI:4t]I:\v 1''G$ +77W,K" ?,'OT<R}6XԟX;'_+?IzTlbF/HFb4V endstream endobj -654 0 obj << -/D [652 0 R /XYZ 74.4095 793.4011 null] +664 0 obj << +/D [662 0 R /XYZ 74.4095 793.4011 null] >> endobj 78 0 obj << -/D [652 0 R /XYZ 74.4095 771.7323 null] +/D [662 0 R /XYZ 74.4095 771.7323 null] >> endobj -335 0 obj << -/D [652 0 R /XYZ 219.5326 530.7468 null] +345 0 obj << +/D [662 0 R /XYZ 219.5326 530.7468 null] >> endobj -651 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F66 572 0 R /F70 575 0 R /F62 578 0 R /F65 581 0 R /F80 657 0 R /F35 221 0 R >> -/XObject << /Im23 650 0 R >> +661 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F66 582 0 R /F70 585 0 R /F62 588 0 R /F65 591 0 R /F80 667 0 R /F35 229 0 R >> +/XObject << /Im23 660 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -660 0 obj << +670 0 obj << /Length 2363 /Filter /FlateDecode >> @@ -4688,42 +4719,42 @@ xڽ]s۸ݿҌ7{Ծw3%y-Zf-QH=b")74 bwKEd,Ldy 941W!p$6pkܼ8* d[D`t*&@]FV /ShMT0qԡIs5bhuC8^@eE{}F.4$2Щc{\S=rZA1c7kfDRH,Z0O5ǯH ױB'`!k-endstream endobj -659 0 obj << +669 0 obj << /Type /Page -/Contents 660 0 R -/Resources 658 0 R +/Contents 670 0 R +/Resources 668 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 634 0 R -/Annots [ 662 0 R 663 0 R ] +/Parent 644 0 R +/Annots [ 672 0 R 673 0 R ] >> endobj -662 0 obj << +672 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [177.7731 580.5929 197.2139 591.1752] /Subtype /Link /A << /S /GoTo /D (figure.2.20) >> >> endobj -663 0 obj << +673 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [383.7139 562.6657 398.1695 573.2479] /Subtype /Link /A << /S /GoTo /D (table.2.9) >> >> endobj -661 0 obj << -/D [659 0 R /XYZ 74.4095 793.4011 null] +671 0 obj << +/D [669 0 R /XYZ 74.4095 793.4011 null] >> endobj -406 0 obj << -/D [659 0 R /XYZ 217.8873 674.9828 null] +416 0 obj << +/D [669 0 R /XYZ 217.8873 674.9828 null] >> endobj -664 0 obj << -/D [659 0 R /XYZ 74.4095 446.4113 null] +674 0 obj << +/D [669 0 R /XYZ 74.4095 446.4113 null] >> endobj -658 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F66 572 0 R /F35 221 0 R >> +668 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F66 582 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -668 0 obj << +678 0 obj << /Length 1934 /Filter /FlateDecode >> @@ -4736,15 +4767,15 @@ xڭ]s6ݿҌ 5uz7k<CʄeTr_X$Nn2/wDLrnuf@ ;jk3^dul6&['RS`꘡F"yZ@zS7C ugUmٹa,<˯)W~`䗠]u
Θb4&M?dJT>[8~"*f%_`@(
^i>_폥A/),݆CbrCkFs
7aN=?tbOWޭJhsNEs˹8(0ݸQǧ1ēhflJJzB,\ZBw6s˒Cyg+Y1#1g}A0Aendstream endobj -667 0 obj << +677 0 obj << /Type /Page -/Contents 668 0 R -/Resources 666 0 R +/Contents 678 0 R +/Resources 676 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 634 0 R -/Annots [ 670 0 R 671 0 R ] +/Parent 644 0 R +/Annots [ 680 0 R 681 0 R ] >> endobj -665 0 obj << +675 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -4844,38 +4875,38 @@ yE8!!!@@W+!!B^!@@@6`0`0`0`0`0 !Lxï*eBGHdr&~^Ϊz ^%/Ӌ֔'[ba#[K !$dRQxI _ΐC*SJWVkjj2n#ÇTbh,Hn4VYzYzrrr@Ғa¨jHɺu4뮬BHueݔB |R /ǥD`bÑBDhF&4zj___2-d]P]6p||L y+/L
U^<X}&6rt}}}&VNgfFOY[[[qlCL>em,/
QEE endobj -670 0 obj << +680 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [316.0837 353.1081 335.5245 363.6903] /Subtype /Link /A << /S /GoTo /D (figure.2.21) >> >> endobj -671 0 obj << +681 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [397.4695 353.1081 416.9104 363.6903] /Subtype /Link /A << /S /GoTo /D (table.2.10) >> >> endobj -669 0 obj << -/D [667 0 R /XYZ 74.4095 793.4011 null] +679 0 obj << +/D [677 0 R /XYZ 74.4095 793.4011 null] >> endobj 82 0 obj << -/D [667 0 R /XYZ 74.4095 771.7323 null] +/D [677 0 R /XYZ 74.4095 771.7323 null] >> endobj -336 0 obj << -/D [667 0 R /XYZ 263.5658 529.9143 null] +346 0 obj << +/D [677 0 R /XYZ 263.5658 529.9143 null] >> endobj -672 0 obj << -/D [667 0 R /XYZ 74.4095 188.5624 null] +682 0 obj << +/D [677 0 R /XYZ 74.4095 188.5624 null] >> endobj -666 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im24 665 0 R >> +676 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im24 675 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -675 0 obj << +685 0 obj << /Length 1308 /Filter /FlateDecode >> @@ -4885,24 +4916,24 @@ xڽXnF+p:. ]2arI*!(QJ4Bjxy9g$G"FD0!$ &$Rk`PA)Rne`\,0eIuK?[-d~55϶˘Gv'_ڞ,0!N F "?AWfKBfCEH q` g@A(:Q0? /\fhTg~n!46d)]9!lP}9̟_v{uƐ{WZ#%} Zo(ID1pv+@? endobj -674 0 obj << +684 0 obj << /Type /Page -/Contents 675 0 R -/Resources 673 0 R +/Contents 685 0 R +/Resources 683 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 677 0 R +/Parent 687 0 R >> endobj -676 0 obj << -/D [674 0 R /XYZ 74.4095 793.4011 null] +686 0 obj << +/D [684 0 R /XYZ 74.4095 793.4011 null] >> endobj -407 0 obj << -/D [674 0 R /XYZ 232.4978 660.3308 null] +417 0 obj << +/D [684 0 R /XYZ 232.4978 660.3308 null] >> endobj -673 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +683 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -681 0 obj << +691 0 obj << /Length 2155 /Filter /FlateDecode >> @@ -4918,15 +4949,15 @@ Q2rhƹ<72SQqUġwZ.`Ͼſ'Fp*U). ]x\D 6p'ocA&6;\c@
̉#7f]F QL"!5Hvo endobj -680 0 obj << +690 0 obj << /Type /Page -/Contents 681 0 R -/Resources 679 0 R +/Contents 691 0 R +/Resources 689 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 677 0 R -/Annots [ 683 0 R 684 0 R 685 0 R 686 0 R ] +/Parent 687 0 R +/Annots [ 693 0 R 694 0 R 695 0 R 696 0 R ] >> endobj -678 0 obj << +688 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5085,49 +5116,49 @@ qg}NLLZ (R
{HbR_|u!/~n55BsbXe~UAVE/ vfBJZL=dWm
^j8V!ajkd(&vtt(eW٫0^\|pTBR!**4bTaBH)ўf+RWlvݻw)^pkbb^WVWWkj"ԄU
ACR Cmm-!!Pd
䮞:?ӁP+Rp=Z(r膗H'|Ң_gϪ*:;;;+**(H@_BMRZԆ2;wj_5$lr}iRb+v3F{ܣ!x o٫tJ(\:@ Dtendstream endobj -683 0 obj << +693 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [181.0012 261.106 200.442 271.6882] /Subtype /Link /A << /S /GoTo /D (figure.2.22) >> >> endobj -684 0 obj << +694 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [164.613 243.1787 184.0538 253.761] /Subtype /Link /A << /S /GoTo /D (table.2.11) >> >> endobj -685 0 obj << +695 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [464.2527 243.1787 483.6935 253.761] /Subtype /Link /A << /S /GoTo /D (table.2.12) >> >> endobj -686 0 obj << +696 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [502.4217 243.1787 521.8625 253.761] /Subtype /Link /A << /S /GoTo /D (table.2.13) >> >> endobj -682 0 obj << -/D [680 0 R /XYZ 74.4095 793.4011 null] +692 0 obj << +/D [690 0 R /XYZ 74.4095 793.4011 null] >> endobj 86 0 obj << -/D [680 0 R /XYZ 74.4095 771.7323 null] +/D [690 0 R /XYZ 74.4095 771.7323 null] >> endobj -337 0 obj << -/D [680 0 R /XYZ 260.6248 512.7788 null] +347 0 obj << +/D [690 0 R /XYZ 260.6248 512.7788 null] >> endobj -679 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im25 678 0 R >> +689 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im25 688 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -689 0 obj << +699 0 obj << /Length 1722 /Filter /FlateDecode >> @@ -5140,27 +5171,27 @@ n'
cT<Vr!46";{#ٵAG\vr0G˖ƎSq uGr9 ,˝z4)?|rIE-Ϝf|]H'C?*X[|{_r\qQw$a˰㾬Ǣ,:o@D2U(o`Ɠcgۘ/a`I)~xǹi3+uovTֽ97AvŽS7,VSKE9eę::EF,O=T;sI[a?0**"{Y fӸK%F7셸acєZsтqꒂ!b(6~9r 1+,ywNCdu*HIX/(#s*rX&5u3?DQn0y,b䨗uXz-@u<"1,M=q/teY3g9WYUl0V{=9=Aѷ''v[lCG3]
#8ӆZ'rU;'wms`㹿[OwnOʧqEPYǹWG*&Ãk$ʌP\~FM:HH5f#x>ȡBFk9WŅКW.gҽ.z7\ULļGpKeeO~mY}5=0uoJSBπ;uTr;#*endstream endobj -688 0 obj << +698 0 obj << /Type /Page -/Contents 689 0 R -/Resources 687 0 R +/Contents 699 0 R +/Resources 697 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 677 0 R +/Parent 687 0 R >> endobj -690 0 obj << -/D [688 0 R /XYZ 74.4095 793.4011 null] +700 0 obj << +/D [698 0 R /XYZ 74.4095 793.4011 null] >> endobj -408 0 obj << -/D [688 0 R /XYZ 229.5568 689.2224 null] +418 0 obj << +/D [698 0 R /XYZ 229.5568 689.2224 null] >> endobj -691 0 obj << -/D [688 0 R /XYZ 74.4095 633.755 null] +701 0 obj << +/D [698 0 R /XYZ 74.4095 633.755 null] >> endobj -687 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +697 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -694 0 obj << +704 0 obj << /Length 2506 /Filter /FlateDecode >> @@ -5182,24 +5213,24 @@ qB:8YHIƖX
&ŠzǔBF ;18I=}Tm}|RYH"W\eP aX94hES82I
UmW_Q%R;ljV?D<ys
!E$t'UEImɚ:E6eEFUXL")XF, ;8a3Hrvk>C `Aa:Hͪwl:=au;udVɝ?Xcr4WxO9Ԛ)X">F8DŽi6(%]DCXt! endobj -693 0 obj << +703 0 obj << /Type /Page -/Contents 694 0 R -/Resources 692 0 R +/Contents 704 0 R +/Resources 702 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 677 0 R +/Parent 687 0 R >> endobj -695 0 obj << -/D [693 0 R /XYZ 74.4095 793.4011 null] +705 0 obj << +/D [703 0 R /XYZ 74.4095 793.4011 null] >> endobj -409 0 obj << -/D [693 0 R /XYZ 194.3776 163.7542 null] +419 0 obj << +/D [703 0 R /XYZ 194.3776 163.7542 null] >> endobj -692 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> +702 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -698 0 obj << +708 0 obj << /Length 1680 /Filter /FlateDecode >> @@ -5218,24 +5249,24 @@ x͚rF| et1^7hfm^E1z-\v:YmQi͛P5C03ah齍 PI2%f¸\Wa=?(zuF<;=5J=*?7tIڅw.o{)kBQۺ(ݗX-zhGF@?Kj:֓wH)U|x[3HJr.Ug6Un
<_]ླྀendstream endobj -697 0 obj << +707 0 obj << /Type /Page -/Contents 698 0 R -/Resources 696 0 R +/Contents 708 0 R +/Resources 706 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 677 0 R +/Parent 687 0 R >> endobj -699 0 obj << -/D [697 0 R /XYZ 74.4095 793.4011 null] +709 0 obj << +/D [707 0 R /XYZ 74.4095 793.4011 null] >> endobj -410 0 obj << -/D [697 0 R /XYZ 187.6529 310.8025 null] +420 0 obj << +/D [707 0 R /XYZ 187.6529 310.8025 null] >> endobj -696 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> +706 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -703 0 obj << +713 0 obj << /Length 1778 /Filter /FlateDecode >> @@ -5251,15 +5282,15 @@ Z&Qj9$_̖q/~_ǣ
~o;n nx2'2P꿩t}sWKO|'/z)eyQ*_ &endstream endobj -702 0 obj << +712 0 obj << /Type /Page -/Contents 703 0 R -/Resources 701 0 R +/Contents 713 0 R +/Resources 711 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 677 0 R -/Annots [ 705 0 R 706 0 R ] +/Parent 687 0 R +/Annots [ 715 0 R 716 0 R ] >> endobj -700 0 obj << +710 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5370,35 +5401,35 @@ ml>okH1g^KFKK9 ,`X^,`X+,`^a,+X,+b`X ,`X^,`XBN,+X{X{,`XW|,5n@ @ @ @ @ x122b_
z~W>]>믿Kkll,9ڃXotmnT[[ӈ`5??Fjו+W&&&rv?\trT}E>"DLFD|͕DiIK)?yLNNRN2q`҈]YY~</2 @͓`IǏkv%YCCCIvOfGke5Ess3;,;::jߗXyE>L|"Dεk46!aƁwEX/<y$cY`(X~_O>TI|"?$^XX eEm!I4YN~_fOb,|X?"D,|^Y[OyKm}ə1ŢN$`Jit:YcuvvPY`WBl&w4VT===4{e522B" (a]tevD2bOb1'XLI&-B5?80#[z/_k,QBhfED Q(CNOO_z5i,hݽL/6hZ\\$Sla=z#ƛ7o$}i>iH,v$u>lZRJ*^=/bttudE{5IFAX0h \dE֠Ƀصa,%;>Lin7M$pjɿA2bOQ>1'$Tg%#li̺K^@m NbE'+FFX4!"cEӮ3Pkmme.?M]aѬ\CC,'/3':|9/k,$\RJ*Dp"K?;;4{=5V0h6찢FѡnܸAX4!_Zޮo6E,ꫩ)55*݈67t
3i}i>1db1'"W51OBJI.@/w/l/vu!VV,\.WKK3>gaT2&_4{A$PЭMl6[p@l5:;;K4O@4=̾(hwgkgZO~,|̩$L)Fb4VM0endstream endobj -705 0 obj << +715 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [407.8633 483.5062 427.3041 494.0885] /Subtype /Link /A << /S /GoTo /D (figure.2.23) >> >> endobj -706 0 obj << +716 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [350.9667 429.7245 370.4075 440.3068] /Subtype /Link /A << /S /GoTo /D (table.2.14) >> >> endobj -704 0 obj << -/D [702 0 R /XYZ 74.4095 793.4011 null] +714 0 obj << +/D [712 0 R /XYZ 74.4095 793.4011 null] >> endobj 90 0 obj << -/D [702 0 R /XYZ 74.4095 771.7323 null] +/D [712 0 R /XYZ 74.4095 771.7323 null] >> endobj -338 0 obj << -/D [702 0 R /XYZ 273.2852 532.4193 null] +348 0 obj << +/D [712 0 R /XYZ 273.2852 532.4193 null] >> endobj -701 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im26 700 0 R >> +711 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im26 710 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -710 0 obj << +720 0 obj << /Length 2234 /Filter /FlateDecode >> @@ -5409,15 +5440,15 @@ xڵZKs7W̑2qvݔ7VaD͚3{A9#Gv
FI* @26HRcv{2ga]j7gB+b
ּyhVw)aaf]k']{_uTXY3Nj̮DƜ=l{fq1ws@tś8vdԘݞ61솪MV>.4R^24{S@5Ox(>a4~vC*N'DQݡ$lj(BtScUg&bc>n sVB]G(SmJ;cXp6۱?e (w: !dzbt'] |\d+t Xa biF^\`g/.7
!LI/5 endobj -709 0 obj << +719 0 obj << /Type /Page -/Contents 710 0 R -/Resources 708 0 R +/Contents 720 0 R +/Resources 718 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 716 0 R -/Annots [ 712 0 R 713 0 R 714 0 R 715 0 R ] +/Parent 726 0 R +/Annots [ 722 0 R 723 0 R 724 0 R 725 0 R ] >> endobj -707 0 obj << +717 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5513,52 +5544,52 @@ y,`.,`A^!,+X,+ XyX W`Xr0 +9s&fG ұ}"Sh8i<hqz!F? I;#Z Fe"u$/_X:0+?,NI&$
x4ˆ;^hXo~Fy$',؋/RDXEFcb)_4w59aѢUC v}i<E<BO"˵]H^MD]ƓD,R`g%
i[[d!".bN-ʤ-HbѲK|Jp---\E紥+',Z?߸}6-e :0>c<Q`H'EYI\VH o,h5diEhn-',K.-yH&믿l?|||\xMq
5aZ\Mj.D]<Mjg)61 H|ׯ_O4]nDR`+755<bPˉCZ|*֭[ܚ.B!O>-= eX/Z[[ һV2D=OT>Dc9'Y;(hsLa<qZendstream endobj -712 0 obj << +722 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [369.1027 214.5472 388.5435 225.1294] /Subtype /Link /A << /S /GoTo /D (figure.2.24) >> >> endobj -713 0 obj << +723 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [421.8421 214.5472 441.2829 225.1294] /Subtype /Link /A << /S /GoTo /D (table.2.15) >> >> endobj -714 0 obj << +724 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [126.795 196.7276 146.2358 207.2022] /Subtype /Link /A << /S /GoTo /D (table.2.16) >> >> endobj -715 0 obj << +725 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [164.3153 196.7276 183.7561 207.2022] /Subtype /Link /A << /S /GoTo /D (table.2.17) >> >> endobj -711 0 obj << -/D [709 0 R /XYZ 74.4095 793.4011 null] +721 0 obj << +/D [719 0 R /XYZ 74.4095 793.4011 null] >> endobj -411 0 obj << -/D [709 0 R /XYZ 242.2172 588.3079 null] +421 0 obj << +/D [719 0 R /XYZ 242.2172 588.3079 null] >> endobj 94 0 obj << -/D [709 0 R /XYZ 74.4095 553.4796 null] +/D [719 0 R /XYZ 74.4095 553.4796 null] >> endobj -339 0 obj << -/D [709 0 R /XYZ 268.1431 315.7042 null] +349 0 obj << +/D [719 0 R /XYZ 268.1431 315.7042 null] >> endobj -708 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im27 707 0 R >> +718 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im27 717 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -719 0 obj << +729 0 obj << /Length 1744 /Filter /FlateDecode >> @@ -5568,39 +5599,39 @@ xZM6WhӤES6䠵ۛZr_ߡ(QeQN iA:Dk:Juj]S NDX#yd'ʼn}+
/R^ה3
lZk'mc@FpԙxA
ģlb@@┾zWlEuMlrxj!1$EiqӂD;AΉG yNvzI
6<[G endobj -718 0 obj << +728 0 obj << /Type /Page -/Contents 719 0 R -/Resources 717 0 R +/Contents 729 0 R +/Resources 727 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 716 0 R +/Parent 726 0 R >> endobj -720 0 obj << -/D [718 0 R /XYZ 74.4095 793.4011 null] +730 0 obj << +/D [728 0 R /XYZ 74.4095 793.4011 null] >> endobj -412 0 obj << -/D [718 0 R /XYZ 237.0751 660.537 null] +422 0 obj << +/D [728 0 R /XYZ 237.0751 660.537 null] >> endobj -721 0 obj << -/D [718 0 R /XYZ 74.4095 606.2873 null] +731 0 obj << +/D [728 0 R /XYZ 74.4095 606.2873 null] >> endobj -722 0 obj << -/D [718 0 R /XYZ 74.4095 505.5151 null] +732 0 obj << +/D [728 0 R /XYZ 74.4095 505.5151 null] >> endobj -723 0 obj << -/D [718 0 R /XYZ 74.4095 408.5267 null] +733 0 obj << +/D [728 0 R /XYZ 74.4095 408.5267 null] >> endobj -724 0 obj << -/D [718 0 R /XYZ 74.4095 325.6817 null] +734 0 obj << +/D [728 0 R /XYZ 74.4095 325.6817 null] >> endobj -725 0 obj << -/D [718 0 R /XYZ 74.4095 228.6933 null] +735 0 obj << +/D [728 0 R /XYZ 74.4095 228.6933 null] >> endobj -717 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +727 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -728 0 obj << +738 0 obj << /Length 2403 /Filter /FlateDecode >> @@ -5619,24 +5650,24 @@ lsНuqQM֙\McWm%9%5G+|Iod=\In|F?R`u:.:: L"603xzݯ3O{utWI`W!ւx!wzem)~j"a<'ZtbF'ĔO֗ӽ-ԚreJ1K'\AUB~m`_$Gp?Uww-Zu%K0àマT_TiJ1Nj!t
:|t)*O*fzHfX[$+EUh)YQ C
9IlNb|3R6|5hq//שz\S̤F$63qz9
#q
lo@Ⱥ\TH=J=:T)ROD$lFS[o2(<@:}feP)yc2O|rY>wsq7AƇpM-u皂60ݤG&pp'|r鄘f0ޔ5Ctd^<z(`.Rl(`]aZt5Hy>Rf5g@]tl@4l圭BsWt?^_ӧ;e4'wOn2E(:Q`L*{\Ɔ8VkEzj}~Y{َܰ=yendstream endobj -727 0 obj << +737 0 obj << /Type /Page -/Contents 728 0 R -/Resources 726 0 R +/Contents 738 0 R +/Resources 736 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 716 0 R +/Parent 726 0 R >> endobj -729 0 obj << -/D [727 0 R /XYZ 74.4095 793.4011 null] +739 0 obj << +/D [737 0 R /XYZ 74.4095 793.4011 null] >> endobj -413 0 obj << -/D [727 0 R /XYZ 201.8959 171.2794 null] +423 0 obj << +/D [737 0 R /XYZ 201.8959 171.2794 null] >> endobj -726 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> +736 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -732 0 obj << +742 0 obj << /Length 1608 /Filter /FlateDecode >> @@ -5647,27 +5678,27 @@ JW{Niwoʪ}ʺ}( @GxW bO1pk`& E3zg&!m`hg ; AmDMr4s}[5qJxa1eHyUnj_W'`<CK_7_6 dmf[=X7m[ݗ]hWAa2Dj\oPCd=Ǫ5G(*`k@7ixv/&sILp`7?R>tnn+䮣,x\k;//=hVkiH_针2Q(!!>˪\\x7ҵBzPpA^!0> >f&^ո}q[]8`kPѣ.Ceg1{2۳\2\җ^+_Aiendstream endobj -731 0 obj << +741 0 obj << /Type /Page -/Contents 732 0 R -/Resources 730 0 R +/Contents 742 0 R +/Resources 740 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 716 0 R +/Parent 726 0 R >> endobj -733 0 obj << -/D [731 0 R /XYZ 74.4095 793.4011 null] +743 0 obj << +/D [741 0 R /XYZ 74.4095 793.4011 null] >> endobj -414 0 obj << -/D [731 0 R /XYZ 195.1712 658.3383 null] +424 0 obj << +/D [741 0 R /XYZ 195.1712 658.3383 null] >> endobj -734 0 obj << -/D [731 0 R /XYZ 74.4095 602.8709 null] +744 0 obj << +/D [741 0 R /XYZ 74.4095 602.8709 null] >> endobj -730 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +740 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -739 0 obj << +749 0 obj << /Length 1800 /Filter /FlateDecode >> @@ -5681,15 +5712,15 @@ RϯW\<S j<1 lgV0`S"6.-+z.-Jw n1NtW%BjH)UiBSU;ǹ("T,P"խicUe,ItKZPW"/oNW# ECWJp>A)ek{Q]Y$YvlF[Jd%z*w{oɼhx+D*gSQ VEKSo/Kf$¥[#W* endobj -738 0 obj << +748 0 obj << /Type /Page -/Contents 739 0 R -/Resources 737 0 R +/Contents 749 0 R +/Resources 747 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 716 0 R -/Annots [ 741 0 R ] +/Parent 726 0 R +/Annots [ 751 0 R ] >> endobj -735 0 obj << +745 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5815,31 +5846,31 @@ tq($JKKnksd^X \y C쉪xɓi:wz*Wu̚Tpbsb5\t_G9=6lƌʿ!oeT txt QA@Dp@ޑjpendstream endobj -741 0 obj << +751 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [234.0218 311.9708 253.4627 322.553] /Subtype /Link /A << /S /GoTo /D (figure.2.25) >> >> endobj -740 0 obj << -/D [738 0 R /XYZ 74.4095 793.4011 null] +750 0 obj << +/D [748 0 R /XYZ 74.4095 793.4011 null] >> endobj 98 0 obj << -/D [738 0 R /XYZ 74.4095 771.7323 null] +/D [748 0 R /XYZ 74.4095 771.7323 null] >> endobj 102 0 obj << -/D [738 0 R /XYZ 74.4095 663.3429 null] +/D [748 0 R /XYZ 74.4095 663.3429 null] >> endobj -340 0 obj << -/D [738 0 R /XYZ 292.0113 399.7893 null] +350 0 obj << +/D [748 0 R /XYZ 292.0113 399.7893 null] >> endobj -737 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F66 572 0 R /F70 575 0 R /F62 578 0 R /F65 581 0 R >> -/XObject << /Im28 735 0 R >> +747 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F66 582 0 R /F70 585 0 R /F62 588 0 R /F65 591 0 R >> +/XObject << /Im28 745 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -744 0 obj << +754 0 obj << /Length 2100 /Filter /FlateDecode >> @@ -5859,15 +5890,15 @@ xYKsWȩ0|*oy8ʮj
4CÑIʛүO7Ia@_ht݀DODf& <vf*B# BvөM,؝ԁFJ5fCk|k*5{復3 T\JgZpuq{Inڭu<
@CJzK endobj -743 0 obj << +753 0 obj << /Type /Page -/Contents 744 0 R -/Resources 742 0 R +/Contents 754 0 R +/Resources 752 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 716 0 R -/Annots [ 746 0 R 747 0 R 748 0 R 749 0 R ] +/Parent 726 0 R +/Annots [ 756 0 R 757 0 R 758 0 R 759 0 R ] >> endobj -736 0 obj << +746 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5984,46 +6015,46 @@ zM AG㱘NHũiW$ɞ={N_9rD3uᯑ%%%칼<--ܯu̙{KWu}aߢ#<sUQSi/hXfAwmtF"틊UtZdS͊זcvq@X]t+
}njꫯ*X4as<xphu>9lvU<lذԼ<YFM!`撏;V8:prS$sQDNbo|ʁaCm^ldf?%?~jjjb~=^fX<m|0!`!
' {ҶOz
`/ZGSLx5}߱H1iK
Cd8aeĥm,.,`
-,`X,Ok"A,*%f" RIFu(kV4ωycӬIedd9:czXWOŜrQaP(D:T:/߁GfO'9mڴAd"b,FIFufMԦ&}:]\S;yi<$)|sCCĬ^5E@ėp̚O|ŠZ>S..bx^<4x:'A+++``J̊9U_D|BNרάY|gʏtqyOs:@dt4]]hPĬc^͊.'EI҉/UsxX|U7'լPfpHΰb
z5D٫;!x<w9zU7bլٱʖ:l4Y1U_N5^|GaAy1<GO$SRR***3|ƌE0%fŜ(_5} rQ;fLu:s̾1xifdCCF _Y-(IXrPIa
UNTL!99lS7 endobj -746 0 obj << +756 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [408.1445 518.2403 427.5853 528.8226] /Subtype /Link /A << /S /GoTo /D (figure.2.26) >> >> endobj -747 0 obj << +757 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [181.5419 342.4494 200.9827 353.0317] /Subtype /Link /A << /S /GoTo /D (figure.2.26) >> >> endobj -748 0 obj << +758 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [338.3391 204.3242 370.2252 213.0952] /Subtype /Link /A << /S /GoTo /D (cite.Vorlesung) >> >> endobj -749 0 obj << +759 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [396.1444 204.3242 422.4804 212.8889] /Subtype /Link /A << /S /GoTo /D (cite.Tanenbaum) >> >> endobj -745 0 obj << -/D [743 0 R /XYZ 74.4095 793.4011 null] +755 0 obj << +/D [753 0 R /XYZ 74.4095 793.4011 null] >> endobj -360 0 obj << -/D [743 0 R /XYZ 296.0371 569.5529 null] +370 0 obj << +/D [753 0 R /XYZ 296.0371 569.5529 null] >> endobj -742 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F66 572 0 R /F70 575 0 R /F62 578 0 R >> -/XObject << /Im29 736 0 R >> +752 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F66 582 0 R /F70 585 0 R /F62 588 0 R >> +/XObject << /Im29 746 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -753 0 obj << +763 0 obj << /Length 2239 /Filter /FlateDecode >> @@ -6043,15 +6074,15 @@ m8' '[g`=Kh̨)"L cɅe]rLhbVs0Yr0\32/92p<#Q&A%{Yԛ5oQTH8t,yM`l=j*Rosa<L0}GQ<i"4/Most.F!:8D3~&}gU4y{mh0!qm6@213E:O{ endobj -752 0 obj << +762 0 obj << /Type /Page -/Contents 753 0 R -/Resources 751 0 R +/Contents 763 0 R +/Resources 761 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 757 0 R -/Annots [ 755 0 R 756 0 R ] +/Parent 767 0 R +/Annots [ 765 0 R 766 0 R ] >> endobj -750 0 obj << +760 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -6171,35 +6202,35 @@ z *4o
A@VsRv}%H_|2Ҍnȧ_|aԍ>W^z> q(&p*->+Ґ{9Wn@AF
Gq'Yw:\=PiwF3gpdyNqvtt|@.dSi2Eif{-cWiHPꢢ"bu>/H sz$5553%A!40kOIwld#|#"#(aO) +
G 2A6n7l,n endobj -755 0 obj << +765 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [251.9837 625.5293 266.4393 636.1115] /Subtype /Link /A << /S /GoTo /D (table.2.8) >> >> endobj -756 0 obj << +766 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [162.0335 286.428 181.4743 298.5659] /Subtype /Link /A << /S /GoTo /D (figure.2.27) >> >> endobj -754 0 obj << -/D [752 0 R /XYZ 74.4095 793.4011 null] +764 0 obj << +/D [762 0 R /XYZ 74.4095 793.4011 null] >> endobj 106 0 obj << -/D [752 0 R /XYZ 74.4095 771.7323 null] +/D [762 0 R /XYZ 74.4095 771.7323 null] >> endobj -361 0 obj << -/D [752 0 R /XYZ 252.1563 336.3134 null] +371 0 obj << +/D [762 0 R /XYZ 252.1563 336.3134 null] >> endobj -751 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F62 578 0 R /F70 575 0 R /F66 572 0 R /F65 581 0 R >> -/XObject << /Im30 750 0 R >> +761 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F62 588 0 R /F70 585 0 R /F66 582 0 R /F65 591 0 R >> +/XObject << /Im30 760 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -760 0 obj << +770 0 obj << /Length 1917 /Filter /FlateDecode >> @@ -6220,45 +6251,45 @@ k9jh ='br|clRѶ=BEGGq8S)&ƏK @t LN' ,p^XJNJFKendstream endobj -759 0 obj << +769 0 obj << /Type /Page -/Contents 760 0 R -/Resources 758 0 R +/Contents 770 0 R +/Resources 768 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 757 0 R -/Annots [ 762 0 R 763 0 R ] +/Parent 767 0 R +/Annots [ 772 0 R 773 0 R ] >> endobj -762 0 obj << +772 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 333.3136 87.8688 343.8959] /Subtype /Link /A << /S /GoTo /D (table.3.1) >> >> endobj -763 0 obj << +773 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [128.8278 153.5425 143.2834 164.1248] /Subtype /Link /A << /S /GoTo /D (figure.3.1) >> >> endobj -761 0 obj << -/D [759 0 R /XYZ 74.4095 793.4011 null] +771 0 obj << +/D [769 0 R /XYZ 74.4095 793.4011 null] >> endobj 110 0 obj << -/D [759 0 R /XYZ 74.4095 771.7323 null] +/D [769 0 R /XYZ 74.4095 771.7323 null] >> endobj 114 0 obj << -/D [759 0 R /XYZ 74.4095 318.8119 null] +/D [769 0 R /XYZ 74.4095 318.8119 null] >> endobj 118 0 obj << -/D [759 0 R /XYZ 74.4095 216.2004 null] +/D [769 0 R /XYZ 74.4095 216.2004 null] >> endobj -758 0 obj << -/Font << /F26 206 0 R /F28 209 0 R /F61 259 0 R >> +768 0 obj << +/Font << /F26 214 0 R /F28 217 0 R /F61 267 0 R >> /ProcSet [ /PDF /Text ] >> endobj -767 0 obj << +777 0 obj << /Length 2022 /Filter /FlateDecode >> @@ -6273,73 +6304,73 @@ F]ꍄh;]@FC] [ˬI4v_Sp2o #RemK]l$7\U5Rn"h1T(2' s-hF.endstream endobj -766 0 obj << +776 0 obj << /Type /Page -/Contents 767 0 R -/Resources 765 0 R +/Contents 777 0 R +/Resources 775 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 757 0 R +/Parent 767 0 R >> endobj -764 0 obj << +774 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/prefs.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 769 0 R +/PTEX.InfoDict 779 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 267.00000000 265.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 770 0 R ->>/Font << /R8 771 0 R >> +/R7 780 0 R +>>/Font << /R8 781 0 R >> >> -/Length 772 0 R +/Length 782 0 R /Filter /FlateDecode >> stream xTN0+|Mđ*ĕġ<"$]<DET;n9pA$5NO`RD~o"AocO+~Ub&M@Y1(+vјj}Z[3(,
Sh[Q@$tj m:u9cOZ(!oHvjѕ wMMSϖiifZ*B4)Rc[b#4tN%ּ2A3IokeH endobj -769 0 obj +779 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212341Z00'00') -/ModDate (D:20080809212341Z00'00') +/CreationDate (D:20080809222039Z00'00') +/ModDate (D:20080809222039Z00'00') >> endobj -770 0 obj +780 0 obj << /Type /ExtGState /OPM 1 >> endobj -771 0 obj +781 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -772 0 obj +782 0 obj 526 endobj -768 0 obj << -/D [766 0 R /XYZ 74.4095 793.4011 null] +778 0 obj << +/D [776 0 R /XYZ 74.4095 793.4011 null] >> endobj -415 0 obj << -/D [766 0 R /XYZ 288.8373 559.4163 null] +425 0 obj << +/D [776 0 R /XYZ 288.8373 559.4163 null] >> endobj -362 0 obj << -/D [766 0 R /XYZ 296.9921 237.8998 null] +372 0 obj << +/D [776 0 R /XYZ 296.9921 237.8998 null] >> endobj -765 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im31 764 0 R >> +775 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im31 774 0 R >> /ProcSet [ /PDF /Text ] >> endobj -775 0 obj << +785 0 obj << /Length 2887 /Filter /FlateDecode >> @@ -6356,46 +6387,46 @@ d߉~?B')$c]i~yIT5uX=DoғiuVf&jRWC^ af1Ym1[з0*`oOA+)Nf fYm[ endobj -774 0 obj << +784 0 obj << /Type /Page -/Contents 775 0 R -/Resources 773 0 R +/Contents 785 0 R +/Resources 783 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 757 0 R -/Annots [ 777 0 R 778 0 R 779 0 R ] +/Parent 767 0 R +/Annots [ 787 0 R 788 0 R 789 0 R ] >> endobj -777 0 obj << +787 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [293.4206 517.0301 312.8614 527.6123] /Subtype /Link /A << /S /GoTo /D (figure.2.14) >> >> endobj -778 0 obj << +788 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [120.1496 481.1756 134.6052 491.7579] /Subtype /Link /A << /S /GoTo /D (table.3.2) >> >> endobj -779 0 obj << +789 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [425.2062 481.1756 439.6618 491.7579] /Subtype /Link /A << /S /GoTo /D (table.2.2) >> >> endobj -776 0 obj << -/D [774 0 R /XYZ 74.4095 793.4011 null] +786 0 obj << +/D [784 0 R /XYZ 74.4095 793.4011 null] >> endobj -416 0 obj << -/D [774 0 R /XYZ 205.0163 645.8849 null] +426 0 obj << +/D [784 0 R /XYZ 205.0163 645.8849 null] >> endobj -773 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +783 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -783 0 obj << +793 0 obj << /Length 2886 /Filter /FlateDecode >> @@ -6405,32 +6436,32 @@ xڝZjkV|ɇn?+,\g(KZzwS9o:H\dF -%`к3
kŏߡXΟ תَ{pdb'{㣡Yq4T>SrqIx vfMT3i0qB:T?ud禿fsF;缔gm\ rl[xX>~aq zE<#ӉϞLDH`P.UyVoOG7q:m'H7hLٺm{gK/dEeƗDpn[
@F;R|=i=
UGw-Dn]1u%ĩ͂7e@b3;zzݸŝNYj%eZt7͚%̵o`ſ2o"0P항0^U$R
=FyUt-U)CBƭ4y@!>å.5L_ FGaLM|#̯'?ݒWG1|xM7{`Cˬq45y9}?iq;vV2ÇҀh_G$ebmNg+DYW|m:͏t!FOE9aR,Q͡lnWD%u=bw|Qȝ}l
Evd5X[c*ĚW%(Bw`Kwul~#쌨8H/5W-6oU@7O@j "B2_]p^A m|o4ٻ. C16*^ADH*~Z?a"mxg=~ޞMf1LfL̬ezXUHXR)q{D endobj -782 0 obj << +792 0 obj << /Type /Page -/Contents 783 0 R -/Resources 781 0 R +/Contents 793 0 R +/Resources 791 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 757 0 R -/Annots [ 785 0 R ] +/Parent 767 0 R +/Annots [ 795 0 R ] >> endobj -785 0 obj << +795 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [212.6999 153.5425 227.1554 164.1248] /Subtype /Link /A << /S /GoTo /D (figure.3.2) >> >> endobj -784 0 obj << -/D [782 0 R /XYZ 74.4095 793.4011 null] +794 0 obj << +/D [792 0 R /XYZ 74.4095 793.4011 null] >> endobj 122 0 obj << -/D [782 0 R /XYZ 74.4095 240.8388 null] +/D [792 0 R /XYZ 74.4095 240.8388 null] >> endobj -781 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F26 206 0 R >> +791 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F26 214 0 R >> /ProcSet [ /PDF /Text ] >> endobj -789 0 obj << +799 0 obj << /Length 1819 /Filter /FlateDecode >> @@ -6446,85 +6477,85 @@ b}w]!8z5]g$yWpg!$=wb"/V6r`DKY =pCqcCA7%HgKb
i
ݹ kbJv+(UM踁0"(CeAi`5AByY|!!VT0qo{ I(%D
X7bLN/-#"o")_ W<VY-{Z}>lëAd~Hhk(Îjġ!4f7%#dWiV1LJ"+29\6m6F~8<f3㰌_hFj?
_Lӣ1p7AF6F~r12;'|H+
endobj -788 0 obj << +798 0 obj << /Type /Page -/Contents 789 0 R -/Resources 787 0 R +/Contents 799 0 R +/Resources 797 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 757 0 R -/Annots [ 791 0 R ] +/Parent 767 0 R +/Annots [ 801 0 R ] >> endobj -780 0 obj << +790 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/prefs-editors.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 792 0 R +/PTEX.InfoDict 802 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 392.00000000 248.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 793 0 R ->>/Font << /R8 794 0 R /R9 795 0 R >> +/R7 803 0 R +>>/Font << /R8 804 0 R /R9 805 0 R >> >> -/Length 796 0 R +/Length 806 0 R /Filter /FlateDecode >> stream xMS0:=P}ؖt,O/L!8@';˒LxBx^d捲+Nuד>OS|ϤbQ)a%cGg/o'6~ra8eN({֒={Uzcܶ.+Ӵsy鄺!xP[vzR r* 7!CS86l<Nq;ZMwZ!sEh1<ĬQꘔ4kLqA,<]wc7쑱XA zFs{"~aGD~VyXIpa WsަѥߛJm^?-*٣^.渂 X,Y]APΪHYr['+`q>nNa .,\*^:u1a Ƅh9z)Cbʓ endobj -792 0 obj +802 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212340Z00'00') -/ModDate (D:20080809212340Z00'00') +/CreationDate (D:20080809222039Z00'00') +/ModDate (D:20080809222039Z00'00') >> endobj -793 0 obj +803 0 obj << /Type /ExtGState /OPM 1 >> endobj -794 0 obj +804 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -795 0 obj +805 0 obj << /BaseFont /Helvetica-Oblique /Type /Font /Subtype /Type1 >> endobj -796 0 obj +806 0 obj 672 endobj -791 0 obj << +801 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 267.7641 92.854 278.3464] /Subtype /Link /A << /S /GoTo /D (figure.2.13) >> >> endobj -790 0 obj << -/D [788 0 R /XYZ 74.4095 793.4011 null] +800 0 obj << +/D [798 0 R /XYZ 74.4095 793.4011 null] >> endobj -363 0 obj << -/D [788 0 R /XYZ 282.3592 573.4694 null] +373 0 obj << +/D [798 0 R /XYZ 282.3592 573.4694 null] >> endobj -787 0 obj << -/Font << /F61 259 0 R /F28 209 0 R >> -/XObject << /Im32 780 0 R >> +797 0 obj << +/Font << /F61 267 0 R /F28 217 0 R >> +/XObject << /Im32 790 0 R >> /ProcSet [ /PDF /Text ] >> endobj -799 0 obj << +809 0 obj << /Length 1677 /Filter /FlateDecode >> @@ -6539,30 +6570,30 @@ je@bqǠt5b̢˂M,TDjM*8B[bwW^:2kCKSd z 23<
K!B6#= 9Z%pL)6hF4/z'pjgb4+aaC'8[o{20 endobj -798 0 obj << +808 0 obj << /Type /Page -/Contents 799 0 R -/Resources 797 0 R +/Contents 809 0 R +/Resources 807 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 803 0 R -/Annots [ 801 0 R ] +/Parent 813 0 R +/Annots [ 811 0 R ] >> endobj -786 0 obj << +796 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/events.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 804 0 R +/PTEX.InfoDict 814 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 544.00000000 374.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 805 0 R ->>/Font << /R8 806 0 R /R9 807 0 R >> +/R7 815 0 R +>>/Font << /R8 816 0 R /R9 817 0 R >> >> -/Length 808 0 R +/Length 818 0 R /Filter /FlateDecode >> stream @@ -6575,64 +6606,64 @@ lO*B
=NIDix)̌\AӌS|lezg1qYFT2n$^c E:x .$0NE$$Bm>þ|ͭ=nec)B!X!c9pYQH]@VN b+ZϯP H?1ދ}A8syV +8Th|S/p4P^%q%Ri ;t N?Z(N>*.`!U&@xdCendstream endobj -804 0 obj +814 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212342Z00'00') -/ModDate (D:20080809212342Z00'00') +/CreationDate (D:20080809222040Z00'00') +/ModDate (D:20080809222040Z00'00') >> endobj -805 0 obj +815 0 obj << /Type /ExtGState /OPM 1 >> endobj -806 0 obj +816 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -807 0 obj +817 0 obj << /BaseFont /Helvetica-Oblique /Type /Font /Subtype /Type1 >> endobj -808 0 obj +818 0 obj 1171 endobj -801 0 obj << +811 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [197.3896 197.918 211.8452 208.5003] /Subtype /Link /A << /S /GoTo /D (figure.3.3) >> >> endobj -800 0 obj << -/D [798 0 R /XYZ 74.4095 793.4011 null] +810 0 obj << +/D [808 0 R /XYZ 74.4095 793.4011 null] >> endobj 126 0 obj << -/D [798 0 R /XYZ 74.4095 771.7323 null] +/D [808 0 R /XYZ 74.4095 771.7323 null] >> endobj 130 0 obj << -/D [798 0 R /XYZ 74.4095 746.1189 null] +/D [808 0 R /XYZ 74.4095 746.1189 null] >> endobj -364 0 obj << -/D [798 0 R /XYZ 266.5136 365.8579 null] +374 0 obj << +/D [808 0 R /XYZ 266.5136 365.8579 null] >> endobj -802 0 obj << -/D [798 0 R /XYZ 74.4095 197.6162 null] +812 0 obj << +/D [808 0 R /XYZ 74.4095 197.6162 null] >> endobj -797 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im33 786 0 R >> +807 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im33 796 0 R >> /ProcSet [ /PDF /Text ] >> endobj -811 0 obj << +821 0 obj << /Length 2558 /Filter /FlateDecode >> @@ -6647,35 +6678,35 @@ xڽZݏ8_>lC{N1psNqIG9N Tp@x44ܷx 2wArmȼmoN<J<F:d~P1\$pLKniCOȗ @ucE/E50`H`W_l UZ6kbxvCJ.+A=mGnCcHS_P1zOE
LW?CqxϨQoxPX9DйQʚq`"
Kn=$p蒁KCQ'3()hCkz
p"f
4970Trm k="
@SWo3>gN l>&ܴH閸fҙUWD cALc ~yD;oo3.#cw=k/Lh X<y4_~~mgޠ:YҼ;N7t
6]mNi p-9:`;M)|L: WeJ:HThF aa'$!4PK-#HrlMSoOEb++t(B`qԥ2Ib9LP%075̥w<b+g34EA#}{d6k(Hp>g]Q*hԸh@]Gbd&kmI6ao,[eoKFԗ$9f._ q3\4&a}B(&Dó톞d^ÉrҽaB)+%b_}(sg*<<!$҉$#+(e1_+?gwx=Q&'2
T}2(
#cN X7g4
BWbAæWX`7t_endstream endobj -810 0 obj << +820 0 obj << /Type /Page -/Contents 811 0 R -/Resources 809 0 R +/Contents 821 0 R +/Resources 819 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 803 0 R -/Annots [ 815 0 R ] +/Parent 813 0 R +/Annots [ 825 0 R ] >> endobj -815 0 obj << +825 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [451.4247 225.2515 465.8802 235.8337] /Subtype /Link /A << /S /GoTo /D (figure.3.3) >> >> endobj -812 0 obj << -/D [810 0 R /XYZ 74.4095 793.4011 null] +822 0 obj << +/D [820 0 R /XYZ 74.4095 793.4011 null] >> endobj -813 0 obj << -/D [810 0 R /XYZ 74.4095 725.3863 null] +823 0 obj << +/D [820 0 R /XYZ 74.4095 725.3863 null] >> endobj -814 0 obj << -/D [810 0 R /XYZ 74.4095 278.4629 null] +824 0 obj << +/D [820 0 R /XYZ 74.4095 278.4629 null] >> endobj -809 0 obj << -/Font << /F61 259 0 R /F35 221 0 R /F28 209 0 R >> +819 0 obj << +/Font << /F61 267 0 R /F35 229 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -818 0 obj << +828 0 obj << /Length 2118 /Filter /FlateDecode >> @@ -6692,21 +6723,21 @@ xڭYQs~_Gj愒 -tFCC)g_>PߡvxzrkuK^h4U鴞ZreLRboazQyLz5!s~yB 9s<w6J>y̙KXt0FDF@`%ҟ:V{b,;EMLD>[ꪃ>ٍs.Gũ@/FP_3%K&Oendstream endobj -817 0 obj << +827 0 obj << /Type /Page -/Contents 818 0 R -/Resources 816 0 R +/Contents 828 0 R +/Resources 826 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 803 0 R +/Parent 813 0 R >> endobj -819 0 obj << -/D [817 0 R /XYZ 74.4095 793.4011 null] +829 0 obj << +/D [827 0 R /XYZ 74.4095 793.4011 null] >> endobj -816 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F35 221 0 R >> +826 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -822 0 obj << +832 0 obj << /Length 1657 /Filter /FlateDecode >> @@ -6717,24 +6748,24 @@ xڭXK6Ps;+S6iI͕ٕ%עf;Jm}ΎA 4
_WbٯfiшOv"g"ّ~!_HBhBq, ^?>-rH3EmFBzR{ cv`ıKc'5N/f#" skM3?k?GûMW[>T endobj -821 0 obj << +831 0 obj << /Type /Page -/Contents 822 0 R -/Resources 820 0 R +/Contents 832 0 R +/Resources 830 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 803 0 R +/Parent 813 0 R >> endobj -823 0 obj << -/D [821 0 R /XYZ 74.4095 793.4011 null] +833 0 obj << +/D [831 0 R /XYZ 74.4095 793.4011 null] >> endobj 134 0 obj << -/D [821 0 R /XYZ 74.4095 771.7323 null] +/D [831 0 R /XYZ 74.4095 771.7323 null] >> endobj -820 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F83 826 0 R >> +830 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F83 836 0 R >> /ProcSet [ /PDF /Text ] >> endobj -830 0 obj << +840 0 obj << /Length 2388 /Filter /FlateDecode >> @@ -6749,30 +6780,30 @@ vl~ uCNAkbu?<8*_xp=s֓cۀțҖ%nr
#@; C7pOSH|9:ں>t&%w
ɘ'GH(4=An78tK4bC'>Z.,Jшw-۹:YZp$&2"\I[Ј=Q!ڥKPGhDS u':EPI~ \1Ƈg0p(]&ː rstC 8Q,L'Ҝ1C)c_PA=:skDuEƔo(ȅ =^ɓ{^endstream endobj -829 0 obj << +839 0 obj << /Type /Page -/Contents 830 0 R -/Resources 828 0 R +/Contents 840 0 R +/Resources 838 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 803 0 R -/Annots [ 832 0 R 833 0 R ] +/Parent 813 0 R +/Annots [ 842 0 R 843 0 R ] >> endobj -827 0 obj << +837 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/core-time.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 834 0 R +/PTEX.InfoDict 844 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 283.00000000 176.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 835 0 R ->>/Font << /R8 836 0 R >> +/R7 845 0 R +>>/Font << /R8 846 0 R >> >> -/Length 837 0 R +/Length 847 0 R /Filter /FlateDecode >> stream @@ -6780,61 +6811,61 @@ xTMO1WSZ&p!Ⱥ ٶE~t_k\PҳwZdJpR _2Y[;^xvQn|uY2AINe#9I("v[XTcK} )yb0X6UpItߌ endobj -834 0 obj +844 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212342Z00'00') -/ModDate (D:20080809212342Z00'00') +/CreationDate (D:20080809222040Z00'00') +/ModDate (D:20080809222040Z00'00') >> endobj -835 0 obj +845 0 obj << /Type /ExtGState /OPM 1 >> endobj -836 0 obj +846 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -837 0 obj +847 0 obj 402 endobj -832 0 obj << +842 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [219.366 684.3387 233.8216 694.921] /Subtype /Link /A << /S /GoTo /D (figure.3.4) >> >> endobj -833 0 obj << +843 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [131.707 454.8241 146.1626 465.4064] /Subtype /Link /A << /S /GoTo /D (figure.3.5) >> >> endobj -831 0 obj << -/D [829 0 R /XYZ 74.4095 793.4011 null] +841 0 obj << +/D [839 0 R /XYZ 74.4095 793.4011 null] >> endobj 138 0 obj << -/D [829 0 R /XYZ 74.4095 771.7323 null] +/D [839 0 R /XYZ 74.4095 771.7323 null] >> endobj 142 0 obj << -/D [829 0 R /XYZ 74.4095 746.1189 null] +/D [839 0 R /XYZ 74.4095 746.1189 null] >> endobj -365 0 obj << -/D [829 0 R /XYZ 288.6243 503.1502 null] +375 0 obj << +/D [839 0 R /XYZ 288.6243 503.1502 null] >> endobj -828 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im34 827 0 R >> +838 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R >> +/XObject << /Im34 837 0 R >> /ProcSet [ /PDF /Text ] >> endobj -841 0 obj << +851 0 obj << /Length 2211 /Filter /FlateDecode >> @@ -6849,30 +6880,30 @@ xڝY_s
OGy&$Inlg9fdmd'l>}eIɦ7y0E ʉLCW#o?Uw|ыUN-Xf.5e)F
LDɱ՚oԨq'9DX0O]z7G\©XӳL+͙H*)yAއSW@6]~#vg};vQ 3%lu8.<xu?Ax/a6G!97Eo8_BڎlYB|2zpF^Wx[ؙA04+O
;H;1@"'ɫRxcBouendstream endobj -840 0 obj << +850 0 obj << /Type /Page -/Contents 841 0 R -/Resources 839 0 R +/Contents 851 0 R +/Resources 849 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 803 0 R -/Annots [ 843 0 R ] +/Parent 813 0 R +/Annots [ 853 0 R ] >> endobj -838 0 obj << +848 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/core.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 844 0 R +/PTEX.InfoDict 854 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 419.00000000 354.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 845 0 R ->>/Font << /R8 846 0 R >> +/R7 855 0 R +>>/Font << /R8 856 0 R >> >> -/Length 847 0 R +/Length 857 0 R /Filter /FlateDecode >> stream @@ -6884,48 +6915,48 @@ W:7Jq_f)uECZq!r +]ɦ8"
atB`c p{F1H\窩yz3(q<ΐ4Fԃ ENE> endobj -844 0 obj +854 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212341Z00'00') -/ModDate (D:20080809212341Z00'00') +/CreationDate (D:20080809222039Z00'00') +/ModDate (D:20080809222039Z00'00') >> endobj -845 0 obj +855 0 obj << /Type /ExtGState /OPM 1 >> endobj -846 0 obj +856 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -847 0 obj +857 0 obj 993 endobj -843 0 obj << +853 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [465.0447 375.8923 479.5003 386.4745] /Subtype /Link /A << /S /GoTo /D (table.2.2) >> >> endobj -842 0 obj << -/D [840 0 R /XYZ 74.4095 793.4011 null] +852 0 obj << +/D [850 0 R /XYZ 74.4095 793.4011 null] >> endobj -366 0 obj << -/D [840 0 R /XYZ 298.272 459.7927 null] +376 0 obj << +/D [850 0 R /XYZ 298.272 459.7927 null] >> endobj -839 0 obj << -/Font << /F61 259 0 R /F28 209 0 R >> -/XObject << /Im35 838 0 R >> +849 0 obj << +/Font << /F61 267 0 R /F28 217 0 R >> +/XObject << /Im35 848 0 R >> /ProcSet [ /PDF /Text ] >> endobj -850 0 obj << +860 0 obj << /Length 2789 /Filter /FlateDecode >> @@ -6945,24 +6976,24 @@ l![3>`ܚ͘嘤?wlb{]zR|H6_g9h3h30a!T:8 h'<<=p"җϢ}rCڡNaEi?l"BRW@v> Y͖QMʗ@^$yQ?MɴEwwАpK[Mq0> 93HK~Wh-,XX %%{2Lx>td"B9ůãNoendstream endobj -849 0 obj << +859 0 obj << /Type /Page -/Contents 850 0 R -/Resources 848 0 R +/Contents 860 0 R +/Resources 858 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 852 0 R +/Parent 862 0 R >> endobj -851 0 obj << -/D [849 0 R /XYZ 74.4095 793.4011 null] +861 0 obj << +/D [859 0 R /XYZ 74.4095 793.4011 null] >> endobj 146 0 obj << -/D [849 0 R /XYZ 74.4095 304.3451 null] +/D [859 0 R /XYZ 74.4095 304.3451 null] >> endobj -848 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F26 206 0 R /F83 826 0 R >> +858 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F26 214 0 R /F83 836 0 R >> /ProcSet [ /PDF /Text ] >> endobj -856 0 obj << +866 0 obj << /Length 1241 /Filter /FlateDecode >> @@ -6973,82 +7004,82 @@ aΕ6XaĴ:i
ri1Iyg~!g}sXrlϦ%MƚX: Hi 6`Lo R;q{n:5 (H?6FΎw3endstream endobj -855 0 obj << +865 0 obj << /Type /Page -/Contents 856 0 R -/Resources 854 0 R +/Contents 866 0 R +/Resources 864 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 852 0 R +/Parent 862 0 R >> endobj -853 0 obj << +863 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/protocols.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 858 0 R +/PTEX.InfoDict 868 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 472.00000000 312.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 859 0 R ->>/Font << /R8 860 0 R /R9 861 0 R >> +/R7 869 0 R +>>/Font << /R8 870 0 R /R9 871 0 R >> >> -/Length 862 0 R +/Length 872 0 R /Filter /FlateDecode >> stream xWMs0W-Hp`(M{6mRca<6z><u!c9~(rumv&cE[A;r<`8~ϗF`yr9eWدGv̾F]=#"c(SAZp&ET$X)s`\xw}8WUj>RT=pxW'!94FSg^PR!(@cن=BCICȓQwRt#CaVL&&>t۶S:n݈uU"!'/d/2,qe- T.UuC*Z\b:<)2|N<341QeLe+HF}Hqzխ"PvWpTP*
>Uj1Z#*cRy:l֟qQHe}XV"QD6Dtxz=FIxP!]Wv/J3Th$nbЮ1Z&le.)/nuh]:0*JCUNeIKV^0C2OfD{m$uwĢqYnk,)27SuB3D;V[Txޭg}`z'NǓ4%&qv'Z*aW8'F0` axNã%ꀏ.LtGB1H endobj -858 0 obj +868 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212341Z00'00') -/ModDate (D:20080809212341Z00'00') +/CreationDate (D:20080809222039Z00'00') +/ModDate (D:20080809222039Z00'00') >> endobj -859 0 obj +869 0 obj << /Type /ExtGState /OPM 1 >> endobj -860 0 obj +870 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -861 0 obj +871 0 obj << /BaseFont /Helvetica-Oblique /Type /Font /Subtype /Type1 >> endobj -862 0 obj +872 0 obj 954 endobj -857 0 obj << -/D [855 0 R /XYZ 74.4095 793.4011 null] +867 0 obj << +/D [865 0 R /XYZ 74.4095 793.4011 null] >> endobj 150 0 obj << -/D [855 0 R /XYZ 74.4095 496.4864 null] +/D [865 0 R /XYZ 74.4095 496.4864 null] >> endobj 154 0 obj << -/D [855 0 R /XYZ 74.4095 447.9615 null] +/D [865 0 R /XYZ 74.4095 447.9615 null] >> endobj -367 0 obj << -/D [855 0 R /XYZ 256.0589 155.0474 null] +377 0 obj << +/D [865 0 R /XYZ 256.0589 155.0474 null] >> endobj -854 0 obj << -/Font << /F61 259 0 R /F83 826 0 R /F28 209 0 R /F26 206 0 R >> -/XObject << /Im36 853 0 R >> +864 0 obj << +/Font << /F61 267 0 R /F83 836 0 R /F28 217 0 R /F26 214 0 R >> +/XObject << /Im36 863 0 R >> /ProcSet [ /PDF /Text ] >> endobj -866 0 obj << +876 0 obj << /Length 1861 /Filter /FlateDecode >> @@ -7067,15 +7098,15 @@ $Zo
w o</ yh^n~Y4qq,syz_lTt&!y?t,>fQA ElZjKHtϡ/UbZ!I.o mu4Siuze⮝. oȵ6몋>-uWɯ"o٬*5ȥ]x5ʦ 3m/ַdH}\x<ˡ6*9']d6eRi&{A|E)w3DZJ%ʉ%jUw*~Ahendstream endobj -865 0 obj << +875 0 obj << /Type /Page -/Contents 866 0 R -/Resources 864 0 R +/Contents 876 0 R +/Resources 874 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 852 0 R -/Annots [ 868 0 R ] +/Parent 862 0 R +/Annots [ 878 0 R ] >> endobj -863 0 obj << +873 0 obj << /Type /XObject /Subtype /Image /Width 400 @@ -7160,25 +7191,25 @@ OsL@6mڤj^y.+qRjx'G䬬Hײyh+WT?^"( Gš`ޑjQU?7
ei%WRCzW;ęRÐWxhcCxp@q(n<UIYFY,EQ>96vΜԶ+ G}g$&߬]̯|)ݱs״iĎ2տ+!!aԸKh^4Q)n "ofΚ79s~#..B5Sph_+!šh)pk3cF"0|\Y`w+7mh<;^+!(.Rn\HyXNzDJvÃ4{ĵp]oA%i87lGWVkV=K{.}/|_To~"]_߅'::gpO<C}I&L!ͥɽ"KiMk~ΦdQ3qmNz~єS_FCCV^1t㓿pxDc^ԢJ?Ĩ(k37Hnf5Mggd@Ŀ?-W:'O?:J~ߊ!"xhDpFV=&/$E[ѕ'LO|~gK#>(SxH;o=*x':ϧ^N!j*oMyX'O^zXw@5[X`-rk~)
UN
ԟ\nN\"Pm%$)s>ҫXD~7,SCl߅mU*zl?</YWjÖGKd_x2DMɽ"}=*anzk6(lA² [j?Z1sJ>n|?Misojo]"eӱGkūT9K`tժtCpٌ]"eӱGkū]Lg---<Z(^t.Ҳ£jUc[w0Kl:hZxut.Ҳ£jxxtl EQԀ(("("+F"()ȫ_PEQEQ*endstream endobj -868 0 obj << +878 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [134.2125 692.3312 148.6681 702.9135] /Subtype /Link /A << /S /GoTo /D (figure.3.8) >> >> endobj -867 0 obj << -/D [865 0 R /XYZ 74.4095 793.4011 null] +877 0 obj << +/D [875 0 R /XYZ 74.4095 793.4011 null] >> endobj -368 0 obj << -/D [865 0 R /XYZ 258.7823 204.7581 null] +378 0 obj << +/D [875 0 R /XYZ 258.7823 204.7581 null] >> endobj -864 0 obj << -/Font << /F61 259 0 R /F28 209 0 R >> -/XObject << /Im37 863 0 R >> +874 0 obj << +/Font << /F61 267 0 R /F28 217 0 R >> +/XObject << /Im37 873 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -871 0 obj << +881 0 obj << /Length 2508 /Filter /FlateDecode >> @@ -7193,21 +7224,21 @@ iʊ<FRsPb0u±3Pk=JY'l
P+9< κ[TLr.| 7rd9'g2 D$ppty]qj?9T[FWhls}zw:3xx) ^jGٯ)XAg*"[!Tm'*IpNhu=[nR3YUgYDtVBVk"V.}ZLEsq&Gr|} 2(0{HKЈ:SfKendstream endobj -870 0 obj << +880 0 obj << /Type /Page -/Contents 871 0 R -/Resources 869 0 R +/Contents 881 0 R +/Resources 879 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 852 0 R +/Parent 862 0 R >> endobj -872 0 obj << -/D [870 0 R /XYZ 74.4095 793.4011 null] +882 0 obj << +/D [880 0 R /XYZ 74.4095 793.4011 null] >> endobj -869 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F35 221 0 R >> +879 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -875 0 obj << +885 0 obj << /Length 2616 /Filter /FlateDecode >> @@ -7232,21 +7263,21 @@ A4
!Y!gCf(2
Wsj \$zìyV!ڜ,o!Ԏ!s>jڞU^OI%i oƙRBNP=jd<Fl^X,f{.e0)R&)#hs[3p4=ۣ1{i@g3KuB,>0!߶95mH&|e%ry/*Wk6W uj,4Gb9VQ{O$|`zK\!mΏ»cQV7CQ7'GH'1=_ݟGz%l8Sv^ZyT+_#8QosOaİ<٬BZQB-ҬAb) ,RU_JpW*bWOΝ^!JdD^!_v%Ø%sR: endobj -874 0 obj << +884 0 obj << /Type /Page -/Contents 875 0 R -/Resources 873 0 R +/Contents 885 0 R +/Resources 883 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 852 0 R +/Parent 862 0 R >> endobj -876 0 obj << -/D [874 0 R /XYZ 74.4095 793.4011 null] +886 0 obj << +/D [884 0 R /XYZ 74.4095 793.4011 null] >> endobj -873 0 obj << -/Font << /F61 259 0 R /F35 221 0 R /F28 209 0 R >> +883 0 obj << +/Font << /F61 267 0 R /F35 229 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -879 0 obj << +889 0 obj << /Length 2465 /Filter /FlateDecode >> @@ -7268,21 +7299,21 @@ F3(d ).M(u Q_ n\0H (rVOB'A/wLendstream endobj -878 0 obj << +888 0 obj << /Type /Page -/Contents 879 0 R -/Resources 877 0 R +/Contents 889 0 R +/Resources 887 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 852 0 R +/Parent 862 0 R >> endobj -880 0 obj << -/D [878 0 R /XYZ 74.4095 793.4011 null] +890 0 obj << +/D [888 0 R /XYZ 74.4095 793.4011 null] >> endobj -877 0 obj << -/Font << /F61 259 0 R /F35 221 0 R /F28 209 0 R >> +887 0 obj << +/Font << /F61 267 0 R /F35 229 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -883 0 obj << +893 0 obj << /Length 1706 /Filter /FlateDecode >> @@ -7298,27 +7329,27 @@ xڭXmo6_20q⫤Sڤk֦l1Y$wGR(i
Ea;=RGL2 #-k MT tCg0,σnJWX;]ȵLK*a[/4ZOEfiot_F]~VIygwa<얎dhgSRP?6oD`}%*NF- PDH;яD(y&rS˾0N$E endobj -882 0 obj << +892 0 obj << /Type /Page -/Contents 883 0 R -/Resources 881 0 R +/Contents 893 0 R +/Resources 891 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 886 0 R +/Parent 896 0 R >> endobj -884 0 obj << -/D [882 0 R /XYZ 74.4095 793.4011 null] +894 0 obj << +/D [892 0 R /XYZ 74.4095 793.4011 null] >> endobj 158 0 obj << -/D [882 0 R /XYZ 74.4095 721.6263 null] +/D [892 0 R /XYZ 74.4095 721.6263 null] >> endobj -885 0 obj << -/D [882 0 R /XYZ 74.4095 189.0886 null] +895 0 obj << +/D [892 0 R /XYZ 74.4095 189.0886 null] >> endobj -881 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F26 206 0 R /F83 826 0 R >> +891 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F26 214 0 R /F83 836 0 R >> /ProcSet [ /PDF /Text ] >> endobj -889 0 obj << +899 0 obj << /Length 1871 /Filter /FlateDecode >> @@ -7339,29 +7370,29 @@ kb4nK۾`h2uf~3]xz5xy>Կ|Mk5>}G+Öv_ -чx*B)@}V:4]hd"gx97 $^T3a%J)_V@1ԅz )#Ƌ0a3ZD^Փ_5;endstream endobj -888 0 obj << +898 0 obj << /Type /Page -/Contents 889 0 R -/Resources 887 0 R +/Contents 899 0 R +/Resources 897 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 886 0 R -/Annots [ 891 0 R ] +/Parent 896 0 R +/Annots [ 901 0 R ] >> endobj -891 0 obj << +901 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [484.3906 738.8587 498.8462 749.441] /Subtype /Link /A << /S /GoTo /D (figure.3.7) >> >> endobj -890 0 obj << -/D [888 0 R /XYZ 74.4095 793.4011 null] +900 0 obj << +/D [898 0 R /XYZ 74.4095 793.4011 null] >> endobj -887 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F83 826 0 R >> +897 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F83 836 0 R >> /ProcSet [ /PDF /Text ] >> endobj -894 0 obj << +904 0 obj << /Length 1429 /Filter /FlateDecode >> @@ -7377,21 +7408,21 @@ UcGo_%I$ cF49NYxA(OѦF C5T:oF,ŕ.J
`gcӝx~:evBɡxXznb0|ƉT&8<xPσNvT(LYǨ@^5>pc8bBLS88-r;y|`Ll+bW endobj -893 0 obj << +903 0 obj << /Type /Page -/Contents 894 0 R -/Resources 892 0 R +/Contents 904 0 R +/Resources 902 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 886 0 R +/Parent 896 0 R >> endobj -895 0 obj << -/D [893 0 R /XYZ 74.4095 793.4011 null] +905 0 obj << +/D [903 0 R /XYZ 74.4095 793.4011 null] >> endobj -892 0 obj << -/Font << /F61 259 0 R /F83 826 0 R /F28 209 0 R >> +902 0 obj << +/Font << /F61 267 0 R /F83 836 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -898 0 obj << +908 0 obj << /Length 1505 /Filter /FlateDecode >> @@ -7402,24 +7433,24 @@ xڵXo6_!jߒZ!Y!-:dKk [CT<}$@#)v][NYDE$*Sc u-zw8C xdKp <jS2rjZH5X.mBC8Nhycbӛ,UT i |z^ܚl<Pt71un-ǂ&ZU$TcSp8HsCd YaV5WįySB^ɖ7CØE,kO{WaeÂ^^dGJ1sXxF:-Bwvj17v1>+Eڪ~gSa}30LvP 6ŷu&'zUt[S2bs1 endobj -897 0 obj << +907 0 obj << /Type /Page -/Contents 898 0 R -/Resources 896 0 R +/Contents 908 0 R +/Resources 906 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 886 0 R +/Parent 896 0 R >> endobj -899 0 obj << -/D [897 0 R /XYZ 74.4095 793.4011 null] +909 0 obj << +/D [907 0 R /XYZ 74.4095 793.4011 null] >> endobj -900 0 obj << -/D [897 0 R /XYZ 74.4095 639.2486 null] +910 0 obj << +/D [907 0 R /XYZ 74.4095 639.2486 null] >> endobj -896 0 obj << -/Font << /F61 259 0 R /F83 826 0 R /F26 206 0 R /F28 209 0 R >> +906 0 obj << +/Font << /F61 267 0 R /F83 836 0 R /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -903 0 obj << +913 0 obj << /Length 1665 /Filter /FlateDecode >> @@ -7435,74 +7466,73 @@ II(=BjGjF^RLnI7іԮB!6Py\ľPL"Lpijf6'kn* ^4:аցvl>K4r_lۋ͎iGh +86R1We!endstream endobj -902 0 obj << +912 0 obj << /Type /Page -/Contents 903 0 R -/Resources 901 0 R +/Contents 913 0 R +/Resources 911 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 886 0 R +/Parent 896 0 R >> endobj -904 0 obj << -/D [902 0 R /XYZ 74.4095 793.4011 null] +914 0 obj << +/D [912 0 R /XYZ 74.4095 793.4011 null] >> endobj 162 0 obj << -/D [902 0 R /XYZ 74.4095 514.3766 null] +/D [912 0 R /XYZ 74.4095 514.3766 null] >> endobj -905 0 obj << -/D [902 0 R /XYZ 74.4095 414.8929 null] +915 0 obj << +/D [912 0 R /XYZ 74.4095 414.8929 null] >> endobj -906 0 obj << -/D [902 0 R /XYZ 74.4095 383.6522 null] +916 0 obj << +/D [912 0 R /XYZ 74.4095 383.6522 null] >> endobj -907 0 obj << -/D [902 0 R /XYZ 74.4095 352.3039 null] +917 0 obj << +/D [912 0 R /XYZ 74.4095 352.3039 null] >> endobj -908 0 obj << -/D [902 0 R /XYZ 74.4095 303.0283 null] +918 0 obj << +/D [912 0 R /XYZ 74.4095 303.0283 null] >> endobj -909 0 obj << -/D [902 0 R /XYZ 74.4095 273.3836 null] +919 0 obj << +/D [912 0 R /XYZ 74.4095 273.3836 null] >> endobj -901 0 obj << -/Font << /F61 259 0 R /F83 826 0 R /F28 209 0 R /F26 206 0 R /F35 221 0 R >> +911 0 obj << +/Font << /F61 267 0 R /F83 836 0 R /F28 217 0 R /F26 214 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -913 0 obj << -/Length 2394 +923 0 obj << +/Length 2154 /Filter /FlateDecode >> stream -xڝY[sۺ~[dߎ9iMj}@YĘ|xł)Ғ|Ō?14<1(Q0b
}~E]>Ň߭,VngR&c)LoM勥b|~9{uRySlro$g}jm66-bVO=q$(dw$p -OdٱIzg6)8i=-Ke|v4rn!:ՌD,wD?p
ktnW\s\#iihI4cLhWzB)a5vWAJ&-7yZ˰VBK̖"bF^B> -r^iT(BrTEJ%'@fMaSVUK'mOZx.#IJPMğ,1\esHErb}wBL# -}mBmY/茴M KFŸ+MBc]a[;pЏDMfaƾOfq$ tO%DT]/B${Hy8K*,|@W
M$p6>B!.FSL=8W=1@)qY7Cn̛\ -O5^:L@2#u˭ٸf`0O*b;z`CV!=ᓱ18χOkd'.Gk>|5=B`^(y'NN - +xڍYKs8W(U$6$&k/=P,3(qvA)ɕݍ~|݀ł?5<58U0b[X6ꈣ!퇏_X$,V/nR&)Lo7]#{W"'KV|)w4uR+UHe[nW^%)ex)ŬTzH&eqH2)Lie=Ȳc
Әbl"# RpP;z,[ެ"erv4v+ŗn%O*t
OY?w/y~$W,6 6 p.75z,Ky$`OF3%^?
H+ڱ_wH||YZV#S.JuDR7}x<>~Gǂa8JH]_jC#R֏r
&:r$h]QZ@W.x*Vph'@K)՟ut:ޝJMO2&d]5,+oA^s{[lY+Nj{emYr!]TܳI9:=:>gEIy^d#>)ޗ8r>#%"ߜχd.1=oSk]"_ "f<'TYUfE9g4BxBₗTdrBXԪgbL %|浫(/ߗn"!rgJAf SK@a3N#A$GP|t5L$O#y؟ARYpy}TӀy,OR'2x15U!^TWD}
ҧKԐ}Yb35i-K,{`~O445̔79*(p<>R=% (
MV!C26`6A6G-1J6 +R+N!PiH54[sZO*X~eiz(Qiq+T9%P8AaW=zz0e5Oi +j.C+ܶ!.~+ԋ+;WK&WMrlC +Kc~5]'v;85x&y 9^4z5sWP`c43Ǟml)GtR9p}cyD5WH/!⭭Y)H*{MԽc'_@vY@1@'K;; +y%}O\hRɬg99#/Lendstream endobj -912 0 obj << +922 0 obj << /Type /Page -/Contents 913 0 R -/Resources 911 0 R +/Contents 923 0 R +/Resources 921 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 886 0 R -/Annots [ 917 0 R 918 0 R 919 0 R 920 0 R ] +/Parent 896 0 R +/Annots [ 927 0 R 928 0 R 929 0 R 930 0 R ] >> endobj -910 0 obj << +920 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/simulator.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 921 0 R +/PTEX.InfoDict 931 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 443.00000000 256.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 922 0 R ->>/Font << /R8 923 0 R >> +/R7 932 0 R +>>/Font << /R8 933 0 R >> >> -/Length 924 0 R +/Length 934 0 R /Filter /FlateDecode >> stream @@ -7511,166 +7541,264 @@ a,5#\FEvFA;r?]W{;MLI,AԈ"yɗ/P$mDAw.) y x2Sta3 )N#;=&?<BVj=A endobj -921 0 obj +931 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212340Z00'00') -/ModDate (D:20080809212340Z00'00') +/CreationDate (D:20080809222038Z00'00') +/ModDate (D:20080809222038Z00'00') >> endobj -922 0 obj +932 0 obj << /Type /ExtGState /OPM 1 >> endobj -923 0 obj +933 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -924 0 obj +934 0 obj 979 endobj -917 0 obj << +927 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [265.8494 609.1539 280.305 619.7362] +/Rect [265.8494 553.6176 280.305 564.1999] /Subtype /Link /A << /S /GoTo /D (figure.3.8) >> >> endobj -918 0 obj << +928 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [448.8126 304.1833 463.2682 314.7656] +/Rect [448.8126 243.1787 463.2682 253.761] /Subtype /Link /A << /S /GoTo /D (figure.2.1) >> >> endobj -919 0 obj << +929 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [361.8513 268.3289 376.3069 278.9111] +/Rect [361.8513 207.3242 376.3069 217.9065] /Subtype /Link /A << /S /GoTo /D (figure.2.3) >> >> endobj -920 0 obj << +930 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [504.4211 214.5472 518.8767 225.1294] +/Rect [504.4211 153.5425 518.8767 164.1248] /Subtype /Link /A << /S /GoTo /D (figure.2.5) >> >> endobj -914 0 obj << -/D [912 0 R /XYZ 74.4095 793.4011 null] +924 0 obj << +/D [922 0 R /XYZ 74.4095 793.4011 null] >> endobj -915 0 obj << -/D [912 0 R /XYZ 74.4095 771.7323 null] +925 0 obj << +/D [922 0 R /XYZ 74.4095 771.7323 null] >> endobj -916 0 obj << -/D [912 0 R /XYZ 74.4095 721.9277 null] +926 0 obj << +/D [922 0 R /XYZ 74.4095 721.9277 null] >> endobj 166 0 obj << -/D [912 0 R /XYZ 74.4095 680.6164 null] +/D [922 0 R /XYZ 74.4095 674.1291 null] >> endobj -369 0 obj << -/D [912 0 R /XYZ 288.445 388.8453 null] +170 0 obj << +/D [922 0 R /XYZ 74.4095 623.5896 null] >> endobj -911 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F26 206 0 R >> -/XObject << /Im38 910 0 R >> +379 0 obj << +/D [922 0 R /XYZ 288.445 330.5749 null] +>> endobj +921 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F26 214 0 R >> +/XObject << /Im38 920 0 R >> /ProcSet [ /PDF /Text ] >> endobj -927 0 obj << -/Length 2654 -/Filter /FlateDecode ->> -stream -xڭYKs8WHUEg<7[+\{,bLQ*>v/˙-
4F[8UiS
!VW|_d7^x3/Gb4a%Ud"eٹhM8 [oB7sijS7"*_ëPrDda8v=nC)-]~LE]p")=Ԫւ[|ǵ\0 -2Y[.XJ_6:ၩsQߩ(S*An;Tm֊QA{m6"ftuYe)Jx-{Pc[1J.l2lgNR][7erC^QGjѲU465v6`Bi?LY=:Xf
zO0%u -
}k6ka+v&`*MNźvH?C}fg;d-jem@qm ڭgj] `9tb_e7:Ѳ)\{CL7꾲7;\bWELQbIcWgS69sǜLv,U`:E<F::Cc`= -xpocRuѯ6ƷD)f"M_ER! -A@5-}jNlg`2zЙLe*YYU6]nJāv31lE~)<@cr .Qs{48gy=2DȃMotr2v쳵tG'cf;o't;kWoxl[aܮ?X?~kdT%K/s\rB9SkZ.фOD}M2pkgmad"@otF7ef6lk\]@aKsH&~ov -T#v)`bYCb][֩Pߟ:HmA|e߉t>d_%UQOv%a8jh{
ժ3YHBn}C ϪBdEq.&}
k(EFhX.4n"WښJ﹚c,C[K=E=x,*+"~.RƵ 3n>t=J|}w&hl;~9://\&~}
.=6fۑ*(3~-~x|р@?~XJd1E}N%Dn[>[G~Xj1!Yzt*'0
`(v,t{w)剘T#+qEqȓ9ᤅRlmt .diML@^%.4y_y*\j#LI뫩D oa=֊)( @J}.9Q͍3++Wu}C>{tdLҬQs.aXZOKH,Q,*maW
M%2[rJFn\ާg7˨|y1L|uRZJkKɘէ9
3ۡSfАgqTk}VթMWZ> -zvUkeG`KpW#XIx!x7/xYCE
ܧ'
jIi/D@x!9H%Bx(x)<p>+Hendstream +937 0 obj << +/Length 2820 +/Filter /FlateDecode +>> +stream +xڕYs8_ᷓgbDsKvf舑U˲G_ +n;M$ֆܯ8qj+kߙBYSa5"f-OuĶ[NNjwR7[֏ԅLa,+K68Ac"\i9J{S֠yUAZ]*,ЖudٖQm/#?OkGpa +ݯS4s8TbȩXy*ֶx=_Ӕws*Sl`֓
Zaڸ$| +8vT4*KC^lrы2![kuَqNYZE!~ +0((8[d|Wd d
qX(-P +@$6,CJx'j{!26uUdN#FDZ@BfgW4ZPM:@
J ZhxT[<dj!E[cs
N^A 9;{]"^3VtOhVmWXRf7;* +L#(\lT3[;К[ŹQBt+ZpfnK]U[庥D U.=vП6)0qRzK7ۂ_egH}ro(x +!yEFy%YC^gc ,JP$B<H{o" aE<Teqt?Úx%^MX^(NQ8Sb^b N1yP=3+HD!tRS_t@Xg't7.)qZI)<aFrf4"TUN-# +bh7a +@d42n3Q +6n?x ܵrF"EI<5*1BfK֖s p3:Ve4KO=6'OJɉk`;m[i,H)0P$d@rjڼ0{}jKO.*L~i!GjOǨlзb'1 +"ByL͚Ѿq/I*LJǾRz_A%2Pd1)ӱA?hrc Y'Յj\πOԷi,2jB%̏Zl̃hj̈́ +} +/w
\BEO5+),o4 {Yed +LFVݿK}i(O4,&]9ߣ`%=}( +}M爐uOO{Oc1pzH|LdpX
g'YaKqfoG\U6&8m +LIH$:.E/͈H.ړ1R'+9'0w:rPϽ +ZT9WK3̋8|EC:_YH(H׳lTo*7ԕE72)TreR +,:Kb[!4"d#?.M_@ckoGSsK}πEH}c +~<KOB条 +9Wy[i'}< +\%z5Mn@v#w0^٧Y]33\nF'ݺ/B(+khNSwk3DžMg 6endstream endobj -926 0 obj << +936 0 obj << /Type /Page -/Contents 927 0 R -/Resources 925 0 R +/Contents 937 0 R +/Resources 935 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 932 0 R -/Annots [ 929 0 R 930 0 R 931 0 R ] +/Parent 941 0 R +/Annots [ 939 0 R 940 0 R ] >> endobj -929 0 obj << +939 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [272.4759 691.3758 286.9314 701.958] +/Rect [276.5694 635.4397 291.025 646.0219] /Subtype /Link /A << /S /GoTo /D (figure.2.4) >> >> endobj -930 0 obj << +940 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [433.3684 590.1111 447.824 600.6934] +/Rect [438.4261 532.0207 452.8816 542.6029] /Subtype /Link /A << /S /GoTo /D (figure.2.8) >> >> endobj -931 0 obj << +938 0 obj << +/D [936 0 R /XYZ 74.4095 793.4011 null] +>> endobj +174 0 obj << +/D [936 0 R /XYZ 74.4095 358.2087 null] +>> endobj +935 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F26 214 0 R /F35 229 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +944 0 obj << +/Length 2640 +/Filter /FlateDecode +>> +stream +xڭko +:ؘHu^vn{W,-蘑r`J\~}g8b9ys""LYH20\~lC>7eq,."Sv^oz,j]<IQ, +M.qeS_zấq_Ǭ1Q,B=r(cIH"Z!ˢ㙲R
t)YrG:Ӟ +E{$p@絮.hBH5o֍Oat\`{=;X\NP>! +|]hª +0vB=`l(F6[!e9mBV+n(Ԉ
Ñ֒{]zcv"~z-(|YNbݜ=ePV0@{B{p=Ar쁗M*6KR$%I0psTr_ӌegC*1]l!J^=>"X%iO긱6UGKFѠi.[?T.nwSv`BtY:VzA[2]hՎOR
B/1d~df4_t\æFԺv1{s09~?jc:o'#jL95Q[",6QN"9IB(B,*oʥw +ÄNwvdH@kD'>9ݕ; 툜
7qrޣBsE \ygEQgB&A3ɣLsT;g::L}W>$qaB#-ue~zv>!aˊdw\ +endobj +943 0 obj << +/Type /Page +/Contents 944 0 R +/Resources 942 0 R +/MediaBox [0 0 595.2757 841.8898] +/Parent 941 0 R +>> endobj +945 0 obj << +/D [943 0 R /XYZ 74.4095 793.4011 null] +>> endobj +946 0 obj << +/D [943 0 R /XYZ 74.4095 445.6421 null] +>> endobj +947 0 obj << +/D [943 0 R /XYZ 74.4095 420.4659 null] +>> endobj +948 0 obj << +/D [943 0 R /XYZ 74.4095 392.3354 null] +>> endobj +949 0 obj << +/D [943 0 R /XYZ 74.4095 364.68 null] +>> endobj +950 0 obj << +/D [943 0 R /XYZ 74.4095 338.3607 null] +>> endobj +951 0 obj << +/D [943 0 R /XYZ 74.4095 294.6701 null] +>> endobj +952 0 obj << +/D [943 0 R /XYZ 74.4095 248.0176 null] +>> endobj +942 0 obj << +/Font << /F61 267 0 R /F35 229 0 R /F28 217 0 R /F66 582 0 R /F65 591 0 R /F62 588 0 R /F70 585 0 R /F83 836 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +955 0 obj << +/Length 2504 +/Filter /FlateDecode +>> +stream +xڭko +XKZ A6pM?#k#K(_p$\q!93?F^$x! +aK@ +a߶y?^q,);b7>$" +ffY*{ +1]hNKp]4Rژh(c/d j$MB/~JF!0fɞ +#м(O4RTEW.,mnzXo&̏"/E2!bb-GƒIu'D@91"裪8UX~Aw; +3%('X7/g+yL>B#I)<<Wi8S'kg^}ڙ +BӳQ)uUݖ7]Sԭ^\Mܠɲ?-2lnm%Hrǝ\מ3bZZ;HhO
.Ƕ|vyp0˖.38dBцMՐsoJE <N2*\è(pW+ߔd8M/ +:6V[6rquK~U:$i^2_PMxcMn16# D#_g Q +endobj +954 0 obj << +/Type /Page +/Contents 955 0 R +/Resources 953 0 R +/MediaBox [0 0 595.2757 841.8898] +/Parent 941 0 R +/Annots [ 957 0 R ] +>> endobj +957 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [234.7769 300.1955 249.2324 310.7777] +/Rect [231.3512 493.761 245.8068 504.3432] /Subtype /Link /A << /S /GoTo /D (figure.3.9) >> >> endobj -928 0 obj << -/D [926 0 R /XYZ 74.4095 793.4011 null] +956 0 obj << +/D [954 0 R /XYZ 74.4095 793.4011 null] >> endobj -170 0 obj << -/D [926 0 R /XYZ 74.4095 418.6799 null] +178 0 obj << +/D [954 0 R /XYZ 74.4095 605.4094 null] >> endobj -925 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F26 206 0 R /F35 221 0 R >> +953 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F65 591 0 R /F70 585 0 R /F62 588 0 R /F26 214 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -936 0 obj << -/Length 1738 +961 0 obj << +/Length 1396 /Filter /FlateDecode >> stream -xڭXKs6WHDc'u2&(`SG.)JNfbX|YY"35K2DVp.b,}q{}Rűݮg\(S(- ->另|4lPa\McwnH}}vx8sv>#o%I/WmBW1Q^m<ρдeϖ!0B-}ULRʼn)JЫwE7ۼg{J/=M˼Ӧ-RJMT9_on^?~y'ِ{ݳH;<qwu;]K
G㸴#д\u@O)h?N4to(tD|
r6u 7v'3Ο3uE@-x U$(L}>k:K+v'atU8C_2Gs[ێ}KoF9`R+oȗ;!e14Q4FQ+ -*PC܀^Dp;_;&7c:OI[FaàB9ǎA(Iӝ5>G%R;
k5r$촙-P6;u]{9AA^흘CdZtpUps"i7yCqz9UUuۮ6!'RYW:RP -Dh9?\h
Vh\yj9wEmteK - -v8hXqGl/# qE") -,qX1
˘LSѴ%LAo|4e1200\6\B?HhnqSAP/X&E8PUA8Q4LXe1P)꠨>jCcmc}Lr̵4I\;`=8Tk_ρub5oGZl;0R7--1.{\IȁT7.DX`Cוa]jdILSo_-'o$xό^ - r0)tb$~agCK ;`
<V+ۖWc=4%Q>6v#ݡ 4#ZthF\/|,}0KT'"*}&WeLcdr,;z:t"nWε&/2}[2S?X ?gei$AM/N54e~ OTlp2V<T4<3w,endstream +xڭWIs6WprfL)'c78Je$Pއ4%QNf<ay$Hg(Ò'd $Y'8YݛDڴ#Nԯo&H +%7w eт'7ˏwF[URSf)xzU8Xo*VժOj)F.Q{V:{"JH>\{mF|☑ȷcD +~6ë#dgҁJcԈ#Dk`ҏ|FR[u7"ȫgxz}t
Xͺ,UMRF,ϒHzYU1[W6b-7Yk^lX +v\&O)idVI5\
VJq8.,0b=ˮ08F +Յ2欯KFn, +'ɞt;k^7MڝݕӒ-\\hW(ek:(_12>0˨p$l9*h]ρYKrީB ŮǾ2 aq gm*|E_QU8g?Z zd:*8IG)ѯ} endobj -935 0 obj << +960 0 obj << /Type /Page -/Contents 936 0 R -/Resources 934 0 R +/Contents 961 0 R +/Resources 959 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 932 0 R +/Parent 941 0 R >> endobj -933 0 obj << +958 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/serialize.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 938 0 R +/PTEX.InfoDict 963 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 507.00000000 318.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 939 0 R ->>/Font << /R8 940 0 R /R9 941 0 R >> +/R7 964 0 R +>>/Font << /R8 965 0 R /R9 966 0 R >> >> -/Length 942 0 R +/Length 967 0 R /Filter /FlateDecode >> stream @@ -7679,112 +7807,135 @@ xWN@}W[]!$*ѪR% 3`i3C%0!$76-?U,J?9Ġ{XnܑA(83pE;|?rCDk"uH]O#WSw̟7i$kRH3GQZ&[=2z&n&m} +pas7ߊ` v֦c7Ԫ)~|`&[yN2TAw\-&had&_r|ʿ;)Γ5CF)m̦1|SJ7;gӍendstream endobj -938 0 obj +963 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212342Z00'00') -/ModDate (D:20080809212342Z00'00') +/CreationDate (D:20080809222041Z00'00') +/ModDate (D:20080809222041Z00'00') >> endobj -939 0 obj +964 0 obj << /Type /ExtGState /OPM 1 >> endobj -940 0 obj +965 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -941 0 obj +966 0 obj << /BaseFont /Helvetica-Oblique /Type /Font /Subtype /Type1 >> endobj -942 0 obj +967 0 obj 1017 endobj -937 0 obj << -/D [935 0 R /XYZ 74.4095 793.4011 null] +962 0 obj << +/D [960 0 R /XYZ 74.4095 793.4011 null] >> endobj -370 0 obj << -/D [935 0 R /XYZ 235.423 280.9331 null] +380 0 obj << +/D [960 0 R /XYZ 235.423 484.607 null] >> endobj -934 0 obj << -/Font << /F61 259 0 R /F28 209 0 R >> -/XObject << /Im39 933 0 R >> +959 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F83 836 0 R >> +/XObject << /Im39 958 0 R >> /ProcSet [ /PDF /Text ] >> endobj -947 0 obj << -/Length 2363 +972 0 obj << +/Length 2918 /Filter /FlateDecode >> stream -xڭYY۸~_T5q<*O5Ļegg<a$z(RKdRF(Q>)K8>npDៈҘ<Q+=xӮW?$"X$qtI̤8_W+fŖ+2f4}eJlx~<_Kβ$_l',IdxgHկh
?^qLG0L乌vW#_6 @'#a~8L)# 87|r)bIlg9Z^1ҡCYWUj]T/fM+ʏ骢\wwaz{~9W$,vG-?L#涵 T8<kj=["?̾چMg&̕MZksEgy&۶6EkEmb_Ǻpﻪ`1$w^M̬&me/ -wѲ?wy=ڝyoMB(V94"Y`LF+Q -WxWaJ݆h֞fHS
_` <mRa;)2̀ 1Ws5":{@3 -/g@bcm
]hP3x'p;*xj1ņEs#Ý zgo -(ſ|P,endstream +xڕZKs8WxoT% );;٩da<ʂ%#ntKS9~}E +YVpAFQkjY7uW#xT +lcÃ.wpItk8Iiڔ["kSf-.ߠ..ko3NUl6%o6s-`cV*;:9+K
mmjܗϐQc^2Zk7fG}ꐣF,;7LXC
,/\Q6m^:[zv534W V«xnk4Kl_ҍ)0$2/ea٭pjQDP;E$%G{Ԇ7?g1]Z9^Mm)s+'AE +FnGx5XkK_CAR)%BikDF<Ly-d%@6K2"75 H/ +Gƽ^hٚ"HSȥƨqM`NJ#^X7 +lqyٌbB3{uu4Iҥ+='. X,8JkrJi*=(.ꪭF'<l KxXP@A[zw+g3$;7}a%
_rKK%ơ<!ӼTtWJSp)$+T~.7r"AMH6xkֵqi1D
J3B +枯#Sg=4lLb + +-v^&îG?G
<V?siB:eҶ48aUC,cԀ*c\ܤB&QWB̮b%u endobj -946 0 obj << +971 0 obj << /Type /Page -/Contents 947 0 R -/Resources 945 0 R +/Contents 972 0 R +/Resources 970 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 932 0 R -/Annots [ 949 0 R ] +/Parent 941 0 R +/Annots [ 974 0 R 975 0 R 976 0 R ] >> endobj -949 0 obj << +974 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [496.9433 207.3242 516.3841 217.9065] +/Rect [496.9433 484.1117 516.3841 494.6939] /Subtype /Link /A << /S /GoTo /D (figure.3.10) >> >> endobj -948 0 obj << -/D [946 0 R /XYZ 74.4095 793.4011 null] +975 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [316.584 315.5611 336.0248 326.1433] +/Subtype /Link +/A << /S /GoTo /D (figure.3.11) >> >> endobj -945 0 obj << -/Font << /F61 259 0 R /F83 826 0 R /F28 209 0 R /F35 221 0 R >> +976 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [454.1307 315.5611 473.5715 326.1433] +/Subtype /Link +/A << /S /GoTo /D (figure.3.12) >> +>> endobj +973 0 obj << +/D [971 0 R /XYZ 74.4095 793.4011 null] +>> endobj +182 0 obj << +/D [971 0 R /XYZ 74.4095 394.6336 null] +>> endobj +970 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F35 229 0 R /F26 214 0 R >> /ProcSet [ /PDF /Text ] >> endobj -952 0 obj << +979 0 obj << /Length 355 /Filter /FlateDecode >> stream -xڍN0}C$N
4@7aceԎm]1R#IaxH93\ÁHe{t`Nm])Qbm=1ixfrWTI"Ɠhz]uڕWe?Fwy_2#`82wC9 - -)t~w\5x^V +xڍ=O@!ƾ +"bhi"%¯B>5ATI`xHX
֫p Ub/l鐾͢{&3k}H'4[Omq$ + Ƴ"oj[U9Wu=FwY_H,/56lE* ҧRX2i)kR4v!N{pyQ>H,$Ddn:3ĨI +B7w[/eB/rUN0aO([-p(`};sMZd6 +`/fJ?]u=z l$[t$;Yendstream endobj -951 0 obj << +978 0 obj << /Type /Page -/Contents 952 0 R -/Resources 950 0 R +/Contents 979 0 R +/Resources 977 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 932 0 R +/Parent 941 0 R >> endobj -943 0 obj << +968 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/sequence-serialize.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 954 0 R +/PTEX.InfoDict 981 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 1286.00000000 1083.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 955 0 R ->>/Font << /R8 956 0 R >> +/R7 982 0 R +>>/Font << /R8 983 0 R >> >> -/Length 957 0 R +/Length 984 0 R /Filter /FlateDecode >> stream @@ -7793,78 +7944,79 @@ xWK8W-Юޏ=.ii'!u@}ER+. ɏH?2Z0k| q0ӈQQ.7 =BA5֖䯤t@PѮ DKkφi0bpsQ5 endobj -954 0 obj +981 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212340Z00'00') -/ModDate (D:20080809212340Z00'00') +/CreationDate (D:20080809222038Z00'00') +/ModDate (D:20080809222038Z00'00') >> endobj -955 0 obj +982 0 obj << /Type /ExtGState /OPM 1 >> endobj -956 0 obj +983 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -957 0 obj +984 0 obj 1025 endobj -953 0 obj << -/D [951 0 R /XYZ 74.4095 793.4011 null] +980 0 obj << +/D [978 0 R /XYZ 74.4095 793.4011 null] >> endobj -371 0 obj << -/D [951 0 R /XYZ 284.7621 135.6551 null] +381 0 obj << +/D [978 0 R /XYZ 284.7621 135.6551 null] >> endobj -950 0 obj << -/Font << /F61 259 0 R /F28 209 0 R >> -/XObject << /Im40 943 0 R >> +977 0 obj << +/Font << /F61 267 0 R /F28 217 0 R >> +/XObject << /Im40 968 0 R >> /ProcSet [ /PDF /Text ] >> endobj -960 0 obj << -/Length 2173 +988 0 obj << +/Length 1662 /Filter /FlateDecode >> stream -xڕYs6_#S yzsTSu{`<&f&NZh``Mu7A?4P(J,(
WQw?Ѯ{w%
JɃ fIL
^NuZDQиiZ꽮B75ڭwqD)osI*XǔH!JbUe@cR*NN"%JتĈrzSO+y)jur\8}z`7^(<U[Uyi4_S$Xh@%'hJTMRqJ~|vbEr:Xu3}fqQbPF(*% -6]QH6&)"]oE$bGdӻ1(Hʼn<Sj6g -n$[1ge -4|D۟+jpR[ͅ1vdADljOvrbN -7"$b<L"#fJ4>VRGd_pR"JJU02EjAmFY"w&D9#Jz#yeDT%NH@ҋ©ٺvDIB/W-+2g" -dB$<VըWsU؊:6o-. 6֡0N?0)*}+_YWƾ蠖=>i2Pݬ26+][[<7<1i0"VHxőhJ
Y-#2ER]@
OzԘpG>tKYetLKv?xY&(AO,uL9:A;@^Ԏ\=ü/7N 5z/(rӮ\|>dՅfHt)b4\`ygba~vwx0)p-݊]\vjnIDVЯI0.'[t%Gr=!?LW2k8U>.i[StDܗa~+Wgz,v>A_L쾯Wm6$P+w.cuK\Cɤ} -5
TUA5L7]a0O7W3SDLĒ KVpqU~6ZcʅvuHu!Z=R^uu>ZG\702*K> ~3we7{K>DQ\yn!*0jQ>{=t$-zȷ -t<
)Sh:3ɂT|֓-ףNِsa)ǎ,ьPcv}I+yJ"E6L @뇆Ǻ._eˌrк,/ۄ(vډm;~IaJcWaazy_g0:f4ejbklU&uBf~Yg
|5ؚݲgҟpqz .ӗgDoll -7Z總̱9y +xڥXs6~_Gb[R%kntһ-{#,K)K%˖lw]C +0ܯh_Qw7g,HHn. gMo?OSјr8 E0(\=fe0YT?o>]$њRj"3uJDpt,e@׀XKтC/ח+ɂYL9Qt;%rґ\H8
"M)Qq{Cz\s};12w^fw81=1ݜ1EfrihgW i-4EiGjJ4N&;1D%*5u6 +$eBLgҊ蘦 +Rܙ2H=̝x +{%meWa]Ꮛ)Ua_f/Nh敳捍XLR#9rBVfb&6ek&/eq]VU2~;hL2ffY@^jm۩0 + +A3Wl|;w"/[ݺw
a5Cۚbk/JM.H,(_xY*ljli|2+uϐ_@ӎ$ݴ{÷w0ZJW=[J"CbS>H4wvUx_ +[[&::qJbvoHP70<{!2`apuq
m!L6Ox D۲4z@)^iTKUKL7ߓg +a!/G[+Daw(_#\sZfti75ۼkýX
@]*
AT[tvRAgρ.kWװMï 7.ΧUwTCE<lrSELF$L9z +GRzI9ъC%`}ۮendstream endobj -959 0 obj << +987 0 obj << /Type /Page -/Contents 960 0 R -/Resources 958 0 R +/Contents 988 0 R +/Resources 986 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 932 0 R -/Annots [ 962 0 R 963 0 R ] +/Parent 990 0 R >> endobj -944 0 obj << +969 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/utils.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 964 0 R +/PTEX.InfoDict 991 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 408.00000000 192.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 965 0 R ->>/Font << /R8 966 0 R >> +/R7 992 0 R +>>/Font << /R8 993 0 R >> >> -/Length 967 0 R +/Length 994 0 R /Filter /FlateDecode >> stream @@ -7875,104 +8027,45 @@ xWKs0W "g<KuNWIYC7݇>RZ$uG7YA,3ȅpjo0fL7r_9Π0>c`'dEt8.'bs9iw}uN!<'E)"h ""J$2i endobj -964 0 obj +991 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212341Z00'00') -/ModDate (D:20080809212341Z00'00') +/CreationDate (D:20080809222039Z00'00') +/ModDate (D:20080809222039Z00'00') >> endobj -965 0 obj +992 0 obj << /Type /ExtGState /OPM 1 >> endobj -966 0 obj +993 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -967 0 obj +994 0 obj 842 endobj -962 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [316.584 716.4549 336.0248 727.0372] -/Subtype /Link -/A << /S /GoTo /D (figure.3.11) >> ->> endobj -963 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [454.1307 716.4549 473.5715 727.0372] -/Subtype /Link -/A << /S /GoTo /D (figure.3.12) >> ->> endobj -961 0 obj << -/D [959 0 R /XYZ 74.4095 793.4011 null] ->> endobj -174 0 obj << -/D [959 0 R /XYZ 74.4095 771.7323 null] ->> endobj -372 0 obj << -/D [959 0 R /XYZ 301.4797 526.7226 null] ->> endobj -958 0 obj << -/Font << /F61 259 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> -/XObject << /Im41 944 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -971 0 obj << -/Length 2166 -/Filter /FlateDecode ->> -stream -xڍr۶_Gj&B%N&']wu( XQK.H2Q%~?D>$pDxNg]Zw!wb<8BLĂ/}VbW2<6W -Wezەo{XA9K)Y(d2P)HXEWI, :%žUzxt*d1PwqD\GH`M/Iy&a\p*҆`MKHu_;B MC=e!=7]o(^2JVD!q5m -C -o<b0:K -BDCQ=0,KY -'ܨ,_ -fʋMo=ɸ`?E1A;X+ޅb`"OoZJQ%<&kuhlNaRhJs铄%\p+>pZAKp -H>\J6 -JG0Y]
[ 8"/t -&{P9Si\`k:\zH/ҚwiJ#!wjm6D - -{D$ =kfB5i#f auv$p̱/'~g9|Lw-0KgDI韊rXknC2Cptև4/,q͏iAjDhfKϦoC@nqY lSj8E#-X==Ly/03'rw3#oUC8tSWnBWK^7+!1PnVRF-禅B1 `mi/d/%˂7&Mۚ;]k0ѮS[PVAFW(Mp2-4ĹH -M -. KN-l6
ޓ馁pTHB -a2W7^M; -՜{,Uq=~{L
iF-ӯ"jmQk
6f&#x>&R͘'fYϸN|F汢lo]/5oնM*JXede5k=u@4gCu3,?ayw/©pm"Oڧ0OG 3~Ƈأ[FOGï1!Xc\N*/V7M3HmҾ꒠SF_KL} -a%*1>K9endstream -endobj -970 0 obj << -/Type /Page -/Contents 971 0 R -/Resources 969 0 R -/MediaBox [0 0 595.2757 841.8898] -/Parent 932 0 R -/Annots [ 973 0 R ] ->> endobj -968 0 obj << +985 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/usr/home/buetow/svn/vs/trunk/LaTeX/images/exceptions.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 974 0 R +/PTEX.InfoDict 995 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 272.00000000 176.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 975 0 R ->>/Font << /R8 976 0 R >> +/R7 996 0 R +>>/Font << /R8 997 0 R >> >> -/Length 977 0 R +/Length 998 0 R /Filter /FlateDecode >> stream @@ -7980,258 +8073,297 @@ xSr0+rl{I8^wd"Pzd;pl)ѽ<C 8pc MOhh}dK& YF')F%DCuZAe^"vz8Zst(DKAWJV.kE[.Iʹj^oզ duR.=2C8TÖTTi9W2Nȅ/O)(6LqojPSQDEܙH~/zb:1XWKc=)Qxa ǂ/
iX/g3kv1HWAҐHXJifx"NsK()endstream endobj -974 0 obj +995 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080809212342Z00'00') -/ModDate (D:20080809212342Z00'00') +/CreationDate (D:20080809222040Z00'00') +/ModDate (D:20080809222040Z00'00') >> endobj -975 0 obj +996 0 obj << /Type /ExtGState /OPM 1 >> endobj -976 0 obj +997 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -977 0 obj +998 0 obj 439 endobj -973 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[0 1 0] -/Rect [445.869 355.1348 472.3305 363.6996] -/Subtype /Link -/A << /S /GoTo /D (cite.OOS) >> ->> endobj -972 0 obj << -/D [970 0 R /XYZ 74.4095 793.4011 null] +989 0 obj << +/D [987 0 R /XYZ 74.4095 793.4011 null] >> endobj -373 0 obj << -/D [970 0 R /XYZ 288.1558 559.4669 null] +382 0 obj << +/D [987 0 R /XYZ 301.4797 615.025 null] >> endobj -178 0 obj << -/D [970 0 R /XYZ 74.4095 424.6784 null] +383 0 obj << +/D [987 0 R /XYZ 288.1558 155.0474 null] >> endobj -969 0 obj << -/Font << /F61 259 0 R /F35 221 0 R /F28 209 0 R /F26 206 0 R >> -/XObject << /Im42 968 0 R >> +986 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F35 229 0 R >> +/XObject << /Im41 969 0 R /Im42 985 0 R >> /ProcSet [ /PDF /Text ] >> endobj -981 0 obj << -/Length 2781 +1001 0 obj << +/Length 2485 /Filter /FlateDecode >> stream -xڕY[o:~@Ŋ}@$d4=fdy"K.'pHY -a!BܡkH
ޅ\g͖Ӆ_ -yR,En(@&nqk,_reoky1 v;4xp(̨ -[ĵKԎ5U9s=ÁȯͨAa[`(\ʌk¨ZIHPq\]}]IA!N[d;t->XuϪZΧi[!`'Q:|~nzwgZws{IqyA$~~y iE%QeIB3endstream +xڍZYo~_GY +&Mf:wu0}mֵC:3=!Y @rH;<;Е?tu"oDJW읳:_jxy~>]$}wb#,d]Hn,לlk*2D-u~ӻc }
,HhHL)`qu|0g-gU7! Ć;oqIWr=27{8,?pVN19fE''akHn{%H]9{qc +9£(2B}}.?ZwWSU﮶<t4 3z49YkR7[
0E|[ +KaK~T* +XwȨ'EwDYհ0X) +P
nL1P)&S` +%-w2ݢ6HNuSGȨ̥Gu~DB%:,PAq
䇽8%ŕ% >\IH:Wjg"ndM!Y6t-S9}gBKiK
ͫ.*99aFL$8.4N/q݊$JؠvdA,*6>q]!V vP;\3ܰ-9,j7C5[w-TӢ{u}HVJLafU^p72r_YJ"ӄ( +5`t.mYHp2p+d0Ӌ,U5{ +˻l鎲5gy˶h9C P9w͙-i>d;3dpfSo:ȏ">"8F*@Nޭ줖IJoC5_>bo2c:?=e{V2ׁ*~@y<h!q\ؿtoEU˥pCf
?endstream endobj -980 0 obj << +1000 0 obj << /Type /Page -/Contents 981 0 R -/Resources 979 0 R +/Contents 1001 0 R +/Resources 999 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 984 0 R -/Annots [ 983 0 R ] +/Parent 990 0 R +/Annots [ 1003 0 R ] >> endobj -983 0 obj << +1003 0 obj << /Type /Annot -/Border[0 0 0]/H/I/C[0 1 1] -/Rect [125.1648 251.4841 277.7924 263.0093] -/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.CaCert.org)>> +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [445.869 592.6535 472.3305 601.2183] +/Subtype /Link +/A << /S /GoTo /D (cite.OOS) >> >> endobj -982 0 obj << -/D [980 0 R /XYZ 74.4095 793.4011 null] +1002 0 obj << +/D [1000 0 R /XYZ 74.4095 793.4011 null] >> endobj -182 0 obj << -/D [980 0 R /XYZ 74.4095 556.4375 null] +186 0 obj << +/D [1000 0 R /XYZ 74.4095 667.9169 null] >> endobj -979 0 obj << -/Font << /F61 259 0 R /F35 221 0 R /F28 209 0 R /F26 206 0 R /F83 826 0 R >> +999 0 obj << +/Font << /F61 267 0 R /F28 217 0 R /F26 214 0 R /F35 229 0 R >> /ProcSet [ /PDF /Text ] >> endobj -987 0 obj << -/Length 1950 +1007 0 obj << +/Length 2729 /Filter /FlateDecode >> stream -xڍKs8:JAx2q*TVfk((H0}|D岞?ݰI8b&56;<wg.;mӻ}Bf -$᳧2ӧL%;,T9Cx~g!+%Œ_w>H% &Re3 4RZWyq9g>]KE]d^nc/͐Ú7qq<KcoFmކ{ܔYvO*O>5b?gc3:HÒHi{M1?_%?RΒd_!9N@fC7/1<\gJbyiy693|chᕰJ̒|m]%Wf&.>b̥:N\S|ܘAbH0Lt{k-;nKe6x> -KJARꙘ)Ԭ73b"]EZ"X|fvF~#Dr>=WXUj[҈(I<mĬϺ-_bv|Frje(SmZLPp*YB1جF\|L1{̢D-nv~k$>kq9-`)(pW7QP42AF(b*!1dY/̍:̎搟l -֎\75nQZ!& -gR4lB"PblԼ
/C(9!!5\FDGCa1 -Tr69̢,rnrvԺr3S<!0h(%̯+sy~հ[Um*faJ=2#i'nB># ;(H_ -(d"'o'PGXufQV - -OAke.A%b9s#sendstream +xڍY[s۸~_#TDz&iӓ ی]<Դ,Kٙ&A +lU6Y +}7wY( +fw3.BޭT#l\*I].Y6J:moWw{,"kAĂ0g.Y%q_zHbH<ᙺ8)# s\͓Z<y8%M/bgIsI/ޝ.a}{_]pgd-}Fb!UӺTfcC\R"7Y&>2a93^bj%y"#=w#q^`|!hB KZJ=u\hxvyUdT
͐AFNj+y/D!ؒ_;YhQ fReìM# +'θ]b(lP1ט8x#J.'dA|yhDC;*&j&?{iHf
.Ŏp6xN +iQx]$ +~R!j1+Kڳaڄh6|n8s +4PmM>KZZT$8cO282OjU{mS g9zD>p0uº~c!״`HZ,YW-ØB~!D6>N,Ǟ@Qu; lh߇"mA{YׅiU֫*U60*:.t`yބM +=ca${ `u3smyLKhe&")1-RаϴzAӄLjIKj"d_F9d$W]bx"@rQ| wpz@Ednl:]K? pFHa4+E)Mzz&;G;GUfZ'JF˟4h]i]Zp{mwLIZnLw,3.Xw?]U+><'I`_p ~]@>sGc(u(jeK:-`v_5J'\{IU.,'ֲ!4 +\) +DGѡ4ՎB;> Y{Qjffznq{4NYH&*MOOOLװj?<XNjkCG0AzVyQԮ^tdH?t|7:$=ivbE$]q&vkK}E3<ru$ڱ%;](w-}Q0ѡw[ryU4?Hj]-{
c Hoz#4{hp5cZjV[A gvˍ{#mMɚ!(R8CO>)bjr endobj -986 0 obj << +1006 0 obj << /Type /Page -/Contents 987 0 R -/Resources 985 0 R +/Contents 1007 0 R +/Resources 1005 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 984 0 R -/Annots [ 990 0 R 991 0 R 992 0 R 993 0 R 994 0 R 995 0 R 996 0 R 997 0 R 998 0 R 999 0 R 1000 0 R 1001 0 R 1002 0 R 1003 0 R 1004 0 R 1005 0 R 1006 0 R 1007 0 R ] +/Parent 990 0 R +/Annots [ 1009 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R ] >> endobj -990 0 obj << +1009 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [125.1648 488.9868 277.7924 500.512] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.CaCert.org)>> +>> endobj +1011 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [186.6652 648.4642 353.6389 659.9894] +/Rect [186.6652 236.9588 353.6389 248.484] /Subtype/Link/A<</Type/Action/S/URI/URI(http://httpd.apache.org)>> >> endobj -991 0 obj << +1012 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [148.5137 628.8757 329.8337 640.5085] +/Rect [148.5137 216.604 329.8337 228.2368] /Subtype/Link/A<</Type/Action/S/URI/URI(http://argouml.tigris.org)>> >> endobj -992 0 obj << +1013 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [139.5474 609.5025 299.3481 621.0276] +/Rect [139.5474 196.4645 299.3481 207.9896] /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.eclipse.org)>> >> endobj -993 0 obj << +1014 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [147.115 590.068 306.9157 601.5468] +/Rect [147.115 176.2636 306.9157 187.7425] /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.FreeBSD.org)>> >> endobj -994 0 obj << +1015 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [154.8081 570.5871 386.3397 582.0659] +/Rect [154.8081 156.0165 386.3397 167.4953] /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.gnu.org/software/make)>> >> endobj -995 0 obj << +1016 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [133.0648 551.1062 264.173 562.585] +/Rect [133.0648 135.7693 264.173 147.2481] /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.vim.org)>> >> endobj -996 0 obj << +1008 0 obj << +/D [1006 0 R /XYZ 74.4095 793.4011 null] +>> endobj +190 0 obj << +/D [1006 0 R /XYZ 74.4095 771.7323 null] +>> endobj +1010 0 obj << +/D [1006 0 R /XYZ 74.4095 265.6468 null] +>> endobj +1005 0 obj << +/Font << /F61 267 0 R /F26 214 0 R /F28 217 0 R /F83 836 0 R /F35 229 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1019 0 obj << +/Length 1214 +/Filter /FlateDecode +>> +stream +xڕ]o"7+撹wҬU.JV +l1CU +bݩl$[+_`k~{d\hCr#}[w,gվj<n@~i<$0;aItV:W5V-]^K|֍8ؼ-\m˃ǎ35PhC 8`97[cbgTP-÷ubw?g'OϮ5]>P3%aIvV;W5V}p{$ǡ]'ȝf\rnr}Y5ob +O㵡A)Nʵ)n]X/U
pUW68?c^l^rbߚ?Z +endobj +1018 0 obj << +/Type /Page +/Contents 1019 0 R +/Resources 1017 0 R +/MediaBox [0 0 595.2757 841.8898] +/Parent 990 0 R +/Annots [ 1021 0 R 1022 0 R 1023 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1031 0 R 1032 0 R ] +>> endobj +1021 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [163.7833 531.4714 352.2764 543.1042] +/Rect [163.7833 756.7859 352.2764 768.4187] /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.imagemagick.org)>> >> endobj -997 0 obj << +1022 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [143.4568 512.1445 374.9885 523.6233] +/Rect [143.4568 737.459 374.9885 748.9379] /Subtype/Link/A<</Type/Action/S/URI/URI(http://java.sun.com/j2s2/javadoc)>> >> endobj -998 0 obj << +1023 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [167.8988 492.6636 327.6995 504.1424] +/Rect [167.8988 717.9782 327.6995 729.457] /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.mozilla.com)>> >> endobj -999 0 obj << +1024 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [139.9598 473.1827 471.9148 484.6615] +/Rect [139.9598 698.4973 471.9148 709.9761] /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.pps.jussieu.fr/~beffara/soft/rubber)>> >> endobj -1000 0 obj << +1025 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [147.4467 453.7019 285.7281 465.1807] +/Rect [147.4467 679.0164 285.7281 690.4952] /Subtype/Link/A<</Type/Action/S/URI/URI(http://java.sun.com)>> >> endobj -1001 0 obj << +1026 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [151.5083 434.221 289.7897 445.6998] +/Rect [151.5083 659.5356 289.7897 671.0144] /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.gimp.org)>> >> endobj -1002 0 obj << +1027 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [146.2633 414.7401 499.7376 426.2189] +/Rect [146.2633 640.0547 499.7376 651.5335] /Subtype/Link/A<</Type/Action/S/URI/URI(http://httpd.apache.org/docs/2.0/mod/mod_dav.html)>> >> endobj -1003 0 obj << +1028 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [147.2495 395.2592 321.3964 406.7381] +/Rect [147.2495 620.5738 321.3964 632.0526] /Subtype/Link/A<</Type/Action/S/URI/URI(http://websvn.tigris.org)>> >> endobj -1004 0 obj << +1029 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [134.069 375.732 344.0813 387.2572] +/Rect [134.069 601.0466 344.0813 612.5718] /Subtype/Link/A<</Type/Action/S/URI/URI(http://aspell.sourceforge.net)>> >> endobj -1005 0 obj << +1030 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [134.069 356.2512 344.0813 367.7763] +/Rect [134.069 581.5657 344.0813 593.0909] /Subtype/Link/A<</Type/Action/S/URI/URI(http://astyle.sourceforge.net)>> >> endobj -1006 0 obj << +1031 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [133.0649 336.8166 328.731 348.2954] +/Rect [133.0649 562.1312 328.731 573.61] /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.foolabs.com/xpdf)>> >> endobj -1007 0 obj << +1032 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [122.108 317.2894 354.1378 328.8146] +/Rect [122.108 542.604 354.1378 554.1291] /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.info-zip.org/Zip.html)>> >> endobj -988 0 obj << -/D [986 0 R /XYZ 74.4095 793.4011 null] ->> endobj -989 0 obj << -/D [986 0 R /XYZ 74.4095 676.386 null] +1020 0 obj << +/D [1018 0 R /XYZ 74.4095 793.4011 null] >> endobj -985 0 obj << -/Font << /F61 259 0 R /F28 209 0 R /F26 206 0 R /F35 221 0 R /F83 826 0 R >> +1017 0 obj << +/Font << /F61 267 0 R /F35 229 0 R /F28 217 0 R /F83 836 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1010 0 obj << -/Length 2050 +1035 0 obj << +/Length 2052 /Filter /FlateDecode >> stream -xڍXYo8~ȣ踶sR$i(Plf4Vcֲ;%EʞI&EIrx_x~EV y\0U2qqf0X]Ok,OtQO8A^d0)fȁ]:r/W
v]O0"+x٬* -G{uiRb;(txYC)R4"MC=$BVkZ(cUD55땾xBDZ]O;Lo:Gq
jz/a85a?|HI|[|0p.32nv5zzc
=k= Hw -OVg0P6rDMquܪHX59ީM}i$2ϨYFCNa52ꮏoQ}WyFǕc[&5=)׳;j&fF7dFi%r<WN(QwvJ(8=t+`d ޖ*x$?kU?Y_Nb“aP5Eu>6iZBNW|A>wyK)H_
DWKcfd^QE قѿ jʑv;,k}7Mҵ.M46kZcu6M"ȼ{56TkQ<MG -S(4"xp4;%l<RvBŪ;!2[qY͂vK}Siv}"%-$KjwS$hiW?\AwY%pG8 -KKZ1IS* -jKrrcvB)'RFGaK٥br\,U -6;4ר`Xd,K0ɲ`
q@b8㌊4c<g>86.LlO{mjF`9 -M`|pHc'x5:U9;pk[ -|M{چP-I]z_Yq"5Cd( 542FKaq+=gM9NKN-,-k(}Ľ7lv¯_JJ_J{`QË5HZCQC8H,-"*֎Zmyv8EqDT1pw؛ָ҃@l0h1Fh)?7@!"l&d -[53A4k%HKp<DOd҃ˏSڦ;#f7ҮQ̕d醫03*
eν9KUC
D0p<|۹/}7D,^np(eXED<.Sϣ0~T't~0~u#~U1!*"_eT#F r}c3RvҾI40ۣ|PY."PAf0H1,i,9k{H[0!vfͨfMC|(xBkH!:
Bo2^ iӧ РqŸHα.?b-vdmcFdlاϦ4ٷCRʼn4U^:uNSIS-_;xdqU#!F:<=Iڳs?ϛ@.Qi8*(_8?stendstream +xڍXKo6W$ٛI0 Rc=m;Jk)!97Tx_x~YV y0U2qqf0X]Ok,OtQO8A_3d8|?)fȁ(wzPje?]ש$LJh60j}^]~ +?^VPrHP$UҬ"JoGͺDz*-7CVd1[X#V8 +=]4jwVU>N$>o̭`d_8_DyI7l=kd=vwCgyx8ݯēTQS!.V
DNwjxW~3bѐSXMAf̂Fl*rlޣF]'eYrvG
l,(>\g}D۩2jxN)%~G2Gun% +=fȥn54"MK銯=֧8Opw)Ӵhjib،29J(x#[0" +kA)po#[^֧?(lu9or1İy^*iVA݃>j_h8R2D1ǃ٩,dKvglb(VŭoE +*J6h8[ +څXpN1.!n8=$YR;^VnǞ"!GK$ +BC*>1G +\|KֻްQR| +p٤gr SF}(<E.PrSVmYNn[(Eb6~(6l) +?
sA۾ l +hO."PAf0H1,i,9kzH[0!vfͨfMC|(xBkH!:
Bo2^ iӧ РqŸHα.vFG1#qZ +gSE~[K~*/:Ϥᩗǖo<gj#fYitxMx .Qi8*yqzp~'sendstream endobj -1009 0 obj << +1034 0 obj << /Type /Page -/Contents 1010 0 R -/Resources 1008 0 R +/Contents 1035 0 R +/Resources 1033 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 984 0 R +/Parent 990 0 R >> endobj -1011 0 obj << -/D [1009 0 R /XYZ 74.4095 793.4011 null] +1036 0 obj << +/D [1034 0 R /XYZ 74.4095 793.4011 null] >> endobj -186 0 obj << -/D [1009 0 R /XYZ 74.4095 771.7323 null] +194 0 obj << +/D [1034 0 R /XYZ 74.4095 771.7323 null] >> endobj -1008 0 obj << -/Font << /F26 206 0 R /F28 209 0 R /F35 221 0 R /F61 259 0 R >> +1033 0 obj << +/Font << /F26 214 0 R /F28 217 0 R /F35 229 0 R /F61 267 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1014 0 obj << +1039 0 obj << /Length 1304 /Filter /FlateDecode >> @@ -8245,24 +8377,23 @@ O<P|_Q`M3$tPsI}qCԷ'H]ioTc mlo1g C ))7jBX>z7 LSqRJ ̶]ը<)>"v`>OT)bWg\b) #$}ߠEUo殸pt S5cZz?D[6 ψ(O=fuYiā`2RE%aνBrZ7cf!i^I4MT5 Xܼ<q\(b -RG@kMﵶŃ~ڰ$c?g%eK(^ -endstream +RG@kMﵶŃ~ڰ$c?g%eK_endstream endobj -1013 0 obj << +1038 0 obj << /Type /Page -/Contents 1014 0 R -/Resources 1012 0 R +/Contents 1039 0 R +/Resources 1037 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 984 0 R +/Parent 990 0 R >> endobj -1015 0 obj << -/D [1013 0 R /XYZ 74.4095 793.4011 null] +1040 0 obj << +/D [1038 0 R /XYZ 74.4095 793.4011 null] >> endobj -1012 0 obj << -/Font << /F61 259 0 R /F35 221 0 R /F28 209 0 R >> +1037 0 obj << +/Font << /F61 267 0 R /F35 229 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1018 0 obj << +1043 0 obj << /Length 1135 /Filter /FlateDecode >> @@ -8273,199 +8404,214 @@ xڝ]oF+|Ws|3s+'[*;QCۦg|CUEr093?9XE8 Q: B .C!-%ﮢUU16ðFLHmĴ"Su.bM2g*vE,Kuq08{g-FwxcU& XL+r0{hD4f\+"&gS\Nm>)ZTur)kyS6aMcUlw#BhHP+r@>Q&G>ʒ4YSP#U(piEfHho#OK6/IGRK6@Gq`G
FcdiEf$4>d_
̩Y)j$aUUhOI(E5CT
cCƎs#b?O:L<~4"/n?D5(LH#nh$#?&8^ɂ8F])]̏y>>^aP7vU>@+gZ+*y#
xfe6=n~$EqVN K٤*-VeBn֎FqL+r0L)0[8[majd&i 4ebƐcUvQP8%~9=CL-P Q5hU>TL5妚2:bf<XU3Il15ElCUt88z?A/n~͞ss.I'{* hEGªLL l'151ڇ-odP(?ƹXbUUxO[GPS?ӊA:{Cͳ3kWYUFSxiEdo
GjINeKO;ǢO"fZ^ID(p -¸ڨz,(FJ͆ +¸ڨz4,(FJ͆ endobj -1017 0 obj << +1042 0 obj << /Type /Page -/Contents 1018 0 R -/Resources 1016 0 R +/Contents 1043 0 R +/Resources 1041 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 984 0 R +/Parent 1060 0 R >> endobj -1019 0 obj << -/D [1017 0 R /XYZ 74.4095 793.4011 null] +1044 0 obj << +/D [1042 0 R /XYZ 74.4095 793.4011 null] >> endobj -190 0 obj << -/D [1017 0 R /XYZ 74.4095 771.7323 null] +198 0 obj << +/D [1042 0 R /XYZ 74.4095 771.7323 null] >> endobj -1020 0 obj << -/D [1017 0 R /XYZ 74.4095 573.2241 null] +1045 0 obj << +/D [1042 0 R /XYZ 74.4095 573.2241 null] >> endobj -1021 0 obj << -/D [1017 0 R /XYZ 74.4095 548.0739 null] +1046 0 obj << +/D [1042 0 R /XYZ 74.4095 548.0739 null] >> endobj -1022 0 obj << -/D [1017 0 R /XYZ 74.4095 522.9238 null] +1047 0 obj << +/D [1042 0 R /XYZ 74.4095 522.9238 null] >> endobj -1023 0 obj << -/D [1017 0 R /XYZ 74.4095 497.7737 null] +1048 0 obj << +/D [1042 0 R /XYZ 74.4095 497.7737 null] >> endobj -1024 0 obj << -/D [1017 0 R /XYZ 74.4095 472.6235 null] +1049 0 obj << +/D [1042 0 R /XYZ 74.4095 472.6235 null] >> endobj -1025 0 obj << -/D [1017 0 R /XYZ 74.4095 447.4734 null] +1050 0 obj << +/D [1042 0 R /XYZ 74.4095 447.4734 null] >> endobj -1026 0 obj << -/D [1017 0 R /XYZ 74.4095 422.3232 null] +1051 0 obj << +/D [1042 0 R /XYZ 74.4095 422.3232 null] >> endobj -1027 0 obj << -/D [1017 0 R /XYZ 74.4095 397.1731 null] +1052 0 obj << +/D [1042 0 R /XYZ 74.4095 397.1731 null] >> endobj -1028 0 obj << -/D [1017 0 R /XYZ 74.4095 372.0229 null] +1053 0 obj << +/D [1042 0 R /XYZ 74.4095 372.0229 null] >> endobj -1029 0 obj << -/D [1017 0 R /XYZ 74.4095 346.8728 null] +1054 0 obj << +/D [1042 0 R /XYZ 74.4095 346.8728 null] >> endobj -1030 0 obj << -/D [1017 0 R /XYZ 74.4095 321.7226 null] +1055 0 obj << +/D [1042 0 R /XYZ 74.4095 321.7226 null] >> endobj -1031 0 obj << -/D [1017 0 R /XYZ 74.4095 296.5725 null] +1056 0 obj << +/D [1042 0 R /XYZ 74.4095 296.5725 null] >> endobj -1032 0 obj << -/D [1017 0 R /XYZ 74.4095 271.4223 null] +1057 0 obj << +/D [1042 0 R /XYZ 74.4095 271.4223 null] >> endobj -1033 0 obj << -/D [1017 0 R /XYZ 74.4095 246.2722 null] +1058 0 obj << +/D [1042 0 R /XYZ 74.4095 246.2722 null] >> endobj -1034 0 obj << -/D [1017 0 R /XYZ 74.4095 221.122 null] +1059 0 obj << +/D [1042 0 R /XYZ 74.4095 221.122 null] >> endobj -1016 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> +1041 0 obj << +/Font << /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1037 0 obj << +1063 0 obj << /Length 639 /Filter /FlateDecode >> stream xڝUˎ0Y:Ѯ@>逩 jqH3bs
hL[Jz@>hBa!əhцHfRgQGBS2F[d ƉƳ{4KyA#??CB1F|)+u~gS|9.Db-?W5H`LP*L&3*%GjQ\vD=VF FquӾ"oQW)XS^eZITNIئć nz`o&?SiP 9dFTՒZ ]{ΙDQ5kȮ1:/CڳEsDƌs -=g+BxiKam}`:נ5; +=g+BxiKam}`:נ5; endobj -1036 0 obj << +1062 0 obj << /Type /Page -/Contents 1037 0 R -/Resources 1035 0 R +/Contents 1063 0 R +/Resources 1061 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 984 0 R +/Parent 1060 0 R >> endobj -1038 0 obj << -/D [1036 0 R /XYZ 74.4095 793.4011 null] +1064 0 obj << +/D [1062 0 R /XYZ 74.4095 793.4011 null] >> endobj -194 0 obj << -/D [1036 0 R /XYZ 74.4095 771.7323 null] +202 0 obj << +/D [1062 0 R /XYZ 74.4095 771.7323 null] >> endobj -978 0 obj << -/D [1036 0 R /XYZ 74.4095 573.2241 null] +1004 0 obj << +/D [1062 0 R /XYZ 74.4095 573.2241 null] >> endobj -644 0 obj << -/D [1036 0 R /XYZ 74.4095 548.0739 null] +654 0 obj << +/D [1062 0 R /XYZ 74.4095 548.0739 null] >> endobj -422 0 obj << -/D [1036 0 R /XYZ 74.4095 522.9238 null] +432 0 obj << +/D [1062 0 R /XYZ 74.4095 522.9238 null] >> endobj -1035 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> +1061 0 obj << +/Font << /F26 214 0 R /F28 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1039 0 obj << +1065 0 obj << /Type /Encoding /Differences [ 0 /.notdef 1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 10/.notdef 11/breve/minus 13/.notdef 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 127/.notdef 128/Euro/integral/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/Omega/radical/approxequal 144/.notdef 147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/Delta/lozenge/Ydieresis 160/.notdef 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 -825 0 obj << +835 0 obj << /Length1 1612 -/Length2 15936 +/Length2 16042 /Length3 532 -/Length 16807 -/Filter /FlateDecode ->> -stream -xڬeT^%;www݃Nnsqn?}{j͚UڛDIA(aoP -@ICGG_B -=Q,slwL˰S;DV%&E%
;GL=EAqA4ߡfJi0>zq{q'ӘEWX - ^1<?q%@=;|ՅLK*q#бVzWU!<b;t:r$Ԅ,ꦑN}=.}y),Dqe9VYTi.,@9]0~eQhH)?$_%}M/̌ωmjO1VK-SE!<,b0CkU'\VBϤ]D<)*#.f vS:ubK=8y@Qqy,2K$ -`aO-g8"bW0qVW*qgʮ'%ϡ$鉲E!n1!S,~qfbMA+0bO>h'^7[
f8@9O7!);6
JMjѻ[05"E]3_l(u8}CSi+5"ϕG!LĂb]UkC{@P9[~ue&F=nZWYtL+ͧ -VtdsqhF`#%}gdwU}JfNX&l"JW=iew_}cpr)6yaVo{>^Y>@
6P R;PI=$0?)]5<04-5Xsx@]@[xH:!<8VդH#{Q -ID_[Gf`l$ L^;Ҷ̚8OC^Ő/q<J;I/<SBl<.0r&!!:'z_]J?ɯ٧D_W};nޮ~8vw3fXo1bL0[{4l1ICC*.X؞ -F5Qċ6U70 o" -5*%%W
[
RhܧpOՌЖx\tfk<s/ʓv5ŝ T#voQ3s=n>.%bpktKׯn"<eKsb({-`N^lF [GL%|z -CS\8v(p0c_a6fx^TQNM}$F7}/ "@6)kzU&&$v?ɋ&Ai 0!Y"rA0G58x%AL*ןYoUvq#zdQM`Uq뷼LNڷr(ݽ4B:«
M?{'~75xls%*D!69b߶ʼxM~ RϨE'oj&yx,Pg;<dNʜZ|:}2Vtf,qC<
Sɷ6d3:X(ЮLja7E$#swq%2mER9yEd5%gynFsDLU nA'-)pfƆs*-{R^#ٞy夝
>_L^a*X>,Qcz\m _BTwmx(A9k`Oa)R`Ǝ,HGS3W:/ܔs -{ZoQI[~AVfe|gP:|d f^ -i?7:
# NDZvjgo -sv>$n#[Ppʆ٣j 1Je$eXUf.IiOPQz8\G&6_!܊Nh&KtXΘ -KG.Ej*@n5oLfe|(3*8Ot1槂܄#XwMe P~֢b\VAVIL@*+%1_
b\%mIj,p+,MGF9^).酖+ :Z -G*38+П5)w-kTO*J"/w@Qvs;8^q<8
(Sdqx|lޑ$NU֤F::Mn?\zҮoG_2BBAȴ(1A$b/T67`ϻ8|?jF>9j[&104G )#;tEl6Rñ|7लsG r+&,n25AS"hSm0XTf5^kiA,
~XVxtN
aik,EDBwc6r+{>+D[:Z]U+2G= f͋#oG-"l:-^kWV^zfs9v%HV#,Ezxb8 69Ǎ?!|^lC;\r3E~[7bcC;}D'xxӮ\#Ymv ٌvu<:]^*Mĥ,Ώd8aVry.a{0,*[uS>@hVI=!jܛzv(܈%~ D,yb -"E7KIڀԸE~ӟ9^0 -F讌0\^`ձz d,N]<86Yrz_|==M{Mia' 0dX*P^YSh'Ap5uO?8f?=4jQ8Ӂ8\.,n;߹tlL5 8)*tb{a$+͏R~#.cIѲ]=;`>!FʄHFP߹*zvucS?e!cOhiXN_E銤emM9/7
-Uفdr@lrE_%ul(
Ek*6:/]k`K|֏G~ee#;062k<H8hq8`ՕGJiI_M{[IoaC0C*T9+E5KWIi~mtM\Z6^L9P!WnR[ X?"2F|@BS]U|k-s <.#Gf^=@zQJnY_h~Lka)7,DkG]>A:ލ;lq=;ݹGJ;&R$+HU Rմ*)yF}3 -+zlBTG$v%UJ9&+nA9 7Ԕ-1;>Z?1I'goL^UzC:Qi9HL/_*1R%_\~2-Y|M9e5{1'?cXCj7aL)]}c.9\NST* aes&"վ-ec-zXC@Ɛ'nl;ܿPrYHP?GO9%e]MSQ"Q^@x3T[5'*.$ԆZ`o g1Pa8GIQ!d7GG`"h)p;+9RQ'<DBD+Sa/G,P%j'if -;P3/Kq5aIz9Y7{)bہe4Mlt>r^>x۵0ad#}"{Pw|#.)@"-%a}C͗ݕĊ[4ŰSs8X4k:x9u_]}Lї7m3c7鴆&!d]Xt]y`BHR#6ĹauWfM+sO!ԌOfS˹81AS$)35K<ܷ<|aI>e={d4>_J ~6J)s4' s;r !oDL^NF9XpI2g[ -D(cUɹu
?ߍd`&U%u)!:H]:[Pts;t4LJH)q!z#\H.,ʔ\@$\?qߥtQDY/!_]*Z聕hOȢ'K'2pv;D`J1kr&SD1rV9:qe9uduo x*0G_ZXgwʼ`ܫ59_+w3#aNXEP8val֝rusWԃy&f>Dqq/G -t;)5N[hDnHX7'0mNAEo2 5,@ϚͥL(zMw@Y?.+@>Umw
Yz$nDFAҧu]j 2RxII|x7Pa9D.7WÁΣP2&MGTf䁱#JxXz7u'ݍ:5Z#ڃ
pWQy<ͬ{9o+ؠc%b˜.\DI>Zv.|9 7IkSt>~V!v=]d%jO|3ijs' -BzKP%ȱJ|/ꮭ*k7q9U4N0Zxw1ͧlVF
/c&VsQ -+7;ԥk9rBN4}3r$dK3' -bJ36 -ohe*뻞eX菭}ְsmNJyg)Auz -(o|h_22qR} -6*8C/?vSB'GIē{wVONaƤW jVzUa`X>T&O9/9/U;Pw*L;xp8_uT_MnR0z3&s2ί~>gW8yntrL0J:^`X)⩐eru<9WkP^n6s~=Bacj\%ɯ -ŏ#{^$w5pSջChsg-'8/Wd3楘TeT\Z@Da}7FDC><lw#dPX'y9y`hZ{_b -o=wq -\9 /2|<ElsxhsSXfOq'?f\J
eݣ4^9Gq2ILhrgbc[hhpl MQ2evh¶jJ5/6i>d}<v]XӢ;yhhC4I -BS_6ll"Udr0HjԌȻL15)<0/)y6)8%ҘbBp|JZF-lTLsF*"3r<?IB#۔44{Wzq
RöϣM -eu[30)߱VWFwrm,,EmZ3kkP2Wc M:%Sc -3vaT'g;`cao8Sfj;<7Fn-֏o;?%Cwʘa%#U'"Ќv9XOd
LE~cqHRg4;K}?ry^<Zgdž\3^WN,bmBDq@u@Ə6]CCl|m3;%)MR-tzeyE1ԙF -Uʓ.OTe3fkfH.j?p~d -GB+gs1qqsP,XTϰk_p)E9Uާ5$9kyl; -${&Th#)K'4]Z< bN`c"DiةY.%`JJsQq5>t͐czNoWchx%l(!iq2 ~w#"ٹN%tFyY:mz0v5OSB~gfMx`\nsiݞ)+' -l7=8iER
c'~ᲯX7q-[Li;5l
:w!yl\ܽ?d]&>mhFg$Z<9awu,:P=@:rm]J%\HS-qW@68<RMtײ\ͨR[f% ;;醩]KO39۷_SaT2~61zzAv
/pɞ4{:t*.;l e"4]Eo|OjY>zio0Z$6 6qXXvlx ~Br?SL]j)6<s*ө.iهŰ[rn?ECͰgp$帹J2ӛV;Iܔe+I DH[Emc,ybGP#ǥlQ)
YbwH6d ){uǧ
Z/Ǯ[Х=&h-/^zJwU#ܶp[ h\=:mX8ͪ։:!VJxج1N Z{M-&fWؐrjk3w]vr*ª["o6WLo\p7 ƍ#1q?v{2muA'({PX[Ґ$=kw!USW!_f9j]zwP('H0 -G1GQĀ>\苋DJ _/,= Z32/y7ۛH>qƓctQ)碨GۉW'
ZcR;m깦[Χ}l2ROg4PYFoU=߫H ZzQ7rhRl5W,Y_^F -\b͔mb*b¹,X[8ǓI|.+E 4}B2ȭe;:^PDh<z;yXN.Hv3[uhIN%SJd7ҭ3}2ΣFqO,o\Xs7TW\!d;\o˟jbGcY!#5Q>%{ R̡,C?i*٤<ϓk7濒TBfM{mlN4jpDM}%g4̴E}_zE
?ͭUPp cZ@&xBʅ4VRxh2bg'גĄ^7,!rt%L19PxdE#bWz;p9O˱G,',mI
hGt0cIWgL;{@p9z-@2-Лn`o^Jl?I*# -nɜh ":#yێvO_Mu[Qc{`i>\
:$e{лd|<Sض){丹yD}X)?]Q -#Q}~)˵a> -5=_TԐ:έĀsY⯥U1_`?*+B*wO9:2QX,qH$+1y3`ϐu3)E{rt2~#^uȓKL 4Ӿ65쥭X5h깍ll(SiKrqQldm6p?6dꇵ8zMꗛ -SWJQ%,72 B(VIu,^x啫h!\JV;o#È1poʟbKod,2;Js,P T-0 mՌ!9Уq֢zУO3JW:פ;O2Q2OoC1i$TͰdvcmǤj[_z\ŧ/]-.@N'iKj`«KQrO -Dl`7eO൯ -Odo'lc*(+%>: -;+ -,$̺Y[Хv``4`Ip|?Yɨ,_!)n]R{p°G^ppe VAc>EnjЀ<ֳ 7/X`=."JV|dB)*'\ -RM\
XJmm:qDwL1
BT:r[^>|\fxU4ӵÌSل2?ue,O6<nΜXF+?ھᶽɦ7ҋEgA6W/Mi܁bP#7c;
Bz]ea0ݳ!˲wUqo?8Ҏr85xs[]}{һ -fF7p~ U)mKR~T_`z^'Af`Y}3Pf} -MhV7ٮ)vܨ;2`Ɖ;xz$$)8[]n6=@d.Z5eyLּgKFAgR8+ZȎwnƧO'=+"O}4H t8DriňRbHoګ1{۲B}y
'#)_kb[-U),dY/rU̹Py>~fjh6<|y ;- -őK2wT 5
GV -^{n$l־"x/!GBRH/κ.͑Q4|e#^j%x/Moi?&J$C*de%U' -wb\;Į2%zdbU{)5帗T(۷\KkpC8Eb@+xQRB5@#\\d!ȷ+VjȢ(Ze%r<OZh+'Ѣ'nʏ4{utoJa -endobj -826 0 obj << +/Length 16915 +/Filter /FlateDecode +>> +stream +xڬct-vضm۶mNcvm۶tu_}?<c<֬Y5k[dD*tBftL +5303` +f/8^fgT?ڛTR/y`q~ +$q/D#}tD7YމR[tvNbpldx&7<&)W@[' +" PG?4NUѢ`ݾ]=<]7EYRf~:W(ek.kÍL o*nֆ4d&`䆲%ҧ֮!oadFޣ␌n$ʭAх[wEXwN}E
c9sY<=,,ES&"[с)ᐦm Is%~\Ҥ2OGMتj-OmmK9b\)p$:_g'(Aާn0EfWԘBv:4Yj҈jF#y0b;^atmtm^@D-`x;3`cݬpFįkHbfPA]OBN2R9%S$ۛ#I">"S{ ތ
#DAs. ٛ3~a%Y=M^E0B,R넰<h\¹w5FX9TU~!!%PyMi\ŧ&*g%nl6B? fO6"4%SI_ќMlUS`ȣ+fDթQ.A +oDq){,\Lkn<G:ݑ,(?9@#O.ZjQKQ[E{HB/No)fuQCDfQYɰ2k4W&Ƥ\,tەD^<=! +%Oޑ̲8u=+
UFŎ9צVL&z[n0뜩LO.".'.l`YúK`2k7[CxЕzt-~{BJYt +HNW&[ eymS?Léh5x]?T+L; +e sCtTm"HY-Pp mi.2XjRVei~<`dXk<ZP4]2 W\Xtw.2/7{`f$@;UٗZEpQ-,miJRÍɩXdo>Yo4hDJ@Vxru1s%Xf-='ZC(ZQSڰ<Sꚇ0;OlU~*bW>[ +ѐdc:iUw?'g&B7q`S쒷L9fU;%˻ƭ9MK + +UGY<xu?K$1!=WrwG;Z[%ni{Wml)tKy1&iAf_GNI4? +_%&_*fGP#FzY-80;.]%4 ,9)
H}hlOCD_S9(i +w"wTH?B߈S~t yT +sRE&-Vzb|Yqhg,ԏF?Ôy D
iu)rVhv83@gUӤ
ԯ3N-jݴ]C֥;fژ:dZ=6U- aTg&g̒48i1_OB90-kQNEMwFA@]x,A˯ +9>bE#Iaa +`jm\A
ڤeɷX,,Ɉx:['pf$H4*
7,&_95Q7N[ad= U`z5{ڥxۣe{1x0r8Tzw-$b|rZK,k2y<fSvjjkN`nݲA6Hh⩖~SKZQ@h9s)d6Q=7m,55}DR)u]*T?fo"Y&?)R3yh(w=rQOˤK*E1Xjj;? +o篃S|;.NQm]ۍ{h/v<\WR,i{ةTAg09 X^!iX%3cBh{
JHC_,֞S;ض4ajK(`!3Ajbǃ`@Fl~d,n N]H":zhuZoV▅)[u-2-'g4=D/xe&\}sB$IU!lFoLb<*`ǙoVŇҙ;#q5"!걕*b[Wolm=/Uo`:;Ϊ;/7N^?1G!wPMNo*pnYfA~o+[Qإbwfs&oxsþE#PK/&+gb*ut"Xm7Si\Q?R)S)1홹g4b;.QӬº543<?Pnz4-!p>yےs2ð .dd +wOn%АN| +pV̑LIL(RW3J;glIt*ybo^al_\VKԍA6[jnuhE\pPP}SL)t0J"A4yBٗyz@ +
XP߶$X߇Y44nQSDgμZQJ[|Tb6۱I,OcN[1WE-ah \r5r``b90XA6]{x;,!,+k-ÇgH䝳@Bw(vb=)E
@c3K"؉2k^يQf6`͗D7lF/v";[ӧ[7ٕţU>͘UsD"Ek[y7/ؒOb\bKM64#9f,Sbpa?
c<ptM,{G`jAN_B'Sw1/(V2-_wPsgZs~VgW0 +
L=)~&Ю&ԑRMDjGB8-dːQĤXRhS߃Żǰ0 \{úg2"Eƻ# +i$pf?h_}C$-*W^u*2}yYS7~ĥJ\;_c]ӽaJ}"p2/oL/ئ B%U?bͩ۬,8q4U(JsQݏlN2@P."Ǎ"
֣]C3@R RZ֣df +u)IuU(tgs'tSyTkvCy{nuL510]o<M!0IGUD#>D> +!nc< +w+%w|G䗘M3FcDs,IR G-C6^bV2$WMFYIdf@OyJsFYi\_ %fhxtwuВa]'d}97~ZGMWdvE%H/]p4Rs;FSH=OH +NP5A;qv AKE=y[_$]k2G!WYD'%I-S,g19P-{
n
+?|.YEMy/3BwjWi#-wa~?oa`-x=[It@sqܟ}"%/@s\x>S>Vn5c +u;Fbo8qP%3 KGuMVp-<&N⨩#҇Й8/Yߋ&1*PI<
y7/"a!eTN.S{\RN@fKL|%r-AQ!iw2b<յ9"Ml[M.}'xZ ry@i=EM!Z +I,205l!e&jibuGt,J)-r7rA\X5\jdp +E$A6JJarzUO>zh +or;"
=s4v<Z#5
C +ӹ(lpCɍר2 +ZԶt%CSwM !TC~Ypg%tYW]{!
%BY +vϙ[6鋋I>èE9|
mCϯSX}Xe| +N~EQI/#@hֶH8z8@ +vL&I +7+q&1&zd]MsrSp,jBk;u =raGfĢ8 }!t92sH@Ǒ!h1%F]I-S~]lu#B~8m +Fk +y"^,5VJ]\`^8JوӌtΦ6(C,2SMɋ7!&LRF^<^8##p + 0KJ5tG~Uրb?P"{K rlPO]{{j콆c:لF9uϭuT<О&P?V0,£#,l< +"+x*#Ɵ+ҡ?KLa!fcCoj)!=T5X߈_ <QSYl3m#M(=OfzezB +5W5F@|9A e)=cf}a' @Ҭ(r-͜Q p ]ź_vYkBuˎ(cMaywcW;y1Tс9cv-IiB#e;q+I +ZdJ~JRq'ڲ"E `B;:WA~+ZA$c\w$Y+vh18#<!kpM`hpJѪKv1 Duj߮3p̢xQ$KZ⥏0u;0= 䞌wc<?i[2>ف8Cb#*A_ѯ*o̫ +lr_3;i>m@a/V*V`<ēS +HmSGmSL}^(L&}!Y`sàR~v/ l
D|MXBB: eV( QdܸV3^E$1&ujV4|",nǭ(.cęK1uNՆYVt-y).!fTPf<h_B|?QQ|i"֓J@JbЃB|bt,@ FAGy`2Qbx%s ͍BdkkP.*CQZhUJC&\>V?"E3m.f"x8Wgk8֒<pݵHJs_kTt<n)(FawF^\Ͼ*y{>i[1( _1FBDmKZ+>@ +!Sđ?nSOZqTN>͐CeܹRB]?_ȐQ퍨O ogqP7Z*1gnrqv{ti+7u\TIKɂ +W1BWPh|S2XXR&A7ڴ`=5N.\lW kɛti,?(P4LS%/؊u\)w?$:-VkleShuP`rO&]P/D^W-;.INpec=Yq\yW W+)=zm,g",.OM^
LwJK<!>a**f +=ax5N,@j̚\1`mX$J:ZJE{IǀK)WX[jh0)>U:PUߦPgEO,v$a]mM>_JSD~l$vj%#;JX7Bi:B ub!<>3ʔ0^x7?횄 +ȥ:rDstG+wlEVg)PCÄvH[/4ܖ[d]*A4*'k#O!)J/ylgZR):\y; )ΝW!ȅ|"AE5O3ir't'z@kfc()EXrO2}{\c +e +c- +zV7+opkSA}Ձ`Yhmbeu{O]ԅ!Cs\:CC(`}ŏ\*Hc~e2h18%/bwL>b ~w%
:'L̉`q %?Z( D뜐mrݕAIb>$ٓ8Sy%Z9YZZB*B2-# ]+rb%:CBıގU!DZݥ۩nY0P:ao+Eڈ +9Ϯb^k;oFuTj5yt]t\S4594|aĐ-< +r5JUmQ1Ķ?>7 3#epK|^$q/ja)(;K|i/>e&W < ;e?%Q+}9Df6#ݨ6FisL/L,67^Oa/kP~3$% +g==ˏNL*O$ZwBGTA=JXEq!y2nb.dArOi?Ѹeu(}<MDg`TRH_GYsϼX(}auyP3~/h4ꗧz5%bA9~)g@;|hO.-`Z@D@&?0p,؆7(`$(g"i6 -ڛ{
N/4?pDCLu# Jkq*Sdw--0{@ҡ7nTeň@=1m$+-хɸ$܊tY^p-_*6/ pB^ĩ +`u +`u7:{ےBnd!6<@0 :$M)`4"pB: ~j!*YZ*t@8<k/\/"<B*,Vk~!1")DŽ"|WW.xz +y.~'TwyI/T~QRsnL| !Ę$-mo!0!iHQ&96i1֔mgQ`d,nU
}IÃ;#1sǣ⑂<5^<ڬhQι!fsw] d2݁12>h}LS6|m51S{L +n3m˾oGF,dӿIw^%Ҽ{P +1-8wMvp>7;=¡v۸~( +agW'ԣJy=$"?^.Pj*cM\֭-%@YbA':{&]()"٪'DY %ຆS0XaU
ҸcsuJHԳ>>]<¥Ɯ@TC7Rqjr7LO-E9<N)2( Ю)NkpkMA}{,njS8lqEx+6.&܅wND/<vz[4QwqPxL><+NY''H$VZ'l{k{ZD躹P2?
XGY>PUegDѰ# .ѱ=YR?^F|<ϸx?K~5nNΛsƕ6 \u +mawqrHY-D1vyZ<P_稄+mr_+8JUXMLԶD*k'$p߽pP;MdZptDi':R +4@kt:!?WQ/>^O!A +ˍf,(m]tcUi0@:٤mEEa</?ӽdr+x;PT!8SaSi4vrݐRŝiXc5;8Ua%U4R</d,|+ҝBh~F٘LMWDiSH +6 :?Q7ԻY`+fnJzE[YZ +O;R) +|4
={FUV+*r $*^;ˋA3fUNE[en8T$ȡb4JkKF]t&K^oiSztC=x JX#TZ/
_zҒ40 +0
hF(ٌ(0`OPiT<
wI¢ݨO_ WWnbR!@mm~2JGH, 4\!J GhZ%NjT"w,qʢFHuԫ~)xtd=Y:%|5&bpOǿХܮA_%| ~1T86TYB?܊0r&O~I[TWu;OxoeNJ?eSc*wp75P,,₲3 لd&BDn(NNWC(Fl70V)Fs"8(oln +-3wrUC +bŧTOu:LHafNj7QCΑ9]K,W:#00QR-3¥LF߾6,b>x'C>f{E1
m[y&3Y1L6>|M7ǜUZ)<7{<I[elwr҄+\_Ydr-]\|F'/uӞ60
^!Z;Ŧ§)G|:7yLq[ϪX:ՀB5j0 9'5$?7( +endobj +836 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1039 0 R +/Encoding 1065 0 R /FirstChar 33 -/LastChar 126 -/Widths 1040 0 R -/BaseFont /DMFGGB+NimbusMonL-Regu -/FontDescriptor 824 0 R +/LastChar 252 +/Widths 1066 0 R +/BaseFont /TRTFYD+NimbusMonL-Regu +/FontDescriptor 834 0 R >> endobj -824 0 obj << +834 0 obj << /Ascent 625 /CapHeight 557 /Descent -147 -/FontName /DMFGGB+NimbusMonL-Regu +/FontName /TRTFYD+NimbusMonL-Regu /ItalicAngle 0 /StemV 41 /XHeight 426 /FontBBox [-12 -237 650 811] /Flags 4 -/CharSet (/exclam/quotedbl/ampersand/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/five/colon/semicolon/less/equal/greater/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/V/Z/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/w/x/y/z/braceleft/braceright/asciitilde) -/FontFile 825 0 R +/CharSet (/exclam/quotedbl/ampersand/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/five/colon/semicolon/less/equal/greater/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/V/Z/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/w/x/y/z/braceleft/braceright/asciitilde/udieresis) +/FontFile 835 0 R >> endobj -1040 0 obj -[600 600 0 0 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 0 600 0 0 0 0 600 600 600 600 600 0 0 600 600 600 600 600 600 600 600 600 0 600 600 600 600 600 600 0 600 600 600 0 600 0 0 0 600 0 0 0 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 600 600 600 600 600 600 600 600 600 600 0 600 600 ] +1066 0 obj +[600 600 0 0 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 0 600 0 0 0 0 600 600 600 600 600 0 0 600 600 600 600 600 600 600 600 600 0 600 600 600 600 600 600 0 600 600 600 0 600 0 0 0 600 0 0 0 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 600 600 600 600 600 600 600 600 600 600 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 ] endobj -656 0 obj << +666 0 obj << /Length1 1606 /Length2 997 /Length3 532 @@ -8473,46 +8619,45 @@ endobj /Filter /FlateDecode >> stream -xT{XSoWW|rDn pr\D 7a -/ɩ'9AQNE:gq(!n<pRZVjܗe==$O{/}]F݃t)]!r5+Dtb<AS2~ VpxIWBhF*5bV0H4ю_K!( Uk"(,*A - i$)f9& -cHLb#0%Lih9RgXB䐐6vgN1!״C B1iPEPODPJH%czyaˀA!Fy` -"@(GQ%XxuJ_ ΟGDB[/6s"N$0
] -Z`,(L)kwC
<=(GO -8*8//)h=a[nSwrK^NY6|(7wmDA
rT)9r3Ӓ*|&K@L) Lǒm gN:b[n9o?G~S;
|ߟFV$=E_V/wzϷ)K6取y՝ -ݹr`ǦI{(o?w:jSZh8BhujHؾDvdLGZomq~4lZĞ?:<=Kɉ(ZaVq-<}K|,?wl {{B5g<'5v[ః}`wWs}#gm={S2+u}o~giX_/aQ~ukJ/&;?8ᰏ$Ų7S>C-B#3TͲe:4[+"~{^Eʤ/JC#7ߋɸmM[nCl!L`zחW_l(
Lz9nd.foW1}ՍK7 t1"~bPC^6E)]Z[W%Teݞg7CeL
Wt)R)=rKuN;);AGWlN}Qio<W ꓕ^gez*w<<Ytб@f)ñY>g(' +xT{Tgo4OX䡉ڀ+oPD +C%:f& T+Eh +ʺЪZt eԿlIN>[* +VPi0"9/8T`B,B! Cq8Eaj-X.瀯$ RUj$%c9.izB!P˥b#?26DB24, +'}"#=~q.R3QVXF)~L +3x +NPNyFni ptd.wW(bjL2bʈ`^ljgxM<[#IF]\BÌ#[eₖ;n>yWz
TuJƆs5QI0cpO[GT1s5qyF&Y%ґ]Jmp8ks{ת9ox]iosP =,Q_k_+knLֺW?Ro*V{20w2L?'&/nP}!.O|UжϪ#B+GV6'"~`ʠEaMw{xxݖfgL^Φmu{#CSc}¢,*3.Y}en,/7=+1EwO|5h)+Yw^͞}7f1ϞОQVeW:_ؾpaU3X˟)bIlv Cla5Oũ>5[ʣ|ZEmʤv1gٺްY[&uUWbȀCɾn3[&X?vT}eC?z͋s(pu.P99/^fX٬-Jlzqw{J'º˭ʅn>Q;!,,)ߔz#vS^~fKuvU\~pK"Iœƣ34nP+?O endobj -657 0 obj << +667 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1041 0 R +/Encoding 1067 0 R /FirstChar 229 /LastChar 229 -/Widths 1042 0 R -/BaseFont /HVRYXF+StandardSymL -/FontDescriptor 655 0 R +/Widths 1068 0 R +/BaseFont /GJEFJE+StandardSymL +/FontDescriptor 665 0 R >> endobj -655 0 obj << +665 0 obj << /Ascent 504 /CapHeight 687 /Descent -228 -/FontName /HVRYXF+StandardSymL +/FontName /GJEFJE+StandardSymL /ItalicAngle 0 /StemV 0 /XHeight 400 /FontBBox [-180 -293 1090 1010] /Flags 4 /CharSet (/summation) -/FontFile 656 0 R +/FontFile 666 0 R >> endobj -1042 0 obj +1068 0 obj [713 ] endobj -1041 0 obj << +1067 0 obj << /Type /Encoding /Differences [ 0 /.notdef 229/summation 230/.notdef] >> endobj -587 0 obj << +597 0 obj << /Length1 1625 /Length2 6140 /Length3 532 @@ -8523,96 +8668,100 @@ stream xVgT떦 H""U RBJ$@ $ ҤH) ])RCQ 9u{͚. Q5(BbE%$ Fϥ@ -c~XfH(#axQ$)75} {x~W.ndjn`a*ߞ -`M}a.\:/*)+)!K9Iuև`p$ -IR?ˤF{4I< ]>H`ź$nEh˪i ݆2dIGxp؟ǘ+eՁE !֩߯4J;tWr=#̢/ʂOe(~~6dx}GZ<2`G4x -bxz
G` ڥȥ wmHB"kiMu
x\+w=jn&.YqXv72 4$kc[Qi[ۨ5X-%͗.62'Wzf)m#oMJs[+ -TԁPȴƵ/?k>5xp6}SYO9.8ZAi} rfL7YkYOdC9H];I㐜/JCNUߣ&$bܥc - >>;n@{abI
NI㨓*'x*]=;@Y푶Mup}4rDAUKՁGWDbG<:~LUr]53,n/\E<aK:&2->@}h=3R~WB=u!LKz**]ҏ|jb?=Kw,;gD%+Љh1Ԟ*2JtqM-GлTQr|S,#z=%Oq -vi&&-
07u:?{-_ En v^iDi^3W[UKaX
?:)כ}iZ/
~/wvjTmϨ]$ʜK^R%
<ضb rꡡ
"6'd2F<C ):J$_
nG\Z C:aOr)?-VXi`1tza7Iq-{ו)?$p
?+]HEIsR -\m<J;2kox{l!ח@G
e%w
Q-;=9l?)ng;BS+yNpzkw/r>!Z*'nlMon:ƧcI*4|RV])<$8gߎDlmWJSy^j#lpq7Fv)x+7LDC?.}E+÷D_NMHP :OY<m`U2MOj5?rl/\ĕ} {TrL7D:1+g -b>JPV#}*(L!)yh/W9ū.aoBJOk5~zz(*$>}]/zp;+CR<dWGU]a JSJ\ -ٯ{~d)eEwӫv}4a6$dtڿXp)u -ә=20646Mpe#FW.e؍
ujnW(B8"B8?ӫe3rdȉ
ϪI"]72S>(ԥapN,s'!kE$jtd,J;V/hs|=)r1e|bT^r<b8g<,vu(Q5 ->q9[2&]R+7<^ylu4X@b4Wȼ+6י^/0.8`6GIg]r[_G}vP=M\)"Twb\]ADHj~/fYcV0;uKѼoF_io;&lDyvD/nʮ}ݲl -ќ?lأ/y?}\&qСƝ]m]y{[jR;X3eo~ɎH*;G0MrUxιq9կ!I-lԧ!~ߐzK]4bh(o |Gijj_G4&~Ycڜm7z,sSMwj=uUkYwwV.wCTh7N]?zn.$-~9u,C P>mms:uA^{,")vLyEtK[Q4?26^.{8^F[M@a)[60 -[P ֝D?Ӭ1so(L݅`:JE)UaQ\J,+?_4ލH|zp=H_
@w
\c~uNnFUY$X_)*n7n[rհ#8 -xމ#"q`nYɀTs[]z::U+#u2f+Wb:f+W>VYlb, -d8p2UDMz?KnE{u6e4Յ,N˭cƓiO(5L?lFq2[ -;؈;Uco?JZKO
`~wF.%a?a:(hyZM@-*;3;l x(ᣚ'"q"h;"iVnH[~K2a0HoØxG,(:X -qIr<IHq2>|~:Ҹ)v?WĤֶ&6r{ft{@#sN<z~ _&ɊO+ݪui5Nz[/ԝulGHr>Ҿ}G!5^1K9`+u.0D1[A.vRW&n JH>}O!w^}Tcb$dfaDgjzj^hą8]v¡ܔj9e2/p(XT.%4xZxq zG5B@5>`sUͦV%ECxjzIO!S:}'CBV+wrti$6Styݛ(%{
^faT -~]p;)k!ҠgDFu^1[ {r07h+#LRo`t +c~XfH(#axQ$)75} {x~W.eWWoO~0fG]ޔHJJo$:ChRBLBBo4ZHҘ`!H(~a;xxy<x@19rP|蒚d״|&I^ڴ +Tkp9Rӊp[u%]6&@k +l;#G]rMuچy'Y |͋SRN\M4Α4AϪ6]!_O\=:ٺ{HVe>E/jY*f1u}-6i]a+s0܌pkʶY& vF\)}i4̝Pw&~W)>fd^'`$UNmTe(eܘrVtLLhñcIhϒ$vݖ֖3TP|Z<A:;n9C9鰘,Zl>q}A!ȏĐRplOy'w+g!"O TXӶ-"ͱa̙,[C|f +Jqk-fs9},^'KfI.qHΗl!QM1K]1sPLx7b=0$ey$qIc\Y<k.Iqco i,
H[wm>Db9y ̪@Q+^o"@#v*.qjO7r\b.G"%N [czξևNxƞUv]e?u+:`&\=I +R{OPG>5ewjѥtUitmcgD4x +rRjOV|%R8]#]g(F>ߩD?wLF8*I&r C<9rփ<Qf5{` )-,JKd5V-+fF$ؙD7Vm1.o~VC(6_!alLFN3a\J^@HHuBN}Iڛ:DӯnAm;4{4V/P]ۭժ\p˂%@Vv ZؔM4qTRxC;B;5v6ևg.meNĉO@e^rl[19Pj2KIӡW@T%ůy#h.-KcE|!aqJ}'9+|ܿ|0P:=0ݛ8`Vʔpڟ.$$K9i)S]ZX~zݷImFi[sIU[W#[Č;z\(G~}es!)v'8=e5O +pm9UCO777GPn`z +?=F>_^=!)+#KA*犮R])xu%SHHTu=?2t?;wRܰmHL,oF:uFZLy}L|Ȧ
NNh}C2Fņ:
7+!TJO +ȟղ92^DՏgդFPg`)^R08'vE"aE5O2G99i2s>QkK*T/9tf_f:(jQS-.seE/<:
\ eP+dޕΎ|mrLflH0#.h^譯>crOL{& +t]cZ1ޮРf"$xfIb?L,F+흺h^7L#wL/Wg쉷v@O<;"7eIZ>nY6A{]f̳ݛ{?MITן_`Ar^%sKrW߽?_ +#ks&}y +0漖g/D2Di%'Hr鎖|SwmLFw&0o!qbw-?Uў~`ofׄo:E|)D>'wR^f>rs:R=;i#оT?cپل~{4AC0Qƙ*Xҝ%ӛ"P}M{ǦCZiwMgYz.q:K`8616 +b$>)vu8Lɡb,9tgOkR/!+6-r۵6k-Qw2=NO ˨:ky5ͤiRrYDSוۄQi?7Y}Vm Oy[Kmu:CACWwHUdt.)GleҏcjG;Ć:Ja0^1Su C}2j9Jc >}Ce?3ŭ[tcPUNei7FfB e0Y*yZP/TF$>t=NQ|ֻ^ұdep:'LQۋ[viZPRЌxIjn<ĉ8ĊFd@C*z-ks=qʂp3_sΕ+orkr,}o]1xuW|i2dIZ8QªS"&z=~a%7"LQR߽u^R2M1
WD۴uwO&~CK8- +帇|Fk9FH8O> +\i;WN+btk[ICn=W9f'YA=xnro?/dŧFnU:STyV
ۭNc +̘0֕ko" };]O|ۄ%Nύ;>1 +~1g
2s0v"L3E5=`Cyrp4VzBW.;POlnxa2py +ljwoHWW*Ds<-<E߸a!YfSp!Eө~r̓!!tu;qC4)<FDImF=w/x30zKJL.jiTصN[i3\":-l9va endobj -588 0 obj << +598 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1039 0 R +/Encoding 1065 0 R /FirstChar 46 /LastChar 117 -/Widths 1043 0 R -/BaseFont /QTWNZT+NimbusSanL-BoldItal -/FontDescriptor 586 0 R +/Widths 1069 0 R +/BaseFont /EQFLVD+NimbusSanL-BoldItal +/FontDescriptor 596 0 R >> endobj -586 0 obj << +596 0 obj << /Ascent 722 /CapHeight 722 /Descent -217 -/FontName /QTWNZT+NimbusSanL-BoldItal +/FontName /EQFLVD+NimbusSanL-BoldItal /ItalicAngle -12 /StemV 145 /XHeight 532 /FontBBox [-177 -309 1107 953] /Flags 4 /CharSet (/period/a/c/d/e/f/g/h/i/l/n/o/p/r/s/t/u) -/FontFile 587 0 R +/FontFile 597 0 R >> endobj -1043 0 obj +1069 0 obj [278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 556 0 556 611 556 333 611 611 278 0 0 278 0 611 611 611 0 389 556 333 611 ] endobj -580 0 obj << -/Length1 788 -/Length2 1202 +590 0 obj << +/Length1 808 +/Length2 1320 /Length3 532 -/Length 1775 +/Length 1904 /Filter /FlateDecode >> stream -xRkTSWF2C#%"BC(FHȽͅ-e,DAKkPVA$AGus9!Fp`, PN{ -#ruiT#tWΙ]@2M
o!6 0/
41"- -kQ@^h0c(1[{* &bMUVKƮv7ڹW۸3~~5/v
xS`DigYt{OCJdz682l[pQ32웟:^ Mx8ĉu<Ѭ*.Hǎ?ZRF|pVޠcwUi^`] -lhsj8-$j:Ee0g_p+xyjɇj7ŲצR6f?oKHw;dn -/sɽ?$pkšq5?RFse)xr|g-{~t>6,CDgN`ʼ}X6~D1f{
,>vNERoT~^Z~>wfh6/zϷJmVݑ+4S}=*\cw5kÔ{0`I1)MT%%gIVɎS}l;C|þ/W%Dfp/mG)gF;'o;1/-GH @{P7.3Nq7p؏
6_֜ʷL<`VM)Wk\.E1 LSHendstream +xRiXSWVVTǃl@MY-ɽ&l(eZ,*к""QPP؟3sG4vc;`6J$=pr9T +P)ÐP7H +* +O +vJ hؾ2T4KԢŬLKPasLߐqqL(͔u/yHcd`"L +》a~',G + 3!5ՆDy#6"> P0XڿYdg7o7?[;T#{6~&SH +UMTЏsGyA# +0g9DR%DI<,_WB(2W5nkmDܣMҋEck3~Wf4GBmQ /dβm;mahM&AP~gSU
q.de^TI#<enG]wfOނg?5]tX5WT_G3.4:\l7v0\ + endobj -581 0 obj << +591 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1044 0 R +/Encoding 1070 0 R /FirstChar 58 -/LastChar 60 -/Widths 1045 0 R -/BaseFont /HTOQIC+CMMI10 -/FontDescriptor 579 0 R +/LastChar 62 +/Widths 1071 0 R +/BaseFont /ADGSLD+CMMI10 +/FontDescriptor 589 0 R >> endobj -579 0 obj << +589 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /HTOQIC+CMMI10 +/FontName /ADGSLD+CMMI10 /ItalicAngle -14.04 /StemV 72 /XHeight 431 /FontBBox [-32 -250 1048 750] /Flags 4 -/CharSet (/period/comma/less) -/FontFile 580 0 R +/CharSet (/period/comma/less/greater) +/FontFile 590 0 R >> endobj -1045 0 obj -[278 278 778 ] +1071 0 obj +[278 278 778 0 778 ] endobj -1044 0 obj << +1070 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 58/period/comma/less 61/.notdef] +/Differences [ 0 /.notdef 58/period/comma/less 61/.notdef 62/greater 63/.notdef] >> endobj -577 0 obj << +587 0 obj << /Length1 1630 /Length2 6677 /Length3 532 @@ -8623,173 +8772,173 @@ stream xteT6
"!0tw RJ03P
ݥtHw]C /Y{Ηsw֬7Cm=^y5H A H4֮]&TRWd -ӋⳲ*AVH0dIA6 - -PWHB$)$_$/Y - { -vHNKAVRg|Q2h }~_mK_,&u9^}΅krboM<al%ckF L6U_20@-}5QOFLCDRFVqzzݾJϝsU
-%~W4%*V>N+3#0(/Tك$oCd ?u}J{B+}BZ`UYlPXiՖ1S90댪~d蛅XALJQ9DjVc%Ck:P{IsI$`M֏j=Ҟ%
f:H(}ϕ n-##ߖ'Tkɽى.}T.+(w{"X^x˞ƹA:XR/揗7MK"/?2 z=i[A?}<w}rsȋfh^
bG2l;,V:zb̓`ìf5;ýY/m͎Ҏǡ1WQ92,NK%<E bɨ~ĪRgg/ƸAȍHo&aib:oc3Ò~^ωz/BKBs{eK)c0Jڥ"ȗ9=} 0#o2<hDp]mCҰiD8+I}AJNz+8_(XфlFe9|&3D^okslXNKWN椚 L}fR,S*]wE5+UtӶWA3o- "h'psT!Va˒JnB
ԛЫeoF%k>m4<xI5Qze(;z;7||($:Lyz` -cw=44.f~ڹE;0y#m05
G ihռD#v<,FIwGEUg +Se9r>I=<8}rZu~)θzpcFu+"^]@O-UUݸuX?@ƴl͊~=_R:Aw1_5U{xsp\dç,ׂU}11'[<Dhfp - -P]E,x|MMUoaߎ[WuE:6IT~IOhډ3c@tJihQw[ӗ:P½7)r0E3a1.$KxXFhp9<P걱cjWEc s;,U#hDZU-]XhChϏ'Ef\i*\h?1>I6ߟP]12TW'Bĺm<}5AM& :16{+~Pn -|bhε7@{Y2-13h?4,xZdT9@!M
+ut -3bW2Wq*Pti,50-Lށ -D=6v.M1@xBk'M=\5ww~aYN"]oZް@. -Qo?V>Hm|]H.Q.'[bF2zknAXJH-;ĉ9fGW832d4⨡E+zYjJPZ=vmYvho\(SzIVG*gUrs8F2E0ksOsjPEFlaI'ch5o5r̥)',|bNKBBw/"(%i0sju&1oy]ʭmDšL8O&"8Vv~B>ާJcK,Y+oQoq]E>vQuL^/[˖n؊L:`Ufl^}6pROK%B_^Mj|A5 :)CSfp'u:<GM?LY):em@-|vmC7ȳ=g M3ʚ<:2{+f'k[SLvQ=IB]XbUIKtW</iS\Ԍrf>I W3kao:YR*Y@9K_e?]8tԢvTu$Zy HcGt,#TBuR ^KL:'刞!.EgݺFl>%]fh!ѵa>v/
FҾZ@ck11!k)-k1mt+WAWÊ)Z`hF@$뷡KŝbgpBY)kw˝3m0ȄM1*@C6QYju{j82A9.F$&j$Y$!_\6,7Pp|TY|uadGcVf2}cM_}mѡiUVAfdQuO&e !ƉC9_{V)#~pD`ʶyzZr]Aq#Z\+{cv%+tfpvO\6ViDt9=am
E1e!X|rkЪ^2ԇ\"`
DmXk7ZWopՑV";:.@t\}g4oj@Kyj/*l_<#,Nvt7ջiY|"')1H?M`BgV]#U<]1e+w4mv\4J!Fv-ޠBu$HV%kafa?xqֻ *z̫+YudcI#~B7Dh3r6ۀ8)A=1G%ICq6!>_!J#^iܤ<ڼV[hNuw_Vivwq"veYKքqhC\ZunZ[۟9XĚ-JPDШUTdu\fr'
:G<Un߱XftqZꘌ͇ؗi߮o:P"Y&&t=E?GoR09]|Ġ~% -4fR]0`d쫔j҂<S~;+E[慘9sAL.{nߩ/; -F6дGp2iZ+*<)ם oJb+n~ۑ@̗g;]CM~Z^\LR2k:hfZ8}I -#9zBt+"
>}%nܥL{
wIY.W俽w8vBQ`8܋Juړ{fpǠQqJnR"t9
!Z9=[@*7@YwK w=[2TGζTi6wsx$Fc7!yom7+&XGIȥʠdΎ2n568|l ٓꠎn(ef)L/JMiiL̐v.`fv'`NgJ.kydUʢBCH82V3&qWA\fu!?͇7Yyܵ9ʷyM:xBʃkV~r#m~RKVC1#M5lDF)&8(=H|. ٠7G+3E){
Hʓ4MX利I>jj`TK= 1vt ե%(,81siy [o\_b[ߴO 6YKhf%vУD>'Yly4٣MSI,]5"wO.jnWUS3V~\n+];p2s+dX$`OI00X *DD04#cjY˃Ve?.[GgUHc*<{P -a?_ |nAOÝ<gNbu@sTSem5QA<fs
&#T}i-!3<
lאQ)ZTe kSzˑИt/cfC.HV"0p$NfWiCW)뫮~s*8>E&
)'6:v^f&^Bsq*XդiƏz%*?'ɩR8MsJJä~`"Q<]i,jHkb͈ -xV1%.GZ"҇Nf8|ٜ|ɉ6FqߘJH,0$0fQqj'[}eQ$fc*Eb9ck~; -Jgy:ŧ1n"5IW< ^,)ޘD7=!k*6470_|L;glth!_Frd9%FQCae]e\qHXdYY} -څ?hv*.Ôge?x8{~~k3~~R١`4#G^.s(7IE>CYF(Bj? g/lb=n -^##8ЂLmmVpp
ˠ>q|5Лb -"z@v;2gSXvq5ӫb[<<ה̙;5֕/@buXh>e
*߀[D۶F{7̰Z٘z爈dfjW,kٟvlʼn435ܸO(3>Hڱ\
5Z&.g"ֿɗ]3<rQ +ӋⳲ*AVH0dIA6 +a +ߑ +7@m?e"&`Zk +[0oӟ-ן 12ok-~};3![K&hJ.9T|ܳVg(5G+`P^]eIކ5@~B;J,VW@"H
ؠ2>4)<-Ic"r aUȕ'Ȓ7`<0r.jɿլJ$6 E t ^"_-ITMz**=K̦u"2pQ)Z+ +i0[h9FF-Oē{-]\VQX3FE=s/u~^/]%vo$>D_ :9Se{Ҷ4:>\y .F}$ճ*};ev^YtrX'63ћYq{;jv{6^7ښs7Cc'rn_eX*Jy>HCŒQD^)U`qT?=_qvMҪtgC%iYqc1 %_.v˖R"=aH
ٵKEPs'/szjq`Fd*0WyT/ۆaӈ EqLWtI0WpzQ lgr/Mg<mͷZ#0-+CGYRI5zR6#ZQXCT"kWmѯTǃJg.Z(DNH|BǗ%}k>̅ky 73_W>*ތ^5JZ+ +2Pvv
nLQIu-:&.X\{Di"hk]=6Ws+vT!aFfqajǟ9xѪy; 2GxX&r4ԫ +5V4rS +}ԓzx|q夵4CLSqƬ@Aw0-VEP{io[[q!~$rick{Oٚ{n=3>[tb@jI\5#!Y4ȆOX8cbN)?%dy~zvn)X#;YC囂 =:xc봣;umѴg4ƀТL-ʧ/u{oR`fgg̓)b]BI<y3nMlryD1cc32@wYFWena[/ДОO89?TRЇ;8b|l?=b-d쯠O4uPy'kP3zM\AtclVˡ 1K{ʈy^{7aS
:YMe/U\&(k8$?0)7u*̀Wcyۜ@F(0 T?3ќkoD97>-1:e1[bf~,iXɨesBVrށf&NeHɯTh-Yj`$Zse6ۉzl +d'P ]Lb3"
{Ozع~=k²tEra \~ 5|p3v+R%\$\O 8d߱9$)&5 +`v[ws<t|qfd>ui˧ȥF;QCuWp5Xu/RՔ8 z'(ڲ
ʹPу qç=滛$mҏ4U>bpQmemaX +ժ<3uNt?*Jc'Ѧkj崓;KS7O0X*!W^|EPJҨ1`@U)Lb9[:Cp":LEq埅|OGM7(XGV +ߜŻ|j3V#51*^ W#.E-g!رAuPJ&^?Bm
'@.9nz#Jn= D#<"+ktRRNuxH[ʙ79StڀZ"}]Vچn%g{mkAf5
{y2>8uSeS0%W$,O vwzt5~(&_=ywu_Ҧi|@wg7!pu3J'ֳUr>חп$ˢ(ϟp&7٭EV8
0IcJ~GǎLYF;܍sЏ*uN=Cp]`mu,غ}$WK~PCqB&k|*^ȥ}XcbB*4RZK+<TcL=z=v/WÉL[}S=Ќq?$H$oC!2;=$Rޗ2;g;!a b~U|ugm<yqdpYes\1#v/IMHҳޛI$CzmXn*'+`Bs#j4*)ȎǬd/O9l/nEۢCӪޭ*̈́V-TM@C+=r.LRFxlm5`<$)52 +FVJWB!`l?l'O+ӈL#Ksd{/vc4B2֞U-dҩPE۰oY#WmEvu\7,$)86: Ϯ]iBOי8n_Hk3Ge%|NTؾx| _FXpnޫwӲ|DnN Rb&~kϨG,Iyb +,,MWhޫܓ5i #BZAHJ"~TwAT>WW$Ɣxg?GoJ)&>Jg&m#pR{bJ0,ze[elBʛ}B֕FҶ#<IyyƇ%pXE\xҀZpE,}F5!!0!jѭ 4ϗNOÙ#tܴD
?s5[<iy%n'QȎK1$N2u@Yz/.x$ݸc98`%1qkw/Ӱ]ߔuDLL)B1{~d`r<ŻAJ~ր@r}['ؽPzh,ͤػ\+a;<W6-?W)aնϥ#yOoYwV1=rz[ ヘ]4ݦS_`wčlieW<rUyRG;Aފ=TWu/~4#7./v[Zdeu.ӵq"41# dGsVD|JĹKb$$%j] ԉ{pt{q/|1i5'^7,AG KV-0TDssCrz*}T4ozd;1mfm^ȅI8}-0ƚoBڢ5uQ +eg"M.nCJ c#4Uwnkso%;u4F +稦RjxTL0G̩P3[Cfx$"!}I?Rxr`צ#1gl_s356'9?(e+yD=\J DlaḪ҆ίSW]p5Tq|DMRNm.0u|,L*Ra:10TIK584Jw U~NS.|q^?&<ID(ɣx3ӪYԂLiŚ
bJ\EuINp9 +Z& +:i}D)%,
!ܦ۩MIrL-(ȔʮM&Qb@j)sY>r;Spê}h^pkVOunMg ei+c!T&Ev&KJ6Z"RA5^,iϵ3r+#sQ/*[=5? яqz11,m~#;MJ2բrd{ֻFأ46^><
hFjgvȻB{0(?S? +m*)yhh,:xʯ宒hMТe֙};Vi(7qe6v~$ˊjlܜ>gg)~Mzö/|i>g6&Ai&Ӷ5l(y4~y[rS({c_oF;XKGFp>qљڞ۬ +]&8 A}daWZak7R՞]ŲLcWu5Ȩ(I9uag<6EqSMLl6`6ю\ZOmoduWI"72F'MQ5$ߨyүKL$sT ;K2aejNāh;!Qrn\",eFG=DU.}xeCAc+XqR:UISgzih,"EA;݁(v2eΦ2#0jW$ y)yx)3+sw6k+_ pUK|N_OUmna'1>AݹԮ +Y ):n?ش%rai$*Qg4kVq!QNc%g|:coCkjLW]%Dحu/fxص +hXҙ].Ql'3|44!NtsIl3:qTlWv5IiBXӢ5JG #c>?Mz`\omz3aWN+\~owM67r>t7^GU^3&Xtip%ȶ`U]AꆹnefꇴnB0ّN-`BNN뭅0^Wl':ܧ@G29 +/ +:["endstream endobj -578 0 obj << +588 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1039 0 R +/Encoding 1065 0 R /FirstChar 48 /LastChar 58 -/Widths 1046 0 R -/BaseFont /CLPLGV+NimbusRomNo9L-Regu -/FontDescriptor 576 0 R +/Widths 1072 0 R +/BaseFont /NVCVRT+NimbusRomNo9L-Regu +/FontDescriptor 586 0 R >> endobj -576 0 obj << +586 0 obj << /Ascent 678 /CapHeight 651 /Descent -216 -/FontName /CLPLGV+NimbusRomNo9L-Regu +/FontName /NVCVRT+NimbusRomNo9L-Regu /ItalicAngle 0 /StemV 85 /XHeight 450 /FontBBox [-168 -281 1000 924] /Flags 4 /CharSet (/zero/one/two/five/eight/colon) -/FontFile 577 0 R +/FontFile 587 0 R >> endobj -1046 0 obj +1072 0 obj [500 500 500 0 0 500 0 0 500 0 278 ] endobj -574 0 obj << +584 0 obj << /Length1 807 /Length2 1423 /Length3 532 -/Length 2004 +/Length 2003 /Filter /FlateDecode >> stream -xR{8TfirhkM.Ia5TB3m1.bcfRbcWhDDH"ݱ"ɥ:mq(m5[{ayNs:Yk=~}g3watyx#F"q -ex.L6̓1hlDE1`- -̭l -q1ڦ+eX&U&#qpsДkWner;,<bK{Jr}>uHM)ewPK~/|uDlvPD|fUQg'|jLu#=#]F
)2utP)Ǚ*6혛"AuI͘Б_[NHA_d\:u)w>ޜl{f -ʆ]h+cè(m5*Q6f=~~2v)(]Ej[{(V&fYyk:mm#5s556yGcjYXtVFwⲔ|ᶒ@o@K\тz]͇oum[tnx95cΨ+皯_M:]^ޞg|Gbڰ Rvgi-0\cZeJh9s%sgvd̄69)]9t~#9x.1'&Dҩ4֬_Vs3k)Nۆ"L*ODzk"s2L%?jA{ݝSOI~^lbs[qS{GGƉ>Юڰ6%w}F;̀GD^/OH]:ru{#}(fG&-nSdz{~(3UIn:ϭ3 BkKx]sQtqi$q=R@ӑd,hϲr[.zCgKNd:xdOqZJ&w@ᚵ -Uh6&cTtW4{70\ +xR{8Tf4ƥ)YK(̸}JcsYXYcL(+%$Rڎ]ԮNbJhE^ucy_kg=d_Sg&L 0g7$ +p8+ F +¤№Ĥ!U6=zc-Nu>tgčed#7?cڃEi61?CK,E0:*oZ~Qʗ7>[+Kfw:fZR^hRTPSĩR*S<RK4% ={$@o6!C#O|z7[fmQN +[ySem] =LLvNF8N;C*P+Q.ƲdorՎ[#%K: +k4%;L2;{&fއ0(g69'Yr,+AHJ딪TU0JjXu[}Wbl]֎=D̥Y&"~-wqЈkS겑ev;`7gŖL
նK +M^9*mF#sڍ2ZK×7{<2JB oWMܙmúz+gf䞲_ {}=k"%@}viseph +zgdD|k/nJv6Վ4358Y>crԖ{?;VM }@0l5ʲ#}k>9Rqm褘b'2#+,Rt蹕J5nz,Qmz\2j8Gc
er&Y_.u85MJsVH<nR$=x4x\+u/>ǩ+Tٹ +3ŇVVODoZM_XfɌۄSwAΠLԹm/REKoZ0xHU
)#Ivy?|@lpٿ4AaΌ?>H7;endstream endobj -575 0 obj << +585 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1047 0 R +/Encoding 1073 0 R /FirstChar 40 /LastChar 61 -/Widths 1048 0 R -/BaseFont /XFBLQU+CMR10 -/FontDescriptor 573 0 R +/Widths 1074 0 R +/BaseFont /NMPPTH+CMR10 +/FontDescriptor 583 0 R >> endobj -573 0 obj << +583 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /XFBLQU+CMR10 +/FontName /NMPPTH+CMR10 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontBBox [-251 -250 1009 969] /Flags 4 /CharSet (/parenleft/parenright/plus/equal) -/FontFile 574 0 R +/FontFile 584 0 R >> endobj -1048 0 obj +1074 0 obj [389 389 0 778 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 778 ] endobj -1047 0 obj << +1073 0 obj << /Type /Encoding /Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 43/plus 44/.notdef 61/equal 62/.notdef] >> endobj -571 0 obj << +581 0 obj << /Length1 1647 -/Length2 7179 +/Length2 7757 /Length3 532 -/Length 8042 -/Filter /FlateDecode ->> -stream -xweTݶ.w)Pܵ^HH@w8N)Z@ѓ;{3{ϟs;nHƻ33\Zseeí!*pG_uvsՃ;j%4x nj -$$$pYp'/ag/o?d+`C>CNI?ԇ@ -e@=!`(d: 78@a7 -VC/n:WQ~L?:S0r -)2*:^\ӠE1+mJPrƴ1l'g.:FGBFLL^؞uD=ĦJ5L>Ȏٗ)eR
e]@:χ'h> -eWCo{p<GsqqڀlV[IWVZcҶ(s( -"b|Na4חf~Ѡʰ3 {F8UicE;%XiH<~Ckw}C"OʹZNW#fb/s]?pua]?KMWH{LXzJD2Jjewf|(2E25n=˽ {0LJйDuY2=>I3Qu@;}vSܜ&;;#(4=}O0fִ?rPӟcl`Ϩ?/r>XygK&ϴPšnPF"/=#04X$-sqڝē[ݿ)v:9<
W]'8ؑ%\lёJ 5}dLnM -hoxa HiȼLT&C'yA~* V:d:7Qw(Ve&3{2U\@˙YK~7 -*)5OBrd=jrxfӤ4xms$ec;븞֡/%Tې[TwCkDr.<Z<S\ϟji$ -/ݡAğ{LрR@Z1#/\|l3O9bBi :pboVSBS< \50g~y8sk2W_2`v#"9k]R%|n.&+%_T/A>gt$913_Zp$5-3 ҙ7"ޕێv/ћz8=tj/ׁIQXx4ũ@4'ti3G}!EICzJ/o1wRb50Mc♳2a2||/f/vb} -W-VEq<F5N`s̖+tKۧ'ś"XNᩣ2H<>TaWWU\+^:*k҈PԔ&k&;ݬPk^|LjYOwOkӬ{Ԫ? -űe=)(Q+JGs2Ao
rbTQ#¦ash-OsCqZ$?e_5ᆵ^x1w~*wPSsx2e&L ; ^2s%h={%h3mK.jԩ)Y`"6 -xy[Vqe,j: -~*xppqX-DAmpk)4ql5DXx0ƘϘbx2kcT\,aZcėZ8N_fʲ -D_0,e+<,;y!FkdH&>A=#6]+[>}#vFKa-cN5AJ+*y&k$/)%e -WA\?ebt^DO[t
y%gBrB̓|X,ˉa41 -)1d&8ic|*Fə'˶MٍhjۤE[E~_fQ?JAU6KZ<L8>!"qלj{q'E1zsYd7Gha {a5ze -G{䗓Ӎ6b_1k'J`eqEێu]*-"aRrVtOt^#\(o]bFtE@-!?-w -w86-#pZִ9%3Aե%93*چ>oANDpA9\EHՅ{6vkKCćڒm -珟ioY\Ldw=s/*65R1dJ40(h ZՏsĎxXaRpQDܙ#Y}Y*<2#m$}8p{4 ,yTEHt?;Ξwru},y6Q[ik$?SAVkSX9اgNx흝YE;Սh0L5TĠV8Ҫs-%J篨j"v TTљf6[AM>&
_\zfM΅No" -Ȋ~Zwlmپ,"Ʃ&>f~]X\bh6@Cu_ĥvi -a" $W*Bҋmf+#*yM],{3pCċR[6wߪ`ۘël~c,z)8D -s('3o~Iw -K[~QV=f>IuTS -| -J$pdзKu\Lm -5 -kse/р$`xqHbq:C`%㝡V~tyO7ň?;dxD͏U2[#%b~FOnnwxM 7.kyΜ9+siys)AKeXPMo]@r%:.'fx"xF'YMB0wJ}}1TeBc=-'/E{ϗbg$HZu2~gŔê?ј -[]kOx?۟}EQ7N;,D[,ly^a!T>"f0wngb)ٹwM[k
}vA$EjꉣLZ+7.Lɦ'bΡ?mM 8O2@`vtrҙjg(ݼbG9ڱ/7{ЪO"aꄆȜܵ>L1yVnãڒxRi -Y
oӁ쵛Fl#X/m/`y{缵FV'jhM@u:;gK)\$ܘѵSx?_wȲd{OU˄ܕ.&yp?>ɍxB~q~mm<f@Sa
1$nzlSNCrIaG+,wtCn!-d~)0PlUEVdo$498$g/@%JQ%xKuNp0v -W nj*i`cnހ;ӑeu^垙EO$Ou(4+qXK;w:QÊ/U௯%yW!*dՈx2!_h -u5Wt/^pC.&TG{6&sluNK<+ͨ|]:Ff ]eyT8*wmSh?hYM?t@u6L1ؚ5L]i3S5UgWZjRÉwΎ|?A%A+&v5[V!!!GMjSS,/23C=Dx )l3Z\
هX!*{+([) _gZL*hzmRI]ush,:]nlȐda^;t2{Qqg98^fc{كڻT;w+],:^#ܥzl -4\=ӌIN-Ύ==OK|Y1-c83Fd|]YZd̓/UD
q.z%WXJ[44[P9mbv#FE/Ut3,?Mf}rn<R>:V#z-rb[fB
ĉ6hE*'9C2;03U%$jQ -?yȳry$.Xpk!`mc)Xq%w`EOZ<ӒtjJ9㥽سϊz
,@#S<tK~.8vRf2 -fI$Mhׯ;V -qYGЬs{&u -8me 6Y^fDmEM/ -"}ZsD5.ײ6é8/3kF[i.jz/pרI59OtelCw\VP3WF#PH(R(X7T[Չ6qc;ߜtnNmmj}(kmS>EC)HK6x9Ec(TW{2okI#P]C?=f~Mb59X7|zl^ +/Length 8629 +/Filter /FlateDecode +>> +stream +xveTݶ.EUV8=@@Kp ++.Z +mq +-vh>9gfdk=s>s50irغX].>n^1"ƥwWF +;
s +w6~h3d"!Mxm$ΟLxԪ{ZvX[{DC(r_+kyQy<7^ZF/:,_I$?l
)Vڙ&(]Q@)vՍe͋֊KڴxGVp'f!D)id|eO(SUB_GT:DPؠ(JZos%FGNm]ڗc84-F%aFV$`~3*&72Dƭ}K.k{ţ%֍r)p?5`EGPjK^W +k|3,-a1#hJu~9-OE%1J4z<3@y)akʲOxW;ͫN&"= t)-X$h EUQ#^ՍK\lXwOщaB6dY`@]%|6HxjT2mOkF/r.V4%@{2~ +O-ævK,IO5Whwf.hF$ƀm[;2/|9sÉ?13(F=ɲxɔ&q#86-l=O%辰sfQ:'y%k +;|s +;f >Y>Gn1M|L,wXdFXD` ֻyV!ft])4ļ?Fjiލ=%05#$d3պ2#a +Lq854I@aG02R_|kr@ջJg;*OÒSXU4mgxC2NͷZwGTveg
9\9*VB;,;7VO)Ǭz\FcVirG.T9dK_Q32_&"\e^RV~Y/D\9X+}0T~`mh8-QjUohQN8i #`}6*/]e(7evf;[sܠE:4:#mmtej遗SAn@Yetn:'կ*OJqGU,rW.&EQo#%tr|4JWN'K}:.lF+tL6Aȩ[hQ4ll5=%tie$.znqH6%a[헝[E{+{ISSd;'uڸ(H+RG`Yb־@6y?fAs2lMi4%=Lr1GPvHM~,{ҧL|VSƢ|!'ؘ 66rմڛ^0Ika+-]]Ps]-8߿G:lew=Tk99Ɯƞy2 ;a4#,&4q?B~{3SlWM?B48F=Ha6|j*[&zz7LA1(4S?y,rW~֓E"S`-`DB}?e.B1h_-[ҫ^f97iN$ {qqӹ6@[}Vϩdzt);g#3z?{PhMk)ݸO\j+ЯS? ";4HTde-ф3쨲7m<G6OAUxaeGy2ThG.ր#$@'<o=u/.g@{xLk*\4on;gw>1T+$[}x[Z/>wL;S7=ZӃl[wZrjWLGړ}Sߊ*EG![6^|$SV@,hWN_\({C{Ռd`!1Ɯ_q5cVRtgiIvF7]W?bo+z5D +z'u U4(d% Xў`K䆹|Fv* +qebi]U6za
XwLOLa exB=U{jwpo5-6 +ej-l#}T䊭^C +?c='M@`;!G)[VJ-xDb豂>
QN,6nd
\TT:!5 3;|Jby$KxNxG +2Od1ovaK̋ +/g9O_g8ipʤVۑaˍ{[gi36P)smNAP='@-q H{L^w>6MF
]~"
vma'F^<*S˫]5 +`LBvQjuK5Vl{^950Q9V6Nxo0ZL$-hԐb۞Ou;KGdYAR@HL~`şY4,nX=6yW >ip5Xc*קfVܯsbyQy* ~aY}zqgcJ̄2aN4TaII%t.$j,[&mEJ^l<:zKjUcdGUo72lJ& Nl_znRP6cW dӅ虭n٣Ud#l;=W2q_mC*JH6w6gj_3zc.ŶU<zQh01:șv':'UFtW݁ZoPF2iW*-ƠL +s#jזK:@+&FWZ9j]>~ץOG)EObK\+^aPnXѡB(A7/*`zeD>j +O:;r9k'BUbv} ($ }I
dξyw!+K
-R9eV5f'yϣvu翼e
n +Q4?#)^XydLܕ/ŚN%,]ϳ+[g]{t<}H.u>g +eLAGKtӳ]E#6{ +K<p'nTi E(:<4^5TQ:xeE~k䕽6SMnɣwY1N;em]Ħcj!b#헣WѸbssҔh+wPF0yqРX"^dH>GsY]bܢ\!RH}ٔO\iζ2cOw_wo:r +"z+O=_ TNzJi)=ʡߑ: \B7/So-3I _)r?3J<ry4o~YsB7y4vcfkM^i $KbaiFؒr\CիڞFS0ӀuT +QX'y
J̣ҏz2ٰthYipFZ^*ؘ'o2tI~/vG} +L"tjtpMJOD`1&;Z͏P:N>IXc/m\IqPi;EۨzvE3|SD[¡6w@Hc_?+xBCo^tG}E ]+xh]s)rf(_DxXyR}.>Ks@Ϸ!dA8HfZUg$u_/n۶[)v Xf+s'eW}J@\uͶHwtw8w]WuoyX#$4ө}^(SB: +A6)7El+;FDRVx9ӛŕdU"]m +M7[ +bcDGMٖjZeu]҅u_I7?c\? +Q($D7KF.X-pʶlLq2=FN%=$_K{ex\ųq5L6kB%V:#KEGb \LF+̅pY*վ>ZUaCd-cЗMDܦ5"'W=LQSu+n̈́m LxsOlBkNlPƘwL6^!pjAIh(^:\0Cfab
4%>:qf)?Psj^d*PNWq@AoX+78'-4uv%E +'(z ә,#0~ΚX_iwa^)Pv4(|]VlLjs,ẕr0R"</_H$N*U[6OJyakfE8ܵ I7>hL]DIWn=Plܭ}JhO]/oȗ(WV3-zĂD1a &~igP>rb0O.y#ELo,pBJ1[ OQ?zK47Fy$IQ&=K܂<9"$FHFg1Gc\t*VëP<g4qFk. `HqPUWTz,$[]fH6ݜb=630*F@Jty|fWh/r~1{1*6}iA:䘽D3JC.FiϥGx^mphmE$Q -\.
YylBB!NBgMS#"FnO<4ʸ"]+gآDj
CkUYp@a2 j3Y4-ɍ@jUYi=}|i^,aw)mrFјg>^Qp}A4oZkܢ g +'y[²":Q^Beۗ~ByڏGKo~OnFh7zﻏJ[hXjZG?_סu{H~zyaRqxTUӇ.皜!]nM>s34ϝ1}oX)HNkjMhJqcB@~{à0hL/پ l{f%_
xIUuQUQA]̎$> +saT;i endobj -572 0 obj << +582 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1039 0 R +/Encoding 1065 0 R /FirstChar 97 /LastChar 120 -/Widths 1049 0 R -/BaseFont /AFEOJM+NimbusRomNo9L-ReguItal -/FontDescriptor 570 0 R +/Widths 1075 0 R +/BaseFont /VTCKOZ+NimbusRomNo9L-ReguItal +/FontDescriptor 580 0 R >> endobj -570 0 obj << +580 0 obj << /Ascent 668 /CapHeight 668 /Descent -193 -/FontName /AFEOJM+NimbusRomNo9L-ReguItal +/FontName /VTCKOZ+NimbusRomNo9L-ReguItal /ItalicAngle -15.5 /StemV 78 /XHeight 441 /FontBBox [-169 -270 1010 924] /Flags 4 -/CharSet (/a/c/d/e/g/i/j/k/l/m/n/r/s/t/u/v/x) -/FontFile 571 0 R +/CharSet (/a/c/d/e/g/i/j/k/l/m/n/p/r/s/t/u/v/x) +/FontFile 581 0 R >> endobj -1049 0 obj -[500 0 444 500 444 0 500 0 278 278 444 278 722 500 0 0 0 389 389 278 500 444 0 444 ] +1075 0 obj +[500 0 444 500 444 0 500 0 278 278 444 278 722 500 0 500 0 389 389 278 500 444 0 444 ] endobj -258 0 obj << +266 0 obj << /Length1 1199 /Length2 11122 /Length3 544 @@ -8798,7 +8947,7 @@ endobj >> stream x{UXݲ&NCn%XtCCp}=nozުzW/JMEl\Y8X*n.f %
1Cղuu -0Zɿ@\! +0Zɿ@\! Ps.8#n:H`zv[ӍcmPo1TŵҜTOgɦ~̩GiyI!g`S^Q^@uoeE_FT#->s_X:Jw<ہy#} $ʩVWbTBEqL!fG3)37JElI s2/^}Mj )9:*8W9:.5.1;x21i]Q]vq[ڸ υZ8"js$з[#L@y:ZLs!j[1t#DW;ncRvwW~ۊ3`|5JIG_s+_VЕH{QyV#iMl:+{ڻt'?=s쒇!8 @@ -8841,35 +8990,35 @@ Gtj \|L5g,nC*e\+;]ΗOfvu^U&&-l"^ML",5{tK:;Q`z*|orEL)qZ?aGY_ +qnMi,[f15q$ѩdSʛ9Wvߢ{۶㴆TּA5˶C7(4wJ"o@AB:jFO£=AM NXئLaC'j34'T5M>EҎ#ESNUjyYa<M7f3(V~_ԪTh>w,0-~HǨ16μry7oT̟c7"v/Qy:=$v^w|BxJ.ijH?7|drʼnw%hA@lk"밆YUTzȝ-l;13a4|:z.m靤Xj6.$NVi="B=$odfn)u[ɫ _Mn<5yaȄ\/ڶb~ 2OVlVpvesȭzs4žC -DO9"v}8jr p +DO9"v}8jr p endobj -259 0 obj << +267 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1039 0 R +/Encoding 1065 0 R /FirstChar 2 /LastChar 228 -/Widths 1050 0 R -/BaseFont /ULJOKF+NimbusSanL-ReguItal -/FontDescriptor 257 0 R +/Widths 1076 0 R +/BaseFont /NCFJSD+NimbusSanL-ReguItal +/FontDescriptor 265 0 R >> endobj -257 0 obj << +265 0 obj << /Ascent 712 /CapHeight 712 /Descent -213 -/FontName /ULJOKF+NimbusSanL-ReguItal +/FontName /NCFJSD+NimbusSanL-ReguItal /ItalicAngle -12 /StemV 88 /XHeight 523 /FontBBox [-178 -284 1108 953] /Flags 4 /CharSet (/fi/fl/percent/parenleft/parenright/asterisk/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/bracketleft/bracketright/underscore/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/bar/quotedblleft/quotedblright/endash/adieresis) -/FontFile 258 0 R +/FontFile 266 0 R >> endobj -1050 0 obj +1076 0 obj [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 889 0 0 333 333 389 0 278 333 278 278 556 556 556 556 556 556 556 556 556 556 278 278 584 584 584 0 0 667 667 722 722 667 611 778 722 278 500 667 556 833 722 778 667 778 722 667 611 722 667 0 0 0 0 278 0 278 0 556 0 556 556 500 556 556 278 556 556 222 222 500 222 833 556 556 556 556 333 500 278 556 500 722 500 500 500 0 260 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 333 0 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 556 ] endobj -220 0 obj << +228 0 obj << /Length1 829 /Length2 995 /Length3 532 @@ -8877,49 +9026,50 @@ endobj /Filter /FlateDecode >> stream -xRXuO{$D -cnCTPEvn0 0DdQ<=L2EāIZD_=s=#>2RX -0`ha0 dF
E -ØQ4ei+ -LgE -#%P@~ Lq,`8F|Il־!!By|~H%#d,z@C1,f] 3X f+v09RAj( -G'T?!?? dQ 7} I># `up -/S7{V{3S^Kj>wϸa-]>Sx&T0;m1IW~X몁F첻ƱgGל&~r;c/~R55Yڪj\ -cE_=n
!mWtϽ䞿vqa5 e=ٞuRӝXNb{W"%b}cfW;l;q!ZϫXcmnJʫ 1zol5d=R|VazTߓѽʖ={2bu۟.5NR[cLn?zJܭ[]矙Jĸ|q0?/=FvDK4(ai%={j$ ;:ٴ3#hHO}\9Kם|lgLs/WξQÑ3'F~@B7@tNqU{G\ -˼8tp`Mkn HI#m[38l*zwG:/_-(hm眱GϻN}.Q=ƪj-]6^I9!71JYթgV -/HukrM-NHJwy`#҈:_uVT}$mگH.aTRRT_uUoPGG0:%$&ـVxxfvH$xW/SVeJ,de^'9gWj`n/2k7=uima莼<P{1~]mw8pi[ڂ/cjgȡpohjqf(Bs +xRXuO{$DE +cnȁ *dnd[@~hNG +"(-pFI&"HP@$QAM|?믞~} +/F) d`,rJ +`2" +89"Tkp + ѓ"L8N0h,P!=>$6T +kߠa\tp ef~.ф D}3dX RA 49$ 1pX( )-5I@EќB@%H~ +ޥjz|K57~btGNkw*-W*\Tpe~}Q>IZE_!滼bk0jG6i͟9s[6LmKyr.uRȢp>(czj(]ΉQ=vʎ5^k9mZe-}&~qE'#yRb)\
KA*7ui'ۅYLpbghj~:Û_sI"$.%i{˹$Wnur<vcs@փGdx
9-7/-^Iվk190$XG[ O.WbI̪J^hm /NSf?5({omc[yYJ sôKqZiP]wz~Sw(j-]6xzg2_{40ej~V.K@]+os6~wz2E2GYlDh:\a*~#3AʋO}pHmeioeq"G~ +/mteDn87|ZR4ugGT̹IӞ+;f_bgtn챕] +y<p]sNí[9=}LM%Ǽ#/^
8}K۠.>r+VmQ6YX痎Wsafvp
lB~Fy!(.RlmnؽR.;u+^_4[cX
ruy+vZ|%
. *ʮ:*5l7298:I{gtK 8gcfߑ +,xun-g~Wgn/:sGS&'ѝ/KklvtIlTb*8*YVZ9osX@>'Jq??,c)endstream endobj -221 0 obj << +229 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1051 0 R +/Encoding 1077 0 R /FirstChar 0 /LastChar 48 -/Widths 1052 0 R -/BaseFont /ETEGHL+CMSY10 -/FontDescriptor 219 0 R +/Widths 1078 0 R +/BaseFont /VMMZOV+CMSY10 +/FontDescriptor 227 0 R >> endobj -219 0 obj << +227 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 -/FontName /ETEGHL+CMSY10 +/FontName /VMMZOV+CMSY10 /ItalicAngle -14.035 /StemV 85 /XHeight 431 /FontBBox [-29 -960 1116 775] /Flags 4 /CharSet (/minus/plusminus/bullet/arrowright/prime) -/FontFile 220 0 R +/FontFile 228 0 R >> endobj -1052 0 obj +1078 0 obj [778 0 0 0 0 0 778 0 0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 275 ] endobj -1051 0 obj << +1077 0 obj << /Type /Encoding /Differences [ 0 /minus 1/.notdef 6/plusminus 7/.notdef 15/bullet 16/.notdef 33/arrowright 34/.notdef 48/prime 49/.notdef] >> endobj -208 0 obj << +216 0 obj << /Length1 1166 /Length2 12740 /Length3 544 @@ -8927,7 +9077,7 @@ endobj /Filter /FlateDecode >> stream -x{Ux]RK-fffbfffffbf`l1zܙ;si۪:'#+23NOMA l`pwa`ad(Xٙ:1 +x{Ux]RK-fffbfffffbf`l1zܙ;si۪:'#+23NOMA l`pwa`ad(Xٙ:1 8ȑiX./+=ɸa%4˫G,tX(쪱?NRjx=VB/a҄=q(c]L 6l&RRpߍu;Mp[^i
zܟ3a?&N}̸Ԗ,Su'pvARUqS烒.u9`~EeLA9Bs&?T7˜bt^ރ
t]ؤ>rg[MfK wZ&gZcX]\SR -ٻ\"g_'߆
.$&D _|grF\蛧z'8'ԐvY8r6ӻo6Dr*MhBՐˆ6'Լg4ImZh;AƣiFC:>cHX&d"%r2Jy k[hs$XǂAh(WHnrWܵۋ_^kWƻ3v_lTb9*LuS&Sfwx fϡGtY!q >kLswϢWxnA9UB; r1=8j2/7k!,"7"hwM
ސ5T{|0hJAk@T^y)˫~\O;ƂG"5Jhǒ O[Q7\{xK7 M1j?K3 @@ -8970,35 +9120,35 @@ D6#@w.s֙_SҦ[9qZaﶶ8Ǧ&\ҡ%z1C)j[@+}B uy&~har zrM7'c[L!?%M8gq3HhHJФe#/kv@갆4~IkG?rJeDP%P
Q1RÔKe?ftR
ϻ;oN/]tG;'C+~+|aYR
ݺ.xWu2lI?J%8?/"+qQx }ʚe9icA^@;Yw a2HPo+a
P_M<ٞ0O8vr&D<;MECӖcT٨3Dg[wDoo/JBd>uHP PZ&8Y@dcQXd'$Z*Lqwb49RNw=|AٞAfjX>:%w+KnszbM}Yr!b4cXDc9PfWؤ2ڟb_'J,Α7B⣍sqOi_/+gU.֔9/;rSL=wlf5DJJEwɖ=$0BH}?pR&S~BT։o:B&tO&X˸ OXF Mtn}y/$!Zrq8&'_xy1Kwoh(Kf*mf:QzNm̉)nreK25jcsZmX_mVqvo{`Ç w^kZslg'U8S -vC{LA]eڊ |>y{${ZW:wMs_|zzjC&+\oy+&Nt旳o<*i5iR/]o0/ #ciLd\Ҵߊ~m0=b>`=$d+"@҆}7mazU3?HĹ3i`'D|0 +vC{LA]eڊ |>y{${ZW:wMs_|zzjC&+\oy+&Nt旳o<*i5iR/]o0/ #ciLd\Ҵߊ~m0=b>`=$d+"@҆}7mazU3?HĹ3i`'D|0 endobj -209 0 obj << +217 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1039 0 R +/Encoding 1065 0 R /FirstChar 2 /LastChar 252 -/Widths 1053 0 R -/BaseFont /CZKRQX+NimbusSanL-Regu -/FontDescriptor 207 0 R +/Widths 1079 0 R +/BaseFont /QOASQG+NimbusSanL-Regu +/FontDescriptor 215 0 R >> endobj -207 0 obj << +215 0 obj << /Ascent 712 /CapHeight 712 /Descent -213 -/FontName /CZKRQX+NimbusSanL-Regu +/FontName /QOASQG+NimbusSanL-Regu /ItalicAngle 0 /StemV 85 /XHeight 523 /FontBBox [-174 -285 1001 953] /Flags 4 /CharSet (/fi/fl/exclam/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/greater/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/bracketright/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/quotedblleft/quotedblright/endash/Adieresis/Odieresis/Udieresis/germandbls/adieresis/odieresis/udieresis) -/FontFile 208 0 R +/FontFile 216 0 R >> endobj -1053 0 obj +1079 0 obj [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 278 0 0 0 0 0 222 333 333 0 0 278 333 278 278 556 556 556 556 556 556 556 556 556 556 278 278 0 584 584 0 0 667 667 722 722 667 611 778 722 278 500 667 556 833 722 778 667 778 722 667 611 722 667 944 667 667 611 278 0 278 0 0 0 556 556 500 556 556 278 556 556 222 222 500 222 833 556 556 556 556 333 500 278 556 500 722 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 333 333 0 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 667 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 778 0 0 0 0 0 722 0 0 611 0 0 0 0 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 556 0 0 0 0 0 556 ] endobj -205 0 obj << +213 0 obj << /Length1 1608 /Length2 11700 /Length3 532 @@ -9010,7 +9160,7 @@ xtePݖ. .hи`!{p}gfԹkf~ݺ]UggMK"fjg -: S$ @Hٻ9-*+`-dmgou|oT l7 2CaSs|+ `'+?_5OzZZh -vV8i+T hb0Zo)lz1X8xx%f6k@My|QWd,7߈[ +vV8i+T hb0Zo)lz1X8xx%f6k@My}Rd,7߈[ va!.n `p]6v. @G+@iv[?-53kOTo&No}Zw%\A&(sv&B?S+ 3G%u;9`jr}:~(1zd6{h-Ǵ3I`Mߑ @@ -9066,171 +9216,190 @@ ZӗwnwO|ҍ54dz @Hڶm/.DNt7(|ytTn~NT*nّР-}f}-5{uhEw̰`/:K1:!j[/!sNRASEGo͕RV"O[geM,#tRtW2!G ^';%o3R,ĹO/CZI48"x7 3ܟ&~S:RAQJvwGB3z - + endobj -206 0 obj << +214 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1039 0 R +/Encoding 1065 0 R /FirstChar 2 /LastChar 252 -/Widths 1054 0 R -/BaseFont /ROUJBN+NimbusSanL-Bold -/FontDescriptor 204 0 R +/Widths 1080 0 R +/BaseFont /HKZXMW+NimbusSanL-Bold +/FontDescriptor 212 0 R >> endobj -204 0 obj << +212 0 obj << /Ascent 722 /CapHeight 722 /Descent -217 -/FontName /ROUJBN+NimbusSanL-Bold +/FontName /HKZXMW+NimbusSanL-Bold /ItalicAngle 0 /StemV 141 /XHeight 532 /FontBBox [-173 -307 1003 949] /Flags 4 /CharSet (/fi/fl/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/Z/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/w/x/y/z/Udieresis/adieresis/udieresis) -/FontFile 205 0 R +/FontFile 213 0 R >> endobj -1054 0 obj +1080 0 obj [611 611 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 333 0 0 278 333 278 278 556 556 556 556 556 556 556 556 556 556 0 0 0 0 0 0 0 722 722 722 722 667 611 778 722 278 556 722 611 833 722 778 667 0 722 667 611 722 667 944 0 0 611 0 0 0 0 0 0 556 611 556 611 556 333 611 611 278 278 556 278 889 611 611 611 0 389 556 333 611 556 778 556 556 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 722 0 0 0 0 0 0 0 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611 ] endobj -210 0 obj << +218 0 obj << /Type /Pages /Count 6 -/Parent 1055 0 R -/Kids [198 0 R 212 0 R 216 0 R 223 0 R 254 0 R 283 0 R] +/Parent 1081 0 R +/Kids [206 0 R 220 0 R 224 0 R 231 0 R 262 0 R 293 0 R] >> endobj -359 0 obj << +369 0 obj << /Type /Pages /Count 6 -/Parent 1055 0 R -/Kids [342 0 R 375 0 R 418 0 R 426 0 R 438 0 R 447 0 R] +/Parent 1081 0 R +/Kids [352 0 R 385 0 R 428 0 R 436 0 R 448 0 R 457 0 R] >> endobj -461 0 obj << +471 0 obj << /Type /Pages /Count 6 -/Parent 1055 0 R -/Kids [455 0 R 466 0 R 474 0 R 480 0 R 486 0 R 495 0 R] +/Parent 1081 0 R +/Kids [465 0 R 476 0 R 484 0 R 490 0 R 496 0 R 505 0 R] >> endobj -509 0 obj << +519 0 obj << /Type /Pages /Count 6 -/Parent 1055 0 R -/Kids [503 0 R 512 0 R 520 0 R 528 0 R 533 0 R 539 0 R] +/Parent 1081 0 R +/Kids [513 0 R 522 0 R 530 0 R 538 0 R 543 0 R 549 0 R] >> endobj -551 0 obj << +561 0 obj << /Type /Pages /Count 6 -/Parent 1055 0 R -/Kids [546 0 R 554 0 R 559 0 R 563 0 R 567 0 R 583 0 R] +/Parent 1081 0 R +/Kids [556 0 R 564 0 R 569 0 R 573 0 R 577 0 R 593 0 R] >> endobj -595 0 obj << +605 0 obj << /Type /Pages /Count 6 -/Parent 1055 0 R -/Kids [592 0 R 599 0 R 605 0 R 612 0 R 616 0 R 623 0 R] +/Parent 1081 0 R +/Kids [602 0 R 609 0 R 615 0 R 622 0 R 626 0 R 633 0 R] >> endobj -634 0 obj << +644 0 obj << /Type /Pages /Count 6 -/Parent 1056 0 R -/Kids [630 0 R 637 0 R 646 0 R 652 0 R 659 0 R 667 0 R] +/Parent 1082 0 R +/Kids [640 0 R 647 0 R 656 0 R 662 0 R 669 0 R 677 0 R] >> endobj -677 0 obj << +687 0 obj << /Type /Pages /Count 6 -/Parent 1056 0 R -/Kids [674 0 R 680 0 R 688 0 R 693 0 R 697 0 R 702 0 R] +/Parent 1082 0 R +/Kids [684 0 R 690 0 R 698 0 R 703 0 R 707 0 R 712 0 R] >> endobj -716 0 obj << +726 0 obj << /Type /Pages /Count 6 -/Parent 1056 0 R -/Kids [709 0 R 718 0 R 727 0 R 731 0 R 738 0 R 743 0 R] +/Parent 1082 0 R +/Kids [719 0 R 728 0 R 737 0 R 741 0 R 748 0 R 753 0 R] >> endobj -757 0 obj << +767 0 obj << /Type /Pages /Count 6 -/Parent 1056 0 R -/Kids [752 0 R 759 0 R 766 0 R 774 0 R 782 0 R 788 0 R] +/Parent 1082 0 R +/Kids [762 0 R 769 0 R 776 0 R 784 0 R 792 0 R 798 0 R] >> endobj -803 0 obj << +813 0 obj << /Type /Pages /Count 6 -/Parent 1056 0 R -/Kids [798 0 R 810 0 R 817 0 R 821 0 R 829 0 R 840 0 R] +/Parent 1082 0 R +/Kids [808 0 R 820 0 R 827 0 R 831 0 R 839 0 R 850 0 R] >> endobj -852 0 obj << +862 0 obj << /Type /Pages /Count 6 -/Parent 1056 0 R -/Kids [849 0 R 855 0 R 865 0 R 870 0 R 874 0 R 878 0 R] +/Parent 1082 0 R +/Kids [859 0 R 865 0 R 875 0 R 880 0 R 884 0 R 888 0 R] >> endobj -886 0 obj << +896 0 obj << /Type /Pages /Count 6 -/Parent 1057 0 R -/Kids [882 0 R 888 0 R 893 0 R 897 0 R 902 0 R 912 0 R] +/Parent 1083 0 R +/Kids [892 0 R 898 0 R 903 0 R 907 0 R 912 0 R 922 0 R] >> endobj -932 0 obj << +941 0 obj << /Type /Pages /Count 6 -/Parent 1057 0 R -/Kids [926 0 R 935 0 R 946 0 R 951 0 R 959 0 R 970 0 R] +/Parent 1083 0 R +/Kids [936 0 R 943 0 R 954 0 R 960 0 R 971 0 R 978 0 R] >> endobj -984 0 obj << +990 0 obj << /Type /Pages /Count 6 -/Parent 1057 0 R -/Kids [980 0 R 986 0 R 1009 0 R 1013 0 R 1017 0 R 1036 0 R] +/Parent 1083 0 R +/Kids [987 0 R 1000 0 R 1006 0 R 1018 0 R 1034 0 R 1038 0 R] >> endobj -1055 0 obj << +1060 0 obj << +/Type /Pages +/Count 2 +/Parent 1083 0 R +/Kids [1042 0 R 1062 0 R] +>> endobj +1081 0 obj << /Type /Pages /Count 36 -/Parent 1058 0 R -/Kids [210 0 R 359 0 R 461 0 R 509 0 R 551 0 R 595 0 R] +/Parent 1084 0 R +/Kids [218 0 R 369 0 R 471 0 R 519 0 R 561 0 R 605 0 R] >> endobj -1056 0 obj << +1082 0 obj << /Type /Pages /Count 36 -/Parent 1058 0 R -/Kids [634 0 R 677 0 R 716 0 R 757 0 R 803 0 R 852 0 R] +/Parent 1084 0 R +/Kids [644 0 R 687 0 R 726 0 R 767 0 R 813 0 R 862 0 R] >> endobj -1057 0 obj << +1083 0 obj << /Type /Pages -/Count 18 -/Parent 1058 0 R -/Kids [886 0 R 932 0 R 984 0 R] +/Count 20 +/Parent 1084 0 R +/Kids [896 0 R 941 0 R 990 0 R 1060 0 R] >> endobj -1058 0 obj << +1084 0 obj << /Type /Pages -/Count 90 -/Kids [1055 0 R 1056 0 R 1057 0 R] +/Count 92 +/Kids [1081 0 R 1082 0 R 1083 0 R] >> endobj -1059 0 obj << +1085 0 obj << /Type /Outlines /First 7 0 R -/Last 195 0 R +/Last 203 0 R /Count 6 >> endobj +203 0 obj << +/Title 204 0 R +/A 201 0 R +/Parent 1085 0 R +/Prev 199 0 R +>> endobj +199 0 obj << +/Title 200 0 R +/A 197 0 R +/Parent 1085 0 R +/Prev 195 0 R +/Next 203 0 R +>> endobj 195 0 obj << /Title 196 0 R /A 193 0 R -/Parent 1059 0 R -/Prev 191 0 R +/Parent 1085 0 R +/Prev 111 0 R +/Next 199 0 R >> endobj 191 0 obj << /Title 192 0 R /A 189 0 R -/Parent 1059 0 R +/Parent 111 0 R /Prev 187 0 R -/Next 195 0 R >> endobj 187 0 obj << /Title 188 0 R /A 185 0 R -/Parent 1059 0 R -/Prev 111 0 R +/Parent 111 0 R +/Prev 183 0 R /Next 191 0 R >> endobj 183 0 obj << @@ -9238,26 +9407,25 @@ endobj /A 181 0 R /Parent 111 0 R /Prev 179 0 R +/Next 187 0 R >> endobj 179 0 obj << /Title 180 0 R /A 177 0 R /Parent 111 0 R -/Prev 175 0 R +/Prev 167 0 R /Next 183 0 R >> endobj 175 0 obj << /Title 176 0 R /A 173 0 R -/Parent 111 0 R +/Parent 167 0 R /Prev 171 0 R -/Next 179 0 R >> endobj 171 0 obj << /Title 172 0 R /A 169 0 R -/Parent 111 0 R -/Prev 167 0 R +/Parent 167 0 R /Next 175 0 R >> endobj 167 0 obj << @@ -9265,7 +9433,10 @@ endobj /A 165 0 R /Parent 111 0 R /Prev 151 0 R -/Next 171 0 R +/Next 179 0 R +/First 171 0 R +/Last 175 0 R +/Count -2 >> endobj 163 0 obj << /Title 164 0 R @@ -9364,11 +9535,11 @@ endobj 111 0 obj << /Title 112 0 R /A 109 0 R -/Parent 1059 0 R +/Parent 1085 0 R /Prev 19 0 R -/Next 187 0 R +/Next 195 0 R /First 115 0 R -/Last 183 0 R +/Last 191 0 R /Count -9 >> endobj 107 0 obj << @@ -9529,7 +9700,7 @@ endobj 19 0 obj << /Title 20 0 R /A 17 0 R -/Parent 1059 0 R +/Parent 1085 0 R /Prev 7 0 R /Next 111 0 R /First 23 0 R @@ -9551,1109 +9722,1135 @@ endobj 7 0 obj << /Title 8 0 R /A 5 0 R -/Parent 1059 0 R +/Parent 1085 0 R /Next 19 0 R /First 11 0 R /Last 15 0 R /Count -2 >> endobj -1060 0 obj << -/Names [(API) 1020 0 R (BSD) 1021 0 R (Doc-Start) 203 0 R (GIMP) 1022 0 R (GNU) 1023 0 R (GUI) 1024 0 R (GVim) 1025 0 R (HTTPS) 1026 0 R (Item.1) 721 0 R (Item.10) 906 0 R (Item.11) 907 0 R (Item.12) 908 0 R (Item.13) 909 0 R (Item.14) 915 0 R (Item.15) 916 0 R (Item.2) 722 0 R (Item.3) 723 0 R (Item.4) 724 0 R (Item.5) 725 0 R (Item.6) 802 0 R (Item.7) 813 0 R (Item.8) 814 0 R (Item.9) 905 0 R (JRE) 1027 0 R (NID) 1028 0 R (PDF) 1029 0 R (PID) 1030 0 R (RTT) 1031 0 R (SDK) 1032 0 R (SVN) 1033 0 R (VS) 1034 0 R (appendix.A) 190 0 R (appendix.B) 194 0 R (chapter*.1) 226 0 R (chapter*.2) 286 0 R (chapter*.3) 378 0 R (chapter.1) 6 0 R (chapter.2) 18 0 R (chapter.3) 110 0 R (chapter.4) 186 0 R (cite.OOS) 978 0 R (cite.Tanenbaum) 422 0 R (cite.Vorlesung) 644 0 R (figure.1.1) 314 0 R (figure.1.2) 315 0 R (figure.2.1) 316 0 R (figure.2.10) 325 0 R (figure.2.11) 326 0 R (figure.2.12) 327 0 R (figure.2.13) 328 0 R (figure.2.14) 329 0 R (figure.2.15) 330 0 R (figure.2.16) 331 0 R (figure.2.17) 332 0 R (figure.2.18) 333 0 R (figure.2.19) 334 0 R (figure.2.2) 317 0 R (figure.2.20) 335 0 R (figure.2.21) 336 0 R (figure.2.22) 337 0 R (figure.2.23) 338 0 R (figure.2.24) 339 0 R (figure.2.25) 340 0 R (figure.2.26) 360 0 R (figure.2.27) 361 0 R (figure.2.3) 318 0 R (figure.2.4) 319 0 R (figure.2.5) 320 0 R (figure.2.6) 321 0 R (figure.2.7) 322 0 R (figure.2.8) 323 0 R (figure.2.9) 324 0 R (figure.3.1) 362 0 R (figure.3.10) 371 0 R (figure.3.11) 372 0 R (figure.3.12) 373 0 R (figure.3.2) 363 0 R (figure.3.3) 364 0 R (figure.3.4) 365 0 R (figure.3.5) 366 0 R (figure.3.6) 367 0 R (figure.3.7) 368 0 R (figure.3.8) 369 0 R (figure.3.9) 370 0 R (page.1) 202 0 R (page.10) 428 0 R (page.11) 440 0 R (page.12) 449 0 R (page.13) 457 0 R (page.14) 468 0 R (page.15) 476 0 R (page.16) 482 0 R (page.17) 488 0 R (page.18) 497 0 R (page.19) 505 0 R (page.2) 214 0 R (page.20) 514 0 R (page.21) 522 0 R (page.22) 530 0 R (page.23) 535 0 R (page.24) 541 0 R (page.25) 548 0 R (page.26) 556 0 R (page.27) 561 0 R (page.28) 565 0 R (page.29) 569 0 R (page.3) 218 0 R (page.30) 585 0 R (page.31) 594 0 R (page.32) 601 0 R (page.33) 607 0 R (page.34) 614 0 R (page.35) 618 0 R (page.36) 625 0 R (page.37) 632 0 R (page.38) 639 0 R (page.39) 648 0 R (page.4) 225 0 R (page.40) 654 0 R (page.41) 661 0 R (page.42) 669 0 R (page.43) 676 0 R (page.44) 682 0 R (page.45) 690 0 R (page.46) 695 0 R (page.47) 699 0 R (page.48) 704 0 R (page.49) 711 0 R (page.5) 256 0 R (page.50) 720 0 R (page.51) 729 0 R (page.52) 733 0 R (page.53) 740 0 R (page.54) 745 0 R (page.55) 754 0 R (page.56) 761 0 R (page.57) 768 0 R (page.58) 776 0 R (page.59) 784 0 R (page.6) 285 0 R (page.60) 790 0 R (page.61) 800 0 R (page.62) 812 0 R (page.63) 819 0 R (page.64) 823 0 R (page.65) 831 0 R (page.66) 842 0 R (page.67) 851 0 R (page.68) 857 0 R (page.69) 867 0 R (page.7) 344 0 R (page.70) 872 0 R (page.71) 876 0 R (page.72) 880 0 R (page.73) 884 0 R (page.74) 890 0 R (page.75) 895 0 R (page.76) 899 0 R (page.77) 904 0 R (page.78) 914 0 R (page.79) 928 0 R (page.8) 377 0 R (page.80) 937 0 R (page.81) 948 0 R (page.82) 953 0 R (page.83) 961 0 R (page.84) 972 0 R (page.85) 982 0 R (page.86) 988 0 R (page.87) 1011 0 R (page.88) 1015 0 R (page.89) 1019 0 R (page.9) 420 0 R (page.90) 1038 0 R (section*.10) 469 0 R (section*.11) 471 0 R (section*.12) 483 0 R (section*.13) 490 0 R (section*.14) 498 0 R (section*.15) 515 0 R (section*.16) 523 0 R (section*.17) 525 0 R (section*.18) 531 0 R (section*.19) 536 0 R (section*.20) 537 0 R (section*.21) 542 0 R (section*.22) 543 0 R (section*.23) 549 0 R (section*.24) 633 0 R (section*.25) 664 0 R (section*.26) 672 0 R (section*.27) 691 0 R (section*.28) 734 0 R (section*.29) 885 0 R (section*.30) 900 0 R (section*.31) 989 0 R (section*.4) 429 0 R (section*.5) 431 0 R (section*.6) 432 0 R (section*.7) 441 0 R (section*.8) 450 0 R (section*.9) 451 0 R (section.1.1) 10 0 R (section.1.2) 14 0 R (section.2.1) 22 0 R (section.2.2) 26 0 R (section.2.3) 30 0 R (section.2.4) 34 0 R (section.2.5) 54 0 R (section.2.6) 98 0 R (section.3.1) 114 0 R (section.3.2) 126 0 R (section.3.3) 138 0 R (section.3.4) 150 0 R (section.3.5) 166 0 R (section.3.6) 170 0 R (section.3.7) 174 0 R (section.3.8) 178 0 R (section.3.9) 182 0 R (subsection.2.4.1) 38 0 R (subsection.2.4.2) 42 0 R (subsection.2.4.3) 46 0 R (subsection.2.4.4) 50 0 R (subsection.2.5.1) 58 0 R (subsection.2.5.10) 94 0 R (subsection.2.5.2) 62 0 R (subsection.2.5.3) 66 0 R (subsection.2.5.4) 70 0 R (subsection.2.5.5) 74 0 R (subsection.2.5.6) 78 0 R (subsection.2.5.7) 82 0 R (subsection.2.5.8) 86 0 R (subsection.2.5.9) 90 0 R (subsection.2.6.1) 102 0 R (subsection.2.6.2) 106 0 R (subsection.3.1.1) 118 0 R (subsection.3.1.2) 122 0 R (subsection.3.2.1) 130 0 R (subsection.3.2.2) 134 0 R (subsection.3.3.1) 142 0 R (subsection.3.3.2) 146 0 R (subsection.3.4.1) 154 0 R (subsection.3.4.2) 158 0 R (subsection.3.4.3) 162 0 R (table.2.1) 398 0 R (table.2.10) 407 0 R (table.2.11) 408 0 R (table.2.12) 409 0 R (table.2.13) 410 0 R (table.2.14) 411 0 R (table.2.15) 412 0 R (table.2.16) 413 0 R (table.2.17) 414 0 R (table.2.2) 399 0 R (table.2.3) 400 0 R (table.2.4) 401 0 R (table.2.5) 402 0 R (table.2.6) 403 0 R (table.2.7) 404 0 R (table.2.8) 405 0 R (table.2.9) 406 0 R (table.3.1) 415 0 R (table.3.2) 416 0 R] +1086 0 obj << +/Names [(API) 1045 0 R (BSD) 1046 0 R (Doc-Start) 211 0 R (GIMP) 1047 0 R (GNU) 1048 0 R (GUI) 1049 0 R (GVim) 1050 0 R (HTTPS) 1051 0 R (Item.1) 731 0 R (Item.10) 916 0 R (Item.11) 917 0 R (Item.12) 918 0 R (Item.13) 919 0 R (Item.14) 925 0 R (Item.15) 926 0 R (Item.16) 946 0 R (Item.17) 947 0 R (Item.18) 948 0 R (Item.19) 949 0 R (Item.2) 732 0 R (Item.20) 950 0 R (Item.21) 951 0 R (Item.22) 952 0 R (Item.3) 733 0 R (Item.4) 734 0 R (Item.5) 735 0 R (Item.6) 812 0 R (Item.7) 823 0 R (Item.8) 824 0 R (Item.9) 915 0 R (JRE) 1052 0 R (NID) 1053 0 R (PDF) 1054 0 R (PID) 1055 0 R (RTT) 1056 0 R (SDK) 1057 0 R (SVN) 1058 0 R (VS) 1059 0 R (appendix.A) 198 0 R (appendix.B) 202 0 R (chapter*.1) 234 0 R (chapter*.2) 296 0 R (chapter*.3) 388 0 R (chapter.1) 6 0 R (chapter.2) 18 0 R (chapter.3) 110 0 R (chapter.4) 194 0 R (cite.OOS) 1004 0 R (cite.Tanenbaum) 432 0 R (cite.Vorlesung) 654 0 R (figure.1.1) 324 0 R (figure.1.2) 325 0 R (figure.2.1) 326 0 R (figure.2.10) 335 0 R (figure.2.11) 336 0 R (figure.2.12) 337 0 R (figure.2.13) 338 0 R (figure.2.14) 339 0 R (figure.2.15) 340 0 R (figure.2.16) 341 0 R (figure.2.17) 342 0 R (figure.2.18) 343 0 R (figure.2.19) 344 0 R (figure.2.2) 327 0 R (figure.2.20) 345 0 R (figure.2.21) 346 0 R (figure.2.22) 347 0 R (figure.2.23) 348 0 R (figure.2.24) 349 0 R (figure.2.25) 350 0 R (figure.2.26) 370 0 R (figure.2.27) 371 0 R (figure.2.3) 328 0 R (figure.2.4) 329 0 R (figure.2.5) 330 0 R (figure.2.6) 331 0 R (figure.2.7) 332 0 R (figure.2.8) 333 0 R (figure.2.9) 334 0 R (figure.3.1) 372 0 R (figure.3.10) 381 0 R (figure.3.11) 382 0 R (figure.3.12) 383 0 R (figure.3.2) 373 0 R (figure.3.3) 374 0 R (figure.3.4) 375 0 R (figure.3.5) 376 0 R (figure.3.6) 377 0 R (figure.3.7) 378 0 R (figure.3.8) 379 0 R (figure.3.9) 380 0 R (page.1) 210 0 R (page.10) 438 0 R (page.11) 450 0 R (page.12) 459 0 R (page.13) 467 0 R (page.14) 478 0 R (page.15) 486 0 R (page.16) 492 0 R (page.17) 498 0 R (page.18) 507 0 R (page.19) 515 0 R (page.2) 222 0 R (page.20) 524 0 R (page.21) 532 0 R (page.22) 540 0 R (page.23) 545 0 R (page.24) 551 0 R (page.25) 558 0 R (page.26) 566 0 R (page.27) 571 0 R (page.28) 575 0 R (page.29) 579 0 R (page.3) 226 0 R (page.30) 595 0 R (page.31) 604 0 R (page.32) 611 0 R (page.33) 617 0 R (page.34) 624 0 R (page.35) 628 0 R (page.36) 635 0 R (page.37) 642 0 R (page.38) 649 0 R (page.39) 658 0 R (page.4) 233 0 R (page.40) 664 0 R (page.41) 671 0 R (page.42) 679 0 R (page.43) 686 0 R (page.44) 692 0 R (page.45) 700 0 R (page.46) 705 0 R (page.47) 709 0 R (page.48) 714 0 R (page.49) 721 0 R (page.5) 264 0 R (page.50) 730 0 R (page.51) 739 0 R (page.52) 743 0 R (page.53) 750 0 R (page.54) 755 0 R (page.55) 764 0 R (page.56) 771 0 R (page.57) 778 0 R (page.58) 786 0 R (page.59) 794 0 R (page.6) 295 0 R (page.60) 800 0 R (page.61) 810 0 R (page.62) 822 0 R (page.63) 829 0 R (page.64) 833 0 R (page.65) 841 0 R (page.66) 852 0 R (page.67) 861 0 R (page.68) 867 0 R (page.69) 877 0 R (page.7) 354 0 R (page.70) 882 0 R (page.71) 886 0 R (page.72) 890 0 R (page.73) 894 0 R (page.74) 900 0 R (page.75) 905 0 R (page.76) 909 0 R (page.77) 914 0 R (page.78) 924 0 R (page.79) 938 0 R (page.8) 387 0 R (page.80) 945 0 R (page.81) 956 0 R (page.82) 962 0 R (page.83) 973 0 R (page.84) 980 0 R (page.85) 989 0 R (page.86) 1002 0 R (page.87) 1008 0 R (page.88) 1020 0 R (page.89) 1036 0 R (page.9) 430 0 R (page.90) 1040 0 R (page.91) 1044 0 R (page.92) 1064 0 R (section*.10) 479 0 R (section*.11) 481 0 R (section*.12) 493 0 R (section*.13) 500 0 R (section*.14) 508 0 R (section*.15) 525 0 R (section*.16) 533 0 R (section*.17) 535 0 R (section*.18) 541 0 R (section*.19) 546 0 R (section*.20) 547 0 R (section*.21) 552 0 R (section*.22) 553 0 R (section*.23) 559 0 R (section*.24) 643 0 R (section*.25) 674 0 R (section*.26) 682 0 R (section*.27) 701 0 R (section*.28) 744 0 R (section*.29) 895 0 R (section*.30) 910 0 R (section*.31) 1010 0 R (section*.4) 439 0 R (section*.5) 441 0 R (section*.6) 442 0 R (section*.7) 451 0 R (section*.8) 460 0 R (section*.9) 461 0 R (section.1.1) 10 0 R (section.1.2) 14 0 R (section.2.1) 22 0 R (section.2.2) 26 0 R (section.2.3) 30 0 R (section.2.4) 34 0 R (section.2.5) 54 0 R (section.2.6) 98 0 R (section.3.1) 114 0 R (section.3.2) 126 0 R (section.3.3) 138 0 R (section.3.4) 150 0 R (section.3.5) 166 0 R (section.3.6) 178 0 R (section.3.7) 182 0 R (section.3.8) 186 0 R (section.3.9) 190 0 R (subsection.2.4.1) 38 0 R (subsection.2.4.2) 42 0 R (subsection.2.4.3) 46 0 R (subsection.2.4.4) 50 0 R (subsection.2.5.1) 58 0 R (subsection.2.5.10) 94 0 R (subsection.2.5.2) 62 0 R (subsection.2.5.3) 66 0 R (subsection.2.5.4) 70 0 R (subsection.2.5.5) 74 0 R (subsection.2.5.6) 78 0 R (subsection.2.5.7) 82 0 R (subsection.2.5.8) 86 0 R (subsection.2.5.9) 90 0 R (subsection.2.6.1) 102 0 R (subsection.2.6.2) 106 0 R (subsection.3.1.1) 118 0 R (subsection.3.1.2) 122 0 R (subsection.3.2.1) 130 0 R (subsection.3.2.2) 134 0 R (subsection.3.3.1) 142 0 R (subsection.3.3.2) 146 0 R (subsection.3.4.1) 154 0 R (subsection.3.4.2) 158 0 R (subsection.3.4.3) 162 0 R (subsection.3.5.1) 170 0 R (subsection.3.5.2) 174 0 R (table.2.1) 408 0 R (table.2.10) 417 0 R (table.2.11) 418 0 R (table.2.12) 419 0 R (table.2.13) 420 0 R (table.2.14) 421 0 R (table.2.15) 422 0 R (table.2.16) 423 0 R (table.2.17) 424 0 R (table.2.2) 409 0 R (table.2.3) 410 0 R (table.2.4) 411 0 R (table.2.5) 412 0 R (table.2.6) 413 0 R (table.2.7) 414 0 R (table.2.8) 415 0 R (table.2.9) 416 0 R (table.3.1) 425 0 R (table.3.2) 426 0 R] /Limits [(API) (table.3.2)] >> endobj -1061 0 obj << -/Kids [1060 0 R] +1087 0 obj << +/Kids [1086 0 R] >> endobj -1062 0 obj << -/Dests 1061 0 R +1088 0 obj << +/Dests 1087 0 R >> endobj -1063 0 obj << +1089 0 obj << /Type /Catalog -/Pages 1058 0 R -/Outlines 1059 0 R -/Names 1062 0 R +/Pages 1084 0 R +/Outlines 1085 0 R +/Names 1088 0 R /PageMode /UseOutlines /PageLayout/OneColumn -/OpenAction 197 0 R +/OpenAction 205 0 R >> endobj -1064 0 obj << +1090 0 obj << /Author(Paul Btow)/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfeTeX-1.21a)/Keywords() -/CreationDate (D:20080809212931Z) +/CreationDate (D:20080809232121Z) /PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4) >> endobj xref -0 1065 +0 1091 0000000001 65535 f 0000000002 00000 f 0000000003 00000 f 0000000004 00000 f 0000000000 00000 f 0000000009 00000 n -0000089945 00000 n -0001037117 00000 n +0000090874 00000 n +0001045198 00000 n 0000000054 00000 n 0000000143 00000 n -0000090006 00000 n -0001037045 00000 n +0000090935 00000 n +0001045126 00000 n 0000000190 00000 n 0000000290 00000 n -0000093649 00000 n -0001036972 00000 n +0000094578 00000 n +0001045053 00000 n 0000000338 00000 n 0000000438 00000 n -0000111883 00000 n -0001036846 00000 n +0000112812 00000 n +0001044927 00000 n 0000000484 00000 n 0000000592 00000 n -0000111945 00000 n -0001036772 00000 n +0000112874 00000 n +0001044853 00000 n 0000000640 00000 n 0000000875 00000 n -0000192296 00000 n -0001036685 00000 n +0000193225 00000 n +0001044766 00000 n 0000000923 00000 n 0000001038 00000 n -0000230336 00000 n -0001036598 00000 n +0000231265 00000 n +0001044679 00000 n 0000001086 00000 n 0000001186 00000 n -0000236209 00000 n -0001036474 00000 n +0000237138 00000 n +0001044555 00000 n 0000001234 00000 n 0000001349 00000 n -0000236271 00000 n -0001036400 00000 n +0000237200 00000 n +0001044481 00000 n 0000001402 00000 n 0000001557 00000 n -0000256907 00000 n -0001036313 00000 n +0000257836 00000 n +0001044394 00000 n 0000001610 00000 n 0000001790 00000 n -0000273480 00000 n -0001036226 00000 n +0000274409 00000 n +0001044307 00000 n 0000001843 00000 n 0000002084 00000 n -0000280523 00000 n -0001036152 00000 n +0000281452 00000 n +0001044233 00000 n 0000002137 00000 n 0000002353 00000 n -0000282076 00000 n -0001036027 00000 n +0000283005 00000 n +0001044108 00000 n 0000002401 00000 n 0000002501 00000 n -0000282138 00000 n -0001035953 00000 n +0000283067 00000 n +0001044034 00000 n 0000002554 00000 n 0000002756 00000 n -0000446692 00000 n -0001035866 00000 n +0000447621 00000 n +0001043947 00000 n 0000002809 00000 n 0000002990 00000 n -0000517593 00000 n -0001035779 00000 n +0000518522 00000 n +0001043860 00000 n 0000003043 00000 n 0000003224 00000 n -0000540661 00000 n -0001035692 00000 n +0000541590 00000 n +0001043773 00000 n 0000003277 00000 n 0000003711 00000 n -0000568353 00000 n -0001035605 00000 n +0000569282 00000 n +0001043686 00000 n 0000003764 00000 n 0000004076 00000 n -0000598174 00000 n -0001035518 00000 n +0000599103 00000 n +0001043599 00000 n 0000004129 00000 n 0000004474 00000 n -0000623620 00000 n -0001035431 00000 n +0000624549 00000 n +0001043512 00000 n 0000004527 00000 n 0000004751 00000 n -0000654211 00000 n -0001035344 00000 n +0000655140 00000 n +0001043425 00000 n 0000004804 00000 n 0000005033 00000 n -0000682973 00000 n -0001035257 00000 n +0000683902 00000 n +0001043338 00000 n 0000005086 00000 n 0000005329 00000 n -0000707745 00000 n -0001035183 00000 n +0000708674 00000 n +0001043264 00000 n 0000005383 00000 n 0000005651 00000 n -0000745003 00000 n -0001035069 00000 n +0000745932 00000 n +0001043150 00000 n 0000005699 00000 n 0000005838 00000 n -0000745065 00000 n -0001034991 00000 n +0000745994 00000 n +0001043072 00000 n 0000005892 00000 n 0000006190 00000 n -0000802912 00000 n -0001034913 00000 n +0000803841 00000 n +0001042994 00000 n 0000006244 00000 n 0000006476 00000 n -0000805747 00000 n -0001034781 00000 n +0000806676 00000 n +0001042862 00000 n 0000006523 00000 n 0000006662 00000 n -0000805810 00000 n -0001034663 00000 n +0000806739 00000 n +0001042744 00000 n 0000006711 00000 n 0000006898 00000 n -0000805873 00000 n -0001034584 00000 n +0000806802 00000 n +0001042665 00000 n 0000006952 00000 n 0000007108 00000 n -0000816991 00000 n -0001034505 00000 n +0000817920 00000 n +0001042586 00000 n 0000007162 00000 n 0000007288 00000 n -0000825200 00000 n -0001034373 00000 n +0000826129 00000 n +0001042454 00000 n 0000007337 00000 n 0000007438 00000 n -0000825263 00000 n -0001034294 00000 n +0000826192 00000 n +0001042375 00000 n 0000007492 00000 n 0000007709 00000 n -0000833207 00000 n -0001034215 00000 n +0000834136 00000 n +0001042296 00000 n 0000007763 00000 n 0000008035 00000 n -0000837507 00000 n -0001034083 00000 n +0000838436 00000 n +0001042164 00000 n 0000008084 00000 n 0000008412 00000 n -0000837570 00000 n -0001034004 00000 n +0000838499 00000 n +0001042085 00000 n 0000008466 00000 n 0000008597 00000 n -0000845427 00000 n -0001033925 00000 n +0000846356 00000 n +0001042006 00000 n 0000008651 00000 n 0000008980 00000 n -0000848885 00000 n -0001033793 00000 n +0000849814 00000 n +0001041874 00000 n 0000009029 00000 n 0000009130 00000 n -0000848948 00000 n -0001033714 00000 n +0000849877 00000 n +0001041795 00000 n 0000009184 00000 n 0000009416 00000 n -0000880499 00000 n -0001033621 00000 n +0000881428 00000 n +0001041702 00000 n 0000009470 00000 n 0000009737 00000 n -0000888812 00000 n -0001033542 00000 n +0000889741 00000 n +0001041623 00000 n 0000009791 00000 n 0000010107 00000 n -0000894481 00000 n -0001033449 00000 n +0000895169 00000 n +0001041491 00000 n 0000010156 00000 n 0000010388 00000 n -0000898158 00000 n -0001033356 00000 n -0000010437 00000 n -0000010760 00000 n -0000912189 00000 n -0001033263 00000 n -0000010809 00000 n -0000011125 00000 n -0000916297 00000 n -0001033170 00000 n -0000011174 00000 n -0000011335 00000 n -0000919739 00000 n -0001033091 00000 n -0000011384 00000 n -0000011535 00000 n -0000928042 00000 n -0001032997 00000 n -0000011582 00000 n -0000011663 00000 n -0000931298 00000 n -0001032903 00000 n -0000011711 00000 n -0000011792 00000 n -0000933332 00000 n -0001032823 00000 n -0000011840 00000 n -0000011981 00000 n -0000012940 00000 n -0000013062 00000 n -0000055467 00000 n -0000012033 00000 n -0000055341 00000 n -0000055404 00000 n -0001029458 00000 n -0001016607 00000 n -0001029286 00000 n -0001015317 00000 n -0001001462 00000 n -0001015145 00000 n -0001030555 00000 n -0000056745 00000 n -0000056560 00000 n -0000055588 00000 n -0000056682 00000 n -0000057885 00000 n -0000057700 00000 n -0000056830 00000 n -0000057822 00000 n -0001000927 00000 n -0000999062 00000 n -0001000765 00000 n -0000064994 00000 n -0000060359 00000 n -0000057983 00000 n -0000064868 00000 n -0000064931 00000 n -0000060701 00000 n -0000060856 00000 n -0000061013 00000 n -0000061168 00000 n -0000061323 00000 n +0000895232 00000 n +0001041412 00000 n +0000010442 00000 n +0000010573 00000 n +0000898911 00000 n +0001041333 00000 n +0000010627 00000 n +0000010854 00000 n +0000905537 00000 n +0001041240 00000 n +0000010903 00000 n +0000011226 00000 n +0000913134 00000 n +0001041147 00000 n +0000011275 00000 n +0000011591 00000 n +0000923743 00000 n +0001041054 00000 n +0000011640 00000 n +0000011801 00000 n +0000928222 00000 n +0001040975 00000 n +0000011850 00000 n +0000012001 00000 n +0000934697 00000 n +0001040881 00000 n +0000012048 00000 n +0000012129 00000 n +0000937954 00000 n +0001040787 00000 n +0000012177 00000 n +0000012258 00000 n +0000939989 00000 n +0001040707 00000 n +0000012306 00000 n +0000012447 00000 n +0000013406 00000 n +0000013528 00000 n +0000055933 00000 n +0000012499 00000 n +0000055807 00000 n +0000055870 00000 n +0001037243 00000 n +0001024392 00000 n +0001037071 00000 n +0001023102 00000 n +0001009247 00000 n +0001022930 00000 n +0001038340 00000 n +0000057211 00000 n +0000057026 00000 n +0000056054 00000 n +0000057148 00000 n +0000058351 00000 n +0000058166 00000 n +0000057296 00000 n +0000058288 00000 n +0001008712 00000 n +0001006847 00000 n +0001008550 00000 n +0000065460 00000 n +0000060825 00000 n +0000058449 00000 n +0000065334 00000 n +0000065397 00000 n +0000061167 00000 n +0000061322 00000 n 0000061479 00000 n -0000061636 00000 n -0000061793 00000 n -0000061950 00000 n -0000062113 00000 n -0000062276 00000 n -0000062439 00000 n -0000062602 00000 n -0000062759 00000 n -0000062921 00000 n -0000063084 00000 n -0000063247 00000 n -0000063410 00000 n -0000063571 00000 n -0000063733 00000 n -0000063896 00000 n -0000064059 00000 n -0000064222 00000 n -0000064385 00000 n -0000064542 00000 n -0000064705 00000 n -0000070994 00000 n -0000067126 00000 n -0000065079 00000 n -0000070931 00000 n -0000997878 00000 n -0000985627 00000 n -0000997702 00000 n -0000067436 00000 n -0000067590 00000 n -0000067747 00000 n -0000067910 00000 n -0000068073 00000 n -0000068228 00000 n -0000068390 00000 n -0000068553 00000 n -0000068709 00000 n -0000068872 00000 n -0000069035 00000 n -0000069192 00000 n -0000069355 00000 n -0000069518 00000 n -0000069681 00000 n -0000069838 00000 n -0000069995 00000 n -0000070151 00000 n -0000070307 00000 n -0000070464 00000 n -0000070619 00000 n -0000070775 00000 n -0000078249 00000 n -0000073559 00000 n -0000071092 00000 n -0000078123 00000 n -0000078186 00000 n -0000073909 00000 n -0000074063 00000 n -0000074218 00000 n -0000074374 00000 n -0000074530 00000 n -0000074686 00000 n -0000074842 00000 n -0000074998 00000 n -0000075154 00000 n -0000075310 00000 n -0000075466 00000 n -0000075621 00000 n -0000075778 00000 n -0000075935 00000 n -0000076091 00000 n -0000076248 00000 n -0000076404 00000 n -0000076561 00000 n -0000076717 00000 n -0000076874 00000 n -0000077030 00000 n -0000077187 00000 n -0000077342 00000 n -0000077499 00000 n -0000077655 00000 n -0000077811 00000 n -0000077967 00000 n -0000093774 00000 n -0000097016 00000 n -0000112007 00000 n -0000122098 00000 n -0000156993 00000 n -0000157057 00000 n -0000165926 00000 n -0000165990 00000 n -0000177506 00000 n -0000177569 00000 n -0000186578 00000 n -0000192232 00000 n -0000219887 00000 n -0000227603 00000 n -0000256843 00000 n -0000270532 00000 n -0000446754 00000 n -0000446818 00000 n -0000517655 00000 n -0000540723 00000 n -0000568415 00000 n -0000598236 00000 n -0000623682 00000 n -0000654273 00000 n -0000683035 00000 n -0000707807 00000 n -0000745128 00000 n -0000082268 00000 n -0000079774 00000 n -0000078334 00000 n -0000082205 00000 n -0000080020 00000 n -0000080177 00000 n -0000080333 00000 n -0000080489 00000 n -0000080645 00000 n -0000080801 00000 n -0000080957 00000 n -0000081113 00000 n -0000081269 00000 n -0000081425 00000 n -0000081581 00000 n -0000081736 00000 n -0000081892 00000 n -0000082049 00000 n -0001030673 00000 n -0000777324 00000 n -0000802975 00000 n -0000809639 00000 n -0000820911 00000 n -0000825326 00000 n -0000837633 00000 n -0000842196 00000 n -0000849011 00000 n -0000869664 00000 n -0000894544 00000 n -0000902177 00000 n -0000907660 00000 n -0000912252 00000 n -0000916233 00000 n -0000087644 00000 n -0000084284 00000 n -0000082353 00000 n -0000087518 00000 n -0000087581 00000 n -0000084570 00000 n -0000084724 00000 n -0000084879 00000 n -0000085034 00000 n -0000085189 00000 n -0000085344 00000 n +0000061634 00000 n +0000061789 00000 n +0000061945 00000 n +0000062102 00000 n +0000062259 00000 n +0000062416 00000 n +0000062579 00000 n +0000062742 00000 n +0000062905 00000 n +0000063068 00000 n +0000063225 00000 n +0000063387 00000 n +0000063550 00000 n +0000063713 00000 n +0000063876 00000 n +0000064037 00000 n +0000064199 00000 n +0000064362 00000 n +0000064525 00000 n +0000064688 00000 n +0000064851 00000 n +0000065008 00000 n +0000065171 00000 n +0000071926 00000 n +0000067717 00000 n +0000065545 00000 n +0000071863 00000 n +0001005663 00000 n +0000993412 00000 n +0001005487 00000 n +0000068043 00000 n +0000068197 00000 n +0000068354 00000 n +0000068517 00000 n +0000068680 00000 n +0000068835 00000 n +0000068997 00000 n +0000069160 00000 n +0000069316 00000 n +0000069479 00000 n +0000069642 00000 n +0000069799 00000 n +0000069962 00000 n +0000070125 00000 n +0000070288 00000 n +0000070445 00000 n +0000070608 00000 n +0000070771 00000 n +0000070928 00000 n +0000071083 00000 n +0000071240 00000 n +0000071397 00000 n +0000071552 00000 n +0000071707 00000 n +0000079181 00000 n +0000074491 00000 n +0000072024 00000 n +0000079055 00000 n +0000079118 00000 n +0000074841 00000 n +0000074995 00000 n +0000075150 00000 n +0000075306 00000 n +0000075462 00000 n +0000075618 00000 n +0000075774 00000 n +0000075930 00000 n +0000076086 00000 n +0000076242 00000 n +0000076398 00000 n +0000076553 00000 n +0000076710 00000 n +0000076867 00000 n +0000077023 00000 n +0000077180 00000 n +0000077336 00000 n +0000077493 00000 n +0000077649 00000 n +0000077806 00000 n +0000077962 00000 n +0000078119 00000 n +0000078274 00000 n +0000078431 00000 n +0000078587 00000 n +0000078743 00000 n +0000078899 00000 n +0000094703 00000 n +0000097945 00000 n +0000112936 00000 n +0000123027 00000 n +0000157922 00000 n +0000157986 00000 n +0000166855 00000 n +0000166919 00000 n +0000178435 00000 n +0000178498 00000 n +0000187507 00000 n +0000193161 00000 n +0000220816 00000 n +0000228532 00000 n +0000257772 00000 n +0000271461 00000 n +0000447683 00000 n +0000447747 00000 n +0000518584 00000 n +0000541652 00000 n +0000569344 00000 n +0000599165 00000 n +0000624611 00000 n +0000655202 00000 n +0000683964 00000 n +0000708736 00000 n +0000746057 00000 n +0000083197 00000 n +0000080703 00000 n +0000079266 00000 n +0000083134 00000 n +0000080949 00000 n +0000081106 00000 n +0000081262 00000 n +0000081418 00000 n +0000081574 00000 n +0000081730 00000 n +0000081886 00000 n +0000082042 00000 n +0000082198 00000 n +0000082354 00000 n +0000082510 00000 n +0000082665 00000 n +0000082821 00000 n +0000082978 00000 n +0001038458 00000 n +0000778253 00000 n +0000803904 00000 n +0000810568 00000 n +0000821840 00000 n +0000826255 00000 n +0000838562 00000 n +0000843125 00000 n +0000849940 00000 n +0000870593 00000 n +0000895295 00000 n +0000909253 00000 n +0000915697 00000 n +0000920544 00000 n +0000920607 00000 n +0000088573 00000 n +0000085213 00000 n +0000083282 00000 n +0000088447 00000 n +0000088510 00000 n 0000085499 00000 n -0000085654 00000 n -0000085809 00000 n -0000085964 00000 n -0000086120 00000 n -0000086275 00000 n -0000086431 00000 n -0000086587 00000 n -0000086741 00000 n -0000086897 00000 n -0000087052 00000 n -0000087208 00000 n -0000087363 00000 n -0000169060 00000 n -0000236082 00000 n -0000280460 00000 n -0000449754 00000 n -0000449818 00000 n -0000517529 00000 n -0000543152 00000 n -0000570870 00000 n -0000601483 00000 n -0000625517 00000 n -0000656459 00000 n -0000659467 00000 n -0000661574 00000 n -0000707681 00000 n -0000710015 00000 n -0000713172 00000 n -0000715207 00000 n -0000809575 00000 n -0000813488 00000 n -0000090068 00000 n -0000089580 00000 n -0000087742 00000 n -0000089882 00000 n -0000089722 00000 n -0000933524 00000 n -0000092242 00000 n -0000095644 00000 n -0000093964 00000 n -0000092100 00000 n -0000090166 00000 n -0000093586 00000 n -0000093711 00000 n -0000093430 00000 n -0000093838 00000 n -0000093901 00000 n -0000093159 00000 n -0000093290 00000 n -0000093337 00000 n -0000093409 00000 n -0000097080 00000 n -0000095522 00000 n -0000094090 00000 n -0000096890 00000 n -0000096953 00000 n -0000096619 00000 n -0000096750 00000 n -0000096797 00000 n -0000096869 00000 n -0000099536 00000 n -0000099048 00000 n -0000097206 00000 n -0000099347 00000 n -0000099410 00000 n -0000099473 00000 n -0000099190 00000 n -0000101032 00000 n -0000112071 00000 n -0000100874 00000 n -0000099634 00000 n -0000111820 00000 n -0000111353 00000 n -0000111507 00000 n -0000111663 00000 n -0001030791 00000 n -0000114139 00000 n -0000123646 00000 n -0000154100 00000 n -0000122225 00000 n -0000113989 00000 n -0000112205 00000 n -0000121972 00000 n -0000122035 00000 n -0000121658 00000 n -0000122162 00000 n -0000121815 00000 n -0000157121 00000 n -0000123524 00000 n -0000122359 00000 n -0000156930 00000 n -0000158786 00000 n -0000163210 00000 n -0000166054 00000 n -0000158644 00000 n -0000157268 00000 n -0000165800 00000 n -0000165863 00000 n -0000165643 00000 n -0000169187 00000 n -0000168535 00000 n -0000166201 00000 n -0000168997 00000 n -0000168685 00000 n -0000169124 00000 n -0000168841 00000 n -0000170810 00000 n -0000173486 00000 n -0000177633 00000 n -0000170668 00000 n -0000169285 00000 n -0000177380 00000 n -0000177443 00000 n -0000177223 00000 n -0000179784 00000 n -0000189367 00000 n -0000186642 00000 n -0000179626 00000 n -0000177782 00000 n -0000186515 00000 n -0000186045 00000 n -0000186202 00000 n -0000186358 00000 n -0001030909 00000 n -0000194388 00000 n -0000192358 00000 n -0000189209 00000 n -0000186764 00000 n -0000192106 00000 n -0000192169 00000 n -0000191636 00000 n -0000191792 00000 n -0000191949 00000 n -0000220077 00000 n -0000194246 00000 n -0000192493 00000 n -0000219824 00000 n -0000219951 00000 n -0000219666 00000 n -0000220014 00000 n -0000222122 00000 n -0000227730 00000 n -0000222000 00000 n -0000220212 00000 n -0000227540 00000 n -0000227667 00000 n -0000230524 00000 n -0000230151 00000 n -0000227865 00000 n -0000230273 00000 n -0000230398 00000 n -0000230461 00000 n -0000233169 00000 n -0000232858 00000 n -0000230622 00000 n -0000232980 00000 n -0000233043 00000 n -0000233106 00000 n -0000238331 00000 n -0000236333 00000 n -0000235721 00000 n -0000233280 00000 n -0000236019 00000 n -0000236146 00000 n -0000235863 00000 n -0001031027 00000 n -0000258979 00000 n -0000256968 00000 n -0000238189 00000 n -0000236431 00000 n -0000256780 00000 n -0000256622 00000 n -0000270595 00000 n -0000258857 00000 n -0000257116 00000 n -0000270469 00000 n -0000273542 00000 n -0000273295 00000 n -0000270743 00000 n -0000273417 00000 n -0000276918 00000 n -0000276733 00000 n -0000273653 00000 n -0000276855 00000 n -0000985273 00000 n -0000976930 00000 n -0000985093 00000 n -0000976488 00000 n -0000974202 00000 n -0000976326 00000 n -0000973908 00000 n -0000966090 00000 n -0000973733 00000 n -0000965739 00000 n -0000963681 00000 n -0000965576 00000 n -0000280585 00000 n -0000279934 00000 n -0000277081 00000 n -0000280397 00000 n -0000963230 00000 n -0000955938 00000 n -0000963053 00000 n -0000280084 00000 n -0000280241 00000 n -0000282200 00000 n -0000281891 00000 n -0000280761 00000 n -0000282013 00000 n -0001031145 00000 n -0000283840 00000 n -0000315039 00000 n -0000446882 00000 n -0000283690 00000 n -0000282298 00000 n -0000446629 00000 n -0000446317 00000 n -0000446475 00000 n -0000449882 00000 n -0000449228 00000 n -0000447031 00000 n -0000449691 00000 n -0000449378 00000 n -0000449534 00000 n -0000451979 00000 n -0000517719 00000 n -0000451857 00000 n -0000449980 00000 n -0000517466 00000 n -0000519215 00000 n -0000518688 00000 n -0000517854 00000 n -0000519152 00000 n -0000518838 00000 n -0000518996 00000 n -0000521948 00000 n -0000540786 00000 n -0000521790 00000 n -0000519300 00000 n -0000540598 00000 n -0000540129 00000 n -0000540286 00000 n -0000540443 00000 n -0000543278 00000 n -0000542967 00000 n -0000540986 00000 n -0000543089 00000 n -0000543215 00000 n -0001031263 00000 n -0000546076 00000 n -0000568479 00000 n -0000545910 00000 n -0000543402 00000 n -0000568290 00000 n -0000567663 00000 n -0000567824 00000 n -0000567980 00000 n -0000568134 00000 n -0000933460 00000 n -0000570934 00000 n -0000570508 00000 n -0000568679 00000 n -0000570807 00000 n -0000570650 00000 n -0000573545 00000 n -0000598300 00000 n -0000573423 00000 n -0000571045 00000 n -0000598111 00000 n -0000955607 00000 n -0000953497 00000 n -0000955436 00000 n -0000601610 00000 n -0000600956 00000 n -0000598513 00000 n -0000601420 00000 n -0000601106 00000 n -0000601264 00000 n -0000601547 00000 n -0000603898 00000 n -0000623809 00000 n -0000603748 00000 n -0000601734 00000 n -0000623557 00000 n -0000623242 00000 n -0000623400 00000 n -0000623746 00000 n -0000625581 00000 n -0000625332 00000 n -0000623944 00000 n -0000625454 00000 n -0001031381 00000 n -0000628093 00000 n -0000654337 00000 n -0000627927 00000 n -0000625692 00000 n -0000654148 00000 n -0000653525 00000 n -0000653681 00000 n -0000653836 00000 n -0000653992 00000 n -0000656585 00000 n -0000656274 00000 n -0000654472 00000 n -0000656396 00000 n -0000656523 00000 n -0000659531 00000 n -0000659282 00000 n -0000656696 00000 n -0000659404 00000 n -0000661638 00000 n -0000661389 00000 n -0000659629 00000 n -0000661511 00000 n -0000663744 00000 n -0000683099 00000 n -0000663594 00000 n -0000661736 00000 n -0000682910 00000 n -0000682595 00000 n -0000682753 00000 n -0000685714 00000 n -0000707871 00000 n -0000685548 00000 n -0000683234 00000 n -0000707618 00000 n -0000706990 00000 n -0000707148 00000 n -0000707305 00000 n -0000707461 00000 n -0001031499 00000 n -0000710393 00000 n -0000709830 00000 n -0000708006 00000 n -0000709952 00000 n -0000710078 00000 n -0000710141 00000 n -0000710204 00000 n -0000710267 00000 n -0000710330 00000 n -0000713236 00000 n -0000712987 00000 n -0000710504 00000 n -0000713109 00000 n -0000715334 00000 n -0000715022 00000 n -0000713334 00000 n -0000715144 00000 n -0000715271 00000 n -0000717467 00000 n -0000747725 00000 n -0000745192 00000 n -0000717325 00000 n -0000715445 00000 n -0000744940 00000 n -0000744783 00000 n -0000777388 00000 n -0000747559 00000 n -0000745379 00000 n -0000777261 00000 n -0000776623 00000 n -0000776781 00000 n -0000776939 00000 n -0000777100 00000 n -0000780018 00000 n -0000803039 00000 n -0000779868 00000 n -0000777549 00000 n -0000802849 00000 n -0000802536 00000 n -0000802692 00000 n -0001031617 00000 n -0000805936 00000 n -0000805223 00000 n -0000803226 00000 n -0000805684 00000 n -0000805373 00000 n -0000805527 00000 n -0000808258 00000 n -0000809703 00000 n -0000808136 00000 n -0000806034 00000 n -0000809512 00000 n -0000809241 00000 n -0000809372 00000 n -0000809419 00000 n -0000809491 00000 n -0000813552 00000 n -0000812797 00000 n -0000809830 00000 n -0000813425 00000 n -0000812955 00000 n -0000813113 00000 n -0000813269 00000 n -0000819193 00000 n -0000817054 00000 n -0000816629 00000 n -0000813663 00000 n -0000816928 00000 n -0000816771 00000 n -0000822988 00000 n -0000820975 00000 n -0000819051 00000 n -0000817152 00000 n -0000820848 00000 n -0000820693 00000 n -0000820342 00000 n -0000820473 00000 n -0000820520 00000 n -0000820592 00000 n -0000820672 00000 n -0000825453 00000 n -0000822846 00000 n -0000821089 00000 n -0000825137 00000 n -0000824981 00000 n -0000825390 00000 n -0001031735 00000 n -0000824629 00000 n -0000824760 00000 n -0000824807 00000 n -0000824879 00000 n -0000824959 00000 n -0000828706 00000 n -0000828218 00000 n -0000825580 00000 n -0000828517 00000 n -0000828580 00000 n -0000828643 00000 n -0000828360 00000 n -0000831187 00000 n -0000831002 00000 n -0000828804 00000 n -0000831124 00000 n -0000833270 00000 n -0000833022 00000 n -0000831285 00000 n -0000833144 00000 n -0000952665 00000 n -0000935563 00000 n -0000952492 00000 n -0000835999 00000 n -0000837697 00000 n -0000835849 00000 n -0000833381 00000 n -0000837444 00000 n -0000837133 00000 n -0000837288 00000 n -0000836862 00000 n -0000836993 00000 n -0000837040 00000 n -0000837112 00000 n -0000840257 00000 n -0000842259 00000 n -0000840115 00000 n -0000837824 00000 n -0000842133 00000 n -0000841977 00000 n -0000841706 00000 n -0000841837 00000 n -0000841884 00000 n -0000841956 00000 n -0000845490 00000 n -0000845242 00000 n -0000842373 00000 n -0000845364 00000 n -0001031853 00000 n -0000847044 00000 n -0000849075 00000 n -0000846922 00000 n -0000845601 00000 n -0000848822 00000 n -0000848471 00000 n -0000848602 00000 n -0000848649 00000 n -0000848721 00000 n -0000848801 00000 n -0000851298 00000 n -0000869728 00000 n -0000851156 00000 n -0000849215 00000 n -0000869601 00000 n -0000869444 00000 n -0000872623 00000 n -0000872438 00000 n -0000869850 00000 n -0000872560 00000 n -0000875602 00000 n -0000875417 00000 n -0000872721 00000 n -0000875539 00000 n -0000878430 00000 n -0000878245 00000 n -0000875700 00000 n -0000878367 00000 n -0000880625 00000 n -0000880314 00000 n -0000878528 00000 n -0000880436 00000 n -0000880562 00000 n -0001031971 00000 n -0000883048 00000 n -0000882687 00000 n -0000880736 00000 n -0000882985 00000 n -0000882829 00000 n -0000884840 00000 n -0000884655 00000 n -0000883146 00000 n -0000884777 00000 n -0000886771 00000 n -0000886523 00000 n -0000884938 00000 n -0000886645 00000 n -0000886708 00000 n -0000889190 00000 n -0000888627 00000 n -0000886882 00000 n -0000888749 00000 n -0000888875 00000 n -0000888938 00000 n -0000889001 00000 n -0000889064 00000 n -0000889127 00000 n -0000891954 00000 n -0000894607 00000 n -0000891788 00000 n -0000889314 00000 n -0000894292 00000 n -0000894355 00000 n -0000894418 00000 n -0000893665 00000 n -0000893821 00000 n -0000893978 00000 n -0000894135 00000 n -0000893394 00000 n -0000893525 00000 n -0000893572 00000 n -0000893644 00000 n -0000898221 00000 n -0000897468 00000 n -0000894734 00000 n -0000898095 00000 n -0000897626 00000 n -0000897782 00000 n -0000897938 00000 n -0001032089 00000 n -0000900272 00000 n +0000085653 00000 n +0000085808 00000 n +0000085963 00000 n +0000086118 00000 n +0000086273 00000 n +0000086428 00000 n +0000086583 00000 n +0000086738 00000 n +0000086893 00000 n +0000087049 00000 n +0000087204 00000 n +0000087360 00000 n +0000087516 00000 n +0000087670 00000 n +0000087826 00000 n +0000087981 00000 n +0000088137 00000 n +0000088292 00000 n +0000169989 00000 n +0000237011 00000 n +0000281389 00000 n +0000450683 00000 n +0000450747 00000 n +0000518458 00000 n +0000544081 00000 n +0000571799 00000 n +0000602412 00000 n +0000626446 00000 n +0000657388 00000 n +0000660396 00000 n +0000662503 00000 n +0000708610 00000 n +0000710944 00000 n +0000714101 00000 n +0000716136 00000 n +0000810504 00000 n +0000814417 00000 n +0000090997 00000 n +0000090509 00000 n +0000088671 00000 n +0000090811 00000 n +0000090651 00000 n +0000940182 00000 n +0000093171 00000 n +0000096573 00000 n +0000094893 00000 n +0000093029 00000 n +0000091095 00000 n +0000094515 00000 n +0000094640 00000 n +0000094359 00000 n +0000094767 00000 n +0000094830 00000 n +0000094088 00000 n +0000094219 00000 n +0000094266 00000 n +0000094338 00000 n +0000098009 00000 n +0000096451 00000 n +0000095019 00000 n +0000097819 00000 n +0000097882 00000 n +0000097548 00000 n +0000097679 00000 n +0000097726 00000 n +0000097798 00000 n +0000100465 00000 n +0000099977 00000 n +0000098135 00000 n +0000100276 00000 n +0000100339 00000 n +0000100402 00000 n +0000100119 00000 n +0000101961 00000 n +0000113000 00000 n +0000101803 00000 n +0000100563 00000 n +0000112749 00000 n +0000112282 00000 n +0000112436 00000 n +0000112592 00000 n +0001038576 00000 n +0000115068 00000 n +0000124575 00000 n +0000155029 00000 n +0000123154 00000 n +0000114918 00000 n +0000113134 00000 n +0000122901 00000 n +0000122964 00000 n +0000122587 00000 n +0000123091 00000 n +0000122744 00000 n +0000158050 00000 n +0000124453 00000 n +0000123288 00000 n +0000157859 00000 n +0000159715 00000 n +0000164139 00000 n +0000166983 00000 n +0000159573 00000 n +0000158197 00000 n +0000166729 00000 n +0000166792 00000 n +0000166572 00000 n +0000170116 00000 n +0000169464 00000 n +0000167130 00000 n +0000169926 00000 n +0000169614 00000 n +0000170053 00000 n +0000169770 00000 n +0000171739 00000 n +0000174415 00000 n +0000178562 00000 n +0000171597 00000 n +0000170214 00000 n +0000178309 00000 n +0000178372 00000 n +0000178152 00000 n +0000180713 00000 n +0000190296 00000 n +0000187571 00000 n +0000180555 00000 n +0000178711 00000 n +0000187444 00000 n +0000186974 00000 n +0000187131 00000 n +0000187287 00000 n +0001038694 00000 n +0000195317 00000 n +0000193287 00000 n +0000190138 00000 n +0000187693 00000 n +0000193035 00000 n +0000193098 00000 n +0000192565 00000 n +0000192721 00000 n +0000192878 00000 n +0000221006 00000 n +0000195175 00000 n +0000193422 00000 n +0000220753 00000 n +0000220880 00000 n +0000220595 00000 n +0000220943 00000 n +0000223051 00000 n +0000228659 00000 n +0000222929 00000 n +0000221141 00000 n +0000228469 00000 n +0000228596 00000 n +0000231453 00000 n +0000231080 00000 n +0000228794 00000 n +0000231202 00000 n +0000231327 00000 n +0000231390 00000 n +0000234098 00000 n +0000233787 00000 n +0000231551 00000 n +0000233909 00000 n +0000233972 00000 n +0000234035 00000 n +0000239260 00000 n +0000237262 00000 n +0000236650 00000 n +0000234209 00000 n +0000236948 00000 n +0000237075 00000 n +0000236792 00000 n +0001038812 00000 n +0000259908 00000 n +0000257897 00000 n +0000239118 00000 n +0000237360 00000 n +0000257709 00000 n +0000257551 00000 n +0000271524 00000 n +0000259786 00000 n +0000258045 00000 n +0000271398 00000 n +0000274471 00000 n +0000274224 00000 n +0000271672 00000 n +0000274346 00000 n +0000277847 00000 n +0000277662 00000 n +0000274582 00000 n +0000277784 00000 n +0000993054 00000 n +0000984124 00000 n +0000992874 00000 n +0000983682 00000 n +0000981397 00000 n +0000983520 00000 n +0000981103 00000 n +0000973285 00000 n +0000980928 00000 n +0000972898 00000 n +0000970711 00000 n +0000972735 00000 n +0000281514 00000 n +0000280863 00000 n +0000278010 00000 n +0000281326 00000 n +0000970260 00000 n +0000962968 00000 n +0000970083 00000 n +0000281013 00000 n +0000281170 00000 n +0000283129 00000 n +0000282820 00000 n +0000281690 00000 n +0000282942 00000 n +0001038930 00000 n +0000284769 00000 n +0000315968 00000 n +0000447811 00000 n +0000284619 00000 n +0000283227 00000 n +0000447558 00000 n +0000447246 00000 n +0000447404 00000 n +0000450811 00000 n +0000450157 00000 n +0000447960 00000 n +0000450620 00000 n +0000450307 00000 n +0000450463 00000 n +0000452908 00000 n +0000518648 00000 n +0000452786 00000 n +0000450909 00000 n +0000518395 00000 n +0000520144 00000 n +0000519617 00000 n +0000518783 00000 n +0000520081 00000 n +0000519767 00000 n +0000519925 00000 n +0000522877 00000 n +0000541715 00000 n +0000522719 00000 n +0000520229 00000 n +0000541527 00000 n +0000541058 00000 n +0000541215 00000 n +0000541372 00000 n +0000544207 00000 n +0000543896 00000 n +0000541915 00000 n +0000544018 00000 n +0000544144 00000 n +0001039048 00000 n +0000547005 00000 n +0000569408 00000 n +0000546839 00000 n +0000544331 00000 n +0000569219 00000 n +0000568592 00000 n +0000568753 00000 n +0000568909 00000 n +0000569063 00000 n +0000940118 00000 n +0000571863 00000 n +0000571437 00000 n +0000569608 00000 n +0000571736 00000 n +0000571579 00000 n +0000574474 00000 n +0000599229 00000 n +0000574352 00000 n +0000571974 00000 n +0000599040 00000 n +0000962637 00000 n +0000960527 00000 n +0000962466 00000 n +0000602539 00000 n +0000601885 00000 n +0000599442 00000 n +0000602349 00000 n +0000602035 00000 n +0000602193 00000 n +0000602476 00000 n +0000604827 00000 n +0000624738 00000 n +0000604677 00000 n +0000602663 00000 n +0000624486 00000 n +0000624171 00000 n +0000624329 00000 n +0000624675 00000 n +0000626510 00000 n +0000626261 00000 n +0000624873 00000 n +0000626383 00000 n +0001039166 00000 n +0000629022 00000 n +0000655266 00000 n +0000628856 00000 n +0000626621 00000 n +0000655077 00000 n +0000654454 00000 n +0000654610 00000 n +0000654765 00000 n +0000654921 00000 n +0000657514 00000 n +0000657203 00000 n +0000655401 00000 n +0000657325 00000 n +0000657452 00000 n +0000660460 00000 n +0000660211 00000 n +0000657625 00000 n +0000660333 00000 n +0000662567 00000 n +0000662318 00000 n +0000660558 00000 n +0000662440 00000 n +0000664673 00000 n +0000684028 00000 n +0000664523 00000 n +0000662665 00000 n +0000683839 00000 n +0000683524 00000 n +0000683682 00000 n +0000686643 00000 n +0000708800 00000 n +0000686477 00000 n +0000684163 00000 n +0000708547 00000 n +0000707919 00000 n +0000708077 00000 n +0000708234 00000 n +0000708390 00000 n +0001039284 00000 n +0000711322 00000 n +0000710759 00000 n +0000708935 00000 n +0000710881 00000 n +0000711007 00000 n +0000711070 00000 n +0000711133 00000 n +0000711196 00000 n +0000711259 00000 n +0000714165 00000 n +0000713916 00000 n +0000711433 00000 n +0000714038 00000 n +0000716263 00000 n +0000715951 00000 n +0000714263 00000 n +0000716073 00000 n +0000716200 00000 n +0000718396 00000 n +0000748654 00000 n +0000746121 00000 n +0000718254 00000 n +0000716374 00000 n +0000745869 00000 n +0000745712 00000 n +0000778317 00000 n +0000748488 00000 n +0000746308 00000 n +0000778190 00000 n +0000777552 00000 n +0000777710 00000 n +0000777868 00000 n +0000778029 00000 n +0000780947 00000 n +0000803968 00000 n +0000780797 00000 n +0000778478 00000 n +0000803778 00000 n +0000803465 00000 n +0000803621 00000 n +0001039402 00000 n +0000806865 00000 n +0000806152 00000 n +0000804155 00000 n +0000806613 00000 n +0000806302 00000 n +0000806456 00000 n +0000809187 00000 n +0000810632 00000 n +0000809065 00000 n +0000806963 00000 n +0000810441 00000 n +0000810170 00000 n +0000810301 00000 n +0000810348 00000 n +0000810420 00000 n +0000814481 00000 n +0000813726 00000 n +0000810759 00000 n +0000814354 00000 n +0000813884 00000 n +0000814042 00000 n +0000814198 00000 n +0000820122 00000 n +0000817983 00000 n +0000817558 00000 n +0000814592 00000 n +0000817857 00000 n +0000817700 00000 n +0000823917 00000 n +0000821904 00000 n +0000819980 00000 n +0000818081 00000 n +0000821777 00000 n +0000821622 00000 n +0000821271 00000 n +0000821402 00000 n +0000821449 00000 n +0000821521 00000 n +0000821601 00000 n +0000826382 00000 n +0000823775 00000 n +0000822018 00000 n +0000826066 00000 n +0000825910 00000 n +0000826319 00000 n +0001039520 00000 n +0000825558 00000 n +0000825689 00000 n +0000825736 00000 n +0000825808 00000 n +0000825888 00000 n +0000829635 00000 n +0000829147 00000 n +0000826509 00000 n +0000829446 00000 n +0000829509 00000 n +0000829572 00000 n +0000829289 00000 n +0000832116 00000 n +0000831931 00000 n +0000829733 00000 n +0000832053 00000 n +0000834199 00000 n +0000833951 00000 n +0000832214 00000 n +0000834073 00000 n +0000959431 00000 n +0000942221 00000 n +0000959258 00000 n +0000836928 00000 n +0000838626 00000 n +0000836778 00000 n +0000834310 00000 n +0000838373 00000 n +0000838062 00000 n +0000838217 00000 n +0000837791 00000 n +0000837922 00000 n +0000837969 00000 n +0000838041 00000 n +0000841186 00000 n +0000843188 00000 n +0000841044 00000 n +0000838753 00000 n +0000843062 00000 n +0000842906 00000 n +0000842635 00000 n +0000842766 00000 n +0000842813 00000 n +0000842885 00000 n +0000846419 00000 n +0000846171 00000 n +0000843302 00000 n +0000846293 00000 n +0001039638 00000 n +0000847973 00000 n +0000850004 00000 n +0000847851 00000 n +0000846530 00000 n +0000849751 00000 n +0000849400 00000 n +0000849531 00000 n +0000849578 00000 n +0000849650 00000 n +0000849730 00000 n +0000852227 00000 n +0000870657 00000 n +0000852085 00000 n +0000850144 00000 n +0000870530 00000 n +0000870373 00000 n +0000873552 00000 n +0000873367 00000 n +0000870779 00000 n +0000873489 00000 n +0000876531 00000 n +0000876346 00000 n +0000873650 00000 n +0000876468 00000 n +0000879359 00000 n +0000879174 00000 n +0000876629 00000 n +0000879296 00000 n +0000881554 00000 n +0000881243 00000 n +0000879457 00000 n +0000881365 00000 n +0000881491 00000 n +0001039756 00000 n +0000883977 00000 n +0000883616 00000 n +0000881665 00000 n +0000883914 00000 n +0000883758 00000 n +0000885769 00000 n +0000885584 00000 n +0000884075 00000 n +0000885706 00000 n +0000887700 00000 n +0000887452 00000 n +0000885867 00000 n +0000887574 00000 n +0000887637 00000 n +0000890119 00000 n +0000889556 00000 n +0000887811 00000 n +0000889678 00000 n +0000889804 00000 n +0000889867 00000 n +0000889930 00000 n +0000889993 00000 n +0000890056 00000 n +0000892643 00000 n +0000895358 00000 n +0000892477 00000 n +0000890243 00000 n +0000894980 00000 n +0000895043 00000 n +0000895106 00000 n +0000894354 00000 n +0000894510 00000 n +0000894666 00000 n +0000894823 00000 n +0000894083 00000 n +0000894214 00000 n +0000894261 00000 n +0000894333 00000 n +0000898974 00000 n +0000898385 00000 n +0000895485 00000 n +0000898848 00000 n +0000898535 00000 n +0000898691 00000 n +0001039874 00000 n +0000902429 00000 n +0000901805 00000 n +0000899085 00000 n +0000901927 00000 n +0000901990 00000 n +0000902053 00000 n +0000902116 00000 n +0000902179 00000 n 0000902240 00000 n -0000900150 00000 n -0000898332 00000 n -0000902114 00000 n -0000901762 00000 n -0000901893 00000 n -0000901940 00000 n -0000902012 00000 n -0000902092 00000 n -0000905828 00000 n -0000910241 00000 n -0000905160 00000 n -0000904797 00000 n -0000902354 00000 n -0000905097 00000 n -0000904939 00000 n -0000907724 00000 n -0000905706 00000 n -0000905271 00000 n -0000907597 00000 n -0000907325 00000 n -0000907456 00000 n -0000907503 00000 n -0000907575 00000 n -0000912316 00000 n -0000910091 00000 n -0000907838 00000 n -0000912126 00000 n -0000911811 00000 n -0000911968 00000 n -0000911540 00000 n -0000911671 00000 n -0000911718 00000 n -0000911790 00000 n -0000914844 00000 n -0000916360 00000 n -0000914702 00000 n -0000912456 00000 n -0000916170 00000 n -0000916016 00000 n -0000915745 00000 n -0000915876 00000 n -0000915923 00000 n -0000915995 00000 n -0000933396 00000 n -0000919802 00000 n -0000919361 00000 n -0000916500 00000 n -0000919676 00000 n -0000919503 00000 n -0001032207 00000 n -0000925597 00000 n -0000921956 00000 n -0000919926 00000 n -0000925472 00000 n -0000925535 00000 n -0000922242 00000 n -0000922417 00000 n -0000922594 00000 n -0000922768 00000 n -0000922940 00000 n -0000923124 00000 n -0000923292 00000 n -0000923470 00000 n -0000923654 00000 n -0000923828 00000 n -0000924026 00000 n -0000924198 00000 n -0000924369 00000 n -0000924571 00000 n -0000924748 00000 n -0000924928 00000 n -0000925109 00000 n -0000925288 00000 n -0000928106 00000 n -0000927852 00000 n -0000925721 00000 n -0000927977 00000 n -0000929793 00000 n -0000929603 00000 n -0000928218 00000 n -0000929728 00000 n -0000932336 00000 n -0000931108 00000 n -0000929892 00000 n -0000931233 00000 n -0000931362 00000 n -0000931427 00000 n -0000931492 00000 n -0000931557 00000 n -0000931622 00000 n -0000931687 00000 n -0000931752 00000 n -0000931817 00000 n -0000931882 00000 n -0000931947 00000 n -0000932012 00000 n -0000932077 00000 n -0000932142 00000 n -0000932207 00000 n -0000932272 00000 n -0000933588 00000 n -0000933142 00000 n -0000932422 00000 n -0000933267 00000 n -0000933674 00000 n -0000953148 00000 n -0000955845 00000 n -0000955820 00000 n -0000963482 00000 n -0000965991 00000 n -0000965958 00000 n -0000974147 00000 n -0000976789 00000 n -0000976716 00000 n -0000985524 00000 n -0000998425 00000 n -0001001299 00000 n -0001001169 00000 n -0001015908 00000 n -0001029894 00000 n -0001032329 00000 n -0001032449 00000 n -0001032569 00000 n -0001032665 00000 n -0001032747 00000 n -0001037227 00000 n -0001042571 00000 n -0001042612 00000 n -0001042652 00000 n -0001042808 00000 n +0000902303 00000 n +0000902366 00000 n +0000905600 00000 n +0000905176 00000 n +0000902592 00000 n +0000905474 00000 n +0000905318 00000 n +0000907348 00000 n +0000909315 00000 n +0000907226 00000 n +0000905750 00000 n +0000909190 00000 n +0000908838 00000 n +0000908969 00000 n +0000909016 00000 n +0000909088 00000 n +0000909168 00000 n +0000913865 00000 n +0000917739 00000 n +0000913197 00000 n +0000912440 00000 n +0000909442 00000 n +0000913071 00000 n +0000912598 00000 n +0000912756 00000 n +0000912913 00000 n +0000915761 00000 n +0000913743 00000 n +0000913308 00000 n +0000915634 00000 n +0000915362 00000 n +0000915493 00000 n +0000915540 00000 n +0000915612 00000 n +0000919309 00000 n +0000920671 00000 n +0000917617 00000 n +0000915875 00000 n +0000920481 00000 n +0001039992 00000 n +0000919038 00000 n +0000919169 00000 n +0000919216 00000 n +0000919288 00000 n +0000920210 00000 n +0000920341 00000 n +0000920388 00000 n +0000920460 00000 n +0000923807 00000 n +0000923378 00000 n +0000920812 00000 n +0000923678 00000 n +0000923523 00000 n +0000940053 00000 n +0000928351 00000 n +0000926728 00000 n +0000923918 00000 n +0000928157 00000 n +0000926928 00000 n +0000928286 00000 n +0000927101 00000 n +0000927276 00000 n +0000927453 00000 n +0000927628 00000 n +0000927802 00000 n +0000927987 00000 n +0000932262 00000 n +0000929771 00000 n +0000928476 00000 n +0000932197 00000 n +0000930016 00000 n +0000930195 00000 n +0000930379 00000 n +0000930553 00000 n +0000930752 00000 n +0000930924 00000 n +0000931096 00000 n +0000931298 00000 n +0000931475 00000 n +0000931656 00000 n +0000931837 00000 n +0000932014 00000 n +0000934761 00000 n +0000934507 00000 n +0000932374 00000 n +0000934632 00000 n +0000936448 00000 n +0000936258 00000 n +0000934873 00000 n +0000936383 00000 n +0000938992 00000 n +0000937763 00000 n +0000936547 00000 n +0000937889 00000 n +0000938018 00000 n +0000938083 00000 n +0000938148 00000 n +0000938213 00000 n +0000938278 00000 n +0000938343 00000 n +0000938408 00000 n +0000938473 00000 n +0000938538 00000 n +0000938603 00000 n +0000938668 00000 n +0000938733 00000 n +0000938798 00000 n +0000938863 00000 n +0000938928 00000 n +0001040115 00000 n +0000940246 00000 n +0000939798 00000 n +0000939078 00000 n +0000939924 00000 n +0000940332 00000 n +0000959924 00000 n +0000962875 00000 n +0000962850 00000 n +0000970512 00000 n +0000973164 00000 n +0000973125 00000 n +0000981342 00000 n +0000983983 00000 n +0000983910 00000 n +0000993307 00000 n +0001006210 00000 n +0001009084 00000 n +0001008954 00000 n +0001023693 00000 n +0001037679 00000 n +0001040204 00000 n +0001040324 00000 n +0001040444 00000 n +0001040549 00000 n +0001040631 00000 n +0001045308 00000 n +0001050873 00000 n +0001050914 00000 n +0001050954 00000 n +0001051110 00000 n trailer << -/Size 1065 -/Root 1063 0 R -/Info 1064 0 R -/ID [<373DF94D8111F4B976023BE54AAD8AA2> <373DF94D8111F4B976023BE54AAD8AA2>] +/Size 1091 +/Root 1089 0 R +/Info 1090 0 R +/ID [<8F2040709D8641B3A0B734E25EAD007A> <8F2040709D8641B3A0B734E25EAD007A>] >> startxref -1043076 +1051378 %%EOF |
