diff options
| author | Paul Buetow <paul@buetow.org> | 2008-08-07 18:15:08 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-08-07 18:15:08 +0000 |
| commit | a7fdf8fb6a1f32062161b6e245c6f8bd67da3ec9 (patch) | |
| tree | 47ea4b9ff3bf092cb3169f4827d48a174b97e4bf /LaTeX | |
| parent | feb6702489243f9c3f0bac7827ab2f477ed7b414 (diff) | |
mehr geschrieben
Diffstat (limited to 'LaTeX')
| -rw-r--r-- | LaTeX/argouml.zargo | bin | 29381 -> 29589 bytes | |||
| -rw-r--r-- | LaTeX/chapters/implementierung.tex | 33 | ||||
| -rw-r--r-- | LaTeX/chapters/simulator.tex | 4 | ||||
| -rw-r--r-- | LaTeX/diplomarbeit.pdf | 5755 | ||||
| -rw-r--r-- | LaTeX/images/events.eps | 284 |
5 files changed, 3072 insertions, 3004 deletions
diff --git a/LaTeX/argouml.zargo b/LaTeX/argouml.zargo Binary files differindex 566ce43..a50a6a9 100644 --- a/LaTeX/argouml.zargo +++ b/LaTeX/argouml.zargo 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}t sich das Loggen von Nachrich \"{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ڍUKs6W(͔ofN];ri-A"kL%YI:< 犂b쫑 h<r*r`o2ř֯CC'KsJLΛcDk|nZ҅v 6`#ȳEM<%Li$UuЉR#?gp3Pbj%=Swi6"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{E, 5M%jKqizlO<ԕ#C~%(4p<]gʟ~c]'?Ӹ)E- sOyGKrm{ 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 @@ vsqy#oj
>qԳDR&ڦ C1D\q{oJ7.
pV1H9<E YJ=ZN~P#Qm`Wŀ;>: @endstream endobj -212 0 obj << +208 0 obj << /Type /Page -/Contents 213 0 R -/Resources 211 0 R +/Contents 209 0 R +/Resources 207 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R +/Parent 206 0 R >> 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ڕVMs0Wp"[>d2$3A)_ I C֫}ڷJ08$b<zE[ 7, =js+&f 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[%K3P.®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ᐜ12Zft -<>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& -ak-"N-s5-S: xdv2OKe]}[efм{ -yf8&8:U=J'PԙxRSi-Sx:Óxʔtij) -2?hS%QSЪ<gcofF(`C,0BQg4p<dF -^uձzޘvo0*,݄:U49"v
dd4 #A0GakqdZ"H@r -W9OUx5"?"qJ82#tx$l-1u(j8AHvEMQOe=-Ŀ<v]/`ʹ3J8:U1Qi#W{M(`Z6IM(L6MIKrxcU</u_YmVoWm.A70QtM42 -:ypO(`6Z<iO(L<DdOva~_Eh2sZF%,-ф f3lEфCad:NhY5MQ\ûʺ,6Sw/2է_lw--kץ0YNw |~rz tբ_3$Sbi -%'s,)Uy?gDK\HY&Bgd**-;BwS]v9lE.Fɜ(y&d9/[ -SjwW_n7[?v;gQi2!N.fƠǝt.z][z:=s1Ṉίez:_w9|#kڭ&jlu~EJ x]F v;gdA}//ۇE>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>k<wendstream +xM۸<J!x̬צ*$uFZ
5%R}$Aِ=سS>h,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~]~k0bN<rxČDcM8%VkBJ
\2,'TY9Cuќ +et +(wED-`VoKParfhr\.5(ިCWzt˪nTMzV !@ +NDI#gxvG]vl_\'/-,O1FRŪJ<wW{<%5Mj<Z +OB<9r{<]sʺ<TuZ.4.IdMoơ5y.ڞ#0bi`DNF{(z]_כ?UQsU~S +@MLJ6'mDs"(@Q<Z;vA2D [y +
+;FCCCGsA~=G䔦z̳g.oja[{t;<>WR<Li6 RwX~YDGk+PdҝLG^"EC~g {Hy(Q<Z|z]!ˡY`[y;px0^ӻ7ۺ;o;훲#
ᔊ,3`oaUC,Og<Ecί1!4.S`6lNSS~ѶwDPC;׀i]`'qʳh*ţ\ +SƝ賿RܢbC endobj -223 0 obj << +219 0 obj << /Type /Page -/Contents 224 0 R -/Resources 222 0 R +/Contents 220 0 R +/Resources 218 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 210 0 R -/Annots [ 227 0 R 228 0 R 229 0 R 230 0 R 231 0 R 232 0 R 233 0 R 234 0 R 235 0 R 236 0 R 237 0 R 238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 249 0 R 250 0 R 251 0 R ] +/Parent 206 0 R +/Annots [ 223 0 R 224 0 R 225 0 R 226 0 R 227 0 R 228 0 R 229 0 R 230 0 R 231 0 R 232 0 R 233 0 R 234 0 R 235 0 R 236 0 R 237 0 R 238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R ] >> 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.OPjw2XෛųݥrcɊ:U&>ֱalbDsZ ӄb^%p -;0 -eH|ʮSwRdӺ:^]Lx*Rf#Xn#0ܦj04Ȁx&`erIh_zP-bH0`0otS`wjMbz='P$Ci -߶l|ڻZhT9mgAIE9JHļLu() +x[o6)h31"6k<jeۧߡ$J)q5mP Ux<鐇YA+$:U'j7.x_>f%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\7aK +&T<kgkVԃ[zm&tL3
&40j+2`2ށu@D_zP-bوY0n+]31Vc&1E#xm(aK|4}ʦD-h -0{k&n2v^Db7$MEBX_J&lY7,/6j}TYfnƵ'=ݲjIQѝAPe<CN=?r'Y2f,-#D$xld1rUE!uSOCjjSLN5@GkZIJԷ]R\tDHGaQOZ&B9/A&۵:eoA[/a }jmջ)|xsl],o +w)oy ++85¥4pS96<I'N,X94=\Y' SI6g-E8\x4¨s1f^F-?=U>aJ;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.(ɒ^-ɧ&JR^guE3s!-IBej 2&J j <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 w ڴo7BީF|5+F7u,GĬ; YxydRPhLp)1-%G릇 kA37&Βw8ʄUxGmxCCpހiyś?xj<B3\5E]w8Û5BIOB3::ktmKCzi<ݸB݉ZzQ
@]
Q wTW`El-M+?Rm$@HlUJ+C6&:hgpVj.,/9xXRus?y7hq@L@xQ;S~ZW[d}-3RÕ$aa2U#Se/3Is`g
mNo٬gQ|y[=}{ in5#%s{Xb~đ3? ;kmKJz֑-9_;QK>syXlu7G[s6(=aU#pR#<yMqYh[m\V)(1R⣗;wN3?qTxUSaY9O^wendstream endobj -342 0 obj << +337 0 obj << /Type /Page -/Contents 343 0 R -/Resources 341 0 R +/Contents 338 0 R +/Resources 336 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 352 0 R -/Annots [ 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R ] +/Parent 347 0 R +/Annots [ 340 0 R 341 0 R 342 0 R 343 0 R 344 0 R 345 0 R 346 0 R ] >> 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ɢL`?Et(*mv`۱Q-Nv4< Z f ugܟGΨ<g=;
L,S(V;ZU4oX-o݇7AjGkgTm{wY_2wZoW{ :Tea'\; {/Z[ozAF.9L:vF51<S[u(~=|صloO|!,d"sZ͋:=ݬu<KXPbM[JtgwjXjco6 )u_0Ik :dA_|rlendstream endobj -361 0 obj << +356 0 obj << /Type /Page -/Contents 362 0 R -/Resources 360 0 R +/Contents 357 0 R +/Resources 355 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 352 0 R -/Annots [ 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R ] +/Parent 347 0 R +/Annots [ 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R ] >> 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|R]7yЎŋ"J,Z4,v2YZ)+EJyC".Ce /2|ʾGbڠ%"6c]+B?'5y{ K4<9s2GNBr{,KqY3R 3_kܸiʵ\yO`6zKiW QبנS2<'G3s96lΕcM|mekYsi,NC{jTI>H;Wqn5chk/}o이 endobj -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 @@ cu>Nfk yK0<]6|z<s0c 17݇#rX$v; {*06UMvG}0=ϧz琹ӿuJh3)C@j RӔg:pKr+ʌW={&_ٽ#}1mGD9$= 0:T9s_S/lkYVim*+(3ZZp7M@4Io)4k蒾2B[Ǯ1b9k
%zdC1D6bOS&6βRQ
Ky ?lnf2Uu < endobj -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 @@ xTn0+xl{p%RE[$F/A,E"N~Ejx0"g槮Ӣ>yTFc5P (C!R;}tI6<o}/[˿w?K\2x
, endobj -419 0 obj +414 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080807174428Z00'00') -/ModDate (D:20080807174428Z00'00') +/CreationDate (D:20080807200528Z00'00') +/ModDate (D:20080807200528Z00'00') >> 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ԂWM鎞xT5bOOPCRraLsu:KȠ§Jpto #c-ݻЩ ҂φ0ΗX;$q!Lq˝2:϶:*se)])ZLAқLPR$}ɒ')@7Xo{I<gpN6DϾf8ow믃~lhY2 3YdTz0O>%/ Ova &/3kl ,M F[~7)_3ㅏR2v'Jg}#)aendstream endobj -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 @@ xMo0<;l"îkP6AbGJGb:,P/E
'+Oz?}
l YLa- 7pD7[: 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ڍn8ޯQbV$%J:&tw[`hrdY˴GwCɒ%7Eh839//B$bQŋ$ CG1zPI.A 0 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*1N -`jrUXaڸn0PcEρs#dUWwsu~q=*k>KΡX:fpvWx٢卯w2y>aH#qXgsƂ;6Jˤ'?a~lP9Bp{pkһ0cuZ kbc/PCU]r*7uܗ"ר"2%=;(\Gވ9O[`r^L )
WnHt|q"7BLp
<2f|,=v;fU?tBMyZUI.E۲롉# -BlD4b>endstream +xڭWKs6WH͔0ޏⱝI:m%ʁ6!)E9"Uw iJ鴣 +?I$u*1N +l0.JRCvF';%ZhS.ʳµRX+ﱬ}+J"+2pamlhUOH~ kZ((i;GK9e/)-!I!3NlA%0F>*7*!LM|jSv[y r.`+tNq k9Wiy,!88bPq."C_x=(.@>~*<30l7T[%=eghFVCcgzCuIHLiXU|YC.S#K+i;?U&o} D7悝˅pPM.z72AnD)1pujR._k~ǃP+&
O97+T!6y<$u"omY崀tSF`OkDwrL}W]>H?٢1|EP<m`'|#jRUq oF=t|O,:`3P9F0=I$ +:t-/b|.r _Mq'X45_wP0,#qqa$rڿ/_/N;6?6_[J0<sJ/1x@ks^6qUqx?Cendstream endobj -441 0 obj << +436 0 obj << /Type /Page -/Contents 442 0 R -/Resources 440 0 R +/Contents 437 0 R +/Resources 435 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 447 0 R -/Annots [ 444 0 R 445 0 R 446 0 R ] +/Parent 442 0 R +/Annots [ 439 0 R 440 0 R 441 0 R ] >> endobj -439 0 obj << +434 0 obj << /Type /XObject /Subtype /Image /Width 1024 @@ -1700,45 +1685,45 @@ pz폎6?
t?y#rϲP{@Z PZ8 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 @@ gGK_7p 6"T(PMoWȂw1}
0b[wZ*4J<A 6d p1nD*},f#վCJw]Xl-hpvG =wa7n2zc6h٘"OiĬ{v\WWO[lp:
i{Lxܘl|NTtloG2qcCK$?~i2Cf㮣K>%<!E:g=ݴMOd&?17bkjO
cFaxxg/B+wxBY\9xKo] &<o~uYL9i&~Z4V)B$zADendstream endobj -452 0 obj << +447 0 obj << /Type /Page -/Contents 453 0 R -/Resources 451 0 R +/Contents 448 0 R +/Resources 446 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 447 0 R -/Annots [ 456 0 R 458 0 R ] +/Parent 442 0 R +/Annots [ 451 0 R 453 0 R ] >> endobj -448 0 obj << +443 0 obj << /Type /XObject /Subtype /Image /Width 234 @@ -1798,38 +1783,38 @@ ze+*zq& 3~qsPV"v|r9ʠus1W>M/..N]"nN# TzZz`QE^^^RRRH/EzI/EzWl֬Y˗/WFF:wqyK'snڰaٳ.]*_5bwhhhh͚5p7nT
sNl߮oِ)jطo [۷ ;;;Uz"ndAhY\Ct-7T Ezvޝ"竮fm2.+Hw"_.Qk3Cd+K~@P
>OsL':TYT EzĽxXBW.QYf:ٗ.]Zds=W]]t%(K^K^K^"
/LLL*Dz)KQH/Ez)R(K^"Ez)KQH/E^R(K^K^"Ez)KQH/E^R(K^"5}#endstream endobj -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ڭWn6}WQ*}jSh:/#DgliRX4C(K{eQJ-h 6&\$ΒfiG3&0&=gyXݜ?o]m|_Тxى@o1kډJZLҁ&xO^U:Fv,.HzuYdP[(09]{@ )eM2vӈ{eZ,H[dλ,ݧa4-Ц`۩Pja_Ӕn$ \:muf[䭍w764'n=7k'{ %F1&bA5
fip>8+jFUf-&ԭd\K@]em ?koLAYfs^3 =]R?S*Dm͒p5Sdm%UJe
jan
X
6Ce
qS _i!YNw19-pE3#7O~yS8QQl۴|B١&CI.ʅ/lnW QWA(?<1pDQ-g!7cI|5;xX\&qZ]kŬmN 9=gMzk8=5րt71 KQq=2si!ܖaR3_ endobj -460 0 obj << +455 0 obj << /Type /Page -/Contents 461 0 R -/Resources 459 0 R +/Contents 456 0 R +/Resources 454 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 447 0 R +/Parent 442 0 R >> endobj -449 0 obj << +444 0 obj << /Type /XObject /Subtype /Image /Width 1024 @@ -1918,7 +1903,7 @@ Oo9/s\2~pkJ(%[۷ʒ%KG?q<L no?~|РAeرc<o q^/jY skg-vfz=Eu^||ڿ]1r'o/43-NS%$ endobj -450 0 obj << +445 0 obj << /Type /XObject /Subtype /Image /Width 180 @@ -1946,21 +1931,21 @@ SȈoD\`tZǓ!:#tcoheX+X ٘Zl7Z%lL-6Z!7,7>L")dcjb,>߰ߞ{و|t9T,t)T(«8 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ڭWYoF~ׯ#9p[$m$6z$%h2,wIQ
XٹwI0Dqı2B' jq\ԯMz1EF T Ra:*@UrD|S
`7:ur5HX WbLנNX|,[m&qi`9WɈ{U>aV?R~0"ς endobj -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 @@ xvQQt՝ɢA(`tϺ?;d>YzϚ29k33Yܴ9^C_+nZ 7-XW [r7g7U~Zz?ކ[1gbǗsI9ۮ㥧
'&7Wjo_E3/jcOL˺=.cuQ1]uUKc-usg1uzJݦY,Ց;[aaX,uV7bX,usX,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,RFu[c5Y,5Mݾ8;b-n"n`{M[bX6Jݎ_гsX,KݞvVyn,Śn{QRv"aX,u˯kbXm=
vb[BQDnbX]Vyn,Śnů\X,kvcX,(uܼqncLsncM1ƨ1ӷnߞ{&1Ƙ.uLX,kXNX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,ݯbXiյ9,nu[vqkwRQv҅bXkcucX,|u[bX,U3qvb[~>^S7b=ngnsX,KJZ)~fݬ&b2V|\X,k](X,˵dX,VӺU~vncLs,mf1u1Ƙm#3u3m{&1Ƙ.uLX,kXNX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,bMX,nVbXfX,bMX,nbX,u,R7;bMX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KR7ucX,bMX,nVbXf5Y,n,R7ucX,ݯbXiյ9,nu[vqkwRQv҅bXkcucX,|u[bX,U3qvb[~>^S7b=ngnsX,KJZ)~fݬ&b2V|\X,k](X,u$b[Glww1Ƙ&sU7c1#mwW1ncLhݾҩ1Ƙ~uk6LX,k|NX,nVbXfX,KX,nbX,uS7bdX,YMbbXn,R7ucX,bjX,KRc5Y,5ᵛ1c1c1c1c1yg&뵙onqZL }I^9g/b[RgzK.in=3"Ǹwiøik_tZzk9{ř;[=ҧ|C;q(Uoq'GkrdBu{\d1NV3Xfpw#uBImOu蓄4J1tqUI\=0got9MO&#GĞx\瓫&}M;1?&(X}a___ˡ{֊;\݊X\ӌeB~|*y컑J{ӫnF:v[-rtUߞ<nvq%V> 3<ms֫k9h|97<ԟ:^z +|riiirh1'g\Vendstream endobj -464 0 obj << +459 0 obj << /Type /XObject /Subtype /Image /Width 310 @@ -2017,31 +2002,31 @@ B{oucC.<Q>qf32Ls"*ܺF!:mgօ6m6ig(ΉPIo M>7pm-!tۖQr06RUpuMΉ!r:9s"oh'tZ0P""Bvjx:KP^xi^ʋ/KP^xi^*P^xi^ʋ/PW/KP^x!/ x/@ oendstream endobj -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ڭYYoF~Уz& fHjS)jb~d/V`ܮN-(cDI3H2 c<mwԦg"AAC._@s|zQ*8IYAk2aŹw9Rm6P@Qg;$Z(=a0܍++DP 2PuG*;j;6HqiL
J.Y;7e¶gJ96qZO$dx6 A_K]<,t__ks<3gЛ)L6˦쟐/_*Wendstream endobj -472 0 obj << +467 0 obj << /Type /Page -/Contents 473 0 R -/Resources 471 0 R +/Contents 468 0 R +/Resources 466 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 447 0 R -/Annots [ 475 0 R 477 0 R ] +/Parent 442 0 R +/Annots [ 470 0 R 472 0 R ] >> 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 @@ OU'v{_FN> fyZxC8dɹmM۫?cXU+p11[u,D e:8"Źi.dff!p
Xt!빞e*-dɺu d33y&L6(Ø||I^ؘ0DQn8c`)ƶaK p4Z1iՑ{E#l=j/g'{i-<8zNL 2PB<n<S20S
"1t̜~Bŗendstream endobj -481 0 obj << +476 0 obj << /Type /Page -/Contents 482 0 R -/Resources 480 0 R +/Contents 477 0 R +/Resources 475 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 447 0 R -/Annots [ 485 0 R ] +/Parent 442 0 R +/Annots [ 480 0 R ] >> endobj -478 0 obj << +473 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2128,7 +2113,7 @@ x݊VK9Nr4 BbHb3Mqm &Tz^>JRUZuy' sq2s2Ud0'3_y%S8|Rʱ lL2U*v-ol+b~qendstream endobj -479 0 obj << +474 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2151,31 +2136,31 @@ ArB.䢱|=cxܪ!r1N{-Zᄎ6;ۏƻ={#x aT7*r~ȍNKv-\U4^mdwEkQ+^Jrز~hZnoƖ>yk0sKgo\P_r~`E/_~`E/?zi0"ԗd00Aw
5Zյ%uZ;kkK,\ זX+-Su!w%rm22UrW"זX+-Su!w%rm 2UrW"ז䫫_HՅܕܶϒZGluCz썚\˿ܬD^ZϛQ~K\+XFsv)SՌ-{y/a.0AqMYa}ێ-ATylsTn"pqMYy}[ύvN!w6D*/۰ov9AMYfs3 -{ e/Yq~e[.Լ"3ڒZiK,|U_r~ojaee\-Z1kpf{/k
R.L0䶽Vf#ڌO^V\_neEſnq+C.ڌ%neECrIW"oV=gD|c[endstream endobj -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 @@ hB#bEa.j rHZH"Xc 7իe#hߎy@#I8HfÄܖ:AtE<iY}Ӎ4}[A{}<e~}!i KU`k
0u~gyk m{OuI4u8PteFr} .X\Sk<2E Fop酓ї,gm:V~f`@k endobj -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 @@ Of"WRE+<nzM0"sqk{یT־Jr٢kFms*(9zl]F|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ڭko6>@Csv&E/qzh-zl%m]jWpf8"Oi"A+X UT8DWg2jtEqUXiat)+PU=JQTdFӢmQkB6rqd 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,]k -|: {h\i4-qCJXQ nc[3k;CYXvSK3[lS3/GpUUD:y:+gΜ.h@%QP>QkaqΓ1:%&]χ܂lFO!L"#5k3T1`d]1z
E%Լv}uzU`ִ,xbI:~N'EKƷc0!ZmCw_e1ji}NXv塿ߝ5͕B+zK_I}NJu~Ƕ -vXJG) MKׂqX-%%x)g#47m1gQ"P3Ւ%1a/U镛endstream +|: {h\i4-qCJXQ nc[3k;CYXvSK3[lS3/GpUUD:y:+gΜ.h@%QP>QkaqΓ1:%&]χ܂lFO!L"#5k3T1`d]1z
E%Լv}uzU`ִ,xbI:~N'EKƷc0!ZmCw_e1ji}NXv塿ߝ5͕B+zK_I}NJu~Ƕ endobj -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 @@ IIFɝ"9{ 6?%O !v'(/ 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\,FM$Q$Fʓ`JWQm˲J
N7W%}U;ETd35~
V[4Ud1Fq'. SbAdQmhs`Ǘ>P5K@aw>Gd؆LсȽ[#g4GEPeemJZ(M \7heN]_-EUh]$uI`<$Xg!&WDHAdeU5yNXoI@
":ǮWEAbbzc5ԋF˿Bat-&<5㶇XۗLvFU\TB@%-Zkۺ(LB@(KT-͞;!e1L{ 쀛~A<#4YgYZ!9^| ?lUQAf~KH?3q/xᮘ]PcxQLeD\V. &7.+:uM/WuMCGYG=pi:.rM7$0o`ۭ/UU酅[H; VX$Ȟ*A/xeH$\{]X SCF
T鈧!ӵxNƤN@t]
$>gtɑ1VAۚDOv5:S)P,g^Mx%,|La笱endstream endobj -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/Mm6O~kF-FYږEaI<`ߢgWxk,5Vaw,][˪5" lU 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ڭXo6_GYR8u@d{hbd.2Zw#eٖx_<Dǃ,fqT$AVHp 2?r=`x+5, ZjiF2MonLXQ2J+88i*LX.3eIf/'ڐ-K4Xth`ƀd d~ K\S^˔[<x!C{ڛ3$ǷKt\:IAs7h_i
v{" O0r^c^nCMH\mBKUVþ;頔s5V3u`0h7{OT#o*x "__EVendstream endobj -514 0 obj << +509 0 obj << /Type /Page -/Contents 515 0 R -/Resources 513 0 R +/Contents 510 0 R +/Resources 508 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 495 0 R +/Parent 490 0 R >> endobj -512 0 obj << +507 0 obj << /Type /XObject /Subtype /Image /Width 318 @@ -2496,21 +2480,21 @@ r쵩rrөi\P."4 !\" !EA.Br\" !ȅ\ !!ErB 3S.JܿxkgqVs5TO-JKcU 'ޣׂű*\<(--U)BRԢ8V~rű*\O-JKcU#H%Qp_=<UǪ4H"2?2!4b2b<vxIQpߗendstream endobj -516 0 obj << -/D [514 0 R /XYZ 74.4095 793.4011 null] +511 0 obj << +/D [509 0 R /XYZ 74.4095 793.4011 null] >> 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?Mb=v@ys&OS#1ugi+ۤazo[?k3>X"Z'P{JtB͝Owh P2H|Ix,+':?ίXxLQjb~eS"32L"LmI=|U]lё}FUCy?j~˝!DCH$019̦XW7]+8_Ӎ% 6e4c="qhu&c"X\r/
\5_1CW,acĨc-oc? 4z,VB!Sǩwi _uU(?MF7}a=Oendstream endobj -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-WhLzE3dP*H0fC܀e^^w>5[u;1C.H<"!W(IL%cF3 XotQFygvF,tP>s{*H(d3+u\A'IHV~s k^Вj]5g\P2'>m:
Sn>0 H=. WN|̍tLh!;u#WczCl"O< `"$EW/^kc뮦3<D곀:DO~t|`maF}:g[ycdNZ#4m X=n\49b endobj -525 0 obj << +520 0 obj << /Type /Page -/Contents 526 0 R -/Resources 524 0 R +/Contents 521 0 R +/Resources 519 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 495 0 R +/Parent 490 0 R >> endobj -527 0 obj << -/D [525 0 R /XYZ 74.4095 793.4011 null] ->> 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~%`faL5d7c[& <g|D&?@TB``cˉ.)^I-;䛆( [bwcH*UNP+ ]_T3-@ UL?'^Ƨ@囪+'xdVendstream endobj -532 0 obj << +527 0 obj << /Type /Page -/Contents 533 0 R -/Resources 531 0 R +/Contents 528 0 R +/Resources 526 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 537 0 R -/Annots [ 536 0 R ] +/Parent 532 0 R +/Annots [ 531 0 R ] >> 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 @@ Tx 3( ;s
;st}ǽnls*lU V߷ 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 @@ g0NCC#{`t-.QF^
+^ݺs/8B[]V.%ȫaū >>+fe?.ɮ7 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ڽo6WQ"_yhú
6`MHR*ɐ~w<JeaSx3eq^IE Dc&C(ĝSpE-=Q>^|("Ep 1Z8j1CRG !}q{83!quYC#vCO>h4lLP"i<*.:Z-
Z,33xǩirL3g1[u0 /\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]=^JVTT۷rWKJwTAC7W^S*xEԮtK5;phةVe ^!B^WW!W`tUC;^xsWڥ膮UJ#+-ϯ={رիWK5 ^dzUa3AX'X)WB^!B+W!ʬR1ñjO^-Sgbūs5$b[֡ŊWy/cuhWy/cuhտ}O^-Sgbūk_O^mO'gyW8o0up-gZIB6ͯc豦G}˿] Ct&O?c$]SgA,/}Wi~ޙւ\^~?8Q6Oګ_X8<"xe[nU:e:iAYzk˩znn٠~eϴ~$*.P|~/sΓIwڔlJT@[_yu鯖' ?.>+(?3Dɗ..恼|mڕ.**<~酑#Gr˭ͧ[U1Aet7(dPz2!*ߏgk<?ax;g8G!=Nߤy[`ohY8w) ٔL&7[=1yeνs/ѣ#]{_߱feݷ7Q+lJuuSkv%1C*/S:AyK˄g}cIi}ߜϒdlp}Û|DQl7$ހUa7k}]qx'w}=I,zId
IGWVxmȵ2G2e:5E Qi5n:fXiRe_|xUӫO~&=ߞ_
}6%!6\>1JhvbTVM6=_o*
2[ƭJVS7IZ&$z:33mÆv퓐~Mm(_|yG.¬.|[{Gd6vͭ;M5Wx#G6?D+K"z&UMn8zRo+/S]]=4BP2uٜ4ṣ̴2u?,ML{waSpP隐(ϰ$.y2b~WA Oqhՙ?w+~|C*dS2^5W*۷Òq?:~$z[ɶٴ͜%˟-VwuOñ_$.2zlIR*4_S}:<L{*S=\rW=N/e%T&$J:3;nۥ1%cMmh:ser+ɮKB({%]ehթ?O仧'& Ի)Л/98xIUwQG^O'ߵfNw{eUWFrTySg͡5d/6Lg{ʹtOEO>5xAޙ?$|*]%6;/ >:/'B&⎟[*~~N}hɶiK"elZxև{eCB{IZfzO][Zf8s^5^y/cuhZ:iK"elZxu'4%2up-V:xmo:f8[+^8y>$b[֡ŊWx#:gDAJB^!B+xD^!P<BȫB!P܄endstream endobj -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_o8O{sNv7wX\9`$jc3)vl<X)I_HX-p ZYaP( GT`*jHR.F`* 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<@O.<?R͠acMr
TjvUj_^Hf#xYc5KD"3S`ǫjbC "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ѡ6Uc 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 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 @@ rv!~ @^30R;,kVKqMP 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СC˗/1cȵhѢ;wp``7nj-K*, R;ןuOys)Ǯ]d *544K/L+Jj!,)JVBrܳgϒ%KI`uժUǎ;~8|HWm Ka~G\}yW^K)%XPJ(lV~ʕ+<M,\oI`⋻wN>Pim endobj -577 0 obj << +572 0 obj << /Type /XObject /Subtype /Image /Width 586 @@ -3678,38 +3662,38 @@ YdènUM-0KPa癰!WX VR`EN@8R****zeeeذ[@FEOt"'i<12BJ[qrdffUH"(EvIt;`iHt lS`-*//ONNF/M@nȆCdCqJKK
^@JeHWKNNעy 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<݉eNA3!A6 F,ы1bDďwe^q8KT8Jy_xL3ä DF=:f,G䌮>e\MSa 8M?|:yQaʰ3-]u94ə+*5]Yڙoi_PߺWt=%KK+UZrⵑbRۅQ Ϡ|k_%A endobj -585 0 obj << +580 0 obj << /Type /Page -/Contents 586 0 R -/Resources 584 0 R +/Contents 581 0 R +/Resources 579 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 575 0 R -/Annots [ 588 0 R 589 0 R ] +/Parent 570 0 R +/Annots [ 583 0 R 584 0 R ] >> 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ڽ[o6)heo!C}Plb˫%/>E/I2ut?D_(86"Q! u"_;wyU竺sf0啯9m F
x+V \G4+WYpl4E%LMo{r;!3y-ZU9%tQڦέ~ybApQl~PSwgoCtޝie@s2dfi
>Wl#ĴISv~ۚ\3p@P^Z͕]W]M~r6,(w
~>j(LvW htԷ. mr"6]ɢȫ|>؎uHOWv)9wpoˇ} h[tmz[CVgZjC(I^k%}ڗC1O0Zh endobj -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%8o5<$6<_0ߘfV6|"C@;B[e:ZRv9;p[Oŕ 痗3ꐓCr* iqA~LM/7npH&9T'O0#8T%'n̡)Lq4+hGGGFFƑ#G9$(s+;;Jj
Cii)szb=9T=7r1E(.Ξ=+m]]2:ePĞju[P)̡3s7o<z(Ņ͙62AVVF~*BSSSzz:s*/]d<4B:1`8|pqqFJJ OblqA̡FCENMMŘD9.̡R322*++9`02?njendstream endobj -594 0 obj << -/D [592 0 R /XYZ 74.4095 793.4011 null] +589 0 obj << +/D [587 0 R /XYZ 74.4095 793.4011 null] >> 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 @@ S9rp)oOr28"k"Q):rFBLoL`8;p$ڲu5fB!`FP]NED f x+ЧK/ֿK&cgW{Ҙ#nBV^VdY@y.WTGw"p$7Ɣ^[Jd"yRiJU:/L_AM`GK&撞%@sPIP9A0:Sendstream endobj -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ϯQ*`< Е#vR\eWbV֢Ik4H"53[~Pe*VXY |8"~NtlLPhNluMy8)@b
W̷#6PZ|E+\%N*SLZ9TɎaG㯘&cyR4%rOKf,Gl_/$W(|LFm0y ц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_G<QQs%YW>q 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/۷%lNp]~=7b}fۼypwyeˊ~L$냃 X`X+X`X`"`X`N`X`aaaaaaaaaX;o3g>~=3/ٳgv>|J/.5-:~M}"c&&&o߾zjiƍ=~__eI$wzOXnu_9OMlH;vLƴ|?z۹she{ŷz5=jݺu +ޡJ6Ȑ,d_27dk||OP~z0ızIJDS^bOr<'Y,IV^+R`8ZÚ|db+:JH՞(n.!O8yd|`u]|ϟoɤ7_ϟY &Ԕ?w}WN:Pqe㉦4d'),Ii
)u^9sF{СCCm۶IDT%&cFGGb]ʗL]MOXhP4(>r۷}` J|;E~vbYzɿAS^=aOri<N'EU0g%a֭-i%Q m^r`e,Dbɲ+>
6xm̟SKWOX*W?xwd\},{O4D7!;|Hݥ?uTek˖-Xj(r̢ܹSd#:oׯl|`=Ǐ>KF^}CtMp{Ų:xRJ^}ha^Rڵkٓ4XnzFV><'L>u]O}(/Y߿?۷%(ҍ===ɫMz{{ŲW,g>;v[|^d |Ye,{Ov<QNI4}sv<)*, endobj -606 0 obj << +601 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [139.6116 341.341 159.0524 353.4789] /Subtype /Link /A << /S /GoTo /D (figure.2.18) >> >> endobj -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 @@ vbSܷ&{N|L[pFϏ0(.qm~RWkP_le Ķgp$ ˁUۑdt?R~^+Cdaguk,aC1 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 @@ Zd`wX5qod(nu`a]=31eM 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_I5S^
+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,`^A,`^1,+XzXz;X@W`X ?ϻEOIAXgϞ 4
%IXr-SMAXiU8H}$N/Rw-P|"YzR),:::<!HSrHh<5dD^9sFwE*"h.fA(r,aцO(mgwqzYuEr7oޤͲsYh<aWXB s^X"I.8BfMLL].gNM) t Ԍ"h=Ev¢-n]_WFD`}kRJM7k=l.'/xK/\sB$BS|իWu~)ݺA\D`uvv: vy7n0ږ^BfҦ6 ªV7B+>'Ѣ8' Bjfz97X|&xbI;|I.3zR !ZZv@ 'AOHendstream endobj -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< ixG0sY?95!Eba+~o3sg+ g08&#,/||Bu&Q]n[ӹw5S|6l %"6 Q+e0xs^zFƕՃBQU,CO2ۊ,:me@b|C_ެ\DBId.Сpɿh˨FLP]BCRoS|0B: 8^
"8Ei#Zg!Ξ09o?];#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>> ЗP=w_kI~ b><a¯k<m:"8 endobj -638 0 obj << +633 0 obj << /Type /Page -/Contents 639 0 R -/Resources 637 0 R +/Contents 634 0 R +/Resources 632 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 620 0 R +/Parent 615 0 R >> endobj -636 0 obj << +631 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -4599,21 +4583,21 @@ z,`^A,`^ab`X 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۸ݿҌ7{Ծw3%y-Zf-QH=b")74 bwKEd,Ldy JJ'@J&,BPAJe{BDP;V=D[V-n/og4FU빘 T6@6|j 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ڭ]s6ݿҌ 5uz7k<CʄeTr_X$Nn2/wDLrnuf@ ;jk3^dul6&['RS`꘡F"yZ@zS7C ugUmٹa,<˯)W~`䗠]u
Θb4&M?dJT>[8~"*f%_`@(
^i>_폥A/),݆CbrCkFs
7aN=?tbOWޭJhsNEs˹8(0ݸQǧ1ēhflJJzB,\ZBw6s˒Cyg+Y1#1g}A0Aendstream endobj -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!!!@@W+!!B^!@@@6`0`0`0`0`0 !Lxï*eBGHdr&~^Ϊz ^%/Ӌ֔'[ba#[K !$dRQxI _ΐC*SJWVkjj2n#ÇTbh,Hn4VYzYzrrr@Ғa¨jHɺu4뮬BHueݔB |R /ǥD`bÑBDhF&4zj___2-d]P]6p||L y+/L
U^<X}&6rt}}}&VNgfFOY[[[qlCL>em,/
QEE endobj -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ڽXnF+p:. ]2arI*!(QJ4Bjxy9g$G"FD0!$ &$Rk`PA)Rne`\,0eIuK?[-d~55϶˘Gv'_ڞ,0!N F "?AWfKBfCEH q` g@A(:Q0? /\fhTg~n!46d)]9!lP}9̟_v{uƐ{WZ#%} Zo(ID1pv+@? endobj -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 @@ Q2rhƹ<72SQqUġwZ.`Ͼſ'Fp*U). ]x\D 6p'ocA&6;\c@
̉#7f]F QL"!5Hvo endobj -666 0 obj << +661 0 obj << /Type /Page -/Contents 667 0 R -/Resources 665 0 R +/Contents 662 0 R +/Resources 660 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 663 0 R -/Annots [ 669 0 R 670 0 R 671 0 R 672 0 R ] +/Parent 658 0 R +/Annots [ 664 0 R 665 0 R 666 0 R 667 0 R ] >> endobj -664 0 obj << +659 0 obj << /Type /XObject /Subtype /Image /Width 629 @@ -5020,49 +5004,49 @@ qg}NLLZ (R
{HbR_|u!/~n55BsbXe~UAVE/ vfBJZL=dWm
^j8V!ajkd(&vtt(eW٫0^\|pTBR!**4bTaBH)ўf+RWlvݻw)^pkbb^WVWWkj"ԄU
ACR Cmm-!!Pd
䮞:?ӁP+Rp=Z(r膗H'|Ң_gϪ*:;;;+**(H@_BMRZԆ2;wj_5$lr}iRb+v3F{ܣ!x o٫tJ(\:@ Dtendstream endobj -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'
cT<Vr!46";{#ٵAG\vr0G˖ƎSq uGr9 ,˝z4)?|rIE-Ϝf|]H'C?*X[|{_r\qQw$a˰㾬Ǣ,:o@D2U(o`Ɠcgۘ/a`I)~xǹi3+uovTֽ97AvŽS7,VSKE9eę::EF,O=T;sI[a?0**"{Y fӸK%F7셸acєZsтqꒂ!b(6~9r 1+,ywNCdu*HIX/(#s*rX&5u3?DQn0y,b䨗uXz-@u<"1,M=q/teY3g9WYUl0V{=9=Aѷ''v[lCG3]
#8ӆZ'rU;'wms`㹿[OwnOʧqEPYǹWG*&Ãk$ʌP\~FM:HH5f#x>ȡBFk9WŅКW.gҽ.z7\ULļGpKeeO~mY}5=0uoJSBπ;uTr;#*endstream endobj -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:8YHIƖX
&ŠzǔBF ;18I=}Tm}|RYH"W\eP aX94hES82I
UmW_Q%R;ljV?D<ys
!E$t'UEImɚ:E6eEFUXL")XF, ;8a3Hrvk>C `Aa:Hͪwl:=au;udVɝ?Xcr4WxO9Ԛ)X">F8DŽi6(%]DCXt! endobj -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͚rF| et1^7hfm^E1z-\v:YmQi͛P5C03ah齍 PI2%f¸\Wa=?(zuF<;=5J=*?7tIڅw.o{)kBQۺ(ݗX-zhGF@?Kj:֓wH)U|x[3HJr.Ug6Un
<_]ླྀendstream endobj -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&Qj9$_̖q/~_ǣ
~o;n 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>okH1g^KFKK9 ,`X^,`X+,`^a,+X,+b`X ,`X^,`XBN,+X{X{,`XW|,5n@ @ @ @ @ x122b_
z~W>]>믿Kkll,9ڃXotmnT[[ӈ`5??Fjו+W&&&rv?\trT}E>"DLFD|͕DiIK)?yLNNRN2q`҈]YY~</2 @͓`IǏkv%YCCCIvOfGke5Ess3;,;::jߗXyE>L|"Dεk46!aƁwEX/<y$cY`(X~_O>TI|"?$^XX eEm!I4YN~_fOb,|X?"D,|^Y[OyKm}ə1ŢN$`Jit:YcuvvPY`WBl&w4VT===4{e522B" (a]tevD2bOb1'XLI&-B5?80#[z/_k,QBhfED Q(CNOO_z5i,hݽL/6hZ\\$Sla=z#ƛ7o$}i>iH,v$u>lZRJ*^=/bttudE{5IFAX0h \dE֠Ƀصa,%;>Lin7M$pjɿA2bOQ>1'$Tg%#li̺K^@m NbE'+FFX4!"cEӮ3Pkmme.?M]aѬ\CC,'/3':|9/k,$\RJ*Dp"K?;;4{=5V0h6찢FѡnܸAX4!_Zޮo6E,ꫩ)55*݈67t
3i}i>1db1'"W51OBJI.@/w/l/vu!VV,\.WKK3>gaT2&_4{A$PЭMl6[p@l5:;;K4O@4=̾(hwgkgZO~,|̩$L)Fb4VM0endstream endobj -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ڵZKs7W̑2qvݔ7VaD͚3{A9#Gv
FI* @26HRcv{2ga]j7gB+b
ּyhVw)aaf]k']{_uTXY3Nj̮DƜ=l{fq1ws@tś8vdԘݞ61솪MV>.4R^24{S@5Ox(>a4~vC*N'DQݡ$lj(BtScUg&bc>n sVB]G(SmJ;cXp6۱?e (w: !dzbt'] |\d+t Xa biF^\`g/.7
!LI/5 endobj -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,`.,`A^!,+X,+ XyX W`Xr0 +9s&fG ұ}"Sh8i<hqz!F? I;#Z Fe"u$/_X:0+?,NI&$
x4ˆ;^hXo~Fy$',؋/RDXEFcb)_4w59aѢUC v}i<E<BO"˵]H^MD]ƓD,R`g%
i[[d!".bN-ʤ-HbѲK|Jp---\E紥+',Z?߸}6-e :0>c<Q`H'EYI\VH o,h5diEhn-',K.-yH&믿l?|||\xMq
5aZ\Mj.D]<Mjg)61 H|ׯ_O4]nDR`+755<bPˉCZ|*֭[ܚ.B!O>-= eX/Z[[ һV2D=OT>Dc9'Y;(hsLa<qZendstream endobj -698 0 obj << +693 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [369.1027 214.5472 388.5435 225.1294] /Subtype /Link /A << /S /GoTo /D (figure.2.24) >> >> endobj -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 @@ xZM6WhӤES6䠵ۛZr_ߡ(QeQN iA:Dk:Juj]S NDX#yd'ʼn}+
/R^ה3
lZk'mc@FpԙxA
ģlb@@┾zWlEuMlrxj!1$EiqӂD;AΉG yNvzI
6<[G endobj -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НuqQM֙\McWm%9%5G+|Iod=\In|F?R`u:.:: L"603xzݯ3O{utWI`W!ւx!wzem)~j"a<'ZtbF'ĔO֗ӽ-ԚreJ1K'\AUB~m`_$Gp?Uww-Zu%K0àマT_TiJ1Nj!t
:|t)*O*fzHfX[$+EUh)YQ C
9IlNb|3R6|5hq//שz\S̤F$63qz9
#q
lo@Ⱥ\TH=J=:T)ROD$lFS[o2(<@:}feP)yc2O|rY>wsq7AƇpM-u皂60ݤG&pp'|r鄘f0ޔ5Ctd^<z(`.Rl(`]aZt5Hy>Rf5g@]tl@4l圭BsWt?^_ӧ;e4'wOn2E(:Q`L*{\Ɔ8VkEzj}~Y{َܰ=yendstream endobj -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{Niwoʪ}ʺ}( @GxW bO1pk`& E3zg&!m`hg ; AmDMr4s}[5qJxa1eHyUnj_W'`<CK_7_6 dmf[=X7m[ݗ]hWAa2Dj\oPCd=Ǫ5G(*`k@7ixv/&sILp`7?R>tnn+䮣,x\k;//=hVkiH_针2Q(!!>˪\\x7ҵBzPpA^!0> >f&^ո}q[]8`kPѣ.Ceg1{2۳\2\җ^+_Aiendstream endobj -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 @@ cIm=a
i}ك|~)!U7gy4_Dsɤ2X.{`C*g MʇQKi-Z&=!5$W3zn6.`bb(rr6p
vrxMAAۉcYVJ.<qp}xw ,>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#Mendstream 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($JKKnksd^X \y C쉪xɓi:wz*Wu̚Tpbsb5\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 @@ xYKsWȩ0|*oy8ʮj
4CÑIʛүO7Ia@_ht݀DODf& ȓn{NW:c:c"<Գ(B7?8h ~`?
nQuLWWc~\ ]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ꫯ*X4as<xphu>9lvU<lذԼ<YFM!`撏;V8:prS$sQDNbo|ʁaCm^ldf?%?~jjjb~=^fX<m|0!`!
' {ҶOz
`/ZGSLx5}߱H1iK
Cd8aeĥm,.,`
-,`X,Ok"A,*%f" RIFu(kV4ωycӬIedd9:czXWOŜrQaP(D:T:/߁GfO'9mڴAd"b,FIFufMԦ&}:]\S;yi<$)|sCCĬ^5E@ėp̚O|ŠZ>S..bx^<4x:'A+++``J̊9U_D|BNרάY|gʏtqyOs:@dt4]]hPĬc^͊.'EI҉/UsxX|U7'լPfpHΰb
z5D٫;!x<w9zU7bլٱʖ:l4Y1U_N5^|GaAy1<GO$SRR***3|ƌE0%fŜ(_5} rQ;fLu:s̾1xifdCCF _Y-(IXrPIa
UNTL!99lS7 endobj -732 0 obj << +727 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [408.1445 518.2403 427.5853 528.8226] /Subtype /Link /A << /S /GoTo /D (figure.2.26) >> >> endobj -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苩Ygz0ʝ6XtuQL7ڻDCpNi\ ;65U dM2X\>gCdf~LZOT#27q:nڪ+>5쓲inD=Os26".8$xk(vjo5GO^@تEqMW]yiu=q 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 @@ wyhg|eUnA=i\)ђjj
McC+2\Olceb {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ٙ"A -n6uC<R2.(ԣ";^2e&W^SœtN^ϧ'19ˤn13.'q[OnˬX#d&q"@):2ќ@fٴdƓ7Yg^B|jS6 a,$h!!˹1%iՌ$]4:ju
QS/kU4Sd`,o>PFY*"t]ޔ+ -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#H1M6On^}~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]/ywA -+M9c6Ծ.hA"dhYgZzv-VA-;.TG(f +xڵY_۸
ϧK̚-iMv{Ik++{|/@,vٙ"A +Ϫp@LUDiy"X=R3 ,K$ϐjԺDf&vk{O'o>|n!*H"5cdPܤ +T|"bCԿ&݉kclb@Gvki-A11-<
}zv{/>0hsZ: ++ + +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\TR 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 @@ vrDRD5b:LTKkDDq>H}vQhM5ug@L7๙qÒ&J_a^. 6ЀD \>M4\k"YyQ*Zؔ!\w^(Th:4 !0LĚ(߰mڴMW^`*j;T\)wҁ=,P |lVp* >lJo=t3NbtW5-mAs8$D@J6mDI7#(viVj$a$7R&*wUٳCrOx8G_.)n}>9)G,;,iriWyƌy@*e? h=(6 ǡ9`Џ6X:GB|o"B. endobj -762 0 obj << +757 0 obj << /Type /Page -/Contents 763 0 R -/Resources 761 0 R +/Contents 758 0 R +/Resources 756 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 742 0 R +/Parent 737 0 R >> 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۶~ۑf*}Kjd4}z>P&,3HWԿX$t<cbw|>Ϭb*+ pPa0Yh%=tN87/_RN&'Red9rU7V ñՠcRb;őj9%KrKe͏xaVInbJ?7eV3ERd h_V(wBf˕y,ľkAh F endobj -767 0 obj << +762 0 obj << /Type /Page -/Contents 768 0 R -/Resources 766 0 R +/Contents 763 0 R +/Resources 761 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 742 0 R -/Annots [ 770 0 R ] +/Parent 737 0 R +/Annots [ 765 0 R ] >> 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!CS86l<Nq;ZMwZ!sEh1<ĬQꘔ4kLqA,<]wc7쑱XA zFs{"~aGD~VyXIpa WsަѥߛJm^?-*٣^.渂 X,Y]APΪHYr['+`q>nNa .,\*^:u1a Ƅh9z)Cbʓ 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ڽYo8_Gx⧤}k/mwoq&w9fl5lHrf8>l)PCr8a"|*\/\ EUE_):ʂD ,g[۽v^Y3)nj;:LPLS_m̩sIپwz>خuZ:QgIK_.A23jn<HVimY^HaEьSӃLզc1%0LH{_Rȼ]CIUx0hWKp_:ɄWpǢ%"ntwl r_pa^ϙL,UzѶEcfdD/Iz*:ҝ@3^ѺpΩq~j]7v =}_UߗB?#% q @CK[SǗn}=Fn@'RIF~mVvgj]˨%SѮe4uE0EIOK=PW5Ʋ;/=~ w`UB/AK -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< -s?ɠMeJU|ߗH-跥 -#g\Fb[y
IFd'_w4E6[rpIה=Ԅ{ -?;*3 -~{R,0G{(m"v,)f>l2w! -hhz;HLr) **wG!N[Uj q,\$0}ku3a2,m\xL1NXwH.-FzKv=D,[9!T/@A]KCh϶!ea#X4@{)`s]!c\sJi< -&UjzPXУνJq=!kCu;OܖH+$ZT#F -endobj -778 0 obj << +T6\*O>PO"W{!?kklz~ǬnI}*ʤX%rQ +,}X ~GsN34͆v/- +,3Q +~&)!!*z
J)*Z/kgwsپ}I<y8s<"`F/\:7`cc_24լJ$3\F`q.#
VjC_)EfC5ڻ +i7aDi}Zl+Otr>U*0Ȧ05wK.3Ґ:p"R#G~ @1j$kX*(SyJ[ +7'fu;HLr{) ) +T9'uN.&yh};|49vǍ+_[/ql ] I̓zspflΗ^@k-3v6<=;XHS>yΙ
vۧ9C.&&Ym5'!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 -\ -%F -gZ|S/7%]kۺ%䦨WDӈ3EAdf*aiͭ-&G4ۅwd+6\ee8M.0y -gphcPldGsO?0nŦr@ 2vEq]Ȯc&۪#&R7?1ޮ<RIY_On[iUO[{"Mcu5߿,b2?</HΣDdn&`?mkendstream +xڍXKs6WHu,Bnnt4iS{|{DBLI%3)r3r],z~B/K +M~/wz[i(D',X`A^cn +&k\cod#3 +-]`d +whQldGsO`mEx.@d@Z̀Ȭk +b'۪#"R;71"RIYš{.|UEO;;!tMwc +EjTg3{zgYܿF3<Hb*1$|Wg,>endstream 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;_ fnۊ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)ϥ!5 -tTC[GHĆsAfvsM1+PM.=jV`q3ލcQ^bFOXYW%eݶY@'pvsQ\ -uXa-Dɸdg0(Äԥ=Z -]k'ms:K]anvݿӞtמ@<&<dUp%2/ŇAȶ$W\JK*x/ιMdZ$=\n~GY5R='txtP(/qtC}.0(l~(gZ
Τި2ܬDبq'|25HbM|- +xXK6WS @, +$k#GUaݢ")Q-3
3zl;M#:=V(%Ԕp+ỊQg?%w?*m?ځ +JPOC4sj8|k(XPFx@E5PMbMA +}|9-p?sQ-2_zmD~xwwxpdKCJYN54Z +M{TGX2w@
}";)ͦ꾂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љ<s0!5D;zc{,+9!86?'OR7 cʘ%j:xU1G >Y:k1^B6SwGyv>c$1iq&*j,$!Yjӱuovl+(7M1h_7k;!>g`eRɯWt_Ͼ7cgCB!$$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}~PT{,,f}_H4LNL
upn+2mv;\7Bc^(ݔڅ҅ /j\C?3ߣsSdD =|ֽЯoU;g 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 -$lRߔ&wLݕ\ bۋ^ -9KQYtXIt(!I*eqIR-`R!ڔ -D2YdhG.⩒ih1H'z,uHA8R2AUn+;,Mwy -I8̱O`:IXD}"`(D`,6Nw"bTm:غ 5Nmu9#*L392 -5ĈImM/dC._Ӧ*1ωAs -G)SgP£yu#W&Ai -=H -iq0̈f@_c' -ju4|/KsuSM -KzKbw_ӣعyv%E~syIS~㙳PO|Y)(Jr7+ɑdrhh*p>8~@f_cT<;7.+6nrz]?\ͩB0{;>Mvƴ$1&x$(1';tƜ/%IBH1!vg#kUSso -i|;gU|mQQQtM^ - V|8$ړh~& Kn0)18{Eԣ33I?wCHPƩ)ogo2n!.~/r -tS"2
4gX -e] 58^2F=+4Wxv8SGt8mSh/ - -ٗ:!5endstream +xڭYs6_GBG6Ib_o>"L1HowP$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氖#WGMV?Vw9 T~<vj@0'7B|Kg;\ӵUOH͞tMWo[m6"boeQ{:V*kM{ >h/{ZzO%ԹӮVj'utZE%jwXhҋ;}R9'! +%g* +I7:a(.ip$`cQ@ Tnzc*t{KlBփMr_MA1HĹ8|KgQ(B{[fV/BgKW,:TO@\N?yӏn]ɭ{:?R@}%$_@7@@"ݸsS*˦ MB쓾GK4XӺ+1ǐRS<;&|6~(Nl!DU|q,U٘A!aFa[ӕJfWφ#žz>O#{6[τq8F,GM#rMcB +L!9)3HIwaF$ cմUZ
ѶiJXDbCNr +{li,~i6ڿvO$`Ob{6` +@{CAjLwe_-|%]$ڕkQM[ęu9\ĎxsB[=YLӾ<pL +5=&N|'%qئ2^/0X/H,1Vc%s9rm<_/B!tS-4А|bWcA204#ewvVF~(i#holvۅw;@r_[8Ib93$. AICc2M0|X8p ?5eqI{62:VizŏR氥MQ7GdpqsZLRO"|e0sIHG{Z5<dW_+cuXܮ~.mO|gؑWܴ!ɓSOyeY9YI5rV-;rrۜ't*qLή_ x.|J/ѫG(ʠ
+W95}[O +M +f;L"?3Io+%#lЯE&CVZp̋+ ?Ҭ#~}nr%i?n.\b&^myPa77}[օ/>{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\SgEє-EyY
L ~R`Q4L$fcs}"Kq]+vu'!/uʴ =bPxâv;Z\t_Ў>a;rtK*|dC
\q21e(*zT(|mAt@t>Wjў?} ngSP"ذV SsRɅ3zƸEu&'x;Zdi@BYX݂L!qMqϞlp HOmY/<6f xpu<u'MAn4積G`l1LP,DCuo7CE5k7D3m9q0ɕ< endobj -810 0 obj << +805 0 obj << /Type /Page -/Contents 811 0 R -/Resources 809 0 R +/Contents 806 0 R +/Resources 804 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 789 0 R -/Annots [ 813 0 R 814 0 R ] +/Parent 784 0 R +/Annots [ 808 0 R 809 0 R ] >> 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 @@ xTMO1WSZ&p!Ⱥ ٶE~t_k\PҳwZdJpR _2Y[;^xvQn|uY2AINe#9I("v[XTcK} )yb0X6UpItߌ 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 @@ cB*d.^d'-WYBkMl\ j,7F~%2q;h@ t] 62p_n֞Cj2fpqSBrZ23Q?_I0"Nv((
Xnx^|#DvzҘI1qvpQŤ~AۍA`;L endobj -821 0 obj << +816 0 obj << /Type /Page -/Contents 822 0 R -/Resources 820 0 R +/Contents 817 0 R +/Resources 815 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 789 0 R -/Annots [ 824 0 R ] +/Parent 784 0 R +/Annots [ 819 0 R ] >> 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 @@ xWKFW-=y[ #ES8U\&||C5ayb)'RǤT8I_a}0;v,ϣr^쪠]}$u1eMp2sU,\cSl:ɥԨlomyVqb,52- ghۿ˭3 endobj -825 0 obj +820 0 obj << /Producer (GPL Ghostscript 8.61) -/CreationDate (D:20080807174428Z00'00') -/ModDate (D:20080807174428Z00'00') +/CreationDate (D:20080807200527Z00'00') +/ModDate (D:20080807200527Z00'00') >> 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 @@ xZs۸_Gij @>cM/L@YĘT:뻋(m咷NfbX F6=%*@y|3$T^/6VST{7GC4=*4(L?4ˡ7p|
s/Sѧa9TC-uX뜰4?7yɣ>Mf}}f-@.;´|]xfDz@i_^DLe- 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,A<s]np?fo67rG^Wf˟oޏΔO
ԈAQ8,zӴ~hk!/oBc)AvUo ˀ{&/
a_M':&/R="}SLu}r+k/}NaM[|]+MGK}%4qִp5X/X$_nk\õ$p)u/m7Qg2cȭ?mf -c`nwgkWW(^J47$&\xAk/`m{^^A?ujJW lt@*MRme]*k:jZ|Y*T=<P̀ACF7&o)th]vN! -^D-3t?$ݭzaO<m<;ܴ -$gk5=(3röY]2 -v;Y.7&'^d:P(KR^|N/pMy*OBB9])Íߩ~ - A -7: -BW? 070}g5p浴o0 -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.r6W\a_Fc_b7e~ȇ~h;hZ錃dE~-}<d\ -CtX=7hy$Δ^2#S -h#hz,Wg兗Dѱendstream +xڥks۸>RS qΗ䒞]g +=mnrBPr.XFptw4(hϔ_E2?iB
_>3!x){`W#F8a(!1&Ϭ/ՂroroĂ;=Siuj 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|gAMBW.)z +-{Q1
M#g 3TiM%71;[`5}C?\&"k ޘ]M%>+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신32qMJ2A_/\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-:<E0mw
ζsK{D-ӌ~yqz.CsUmW}noDxN4U]۶ -apna {'=٪-4ƝBʧ`ZAD*`H%ØHJh Ym.o OԵ}psf -*3gkI.LBDLWQna4Uu%.VCE-3M2Urf(-绡-co7zv|Ɍ4ױ,}m!MZ -AHI6!UnLee;(~ǡi(o8P(fV/at+V -?uos$⏃SP-cZ/>ɒvL<4tC9QgFd(E`F* -(f\9'-`oE͘n8-0f -½S[]Wx=X[8ڰM;^pZGS${hK>P6?jаB@̎7mr520j @|J9sXJl]K3uCQf -p9d gf(` -Sgl^{!tyDzT/Lu^c'hR&ʀd@v!+ 2j44bpO]:k]:\Zʹ֏h%P=z?(xgn|1V
ܷP?cu驇fIXkr@<v]f~}?7 -'=;?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[sAVKIyqbSc)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ѽZ1EK&$kIŲhʗJ&Rh7@e(D +HR "&DZ49}!)Ɵ +C㼰-F7*xBCPpP,^o~C_48<Rx@9([_EΕ}0<<e臋 $jQ?c:2"DAgF3H=VQ@5SmQCrB,Z ь^?p(?n c^|u=&<k2epbmyl⻁ wX=q1án U^l6L0aO 4hVv]\Ka4A@!\7ew,ނEf{ݮ,V1ni'3]84^*P5.B[pܯ(zO,^4w`6>-ЀH8% +{Wuf)vӠYsξ𩺅\{:zq H!F)6gdgYܛ { Zc{W6 +-/!Zλ
bo+؞
m6=W}VU +9^G=:y#g;whu]n=ŵ biO1Zhtc)we@N `]ALϵ
S'BZgGh-T8h Pݹ8A(xN~=b- (o{ +i5s'٬ȩ6u::(O7|"XwR +rw Q鐴pq]L^_UP辏 +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~(rumv&cE[A;r<`8~ϗF`yr9eWدGv̾F]=#"c(SAZp&ET$X)s`\xw}8WUj>RT=pxW'!94FSg^PR!(@cن=BCICȓQwRt#CaVL&&>t۶S:n݈uU"!'/d/2,qe- T.UuC*Z\b:<)2|N<341QeLe+HF}Hqzխ"PvWpTP*
>Uj1Z#*cRy:l֟qQHe}XV"QD6Dtxz=FIxP!]Wv/J3Th$nbЮ1Z&le.)/nuh]:0*JCUNeIKV^0C2OfD{m$uwĢqYnk,)27SuB3D;V[Txޭg}`z'NǓ4%&qv'Z*aW8'F0` axNã%ꀏ.LtGB1H endobj -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۶~У4BdiMmOPw2ˈ)Gi~Hs&\,vo/Ą1I\O\ &HYs3B^?,w;RV1TQO':"vAKj\1?Zbw?K-pQFaϕ/Hrc?ĦPyӇwo~|s;kDX? ي'm%8)6kI'w4haP`o6oo.f4L7/٫H<vBS&#$_g~8|%>is|$gpdz
>8y.'$1,&V"z,ѧe:0z#D>I<QAc,kº$R[6=G7P؞BY1F\R,]C_o\.wПK@[&`|KH.X qיĤDeDx\gzhδ~29^e.D.Olvendstream endobj -850 0 obj << +845 0 obj << /Type /Page -/Contents 851 0 R -/Resources 849 0 R +/Contents 846 0 R +/Resources 844 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 837 0 R +/Parent 832 0 R >> 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# C2t4I]|t= T߆597"l?kJ h5vJCb$Z~z`rABg^b endobj -854 0 obj << +849 0 obj << /Type /Page -/Contents 855 0 R -/Resources 853 0 R +/Contents 850 0 R +/Resources 848 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 837 0 R +/Parent 832 0 R >> 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]RHG(]ʻ{ihhU ApwH/2Sa* ˸|ǽfW_%>GvBVee::fOዹ5kgAh~}iWu}~墚!=y_|I272N6IƮ/3OGhdV 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Ř`$a1T (= 4;f
ƀ%ye,8Yv_X9=I)7.nn+s@D1[gUnq;:~U)HlAk(-4 =oٷpZbQ;7_R<RG?f~8kvnI)>],5` ;=נ1f0|Ԙhw=^%0X 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<l6M.ђc@q~mw)"(%PMP!h>.}2q^EXI@`1$Wty>#7/qG)Xi N|*ܦyד3d/l?g9"Epo5A>sT$Ѓ^Lb(w9cӀI4AHY8U$#M -CY@Sw%ql]'N9/lP6iyک
a"X@~ۦDDĐ)ܓVMٸɸX5e5^1#l9ΉDŽ3o(q{miaMR HejYyLCZ@a_<
-ڭf6j\O;c
zHgk!RaNvc5ndF8Aק\@a&_.>T Ld]Au -njR:P!2SOE~6eﵤz"d`! =~켹LJeR&,ah
l/Xendstream +xڵXKsFW9I3z$!d&<!Ɂk>T>֝\drvtvCOIx +}탫ŏ+3wVuZK-&Hyxgϭc\dY1WxgŋNG͖&Ow +iW)iP+= +pnxzU,JڴdX +˫ĖX +֩'Nzuf8ܢk3 &wH(pu R~qU[u)kd,AC
(\,6%e|\vdoNc=_͙U0 +(CNv\j̖ 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$98 -= "=kۃ*W=E~yRۣl܅e_h6ie7;:ȶ܂OY -b}5[ F
\|'c'G?a6,G-.f¶ɭ뽑g>&OPpC̭IscP6Sw9OYA>|[sEwP>:NtcM -ݣH:a.L dd-s@wRCi?T -3B -f6X[/gLLxj;q陬8+Ae*s̔N%:߈WCj!:dG6S謋vKlEdF]ݽu*j$I^駇%x+Z~Ԍu#v,
`5\[kP뾑d(rmp;(ܯU/2!IHb~1pw~ -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[ACxXWy +jXWU_F`|
{NEx5,
4P +$A[Sۑ8QE@izxfUdLR-ӱ*2pbPujN߰rQ=ԉfR?ЦRzD0H32)I4;Mfji0yʱrIi9XdsC{s=7hːx͏g,ga0 +Ӱ,Eܔ>!(px<3ca;N' +oBӼ wMM?u&d3噹*TJO`rhk:+C{Ұ̅mW~^c>h!><:gTAj;xĸkK]F>MS̱VD|èC(e|@xWk,
(<|CZ9E
|xiSOp>6ȺGkgS.$zcHUv5-zpy;erڇ
+dD] 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<</Type/Action/S/URI/URI(http://www.CaCert.org)>> +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] +/D [872 0 R /XYZ 74.4095 327.2273 null] >> endobj -182 0 obj << -/D [873 0 R /XYZ 74.4095 525.2661 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߾
~- -Dn8ϯY -|.Oj\~ŀHR1ZeYY}k3}y*`X% +xڍZ[sۺ~ϯУ4s +ivTa +8^5n}NL ++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 +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<mk}^O$VxTI4QwПcU8a&5{m& K;R& +RT@mb" +]L{1 aa͙a
HBيͲ`ʹ:nn='4o7R8 f1̙
lᜤwĵËvxSB&8a՞z </"Xsḷ1Yd0f(6:ruU)z$<fNxSgFAc8_&Y4}VGӭ6w!θClƧI
ڞ`q8L=Blqlsճ:UjZ2L=4o͚>.r1pH l:%|waJhVw]{#̽x1z\N;0fz<غ5~FO)lOV09M|h:BƦ|BV\{GkfMgZaPھjnW#w{L"k D4xR#
Iw1&!eeR7AiuJjёA0{9kr ?EE6bH0WyA`4&ܤ>Щڈ Դ:Bnu]/B;qpe"A>z: endobj -878 0 obj << +880 0 obj << /Type /Page -/Contents 879 0 R -/Resources 877 0 R +/Contents 881 0 R +/Resources 879 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 871 0 R -/Annots [ 882 0 R 883 0 R 884 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 -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<</Type/Action/S/URI/URI(http://httpd.apache.org)>> +/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<</Type/Action/S/URI/URI(http://argouml.tigris.org)>> ->> 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<</Type/Action/S/URI/URI(http://www.eclipse.org)>> +/Rect [125.1648 659.872 277.7924 671.3972] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.CaCert.org)>> >> 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<</Type/Action/S/URI/URI(http://www.FreeBSD.org)>> +/Rect [186.6652 410.7297 353.6389 422.2549] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://httpd.apache.org)>> >> 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<</Type/Action/S/URI/URI(http://www.gnu.org/software/make)>> +/Rect [148.5137 390.9788 329.8337 402.6116] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://argouml.tigris.org)>> >> 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<</Type/Action/S/URI/URI(http://www.vim.org)>> +/Rect [139.5474 371.4431 299.3481 382.9682] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.eclipse.org)>> >> 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<</Type/Action/S/URI/URI(http://www.imagemagick.org)>> +/Rect [147.115 351.8461 306.9157 363.3249] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.FreeBSD.org)>> >> 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<</Type/Action/S/URI/URI(http://java.sun.com/j2s2/javadoc)>> +/Rect [154.8081 332.2027 386.3397 343.6815] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.gnu.org/software/make)>> >> 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<</Type/Action/S/URI/URI(http://www.mozilla.com)>> +/Rect [133.0648 312.5594 264.173 324.0382] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.vim.org)>> >> 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<</Type/Action/S/URI/URI(http://www.pps.jussieu.fr/~beffara/soft/rubber)>> +/Rect [163.7833 292.7621 352.2764 304.3949] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.imagemagick.org)>> >> 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<</Type/Action/S/URI/URI(http://java.sun.com)>> +/Rect [143.4568 273.2727 374.9885 284.7515] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://java.sun.com/j2s2/javadoc)>> >> 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<</Type/Action/S/URI/URI(http://www.gimp.org)>> +/Rect [167.8988 253.6294 327.6995 265.1082] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.mozilla.com)>> >> 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<</Type/Action/S/URI/URI(http://httpd.apache.org/docs/2.0/mod/mod_dav.html)>> +/Rect [139.9598 233.986 471.9148 245.4648] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.pps.jussieu.fr/~beffara/soft/rubber)>> >> 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<</Type/Action/S/URI/URI(http://websvn.tigris.org)>> +/Rect [147.4467 214.3427 285.7281 225.8215] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://java.sun.com)>> >> 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<</Type/Action/S/URI/URI(http://aspell.sourceforge.net)>> +/Rect [151.5083 194.6993 289.7897 206.1781] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.gimp.org)>> >> 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<</Type/Action/S/URI/URI(http://astyle.sourceforge.net)>> +/Rect [146.2633 175.056 499.7376 186.5348] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://httpd.apache.org/docs/2.0/mod/mod_dav.html)>> >> 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<</Type/Action/S/URI/URI(http://www.foolabs.com/xpdf)>> +/Rect [147.2495 155.4127 321.3964 166.8915] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://websvn.tigris.org)>> >> 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<</Type/Action/S/URI/URI(http://www.info-zip.org/Zip.html)>> +/Rect [134.069 135.723 344.0813 147.2481] +/Subtype/Link/A<</Type/Action/S/URI/URI(http://aspell.sourceforge.net)>> >> 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
K 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<</Type/Action/S/URI/URI(http://astyle.sourceforge.net)>> +>> 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<</Type/Action/S/URI/URI(http://www.foolabs.com/xpdf)>> +>> 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<</Type/Action/S/URI/URI(http://www.info-zip.org/Zip.html)>> >> 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ŀ`(PUyμ>d,B8Vb*,
^µ/7p.27 -n )*Z$BsU7?QЧfKp8<ka?_+IHx/E_?:~w["Ap(~QD2$D*$,C))yqÊbBEn#9Q"VbϧW)8S۷+׀e_,KJʗcbi-FwxcT:̈́d,~9o" -sΙԩӘ/^?Isf^F~kmM#fSdT:/ȧ1R?ԈоO3D"L-͑,~m|=Mg֔7<T(zWM{өL5>e9RS 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~9 -$GM·ݝBWXft@QJl}s&I=zݔ;f!,}5\O~mHrA^U^t*׃G/ kAXhqk<lusLy!AP'ߋQoSMck2c|58[6RP~s5cIOĨqNL#r0!UH-{$C3k_YQFSH$҈;AԌ(6*.E9wE͏ΟDp͔n'HSDSXVvȂbIܻMendstream +xu1OC1+2&C8N2V5bRPE(Teqrw!v]i"}=Q.jhf5.REP,uէ5O
Os o;ȥzpׯ5*۾F_eH??췁ѿnZ9MZZ +j`K>O*4Um1h'jD-<Xf&2; Xuendstream endobj -905 0 obj << +908 0 obj << /Type /Page -/Contents 906 0 R -/Resources 904 0 R +/Contents 909 0 R +/Resources 907 0 R /MediaBox [0 0 595.2757 841.8898] -/Parent 871 0 R ->> 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} +i)y~ㆥ4bBEn#ypk0CO?˓yI<n*=DS7Nl0"7=U2q~ޮ]&d$c13xј;XIi:3k)mάsȳFx- sl +Tʄes{?)F4"C{ls$O^[?n";^ә5
5RpAoio:ҵCv'L+0@@{A^ʪ9x:HjfXUh0]fuߠڵMa©
A;zVUbQT0Ԋ<PX̡
yZ;nty(>gGO~.ҬAaDZ9tC#)q4JMV."6\'M"U/[rHPai:(qayBQvfWIKIcåt#;Eդ-PM +bU&Ļ3(yiE3Ęr}wVjK~ǘכϹ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څMs0 #dN D)j%פPŝvkNk^ (#~ʀ j~7;0G
hsc"tQVBs
q酖*-#Ym">\<%!65~]IFuĠ_?!a -E>gnw]YO!,
+E>gnw]YO!,
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(aoP -@ICGG_B +@ICGG_B =Q,slwL˰S;DV%&E%
;GL=EAqA4ߡfJi0>zq{q'ӘEWX ^1<?q%@=;|ՅLK*q#бVzWU!<b;t:r$Ԅ,ꦑN}=.}y),Dqe9VYTi.,@9]0~eQhH)?$_%}M/̌ωmjO1VK-SE!<,b0CkU'\VBϤ]D<)*#.f vS:ubK=8y@Qqy,2K$ `aO-g8"bW0qVW*qgʮ'%ϡ$鉲E!n1!S,~qfbMA+0bO>h'^7[
f8@9O7!);6
JMjѻ[05"E]3_l(u8}CSi+5"ϕG!LĂb]UkC{@P9[~ue&F=nZWYtL+ͧ @@ -7404,35 +7426,35 @@ Odo'lc*(+%>: MhV7ٮ)vܨ;2`Ɖ;xz$$)8[]n6=@d.Z5eyLּgKFAgR8+ZȎwnƧO'=+"O}4H t8DriňRbHoګ1{۲B}y
'#)_kb[-U),dY/rU̹Py>~fjh6<|y ;- őK2wT 5
GV ^{n$l־"x/!GBRH/κ.͑Q4|e#^j%x/Moi?&J$C*de%U' -wb\;Į2%zdbU{)5帗T(۷\KkpC8Eb@+xQRB5@#\\d!ȷ+VjȢ(Ze%r<OZh+'Ѣ'nʏ4{utoJa +wb\;Į2%zdbU{)5帗T(۷\KkpC8Eb@+xQRB5@#\\d!ȷ+VjȢ(Ze%r<OZh+'Ѣ'nʏ4{utoJa endobj -807 0 obj << +802 0 obj << /Type /Font /Subtype /Type1 -/Encoding 927 0 R +/Encoding 935 0 R /FirstChar 33 /LastChar 126 -/Widths 928 0 R -/BaseFont /JQZVWM+NimbusMonL-Regu -/FontDescriptor 805 0 R +/Widths 936 0 R +/BaseFont /BLVUBW+NimbusMonL-Regu +/FontDescriptor 800 0 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 Tt#PtClxऴ2 -Cmբ#/AK{_{I^~͎Qx(TNSK - -50,<Ȇbhp`xG5ohTҸN)lC0cySTǐF`KqP!!!mXGcC̯i9<I@b"SަT4JFJYsDB4E4KH}B_ ?^_mxpIFcZD틻 -Y6Q;?Jv?IW:NL%R÷6\]EE%˱)#]1[_:L<'q\GV63J>k[N>p.{i57CR4K56/䬍L4==AWC -;$n}rnJbŬtͽ<R5*\\}}9_wOeӿVy#߷>oJ?{ǵAyZ^eer\AYdSz>}HX;ʰ5C6v:7>MEq`ہKUK=ڕX9Ŧ<(ڜV-7[ -E-:6qgMnr&EZT_[s۪=Evnlτku>]yvJܶ!'ரfGz֤S4#uonG)IXoiUvukJ.t:~kva?IubvI׃B~Gg~)KkNG60>o{U_7ߋKm]Ɋ[l%
N`zlU];RMEf$C}\gL}X혡ŇĿ>^CzrpSn.Y/.Jo|aOڳaJ'+d)Ŏn^f堛_՝͖oNyQ)oL?/ꕕ\gezjw<<YxйYf$)Z>W(' +xT{Tgo4OX䡉ڀ+"(TaH$S'3R`u%BHW<Z\m[ARZYZU.מ9}|{=g>J*FP$#9JQ
ڥ@(D:\g81H)@с +H"<A8E\@|lS*n=@|j0ۑy!N@\:*&#cA$$!@K%pX+ BPQ FH%nNEX, +ं) +5<Ȇd˱ +9ʤ#yr3fqd +y*)NIbC0a89sT8KF`4[б80P! "mhgc4M,)O9 /Ob"S'y~"U GJܖKBIx~1H} B_ +̱_mXA`ZD +JNq;6uc4YkOg7uKR7ִ2ߡM=K^8;]8P.h(wz^Vϸ۶U<5]{h-ۻ? +˳xDoP9cW&;po~|4MkqڷuϠt+YYiGZ_x#`=$|/vծ
1&tRms͜ʪNær&+&䟠*\&nq]SцEmeXaN7u=N8Z͍A9vziGD5+JMwJ;>{}⮴jvaKR4ɋ4ԟ+䬉J4ICBۅoyy|vRbzV^`@Gw+᷻ƿ_+sfZsw%1Q|v \-*Xs=`cU1ͮZ^}pIXK1Ytնun7w5<IUqPUU+
8l\cSEٟ\"V.3ὢ-[\
ryy-:Uq
Ni||:FYU_]g݂_m{OBUڧ";%nkȠKHg73Ӷ5aLx;=wQ֤$)2\|H,LK23Nx8k'>>PWo2-צݢ;U5[o/nS%~est71v7~8F@w39.]\H5ٟD
N<ΚA՞֣+jgN@[DYvхUrǺ&}hAJuMm`cu{λӞߛ_25]n'W.%tm5uRgݸ$nnzlS8Lzm|~xe{L߹D}''MGi{=W~x 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 -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,<!SEZK}}RUESh|Og*=P3zKZb?->}]bkl''{:l'X{2V4xwQvj՜+{L&19ZYmεиg)٣9Ua<L|g-{yt>6,CDgN`ʼ`}X6vD1f{JirsOhy
" -U*T?/-
mqbzO;E] 5}4^[6+_ѵ+4S}=*\cw5kB{0`I>)ObW%%gIvɎS}Ll;C|þ/W%Dd/mG)gFt7vO߲wƥȴ -#$3AgJp@nt:b~9o3/cjSW\0̽9o;nh0rUASָ\F' -Ű +xRkTSWFa<FOD@^BB1{$fn.4<mEh)4e!B"0iDbT|Z'`?g~͚so +9apNLx!LН +>L3`pl1i:$%ޟ:O +x"jbDŽLӀX"o@,4L +AE༃TTtL*Љ0T XDot`ŃR-|HqoL"M%`0;q<BR%!@}$1.4;!r +Ga2 2xQh:!Q¶;6څd +SqFs},Bt&ð41GGQkQeꜞJڣaxӵH?_]2zf3!cGqK/uJ~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=oKHw;lnwrz0xMh^IsZn3Sߋ"`=zJsbuQ\e
nmBqT[*3WuѪ/>tٿn8:4Ƶf(ڔjhܳC*^p?j3v3>[XƢL8!,jԙQ 3m ^c^D-҂A7T%Qtv+<S7o[z`K4iٍ`Ι##gS?129gv8B$=Eٷ':S|b +)%g#x3֢܇'b9ڽD_V^ eaGk&H.> )"@nC/oWUDdBx;nݘ-'1jI?=*YꎘXӘoQT矸
U~e~h&Ujئh?\ax1sק[8';.MgmGM+_%~WqkSKv2&9A˾玏#Ӓ;{*̏)Aù2љD뾉k0hM]]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!XX -,p2655{)Q5'HP`Hl.Qǎn0`)x]G0I@$E( 1F - -BPPp(BR(MJCN"ef%!$Izǥa*oLeGER1c -):AYY1LErwP5hrf$ JÀ3]0 3ٯ@k!}?]{_vK.%3("!ҰzJoS;TBSas逄"B =S=PLHU+:`D*IX6Qѫt7{{ۻ9łU -Ap:ߪc?J{{,˭ -|9\U/O~CH9:niCTAZ -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<A5!*t=2jױ䧻ޙb끀$lti,8U-+Pzdșhuϴn`N7\MWUkvAQڳIN:=ֿ8V3yTN^LvM3p5;@ϭˢn)xb~ဵb]|o>֎cqo㽟uj>$h9N}TMN-Ƨ?S0H~yG35M>蹱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|;`߾Owp2Ck\tն{=|q{KIyz^gtݶyw"X-<Vѓc_|+m;ag$>bLb?_+fԄ{ғ}3+WmKGޗגL tg 8R[nњƻv9_t -h`u{Vgqc'92vV\M36#U -膻~;yV͏17ǂ;r;Xc"1-;Dލ/1$7vxf\K33G+!.{ҷW𣇾{OQ$|YMohjzr?P -CE!_4endstream +xViTV%تH@\Q@%Y2$0%L,E,&EDA(V*"J*nPAٕ +rqo=wΙs{]{0n,;;`(9+"vf9L&! +е^pL0S`+=IDCc+,pR4vta@@Ha$^8x + )"ΈFI1H@"DYɦH +a\28LB +*EhS%m!u4 +,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')?ށ1kGg,4IVgڪaY}<Óإ<wAp7u]P~jZMYC#T +ޕ,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-V29xEOdT"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= 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 RBJ$@ $ ҤH) ])RCQ 9u{͚. Q5(BbE%$ Fϥ@ -c~XfH(#axQ$)75} {x~W.nWWoO~0fG]ޔHJJo$:ChRBLBBo4ZHҘ`!H(~a;xxy<x@19rP|蒚d״|&I^ڴ +Tkp9Rӊp[u%]6&@k +c~XfH(#axQ$)75} {x~W.
2PWWoO~0fG]ޔHJJo$:ChRBLBBo4ZHҘ`!H(~a;xxy<x@19rP|蒚d״|&I^ڴ +Tkp9Rӊp[u%]6&@k l;#G]rMuچy'Y |͋SRN\M4Α4AϪ6]!_O\=:ٺ{HVe>E/jY*f1u}-6i]a+s0܌pkʶY& vF\)}i4̝Pw&~W)>fd^'`$UNmTe(eܘrVtLLhñcIhϒ$vݖ֖3TP|Z<A:;n9C9鰘,Zl>q}A!ȏĐRplOy'w+g!"O TXӶ-"ͱa̙,[C|f Jqk-fs9},^'KfI.qHΗl!QM1K]1sPLx7b=0$ey$qIc\Y<k.Iqco i,
H[wm>Db9y ̪@Q+^o"@#v*.qjO7r\b.G"%N [czξևNxƞUv]e?u+:`&\=I R{OPG>5ewjѥtUitmcgD4x @@ -7599,78 +7626,80 @@ rRjOV|%R8]#]g(F>ߩD?wLF8*I&r C<9rփ<Qf5{` \i;WN+btk[ICn=W9f'YA=xnro?/dŧFnU:STyV
ۭNc ̘0֕ko" };]O|ۄ%Nύ;>1 ~1g
2s0v"L3E5=`Cyrp4VzBW.;POlnxa2py -ljwoHWW*Ds<-<E߸a!YfSp!Eө~r̓!!tu;qC4)<FDImF=w/x30zKJL.jiTصN[i3\":-l9va +ljwoHWW*Ds<-<E߸a!YfSp!Eө~r̓!!tu;qC4)<FDImF=w/x30zKJL.jiTصN[i3\":-l9va endobj -568 0 obj << +563 0 obj << /Type /Font /Subtype /Type1 -/Encoding 927 0 R +/Encoding 935 0 R /FirstChar 46 /LastChar 117 -/Widths 934 0 R -/BaseFont /UGZMJZ+NimbusSanL-BoldItal -/FontDescriptor 566 0 R +/Widths 942 0 R +/BaseFont /EMFPNA+NimbusSanL-BoldItal +/FontDescriptor 561 0 R >> 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 msyZY{~>#5Û -,lL5`S9 Fp[(Otq|_`+f -K(δߧwbiMϦ62ܹumVU24/}j-q."9L*.btIP#wIOlnmnd6P1n)<ד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СSs1ߤխmg,8BAy;}aȱj"]N%Zdr}V{O'#MrFFԑFkbBUקF:?vdn߰$ SMs;{}#k,%)_s`$<nUc(0\4\͇87Ǻ첎+:fctf{Ui:]ҜJ-<buQ?K鐒oTV&x/k-;1$tc_wYbFH/^W_aOgRt6f -'S찷ͩ?D5(Tz1+oo?˲ZA&2L%?BxYޞ'&m`H||'0p?}!ݎzgtT +xR{8Tf42.M͚\Ba5TB31.沰ƘƵƮ(%"2Hiw"]P[6G8ж<Zz{{b|̜0$l +`X̀@^9b1 +llLP5и Z(ta|_a+fc##C,7dI;dAP2P~ƴ$B٣.aM=.Ri}jTQ_&pK}xr'R>8yM;19vCkk{v߫ʣm/xҟrAւT[ +z1DI_vkH貮;Zfm|k.s&˺ɾ$0CK(.4:&%& Sqv*)BEHk*U=%@zTlPӲ#>qs̾SoP}K[ޕ"<? eqpƟ$˝n2f9:l%5؍^s1O +,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 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 $$$pYp'/ag/o?d+`C>CNI?ԇ@ e@=!`(d: 78@a7 -VC/n:3}flL?:S0r -)2*:^\ӠE1+mJPrƴ1l'g.:FGBFLL^؞uD=ĦJ5L>Ȏٗ)eR
e]@:χ'h> -eWCo{p<GsqqڀlV[IWVZcҶ(s( -"b|Na4חf~Ѡʰ3 {F8UicE;%XiH<~Ckw}C"OʹZNW#fb/s]?pua]?KMWH{LXzJD2Jjewf|(2E25n=˽ {0LJйDuY2=>I3Qu@;}vSܜ&;;#(4=}O0fִ?rPӟcl`Ϩ?/r>XygK&ϴPšnPF"/=#04X$-sqڝē[ݿ)v:9<
W]'8ؑ%\lёJ 5}dLnM -hoxa HiȼLT&C'yA~* V:d:7Qw(Ve&3{2U\@˙YK~7 -*)5OBrd=jrxfӤ4xms$ec;븞֡/%Tې[TwCkDr.<Z<S\ϟji$ -/ݡAğ{LрR@Z1#/\|l3O9bBi :pboVSBS< \50g~y8sk2W_2`v#"9k]R%|n.&+%_T/A>gt$913_Zp$5-3 ҙ7"ޕێv/ћz8=tj/ׁIQXx4ũ@4'ti3G}!EICzJ/o1wRb50Mc♳2a2||/f/vb} -W-VEq<F5N`s̖+tKۧ'ś"XNᩣ2H<>TaWWU\+^:*k҈PԔ&k&;ݬPk^|LjYOwOkӬ{Ԫ? -űe=)(Q+JGs2Ao
rbTQ#¦ash-OsCqZ$?e_5ᆵ^x1w~*wPSsx2e&L ; ^2s%h={%h3mK.jԩ)Y`"6 -xy[Vqe,j: -~*xppqX-DAmpk)4ql5DXx0ƘϘbx2kcT\,aZcėZ8N_fʲ -D_0,e+<,;y!FkdH&>A=#6]+[>}#vFKa-cN5AJ+*y&k$/)%e -WA\?ebt^DO[t
y%gBrB̓|X,ˉa41 -)1d&8ic|*Fə'˶MٍhjۤE[E~_fQ?JAU6KZ<L8>!"qלj{q'E1zsYd7Gha {a5ze -G{䗓Ӎ6b_1k'J`eqEێu]*-"aRrVtOt^#\(o]bFtE@-!?-w -w86-#pZִ9%3Aե%93*چ>oANDpA9\EHՅ{6vkKCćڒm -珟ioY\Ldw=s/*65R1dJ40(h ZՏsĎxXaRpQDܙ#Y}Y*<2#m$}8p{4 ,yTEHt?;Ξwru},y6Q[ik$?SAVkSX9اgNx흝YE;Սh0L5TĠV8Ҫs-%J篨j"v TTљf6[AM>&
_\zfM΅No" -Ȋ~Zwlmپ,"Ʃ&>f~]X\bh6@Cu_ĥvi -a" $W*Bҋmf+#*yM],{3pCċR[6wߪ`ۘël~c,z)8D -s('3o~Iw -K[~QV=f>IuTS -| -J$pdзKu\Lm -5 -kse/р$`xqHbq:C`%㝡V~tyO7ň?;dxD͏U2[#%b~FOnnwxM 7.kyΜ9+siys)AKeXPMo]@r%:.'fx"xF'YMB0wJ}}1TeBc=-'/E{ϗbg$HZu2~gŔê?ј -[]kOx?۟}EQ7N;,D[,ly^a!T>"f0wngb)ٹwM[k
}vA$EjꉣLZ+7.Lɦ'bΡ?mM 8O2@`vtrҙjg(ݼbG9ڱ/7{ЪO"aꄆȜܵ>L1yVnãڒxRi -Y
oӁ쵛Fl#X/m/`y{缵FV'jhM@u:;gK)\$ܘѵSx?_wȲd{OU˄ܕ.&yp?>ɍxB~q~mm<f@Sa
1$nzlSNCrIaG+,wtCn!-d~)0PlUEVdo$498$g/@%JQ%xKuNp0v -W nj*i`cnހ;ӑeu^垙EO$Ou(4+qXK;w:QÊ/U௯%yW!*dՈx2!_h -u5Wt/^pC.&TG{6&sluNK<+ͨ|]:Ff ]eyT8*wmSh?hYM?t@u6L1ؚ5L]i3S5UgWZjRÉwΎ|?A%A+&v5[V!!!GMjSS,/23C=Dx )l3Z\
هX!*{+([) _gZL*hzmRI]ush,:]nlȐda^;t2{Qqg98^fc{كڻT;w+],:^#ܥzl -4\=ӌIN-Ύ==OK|Y1-c83Fd|]YZd̓/UD
q.z%WXJ[44[P9mbv#FE/Ut3,?Mf}rn<R>:V#z-rb[fB
ĉ6hE*'9C2;03U%$jQ -?yȳry$.Xpk!`mc)Xq%w`EOZ<ӒtjJ9㥽سϊz
,@#S<tK~.8vRf2 -fI$Mhׯ;V -qYGЬs{&u -8me 6Y^fDmEM/ -"}ZsD5.ײ6é8/3kF[i.jz/pרI59OtelCw\VP3WF#PH(R(X7T[Չ6qc;ߜtnNmmj}(kmS>EC)HK6x9Ec(TW{2okI#P]C?=f~Mb59X7|zl^ +VC/n:S46Uog@x9A +}d.T\o.? +9 -rY:aXkjvv +ϩ<:?fΎ|lmb\|{Ʊ>GK覢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:bSMDqi%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}UpO +y*šr< kEX +xw2Diԛ;lq2řHb}.̬% +4]F*6=nW.ˋ$&eGdm,9G.-iT(g1Yzy,"A3M +h XxIF! G9BBJ~et59exiRoܶ9s屝u\BЗ\*Pm-w^ϋ +/jFāNi(jJalnV^|l5/>&x5,Y}wקg;FiVo|DjHv +\ +6KA%b5TJެxD0QQp~ Hg-+2rxOjGfk +?yW>| LE#ّ7:$y~e@<|8_l6j8",Y<@cgc< rIt1*Z.rPi1yWd^K-
/3e
"/ŲԕuM靼BOz2tj\ͮ|߾K;#0M̖1AR缋 +5Z2 +JoQQ;rf-lFdw?2~LjgwȦ{eY(;^`b{^T}Hjlƫ .ܟh1:g-:BᇒV!9[ArQ,ذN\spQ +%~ *IhkI-H&LkN5ƽGCؘ~ʹaq#wsƄн0Q2 +.)\}s߇j\BfIbTOk=F]5Y\~mGpyeX0)wPu+tg':..1n#:Ǣ|;U;s8-kZᜒ ٿ~{AwMW@mTH`7 '"Ǡl.u[½k`fnCNm6ϴ7Q.Y&)2%l49bG<Sq("H,ξU,sՑ6K>=H<ud"adoyg;rU<PڨdΟ +Lŵ)Ƴs 'U
<bvN,∢SuB4*qyKJbKmiչbATWTX5**L3duz WW{bc/.=hB7YdERP;d66l_mT]lP3LPiZt,EO1C[gg4vt:/Rae;P4SҰF+L!E[
63ۋqjot\z&E.=blX!L|B;oUӏmUo1RQ"r97{b;O-kudcZ3LO:td +D/M5ĨןZh}8°CeTB<oB-K`֑E3liQ]}D_ +Eeaqɬ@ЯB֟vmD9SdT4NB!$T;XfR<3_"{B> +I%#2Y~V<e]T
xRjOdv- /sz^m +Ef^}ţ\- \(XFS:<Y6"x +'^ÇEn:~pv=nʝ?de +ej*sR ML)gJ82[ +]
tWv-QO㰎aW3FUZܻx73
滦-qеD> +O;̍ {5Q&}ADdSCd{EGmX~&mcN bzp0;~:qL3 n^ +~Λ]hէl`]0uBCidNyic +&@ml+_ +WnLSfezG)r</;dY*eBg<8F@w?tklO}863 _W\)چMz +K_=C)'̡e̤tE~;\!q{2 +?ҔZM](o6YNɪ"+gGXBvBT۳ O%(qԿrM%:'Qc75T41A7NVOo]:/r"狧?t'P:8A%;a +C{~jvޭ{ү3-Nj&IXp]=6Y)ɤEi~ɮEǺ9o4t|.7
dHkVl/ZBWsܸ3r/3ܱ`]*X;J.df +vR_m Ai$'ؖN@gǞ'%ʎb>,]ΘŖXH>Pkv +-tb
zI}a˪pb8O+,-sIr-x6
1;g#ƌ"җgNԪZWO&\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$&mWEIQchVJ=ˉ: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'̮% +@&0:Q:Pցr᧧ԣXKb* +whdbٙn^N;ʚ[)5x^La|1Px*%FFDg/P "\67Ԛ~!)e 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*]YEd -ll -ptm@?wO - -p;O-[VQ*8۸ - -\{_!k5*WUA[UEX`?:*$]3MOl]^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+;ڸ^'cY6yM<AjDd[#fPkgq`=Cpl+y݊25-wvM5:j[3ڏk#&lZ>Jy/}0Nx7eTMIjZ4Eڑ~}B,SnjX~#8DNX 5] -?LnqN.ԔvHX.O"s=Oua3;U-d:mKgx6j/.~5x0jblTUHrMci,ԺX
+LdƪF'6K[^λPhk(BU 1#_cc %ʏ^ܰl`g, -#t -B)U:gU -f]&ɱ~|*ɼ${9T-ޤ+\ -8v϶ LB(?FRxnc?oT0~[K!{㽗+0odn0c8NDQ%mok,(G ,iKC19]T'$ɝf0_(Hc# z"c/!l,kڕ2
z⒗Jz)db>hWpUa|ށa -#0{r}E1uE7" ~)f -o_-\ANXe#9 nٛlVS~0ָ0*4>Kz@zgX(F-4^
,)b۸B}37YKLb<!p 5khhxA%II,Ge3dkbrmv>_
XJgc'e=47DƤ_qY,wb[2ܪiK (~%w]Ʀ'ێFIbWb/WJ~wϠPl6\NSսz -i5~|X$J7"`y[A%:LS`];S7rM?soYWk/uF%K4es3'߆U - o \s2mY7;X_~Z推5ŰC -8|J5Htph >d8K^>zc<ioFĐ=ALUQrn[FM4)8ߚ)G|s,|bp̓C>'~TRvY?̇+$Io"k8Wc8:LNZΞ`u>4ZaÛiJ!JmhPɓt~Eb.k|\!4{Ğ/mf~4#!Sꎸ-
EJ;噼hxOF,!B]@XzX R5K8G}'ESǃ="8Z[/qK0C&
/r 쌇 <UαtIo}x -!۔}nZgoY4 -qZw[PW*d<&.<I'NaeԳHfRS= - -eA/$W$;WCr.~qB]Eb2mҧZJkpCz9Kz^YC7マ#!'1]c-zNwjզ6DxDu~&IQZV%\:.zdtҀu[uM\J9qސՙ{a|JI_EV@]|Fz3&f71&ʘ4/P*+~>
)}Ӧ"Nc&}A)SlkݐYF>o5W-$|&'';ĥB+ kHp%v%G&]6%"Ntņ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<?fE qav+Uƽ- BNquj_[Ne}E9V z~K.d/1?'i9v3@ÔP5"2*}X$=9Tq: -Y|@2QEMhti1gxw(.%\/3X7l*L*HOlU:FERO -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\DLnT-Dճ"Xiw+h}-1&_r3 $s9NLq[i\}X c7"U#p(xro_Ez{ѫIP/վA^`'!l(PCx+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[> -&XCR<(B6nqwq\+57>g{ -vR-ҩ+AQ -ͳsC-0ʉE}m[7B3N]nXg&'*cB(|J>FVb%o٣p6談8p̖LvXR!/hQ4b'm<kzqJ -(Ԏ?ç+($HɭT+18E\uٻRr`<9J -~}QH'`!Oi3xa< |0@9iTx4+\>*C6%$ެ1cyKG t_4zfx#Ӕ_~hz)S y~HJJ3;TRb$?2G203[Y桚/GӚsȔњ -Y CN#ݭKWItQӹѮk
jȣbd+EF͟VEBGYR$)zu!CnDGT(Xs\oo=Sp#m8ԇjDLj\il!k
S"/E{1̉]KIr -b:0\0@%jUFc9汹1-+Ue/xRc9sg=+5$ly}ۤwc-NK8U.+uG5w =X\tQddEzQ"2xJIH'4"=Sf&;\ D/NP -aT1U<;QfRf~4֎s^:OƔ!G0Z(iSQ5AQ'CLpoF}MU`"Dwiefȝ}ԙgJ/3}c?z%$?
^VMZSN#S{HYvXEd@r
"kIBm|QZD!cғ7:?d)e`rHTMʷB]Xjw-WʐWJ@g
S=2%r .}m~<W8ԷӳDC/"ZK=O8wqVgqPٵOD7: -FTzVi4<#\PMJaD`LŦҪXb2:d6R#3s9npNś!xcIhhb\kΊ}˔ǿ#wDPq$B߶Sj+kMwTx178É([.s9=F+_VlE;jOrhIK؏f|8C]TT{aߒ9b -A'"f!mLV0鮣Mf.#~Vq*L@=HakxY!(yG sUTa7$_]Tf -AVlb|3 kxL$$-{FOixMz2JfluOini]gSDE$4ΓEMW& -̫㔞~_r۽ҶW@McVkJGDĽ$<Ŷ6xD[ڐ{|x1CJ{LhF?+{[*No-M";n.u85B'Ź&"
2B>Jpsʫ5D&@HkV -Ͳ]Ng֛(jiy?I>An:~M%X*N#SHxzfH]xM])ٓ7-N eXbXVk*#u|D[͊zle"n!eCǾ8(I -yp4ew380'ZI~BM +xzUXݲf{pM.
4Nxpw<Cpw .]Cgٳn֪꭪wzhZJuVqsS=
H3uqV7ĪtR<&HA[ty%@^ʅBL +ۂ )3;=D4W:;̀o`ACM_ +S"R@g=hW7 +Y=V_*& _mS0XA &7=V_H'`O;{Gdow{. 'eB(x +]^;?wH 3)HfZch) +ϊ +ZZpxe`xSY[jU_E)oo@!g[@۬R0=ڌ_2R0k< z{p!bk2MgObvqRdDl=Cܿ;jq![)X98a9ˀ܁* ?fr}A*Π[ǿa@f6@gCڛ[Ri{3s%:mDMm6stb +jN5Z[k(7AG2c@j>mfO颞0q +oBrV8#JLv+dLyWܾrd> /yKjhFa-v\]O
>dHEЕiD&ZU_D(7n߬96,e{1_;/O-if~1>mJM\f˔$@#kȑҗ6`}"BY&䕾mC9* +ɖ]\}-f=ᾠL=uA~>Ϣ"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%'#6jVo +=9ݦ:b ^LMW=;pRYB0ljC̻R1Hel($kf8+D?"$HPS+s6c%T:3CU)FK07Jz|& +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<f[;!YS,e6n$@cVǤ٬jJ؋SodVbZzW=IߛW5#>>gitr܊ 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>RjvZFͥ|]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%<}#( +yRm#5zjY1 +|dÝ=C2)S?$͏+ߏ<"WbDC
&|5Q8,[n`~H(WAYe?G'/R`?h!7{MYU2-p1=Hخ3JDiAl7ph-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 +1sGŞ.l7ϯtZ0xCP1Gp^:voD-qX%YV8mAp,M}PfL cj_51\<Io' ݦU6ffM;ͥO˳{G̛B&R(~'H˂ბ@ EdZr,vM!p.$bcXp"OqM8;C/F8ی.ChNQLD ?SDGtI'vДQKj7ӄT_:u *}gnl +8c`$e=ׅ%HIds2ul$:G긻=+$a~@oX d"-}"Cьi=y5NF ;}43G٩tiMFwͳdќ/$ٔ֡@ +.]҃]&Ӊ~3f +0 +I%viYVsīV:_zm͌x-+\TQB<US1?4p錴Eg% #7d-fyQ-X$?ү> +/.F-g,
/ު^l__|h$C]y2/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ӚaZO +wc5qd|0l*vTƂԣ 0<Yy +t}G~p*KH(}L͍O>J 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^ڹȵY<JF=Ζ!nN=mNG8[amJހANЬhw)EZĕ=fo47*HP%x()pQKxT2-O5#XْGd^92
I}'6|b3F?O07L{r셭jf˯<Pv
H + +j$MVG]pXcZSuyrYfDB(dx4F `9b^%DqVT~RC +S5ܼzfMyz]x;!CUýȉ!d֟\o[MSp9+]>.%YKcJMzi"d/%m8ZTݬXN4= +C<UeWU\mwW +e}}a=ȿfU +WY%'5":yg]M/L. Z3.w~ے/T("+2T!wVWIn*ك%VI" &Wɬ9qFjE1/|97'bP5B9nх8ek4XN~qDDvCT4G*h/VIԉڶmלYsRH<GnA&^ްnM4a1bkyOZڏOޏVYo*?
5UY/Gc3<RhHo˛ڂ3Y/ù}҃jz} !Y
~
5Q'pZz +d4BAZNIB;ʹRcą:}ȾUJbzZ'vKe̪/jl=O olv|zÔ0O=8 j+ iq_,*P,}DRV5* 3a]n)I}Ԓ_)*c{VN +P39`th><NVARWF_Z!oaY *k&ukLEfErm}ϯ=q{U{?(e١<2LY:#:ܷ*AsX@VqW)%8[Vk_q#9cLo.Q(RTz2%H\diB"bUyGl_'zR]]f>b켤!l/X;ΝNvgPLlD^,drMJ6 K#Ì3xP,-->Uc[^{u; +w9p$DGm(ނ +jl_O<goOLFbv2d5:.1\jL(bmh};8H,8ANfrS봃liR7A/_YR +~\pEvLw&aɨߝGh}0=5dT/}D0z19ۜAu$Ĩj/ՓF[mU/a +֙B}Z>_!T>ACGl~+0E +LQZn/pǣn|ܺ^S9D9_Payj:l %eL{g#ctF[)ܻcbQ-)yr{_ȥV +VL|&80 +l +]Vb9U;<%4!k[!fңBJaGrӎ͇5*;ؐ~.:xYIh(I{xk.^yږ\mR#zn(Ȉ%1,|
F7 }<H&>h'[U=D#}/Ȗ>=}Z܀qj`m┓.ʷ/LP%Qjt_!|t}7Pku<fs}<a +[g'1weRe<<pM^XKEg +gAAOM;
q endobj -258 0 obj << +254 0 obj << /Type /Font /Subtype /Type1 -/Encoding 927 0 R +/Encoding 935 0 R /FirstChar 37 /LastChar 228 -/Widths 938 0 R -/BaseFont /MWFMYO+NimbusSanL-ReguItal -/FontDescriptor 256 0 R +/Widths 946 0 R +/BaseFont /TMXJWW+NimbusSanL-ReguItal +/FontDescriptor 252 0 R >> 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 *d -A<ei=+ -LgE -oxra'ܣ9r-IE;~VVT9vz9 aг#2[즛Bn-߳[j_z5o☣K?r-Χi+v$fŶC%G4IĶ^sFygǧͮLޜ{bƽW嶾-ܬ|GI~BUQm-´Z;k)brK?M{3c^-6LKSLn/rj[Mm_睝LDr~$?/5ZnHO0 anŧ>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{gtK 8gcf߱ -,xensR7+3wMչ~eua_n`Y%4Et~=3E Í\Veu,)M휻1hF
P
E8c6endstream +xR}\uO$9Hp-b|&*d +q3.y{Gy;^Vӗv{./vLѡ{L1cs.\sm;GO_]glP-9*cC.ّ+ ~իM2flUz3S^Mj>sf)>S&x0;m!Щ|NuVC>#w\O%)/FpgUZK+?isjfSK@aFez
} 7|O_d}ake8p$x`Hg{1O.WbFI5_,{-_9*ݾo[ޑsQ~^ۦQ sMg[uP}OF^SMr$j+[6Nxzw*_{40mzAvnK@/sݢ)Kqow6rj2U2G~`kfaHI4(in%={j]};Ѹ=#`HwKt9+7vlϭ3\+"JiOݕғ/q?:wӱzOF\˼y;`}snI5H紩#ے38?}|mdCKm/l{}w#ooTB?=r+QcQ6[XMWqvNH5lB~Zyus(.Rlk;Z!?q'^X4[sXqsyu +$0JRRT_vULl<WG//4'<[1otJH~M(pHƬJXȚrZOKxWgn/>c5'LN%;A9_vx\}'m
FT-b.<$Y^V۵`kx >'J? 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 +x{Ux]RK-fffbfffffbf`l1zܙ;si۪:'#+23NOMA l`pwa`ad(Xٙ:1 8ȑiX./+=ɸa%4˫G,tX(쪱?NRjx=VB/a҄=q(c]L 6l&RRpߍu;Mp[^i
zܟ3a?&N}̸Ԗ,Su'pvARUqS烒.u9`~EeLA9Bs&?T7˜bt^ރ
t]ؤ>rg[MfK wZ&gZcX]\SR -ٻ\"g_'߆
.$&D _|grF\蛧z'8'ԐvY8r6ӻo6Dr*MhBՐˆ6'Լg4ImZh;AƣiFC:>cHX&d"%r2Jy k[hs$XǂAh(WHnrWܵۋ_^kWƻ3v_lTb9*LuS&Sfwx fϡGtY!q >kLswϢWxnA9UB; r1=8j2/7k!,"7"hwM
ސ5T{|0hJAk@T^y)˫~\O;ƂG"5Jhǒ O[Q7\{xK7 M1j?K3 @@ -7917,35 +7952,35 @@ D6#@w.s֙_SҦ[9qZaﶶ8Ǧ&\ҡ%z1C)j[@+}B uy&~har zrM7'c[L!?%M8gq3HhHJФe#/kv@갆4~IkG?rJeDP%P
Q1RÔKe?ftR
ϻ;oN/]tG;'C+~+|aYR
ݺ.xWu2lI?J%8?/"+qQx }ʚe9icA^@;Yw a2HPo+a
P_M<ٞ0O8vr&D<;MECӖcT٨3Dg[wDoo/JBd>uHP PZ&8Y@dcQXd'$Z*Lqwb49RNw=|AٞAfjX>:%w+KnszbM}Yr!b4cXDc9PfWؤ2ڟb_'J,Α7B⣍sqOi_/+gU.֔9/;rSL=wlf5DJJEwɖ=$0BH}?pR&S~BT։o:B&tO&X˸ OXF Mtn}y/$!Zrq8&'_xy1Kwoh(Kf*mf:QzNm̉)nreK25jcsZmX_mVqvo{`Ç w^kZslg'U8S -vC{LA]eڊ |>y{${ZW:wMs_|zzjC&+\oy+&Nt旳o<*i5iR/]o0/ #ciLd\Ҵߊ~m0=b>`=$d+"@҆}7mazU3?HĹ3i`'D|0 +vC{LA]eڊ |>y{${ZW:wMs_|zzjC&+\oy+&Nt旳o<*i5iR/]o0/ #ciLd\Ҵߊ~m0=b>`=$d+"@҆}7mazU3?HĹ3i`'D|0 endobj -209 0 obj << +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"fjgud`e(m @,v֦7' --: S$ @Hٻ9-*+`-dmgou|oT -l7 -2CaSs|+ `'+?_5OzZZh -vV8i+T hb0Zo)lz1X8xx%f6k@Myi3kwқjno;0sxpqX.;@[뿨7?m4;߭Hؙٚ'@[ӷ_a'7Eo-@ 9; ->#ǒǔ`*Ƽ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/ ->rmqSHCXd&4a>dvave6=ua(PvW@q "o?cQ|^^l]{\9;~*\z<ZafoM8VZUP|&&pp!v"M'; :[!/2h*.Efx2X;WQ>oOV|8ep*ɳ>~94~m*}JfC<:]fA,'/ [̴Cke -lR-yu }PNTcluC_V.T&S~.G7ؔvђOdXWI9:/E}x?۬=7MJTT2&U!N.DjOme\Ӣ<YHbOqk.ڬZýMB^'rm(wnP>Pq*sѦHGտ|be9o47RT -_HJd*ḄپjoLX-)}FN)4M0Z[("@@h6*l.۸bz)xAZ-NM>G/"5f7A]0͈]59rO*"uٟ˦N\m-OJy,tV1oܽ=?"ezUW*> -*c_L<uXz*OW~L -xYA(a=q0q瞷TW<JR6ǞZP%JOغguckH~-_Yü
FW+WH@ -{0݁YSɧ8ek4w}vT. -HBm>ê-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΄J -o8JW/A"!2fK?G9Wh5ߪ̍ -3K]~+?s^hdu]hQnaw֗wl3ii@ChTtm7BʟJ
kBH.:bg0@k -N%#f5U:6<aLЄS4z\{"nf,y -
_~V) 9̗(jMb}*۾qN1bɱ,Sa$/rt^ؚӗ<SM( -N҅pJ셋.yT56, tFf̈́h]v`LȪEmYa(#=pnlf?BcJA䛅SSy0S>+^ܲsL4g-Fkc/-d;re/"K'$/ -+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= -$&ͮ|4Wܗ0 -Ü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. -,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ëHzoT7t -Msă?o}yE?t%;=B8IzB -+b44_$DCht,i^)H{hc?$ -ŧ/ .Ih|%+DX+q}-_^ -{%~ݪ-EP$`'k,Bq{{rAj@&EvŰSYLgi#zIc.;bp[bIBD9^dyQڽLY}uaQP8|b<WROQm=KLcְ|C9ƴ]J/U(]η9D=YF<i3^aJ%+LK-vS|xNs%l\˥dXJ1JqچH,Ԡ1{ΪdGE AC~q$rw`=&E莠Ɇ $J6CS=7]=dI -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 -HVVfO>*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_k3I<O5rCL&_١a[6,X(Yvrͺ~vy"gPn[wJnaΫ}DDT?>bRD%FMVpI9Kv\|*=}>9?SAКs롢j&?ed~qyxA!Uhٷ~?4<ZdA$aO, m=XJ.Nra_&ɊK0 JY%W3EMn`/TQY#h阺~Vo7lN peEp(qC8^˚:MЯn U[hjݖ9n5ƴͻ'8(C_riu+ ފI0f1̯ -mE?}k)#j-@]\(RXk2UnINJ,G*B&ڃ?rqDm(lCʘkzUL>⣸)ՀH7[h4(BF^5ʪe.eÆ6yC2 ^'.ctV-!#Os&bxMS2xxz>]0jNX;D($q]/k-KLT[M%YkF -z%9mv떊["3?\63S -Xta`0::|[/T,H?^Z33}I1ԸSt"Gϻ|md3*B:rCz]7+4@ -D-O\9KA)-}≫`ArUQ6SQ D.ؒID_Ԍ> "}`{LTD| --ƪxyIE/d:uR6ONSnuLӌSug|3AF^T9=W1z`wmg|Zsp'a/
KɊrK *R> -Fd^h2d'XKy|K3hʹ-6HvdyM9(|5;BH9>"^uu|ӏCfOVrxb3r]d5@lTwv@~qH ei'B5O
bxh2cV -{D>K
ȓxZnA4O.Yyekznu -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?|10xXTo!L׃{v}ڏ^N+-ަ}AÑ&)TJX<_gQg,GիKTNU:`Jh_zϯozNٮ74GSw\դp -׀V-QBF0 `'z8ת(=k5FC*eM:
ծ\@ BaAOԪ4?.S4^o]rqlzd0^>BrT?YH~mMVEFd-SO86Դ0cc&+p>^є@䗠StyQir9r[Ȼ瘲A;-b[Q.uYt9ԙ ]?ӧ@}z/&dIf\͋~5K=^%m!ۈrk%7BV:I7wq> Ŵpjxxѱ+#~}"C,Ùuץ;%C4/̄)e`'r( 1[*k{˼y5NG̰CR>_G}o^UOѐEİz[gL|*$l<&ߓ)(uo_|*O1-^mUQaϟɧҏ"p1IYoYw:NS#ÌYm.ZXQAe 2ġ,G/#EVsNi[N)uũ8En5mYE"JL^ e!=Iռts_hY<̬?d'N̂%2GjX|js4S/KCT0OԐ; wҗi -K;o'XUx>E[FECR[= -+z#/WƓ)kܧ!Ki~$P~ n?T`aO?)KMf(do%Qٻ}#nAzS<#<ȹRЮsˆ ^{Wݳ( +xtePݖ. 5@q Cpwwwn-@|ߙ3u_nWuջd?YY{R*ٛX8XJ`[gɃBK+:$N A 2pr8Ph`K' +[MS`;Eÿ\@ᯝa|#4qQؔJ{* +W%vQھ-?|_@[Z0@䜀ocxN0D2S;Ź6o3ۯagrہ{ +Ӆ~ (4)뫈 +`Z[$#ז.{W=eWNa>{s,' +c+ce4!&~"q0uq>_}>ٙ<*pwbE/T3~|O4‟-4:}@:ڥ`~rGqW`t{)CD$q)dB[Ò8ma8ƲNP?GhtT5Ҟȱ*N潟1Z!Ac$",.U;xǀ}cAF<F
KSY+Knl=,]%Ow+zb劐9 _~7; ̓h Rs-AiceȇCˈ)P9%9UDBs=#q .fxEeK`,R\q+&8SĴ "1/%c3) +֓Z)lz1*z0g)z*!>?R`pDI
vcQzYVbSw\%'a:Bz"zQ͞V_;mv6Zup9BHH<!N.M,B=$n!IGՏBW"ֳ;!
Y3ԝTk(HO*ek2?f+Izl*_N) +c^ۿH⠾mԻi'x0-o}^ݫ.ad|%+$<];iȱZ;* hʀ+bFxd'2 "s\ךRWl0ֱJJKeޑ.%**b[ݦg@Ow +ƌm&E5I8N6obn)]CmUSɪE$}EpkG`!a) Kq%Mm{=xL~_xb3w\!_JeYY~i-X$&.O?7
Uh#֥6SR0YKiv;*F|ܥ_aɆE v +MP]RYF8] +زzb(닀Ή.s\쳎H<diխp)VEg]H2ϳ"ux8a%w
06lVv|b4XCD(~R#hwF+L
0*COnC"}(})xv +\j>`bb0tMzs<Kb-PnzɈ[D_.e:x=)rԁ|L +484M>LuDwx$'=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<M4n<N;`#O!(X}Eb;Wiui@80I^ >A(F>l)dƉV[38*/
hNzjEBYJfTj_/͡?M8d뙍ЋYh;'rm:<S>_!#BO$v)bdd]TfM{!DAĮcӼM[iIf:#mJmZ!Y^!ݹc3EwD"Ӄ'4*SdL|}$g$ +Uڦ,_B;[6z+<*qĬnñxz9ͩLqX4j
5ɗGpvlkuW4TЛ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 +M_`"*j8غZ_Pk[=iY&!Ya($w)/d9<Y'?#VzXhEkۊ3Nnfybl*5]B!3^.MY+cgb7^`83nWWHccXSauK7n],^T&y&D跐BehBQD
n삂'i).{7ذԂ+3n[r>y9e3w2N"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 +X$jq_EejaYN[|K}_ӳZ
~.EoٽsT/9P6ghQ6/psEEXmBς)\Q&@̠(LX
I~/?NO~)L7oL+⦎};hv
/ӪHҧ,v.o%3Ȑ[>OS8p#FMˏM6<㲆<S"ȣs<;硂[ѯ2)}{ɵ@)$_~iјd,OJT^mѷ!.V͍"YN"S&uY9p)|^2Ѕò4娂vóW命'U_[-N˸PM 7 uD';tq\OUf>Z0PtaH(D|syv`Oa0 ;9eOI,cJ]R$q?N|i
/ :R<7pA(XnqaRck"gPW>贚trzp+_֤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"<Vn\ z|htՑPu}7駘/qV;әX!$T쮓v|K%*a!ƚڿcEeUnjeP%#*bbhlmv|Dfޥdu%v&Id"!d^b1g$;t] FI'-_.O%pVC7YqU98iud3F*@Kr؇IUD0'E{[)Ҋ;.\Ia/f"StڷVVlmO/ + iIQ7Jǝi.C?ϫ0 ;ej,kM*@VQEY}1
5_F<=Ώ^`B߶W#`>ũbMYTN跽Xa>'ԹriZnJZOau?A/UKm.2YϱI^-'"$_wLԕzY#MY5OtUkw/<^][G{\tRHBCI)ǺV?
=CX0Q33ˌ]Yl\-yӳs6E&b{
Ei#3챓d_:Hk4E2$7dr$*߱M*gOTAޤ;KaU ֚)iYCl:yS#^mb<˳%MC"J"ju%ڊyKC"h8N6|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ΪWb=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-+#oU +(ա gY$d{,&
lT4A..9>Ëd%0g +h)Y +]g@W*?+Ks0i,JwXo|,TZ75t.+c4lJ8I, \q1RX~|y|+^grg|Oo}1XzMGL*+I5/?*l&riT,CRu]mʺgõ*OScaUHUy9uՊ;F-cTR`7'P;Щ7lD+5cd{ޱ$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@<K^H3&vy>̈́nUa];#'L0N%ڢ %~y[6/R8mO0U(ʍ']Vt +褘Jz)yvΫ]YiXlp7SqPɡx^*P0vQy3FW:֚YJK#3%DBLNPZ,95=o}+[ZJ
X0\ivb^=u
* +(~n_2'ք'["e`6e!56)=DAxs 黑's/RKk4^{\9\E_:]i*%$b`
Ki!Fo
{oPv]VZ19~ +-twJ@^6xz~D8*sU#~-@uwcY;Gg+ q`ך2d;^eWM2!#8M#ٱO6=Qws!>㾊|B +&j$ +9B+" +iY)aeEzO<U`0h]O0z8;g+UZ(s?D<!Rġׇ +r?\HXf½<r̤!Umk=NqFm_`ʧn_LXb&̏W*`"*3AOy)ܸٗ$/3
@fvF/+ec#@'o/}58[*|9Y-
c#Qf]KUiIG%vEۥbBu4Dz 1-U4&F ",8F\N[FkEOTc@ʰ++lvxA쑤ЩGZ̷gЕ|UA<2Bʎ53 b#B__4449kxvoYb'ES۱BᤤKT׆շ$YoliHF܁>z/m +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(@w7H\)>(]3f6-y:XumNb%K~x}yݱrUG]yBQ1;"c'1ir5bTǁ$S*e<L&r\I'Q\SaO\DZM0sa{p,dN]l[8uV1;f܈_Ιt
u~q0>֭ijub@X|"݈So+ZW2 >Dħ +r2uȪɨͿFp*@3:N$" z:?6(huE(;K)_i}7:t<Q[[2doM'ʝ*
1J~#[n=3'bu4ChRO/%la:qu1
/7~#L4zKivq2D`k3bͣGA-h#8]o]G)}"Be씽$gPLjӨF0HW`M`Hn)0
3@jy-ؙ6H̖ڑ$dI`sI3,ʍ?;W
+34,>6"!?JZ;9Ofd& m?)PW'@FGVG'{` +\NQ6c|(v0k^n#6xGTXUȇ 4y$@8D 7<s:vO*RLeIN{-v{aYvbe=.@{H^$6>Nzy/,)2h`mAyѹ^)u&/sVfDݷrG49睏@tI-e)
ٝ>̼kSwPO+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{ endobj -206 0 obj << +202 0 obj << /Type /Font /Subtype /Type1 -/Encoding 927 0 R +/Encoding 935 0 R /FirstChar 2 /LastChar 252 -/Widths 942 0 R -/BaseFont /UJVZAK+NimbusSanL-Bold -/FontDescriptor 204 0 R +/Widths 950 0 R +/BaseFont /HRXCJH+NimbusSanL-Bold +/FontDescriptor 200 0 R >> 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 [<D4555C0C20E87442B19208E890E423A6> <D4555C0C20E87442B19208E890E423A6>] +/Size 961 +/Root 959 0 R +/Info 960 0 R +/ID [<B7304CF28C79B3042E61EE91BBCE44CE> <B7304CF28C79B3042E61EE91BBCE44CE>] >> 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 (<<realize>>) 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 (<<realize>>) 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 |
