From a7fdf8fb6a1f32062161b6e245c6f8bd67da3ec9 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 7 Aug 2008 18:15:08 +0000 Subject: mehr geschrieben --- LaTeX/argouml.zargo | Bin 29381 -> 29589 bytes LaTeX/chapters/implementierung.tex | 33 +- LaTeX/chapters/simulator.tex | 4 +- LaTeX/diplomarbeit.pdf | 5755 ++++++++++++++++---------------- LaTeX/images/events.eps | 284 +- sources/events/VSRegisteredEvents.java | 22 +- 6 files changed, 3088 insertions(+), 3010 deletions(-) diff --git a/LaTeX/argouml.zargo b/LaTeX/argouml.zargo index 566ce43..a50a6a9 100644 Binary files a/LaTeX/argouml.zargo and b/LaTeX/argouml.zargo differ diff --git a/LaTeX/chapters/implementierung.tex b/LaTeX/chapters/implementierung.tex index f0b8685..64034db 100644 --- a/LaTeX/chapters/implementierung.tex +++ b/LaTeX/chapters/implementierung.tex @@ -52,7 +52,7 @@ Eine Simulation ist von einer Vielzahl von Einstellungen abh\"{a}ngig. Da auf di \subsection{Einstellungsobjekte} -Auf Abbilung \ref{fig:PackagePrefs} ist der Aufbau des Pakets \textit{prefs} zu sehen. In einer Instanz der Klasse \textit{VSPrefs} lassen sich viele verschiedene Daten als Variablen f\"{u}r eine sp\"{a}tere Verwendung dynamisch ablegen und stellt somit einen Container f\"{u}r diese Daten dar. In einem \textit{VSPrefs}-Objekt speichert der Simulator alle seine Einstellungen ab. Zudem besitzt jedes Prozessobjekt und jedes Protokollobjekt f\"{u}r lokale Einstellungen seine eigene Instanz von \textit{VSPrefs}. Selbst Nachrichtenobjekte besitzt hiervon eine eigene Instanz, wobei hier die zu verschickenden Daten abgelegt werden k\"{o}nnen. +Auf Abbilung \ref{fig:PackagePrefs} ist der Aufbau des Pakets \textit{prefs} zu sehen. In einer Instanz der Klasse \textit{VSPrefs} lassen sich viele verschiedene Daten als Variablen f\"{u}r eine sp\"{a}tere Verwendung dynamisch ablegen und stellt somit einen Container f\"{u}r diese Daten dar. In einem \textit{VSPrefs}-Objekt speichert der Simulator alle seine Einstellungen ab. Zudem besitzt jedes Prozessobjekt und jedes Ereignisobjekt (und da Protokolle auch Ereignisse sind auch jedes Protokollobjekt) f\"{u}r lokale Einstellungen seine eigene Instanz von \textit{VSPrefs}. Selbst Nachrichtenobjekte besitzt hiervon eine eigene Instanz, wobei hier die zu verschickenden Daten abgelegt werden k\"{o}nnen. \begin{figure}[h] \centering @@ -131,7 +131,7 @@ F\"{u}r Protokolle gibt es keine separate Editor-Klasse, da sie bereits vom Proz \section{Ereignisse} -\subsection{Die Funktionsweise von Ereignissen} +\subsection{Funktionsweise von Ereignissen} F\"{u}r jedes Ereignis existiert eine dazugeh\"{o}rige Klasse, welche die auszuf\"{u}hrenden Aktionen implementiert. Eine Instanz davon wird, f\"{u}r eine sp\"{a}tere Ausf\"{u}hrung, in einem \textit{VSTask}-Objekt verpackt dem Task-Manager \"{u}bergeben. Auf den Task-Manager wird sp\"{a}ter noch genauer eingegangen. \begin{figure}[h] @@ -182,7 +182,7 @@ Des Weiteren werden folgende nicht-abstrakte Methoden von \textit{VSAbstractEven Jede Ereiginsklasse hat zudem Zugriff auf folgende Attribute, die von \textit{VSAbstractEvent} vererbt werden: \begin{itemize} - \item \textit{protected VSPrefs prefs}: Eine Referenz auf das Simulationseinstellungsobjekt. Hier\"{u}ber lassen sich alle Simulationseinstellungen beziehen. + \item \textit{protected VSPrefs prefs}: Eine Referenz auf das Simulationseinstellungsobjekt. Hier\"{u}ber lassen sich alle Simulationseinstellungen beziehen. \textit{prefs} ist nicht zu verwechseln mit den TODO \item \textit{protected VSAbstractProcess process}: Eine Referenz auf das Prozessobjekt des jeweiligen Prozesses, auf welches das Ereignis angewendet wird. \end{itemize} @@ -273,16 +273,16 @@ void createCrashAndRecoverExample(VSTaskManager taskManager, VSAbstractEvent recoverEvent = new VSProcessRecoverEvent(); VSTask globalTask = new VSTask(2000, process, - recoverEvent, VSTask.GLOBAL); + recoverEvent, VSTask.GLOBAL); taksManager.addTask(globalTask); } \end{code} -In diesem Beispiel wurden zwei Ereignisse (Absturz- und Wiederbelebung eines gegebenen Prozesses) angelegt. Das Absturzereignis tritt bei der aktuellen lokalen Prozesszeit plus \textit{500ms} ein, w\"{a}hrend das Wiederbelebungsereignis bei einer globalen Zeit von \textit{2000ms} stattfindet. F\"{u}r den Fall, dass das Wiederbelebungsereignis vor dem Absturzereignis eintritt, wird es nicht ausgef\"{u}hrt, da der Prozess noch nicht abgest\"{u}rzt ist. +In diesem Beispiel wurden zwei Ereignisse (Absturz- und Wiederbelebung eines gegebenen Prozesses) angelegt. Das Absturzereignis tritt bei der aktuellen lokalen Prozesszeit plus \textit{500ms} ein, w\"{a}hrend das Wiederbelebungsereignis bei einer globalen Zeit von \textit{2000ms} stattfindet. F\"{u}r den Fall, dass das Wiederbelebungsereignis vor dem Absturzereignis eintritt wird es nicht ausgef\"{u}hrt, da der Prozess noch nicht abgest\"{u}rzt ist. \section{Protokolle} -\subsection{Die Funktionsweise des Protokoll-APIs} +\subsection{Funktionsweise des Protokoll-APIs} \begin{figure}[h] \centering @@ -437,11 +437,28 @@ Der Server benutzt in diesem Beispiel keinen Wecker. Dementsprechend hat die Met \subsection{Erstellung eigener Protokolle} -\section{GUI} +Hier werden alle Schritte zusammegefasst, die f\"{u}r die Erstellung eines eigenen Protokolls \textit{VSMyProtocol} durchgef\"{u}rt werden m\"{u}ssen. + +\begin{enumerate} + \item VS-Simulator Quelltext beziehen und in das Verzeichnis \textit{vs/sources/protocols/implementations} wechseln. + \item Das Template-Protokoll \textit{VSDummyProtocol.java} nach \textit{VSMyProtocol.java} kopieren. + \item \textit{VSDummyProtocol.java} editieren und den Klassennamen dort anpassen (\textit{VSDummyProtocol} $\rightarrow$ \textit{VSMyProtocol}). + \item In das oberste Verzeichnis \textit{vs/} wechseln + \item Die datei \textit{sources/events/VSRegisteredEvents.java} editieren, und in der \textit{init}-Methode folgende Zeile hinzuf\"{u}gen: + \begin{code} +registerEvent("protocols.implementations.VSMyProtocol", + "Langer Name des Protokolls", // Langer name + "Neues Protokoll"); // Kurzer Name + \end{code} + \item Mit dem Befehl \textit{ant compile} die \"{A}nderungen \"{u}bernehmen und mit \textit{ant test} testen, ob der Simulator das Protokoll \"{u}bernommen hat. Hierbei wird der Simulator direkt aus dem Quellverzeichnis gestartet. ``Neues Protokoll'' sollte nun im Ereigniseditor programmiert werden k\"{o}nnen. + \item Mit dem Befehl \textit{ant dist} das Archiv \textit{dist/lib/VS-Sim-Latest.jar} erstellen und verwenden. +\end{enumerate} + +\section{GUI sowie Simulationsvisualisierung} \section{Serialisierung von Simulationen} -\subsection{R\"{u}ckw\"{a}rtskompatibel} +\subsubsection{R\"{u}ckw\"{a}rtskompatibel} \section{Weiteres} diff --git a/LaTeX/chapters/simulator.tex b/LaTeX/chapters/simulator.tex index a22d71e..076b04a 100644 --- a/LaTeX/chapters/simulator.tex +++ b/LaTeX/chapters/simulator.tex @@ -1,6 +1,6 @@ \chapter{Der Simulator} -\section{Die grafische Benutzeroberfl\"{a}che (GUI)} +\section{Grafische Benutzeroberfl\"{a}che (GUI)} \begin{figure}[h] \centering @@ -156,7 +156,7 @@ Mit dem Deaktivieren des Logging-Schalters l\"{a} \"{U}ber den Schalter ``Expertenmodus'' wird der Expertenmodus aktiviert beziehungsweise deaktiviert. -\section{Der Expertenmodus} +\section{Expertenmodus} \begin{figure}[h] \centering diff --git a/LaTeX/diplomarbeit.pdf b/LaTeX/diplomarbeit.pdf index 365f0c6..3b2c557 100644 --- a/LaTeX/diplomarbeit.pdf +++ b/LaTeX/diplomarbeit.pdf @@ -27,13 +27,13 @@ endobj << /S /GoTo /D (section.2.1) >> endobj 24 0 obj -(\376\377\0002\000.\0001\000\040\000D\000i\000e\000\040\000g\000r\000a\000f\000i\000s\000c\000h\000e\000\040\000B\000e\000n\000u\000t\000z\000e\000r\000o\000b\000e\000r\000f\000l\000\344\000c\000h\000e\000\040\000\050\000G\000U\000I\000\051) +(\376\377\0002\000.\0001\000\040\000G\000r\000a\000f\000i\000s\000c\000h\000e\000\040\000B\000e\000n\000u\000t\000z\000e\000r\000o\000b\000e\000r\000f\000l\000\344\000c\000h\000e\000\040\000\050\000G\000U\000I\000\051) endobj 25 0 obj << /S /GoTo /D (section.2.2) >> endobj 28 0 obj -(\376\377\0002\000.\0002\000\040\000D\000e\000r\000\040\000E\000x\000p\000e\000r\000t\000e\000n\000m\000o\000d\000u\000s) +(\376\377\0002\000.\0002\000\040\000E\000x\000p\000e\000r\000t\000e\000n\000m\000o\000d\000u\000s) endobj 29 0 obj << /S /GoTo /D (section.2.3) >> @@ -189,7 +189,7 @@ endobj << /S /GoTo /D (subsection.3.3.1) >> endobj 132 0 obj -(\376\377\0003\000.\0003\000.\0001\000\040\000D\000i\000e\000\040\000F\000u\000n\000k\000t\000i\000o\000n\000s\000w\000e\000i\000s\000e\000\040\000v\000o\000n\000\040\000E\000r\000e\000i\000g\000n\000i\000s\000s\000e\000n) +(\376\377\0003\000.\0003\000.\0001\000\040\000F\000u\000n\000k\000t\000i\000o\000n\000s\000w\000e\000i\000s\000e\000\040\000v\000o\000n\000\040\000E\000r\000e\000i\000g\000n\000i\000s\000s\000e\000n) endobj 133 0 obj << /S /GoTo /D (subsection.3.3.2) >> @@ -225,7 +225,7 @@ endobj << /S /GoTo /D (subsection.3.5.1) >> endobj 156 0 obj -(\376\377\0003\000.\0005\000.\0001\000\040\000D\000i\000e\000\040\000F\000u\000n\000k\000t\000i\000o\000n\000s\000w\000e\000i\000s\000e\000\040\000d\000e\000s\000\040\000P\000r\000o\000t\000o\000k\000o\000l\000l\000-\000A\000P\000I\000s) +(\376\377\0003\000.\0005\000.\0001\000\040\000F\000u\000n\000k\000t\000i\000o\000n\000s\000w\000e\000i\000s\000e\000\040\000d\000e\000s\000\040\000P\000r\000o\000t\000o\000k\000o\000l\000l\000-\000A\000P\000I\000s) endobj 157 0 obj << /S /GoTo /D (subsection.3.5.2) >> @@ -243,7 +243,7 @@ endobj << /S /GoTo /D (section.3.6) >> endobj 168 0 obj -(\376\377\0003\000.\0006\000\040\000G\000U\000I) +(\376\377\0003\000.\0006\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.7) >> @@ -252,45 +252,39 @@ endobj (\376\377\0003\000.\0007\000\040\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 173 0 obj -<< /S /GoTo /D (subsection.3.7.1) >> -endobj -176 0 obj -(\376\377\0003\000.\0007\000.\0001\000\040\000R\000\374\000c\000k\000w\000\344\000r\000t\000s\000k\000o\000m\000p\000a\000t\000i\000b\000e\000l) -endobj -177 0 obj << /S /GoTo /D (section.3.8) >> endobj -180 0 obj +176 0 obj (\376\377\0003\000.\0008\000\040\000W\000e\000i\000t\000e\000r\000e\000s) endobj -181 0 obj +177 0 obj << /S /GoTo /D (section.3.9) >> endobj -184 0 obj +180 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) endobj -185 0 obj +181 0 obj << /S /GoTo /D (chapter.4) >> endobj -188 0 obj +184 0 obj (\376\377\0004\000\040\000A\000u\000s\000b\000l\000i\000c\000k) endobj -189 0 obj +185 0 obj << /S /GoTo /D (appendix.A) >> endobj -192 0 obj +188 0 obj (\376\377\000A\000\040\000A\000k\000r\000o\000n\000y\000m\000s) endobj -193 0 obj +189 0 obj << /S /GoTo /D (appendix.B) >> endobj -196 0 obj +192 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 -197 0 obj -<< /S /GoTo /D [198 0 R /Fit ] >> +193 0 obj +<< /S /GoTo /D [194 0 R /Fit ] >> endobj -201 0 obj << +197 0 obj << /Length 826 /Filter /FlateDecode >> @@ -300,14 +294,14 @@ xڍUKs 犂b쫑 h<r*r`o2ř֯CC'KsJLΛcD׾k|nZ҅v 6`#ȳEM<%Li$Uu ЉR#?gp3Pbj%=Swi 6"5 F>_㘱FԮCaLp1[CмE?'4!ޮ!M caf ] %T=ke=)KPJjqT*'8e5Ҋa(Dc8Q+`J_mߦ~s51D G܉endstream endobj -198 0 obj << +194 0 obj << /Type /Page -/Contents 201 0 R -/Resources 200 0 R +/Contents 197 0 R +/Resources 196 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R +/Parent 206 0 R >> endobj -199 0 obj << +195 0 obj << /Type /XObject /Subtype /Image /Width 500 @@ -468,18 +462,18 @@ j'F 5M%jKqizlO<ԕ#C~%(4p<]gʟ~c ]'?Ӹ)E- sOyGKrm{/ n-ptuk.#I"vq1HF4G"X!)̷ƪmu/XFoON&3a> g)yC_mm|+!`a >_W?P04ȹW\5??h]UC͒$pS؁ʟtrendstream endobj -202 0 obj << -/D [198 0 R /XYZ 74.4095 769.8898 null] +198 0 obj << +/D [194 0 R /XYZ 74.4095 769.8898 null] >> endobj -203 0 obj << -/D [198 0 R /XYZ 74.4095 769.8898 null] +199 0 obj << +/D [194 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 >> +196 0 obj << +/Font << /F26 202 0 R /F28 205 0 R >> +/XObject << /Im1 195 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -213 0 obj << +209 0 obj << /Length 892 /Filter /FlateDecode >> @@ -491,21 +485,21 @@ v C1D\q{oJ7. pV1H9:+zF"M6<{v0Kᆱ\MWU\Vڕݼayj7"Aӷ\rTRp:h;vrͣi*@I3i·5E,f^I v,|,dIii-z} 6NMƴǨV:#B䤧"6lF ’PW0f [*WeC!w}> endobj -214 0 obj << -/D [212 0 R /XYZ 74.4095 793.4011 null] +210 0 obj << +/D [208 0 R /XYZ 74.4095 793.4011 null] >> endobj -211 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> +207 0 obj << +/Font << /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -217 0 obj << +213 0 obj << /Length 790 /Filter /FlateDecode >> @@ -519,419 +513,410 @@ xڕVMs 7, =js+&fX9 XG#c} zWendstream endobj -216 0 obj << +212 0 obj << /Type /Page -/Contents 217 0 R -/Resources 215 0 R +/Contents 213 0 R +/Resources 211 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R +/Parent 206 0 R >> endobj -218 0 obj << -/D [216 0 R /XYZ 74.4095 793.4011 null] +214 0 obj << +/D [212 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 >> +211 0 obj << +/Font << /F26 202 0 R /F28 205 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -224 0 obj << -/Length 2207 +220 0 obj << +/Length 2201 /Filter /FlateDecode >> stream -x]4+|\D[%K 3P.®zH_d[YGiEv:d7::L2lLqq.23~gݫp.R?&] _LcZH9rVh$8Vus⋯G9f!)b9ïo*+Ey4/UY/=$2CL_" ┱INwC";l2I,bZ(To-WRmYm9V.F4ۉHk2GR)0D!,Y~A2|Jhɢ,A%MkIbݔ*H!Rg~0WNpBCj5/~>Ѱg!'JI|HKIᐜ12 Zft_`F08VquEu"9y7a( -<>A[-8--H\wW/4Ҝp5l'hŗ*-)^fg3UP~W% ;",v52Es_L\~X`'f/ˢKg[i}qcy4Fq^eXW?~c^ys9JJ*jf&|cJć2`֦!=PY, ,1rSwN[MQ`NK3?^x;Uՙ5,+oW0ak- -:W R:M+a=Ɣuή0bLk|bvՋ` Cqx]}hm jPYi&HurnYMB|*a(lG`= BGc< -ak-"N-s5-S: xdv2OKe]}[efм{ -yf8&8:U=J'԰PԙxRSi-Sx:Óxʔtij) -2?hS%QSЪCm3*a{2}5wWy9 -[k!W`yڍJNϯ핷LqֽYiq۔m@Ře {z}6By:q)h0>B΄PI(OlX&O{vۇIr}6\3~|!N0:r5##J0Gak-sID-rT >re>/\xЩ%>|ʻG-5wߖ F92mNjA=mpԆ?|wӾ3)TJɐ2$f*az=12}'y@ [K E==.vj<6؞`j֩q>kh,o76 2 +Xf$4WXvf;+HT&> o`06YT_uʩn;KziatUwkxyzۿzs;8 +4˧0U:-ɅQq? +NSE: Β\k9[Yo֫7e/T.CbNy>!3JHPLkXB>D* IdP-+d ge5&g6[ F]4 zwh\MyTɜ0msJDskZ2~]~k0bN9]p3, |54Q{sVCEL͜f0ԟU |5^ Q4v~wE( JQG~/2^viPW&!C:cϪ^X_<4 E)/K.oAoYo~rWh #Z@koP ' bEܭ0K +et +(wED-`VoKP arfhr\.5(ިCWzt˪nTMzV !@"IyzdYEg!BSy J92j \ +NDI#gxvG]vl_\'/-,O1FRŪJWR< Li6 RwX~YDGk+P dҝLG^"EC~g {Hy(Q> endobj -227 0 obj << +223 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 602.7474 132.1982 613.2758] /Subtype /Link /A << /S /GoTo /D (chapter.1) >> >> endobj -228 0 obj << +224 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 585.4997 150.1131 594.0645] /Subtype /Link /A << /S /GoTo /D (section.1.1) >> >> endobj -229 0 obj << +225 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 564.6297 156.4611 575.212] /Subtype /Link /A << /S /GoTo /D (section.1.2) >> >> endobj -230 0 obj << +226 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 537.7331 147.4677 546.3786] /Subtype /Link /A << /S /GoTo /D (chapter.2) >> >> endobj -231 0 obj << +227 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [86.8628 516.7914 266.0381 527.3736] +/Rect [86.8628 516.899 252.1763 527.3736] /Subtype /Link /A << /S /GoTo /D (section.2.1) >> >> endobj -232 0 obj << +228 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [86.8628 497.8402 189.5647 508.1086] +/Rect [86.8628 497.8402 172.6274 508.1086] /Subtype /Link /A << /S /GoTo /D (section.2.2) >> >> endobj -233 0 obj << +229 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 478.6738 151.3326 489.0498] /Subtype /Link /A << /S /GoTo /D (section.2.3) >> >> endobj -234 0 obj << +230 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 459.6149 163.3025 469.991] /Subtype /Link /A << /S /GoTo /D (section.2.4) >> >> endobj -235 0 obj << +231 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 440.6638 219.7364 450.9322] /Subtype /Link /A << /S /GoTo /D (subsection.2.4.1) >> >> endobj -236 0 obj << +232 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 421.4973 237.2476 432.0796] /Subtype /Link /A << /S /GoTo /D (subsection.2.4.2) >> >> endobj -237 0 obj << +233 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 402.4385 280.8776 412.8146] /Subtype /Link /A << /S /GoTo /D (subsection.2.4.3) >> >> endobj -238 0 obj << +234 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 383.3797 269.5888 393.7557] /Subtype /Link /A << /S /GoTo /D (subsection.2.4.4) >> >> endobj -239 0 obj << +235 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 366.1322 149.1627 374.697] /Subtype /Link /A << /S /GoTo /D (section.2.5) >> >> endobj -240 0 obj << +236 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 345.3698 245.963 355.8444] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.1) >> >> endobj -241 0 obj << +237 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 326.2033 235.2122 336.5793] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.2) >> >> endobj -242 0 obj << +238 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 308.9558 234.1633 317.5205] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.3) >> >> endobj -243 0 obj << +239 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 288.0857 430.8561 298.668] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.4) >> >> endobj -244 0 obj << +240 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 269.0269 339.714 279.6092] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.5) >> >> endobj -245 0 obj << +241 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 249.9681 361.5826 260.5504] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.6) >> >> endobj -246 0 obj << +242 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 232.7206 273.5162 241.4916] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.7) >> >> endobj -247 0 obj << +243 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 213.6618 279.3982 222.4328] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.8) >> >> endobj -248 0 obj << +244 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 192.7917 278.1965 203.374] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.9) >> >> endobj -249 0 obj << +245 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 173.7329 283.3791 184.3152] /Subtype /Link /A << /S /GoTo /D (subsection.2.5.10) >> >> endobj -250 0 obj << +246 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 154.7818 178.9666 165.0501] /Subtype /Link /A << /S /GoTo /D (section.2.6) >> >> endobj -251 0 obj << +247 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 135.723 264.7471 145.9913] /Subtype /Link /A << /S /GoTo /D (subsection.2.6.1) >> >> endobj -225 0 obj << -/D [223 0 R /XYZ 74.4095 793.4011 null] ->> endobj -226 0 obj << -/D [223 0 R /XYZ 74.4095 634.2859 null] +221 0 obj << +/D [219 0 R /XYZ 74.4095 793.4011 null] >> endobj 222 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> +/D [219 0 R /XYZ 74.4095 634.2859 null] +>> endobj +218 0 obj << +/Font << /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -254 0 obj << -/Length 1990 +250 0 obj << +/Length 1903 /Filter /FlateDecode >> stream -xnFjå&AB$'h$\jY -818{fvqvf%?VI$u0N ƊZ\^tVE~z8eqf_9{y\\ݿsU6~Ow~jPjx ;KBoQ/]r0u.uAW)|P7vr~U͡*w2R4ʄd)3Ic}ŘӐSĉAg 2xчh[M+iR|mvrVզ*7I%gATǑKwGǷct; cKpg8n>N.O Pjw2XෛųݥrcɊ:U&>ֱa lbDsZ ӄb^%p -;0 -eH|ʮSwRdӺ:^]Lx*Rf#Xn#0ܦj04Ȁx&`erIh_zP-bH0`0otS`wjMbz='P$Ciaߕ5 %MEZ C`* ɼIx ]Ė N<*L\} oPm7~*}z -߶l|ڻZhT9mgAI E9JHļLu()*WUtR F6@HPC HvE,K*~68481 Mi"D lݶ([_@ԶK Wmsǿ,/'LaocslY,cۅ1}he;R"[UfUmtU}%]yDZMASt9QhtD u簽î]Ң(-aN"-A<kQ^ZMzbhCr3ɟ4n_!g@df8tnE3D3?'!rA&'z"\*x k082kCZ"idnUՄZw p=,+zhVRk5zcħS1z"sB XnjAy*!uA +4 P~J,hRk>j0I=XR^&$ Sv~22gJLJ/ R(jN75J[U&>q,LSn?+ҧa>g:a6ƺL:/iΟ|kQgvi5feBfdzOKaFnJ=P;ET)u?9yendstream +x[o6)h31"6kf%NkY\-YA/]l-W9WrջMy.XLI! \Xݩ$:m~ *v7Eytc`0Miv *?KA 컪/߫r]nUϕMc*cI1ȜSfI㨽uCb,h؂)DРX|\mdմ&e'M٫fl,kHngaUmrY(L41Np쬾f?F8~;Si4gOzf j-f(W+x\7aKiɌ:UWC$Xn#:ܦՄiBqSRF=2Ee)ē:YമƤo*oe +&T=um/^]$-70El'[Q4g^+$bHDS#z"\C*x $>9pHݪ2ՄZwd8=4+h5z'hcǡWP0 ܍ CZ*c+x4t_j? %J4h>f0zat>ߪщ u|Ijղ^Wu2k*b;#tk1ɡ/),XKGnѨ=p$8A`iZ,_UХ]ԑWi)8^~R.*c KG{IXlFLGE=jH8Aj[XLY]z [i8Hު2>}C`ޓaƢİ0aJ;gv*?3Htvv;Ѝ:]#B*]1F\./NSXO'TXa>e:+2 *?m:aPϢ>̎}AK#X{3n2 n-[sj P}RO)¤EP,MXǁcendstream endobj -253 0 obj << +249 0 obj << /Type /Page -/Contents 254 0 R -/Resources 252 0 R +/Contents 250 0 R +/Resources 248 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R -/Annots [ 259 0 R 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 206 0 R +/Annots [ 255 0 R 256 0 R 257 0 R 258 0 R 259 0 R 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 ] >> endobj -259 0 obj << +255 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 -260 0 obj << +256 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 738.8587 199.1048 749.2347] /Subtype /Link /A << /S /GoTo /D (section.3.1) >> >> endobj -261 0 obj << +257 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 720.9315 216.6336 731.3075] /Subtype /Link /A << /S /GoTo /D (section.3.2) >> >> endobj -262 0 obj << +258 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 703.0042 215.4148 713.3802] /Subtype /Link /A << /S /GoTo /D (subsection.3.2.1) >> >> endobj -263 0 obj << +259 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 685.1846 190.4974 695.453] /Subtype /Link /A << /S /GoTo /D (subsection.3.2.2) >> >> endobj -264 0 obj << +260 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 667.1498 151.3326 677.5258] /Subtype /Link /A << /S /GoTo /D (section.3.3) >> >> endobj -265 0 obj << +261 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [107.4855 649.2225 281.595 659.5985] +/Rect [107.4855 649.2225 265.653 659.5985] /Subtype /Link /A << /S /GoTo /D (subsection.3.3.1) >> >> endobj -266 0 obj << +262 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 631.2953 308.7178 641.6713] /Subtype /Link /A << /S /GoTo /D (subsection.3.3.2) >> >> endobj -267 0 obj << +263 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 613.3681 334.173 623.9503] /Subtype /Link /A << /S /GoTo /D (section.3.4) >> >> endobj -268 0 obj << +264 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 597.252 199.5985 605.8168] /Subtype /Link /A << /S /GoTo /D (subsection.3.4.1) >> >> endobj -269 0 obj << +265 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 577.5136 336.6387 588.0958] /Subtype /Link /A << /S /GoTo /D (subsection.3.4.2) >> >> endobj -270 0 obj << +266 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 561.3976 149.1627 569.9624] /Subtype /Link /A << /S /GoTo /D (section.3.5) >> >> endobj -271 0 obj << +267 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [107.4855 543.4703 291.6013 552.0351] +/Rect [107.4855 543.4703 275.6593 552.0351] /Subtype /Link /A << /S /GoTo /D (subsection.3.5.1) >> >> endobj -272 0 obj << +268 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 523.7319 301.5626 534.1079] /Subtype /Link /A << /S /GoTo /D (subsection.3.5.2) >> >> endobj -273 0 obj << +269 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [107.4855 505.8046 252.6067 516.1807] /Subtype /Link /A << /S /GoTo /D (subsection.3.5.3) >> >> endobj -274 0 obj << +270 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [86.8628 489.6886 125.42 498.4597] +/Rect [86.8628 487.8774 253.8798 498.4597] /Subtype /Link /A << /S /GoTo /D (section.3.6) >> >> endobj -275 0 obj << +271 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 469.9502 235.0054 480.5324] /Subtype /Link /A << /S /GoTo /D (section.3.7) >> >> endobj -276 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [107.4855 452.1306 223.368 462.399] -/Subtype /Link -/A << /S /GoTo /D (subsection.3.7.1) >> ->> endobj -277 0 obj << +272 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [86.8628 435.9069 144.581 444.4717] +/Rect [86.8628 453.8342 144.581 462.399] /Subtype /Link /A << /S /GoTo /D (section.3.8) >> >> endobj -278 0 obj << +273 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [86.8628 416.1685 203.8034 426.5445] +/Rect [86.8628 434.0957 203.8034 444.4717] /Subtype /Link /A << /S /GoTo /D (section.3.9) >> >> endobj -279 0 obj << +274 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [73.4132 391.1578 125.6888 399.8033] +/Rect [73.4132 409.0851 125.6888 417.7306] /Subtype /Link /A << /S /GoTo /D (chapter.4) >> >> endobj -280 0 obj << +275 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [73.4132 362.5203 132.3418 372.7169] +/Rect [73.4132 380.4475 132.3418 390.6442] /Subtype /Link /A << /S /GoTo /D (appendix.A) >> >> endobj -281 0 obj << +276 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [73.4132 337.3706 174.1512 346.0161] +/Rect [73.4132 355.2979 174.1512 363.9433] /Subtype /Link /A << /S /GoTo /D (appendix.B) >> >> endobj -255 0 obj << -/D [253 0 R /XYZ 74.4095 793.4011 null] +251 0 obj << +/D [249 0 R /XYZ 74.4095 793.4011 null] >> endobj -252 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> +248 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -284 0 obj << +279 0 obj << /Length 2387 /Filter /FlateDecode >> @@ -948,214 +933,214 @@ i]hj.( j(xzԺQSs1̨rn-e0T)CB$bdEY `ьGk>j]Dy"3Y 9B݆s~|< |1B507z < x< 8 :9`)ۘߡc401U$-35pz*k8tendstream endobj -283 0 obj << +278 0 obj << /Type /Page -/Contents 284 0 R -/Resources 282 0 R +/Contents 279 0 R +/Resources 277 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 206 0 R +/Annots [ 282 0 R 283 0 R 284 0 R 285 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R 292 0 R 293 0 R 294 0 R 295 0 R 296 0 R 297 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R 304 0 R 305 0 R 306 0 R 307 0 R 308 0 R ] >> endobj -287 0 obj << +282 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 << +283 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 << +284 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 << +285 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 << +286 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 << +287 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 << +288 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 << +289 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 << +290 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 << +291 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 << +292 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 << +293 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 << +294 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 << +295 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 << +296 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 << +297 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 << +298 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 << +299 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 << +300 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 << +301 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 << +302 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 << +303 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 << +304 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 << +305 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 << +306 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 << +307 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 << +308 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] +280 0 obj << +/D [278 0 R /XYZ 74.4095 793.4011 null] >> endobj -286 0 obj << -/D [283 0 R /XYZ 74.4095 639.0049 null] +281 0 obj << +/D [278 0 R /XYZ 74.4095 639.0049 null] >> endobj -282 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> +277 0 obj << +/Font << /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -343 0 obj << +338 0 obj << /Length 813 /Filter /FlateDecode >> @@ -1163,71 +1148,71 @@ stream xn@yYڕΙ,["uUU%.=ƌ<1,$b wab$)bdv ~{vœP~zbZ5JPJ`n.*m1\lʟ/]:ZjBP 'p_T XCr؎rַmNՉf86HˉҲWzSW]0ZH,‹FJI1+ ڴo7BީF|5+F7u,GĬ; YxydRPhLp)1-%G릇 kA37&Βw8ʄUxGmxCCpހiyś?xjsyXlu7G[s6(=aU#pR#> endobj -345 0 obj << +340 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 << +341 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 729.0037 172.9861 739.4783] /Subtype /Link /A << /S /GoTo /D (figure.3.1) >> >> endobj -347 0 obj << +342 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 711.0765 202.2519 721.5511] /Subtype /Link /A << /S /GoTo /D (figure.3.2) >> >> endobj -348 0 obj << +343 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 694.8528 233.9432 703.4176] /Subtype /Link /A << /S /GoTo /D (figure.3.3) >> >> endobj -349 0 obj << +344 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 676.9256 189.7217 685.4904] /Subtype /Link /A << /S /GoTo /D (figure.3.4) >> >> endobj -350 0 obj << +345 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 658.9983 170.4263 667.5631] /Subtype /Link /A << /S /GoTo /D (figure.3.5) >> >> endobj -351 0 obj << +346 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [86.8628 639.3675 254.8524 649.6359] /Subtype /Link /A << /S /GoTo /D (figure.3.6) >> >> endobj -344 0 obj << -/D [342 0 R /XYZ 74.4095 793.4011 null] +339 0 obj << +/D [337 0 R /XYZ 74.4095 793.4011 null] >> endobj -341 0 obj << -/Font << /F61 258 0 R /F28 209 0 R >> +336 0 obj << +/Font << /F61 254 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -362 0 obj << +357 0 obj << /Length 1851 /Filter /FlateDecode >> @@ -1246,158 +1231,158 @@ U2 f ugܟGΨ<g=; L,S(V;ZU4oX-o݇7AjGkgTm{wY_2wZoW{ :Tea'\;  {/Z[ozAF.9L:vF51> endobj -365 0 obj << +360 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 -366 0 obj << +361 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 -367 0 obj << +362 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 -368 0 obj << +363 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 -369 0 obj << +364 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 -370 0 obj << +365 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 -371 0 obj << +366 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 -372 0 obj << +367 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 -373 0 obj << +368 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 -374 0 obj << +369 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 -375 0 obj << +370 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 -376 0 obj << +371 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 -377 0 obj << +372 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 -378 0 obj << +373 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 -379 0 obj << +374 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 -380 0 obj << +375 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 -381 0 obj << +376 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 -382 0 obj << +377 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 -383 0 obj << +378 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 -363 0 obj << -/D [361 0 R /XYZ 74.4095 793.4011 null] +358 0 obj << +/D [356 0 R /XYZ 74.4095 793.4011 null] >> endobj -364 0 obj << -/D [361 0 R /XYZ 74.4095 643.0739 null] +359 0 obj << +/D [356 0 R /XYZ 74.4095 643.0739 null] >> endobj -360 0 obj << -/Font << /F26 206 0 R /F28 209 0 R /F61 258 0 R >> +355 0 obj << +/Font << /F26 202 0 R /F28 205 0 R /F61 254 0 R >> /ProcSet [ /PDF /Text ] >> endobj -405 0 obj << +400 0 obj << /Length 1758 /Filter /FlateDecode >> @@ -1412,35 +1397,35 @@ D /2|ʾGbڠ%"6c]+B?'5y{ %y%S>ZKNCAnȓL)W K4<9s2GNBr{,KqY3R 3_kܸiʵ\yO`6zKiW QبנS2<'G3s96lΕcM|mekYsi, NC {jTI>H;Wqn5chk/}o이,5{zQ$űya bMH =QB3~Gj2iEKN_eK!DqՆ@[Mq\o"ȪuN'+r*8ìvwy煲 ,O~+D巇adT oS";N+/endstream endobj -404 0 obj << +399 0 obj << /Type /Page -/Contents 405 0 R -/Resources 403 0 R +/Contents 400 0 R +/Resources 398 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 352 0 R -/Annots [ 407 0 R ] +/Parent 347 0 R +/Annots [ 402 0 R ] >> endobj -407 0 obj << +402 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 -406 0 obj << -/D [404 0 R /XYZ 74.4095 793.4011 null] +401 0 obj << +/D [399 0 R /XYZ 74.4095 793.4011 null] >> endobj 6 0 obj << -/D [404 0 R /XYZ 74.4095 771.7323 null] +/D [399 0 R /XYZ 74.4095 771.7323 null] >> endobj 10 0 obj << -/D [404 0 R /XYZ 74.4095 570.9064 null] +/D [399 0 R /XYZ 74.4095 570.9064 null] >> endobj -403 0 obj << -/Font << /F26 206 0 R /F28 209 0 R /F61 258 0 R >> +398 0 obj << +/Font << /F26 202 0 R /F28 205 0 R /F61 254 0 R >> /ProcSet [ /PDF /Text ] >> endobj -413 0 obj << +408 0 obj << /Length 1854 /Filter /FlateDecode >> @@ -1453,30 +1438,30 @@ c {*06UMvG}0=ϧz琹ӿuJh3)C@j RӔg:pKr+ʌW={&_ٽ#}1mGD9$= 0:T9 s_S/lkYVim*+(3ZZp7M@4Io)4k蒾2B[Ǯ1b9k %zdC1D6bOS&6βRQ Ky ?lnf2Uu <c<'e(gg,Ybendstream endobj -412 0 obj << +407 0 obj << /Type /Page -/Contents 413 0 R -/Resources 411 0 R +/Contents 408 0 R +/Resources 406 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 352 0 R -/Annots [ 416 0 R ] +/Parent 347 0 R +/Annots [ 411 0 R ] >> endobj -409 0 obj << +404 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 419 0 R +/PTEX.InfoDict 414 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 420 0 R ->>/Font << /R8 421 0 R >> +/R7 415 0 R +>>/Font << /R8 416 0 R >> >> -/Length 422 0 R +/Length 417 0 R /Filter /FlateDecode >> stream @@ -1484,60 +1469,60 @@ x (C!R;}tI6?΃ߏbw'> endobj -420 0 obj +415 0 obj << /Type /ExtGState /OPM 1 >> endobj -421 0 obj +416 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -422 0 obj +417 0 obj 452 endobj -416 0 obj << +411 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 -414 0 obj << -/D [412 0 R /XYZ 74.4095 793.4011 null] +409 0 obj << +/D [407 0 R /XYZ 74.4095 793.4011 null] >> endobj 14 0 obj << -/D [412 0 R /XYZ 74.4095 771.7323 null] +/D [407 0 R /XYZ 74.4095 771.7323 null] >> endobj -415 0 obj << -/D [412 0 R /XYZ 74.4095 659.2541 null] +410 0 obj << +/D [407 0 R /XYZ 74.4095 659.2541 null] >> endobj -314 0 obj << -/D [412 0 R /XYZ 288.3666 523.6815 null] +309 0 obj << +/D [407 0 R /XYZ 288.3666 523.6815 null] >> endobj -417 0 obj << -/D [412 0 R /XYZ 74.4095 396.6881 null] +412 0 obj << +/D [407 0 R /XYZ 74.4095 396.6881 null] >> endobj -418 0 obj << -/D [412 0 R /XYZ 74.4095 235.3536 null] +413 0 obj << +/D [407 0 R /XYZ 74.4095 235.3536 null] >> endobj -411 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im2 409 0 R >> +406 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im2 404 0 R >> /ProcSet [ /PDF /Text ] >> endobj -425 0 obj << +420 0 obj << /Length 1352 /Filter /FlateDecode >> @@ -1551,29 +1536,29 @@ U  #c-ݻЩ ҂φ0ΗX;$q!Lq˝2:϶:؜*se)])ZLAқLPR$}ɒ')@7Xo{I%/ Ova &/3kl ,M F[~7)׹_3ㅏR2v'Jg}#)aendstream endobj -424 0 obj << +419 0 obj << /Type /Page -/Contents 425 0 R -/Resources 423 0 R +/Contents 420 0 R +/Resources 418 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 352 0 R +/Parent 347 0 R >> endobj -410 0 obj << +405 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 428 0 R +/PTEX.InfoDict 423 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 429 0 R ->>/Font << /R8 430 0 R >> +/R7 424 0 R +>>/Font << /R8 425 0 R >> >> -/Length 431 0 R +/Length 426 0 R /Filter /FlateDecode >> stream @@ -1583,44 +1568,44 @@ x Y La- 7pD7[:pHp {-q*YA^6@K  B|jZ%Tp'endstream endobj -428 0 obj +423 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080807174428Z00'00') -/ModDate (D:20080807174428Z00'00') +/CreationDate (D:20080807200528Z00'00') +/ModDate (D:20080807200528Z00'00') >> endobj -429 0 obj +424 0 obj << /Type /ExtGState /OPM 1 >> endobj -430 0 obj +425 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -431 0 obj +426 0 obj 499 endobj -426 0 obj << -/D [424 0 R /XYZ 74.4095 793.4011 null] +421 0 obj << +/D [419 0 R /XYZ 74.4095 793.4011 null] >> endobj -427 0 obj << -/D [424 0 R /XYZ 74.4095 750.3359 null] +422 0 obj << +/D [419 0 R /XYZ 74.4095 750.3359 null] >> endobj -315 0 obj << -/D [424 0 R /XYZ 281.7271 358.4221 null] +310 0 obj << +/D [419 0 R /XYZ 281.7271 358.4221 null] >> endobj -423 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im3 410 0 R >> +418 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im3 405 0 R >> /ProcSet [ /PDF /Text ] >> endobj -434 0 obj << +429 0 obj << /Length 1762 /Filter /FlateDecode >> @@ -1632,53 +1617,53 @@ xڍ CG1zPI.A 0vwXuɈ>V+LK/?**Jg5蝷:M^7gÜ3Y\ܼ+=pPGu:25.-oZ014eaį7`6r b|Fz.7>DE`Pendstream endobj -433 0 obj << +428 0 obj << /Type /Page -/Contents 434 0 R -/Resources 432 0 R +/Contents 429 0 R +/Resources 427 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 352 0 R -/Annots [ 438 0 R ] +/Parent 347 0 R +/Annots [ 433 0 R ] >> endobj -438 0 obj << +433 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 -435 0 obj << -/D [433 0 R /XYZ 74.4095 793.4011 null] ->> endobj -436 0 obj << -/D [433 0 R /XYZ 74.4095 750.7482 null] +430 0 obj << +/D [428 0 R /XYZ 74.4095 793.4011 null] >> endobj -437 0 obj << -/D [433 0 R /XYZ 74.4095 608.3473 null] +431 0 obj << +/D [428 0 R /XYZ 74.4095 750.7482 null] >> endobj 432 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> +/D [428 0 R /XYZ 74.4095 608.3473 null] +>> endobj +427 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -442 0 obj << -/Length 1164 +437 0 obj << +/Length 1160 /Filter /FlateDecode >> stream -xڭWKs6WH͔0ޏⱝI:m%ʁ6a)E9"Uw iJ鴣ŷ -?I$u*1NXd {gRʼnl*OJ2,QR*~]q Q<<i &y(>?/eyƍM9yϱ rq\9MwUn(9}#L8qT0#eGei1ǎ(i1J+9ad)JӛG{|A)o挦yk\ y[ !*aG;0'EQ" i6&~u=,(ad=PNpsu$;R! @ح| 12F +ՇLn6 Ljpٚa\B 3>Nw0YK2а\8mb% Ka{{,bW/~dkHF*& B `M XuTבۦ'%MsdhfȮ"Pӂ CbM8 -`jrUXaڸn0PcEρs#dUWwsu~q=*k>KΡX:fpvWx٢卯w2y>aH#qXgsƂ;6Jˤ'?a~lP؂9Bp{pkһ0cuZ kbc†/PCU]r*7uܗ"ר"2%= ; (\Gވ9O[`r^L ) WnHt|q"7BLp  <2f|,=v;fU?tBMyZUI.E۲롉#םҡJNa>Ze!f1|3]u YhNAYWyAu 9K2$%}!@~[!uȅ .r841Nެ׾&M^A7Oׅ@>BSb 0TA$s1NB .NB00|18ۯ? vl@11 m8D;cax _?>n -BlD4b>endstream +xڭWKs6WH͔0ޏⱝI:m%ʁ6!)E9"Uw iJ鴣 +?I$u*1NXdggRʼnl8*Or2,QR*~]q"yXi &y(>?eyƍM9yϱrw9MUnw9}#L8qT0#eGei1ǎ(i1J+9ad)J|A)o挦km5.y_p <>{A}s~*gPu2_H2J!YfФ֏n0x '8wu$;)u r&F$lk-%@6p頌Q.aF&7[MFR&58 +l0.JRCvF';%ZhS.ʳµRX+ﱬ} +J"+2pamlhUOH~ kZ((i;GK9e/)-!I!3NlA%0F>*7* !LM|jSv[y r.`+tNq k9Wiy ,!88bPq."C_x=(.@>~*<30l7T[%= eghFVCc gzC uIHLiXU|YC.S#K+i;?U&o} D7悝˅pPM.z72AnD)1pujR._k~ǃP+&…O97+T!6y<$u"omY崀tSF`OkDwr L}W]>H?٢1|EP> endobj -439 0 obj << +434 0 obj << /Type /XObject /Subtype /Image /Width 1024 @@ -1700,45 +1685,45 @@ pz t ?y#rϲP{@Z N>:?}?o2k#9uuѣGkLlĝefqSSMp\8G<'G#s_dS!tN杫5_?|BNwW=z4Fٯ x;O[4^qo>lO3Ʃc&*q[(WY/5886qcߓͺ򝏙'O;ί6lnL++*ZZ]zȑ#]>@hKvI+H8]ˈ#sNBNn|Ny: jꚛ<(\E(>(=X8$5WQz8 X:ԾpSki>Xcձȫ+Ty`)sq7i[#~=3ϘӪSϬӊC(X޽{k`A; 0eWte|A9N\ڣg;k_`Aj5.khKG ZQN#M~~ Rs7?_hi>&? ҔpύT5ue4?R8yeSNo9?w:7+d2L&4[AC{s_?@@{~@?@@?_?@??@@?_?@??@?@??@??@?@?@@?@?@?@?@@?_?@@{~@?@@?_?@??@@?_?@??@?@??@??@?@?@@?@?@?@?@@?_?@@{~@?@@?_?@??@@?_?@??@?@??@??@?@?@@?@?@?@?@@?_?@@{~@?@@?_?@??@@?_?@??@?@??@??@?@?@@?@?@?@?@̏7L&d2Lij`0`6endstream endobj -444 0 obj << +439 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 -445 0 obj << +440 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 -446 0 obj << +441 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 -443 0 obj << -/D [441 0 R /XYZ 74.4095 793.4011 null] +438 0 obj << +/D [436 0 R /XYZ 74.4095 793.4011 null] >> endobj 18 0 obj << -/D [441 0 R /XYZ 74.4095 771.7323 null] +/D [436 0 R /XYZ 74.4095 771.7323 null] >> endobj 22 0 obj << -/D [441 0 R /XYZ 74.4095 581.9662 null] +/D [436 0 R /XYZ 74.4095 581.9662 null] >> endobj -316 0 obj << -/D [441 0 R /XYZ 250.8743 253.7308 null] +311 0 obj << +/D [436 0 R /XYZ 250.8743 253.9309 null] >> endobj -440 0 obj << -/Font << /F26 206 0 R /F28 209 0 R /F61 258 0 R >> -/XObject << /Im4 439 0 R >> +435 0 obj << +/Font << /F26 202 0 R /F28 205 0 R /F61 254 0 R >> +/XObject << /Im4 434 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -453 0 obj << +448 0 obj << /Length 1704 /Filter /FlateDecode >> @@ -1751,15 +1736,15 @@ gG 6d p1nD*},f#վCJw]Xl-hpvG =wa7n2zc6h٘"OiĬ{v\WWO[lp: i{Lxܘl|NTtloG2qcCK$?~i2Cf㮣K>%> endobj -448 0 obj << +443 0 obj << /Type /XObject /Subtype /Image /Width 234 @@ -1798,38 +1783,38 @@ ze TzZz`QE^^^RRRH/EzI/EzWl֬Y˗/WFF:wqyK'snڰaٳ.]*_5bwhhhh͚5p7nT sNl߮o޼ِ)jطo [۷ ;;;Uz"ndAhY\Ct-7T Ez vޝ"竮fm2.+Hw"_.Q k3Cd+ 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 -456 0 obj << +451 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 -458 0 obj << +453 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 -454 0 obj << -/D [452 0 R /XYZ 74.4095 793.4011 null] +449 0 obj << +/D [447 0 R /XYZ 74.4095 793.4011 null] >> endobj -455 0 obj << -/D [452 0 R /XYZ 74.4095 752.2837 null] +450 0 obj << +/D [447 0 R /XYZ 74.4095 752.2837 null] >> endobj -317 0 obj << -/D [452 0 R /XYZ 305.5773 401.9113 null] +312 0 obj << +/D [447 0 R /XYZ 305.5773 401.9113 null] >> endobj -457 0 obj << -/D [452 0 R /XYZ 74.4095 184.2476 null] +452 0 obj << +/D [447 0 R /XYZ 74.4095 184.2476 null] >> endobj -451 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im5 448 0 R >> +446 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im5 443 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -461 0 obj << +456 0 obj << /Length 1085 /Filter /FlateDecode >> @@ -1839,14 +1824,14 @@ xڭW 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Ŭm N 9=gMzk8=5րt71 KQq=2si!ܖaR3_\PK\Uv\]f᪟5jHߘƧKO`bW Zz%Z*-KY;Z.zߵ3.:aNu C넉uaQ:SUD-> endobj -449 0 obj << +444 0 obj << /Type /XObject /Subtype /Image /Width 1024 @@ -1918,7 +1903,7 @@ Oo9/ q^/jY?P?o#K ~{^{g~$)*0?Jr=7op˜Nn"x[O:_#?w.^>lz31ƻ,]:L7yL2Smz/@_r s kg-vfz=Eu^||ڿ]1r'o/43-NS%$p?,p')b` wBON wH``endstream endobj -450 0 obj << +445 0 obj << /Type /XObject /Subtype /Image /Width 180 @@ -1946,21 +1931,21 @@ SȈoD\ ٘Zl7Z%lL-6Z!7,7>L")dcjb,>߰ߞ{و|t9T,t)T(«8 {endstream endobj -462 0 obj << -/D [460 0 R /XYZ 74.4095 793.4011 null] +457 0 obj << +/D [455 0 R /XYZ 74.4095 793.4011 null] >> endobj -318 0 obj << -/D [460 0 R /XYZ 286.4299 503.2659 null] +313 0 obj << +/D [455 0 R /XYZ 286.4299 503.2659 null] >> endobj -319 0 obj << -/D [460 0 R /XYZ 266.1839 382.6614 null] +314 0 obj << +/D [455 0 R /XYZ 266.1839 382.6614 null] >> endobj -459 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F35 221 0 R >> -/XObject << /Im6 449 0 R /Im7 450 0 R >> +454 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F35 217 0 R >> +/XObject << /Im6 444 0 R /Im7 445 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -467 0 obj << +462 0 obj << /Length 1296 /Filter /FlateDecode >> @@ -1974,15 +1959,15 @@ xڭWYo jq\ԯMz1EF TNѹ-˭'D| ӏ(eD$ETOڃ`&Bn1=L Ra:*@UrD|S `7 :ur5HX WbLנNX|,[m&q i`9WɈ{U>aV?R~0"ςP UeA%<p˾6MFU4<yW-º X=7be= :0Hpi`R~Otd%/< S2endstream endobj -466 0 obj << +461 0 obj << /Type /Page -/Contents 467 0 R -/Resources 465 0 R +/Contents 462 0 R +/Resources 460 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 447 0 R -/Annots [ 470 0 R ] +/Parent 442 0 R +/Annots [ 465 0 R ] >> endobj -463 0 obj << +458 0 obj << /Type /XObject /Subtype /Image /Width 586 @@ -1997,7 +1982,7 @@ x 7-XW [r7g7U~Zz?ކ[1g bǗsI9ۮ㥧 '&7Wjo_E3/jcOL˺=.cuQ݌1]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ܼqncLsncM݌1ƨ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[Glww݌1Ƙ&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{\d1޻NV3Xfpw#uBImOu蓄4J1tqUI\=0got9MO&#GĞx\瓫&}M;1?&(X}a___ˡ{֊;\݊X\ӌeB~|*y컑J{ӫnF:v[-rtU ߞ 37pm -!tۖQr06RUpuMΉ!r:9s"oh'tZ0P""Bvjx:KP^xi^ʋ/KP^xi^*P^xi^ʋ/PW/KP^x!/ x/@ oendstream endobj -470 0 obj << +465 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 -468 0 obj << -/D [466 0 R /XYZ 74.4095 793.4011 null] +463 0 obj << +/D [461 0 R /XYZ 74.4095 793.4011 null] >> endobj -469 0 obj << -/D [466 0 R /XYZ 74.4095 750.7482 null] +464 0 obj << +/D [461 0 R /XYZ 74.4095 750.7482 null] >> endobj -320 0 obj << -/D [466 0 R /XYZ 221.8999 480.5224 null] +315 0 obj << +/D [461 0 R /XYZ 221.8999 480.5224 null] >> endobj -321 0 obj << -/D [466 0 R /XYZ 255.9892 182.3152 null] +316 0 obj << +/D [461 0 R /XYZ 255.9892 182.3152 null] >> endobj -465 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im8 463 0 R /Im9 464 0 R >> +460 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im8 458 0 R /Im9 459 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -473 0 obj << +468 0 obj << /Length 2254 /Filter /FlateDecode >> @@ -2052,42 +2037,42 @@ xڭYYo c> endobj -475 0 obj << +470 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 -477 0 obj << +472 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 -474 0 obj << -/D [472 0 R /XYZ 74.4095 793.4011 null] ->> endobj -384 0 obj << -/D [472 0 R /XYZ 208.6475 629.4466 null] +469 0 obj << +/D [467 0 R /XYZ 74.4095 793.4011 null] >> endobj -476 0 obj << -/D [472 0 R /XYZ 74.4095 355.9148 null] +379 0 obj << +/D [467 0 R /XYZ 208.6475 629.4466 null] >> endobj 471 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> +/D [467 0 R /XYZ 74.4095 355.9148 null] +>> endobj +466 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -482 0 obj << +477 0 obj << /Length 1303 /Filter /FlateDecode >> @@ -2100,15 +2085,15 @@ O fyZxC8dɹmM۫?c޿XU+p11[u,D e:8"Źi.dff!p Xt!빞e*-dɺu d33y&L6(Ø||I^ؘ0DQn8c`)ƶaK p4Z1׶iՑ{E#l=j/g'{i-<8zNL 2PB> endobj -478 0 obj << +473 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2128,7 +2113,7 @@ x sq2s2Ud0'3_y%S8|Rʱ lL2U*v-o޲l+b~qendstream endobj -479 0 obj << +474 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2151,31 +2136,31 @@ A 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!w򘻔6D*/۰ov9AMYfs3 -{ e/Yq~e[ .Լ"3ڒZiK,|U_r~ojaee\-Z1kpf{/k R.L 0䶽Vf#ڌO^V\_neEſnq+C.ڌ%neECrIW"oV=gD|c[endstream endobj -485 0 obj << +480 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 -483 0 obj << -/D [481 0 R /XYZ 74.4095 793.4011 null] +478 0 obj << +/D [476 0 R /XYZ 74.4095 793.4011 null] >> endobj -484 0 obj << -/D [481 0 R /XYZ 74.4095 752.6311 null] +479 0 obj << +/D [476 0 R /XYZ 74.4095 752.6311 null] >> endobj -322 0 obj << -/D [481 0 R /XYZ 254.5056 542.162 null] +317 0 obj << +/D [476 0 R /XYZ 254.5056 542.162 null] >> endobj -323 0 obj << -/D [481 0 R /XYZ 224.2713 182.8845 null] +318 0 obj << +/D [476 0 R /XYZ 224.2713 182.8845 null] >> endobj -480 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im10 478 0 R /Im11 479 0 R >> +475 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im10 473 0 R /Im11 474 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -490 0 obj << +485 0 obj << /Length 1764 /Filter /FlateDecode >> @@ -2190,15 +2175,15 @@ h rHZH"Xc 7իe#hߎy@#I8HfÄܖ:AtEDP{3HAnxoa2ъ󮏐c83 / v"}5z nwL&? |x2څ$}X/@`Rqb1QautP}t5:-Ro;p/0!;")Iu>ѐ!.ƍNPcKUþ"=hGM( cgUr/紌/ *Hd2ۅP#;ZD'īm‘ 'w Ym!81f0}4qCT**d`/ U{װM{ xˇږ0ΠQ:ҫ۞>X0_Ƕv8xQeW,%셎safR=Q+ .I&?ga m3P3 Fop酓ї ,gm:V~f`@kF. * ymFendstream endobj -489 0 obj << +484 0 obj << /Type /Page -/Contents 490 0 R -/Resources 488 0 R +/Contents 485 0 R +/Resources 483 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 495 0 R -/Annots [ 492 0 R 493 0 R 494 0 R ] +/Parent 490 0 R +/Annots [ 487 0 R 488 0 R 489 0 R ] >> endobj -486 0 obj << +481 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2226,39 +2211,39 @@ O g}(mvy^[/F !Օ\ VZ?endstream endobj -492 0 obj << +487 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 -493 0 obj << +488 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 -494 0 obj << +489 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 -491 0 obj << -/D [489 0 R /XYZ 74.4095 793.4011 null] +486 0 obj << +/D [484 0 R /XYZ 74.4095 793.4011 null] >> endobj -324 0 obj << -/D [489 0 R /XYZ 264.6686 374.7253 null] +319 0 obj << +/D [484 0 R /XYZ 264.6686 374.7253 null] >> endobj -488 0 obj << -/Font << /F61 258 0 R /F28 209 0 R >> -/XObject << /Im12 486 0 R >> +483 0 obj << +/Font << /F61 254 0 R /F28 205 0 R >> +/XObject << /Im12 481 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -499 0 obj << +494 0 obj << /Length 2365 /Filter /FlateDecode >> @@ -2273,18 +2258,17 @@ xڭko UT8DWg2jtEqUXiat)+PU=JQTd؀FӢmQkB6r qd 1C[j]OFo!nѥnTљ9 )[ox}[pXG҄YwVZ\DDQhoC Ѓ2a O0S CTjZz|ҧ R#;E6a@ z lmA*xz7X,aqVU{FƑ#1zל V6;,q6.iC']Q?.%i1f%dP#8*ݩ$qyCn@VkO]C,]kh;z2ΐ!;0BǔpܡoOj"BZ\q4Z`RC|G \wJ`Pbw)=Itܜzң`w= P[u0{f5u;qpf[}Я]OiyRjD?d5N3GJ({V -|: {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Ʒc 0!ZmCw_e1ji}NXv塿ߝ5͕B+zK_I}NJu~ǶЈtc8%' B~6z}ᕰ)$xc/]! ^ +Azȩ'g WJz]9oJx1BfAfH<;n6 |h%?uC1xVvx tPHl#4'nFzQkaqΓ1:%&]χ܂lFO!L"#5k3T1`d]1z E%Լv}uzU`ִ,xbI:~N'EKƷc 0!ZmCw_e1ji}NXv塿ߝ5͕B+zK_I}NJu~ǶЈtc8%' B~6z}ᕰ)$xc/]! ^ +A>rZəV/H#q^fS^h["QDD!Κ 0O]`7-#7Tf;Æ%0=`AZrMW2s,|Yi~їoϦ"TDq nMm=sэWT`IYZO5ilCO6,!墢#P]@qt h F2)1AGd @@S1}5_hrENq08jMeoC1I&"JW8Lf[ {}a_}1j]]Ml |Tj€LN``QnTtոO(8lBt19hrOq 6p9ZN'Ǐ*yJDke"D,k"+7JNE8+.=~ s? b15wbAPE!n []6D{ _QpZ1FzzA?|ňw= _jYxo ydIqX6DLzhendstream endobj -498 0 obj << +493 0 obj << /Type /Page -/Contents 499 0 R -/Resources 497 0 R +/Contents 494 0 R +/Resources 492 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 495 0 R -/Annots [ 502 0 R 503 0 R 504 0 R ] +/Parent 490 0 R +/Annots [ 497 0 R 498 0 R 499 0 R ] >> endobj -487 0 obj << +482 0 obj << /Type /XObject /Subtype /Image /Width 576 @@ -2306,45 +2290,45 @@ I 6޲?%O~/ @_/~@ ~ 8~].I$I<׿E] @_/+xӟ$v/ 1{5ַt-U6Ao]*ߣ`)Qnݾۍw2dU29g'5|b+NP} /wQqVCe&Fߞ9W_*~sumw(x~}9VEGqZۛiPK_կk^~XXh?bE+f5xPj uMЯO+kem~}|G08~-*_*l.'R!Z)툫y&5}/k] !v'(/S7?O-o`40~ }#pemGeu-/ /6֯Jendstream endobj -502 0 obj << +497 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 -503 0 obj << +498 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 -504 0 obj << +499 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 -500 0 obj << -/D [498 0 R /XYZ 74.4095 793.4011 null] +495 0 obj << +/D [493 0 R /XYZ 74.4095 793.4011 null] >> endobj -501 0 obj << -/D [498 0 R /XYZ 74.4095 750.7482 null] +496 0 obj << +/D [493 0 R /XYZ 74.4095 750.7482 null] >> endobj -325 0 obj << -/D [498 0 R /XYZ 298.4805 642.0881 null] +320 0 obj << +/D [493 0 R /XYZ 298.4805 642.0881 null] >> endobj 26 0 obj << -/D [498 0 R /XYZ 74.4095 332.4608 null] +/D [493 0 R /XYZ 74.4095 332.4608 null] >> endobj -497 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im13 487 0 R >> +492 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im13 482 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -507 0 obj << +502 0 obj << /Length 1673 /Filter /FlateDecode >> @@ -2359,15 +2343,15 @@ xg\ SbAdQmhs`Ǘ>P5K@aw >Gd؆LсȽ[#g4GEPeem JZ(M \7he N]_-EUh]$uI`<$Xg!&WDHAdeU5yNXoI@ ":ǮWEA bbzc5׺ԋ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 -506 0 obj << +501 0 obj << /Type /Page -/Contents 507 0 R -/Resources 505 0 R +/Contents 502 0 R +/Resources 500 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 495 0 R -/Annots [ 510 0 R ] +/Parent 490 0 R +/Annots [ 505 0 R ] >> endobj -496 0 obj << +491 0 obj << /Type /XObject /Subtype /Image /Width 1024 @@ -2425,31 +2409,31 @@ Krg lUmîD}[@kii5kiiTk4M4MӴj*)( k[*z73nnSg/?]fGĻ}^|Msn!@J҃c?=2gt*?G~G?~0zOuLK=`_3K`!N8l6lV?EE[endstream endobj -510 0 obj << +505 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 -508 0 obj << -/D [506 0 R /XYZ 74.4095 793.4011 null] +503 0 obj << +/D [501 0 R /XYZ 74.4095 793.4011 null] >> endobj -326 0 obj << -/D [506 0 R /XYZ 265.0857 503.2659 null] +321 0 obj << +/D [501 0 R /XYZ 265.0857 503.2659 null] >> endobj -509 0 obj << -/D [506 0 R /XYZ 74.4095 447.2385 null] +504 0 obj << +/D [501 0 R /XYZ 74.4095 447.2385 null] >> endobj -511 0 obj << -/D [506 0 R /XYZ 74.4095 181.0693 null] +506 0 obj << +/D [501 0 R /XYZ 74.4095 181.0693 null] >> endobj -505 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F26 206 0 R >> -/XObject << /Im14 496 0 R >> +500 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F26 202 0 R >> +/XObject << /Im14 491 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -515 0 obj << +510 0 obj << /Length 1708 /Filter /FlateDecode >> @@ -2461,14 +2445,14 @@ xڭX 2?r=`x+5, Z񈴍 jiF2MonLXQ2J+88i*LX.3eIf/'ڐ-K4Xth`ƀd d~ K\S^˔[> endobj -512 0 obj << +507 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2496,21 +2480,21 @@ r 3S.JܿxkgqV s5TO-JKcU 'ޣׂű*\<(--U)BRԢ8V ~rű*\O-JKcU#H%Qp_=> endobj -327 0 obj << -/D [514 0 R /XYZ 269.0219 441.3597 null] +322 0 obj << +/D [509 0 R /XYZ 269.0219 441.3597 null] >> endobj -517 0 obj << -/D [514 0 R /XYZ 74.4095 312.4026 null] +512 0 obj << +/D [509 0 R /XYZ 74.4095 312.4026 null] >> endobj -513 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F26 206 0 R >> -/XObject << /Im15 512 0 R >> +508 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F26 202 0 R >> +/XObject << /Im15 507 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -520 0 obj << +515 0 obj << /Length 2206 /Filter /FlateDecode >> @@ -2527,30 +2511,30 @@ R?M P2H|Ix,+':?ίXxLQjb~eS"32L"LmI=|U]lё}FUCy?j~˝!D CH$019̦XW7]+8_Ӎ% 6e4c="qhu&c"X\r/ \ 5 _1CW,acĨc-oc? 4z,VB!Sǩwi _uU(?MF7}a=Oendstream endobj -519 0 obj << +514 0 obj << /Type /Page -/Contents 520 0 R -/Resources 518 0 R +/Contents 515 0 R +/Resources 513 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 495 0 R +/Parent 490 0 R >> endobj -521 0 obj << -/D [519 0 R /XYZ 74.4095 793.4011 null] +516 0 obj << +/D [514 0 R /XYZ 74.4095 793.4011 null] >> endobj 30 0 obj << -/D [519 0 R /XYZ 74.4095 704.5199 null] ->> endobj -522 0 obj << -/D [519 0 R /XYZ 74.4095 491.1097 null] +/D [514 0 R /XYZ 74.4095 704.5199 null] >> endobj -523 0 obj << -/D [519 0 R /XYZ 74.4095 270.8578 null] +517 0 obj << +/D [514 0 R /XYZ 74.4095 491.1097 null] >> endobj 518 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F26 206 0 R >> +/D [514 0 R /XYZ 74.4095 270.8578 null] +>> endobj +513 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F26 202 0 R >> /ProcSet [ /PDF /Text ] >> endobj -526 0 obj << +521 0 obj << /Length 2156 /Filter /FlateDecode >> @@ -2563,27 +2547,27 @@ Qf-Wh XotQFygvF,tP>s{*H(d3+u\A'IHV~s k^Вj]5g\P2'>m: Sn>0 H=. W N|̍tLh!;u#WczCl"O< `"$ EW/^kc뮦3I\zۓjdv9,i X=n\49bJݺt-?t6`i]OS92ϑ؏Vrn]mdCLw!<~a+e<@?h _> endobj -527 0 obj << -/D [525 0 R /XYZ 74.4095 793.4011 null] +/Parent 490 0 R >> endobj -528 0 obj << -/D [525 0 R /XYZ 74.4095 493.8957 null] +522 0 obj << +/D [520 0 R /XYZ 74.4095 793.4011 null] >> endobj -529 0 obj << -/D [525 0 R /XYZ 74.4095 307.4495 null] +523 0 obj << +/D [520 0 R /XYZ 74.4095 493.8957 null] >> endobj 524 0 obj << -/Font << /F61 258 0 R /F35 221 0 R /F28 209 0 R /F26 206 0 R >> +/D [520 0 R /XYZ 74.4095 307.4495 null] +>> endobj +519 0 obj << +/Font << /F61 254 0 R /F35 217 0 R /F28 205 0 R /F26 202 0 R >> /ProcSet [ /PDF /Text ] >> endobj -533 0 obj << +528 0 obj << /Length 2361 /Filter /FlateDecode >> @@ -2595,41 +2579,41 @@ U~% [bwcH*UNP+ ]_T3-@:7!J`lt p$;hQNoioO|"a6r}K5ag8uK¯ń$pV6g> endobj -536 0 obj << +531 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 -534 0 obj << -/D [532 0 R /XYZ 74.4095 793.4011 null] +529 0 obj << +/D [527 0 R /XYZ 74.4095 793.4011 null] >> endobj -385 0 obj << -/D [532 0 R /XYZ 228.2749 645.8849 null] +380 0 obj << +/D [527 0 R /XYZ 228.2749 645.8849 null] >> endobj -535 0 obj << -/D [532 0 R /XYZ 74.4095 585.7398 null] +530 0 obj << +/D [527 0 R /XYZ 74.4095 585.7398 null] >> endobj 34 0 obj << -/D [532 0 R /XYZ 74.4095 480.9258 null] +/D [527 0 R /XYZ 74.4095 480.9258 null] >> endobj 38 0 obj << -/D [532 0 R /XYZ 74.4095 320.5086 null] +/D [527 0 R /XYZ 74.4095 320.5086 null] >> endobj -531 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> +526 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -541 0 obj << +536 0 obj << /Length 1678 /Filter /FlateDecode >> @@ -2643,15 +2627,15 @@ T 3( ;s ;›st}ǽnls*lU%f@@7#%u ҚM` J%: IjǬc8$X++. szσƔβx7:OPv޽Ғt~:_\6` Lؽʓɶ[oA}s#\oظp㾰hf,l}Dw{T(yCS:CN!Pr.PئiI$?4Y\O+gxRċt R߱{ B4A؏PH q͝[LɠZO|O@\o{On)+?`we{[VeG5#]gGn ?yۍ7$apeۥ =|Suƥ_uPKְ-R&oXEeȱb vS&\u ᫃μ;yTGw=@p.n|F PKS*Fèx'/r<1Ab]z;.I{πַ>87v<509opmewU!n:A@<'l}g68o EX*oO My|6lٕmg__c4ʭSajz?>=оٜH?YlQyfq}Lv~*ԀF3ru\^B,Oœ[BVaJ V߷ 7Weoô21۶>vѯfxq*7/I A iʫ"O5D2ʩne;Q2}\wru KBlbxKn lr_ }  w}! y*`jyܷ!w$2a)sdQ%z8k!pzrvs4Nh&MXN%f%Kt W@tMp.2\F=W  &KDPOOⶾꂐ4B' v7]8rCsD槅A`pޓ2է7CIiT,br(LXrP)ђG|u7睗!^eB>Yq>e 5J)O d}x݅AalcoR}/M@$U*}R&l]UXaoq9ؓB?/ B Rݯ+3endstream endobj -540 0 obj << +535 0 obj << /Type /Page -/Contents 541 0 R -/Resources 539 0 R +/Contents 536 0 R +/Resources 534 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 537 0 R -/Annots [ 543 0 R ] +/Parent 532 0 R +/Annots [ 538 0 R ] >> endobj -530 0 obj << +525 0 obj << /Type /XObject /Subtype /Image /Width 400 @@ -2730,28 +2714,28 @@ g0N >>+fe?.ɮ7&z/]1=/ڜHTSRjX/sBNv`H_Xzv,y9VHCɶ1iiOc빯HQO|:ncYOH[1NH+}7s斪)WCV]o:ަ2eUo,DjUx{+SRjX/sN@[əSag6:spQƔL1S$4&F^ +^(¡^l)H\#GQ05at󧅳XMi8;]tu¤'V"fbg?>)/]=sqcђeOzL3F&qcqxӁsKzN4F,'?cn̹P˴gӁy5xup mo9t:4jXꓯnDFXim`t1?!V)UA^ +^j`t-.QF^ +^Rw8q҅Dy5xu.%ȫaū涫 IruhհՑ_3']h{ˡKԡWÊWtG?H^QEWEWEQEQyEQ԰EQT8E^QEQEQ#æendstream endobj -543 0 obj << +538 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 -542 0 obj << -/D [540 0 R /XYZ 74.4095 793.4011 null] +537 0 obj << +/D [535 0 R /XYZ 74.4095 793.4011 null] >> endobj -328 0 obj << -/D [540 0 R /XYZ 241.4685 458.3832 null] +323 0 obj << +/D [535 0 R /XYZ 241.4685 458.3832 null] >> endobj 42 0 obj << -/D [540 0 R /XYZ 74.4095 420.171 null] +/D [535 0 R /XYZ 74.4095 420.171 null] >> endobj -539 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F26 206 0 R /F35 221 0 R >> -/XObject << /Im16 530 0 R >> +534 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F26 202 0 R /F35 217 0 R >> +/XObject << /Im16 525 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -546 0 obj << +541 0 obj << /Length 1658 /Filter /FlateDecode >> @@ -2764,14 +2748,14 @@ xڽ Dc&C(ĝSpE-=Q>^ |("Ep 1Z8j1CRG !}q{83!quYC#vCO>h4 lLP"i<*.:Z- Z ,33xǩirL3g1[u0LT;cNB19co`s0@b9xcn8{\m!bp&±z̬Yf\HR/ɁoSxCl#6SZ!d^|Zt[,B{$jan(yqI/^}p׾PUe0\iY8v)  y6%FrFǁYLZGhNF}Ê /\UDjvmY!„;) Kf~Ҷ<9]<ͮhK;Hqv7=A.ͽ+>@ȃkCKK=B=٘}<:ȃK|GV{{+@&]2ߣ"dt(=Z)m7I\"pkiٞlO0_ (/m,^ pd!!͊Å~ H|y6JBF';co;endstream endobj -545 0 obj << +540 0 obj << /Type /Page -/Contents 546 0 R -/Resources 544 0 R +/Contents 541 0 R +/Resources 539 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 537 0 R +/Parent 532 0 R >> endobj -538 0 obj << +533 0 obj << /Type /XObject /Subtype /Image /Width 400 @@ -2887,18 +2871,18 @@ o ^!B^WW!W`tUC;^xsWڥ膮UJ#+-ϯ={رիWK5D ݺgWXq]wھ}. 4[uu77o<~Au늊$m"=*!LHR3<2VL,EWf566VUU .\pUyua]uuuӧOލ7Λ7oʕ).ٌ3tyinjsذafޣzūS8p`Ϟ=A3"̙#"kA#x+]cǎU2HBn@!$?^PP˦GJ.YD|=* ub(y6'1VWi䕬wFaG|ʂZU޽{ĉr/?.QLo+^L+7S*> ^dzUa3AX'X)W B^!B+W!ʬR1ñjO^-S gbūs5$b[֡ŊWy/cuhWy/cuhտ}O^-S gbūk_O^mO'gyW8o0up- gZIB6ͯc豦G}˿] C t&O?c$]SgA ,/}Wi~ޙւ\^~?8Q6Oګ_X8<"xe[nU:e:iAYzk˩znn٠~eϴ~$*.P|~/sΓI޽wڔlJT@[_yu鯖' ?.&gt+(?3Dɗ..恼|mڕ.**<~酑#Gr˭ͧ[U1Aet7(dPz2!*ߏgk<?ax;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}: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 -547 0 obj << -/D [545 0 R /XYZ 74.4095 793.4011 null] +542 0 obj << +/D [540 0 R /XYZ 74.4095 793.4011 null] >> endobj -329 0 obj << -/D [545 0 R /XYZ 226.347 458.3832 null] +324 0 obj << +/D [540 0 R /XYZ 226.347 458.3832 null] >> endobj -544 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F35 221 0 R /F26 206 0 R >> -/XObject << /Im17 538 0 R >> +539 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F35 217 0 R /F26 202 0 R >> +/XObject << /Im17 533 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -550 0 obj << +545 0 obj << /Length 2472 /Filter /FlateDecode >> @@ -2910,24 +2894,24 @@ xڭY_o ZYaP( GT`*jHR.F `* ',HvZǽZ ˽˞T /Ol}Vrmg[䦨{Zo+pa0G. l!A#hOښaGk^n,ZInp&Bljעʚ_h>榨1Db̖>Cpnu3vg W_z!NU%[d}JР[@&40^j0cEƗvɆ5:`LC%plX[q*z X7'I7ϫ#J@2a[ƺu pFkF!o1?!mAD]逐LmVDX;Ma?nv4X4>,v|qg ރN\ITQi ByTr͠JJmQJ8ޖouS@FU\P^NׯecvvqkڛSo݌ܑB!NIpҷAgj`>~|W} 8#6\A @c8(;S+kyFcՇL*M:+Y?(!靹nM=@q'{rU;`0_ Os7sHs嚋'naj9[&[!ߚu/UK͹)`ZA*}m0W-O2"#׻RXʕ n[ -;CLc=U'CۿĪĝO*ʒ">V-e] mOBF7+RɁR(ݯkнbsPDd'(H CWKHO&?endstream endobj -549 0 obj << +544 0 obj << /Type /Page -/Contents 550 0 R -/Resources 548 0 R +/Contents 545 0 R +/Resources 543 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 537 0 R +/Parent 532 0 R >> endobj -551 0 obj << -/D [549 0 R /XYZ 74.4095 793.4011 null] +546 0 obj << +/D [544 0 R /XYZ 74.4095 793.4011 null] >> endobj 46 0 obj << -/D [549 0 R /XYZ 74.4095 240.9316 null] +/D [544 0 R /XYZ 74.4095 240.9316 null] >> endobj -548 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F35 221 0 R /F26 206 0 R >> +543 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F35 217 0 R /F26 202 0 R >> /ProcSet [ /PDF /Text ] >> endobj -554 0 obj << +549 0 obj << /Length 2977 /Filter /FlateDecode >> @@ -2944,21 +2928,21 @@ EV "1I2]P$1wQ'.WkC!nmTk_}0k/]0Y|HvG{]w$r)78Qܮ ,go}ƛg/ԯ}\zkC,374I3icObD̅"Xgxendstream endobj -553 0 obj << +548 0 obj << /Type /Page -/Contents 554 0 R -/Resources 552 0 R +/Contents 549 0 R +/Resources 547 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 537 0 R +/Parent 532 0 R >> endobj -555 0 obj << -/D [553 0 R /XYZ 74.4095 793.4011 null] +550 0 obj << +/D [548 0 R /XYZ 74.4095 793.4011 null] >> endobj -552 0 obj << -/Font << /F61 258 0 R /F35 221 0 R /F26 206 0 R /F28 209 0 R /F67 558 0 R /F71 561 0 R >> +547 0 obj << +/Font << /F61 254 0 R /F35 217 0 R /F26 202 0 R /F28 205 0 R /F67 553 0 R /F71 556 0 R >> /ProcSet [ /PDF /Text ] >> endobj -564 0 obj << +559 0 obj << /Length 2391 /Filter /FlateDecode >> @@ -2979,45 +2963,45 @@ yѡ6 F?8\ڡ6Xu4d( cTJn3N̒H6n7ZD{cX>S2ZU$lg.R=%`S0 #>&LnC'9W r"ƨA0mA%|B0Y5a_ځ=yGڐ"G| uvE7%draݎkј蹺26WDEC)"XK]?DCw?$hvfoq3EEe#)&4 BdxOl&Nendstream endobj -563 0 obj << +558 0 obj << /Type /Page -/Contents 564 0 R -/Resources 562 0 R +/Contents 559 0 R +/Resources 557 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 537 0 R -/Annots [ 569 0 R 570 0 R ] +/Parent 532 0 R +/Annots [ 564 0 R 565 0 R ] >> endobj -569 0 obj << +564 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [305.3601 407.839 324.8009 418.4213] /Subtype /Link /A << /S /GoTo /D (figure.2.14) >> >> endobj -570 0 obj << +565 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [219.4036 389.9118 233.8592 400.494] /Subtype /Link /A << /S /GoTo /D (table.2.3) >> >> endobj -565 0 obj << -/D [563 0 R /XYZ 74.4095 793.4011 null] +560 0 obj << +/D [558 0 R /XYZ 74.4095 793.4011 null] >> endobj -386 0 obj << -/D [563 0 R /XYZ 287.609 530.5247 null] +381 0 obj << +/D [558 0 R /XYZ 287.609 530.5247 null] >> endobj 50 0 obj << -/D [563 0 R /XYZ 74.4095 489.9861 null] +/D [558 0 R /XYZ 74.4095 489.9861 null] >> endobj 54 0 obj << -/D [563 0 R /XYZ 74.4095 346.7481 null] +/D [558 0 R /XYZ 74.4095 346.7481 null] >> endobj -562 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F72 568 0 R >> +557 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F72 563 0 R >> /ProcSet [ /PDF /Text ] >> endobj -573 0 obj << +568 0 obj << /Length 497 /Filter /FlateDecode >> @@ -3025,24 +3009,24 @@ stream xڍSMo0h>6mHE4=CYVU}Im{h8DD&nGb?ζrᓤI<)5I'Zh4c@ 퍏K)A{*ZX0 )Xr.1R%XBmohQU %X -ABc0,0%;"t][2L@}۾\Fa!xDŦkOl,D1KL7F\kj۴ͪf2ptgx1w>![^\6ƙ pM,i0%!:Q5SQjqI1"P.9; SV[4:=)HqIQ]4h[AR8Mu楒8bl }|mk7u<L&]=]L3,,Ȃ Lszu_QOdendstream endobj -572 0 obj << +567 0 obj << /Type /Page -/Contents 573 0 R -/Resources 571 0 R +/Contents 568 0 R +/Resources 566 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 575 0 R +/Parent 570 0 R >> endobj -574 0 obj << -/D [572 0 R /XYZ 74.4095 793.4011 null] +569 0 obj << +/D [567 0 R /XYZ 74.4095 793.4011 null] >> endobj 58 0 obj << -/D [572 0 R /XYZ 74.4095 771.7323 null] +/D [567 0 R /XYZ 74.4095 771.7323 null] >> endobj -571 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> +566 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -580 0 obj << +575 0 obj << /Length 1312 /Filter /FlateDecode >> @@ -3053,15 +3037,15 @@ r @^30R;,kVKqMPvgݪru­\ {\10MyKK&ns&@" HZEF#i ZwH|PCz`u-q_r.+zm Eot1v\q)sI@|"sK nQ>D?ʬendstream endobj -579 0 obj << +574 0 obj << /Type /Page -/Contents 580 0 R -/Resources 578 0 R +/Contents 575 0 R +/Resources 573 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 575 0 R -/Annots [ 582 0 R 583 0 R ] +/Parent 570 0 R +/Annots [ 577 0 R 578 0 R ] >> endobj -576 0 obj << +571 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -3137,7 +3121,7 @@ C *544K/L+Jj!,)JVBrܳgϒ%KI`uժUǎ;~8|HWm]z9(p6'rxxX?ՁAWE ^射IKΟ䰤IQ4o.%- ۶m^BXk_yX`OІ DrD 6iTS WNrr-_<4;~?\pXmٲŃWW!,9R*?)nDIՔyp)1] |XlY."K/I ,X KzX*ݮ{*Q D@XpJ@nr9wt‚Sò,O*%OX ΃Ka~G\}yW^K)%XPJ(lV ~ʕ+ < M,\oI`⋻wN>Pimn6m-+z'UrI+zuɀ%ٳg]64;w.i4!UJk֭̓}&KMWHpS͛e P@sɦ6 auwweQ,?+VHCr6@p̾y9d'VȟԾ9'UjRtU:tP#endstream endobj -577 0 obj << +572 0 obj << /Type /XObject /Subtype /Image /Width 586 @@ -3678,38 +3662,38 @@ Y VR`EN @8R****zeeeذ[@FEOt"'i<12 BJ[qrdffUH"(EvIt;`iHtCC܉'HBQa!'5q:߸~:RE2i<"Q`Ɠ.Ƣ'Fp6f&[nȐo󩱤 Pe:,]3R`*$BiBaYՅ ^ΝjDVWW'A*,kˤ[X,xbE<gR BdLh|||aa*cMJJ lS`-*//ONNF/ M@nȆCdCqJKK ^@JeHWKNNעy!Rɲ-xbRfnDӵf'Ff2dT =U Ǔ^XABendstream endobj -582 0 obj << +577 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 -583 0 obj << +578 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 -581 0 obj << -/D [579 0 R /XYZ 74.4095 793.4011 null] +576 0 obj << +/D [574 0 R /XYZ 74.4095 793.4011 null] >> endobj 62 0 obj << -/D [579 0 R /XYZ 74.4095 771.7323 null] +/D [574 0 R /XYZ 74.4095 771.7323 null] >> endobj -330 0 obj << -/D [579 0 R /XYZ 282.7178 535.1877 null] +325 0 obj << +/D [574 0 R /XYZ 282.7178 535.1877 null] >> endobj -331 0 obj << -/D [579 0 R /XYZ 266.4172 185.9366 null] +326 0 obj << +/D [574 0 R /XYZ 266.4172 185.9366 null] >> endobj -578 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im18 576 0 R /Im19 577 0 R >> +573 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im18 571 0 R /Im19 572 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -586 0 obj << +581 0 obj << /Length 2117 /Filter /FlateDecode >> @@ -3721,42 +3705,42 @@ n d<݉ DF=:f,G䌮>e\MSa.Y}#Qq%!5*e]9ǢpW(qAwBANnh?UVf$ǹX1240%޻Y8Vg.D+cRkcuiG 8M?|:yQaʰ3-]u94ə+*5]Yڙoi_PߺWt=%KK+UZrⵑbRۅQ Ϡ|k_%AZssy$(j# LOivzptT 겱pKoCxEv=$Jˌs;NjMi,rc`,IHMX K_sC⒄u܂ nhLjARy`6sNzM2ҧ)L&w#{3Fvu@L+H'G[oAySۉ͡0V[7Pmg^& pӔ &DqU#B@//Ƞ~s=;mFDNK;4!vuXmth2Z]bELj'/X;z;tZʉOыi1*I*O$nMցa?y#] 23-܎6 s@'wt! MFʮARS>:vdM9 R7o.&@*rGv6ܞ1"ZG[=ḣ}[=w@]b,`5yqaF4'Lxm^d/Ôv^ȀCF {Gv{6M3D U_Q > endobj -588 0 obj << +583 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 -589 0 obj << +584 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 -587 0 obj << -/D [585 0 R /XYZ 74.4095 793.4011 null] +582 0 obj << +/D [580 0 R /XYZ 74.4095 793.4011 null] >> endobj -387 0 obj << -/D [585 0 R /XYZ 249.1572 703.8744 null] +382 0 obj << +/D [580 0 R /XYZ 249.1572 703.8744 null] >> endobj -388 0 obj << -/D [585 0 R /XYZ 232.8565 592.9685 null] +383 0 obj << +/D [580 0 R /XYZ 232.8565 592.9685 null] >> endobj -584 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> +579 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -593 0 obj << +588 0 obj << /Length 1797 /Filter /FlateDecode >> @@ -3775,14 +3759,14 @@ xڽ u"_;wyU竺s f0啯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 h tԷ. mr"6]ɢȫ|>؎uHO Wv)9wpoˇ} h[tmz[CVgZjC(I^k%}ڗC1O0ZhJ@endstream endobj -592 0 obj << +587 0 obj << /Type /Page -/Contents 593 0 R -/Resources 591 0 R +/Contents 588 0 R +/Resources 586 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 575 0 R +/Parent 570 0 R >> endobj -590 0 obj << +585 0 obj << /Type /XObject /Subtype /Image /Width 621 @@ -4055,24 +4039,24 @@ I 痗3ꐓCr* iqA~LM/7npH&9T'O0#8T%'n̡)Lq4+hGGGFFƑ#G9$(s+;;Jj Cii)szb=9T=7r1E(.Ξ=+m]]2:ePĞju[P)̡3s7o> endobj -389 0 obj << -/D [592 0 R /XYZ 249.6817 544.9705 null] +384 0 obj << +/D [587 0 R /XYZ 249.6817 544.9705 null] >> endobj 66 0 obj << -/D [592 0 R /XYZ 74.4095 507.7865 null] +/D [587 0 R /XYZ 74.4095 507.7865 null] >> endobj -332 0 obj << -/D [592 0 R /XYZ 283.2423 270.3205 null] +327 0 obj << +/D [587 0 R /XYZ 283.2423 270.3205 null] >> endobj -591 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im20 590 0 R >> +586 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im20 585 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -597 0 obj << +592 0 obj << /Length 754 /Filter /FlateDecode >> @@ -4084,36 +4068,36 @@ S fpx;m}J(=U4=0 x+ЧK/ֿK&cgW{Ҙ#nBV׵^VdY@y.WT΋Gw "p$7Ɣ^[Jd"yRiJU:/L_AM`GK&撞%@sPIP9A0:Sendstream endobj -596 0 obj << +591 0 obj << /Type /Page -/Contents 597 0 R -/Resources 595 0 R +/Contents 592 0 R +/Resources 590 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 575 0 R -/Annots [ 599 0 R 600 0 R ] +/Parent 570 0 R +/Annots [ 594 0 R 595 0 R ] >> endobj -599 0 obj << +594 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 -600 0 obj << +595 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 -598 0 obj << -/D [596 0 R /XYZ 74.4095 793.4011 null] +593 0 obj << +/D [591 0 R /XYZ 74.4095 793.4011 null] >> endobj -595 0 obj << -/Font << /F61 258 0 R /F28 209 0 R >> +590 0 obj << +/Font << /F61 254 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -604 0 obj << +599 0 obj << /Length 2411 /Filter /FlateDecode >> @@ -4129,15 +4113,15 @@ xڵYK |8"~NtlLPhNluMy8)@b W̷ #6PZ|E+\%N*SLZ9TɎaG㯘 &cyR4%rOKf,Gl_/$W(|LFm0yd:GV89RGGwh>O?G"[ӒX bRGB-n2oL%U\ϤW(P6?bIN$k$ ZlF\"a,Q; %Z|al,w]JP1mBUs9,QAٶ- > z 㟺 lpZtw}mr; 髮<OQL1^R0YHHm0qR"!qx*MhmcLLh$IH.>zXRpnU4!y$@ֆ: ɄY7M\TFdEw(z\dkr5<7>=<#&~kI{ZSH Q цd=LlZ8wG[J鉗)31xNq^Ӫ2 .k^ڷ.FA0nDUF\x}J͕&m-cA9uX)mYCfę#Տ$0\[gD3iL*'ϰ5ϻ5.C?W1+~Bch.xianJ^Y/u+j?CЏi<>$T(4HFscZ!^'^oqntXSѕ$ߋ::)c$1`z؆.#fFīqָ6 |1zOqPGG|<_3C-3z$CƯYXUʣj{h_GqXRiendstream endobj -603 0 obj << +598 0 obj << /Type /Page -/Contents 604 0 R -/Resources 602 0 R +/Contents 599 0 R +/Resources 597 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 575 0 R -/Annots [ 606 0 R 613 0 R 614 0 R ] +/Parent 570 0 R +/Annots [ 601 0 R 608 0 R 609 0 R ] >> endobj -601 0 obj << +596 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -4196,42 +4180,42 @@ G 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:uJ¼yO>-4I*}O"v2p]COO?,W^yEΟ?uVcxR4nOxOX>Ɠ\=ٶmۑ#G2?UV%&j$֮]K.{/k}`*X+;|}2TJ=A2|9Q[X賸,eI1(Ox)%S!)e4fYK]f`a޽v- +ޡ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 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> >> endobj -613 0 obj << +608 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 -614 0 obj << +609 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 -605 0 obj << -/D [603 0 R /XYZ 74.4095 793.4011 null] +600 0 obj << +/D [598 0 R /XYZ 74.4095 793.4011 null] >> endobj 70 0 obj << -/D [603 0 R /XYZ 74.4095 771.7323 null] +/D [598 0 R /XYZ 74.4095 771.7323 null] >> endobj -333 0 obj << -/D [603 0 R /XYZ 243.6967 392.988 null] +328 0 obj << +/D [598 0 R /XYZ 243.6967 392.988 null] >> endobj -602 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F67 558 0 R /F35 221 0 R /F62 609 0 R /F71 561 0 R /F66 612 0 R >> -/XObject << /Im21 601 0 R >> +597 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F67 553 0 R /F35 217 0 R /F62 604 0 R /F71 556 0 R /F66 607 0 R >> +/XObject << /Im21 596 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -617 0 obj << +612 0 obj << /Length 1901 /Filter /FlateDecode >> @@ -4247,27 +4231,27 @@ v ˁUۑdt?R~^+Cdaguk ,a C1 khv;jgmgcQ;YO[&_Zw_a.oZʥgd"3r;j(;fG, 9/endstream endobj -616 0 obj << +611 0 obj << /Type /Page -/Contents 617 0 R -/Resources 615 0 R +/Contents 612 0 R +/Resources 610 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 620 0 R +/Parent 615 0 R >> endobj -618 0 obj << -/D [616 0 R /XYZ 74.4095 793.4011 null] +613 0 obj << +/D [611 0 R /XYZ 74.4095 793.4011 null] >> endobj -390 0 obj << -/D [616 0 R /XYZ 210.136 674.7766 null] +385 0 obj << +/D [611 0 R /XYZ 210.136 674.7766 null] >> endobj -619 0 obj << -/D [616 0 R /XYZ 74.4095 560.9913 null] +614 0 obj << +/D [611 0 R /XYZ 74.4095 560.9913 null] >> endobj -615 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R /F67 558 0 R >> +610 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F35 217 0 R /F67 553 0 R >> /ProcSet [ /PDF /Text ] >> endobj -624 0 obj << +619 0 obj << /Length 2425 /Filter /FlateDecode >> @@ -4282,15 +4266,15 @@ Z f|yQi'U8.KX[s}XwҎ2^FLwM@'hx3CҞPiҜ=B$a3x8H1zJV2͘R]&Mm #A%)MHgۓ7!'HB SjGx'  sS܆_X9FOpO?V69 %lΡ_h`u_I5 S^ +fUl7pc=Z (v(;iy.;9w_XKu4zuG {g8#GfZendstream endobj -623 0 obj << +618 0 obj << /Type /Page -/Contents 624 0 R -/Resources 622 0 R +/Contents 619 0 R +/Resources 617 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 620 0 R -/Annots [ 626 0 R 627 0 R 628 0 R 629 0 R ] +/Parent 615 0 R +/Annots [ 621 0 R 622 0 R 623 0 R 624 0 R ] >> endobj -621 0 obj << +616 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -4386,49 +4370,49 @@ z ?ϻEOIAXgϞ 4 %IXr-SMAXiU8H}$N/Rw-P|"YzR),:::'Ѣ8' Bjfz97X|&xbI;|I.3zR !ZZv@ 'AOHendstream endobj -626 0 obj << +621 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 -627 0 obj << +622 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 -628 0 obj << +623 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 -629 0 obj << +624 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 -625 0 obj << -/D [623 0 R /XYZ 74.4095 793.4011 null] +620 0 obj << +/D [618 0 R /XYZ 74.4095 793.4011 null] >> endobj 74 0 obj << -/D [623 0 R /XYZ 74.4095 771.7323 null] +/D [618 0 R /XYZ 74.4095 771.7323 null] >> endobj -334 0 obj << -/D [623 0 R /XYZ 207.0203 531.8696 null] +329 0 obj << +/D [618 0 R /XYZ 207.0203 531.8696 null] >> endobj -622 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F67 558 0 R /F62 609 0 R /F71 561 0 R /F35 221 0 R /F66 612 0 R >> -/XObject << /Im22 621 0 R >> +617 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F67 553 0 R /F62 604 0 R /F71 556 0 R /F35 217 0 R /F66 607 0 R >> +/XObject << /Im22 616 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -633 0 obj << +628 0 obj << /Length 1749 /Filter /FlateDecode >> @@ -4443,32 +4427,32 @@ I g08&# ,/||Bu&Q]n[ӹw5S|6l %"6 Q+e0xs^zFƕՃBQU,CO2ۊ,:me@b|C_ެ\DBId.Сpɿh˨FLP]BCRoS|0B: 8^ "8Ei#Zg!Ξ09 o?];#DwLͮ懻F! ERvQn=jendstream endobj -632 0 obj << +627 0 obj << /Type /Page -/Contents 633 0 R -/Resources 631 0 R +/Contents 628 0 R +/Resources 626 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 620 0 R -/Annots [ 635 0 R ] +/Parent 615 0 R +/Annots [ 630 0 R ] >> endobj -635 0 obj << +630 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 -634 0 obj << -/D [632 0 R /XYZ 74.4095 793.4011 null] +629 0 obj << +/D [627 0 R /XYZ 74.4095 793.4011 null] >> endobj -391 0 obj << -/D [632 0 R /XYZ 174.4503 602.5475 null] +386 0 obj << +/D [627 0 R /XYZ 174.4503 602.5475 null] >> endobj -631 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F67 558 0 R >> +626 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F67 553 0 R >> /ProcSet [ /PDF /Text ] >> endobj -639 0 obj << +634 0 obj << /Length 2298 /Filter /FlateDecode >> @@ -4480,14 +4464,14 @@ tqe!Ɍ n@+FT r̋jѢr?:BϖHkڎ=XupJ1&6HDNԁMCe$IF! +^A_g*Yͨ?a :i$bq ~tGSm;L!z`@3I,4q:B'xoVǨ6<.7 o+ċz=$yS@Y܈`*48FZj LeG&Y9y)hGC?,19hq)vĒj^$LnC`>.?!jYi&@.3k;ш*TIkx>>q|l eVKKK I".SÆVF:8:%cgC…[w~H4!WMv_s$y(/9#7ňhWIjsN&/+y"-߯3B -P;Fς<W;g?뾲 L>eK4.flXWuuqW)},  cZ;s!DiCݭh:$ׁ~1CSHH3hN[ Tw64z" qU:ij+'2Gƫ\MR2f<[8d4y Х-@B%^B<}ZHc6B1X*UYq{=m>Ny@wo~ Zl;^:"1"{@`K/*K=6t  ηd.wA^ |)I_7z`K{Bc脑;iꦐ8/ Q{b8D&s""C L$NG)H9zf-cE/I%;"K |1 -4ψߩ],v{ŧ3}9es!^bժ+(Oe@_a ^ I'EXZIUþh 3›Ծ?dNa('L(3>K= R/$8^${/7A|ɺ=4"5ʈXǽȻ%; }xa9jwFFˡRwN\V>y*<9zqÅYAY+&~SQ1$( З P=w_kI~ b>> endobj -636 0 obj << +631 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -4599,21 +4583,21 @@ z H8pBhpAuÅXfd`:tƙ zI:4t]I:\׭v 1''G$ +77W,K" ?,'OT<R}6XԟX;'_+?IzTlbF/HFb4V endstream endobj -640 0 obj << -/D [638 0 R /XYZ 74.4095 793.4011 null] +635 0 obj << +/D [633 0 R /XYZ 74.4095 793.4011 null] >> endobj 78 0 obj << -/D [638 0 R /XYZ 74.4095 771.7323 null] +/D [633 0 R /XYZ 74.4095 771.7323 null] >> endobj -335 0 obj << -/D [638 0 R /XYZ 219.5326 530.7468 null] +330 0 obj << +/D [633 0 R /XYZ 219.5326 530.7468 null] >> endobj -637 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F67 558 0 R /F71 561 0 R /F62 609 0 R /F66 612 0 R /F80 643 0 R /F35 221 0 R >> -/XObject << /Im23 636 0 R >> +632 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F67 553 0 R /F71 556 0 R /F62 604 0 R /F66 607 0 R /F80 638 0 R /F35 217 0 R >> +/XObject << /Im23 631 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -646 0 obj << +641 0 obj << /Length 2363 /Filter /FlateDecode >> @@ -4623,42 +4607,42 @@ xڽ]s۸ JJ'@J&, BPAJe{BD P;V=D[V-n/og4FU빘 T6@6|jvrC$_Cݮ1w5UK\hWȜ*F݆"]7/u{j}p3$ ~'g4L7pôo5~r@Ow(]^hĂ[֌iȑxp[eg#Ezh"Ih$zA(ہ[諭H!ޠ$O@҃۫߅폂f=-">G2K2f~Q#1S Ρd8yo1$0,$V:i'V@H (سLRR0B"9??w?A6;Aer2 P-EzhIcHaB s~zOMt=|QZco@,<']LI qU@v dq${tç6|!0tOX}10Yu8xG@CrMTx$/‡n ł$XR,.2pX@h0_cJ|[.E&߇J&Af43T^ʵo^h2w}2=.fU؃|7`V:w)a=R`o?S'ݞ~O5=W'Z{Kߍ3UJfAH XC;"]:hZ\>sI:]pڂUEؿs%"\UU㾷*%=r0}ӑMC#橛r/RϿiT|\}5Mxl|nH>hz.|}b75qwU M$B0IQ%c'a92X,!L$ ;e@}!)=y"p.vY4݀ì?R}W 4&|mzm.9r\X҇y2rw]:m>7VjaP͍rh|c81CHlָyWqT3$ۦMEdB:a^auA`kGĜP]򃀡pu$|Bz0z$n 4T8=!Lx9bd_B8n`CIDk>MC%:q//ˊ\hHeRS{feyo_bn҉X8@ak1__䉯cOBZendstream endobj -645 0 obj << +640 0 obj << /Type /Page -/Contents 646 0 R -/Resources 644 0 R +/Contents 641 0 R +/Resources 639 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 620 0 R -/Annots [ 648 0 R 649 0 R ] +/Parent 615 0 R +/Annots [ 643 0 R 644 0 R ] >> endobj -648 0 obj << +643 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 -649 0 obj << +644 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 -647 0 obj << -/D [645 0 R /XYZ 74.4095 793.4011 null] +642 0 obj << +/D [640 0 R /XYZ 74.4095 793.4011 null] >> endobj -392 0 obj << -/D [645 0 R /XYZ 217.8873 674.9828 null] +387 0 obj << +/D [640 0 R /XYZ 217.8873 674.9828 null] >> endobj -650 0 obj << -/D [645 0 R /XYZ 74.4095 446.4113 null] +645 0 obj << +/D [640 0 R /XYZ 74.4095 446.4113 null] >> endobj -644 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F67 558 0 R /F35 221 0 R >> +639 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F67 553 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -654 0 obj << +649 0 obj << /Length 1934 /Filter /FlateDecode >> @@ -4671,15 +4655,15 @@ xڭ]s ;jk3^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 -653 0 obj << +648 0 obj << /Type /Page -/Contents 654 0 R -/Resources 652 0 R +/Contents 649 0 R +/Resources 647 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 620 0 R -/Annots [ 656 0 R 657 0 R ] +/Parent 615 0 R +/Annots [ 651 0 R 652 0 R ] >> endobj -651 0 obj << +646 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -4779,38 +4763,38 @@ yE8!!! !Lx΍ï*eB–GHdr &~^Ϊz ^%/Ӌ֔'[ba#[K !$d RQxI _ΐC*SJWVkjj2 n#ÇTbh,Hn4VYzYzrrr@Ғa¨jHɺu4뮬BHueݔB |R /ǥD`bÑBDhF&4zj___2-d׮]P]6p||L y +/L U^em,/ QEE` endstream endobj -656 0 obj << +651 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 -657 0 obj << +652 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 -655 0 obj << -/D [653 0 R /XYZ 74.4095 793.4011 null] +650 0 obj << +/D [648 0 R /XYZ 74.4095 793.4011 null] >> endobj 82 0 obj << -/D [653 0 R /XYZ 74.4095 771.7323 null] +/D [648 0 R /XYZ 74.4095 771.7323 null] >> endobj -336 0 obj << -/D [653 0 R /XYZ 263.5658 529.9143 null] +331 0 obj << +/D [648 0 R /XYZ 263.5658 529.9143 null] >> endobj -658 0 obj << -/D [653 0 R /XYZ 74.4095 188.5624 null] +653 0 obj << +/D [648 0 R /XYZ 74.4095 188.5624 null] >> endobj -652 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im24 651 0 R >> +647 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im24 646 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -661 0 obj << +656 0 obj << /Length 1308 /Filter /FlateDecode >> @@ -4820,24 +4804,24 @@ xڽX &$Rk` PA)Rne`\,0eIuK?[-d~55϶˘Gv'_ڞ,0!N F "?AWfKBfCEH q` g@A(:Q0?Qku I~dFsFۭ֒#޵;LDYNNklSM٪lm7ۦ_(V0M&l޼:Xo?MVYi6Mivon uH]V~,B*Zyu bگqiݏ8whOd˪|xo}o~u;! {pMkV,С)Z f d؊aԀsV쵳bV9Pxn+ro)3׍lYQ*u^٥-/|lQBk3BO#ʙ /\fhTg~n!46d)]9!lP}9̟_v{uƐ{WZ#%} Zo(ID1pv+@?p :endstream endobj -660 0 obj << +655 0 obj << /Type /Page -/Contents 661 0 R -/Resources 659 0 R +/Contents 656 0 R +/Resources 654 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 663 0 R +/Parent 658 0 R >> endobj -662 0 obj << -/D [660 0 R /XYZ 74.4095 793.4011 null] +657 0 obj << +/D [655 0 R /XYZ 74.4095 793.4011 null] >> endobj -393 0 obj << -/D [660 0 R /XYZ 232.4978 660.3308 null] +388 0 obj << +/D [655 0 R /XYZ 232.4978 660.3308 null] >> endobj -659 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +654 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -667 0 obj << +662 0 obj << /Length 2155 /Filter /FlateDecode >> @@ -4853,15 +4837,15 @@ Q ]x\D൥]W؄[5ӺXL7gO O.FD*N5Rw<Ld<4b# nf՟e͛<]pxsQczCj ҚT~_1]V<-O4jخV4~M<ۍn98'>\Kz E }_d8< 3S` '"g2m OO:IN`-,$cuEὅ~=ueJl2_BՉ⻗,nz`޶yRiEhtsM<, (ō;?1J[M=GnP GքݞG&1鸏DK s 6p'ocA&6;\c@ ̉#7f]F QL"!򧛞5Hvo > endobj -664 0 obj << +659 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5020,49 +5004,49 @@ q (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 -669 0 obj << +664 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 -670 0 obj << +665 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 -671 0 obj << +666 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 -672 0 obj << +667 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 -668 0 obj << -/D [666 0 R /XYZ 74.4095 793.4011 null] +663 0 obj << +/D [661 0 R /XYZ 74.4095 793.4011 null] >> endobj 86 0 obj << -/D [666 0 R /XYZ 74.4095 771.7323 null] +/D [661 0 R /XYZ 74.4095 771.7323 null] >> endobj -337 0 obj << -/D [666 0 R /XYZ 260.6248 512.7788 null] +332 0 obj << +/D [661 0 R /XYZ 260.6248 512.7788 null] >> endobj -665 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im25 664 0 R >> +660 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im25 659 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -675 0 obj << +670 0 obj << /Length 1722 /Filter /FlateDecode >> @@ -5075,27 +5059,27 @@ n' ,˝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+,yw N Cdu*HIX/(#s*rX&5u3?DQn0y,b䨗uXz-@u<"1,M=q/teY3g9WYUl0V{=9=Aѷ'' vCG3] #8ӆZ'rU;'wms`㹿[OwnOʧqEPYǹWG*&Ãk$ʌP\~FM:HH5f#x >ȡBFk9WŅКW .gҽ.z7\ULļGpKee O~mY}5=0uoJSBπ;uTr; #*endstream endobj -674 0 obj << +669 0 obj << /Type /Page -/Contents 675 0 R -/Resources 673 0 R +/Contents 670 0 R +/Resources 668 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 663 0 R +/Parent 658 0 R >> endobj -676 0 obj << -/D [674 0 R /XYZ 74.4095 793.4011 null] +671 0 obj << +/D [669 0 R /XYZ 74.4095 793.4011 null] >> endobj -394 0 obj << -/D [674 0 R /XYZ 229.5568 689.2224 null] +389 0 obj << +/D [669 0 R /XYZ 229.5568 689.2224 null] >> endobj -677 0 obj << -/D [674 0 R /XYZ 74.4095 633.755 null] +672 0 obj << +/D [669 0 R /XYZ 74.4095 633.755 null] >> endobj -673 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +668 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -680 0 obj << +675 0 obj << /Length 2506 /Filter /FlateDecode >> @@ -5117,24 +5101,24 @@ qB aX94hES82I UmW_Q%R;ljV?DC `Aa:Hͪwl:=au;udVɝ?Xcr4WxO9Ԛ)X">F8DŽi6(%]DCXt!YucJI1'Z&"a '|^&P},X>.[UNuVǔ,☂Ej"~)hN::Hu1%u8!SG$OA'r }pII'h'^z=GE~м֯q[ϽwiG4[yL)8pG؉"vpc&\=)XsES\=)X,R#dE='Q ^tRk&oBv瞆!^_#W3kq-M~^Wb} 7OkWHeZUWSb>ڿYD{8% 77קM}Kł.wf>w|jV3B4ݳ=t :Дr*$=fVySZuC8Gߏnendstream endobj -679 0 obj << +674 0 obj << /Type /Page -/Contents 680 0 R -/Resources 678 0 R +/Contents 675 0 R +/Resources 673 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 663 0 R +/Parent 658 0 R >> endobj -681 0 obj << -/D [679 0 R /XYZ 74.4095 793.4011 null] +676 0 obj << +/D [674 0 R /XYZ 74.4095 793.4011 null] >> endobj -395 0 obj << -/D [679 0 R /XYZ 194.3776 163.7542 null] +390 0 obj << +/D [674 0 R /XYZ 194.3776 163.7542 null] >> endobj -678 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> +673 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -684 0 obj << +679 0 obj << /Length 1680 /Filter /FlateDecode >> @@ -5153,24 +5137,24 @@ x 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 -683 0 obj << +678 0 obj << /Type /Page -/Contents 684 0 R -/Resources 682 0 R +/Contents 679 0 R +/Resources 677 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 663 0 R +/Parent 658 0 R >> endobj -685 0 obj << -/D [683 0 R /XYZ 74.4095 793.4011 null] +680 0 obj << +/D [678 0 R /XYZ 74.4095 793.4011 null] >> endobj -396 0 obj << -/D [683 0 R /XYZ 187.6529 310.8025 null] +391 0 obj << +/D [678 0 R /XYZ 187.6529 310.8025 null] >> endobj -682 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> +677 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -689 0 obj << +684 0 obj << /Length 1778 /Filter /FlateDecode >> @@ -5186,15 +5170,15 @@ Z& nx2'2P꿩t}sWKO|'/z)eyQ*_ &endstream endobj -688 0 obj << +683 0 obj << /Type /Page -/Contents 689 0 R -/Resources 687 0 R +/Contents 684 0 R +/Resources 682 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 663 0 R -/Annots [ 691 0 R 692 0 R ] +/Parent 658 0 R +/Annots [ 686 0 R 687 0 R ] >> endobj -686 0 obj << +681 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5305,35 +5289,35 @@ ml ,` 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~L|"Dεk46!aƁwEX/TI|"?$^XX eEm!I4YN~_fOb,|X?"D,|^Y[OyK m}ə1ŢN$`Jit:YcuvvPY`WBl&w4VT===4{e522B" (a]t evD2bOb1'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,\.WKK 3>gaT2&_4{A$PЭMl6[p@l5:;;K4O@4 =̾(hwgkgZO~,|̩$L)Fb4VM0endstream endobj -691 0 obj << +686 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 -692 0 obj << +687 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 -690 0 obj << -/D [688 0 R /XYZ 74.4095 793.4011 null] +685 0 obj << +/D [683 0 R /XYZ 74.4095 793.4011 null] >> endobj 90 0 obj << -/D [688 0 R /XYZ 74.4095 771.7323 null] +/D [683 0 R /XYZ 74.4095 771.7323 null] >> endobj -338 0 obj << -/D [688 0 R /XYZ 273.2852 532.4193 null] +333 0 obj << +/D [683 0 R /XYZ 273.2852 532.4193 null] >> endobj -687 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im26 686 0 R >> +682 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im26 681 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -696 0 obj << +691 0 obj << /Length 2234 /Filter /FlateDecode >> @@ -5344,15 +5328,15 @@ xڵZKs7 @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/5o k"_=8#U,"߷iŨ,o? CVmE *cAǚ qUyu_Bd~C [PvbEDw4 !Tn*572 T(,r!uendstream endobj -695 0 obj << +690 0 obj << /Type /Page -/Contents 696 0 R -/Resources 694 0 R +/Contents 691 0 R +/Resources 689 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 702 0 R -/Annots [ 698 0 R 699 0 R 700 0 R 701 0 R ] +/Parent 697 0 R +/Annots [ 693 0 R 694 0 R 695 0 R 696 0 R ] >> endobj -693 0 obj << +688 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5448,52 +5432,52 @@ y +9s&fG ұ}"Sh8ic-= eX/Z[[ һV2D=OT>Dc9'Y;(hsLa> >> endobj -699 0 obj << +694 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 -700 0 obj << +695 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 -701 0 obj << +696 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 -697 0 obj << -/D [695 0 R /XYZ 74.4095 793.4011 null] +692 0 obj << +/D [690 0 R /XYZ 74.4095 793.4011 null] >> endobj -397 0 obj << -/D [695 0 R /XYZ 242.2172 588.3079 null] +392 0 obj << +/D [690 0 R /XYZ 242.2172 588.3079 null] >> endobj 94 0 obj << -/D [695 0 R /XYZ 74.4095 553.4796 null] +/D [690 0 R /XYZ 74.4095 553.4796 null] >> endobj -339 0 obj << -/D [695 0 R /XYZ 268.1431 315.7042 null] +334 0 obj << +/D [690 0 R /XYZ 268.1431 315.7042 null] >> endobj -694 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im27 693 0 R >> +689 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im27 688 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -705 0 obj << +700 0 obj << /Length 1744 /Filter /FlateDecode >> @@ -5503,39 +5487,39 @@ x iA:Dk:Juj]S NDX#yd'ʼn}+ /R^ה3 lZk'mc@FpԙxA ģlb@@┾zWlEuMlrxj!1$EiqӂD;AΉG y NvzI|尡H  6<[G7Fendstream endobj -704 0 obj << +699 0 obj << /Type /Page -/Contents 705 0 R -/Resources 703 0 R +/Contents 700 0 R +/Resources 698 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 702 0 R +/Parent 697 0 R >> endobj -706 0 obj << -/D [704 0 R /XYZ 74.4095 793.4011 null] +701 0 obj << +/D [699 0 R /XYZ 74.4095 793.4011 null] >> endobj -398 0 obj << -/D [704 0 R /XYZ 237.0751 660.537 null] +393 0 obj << +/D [699 0 R /XYZ 237.0751 660.537 null] >> endobj -707 0 obj << -/D [704 0 R /XYZ 74.4095 606.2873 null] +702 0 obj << +/D [699 0 R /XYZ 74.4095 606.2873 null] >> endobj -708 0 obj << -/D [704 0 R /XYZ 74.4095 505.5151 null] +703 0 obj << +/D [699 0 R /XYZ 74.4095 505.5151 null] >> endobj -709 0 obj << -/D [704 0 R /XYZ 74.4095 408.5267 null] +704 0 obj << +/D [699 0 R /XYZ 74.4095 408.5267 null] >> endobj -710 0 obj << -/D [704 0 R /XYZ 74.4095 325.6817 null] +705 0 obj << +/D [699 0 R /XYZ 74.4095 325.6817 null] >> endobj -711 0 obj << -/D [704 0 R /XYZ 74.4095 228.6933 null] +706 0 obj << +/D [699 0 R /XYZ 74.4095 228.6933 null] >> endobj -703 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +698 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -714 0 obj << +709 0 obj << /Length 2403 /Filter /FlateDecode >> @@ -5554,24 +5538,24 @@ lsНuqQ L"603xzݯ3O{utWI`W !ւx!wzem)~j"a<'Z t‘bF'Ĕ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  l׽o@Ⱥ \TH=J=:T)ROD$lFS[o2(<@:}feP)yc2O|rY>wsq7AƇpM-u皂60ݤG&pp'|r 鄘f0ޔ5Ctd^Rf5g@]tl@4l圭BsWt?^_ӧ;e4'wOn2E(:Q`L*{\Ɔ8VkEzj}~Y{َܰ=yendstream endobj -713 0 obj << +708 0 obj << /Type /Page -/Contents 714 0 R -/Resources 712 0 R +/Contents 709 0 R +/Resources 707 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 702 0 R +/Parent 697 0 R >> endobj -715 0 obj << -/D [713 0 R /XYZ 74.4095 793.4011 null] +710 0 obj << +/D [708 0 R /XYZ 74.4095 793.4011 null] >> endobj -399 0 obj << -/D [713 0 R /XYZ 201.8959 171.2794 null] +394 0 obj << +/D [708 0 R /XYZ 201.8959 171.2794 null] >> endobj -712 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R >> +707 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -718 0 obj << +713 0 obj << /Length 1608 /Filter /FlateDecode >> @@ -5582,27 +5566,27 @@ JW ; AmDMr4s}[5qJxa1eHyUnj_W'`tnn+䮣,x\k;//=hVkiH_针2Q(!!>˪\\x7ҵBzPpA^!0> ޹>f&^ո}q[]8`kPѣ.Ceg1{2۳\2\җ^+_Aiendstream endobj -717 0 obj << +712 0 obj << /Type /Page -/Contents 718 0 R -/Resources 716 0 R +/Contents 713 0 R +/Resources 711 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 702 0 R +/Parent 697 0 R >> endobj -719 0 obj << -/D [717 0 R /XYZ 74.4095 793.4011 null] +714 0 obj << +/D [712 0 R /XYZ 74.4095 793.4011 null] >> endobj -400 0 obj << -/D [717 0 R /XYZ 195.1712 658.3383 null] +395 0 obj << +/D [712 0 R /XYZ 195.1712 658.3383 null] >> endobj -720 0 obj << -/D [717 0 R /XYZ 74.4095 602.8709 null] +715 0 obj << +/D [712 0 R /XYZ 74.4095 602.8709 null] >> endobj -716 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +711 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -725 0 obj << +720 0 obj << /Length 1805 /Filter /FlateDecode >> @@ -5614,15 +5598,15 @@ c MʇQKi-Z&=!5$W3zn6.`bb(rr6p vrxMAAۉcYVJ.1ܕ)׈jcD`ZV}1 .)OP%)G'1Hj"ƄXdףP wj_cRrсz_=X9̱=ġ/-p`gZh*r8bX"R*VJi;v\eaƪ^ݤ;Viǚ'!HoPW~5FhI(*~WexT_8=廮$wCQ=^"]/c #4#K&ZTTweZ,UΜ&P z%~0ܑ. oJA* K?aU=V".0#}_92 \6p(9m}0[#m/4#M endstream endobj -724 0 obj << +719 0 obj << /Type /Page -/Contents 725 0 R -/Resources 723 0 R +/Contents 720 0 R +/Resources 718 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 702 0 R -/Annots [ 727 0 R ] +/Parent 697 0 R +/Annots [ 722 0 R ] >> endobj -721 0 obj << +716 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5748,31 +5732,31 @@ tq( \y C쉪xɓi:wz*Wu̚Tpšbsb5\t_G9= 6lƌʿ!oeT txt QA@Dp@ޑjpendstream endobj -727 0 obj << +722 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [264.3954 311.9708 283.8362 322.553] /Subtype /Link /A << /S /GoTo /D (figure.2.25) >> >> endobj -726 0 obj << -/D [724 0 R /XYZ 74.4095 793.4011 null] +721 0 obj << +/D [719 0 R /XYZ 74.4095 793.4011 null] >> endobj 98 0 obj << -/D [724 0 R /XYZ 74.4095 771.7323 null] +/D [719 0 R /XYZ 74.4095 771.7323 null] >> endobj 102 0 obj << -/D [724 0 R /XYZ 74.4095 663.3429 null] +/D [719 0 R /XYZ 74.4095 663.3429 null] >> endobj -340 0 obj << -/D [724 0 R /XYZ 292.0113 399.7893 null] +335 0 obj << +/D [719 0 R /XYZ 292.0113 399.7893 null] >> endobj -723 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F67 558 0 R /F71 561 0 R /F62 609 0 R /F66 612 0 R >> -/XObject << /Im28 721 0 R >> +718 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F67 553 0 R /F71 556 0 R /F62 604 0 R /F66 607 0 R >> +/XObject << /Im28 716 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -730 0 obj << +725 0 obj << /Length 2101 /Filter /FlateDecode >> @@ -5793,15 +5777,15 @@ x ȓn{NW:c:c"<Գ(B7?8h ~`? nQuLWWc~\AAnPx:5rɠx:Hp p}ho-0`_&~7xjK)p,!P N8sr/iW0R`h^ם]Io W mm{U}㇡kI " CO\SE[L~" j %-a>-:/= ]Sh{Ԁ(@9mf.i:wv|p|Kg]CHdн^R1}ZA(|0õ|Cx1Ӳ.e{`RBZ2+kPgipEFOk5Ѧ덐\-9葁Ki#l5<9:o7͈xYt>4ci(endstream endobj -729 0 obj << +724 0 obj << /Type /Page -/Contents 730 0 R -/Resources 728 0 R +/Contents 725 0 R +/Resources 723 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 702 0 R -/Annots [ 732 0 R 733 0 R 734 0 R 735 0 R ] +/Parent 697 0 R +/Annots [ 727 0 R 728 0 R 729 0 R 730 0 R ] >> endobj -722 0 obj << +717 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5918,46 +5902,46 @@ zMւ AG㱘NHũiW$ɞ={N_9rD3uᯑ%%%칼<--ܯu̙{KWu}aߢ#<sUQSi/hXfAwmtF"틊UtZdS͊זcvq@X]t+ }njꫯ*X4as9lvUS..bx^<4x:‰'A+++``J̊9U_D|BNרάY|gʏtqyOs:@dt4]]hPĬc^͊.'EI҉/UsxX|U7'լPfpHΰb z5D٫;!x<΋w9zU7bլٱʖ:l4Y1U_N5^|GaAy1> >> endobj -733 0 obj << +728 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 -734 0 obj << +729 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 -735 0 obj << +730 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 -731 0 obj << -/D [729 0 R /XYZ 74.4095 793.4011 null] +726 0 obj << +/D [724 0 R /XYZ 74.4095 793.4011 null] >> endobj -353 0 obj << -/D [729 0 R /XYZ 296.0371 569.5529 null] +348 0 obj << +/D [724 0 R /XYZ 296.0371 569.5529 null] >> endobj -728 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F67 558 0 R /F71 561 0 R /F62 609 0 R >> -/XObject << /Im29 722 0 R >> +723 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F67 553 0 R /F71 556 0 R /F62 604 0 R >> +/XObject << /Im29 717 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -738 0 obj << +733 0 obj << /Length 1971 /Filter /FlateDecode >> @@ -5970,42 +5954,42 @@ k苩Y ;65U dM2X\>gCdf~LZOT#27q:nڪ+>5쓲i֐nD=Os26" .8$xk(vjo5GO^@تEqMW]yiu=q*-ƥs}kԴ_?xP 4~#(5,qzDtFᒹ#aKVO 2@/ƅendstream endobj -737 0 obj << +732 0 obj << /Type /Page -/Contents 738 0 R -/Resources 736 0 R +/Contents 733 0 R +/Resources 731 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 742 0 R -/Annots [ 740 0 R 741 0 R ] +/Parent 737 0 R +/Annots [ 735 0 R 736 0 R ] >> endobj -740 0 obj << +735 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 329.7272 87.8688 340.3095] /Subtype /Link /A << /S /GoTo /D (table.3.1) >> >> endobj -741 0 obj << +736 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [445.869 244.6188 472.3305 253.1835] /Subtype /Link /A << /S /GoTo /D (cite.OOS) >> >> endobj -739 0 obj << -/D [737 0 R /XYZ 74.4095 793.4011 null] +734 0 obj << +/D [732 0 R /XYZ 74.4095 793.4011 null] >> endobj 106 0 obj << -/D [737 0 R /XYZ 74.4095 771.7323 null] +/D [732 0 R /XYZ 74.4095 771.7323 null] >> endobj 110 0 obj << -/D [737 0 R /XYZ 74.4095 314.276 null] +/D [732 0 R /XYZ 74.4095 314.276 null] >> endobj -736 0 obj << -/Font << /F26 206 0 R /F28 209 0 R /F61 258 0 R /F35 221 0 R >> +731 0 obj << +/Font << /F26 202 0 R /F28 205 0 R /F61 254 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -746 0 obj << +741 0 obj << /Length 2283 /Filter /FlateDecode >> @@ -6021,134 +6005,134 @@ w {R i~; vB=P1[endstream endobj -745 0 obj << +740 0 obj << /Type /Page -/Contents 746 0 R -/Resources 744 0 R +/Contents 741 0 R +/Resources 739 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 742 0 R +/Parent 737 0 R >> endobj -747 0 obj << -/D [745 0 R /XYZ 74.4095 793.4011 null] +742 0 obj << +/D [740 0 R /XYZ 74.4095 793.4011 null] >> endobj -401 0 obj << -/D [745 0 R /XYZ 288.8373 559.4163 null] +396 0 obj << +/D [740 0 R /XYZ 288.8373 559.4163 null] >> endobj 114 0 obj << -/D [745 0 R /XYZ 74.4095 235.9504 null] +/D [740 0 R /XYZ 74.4095 235.9504 null] >> endobj -744 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +739 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -751 0 obj << -/Length 2622 +746 0 obj << +/Length 2661 /Filter /FlateDecode >> stream -xڵY_۸ ϧK̚-iMv{Ik++{|/@,vٙ"AZL8I湙+>Y/""OOﭘd,VOn&R&3)LoN~-UәLDp-M\*vu[t&L~xo$gǔ2ml:I>ȑRR%uw$i',MS鏤d"]Y7p -n6uCPFY*" t]ޔ+7}2 NY.SܟR*#?$nܯJpu}[ Ei -6[seT4ƓӨySZn" }ƨu/ź{I"0׆f]{?/MJSE~Ϋ!|pDtNE1gٌY痝7Dg*Ⴤ7Ob< ӋMFlI '{DhJg 9䡍p2# k%ue -^wM=n6U'GHcAw4N51}b~#ᇡ~#oF[f6qa/W!Wbg+d3ګI4c8㊾]]IG2#z%0&(\̗p-b[ ߏwںF;,`Oq!5[ QXJ#H1M6׊On^}~5-ā!b%jj(H!Jt&XO*]G3lLOT.2,ϡ 9%R]hH5Z1%fB`1} pg@eN!yT/c %*~' --kݪbЀb+Oeb=E[nrSUym]wfx\4P\$‚Xg8@lZʖ 70*v>;z]/ywAe qjQ7e&7lR;c3wz@})k".c1%>$zyZ9izC,#I;cv6>F% "Hg<_!YՃ2-c>mjP%6nD0#XBM]cs4Z9vA[=^y)P&wE_+`Jt(cYU qG ,2&Z7LV%^2u2J(?MȾs'VhO:_= g8AJ@A]nZ*MLWCMٹ0xapjQ1#$DZ)zqMx_yMMkc@^,avDV.h1BI*çbIy5} Jn/V*5k1ᯠ0RDX@dO U]s#P Xix8V#r"@ ܨ>)}Q,bRTD\T :ݟ Jnfb 3&6yeȑưP跲㱴1rESe`V#֣GE(W y=t,=*-3k@AQ] ̤6E*<Fzzwy_ 4Fk #j0[V9˔Շ. RS&R&gO༊AW ׏az1^TJ&S*wE>:j'fe.;=!@{Rl1R] MGPB:wTςUՂ4?(e(y;ɞ o5;@(Z/\1oB#h1k=X-Ϳ{X:[~2r> 2[|fov| :p`be;kWel}i5F)|e[7 :xh1;RB6dqR{EGS"*ʰ?Ђ$<)b3,=>=/6P>9[ -+M9c6Ծ .hA"dhYgZzv-VA-;.TG(f{YR7 ۛ0`dDTlՉǐ%];v/$gnZϧ{SÅ2PHT2:eόBLCy2)yXlj}(r{6mTN?!yl%{ݨ8eCUn0]9{a_ˆa\9Cĵ?3zxĖi;x^Q.endstream +xڵY_۸ ϧK̚-iMv{Ik++{|/@,vٙ"A@ZL8I晙$+>Y/"#KOﭘ,VOn&R&S)Lo?+gsSfsmhzTfsaj5Wn[FrZ+LY-&4R),QRGv"8KLfLLƒ$HI&IU +Az#a*UB*R(ظ%f2y=S|͵׋EQRȌRvWV8Ve3Tk$h !4虢% 9OduCvXb.80O3ͧLkjԴςg0BO;Ȏeܘ@n*F+sEɫZouڍbRf0I7N(,\:.5n>K', Y•p)?gLݮ_n06olH7h2=ܩDh'QtnE)Q%F_~M* o_M$V<.߶UG(AZ4|. p^ ᳄#>Ew*IYsMYvYpCt>}Ɂ\PO2}Slb2o;R'/ˠyMNz4ƳXҟI屍pLEWo?/3Cڣi]w;WhS0o˳ g|!eS4$GIPAtb`G-yx`Z_9u}HdH,6Fˑ!ƕ `~4@Y-Ա׾BDe}5шk4M.\AGX14rT[-]. +Ϫp@LUDiy"X=R3  ,K$ϐjԺDf&vk{O'o>|n!*H"5cdPܤ$\u*Xn-]KK}( R s.2,u uTtpC]5ipTHG^+2WYl9P*ę9tU\'"pbb~.X (.BdB}a8|Z zen0Y6#ʿHsNV"A͜R-. @E1X3^"~ [רG葊CHY5uQI[A:c2b󑼞b#|= 4i CBvE=Xh]˴a(1$T6nD0#"5nFޭU:` u ,MmBN)"?_pq/M?GkޢWXǢ,AjiYC/gL} d3x ;48J(?0#惆4?UX_}jVAH!k-5i"XpۺxapzExGc0hsZ:)cC| ݖڐT x8[&fȚApp#|RCĢ*>I踩MwR>6GVF}`f$ ++3va@cXp([QwQ_"0 g6@ff?w7A>o<~z-!ֈ=R] ̤6=y}*1 ݢu;7_Rch=dØm0mWK.'n-NfOyOT 2#NUrTpWn ؉Y; aϼi;PY迁FKb 5Z|$-ׅ#< VHw7‚igQ>PV|w=C>*+ڳpM2ɥ_`!oh2k=X-ͿX9@ FH?lR7 _،M{-w=ojjh~w,?<׬+~K龇HkF@SԶ=0uHKAwjŨA#>XDӾ0*6J@y$IqH~jA2r{uy>:LoʃH;hˍsNuvM^/ݾA԰#oHqbnGa~ + +B9 f^7uBS]1琑%m;v@$cnZ S# O}KӅ2PfHT2BL$}YR)yh(ׇB5I>JMC=c6wE[Ɏ+Ão^qʆVlء:gHvцlؗz†]/ sk+Ėi[x^uĭendstream endobj -750 0 obj << +745 0 obj << /Type /Page -/Contents 751 0 R -/Resources 749 0 R +/Contents 746 0 R +/Resources 744 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 742 0 R -/Annots [ 753 0 R 754 0 R 755 0 R 756 0 R ] +/Parent 737 0 R +/Annots [ 748 0 R 749 0 R 750 0 R 751 0 R ] >> endobj -748 0 obj << +743 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 757 0 R +/PTEX.InfoDict 752 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 272.00000000 160.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 758 0 R ->>/Font << /R8 759 0 R >> +/R7 753 0 R +>>/Font << /R8 754 0 R >> >> -/Length 760 0 R +/Length 755 0 R /Filter /FlateDecode >> stream xSN0W87;"WD\TRM}vy*;=ޙkB%͍n2Rij@)lK݊Ѥ܅NҥamLE9!.۲./`53#h"'e8NEO h% PS)2 5?lYi^D1ԀC 1( !wߕOMXɵEcgⱞZ`8 $Xw%7 b#8(ge׷u_q\Y ^ij]/\ $D*f6mHfm/#+ endstream endobj -757 0 obj +752 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080807174427Z00'00') -/ModDate (D:20080807174427Z00'00') +/CreationDate (D:20080807200527Z00'00') +/ModDate (D:20080807200527Z00'00') >> endobj -758 0 obj +753 0 obj << /Type /ExtGState /OPM 1 >> endobj -759 0 obj +754 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -760 0 obj +755 0 obj 337 endobj -753 0 obj << +748 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [128.8278 724.6017 143.2834 735.184] /Subtype /Link /A << /S /GoTo /D (figure.3.1) >> >> endobj -754 0 obj << +749 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [293.4206 297.4927 312.8614 308.075] /Subtype /Link /A << /S /GoTo /D (figure.2.14) >> >> endobj -755 0 obj << +750 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [120.1496 261.6382 134.6052 272.2205] /Subtype /Link /A << /S /GoTo /D (table.3.2) >> >> endobj -756 0 obj << +751 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [425.2062 261.6382 439.6618 272.2205] /Subtype /Link /A << /S /GoTo /D (table.2.2) >> >> endobj -752 0 obj << -/D [750 0 R /XYZ 74.4095 793.4011 null] +747 0 obj << +/D [745 0 R /XYZ 74.4095 793.4011 null] >> endobj 118 0 obj << -/D [750 0 R /XYZ 74.4095 771.7323 null] +/D [745 0 R /XYZ 74.4095 771.7323 null] >> endobj -354 0 obj << -/D [750 0 R /XYZ 296.9921 496.388 null] +349 0 obj << +/D [745 0 R /XYZ 296.9921 496.388 null] >> endobj -749 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> -/XObject << /Im30 748 0 R >> +744 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F35 217 0 R >> +/XObject << /Im30 743 0 R >> /ProcSet [ /PDF /Text ] >> endobj -763 0 obj << +758 0 obj << /Length 3008 /Filter /FlateDecode >> @@ -6169,24 +6153,24 @@ vr 6ЀD \>M4\k"YyQ*Zؔ!\w^(Th: 4 !0LĚ(߰mڴMW^`*j;T\)wҁ=,P |lVp* >lJo=t3NbtW5-ŠmAs8$D@J6mD I7#(viVj$a$7R&*wUٳCrOx8G_.)n}>9)G,;,iriWyƌy@*e? h=(6 ǡ9`Џ6X:GB|o"B.l>-R75&-H|{}^:qD'Ľ'^׃1˛),V{pUuᧃ.2Ws+>wI y/g[bx!PY +i`IK8xgǽkD/UoM}UYJAH2XjrS!usduN„R;/5Ecu{N?7LrS3AZe@"H(:-ݧ!^hbL`sUC @K6V"iIצ4R'1Xڈ)ݫ>8Cr */75Ze[;;WZ[x6> endobj -764 0 obj << -/D [762 0 R /XYZ 74.4095 793.4011 null] +759 0 obj << +/D [757 0 R /XYZ 74.4095 793.4011 null] >> endobj -402 0 obj << -/D [762 0 R /XYZ 205.0163 645.8849 null] +397 0 obj << +/D [757 0 R /XYZ 205.0163 645.8849 null] >> endobj -761 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F35 221 0 R >> +756 0 obj << +/Font << /F61 254 0 R /F26 202 0 R /F28 205 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -768 0 obj << +763 0 obj << /Length 2104 /Filter /FlateDecode >> @@ -6198,89 +6182,89 @@ xڝX[s۶~ pPa0Yh%=t N87/_RN&' Re d9rU7V ñՠcRb;őj9%KrKe͏xaVInbJ?7eV3ERd h_V(wBf˕y,ľkAh@'{*Wdz Ue S= 2gH6}>_7z捅oApG$@S@!?av=_w,[y7t>'ǟfy@Q0.HnToC4I<*@kx' ZǾ \%%ՑZ0'B$.1xNcL#` X zPm4{$IhU Н}sܯFCތp{ju !tfmFSQB~z"D} @<OR FTaxA6mhx!&GF)~LK a%U2 @̿Z2Eg`) 4GIFՠ?\7XnQ>gҪȀ8:=/w> endobj -765 0 obj << +760 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 771 0 R +/PTEX.InfoDict 766 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 772 0 R ->>/Font << /R8 773 0 R /R9 774 0 R >> +/R7 767 0 R +>>/Font << /R8 768 0 R /R9 769 0 R >> >> -/Length 775 0 R +/Length 770 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!CS86lnNa .,\*^:u1a Ƅh9z)Cbʓ&t:kvx"/T( Tc~~B'"*Xڑj!D4=ivx8YӹN8Xa*u3en/rsǘ..g(yq ثHRc^/eta!sqg˕lY{I㽕v</+2~!D2$kFX IIyBgZ>0?. 2|e}ܹ#"Qendstream endobj -771 0 obj +766 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080807174427Z00'00') -/ModDate (D:20080807174427Z00'00') +/CreationDate (D:20080807200527Z00'00') +/ModDate (D:20080807200527Z00'00') >> endobj -772 0 obj +767 0 obj << /Type /ExtGState /OPM 1 >> endobj -773 0 obj +768 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -774 0 obj +769 0 obj << /BaseFont /Helvetica-Oblique /Type /Font /Subtype /Type1 >> endobj -775 0 obj +770 0 obj 672 endobj -770 0 obj << +765 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [212.6999 235.8688 227.1554 246.4511] /Subtype /Link /A << /S /GoTo /D (figure.3.2) >> >> endobj -769 0 obj << -/D [767 0 R /XYZ 74.4095 793.4011 null] +764 0 obj << +/D [762 0 R /XYZ 74.4095 793.4011 null] >> endobj 122 0 obj << -/D [767 0 R /XYZ 74.4095 568.4832 null] +/D [762 0 R /XYZ 74.4095 568.4832 null] >> endobj -355 0 obj << -/D [767 0 R /XYZ 282.3592 304.7486 null] +350 0 obj << +/D [762 0 R /XYZ 282.3592 304.7486 null] >> endobj -766 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F26 206 0 R >> -/XObject << /Im31 765 0 R >> +761 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F26 202 0 R >> +/XObject << /Im31 760 0 R >> /ProcSet [ /PDF /Text ] >> endobj -779 0 obj << -/Length 2561 +774 0 obj << +/Length 2560 /Filter /FlateDecode >> stream @@ -6288,139 +6272,143 @@ xڽY EUE_):ʂD ,g[۽v^Y3)nj;:󹳨LPLS _m̩sIپ޽wz>خuZ:QgIK_.A23jn:#1ky֨ӥ8>n^F w`UB/AK{ PQɵܲ :O4~ӫZ$J,Oczlae.\NR=Z0.OE94{*Ij Lo+&u";eXIg5~EP P)w$=b8rq̖v$  #O!OZj! a0' QqS`gEMoF"DpZ ekcyob W8Ev5Sʱtʭ{J$o%>@S +ڞ`]Rz\ON6BAs) I0-3jh>gdR`}X}t$vƞm!,W.J%Pp$9|AqEd BHӊdAK_Jd00|N -T6\*O>PO"Wv@Ml=;{ÕKwR&-G\ӍPfO%7kM <l\A8{*n6U~iG[HA_藍DQe P+0IAEЍQѥohPJnƅPzYCcpE_+%R}7LΔHa(3:x0oE]lO ŧ9gEU9P+x<Ǫ6(uqndR(BN)20y,RP0Y!Ɂo"mC~ ~$sQ. d vL\lXO׻/vSbnI -s?ɠMeJU|ߗH-跥 -#g\Fb[y IFd'_w4E6[rpIה=Ԅ{ -?;*3Q#I]RNG ʳP2<[(ot=m$FmњZ3'J -~{R,0G{(m"v,)f>l 2w!n|Wv.ݩĉC8=&j'!sQ{8 :[(˹@HsvfmHŌ1y 79 -hhz;HLr) **wG!N[Uj q,\$0}ku3a2,m\xL 1NXwH.-FzKv=D,[9!T/@A]KCh϶!ea#X4@{)`s]!c\sJi<k|o_I 4R'B=[ǞlēeiYYʮf,p=X9r1o(^$(|Lendstream -endobj -778 0 obj << +T6\*O>PO"W{!?kklz~ǬnI}*ʤX%rQ +,}X ~GsN34͆v/-@`` Bɔ 4( +,3Q +~&)!!*z J)*Z/kgwsپ}I<y8s<"`F/\:7`cc_24լJ$3\F`q.# VjC_)EfC5ڻf#EVj^9&78M:Ѽmo/;m`{.jХ`L p}IznJ#QCq' X<U*0Ȧ05wK.3Ґ:p"R#G~ @1j$kX*(SyJ[ evT5-`3_ՖĨ-ZBVkDI|kO|shZ،~!W>ފp]å3;8Qcd_$~.j'QXG[˹@HsvfmHŌ1y +7'fu;HLr{) )w(G!N;T q,\$T0}bu3a2,m\xL 1NXw6.->EzKv4D,[9!Tⸯ;A]Cʶ!Aa#W4@{)`s]m!c\sIix$;gB( ԉ'`ֱg9O4R*,癸^f^&a/<5PrgΏ9İI9=(Gse\q?A#%>$)∰G#@jK#XT"`_炤*jn9u{ +T9'uN.&yh};|49vǍ+_[/ql ] I̓zspflΗ^@k-3v6<=;XHS>yΙ ௤vۧ9C.׶&&Ym۝5'!D) )_s]J%oZgv:m\=x3>P5$aYgG#`nV \2iιF) +k5ſ_9endstream +endobj +773 0 obj << /Type /Page -/Contents 779 0 R -/Resources 777 0 R +/Contents 774 0 R +/Resources 772 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 742 0 R -/Annots [ 781 0 R 782 0 R ] +/Parent 737 0 R +/Annots [ 776 0 R 777 0 R ] >> endobj -781 0 obj << +776 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [73.4132 640.9187 92.854 651.5009] /Subtype /Link /A << /S /GoTo /D (figure.2.13) >> >> endobj -782 0 obj << +777 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [331.9551 255.445 346.4106 266.0272] /Subtype /Link /A << /S /GoTo /D (figure.3.3) >> >> endobj -780 0 obj << -/D [778 0 R /XYZ 74.4095 793.4011 null] +775 0 obj << +/D [773 0 R /XYZ 74.4095 793.4011 null] >> endobj 126 0 obj << -/D [778 0 R /XYZ 74.4095 544.7876 null] +/D [773 0 R /XYZ 74.4095 544.7876 null] >> endobj 130 0 obj << -/D [778 0 R /XYZ 74.4095 497.4801 null] +/D [773 0 R /XYZ 74.4095 497.4801 null] >> endobj -783 0 obj << -/D [778 0 R /XYZ 74.4095 253.1542 null] +778 0 obj << +/D [773 0 R /XYZ 74.4095 253.1542 null] >> endobj -777 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F26 206 0 R /F35 221 0 R >> +772 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F26 202 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -786 0 obj << +781 0 obj << /Length 1730 /Filter /FlateDecode >> stream -xڍXKs6WHu,ăiҦR@I"Jf뻋(Jf㾰X(| d -\r{~~c{|}Y' *BWgj6ih6W7F[]Fy]]~Я8$?gI$UsGIcG8ʲ<LGAEI.1 ߆Vহr|4c29e͜ɈLU<̳ql@a| S0t."zwE$EuZQor" mda4,ԽFSrE(cYJ==,>*L~.TW"42"!_C"riN$4"Năy [ţ\e$%d#QDZX؉J:Uy:&0PDMc.}RO,s{q_x B W&Hg҄m)ku͹qi3[,]UMKt4-j)Ihs}Uv5] Lz_mSv,)!Wn~"I* 'A¯̅5l2ĐJq ʓ|/}dqzHRأNf!#Suzea>9'21"dPR؟ sTǪp;WbۡK]u(c8er*lQzEyV(RcwtG/2(WH"eW :JMh8MUD76EQ~c=;:뙋̏ӾqۻUȹl=VWY'Gi#u4a@$.IN잁8v+@ @xHY5uzr|wy00z-ٔu4x4psG T3h׻v bVWufW;xj'ځއ;dҰoebx$V9ȋMaYiSE h%'m? xX(7yr -%FxQҼy* &N)y.Öc* -gZ| S/7%]kۺ%䦨WDӈ3EAd f *aiͭ-&G4ۅwd+6\ee8M.0y -gphcP ldGsO?0nŦr@ 2vEq]΀Ȯc&۪#&R7 ?1ޮ /ҿ_\OB/ dD"xÃ_c{U-<|,1cV{NսVb.qq{?؏9 $?l%A'a$Y:vR" Lf Iao R&HiX6l;˅eXi e1iY<ϜE)ʀ 8Vl^!W*0u6"xwE$A8Iʉ6e8ֿgr(2arqZ_$t$>5IV|_3*4L̫dDH4KgSrBȉ2#@J|r:?8}%0V3(:dNM&7I{Q`y5sF1lߡd/ :#RP5tz%**E2eN;\hj|m;âWyߴy?ڠ(rOrݢ'tQ-^ ΋طUP/tzW mSݸ:'E +M~/wz[i(D ' ,X`A^cna2u# \Z N\O݇US1o8g(@89  { X坣;h:{ZIƀ^- 1yiT1^` ¢݅*TCp(.R6eT(eOXbܨp[zBl, KIKXű,Zu^ z:e%KE10a +&k\cod#3Ƴ.vgJH2u~-v(H_7PғP TeeLQ#E.ʳEyl}./?j4j aja,rw判+Gdo%.i_ ÇҀZYzkAZXo{{iZ;:jT綡fxk0@p)Zzʟ;B C^**1EiP`^ k_L"SpH 9;SE1Ķ8q%}]*IE7nX&5鈙;XTsJٜE^;Q=MרGg|:0ymbl iIt&& 8= 3%qQ:r'xIU :lz.uOz. ?mLcxXO8LѝK|wt@5wx#jotع6Ƚډ6pgnN \1<L Grhe@F^lJ\euIߍZoSÀՌzm{so)Ԭ }ƈՎ;[o0q?L/(]P7F!l8iqSBL뎠&y]M#=V9E*GUh[iZrM$iv+]&`kxZp +-]`d +whQ ldGsO`mE x.@d@Z̀Ȭk +b'۪#"R;71"RIYš{.|UEO;;!tMwc +EjTg3{zgYܿF3endstream endobj -785 0 obj << +780 0 obj << /Type /Page -/Contents 786 0 R -/Resources 784 0 R +/Contents 781 0 R +/Resources 779 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 789 0 R +/Parent 784 0 R >> endobj -776 0 obj << +771 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 790 0 R +/PTEX.InfoDict 785 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] -/BBox [0.00000000 0.00000000 552.00000000 392.00000000] +/BBox [0.00000000 0.00000000 544.00000000 374.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 791 0 R ->>/Font << /R8 792 0 R /R9 793 0 R >> +/R7 786 0 R +>>/Font << /R8 787 0 R /R9 788 0 R >> >> -/Length 794 0 R +/Length 789 0 R /Filter /FlateDecode >> stream -xWo6_{!RTQ؊`(mlك(Je/׏w)l$]x;_ fnۊl#3n!%emVR2ÏrbWP䗵X?8#Ru_\xxYo-dޙtUHn\a)K d$p p$&A/r3n"2$iq49g)EpX.Upp) zwN",ћa~^yf71P\oͶ58vTe ZD:>NU#}8O|O(=Cc<70,>Xަst Xq 2|Z'j]ۛ @ @ĥw _Di!T,)U )ϥ!57o6MBp(k7H$w?/{'DksTتĹ/wW4٘5cB -tTC[GHĆsAfvsM۝1+PM.=֐jV`q3ލcQ^bFOXYW%eݶ܎Y@'p vsQ\ -uXa-Dɸdg0(Ä ԥ=Z -]k'ms:K]anvݿӞtמ@<&KK  Q1Dɒ6a^a>apP$fٝyw߼󒇑Wi$$!M.𦩄{{t8jĒwP0}ڲ p57T\J'aj9F Uk(ϯ-rcao@ʊix8r &,8$vV]0?of8&gMaװ)b^:ZYJƓz:;?(&[hBE*9& =t⴨HgD#ᜠhGت +M{TGX 2w@ }";)ͦ꾂v'Bi2``BЋ>]` ?ioi03pr 2tUcfxqh}LXjfVV _fC,0*tfWXQ3YP50KxuTX4,8쭠IO a3`tq#S.:ɢ4iU<ҡ),P*8<^TX(qluΚpk(_m=vwKq>c(!zɆYaPwTEaCљY:k1^B6SwGyv>c$1iq&*j,$!Yjӱu ovl+(7M1h_7k;!>g `eRɯWt_Ͼ7cgC B!$$q ,":T/qf~wJ8CkGȪ'WIl4v9ns,t' eTgaA(Bx.P}Xendstream endobj -790 0 obj +785 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080807174428Z00'00') -/ModDate (D:20080807174428Z00'00') +/CreationDate (D:20080807200528Z00'00') +/ModDate (D:20080807200528Z00'00') >> endobj -791 0 obj +786 0 obj << /Type /ExtGState /OPM 1 >> endobj -792 0 obj +787 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -793 0 obj +788 0 obj << /BaseFont /Helvetica-Oblique /Type /Font /Subtype /Type1 >> endobj -794 0 obj -1213 +789 0 obj +1167 endobj -787 0 obj << -/D [785 0 R /XYZ 74.4095 793.4011 null] +782 0 obj << +/D [780 0 R /XYZ 74.4095 793.4011 null] >> endobj -356 0 obj << -/D [785 0 R /XYZ 266.5136 490.0154 null] +351 0 obj << +/D [780 0 R /XYZ 266.5136 498.6761 null] >> endobj -788 0 obj << -/D [785 0 R /XYZ 74.4095 452.5958 null] +783 0 obj << +/D [780 0 R /XYZ 74.4095 460.5271 null] >> endobj -784 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F35 221 0 R >> -/XObject << /Im32 776 0 R >> +779 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F35 217 0 R >> +/XObject << /Im32 771 0 R >> /ProcSet [ /PDF /Text ] >> endobj -797 0 obj << +792 0 obj << /Length 2544 /Filter /FlateDecode >> @@ -6440,71 +6428,65 @@ E /j\C?3ߣsSdD =|ֽЯoU;gLp9)"pe,QFw83ZnK<We!&/dendstream endobj -796 0 obj << +791 0 obj << /Type /Page -/Contents 797 0 R -/Resources 795 0 R +/Contents 792 0 R +/Resources 790 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 789 0 R -/Annots [ 800 0 R ] +/Parent 784 0 R +/Annots [ 795 0 R ] >> endobj -800 0 obj << +795 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [451.4247 636.5654 465.8802 647.1477] /Subtype /Link /A << /S /GoTo /D (figure.3.3) >> >> endobj -798 0 obj << -/D [796 0 R /XYZ 74.4095 793.4011 null] +793 0 obj << +/D [791 0 R /XYZ 74.4095 793.4011 null] >> endobj -799 0 obj << -/D [796 0 R /XYZ 74.4095 687.9652 null] +794 0 obj << +/D [791 0 R /XYZ 74.4095 687.9652 null] >> endobj -795 0 obj << -/Font << /F61 258 0 R /F35 221 0 R /F28 209 0 R >> +790 0 obj << +/Font << /F61 254 0 R /F35 217 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -803 0 obj << -/Length 2172 +798 0 obj << +/Length 2219 /Filter /FlateDecode >> stream -xڭXs6_GB)mδ%cԉTruISvg,{?@,8EjB,6 (`p+ORu{ZGۻE( P}ٙj -$lRߔ&wLݕ\ bۋ^ -9KQYtXIt(!I*eqIR-`R!ڔ -D2YdhG.⩒ih1H'z,uHA8R2AUn+;,MwyQPf<#WCMU?i[⳧ hԋ7a2 j@p'J=MnH9몣%R;’BiU/`%bXSu٢I`֦CSSemhnC>A\'7-weGh3zlK;{F|^y(l܁_ꙸ'{6OI=}*L܇Rq9y& -I8̱O`:IXD}"`(D`,6Nw"bTm:غ 5Nmu9#*L392 -5ĈImM/dC._Ӧ*1ωAs -G)SgP£yu#W&Ai -=H -iq0̈f@_c'XkvF,iQAlԸl񨮨7L}RG; C$qT6pidkӖCwITd)|CmuRhhOI|Y= EW'H-BcRCNBq=|j|6H権[_NR !Ś@8~@f_cT<;7.+6nrz ]?\ ͩB0{;>Mvƴ$1&֌x$(1';tƜ /% IBH1!vg#kUSso -i|;gU|mQQQtM^ - V|8$ړh~& Kn0)18{Eԣ33I?w CHPƩ)ogo2n!.~/ro/Q |p&4\.27S]\s94Ryf37t[ 3i ##oWM)_9S -tS"2 4gX GLzNW>#aJ koh{4N,îh"w+wNHD"L1How P$MٙLF X+* +X !V_ïGSw{Pba[R1?ʼnm6=?=ŹԴq?Tzz#woo.nY ! T6RЗɘzA%(A%VBD)uJ2T#\$bz{t#z|ĐQLo=Ͻܮ72R/7/oׂ{鶿ėW氖#WG MV?Vw9 T~h/{ZzO%ԹӮVj'utZE%jwXhҋ;} R9'! +%g* +I7:a(.ip$`cQ@ Tnz c*t{KlBփMr_MA1HĹ8|KgQ(B{[fV/BgKW,:TO@\N?yӏn]ɭ{:?R@}%$_@7@@"ݸsS*˦ MB쓾G K4XӺ+1ǐ RS<;&|6~(Nl!DU|q,U٘A!aFa[ӕJfWφ#žz&GTO#{6[τq8F,GM#rMcBFQ|F.>a1DkƲE,)i&,&5y(Ĩ U`jXQ!bOC5g})FT,gbdLe# 41S714K_2| eM*Gx +L!9)3HIwaF$ cմUZ ѶiJXDbCNr +{li,~i6ڿvO$`Ob{6`ߨi5!NO~B1 Cۢ M$o- +@{ CAjLwe_-|%]$ڕkQM[ęu9\ĎxsB[=YLӾeh{9z۠61.l`c// > Z~`d˚zD31; r FwHd`bYj}V%Ovg y+Aqqi-H<D{2uN ;Y ,C{E0{яB变Rݘs)Ɵ62n W97( {aLuq+G**Tȃ/'P^ +ʳ1LJ\endstream endobj -802 0 obj << +797 0 obj << /Type /Page -/Contents 803 0 R -/Resources 801 0 R +/Contents 798 0 R +/Resources 796 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 789 0 R +/Parent 784 0 R >> endobj -804 0 obj << -/D [802 0 R /XYZ 74.4095 793.4011 null] +799 0 obj << +/D [797 0 R /XYZ 74.4095 793.4011 null] >> endobj 134 0 obj << -/D [802 0 R /XYZ 74.4095 581.3795 null] +/D [797 0 R /XYZ 74.4095 581.3795 null] >> endobj -801 0 obj << -/Font << /F61 258 0 R /F35 221 0 R /F28 209 0 R /F26 206 0 R /F83 807 0 R >> +796 0 obj << +/Font << /F61 254 0 R /F35 217 0 R /F28 205 0 R /F26 202 0 R /F83 802 0 R >> /ProcSet [ /PDF /Text ] >> endobj -811 0 obj << +806 0 obj << /Length 1847 /Filter /FlateDecode >> @@ -6521,30 +6503,30 @@ Y\Sg =bPxâv;Z\t_Ў>a;rtK*|dC \q21e(*zT(|mAt@t>Wjў?} ngSP׿"ذV SsRɅ3zƸEu&'x;Zdi@BYX݂L!qM qϞlp HOmY/ <6f xpu> endobj -808 0 obj << +803 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 815 0 R +/PTEX.InfoDict 810 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 816 0 R ->>/Font << /R8 817 0 R >> +/R7 811 0 R +>>/Font << /R8 812 0 R >> >> -/Length 818 0 R +/Length 813 0 R /Filter /FlateDecode >> stream @@ -6552,61 +6534,61 @@ x _2Y [;^xvQn׬|uY2AI Ne#9I("v[XTcK} )yb0X6UpItߌH Nshi'vJq@B'TE41Uyϐ/.MdZD-=TAL9LFmfodZͦ|DgTx=b'7$ownB1 mRϺ~}>mﺚWO!,݇ߟ̦X|>Sġ˿BO2i7G#Jendstream endobj -815 0 obj +810 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080807174429Z00'00') -/ModDate (D:20080807174429Z00'00') +/CreationDate (D:20080807200528Z00'00') +/ModDate (D:20080807200528Z00'00') >> endobj -816 0 obj +811 0 obj << /Type /ExtGState /OPM 1 >> endobj -817 0 obj +812 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -818 0 obj +813 0 obj 402 endobj -813 0 obj << +808 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [219.366 475.7876 233.8216 486.3698] /Subtype /Link /A << /S /GoTo /D (figure.3.4) >> >> endobj -814 0 obj << +809 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [131.707 250.4016 146.1626 260.9839] /Subtype /Link /A << /S /GoTo /D (figure.3.5) >> >> endobj -812 0 obj << -/D [810 0 R /XYZ 74.4095 793.4011 null] +807 0 obj << +/D [805 0 R /XYZ 74.4095 793.4011 null] >> endobj 138 0 obj << -/D [810 0 R /XYZ 74.4095 585.6489 null] +/D [805 0 R /XYZ 74.4095 585.6489 null] >> endobj 142 0 obj << -/D [810 0 R /XYZ 74.4095 537.5677 null] +/D [805 0 R /XYZ 74.4095 537.5677 null] >> endobj -357 0 obj << -/D [810 0 R /XYZ 288.6243 296.6634 null] +352 0 obj << +/D [805 0 R /XYZ 288.6243 296.6634 null] >> endobj -809 0 obj << -/Font << /F61 258 0 R /F83 807 0 R /F26 206 0 R /F28 209 0 R >> -/XObject << /Im33 808 0 R >> +804 0 obj << +/Font << /F61 254 0 R /F83 802 0 R /F26 202 0 R /F28 205 0 R >> +/XObject << /Im33 803 0 R >> /ProcSet [ /PDF /Text ] >> endobj -822 0 obj << +817 0 obj << /Length 2031 /Filter /FlateDecode >> @@ -6619,30 +6601,30 @@ c t]-=;Ĵۛ"%tp~i|}OLRe&>gYȄ|z(,|78g:,A}*1½лݴh~FČG" wg'KL+2"'*2и4d@bx8'|o2Ψaht LKГf?y tf[z#`5z $`%+8ޅܖ~着~҇]k*-`Kc[ŊB 62p_n֞Cj2fpqSBrZ23Q? _I0"Nv(( Xnx^|#DvzҘI1qvpQŤ~A ۍ A`;L=\5I,:Hڢ6tՏϢƀ _({S(k$׏rS&sS|C@aT(_3@%ߵ+~Bė*74Wi#u+\ Bzq{@Y_ķ暥"KA 8>LaՋZDT< Ql@2&L?Exsz #04*x ^4FѳG2뫧߻3T4#x?bTsCT+vu/c'f#&tu$5s}BR=5=JwD\-4i3pzl$ع0-4)Б9)_xD> endobj -819 0 obj << +814 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 825 0 R +/PTEX.InfoDict 820 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 419.00000000 344.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 826 0 R ->>/Font << /R8 827 0 R >> +/R7 821 0 R +>>/Font << /R8 822 0 R >> >> -/Length 828 0 R +/Length 823 0 R /Filter /FlateDecode >> stream @@ -6651,48 +6633,48 @@ x #ES8U\&|| C5ayb)'RǤT8I_a}0;v,ϣr^쪠]}$u1eMp2sU,\cSl:ɥԨlo myVqb,52- ghۿ˭3Nw5þ4yy)@> endobj -826 0 obj +821 0 obj << /Type /ExtGState /OPM 1 >> endobj -827 0 obj +822 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -828 0 obj +823 0 obj 1031 endobj -824 0 obj << +819 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [504.4211 171.4698 518.8767 182.052] /Subtype /Link /A << /S /GoTo /D (table.2.2) >> >> endobj -823 0 obj << -/D [821 0 R /XYZ 74.4095 793.4011 null] +818 0 obj << +/D [816 0 R /XYZ 74.4095 793.4011 null] >> endobj -358 0 obj << -/D [821 0 R /XYZ 298.272 257.7466 null] +353 0 obj << +/D [816 0 R /XYZ 298.272 257.7466 null] >> endobj -820 0 obj << -/Font << /F61 258 0 R /F28 209 0 R >> -/XObject << /Im34 819 0 R >> +815 0 obj << +/Font << /F61 254 0 R /F28 205 0 R >> +/XObject << /Im34 814 0 R >> /ProcSet [ /PDF /Text ] >> endobj -831 0 obj << +826 0 obj << /Length 3034 /Filter /FlateDecode >> @@ -6711,159 +6693,150 @@ x F6=%*@y|3$T^/6VST{7GC4=*4(L?4ˡ7p|I-qzCyp~h)j zR:ڔP { cW |t #2!ѽHAO8y*:P+oJ$Sd%TGuzL3|PE`D񡏲Z:QvSU45TƟc&_ )0ꄮ}v~shB:(1+xW*/;,ȍ jaMf}}f-@.;´|]xfDz@i_^DLe- ~M!>y@Ho^ Weendstream endobj -830 0 obj << +825 0 obj << /Type /Page -/Contents 831 0 R -/Resources 829 0 R +/Contents 826 0 R +/Resources 824 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 789 0 R +/Parent 784 0 R >> endobj -832 0 obj << -/D [830 0 R /XYZ 74.4095 793.4011 null] +827 0 obj << +/D [825 0 R /XYZ 74.4095 793.4011 null] >> endobj -829 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F67 558 0 R /F62 609 0 R /F71 561 0 R /F66 612 0 R /F35 221 0 R >> +824 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F67 553 0 R /F62 604 0 R /F71 556 0 R /F66 607 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -835 0 obj << -/Length 2361 +830 0 obj << +/Length 2370 /Filter /FlateDecode >> stream -xڥks۸>RS  qΗIn2}DbM*qN{w EZ&X,~0,I _l|wïp=zBDpq{DGO{}[S,An"8j`xcVX CkV1/~/R0&aÙ$by0NA*p*@.r Õ)1"O~P;~F*Pe `qvRU@ix[C,Ͷfh$[?Rgh+k F8 -H|yNgEOO"|N~))۞gv=xv@)vp#(#ݥ8lOIRsr0t5WZVIIG%Y^~8{F9~h!NӞAɳJ_GVlVTi6 -|O݇Oo-QWܷP‡"g5f!.u,6 -X")6~$Y$2_c}zTPag?X{rmLr9Qۗ$"W`qZ޷"LiC. r 6W\a_Fc޻_b7e~ȇ~h;hZ錃dE~- }RS  qΗ䒞]g0Ś"U>;łiQgnb/8qBD8v}7w#on/~W/K @D,P$zׇ5rl8CalsS/~ue(LI@4%,27M[/}v".0dgY "* guٴ|l"5#7ujTK 8ikhuݙ1^ӚF+4lMFz8\1KR^!zu!<ƪ0j(pH|F\eĽu_~;{'x)mܐpexf b\yyxwg jej@)>^QUV75{\XKu(֗iqT{4y`@ oLrS48Ѽ11'B8b'Zfۥ#9 wJ륎k +=mnrBPr.XFptw4(hϔ_E2?iB _>3!x){`W#F8a(!1&Ϭ/ՂroroĂ;=Siu j L[^ow-ҼNW!eVczbt}*5.) vqv>`" +q1fDF9q:!V%JQ6 S(dbNzCZOQe]KG[G蠭 +1/ += u,G*w)}F "T4_G1c4u"F;ORBv8iT uug8=@M-IX|gAMB W.)zY 6Ms m`E&=L$^}ֆ-krR̬5E6LI- Pwt87~<&ޏ>{PEcgx%"bh@&}Kem6ZoK+cZ %*H3=^iK4GV1,/] U[ g{Fg{c!x_ $GFx@N6[Jnf-PwM]O7V2ˌƓ%OGx煊EG}=tEdLb*]P(uK@ p (1w2@VCGy,}Kp+Sτx61Kx +caZ?wu/|1~6d$  ȃ,q7bWSbt1L ~|?_CH4\-W*qp 0\ hr0(Jed7S_['1nna&K}J{ "( !:Qcohc| K?>I9Do۫ol{SGZ &t=%gHAjYM$%͋wd5>|z{q`:M{&h&*vZZYQm^ـϫ0po*L8O)H+}+e/|>! sfXco\b+Ћd|VDtOQAx`Bɵ t2Gm_\qiq"xV신32q M J2A_/\qy6~u\I:{~ݔ!MKjh39]38b~0Qs-* q8`JVK;SJR2xʌO=(H=뱐_/^۩ѫendstream endobj -834 0 obj << +829 0 obj << /Type /Page -/Contents 835 0 R -/Resources 833 0 R +/Contents 830 0 R +/Resources 828 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 837 0 R +/Parent 832 0 R >> endobj -836 0 obj << -/D [834 0 R /XYZ 74.4095 793.4011 null] +831 0 obj << +/D [829 0 R /XYZ 74.4095 793.4011 null] >> endobj 146 0 obj << -/D [834 0 R /XYZ 74.4095 502.0961 null] +/D [829 0 R /XYZ 74.4095 502.0961 null] >> endobj -833 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F26 206 0 R /F83 807 0 R >> +828 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F26 202 0 R /F83 802 0 R >> /ProcSet [ /PDF /Text ] >> endobj -841 0 obj << -/Length 1832 +836 0 obj << +/Length 1829 /Filter /FlateDecode >> stream -xڥXo6~_GOQ˒on. -A <2#om_$;Ǚ #KHf ?hI$5Yc&{XieQv;o?]}I$'F)=&\d眽lzW+\|z[o\ mFiaGʶ-ғo}ǻQ)ɕf(}n-'֎ Zso6[!LUʡq8ͮ'Iڪ,mZp -(  -89;f$b]_=ܕ'Aǧ{e4d4-:ɒv L<4tC9QgFd(ˆE`F* -(f\9'-`oE͘n8-׊0f"Ts j" ^/vWk;m뇃g> g5M L)]Y6L0a͜2߾ 'hѬ⡿]9Z  -½S[]Wx =X[8ڰM;^pZGS${hK>P6? jаB@̎7m r520j @|J9sXJl]K3uCQf -p9d gf(`P<4\uXDOz1Ϥ XnG $v57؁] wkc؜E5|\Rpx w# d=P碎\ӌ~ +;\كC˱K(|?=42[۳afd ?*)"Vj -Sgl ^{!tyDzT/Lu^c'hR&ʀd@v!+ 2j44bpO]:k]:\Zʹ֏h%P=z?( x gn|1V ܷP?cu驇fIXkr@<v]f~}?7B9"f>Ì!С-fW"X|',Q^ZLboAzgZpLk1)6xZUQWaƯ.39Gf\a>v0z940k[`\.#19K>vaz _p -'=;?2sq"NTո%zN~L=4endstream -endobj -840 0 obj << +xڥXn6}WQ[xDyspNc$@>h-zWVJ$m;CRi +^qn3b?iI$5IcF[XmeAv ү^U,JQJFw )g^ﳯEg՚4dN(_O\voj͒PmW_;{s=O8%Rnj!!ZkŶ*Zol8nz'I?mV< +- ECRo3˺R^#^e5\%4?Y#?\6[͊Sok`nh\fsCx.6mwhV=0:?hvCw^sg#~vwfknb0[sAVK IyqbSc )C MpA$ (j0uWߣuYڧQ('KPH :IiS6"ƦR* aV,PwE]hw[Dgb}#Cp3"T$\ҝ[pahk7r/u},0,*IL:r`U$\FkS"y" 7b4e-@E^JM4Vrd -ǻ-CѽZ1 EK&$kIŲhʗJ&Rh7@e(D +HR "&DZ49}!)Ɵ +C㼰-F7*xBCPpP,^o~C_48-ЀH8%F(UU Kwݥ4Qeabd`^H fR8 ?pf"~L%0J[EZ@ӓtkAĞ¿Dag|<hY +{Wuf)vӠYsξ𩺅\{:zq H!F)6gdgYܛ { Zc{W6 +-/!Zλ bo+؞ m6=W}VU +9^G=:y#g;whu]n=ŵ biO1Zht c)we@N `]A Lϵ S'BZgGh-T8h Pݹ8A( xN~=b - (o{;)}-(ѣi± lmluu]<rG` +i5s'٬ȩ6u ::(O7 |"XwR#BCo5C cy(E +rw Q鐴pq]L^_UP辏拽&FBj\:K'`mExfٯ[Koh'@^c*]& fm@}w?_,4܄w0~,ǥ~7a_{>::]ÉJȩO'4 O2&endstream +endobj +835 0 obj << /Type /Page -/Contents 841 0 R -/Resources 839 0 R +/Contents 836 0 R +/Resources 834 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 837 0 R -/Annots [ 843 0 R ] +/Parent 832 0 R +/Annots [ 838 0 R ] >> endobj -838 0 obj << +833 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 844 0 R +/PTEX.InfoDict 839 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 845 0 R ->>/Font << /R8 846 0 R /R9 847 0 R >> +/R7 840 0 R +>>/Font << /R8 841 0 R /R9 842 0 R >> >> -/Length 848 0 R +/Length 843 0 R /Filter /FlateDecode >> stream xWMs0W-Hp`(M{6mRca<6z>< u!c9~(ru mv&cE[󫏣A ;r<`8~׺ϗF`yr9eWدGv̾F]=#"c(׈SAZp&ET$X)s`\xw}8WUj> R T=pxW'!94FSg^PR!(@cن=BCICȓQwRt#CaVL&&>t۶S:n݈uU"!'/d/2,qe -  T.UuC*Z\b:<)2|N<341QeLe+HF}Hqzխ"PvW׫pTP* >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ã%ꀏ.LtGB1HuC zLJ45,SHEЅk!D0WBWjHɄ0$i|'lB)a2{rn+|keEd)az*eXAl)awl?:3z<&ƢM zp5<a~E<_?dEiendstream endobj -844 0 obj +839 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080807174428Z00'00') -/ModDate (D:20080807174428Z00'00') +/CreationDate (D:20080807200527Z00'00') +/ModDate (D:20080807200527Z00'00') >> endobj -845 0 obj +840 0 obj << /Type /ExtGState /OPM 1 >> endobj -846 0 obj +841 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 >> endobj -847 0 obj +842 0 obj << /BaseFont /Helvetica-Oblique /Type /Font /Subtype /Type1 >> endobj -848 0 obj +843 0 obj 954 endobj -843 0 obj << +838 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [444.1785 341.3883 458.6341 351.9706] /Subtype /Link /A << /S /GoTo /D (figure.3.6) >> >> endobj -842 0 obj << -/D [840 0 R /XYZ 74.4095 793.4011 null] +837 0 obj << +/D [835 0 R /XYZ 74.4095 793.4011 null] >> endobj 150 0 obj << -/D [840 0 R /XYZ 74.4095 723.0768 null] +/D [835 0 R /XYZ 74.4095 723.0768 null] >> endobj 154 0 obj << -/D [840 0 R /XYZ 74.4095 679.0664 null] +/D [835 0 R /XYZ 74.4095 679.0664 null] >> endobj -359 0 obj << -/D [840 0 R /XYZ 256.0589 392.8713 null] +354 0 obj << +/D [835 0 R /XYZ 256.0589 392.8713 null] >> endobj -839 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F26 206 0 R /F35 221 0 R >> -/XObject << /Im35 838 0 R >> +834 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F26 202 0 R /F35 217 0 R >> +/XObject << /Im35 833 0 R >> /ProcSet [ /PDF /Text ] >> endobj -851 0 obj << +846 0 obj << /Length 2265 /Filter /FlateDecode >> @@ -6874,24 +6847,24 @@ xڭY[s۶~ &HYs 3B^?,w;RV1TQO':"vAKj\1? Zbw?K-pQF޻aϕ/Hrc?ĦPyӇwo~|s;kDX? ي'm%8)6kI'w4haP`o6oo.f4L7/٫His|$gpdz >8y.'$1,&V"z,ѧe:0z#D>I> endobj -852 0 obj << -/D [850 0 R /XYZ 74.4095 793.4011 null] +847 0 obj << +/D [845 0 R /XYZ 74.4095 793.4011 null] >> endobj 158 0 obj << -/D [850 0 R /XYZ 74.4095 411.724 null] +/D [845 0 R /XYZ 74.4095 411.724 null] >> endobj -849 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F35 221 0 R /F26 206 0 R /F83 807 0 R >> +844 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F35 217 0 R /F26 202 0 R /F83 802 0 R >> /ProcSet [ /PDF /Text ] >> endobj -855 0 obj << +850 0 obj << /Length 1623 /Filter /FlateDecode >> @@ -6905,24 +6878,24 @@ b T߆597"l?kJҟ!uWV}ȍ*5U\9ܽk_Z.Z[Q&qShfuй"ߝG) h5v›JCb$Z~z`rABg^b,GE_`7q.IdIţ]k.w],2 \ezmfN˷$Xz[q~ՠ&Fx3B[xdtY ;Cai(n#j_J 7 \Du0>!> endobj -856 0 obj << -/D [854 0 R /XYZ 74.4095 793.4011 null] +851 0 obj << +/D [849 0 R /XYZ 74.4095 793.4011 null] >> endobj -857 0 obj << -/D [854 0 R /XYZ 74.4095 565.4758 null] +852 0 obj << +/D [849 0 R /XYZ 74.4095 565.4758 null] >> endobj -853 0 obj << -/Font << /F61 258 0 R /F83 807 0 R /F26 206 0 R /F28 209 0 R >> +848 0 obj << +/Font << /F61 254 0 R /F83 802 0 R /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -860 0 obj << +855 0 obj << /Length 1708 /Filter /FlateDecode >> @@ -6943,21 +6916,21 @@ $W[T ApwH/2Sa*+'8¢ zH԰|߾,ӧ;mr%Sp ˸|ǽfW_%>GvBVee::fOዹ5kgAh~}iWu}~墚!=y_|I272N6IƮ/3OGhdVp]xh(,VQOpS %^3BCe,UpHWݚm)%endstream endobj -859 0 obj << +854 0 obj << /Type /Page -/Contents 860 0 R -/Resources 858 0 R +/Contents 855 0 R +/Resources 853 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 837 0 R +/Parent 832 0 R >> endobj -861 0 obj << -/D [859 0 R /XYZ 74.4095 793.4011 null] +856 0 obj << +/D [854 0 R /XYZ 74.4095 793.4011 null] >> endobj -858 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F83 807 0 R >> +853 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F83 802 0 R >> /ProcSet [ /PDF /Text ] >> endobj -864 0 obj << +859 0 obj << /Length 1530 /Filter /FlateDecode >> @@ -6975,333 +6948,382 @@ rŘ (= 4;f ƀ%ye,8Yv_X9=I)7.nn+s@D1 [gUnq;:~U)HlAk(-4 =oٷpZbQ ;7_R],5` ;=נ1f0|Ԙhw=^%0XȞ}Lf}9+[֫iRHwҎpn:h ?;t1/endstream endobj -863 0 obj << +858 0 obj << /Type /Page -/Contents 864 0 R -/Resources 862 0 R +/Contents 859 0 R +/Resources 857 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 837 0 R +/Parent 832 0 R >> endobj -865 0 obj << -/D [863 0 R /XYZ 74.4095 793.4011 null] +860 0 obj << +/D [858 0 R /XYZ 74.4095 793.4011 null] >> endobj -866 0 obj << -/D [863 0 R /XYZ 74.4095 470.2165 null] +861 0 obj << +/D [858 0 R /XYZ 74.4095 470.2165 null] >> endobj -862 0 obj << -/Font << /F61 258 0 R /F83 807 0 R /F28 209 0 R /F26 206 0 R >> +857 0 obj << +/Font << /F61 254 0 R /F83 802 0 R /F28 205 0 R /F26 202 0 R >> /ProcSet [ /PDF /Text ] >> endobj -869 0 obj << -/Length 805 +864 0 obj << +/Length 1474 /Filter /FlateDecode >> stream -xڵVo0_a)ۉA .}2q^EXI@`1$Wt֐y> #7/qG)Xi N|*ܦyד3d/l?g9 "Epo5A>sT$Ѓ^Lb(w9cӀI4AHY8U$#M Jb/3ۥfw K-I bӈFȧGHzkE Ԛ.A}Xd0-QZ]4YӪ>2{ao/_d9%;^Xl`Ӣ-2Mze GKzHW ăK~4WT Ld]Au -nj R :P!2SOE~6eﵤz"d`! =~켹LJeR&,ah l/Xendstream +xڵXKsF W9I3z$!d&T>֝\drvtvCOIx1gΨg߬u;ewrvfOsyp9>߄۸2?d*J籱61ɪ y_._^]ך?Rj"JO_%"s JXp'ڝdmR1)kȾ1AcåOt=p&Au #h@`zm}ī!yY)ϖ5L|k2\v27BpM|eLI|mU,Ye'&ɳ|['U +}탫ŏ+3wVuZK-&Hyxgϭc \dY1WxgŋNG͖&OwB̓1W7K(G3/~zcMjSx c~Q;|1?h_jieROxvH7R{#J5ߐU>w9iGxM.Վ? NMjf߼9drDA& 꾲qjŦ4{ir#f!dvGB9f/@H{b"l (5& shljVJB mFFu ۟umիmHKSt:^*}pD_YW$]{`@cЁ~\TO{Lvt@tױEWcRx<$iSa +iW)iP+= +pnxzU,JڴdX +˫ĖX +֩'Nzuf8ܢk3 &wH(pu R~qU[u)kd,AC (\,6%e|\vdo Nc=_͙U0 +(CNv\j̖>k,V:E$9xGߛl3J`{z#>äNKFaq.9IXmM ȁ?8]l(;Pۍ(,qc<1Md3ZxηY|<۶pgq$<+Gg.|ZP6I&cЄ'hMiw~);&]<~`!baeܽ2~ 4ER#xiH ÙZY |b˂J>eW} wd$?ECZ:˽@.&؎OTQ7Ii='2̶]1/ @xCTP7D>+ɩ oZN8l;l'lS'ZHDuZUO)tKϋCNί 6!hF=6;_t i_2Ѕ+xX8endstream endobj -868 0 obj << +863 0 obj << /Type /Page -/Contents 869 0 R -/Resources 867 0 R +/Contents 864 0 R +/Resources 862 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 871 0 R +/Parent 870 0 R >> endobj -870 0 obj << -/D [868 0 R /XYZ 74.4095 793.4011 null] +865 0 obj << +/D [863 0 R /XYZ 74.4095 793.4011 null] +>> endobj +162 0 obj << +/D [863 0 R /XYZ 74.4095 358.2768 null] +>> endobj +866 0 obj << +/D [863 0 R /XYZ 74.4095 266.732 null] >> endobj 867 0 obj << -/Font << /F61 258 0 R /F83 807 0 R /F28 209 0 R >> +/D [863 0 R /XYZ 74.4095 238.7914 null] +>> endobj +868 0 obj << +/D [863 0 R /XYZ 74.4095 210.7431 null] +>> endobj +869 0 obj << +/D [863 0 R /XYZ 74.4095 164.7675 null] +>> endobj +862 0 obj << +/Font << /F61 254 0 R /F83 802 0 R /F28 205 0 R /F26 202 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj -874 0 obj << -/Length 2136 +873 0 obj << +/Length 2027 /Filter /FlateDecode >> stream -xڥXYs8~ϯRU!Covd{23ZN2>P$aͫxF4eQ㭚ru7>> 6b ? gqٺxv>u;|x:bKH3O8{9ao痬V.'nBI"|*\l. 󻫇^ESVa\μ(JI1​$͘aMԋk/%WnUFI ;Dr̹T]UF\{ASZ㔿aR{$"%0&EƠϟ;|31}i(P%"bF(rZo9%}Y=YRLK@SL<~:G@` -3?XO@Ċt-a$9 8JLE0~h H_APd#sJ(}K鑌p^T!1ײ0Syu8Th#uFRBY<5nImA(bEhiyKbrc!r%s 7;%[Ya@'[8-T&Ke6=2_TȍD%'b7X~,:Q ,1kLZFI[;wpDN=l?_( x%D)sZ UU5+5QBXFNַz+1`Oײղ꛵mw@EPsȗT)7Fv xߖپQuLV k|U«-#&k桯]TgHIHܷ٘R;IP; KSg!ΓÒTp;})/^vnθJds:b7ږmHDןK]EHfbG9nI.- -= "=kۃ*W=E~yRۣl܅e_h6ie7;:ȶ܂OY -b}5[ F \|'c 'G?a6,G-.f¶ɭ뽑g>&OPpC̭IscP6Sw9OYA>|[sEwP>:NtcMz$@cM3H:T/h/6=v^KerZr(N&:4Иja emD5hqw"-8LA_[U faU݀ix$E(FĽͨwb~HZQ'2ʁ'+\;%d -ݣH:a.L dd-s@wRCi?T -3B -f6X[/gLLxj;q陬8+Ae*s̔N%:߈WCj!:d G6S謋vKlEdF]ݽu*j$I^駇%x+Z~Ԍu#v, `5\[kP 뾑d(rmp;(ܯU/2!IHb~1pw~DN< (0~`ϧ3bzKh9Œْ+gj62/%WO=>N0X5͗ Uʼjd,+*=cqcў@H`,pfvy?wGI0`'쓣u??|8֯dq^ ԩ"Gi#V*3ڵjFwO! anuv4fH>ivbHƒ{AE@PG.{fbC)1UX+&(T9 J|QP7dtW,'EnaC(C764tqZnHׅQ$֝ph9m7S!quνݾd[Iv2]J2r:9yLT:  ICp6F70x hQԠPIvrm TW#9a6? s%6%@I4|+0dFFc^d].#RI s/$|q#*r/ -y4N_Pwendstream +xڭr7]_1嗐U"5]vlFypf+o7 U*40qD/A2J4 yqA%0w#o.ު8JVJDw㒰DO~65tƒtt&)\[7lXNr9_2JRط +"B$qNz}@%I$lP#4%\p X$/% E4&DzG:2 v".Og0.d"PƁb7UWMseNLOmZSͰ=?) +RZ-}0S^zr[)2P.u bKbS2 H]U#SKS;16ʖ31Qh8! n{K 44N1]:,(fQq1Y/n/~(R2#í= +%DJ#t4!q8p("C"hcg䘃+4<4Q =զj^ }fʆ|p]92Ic!W?es[AC xXWysuK< ?n+=.z#Ł#TDJ*"g\!2e,DON4q 9pHhFuH/h' lK qPxqmd +jXW U_F`|…{NEx5 ,  4P(b#U,q'WkC;%TF$_BFbIgmU z:I7hVUx`tOQbK1fz8 ;v&}s[J%AA}/Hܧ1SUIX~ojc{J{PΖ[㿬(Ё'6R{TY"cu1?_lem rL<(" i|ZaQG( +$A[Sۑ8QE@izxfUdLR-ӱ*2pbPujN߰rQ= ԉf΁R?ЦRzD0H32)I4;Mfji0yʱrIi9XdsC{s=7hːx͏ g,ga0 +Ӱ,Eܔ>!(px<3ca;N'Mc5Sڝ?76\Z6 [:-h!> <:gTAj;xĸkK]F >MS̱VD|èC(e|@׺xWk, (<| C׽Z9E |xiSOp>6ȺGkgS.$zcHUv 5-zpy;erڇ +dD]O'n6!n_&%V0(m{G 8I,lG?ޞ_܈endstream endobj -873 0 obj << +872 0 obj << /Type /Page -/Contents 874 0 R -/Resources 872 0 R +/Contents 873 0 R +/Resources 871 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 871 0 R -/Annots [ 876 0 R ] +/Parent 870 0 R >> endobj -876 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[0 1 1] -/Rect [125.1648 216.5425 277.7924 228.0677] -/Subtype/Link/A<> +874 0 obj << +/D [872 0 R /XYZ 74.4095 793.4011 null] >> endobj 875 0 obj << -/D [873 0 R /XYZ 74.4095 793.4011 null] +/D [872 0 R /XYZ 74.4095 771.7323 null] >> endobj -162 0 obj << -/D [873 0 R /XYZ 74.4095 771.7323 null] +876 0 obj << +/D [872 0 R /XYZ 74.4095 656.1647 null] +>> endobj +877 0 obj << +/D [872 0 R /XYZ 74.4095 591.4516 null] >> endobj 166 0 obj << -/D [873 0 R /XYZ 74.4095 750.1041 null] +/D [872 0 R /XYZ 74.4095 547.1702 null] >> endobj 170 0 obj << -/D [873 0 R /XYZ 74.4095 704.9954 null] +/D [872 0 R /XYZ 74.4095 499.0403 null] +>> endobj +878 0 obj << +/D [872 0 R /XYZ 74.4095 418.7922 null] >> endobj 174 0 obj << -/D [873 0 R /XYZ 74.4095 654.9427 null] +/D [872 0 R /XYZ 74.4095 418.7922 null] >> endobj 178 0 obj << -/D [873 0 R /XYZ 74.4095 616.9439 null] ->> endobj -182 0 obj << -/D [873 0 R /XYZ 74.4095 525.2661 null] +/D [872 0 R /XYZ 74.4095 327.2273 null] >> endobj -872 0 obj << -/Font << /F61 258 0 R /F26 206 0 R /F28 209 0 R /F83 807 0 R >> +871 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F83 802 0 R /F26 202 0 R >> /ProcSet [ /PDF /Text ] >> endobj -879 0 obj << -/Length 2131 +881 0 obj << +/Length 2781 /Filter /FlateDecode >> stream -xڍMs8:JA$ȹeT2TjxfEI̘Udgs߾ ~- "`7C##!}/NpCIھZ}@!/ !%7x^l2\2Z wi\_$O4)Wk"iO~{ Qtؾ>"BRJZ͔5cbbYx_P׿8^_oXf|hjۮUZ׿R%/픶No+\Q3S|sWV_Ko4v~990BHD;Iwе槤 ﮝuu\%ncMjv>||Ҵ`|m|c^nY|M1R|@F.7W+5oZ[}Oi8HT]@,+P t9.,KOg(wium6lڬ CΌ3;%7yGHl`dk#.N/NٮWXd8^2TVrL!LQ%8DTbgbAjA!g& ij$/t{׮up  1dmQ]B6P jJ1Ԑ+F}P\ GEi=O(PQI!vԚChت4ni~MRUJgp 0hcALlxu&`ww=W/&7DT@Ilv`לHb Ex߇=_:>#`ȝ22gPb*¾fA:S>8,){ZclIq94odWoA1wx>$ ,}7/:͞u5.IM4{v-,MZ[O-Aj Wg|(ds }n^v=;;k\]%^vsٙrzzvJ|v" 9qW/q)`rm{y 5tNIe,EeVy2.JѲ@Cz LŢBoZ%l|'aE^S5m`nGΝRMI⤴,K?qpjr‰s3t'JnT'I ~cYl7?HE^sWpvA37?Ӊ4K8e~7-,ZůDTrO5v5nC%0J/qn2W;*UE5\n}笈LBZC$y LbY.RͩQ^K=NɰyVf[T.b[Bmgraj׬>Gۣ)l +ivTa +8^5n}NLy"j{ 0y_f39Do@u55̈zKuR2ET5|(_?mǨmԱ2&֍ζܖtE-E8%f# ++0⻮w5K,},y_PJBeXz,z~~&_IW?2jo+ҩ}m(g/qDkwq.dtg2`Hqx0VFy2oWDm1vٶ^*ew.wH#,nFS[lKÖugpMжāoI=a@W>mogNe.~F?B)&40:\  +ɭ.Jx"O<; Nĕ$G6wӃu/cE7%S}J9\%c&NBU \jv^|=ۣ5ꀎeh1Q5tz[\FU9K՚uOCyBHXTSU{VZF5*lk)q&ql6:Hc"]-Z3J*'윢>{pt>Dlמ)hd0aG~黒٢G5 +yytpdވx<= ojSB$M쀢멻Ekd'VR gk@Ӵƨ9{Y~dQߒS# %!eCh; yJJ%%,c !HcVj.D?VOva>`{J2V͎lp9G>:mpPFFDsYK%N5=`Z)`1(tVqhbXj0.Ŧ~6 `mi:}$ 2)N@-# LXl_>GEZ/CaÜs)'] ) ,Z1=PB׳vzjì8]mE}zauyO> endobj -882 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[0 1 1] -/Rect [186.6652 605.3868 353.6389 616.912] -/Subtype/Link/A<> +/Parent 870 0 R +/Annots [ 883 0 R 885 0 R 886 0 R 887 0 R 888 0 R 889 0 R 890 0 R 891 0 R 892 0 R 893 0 R 894 0 R 895 0 R 896 0 R 897 0 R 898 0 R 899 0 R ] >> endobj 883 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [148.5137 585.7983 329.8337 597.4311] -/Subtype/Link/A<> ->> endobj -884 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[0 1 1] -/Rect [139.5474 566.4251 299.3481 577.9503] -/Subtype/Link/A<> +/Rect [125.1648 659.872 277.7924 671.3972] +/Subtype/Link/A<> >> endobj 885 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [147.115 546.9906 306.9157 558.4694] -/Subtype/Link/A<> +/Rect [186.6652 410.7297 353.6389 422.2549] +/Subtype/Link/A<> >> endobj 886 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [154.8081 527.5097 386.3397 538.9885] -/Subtype/Link/A<> +/Rect [148.5137 390.9788 329.8337 402.6116] +/Subtype/Link/A<> >> endobj 887 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [133.0648 508.0288 264.173 519.5076] -/Subtype/Link/A<> +/Rect [139.5474 371.4431 299.3481 382.9682] +/Subtype/Link/A<> >> endobj 888 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [163.7833 488.394 352.2764 500.0268] -/Subtype/Link/A<> +/Rect [147.115 351.8461 306.9157 363.3249] +/Subtype/Link/A<> >> endobj 889 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [143.4568 469.0671 374.9885 480.5459] -/Subtype/Link/A<> +/Rect [154.8081 332.2027 386.3397 343.6815] +/Subtype/Link/A<> >> endobj 890 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [167.8988 449.5862 327.6995 461.065] -/Subtype/Link/A<> +/Rect [133.0648 312.5594 264.173 324.0382] +/Subtype/Link/A<> >> endobj 891 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [139.9598 430.1054 471.9148 441.5842] -/Subtype/Link/A<> +/Rect [163.7833 292.7621 352.2764 304.3949] +/Subtype/Link/A<> >> endobj 892 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [147.4467 410.6245 285.7281 422.1033] -/Subtype/Link/A<> +/Rect [143.4568 273.2727 374.9885 284.7515] +/Subtype/Link/A<> >> endobj 893 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [151.5083 391.1436 289.7897 402.6224] -/Subtype/Link/A<> +/Rect [167.8988 253.6294 327.6995 265.1082] +/Subtype/Link/A<> >> endobj 894 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [146.2633 371.6627 499.7376 383.1415] -/Subtype/Link/A<> +/Rect [139.9598 233.986 471.9148 245.4648] +/Subtype/Link/A<> >> endobj 895 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [147.2495 352.1819 321.3964 363.6607] -/Subtype/Link/A<> +/Rect [147.4467 214.3427 285.7281 225.8215] +/Subtype/Link/A<> >> endobj 896 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [134.069 332.6546 344.0813 344.1798] -/Subtype/Link/A<> +/Rect [151.5083 194.6993 289.7897 206.1781] +/Subtype/Link/A<> >> endobj 897 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [134.069 313.1738 344.0813 324.6989] -/Subtype/Link/A<> +/Rect [146.2633 175.056 499.7376 186.5348] +/Subtype/Link/A<> >> endobj 898 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [133.0649 293.7393 328.731 305.2181] -/Subtype/Link/A<> +/Rect [147.2495 155.4127 321.3964 166.8915] +/Subtype/Link/A<> >> endobj 899 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [122.108 274.212 354.1378 285.7372] -/Subtype/Link/A<> +/Rect [134.069 135.723 344.0813 147.2481] +/Subtype/Link/A<> >> endobj -880 0 obj << -/D [878 0 R /XYZ 74.4095 793.4011 null] +882 0 obj << +/D [880 0 R /XYZ 74.4095 793.4011 null] >> endobj -881 0 obj << -/D [878 0 R /XYZ 74.4095 633.3086 null] +884 0 obj << +/D [880 0 R /XYZ 74.4095 438.814 null] >> endobj -877 0 obj << -/Font << /F61 258 0 R /F28 209 0 R /F26 206 0 R /F35 221 0 R /F83 807 0 R >> +879 0 obj << +/Font << /F61 254 0 R /F28 205 0 R /F83 802 0 R /F26 202 0 R /F35 217 0 R >> /ProcSet [ /PDF /Text ] >> endobj 902 0 obj << -/Length 215 +/Length 492 /Filter /FlateDecode >> stream -xu1OC1 +2&C8N2V5bRPE(Teqrw!v]i"}=Q. jhf5.REP,uէ5O Os o;ȥzpׯ5*۾F_eH??췁ѿ nZ9MZZ -j`K>O*4Um1h'jD-z,3BUo̔Xtendstream +xڍˎ@E^wd$(*d3$_lHOcBު#dȌɝb ȶՂUv4T_/Vd뜑P@ӏMSYdR@*ΗEvyjʬmeK~?/>{Et_X)5H KM…-)[!S=9+eO& % \;Еl0H>)cKc{g~Pc MfNJpF;qZR퉒#fe0ztwd7(mDendstream endobj 901 0 obj << /Type /Page /Contents 902 0 R /Resources 900 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 871 0 R +/Parent 870 0 R +/Annots [ 904 0 R 905 0 R 906 0 R ] +>> endobj +904 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [134.069 756.8936 344.0813 768.4187] +/Subtype/Link/A<> +>> endobj +905 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [133.0649 737.459 328.731 748.9379] +/Subtype/Link/A<> +>> endobj +906 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [122.108 717.9318 354.1378 729.457] +/Subtype/Link/A<> >> endobj 903 0 obj << /D [901 0 R /XYZ 74.4095 793.4011 null] >> endobj -186 0 obj << -/D [901 0 R /XYZ 74.4095 771.7323 null] ->> endobj 900 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> +/Font << /F61 254 0 R /F35 217 0 R /F28 205 0 R /F83 802 0 R >> /ProcSet [ /PDF /Text ] >> endobj -906 0 obj << -/Length 1135 +909 0 obj << +/Length 215 /Filter /FlateDecode >> stream -xڝ]oF+|Ws|\ֻeNTŀ`( PU yμ>d,B8Vb*, ^µ/7p.27 -n )*Z$BsU7?QЧfKp8e9RS x-quT8Sy0:QQza9(" >A9k=S$3vT;)QP#r@beulSq. U~T,IG=ǏVpm^Ci4c CY*YW[P(K &eTűh'k99 *rꫦT:!P3RBLԻJ_yfmϽiYYW@}’f6cQc~9b-f||k[3,=c^o>\5 BSy 1*n}74"s`HS  -$GM·ݝBWXft@QJl}s&I=zݔ;f!,}5\O~mHrA^U^t*׃G/ kAXhqkO*4Um1h'jD-> endobj -907 0 obj << -/D [905 0 R /XYZ 74.4095 793.4011 null] ->> endobj -190 0 obj << -/D [905 0 R /XYZ 74.4095 771.7323 null] ->> endobj -908 0 obj << -/D [905 0 R /XYZ 74.4095 573.2241 null] ->> endobj -909 0 obj << -/D [905 0 R /XYZ 74.4095 548.0739 null] +/Parent 870 0 R >> endobj 910 0 obj << -/D [905 0 R /XYZ 74.4095 522.9238 null] +/D [908 0 R /XYZ 74.4095 793.4011 null] >> endobj -911 0 obj << -/D [905 0 R /XYZ 74.4095 497.7737 null] +182 0 obj << +/D [908 0 R /XYZ 74.4095 771.7323 null] >> endobj -912 0 obj << -/D [905 0 R /XYZ 74.4095 472.6235 null] +907 0 obj << +/Font << /F26 202 0 R /F28 205 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 913 0 obj << -/D [905 0 R /XYZ 74.4095 447.4734 null] +/Length 1135 +/Filter /FlateDecode +>> +stream +xڝ]oF+|Ws|3s+'[*Q;QCM}Ca`xs9g& dsıX38 dϯ}"s1\]uWp3%,h¨>~raNi. x{mxKhEc?v_+IIx?E/¼~gu8F2Q҉eHTHXQ-u +i)y~ㆥ4bBEn#ypk0CO ?˓yIgGO~.ҬAaDZ9tC#)q4JMV."6\'M"U/[rHPai:(qayBQvfWIKIcåt#;Eդ-PM +bU&Ļ3(yiE3Ęr}wVj K~ǘכϹ0itsȠ)C(@3TCw ESfZ90D"ÄI`Gr~wc4$y2$PԱ3p_ĪIRAf7厙)w<'?6$a/i/:|MHx suz ,vxں9Q h.EOªLL ?&171އP-odP(?ƹ +XbUuxOw8ayN:c9Cͳ3k_XUFSxiE`靹H5#F=dMǹJ@QaνcQc'\w3ՠM$ EN8Ia\mUf=rC#%rf.!endstream +endobj +912 0 obj << +/Type /Page +/Contents 913 0 R +/Resources 911 0 R +/MediaBox [0 0 595.2757 841.8898] +/Parent 870 0 R >> endobj 914 0 obj << -/D [905 0 R /XYZ 74.4095 422.3232 null] +/D [912 0 R /XYZ 74.4095 793.4011 null] +>> endobj +186 0 obj << +/D [912 0 R /XYZ 74.4095 771.7323 null] >> endobj 915 0 obj << -/D [905 0 R /XYZ 74.4095 397.1731 null] +/D [912 0 R /XYZ 74.4095 573.2241 null] >> endobj 916 0 obj << -/D [905 0 R /XYZ 74.4095 372.0229 null] +/D [912 0 R /XYZ 74.4095 548.0739 null] >> endobj 917 0 obj << -/D [905 0 R /XYZ 74.4095 346.8728 null] +/D [912 0 R /XYZ 74.4095 522.9238 null] >> endobj 918 0 obj << -/D [905 0 R /XYZ 74.4095 321.7226 null] +/D [912 0 R /XYZ 74.4095 497.7737 null] >> endobj 919 0 obj << -/D [905 0 R /XYZ 74.4095 296.5725 null] +/D [912 0 R /XYZ 74.4095 472.6235 null] >> endobj 920 0 obj << -/D [905 0 R /XYZ 74.4095 271.4223 null] +/D [912 0 R /XYZ 74.4095 447.4734 null] >> endobj 921 0 obj << -/D [905 0 R /XYZ 74.4095 246.2722 null] +/D [912 0 R /XYZ 74.4095 422.3232 null] >> endobj 922 0 obj << -/D [905 0 R /XYZ 74.4095 221.122 null] +/D [912 0 R /XYZ 74.4095 397.1731 null] >> endobj -904 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> -/ProcSet [ /PDF /Text ] +923 0 obj << +/D [912 0 R /XYZ 74.4095 372.0229 null] +>> endobj +924 0 obj << +/D [912 0 R /XYZ 74.4095 346.8728 null] >> endobj 925 0 obj << +/D [912 0 R /XYZ 74.4095 321.7226 null] +>> endobj +926 0 obj << +/D [912 0 R /XYZ 74.4095 296.5725 null] +>> endobj +927 0 obj << +/D [912 0 R /XYZ 74.4095 271.4223 null] +>> endobj +928 0 obj << +/D [912 0 R /XYZ 74.4095 246.2722 null] +>> endobj +929 0 obj << +/D [912 0 R /XYZ 74.4095 221.122 null] +>> endobj +911 0 obj << +/Font << /F26 202 0 R /F28 205 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +932 0 obj << /Length 676 /Filter /FlateDecode >> @@ -7311,39 +7333,39 @@ xڅ #dN Ոs}ARShՇ+LfփQeR%Jd"M9&]_9 eō%cZLbJss*MXf.+`1POK|,bI_>Nz# ‰D)j%פPŝvkNk^ (#~ʀ j~7;0G hsc"tQVBs q酖*-#Y m">\<%!65~]IFuĠ_ ?!a -E>gnw]YO!, C7]#gLCp`TGT-؟B3\޽9 t1\AI`>\^LSlwӄUȰ҄ j;XVgIes2=|U-I |dba{:a/l.XMvx+{;Ő*Ֆۻp7"Av8B!YNy)ٶ9e.wGw^6x?r}≬ S[K|v;N*fkcޟ>0endstream +E>gnw]YO!, C7]#gLCp`TGT-؟B3\޽9 t1\AI`>\^LSlwӄUȰ҄ j;XVgIes2=|U-I |dba{:a/l.XMvx+{;Ő*Ֆۻp7"Av8B!YNy)ٶ9e.wGw^6x?r}≬ S[K|v;N*fkcޟ>1endstream endobj -924 0 obj << +931 0 obj << /Type /Page -/Contents 925 0 R -/Resources 923 0 R +/Contents 932 0 R +/Resources 930 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 871 0 R +/Parent 934 0 R >> endobj -926 0 obj << -/D [924 0 R /XYZ 74.4095 793.4011 null] +933 0 obj << +/D [931 0 R /XYZ 74.4095 793.4011 null] >> endobj -194 0 obj << -/D [924 0 R /XYZ 74.4095 771.7323 null] +190 0 obj << +/D [931 0 R /XYZ 74.4095 771.7323 null] >> endobj -743 0 obj << -/D [924 0 R /XYZ 74.4095 573.2241 null] +738 0 obj << +/D [931 0 R /XYZ 74.4095 573.2241 null] >> endobj -630 0 obj << -/D [924 0 R /XYZ 74.4095 530.1467 null] +625 0 obj << +/D [931 0 R /XYZ 74.4095 530.1467 null] >> endobj -408 0 obj << -/D [924 0 R /XYZ 74.4095 504.9966 null] +403 0 obj << +/D [931 0 R /XYZ 74.4095 504.9966 null] >> endobj -923 0 obj << -/Font << /F26 206 0 R /F28 209 0 R >> +930 0 obj << +/Font << /F26 202 0 R /F28 205 0 R >> /ProcSet [ /PDF /Text ] >> endobj -927 0 obj << +935 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 -806 0 obj << +801 0 obj << /Length1 1612 /Length2 15936 /Length3 532 @@ -7352,7 +7374,7 @@ endobj >> stream xڬeT^%;΃www݃Nnsqn?}{j͚UڛDIA(ao Pٚ:1-\N@c  4M -@ICGG_B&w3@ hc` s QX  @TQI[ZA@-mJ&6 Sh ;lۙ)͙/340:8lA g@v6fk7!'}]M@.Y$ΠnH3{SJ/_1p' `rv1/_4\Avŀ0v2:;OwNVv+q8mXX4udϠHۙXm7su>7ӿD%alfog 0#0)ػM SO[ovpQ0;`o{;nl ?l@MIHm_Am9KO{}(c,Nϕs#,4u!/`n. &r _r{P:*e0lNph܊0PLӛ1{P[/(OF&FBSA!SF8 W{Gd"vCmP@AGe+dQi%%ȟ,$qTu8/<˳J!J02$mlre6'?P + ^dwh7IQH/1 X,{fDGbW bI?Y|/*$OѓN(g%dxw;sT)5cWǯfpPj OnBwGqcB5-Hs1 ioI6QQ{=KqDlق],Y׽PFՓh ~ELn^'%)fd'S1{ TCc0JL6,+8Uocj`l`NWߍ +@ICGG_B&w3@ hc` s QX  @TQI[ZA@-mJ&6 Sh ;lۙ)͙/340:8lA g@v6fk7!'}]M@.Y$ΠnH3{SJ/_1p' `rv1/_4\Avŀ0v2:;OwNVv+q8mXX4udϠHۙXm7su>7ӿD%alfog 0#0)ػM SO[ovpQ0;`o{;nl ?l@MIHm_Am9KO{}(c,Nϕs#,4u!/`n. &r _r{P:*e0lNph܊0PLӛ1{P[/(OF&FBSA!SF8 W{Gd"vCmP@AGe+dQi%%ȟ,$qTu8/<˳J!J02$mlre6'?P + ^dwh7IQH/1 X,{fDGbW bI?Y|/*$OѓN(g%dxw;sT)5cWǯfpPj OnBwGqcB5-Hs1 ioI6QQ{=KqDlق],Y׽PFՓh ~ELn^'%)fd'S1{ TCc0JL6,+8Uocj`l`NWߍ =Q,slwL˰S;DV%&E% ;GL =EAqA4ߡfJi0>zq{q'ӘEWX@vҊ7ș%. 㬇\Q[Ku(Tkz=y/'٘6k "g\p4ʩ.2oHtmu\  ^1 h'^7[ f8@9O7!);6 JMjѻ[05"E]3_l(u8}CSi+5"ϕG!LĂb]UkC{@P9[~ue&F=nZWYtL+ͧK 1ƽ6z&_l}=ˬ+qm^7X.0?k*]@QF\TH+{+[h&b5 貆v|,G5#$=oyzY|qŃtH]STKN),8ɭI*mq3zΎmJCzCsxj+<| ˅^rp_ ͜^4eIo:)oN迵Tr|ާ`q,:@txM,:*Wp]?p [ @@ -7404,35 +7426,35 @@ Odo' MhV7ٮ)vܨ;2`Ɖ˜;xz$$)8[]n6=@d.Z5eyLּgKFAgR8+ZȎwnƧO'=+"O}4H t8 DriňRbHoګ1{۲B }y '#)_kb[-U),dY/rU̹Py>~fjh6<|y ;- őK2wT 5 GV ȩ[ Z Ṃe_ e\>c )-"iF 9B302wGS'` pl:XKmEiO2R d&L`7q~AB 뭴PXr.`8s|cmnqʓ `3ƇvK.A(x3=+ ?X~M^ ^{n$l־"x/!GBRH/κ.͑Q4|e#^j%x/Moi? &J$C*de%U' -wb\;Į2%zdbU{)5帗T(۷\KkpC8Eb@+xQRB5@#\\d!ȷ+VjȢ(Ze%r> endobj -805 0 obj << +800 0 obj << /Ascent 625 /CapHeight 557 /Descent -147 -/FontName /JQZVWM+NimbusMonL-Regu +/FontName /BLVUBW+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 806 0 R +/FontFile 801 0 R >> endobj -928 0 obj +936 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 ] endobj -642 0 obj << +637 0 obj << /Length1 1606 /Length2 997 /Length3 532 @@ -7440,46 +7462,47 @@ endobj /Filter /FlateDecode >> stream -xT{XSoWW|rDn pr D '_SO9sI) -"X T t#PtClx ऴ2 -Cmբ#/AK{_{I^~͎Qx(TNSKcY4h拀:B6/z ntx`ť%ZdIIhT}w"ݰ8ǿ:efWmkiC]5i܆rLqcݗs,t콮JXҟAƽe7-HVeeÖl=Z^^cf#Ωgmk_|9/57]hx0}7-s%1I%Wff$oջ7FwVߗE/.]Va,>- -Y6Q;?Jv?IW:NL%R÷6\]EE%˱)#]1[_:L<'q\GV6 3J>k[N>p.{i57CR4K56/䬍L4==AWC -;$n}rnJbŬtͽoJ?{ǵAyZ^eer\AYdSz>}HX;ʰ5C6v:7>MEq`ہKUK= ڕX9Ŧ<(ڜV-7[ -E-:6qg Mnr&EZT_[s۪=Evnlτku>]yvJܶ!'ரfGz֤S4#uonG)IXoiUvu kJ.t:~kva?IubvI׃B~Gg~)KkNG60>o {U_7ߋKm]Ɋ[l% N`zl؜U];RMEf$C}\gL}X혡ŇĿ>^CzrpSn.Y/.Jo|aOڳaJ'+d)Ŏn^f堛_՝͖󳗖oNyQ)oL?/ꕕ\gezjw<W('pb,Ok1v_{Fl1endstream +xT{Tgo4OX䡉ڀ+"(TaH$S'3R`u%BHWJ*FP$#9JQ ڥ@(D:\g81H)@с +H"{}⮴jvaKR4ɋ4ԟ+䬉J4ICB ۅoyy|vRbzV^`@Gw+᷻ƿ_+sfZsw%1Q|v \-*Xs=`cU1ͮZ^}pIXK1Ytնun7w5>PWo2-צݢ;U5[o/nS%~e st71v7~8F@w39.]\H5ٟD N<ΚA՞֣+jgN@[DYvхUrǺ&}hAJuMm`cu{λӞߛ_25]n'W.%tm5uRgݸ$nnzlS8Lzm|~xe{L߹D}''MGi{=W~xPc8J1xtl0endstream endobj -643 0 obj << +638 0 obj << /Type /Font /Subtype /Type1 -/Encoding 929 0 R +/Encoding 937 0 R /FirstChar 229 /LastChar 229 -/Widths 930 0 R -/BaseFont /KQKJBW+StandardSymL -/FontDescriptor 641 0 R +/Widths 938 0 R +/BaseFont /INDDSW+StandardSymL +/FontDescriptor 636 0 R >> endobj -641 0 obj << +636 0 obj << /Ascent 504 /CapHeight 687 /Descent -228 -/FontName /KQKJBW+StandardSymL +/FontName /INDDSW+StandardSymL /ItalicAngle 0 /StemV 0 /XHeight 400 /FontBBox [-180 -293 1090 1010] /Flags 4 /CharSet (/summation) -/FontFile 642 0 R +/FontFile 637 0 R >> endobj -930 0 obj +938 0 obj [713 ] endobj -929 0 obj << +937 0 obj << /Type /Encoding /Differences [ 0 /.notdef 229/summation 230/.notdef] >> endobj -611 0 obj << +606 0 obj << /Length1 788 /Length2 1202 /Length3 532 @@ -7487,45 +7510,50 @@ endobj /Filter /FlateDecode >> stream -xRkTSWF2C#%"(oP HȽ[{37" -!R/"/AD|@ZX-( Xkϙ_?g;{ۇlwD3<^tg:D&ఀ@04P@ḁRŀlM"L#Ip̓OPH%B1!T'2`< $@phBPoa(U.2( t"! h[0]7X!kqqnXE /ԟ "NI8 ~+CHdq6$3ÕJw}#2."p&@,p+h%"ӥ0^:pDөt:CGwB B$d IOX Ө(F3IseT7 B@b_İL<م ,]o;`(Lq%αwљ rXH„98F]FY+szrO)==MnMW#bkrludq$bݵ:㗥rFfo˟/.صJRo\N+mr|鑴e 'J|[Ud/!(?HѕG0궈f7UםFJNA9OJ:E.%1JSiq>{vuX eni=^1vU7ٮm!>_[[a"Y+Tenmx{[?3IigzgH /_`j7VOzK998>Э]S'| } .J|FZfx s[Gk x'_81G+>^PʌlNht;ݡ -4kCW`Ccަ֞kVi#Ars@^(\ k1W|nvQ,{mJ!QLmu u'՗@Y[ #IYY\i|?unʯQ9^B7R.w^{F. -L1>](j_f1[v<~8Reg6v< G8VҠśCR {kZKwsGS{Enqow3XI8/%C-:32d$9h,}]bkl''{:l'X{2V4xwQvj՜+{L&19Z Ymεиg)٣9Ua6,CDgN`ʼ`}X6vD1f{JirsOhy " -U*T?/- mqbzO;E] 5}4^[6+_ѵ+4S}=*\cw5kB{0`I>)ObW%%g޾IvɎS}Ll;C|þ/W%Dd/mG)gFt7vO߲wƥȴ -#$3AgJp@nt:b~9o3/cjSW\0̽9o;n h0rUASָ͹\F' -Ű'0O!1endstream +xRkTSWFaL3`pl1i:$%ޟ:O_ #B +x"jbDŽLӀX "o@,4L!B$IJk +AE༃TTtL*Љ0T XDot`ŃR-|Hqo L"M%`0;q<BR%!@}$1 .4;!r +Ga2 2xQh :!Q¶;6څdAt) b$ uif4 خ@t"6d`9:t+@n p\n.ՍwЅD"t1,-|&trf'[כ8l# +SqFs},Bt&ð41GGQkQeꜞJڣaxӵH?_]2zf3!cGqK/u׬J~z$mY &j2ߠf_)ٽ4JH;m.1Rtu&Li-⾙6Ucuw 厑[Pӿ|AF{IҔu+]oFQx^-͡'+ƮScdB>]=dۋ&šbMUVKƮvڹO۸3~ g/ v |[`TIֳ_;aF#Hz6)$jhOn[a&_Iq:lV(\D?|b{A)+>pBkCwݙUi> m +lhςejfo6$j:Egg_ww-xZ6udbك=kS +i#7f=o KHw;lnwrz0xMh^IsZn3Sߋ"`=zJsbuQ\e nmBqT[*3WuѪ/>tٿn8:4Ƶf(ڔjhܳC*^p?j3v3>[XƢL8!,jԙQ 3m ^c^D-҂A7T%Qtv+ )"@nC/oWUDdB€x;nݘ-'1jI?=*YꎘXӘoQT矸׬ U~e~h&Ujئh?\ax1sק[8';.MgmGM+_%~WqkSKv2 &9A˾玏#Ӓ;{*̏ )Aù2љD뾉k0hˆM]]pqpu/| t/_B +jմmN2H/?Q@(8Ix +Gvendstream endobj -612 0 obj << +607 0 obj << /Type /Font /Subtype /Type1 -/Encoding 931 0 R +/Encoding 939 0 R /FirstChar 58 /LastChar 60 -/Widths 932 0 R -/BaseFont /RCDFLR+CMMI10 -/FontDescriptor 610 0 R +/Widths 940 0 R +/BaseFont /IVUOUH+CMMI10 +/FontDescriptor 605 0 R >> endobj -610 0 obj << +605 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /RCDFLR+CMMI10 +/FontName /IVUOUH+CMMI10 /ItalicAngle -14.04 /StemV 72 /XHeight 431 /FontBBox [-32 -250 1048 750] /Flags 4 /CharSet (/period/comma/less) -/FontFile 611 0 R +/FontFile 606 0 R >> endobj -932 0 obj +940 0 obj [278 278 778 ] endobj -931 0 obj << +939 0 obj << /Type /Encoding /Differences [ 0 /.notdef 58/period/comma/less 61/.notdef] >> endobj -608 0 obj << +603 0 obj << /Length1 1630 /Length2 1616 /Length3 532 @@ -7533,46 +7561,45 @@ endobj /Filter /FlateDecode >> stream -xViTV%تH@\QJ0 -eH&aJ23X(KYMP(UD(R-Tܠ+itm9s|~e'‚` X\6g%pAdAr`,WX"|0D! XX5 xF ` -,p2655{)Q5'HP`Hl.Qǎn0 `) x]G0I@$E( 1F1T(K#4 @P!+Uf B7@H ! {@aARH-cp-d`$E - Ua*O*IVLL[0\YJGZ -BPPp(BR(MJCN"ef%!$Izǥa*oLeGER1c -):AYY1LErwP5hrf$ JÀ3]0 3ٯ@k!}?]{_vK.%3("!Ұz JoS;TBSas逄"B =S=PLHU+:`D*IX6Qѫt7{{ۻ9łU -Ap:ߪc?J{{,˭ŠK?:!kEHQ -|9\U/O~CH9:niCT AZtտUsáq:&\ɾ_R66mVEauY>:}z>2X#5 .|q}+L{wj|kW5N5޻͛\zW-Fƍ#oɋk0ώfOwFĴ9?030>ftB9U[4 #?YGqx<?np3Fñ OL)?utrcs -l#'eK&ۣVp#)CYTnAS&Jѳ?߯`*X%4齞=v.Mm'Btn0nh|UX)ۛ7ko2ײ1a#e.o&,J**aF ?>q0lۣSO/YX/N̞mDW=Zr'&F^7uwO$1^8@_k*: 8/z1@ܘ7L|:6֎cqo㽟uj >$h9N}TMN-Ƨ?S0H~yG35׼M>蹱eCbGݫgK]2\_[yu\g+ݷtߺNףJSgſwcrݳ3.ghBj<4RS4l^adgcP4ݳ9dV T-JsP lښ9PQlVF4sK?clO̸?8cC/uS&ó/&;?QT;c*6S{j#G'kF8T|;`߾Owp 2Ck\tն{=|q{KI yz^gtݶyw"X-bLb?_+fԄ{ғ}3+WmKGޗגL tg 8R[nњƻv9_t -h`u{Vgqc'92vV\M36#Um]]uQnޮ&/ꋚpdf>|\vݠ(GC5JBuF*7[_fJﲤΥ:BedjUjtJWH3oilLnqqSdx8 c~NIYskǁԂBfweQ3~Oj%`؋24rAU2r' 0@ ,y -׾膻~;yV͏17ǂ; r;Xc"1-;Dލ/1$7vxf\K33G+!.{ҷW 𣇾{OQ $|Y Mohjzr?P -CE!_4endstream +xViTV%تH@\Q@%Y2$0%L,E,&EDA(V*"J*nPAٕ +rqo=wΙs{]{0n,;;`(9+ " vf9L&! +е^pL0S`+=IDCc+,pR4vta@@Ha$^8xG H + )"ΈFI1H@"DYɦH +a\28LB  +*EhS%m!u4#)RH 8訂SyRM"`bR ʒT:RC)e Batl 'UrA%20,&IVvUC8. Syc*s@( SHѱ%0WzT.gJ.„AK3cL'0TDaQtH~s$oF:\*udL@/@h_> ^Tء3%DH$ J ĐJ`B0ͭp^ӹ#TI²)^KG,X= s>&BA8 +,XşTq_E UU:TFAJPN4ɪ@WY50 + o`Uџ?U>PcZ߆:[1xa{~^dVc\uqob'|q:gI:Q>x8w4^aڻܿP㫇^G;w,xk?ZmI32nxk^\1|v0DZ')?ށ1 kGg,4IVgڪaY}<ÓإVȎAFCx&Vy"-iaNw-smj}sk0ywc7ŠOٜhECu  M/lMLL-˨py6aPRpU 6b5%.xgbR~'?wDqbh'_;61ڸ>w}‰-OFGd'&8I#KcPám9̍ys`+wCiC%^BwjcK~/ /YKF2OmS¸rquGv>l)]\kq&tͅ vUf7R=/o4|̾Yܜcc5n(.l)G1dG$9k Wsz +ޕ,B'X{)GV#i8.J[砶K"in̞q݆jtl1>݂A;VGʋ68\`\6E|禖m3 ~,vP|t)ob|moZqp+NgN}뒶9݈*iO +pȞ͕~m>Nv̸>#a +AF8KM?mzA`R~tϖ̾2>Y5P=(A6$ik@3Kgi4]Z] - =u3Փ/htsMTώ>tFQ=ַ{כ:,kBwEvp?kf-V2 9xEOdT"H/'-xw>Q{uۻ3:ݍ`}xEO}UƟe0I|Q_U̶JOT0_-$-)jx_YK23V|b6CНş&Hm}Fk^X|)d$=i9lXYT+ ~UYth5uϸjTHuuJE{-z/j‘"ȩ sy;wr+ }tH_7CWz%u>U*#$SR;TSeyKccrOp4g!(`KvBNʂL\c< 2S΄x/ty {Z=^Ɛɕe2sW?)N0&j__dg1' TE7ܛ컉e~/R'l~jH}a[|Qi)z~|aﵳ3Z9] q;TZ;}ؓtZ$[pPn~3ESŤ%֓'R"(/a~endstream endobj -609 0 obj << +604 0 obj << /Type /Font /Subtype /Type1 -/Encoding 927 0 R +/Encoding 935 0 R /FirstChar 49 /LastChar 58 -/Widths 933 0 R -/BaseFont /MYYBSF+NimbusRomNo9L-Regu -/FontDescriptor 607 0 R +/Widths 941 0 R +/BaseFont /VJGCXP+NimbusRomNo9L-Regu +/FontDescriptor 602 0 R >> endobj -607 0 obj << +602 0 obj << /Ascent 678 /CapHeight 651 /Descent -216 -/FontName /MYYBSF+NimbusRomNo9L-Regu +/FontName /VJGCXP+NimbusRomNo9L-Regu /ItalicAngle 0 /StemV 85 /XHeight 450 /FontBBox [-168 -281 1000 924] /Flags 4 /CharSet (/one/two/colon) -/FontFile 608 0 R +/FontFile 603 0 R >> endobj -933 0 obj +941 0 obj [500 500 0 0 0 0 0 0 0 278 ] endobj -567 0 obj << +562 0 obj << /Length1 1625 /Length2 6140 /Length3 532 @@ -7583,7 +7610,7 @@ stream xVgT떦 H""U RB J$@ $ ҤH) ])RCQ 9u{͚. Q5(BbE%$p7{O 'B@uHSia,Ԅ`a s sHI$)(w_4 436 O;!/Cb@ u@t_0$ oi;0$&pD? F ϥ@wqnah781'4OvG(ÓP, wYAԉu`0<Q,0\0qG@|dh2<1p_aN4`4x_O?uqwGFG p,pts;⿖EHJazyп$kgE@($9Rb9Gw%wSk{"7q u~]4pq#|EajH'"Rbm -c~XfH( #axQ$)75} {x~W.n׵WWoO~0fG]ޔHJJo$:ChRBLBBo4ZHҘ`!H(~a;xxyE/jY*f1u}-6i]a+s0܌pkʶY& vF\)}i4̝Pw&~W)>fd^'`$UNmTe(eܘrVtLLh׈ñcIhϒ$vݖ֖3TP|Zq}A!ȏĐRplOy'w+g!"O TXӶ-"ͱa̙۝,[C|fn#C|y%N#&E]WO6 7. Ʌ\$nqfrd%A e\|+0dYdA@F6?6/p]܋T[קFi "HK*-)=ɕS*3 -pPAcÌ &?l3_gJ)mt j{]vE_;J@II?!7w{IjB gȦ33&l_ۓTvB㖏zծ `"L!ݛ*!գ1 E Wa!|1kKj{f?itj)_Ghu-Ltμ[x+C,ۛ|W7Ǝu?iO~%}]akm-( ljݜ댻,4rW:F8J|kۨ]lwFI1_xHhFM:N/=!2 }`]_ *zy^y9[G=bԛm~ż37fo:ȩ=$EeR=G$iV.$b]|U٢Z{4eش]LnCe2uJka#<8oOcdx畲TB%֝Jrm鬒IXp{feO޲mXL?K<վ#b-\qi!(tQy;,t K>aPk1Ǭ' Jqk-fs9},^'KfI.qHΗl!QM1K]1sPLx7b=0$ey$qIc\YDb9y ̪@Q؁+^o"@# v*.qjO7r\b.G"%N [czξևNxƞUv]e?u+:`&\=I R{OPG>5ewjѥtUitmcgD4x @@ -7599,78 +7626,80 @@ rRjO \i;WN+btk[ICn=W9f'YA=xnro?/dŧFnU:STyV ۭNcf{#ma$9yi߾ݣ ̘0֕ko"΁ };]O|ۄ%N ύ;>1 ~1g 2s0v"L3E5=`Cyrp4VzBW.;POlnxa2py -ljwoHWW*Ds<-[g3Wa1?y-q8\%"7B6ǼEg{]>7>4tCg&Hz`u5IMF*{ŶG'Q8"0Pb)ͫŃK}z64Vo#B(PK7x#QdY_prx ,BtO鷻zD/H Hu΋H-RM1KT.wp?]ɳ5);F,["yx/r=w(H+-OtYVߌJJ_xǢ",#|"o*BU"D% .H|$ S0[g3Wa1?y-q8\%"7B6ǼEg{]>7>4tCg&Hz`u5IMF*{ŶG'Q8"0Pb)ͫŃK}z64Vo#B(PK7x#QdY_prx ,BtO鷻zD/H Hu΋H-RM1KT.wp?]ɳ5);F,["yx/r=w(H+-OtYVߌJJ_xǢ",#|"o*BU"D% .H|$ S0> endobj -566 0 obj << +561 0 obj << /Ascent 722 /CapHeight 722 /Descent -217 -/FontName /UGZMJZ+NimbusSanL-BoldItal +/FontName /EMFPNA+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 567 0 R +/FontFile 562 0 R >> endobj -934 0 obj +942 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 -560 0 obj << +555 0 obj << /Length1 807 /Length2 1423 /Length3 532 -/Length 2004 +/Length 2005 /Filter /FlateDecode >> stream -xR{8Tfie\͚BRq ]hC\c3QbcWhD$\K3;*isTC m syZY{~># 5Û7"8+ȍRrrAooo @@>kK8Pd0q8O\bAD""t*M0\L<# 2Qx<\FB,ż%OV - srSɂ͍b @Yi akq65b&Ic<.0䰾ވ ~R݅" ( ʌp܂ Riq =?*$Γjj$$BqHxWa_  XTBnRxb1@ -,lL5`S9 Fp[(Otq|_`+f!#G+,H4IƤ8I܅;dAPQOiѢdL]#^[ߵOr]q.dJ2}rmw%L/x4'zoĄaԯ6=~mHz0p:rhR?e`ia]0A -K(δߧwbi MϦ62ܹumVU24/}j-q."9L*.btIP#wIOlnm nd6P1n)<דr2&kìpn ȟ?{p~\ni֮C1!B@]d:SާD8%"QLPooSܨNp,f'Kw%Āo_7GKʋM.gSRi=6z:N(86YrFϗ]m0ִmJ:U?ַY%b,P|8b8T$mC&lGWnr s6pn~WZ#W-M4vH[jv)Sڞ;[jy{Y#/dKtr)ꢸg'jVwgvw]FL]_AyN9d썤ՙi=VS:z| 1P2" %jIСSs 1ߤխmg,8BAy;}aȱj"]N%Zdr}V{O'#MrFFԑFkbBUקF:?vdn߰$ SMs ;{}#k,%)_s`$<nUc(0\4\͇87Ǻ첎+:fc tf{Ui:]ҜJ-(]#og65S c,$cr:aьj4Q$q]b v(*Fb.XC"ѳl)F7й{O_.YSA+5x>]Rc7atUm53g'i>| aW㍴PF-7y咬#MRu'~d}-%9/?!@gTrbP1endstream +xR{8Tf42.M͚\Ba5TB31.沰ƘƵƮ(%"2Hiw"]P[6G8жA OmZĊGq< a&e/ G-h,cnbdzA8yM;19vCkk{v߫ʣm/xҟrAւT[]]a޷_=/gIÔt+O-|eŹ{>hC3Z(/M(No*Ϧ]vGR*S:R4$q: BY0%mp`Ն𳻞&r3qiR j{L*vq#8i?$:Sx6qsbE +z1DI_vkH貮;Zfm|k.s&˺ɾ$0CK(.4:&%& S؄qv*)BEHk*U=%@zTlPӲ#>qs̾SoP}K[ޕ"gl]8XWWImȯD߾~_@Ȝ**KN<1t"8nUa03. GNBW5Ǻ>m]xjzEP'NS9NK=g[Sb/.3%6nZ.M= +,mF*AR۬LnRy@Sat{tHs#1C1>[w!-+~;ngp0;;wkJ>a@Ē =͠Py%NſPaҤǭ"`F{M/?-K湍ti?wd{ vodD| jW3ĔezKE3|Ohǫ;kNyvh'v],60B[ɹj[gaK'G9qkD/9HQf-Twe;UB ɨl͡xmfUk ԘSv*(I#!yHf+Yglq9W +k_|P4:h:kEׯ'LvEn[ISQrX=;}B7fRw]Tk o[ TW(dv Uw!}dg#R͇+~qg$A-`@GѸendstream endobj -561 0 obj << +556 0 obj << /Type /Font /Subtype /Type1 -/Encoding 935 0 R +/Encoding 943 0 R /FirstChar 40 /LastChar 61 -/Widths 936 0 R -/BaseFont /OUJFDF+CMR10 -/FontDescriptor 559 0 R +/Widths 944 0 R +/BaseFont /KEHHQH+CMR10 +/FontDescriptor 554 0 R >> endobj -559 0 obj << +554 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /OUJFDF+CMR10 +/FontName /KEHHQH+CMR10 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontBBox [-251 -250 1009 969] /Flags 4 /CharSet (/parenleft/parenright/plus/equal) -/FontFile 560 0 R +/FontFile 555 0 R >> endobj -936 0 obj +944 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 -935 0 obj << +943 0 obj << /Type /Encoding /Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 43/plus 44/.notdef 61/equal 62/.notdef] >> endobj -557 0 obj << +552 0 obj << /Length1 1647 /Length2 7179 /Length3 532 @@ -7681,192 +7710,198 @@ stream xweTݶ.w)Pܵ^HH@w8N)Z@ѓ;{3{ϟs;nHƻ33\Zseeí!*pG_uvsՃ;j%4x njಲ*@(D@$0@  $$$pYp'/ag/o?d+`C>CNI?ԇ@;(j똨i8T لЀ 0W'pka`\y\ " oqq"PW @@n 6?9H IwE\N2_u"쀈߹]HAz -4H\'w.k uurz!s#ɜ\pslU7b t;@\]4H߻>{ןhEBlxq9Adn[( yQnN!.6Da^0O @pTo"E\};y3Y6@@Gwoc_U'Rl e@=!`(d: 78@a7 -VC/n:3}flL?:S0r3&o*'G@T#(Ə(!(IH_kM  0 o40#00 3 c@ 4$2-3QCUɬ]7̩]~`s@ZDMuoð]ԮS!yt~̜$ĸ6, c}&5ME6VY`>nr> dv$c9w"#@܀BZSǖ}q=c+'U-&9V԰CMቌ^ytᎴ_-(%KmR$4f)*;H:ъ͖"ܟӾ_>yp5r-П.q,5 H8e> ($Oќa06o,Ϸ3Co鑳UG=! -)2*:^\ӠE 1+mJPrƴ1l'g.:FGBFLL^؞uD=ĦJ5 L>Ȏٗ)eR e]@:χ'h> -eWCo{pI3Qu@;}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~72)/n%G>[*9؟DSlbHIV>FEy//i&T#m{v{ٽ\-h%Ʃk!H4M>ʎȬXr\[ veP YcY^E"gV;(UsBo[?y׷N8 -*)׫5OBrd=jr xfӤ4xms$ec;븞֡/%Tې[TwCkDr.೥gt$91۝3_Zp$5-3 ҙ7"ޕێv/ћz8=tj/ׁIQXx4ũ@4'ti3G}!EICzJ/o1wRb50Mc♳2a2||/f/vb} -W-VEqTaWWU\+^:*k҈PԔ&k&;ݬPk^|LjYOw OkӬ{Ԫ?&¬8x b={4NeEj(RQ myLVozL3Ҍ.BFjOLzCϷB>* JGL\MK{ 5Tgi:Oz뎇Z{4TkJd~^O;HN -űe=)(Q+JGs2Ao rbTQ#¦ash-OsCqZ$?e_5ᆵ^x1w~*wPSsx2e&L ; ^2s%h={%h3mK.jԩ)Y`"6 -xy[Vqe,j:Pw*0e .1|@NF#nuH -~*xppqX-DAmpk)4ql5DXx0ƘϘbx2kcT\,aZcėZ8N_fʲ -D_0,e+<,;y!FkdH&>A=#6]+[>}#vFKa-cN5AJ+*y&k$/)%e:CI}_WIDV6ގ>Kz#^iLxP3]_YRm~MM9\\{B9h/t>,yI79]MkFf|缜Żh家G.^QhKWVޢ,O rw8[Kٌ<~d)t%4ڑM\:Qvн -WA\?ebt^DO[t y%gBrB̓|X,ˉa41Ĵ\4Zj"6u8'2$JWsf|4 Ca5B rRY(E>HJȜjp"j\{$#K؃nKNV -)1d&8ic|*Fə'˶MٍhjۤE[E~_fQ?JAU6K Z!"qלj{q'E1zsYd7Gha {a5zeD؏d؛:Bޏ²Y{('?TQkL/+$~ #{kLN*C5,T$cC-lCjh2,}m _ܡǑ7{Yl)Ky'z21θfNJ7hZUcjMs<3LHs,֊o;ZK)KkshWϽG]vIQȻ>u]R,Vոǧ͒ĨW -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+#*y޳M],{3pCċR[6wߪ`ۘël~c,z)8D -s('3o~Iw -K[~QV=f>IuTSfuB1,aH9ocYĽ E 3tw~% [x%JG3(_Hkz{Պ#$o :F_$'"8 ȵ:l=,*x>h|Tv -|ueVKS,OEX@}ȼڷ44lVt%Ӈㆮz訏 >❤2a^&f/Ԡl- 4*/\OEb0k]2Rj_jQ?ٵ"ŏpaʨBxxׅZ#gbuX%!9_],;J-#\RY{_?ڈms"1Jz;isBHFwDxfDFυ|&?,KJG4e&6x4˺$XQNO$d);["^v!Y;z]X!32 ԋZLeGZI .}Kz"F-*Oɋjtzܔ;"U>箥 `AӁK~HS -J$pdзKu\Lm -5m4?|Q/}Tb\b -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[,l y^a!T>"f0wngb)ٹwM[k }vA$EjꉣLZ+7.Lɦ'b΋Ρ?mM 8O2@`vtrҙjg(ݼbG9ڱ/7{ЪO"aꄆȜܵ>L 1yVnãڒxRi -Y oӁ쵛Fl#X/m/`y{缵FV'jhM@u:;gK)\$ ܘѵSx?_wȲd{O U˄ܕ.&yp?>ɍxB~q~mm :V#z-rb[f׵B ĉ6hE*'9C2;03U%$j Q -?yȳry$.Xpk!`mc)Xq%w`EOZ<ӒtjJ9㥽سϊz ,@#S<tK~. 8vRf23?,^C 0"7RI S1W\!JKG'^27g!\]"ɩ{8Z|q@ [FEC)HK6x9Ec(TW{2okI#P]C‘?=f~Mb59X7|zl^{->|7w+a"Gscӭ,@XW~`x `E}%3=,1_#Zh^F!?FZ_qZǩM] lR#La`V4{./Y'&7V7a>\ITk[YqHtxC)i O퉶~ܨk.U:wSۭzވ^x5Xd+N]KW=X}Q>W m/:MDat өu),3OOGW!&U,4G$ꊨ&行rI> h{pq"+sn35*h1z װGѐ3g߳=3 ܘw<5/RjX-O0 CR6cBGK覢F+_u,n0 `]p2;ő n@!)cKھ8g|ѱN˕*NC+kjXFcDF< +}pGZetƥ݂6)uus@Νf$JahEOfKri߯ +<8_zOx8 $`[v'h0YL7CGzۙY*EF/m_Q{iP"ԕ~f%(9QMcZqmRna#!Lj#\&&/l:bS MDqi%ZՉˌGLo]LYdG˔2?`tʲ. XC4ֲޫb۷=Fy\K幸gmUv6|$+NOpui[H1>\U0KR +WHhPel#4䱎ǎ4l$e!X {QkLd-eS]9QE:0ͮ+$=& +F%e%|heͻ]Zu3>}U|G7qq=&C%p"y },xvVRϤދ:> ZnNxF}UpOUϞf >M bLk9ϱHMsggTğetg}_Ȋ]%KFzgZ[P7قuRslRaN,9 y8^?hߔMo;Gf+m .vfuF.@6HBz>2b&&7ψ4pwSd^a&L +y*šr< kEX +xw 2Diԛ;lq2řHb}.̬%#-cӋ{[\^O})vDՈ6D1$$y +Z< + 4]F*6=nW.ˋ$&eGdm,9G.-iT(g1Yzy,"A3M 9[ +h XxIF! G9BBJ~et59exiRoܶ9s屝u\BЗ\*Pm-w^ϋj"H-)O54tω^PnHj=&hy) ˜{xzK>I6A|[N 1K817K!Tfy[p.[j3<Ĺ5+/sL0@ɿtAБRtAwSӒy7‰/wTI*ŗ {\3 JÜΙ/Zn-chjh8ڀǙXfmGJzT =MzV]K˗@Ӥ({ G"EޤJQ=㗷;)` }Y0 B>ȗDi;>+zRa^Κ'9zfMSڕVBہՓMi,wsȐQH{${0ww+D* +/jFāNi(jJalnV^|l5/>&x5,Y}wקg;F iVo|DjHvzDaVOJQ^=}HA B5 )RD6 +\| LE#ّ7:$y~e@<|8_l6j8",Y<@cgc< rIt1*Z.rPi1yWd^K- /3e "/ŲԕuM靼BOz2tj\ͮ|߾K;#0M̖1AR缋 +5Z2ءE$"SoGnn X{UÏe&<ыGx/,VPWEthe=|k:}K򼤛Is#D3>s^]rW#VT(+ +JoQQ;rf-lFdw?2~LjgwȦ{eY(;^`b{^T}Hjlƫ .ܟh1:g-:BᇒV!9[ArQ,ذN\spQGbZQy-5fW+9[3>mk0֚Z!@9,Ȣwj}IT$%dN~k8q.KL}%s7Tk%k+ ZgEUsn 1Y>#Le[٦Hva4d{mR"݀d/k +%~ *Ih kI-H&LkN5ƽGCؘ~ʹaq#wsƄн0Q2 WB"G2hJqq^!Aa,Z=ѓEtq5Ɏ?&a?腑Dphy'*siE5~g4b_-vt";6/m,U=g\lv'%V419b&$zWweaZkm7Νoĥ}S^ 9pO+ޣ|.;Ǥj]L +׺.)\}s߇j\BfIbTOk=F]5Y\~mGpyeX0)wPu+tg':. .1n#:Ǣ|;U;s8-kZᜒ‡ ٿ~{AwMW@mTH`7 '"Ǡl.u[½k`fnCNm6ϴ7Q.Y&)2%l49bG=H*X;J>{Bxܺ% ékI"_, >Vd^[Dj{_6r+p:qCWQ@ s=Bit ND\]0_[t_jh ["qD n.VWl5 +D/M5ĨןZh}8°CeTB +I%#2Y~V(Ȁ>*U{JGM59h@0 +O;̍ {5Q&}ADdSCd{EGmX~&mcN bzp0;~:qL3 n^ +~؀Λ]hէl`]0uBCidNyic +&@ml+_cw7QmX<4g7@nM#L^,Ǘ}{6܌XXpRRsZq#NJ_T5&}biPB%.x҅ +WnLSfezG)r,]ΘŖXH>Pkv +-tb zI}a˪p b8O+,-sIr-x6 1;g#ƌ"җgNԪZ WO&\3>HӋTO)Dw+=9Cj-zZRM"[“w![VOęےC5ب x<d<}QUy{oοUH6ޔp,8~;"'-C_} +iM:jk5lsL^giنgI)Ln:%?pJ;m)3!݌ScjmV}+/蛊ߐ .=Gh|->8@ vgoHH6Un q ^' zB` Kc.8\ʳyk2HICXE%.F얣/[я皆&^ 6p)D{TO$&mWEIQ񸬣chVJ=ˉ:lg2f,q3T˶ҿ}_J`z9s"UrkYT#{M58kԤ̇':2OY;.kjxK+]+#X VU)Zg,*ϿD[Ըo{eV^k665>iS뢡$iX%ۊSnJ<ϢϱMVY+=zXq5}JZ|k֑{Bڏ!j֞3|&rJh1>f6/=[;0#ֹH +y0d<0q"̾˙TC-Q4/~Տ#-I8Ԧ@.Ne +6Wؑn|Y0U0+z=̬x0$r58_:L dʴ\p˧D[?bnԋ5r*t)V=]oW/r,{^^S'̮%]S+Վ +@&0:Q:Pցr᧧ԣXKb*#uETwEwTFvuԤjCS=w8W]F=Ako +wh dbٙn^N;ʚ[)5x^La|1Px*%FFDg/P "\67Ԛ~!)e=6N!IAI>]VEe8 9\|M KuGA)}xc^/I'@ tG_endstream endobj -558 0 obj << +553 0 obj << /Type /Font /Subtype /Type1 -/Encoding 927 0 R +/Encoding 935 0 R /FirstChar 97 /LastChar 120 -/Widths 937 0 R -/BaseFont /ZJTEVO+NimbusRomNo9L-ReguItal -/FontDescriptor 556 0 R +/Widths 945 0 R +/BaseFont /RCVOZF+NimbusRomNo9L-ReguItal +/FontDescriptor 551 0 R >> endobj -556 0 obj << +551 0 obj << /Ascent 668 /CapHeight 668 /Descent -193 -/FontName /ZJTEVO+NimbusRomNo9L-ReguItal +/FontName /RCVOZF+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 557 0 R +/FontFile 552 0 R >> endobj -937 0 obj +945 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 ] endobj -257 0 obj << +253 0 obj << /Length1 1199 -/Length2 9824 +/Length2 9875 /Length3 544 -/Length 10655 +/Length 10706 /Filter /FlateDecode >> stream -xzUX\ݲmo]h  Xpww N 4@pwݷݵ֜5FUYi)յX$],A.PVvA*]YEdp<(`#?R,m}ѶX@vAv~An5;?] u `WH puu5A.+  A@M=&&Y8>D w3u rtq++y-/_u k0@;(UjcuauA^qrq/kc>lICg/gـnÕMRWʿl (]rJ -ll -ptm@?w O -ܡppVP%HjcbF^ϿU-@6=Y5{JJҲpX8} -p;O-[VQ*8۸ҫlqUfO~U( -ky_'q=! Uw2/U_/_ʀ( 'wG=?.;v g[GF,dZcv)늿pmrpߒ8[XmZX/yzZ" BYZph_VċewkWŃ%f_С;?5GZ}NN&,D&A@ 'V>AXU-pqb a)aSʊkZQIl0@[ý}75D*d5y Ac騊=ͳw􊆨78U] @ح4Ľd:+Vz//?#SLȎƏҸȵhY?G 2gm铩^!hR8*p̣ W2Y`zY׶SMYnGDo='yd^^as03I1oRj|( - \{_!k5*WUA[UEX`?:*$]3M Ol ]^NOd#ߦsѼt:QvLbUK>\4-e$09h<|<<9A^S\[@%H|ppz_HWx_dEIa:d -#`ǟQ0Gq?>Nuv,| ͻ&$I74m"WTp}H9/R;YD1fb1Q^{?mgJAIVYm]D*e);(z/7@^r4-zF/=Avg/QEؤ %%*r DNqf ˛oX@3&߻œ`C7z-XT('Bb*}LWJ9ǖp҈vj@._d- CCRMQݴ3$×gǏ;BwsQ+;ڸ^'cY6yMJy/}0Nx7eTMIjZ4Eڑ~}B,SnjX~#8DN X񛹟 5] -?Ln qN.ԔvHX.O"s=Oua3;U-d:mKgx6j/.~5x0jblTU HrMci,ԺX +LdƪF'6K[^λPhk(BU 1#_cc %ʏ^ܰl`g,$Mzx2ճAB:*)YT+ `zr$^$%/1I -#tWc+qoe✉P.+YѲHxqW{)Lt7b3d7$A\s…5 -B)U:gU -f]&ɱ~|*ɼ${9T-ޤ+\>ϳ{tvW dQPN]^lb=PȨ,BO?sa7Hʘ6k6* gIAOO=|e/#2 G6b!e2=Au(^'oGo/ 0}G\au.mNT.#aګZېݤN-L>L*p ]4T{}JAN[`f썉8YmzѷL9tqȧ侉^5Uއ盜<2-ժR4 -8׵v϶ LB (?FRxnc?oT0~[K!{㽗+0od n0c8NDQ%mok,(G ,iKC19]T'$ɝf0_(Hc# z"c/!l,kڕ 2 z ⒗J z)db>hWpUa|ށa -#0{r}E1uE7" ~)fC XsiLKRLG:\F?}Tv?Wv}ɶx3EҲM >AYRg8L`qDaVfH@OO߫#c'hLǎGBe=/C)K@LCBif֘pV.JϺ| |k#N夳Q*4gę\$Q[A,7(Uv?;QX~eʅ$, MD l?B $7κtBo -o_-\ANXe#9 nٛlVS~0ָ0 *4>Kz@zgX(F-4^ ,)b۸B}37YKLb<!p 5khhxA%II,Ge3dkbrmv>_ XJ gc'e=47DƤ_qY,‡wb[2ܪiK (~%w]Ʀ'ێFIbWb/WJ~wϠPl6\NSսz -i5~|X$J7"`y[A%:LS `];S7 rM?soYWk/uF%K4es3'߆U{_GSnlk; ak  l|s8$Yco{IH |! - o \s2mY7;X_~Z推5ŰCP} -8|J5Htph > d8K^>zc'~TRvY?̇+$Io"k8Wc8:LNZΞ`u>4ZaÛiJ!JmhPɓt~Eb.k|\!4{Ğ/mf~4#!Sꎸ- EJ;噼hxOF,!B]@XzX R5K8G}'ESǃ="8Z[/qK0C& / r 쌇 \ukn;ܛ`d vf$ϰ#[3?ulMPDglvQygޢ6-|" 8R"$/6-M4s8a-h4m|Dֻ&mb֢6:&uMFR*ne]tyj1z QS -[8!4s7ؖ1GKnNtRJ`yggnO(5)yPbSЩ M8# $TL)OfǃDp21vHKN!zǀ! _`œV$"+?Rc,9Cfh.QM=Fn*'x8N6#g6"^ZۍExePTAV,M{nPqI%12BYJ#[ݼqm"cu6rV;] zXѦjڒx{+O( pT U~[b\K5 b¹n*v8v@Ћu:k$C>2JȘ#W[AMp^І -!۔}nZgoY4 -qZw[PW*d<&. )}Ӧ"Nc&}A)SlkݐYF>o5W-$|&'';ĥB+ kHp%񇎽v%G&]6%"N tņsJ8%#kC8rʼqbmϜntE1,3_997<#vj4'\F_s@C պ3Lƺݾ#5NԖ-7k-xaol]y0>4>YC#3#Ձ6Q,(Wi3gYCҤrUKX ]ɒذ#PY&}ܒǨi6$h!Yό)_R ?=mz5sțq.8׏3 ƅe%LLX$du%H2OidN5 h;$b?G!#|\D/@%9oFaZ,]y -f֭+7ך(~E7Y{C]?46q;*ZRpunMI!YrF©cRЋ9?nٛՀS)$]zѷR]>PwdcRCZ ]bkK -)u_R[{Gk򴐆} |\8ηRRI*b˅v}!o$`OI{ ]bB5k[o0#ot7P9]]ٓ܍\a\DL nT-Dճ"Xiw+h}-1&_r3 $s9NLq[i\}X c7"ŸU#p(xro_Ez{ѫIP/վ௔A^`'!l(P Cx+x^,\?4$$n20*~OPYa\x0o9<@Z!9pih] FE>~ӷT'(ix#}cCfaur&xcN3' h1f)m%v= -w!r'f#[Әr2掔aliNpe趓jOD-C13G/eeo7b)"$FK+O[>*qq0v;EL8&3MTj W5 )˂uosd"f& -&XC R<( B6nqwq\+5 7>g{ -vR-ҩ+AQe髲2߇Fܪ=Q6QiˇfO|K{!`WcQ/%AMc18+6p03)O~%LBgPl?W?/&7/F.Q=;ŨK=PisuphRpk^? =JJ=:щͧb qcgVFV b%o٣p6談8p̖LvXR!/hQ4b'm*C6%$ެ1cyKG t_4zfx#Ӕ_~hz)S y~HJJ3;TRb$?2G203[Y桚/GӚsȔњgo:)/;!@ - Y CN#ݭKWItQӹѮk jȣbd+EF͟VEBGYR$)zu!CnDGT(Xs\oo=Sp#m8ԇjDžLj\il!k S"/E{1̉]KIr3R -b:0\0@%jUFc9汹1-+Ue/xRc9sg=޶+5$ly}ۤwc-NK8U.+uG5w =X\tQddEzQ"2xJIH'4"=Sf&;\ D/NP:EO#B?V%XqQZ V{Hvg~QObs\zm2ӥto0_/$ ~^Kvu¸i\fHBUq2g,` =TXd@˩)k?gjewlZf,<ƺoD} PQQ@5j#I?Ml(="r!+L6c|"6'-ϸNqpQsDq|vڵթD?o'fBQcyѓג9X (}^,{%xC/FK;%(8AWێ/ܴ&{q`/!)^/0j8߻R%? -aT1U<;QfRf~4֎s^:OƔ!G0Z(iSQ 5AQ'CLpoF}MU`"Dwiefȝ} ԙgJ/3}c?z%$? ^VMZSN#׸S {HYvXEd@r "kIBm|QZD!cғ7:?d)e`rHTMʷB]Xjw-WʐWJ@g S=2%r .}m~ J psʫ5D&@HkVhGgo&M.fx?ȋy u0@Q{!adѽu={MM{c!3ݞi] ?5oJB>0KAn:~M%X*N#SHxzfH]xM])ٓ7-N eXbXVk*#u|D[͊zle"n!eCǾ8(I -yp4ew380'Z I~BM9fe3n`8,FP3&*OwRC^-?A`@], (~;cQ~endstream +xzUXݲf{pM. 4NxpwVmÎy WX&:%TjQ{u70rґ->uvb-ut(;mސ{ o)aGT6NԪodשpNdb֔c2CC4͚>MOgDa},3IQhoQQp]|G(g6s"F .{]l"hɛ\ +jN5Z[k(7AG 2c@j>mfO颞0 q +oBrV8#JLv+dLyWܾrd> /yKjhFa-v\]O >dHEЕiD&ZU_D(7n߬96,e{1_ ;/O-if~1>mJM\f˔$@#kȑҗ6`}"BY&䕾mC9*$8V+KmوLY}^Q\AyEύmi>)j[mWWqm%C?b\}`Ҏ6%<Ϣ"JeY~ uB@l ќ/<5'4v:+@V&(l#z-l3pox ;p+H6xP!ck +Ս L6DuR7N]F=igb [y3cv6nې#w췫tYb#B%sV1b$V>U?!S =20LnsسU"4bɯ-SomTFw˥NvλAGN$qȿ)jHPVoy$Ҋh۱[ WJ,zvPE `?A*C)K3lszYi_ɧaVTzTD<]YVEf4R !KV)ԯft}r*bǰisϵX'WM"_M挦%.oiL> 5/TsdwbgS|'#6%'#6jVoMWc[ >W\ܥR!`Ik`a-u~MYdE|/v˰z嵳 +=9ݦ:b ^LMW=;pRYB 0ljC̻R1Hel($kf8+D?"$HPS+s6c %T:3CU)FK07Jz|&U,ߥc0dZ(Wt>W*K!/o%R@85WJdxu-$cDd`#O6 oN7PolK0F٬(;E&]]>;ɹx\i~>h).. /EIDwVxA%q˺\]}zK% [RP UY} &y;rg2hFn\hSF4QpKnƣǬeH۫c&UNSS4!0[g& ݠصPϏ&#p*Kpą_HCy=OTKט(iE?h*sp +F|Q9瀤a@,,GXk{Y|P x rϏق +^sCnGۘRN|+@fφUBȎ.Tl}0<Zl'o&!rœ,!&>Fe3̂տ`<n@%ʳЍ|SgUqre+X2*t}Z6V|Ѐx&rgJu}޽]C>VQk,/Y&G)͋Wy;eA*n{fʙFFK>g itr܊ vSi;- x'I5h,-tC~(˶\QDfރ>2_6}SMZa3*Ű{{sL `2?5?zʕ0PDt՚3qAg/thG(E5Rw:R9F8^dm*"*t$ς71f$[[q )ߧ+q/7&E#@uJ&b>RjvZ Fͥ|]L@ٛr\ v?_(&O.~et_DUR17FxM:ĒF?Hh0IҥulgĂ N>.8Dƭ,:sZQۯkwhz EX# QKا2ӄrſ{2Zu$`{-\15+ei?6nydꙛ_tXgBDtTaVhGOyP+V[]u*qP1Ø)u O^?R="/-KD~ O/ˑ2c)*yy@ +)nZyT>fI0xX(`nԥU{i;aݵpAO<]QUl+O3C͋a%<}#(ꦞ? 0ڂu ʘ-"͏] &C;قiڮ>%ϑhJ݌T&jq#Q~M%YCODO{V^$U z +yRm#5zjY1 +|dÝ=C2)S?$͏+ߏ<"WbDC &|5Q8,[n`~H( WAYe?G'/R`?h!7{MYU 2-p1=Hخ3JDiAl񃳫7ph-R*N),U%oTȥZ\3MÆ}L{NkgQha0 '9w-Y{k3 %NJȤݪ-KhM>tHҺLI@9*Z=$GȎ DσÐ-@*n1kYtcdH: @LPly媌=yBԖ*Lm@W4pI]/ClfmGw=bi"S#sW1&'-dʞS>itTMZ<O:yk6E^chπ7Ϥ̀ ~{J",櫳=B+L0o$?qlLOgQ< 4A3C]{p3 d`gW;2û.BT`r^%@<鮂/\45W-[Fh[>9&Y-2 +1sGŞ.l7ϯtZ0xCP1Gp^:voD-qX%YV8 mAp,M}PfL cj_51\bwT|AXc%:J PN8$CK1 ) #嗋p?~PPOQ%wHKX'_b!cU= gC{/СeIb +/.F-g, /ު^l__|h$C]y 2/Y,Ϟsj 7t]`n Z䉖%˯z{aY&H;Dz~+l]-:i=r'k^8J9INS#^N/PF23#+.U3KW%aГjqB6YH\}3̛Mkbߜ B3j _Om*yȋOeK#1#B1$\leC]LD|=~Q:./?,)'Ox~Sfr?+!9>"a8&"vۭSiД~4$IӚaZOV1$*[ \E+J2yIYcj}}/8/ n2%t {Y]+:FA!pI¬ +wc5qd|0l*vTƂ ԣ 0J 5-V<#[RcW&:Ն+ e @wd͓e)Є>rXd +}wGT +u8" +?ipß8Lǽ#~#ieU(hz`锘Gt&8:yFy@j +pXǥķBFNȀpS% qS4}Gj5(dZ;0Sw`U؝`y!JPW٣ؒHBQN~d{{$2C/uO*D^C^ڹȵYPdqBR7ק%+ܴ)tw<t0Sc`C2?h ,b907)XrX7#gc Cw݅ke O]w>fv_ʘܐVl?Q-'J.Q _SihYj/^1y/<C/h֕:K\dPm?zڊz<|om:Wb~ #ʌ)uIT !F(z~%IcSޣ]+V+׀/v_*U1N>t~ː%xsWxAh%%+cNꪾ?D$)xe[ǓcqϔW#WQtIRT$*7vhtn7TǭlۡA\FsD8S\+s^j}zs#)+#)%p6Oz\V 0,qS@dSB輋4[(pE|nofQS A,5TSsʈ٢૞SǦ2J/Ev{|=Q +S5—ܼzfMyz]x;!CUýȉ!d֟\o[MSp9+]>.%YKcJMzi"d/%m8ZTݬXN4={]6UQt] +P< W i` |fc2V0>ׄ=+94?"%\N(}Cdᇋ&ztt`s +C.瘕6wlgoe0um,0F(X+&3 +e}}a=ȿfUX)ȚJ[^J[Uzɑps㈟`<%0^״5d$b6+خJw &V +WY%'5":yg]M/ L. Z3.w~ے/T("+2T! wVWIn*ك%VI" &Wɬ9qFjE1/|97'bP5B9n х8ek4XN~qDDvCT4G*h/VIԉڶmלYsRHb켤!l/X;ΝNvgPLlD^ ,drMJ6 K#Ì3xP,-->Uc[^{u;RY muHAqZ)m~G;蚖n81Xk_z1fq`PPG+efND3<+pq7lcY%,Z]Eȗ12IH7azT}>3l:Tntou1snnpӊ;^1>w_!T>ACGl~+0Emd/fĻ]"{~ٶ{7\(bnc-ˋύ|_KH>KL h'[U=D#}/Ȗ>=}Z܀qj`m┓.ʷ/LP%Qjt_! |t}7Pku> endobj -256 0 obj << +252 0 obj << /Ascent 712 /CapHeight 712 /Descent -213 -/FontName /MWFMYO+NimbusSanL-ReguItal +/FontName /TMXJWW+NimbusSanL-ReguItal /ItalicAngle -12 /StemV 88 /XHeight 523 /FontBBox [-178 -284 1108 953] /Flags 4 -/CharSet (/percent/parenleft/parenright/asterisk/comma/hyphen/period/zero/one/two/three/four/five/six/seven/eight/nine/colon/less/equal/greater/A/B/C/D/E/F/H/I/J/K/L/M/N/O/P/R/S/T/V/bracketleft/bracketright/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/bar/quotedblleft/quotedblright/endash/adieresis) -/FontFile 257 0 R +/CharSet (/percent/parenleft/parenright/asterisk/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/less/equal/greater/A/B/C/D/E/F/H/I/J/K/L/M/N/O/P/R/S/T/V/bracketleft/bracketright/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/bar/quotedblleft/quotedblright/endash/adieresis) +/FontFile 253 0 R >> endobj -938 0 obj -[889 0 0 333 333 389 0 278 333 278 0 556 556 556 556 556 556 556 556 556 556 278 0 584 584 584 0 0 667 667 722 722 667 611 0 722 278 500 667 556 833 722 778 667 0 722 667 611 0 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 0 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 ] +946 0 obj +[889 0 0 333 333 389 0 278 333 278 278 556 556 556 556 556 556 556 556 556 556 278 0 584 584 584 0 0 667 667 722 722 667 611 0 722 278 500 667 556 833 722 778 667 0 722 667 611 0 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 0 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 << +216 0 obj << /Length1 829 /Length2 995 /Length3 532 -/Length 1584 +/Length 1585 /Filter /FlateDecode >> stream -xRXuO{$D -cn *dvw'ݺC$pBxz%d (!AMD5;Pzys廇+dă(Q0`ha0 d5EK!HJg u, L@0"Pg h@@Dz6☀#P(q5Ar* -˜A BDp,`XB4z|Il־A!/|d8B ` YhV@Y">2,D) [FHa@nU,Ö֚$hZ! A?~@٣*̟~diSD/o :aŢQM$3xzcnM8iD89+‘k~iv:ҖՌFA{jn\N箖Ѝw*-W*?9Ƃ i}uǼRj^ۋ].<~Ҩq[sߴU}9Ѹ==`pw¬wt5]|t-)#\c*f aOٕܝ./a?:gtz}.f\S˼v8ҿ&9'xIJasIyo>}ޱ+WBJlvo~}K[~Xm |V9ڢl.[:~qΑ7Q -9gW -.Hecw:\Pw6t7W$_ҿk1ix*sI_]$7 -$) . *ʮ9*5\7298:I{gt K 8gcf߱ -,xensR7+ 3wMչ~eua_n`Y%4Et~=3E Í\Veu,)M휻1hF   P E8c6endstream +xR}\uO$9Hp-b|&*dvnncy0 \,O-pF& (!AD@gէ>y}{KQJ<"/XKA\ C@>?@H` 3,X IEbP:3M0+` I dZ&Prõl8cF"+ 2@ #TTQ@ g)#NYQ`+r6`%b1 Wqa; g76h4avK#ZBc~ʠ:@Na8MŸa.f H^=I`„cC8Nbå ʣF-|סdBr_+f] X f+vذ 0To@h1s b#HAb &VP@R [Xk9kPK :Nc?G'T ?! dQ O6 }LI^%cu°EQM$3tzbnM8i9Os|$%Ԗp8ʖ1%+D{Žk s?tvm]{wSYE'Q9ijO +q3.y{Gy;^Vӗv{./vLѡ{L1cs.\sm;GO_]glP-9*cC.ّ+ ~իM2flUz3S^Mj>s͸f)>S&x0;m!Щ|N uVC>#w\O%)/Fp gUZK+?isjfSK@aFez } 7|O_d}ake8p$x`Hg{1O.WbFI5_,{-_9*ݾo[ޑsQ~^ۦ Q s Mg[uP}OF^SMr$j+[6 Nxzw*_{40mzAvnK@/sݢ)Kqow6rj2U2G~`kfaHI4(in%={j]};Ѹ=#`HwKt9+7vlϭ3\+"JiOݕғ/q?:wӱ zOF\˼y;`}snI5H紩#ے38?}|md΋CKm/l{}w#ooTB?=r+QcQ6[XMWqvNH5lB~Zyus(.Rlk;Z!?q '^X4[sXq syu +$0JRRT_vULlc5'LN%;A9_vx\}'m FT-b.<$Y^V۵`kx >'J? cendstream endobj -221 0 obj << +217 0 obj << /Type /Font /Subtype /Type1 -/Encoding 939 0 R +/Encoding 947 0 R /FirstChar 0 /LastChar 48 -/Widths 940 0 R -/BaseFont /WVGUZY+CMSY10 -/FontDescriptor 219 0 R +/Widths 948 0 R +/BaseFont /MYKDXQ+CMSY10 +/FontDescriptor 215 0 R >> endobj -219 0 obj << +215 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 -/FontName /WVGUZY+CMSY10 +/FontName /MYKDXQ+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 216 0 R >> endobj -940 0 obj +948 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 -939 0 obj << +947 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 << +204 0 obj << /Length1 1166 /Length2 12740 /Length3 544 @@ -7874,7 +7909,7 @@ endobj /Filter /FlateDecode >> stream -x{Ux]RK-fffbfffffbf`l1zܙ;si۪:'#+23NOMA l`pwa`ad(Xٙ:1-\jV. \ o 2Xyy9X(J@ $`jwQuut\A@g^*@deaVWѤW` tPYmBhi\%scq3+P[8219.L47u/Ĭ@@?Cy2n667HfLVN@iJBW`feaf@SKJy:67vtp:}́n@ }02u-ÿ<̌,&m) Y""(X 򇑇?t[Td#A i_u9σGc{ W[ۿBw9pRvV <.ƶVYhdbjwCe}@%gd ˿ajV6@g?g7hoo%M̬-.\i 2g/#ϻ؛[i"8X7t?53β q?v%aGgT$d/NSӅK ra ŀ$`lWErg[MfKmxPixʸ98&UƫEb"( i-}߳\T5gLY[Q Gh*Ga'fZHcYEzR3,I5ɋO_ )ϻ@ny+N>٩9'BYtɸ6C2I@(#/r<=?^Aw@s*0B8JꪋXDQv{SZrRo=;g57zgÏ"YPK@~Y/IyY6T$(np)/UDq_>M_\Q 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_lT׬b9*LuS&Sfwx fϡ GtY!q >kLswϢWxnA9UB; r1=8 j2/7k!,"7"hwM ސ5T {|0hJAk@T^y)˫~\O;ƂG "5Jhǒ O[Q7\{xK7 M1j?K3Qk2L(G*6 {S+4CU %DS~*bݾv)\[7pjF3ZVNNeX3Ƨ|/>$zj:jq +8FXǼᅦ5E%'!CgfYKe/x[,GF}=DTodS'aS4\i @@ -7917,35 +7952,35 @@ D6 zrM7'c[L!?%M8gq3HhHJФe#/kv@갆4~IkG?rJeDP%P Q1RÔKe?ftR ϻ;oN/]tG;'C+~+|aYR ݺ.xWu2lI?J%8?/"+qQx }ʚe 9icA^@;Yw a2HPo+a P_M<ٞ0O8vr&D<;MECӖcT٨3Dg[wDoo/JBd>uHP PZ&8Y@dcQ  Xd'$Z*L qwb49R Nw=|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&' _xy׊1Kwoh(Kf*mf:QzNm̉)nreK25 jcsZmX_mVqvo{`Ç-\ N0.Z\4lFaU50{1|Iw1٬ w^kZslg'U8S>*rkA!ӤV]eAy'#>>۴g&UKYHԮB3ٚ~bC'M)}~5߰==_H{Sݶ)cQle~(׶M1&AB<PGRôO$3WO۔uj9&M[t/H>DZ87ԏ) .˭8ROzCoߛ@w9؈LDce(qʽiq_JY -vC{LA]eڊ |>y{ ${ZW:wMs_|zzjC&+\oy+&Nt 旳 o<*i5iR/]o0/ #ci Ld\Ҵߊ~m0=b>`=$d+"@҆}7mazU3?HĹ3i`'D|0|C,˳fOl2{0`4/)@Rba˥˷ ဥ1#+i):}W'?㷜 M0ugSAJ|ۻZ|EQxJY;ER7S `XOގP҂T///O-`g A]@ kendstream +vC{LA]eڊ |>y{ ${ZW:wMs_|zzjC&+\oy+&Nt 旳 o<*i5iR/]o0/ #ci Ld\Ҵߊ~m0=b>`=$d+"@҆}7mazU3?HĹ3i`'D|0|C,˳fOl2{0`4/)@Rba˥˷ ဥ1#+i):}W'?㷜 M0ugSAJ|ۻZ|EQxJY;ER7S `XOގP҂T///O-`g A]@ endstream endobj -209 0 obj << +205 0 obj << /Type /Font /Subtype /Type1 -/Encoding 927 0 R +/Encoding 935 0 R /FirstChar 2 /LastChar 252 -/Widths 941 0 R -/BaseFont /JYHFJJ+NimbusSanL-Regu -/FontDescriptor 207 0 R +/Widths 949 0 R +/BaseFont /EWNTYS+NimbusSanL-Regu +/FontDescriptor 203 0 R >> endobj -207 0 obj << +203 0 obj << /Ascent 712 /CapHeight 712 /Descent -213 -/FontName /JYHFJJ+NimbusSanL-Regu +/FontName /EWNTYS+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 204 0 R >> endobj -941 0 obj +949 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 << +201 0 obj << /Length1 1608 /Length2 11700 /Length3 532 @@ -7953,239 +7988,223 @@ endobj /Filter /FlateDecode >> stream -xtePݖ. .hи`!{p}gfԹkf~ݺ]UggMK"fjg ud`e(m @,v֦7' --: S$ @Hٻ9- *+`-dmgou|oT -(`QTȀlA@k5lfv;[S_AX߰ b2 -؃l7 ;mfhۚX;Eof7!{ bwUUOG _!0-鯖E`[W-c ~wM 5'9a5 O>mwp;B@f(o5MjmQZY[3;?Ns9= v ` -2CaSs|+ `'+?_5OzZZhx`o/ mnE&juAM -vV8i+T hb0Zo)l z1X8xx%f6k@Myi3kwқjno;0sxpqX.;@[뿨7?m4;߭Hؙٚ'@[ӷ_a'7Eo-@ 9;˟)Iݝ5j>v?o=W֎ ir=ٖc$HfzQ3vecҵ1'i{|^eUV1F or@:cvfXߊU SsxDwK;4qߵMœL+ N5DDG#8#<3KkuႠn \SlqTwd|ϋ;x)/мDoDI}m6CۏnYS߫oG~Wr<J/JGhN>jJX#1vY/90dsCxy z7걣;ڧa{!|Vi UU-WWs[< ->#ǒǔ`*Ƽr" - -flu !{'dfZAatoxDH[ -"NJl^0huÛ"dss,><f\i.ϙ{j4k%6OhlO.~v.P΍:1c\"waJz?/&'}-D"|l(kQsa)ħd#B^%Eɐ0A(9PrJrg6(KAx@8Y̎pX*](a;i^l+E"9|^KKF/=˳O.kB)55&_b ->rmqSHCXd&4a>dvave6=ua(PvW@q "o?cQ|^^l]{\9;~*\zoOV|8ep*ɳ>~94~m*}JfC<:]fA,'/ [̴Cke -lR-yu }PNTcluC_V.T&S~.G7ؔvђOdXWI9:/E}x?۬=7MJTT2&U!N.DjOme\ӢPq*sѦHGտ|be9o47RT -_HJd*ḄپjoLX-)}FN)4M0Z[("@@h6*l.۸bz)xAZ-NM>G/"5f7A]0͈]59rO*"uٟ˦N\m-OJy,tV1oܽ=?"ezUW*>oҺ*:r<zLdg9(xT| GD@*| g\L,7N\6PK 5d6)F>..N"Hv9,tJ\MR{>c֪ r]a?COVIEgF.JpSd^D<@MŊ[6n[O^E~iO a_%/ [_:_ÎzLk*G2Wʊ{:?< / t'3gڠ ѺU/&>\QƭT%D;OD3.7k*^"_ORnIk| x &d>|R^O$7O~>˗vz0Jl5SV^|()͟X_ :?-]AQ{05ȉ|ֳ>!n`p骪sZ(5B z?bw؄MHҮ.N |xe T_Fuya͓ͥ; ~͋WNQ]%j_Sxnջ4M|~Y LJ#~A Y*oٸVʣ@f9b}S+"k>v pripE G5 q<Ƭl5L"R?X -*c_Lê-ORdrKwli[EOo| O`Taȅч 3osx%/^NsH`}¸q~ hxyFcGϝ:2Lwu]fvdIf3x]$e}P,BO~ l_e2^Uy^ndע /Sm87RsΦf/kaQ` -zXԉkVܣ'qc|ǿ>Bcdov^0u[N,* RjP (:+LPxE ^{oJ@bcH:!Pi=7퀢Y7蝫k~sShjlg!tauƮCJRxZRy0v?)qOƯ΂wGnU]k>:#EdڮDܥȈp41vZ_W(z፵;Tu^Ng΄JaJ6zV%+!5Y^cEΖJ~xw^ (.MvQ*3ګPLNs3#\? Y#n\CW"tRTdTԱ3d9zuԆ\f>⇯_b؇cwes[OrW;~[H* -o8JW/A"!2fK?G9Wh5ߪ̍1[1 '[1JrОnBl'E]4 ǓKvgUB+4S5TIh؁޻ׅvCM<2~?5"ɞ\(9TITx-\! -3K]~+?s^hdu]hQnaw֗wl3ii@ChTtm7BʟJ kBH.:bg0@k -N%#f5U:6+^ܲsL4g-Fkc/-d;re/ "K'$/ hǑrS}+WԶZi˺c%H#rkn Qw*jn%MXݿ & -+VSL$?FWEqm[R7$`WHsOn4`齺 9)[VDEhQ~>~=5Ж)r-xpCX7"[.,u&M+q0O[RBeB:U`I!H0=U{zq,̛әUSN D+eP\ޫxi7ύ.B>ؠwmٗG9zxsTh ʈ7rH3;z#xReSZc =a{0u.숓SǗϚj'y3:2`rqC]Ƭ~8W8 -$&ͮ|4Wܗ0X㆖^|blqA+WĴ,$f&b0fw-_ravne5 z kkσ&(1ZDq3. _tR&4:|g`c239|gM|3#I 309R5Z=4`]YjgGyR% !q3ܔg؎R͊q$}B҆iJ ex@7Z/]\W-DY$3S.+3>L\:Cwq*:HmM -ÜsyjMQAƲDDe }[1Q+2i/5Ƞ!B8ebJ%=g_˃8,[SX<`-W_<;>>YRe<}5EQRM`씌 4Y=R{8Y^}'դXU?Nƃ9t' -rXgWpvo0vT4Ӛ c1KwwФļMNE"Zז|>#My쾋CqCsg"F.NM -,r:\}vqWp|Ul -(Þp&*jvÙy5"dZc$?gAifj'<:*RtLj0ϋ -LLP<346GewK?R6X֗H^^k3eir>eۙMvdwen=ƽgqᢚWEV"ʀo~ġ7UL<^*b ,ls۫:@Bf]-T}FdzEq@/pdDs:e:9*вجP̗g"#Zp:6=IJSńa~K<6g\V;$xIƎ)#aEgSSI]՗CY+"uUc2]6)H9*1)㪿w & Om!=R;=AM}/a/\g4(܌᡼?d*W+XM@X'Bhf/u\O_ר2!>gWlëHzoT7 t#0v0(2j$P ~(* Q1Pl&&J*j9@TMmuFl)PBGDofu( ~BR0^9LWKbtQ~?׆*ݨk%CJ U"]mӄdqҸ˰qanצ8`?]01z$íztj7U|,vM씮Em -+b44_$DCht,i^)H {hc?$ -ŧ/ .Ih|%+DX+q}-_^ -{%~ݪ-EP$`'k,Bq{{rAj@&EvŰSYLgi#zIc.;bp[bIBD9^dyQڽLY}uaQP8|bʩ@쩒6^l#Х s$#fc'4~C:& es(*j'A䬺 T>-VJ_qW<&kb ga XJ5-bV>AKp…q%ᑓ}}KV1ٗ! _ -5k*%!]=!Uߒ07֯d2Љm#9gߚ5*F(谮+ !9 ^;7K:Pz2VH9,k;GC{12aѶ??ذe -ǩ),.Ël6)x[c0jHKbdXUv)f;\P*Fh\W遷2C0D1ny -%kyx:2F]z6*O}0a:lo2 xbSp:g8!轖v^}e6P!ɰo}RqMqͼ("zS} ,P`s]ϳW^ ɟ8 -HVV fO>*bjq:gQ~?^O{lk8_H!]\sIqRX/~}t#^gb{lWw:}XzUgt -+zIUjޯ+Z?o¸$p}mP,E=TqYi̼c5,OUefOU~9uՌ=B-eTT`3#W;eөՓoVG)45 -?u!c1X2JvT坟J4)[oy"QnpmL9=_Q["6N\Hm\M=I3qd8s{jW)1-vҦ>֔F& B9ܫ[y{ ,^>] m#cxW:kTi-dWE\t!QE?fkV)kf2< [24;_ÊWH`]j29Ib0kvUuK*G)ν~aY1k Smj:ڥx߷y_k3IbRD%FMVpI9Kv\|š*=}>9?S AКs롢j&?ed~qyxA!Uhٷ~?4⣸)ՀH7[h4(BF^5ʪe.eÆ6yC2 ^'.ctV-!#Os&bxMS2xxz>]0jNX;D($ q]/k-KLT [M%YkF%Vmwdvad &4MB 䟌ǒ)ϼ$4|sce4Dy"zjk) :F+IDED Fw7)foݦʶӒ U FB'k -z%9mv떊["3?\63S1ZNk7*[_w1x獨\q|W r.MZr S_L4C{O8 ]lݽ4dy;=1'.R?8B>U¦[I'2o/qMZJ8ݸTg@_6? #m)8zh\o> -Xta`0::|[/T ,H?^Z33}I1ԸSt"Gϻ|m d3*B:rCz]7+4@ -D-O\9KA)-}≫` ArUQ6SQ D.ؒID_Ԍ> "}`{LTD| --ƪxyIE/d:uR6ONSnuLӌSug|3AF^T9=W1z`wmg|Zsp'a/ KɊrK *R>dq3pⓐVL_Srm%wcbkSPb/x4˸6%x$¬⳩3j8=[.?p;MqTsiS. F=% -Fd^h2d'XKy|K3hʹ-6HvdyM9(|5;BH9>"^uu|ӏCfOVrxb3r]d5@lTwv@~qH ei'B5O bxh2cV@ -{D>K ȓxZnA4O.Y yekznuŖge˪_~p|K: /~J\@5A -b-)Gݐvwmꆎ&cNP;qfK1 ˛fi&)EgN5^pLl0r%bYk9B%\J@iPNb̓fI",Cy9&0Z -ϠfK`![1g &^"HhG.]~gH ;C6)boKxlez+$-_z(J$ts[9Hd^'}mvS?:IBRpMp"_e廯N=Y ]hh$Dٓ/jCύITdsRbefljʼnxcF´2EE.ܢcP=t;;`뛒5\L -^&_osO| e?|1 0xXTo!L׃{v}ڏ^N+-ަ}AÑ&)TJX<_ gQg,GիKTNU:`Jh_zϯozNٮ74GSw\դpE' ZQA@,?RBLk’Q._ b$<ٷ"ba=eTj0ŭW>@/`JACbsN@wy1o+8F*mn*,XC3_q(Xb̒>y?/T9J;v r8_%(T* 'f0+H:*%F昈PWy:nȇ"\ AaQ+'q`sx0pSDƊ߯kA9ʇ7>J𢥠 H*x3zŘ^Xᚢq>8DNN.WǮ1ǥ:Z׶, -׀V-QBF0 `'z8ת(=k5FC*eM: ծ\@ B aAOԪ4?.S׎4 ^o]rqlzd0^>BrT?YH~mMVEFd-SO86Դ0cc&+p>^є@䗠St yQir9r[Ȼ瘲A;-b[Q.uYt9ԙ ]?ӧ@}z/&d If\͋~5K=^%m!ۈrk%7BV:I7wq> Ŵpjxxѱ+#~}"C,Ùuץ;%C4/̄)e`'r( 1[*k{˼y5NG̰CR>_G}o^U OѐEİz[gL|*$l<&ߓ)(uo_|*O1-^mUQaϟɧҏ"p1IYoYw:NS#ÌYm.Z XQAe 2ġ,G/#EVsNi[N)uũ8En5mYE"JL^ e!=Iռts_ hY<̬?d'N̂%2GjX|js4S/KCT0OԐ; wҗi -K;o'XUx>E[FECR[=YY稅9 $ H= $Vdzjm{mr|] wAtu 'ypdzt–\ۺr "HлMfX0m˥xbN9' j #yJ)Uek +a-3LӦp:Qgf)_H -+z#/WƓ)kܧ!Ki~$P~ n?T`aO?)KMf(do%Qٻ}# nAzS<#<ȹRЮsˆ ^{Wݳ( k`Άr endstream +xtePݖ. 5@q Cpwwwn-@|ߙ3u_nWuջd?YY{R*ٛX8XJ`[gɃBK+:$N A 2pr8Ph` K'#3zJ{$la{p;؂ @ %`$>+)d42 ;#lb6| F# Wk7,18Lo@n B G[0 C@;8v6fxM--lq:oU%Wm- 747uco0oQ' p9U0Clop,=dt4A o0oM}S@ON9+ +[MS`;Eÿ\@ᯝa|#4qQؔJ{* +W%vQھ-? |_@[Z0@䜀ocxN0D2S;Ź6o3ۯagrہ޴{[M:!ٿ2olC?0,|\.v/ O[v5we/0Rvf퉚mWMѿo[n eiT(GjSa^O@Caz^o}ϏoϕAu^vvl;Ag٤Ԍ9kt|̻lZ糟6ty5wTT &Z}]r|h0&DaAT w^w0gD! +Ӆ~ (4)뫈 +`Z[$#ז.{W=e WNa>{s,'ZI̓i8Iwnǿ|#'kC bDWq4 *$ko.I +c+ce4!&~"q0uq>_}>ٙ<*pwbE/T3~|O4‟-4:}@:ڥ`~rGqW`t{)CD$q)dB[Ò8ma8ƲNP?GhtT5Ҟȱ*N潟1Z!Ac$",.U;xǀ }cAF?R`pDI vcQ zYVbSw\%'a :Bz"zQ͞V_;mv6Zup9BHH/H:Px5b2lq1@;M +\j>`bb0tMzsLuDwx$'=TE1~MM+A #13QKX3AޢI)kCC {-Si!`}1%a5/_(処/^G e?׬SL +aF8x}Vjt}`#~asW 09xd :Gzy"dQУ&8}D.3J\fTG4!-P|ؽT- {mГ`ɥ=i<M4nA(F>l)dƉV[38*/ hNzjEBYJfTj_/͡?M8d뙍ЋYh;'rm:<S> _!#BO$v)bdd]TfM{!DAĮcӼM[iIf:#mJmZ!Y^!ݹc3EwD"Ӄ'4*SdL|}$g$/d; jGHF83⋝ε\愓ASsk֖.=a)´aཛؚKR sq0UR1D#ax7aS!ZJ6ֈAyj<,,Xⴹ~>?w^f{a4W&Vy]z$ `Աh+x*sYw+֙Ūs>.6.H,qZlzn?j}Y_"AHwK}SS-EEٍ#vO)fq6O[Y/3Ռ-0IInۗbšr-a%R3nIf!W,;ª;+:Ŧz:rr9nu}2%-jA3if OE0mC`$Yk* +Uڦ,_B;[6z+<*qĬnñ xz9ͩLqX4j 5ɗGp vlkuW݋4TЛY+bdr[s{Bl^f$WçҤO$\8*-Km6U䳺5 >|>L'vloÚWBPengCygT *W U50+H>ȻA{Ugm!1>[f:YTۆ8 %a;ڲ,~a5a8\"43[RK0MM낄guSd13˷;cR܋.e.A-'ؒH5R`cbsŎJ-;V+:|OSۖtT0\feO6lAs⩔1Ȩv1;!v[M m42kDjbVqsF^δ-Mujnn7/ɍ !Vkɀ +M_`"*j8غZ_ Pk[=i Y&!Ya($w)/d9y9e3w2N"k-vE MPzsZK }k5O#?Gү΅!Lrnx}v+.м/nN}KɑV1(Y'/͟0ڦ g0(\DgM^Se)j7ɕb>J< 9ʏw5Fwܫ5{`Yv(:ZO3R0ҷP}ѷcE=\-KF ֩#ZzeS f٘'myf!kft E.!v&ʐwIK*o͟[=X5!tϿ-Pi)rǫ5)#s*Xs̵]5:uVphO, PY! q7̻#O{9Μ^>iCʁ +9'sDȢ_*Q|o& +X$jq_EejaYN[|K }_ӳZ™ ޵~.EoٽsT/9P6ghQ6/psEEXmBς)\Q &@̠(LX I~/?NO~)L7oL+⦎};hv /ӪHҧ,v.o%3Ȑ[>OS8p#FMˏM6<㲆 Z0PtaH (D|syv`Oa0 ;9eOI,cJ]R$q?N|i / :R<7pA(Xnqa Rck"gPW>贚t׌rzp+_֤Fd>i<f9yƎͭ>f?_G.BK]@6=N#~.@;tn>~jӳ*LŤtųsU5kpCa;yB~w+5o]CIեx|cz]On*|wS_{Xq{(x6:.E=l~^" l< {z5ߋ錹M2.Y1C$4`baG񺯤<4FG?ePfJ;mp&3cg]pX<>UN8>4" ,`~d}v(%nt*fzH:@j8{UD~OgI ,*W5/6*5,aBήߠ42s&Y~ed4z,g0E讐G"ũbMY TN跽Xa>' ԹriZnJZOau?A/UKm.2Yϱ𖞩I^-'"$_wLԕzY#M”Y5OtUkw/<^][G{\ tRHBCI)ǺV?…=CX0Q33ˌ]Yl\-yӳs6E&b{ Ei#3챓d_: Hk“4E2$7dr$*߱M*gOTAޤ;KaU ֚)iYCl:yS#^mb<˳%MC"J"ju%ڊyKC"h8N 6|N"?IEAM,ZM/D]>YEHV,;NFz NNX >=gZv#(TG,tqfg0cz*>2-.agNfՉ18[̋vodpaXM5E`](.)iP#UB| T=Cc ' 6i^ j\;h$LF?b3{?{ٍkQICxP`=B짜. RŞ&93ib͖= +]B}jdlFql?ibP4qĤ| +LB4U/đ7+ZZΪW b=Rlw&C-h+Фpܮ)xd_^;ccSTMF$s #֠[HIkE}1"/ +rftLɝ u% +>N{bΆ׉Œ94^{qnz4~WƓh5zoEF#12C٥또ױ?V?iذQJ'iEl.ˎRlv)xH;^pjH$[b鈨׫XIr;H:UЄs-+#oUQҩjC c"v5减6 +(ա gY$d{,& lT4A..9>Ëd%0g{ZD BmLqj".mOn1XeP8[0ty[D0ߔrT +h)Yߠ< +]g@W*?+Ks0i,JwX o|,TZ75t.+c4lJ8I, \q1RX~|y|+^grg|Oo}1XzMGL*+I5/?*l&riT,CRu]mʺgõ*OScaUHUy9uՊ;F-cTR`7'P;Щ7lD+ 5 cd{ޱ$N+s/$FdJUT6q½(w~eCf|)~]m|{'QIYY妞Nx1sns?.(ӔыVO|nWygFRoYͫz+sl6ˑ9^֧^Y|3vI!hsѽC:C/eHҡj5ݞS;bÖ/N>q +ot\L1XkE&2MD,q{ iΥ)yiPC2c~}/j2/S|-tpkU@̈́nUa];#'L0N% ڢ %~y[6/R8mO0U(ʍ']VtT +褘Jz)yvΫ]YiXlp7SqPɡx^*P0vQy3FW:֚YJK#3%DBLNPZ,95=o}+󺠤[ZJ X0 \i vb^=u *̠fgAiӪN̘MbIAZ>J7VwRwsٌ:tɶ_ONǺ귵/pn0fm=ADtOEY-HtQz/~B!Xh?k…mq_d'*.Ŀ)jC熶0uiu◎JESitvF=;%k\}HۨOpʅđ bwai {n{Y2;ֺJŵ=IDr|56߉ŠE1.KUUǪxv56 d+,.& 00G~8pEn }3k~CQu%AY$Y,@^{yUgϸPjꨪ\!f|fo(Z< +(~n_2'ք'["e`6e!56)=DAxs 黑's/R Kk4^{\9\E_:]i*%$b` Ki!Fo {oPv]VZ19~ + -twJ@^6xz~D8*sU #~-@uwcY;Gg+ q`ך2d;^eWM2!#8M#ٱO6=Qws!>㾊|B +&j$ +9B+";_'nv!Ii RO,X!9߬ L<҃Ku~GDi#:0]HE{ OC㱳qs۷x`Z[H'͒#Zu 3CT#{}*gbz4fP~h!O3O)cwBw+B1VEHAr +iY)aeEzO<U`0h]O0z8;g+ UZ(s?Dz/mw+EFMzm8CSm`u!2'W^ ,_~2AX||Mf=H#V")u0'h@X%e{K/l,hFߙ3_ڝYA,[^+dX9&kc&v+^' p? kq4*-U]}$'N^4ᙚtu.ḵ1E RxtVsčJ<,gZ?E; d׼^'EbO)=rH?C]Xb{ tl*үHY%3ll EQ&ɠWAt,:eT`2fEKPdk*s}ŢC9FC#! +Jʙ +xQ~nIZ & R;+(l3'fS/I44)ۢXL[[tʳnwls[zQK%S7[ɋK]Ryީ_φpCo,zqϢt72:_<c$=uW8h8%˳UWJ ,U+Pov#φ62:[ ń%Wr> +^fv-1T`zG61ִ(ܤ5DIWwbS9"KLV&!d?y(AX@I[?wTW--N*ՍW} *rSŹL(@w7 H\)>(]3f6-y:XumNb%K~x }yݱrUG]yBQ1;"c'1ir5bTǁ$S*e֭ijub@X|"݈So+ZW2 >DħJ7քٕԃEjqu0sD=K %_Tp'iHwl(Yg:T(?@|4,IU\ 'x:Y3cˮN-_5'*F)W +r 2uȪɨͿFp*@3:N$" z:?6(huE(;K)_i}7:t6"!?JZ;9Ofd& m?)P W'@FGVG'{` +\NQ6c|(v0k^n#6xGTXUȇ 4y$@8D 7Nzy/,)2h`m Ayѹ^)u&/sVfDݷrG49睏@tI-e) ٝ>̼kSw PO+1f?5;qs;":gKP< 9_rr[9)a촼$eE)cJhva*{5}dM°h6 O5:%jߨ)sAZISMGݍRV"_Gge]<#lr̀2!\O>XI/V 348a"xܲ?+(˜L稠)${P{9ߢ}B KN:<<3yRnG='6> endobj -204 0 obj << +200 0 obj << /Ascent 722 /CapHeight 722 /Descent -217 -/FontName /UJVZAK+NimbusSanL-Bold +/FontName /HRXCJH+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 201 0 R >> endobj -942 0 obj +950 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 << +206 0 obj << /Type /Pages /Count 6 -/Parent 943 0 R -/Kids [198 0 R 212 0 R 216 0 R 223 0 R 253 0 R 283 0 R] +/Parent 951 0 R +/Kids [194 0 R 208 0 R 212 0 R 219 0 R 249 0 R 278 0 R] >> endobj -352 0 obj << +347 0 obj << /Type /Pages /Count 6 -/Parent 943 0 R -/Kids [342 0 R 361 0 R 404 0 R 412 0 R 424 0 R 433 0 R] +/Parent 951 0 R +/Kids [337 0 R 356 0 R 399 0 R 407 0 R 419 0 R 428 0 R] >> endobj -447 0 obj << +442 0 obj << /Type /Pages /Count 6 -/Parent 943 0 R -/Kids [441 0 R 452 0 R 460 0 R 466 0 R 472 0 R 481 0 R] +/Parent 951 0 R +/Kids [436 0 R 447 0 R 455 0 R 461 0 R 467 0 R 476 0 R] >> endobj -495 0 obj << +490 0 obj << /Type /Pages /Count 6 -/Parent 943 0 R -/Kids [489 0 R 498 0 R 506 0 R 514 0 R 519 0 R 525 0 R] +/Parent 951 0 R +/Kids [484 0 R 493 0 R 501 0 R 509 0 R 514 0 R 520 0 R] >> endobj -537 0 obj << +532 0 obj << /Type /Pages /Count 6 -/Parent 943 0 R -/Kids [532 0 R 540 0 R 545 0 R 549 0 R 553 0 R 563 0 R] +/Parent 951 0 R +/Kids [527 0 R 535 0 R 540 0 R 544 0 R 548 0 R 558 0 R] >> endobj -575 0 obj << +570 0 obj << /Type /Pages /Count 6 -/Parent 943 0 R -/Kids [572 0 R 579 0 R 585 0 R 592 0 R 596 0 R 603 0 R] +/Parent 951 0 R +/Kids [567 0 R 574 0 R 580 0 R 587 0 R 591 0 R 598 0 R] >> endobj -620 0 obj << +615 0 obj << /Type /Pages /Count 6 -/Parent 944 0 R -/Kids [616 0 R 623 0 R 632 0 R 638 0 R 645 0 R 653 0 R] +/Parent 952 0 R +/Kids [611 0 R 618 0 R 627 0 R 633 0 R 640 0 R 648 0 R] >> endobj -663 0 obj << +658 0 obj << /Type /Pages /Count 6 -/Parent 944 0 R -/Kids [660 0 R 666 0 R 674 0 R 679 0 R 683 0 R 688 0 R] +/Parent 952 0 R +/Kids [655 0 R 661 0 R 669 0 R 674 0 R 678 0 R 683 0 R] >> endobj -702 0 obj << +697 0 obj << /Type /Pages /Count 6 -/Parent 944 0 R -/Kids [695 0 R 704 0 R 713 0 R 717 0 R 724 0 R 729 0 R] +/Parent 952 0 R +/Kids [690 0 R 699 0 R 708 0 R 712 0 R 719 0 R 724 0 R] >> endobj -742 0 obj << +737 0 obj << /Type /Pages /Count 6 -/Parent 944 0 R -/Kids [737 0 R 745 0 R 750 0 R 762 0 R 767 0 R 778 0 R] +/Parent 952 0 R +/Kids [732 0 R 740 0 R 745 0 R 757 0 R 762 0 R 773 0 R] >> endobj -789 0 obj << +784 0 obj << /Type /Pages /Count 6 -/Parent 944 0 R -/Kids [785 0 R 796 0 R 802 0 R 810 0 R 821 0 R 830 0 R] +/Parent 952 0 R +/Kids [780 0 R 791 0 R 797 0 R 805 0 R 816 0 R 825 0 R] >> endobj -837 0 obj << +832 0 obj << /Type /Pages /Count 6 -/Parent 944 0 R -/Kids [834 0 R 840 0 R 850 0 R 854 0 R 859 0 R 863 0 R] +/Parent 952 0 R +/Kids [829 0 R 835 0 R 845 0 R 849 0 R 854 0 R 858 0 R] >> endobj -871 0 obj << +870 0 obj << /Type /Pages /Count 6 -/Parent 945 0 R -/Kids [868 0 R 873 0 R 878 0 R 901 0 R 905 0 R 924 0 R] +/Parent 953 0 R +/Kids [863 0 R 872 0 R 880 0 R 901 0 R 908 0 R 912 0 R] >> endobj -943 0 obj << +934 0 obj << +/Type /Pages +/Count 1 +/Parent 953 0 R +/Kids [931 0 R] +>> endobj +951 0 obj << /Type /Pages /Count 36 -/Parent 946 0 R -/Kids [210 0 R 352 0 R 447 0 R 495 0 R 537 0 R 575 0 R] +/Parent 954 0 R +/Kids [206 0 R 347 0 R 442 0 R 490 0 R 532 0 R 570 0 R] >> endobj -944 0 obj << +952 0 obj << /Type /Pages /Count 36 -/Parent 946 0 R -/Kids [620 0 R 663 0 R 702 0 R 742 0 R 789 0 R 837 0 R] +/Parent 954 0 R +/Kids [615 0 R 658 0 R 697 0 R 737 0 R 784 0 R 832 0 R] >> endobj -945 0 obj << +953 0 obj << /Type /Pages -/Count 6 -/Parent 946 0 R -/Kids [871 0 R] +/Count 7 +/Parent 954 0 R +/Kids [870 0 R 934 0 R] >> endobj -946 0 obj << +954 0 obj << /Type /Pages -/Count 78 -/Kids [943 0 R 944 0 R 945 0 R] +/Count 79 +/Kids [951 0 R 952 0 R 953 0 R] >> endobj -947 0 obj << +955 0 obj << /Type /Outlines /First 7 0 R -/Last 195 0 R +/Last 191 0 R /Count 6 >> endobj -195 0 obj << -/Title 196 0 R -/A 193 0 R -/Parent 947 0 R -/Prev 191 0 R ->> endobj 191 0 obj << /Title 192 0 R /A 189 0 R -/Parent 947 0 R +/Parent 955 0 R /Prev 187 0 R -/Next 195 0 R >> endobj 187 0 obj << /Title 188 0 R /A 185 0 R -/Parent 947 0 R -/Prev 107 0 R +/Parent 955 0 R +/Prev 183 0 R /Next 191 0 R >> endobj 183 0 obj << /Title 184 0 R /A 181 0 R -/Parent 107 0 R -/Prev 179 0 R +/Parent 955 0 R +/Prev 107 0 R +/Next 187 0 R >> endobj 179 0 obj << /Title 180 0 R /A 177 0 R /Parent 107 0 R -/Prev 171 0 R -/Next 183 0 R +/Prev 175 0 R >> endobj 175 0 obj << /Title 176 0 R /A 173 0 R -/Parent 171 0 R +/Parent 107 0 R +/Prev 171 0 R +/Next 179 0 R >> endobj 171 0 obj << /Title 172 0 R /A 169 0 R /Parent 107 0 R /Prev 167 0 R -/Next 179 0 R -/First 175 0 R -/Last 175 0 R -/Count -1 +/Next 175 0 R >> endobj 167 0 obj << /Title 168 0 R @@ -8298,11 +8317,11 @@ endobj 107 0 obj << /Title 108 0 R /A 105 0 R -/Parent 947 0 R +/Parent 955 0 R /Prev 19 0 R -/Next 187 0 R +/Next 183 0 R /First 111 0 R -/Last 183 0 R +/Last 179 0 R /Count -9 >> endobj 103 0 obj << @@ -8456,7 +8475,7 @@ endobj 19 0 obj << /Title 20 0 R /A 17 0 R -/Parent 947 0 R +/Parent 955 0 R /Prev 7 0 R /Next 107 0 R /First 23 0 R @@ -8478,997 +8497,1005 @@ endobj 7 0 obj << /Title 8 0 R /A 5 0 R -/Parent 947 0 R +/Parent 955 0 R /Next 19 0 R /First 11 0 R /Last 15 0 R /Count -2 >> endobj -948 0 obj << -/Names [(API) 908 0 R (BSD) 909 0 R (Doc-Start) 203 0 R (GIMP) 910 0 R (GNU) 911 0 R (GUI) 912 0 R (GVim) 913 0 R (HTTPS) 914 0 R (Item.1) 707 0 R (Item.2) 708 0 R (Item.3) 709 0 R (Item.4) 710 0 R (Item.5) 711 0 R (Item.6) 783 0 R (Item.7) 788 0 R (Item.8) 799 0 R (JRE) 915 0 R (NID) 916 0 R (PDF) 917 0 R (PID) 918 0 R (RTT) 919 0 R (SDK) 920 0 R (SVN) 921 0 R (VS) 922 0 R (appendix.A) 190 0 R (appendix.B) 194 0 R (chapter*.1) 226 0 R (chapter*.2) 286 0 R (chapter*.3) 364 0 R (chapter.1) 6 0 R (chapter.2) 18 0 R (chapter.3) 106 0 R (chapter.4) 186 0 R (cite.OOS) 743 0 R (cite.Tanenbaum) 408 0 R (cite.Vorlesung) 630 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) 353 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) 354 0 R (figure.3.2) 355 0 R (figure.3.3) 356 0 R (figure.3.4) 357 0 R (figure.3.5) 358 0 R (figure.3.6) 359 0 R (page.1) 202 0 R (page.10) 414 0 R (page.11) 426 0 R (page.12) 435 0 R (page.13) 443 0 R (page.14) 454 0 R (page.15) 462 0 R (page.16) 468 0 R (page.17) 474 0 R (page.18) 483 0 R (page.19) 491 0 R (page.2) 214 0 R (page.20) 500 0 R (page.21) 508 0 R (page.22) 516 0 R (page.23) 521 0 R (page.24) 527 0 R (page.25) 534 0 R (page.26) 542 0 R (page.27) 547 0 R (page.28) 551 0 R (page.29) 555 0 R (page.3) 218 0 R (page.30) 565 0 R (page.31) 574 0 R (page.32) 581 0 R (page.33) 587 0 R (page.34) 594 0 R (page.35) 598 0 R (page.36) 605 0 R (page.37) 618 0 R (page.38) 625 0 R (page.39) 634 0 R (page.4) 225 0 R (page.40) 640 0 R (page.41) 647 0 R (page.42) 655 0 R (page.43) 662 0 R (page.44) 668 0 R (page.45) 676 0 R (page.46) 681 0 R (page.47) 685 0 R (page.48) 690 0 R (page.49) 697 0 R (page.5) 255 0 R (page.50) 706 0 R (page.51) 715 0 R (page.52) 719 0 R (page.53) 726 0 R (page.54) 731 0 R (page.55) 739 0 R (page.56) 747 0 R (page.57) 752 0 R (page.58) 764 0 R (page.59) 769 0 R (page.6) 285 0 R (page.60) 780 0 R (page.61) 787 0 R (page.62) 798 0 R (page.63) 804 0 R (page.64) 812 0 R (page.65) 823 0 R (page.66) 832 0 R (page.67) 836 0 R (page.68) 842 0 R (page.69) 852 0 R (page.7) 344 0 R (page.70) 856 0 R (page.71) 861 0 R (page.72) 865 0 R (page.73) 870 0 R (page.74) 875 0 R (page.75) 880 0 R (page.76) 903 0 R (page.77) 907 0 R (page.78) 926 0 R (page.8) 363 0 R (page.9) 406 0 R (section*.10) 455 0 R (section*.11) 457 0 R (section*.12) 469 0 R (section*.13) 476 0 R (section*.14) 484 0 R (section*.15) 501 0 R (section*.16) 509 0 R (section*.17) 511 0 R (section*.18) 517 0 R (section*.19) 522 0 R (section*.20) 523 0 R (section*.21) 528 0 R (section*.22) 529 0 R (section*.23) 535 0 R (section*.24) 619 0 R (section*.25) 650 0 R (section*.26) 658 0 R (section*.27) 677 0 R (section*.28) 720 0 R (section*.29) 857 0 R (section*.30) 866 0 R (section*.31) 881 0 R (section*.4) 415 0 R (section*.5) 417 0 R (section*.6) 418 0 R (section*.7) 427 0 R (section*.8) 436 0 R (section*.9) 437 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) 110 0 R (section.3.2) 114 0 R (section.3.3) 126 0 R (section.3.4) 138 0 R (section.3.5) 150 0 R (section.3.6) 166 0 R (section.3.7) 170 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.3.2.1) 118 0 R (subsection.3.2.2) 122 0 R (subsection.3.3.1) 130 0 R (subsection.3.3.2) 134 0 R (subsection.3.4.1) 142 0 R (subsection.3.4.2) 146 0 R (subsection.3.5.1) 154 0 R (subsection.3.5.2) 158 0 R (subsection.3.5.3) 162 0 R (subsection.3.7.1) 174 0 R (table.2.1) 384 0 R (table.2.10) 393 0 R (table.2.11) 394 0 R (table.2.12) 395 0 R (table.2.13) 396 0 R (table.2.14) 397 0 R (table.2.15) 398 0 R (table.2.16) 399 0 R (table.2.17) 400 0 R (table.2.2) 385 0 R (table.2.3) 386 0 R (table.2.4) 387 0 R (table.2.5) 388 0 R (table.2.6) 389 0 R (table.2.7) 390 0 R (table.2.8) 391 0 R (table.2.9) 392 0 R (table.3.1) 401 0 R (table.3.2) 402 0 R] +956 0 obj << +/Names [(API) 915 0 R (BSD) 916 0 R (Doc-Start) 199 0 R (GIMP) 917 0 R (GNU) 918 0 R (GUI) 919 0 R (GVim) 920 0 R (HTTPS) 921 0 R (Item.1) 702 0 R (Item.10) 867 0 R (Item.11) 868 0 R (Item.12) 869 0 R (Item.13) 875 0 R (Item.14) 876 0 R (Item.15) 877 0 R (Item.2) 703 0 R (Item.3) 704 0 R (Item.4) 705 0 R (Item.5) 706 0 R (Item.6) 778 0 R (Item.7) 783 0 R (Item.8) 794 0 R (Item.9) 866 0 R (JRE) 922 0 R (NID) 923 0 R (PDF) 924 0 R (PID) 925 0 R (RTT) 926 0 R (SDK) 927 0 R (SVN) 928 0 R (VS) 929 0 R (appendix.A) 186 0 R (appendix.B) 190 0 R (chapter*.1) 222 0 R (chapter*.2) 281 0 R (chapter*.3) 359 0 R (chapter.1) 6 0 R (chapter.2) 18 0 R (chapter.3) 106 0 R (chapter.4) 182 0 R (cite.OOS) 738 0 R (cite.Tanenbaum) 403 0 R (cite.Vorlesung) 625 0 R (figure.1.1) 309 0 R (figure.1.2) 310 0 R (figure.2.1) 311 0 R (figure.2.10) 320 0 R (figure.2.11) 321 0 R (figure.2.12) 322 0 R (figure.2.13) 323 0 R (figure.2.14) 324 0 R (figure.2.15) 325 0 R (figure.2.16) 326 0 R (figure.2.17) 327 0 R (figure.2.18) 328 0 R (figure.2.19) 329 0 R (figure.2.2) 312 0 R (figure.2.20) 330 0 R (figure.2.21) 331 0 R (figure.2.22) 332 0 R (figure.2.23) 333 0 R (figure.2.24) 334 0 R (figure.2.25) 335 0 R (figure.2.26) 348 0 R (figure.2.3) 313 0 R (figure.2.4) 314 0 R (figure.2.5) 315 0 R (figure.2.6) 316 0 R (figure.2.7) 317 0 R (figure.2.8) 318 0 R (figure.2.9) 319 0 R (figure.3.1) 349 0 R (figure.3.2) 350 0 R (figure.3.3) 351 0 R (figure.3.4) 352 0 R (figure.3.5) 353 0 R (figure.3.6) 354 0 R (page.1) 198 0 R (page.10) 409 0 R (page.11) 421 0 R (page.12) 430 0 R (page.13) 438 0 R (page.14) 449 0 R (page.15) 457 0 R (page.16) 463 0 R (page.17) 469 0 R (page.18) 478 0 R (page.19) 486 0 R (page.2) 210 0 R (page.20) 495 0 R (page.21) 503 0 R (page.22) 511 0 R (page.23) 516 0 R (page.24) 522 0 R (page.25) 529 0 R (page.26) 537 0 R (page.27) 542 0 R (page.28) 546 0 R (page.29) 550 0 R (page.3) 214 0 R (page.30) 560 0 R (page.31) 569 0 R (page.32) 576 0 R (page.33) 582 0 R (page.34) 589 0 R (page.35) 593 0 R (page.36) 600 0 R (page.37) 613 0 R (page.38) 620 0 R (page.39) 629 0 R (page.4) 221 0 R (page.40) 635 0 R (page.41) 642 0 R (page.42) 650 0 R (page.43) 657 0 R (page.44) 663 0 R (page.45) 671 0 R (page.46) 676 0 R (page.47) 680 0 R (page.48) 685 0 R (page.49) 692 0 R (page.5) 251 0 R (page.50) 701 0 R (page.51) 710 0 R (page.52) 714 0 R (page.53) 721 0 R (page.54) 726 0 R (page.55) 734 0 R (page.56) 742 0 R (page.57) 747 0 R (page.58) 759 0 R (page.59) 764 0 R (page.6) 280 0 R (page.60) 775 0 R (page.61) 782 0 R (page.62) 793 0 R (page.63) 799 0 R (page.64) 807 0 R (page.65) 818 0 R (page.66) 827 0 R (page.67) 831 0 R (page.68) 837 0 R (page.69) 847 0 R (page.7) 339 0 R (page.70) 851 0 R (page.71) 856 0 R (page.72) 860 0 R (page.73) 865 0 R (page.74) 874 0 R (page.75) 882 0 R (page.76) 903 0 R (page.77) 910 0 R (page.78) 914 0 R (page.79) 933 0 R (page.8) 358 0 R (page.9) 401 0 R (section*.10) 450 0 R (section*.11) 452 0 R (section*.12) 464 0 R (section*.13) 471 0 R (section*.14) 479 0 R (section*.15) 496 0 R (section*.16) 504 0 R (section*.17) 506 0 R (section*.18) 512 0 R (section*.19) 517 0 R (section*.20) 518 0 R (section*.21) 523 0 R (section*.22) 524 0 R (section*.23) 530 0 R (section*.24) 614 0 R (section*.25) 645 0 R (section*.26) 653 0 R (section*.27) 672 0 R (section*.28) 715 0 R (section*.29) 852 0 R (section*.30) 861 0 R (section*.31) 878 0 R (section*.32) 884 0 R (section*.4) 410 0 R (section*.5) 412 0 R (section*.6) 413 0 R (section*.7) 422 0 R (section*.8) 431 0 R (section*.9) 432 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) 110 0 R (section.3.2) 114 0 R (section.3.3) 126 0 R (section.3.4) 138 0 R (section.3.5) 150 0 R (section.3.6) 166 0 R (section.3.7) 170 0 R (section.3.8) 174 0 R (section.3.9) 178 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.3.2.1) 118 0 R (subsection.3.2.2) 122 0 R (subsection.3.3.1) 130 0 R (subsection.3.3.2) 134 0 R (subsection.3.4.1) 142 0 R (subsection.3.4.2) 146 0 R (subsection.3.5.1) 154 0 R (subsection.3.5.2) 158 0 R (subsection.3.5.3) 162 0 R (table.2.1) 379 0 R (table.2.10) 388 0 R (table.2.11) 389 0 R (table.2.12) 390 0 R (table.2.13) 391 0 R (table.2.14) 392 0 R (table.2.15) 393 0 R (table.2.16) 394 0 R (table.2.17) 395 0 R (table.2.2) 380 0 R (table.2.3) 381 0 R (table.2.4) 382 0 R (table.2.5) 383 0 R (table.2.6) 384 0 R (table.2.7) 385 0 R (table.2.8) 386 0 R (table.2.9) 387 0 R (table.3.1) 396 0 R (table.3.2) 397 0 R] /Limits [(API) (table.3.2)] >> endobj -949 0 obj << -/Kids [948 0 R] +957 0 obj << +/Kids [956 0 R] >> endobj -950 0 obj << -/Dests 949 0 R +958 0 obj << +/Dests 957 0 R >> endobj -951 0 obj << +959 0 obj << /Type /Catalog -/Pages 946 0 R -/Outlines 947 0 R -/Names 950 0 R +/Pages 954 0 R +/Outlines 955 0 R +/Names 958 0 R /PageMode /UseOutlines /PageLayout/OneColumn -/OpenAction 197 0 R +/OpenAction 193 0 R >> endobj -952 0 obj << +960 0 obj << /Author(Paul Btow)/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfeTeX-1.21a)/Keywords() -/CreationDate (D:20080807190445Z) +/CreationDate (D:20080807201040Z) /PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4) >> endobj xref -0 953 +0 961 0000000001 65535 f 0000000002 00000 f 0000000003 00000 f 0000000004 00000 f 0000000000 00000 f 0000000009 00000 n -0000087515 00000 n -0000944797 00000 n +0000087111 00000 n +0000947017 00000 n 0000000054 00000 n 0000000143 00000 n -0000087576 00000 n -0000944725 00000 n +0000087172 00000 n +0000946945 00000 n 0000000190 00000 n 0000000290 00000 n -0000091219 00000 n -0000944652 00000 n +0000090815 00000 n +0000946872 00000 n 0000000338 00000 n 0000000438 00000 n -0000109457 00000 n -0000944527 00000 n +0000109049 00000 n +0000946747 00000 n 0000000484 00000 n 0000000592 00000 n -0000109519 00000 n -0000944453 00000 n +0000109111 00000 n +0000946673 00000 n 0000000640 00000 n -0000000898 00000 n -0000189870 00000 n -0000944366 00000 n -0000000946 00000 n -0000001084 00000 n -0000227910 00000 n -0000944279 00000 n -0000001132 00000 n -0000001232 00000 n -0000233783 00000 n -0000944155 00000 n -0000001280 00000 n -0000001395 00000 n -0000233845 00000 n -0000944081 00000 n -0000001448 00000 n -0000001603 00000 n -0000254481 00000 n -0000943994 00000 n -0000001656 00000 n -0000001836 00000 n -0000271051 00000 n -0000943907 00000 n -0000001889 00000 n -0000002130 00000 n -0000277662 00000 n -0000943833 00000 n -0000002183 00000 n -0000002399 00000 n -0000277724 00000 n -0000943708 00000 n -0000002447 00000 n -0000002547 00000 n -0000278659 00000 n -0000943634 00000 n -0000002600 00000 n -0000002802 00000 n -0000443213 00000 n -0000943547 00000 n -0000002855 00000 n -0000003036 00000 n -0000514114 00000 n -0000943460 00000 n -0000003089 00000 n -0000003270 00000 n -0000537183 00000 n -0000943373 00000 n -0000003323 00000 n -0000003757 00000 n -0000564872 00000 n -0000943286 00000 n -0000003810 00000 n -0000004122 00000 n -0000594693 00000 n -0000943199 00000 n -0000004175 00000 n -0000004520 00000 n -0000620139 00000 n -0000943112 00000 n -0000004573 00000 n -0000004797 00000 n -0000650730 00000 n -0000943025 00000 n -0000004850 00000 n -0000005079 00000 n -0000679492 00000 n -0000942938 00000 n -0000005132 00000 n -0000005375 00000 n -0000704264 00000 n -0000942864 00000 n -0000005429 00000 n -0000005697 00000 n -0000741527 00000 n -0000942750 00000 n -0000005745 00000 n -0000005884 00000 n -0000741589 00000 n -0000942686 00000 n -0000005938 00000 n -0000006155 00000 n -0000776646 00000 n -0000942555 00000 n -0000006202 00000 n -0000006341 00000 n -0000776709 00000 n -0000942476 00000 n -0000006390 00000 n -0000006551 00000 n -0000779494 00000 n -0000942344 00000 n -0000006600 00000 n -0000006787 00000 n -0000784289 00000 n -0000942265 00000 n -0000006841 00000 n -0000006997 00000 n -0000792049 00000 n -0000942186 00000 n -0000007051 00000 n -0000007177 00000 n -0000795468 00000 n -0000942054 00000 n -0000007226 00000 n -0000007327 00000 n -0000795531 00000 n -0000941975 00000 n -0000007381 00000 n -0000007621 00000 n -0000805636 00000 n -0000941896 00000 n -0000007675 00000 n -0000007947 00000 n -0000809409 00000 n -0000941764 00000 n -0000007996 00000 n -0000008324 00000 n -0000809472 00000 n -0000941685 00000 n -0000008378 00000 n -0000008509 00000 n -0000820221 00000 n -0000941606 00000 n -0000008563 00000 n -0000008892 00000 n -0000824447 00000 n -0000941474 00000 n -0000008941 00000 n -0000009042 00000 n -0000824510 00000 n -0000941395 00000 n -0000009096 00000 n -0000009351 00000 n -0000827307 00000 n -0000941302 00000 n -0000009405 00000 n -0000009672 00000 n -0000837357 00000 n -0000941223 00000 n -0000009726 00000 n -0000009938 00000 n -0000837420 00000 n -0000941130 00000 n -0000009987 00000 n -0000010053 00000 n -0000837483 00000 n -0000940998 00000 n -0000010102 00000 n -0000010314 00000 n -0000837546 00000 n -0000940933 00000 n -0000010368 00000 n -0000010530 00000 n -0000837609 00000 n -0000940840 00000 n -0000010579 00000 n -0000010670 00000 n -0000837672 00000 n -0000940761 00000 n -0000010719 00000 n -0000010870 00000 n -0000844287 00000 n -0000940668 00000 n -0000010917 00000 n -0000010998 00000 n -0000845835 00000 n -0000940575 00000 n -0000011046 00000 n -0000011127 00000 n -0000847868 00000 n -0000940496 00000 n -0000011175 00000 n -0000011316 00000 n -0000012274 00000 n -0000012396 00000 n -0000054801 00000 n -0000011368 00000 n -0000054675 00000 n -0000054738 00000 n -0000937413 00000 n -0000924564 00000 n -0000937243 00000 n -0000923275 00000 n -0000909422 00000 n -0000923105 00000 n -0000938509 00000 n -0000056079 00000 n -0000055894 00000 n -0000054922 00000 n -0000056016 00000 n -0000057219 00000 n -0000057034 00000 n -0000056164 00000 n -0000057156 00000 n -0000908889 00000 n -0000907026 00000 n -0000908729 00000 n -0000064068 00000 n -0000059604 00000 n -0000057317 00000 n -0000063942 00000 n -0000064005 00000 n -0000059938 00000 n -0000060093 00000 n -0000060250 00000 n -0000060406 00000 n -0000060561 00000 n -0000060718 00000 n -0000060875 00000 n -0000061032 00000 n -0000061188 00000 n -0000061351 00000 n -0000061514 00000 n -0000061677 00000 n -0000061840 00000 n -0000061996 00000 n -0000062158 00000 n -0000062321 00000 n -0000062484 00000 n -0000062646 00000 n -0000062808 00000 n -0000062971 00000 n -0000063134 00000 n -0000063297 00000 n -0000063459 00000 n -0000063623 00000 n -0000063780 00000 n -0000070259 00000 n -0000066223 00000 n -0000064153 00000 n -0000070196 00000 n -0000905959 00000 n -0000895008 00000 n -0000905784 00000 n -0000066541 00000 n -0000066695 00000 n -0000066852 00000 n -0000067009 00000 n -0000067172 00000 n -0000067334 00000 n -0000067491 00000 n -0000067653 00000 n -0000067816 00000 n -0000067972 00000 n -0000068134 00000 n -0000068297 00000 n -0000068454 00000 n -0000068617 00000 n -0000068780 00000 n -0000068943 00000 n -0000069098 00000 n -0000069255 00000 n -0000069416 00000 n -0000069572 00000 n -0000069729 00000 n -0000069884 00000 n -0000070040 00000 n -0000077514 00000 n -0000072824 00000 n -0000070357 00000 n -0000077388 00000 n -0000077451 00000 n -0000073174 00000 n -0000073328 00000 n -0000073483 00000 n -0000073639 00000 n -0000073795 00000 n -0000073951 00000 n -0000074107 00000 n -0000074263 00000 n -0000074419 00000 n -0000074575 00000 n -0000074731 00000 n -0000074886 00000 n -0000075043 00000 n -0000075200 00000 n -0000075356 00000 n -0000075513 00000 n -0000075669 00000 n -0000075826 00000 n -0000075982 00000 n -0000076139 00000 n -0000076295 00000 n -0000076452 00000 n -0000076607 00000 n -0000076764 00000 n -0000076920 00000 n -0000077076 00000 n -0000077232 00000 n -0000091344 00000 n -0000094586 00000 n -0000109581 00000 n -0000119672 00000 n -0000154567 00000 n -0000154631 00000 n -0000163500 00000 n -0000163564 00000 n -0000175080 00000 n -0000175143 00000 n -0000184152 00000 n -0000189806 00000 n -0000217461 00000 n -0000225177 00000 n -0000254417 00000 n -0000268103 00000 n -0000443275 00000 n -0000443339 00000 n -0000514176 00000 n -0000537245 00000 n -0000564934 00000 n -0000594755 00000 n -0000620201 00000 n -0000650792 00000 n -0000679554 00000 n -0000704326 00000 n -0000741652 00000 n -0000079838 00000 n -0000078492 00000 n -0000077599 00000 n -0000079775 00000 n -0000078682 00000 n -0000078839 00000 n -0000078995 00000 n -0000079151 00000 n -0000079307 00000 n -0000079463 00000 n -0000079619 00000 n -0000938626 00000 n -0000773849 00000 n -0000784352 00000 n -0000792112 00000 n -0000799798 00000 n -0000809535 00000 n -0000813969 00000 n -0000824573 00000 n -0000085214 00000 n -0000081854 00000 n -0000079923 00000 n -0000085088 00000 n -0000085151 00000 n -0000082140 00000 n -0000082294 00000 n -0000082449 00000 n -0000082604 00000 n -0000082759 00000 n -0000082914 00000 n -0000083069 00000 n -0000083224 00000 n -0000083379 00000 n -0000083534 00000 n -0000083690 00000 n -0000083845 00000 n -0000084001 00000 n -0000084157 00000 n -0000084311 00000 n -0000084467 00000 n -0000084622 00000 n -0000084778 00000 n -0000084933 00000 n -0000166634 00000 n -0000233656 00000 n -0000277599 00000 n -0000446275 00000 n -0000446339 00000 n -0000514050 00000 n -0000539674 00000 n -0000567389 00000 n -0000598002 00000 n -0000622036 00000 n -0000652978 00000 n -0000655986 00000 n -0000658093 00000 n -0000704200 00000 n -0000706534 00000 n -0000709691 00000 n -0000711726 00000 n -0000779430 00000 n -0000787828 00000 n -0000087638 00000 n -0000087150 00000 n -0000085312 00000 n -0000087452 00000 n -0000087292 00000 n -0000848057 00000 n -0000089812 00000 n -0000093214 00000 n -0000091534 00000 n -0000089670 00000 n -0000087736 00000 n -0000091156 00000 n -0000091281 00000 n -0000091000 00000 n -0000091408 00000 n -0000091471 00000 n -0000090729 00000 n -0000090860 00000 n -0000090907 00000 n -0000090979 00000 n -0000094650 00000 n -0000093092 00000 n -0000091660 00000 n -0000094460 00000 n -0000094523 00000 n -0000094189 00000 n -0000094320 00000 n -0000094367 00000 n -0000094439 00000 n -0000097106 00000 n -0000096618 00000 n -0000094776 00000 n -0000096917 00000 n -0000096980 00000 n -0000097043 00000 n -0000096760 00000 n -0000098606 00000 n -0000109645 00000 n -0000098448 00000 n -0000097204 00000 n -0000109394 00000 n -0000108927 00000 n -0000109081 00000 n -0000109237 00000 n -0000938743 00000 n -0000111713 00000 n -0000121220 00000 n -0000151674 00000 n -0000119799 00000 n -0000111563 00000 n -0000109779 00000 n -0000119546 00000 n -0000119609 00000 n -0000119232 00000 n -0000119736 00000 n -0000119389 00000 n -0000154695 00000 n -0000121098 00000 n -0000119933 00000 n -0000154504 00000 n -0000156360 00000 n -0000160784 00000 n -0000163628 00000 n -0000156218 00000 n -0000154842 00000 n -0000163374 00000 n -0000163437 00000 n -0000163217 00000 n -0000166761 00000 n -0000166109 00000 n -0000163775 00000 n -0000166571 00000 n -0000166259 00000 n -0000166698 00000 n -0000166415 00000 n -0000168384 00000 n -0000171060 00000 n -0000175207 00000 n -0000168242 00000 n -0000166859 00000 n -0000174954 00000 n -0000175017 00000 n -0000174797 00000 n -0000177358 00000 n -0000186941 00000 n -0000184216 00000 n -0000177200 00000 n -0000175356 00000 n -0000184089 00000 n -0000183619 00000 n -0000183776 00000 n -0000183932 00000 n -0000938860 00000 n -0000191962 00000 n -0000189932 00000 n -0000186783 00000 n -0000184338 00000 n -0000189680 00000 n -0000189743 00000 n -0000189210 00000 n -0000189366 00000 n -0000189523 00000 n -0000217651 00000 n -0000191820 00000 n -0000190067 00000 n -0000217398 00000 n -0000217525 00000 n -0000217240 00000 n -0000217588 00000 n -0000219696 00000 n -0000225304 00000 n -0000219574 00000 n -0000217786 00000 n -0000225114 00000 n -0000225241 00000 n -0000228098 00000 n -0000227725 00000 n -0000225439 00000 n -0000227847 00000 n -0000227972 00000 n -0000228035 00000 n -0000230743 00000 n -0000230432 00000 n -0000228196 00000 n -0000230554 00000 n -0000230617 00000 n -0000230680 00000 n -0000235905 00000 n -0000233907 00000 n -0000233295 00000 n -0000230854 00000 n -0000233593 00000 n -0000233720 00000 n +0000000875 00000 n +0000189462 00000 n +0000946586 00000 n +0000000923 00000 n +0000001038 00000 n +0000227502 00000 n +0000946499 00000 n +0000001086 00000 n +0000001186 00000 n +0000233375 00000 n +0000946375 00000 n +0000001234 00000 n +0000001349 00000 n 0000233437 00000 n -0000938977 00000 n -0000256550 00000 n -0000254542 00000 n -0000235763 00000 n -0000234005 00000 n -0000254354 00000 n -0000254196 00000 n -0000268166 00000 n -0000256428 00000 n -0000254690 00000 n -0000268040 00000 n -0000271113 00000 n -0000270866 00000 n -0000268314 00000 n -0000270988 00000 n -0000274466 00000 n -0000274281 00000 n -0000271224 00000 n -0000274403 00000 n -0000894655 00000 n -0000886314 00000 n -0000894477 00000 n -0000885874 00000 n -0000883590 00000 n -0000885714 00000 n -0000277786 00000 n -0000277074 00000 n -0000274603 00000 n -0000277536 00000 n -0000883140 00000 n -0000875850 00000 n -0000882965 00000 n -0000277224 00000 n -0000277381 00000 n -0000278721 00000 n -0000278474 00000 n -0000277897 00000 n -0000278596 00000 n -0000939094 00000 n -0000280361 00000 n -0000311560 00000 n -0000443403 00000 n -0000280211 00000 n -0000278819 00000 n -0000443150 00000 n -0000442838 00000 n -0000442996 00000 n -0000446403 00000 n -0000445749 00000 n -0000443552 00000 n -0000446212 00000 n -0000445899 00000 n -0000446055 00000 n -0000448500 00000 n -0000514240 00000 n -0000448378 00000 n -0000446501 00000 n -0000513987 00000 n -0000515736 00000 n -0000515209 00000 n -0000514375 00000 n -0000515673 00000 n -0000515359 00000 n -0000515517 00000 n -0000518470 00000 n -0000537308 00000 n -0000518312 00000 n -0000515821 00000 n -0000537120 00000 n -0000536651 00000 n -0000875581 00000 n -0000872865 00000 n -0000875408 00000 n -0000872516 00000 n -0000870461 00000 n -0000872355 00000 n -0000536808 00000 n -0000536965 00000 n -0000539800 00000 n -0000539489 00000 n -0000537508 00000 n -0000539611 00000 n -0000539737 00000 n -0000939211 00000 n -0000542595 00000 n -0000564998 00000 n -0000542429 00000 n -0000539924 00000 n -0000564809 00000 n -0000564182 00000 n -0000564343 00000 n -0000564499 00000 n -0000564653 00000 n -0000847994 00000 n -0000567453 00000 n -0000567027 00000 n -0000565198 00000 n -0000567326 00000 n -0000567169 00000 n -0000570064 00000 n -0000594819 00000 n -0000569942 00000 n -0000567564 00000 n -0000594630 00000 n -0000870132 00000 n -0000868024 00000 n -0000869963 00000 n -0000598129 00000 n -0000597475 00000 n -0000595032 00000 n -0000597939 00000 n -0000597625 00000 n -0000597783 00000 n -0000598066 00000 n -0000600417 00000 n -0000620328 00000 n -0000600267 00000 n -0000598253 00000 n -0000620076 00000 n -0000619761 00000 n -0000619919 00000 n -0000620265 00000 n -0000622100 00000 n -0000621851 00000 n -0000620463 00000 n -0000621973 00000 n -0000939328 00000 n -0000624612 00000 n -0000650856 00000 n -0000624446 00000 n -0000622211 00000 n -0000650667 00000 n -0000650044 00000 n -0000650200 00000 n -0000650355 00000 n -0000650511 00000 n -0000653104 00000 n -0000652793 00000 n -0000650991 00000 n -0000652915 00000 n -0000653042 00000 n -0000656050 00000 n -0000655801 00000 n -0000653215 00000 n -0000655923 00000 n -0000658157 00000 n -0000657908 00000 n -0000656148 00000 n -0000658030 00000 n -0000660263 00000 n -0000679618 00000 n -0000660113 00000 n -0000658255 00000 n -0000679429 00000 n -0000679114 00000 n -0000679272 00000 n -0000682233 00000 n -0000704390 00000 n -0000682067 00000 n -0000679753 00000 n -0000704137 00000 n -0000703509 00000 n -0000703667 00000 n -0000703824 00000 n -0000703980 00000 n -0000939445 00000 n -0000706912 00000 n -0000706349 00000 n -0000704525 00000 n -0000706471 00000 n -0000706597 00000 n -0000706660 00000 n -0000706723 00000 n -0000706786 00000 n -0000706849 00000 n -0000709755 00000 n -0000709506 00000 n -0000707023 00000 n -0000709628 00000 n -0000711853 00000 n -0000711541 00000 n -0000709853 00000 n -0000711663 00000 n -0000711790 00000 n -0000713991 00000 n -0000744250 00000 n -0000741716 00000 n -0000713849 00000 n -0000711964 00000 n -0000741464 00000 n -0000741307 00000 n -0000773913 00000 n -0000744084 00000 n -0000741903 00000 n -0000773786 00000 n -0000773148 00000 n -0000773306 00000 n -0000773464 00000 n -0000773625 00000 n -0000776771 00000 n -0000776125 00000 n -0000774074 00000 n -0000776583 00000 n -0000776275 00000 n -0000776429 00000 n -0000939562 00000 n -0000847931 00000 n -0000779557 00000 n -0000779245 00000 n -0000776882 00000 n -0000779367 00000 n -0000782536 00000 n -0000784415 00000 n -0000782370 00000 n -0000779668 00000 n -0000784226 00000 n -0000783601 00000 n -0000783757 00000 n -0000783914 00000 n -0000784070 00000 n -0000783330 00000 n -0000783461 00000 n -0000783508 00000 n -0000783580 00000 n -0000787892 00000 n -0000787643 00000 n -0000784555 00000 n -0000787765 00000 n -0000790329 00000 n -0000792176 00000 n -0000790187 00000 n -0000788003 00000 n -0000791986 00000 n -0000791829 00000 n -0000791478 00000 n -0000791609 00000 n -0000791656 00000 n -0000791728 00000 n -0000791808 00000 n -0000797700 00000 n -0000795657 00000 n -0000794944 00000 n -0000792303 00000 n -0000795405 00000 n -0000795094 00000 n -0000795249 00000 n -0000795594 00000 n -0000799925 00000 n -0000797578 00000 n -0000795768 00000 n -0000799735 00000 n -0000799862 00000 n -0000939679 00000 n -0000799383 00000 n -0000799514 00000 n -0000799561 00000 n -0000799633 00000 n -0000799713 00000 n -0000803101 00000 n -0000802676 00000 n -0000800052 00000 n -0000802975 00000 n -0000803038 00000 n -0000802818 00000 n -0000805699 00000 n -0000805451 00000 n -0000803199 00000 n -0000805573 00000 n -0000867193 00000 n -0000850093 00000 n -0000867022 00000 n -0000807900 00000 n -0000809599 00000 n -0000807750 00000 n -0000805823 00000 n -0000809346 00000 n -0000809034 00000 n -0000809190 00000 n -0000808763 00000 n -0000808894 00000 n -0000808941 00000 n -0000809013 00000 n -0000811992 00000 n -0000814032 00000 n -0000811850 00000 n -0000809739 00000 n -0000813906 00000 n -0000813751 00000 n -0000813479 00000 n -0000813610 00000 n -0000813657 00000 n -0000813729 00000 n -0000817445 00000 n -0000817260 00000 n -0000814146 00000 n -0000817382 00000 n -0000820284 00000 n -0000820036 00000 n -0000817595 00000 n -0000820158 00000 n -0000939796 00000 n -0000822449 00000 n -0000824637 00000 n -0000822307 00000 n -0000820395 00000 n -0000824384 00000 n -0000824227 00000 n -0000823876 00000 n -0000824007 00000 n -0000824054 00000 n -0000824126 00000 n -0000824206 00000 n -0000827369 00000 n -0000827122 00000 n -0000824777 00000 n -0000827244 00000 n -0000829444 00000 n -0000829196 00000 n -0000827493 00000 n -0000829318 00000 n -0000829381 00000 n -0000831528 00000 n -0000831343 00000 n -0000829555 00000 n -0000831465 00000 n -0000833484 00000 n -0000833236 00000 n -0000831626 00000 n -0000833358 00000 n -0000833421 00000 n -0000834665 00000 n -0000834480 00000 n -0000833595 00000 n -0000834602 00000 n -0000939913 00000 n -0000837735 00000 n -0000836979 00000 n -0000834763 00000 n -0000837294 00000 n -0000837121 00000 n -0000843683 00000 n -0000840057 00000 n -0000837846 00000 n -0000843557 00000 n -0000843620 00000 n -0000840335 00000 n -0000840509 00000 n -0000840686 00000 n -0000840860 00000 n -0000841033 00000 n -0000841217 00000 n -0000841386 00000 n -0000841563 00000 n -0000841747 00000 n -0000841920 00000 n -0000842118 00000 n -0000842289 00000 n -0000842460 00000 n -0000842661 00000 n -0000842837 00000 n -0000843017 00000 n -0000843197 00000 n -0000843375 00000 n -0000844350 00000 n -0000844102 00000 n -0000843807 00000 n -0000844224 00000 n -0000846842 00000 n -0000845650 00000 n -0000844435 00000 n -0000845772 00000 n -0000845898 00000 n -0000845961 00000 n -0000846024 00000 n -0000846087 00000 n -0000846150 00000 n -0000846213 00000 n -0000846276 00000 n -0000846339 00000 n -0000846402 00000 n +0000946301 00000 n +0000001402 00000 n +0000001557 00000 n +0000254073 00000 n +0000946214 00000 n +0000001610 00000 n +0000001790 00000 n +0000270643 00000 n +0000946127 00000 n +0000001843 00000 n +0000002084 00000 n +0000277254 00000 n +0000946053 00000 n +0000002137 00000 n +0000002353 00000 n +0000277316 00000 n +0000945928 00000 n +0000002401 00000 n +0000002501 00000 n +0000278251 00000 n +0000945854 00000 n +0000002554 00000 n +0000002756 00000 n +0000442805 00000 n +0000945767 00000 n +0000002809 00000 n +0000002990 00000 n +0000513706 00000 n +0000945680 00000 n +0000003043 00000 n +0000003224 00000 n +0000536775 00000 n +0000945593 00000 n +0000003277 00000 n +0000003711 00000 n +0000564464 00000 n +0000945506 00000 n +0000003764 00000 n +0000004076 00000 n +0000594285 00000 n +0000945419 00000 n +0000004129 00000 n +0000004474 00000 n +0000619731 00000 n +0000945332 00000 n +0000004527 00000 n +0000004751 00000 n +0000650322 00000 n +0000945245 00000 n +0000004804 00000 n +0000005033 00000 n +0000679084 00000 n +0000945158 00000 n +0000005086 00000 n +0000005329 00000 n +0000703856 00000 n +0000945084 00000 n +0000005383 00000 n +0000005651 00000 n +0000741119 00000 n +0000944970 00000 n +0000005699 00000 n +0000005838 00000 n +0000741181 00000 n +0000944906 00000 n +0000005892 00000 n +0000006109 00000 n +0000776238 00000 n +0000944775 00000 n +0000006156 00000 n +0000006295 00000 n +0000776301 00000 n +0000944696 00000 n +0000006344 00000 n +0000006505 00000 n +0000779086 00000 n +0000944564 00000 n +0000006554 00000 n +0000006741 00000 n +0000783920 00000 n +0000944485 00000 n +0000006795 00000 n +0000006951 00000 n +0000791680 00000 n +0000944406 00000 n +0000007005 00000 n +0000007131 00000 n +0000795098 00000 n +0000944274 00000 n +0000007180 00000 n +0000007281 00000 n +0000795161 00000 n +0000944195 00000 n +0000007335 00000 n +0000007552 00000 n +0000805267 00000 n +0000944116 00000 n +0000007606 00000 n +0000007878 00000 n +0000809040 00000 n +0000943984 00000 n +0000007927 00000 n +0000008255 00000 n +0000809103 00000 n +0000943905 00000 n +0000008309 00000 n +0000008440 00000 n +0000819861 00000 n +0000943826 00000 n +0000008494 00000 n +0000008823 00000 n +0000824084 00000 n +0000943694 00000 n +0000008872 00000 n +0000008973 00000 n +0000824147 00000 n +0000943615 00000 n +0000009027 00000 n +0000009259 00000 n +0000826944 00000 n +0000943522 00000 n +0000009313 00000 n +0000009580 00000 n +0000834971 00000 n +0000943443 00000 n +0000009634 00000 n +0000009846 00000 n +0000837890 00000 n +0000943350 00000 n +0000009895 00000 n +0000010127 00000 n +0000837953 00000 n +0000943257 00000 n +0000010176 00000 n +0000010388 00000 n +0000838079 00000 n +0000943164 00000 n +0000010437 00000 n +0000010528 00000 n +0000838142 00000 n +0000943085 00000 n +0000010577 00000 n +0000010728 00000 n 0000846465 00000 n +0000942992 00000 n +0000010775 00000 n +0000010856 00000 n +0000848013 00000 n +0000942899 00000 n +0000010904 00000 n +0000010985 00000 n +0000850046 00000 n +0000942820 00000 n +0000011033 00000 n +0000011174 00000 n +0000012132 00000 n +0000012254 00000 n +0000054659 00000 n +0000011226 00000 n +0000054533 00000 n +0000054596 00000 n +0000939652 00000 n +0000926803 00000 n +0000939482 00000 n +0000925514 00000 n +0000911661 00000 n +0000925344 00000 n +0000940748 00000 n +0000055937 00000 n +0000055752 00000 n +0000054780 00000 n +0000055874 00000 n +0000057077 00000 n +0000056892 00000 n +0000056022 00000 n +0000057014 00000 n +0000911128 00000 n +0000909264 00000 n +0000910968 00000 n +0000063919 00000 n +0000059456 00000 n +0000057175 00000 n +0000063793 00000 n +0000063856 00000 n +0000059790 00000 n +0000059945 00000 n +0000060102 00000 n +0000060258 00000 n +0000060413 00000 n +0000060569 00000 n +0000060726 00000 n +0000060883 00000 n +0000061039 00000 n +0000061202 00000 n +0000061365 00000 n +0000061528 00000 n +0000061691 00000 n +0000061847 00000 n +0000062009 00000 n +0000062172 00000 n +0000062335 00000 n +0000062497 00000 n +0000062659 00000 n +0000062822 00000 n +0000062985 00000 n +0000063148 00000 n +0000063310 00000 n +0000063474 00000 n +0000063631 00000 n +0000069855 00000 n +0000065987 00000 n +0000064004 00000 n +0000069792 00000 n +0000908189 00000 n +0000897187 00000 n +0000908014 00000 n +0000066297 00000 n +0000066451 00000 n +0000066608 00000 n +0000066765 00000 n +0000066928 00000 n +0000067090 00000 n +0000067247 00000 n +0000067409 00000 n +0000067572 00000 n +0000067728 00000 n +0000067890 00000 n +0000068053 00000 n +0000068210 00000 n +0000068373 00000 n +0000068536 00000 n +0000068699 00000 n +0000068856 00000 n +0000069013 00000 n +0000069168 00000 n +0000069325 00000 n +0000069480 00000 n +0000069636 00000 n +0000077110 00000 n +0000072420 00000 n +0000069953 00000 n +0000076984 00000 n +0000077047 00000 n +0000072770 00000 n +0000072924 00000 n +0000073079 00000 n +0000073235 00000 n +0000073391 00000 n +0000073547 00000 n +0000073703 00000 n +0000073859 00000 n +0000074015 00000 n +0000074171 00000 n +0000074327 00000 n +0000074482 00000 n +0000074639 00000 n +0000074796 00000 n +0000074952 00000 n +0000075109 00000 n +0000075265 00000 n +0000075422 00000 n +0000075578 00000 n +0000075735 00000 n +0000075891 00000 n +0000076048 00000 n +0000076203 00000 n +0000076360 00000 n +0000076516 00000 n +0000076672 00000 n +0000076828 00000 n +0000090940 00000 n +0000094182 00000 n +0000109173 00000 n +0000119264 00000 n +0000154159 00000 n +0000154223 00000 n +0000163092 00000 n +0000163156 00000 n +0000174672 00000 n +0000174735 00000 n +0000183744 00000 n +0000189398 00000 n +0000217053 00000 n +0000224769 00000 n +0000254009 00000 n +0000267695 00000 n +0000442867 00000 n +0000442931 00000 n +0000513768 00000 n +0000536837 00000 n +0000564526 00000 n +0000594347 00000 n +0000619793 00000 n +0000650384 00000 n +0000679146 00000 n +0000703918 00000 n +0000741244 00000 n +0000079434 00000 n +0000078088 00000 n +0000077195 00000 n +0000079371 00000 n +0000078278 00000 n +0000078435 00000 n +0000078591 00000 n +0000078747 00000 n +0000078903 00000 n +0000079059 00000 n +0000079215 00000 n +0000940865 00000 n +0000773441 00000 n +0000783983 00000 n +0000791743 00000 n +0000799382 00000 n +0000809166 00000 n +0000813600 00000 n +0000824210 00000 n +0000084810 00000 n +0000081450 00000 n +0000079519 00000 n +0000084684 00000 n +0000084747 00000 n +0000081736 00000 n +0000081890 00000 n +0000082045 00000 n +0000082200 00000 n +0000082355 00000 n +0000082510 00000 n +0000082665 00000 n +0000082820 00000 n +0000082975 00000 n +0000083130 00000 n +0000083286 00000 n +0000083441 00000 n +0000083597 00000 n +0000083753 00000 n +0000083907 00000 n +0000084063 00000 n +0000084218 00000 n +0000084374 00000 n +0000084529 00000 n +0000166226 00000 n +0000233248 00000 n +0000277191 00000 n +0000445867 00000 n +0000445931 00000 n +0000513642 00000 n +0000539266 00000 n +0000566981 00000 n +0000597594 00000 n +0000621628 00000 n +0000652570 00000 n +0000655578 00000 n +0000657685 00000 n +0000703792 00000 n +0000706126 00000 n +0000709283 00000 n +0000711318 00000 n +0000779022 00000 n +0000787459 00000 n +0000087234 00000 n +0000086746 00000 n +0000084908 00000 n +0000087048 00000 n +0000086888 00000 n +0000850235 00000 n +0000089408 00000 n +0000092810 00000 n +0000091130 00000 n +0000089266 00000 n +0000087332 00000 n +0000090752 00000 n +0000090877 00000 n +0000090596 00000 n +0000091004 00000 n +0000091067 00000 n +0000090325 00000 n +0000090456 00000 n +0000090503 00000 n +0000090575 00000 n +0000094246 00000 n +0000092688 00000 n +0000091256 00000 n +0000094056 00000 n +0000094119 00000 n +0000093785 00000 n +0000093916 00000 n +0000093963 00000 n +0000094035 00000 n +0000096702 00000 n +0000096214 00000 n +0000094372 00000 n +0000096513 00000 n +0000096576 00000 n +0000096639 00000 n +0000096356 00000 n +0000098198 00000 n +0000109237 00000 n +0000098040 00000 n +0000096800 00000 n +0000108986 00000 n +0000108519 00000 n +0000108673 00000 n +0000108829 00000 n +0000940982 00000 n +0000111305 00000 n +0000120812 00000 n +0000151266 00000 n +0000119391 00000 n +0000111155 00000 n +0000109371 00000 n +0000119138 00000 n +0000119201 00000 n +0000118824 00000 n +0000119328 00000 n +0000118981 00000 n +0000154287 00000 n +0000120690 00000 n +0000119525 00000 n +0000154096 00000 n +0000155952 00000 n +0000160376 00000 n +0000163220 00000 n +0000155810 00000 n +0000154434 00000 n +0000162966 00000 n +0000163029 00000 n +0000162809 00000 n +0000166353 00000 n +0000165701 00000 n +0000163367 00000 n +0000166163 00000 n +0000165851 00000 n +0000166290 00000 n +0000166007 00000 n +0000167976 00000 n +0000170652 00000 n +0000174799 00000 n +0000167834 00000 n +0000166451 00000 n +0000174546 00000 n +0000174609 00000 n +0000174389 00000 n +0000176950 00000 n +0000186533 00000 n +0000183808 00000 n +0000176792 00000 n +0000174948 00000 n +0000183681 00000 n +0000183211 00000 n +0000183368 00000 n +0000183524 00000 n +0000941099 00000 n +0000191554 00000 n +0000189524 00000 n +0000186375 00000 n +0000183930 00000 n +0000189272 00000 n +0000189335 00000 n +0000188802 00000 n +0000188958 00000 n +0000189115 00000 n +0000217243 00000 n +0000191412 00000 n +0000189659 00000 n +0000216990 00000 n +0000217117 00000 n +0000216832 00000 n +0000217180 00000 n +0000219288 00000 n +0000224896 00000 n +0000219166 00000 n +0000217378 00000 n +0000224706 00000 n +0000224833 00000 n +0000227690 00000 n +0000227317 00000 n +0000225031 00000 n +0000227439 00000 n +0000227564 00000 n +0000227627 00000 n +0000230335 00000 n +0000230024 00000 n +0000227788 00000 n +0000230146 00000 n +0000230209 00000 n +0000230272 00000 n +0000235497 00000 n +0000233499 00000 n +0000232887 00000 n +0000230446 00000 n +0000233185 00000 n +0000233312 00000 n +0000233029 00000 n +0000941216 00000 n +0000256142 00000 n +0000254134 00000 n +0000235355 00000 n +0000233597 00000 n +0000253946 00000 n +0000253788 00000 n +0000267758 00000 n +0000256020 00000 n +0000254282 00000 n +0000267632 00000 n +0000270705 00000 n +0000270458 00000 n +0000267906 00000 n +0000270580 00000 n +0000274058 00000 n +0000273873 00000 n +0000270816 00000 n +0000273995 00000 n +0000896834 00000 n +0000888493 00000 n +0000896656 00000 n +0000888053 00000 n +0000885768 00000 n +0000887893 00000 n +0000277378 00000 n +0000276666 00000 n +0000274195 00000 n +0000277128 00000 n +0000885318 00000 n +0000878028 00000 n +0000885143 00000 n +0000276816 00000 n +0000276973 00000 n +0000278313 00000 n +0000278066 00000 n +0000277489 00000 n +0000278188 00000 n +0000941333 00000 n +0000279953 00000 n +0000311152 00000 n +0000442995 00000 n +0000279803 00000 n +0000278411 00000 n +0000442742 00000 n +0000442430 00000 n +0000442588 00000 n +0000445995 00000 n +0000445341 00000 n +0000443144 00000 n +0000445804 00000 n +0000445491 00000 n +0000445647 00000 n +0000448092 00000 n +0000513832 00000 n +0000447970 00000 n +0000446093 00000 n +0000513579 00000 n +0000515328 00000 n +0000514801 00000 n +0000513967 00000 n +0000515265 00000 n +0000514951 00000 n +0000515109 00000 n +0000518062 00000 n +0000536900 00000 n +0000517904 00000 n +0000515413 00000 n +0000536712 00000 n +0000536243 00000 n +0000877759 00000 n +0000875043 00000 n +0000877586 00000 n +0000874694 00000 n +0000872639 00000 n +0000874533 00000 n +0000536400 00000 n +0000536557 00000 n +0000539392 00000 n +0000539081 00000 n +0000537100 00000 n +0000539203 00000 n +0000539329 00000 n +0000941450 00000 n +0000542187 00000 n +0000564590 00000 n +0000542021 00000 n +0000539516 00000 n +0000564401 00000 n +0000563774 00000 n +0000563935 00000 n +0000564091 00000 n +0000564245 00000 n +0000850172 00000 n +0000567045 00000 n +0000566619 00000 n +0000564790 00000 n +0000566918 00000 n +0000566761 00000 n +0000569656 00000 n +0000594411 00000 n +0000569534 00000 n +0000567156 00000 n +0000594222 00000 n +0000872310 00000 n +0000870202 00000 n +0000872141 00000 n +0000597721 00000 n +0000597067 00000 n +0000594624 00000 n +0000597531 00000 n +0000597217 00000 n +0000597375 00000 n +0000597658 00000 n +0000600009 00000 n +0000619920 00000 n +0000599859 00000 n +0000597845 00000 n +0000619668 00000 n +0000619353 00000 n +0000619511 00000 n +0000619857 00000 n +0000621692 00000 n +0000621443 00000 n +0000620055 00000 n +0000621565 00000 n +0000941567 00000 n +0000624204 00000 n +0000650448 00000 n +0000624038 00000 n +0000621803 00000 n +0000650259 00000 n +0000649636 00000 n +0000649792 00000 n +0000649947 00000 n +0000650103 00000 n +0000652696 00000 n +0000652385 00000 n +0000650583 00000 n +0000652507 00000 n +0000652634 00000 n +0000655642 00000 n +0000655393 00000 n +0000652807 00000 n +0000655515 00000 n +0000657749 00000 n +0000657500 00000 n +0000655740 00000 n +0000657622 00000 n +0000659855 00000 n +0000679210 00000 n +0000659705 00000 n +0000657847 00000 n +0000679021 00000 n +0000678706 00000 n +0000678864 00000 n +0000681825 00000 n +0000703982 00000 n +0000681659 00000 n +0000679345 00000 n +0000703729 00000 n +0000703101 00000 n +0000703259 00000 n +0000703416 00000 n +0000703572 00000 n +0000941684 00000 n +0000706504 00000 n +0000705941 00000 n +0000704117 00000 n +0000706063 00000 n +0000706189 00000 n +0000706252 00000 n +0000706315 00000 n +0000706378 00000 n +0000706441 00000 n +0000709347 00000 n +0000709098 00000 n +0000706615 00000 n +0000709220 00000 n +0000711445 00000 n +0000711133 00000 n +0000709445 00000 n +0000711255 00000 n +0000711382 00000 n +0000713583 00000 n +0000743842 00000 n +0000741308 00000 n +0000713441 00000 n +0000711556 00000 n +0000741056 00000 n +0000740899 00000 n +0000773505 00000 n +0000743676 00000 n +0000741495 00000 n +0000773378 00000 n +0000772740 00000 n +0000772898 00000 n +0000773056 00000 n +0000773217 00000 n +0000776363 00000 n +0000775717 00000 n +0000773666 00000 n +0000776175 00000 n +0000775867 00000 n +0000776021 00000 n +0000941801 00000 n +0000850109 00000 n +0000779149 00000 n +0000778837 00000 n +0000776474 00000 n +0000778959 00000 n +0000782167 00000 n +0000784046 00000 n +0000782001 00000 n +0000779260 00000 n +0000783857 00000 n +0000783232 00000 n +0000783388 00000 n +0000783545 00000 n +0000783701 00000 n +0000782961 00000 n +0000783092 00000 n +0000783139 00000 n +0000783211 00000 n +0000787523 00000 n +0000787274 00000 n +0000784186 00000 n +0000787396 00000 n +0000789960 00000 n +0000791807 00000 n +0000789818 00000 n +0000787634 00000 n +0000791617 00000 n +0000791460 00000 n +0000791109 00000 n +0000791240 00000 n +0000791287 00000 n +0000791359 00000 n +0000791439 00000 n +0000797330 00000 n +0000795287 00000 n +0000794574 00000 n +0000791934 00000 n +0000795035 00000 n +0000794724 00000 n +0000794879 00000 n +0000795224 00000 n +0000799509 00000 n +0000797208 00000 n +0000795398 00000 n +0000799319 00000 n +0000799446 00000 n +0000941918 00000 n +0000798967 00000 n +0000799098 00000 n +0000799145 00000 n +0000799217 00000 n +0000799297 00000 n +0000802685 00000 n +0000802260 00000 n +0000799636 00000 n +0000802559 00000 n +0000802622 00000 n +0000802402 00000 n +0000805330 00000 n +0000805082 00000 n +0000802783 00000 n +0000805204 00000 n +0000869371 00000 n +0000852271 00000 n +0000869200 00000 n +0000807531 00000 n +0000809230 00000 n +0000807381 00000 n +0000805454 00000 n +0000808977 00000 n +0000808665 00000 n +0000808821 00000 n +0000808394 00000 n +0000808525 00000 n +0000808572 00000 n +0000808644 00000 n +0000811623 00000 n +0000813663 00000 n +0000811481 00000 n +0000809370 00000 n +0000813537 00000 n +0000813382 00000 n +0000813110 00000 n +0000813241 00000 n +0000813288 00000 n +0000813360 00000 n +0000817076 00000 n +0000816891 00000 n +0000813777 00000 n +0000817013 00000 n +0000819924 00000 n +0000819676 00000 n +0000817226 00000 n +0000819798 00000 n +0000942035 00000 n +0000822086 00000 n +0000824274 00000 n +0000821944 00000 n +0000820035 00000 n +0000824021 00000 n +0000823864 00000 n +0000823513 00000 n +0000823644 00000 n +0000823691 00000 n +0000823763 00000 n +0000823843 00000 n +0000827006 00000 n +0000826759 00000 n +0000824414 00000 n +0000826881 00000 n +0000829081 00000 n +0000828833 00000 n +0000827130 00000 n +0000828955 00000 n +0000829018 00000 n +0000831165 00000 n +0000830980 00000 n +0000829192 00000 n +0000831102 00000 n +0000833121 00000 n +0000832873 00000 n +0000831263 00000 n +0000832995 00000 n +0000833058 00000 n +0000835285 00000 n +0000834786 00000 n +0000833232 00000 n +0000834908 00000 n +0000835034 00000 n +0000835096 00000 n +0000835159 00000 n +0000835222 00000 n +0000942152 00000 n +0000838205 00000 n +0000837516 00000 n +0000835409 00000 n +0000837638 00000 n +0000837701 00000 n +0000837764 00000 n +0000837827 00000 n +0000838016 00000 n +0000844418 00000 n +0000841177 00000 n +0000838316 00000 n +0000844293 00000 n +0000841439 00000 n +0000844356 00000 n +0000841611 00000 n +0000841786 00000 n +0000841963 00000 n +0000842137 00000 n +0000842310 00000 n +0000842494 00000 n +0000842663 00000 n +0000842841 00000 n +0000843025 00000 n +0000843199 00000 n +0000843396 00000 n +0000843567 00000 n +0000843738 00000 n +0000843938 00000 n +0000844114 00000 n +0000845874 00000 n +0000845114 00000 n +0000844542 00000 n +0000845811 00000 n +0000845272 00000 n +0000845452 00000 n +0000845629 00000 n 0000846528 00000 n -0000846591 00000 n -0000846654 00000 n -0000846717 00000 n -0000846780 00000 n -0000848120 00000 n -0000847683 00000 n -0000846927 00000 n -0000847805 00000 n -0000848205 00000 n -0000867676 00000 n -0000870369 00000 n -0000870345 00000 n -0000872767 00000 n -0000872735 00000 n -0000875804 00000 n -0000883392 00000 n -0000886174 00000 n -0000886102 00000 n -0000894906 00000 n -0000906476 00000 n -0000909260 00000 n -0000909131 00000 n -0000923866 00000 n -0000937849 00000 n -0000940030 00000 n -0000940148 00000 n -0000940266 00000 n -0000940343 00000 n -0000940421 00000 n -0000944906 00000 n -0000949738 00000 n -0000949777 00000 n -0000949815 00000 n -0000949967 00000 n +0000846280 00000 n +0000845985 00000 n +0000846402 00000 n +0000849020 00000 n +0000847828 00000 n +0000846613 00000 n +0000847950 00000 n +0000848076 00000 n +0000848139 00000 n +0000848202 00000 n +0000848265 00000 n +0000848328 00000 n +0000848391 00000 n +0000848454 00000 n +0000848517 00000 n +0000848580 00000 n +0000848643 00000 n +0000848706 00000 n +0000848769 00000 n +0000848832 00000 n +0000848895 00000 n +0000848958 00000 n +0000850298 00000 n +0000849861 00000 n +0000849105 00000 n +0000849983 00000 n +0000942269 00000 n +0000850383 00000 n +0000869854 00000 n +0000872547 00000 n +0000872523 00000 n +0000874945 00000 n +0000874913 00000 n +0000877982 00000 n +0000885570 00000 n +0000888353 00000 n +0000888281 00000 n +0000897085 00000 n +0000908712 00000 n +0000911499 00000 n +0000911370 00000 n +0000926105 00000 n +0000940088 00000 n +0000942346 00000 n +0000942464 00000 n +0000942582 00000 n +0000942667 00000 n +0000942745 00000 n +0000947126 00000 n +0000952096 00000 n +0000952135 00000 n +0000952173 00000 n +0000952325 00000 n trailer << -/Size 953 -/Root 951 0 R -/Info 952 0 R -/ID [ ] +/Size 961 +/Root 959 0 R +/Info 960 0 R +/ID [ ] >> startxref -950234 +952592 %%EOF diff --git a/LaTeX/images/events.eps b/LaTeX/images/events.eps index 0792d4a..226c9cb 100644 --- a/LaTeX/images/events.eps +++ b/LaTeX/images/events.eps @@ -1,5 +1,5 @@ %!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 148 12 700 404 +%%BoundingBox: 148 68 692 442 %%BeginProcSet: reencode 1.0 0 /RE { findfont begin @@ -68,43 +68,43 @@ isolatin1encoding /_Helvetica /Helvetica RE /_Helvetica findfont 12 scalefont setfont 0.0 0.0 0.0 setrgbcolor -0 416 translate +0 510 translate 1.0 1.0 scale 1.0 1.0 1.0 setrgbcolor newpath -152 -48 moveto -494 0 rlineto +152 -112 moveto +486 0 rlineto 0 -20 rlineto --494 0 rlineto +-486 0 rlineto closepath eofill 0.0 0.0 0.0 setrgbcolor newpath -152 -48 moveto -494 0 rlineto +152 -112 moveto +486 0 rlineto 0 -20 rlineto --494 0 rlineto +-486 0 rlineto closepath stroke isolatin1encoding /_Helvetica /Helvetica RE /_Helvetica findfont 10 scalefont setfont -156 -61 moveto +156 -125 moveto (events) show 1.0 1.0 1.0 setrgbcolor newpath -152 -68 moveto -543 0 rlineto -0 -331 rlineto --543 0 rlineto +152 -132 moveto +535 0 rlineto +0 -267 rlineto +-535 0 rlineto closepath eofill 0.0 0.0 0.0 setrgbcolor newpath -152 -68 moveto -543 0 rlineto -0 -331 rlineto --543 0 rlineto +152 -132 moveto +535 0 rlineto +0 -267 rlineto +-535 0 rlineto closepath stroke isolatin1encoding /_TimesRoman /TimesRoman RE @@ -112,119 +112,83 @@ isolatin1encoding /_TimesRoman /TimesRoman RE 10 scalefont setfont 1.0 1.0 1.0 setrgbcolor newpath -200 -88 moveto -166 0 rlineto -0 -104 rlineto --166 0 rlineto +240 -152 moveto +86 0 rlineto +0 -21 rlineto +-86 0 rlineto closepath eofill newpath -200 -88 moveto -166 0 rlineto +240 -152 moveto +86 0 rlineto 0 -1 rlineto --166 0 rlineto +-86 0 rlineto closepath eofill 0.0 0.0 0.0 setrgbcolor newpath -200 -88 moveto -167 0 rlineto +240 -152 moveto +87 0 rlineto 0 -2 rlineto --167 0 rlineto +-87 0 rlineto closepath stroke 1.0 1.0 1.0 setrgbcolor newpath -200 -90 moveto -166 0 rlineto +240 -154 moveto +86 0 rlineto 0 -19 rlineto --166 0 rlineto +-86 0 rlineto closepath eofill isolatin1encoding /_Helvetica-Oblique /Helvetica-Oblique RE /_Helvetica-Oblique findfont 10 scalefont setfont 0.0 0.0 0.0 setrgbcolor -244 -103 moveto +244 -167 moveto (VSAbstractEvent) show -1.0 1.0 1.0 setrgbcolor -newpath -201 -146 moveto -165 0 rlineto -0 -46 rlineto --165 0 rlineto -closepath -eofill -0.0 0.0 0.0 setrgbcolor newpath -201 -146 moveto -367 -146 lineto -stroke -isolatin1encoding /_Helvetica /Helvetica RE -/_Helvetica findfont -10 scalefont setfont -204 -160 moveto -(onInit\(\) : void) show -204 -173 moveto -(onStart\(\) : void) show -204 -186 moveto -(logg\(message : String\) : void) show -1.0 1.0 1.0 setrgbcolor -newpath -201 -111 moveto -165 0 rlineto -0 -33 rlineto --165 0 rlineto -closepath -eofill -0.0 0.0 0.0 setrgbcolor -newpath -201 -111 moveto -367 -111 lineto -stroke -204 -125 moveto -(prefs : prefs.VSPrefs) show -204 -138 moveto -(process : core.VSAbstractProcess) show -newpath -200 -88 moveto -167 0 rlineto -0 -105 rlineto --167 0 rlineto +240 -152 moveto +87 0 rlineto +0 -22 rlineto +-87 0 rlineto closepath stroke 1.0 1.0 1.0 setrgbcolor newpath 176 -216 moveto -182 0 rlineto +206 0 rlineto 0 -20 rlineto --182 0 rlineto +-206 0 rlineto closepath eofill 0.0 0.0 0.0 setrgbcolor newpath 176 -216 moveto -182 0 rlineto +206 0 rlineto 0 -20 rlineto --182 0 rlineto +-206 0 rlineto closepath stroke +isolatin1encoding /_Helvetica /Helvetica RE +/_Helvetica findfont +10 scalefont setfont 180 -229 moveto (events.implementations) show 1.0 1.0 1.0 setrgbcolor newpath 176 -236 moveto -231 0 rlineto +255 0 rlineto 0 -51 rlineto --231 0 rlineto +-255 0 rlineto closepath eofill 0.0 0.0 0.0 setrgbcolor newpath 176 -236 moveto -231 0 rlineto +255 0 rlineto 0 -51 rlineto --231 0 rlineto +-255 0 rlineto closepath stroke isolatin1encoding /_TimesRoman /TimesRoman RE @@ -293,14 +257,14 @@ closepath stroke 1.0 1.0 1.0 setrgbcolor newpath -456 -120 moveto +456 -152 moveto 102 0 rlineto 0 -21 rlineto -102 0 rlineto closepath eofill newpath -456 -120 moveto +456 -152 moveto 102 0 rlineto 0 -1 rlineto -102 0 rlineto @@ -308,7 +272,7 @@ closepath eofill 0.0 0.0 0.0 setrgbcolor newpath -456 -120 moveto +456 -152 moveto 103 0 rlineto 0 -2 rlineto -103 0 rlineto @@ -316,17 +280,17 @@ closepath stroke 1.0 1.0 1.0 setrgbcolor newpath -456 -122 moveto +456 -154 moveto 102 0 rlineto 0 -19 rlineto -102 0 rlineto closepath eofill 0.0 0.0 0.0 setrgbcolor -460 -135 moveto +460 -167 moveto (VSRegisteredEvents) show newpath -456 -120 moveto +456 -152 moveto 103 0 rlineto 0 -22 rlineto -103 0 rlineto @@ -416,38 +380,38 @@ closepath stroke newpath 264 -248 moveto -264 -193 lineto +264 -174 lineto stroke 1.0 1.0 1.0 setrgbcolor newpath -264 -193 moveto -271 -205 lineto -257 -205 lineto +264 -174 moveto +271 -186 lineto +257 -186 lineto closepath eofill 0.0 0.0 0.0 setrgbcolor newpath -264 -193 moveto -271 -205 lineto -257 -205 lineto +264 -174 moveto +271 -186 lineto +257 -186 lineto closepath stroke newpath -306 -248 moveto -306 -193 lineto +304 -248 moveto +304 -174 lineto stroke 1.0 1.0 1.0 setrgbcolor newpath -306 -193 moveto -313 -205 lineto -299 -205 lineto +304 -174 moveto +311 -186 lineto +297 -186 lineto closepath eofill 0.0 0.0 0.0 setrgbcolor newpath -306 -193 moveto -313 -205 lineto -299 -205 lineto +304 -174 moveto +311 -186 lineto +297 -186 lineto closepath stroke [5.0 5.0 ] 0 setdash @@ -496,17 +460,17 @@ stroke (<>) show [5.0 5.0 ] 0 setdash newpath -456 -134 moveto -367 -134 lineto +456 -160 moveto +327 -160 lineto stroke [] 0 setdash newpath -379 -127 moveto -367 -134 lineto +339 -153 moveto +327 -160 lineto stroke newpath -379 -141 moveto -367 -134 lineto +339 -167 moveto +327 -160 lineto stroke 1.0 1.0 1.0 setrgbcolor newpath @@ -591,20 +555,20 @@ closepath stroke newpath 480 -240 moveto -367 -193 lineto +327 -174 lineto stroke 1.0 1.0 1.0 setrgbcolor newpath -367 -193 moveto -380 -191 lineto -375 -204 lineto +327 -174 moveto +340 -172 lineto +335 -185 lineto closepath eofill 0.0 0.0 0.0 setrgbcolor newpath -367 -193 moveto -380 -191 lineto -375 -204 lineto +327 -174 moveto +340 -172 lineto +335 -185 lineto closepath stroke isolatin1encoding /_Helvetica /Helvetica RE @@ -811,14 +775,14 @@ stroke (<>) show 1.0 1.0 1.0 setrgbcolor newpath -200 -16 moveto +152 -416 moveto 148 0 rlineto 0 -21 rlineto -148 0 rlineto closepath eofill newpath -200 -16 moveto +152 -416 moveto 148 0 rlineto 0 -1 rlineto -148 0 rlineto @@ -826,7 +790,7 @@ closepath eofill 0.0 0.0 0.0 setrgbcolor newpath -200 -16 moveto +152 -416 moveto 149 0 rlineto 0 -2 rlineto -149 0 rlineto @@ -834,7 +798,7 @@ closepath stroke 1.0 1.0 1.0 setrgbcolor newpath -200 -18 moveto +152 -418 moveto 148 0 rlineto 0 -19 rlineto -148 0 rlineto @@ -844,35 +808,95 @@ isolatin1encoding /_Helvetica-Oblique /Helvetica-Oblique RE /_Helvetica-Oblique findfont 10 scalefont setfont 0.0 0.0 0.0 setrgbcolor -204 -31 moveto +156 -431 moveto (protocols.VSAbstractProtocol) show newpath -200 -16 moveto +152 -416 moveto 149 0 rlineto 0 -22 rlineto -149 0 rlineto closepath stroke newpath -272 -38 moveto -272 -88 lineto +168 -416 moveto +168 -200 lineto +240 -174 lineto stroke 1.0 1.0 1.0 setrgbcolor newpath -272 -88 moveto -265 -76 lineto -279 -76 lineto +240 -174 moveto +231 -184 lineto +226 -171 lineto closepath eofill 0.0 0.0 0.0 setrgbcolor newpath -272 -88 moveto -265 -76 lineto -279 -76 lineto +240 -174 moveto +231 -184 lineto +226 -171 lineto closepath stroke isolatin1encoding /_Helvetica /Helvetica RE /_Helvetica findfont 10 scalefont setfont +1.0 1.0 1.0 setrgbcolor +newpath +248 -72 moveto +72 0 rlineto +0 -21 rlineto +-72 0 rlineto +closepath +eofill +newpath +248 -72 moveto +72 0 rlineto +0 -1 rlineto +-72 0 rlineto +closepath +eofill +0.0 0.0 0.0 setrgbcolor +newpath +248 -72 moveto +73 0 rlineto +0 -2 rlineto +-73 0 rlineto +closepath +stroke +1.0 1.0 1.0 setrgbcolor +newpath +248 -74 moveto +72 0 rlineto +0 -19 rlineto +-72 0 rlineto +closepath +eofill +0.0 0.0 0.0 setrgbcolor +252 -87 moveto +(prefs.VSPrefs) show +newpath +248 -72 moveto +73 0 rlineto +0 -22 rlineto +-73 0 rlineto +closepath +stroke +newpath +280 -152 moveto +280 -94 lineto +stroke +1.0 1.0 1.0 setrgbcolor +newpath +280 -94 moveto +287 -106 lineto +273 -106 lineto +closepath +eofill +0.0 0.0 0.0 setrgbcolor +newpath +280 -94 moveto +287 -106 lineto +273 -106 lineto +closepath +stroke showpage %%Trailer diff --git a/sources/events/VSRegisteredEvents.java b/sources/events/VSRegisteredEvents.java index 15c4023..801a8c2 100644 --- a/sources/events/VSRegisteredEvents.java +++ b/sources/events/VSRegisteredEvents.java @@ -74,7 +74,7 @@ public final class VSRegisteredEvents { private static VSPrefs prefs; /** - * Inits the. + * Registers available events. * * @param prefs_ the prefs_ */ @@ -82,17 +82,17 @@ public final class VSRegisteredEvents { prefs = prefs_; registerEvent("events.implementations.VSProcessCrashEvent", - "Prozessabsturz", null); + "Prozessabsturz"); registerEvent("events.implementations.VSProcessRecoverEvent", - "Prozesswiederbelebung", null); + "Prozesswiederbelebung"); registerEvent("protocols.implementations.VSBasicMulticastProtocol", "Basic Multicast", "Basic Multicast"); registerEvent("protocols.implementations.VSBerkelyTimeProtocol", "Berkeley Algorithmus zur internen Sync.", "Berkeley"); registerEvent("protocols.implementations.VSBroadcastProtocol", - "Broadcast", null); + "Broadcast"); registerEvent("protocols.implementations.VSDummyProtocol", - "Beispiel/Dummy", null); + "Beispiel/Dummy"); registerEvent("protocols.implementations.VSExternalTimeSyncProtocol", "Christians Methode zur externen Sync.", "Christians"); registerEvent("protocols.implementations.VSInternalTimeSyncProtocol", @@ -100,7 +100,7 @@ public final class VSRegisteredEvents { registerEvent("protocols.implementations.VSOnePhaseCommitProtocol", "Ein-Phasen Commit", "1-Phasen Commit"); registerEvent("protocols.implementations.VSPingPongProtocol", - "Ping Pong", null); + "Ping Pong"); registerEvent("protocols.implementations.VSReliableMulticastProtocol", "Reliable Multicast", "Reliable Multicast"); registerEvent("protocols.implementations.VSTwoPhaseCommitProtocol", @@ -348,6 +348,16 @@ public final class VSRegisteredEvents { eventClassnamesByNames.get(eventName), process); } + /** + * Registers an event. + * + * @param eventClassname the event classname + * @param eventName the event name + */ + private static void registerEvent(String eventClassname, String eventName) { + registerEvent(eventClassname, eventName, null); + } + /** * Registers an event. * -- cgit v1.2.3