From a269c497d81adeb523f347c76da54d756cbd67a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Tue, 8 Sep 2009 12:40:48 +0000 Subject: [PATCH] =?UTF-8?q?-=20Funktionen=20k=C3=B6nnen=20jetzt=20mit=20ei?= =?UTF-8?q?nem=20Datum=20versehen=20werden=20-=20Aktiv-Feld=20bei=20Organi?= =?UTF-8?q?sationseinheiten?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cis/private/lehre/ects/index.php | 21 +- cis/private/lehre/ects/preview.php | 11 +- cis/private/lehre/pinboard.php | 10 +- cis/private/profile/urlaubsfreigabe.php | 10 +- cis/private/profile/urlaubstool.php | 23 +- content/FASo.pdf | 11988 +++++++++++---------- content/ToDo_FASo.html | 17 +- content/fasDBDML.php | 4 +- content/funktionen.js.php | 108 +- content/funktionen.xul.php | 47 +- content/statistik/koordinatorstunden.php | 31 +- content/statistik/lvplanung.xls.php | 10 +- content/student/studentoverlay.js.php | 4 +- include/benutzerfunktion.class.php | 18 +- include/funktion.class.php | 25 +- include/mitarbeiter.class.php | 39 +- include/organisationseinheit.class.php | 4 + rdf/benutzerfunktion.rdf.php | 7 +- rdf/diplomasupplement.xml.php | 5 +- rdf/funktion.rdf.php | 2 + rdf/lehrauftrag.xml.php | 15 +- rdf/lehrveranstaltung_einheiten.rdf.php | 2 + rdf/organisationseinheit.rdf.php | 1 + rdf/studienerfolg.rdf.php | 31 +- rdf/zertifikat.rdf.php | 20 +- rdf/zeugnis.rdf.php | 26 +- system/checksystem.php | 54 +- system/mlists/mlists_generate.php | 49 +- system/sync/sync_stpldev_stpl.php | 2 +- vilesci/personen/funktion.php | 54 +- vilesci/personen/funktion_det.php | 251 +- 31 files changed, 7049 insertions(+), 5840 deletions(-) diff --git a/cis/private/lehre/ects/index.php b/cis/private/lehre/ects/index.php index 04805b476..597df446c 100644 --- a/cis/private/lehre/ects/index.php +++ b/cis/private/lehre/ects/index.php @@ -463,7 +463,24 @@ echo ""; //FB Leiter auslesen - $qry = "SELECT distinct vorname, nachname FROM public.tbl_benutzerfunktion JOIN campus.vw_mitarbeiter USING(uid) WHERE funktion_kurzbz='fbl' AND fachbereich_kurzbz in (SELECT distinct fachbereich_kurzbz FROM lehre.tbl_lehreinheit, lehre.tbl_lehrfach WHERE lehrveranstaltung_id='$lv' AND studiensemester_kurzbz=(SELECT studiensemester_kurzbz FROM lehre.tbl_lehreinheit JOIN public.tbl_studiensemester USING(studiensemester_kurzbz) WHERE tbl_lehreinheit.lehrveranstaltung_id='$lv' ORDER BY ende DESC LIMIT 1) AND tbl_lehreinheit.lehrfach_id=tbl_lehrfach.lehrfach_id)"; + $qry = "SELECT + distinct vorname, nachname + FROM + public.tbl_benutzerfunktion JOIN campus.vw_mitarbeiter USING(uid) + WHERE + funktion_kurzbz='fbl' AND + (tbl_benutzerfunktion.datum_von is null OR tbl_benutzerfunktion.datum_von<=now()) AND + (tbl_benutzerfunktion.datum_bis is null OR tbl_benutzerfunktion.datum_bis>=now()) AND + fachbereich_kurzbz in (SELECT distinct fachbereich_kurzbz + FROM lehre.tbl_lehreinheit, lehre.tbl_lehrfach + WHERE lehrveranstaltung_id='$lv' AND + studiensemester_kurzbz=(SELECT studiensemester_kurzbz + FROM lehre.tbl_lehreinheit JOIN public.tbl_studiensemester USING(studiensemester_kurzbz) + WHERE tbl_lehreinheit.lehrveranstaltung_id='$lv' + ORDER BY ende DESC LIMIT 1 + ) + AND tbl_lehreinheit.lehrfach_id=tbl_lehrfach.lehrfach_id + )"; echo "Institutsleiter"; if($result=$db->db_query($qry)) @@ -488,6 +505,8 @@ tbl_lehreinheit.lehrfach_id=tbl_lehrfach.lehrfach_id AND tbl_lehrfach.fachbereich_kurzbz=tbl_benutzerfunktion.fachbereich_kurzbz AND tbl_benutzerfunktion.funktion_kurzbz='fbk' AND + (tbl_benutzerfunktion.datum_von is null OR tbl_benutzerfunktion.datum_von<=now()) AND + (tbl_benutzerfunktion.datum_bis is null OR tbl_benutzerfunktion.datum_bis>=now()) AND vw_mitarbeiter.uid=COALESCE(koordinator, tbl_benutzerfunktion.uid) AND tbl_lehrveranstaltung.studiengang_kz=(SELECT studiengang_kz FROM public.tbl_studiengang WHERE oe_kurzbz=tbl_benutzerfunktion.oe_kurzbz LIMIT 1)"; diff --git a/cis/private/lehre/ects/preview.php b/cis/private/lehre/ects/preview.php index 0992425b5..43a5a399b 100644 --- a/cis/private/lehre/ects/preview.php +++ b/cis/private/lehre/ects/preview.php @@ -65,6 +65,8 @@
bezeichnung_english; if (!isset($lv)) - $lv=0; + $lv=0; //Zugeteilte Fachbereiche auslesen @@ -203,7 +205,10 @@ while($row = $db->db_fetch_object($res)) $lehrform_kurzbz[] = $row->lehrform_kurzbz; //Fachbereichsleiter fuer alle FB ermitteln - $qry="SELECT * FROM public.tbl_benutzerfunktion JOIN campus.vw_mitarbeiter USING(uid) WHERE funktion_kurzbz='fbl' AND fachbereich_kurzbz in($fachbereiche)"; + $qry="SELECT vorname, nachname, fachbereich_kurzbz FROM public.tbl_benutzerfunktion JOIN campus.vw_mitarbeiter USING(uid) + WHERE funktion_kurzbz='fbl' AND fachbereich_kurzbz in($fachbereiche) AND + (tbl_benutzerfunktion.datum_von is null OR tbl_benutzerfunktion.datum_von<=now()) AND + (tbl_benutzerfunktion.datum_bis is null OR tbl_benutzerfunktion.datum_bis>=now())"; if(!$res=$db->db_query($qry)) die('Fehler '.$db->errormsg); @@ -225,6 +230,8 @@ tbl_lehrfach.fachbereich_kurzbz=tbl_benutzerfunktion.fachbereich_kurzbz AND tbl_benutzerfunktion.funktion_kurzbz='fbk' AND vw_mitarbeiter.uid=COALESCE(koordinator, tbl_benutzerfunktion.uid) AND + (tbl_benutzerfunktion.datum_von is null OR tbl_benutzerfunktion.datum_von<=now()) AND + (tbl_benutzerfunktion.datum_bis is null OR tbl_benutzerfunktion.datum_bis>=now()) AND tbl_lehrveranstaltung.studiengang_kz=(SELECT studiengang_kz FROM public.tbl_studiengang WHERE oe_kurzbz=tbl_benutzerfunktion.oe_kurzbz LIMIT 1) "; if(!$res=$db->db_query($qry)) diff --git a/cis/private/lehre/pinboard.php b/cis/private/lehre/pinboard.php index adbdec253..5d1d372b9 100644 --- a/cis/private/lehre/pinboard.php +++ b/cis/private/lehre/pinboard.php @@ -298,7 +298,7 @@ function show(id) $stg_oe_obj = new studiengang($studiengang_kz); //Studiengangsleiter auslesen - $qry = "SELECT * FROM campus.vw_mitarbeiter WHERE campus.vw_mitarbeiter.aktiv and uid=(SELECT uid FROM public.tbl_benutzerfunktion WHERE oe_kurzbz='$stg_oe_obj->oe_kurzbz' AND funktion_kurzbz='stgl' LIMIT 1)"; + $qry = "SELECT * FROM campus.vw_mitarbeiter WHERE campus.vw_mitarbeiter.aktiv and uid=(SELECT uid FROM public.tbl_benutzerfunktion WHERE oe_kurzbz='$stg_oe_obj->oe_kurzbz' AND funktion_kurzbz='stgl' AND (datum_von<=now() OR datum_von is null) AND (datum_bis>=now() OR datum_bis is null) LIMIT 1)"; if($result_course_leader = $db->db_query($qry)) { $num_rows_course_leader = $db->db_num_rows($result_course_leader); @@ -381,7 +381,7 @@ function show(id) echo "

Stellvertreter:
"; //Studiengangsleiter Stellvertreter auselesen - $sql_query = "SELECT * FROM campus.vw_mitarbeiter WHERE campus.vw_mitarbeiter.aktiv and uid=(SELECT uid FROM public.tbl_benutzerfunktion WHERE oe_kurzbz=(SELECT oe_kurzbz FROM public.tbl_studiengang WHERE studiengang_kz='$studiengang_kz' LIMIT 1) AND funktion_kurzbz='stglstv' LIMIT 1)"; + $sql_query = "SELECT * FROM campus.vw_mitarbeiter WHERE campus.vw_mitarbeiter.aktiv and uid=(SELECT uid FROM public.tbl_benutzerfunktion WHERE oe_kurzbz=(SELECT oe_kurzbz FROM public.tbl_studiengang WHERE studiengang_kz='$studiengang_kz' LIMIT 1) AND funktion_kurzbz='stglstv' AND (datum_von<=now() OR datum_von is null) AND (datum_bis>=now() OR datum_bis is null) LIMIT 1)"; if($result_course_leader_deputy = $db->db_query($sql_query)) { @@ -465,8 +465,8 @@ function show(id) echo "

Sekretariat:"; //Sekritariat auslesen $stg_oe_obj = new studiengang($studiengang_kz); - $sql_query = "SELECT distinct * FROM campus.vw_mitarbeiter WHERE campus.vw_mitarbeiter.aktiv and uid in (SELECT uid FROM public.tbl_benutzerfunktion WHERE oe_kurzbz='$stg_oe_obj->oe_kurzbz' AND funktion_kurzbz='ass')"; - + $sql_query = "SELECT distinct * FROM campus.vw_mitarbeiter WHERE campus.vw_mitarbeiter.aktiv and uid in (SELECT uid FROM public.tbl_benutzerfunktion WHERE oe_kurzbz='$stg_oe_obj->oe_kurzbz' AND funktion_kurzbz='ass' AND (datum_von<=now() OR datum_von is null) AND (datum_bis>=now() OR datum_bis is null))"; + if($result_course_secretary = $db->db_query($sql_query)) { $num_rows_course_secretary = $db->db_num_rows($result_course_secretary); @@ -666,7 +666,7 @@ function show(id)  Newsgroups'; + echo ' Newsgroups'; ?> diff --git a/cis/private/profile/urlaubsfreigabe.php b/cis/private/profile/urlaubsfreigabe.php index 50c4549c8..8e4454907 100644 --- a/cis/private/profile/urlaubsfreigabe.php +++ b/cis/private/profile/urlaubsfreigabe.php @@ -19,12 +19,7 @@ * Andreas Oesterreicher , * Rudolf Hangl and */ - - require_once('../../../config/cis.config.inc.php'); - require_once('../../../include/basis_db.class.php'); - if (!$db = new basis_db()) - die('Fehler beim Oeffnen der Datenbankverbindung'); - +require_once('../../../config/cis.config.inc.php'); require_once('../../../include/functions.inc.php'); require_once('../../../include/datum.class.php'); require_once('../../../include/zeitsperre.class.php'); @@ -34,6 +29,9 @@ require_once('../../../include/mitarbeiter.class.php'); require_once('../../../include/resturlaub.class.php'); require_once('../../../include/benutzerberechtigung.class.php'); +if (!$db = new basis_db()) + die('Fehler beim Oeffnen der Datenbankverbindung'); + $user = get_uid(); $rechte = new benutzerberechtigung(); diff --git a/cis/private/profile/urlaubstool.php b/cis/private/profile/urlaubstool.php index 9e0a9bd49..d0097ff25 100644 --- a/cis/private/profile/urlaubstool.php +++ b/cis/private/profile/urlaubstool.php @@ -20,17 +20,18 @@ * Rudolf Hangl . */ - require_once('../../../config/cis.config.inc.php'); - require_once('../../../include/functions.inc.php'); - require_once('../../../include/zeitsperre.class.php'); - require_once('../../../include/datum.class.php'); - require_once('../../../include/resturlaub.class.php'); - require_once('../../../include/person.class.php'); - require_once('../../../include/benutzer.class.php'); - require_once('../../../include/mitarbeiter.class.php'); - require_once('../../../include/mail.class.php'); - if (!$db = new basis_db()) - die('Fehler beim Oeffnen der Datenbankverbindung'); +require_once('../../../config/cis.config.inc.php'); +require_once('../../../include/functions.inc.php'); +require_once('../../../include/zeitsperre.class.php'); +require_once('../../../include/datum.class.php'); +require_once('../../../include/resturlaub.class.php'); +require_once('../../../include/person.class.php'); +require_once('../../../include/benutzer.class.php'); +require_once('../../../include/mitarbeiter.class.php'); +require_once('../../../include/mail.class.php'); + +if (!$db = new basis_db()) + die('Fehler beim Oeffnen der Datenbankverbindung'); $content_resturlaub = ''; $content = ''; diff --git a/content/FASo.pdf b/content/FASo.pdf index 7d3835516..990dfe880 100644 --- a/content/FASo.pdf +++ b/content/FASo.pdf @@ -139,536 +139,548 @@ endobj (Die Karteikarte Details) endobj 97 0 obj -<< /S /GoTo /D (chapter.4) >> +<< /S /GoTo /D (section.3.2) >> endobj 100 0 obj -(Prestudent) +(Pflichtfelder) endobj 101 0 obj -<< /S /GoTo /D (section.4.1) >> +<< /S /GoTo /D (chapter.4) >> endobj 104 0 obj -(Aufbau der Karteikarte Prestudent) +(Prestudent) endobj 105 0 obj -<< /S /GoTo /D (section.4.2) >> +<< /S /GoTo /D (section.4.1) >> endobj 108 0 obj -(Rechtsklick-Funktionen) +(Aufbau der Karteikarte Prestudent) endobj 109 0 obj -<< /S /GoTo /D (chapter.5) >> +<< /S /GoTo /D (section.4.2) >> endobj 112 0 obj -(Incoming) -endobj -113 0 obj -<< /S /GoTo /D (chapter.6) >> -endobj -116 0 obj -(Kontakte) -endobj -117 0 obj -<< /S /GoTo /D (section.6.1) >> -endobj -120 0 obj -(Anlegen von Adressen) -endobj -121 0 obj -<< /S /GoTo /D (section.6.2) >> -endobj -124 0 obj -(Anlegen von Kontaktm\366glichkeiten) -endobj -125 0 obj -<< /S /GoTo /D (section.6.3) >> -endobj -128 0 obj -(Anlegen von Bankverbindungen) -endobj -129 0 obj -<< /S /GoTo /D (chapter.7) >> -endobj -132 0 obj -(Das Studentenkonto) -endobj -133 0 obj -<< /S /GoTo /D (section.7.1) >> -endobj -136 0 obj -(Die Karteikarte Konto) -endobj -137 0 obj -<< /S /GoTo /D (chapter.8) >> -endobj -140 0 obj -(Vorr\374ckung) -endobj -141 0 obj -<< /S /GoTo /D (section.8.1) >> -endobj -144 0 obj -(Lehreinheiten) -endobj -145 0 obj -<< /S /GoTo /D (section.8.2) >> -endobj -148 0 obj -(Studenten) -endobj -149 0 obj -<< /S /GoTo /D (chapter.9) >> -endobj -152 0 obj -(Lehrveranstaltungen) -endobj -153 0 obj -<< /S /GoTo /D (section.9.1) >> -endobj -156 0 obj -(Aufbau) -endobj -157 0 obj -<< /S /GoTo /D (section.9.2) >> -endobj -160 0 obj -(Bearbeiten von LV-Eintr\344gen) -endobj -161 0 obj -<< /S /GoTo /D (chapter.10) >> -endobj -164 0 obj -(Lehreinheiten) -endobj -165 0 obj -<< /S /GoTo /D (section.10.1) >> -endobj -168 0 obj -(Lehreinheit anlegen) -endobj -169 0 obj -<< /S /GoTo /D (section.10.2) >> -endobj -172 0 obj -(Gruppen zuweisen) -endobj -173 0 obj -<< /S /GoTo /D (subsection.10.2.1) >> -endobj -176 0 obj -(Wahlf\344cher) -endobj -177 0 obj -<< /S /GoTo /D (subsection.10.2.2) >> -endobj -180 0 obj -(Incoming) -endobj -181 0 obj -<< /S /GoTo /D (section.10.3) >> -endobj -184 0 obj -(Lektoren zuweisen) -endobj -185 0 obj -<< /S /GoTo /D (chapter.11) >> -endobj -188 0 obj -(Lehrauftrag) -endobj -189 0 obj -<< /S /GoTo /D (section.11.1) >> -endobj -192 0 obj -(Erstellen eines Lehrauftrags) -endobj -193 0 obj -<< /S /GoTo /D (chapter.12) >> -endobj -196 0 obj -(Noten) -endobj -197 0 obj -<< /S /GoTo /D (section.12.1) >> -endobj -200 0 obj -(Aufbau der Karteikarte) -endobj -201 0 obj -<< /S /GoTo /D (section.12.2) >> -endobj -204 0 obj -(Noteneingabe und -\374bergabe) -endobj -205 0 obj -<< /S /GoTo /D (chapter.13) >> -endobj -208 0 obj -(Pr\374fungen) -endobj -209 0 obj -<< /S /GoTo /D (section.13.1) >> -endobj -212 0 obj -(Eingabe von Pr\374fungen) -endobj -213 0 obj -<< /S /GoTo /D (chapter.14) >> -endobj -216 0 obj -(Zeugnis) -endobj -217 0 obj -<< /S /GoTo /D (chapter.15) >> -endobj -220 0 obj -(Freif\344cher) -endobj -221 0 obj -<< /S /GoTo /D (subsection.15.0.1) >> -endobj -224 0 obj -(Drucken von Best\344tigungen) -endobj -225 0 obj -<< /S /GoTo /D (chapter.16) >> -endobj -228 0 obj -(Projektarbeit) -endobj -229 0 obj -<< /S /GoTo /D (section.16.1) >> -endobj -232 0 obj -(Die Karteikarte Projektarbeit) -endobj -233 0 obj -<< /S /GoTo /D (subsection.16.1.1) >> -endobj -236 0 obj -(Projektarbeitlistenfeld) -endobj -237 0 obj -<< /S /GoTo /D (subsection.16.1.2) >> -endobj -240 0 obj -(Details) -endobj -241 0 obj -<< /S /GoTo /D (subsection.16.1.3) >> -endobj -244 0 obj -(Betreuer) -endobj -245 0 obj -<< /S /GoTo /D (section.16.2) >> -endobj -248 0 obj -(Anlegen einer Diplomarbeit) -endobj -249 0 obj -<< /S /GoTo /D (section.16.3) >> -endobj -252 0 obj -(Anlegen einer Bachelorarbeit) -endobj -253 0 obj -<< /S /GoTo /D (section.16.4) >> -endobj -256 0 obj -(Anlegen eines Praktikums) -endobj -257 0 obj -<< /S /GoTo /D (section.16.5) >> -endobj -260 0 obj -(Anlegen eines Betreuers) -endobj -261 0 obj -<< /S /GoTo /D (section.16.6) >> -endobj -264 0 obj -(Verwendung der Daten) -endobj -265 0 obj -<< /S /GoTo /D (chapter.17) >> -endobj -268 0 obj -(Bachelor- und Diplompr\374fungen) -endobj -269 0 obj -<< /S /GoTo /D (section.17.1) >> -endobj -272 0 obj -(Diplompr\374fung) -endobj -273 0 obj -<< /S /GoTo /D (section.17.2) >> -endobj -276 0 obj -(Bachelorpr\374fung) -endobj -277 0 obj -<< /S /GoTo /D (section.17.3) >> -endobj -280 0 obj (Rechtsklick-Funktionen) endobj +113 0 obj +<< /S /GoTo /D (section.4.3) >> +endobj +116 0 obj +(Pflichtfelder) +endobj +117 0 obj +<< /S /GoTo /D (chapter.5) >> +endobj +120 0 obj +(Incoming) +endobj +121 0 obj +<< /S /GoTo /D (chapter.6) >> +endobj +124 0 obj +(Kontakte) +endobj +125 0 obj +<< /S /GoTo /D (section.6.1) >> +endobj +128 0 obj +(Anlegen von Adressen) +endobj +129 0 obj +<< /S /GoTo /D (section.6.2) >> +endobj +132 0 obj +(Anlegen von Kontaktm\366glichkeiten) +endobj +133 0 obj +<< /S /GoTo /D (section.6.3) >> +endobj +136 0 obj +(Anlegen von Bankverbindungen) +endobj +137 0 obj +<< /S /GoTo /D (chapter.7) >> +endobj +140 0 obj +(Das Studentenkonto) +endobj +141 0 obj +<< /S /GoTo /D (section.7.1) >> +endobj +144 0 obj +(Die Karteikarte Konto) +endobj +145 0 obj +<< /S /GoTo /D (chapter.8) >> +endobj +148 0 obj +(Vorr\374ckung) +endobj +149 0 obj +<< /S /GoTo /D (section.8.1) >> +endobj +152 0 obj +(Lehreinheiten) +endobj +153 0 obj +<< /S /GoTo /D (section.8.2) >> +endobj +156 0 obj +(Studenten) +endobj +157 0 obj +<< /S /GoTo /D (chapter.9) >> +endobj +160 0 obj +(Lehrveranstaltungen) +endobj +161 0 obj +<< /S /GoTo /D (section.9.1) >> +endobj +164 0 obj +(Aufbau) +endobj +165 0 obj +<< /S /GoTo /D (section.9.2) >> +endobj +168 0 obj +(Bearbeiten von LV-Eintr\344gen) +endobj +169 0 obj +<< /S /GoTo /D (chapter.10) >> +endobj +172 0 obj +(Lehreinheiten) +endobj +173 0 obj +<< /S /GoTo /D (section.10.1) >> +endobj +176 0 obj +(Lehreinheit anlegen) +endobj +177 0 obj +<< /S /GoTo /D (section.10.2) >> +endobj +180 0 obj +(Gruppen zuweisen) +endobj +181 0 obj +<< /S /GoTo /D (subsection.10.2.1) >> +endobj +184 0 obj +(Wahlf\344cher) +endobj +185 0 obj +<< /S /GoTo /D (subsection.10.2.2) >> +endobj +188 0 obj +(Incoming) +endobj +189 0 obj +<< /S /GoTo /D (section.10.3) >> +endobj +192 0 obj +(Lektoren zuweisen) +endobj +193 0 obj +<< /S /GoTo /D (chapter.11) >> +endobj +196 0 obj +(Lehrauftrag) +endobj +197 0 obj +<< /S /GoTo /D (section.11.1) >> +endobj +200 0 obj +(Erstellen eines Lehrauftrags) +endobj +201 0 obj +<< /S /GoTo /D (chapter.12) >> +endobj +204 0 obj +(Noten) +endobj +205 0 obj +<< /S /GoTo /D (section.12.1) >> +endobj +208 0 obj +(Aufbau der Karteikarte) +endobj +209 0 obj +<< /S /GoTo /D (section.12.2) >> +endobj +212 0 obj +(Noteneingabe und -\374bergabe) +endobj +213 0 obj +<< /S /GoTo /D (chapter.13) >> +endobj +216 0 obj +(Pr\374fungen) +endobj +217 0 obj +<< /S /GoTo /D (section.13.1) >> +endobj +220 0 obj +(Eingabe von Pr\374fungen) +endobj +221 0 obj +<< /S /GoTo /D (chapter.14) >> +endobj +224 0 obj +(Zeugnis) +endobj +225 0 obj +<< /S /GoTo /D (chapter.15) >> +endobj +228 0 obj +(Freif\344cher) +endobj +229 0 obj +<< /S /GoTo /D (subsection.15.0.1) >> +endobj +232 0 obj +(Drucken von Best\344tigungen) +endobj +233 0 obj +<< /S /GoTo /D (chapter.16) >> +endobj +236 0 obj +(Projektarbeit) +endobj +237 0 obj +<< /S /GoTo /D (section.16.1) >> +endobj +240 0 obj +(Die Karteikarte Projektarbeit) +endobj +241 0 obj +<< /S /GoTo /D (subsection.16.1.1) >> +endobj +244 0 obj +(Projektarbeitlistenfeld) +endobj +245 0 obj +<< /S /GoTo /D (subsection.16.1.2) >> +endobj +248 0 obj +(Details) +endobj +249 0 obj +<< /S /GoTo /D (subsection.16.1.3) >> +endobj +252 0 obj +(Betreuer) +endobj +253 0 obj +<< /S /GoTo /D (section.16.2) >> +endobj +256 0 obj +(Anlegen einer Diplomarbeit) +endobj +257 0 obj +<< /S /GoTo /D (section.16.3) >> +endobj +260 0 obj +(Anlegen einer Bachelorarbeit) +endobj +261 0 obj +<< /S /GoTo /D (section.16.4) >> +endobj +264 0 obj +(Anlegen eines Praktikums) +endobj +265 0 obj +<< /S /GoTo /D (section.16.5) >> +endobj +268 0 obj +(Anlegen eines Betreuers) +endobj +269 0 obj +<< /S /GoTo /D (section.16.6) >> +endobj +272 0 obj +(Verwendung der Daten) +endobj +273 0 obj +<< /S /GoTo /D (chapter.17) >> +endobj +276 0 obj +(Bachelor- und Diplompr\374fungen) +endobj +277 0 obj +<< /S /GoTo /D (section.17.1) >> +endobj +280 0 obj +(Diplompr\374fung) +endobj 281 0 obj -<< /S /GoTo /D (chapter.18) >> +<< /S /GoTo /D (section.17.2) >> endobj 284 0 obj -(Betriebsmittel) +(Bachelorpr\374fung) endobj 285 0 obj -<< /S /GoTo /D (section.18.1) >> +<< /S /GoTo /D (section.17.3) >> endobj 288 0 obj -(Aufbau der Karteikarte Betriebsmittel) +(Rechtsklick-Funktionen) endobj 289 0 obj -<< /S /GoTo /D (section.18.2) >> +<< /S /GoTo /D (chapter.18) >> endobj 292 0 obj -(Eingabe von Betriebsmittelentlehnungen) -endobj -293 0 obj -<< /S /GoTo /D (chapter.19) >> -endobj -296 0 obj -(Dokumente) -endobj -297 0 obj -<< /S /GoTo /D (chapter.20) >> -endobj -300 0 obj -(Funktionen) -endobj -301 0 obj -<< /S /GoTo /D (section.20.1) >> -endobj -304 0 obj -(Anlegen von Funktionen) -endobj -305 0 obj -<< /S /GoTo /D (chapter.21) >> -endobj -308 0 obj -(BIS-Meldung) -endobj -309 0 obj -<< /S /GoTo /D (section.21.1) >> -endobj -312 0 obj -(Die Studentenmeldung) -endobj -313 0 obj -<< /S /GoTo /D (subsection.21.1.1) >> -endobj -316 0 obj -(Plausibilit\344tspr\374fung) -endobj -317 0 obj -<< /S /GoTo /D (subsection.21.1.2) >> -endobj -320 0 obj -(Erzeugen der XML-Datei) -endobj -321 0 obj -<< /S /GoTo /D (subsection.21.1.3) >> -endobj -324 0 obj -(Die FHR-Seite) -endobj -325 0 obj -<< /S /GoTo /D (subsection.21.1.4) >> -endobj -328 0 obj -(Fehlerkorrektur) -endobj -329 0 obj -<< /S /GoTo /D (section.21.2) >> -endobj -332 0 obj -(Die Mitarbeitermeldung) -endobj -333 0 obj -<< /S /GoTo /D (subsection.21.2.1) >> -endobj -336 0 obj -(Plausibilit\344tspr\374fung) -endobj -337 0 obj -<< /S /GoTo /D (subsection.21.2.2) >> -endobj -340 0 obj -(Erzeugen der XML-Datei) -endobj -341 0 obj -<< /S /GoTo /D (section.21.3) >> -endobj -344 0 obj -(Die F\046E - Projektmeldung) -endobj -345 0 obj -<< /S /GoTo /D (subsection.21.3.1) >> -endobj -348 0 obj -(Plausibilit\344tspr\374fung) -endobj -349 0 obj -<< /S /GoTo /D (subsection.21.3.2) >> -endobj -352 0 obj -(Erzeugen der XML-Datei) -endobj -353 0 obj -<< /S /GoTo /D (subsection.21.3.3) >> -endobj -356 0 obj -(Die FHR-Seite) -endobj -357 0 obj -<< /S /GoTo /D (chapter.22) >> -endobj -360 0 obj -(Mitarbeiter) -endobj -361 0 obj -<< /S /GoTo /D (section.22.1) >> -endobj -364 0 obj -(Anzeigefilter) -endobj -365 0 obj -<< /S /GoTo /D (section.22.2) >> -endobj -368 0 obj -(Mitarbeiterdatenkarten) -endobj -369 0 obj -<< /S /GoTo /D (subsection.22.2.1) >> -endobj -372 0 obj -(Stammdaten) -endobj -373 0 obj -<< /S /GoTo /D (subsection.22.2.2) >> -endobj -376 0 obj -(Kontaktdaten) -endobj -377 0 obj -<< /S /GoTo /D (subsection.22.2.3) >> -endobj -380 0 obj -(BIS-Daten) -endobj -381 0 obj -<< /S /GoTo /D (subsection.22.2.4) >> -endobj -384 0 obj (Betriebsmittel) endobj -385 0 obj -<< /S /GoTo /D (subsection.22.2.5) >> +293 0 obj +<< /S /GoTo /D (section.18.1) >> endobj -388 0 obj +296 0 obj +(Aufbau der Karteikarte Betriebsmittel) +endobj +297 0 obj +<< /S /GoTo /D (section.18.2) >> +endobj +300 0 obj +(Eingabe von Betriebsmittelentlehnungen) +endobj +301 0 obj +<< /S /GoTo /D (chapter.19) >> +endobj +304 0 obj +(Dokumente) +endobj +305 0 obj +<< /S /GoTo /D (chapter.20) >> +endobj +308 0 obj (Funktionen) endobj +309 0 obj +<< /S /GoTo /D (section.20.1) >> +endobj +312 0 obj +(Anlegen von Funktionen) +endobj +313 0 obj +<< /S /GoTo /D (chapter.21) >> +endobj +316 0 obj +(BIS-Meldung) +endobj +317 0 obj +<< /S /GoTo /D (section.21.1) >> +endobj +320 0 obj +(Die Studentenmeldung) +endobj +321 0 obj +<< /S /GoTo /D (subsection.21.1.1) >> +endobj +324 0 obj +(Plausibilit\344tspr\374fung) +endobj +325 0 obj +<< /S /GoTo /D (subsection.21.1.2) >> +endobj +328 0 obj +(Erzeugen der XML-Datei) +endobj +329 0 obj +<< /S /GoTo /D (subsection.21.1.3) >> +endobj +332 0 obj +(Die FHR-Seite) +endobj +333 0 obj +<< /S /GoTo /D (subsection.21.1.4) >> +endobj +336 0 obj +(Fehlerkorrektur) +endobj +337 0 obj +<< /S /GoTo /D (section.21.2) >> +endobj +340 0 obj +(Die Mitarbeitermeldung) +endobj +341 0 obj +<< /S /GoTo /D (subsection.21.2.1) >> +endobj +344 0 obj +(Plausibilit\344tspr\374fung) +endobj +345 0 obj +<< /S /GoTo /D (subsection.21.2.2) >> +endobj +348 0 obj +(Erzeugen der XML-Datei) +endobj +349 0 obj +<< /S /GoTo /D (section.21.3) >> +endobj +352 0 obj +(Die F\046E - Projektmeldung) +endobj +353 0 obj +<< /S /GoTo /D (subsection.21.3.1) >> +endobj +356 0 obj +(Plausibilit\344tspr\374fung) +endobj +357 0 obj +<< /S /GoTo /D (subsection.21.3.2) >> +endobj +360 0 obj +(Erzeugen der XML-Datei) +endobj +361 0 obj +<< /S /GoTo /D (subsection.21.3.3) >> +endobj +364 0 obj +(Die FHR-Seite) +endobj +365 0 obj +<< /S /GoTo /D (chapter.22) >> +endobj +368 0 obj +(Mitarbeiter) +endobj +369 0 obj +<< /S /GoTo /D (section.22.1) >> +endobj +372 0 obj +(Anzeigefilter) +endobj +373 0 obj +<< /S /GoTo /D (section.22.2) >> +endobj +376 0 obj +(Mitarbeiterdatenkarten) +endobj +377 0 obj +<< /S /GoTo /D (subsection.22.2.1) >> +endobj +380 0 obj +(Stammdaten) +endobj +381 0 obj +<< /S /GoTo /D (subsection.22.2.2) >> +endobj +384 0 obj +(Kontaktdaten) +endobj +385 0 obj +<< /S /GoTo /D (subsection.22.2.3) >> +endobj +388 0 obj +(BIS-Daten) +endobj 389 0 obj -<< /S /GoTo /D (section.22.3) >> +<< /S /GoTo /D (subsection.22.2.4) >> endobj 392 0 obj -(Neuen Mitarbeiter anlegen) +(Betriebsmittel) endobj 393 0 obj -<< /S /GoTo /D (chapter.23) >> +<< /S /GoTo /D (subsection.22.2.5) >> endobj 396 0 obj -(Men\374leisten) +(Funktionen) endobj 397 0 obj -<< /S /GoTo /D (section.23.1) >> +<< /S /GoTo /D (section.22.3) >> endobj 400 0 obj -(Hauptmen\374leiste) +(Neuen Mitarbeiter anlegen) endobj 401 0 obj -<< /S /GoTo /D (section.23.2) >> +<< /S /GoTo /D (chapter.23) >> endobj 404 0 obj -(Men\374leiste von Listenfeld 2) +(Men\374leisten) endobj 405 0 obj -<< /S /GoTo /D (chapter.24) >> +<< /S /GoTo /D (section.23.1) >> endobj 408 0 obj -(Extras) +(Hauptmen\374leiste) endobj 409 0 obj -<< /S /GoTo /D (section.24.1) >> +<< /S /GoTo /D (section.23.2) >> endobj 412 0 obj -(Reihungstestverwaltung) +(Men\374leiste von Listenfeld 2) endobj 413 0 obj -<< /S /GoTo /D (section.24.2) >> +<< /S /GoTo /D (chapter.24) >> endobj 416 0 obj -(Firmenverwaltung) +(Extras) endobj 417 0 obj -<< /S /GoTo /D (section.24.3) >> +<< /S /GoTo /D (section.24.1) >> endobj 420 0 obj -(Lehrveranstaltungverwaltung) +(Reihungstestverwaltung) endobj 421 0 obj -<< /S /GoTo /D (section.24.4) >> +<< /S /GoTo /D (section.24.2) >> endobj 424 0 obj -(Projektarbeitsbenotung) +(Firmenverwaltung) endobj 425 0 obj -<< /S /GoTo /D (section.24.5) >> +<< /S /GoTo /D (section.24.3) >> endobj 428 0 obj -(Gruppenverwaltung) +(Lehrveranstaltungverwaltung) endobj 429 0 obj -<< /S /GoTo /D (appendix.A) >> +<< /S /GoTo /D (section.24.4) >> endobj 432 0 obj -(Schluss) +(Projektarbeitsbenotung) endobj 433 0 obj -<< /S /GoTo /D [434 0 R /Fit ] >> +<< /S /GoTo /D (section.24.5) >> endobj -437 0 obj << -/Length 234 +436 0 obj +(Gruppenverwaltung) +endobj +437 0 obj +<< /S /GoTo /D (appendix.A) >> +endobj +440 0 obj +(Schluss) +endobj +441 0 obj +<< /S /GoTo /D [442 0 R /Fit ] >> +endobj +445 0 obj << +/Length 241 /Filter /FlateDecode >> stream -xuPMK0Wc -&&<"l"Hf \ Ͻbs-XC Cc 6 Ir)ѯT+ +xuPMK1W1f׵TEobxh-eW-݋lE@ 3ix LSיn0{ *z^ +!ᙯ ߍ0w%߳̐4 F9\Mr7uc밡MSH~ahˋ\ 䜩MTMqK iO7.-4G5ǹDr]͙"cWi endstream endobj -434 0 obj << +442 0 obj << /Type /Page -/Contents 437 0 R -/Resources 436 0 R +/Contents 445 0 R +/Resources 444 0 R /MediaBox [0 0 595.276 841.89] -/Parent 443 0 R +/Parent 451 0 R >> endobj -435 0 obj << +443 0 obj << /Type /XObject /Subtype /Image /Width 1780 /Height 336 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 444 0 R +/SMask 452 0 R /Length 17896 /Filter /FlateDecode >> @@ -708,7 +720,7 @@ l  oi͜R9l3aalmMf1%O޴UYI7z)6!6k6E{7$۔lsܾ{_sM JMS6&mIMNQ6lmM6#Ɵ̛FfRi;lmM݆mM6٦}DMiq Q+})fAaxm6lmM6#ƿt9%Q%6C&ڠ(Mn_ endstream endobj -444 0 obj << +452 0 obj << /Type /XObject /Subtype /Image /Width 1780 @@ -743,18 +755,18 @@ l^ B%y!HWέ~&QVwtqpr/T 7|0=Tܶy]FZv%7ǡw saByUbBvl646_~:[3~nճ WɟGUlݛ[ws<.2?/y۬..<ߴE:S%:hWnۼ햡y#s[ݵ-Lj(zSon^Cw ּz޼Ѻ+#=7q?{tQj0ɾlu5FtS=/Q[;yy3ղIGoDMEh2i5u%lzd?elc:9vG],dkV{7os'6~>Wnc-^vvߞ9 kѼ썏 [/lln%tl/j2e)Krp=W8y|N'unUzsxܽyqBui";}ZԼ+}yOw4i%6ϵa2m$5/ (ž@ۛgqش|Ҽuz<{ZvWA|Ƴy=ruK[t-=} +|y߰v44̮V*YzƓ:?9\H*la9\G|k\j\~F?Ֆ5BٳW_v[÷6j/c։1$:_7CR_qu!۞4LĹmo({㣶vΝEOϴp88~Թw"7UcUm~y"lQO,Dgu،So6zD!ꓱ/lSßШV~\jh2^7G-sp endstream endobj -438 0 obj << -/D [434 0 R /XYZ 77.386 776.032 null] ->> endobj -439 0 obj << -/D [434 0 R /XYZ 77.386 755.708 null] ->> endobj -436 0 obj << -/Font << /F17 440 0 R /F19 441 0 R /F18 442 0 R >> -/XObject << /Im1 435 0 R >> -/ProcSet [ /PDF /Text /ImageC ] +446 0 obj << +/D [442 0 R /XYZ 77.386 776.032 null] >> endobj 447 0 obj << +/D [442 0 R /XYZ 77.386 755.708 null] +>> endobj +444 0 obj << +/Font << /F17 448 0 R /F19 449 0 R /F18 450 0 R >> +/XObject << /Im1 443 0 R >> +/ProcSet [ /PDF /Text /ImageC ] +>> endobj +455 0 obj << /Length 120 /Filter /FlateDecode >> @@ -762,864 +774,865 @@ stream x=@ C|GXp !U`C'~g& β5,9'--2NT`N 'r~~> endobj -448 0 obj << -/D [446 0 R /XYZ 115.087 776.032 null] +456 0 obj << +/D [454 0 R /XYZ 115.087 776.032 null] >> endobj -445 0 obj << -/Font << /F16 449 0 R >> +453 0 obj << +/Font << /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -487 0 obj << -/Length 1193 +495 0 obj << +/Length 1212 /Filter /FlateDecode >> stream -xYr8+x`ytʉ+LTK4ڄ$i(%$(-ɹHݯ_7w{W|03o:I=bMS IQWd$*jP"43|ka cd^,T!Qgy_a$@6f]Bh. -nFEj> w@^H;ນ'@*K3? - $lF(}t)8zY+EXz1: g8j. D'??B_^Б=G,p7icfK'"#zyXBzQ]M[K`׀y/:dQls 6WM*U*u.RUo=NVvp#K+8\pɭed lX*5fv*_j1㌅D|L7`HyE8 1C <}J{G'qL)q"[TFUkͭebhŒj-9Ԁ{G$YG_Is, -Ռ@j뜪{s7lwrw >0$:$#Ve9#*1)\y.>vG^lO f?M8#/ -+sCB&t (hGU8t(Dh/] 7b;%rFK}?9Dv&fa$7 \AORG_FSjʭSع-B8g `,brj8֌~gxL[(άX#!YNѥU21~JX9ŏmv3c4@퀛Lv:IZf0፬pyV -6sSZZK::;!߿V5|`XϦB!=D:=V^uo ->Xˏ /-0ob'{5um- ۋ9ѹhѸ6|zw{-tE{f\a&1M).67*%iA@ B)&ƱW]79@PvA־F"ڴ}ӫ  +xYMsHW(HG֦b* BR~H9l'H<3AC|_P{'F{IV?TNhb/77˵xbc38B}3?R"{Nc%l1ٌGA((JOdtw| I}]>bD$BLG2IjvTAH)*7Ŀ!|\J_D2vBu'Ið7`:Œ`zb5x03MqwAqkC.t :'t[ 9]8遵 :Ynˤ +Pp|  ֿgqZ[njt+Ŋʼ;ȩ7`9Gc~^MI-AݵJO$}oҖ4yjWlaΊoPk0Abz~bH][MX> endobj -450 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 626.925 128.317 638.973] -/A << /S /GoTo /D (chapter*.2) >> ->> endobj -451 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 601.271 151.471 613.32] -/A << /S /GoTo /D (chapter.1) >> ->> endobj -452 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 589.579 259.472 599.085] -/A << /S /GoTo /D (section.1.1) >> ->> endobj -453 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 575.779 209.669 585.285] -/A << /S /GoTo /D (subsection.1.1.1) >> ->> endobj -454 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 561.978 209.669 571.484] -/A << /S /GoTo /D (subsection.1.1.2) >> ->> endobj -455 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 548.178 216.534 557.683] -/A << /S /GoTo /D (subsection.1.1.3) >> ->> endobj -456 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 534.377 208.676 543.883] -/A << /S /GoTo /D (subsection.1.1.4) >> ->> endobj -457 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 508.724 145.626 518.664] -/A << /S /GoTo /D (chapter.2) >> +/Parent 451 0 R +/Annots [ 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R 483 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R ] >> endobj 458 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 494.923 142.504 504.429] -/A << /S /GoTo /D (section.2.1) >> +/Rect [76.389 630.891 128.317 642.94] +/A << /S /GoTo /D (chapter*.2) >> >> endobj 459 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 479.002 281.291 490.628] -/A << /S /GoTo /D (section.2.2) >> +/Rect [76.389 606.044 151.471 618.093] +/A << /S /GoTo /D (chapter.1) >> >> endobj 460 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 465.201 290.931 476.828] -/A << /S /GoTo /D (subsection.2.2.1) >> +/Rect [92.66 594.513 259.472 604.019] +/A << /S /GoTo /D (section.1.1) >> >> endobj 461 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 453.521 232.625 463.027] -/A << /S /GoTo /D (subsection.2.2.2) >> +/Rect [117.609 580.874 209.669 590.38] +/A << /S /GoTo /D (subsection.1.1.1) >> >> endobj 462 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 437.6 204.633 449.227] -/A << /S /GoTo /D (section.2.3) >> +/Rect [117.609 567.234 209.669 576.74] +/A << /S /GoTo /D (subsection.1.1.2) >> >> endobj 463 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 423.799 299.964 437.649] -/A << /S /GoTo /D (subsection.2.3.1) >> +/Rect [117.609 553.595 216.534 563.101] +/A << /S /GoTo /D (subsection.1.1.3) >> >> endobj 464 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 409.999 209.148 421.625] -/A << /S /GoTo /D (subsection.2.3.2) >> +/Rect [117.609 539.956 208.676 549.462] +/A << /S /GoTo /D (subsection.1.1.4) >> >> endobj 465 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 396.198 266.101 407.825] -/A << /S /GoTo /D (subsection.2.3.3) >> +/Rect [76.389 515.108 145.626 525.048] +/A << /S /GoTo /D (chapter.2) >> >> endobj 466 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 381.792 267.067 394.691] -/A << /S /GoTo /D (section.2.4) >> +/Rect [92.66 501.469 142.504 510.975] +/A << /S /GoTo /D (section.2.1) >> >> endobj 467 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 368.597 284.935 380.224] -/A << /S /GoTo /D (section.2.5) >> +/Rect [92.66 485.709 281.291 497.335] +/A << /S /GoTo /D (section.2.2) >> >> endobj 468 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 354.796 257.269 366.423] -/A << /S /GoTo /D (subsection.2.5.1) >> +/Rect [117.609 472.07 290.931 483.696] +/A << /S /GoTo /D (subsection.2.2.1) >> >> endobj 469 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 340.996 226.63 352.622] -/A << /S /GoTo /D (subsection.2.5.2) >> +/Rect [117.609 460.551 232.625 470.057] +/A << /S /GoTo /D (subsection.2.2.2) >> >> endobj 470 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 329.316 223.77 338.822] -/A << /S /GoTo /D (section.2.6) >> +/Rect [92.66 444.791 204.633 456.417] +/A << /S /GoTo /D (section.2.3) >> >> endobj 471 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 303.663 158.325 313.603] -/A << /S /GoTo /D (chapter.3) >> +/Rect [117.609 431.151 299.964 445.001] +/A << /S /GoTo /D (subsection.2.3.1) >> >> endobj 472 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 289.862 229.946 299.368] -/A << /S /GoTo /D (section.3.1) >> +/Rect [117.609 417.512 209.148 429.139] +/A << /S /GoTo /D (subsection.2.3.2) >> >> endobj 473 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 264.209 149.132 274.149] -/A << /S /GoTo /D (chapter.4) >> +/Rect [117.609 403.873 266.101 415.499] +/A << /S /GoTo /D (subsection.2.3.3) >> >> endobj 474 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 250.408 286.137 259.914] -/A << /S /GoTo /D (section.4.1) >> +/Rect [92.66 389.627 267.067 402.526] +/A << /S /GoTo /D (section.2.4) >> >> endobj 475 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 236.607 230.246 246.113] -/A << /S /GoTo /D (section.4.2) >> +/Rect [92.66 376.594 284.935 388.22] +/A << /S /GoTo /D (section.2.5) >> >> endobj 476 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 208.845 139.999 220.751] -/A << /S /GoTo /D (chapter.5) >> +/Rect [117.609 362.955 257.269 374.581] +/A << /S /GoTo /D (subsection.2.5.1) >> >> endobj 477 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 185.301 140.535 195.241] -/A << /S /GoTo /D (chapter.6) >> +/Rect [117.609 349.315 226.63 360.942] +/A << /S /GoTo /D (subsection.2.5.2) >> >> endobj 478 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 169.379 224.274 181.006] -/A << /S /GoTo /D (section.6.1) >> +/Rect [92.66 337.796 223.77 347.302] +/A << /S /GoTo /D (section.2.6) >> >> endobj 479 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 155.579 285.623 167.205] -/A << /S /GoTo /D (section.6.2) >> +/Rect [76.389 312.949 158.325 322.889] +/A << /S /GoTo /D (chapter.3) >> >> endobj 480 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 141.778 270.705 153.405] -/A << /S /GoTo /D (section.6.3) >> +/Rect [92.66 299.31 229.946 308.816] +/A << /S /GoTo /D (section.3.1) >> >> endobj 481 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 118.245 196.664 128.185] -/A << /S /GoTo /D (chapter.7) >> +/Rect [92.66 285.67 176.708 295.176] +/A << /S /GoTo /D (section.3.2) >> >> endobj 482 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 104.445 225.811 113.951] -/A << /S /GoTo /D (section.7.1) >> ->> endobj -488 0 obj << -/D [486 0 R /XYZ 77.386 776.032 null] ->> endobj -490 0 obj << -/D [486 0 R /XYZ 77.386 655.683 null] ->> endobj -485 0 obj << -/Font << /F23 489 0 R /F22 491 0 R /F16 449 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -532 0 obj << -/Length 1374 -/Filter /FlateDecode ->> -stream -xZMsHWpD|21.۩dS[[5X!ETo0ٍ\ 2S_=]LF 0 -cco20!(d}$+7_D;}8 3fWE'FW?# f֊ࡤԻ[>}F.PHc}5KWC$y}>Bvۣa1w<|*Bd8"1Z)`w*=76O[Qҽ_]hp,Â!Z**Jڌ` ,h}dO QX4EcYMC.(əXCl}6 a-wtQEoJ?ƅp$O3 s^Wۤr- -N\[.]ٓ -#8){=cQt"s2㽷NDcpƠ\Lut҈%E6yVp??%(m~^P)z &]qYօha \R3q -9ֻ0ehU/fet5TX Pp[M]e[檍,l :d@o;T -Ŝ#Ǵ7B0%)J. +Ov:oߋI+PtP'LAi kVE;AeG!uf@v6ap-:m)h^ba7XutIM {7ȿ8(!;M9C%e%]ak5ad&TY -/l;ꀨ /U89p8R* UyI6{cM_癮;v*>[iqEړq?q.;]*[izӫ?h;m,tYܦ_tBCƏC>1M; " ܍]SA.tLOegzVZC@aag\{Ʊv4peuZv -?˷BT1YWUq^  T yYfVz, fJyW&|q!m" -*-K9!!&$OVnzXlt X˕{u -7y$BL@|_{5 O~ -endstream -endobj -531 0 obj << -/Type /Page -/Contents 532 0 R -/Resources 530 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 443 0 R -/Annots [ 483 0 R 484 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R ] +/Rect [76.389 260.823 149.132 270.763] +/A << /S /GoTo /D (chapter.4) >> >> endobj 483 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 741.645 189.498 753.693] -/A << /S /GoTo /D (chapter.8) >> +/Rect [92.66 247.184 286.137 256.689] +/A << /S /GoTo /D (section.4.1) >> >> endobj 484 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 729.999 221.936 739.505] -/A << /S /GoTo /D (section.8.1) >> +/Rect [92.66 233.544 230.246 243.05] +/A << /S /GoTo /D (section.4.2) >> +>> endobj +485 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 219.905 176.708 229.411] +/A << /S /GoTo /D (section.4.3) >> +>> endobj +486 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [76.389 192.949 139.999 204.855] +/A << /S /GoTo /D (chapter.5) >> +>> endobj +487 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [76.389 170.21 140.535 180.15] +/A << /S /GoTo /D (chapter.6) >> +>> endobj +488 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 154.45 224.274 166.077] +/A << /S /GoTo /D (section.6.1) >> +>> endobj +489 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 140.811 285.623 152.437] +/A << /S /GoTo /D (section.6.2) >> +>> endobj +490 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 127.171 270.705 138.798] +/A << /S /GoTo /D (section.6.3) >> +>> endobj +491 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [76.389 104.445 196.664 114.385] +/A << /S /GoTo /D (chapter.7) >> +>> endobj +496 0 obj << +/D [494 0 R /XYZ 77.386 776.032 null] +>> endobj +498 0 obj << +/D [494 0 R /XYZ 77.386 658.843 null] +>> endobj +493 0 obj << +/Font << /F23 497 0 R /F22 499 0 R /F16 457 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +541 0 obj << +/Length 1379 +/Filter /FlateDecode +>> +stream +xZMsHWpDdfqN%MTު怭 +!/BIU~}z@Y"&Ur1XP~ݯ7vp5vKQhaC$'$ +hY/C"}ɣ9ejb$vo7gՏf'X{m{ȇpt:ΟqhL?y?0dG!^@a$-LEwCqiT:'$ScߵZk0¤6[;:f:,tk3b'>CѢk4Ib=֖-P 3bTIU11Eq* q\ GT:Λ!^i繟VdR t?@ل":A!~YY;]pXAd! kd[پ%?~GpcΐlF,-^_pc9 T8O'eEok_K\Dgg+@(@˺JdztbU:w}E䐛ai|=.+UE'q;/Ǡ D m&Eh䒚sȁGXoŔYIm={(z)z70KگPt-Ŭ!:ltc٢S(\&zpi\f]Ch|]*y)ZJŲ5zUaV$S9mFwtH>&?Ѐq< LtC!R/aaU:(gX+lo xuػs4Mt:vqN W^"NR7qrjJ^y)ã뵣FRSw-Y%򯓧tؤ9' k_Ew +Ð]ŏtMߴ;ٝVuQE2_/_3BCCV>1[ 43k7|3PV/ Pe" "}vk*sHp&<0uXTcHV⩼J@TR`xj,; +z_哂]h4AYŤbUqYIZ'|%jP`|,Q.Lz6 *A LjNـRQayޔm>$!3s&BF*Lf4 +endstream +endobj +540 0 obj << +/Type /Page +/Contents 541 0 R +/Resources 539 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 451 0 R +/Annots [ 492 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R ] >> endobj 492 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 716.245 205.211 725.751] -/A << /S /GoTo /D (section.8.2) >> ->> endobj -493 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 688.717 233.374 700.766] -/A << /S /GoTo /D (chapter.9) >> ->> endobj -494 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 677.072 192.25 686.577] -/A << /S /GoTo /D (section.9.1) >> ->> endobj -495 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 661.197 296.355 672.824] -/A << /S /GoTo /D (section.9.2) >> ->> endobj -496 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 637.898 199.479 647.838] -/A << /S /GoTo /D (chapter.10) >> ->> endobj -497 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 622.023 250.262 633.65] -/A << /S /GoTo /D (section.10.1) >> ->> endobj -498 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 608.269 243.913 619.896] -/A << /S /GoTo /D (section.10.2) >> ->> endobj -499 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [155.31 596.636 245.042 606.142] -/A << /S /GoTo /D (subsection.10.2.1) >> +/Rect [130.361 743.753 263.512 753.259] +/A << /S /GoTo /D (section.7.1) >> >> endobj 500 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [155.31 580.761 235.7 592.388] -/A << /S /GoTo /D (subsection.10.2.2) >> +/Rect [114.09 716.936 189.498 728.985] +/A << /S /GoTo /D (chapter.8) >> >> endobj 501 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 569.128 243.992 578.634] -/A << /S /GoTo /D (section.10.3) >> +/Rect [130.361 705.433 221.936 714.939] +/A << /S /GoTo /D (section.8.1) >> >> endobj 502 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 541.6 190.324 553.648] -/A << /S /GoTo /D (chapter.11) >> +/Rect [130.361 691.821 205.211 701.327] +/A << /S /GoTo /D (section.8.2) >> >> endobj 503 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 527.834 289.468 539.46] -/A << /S /GoTo /D (section.11.1) >> +/Rect [114.09 665.004 233.374 677.053] +/A << /S /GoTo /D (chapter.9) >> >> endobj 504 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 504.535 162.832 514.102] -/A << /S /GoTo /D (chapter.12) >> +/Rect [130.361 653.501 192.25 663.007] +/A << /S /GoTo /D (section.9.1) >> >> endobj 505 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 490.781 268.486 500.286] -/A << /S /GoTo /D (section.12.1) >> +/Rect [130.361 637.769 296.355 649.395] +/A << /S /GoTo /D (section.9.2) >> >> endobj 506 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 474.906 294.097 486.533] -/A << /S /GoTo /D (section.12.2) >> +/Rect [114.09 615.181 199.479 625.121] +/A << /S /GoTo /D (chapter.10) >> >> endobj 507 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 449.498 183.909 461.547] -/A << /S /GoTo /D (chapter.13) >> +/Rect [130.361 599.449 250.262 611.075] +/A << /S /GoTo /D (section.10.1) >> >> endobj 508 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 435.732 269.087 447.359] -/A << /S /GoTo /D (section.13.1) >> +/Rect [130.361 585.837 243.913 597.464] +/A << /S /GoTo /D (section.10.2) >> >> endobj 509 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 410.324 170.947 422.23] -/A << /S /GoTo /D (chapter.14) >> +/Rect [155.31 574.346 245.042 583.852] +/A << /S /GoTo /D (subsection.10.2.1) >> >> endobj 510 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 387.013 181.708 396.953] -/A << /S /GoTo /D (chapter.15) >> +/Rect [155.31 558.614 235.7 570.24] +/A << /S /GoTo /D (subsection.10.2.2) >> >> endobj 511 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [155.31 371.138 322.843 382.765] -/A << /S /GoTo /D (subsection.15.0.1) >> +/Rect [130.361 547.123 243.992 556.629] +/A << /S /GoTo /D (section.10.3) >> >> endobj 512 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 345.731 197.558 357.779] -/A << /S /GoTo /D (chapter.16) >> +/Rect [114.09 520.306 190.324 532.354] +/A << /S /GoTo /D (chapter.11) >> >> endobj 513 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 331.965 298.321 343.591] -/A << /S /GoTo /D (section.16.1) >> +/Rect [130.361 506.682 289.468 518.308] +/A << /S /GoTo /D (section.11.1) >> >> endobj 514 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [155.31 318.211 298.297 329.837] -/A << /S /GoTo /D (subsection.16.1.1) >> +/Rect [114.09 484.094 162.832 493.661] +/A << /S /GoTo /D (chapter.12) >> >> endobj 515 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [155.31 306.578 225.069 316.083] -/A << /S /GoTo /D (subsection.16.1.2) >> +/Rect [130.361 470.482 268.486 479.988] +/A << /S /GoTo /D (section.12.1) >> >> endobj 516 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [155.31 292.824 232.841 302.329] -/A << /S /GoTo /D (subsection.16.1.3) >> +/Rect [130.361 454.75 294.097 466.377] +/A << /S /GoTo /D (section.12.2) >> >> endobj 517 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 276.949 288.526 288.576] -/A << /S /GoTo /D (section.16.2) >> +/Rect [114.09 430.054 183.909 442.102] +/A << /S /GoTo /D (chapter.13) >> >> endobj 518 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 263.195 294.856 274.822] -/A << /S /GoTo /D (section.16.3) >> +/Rect [130.361 416.43 269.087 428.056] +/A << /S /GoTo /D (section.13.1) >> >> endobj 519 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 249.441 280.81 261.068] -/A << /S /GoTo /D (section.16.4) >> +/Rect [114.09 391.733 170.947 403.639] +/A << /S /GoTo /D (chapter.14) >> >> endobj 520 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 235.687 270.87 247.314] -/A << /S /GoTo /D (section.16.5) >> +/Rect [114.09 369.133 181.708 379.073] +/A << /S /GoTo /D (chapter.15) >> >> endobj 521 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 221.933 266.523 233.56] -/A << /S /GoTo /D (section.16.6) >> +/Rect [155.31 353.401 322.843 365.028] +/A << /S /GoTo /D (subsection.15.0.1) >> >> endobj 522 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 196.526 291.885 208.574] -/A << /S /GoTo /D (chapter.17) >> +/Rect [114.09 328.705 197.558 340.753] +/A << /S /GoTo /D (chapter.16) >> >> endobj 523 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 182.76 229.163 194.386] -/A << /S /GoTo /D (section.17.1) >> +/Rect [130.361 315.081 298.321 326.707] +/A << /S /GoTo /D (section.16.1) >> >> endobj 524 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 169.006 235.493 180.632] -/A << /S /GoTo /D (section.17.2) >> +/Rect [155.31 301.469 298.297 313.096] +/A << /S /GoTo /D (subsection.16.1.1) >> >> endobj 525 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 157.373 267.947 166.878] -/A << /S /GoTo /D (section.17.3) >> +/Rect [155.31 289.978 225.069 299.484] +/A << /S /GoTo /D (subsection.16.1.2) >> >> endobj 526 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [114.09 131.953 202.639 141.893] -/A << /S /GoTo /D (chapter.18) >> +/Rect [155.31 276.367 232.841 285.872] +/A << /S /GoTo /D (subsection.16.1.3) >> >> endobj 527 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 118.199 339.51 127.705] -/A << /S /GoTo /D (section.18.1) >> +/Rect [130.361 260.634 288.526 272.261] +/A << /S /GoTo /D (section.16.2) >> >> endobj 528 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 102.324 349.907 113.951] -/A << /S /GoTo /D (section.18.2) >> ->> endobj -533 0 obj << -/D [531 0 R /XYZ 115.087 776.032 null] ->> endobj -530 0 obj << -/Font << /F20 534 0 R /F22 491 0 R /F16 449 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -571 0 obj << -/Length 1166 -/Filter /FlateDecode ->> -stream -xZKs8+|2{IlUc5~%[&68 m_?dL|]{8|̩8`xܺY>L\͒({75/K_ǟ{qRcaѻ -~>Vp@>X_Ψgؕ?ftj'Dψ(8q/|!%UV:p/oGvZΏ@9's-4 ]jB꓿B!H}ĠAՆ@E"D,Z1r -a zN58  L7cX -B,yi]x'ӆ*9&K!T WQtG*huiE*,ڗ`wM$n ==&)d{2Zeב!2>''y?nfq^5ZZ8RbQ֠WO! M.|_2FkE ΍bGDp - -d)xنƯjvUB4"R@c vzec ~ιUm UԆWg#Ky7L~ u;PlP/Q„s$\U14|ҵy*&z5k έY?'lyV.o\~|Pdم7HTf &$ iYL2e!U[HF7!+FFrv 9ΞbwP=앜i S%Hd6DhrȽ -5# gUfdن@> >> endobj 529 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 743.753 152.28 753.693] -/A << /S /GoTo /D (chapter.19) >> +/Rect [130.361 233.411 280.81 245.038] +/A << /S /GoTo /D (section.16.4) >> +>> endobj +530 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 219.799 270.87 231.426] +/A << /S /GoTo /D (section.16.5) >> +>> endobj +531 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 206.188 266.523 217.814] +/A << /S /GoTo /D (section.16.6) >> +>> endobj +532 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [114.09 181.491 291.885 193.54] +/A << /S /GoTo /D (chapter.17) >> +>> endobj +533 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 167.868 229.163 179.494] +/A << /S /GoTo /D (section.17.1) >> +>> endobj +534 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 154.256 235.493 165.883] +/A << /S /GoTo /D (section.17.2) >> >> endobj 535 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 719.357 150.263 729.297] -/A << /S /GoTo /D (chapter.20) >> +/Rect [130.361 142.765 267.947 152.271] +/A << /S /GoTo /D (section.17.3) >> >> endobj 536 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 703.687 235.453 715.313] -/A << /S /GoTo /D (section.20.1) >> +/Rect [114.09 118.056 202.639 127.996] +/A << /S /GoTo /D (chapter.18) >> >> endobj 537 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 679.303 159.952 691.351] -/A << /S /GoTo /D (chapter.21) >> +/Rect [130.361 104.445 339.51 113.951] +/A << /S /GoTo /D (section.18.1) >> +>> endobj +542 0 obj << +/D [540 0 R /XYZ 115.087 776.032 null] +>> endobj +539 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F22 499 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +581 0 obj << +/Length 1215 +/Filter /FlateDecode +>> +stream +xZKsF+tJ<53u;1ReA6cP#_i`d%|kJ=u׏L\:?r0R=;BxTCJ8s~AutuMOniG0g̎b ۃ>uΟ RAJyw g >9ȣJ:_s!ID>r:μO2?kZ|.'*ׂG<6n?aƓaa-濈ˇ+%~LaHfEYMOYrR}s9B-\Rܚ&_n XYG}F +¦@dbumD!&]_(' , q][B+ڴ08_ +Q&(/à+'mR5H_e,ʼ8h RѤBKiKU^֋Y>y o>0Бb=9 +4| 0{_dK@{ב~&]E-tݱNJwd:ܖbV hPT6ZXV7p#'f7YТNfEI=BST&"MiJ6߆Y 2N0d vt O ëWMn;~J|,@8wሲ\)$P?Dv5t=\o?V= nͮ*ftpMʀ˱5aR֤&g0=7j Q>7N,K~k%)܋u7* ,:g]AU6J%iZ^8̂¯>=@t4& R!TY03WS ;2uX_-j-[`t:jN6<&FDlW +>*~`irsdR bN-^eJmcSE:LkHI+E (]%΋o-dXZ߳qA.qSYG;`ҋ"9gIV3][e+ӦzfWs Fq`&atp=GraoLə N, h7tm,XmfϾMKEN(8b_pAd;4Ӵ<0U!JRѥq!Ku +endstream +endobj +580 0 obj << +/Type /Page +/Contents 581 0 R +/Resources 579 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 451 0 R +/Annots [ 538 0 R 544 0 R 545 0 R 546 0 R 547 0 R 548 0 R 549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 556 0 R 557 0 R 558 0 R 559 0 R 560 0 R 561 0 R 562 0 R 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R 569 0 R 570 0 R 571 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R 577 0 R 578 0 R ] >> endobj 538 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 665.741 227.62 677.368] -/A << /S /GoTo /D (section.21.1) >> ->> endobj -539 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 652.192 253.723 663.819] -/A << /S /GoTo /D (subsection.21.1.1) >> ->> endobj -540 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 638.643 274.374 650.269] -/A << /S /GoTo /D (subsection.21.1.2) >> ->> endobj -541 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 627.214 223.758 636.72] -/A << /S /GoTo /D (subsection.21.1.3) >> ->> endobj -542 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 613.665 227.686 623.171] -/A << /S /GoTo /D (subsection.21.1.4) >> ->> endobj -543 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 597.995 233.948 609.622] -/A << /S /GoTo /D (section.21.2) >> +/Rect [92.66 741.632 312.206 753.259] +/A << /S /GoTo /D (section.18.2) >> >> endobj 544 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 584.446 253.723 596.073] -/A << /S /GoTo /D (subsection.21.2.1) >> +/Rect [76.389 719.357 152.28 729.297] +/A << /S /GoTo /D (chapter.19) >> >> endobj 545 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 570.897 274.374 582.523] -/A << /S /GoTo /D (subsection.21.2.2) >> +/Rect [76.389 694.96 150.263 704.9] +/A << /S /GoTo /D (chapter.20) >> >> endobj 546 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 557.348 249.16 568.974] -/A << /S /GoTo /D (section.21.3) >> +/Rect [92.66 679.291 235.453 690.917] +/A << /S /GoTo /D (section.20.1) >> >> endobj 547 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 543.799 253.723 555.425] -/A << /S /GoTo /D (subsection.21.3.1) >> +/Rect [76.389 654.906 159.952 666.955] +/A << /S /GoTo /D (chapter.21) >> >> endobj 548 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 530.249 274.374 541.876] -/A << /S /GoTo /D (subsection.21.3.2) >> +/Rect [92.66 641.345 227.62 652.971] +/A << /S /GoTo /D (section.21.1) >> >> endobj 549 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 518.821 223.758 528.327] -/A << /S /GoTo /D (subsection.21.3.3) >> +/Rect [117.609 627.796 253.723 639.422] +/A << /S /GoTo /D (subsection.21.1.1) >> >> endobj 550 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 494.424 150.517 504.364] -/A << /S /GoTo /D (chapter.22) >> +/Rect [117.609 614.247 274.374 625.873] +/A << /S /GoTo /D (subsection.21.1.2) >> >> endobj 551 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 478.755 178.965 490.381] -/A << /S /GoTo /D (section.22.1) >> +/Rect [117.609 602.818 223.758 612.324] +/A << /S /GoTo /D (subsection.21.1.3) >> >> endobj 552 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 467.326 230.186 476.832] -/A << /S /GoTo /D (section.22.2) >> +/Rect [117.609 589.269 227.686 598.775] +/A << /S /GoTo /D (subsection.21.1.4) >> >> endobj 553 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 453.777 214.57 463.283] -/A << /S /GoTo /D (subsection.22.2.1) >> +/Rect [92.66 573.599 233.948 585.225] +/A << /S /GoTo /D (section.21.2) >> >> endobj 554 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 440.228 219.694 449.733] -/A << /S /GoTo /D (subsection.22.2.2) >> +/Rect [117.609 560.05 253.723 571.676] +/A << /S /GoTo /D (subsection.21.2.1) >> >> endobj 555 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 426.678 204.323 436.184] -/A << /S /GoTo /D (subsection.22.2.3) >> +/Rect [117.609 546.501 274.374 558.127] +/A << /S /GoTo /D (subsection.21.2.2) >> >> endobj 556 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 413.129 221.72 422.635] -/A << /S /GoTo /D (subsection.22.2.4) >> +/Rect [92.66 532.951 249.16 544.578] +/A << /S /GoTo /D (section.21.3) >> >> endobj 557 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [117.609 399.58 207.794 409.086] -/A << /S /GoTo /D (subsection.22.2.5) >> +/Rect [117.609 519.402 253.723 531.029] +/A << /S /GoTo /D (subsection.21.3.1) >> >> endobj 558 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 383.91 246.454 395.537] -/A << /S /GoTo /D (section.22.3) >> +/Rect [117.609 505.853 274.374 517.479] +/A << /S /GoTo /D (subsection.21.3.2) >> >> endobj 559 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 361.634 154.674 371.575] -/A << /S /GoTo /D (chapter.23) >> +/Rect [117.609 494.424 223.758 503.93] +/A << /S /GoTo /D (subsection.21.3.3) >> >> endobj 560 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 345.965 199.206 357.591] -/A << /S /GoTo /D (section.23.1) >> +/Rect [76.389 470.028 150.517 479.968] +/A << /S /GoTo /D (chapter.22) >> >> endobj 561 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 334.536 249.744 344.042] -/A << /S /GoTo /D (section.23.2) >> +/Rect [92.66 454.358 178.965 465.985] +/A << /S /GoTo /D (section.22.1) >> >> endobj 562 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 310.14 126.068 319.707] -/A << /S /GoTo /D (chapter.24) >> +/Rect [92.66 442.93 230.186 452.435] +/A << /S /GoTo /D (section.22.2) >> >> endobj 563 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 294.47 232.566 306.096] -/A << /S /GoTo /D (section.24.1) >> +/Rect [117.609 429.38 214.57 438.886] +/A << /S /GoTo /D (subsection.22.2.1) >> >> endobj 564 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 280.921 205.625 292.547] -/A << /S /GoTo /D (section.24.2) >> +/Rect [117.609 415.831 219.694 425.337] +/A << /S /GoTo /D (subsection.22.2.2) >> >> endobj 565 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 267.371 258.118 278.998] -/A << /S /GoTo /D (section.24.3) >> +/Rect [117.609 402.282 204.323 411.788] +/A << /S /GoTo /D (subsection.22.2.3) >> >> endobj 566 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 253.822 231.903 265.449] -/A << /S /GoTo /D (section.24.4) >> +/Rect [117.609 388.733 221.72 398.239] +/A << /S /GoTo /D (subsection.22.2.4) >> >> endobj 567 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 240.273 213.383 251.9] -/A << /S /GoTo /D (section.24.5) >> +/Rect [117.609 375.184 207.794 384.689] +/A << /S /GoTo /D (subsection.22.2.5) >> >> endobj 568 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [76.389 217.997 131.036 227.937] -/A << /S /GoTo /D (appendix.A) >> ->> endobj -572 0 obj << -/D [570 0 R /XYZ 77.386 776.032 null] +/Rect [92.66 359.514 246.454 371.14] +/A << /S /GoTo /D (section.22.3) >> >> endobj 569 0 obj << -/Font << /F20 534 0 R /F22 491 0 R /F16 449 0 R >> -/ProcSet [ /PDF /Text ] +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [76.389 337.238 154.674 347.178] +/A << /S /GoTo /D (chapter.23) >> +>> endobj +570 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 321.568 199.206 333.195] +/A << /S /GoTo /D (section.23.1) >> +>> endobj +571 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 310.14 249.744 319.646] +/A << /S /GoTo /D (section.23.2) >> +>> endobj +572 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [76.389 285.743 126.068 295.311] +/A << /S /GoTo /D (chapter.24) >> +>> endobj +573 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 270.073 232.566 281.7] +/A << /S /GoTo /D (section.24.1) >> +>> endobj +574 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 256.524 205.625 268.151] +/A << /S /GoTo /D (section.24.2) >> >> endobj 575 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 242.975 258.118 254.602] +/A << /S /GoTo /D (section.24.3) >> +>> endobj +576 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 229.426 231.903 241.052] +/A << /S /GoTo /D (section.24.4) >> +>> endobj +577 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 215.877 213.383 227.503] +/A << /S /GoTo /D (section.24.5) >> +>> endobj +578 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [76.389 193.601 131.036 203.541] +/A << /S /GoTo /D (appendix.A) >> +>> endobj +582 0 obj << +/D [580 0 R /XYZ 77.386 776.032 null] +>> endobj +579 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F22 499 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +585 0 obj << /Length 177 /Filter /FlateDecode >> @@ -1629,21 +1642,21 @@ x hІw,uձ02Ay{u1p9 .k'}hFJ(Z'LPZm! I8ɝ8o,QAb'/< endstream endobj -574 0 obj << +584 0 obj << /Type /Page -/Contents 575 0 R -/Resources 573 0 R +/Contents 585 0 R +/Resources 583 0 R /MediaBox [0 0 595.276 841.89] -/Parent 443 0 R +/Parent 451 0 R >> endobj -576 0 obj << -/D [574 0 R /XYZ 115.087 776.032 null] +586 0 obj << +/D [584 0 R /XYZ 115.087 776.032 null] >> endobj -573 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +583 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -579 0 obj << +589 0 obj << /Length 111 /Filter /FlateDecode >> @@ -1651,24 +1664,24 @@ stream x3PHW0Pp2@B݌ ̌LB-,,-LBR5\3rR3KJ5cC0Lw34S04г44ahigai 4RbH&^.l endstream endobj -578 0 obj << +588 0 obj << /Type /Page -/Contents 579 0 R -/Resources 577 0 R +/Contents 589 0 R +/Resources 587 0 R /MediaBox [0 0 595.276 841.89] -/Parent 581 0 R +/Parent 591 0 R >> endobj -580 0 obj << -/D [578 0 R /XYZ 77.386 776.032 null] +590 0 obj << +/D [588 0 R /XYZ 77.386 776.032 null] >> endobj 6 0 obj << -/D [578 0 R /XYZ 77.386 755.708 null] +/D [588 0 R /XYZ 77.386 755.708 null] >> endobj -577 0 obj << -/Font << /F23 489 0 R /F16 449 0 R >> +587 0 obj << +/Font << /F23 497 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -584 0 obj << +594 0 obj << /Length 170 /Filter /FlateDecode >> @@ -1676,21 +1689,21 @@ stream xUν@bJ(XXR$ !ϊPI4$RX^P6ǸQmP]LFB#SX"PM3> endobj -585 0 obj << -/D [583 0 R /XYZ 115.087 776.032 null] ->> endobj -582 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> -/ProcSet [ /PDF /Text ] +595 0 obj << +/D [593 0 R /XYZ 115.087 776.032 null] >> endobj 592 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +602 0 obj << /Length 1313 /Filter /FlateDecode >> @@ -1701,15 +1714,15 @@ xڭW[o hzK~@s+ =3Ete3*FCo-?ۭKW9@Ē PW}KdWtDa5@vgi EѾh[&;up +Xv.{ްn?߱DgE 28!pZ Boh)~ -gM`~ Dধqz6`鼇Zo{g.+~,c4?7ޤhʶ{Bqr$u]/>7dQn5'lƦmgv:$PO 54q:)aN\6zg&_gx}{N?Nh5.g86.1^7 'Ļ6l1 JW%UQ%jh:4cJcr> endobj -586 0 obj << +596 0 obj << /Type /XObject /Subtype /Image /Width 201 @@ -1740,14 +1753,14 @@ x b`R\wpq)o֭#̙3/1{=HXӑ_̛BiǺ۷o'Fiieh_X$ƙSõގ5f͚EC:˫,ۑ[۫]z̵0KsցQ}eqSjK!-.Zָ~zM76=4P^d"L@> >\*߲IHXSk[XhAH8IFȧD Kސ˜a@ZŶF]j͡?ĭ#GWtڕz!|5\KX>&&y]DG9FaAna B, K[L_thƢ[d}t~N> !<tUKEp=!PšMX@55ڶmKE=[۽{iӸhq : GZC"LbK˟شzjN,' ȭO?+ضmV222`˳gx|"5饗q8D,[" 88C@NqN۲ppX:­#FΝC"> @@ -2280,7 +2293,7 @@ Pb f7=xZ^3һ8[MXDd(\} f hAքׅ7ȕ9%oѤZ#Q1 !B/'?@/~Eތv}ɣQ;7kLAy&΍j@ec¿!?u-7Ft[-්7=8Js)zɠ%+:+:d[|p B)>ˬ8qGl9nulvQ.lb}?#Be/9>B༕swy3J3m>ˎ9q"㟏~=RŖQ}LJ?cP BM:ĿP/*_:B!ԎOF)/h/Qy-"BaT6;x/B!Gnw ~B!>rȿ;K/B!¨_!B!Q=ބߗyQ_/^xŋ/^QI5oHleB!BCu__}N ;}Ӛ^_>]oQPy_՛E!BjM endstream endobj -602 0 obj << +612 0 obj << /Type /XObject /Subtype /Image /Width 1280 @@ -2294,7 +2307,7 @@ stream x1 /R$w0͓ endstream endobj -588 0 obj << +598 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] @@ -2302,23 +2315,23 @@ endobj /A << /S /GoTo /D (figure.xxx.4) >> >> endobj 10 0 obj << -/D [591 0 R /XYZ 77.386 755.708 null] +/D [601 0 R /XYZ 77.386 755.708 null] >> endobj 14 0 obj << -/D [591 0 R /XYZ 77.386 586.946 null] +/D [601 0 R /XYZ 77.386 586.946 null] >> endobj -595 0 obj << -/D [591 0 R /XYZ 77.386 546.869 null] +605 0 obj << +/D [601 0 R /XYZ 77.386 546.869 null] >> endobj 18 0 obj << -/D [591 0 R /XYZ 77.386 224.035 null] +/D [601 0 R /XYZ 77.386 224.035 null] >> endobj -590 0 obj << -/Font << /F23 489 0 R /F41 593 0 R /F16 449 0 R /F42 594 0 R /F3 596 0 R /F4 597 0 R /F44 598 0 R /F43 599 0 R /F45 600 0 R /F29 601 0 R /F20 534 0 R >> -/XObject << /Im2 586 0 R /Im3 587 0 R >> +600 0 obj << +/Font << /F23 497 0 R /F41 603 0 R /F16 457 0 R /F42 604 0 R /F3 606 0 R /F4 607 0 R /F44 608 0 R /F43 609 0 R /F45 610 0 R /F29 611 0 R /F20 543 0 R >> +/XObject << /Im2 596 0 R /Im3 597 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -606 0 obj << +616 0 obj << /Length 349 /Filter /FlateDecode >> @@ -2327,14 +2340,14 @@ x lPH!H L: ֡@o(ať"T~_Zb%fyS(٤X< |4{h]x"qH,NuQ,yIBfY\2>C& *(`tT endstream endobj -605 0 obj << +615 0 obj << /Type /Page -/Contents 606 0 R -/Resources 604 0 R +/Contents 616 0 R +/Resources 614 0 R /MediaBox [0 0 595.276 841.89] -/Parent 581 0 R +/Parent 591 0 R >> endobj -589 0 obj << +599 0 obj << /Type /XObject /Subtype /Image /Width 419 @@ -2408,15 +2421,15 @@ Fʜ bAx϶$P-ᵰ~&ϵt  L> ` 9v`hHHt@hH`Jǜ;0F$$]x2M L=؁5  }) )s: L>965ZиiAS$P-z:3 cvq$r:y),ɜ=]- p1[[[;::Rbw}}ݨJ\B:@=وVҩ9|pp^zWbM0 N:*(avלNIT;///nB;kܨ%2س_H]/sȜ8T:}ƆsX9gN "3l:BFHNuTChcU:}֖:;>>vh!*] S>I:?G1=_}gvvvԝ'''A;%FJevJ99`GPq6ء> endobj -604 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R >> -/XObject << /Im4 589 0 R >> +614 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R >> +/XObject << /Im4 599 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -612 0 obj << +622 0 obj << /Length 1519 /Filter /FlateDecode >> @@ -2428,22 +2441,22 @@ gAAG Mg L1*pj]Fޔ==3xvH:"jwXW Z6,[rnLb*nN r1%!cNY+xl7v%̇htCLlyř $ wtᇎGa<;<%Hy&=3i­Դ~:4X 3)/>9N͡<`"a*Q~`؇am!\8|3>=")z@h54^} -a.h{ga_R _G=MFy@G4DCgln:0/=q]4uYַO]G# o >_(llێߧeǴ@ihwdZ2j: endstream endobj -611 0 obj << +621 0 obj << /Type /Page -/Contents 612 0 R -/Resources 610 0 R +/Contents 622 0 R +/Resources 620 0 R /MediaBox [0 0 595.276 841.89] -/Parent 581 0 R -/Annots [ 608 0 R ] +/Parent 591 0 R +/Annots [ 618 0 R ] >> endobj -607 0 obj << +617 0 obj << /Type /XObject /Subtype /Image /Width 18 /Height 20 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 614 0 R +/SMask 624 0 R /Length 135 /Filter /FlateDecode >> @@ -2451,7 +2464,7 @@ stream xڽ ENQCvrO^zKh?HremnD)fS쩍 D(62pDIR%ʌD\uLj\j]BRc+~.ߕg)Ra7B endstream endobj -614 0 obj << +624 0 obj << /Type /XObject /Subtype /Image /Width 18 @@ -2465,7 +2478,7 @@ stream xc` L"1EkQ0Xj7 endstream endobj -609 0 obj << +619 0 obj << /Type /XObject /Subtype /Image /Width 248 @@ -2511,25 +2524,25 @@ s -M_6=YqR|; s+/(,@_"2_ endstream endobj -608 0 obj << +618 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.303 539.493 159.158 551.12] /A << /S /GoTo /D (figure.xxx.5) >> >> endobj -613 0 obj << -/D [611 0 R /XYZ 77.386 521.504 null] +623 0 obj << +/D [621 0 R /XYZ 77.386 521.504 null] >> endobj 22 0 obj << -/D [611 0 R /XYZ 77.386 238.829 null] +/D [621 0 R /XYZ 77.386 238.829 null] >> endobj -610 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F41 593 0 R /F29 601 0 R /F44 598 0 R /F43 599 0 R /F45 600 0 R >> -/XObject << /Im5 607 0 R /Im6 609 0 R >> +620 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F41 603 0 R /F29 611 0 R /F44 608 0 R /F43 609 0 R /F45 610 0 R >> +/XObject << /Im5 617 0 R /Im6 619 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -634 0 obj << +644 0 obj << /Length 1355 /Filter /FlateDecode >> @@ -2546,127 +2559,127 @@ Y 6% ^b1\%,vFAg{_f W) endstream endobj -633 0 obj << +643 0 obj << /Type /Page -/Contents 634 0 R -/Resources 632 0 R +/Contents 644 0 R +/Resources 642 0 R /MediaBox [0 0 595.276 841.89] -/Parent 581 0 R -/Annots [ 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R 625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R ] +/Parent 591 0 R +/Annots [ 625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R ] >> endobj -615 0 obj << +625 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [247.838 652.33 255.254 663.956] /A << /S /GoTo /D (chapter.3) >> >> endobj -616 0 obj << +626 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [253.648 633.959 261.064 645.586] /A << /S /GoTo /D (chapter.6) >> >> endobj -617 0 obj << +627 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [268.264 615.589 275.68 627.216] /A << /S /GoTo /D (chapter.4) >> >> endobj -618 0 obj << +628 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [268.862 597.219 281.702 608.846] /A << /S /GoTo /D (chapter.19) >> >> endobj -619 0 obj << +629 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [243.704 578.849 251.12 590.475] /A << /S /GoTo /D (chapter.7) >> >> endobj -620 0 obj << +630 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [282.19 560.479 295.03 572.105] /A << /S /GoTo /D (chapter.18) >> >> endobj -621 0 obj << +631 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [248.826 541.502 256.243 554.401] /A << /S /GoTo /D (chapter.5) >> >> endobj -622 0 obj << +632 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [279.561 541.502 295.416 554.401] /A << /S /GoTo /D (section.2.4) >> >> endobj -623 0 obj << +633 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [243.403 523.738 256.243 535.365] /A << /S /GoTo /D (chapter.12) >> >> endobj -624 0 obj << +634 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [251.001 505.368 263.841 516.994] /A << /S /GoTo /D (chapter.14) >> >> endobj -625 0 obj << +635 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [253.198 486.998 266.037 498.624] /A << /S /GoTo /D (chapter.13) >> >> endobj -626 0 obj << +636 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [299.779 468.627 312.619 480.254] /A << /S /GoTo /D (chapter.17) >> >> endobj -627 0 obj << +637 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [278.513 450.257 291.353 461.884] /A << /S /GoTo /D (chapter.16) >> >> endobj -628 0 obj << +638 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [256.736 431.887 272.591 443.514] /A << /S /GoTo /D (section.2.5) >> >> endobj -629 0 obj << +639 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [268.264 413.517 281.104 425.143] /A << /S /GoTo /D (chapter.20) >> >> endobj -630 0 obj << +640 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [288.018 395.147 295.434 406.773] /A << /S /GoTo /D (chapter.9) >> >> endobj -631 0 obj << +641 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] @@ -2674,16 +2687,16 @@ endobj /A << /S /GoTo /D (chapter.22) >> >> endobj 26 0 obj << -/D [633 0 R /XYZ 115.087 755.708 null] +/D [643 0 R /XYZ 115.087 755.708 null] >> endobj 30 0 obj << -/D [633 0 R /XYZ 115.087 217.42 null] +/D [643 0 R /XYZ 115.087 217.42 null] >> endobj -632 0 obj << -/Font << /F20 534 0 R /F45 600 0 R /F16 449 0 R /F29 601 0 R /F41 593 0 R >> +642 0 obj << +/Font << /F20 543 0 R /F45 610 0 R /F16 457 0 R /F29 611 0 R /F41 603 0 R >> /ProcSet [ /PDF /Text ] >> endobj -637 0 obj << +647 0 obj << /Length 464 /Filter /FlateDecode >> @@ -2692,18 +2705,18 @@ x `Qp9šxxK+u#pڠ%-LL!B~A#B.èV74Vex W~kiI͝JGїCt endstream endobj -636 0 obj << +646 0 obj << /Type /Page -/Contents 637 0 R -/Resources 635 0 R +/Contents 647 0 R +/Resources 645 0 R /MediaBox [0 0 595.276 841.89] -/Parent 638 0 R +/Parent 648 0 R >> endobj -635 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F29 601 0 R >> +645 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F29 611 0 R >> /ProcSet [ /PDF /Text ] >> endobj -641 0 obj << +651 0 obj << /Length 213 /Filter /FlateDecode >> @@ -2711,18 +2724,18 @@ stream xMr0{=ŕR˝Oi@<Q* E~ ۙe[&07H=34#zo*4]ԥU޽viwjZ<'S:~i[^8Lsf9Cژc^շY|ANu8s  d1;o)=.fXX{M@xf{7^@ endstream endobj -640 0 obj << +650 0 obj << /Type /Page -/Contents 641 0 R -/Resources 639 0 R +/Contents 651 0 R +/Resources 649 0 R /MediaBox [0 0 595.276 841.89] -/Parent 638 0 R +/Parent 648 0 R >> endobj -639 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +649 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -646 0 obj << +656 0 obj << /Length 1858 /Filter /FlateDecode >> @@ -2739,35 +2752,35 @@ p `3 UTe{+/̖Jֻ bŅ :> endobj -642 0 obj << +652 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [129.719 101.718 145.574 114.617] /A << /S /GoTo /D (figure.xxx.6) >> >> endobj -647 0 obj << -/D [645 0 R /XYZ 77.386 776.032 null] +657 0 obj << +/D [655 0 R /XYZ 77.386 776.032 null] >> endobj 34 0 obj << -/D [645 0 R /XYZ 77.386 755.708 null] +/D [655 0 R /XYZ 77.386 755.708 null] >> endobj 38 0 obj << -/D [645 0 R /XYZ 77.386 660.609 null] +/D [655 0 R /XYZ 77.386 660.609 null] >> endobj -644 0 obj << -/Font << /F23 489 0 R /F42 594 0 R /F16 449 0 R /F29 601 0 R /F46 648 0 R /F41 593 0 R >> +654 0 obj << +/Font << /F23 497 0 R /F42 604 0 R /F16 457 0 R /F29 611 0 R /F46 658 0 R /F41 603 0 R >> /ProcSet [ /PDF /Text ] >> endobj -652 0 obj << +662 0 obj << /Length 295 /Filter /FlateDecode >> @@ -2775,21 +2788,21 @@ stream xuOO@):z pb"įP^vvw^~o` 6&`H!!@HY1/74dUsQ^pd6C4Jc^E)_$Փ|ƪNjXLQ: VKi߭t 42rT=+H$E ikC+fO&mh[p'>;Uj"F}vQ@R]0c<~%*IIK7 <06:=_f' a_lPD,\ dm?ˢu( endstream endobj -651 0 obj << +661 0 obj << /Type /Page -/Contents 652 0 R -/Resources 650 0 R +/Contents 662 0 R +/Resources 660 0 R /MediaBox [0 0 595.276 841.89] -/Parent 638 0 R +/Parent 648 0 R >> endobj -643 0 obj << +653 0 obj << /Type /XObject /Subtype /Image /Width 768 /Height 1024 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 654 0 R +/SMask 664 0 R /Length 18661 /Filter /FlateDecode >> @@ -2870,7 +2883,7 @@ V[V cRI*Jdr璒?N)r*EJ.rJRxTaUF|ҘFdt+\y&,68y/?3JxT85(}ZNb~HN.9RQb'^7&+\iɫH!*hsssԩSh87olj4N*}vh*;v8?4˰P/Kc ^Gu(x}w8{F?x0}O ɇ<'|8sHSaB}Ҏk&H>l a&.|iRS W%_vo-~DlL^?IJJ䟸wd{K`] %U"$CQAYL}W}_`-C1Y$zU_ݎ!䓡x;,3~z~)5]DYޔu,ULVOr)m/X_eϮSU]%үn4ǏW`v'Fq޽ϹsI߿aÆh W^& 4-[Tn޼i Yf> Yf>Yf> Yf> Yf>Yf>9P,h3|8 g 72΂6ȍ|dYf>9,h3)1 g Ĵ6ȥ|jYf>9,h3|+m3{|r`@3HfA 4d@ؿ@Sz@S,zcP ?#? ? ?!c? ?!c? ? ?#??!c? ?!lgo? dl?S9x+[;][pRe)LflY-kKV\͖JG!Ae*e^U4SQq`m@8OWv]$Se׮X dyu?>DhOY׶? pNr*~퓈|.vae׶+,Tsjv*?Tn©åKT%@/ Cǐ@1@G Cǐ@1 Cǐ@1 @GCǐ@1 Cǐ@1 CG@GCǐ@1 h endstream endobj -654 0 obj << +664 0 obj << /Type /XObject /Subtype /Image /Width 768 @@ -2884,18 +2897,18 @@ stream x! v4IM endstream endobj -653 0 obj << -/D [651 0 R /XYZ 115.087 776.032 null] +663 0 obj << +/D [661 0 R /XYZ 115.087 776.032 null] >> endobj -649 0 obj << -/D [651 0 R /XYZ 115.087 719.927 null] +659 0 obj << +/D [661 0 R /XYZ 115.087 719.927 null] >> endobj -650 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R >> -/XObject << /Im7 643 0 R >> +660 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R >> +/XObject << /Im7 653 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -663 0 obj << +673 0 obj << /Length 1943 /Filter /FlateDecode >> @@ -2914,15 +2927,15 @@ H ?ΠZwtwܰ4&n~ytm (R/GgRDtd/ endstream endobj -662 0 obj << +672 0 obj << /Type /Page -/Contents 663 0 R -/Resources 661 0 R +/Contents 673 0 R +/Resources 671 0 R /MediaBox [0 0 595.276 841.89] -/Parent 638 0 R -/Annots [ 655 0 R 657 0 R ] +/Parent 648 0 R +/Annots [ 665 0 R 667 0 R ] >> endobj -656 0 obj << +666 0 obj << /Type /XObject /Subtype /Image /Width 44 @@ -2938,14 +2951,14 @@ HKœ]R1 ]e"ȋL-ޭ>*rh SSw3ɠNNh@0-=֊o\!MNGHrNxuMZD:<>3cU$,C;N|RixrH<'ț Q!n wt!x|:bKr<} endstream endobj -658 0 obj << +668 0 obj << /Type /XObject /Subtype /Image /Width 1280 /Height 866 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 670 0 R +/SMask 680 0 R /Length 10416 /Filter /FlateDecode >> @@ -2965,7 +2978,7 @@ x Ʌ ]yv N\6 п4ok ̣N/}p4u>6QmdWa?#?Vv=ܻٛ; <NOz/YO*}i"_K/ox~R9:Qvp}a?/0uL=tOpdv_+}S7f?1]}V̾Su~|;}F;>Gi>L;٣ܩln5j,tQ}&X?;p#dӕ~T~O@(GQϴc a3ξKp1/99nzٗ>z_ 7h_}m? V{_&/1ֽKu&9Ϻ w=cwa=n\6_wNoZؤ'dNmKC Wq== U}5^y6 oM<ԓ?ww]\V Ep)x@+쟿"ۼo;>"Q endstream endobj -670 0 obj << +680 0 obj << /Type /XObject /Subtype /Image /Width 1280 @@ -2980,7 +2993,7 @@ x C endstream endobj -660 0 obj << +670 0 obj << /Type /XObject /Subtype /Image /Width 252 @@ -3112,50 +3125,50 @@ RAV 3@Vg?_/YGSO=u CJ\Mn/A|pDz޸q9sK仹DnK}͗!p k֬yEj5"r\C]~9퀛x؝w|%YG:G>r%| _A?, /|ݺuiq$cݰaQGLVۼyEf)"ݭ!Z`۶m7UnknݺUDB lڴik׮=fRښ5k.0 ((I<|UV]s5~<' %rϿO:$b>ܶjժ9q^K֯_?::/z{O?#|駟~Ο?/S;o$-[oGo͛7+<3y晊ܶm!rwe.k׺g˖-'pBp3U\yw^q~ }L?l֬Ys p"eʆ;?~ }L?{0c G^_}3f8OJ{W.\"jڃ>xg_ $5<<=$ \q.A*m?A8gO ɲ]wG؎:^xp-7㇘/^u~s=O=v#L^bGSٳpfxIc;&Ae]ӟ/ݻwzO> |K-[Wƃޛ7{A͛7o޼y{A̓ޛ7zo> >> endobj -657 0 obj << +667 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [465.331 617.663 481.185 630.562] /A << /S /GoTo /D (figure.xxx.8) >> >> endobj -664 0 obj << -/D [662 0 R /XYZ 77.386 776.032 null] +674 0 obj << +/D [672 0 R /XYZ 77.386 776.032 null] >> endobj 42 0 obj << -/D [662 0 R /XYZ 77.386 755.708 null] +/D [672 0 R /XYZ 77.386 755.708 null] >> endobj -665 0 obj << -/D [662 0 R /XYZ 77.386 700.071 null] +675 0 obj << +/D [672 0 R /XYZ 77.386 700.071 null] >> endobj -666 0 obj << -/D [662 0 R /XYZ 77.386 666.693 null] +676 0 obj << +/D [672 0 R /XYZ 77.386 666.693 null] >> endobj -667 0 obj << -/D [662 0 R /XYZ 77.386 487.56 null] +677 0 obj << +/D [672 0 R /XYZ 77.386 487.56 null] >> endobj 46 0 obj << -/D [662 0 R /XYZ 77.386 221.205 null] +/D [672 0 R /XYZ 77.386 221.205 null] >> endobj -668 0 obj << -/D [662 0 R /XYZ 77.386 151.305 null] +678 0 obj << +/D [672 0 R /XYZ 77.386 151.305 null] >> endobj -669 0 obj << -/D [662 0 R /XYZ 77.386 133.097 null] +679 0 obj << +/D [672 0 R /XYZ 77.386 133.097 null] >> endobj -661 0 obj << -/Font << /F20 534 0 R /F42 594 0 R /F16 449 0 R /F44 598 0 R /F43 599 0 R /F45 600 0 R /F41 593 0 R /F46 648 0 R >> -/XObject << /Im8 656 0 R /Im9 658 0 R /Im11 660 0 R >> +671 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F16 457 0 R /F44 608 0 R /F43 609 0 R /F45 610 0 R /F41 603 0 R /F46 658 0 R >> +/XObject << /Im8 666 0 R /Im9 668 0 R /Im11 670 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -674 0 obj << +684 0 obj << /Length 325 /Filter /FlateDecode >> @@ -3167,14 +3180,14 @@ S: 3ruӲ% ~ 2 endstream endobj -673 0 obj << +683 0 obj << /Type /Page -/Contents 674 0 R -/Resources 672 0 R +/Contents 684 0 R +/Resources 682 0 R /MediaBox [0 0 595.276 841.89] -/Parent 638 0 R +/Parent 648 0 R >> endobj -659 0 obj << +669 0 obj << /Type /XObject /Subtype /Image /Width 610 @@ -3238,18 +3251,18 @@ O  pJV 0`M endstream endobj -675 0 obj << -/D [673 0 R /XYZ 115.087 776.032 null] +685 0 obj << +/D [683 0 R /XYZ 115.087 776.032 null] >> endobj -671 0 obj << -/D [673 0 R /XYZ 115.087 618.049 null] +681 0 obj << +/D [683 0 R /XYZ 115.087 618.049 null] >> endobj -672 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R >> -/XObject << /Im10 659 0 R >> +682 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R >> +/XObject << /Im10 669 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -679 0 obj << +689 0 obj << /Length 2303 /Filter /FlateDecode >> @@ -3263,21 +3276,21 @@ B҅ ޞ]ˣ2.g]U_fޣ 0j߷' qR 'H&v+$ y" f3qB"K)OjsQ U(?EP aG endstream endobj -678 0 obj << +688 0 obj << /Type /Page -/Contents 679 0 R -/Resources 677 0 R +/Contents 689 0 R +/Resources 687 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R +/Parent 696 0 R >> endobj -676 0 obj << +686 0 obj << /Type /XObject /Subtype /Image /Width 1203 /Height 227 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 687 0 R +/SMask 697 0 R /Length 4284 /Filter /FlateDecode >> @@ -3299,7 +3312,7 @@ V ,(@0T endstream endobj -687 0 obj << +697 0 obj << /Type /XObject /Subtype /Image /Width 1203 @@ -3313,33 +3326,33 @@ stream x! ̂ endstream endobj -680 0 obj << -/D [678 0 R /XYZ 77.386 776.032 null] +690 0 obj << +/D [688 0 R /XYZ 77.386 776.032 null] >> endobj -681 0 obj << -/D [678 0 R /XYZ 77.386 755.708 null] ->> endobj -682 0 obj << -/D [678 0 R /XYZ 77.386 742.629 null] ->> endobj -683 0 obj << -/D [678 0 R /XYZ 77.386 634.023 null] ->> endobj -684 0 obj << -/D [678 0 R /XYZ 77.386 518.215 null] ->> endobj -50 0 obj << -/D [678 0 R /XYZ 77.386 469.364 null] ->> endobj -685 0 obj << -/D [678 0 R /XYZ 77.386 209.776 null] ->> endobj -677 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F29 601 0 R /F46 648 0 R /F41 593 0 R /F45 600 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im12 676 0 R >> -/ProcSet [ /PDF /Text /ImageC ] +691 0 obj << +/D [688 0 R /XYZ 77.386 755.708 null] >> endobj 692 0 obj << +/D [688 0 R /XYZ 77.386 742.629 null] +>> endobj +693 0 obj << +/D [688 0 R /XYZ 77.386 634.023 null] +>> endobj +694 0 obj << +/D [688 0 R /XYZ 77.386 518.215 null] +>> endobj +50 0 obj << +/D [688 0 R /XYZ 77.386 469.364 null] +>> endobj +695 0 obj << +/D [688 0 R /XYZ 77.386 209.776 null] +>> endobj +687 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F29 611 0 R /F46 658 0 R /F41 603 0 R /F45 610 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im12 686 0 R >> +/ProcSet [ /PDF /Text /ImageC ] +>> endobj +702 0 obj << /Length 2153 /Filter /FlateDecode >> @@ -3353,22 +3366,22 @@ XS H)3&9i endstream endobj -691 0 obj << +701 0 obj << /Type /Page -/Contents 692 0 R -/Resources 690 0 R +/Contents 702 0 R +/Resources 700 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R -/Annots [ 689 0 R ] +/Parent 696 0 R +/Annots [ 699 0 R ] >> endobj -688 0 obj << +698 0 obj << /Type /XObject /Subtype /Image /Width 383 /Height 104 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 695 0 R +/SMask 705 0 R /Length 3841 /Filter /FlateDecode >> @@ -3392,7 +3405,7 @@ M 3'cTXt6.'3i|UI;։2'\MGEK(mW.,56s|ƾ|b CSmW " o _8>@ >Pg*Q6| FVVVΟ?Ç8p`Ҝ&U W5[l-KKK'OTرcD5jXռׯ_|J柪 2˅Fdܝcr 5)PD=/ɩ2D5jXռo߾/At)Kg* endstream endobj -695 0 obj << +705 0 obj << /Type /XObject /Subtype /Image /Width 383 @@ -3406,31 +3419,31 @@ stream x1 /R$w0~ endstream endobj -689 0 obj << +699 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [408.544 355.644 424.398 367.27] /A << /S /GoTo /D (figure.xxx.10) >> >> endobj -693 0 obj << -/D [691 0 R /XYZ 115.087 776.032 null] +703 0 obj << +/D [701 0 R /XYZ 115.087 776.032 null] >> endobj 54 0 obj << -/D [691 0 R /XYZ 115.087 596.188 null] +/D [701 0 R /XYZ 115.087 596.188 null] >> endobj 58 0 obj << -/D [691 0 R /XYZ 115.087 562.54 null] +/D [701 0 R /XYZ 115.087 562.54 null] >> endobj -694 0 obj << -/D [691 0 R /XYZ 115.087 533.513 null] +704 0 obj << +/D [701 0 R /XYZ 115.087 533.513 null] >> endobj -690 0 obj << -/Font << /F20 534 0 R /F29 601 0 R /F16 449 0 R /F42 594 0 R /F45 600 0 R /F44 598 0 R /F43 599 0 R /F41 593 0 R /F46 648 0 R >> -/XObject << /Im13 688 0 R /Im2 586 0 R >> +700 0 obj << +/Font << /F20 543 0 R /F29 611 0 R /F16 457 0 R /F42 604 0 R /F45 610 0 R /F44 608 0 R /F43 609 0 R /F41 603 0 R /F46 658 0 R >> +/XObject << /Im13 698 0 R /Im2 596 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -703 0 obj << +713 0 obj << /Length 2089 /Filter /FlateDecode >> @@ -3444,15 +3457,15 @@ xڵXKs NB%И/Z8Fyj$<Lr55Z)7`86q"Թ ˓- endstream endobj -702 0 obj << +712 0 obj << /Type /Page -/Contents 703 0 R -/Resources 701 0 R +/Contents 713 0 R +/Resources 711 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R -/Annots [ 696 0 R 697 0 R 698 0 R ] +/Parent 696 0 R +/Annots [ 706 0 R 707 0 R 708 0 R ] >> endobj -699 0 obj << +709 0 obj << /Type /XObject /Subtype /Image /Width 1019 @@ -3494,48 +3507,48 @@ H  @5î.> nx nx ŃƎ5B `_'@ гs^aΪ @e_'@ гs @?~! endstream endobj -696 0 obj << +706 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.284 513.294 150.7 524.92] /A << /S /GoTo /D (chapter.8) >> >> endobj -697 0 obj << +707 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [236.195 427.309 260.487 441.159] /A << /S /GoTo /D (subsection.2.3.1) >> >> endobj -698 0 obj << +708 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [115.563 374.729 131.417 386.355] /A << /S /GoTo /D (figure.xxx.11) >> >> endobj -704 0 obj << -/D [702 0 R /XYZ 77.386 776.032 null] +714 0 obj << +/D [712 0 R /XYZ 77.386 776.032 null] >> endobj 62 0 obj << -/D [702 0 R /XYZ 77.386 567.191 null] +/D [712 0 R /XYZ 77.386 567.191 null] >> endobj 66 0 obj << -/D [702 0 R /XYZ 77.386 493.322 null] +/D [712 0 R /XYZ 77.386 493.322 null] >> endobj -705 0 obj << -/D [702 0 R /XYZ 77.386 223.533 null] +715 0 obj << +/D [712 0 R /XYZ 77.386 223.533 null] >> endobj 70 0 obj << -/D [702 0 R /XYZ 77.386 105.441 null] +/D [712 0 R /XYZ 77.386 105.441 null] >> endobj -701 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F45 600 0 R /F41 593 0 R /F29 601 0 R /F46 648 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im2 586 0 R /Im14 699 0 R >> +711 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F45 610 0 R /F41 603 0 R /F29 611 0 R /F46 658 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im2 596 0 R /Im14 709 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -708 0 obj << +718 0 obj << /Length 2558 /Filter /FlateDecode >> @@ -3555,36 +3568,36 @@ i4J a0?-67YjF{SyۂSGkyrءy`( *EX endstream endobj -707 0 obj << +717 0 obj << /Type /Page -/Contents 708 0 R -/Resources 706 0 R +/Contents 718 0 R +/Resources 716 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R -/Annots [ 700 0 R ] +/Parent 696 0 R +/Annots [ 710 0 R ] >> endobj -700 0 obj << +710 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [384.81 697.874 392.335 710.773] /A << /S /GoTo /D (chapter.5) >> >> endobj -709 0 obj << -/D [707 0 R /XYZ 115.087 776.032 null] +719 0 obj << +/D [717 0 R /XYZ 115.087 776.032 null] >> endobj -710 0 obj << -/D [707 0 R /XYZ 115.087 249.002 null] +720 0 obj << +/D [717 0 R /XYZ 115.087 249.002 null] >> endobj -711 0 obj << -/D [707 0 R /XYZ 115.087 149.063 null] +721 0 obj << +/D [717 0 R /XYZ 115.087 149.063 null] >> endobj -706 0 obj << -/Font << /F20 534 0 R /F42 594 0 R /F16 449 0 R /F46 648 0 R /F29 601 0 R /F41 593 0 R >> -/XObject << /Im2 586 0 R >> +716 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F16 457 0 R /F46 658 0 R /F29 611 0 R /F41 603 0 R >> +/XObject << /Im2 596 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -715 0 obj << +725 0 obj << /Length 1868 /Filter /FlateDecode >> @@ -3595,21 +3608,21 @@ xڍWKs źOjȍk2s e1 9ʶn:wRhT5S,c(TrLf"ft #a(O}mnk2p)QE[eG!M p 񥰘?5q0!/(vE4m3$b vg^fA9V<6iHJ7USR &sҚyAH0xq endstream endobj -714 0 obj << +724 0 obj << /Type /Page -/Contents 715 0 R -/Resources 713 0 R +/Contents 725 0 R +/Resources 723 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R +/Parent 696 0 R >> endobj -712 0 obj << +722 0 obj << /Type /XObject /Subtype /Image /Width 1400 /Height 480 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 722 0 R +/SMask 732 0 R /Length 9420 /Filter /FlateDecode >> @@ -3632,7 +3645,7 @@ rҝ vI7=΀;Adg[>p[3$Iv❡9;Adgs;v vI΀ $3A =΀;Adg_T"?3`g3H   $;;$I3`g;$Iv3`g3H ncg;$Iv `g$΀ $ I38+bg$wkk.vI ӱ3H v;$Iv;$Iv;AdgI@JdgZ׵$i;p|Kos=|O[PegV IBv `g$i;?Xooyx;'w v3H䝡!9v3H3 >UMxH;$IZΐxtCC!93A xzʅ""hog;$IK I33A$;v3Hdg;v;$0v3HdgvI  I  $; "vI ,ygbg$0;$`g3Hdg3Hdg3$I; ;$3H L I3`g$`g$`g3H $Iv $ $ vI;$Iv;$Iv`ac $;F׿- $; ;7}vI`g$ $";Óg/O|T'3HdgV34ˀA$;`gxCN{>4'i71S$Iv AoC? IX3'0$lg$ɵ`;Cq:h;C$I3[}~%a;$Iv`;Cg I gz}|O;$Iv`0x! $; IΰpvI;m-3H '6f v;3v`g ;`g3v`g 3;`g v 3v;`g v;3v;`g ;`g3v`g 3;`g3v 3v;`g v;3v;`g ;3v`g 3;`g3v 3;`g v;3v;`g me7 endstream endobj -722 0 obj << +732 0 obj << /Type /XObject /Subtype /Image /Width 1400 @@ -3646,33 +3659,33 @@ stream x |kX: endstream endobj -716 0 obj << -/D [714 0 R /XYZ 77.386 776.032 null] +726 0 obj << +/D [724 0 R /XYZ 77.386 776.032 null] >> endobj -717 0 obj << -/D [714 0 R /XYZ 77.386 755.708 null] +727 0 obj << +/D [724 0 R /XYZ 77.386 755.708 null] >> endobj -718 0 obj << -/D [714 0 R /XYZ 77.386 715.53 null] +728 0 obj << +/D [724 0 R /XYZ 77.386 715.53 null] >> endobj -719 0 obj << -/D [714 0 R /XYZ 77.386 696.426 null] +729 0 obj << +/D [724 0 R /XYZ 77.386 696.426 null] >> endobj -721 0 obj << -/D [714 0 R /XYZ 77.386 432.086 null] +731 0 obj << +/D [724 0 R /XYZ 77.386 432.086 null] >> endobj 74 0 obj << -/D [714 0 R /XYZ 77.386 262.799 null] +/D [724 0 R /XYZ 77.386 262.799 null] >> endobj 78 0 obj << -/D [714 0 R /XYZ 77.386 176.413 null] +/D [724 0 R /XYZ 77.386 176.413 null] >> endobj -713 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F46 648 0 R /F48 720 0 R /F44 598 0 R /F43 599 0 R /F42 594 0 R /F45 600 0 R >> -/XObject << /Im15 712 0 R >> +723 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F46 658 0 R /F48 730 0 R /F44 608 0 R /F43 609 0 R /F42 604 0 R /F45 610 0 R >> +/XObject << /Im15 722 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -725 0 obj << +735 0 obj << /Length 2147 /Filter /FlateDecode >> @@ -3685,36 +3698,36 @@ xڽ HN߮nh]?:KPI?1hL?0~ҩuO~4l) l7s?5D)TŽ0 yFAgk <4I?Zruur$+%NFxn^4'_ endstream endobj -724 0 obj << +734 0 obj << /Type /Page -/Contents 725 0 R -/Resources 723 0 R +/Contents 735 0 R +/Resources 733 0 R /MediaBox [0 0 595.276 841.89] -/Parent 686 0 R +/Parent 696 0 R >> endobj -726 0 obj << -/D [724 0 R /XYZ 115.087 776.032 null] +736 0 obj << +/D [734 0 R /XYZ 115.087 776.032 null] >> endobj -727 0 obj << -/D [724 0 R /XYZ 115.087 755.708 null] +737 0 obj << +/D [734 0 R /XYZ 115.087 755.708 null] >> endobj -728 0 obj << -/D [724 0 R /XYZ 115.087 701.375 null] +738 0 obj << +/D [734 0 R /XYZ 115.087 701.375 null] >> endobj -729 0 obj << -/D [724 0 R /XYZ 115.087 672.308 null] +739 0 obj << +/D [734 0 R /XYZ 115.087 672.308 null] >> endobj 82 0 obj << -/D [724 0 R /XYZ 115.087 579.909 null] +/D [734 0 R /XYZ 115.087 579.909 null] >> endobj 86 0 obj << -/D [724 0 R /XYZ 115.087 368.379 null] ->> endobj -723 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F45 600 0 R /F42 594 0 R /F29 601 0 R >> -/ProcSet [ /PDF /Text ] +/D [734 0 R /XYZ 115.087 368.379 null] >> endobj 733 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F45 610 0 R /F42 604 0 R /F29 611 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +743 0 obj << /Length 1316 /Filter /FlateDecode >> @@ -3728,14 +3741,14 @@ x endstream endobj -732 0 obj << +742 0 obj << /Type /Page -/Contents 733 0 R -/Resources 731 0 R +/Contents 743 0 R +/Resources 741 0 R /MediaBox [0 0 595.276 841.89] -/Parent 737 0 R +/Parent 747 0 R >> endobj -730 0 obj << +740 0 obj << /Type /XObject /Subtype /Image /Width 1017 @@ -3805,24 +3818,24 @@ m \ S5W"Ow>FU֞(=  :{$?|/FOLkgm>-6K߽_9@_}P! @J\3˟ݝ=Ɠ:q\ܱ dn* LUoκ~lisoF_G=Ju  hd\?<_Tӵ*\UQ-^uK[҆ U5~$@Ȼ$;=+.Y?=ygՉ m>s6j|sgOf?[MRʤ ~[0[t O뇟-=jd "KO{nlwyctSmNw7 M#Es}Pk<Ŀjw=óݸ\I@nwɋXR.|kGC% jhx3<%% Ls.q\?7] D]?v^6CvI(}F8H$5}{$dy_:j$|3s3ERW ## 89o׉ >}w[%?7s}@@ wO@NS{$nj   p  {s (  Nr*\`   |?Xrů ၜ_@^  <@|}gp;zW83  Ks}@@$   @@󾶰@@{ p}  @~@@Z >  }}  p/@@޻:  @ >G@@O\>R@@%>  }}{wZG@h  Iy_[G  >G@@O\zR  -\@@> p>k H}@@  Iy_Aj@@\#  '}ma  \@@> p>;H# @s}@@$-#@@^\#  '}wu@@p}  @~}>  Ks}@@$   @@󾶰@@{ p}  @~@@Z >  }}  p/@@޻:  @ >G@@O\>R@@%>  }}{wZG@h  Iy_[G  >G@@O\zR  -\@@> p>k H}@@  Iy_Aj@@\#  '}ma  \@@> p>;H# @s}@@$-#@@^\#  '}wu@@p}  @~}>  Ks}@@$   @@󾶰@@{ p}  @~@@Z >  }}  p/@@޻:  @ >G@@O\>R@@%>  }}{wZG@h  Iy_[G  >G@@O\zR  -\@@> p>k H}@@  Iy_Aj@@\#  '}ma  \@@> p>;H# @s}@@$-#@@^\#  '}wu@@p}  @~}>  Ks}@@$   @@󾶰@@{ p}  @~@@Z >  }}  p/@@޻:  @ >G@@O\>R@@%>  }}{wZG@h  Iy_[G  >G@@O\zR  -\@@> p>k H}@@  Iy_Aj@@\#  '}ma  \@@> p>;H# @s}@@$-#@@^\#  '}wu@@p}  @~}>  Ks}@@$   @@󾶰@@{ p}  @~@@Z >  }}  p/@@޻:  @ >G@@O~  ?~04K`;? endstream endobj -734 0 obj << -/D [732 0 R /XYZ 77.386 776.032 null] +744 0 obj << +/D [742 0 R /XYZ 77.386 776.032 null] >> endobj 90 0 obj << -/D [732 0 R /XYZ 77.386 755.708 null] +/D [742 0 R /XYZ 77.386 755.708 null] >> endobj 94 0 obj << -/D [732 0 R /XYZ 77.386 661.954 null] +/D [742 0 R /XYZ 77.386 661.954 null] >> endobj -735 0 obj << -/D [732 0 R /XYZ 77.386 624.456 null] +745 0 obj << +/D [742 0 R /XYZ 77.386 624.456 null] >> endobj -731 0 obj << -/Font << /F23 489 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F16 449 0 R /F41 593 0 R /F49 736 0 R >> -/XObject << /Im16 730 0 R >> +741 0 obj << +/Font << /F23 497 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F16 457 0 R /F41 603 0 R /F49 746 0 R >> +/XObject << /Im16 740 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -740 0 obj << +750 0 obj << /Length 1635 /Filter /FlateDecode >> @@ -3837,26 +3850,420 @@ xڽXKs ":8/WZz7Z9.JkNY/R_zawC3y x>Qqo R>8˃tĎ,9jZ yɋ/0sfیrnj endstream endobj -739 0 obj << +749 0 obj << /Type /Page -/Contents 740 0 R -/Resources 738 0 R +/Contents 750 0 R +/Resources 748 0 R /MediaBox [0 0 595.276 841.89] -/Parent 737 0 R +/Parent 747 0 R >> endobj -741 0 obj << -/D [739 0 R /XYZ 115.087 776.032 null] +751 0 obj << +/D [749 0 R /XYZ 115.087 776.032 null] >> endobj -738 0 obj << -/Font << /F20 534 0 R /F41 593 0 R /F16 449 0 R /F29 601 0 R >> +748 0 obj << +/Font << /F20 543 0 R /F41 603 0 R /F16 457 0 R /F29 611 0 R >> /ProcSet [ /PDF /Text ] >> endobj -745 0 obj << +755 0 obj << +/Length 392 +/Filter /FlateDecode +>> +stream +xmMS0 ::rBSP.%2Pqt&Ko> endobj +752 0 obj << +/Type /XObject +/Subtype /Image +/Width 530 +/Height 800 +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/SMask 758 0 R +/Length 86675 +/Filter /FlateDecode +>> +stream +xXS8. DTԱ` +QGűaQDiREzzGHw6ssgƙw{}oǫQ MPR)Y: mtiy| "Dz. E=DA7[D@@ šyL׫HKbjHZ4mr6%@"Ph lZdP3i$V)0Nm5@ PC'܎t-$e4IqhK$%iіMԦfh(,P[D-J.="Ys5@ PCqԟjie6E:mMСiSuD@F$hS QjPy@@ tZ-r:!VC7G&9UR#]*EE x-rQ+ٰB +D t@$E1N ޢG6IBK P"$B#%1q-@ Pjpfug'2 49VCM֦Z\$kk!J - +z+$GkStY ͛Im_y@@: {j4o9m,nt28 aCEVؑtj5]Meע8(k 9K7Ʒ/(%(qg3DHcecj5d7W뚷18,n+2L&Mt(Ad)hmr&)b~t \PUvY3Ii"#K?G?iKadgo@?+tvbX-L12[ >H&96.YuL,H @ YƟ +@ PcdO{MNdQZZL77 5L& N#-#L +VEB1^ i!v\}I!» o>Ǽ5Z%{ǏMY,0:v`OB#w_0yPC.V9= +9}9<Ε2M0XA7nsbd`@o9 rcU{jJB<QC~Ȝ0L>]>HwRa]xc?=(LK ܾ;^N[c;37k-g,@Da¢AlJ9Gz8UD\_*QU +@oXjq B*(`UC Z8 Acbt$`>q&] N}BRvmLB ,}Z㣒R*@@ 96ҠJU䮊]ձcTjH&Rg|0iH3+T=m-C| ^T~p3ϡ}+i \P ϔ+h +@ 4=pEX5Ѐ@ P 1 +de +S @h iPk@Pk` +9P5@ j5@ P!IGͭ]%/j5lP#fjg͘3{l*DUEF;sj5n򵕞QJҤ몑ɚR:M,6|zj :@@ Eo܃ZdmoN{񓲮:wm; &F sK#6Ic Ӵj5@ PCA&UgQyf࡯Om޼ȱ=vv3S+9oE˖-\̆>@@ EƓtTgMmvJzΝH i: t9ڌ؜ke]h[h j@ QzٓUggFbFekdl,L,l +In+@ P4jd89yl9?~*IsVi!@Q#ޢ3L'ƑXjcxm2؏nF]mv͞9'E뼛?$ɮk#e}|$P~NJl1BАX4K|[UǾy|wht-^IWL cdK_],CwّCΝj]dfv[nhcvGMmoۿ}ǁ_mjٺU+60]29[6mS$xwP/F _}5?ʟ^L|=K½C ItԎ5ne)U2p2XcFofՖs7gvǎ߶u#׭j[2ok >#XjHK?,y>*~{}25$<\#>j5ps\g @+,W>ągص-[v۬޴sO^8rݑ-nܰkmWǒA?qB?ɅfVƿ>b+T 5$GScs>+5@ yW=-Ee]쏞曓W=#oe{xm^fʍg:e}zSeiec5>-m~򂼢QCR^䓩9@ `Łf{RhoBفiĎhxpڋߜ), +ss/n!:чO}OK/qBEgY[Xj|rGp\3jnKmu%+2ugj˒(G烼'lm@>lRJ[w~j|9T#N K"I$|ϡƷ$_޵$3 8] ue56hCRIYnflAO}2 HvjB /}c l@ Pj{j\pA gZT@ 545@ 5pB@ j5lJ)J@ j5@ PiDjqnn|ݖEI铀 Ԙ=OXQQYr",4,,د2 9th\5kmQ:T+b;Kc{~Q⣚jAWyT[aPKn`~_~!V@ Ԑ^z]kƬG5)5 GJ1G:J;Kc:J#6DEקݼpELdj(5hyIJ6dM쯎wkHGW%FKѽe~AU>uŵF,5#{ԌGE{l{MYie¶RA_YCro<]Z|<- ''j@ ΩĢߞ*˕V+v>{q~u|S~dy I!q +y(ߕ7nvrC6{c͐p j K,BK#;J&s֐Vk^s;%'x +~':aS6g,I  @ 352:zʢ +-,6Qع5>JqDbŜS! 8x_]h_/:??5@ PԨژ2G UIqv[LUk y2oLoyio]tS[1jBcy3f7_8n U#Nye a!y5@@ ȴ8D)LFC:r:#mݸc4U#UGiivev;4=4M1P9;\6jģz9o9!볻 =ev`"  +A ">Sim2_ a/R+oظv#SQfPfMUfMT՛f4uKlΆz~uk .{OqC1dk筄QBo>!wc7}kEy߿@ P1b-A"A"'rnsS|xQ/l+hʿېؚw1KQ'u .6mM0=QwB +/ x %lSc!˄K5އak5@@ ȴ$ .FWqD:NQMw'uU1ݥusj}DY܋ +y|xT[~3Ꞛ  ij E%P}G%{ ԀZj$5/tc;8!Ed1S\f={p鬋7ߺR~l?iȹ)Jwsyw;q ]j/c? T9 5a>T r A %qS4vӄiNUUtW<7usW.)ʼn2iʘK㐳r^҅ H >,5>gA P+DE{;! y}9`<?0 y+TI54`uG((p AAJd9cGCA'sYZ N~mMsh8Ԑ";^ +A1#vE`IX : ~5RLJ#HhEb G& s~@ %j$!2@ !0ȭ^@`e +T̡e 2PzX`,5e 2PzX`,5@2X@ 4 2P= ,e 2X`= ,e 2X`2Xje  i`,e Ԁ2X@ i`,e`O2X"}Of P @ ~A>`+.)TS(L i`,t) . Ԑ22 \B2tafx0 BE oie5@@ D Ԁd48Ԁ(㲢ğe . Ԑj +'PA +RQ"VAd\s-y PC9@ 5@@ HPQ3="j5 ed0j5>-p\ R(Xe4HPQBa,5:X @>(cn+T \0j@ǖ2\Q RGy-07 AOjXj4%_7Y(.+ jLF LezPc +6c, +s /J5 @ P 8jqP^AjFvJˎԀP8|oPNA>ˣ6 w +s '@'p΃W@ %D&[ '`,5j@>by8_^s '@ '`Y2P .2X0[ i4'ȧ<5@@4C5L +xS5q (PE jXjAhP CaVLjYyj@!P @ \ +r\. 5  J[9T iҘx+\+Z ԀuT˫?1?VAVZm5`~" _ +ձpn'bK8I畁@ \SC5`p5 j@O5ˊȯX~sP ݻߺ1=E X5ZCΐ C>,eZCBj|FRngj2gq %ƻ$ePXj s*;W? ~XZs +pP(2PZ,5K?$;ꃋ@ P5@@ H`Yz'5@_ +h}u7CZ,e{VJ@ @Pk>DX`7aJa 9Ne*qXj5`p5 `xݝ(dmZ[=[o'56{5_ze9qR$\Zˮ4 hq;/;˹5&F9cR)Z!ʊcWj˞'lo( +(,S]]][\W_WKډErښ;]e!=eQeUѝEe5 AD +1DYq,5BvM*~(_&ZUVԒ_uǮj_H敞#u ] +>jD JAGixkn@{aX뫇֣PݏBe*eű +5}ך1QM@MBo%ўҘ҈QEi7o6\wdy\ϲo~ޜ=P:PU ]屯FĶŴD6dܲ=,%I +1DYq,5pI Zk~~R kI=z6:0 T, + Hp;XIBM׼lZi߷7X:J/ϸBi85jZ!ʊc?jK듒W|.zL9q]ӆg hJV +ѹJKѽe~AU>uuҰ<6uGQ|W΢ǵ t>Z\U8yޭ/vZ'ʹ[z۩cƗT,!(+e>195cQс?}=;yS@mZg$-c;K}Ղg h+,FKi97$ HRcvwy_ozR[QGm +Pk%U|gyxٿ4 8'5soی|"!(+enĢߞ*˕V+v>{q~u|S~dy8id;'8|+s~Wv8uل15C$2,0(m(5ʱsLDz )Ѣ|P{ѷ N>qm6q96:^;B7NJ Y1DYq,5A%u!ݥ%}O9kHF+5 Es<|An]|vp)\Z FXy1!4Blyr mfnݾ5I- *KN $s:7]v\ކt?3 nm3\B9\ 'jx!ʊcjdtW%E׵y3ZYln3]=sk|ÅN‹9RC p}i񾶻l7hOѾ^t~2*—Qj$tW6J{%enFEb+nKt/\.KrʋqH =v`9붔;˥T3%&Mqң8FUڤʘ<%i-_mLx|I3* ,?wdKvRÆV꼛fKgeٓFri`fOEqP˅F-cX]0nބis$ g 6>;KDzm#&Zhn.[|EP59}*!(+e>-Ycj_u{WSN0XȲ +`[]_x@biI1W&kpf-ƺDӓמ>;\ m7~h|T}C=Ӵ̶V-EmFY3ڦgi\C_F4ÝfA0.Ly=nk|rJ d%8 UC QV@ ~#aU*)_ڒ_^c['LeM`X-07X dZxSMoSy.4i>*wtɈg|-;~fҲr@ 1DYq,BP#Q +SџP5Ea[7n2MHcZ`ffN1M2MwS(TN:M^[xnC*G\qrWI+L=¦Hf}~1uD9D>܎e~;4izal`rTHo9n8ҡvz.g`JC QVCRc0xjHD|Ve>> rCs^WFr=qF2̚̚̚7Yh<xKw >N]lc?*>_j3RuYPZ\5Yk͞˚65y{|)U,2MLӫQNw }oJ2bXj r cP}Icf,Y25P אq㩞;5atS~xSAHkAPJS +$n+6ިǓCϕO9NE 1DYq,KN#Wzj|bK/"w6"#Iw/j¿k>.WP#~^V pƻzeߪvQDn H A@A7qBƹ|Ip#_X2,x^)j{_[[YxPx5_w)ItH*ɺsLSudJ2bX~B.&yj|VVGñ騻!1Lqd r/å.ߺ~J6j"!(ݭ&^[_$LW又MKc_害wU-IGw/mBvdzTeEcq]_" jv!ʊc1 >@?J0:Fx]q߻$nJƎw0i*f½nb]58QU&;MsirA΋AӞ(K6XE$x!ƌs?i9$Քqҝ8wdc0Nx];1DYq,E d(I%ֻj%" a?NXn94|Y@&SkqX =e07> 4^ǜIҽ 8ߥaZgq d`}/A`]V^2 jR9#_,AkfBl?#2/,c.XNbcs}D#TWJCx_2X6P"5^׹*c%0X?:/v?ia#cwÇKqX=Z{cӰH)#tt~_CC QV#Hϡz+8J-?NhZ-UOْ3 +q-VNGɲ8"xƐ=uKx^oIBA%r0N2bXj( +5 FdˣTV,! +bP +2X!jXa*@ HAL2X˰BG1tN>(eP 2DԐRjqnn|ݖEIzp8j9W.x6ƽVff/טi䨏I|Qqe2PԘ=OXQQYr",4,,د2 9th(d kkۋtEuEwGtWEw6ԈK.5 x[jr*V?7*qq]eU~Q|(QMB_<0%70]/R^+=G=W =|/ j;܀°xWG(CjKjt=5Yc֣J=% xѝ1c Znl"or6*eߖ9{6u&sW'tc_l+m)i)lȸe_{XzfGeGY-5G Zk~~R kĽI=z6:0 T, + Hp;XG(2/[廿־|Z@9kR. &S*!: o/ ef23n.zP߫(Cj3jK듒W|.zL9q]ӆg h>V +щJKѽe~AU>uųDԱ+=Dm]_:עN3jq ߃Vyli(nUm^ (˾e195cQс?}=;yS@mZg$a;K}Ղg h+,Fi97!ZA'}概߿k)I}FoUrG)u^*@=O|RV1eҨD{|mڒE4^n DQ/@ |PcAES=E׽U+V|qwN +q Vp=CGqvõ. wck&6QeX`PQ}kϕcTϏeORZ EY[i.o=}4ǯ8S;i 믝9{`IZͥE?+ļS!v<`63tLnϿx]9q.|.oCYr|ՙ.["MDQ/@ P#3^(,-Λbbse-[ï'\-Mt*^̉8bM.K|.oeA{Sſ"$ÿ*uU(.s6*: .^pT^{rYS^Cj豌iw\ؙX.)961n4JeGY,5p@I1uyK,VW/0Zx{Yf0U4 Z/Y~Ȗåy My7͖;Dʜ5g~ӞVVkk 7Z0` 3XI ΢l|weFxMϵ\krdy9 (˗e-Ycj_u{WSN0XȲ +`[]_x@biI1W&kpf-ƺDӓמ>;؜L?>I!iZfxN#ًXmӳ4d.С/P#NQ3 LXjruiڼSG5>uR\ +Qq2PCG_R!*8u+}1x"oւP m:< njK1QMhl3oV mab,>2S8/6%:(ǶNʚZ`hmo؃eȴަ\h4}T6[9[{=wp̈́eKeGY,I d( n0~䐯 +50%jexoΏx\_u㎙&TT = +ai&(t7ňBsT!6r wtٓ].lʏDG9#PLT1aL3XG3LoGkȆL&GDX,/Z`RyVV 8Yx_`\'6">%Sim2_ a/R+oظv#SQfPfMUfMT՛f4uKlΆz~uk .{O/k u:Ex){:,i}rS~(jEc- aښ5feMǚ<=q ld a&ըY_~λ7fB 2,orOx@_wȹM-/E()nCn`kޝ\/QGakJׁP@7۠k!7m N8/ n3 Cq=eQMAuks|r|< + \.%ni9^%Yb){YP(˛eɩa1<5>@rh86u:"2).3؞A[etE֛[wo])?F T4݋;` 8q\5"vti+u*8QR%}N3MQLls|l4k}qK:a@ 2^,oG >PZ""^cA-.u)];i4骎N:̫ +wՔDUvT4e̥qY9/^yd2:`}0hsFQ\3q$)sh8j\Hnn\Swc WS GIw܉.ETJveGY,5ޅ0HYIjWǮq*h:Xc;kg%"l"i?CaOlGy ͷ1wGجy QqPBxס]%xr?r^\NxUsg \387b%@lyaY[vڕ4{S SiҽR:DQˣv\VNubJ,Xn ҋ? }YX,% RhVcF4,{̎k@qeٶsyq8JE8,Dc-ſiIrB+uaQUpERc%j$ +lh,C!2cx_L-Y Q@ <7 2n,I +S @j 5`J2X*0M<1PlVv D,5O @!@ r%lWVspgt&fO_W,2< NJ$׃Q˙tٕƳ7z'46{x97XƤH#G}L<2,㖁ƼyvJΒ=1eݥee~͡{EF!Hup]n8][^t,0,,<8*(,F$h]pQke2P+TmѼQ!.뮈*,Ej]QmA-Uw쪶 +^Y>RwiJU~QmHH0Ptŋzh= +=DW@ \RIwդ $V/(fh(,(h\Z]vfqKU,5ɘS~_:Uld[IlKQLKAdC-3;jԀ(8ʲl?j?}_ʿKEgb蔬JNK"sE!٪4򌛋.j!eZjRǕ/^>=ky\!YC:OBtRtAhyj@Y_eFPUOpu,%Q>k76uGQ|W΢ǵ t>Z\U8yޭ/6['ʹ[z۩쿯#e(8ʲoj dN͘zTt vߺgOޔ5PY&l+CkRA_YZ +:ˣ:VZK=DŽAb}Ey 8x6s\۸]d_&Jj@e 5XׅtFvD=M!P4v?J+N:NwuqaklX`Gcsi,n>1/5F>O.}p ӭwF/Ae))awNG&u.Pgֹ_uf"mV(dS~Qq2P /J)kf,+Xf*GY{`+ WKs"N'6[}mwnО}dT/j>I +GvF>J8if$eåW8^$\z,#8:suqm)v&K-gJM$ RDQ/@ P?ic@mRoeL]x4U6^^wt֤L c}ÅK;%;pp^aCS+uuM%E2g{#e_0货"im8UZB1 .7Co ִl„hǝc^vs-4y7->">Y^NC(8ejvhKz֘WjTf" $V_iAaZjR̕ jlcK.%=<)>6'(}bjo`g6ު@H"7=cV, t ԈftSԌ54%\]6ѵmOnc]8$Bqe Ԑ{j9B?oHJ(;}u_Le-^khț a~dz;O}CRyT̛6'v[o$X%˯MmINn/-&0Z,`Y2-<4tndDdֳxt^{\d{b3aiR9DQ7oRJ%̇9뀤B8D)LFC:r:#mݸc4U#UGiivev;4=4M1P9;\6jģz9o9!볻 =eqp!]%0'_v #QQU hif s;Q& [:Q!o4!K:T*2,o5ޗ?ߤ>!nD|Je>> rCs^WFr=qF2̚̚̚7Yh<xKw >N]lc?*>_4uRuYPZ\5Yk͞˚65y{|)U,2MLӫQNw }odJeGY,5 r cP}Icf,)6P אq㩞;5atS~xSAHkAPJS +$n+6ިǓCϕO9fB 2,o%u֚" 5\zk#F8$ErA\$w;D5ߵ +WtF ey?Lr/w+] +]S=oUdϨ{j"7$TנSt 8!\$D/h<E5=-O,NV(/p绔$Uyxd]s9:fB 2,o%ƻ CRfj ⱥpl..uEd1S\f={p鬋7ߺR~l?iȹ)Jwsyw;q j|#AqETҘW&i]uUp4EK2ѝKg_P%95U~6h\%ueFY,K;.9 DD1[\;%qS4vӄiNUUtW<7usW.)ʼn2iʘK㐳r^"Dd +t**`l? ţ 4fINS8p -ܸ\lǹ'+]8 u 8\Yj Iʄa2 _$b3XD| x` K,v怵Xt6Ej +}4˟!؂'烣a)#oЬlQ(F+R2; +Ԁ(;2n3jqԉ$f69YEJ&@"P;=큺 jx;P 3 -%yyd6 Z$2:?31,#S٘Y4/Hzfg0DY,㖁8u|_k&)SIE[&)I6fjSΆ4à[D-J.="YsrZUCb$j-r9Khrf*fAL|"#Pߞ(Cj3j0'ZG6$Q 4Y5Md04Ij8MR6'&s[NLա4јXuBxfo6R)hj4MAWpR(˸eި1/`ZՒcΦxM2ǰ"PюMAI! Z,'_ϖ:2[h)j3B]'N鿳4 EFxpmן!+Te|GY-5pF t@K\ۢ},V:_E祉d>69A(Mrf$8EWY:m2:R=lv8yPj)-_NL"#V9DQq@ Q3;>N ȱdtBMA[(NN^7qNjF'0:,]FM٤6< ?h{ܣH,tQ1L&9^Ct,E&ft LhQV+N]E :/[-{- ܿ9t}rS)=ArN9ZL@=EN l +HeZ GUj:7/HysWH]izl5(l358VCȯ]kXk`58S7c DU73DkuƾN/ojfH>i39H&T1Yʘ9#% 3-5R!Vʎ7T*c\y6^|";>]ѺhQEnfj&PCCÌZTu*{ʋ74-{׈Ksb+-T-RwV%jzgqS4WjtIm<#hש3-/$]ei/sfa}R2Ux˝wyOh]C[1h+SsonSO9uAA!5ċ=4xػHV-J1I,p frtӬ՗MI Riukm[td䜒z aL2Uk*y$t7-l-wf.O@n!$R @rnqqB@;u$'A/uΠ/ȓ@r%*tv / ]ϸC~)4.tJ!)Xrw e}]QmU~RIVFQ +52 ׀*Xe!V5]v7O+BBih Z $Gr 9H^t{*I-s!i)O3U)_De>-[#}%GcO0VW+/T*c ]7w >mDE΂6CWD4R' +'58m^y_-2 A O&@CIA7ՇdPHeSRH s>\N&,XJf'yI|Ќ +,\ck; ww^dL!G6P7$B Bɹ%sK%Bi\g lr| ,ez)8oF8"EAܞk@q2S~kO;TրPg@v/` NؠQz%ͤ1d@FaA[~c? 1,h"w A"Cd C׀ "Cd ]L. !2\pp5f6Mڕ!AӔYAPUe5iffmh`p ׭rtri׀*XeE_6[*%E'[:|}B241r%ɥ +bK奅D$)jTi)cp%*Rѥܫis$Tr$iayˉDi&"n]c~]3sWʊ&\DBND ("+,#B!GEIdE[S*swͪ*+I+4?HQȋT9Q"$ k@q"Ck,B 牁^(ie"','BVUd@'JR*T]zO|, rMDEU:Y ͬ_`EITЏ77鋡zUƱXB}4extrAs")^A+Hkqlٕ2ZP1ehQXz.|hA?`rԽ5 UƱXBwA47\,(llJ[$+'NO8!'nݞD:QeeeY&mojgv$߆! mt] %Ze5[,'%앙uFPQRߵ{ bʼsP2Xų58Fl_wl!r 2U2t \Pnl-$ʉmwjiylnpYl<#hz(NS^,Ce?gAA`i{{l[ )#1 4wTR"OM?1qAI2AREQ uXU\#[r7ch +W1 ]"OT16֫YOHX&'TjOzGqayڨ:(E [ȥA=R#ɐ7;UZ +93_4#2"CwX;+G{wo-T/0l_L{7e9$*I0HL6Stl5]uGLT*c@UM!m qm\hUk\]|\7ԠU +r$,Ckfjicd]CUbD썬Բ7H8G?[keNpttrwsqټy(FT(qXmmm5Zj{O`58V{50߫{RlN+9dvJɬHiuXy .~.^.|B]ܰjĜ?g~xxdQz]`& {F$7JSfZZ9zluv^}ƍ~~a~[Ant47%3/ c58V{ȿޡz ekKwxr`Wl6/$$xV/-vlu%[COBXjgľ*`,HoӜο@zBxZ;77O--[ػ?,,,20`ۦM!f&d 1ĤG;6en„k@q25gtҋY|gAx˙T6Һf]%JF涛B==n-j0טY ؗM\֓[4Nj$gY6-@͛68;:zl;oS:{x=5_k[VY{sɗnk@q2_y7oςw~𙦻\%[δ+ R v}Ç+jNVoqsu۾}_n~YfL +E#ܡ9$W(yxb` +Gh𶨨kiv6..ξ1IE%UI{cɜ=1Pe|1?yxtwjc$[%*u0ɞu NJ ++%J8|7HYK0Sl!]sҙܥ;A <gѲZa4Vu^[O,,=r,cw>#xyF)8}؁?Pe|%םyw ^KnRʠ|qDžl3_]€d& OQꆯ<~"%Xv A̐Τ5@ +eӳ4Vʖ4ǧj|khCq2Y}ݔΜj hMU(6WVGl &1ߡ9%gt5 WЧ8bҭXpoM]@'?ag1,oo-}p' i/ږf I(, }OYedǠ`!klw١Zp !2D2t \"Cd5`rAd k@׀!2D]pp5f4"Մ"P}!($ eX'Pe ]'@5kV){8;\6z~8#$9ckg O-tr=OVuf1#FM(IͿ{}}EMV9sTO8VYk5[īof^7~`œœEw:G.g vgu7/c:n^̻Y:Y6U?Ys 2Udds oA?jNj~ԵݕWʆ/ɻv:霫 }^H=›I.a]_k@Ħ@Kv47K؞ܞ]͇W_Y'q 2Upd8syMr2{>}4záӏNzrNw5hTn\:>x6)!9)-w K!Ms]o]}ĥ*W< >v4d4a+Pe"Ckd.i^wvͣN=>3rza':^z4VU]e`;U:zdVk١aH-n=!]tjOkͭԃ[G/g 6i7;`?uQ:|r]vmpls`@q2k5۹c7ҟ:na㱧ۦ t5*FsQl}^xE֪cێ'eĸ;f_eQ^.R h"ż1V<~1ѢE"Z.uáыeg*̏k>Uv4:g{yzpijPA}IB-ガrB|k@2k5Vț(o/mE4cH㓦f\MIɌHx(.1v?Y** $A] (>n鯯g)zw_6lLm,>x8}΀4qM\NUGfbEH\c ]<;s|vgXE*"Hr$[L^թ(r{[7fnΊuKtNTnX݋* [Oj3z魎;jҳZJ(r1Me~.Rվ'› BA횲Xsc=xAB~58V[5p=S57L>1p>y>$w}kM,3iU9R1 +%dYU&kvmql) +<_15@m^qz?sC!wLU͐޾za]c"'RTH\ubY2IUMLກc=MvȈuN58Vk/Pj25jAd?2?vvSgw V]*n+:=zs).Ɵ)IONp9wؽ ɫ4կXH}^IVN% y)ɴc~w7uWʆۊ/^>6|HGs1 ; +kAF^4u^dξ9UUs7M p'hyC{O%f?3ˑH)x.E +2jW&KP1 m-Wwd?Q?w>y򻉺ľI=-%,e/H$:Xp 2^UwC\=84cXt|0zd6˥j{f7FfYVDt81ݏT2 +>4,UƱA~ӧ~mր;T?g-hyD0t~fh9ESo+zEs- hV>58WY5r^ӻP}- +-hy)Cg ij0yi-կzv6ʂ ([xm=G_B_ [;۰2TcPY`k|'#.@ C!2t X"Cd "fv88x?MY Ǧ?l|e=y^ПB:PAeC;TuePPUŤH +Z +T +kq;A$>.A'D$u]ïO׀*XeE_Ak6@SQRTt99Q2hq}SmwYsSZ^D#(1jJR2+䤖Jf0,- mlƍk@q"Ck۟CeI+Ț>An덌ML:8l43f)&wLZe/C"vl߷/xZ . L,]KmSGe׀*XeE㵆:I]r9Y1cnm߶hOի0յ49m=]>ɢQUK| Vr1[ +")g !!{vo५mTgkks8\uu&SUڟOPe2nk5dTV(I ȋ+476 P)jPuWs_gTj=Uz-nDc+~b蘋/^I=Ơiʬ (*벌֚o43640r t Y9:9k@q"Ck -YIs"ѓ->!DYALYfRJ +"J5*4n`1KRY U49 +*bd9Q0AbRyDEQe +^kbjT7ӮUƱ ]U+eEH ccwFD\"!'LRQTQ!I#$"ynfUiٕ$DUTR(SDYsXyALYEIMGKc58VY@k5_օ@\ /rIHT!Q +*2 @%)u*k.[j +rrJ_M'ER^~IzFrrd*f/"$Y*֛P=*Xe,!CkVs2IsMsIwe|۠ZRXQVTYl  58tJeg-2 (,=Wn>0w^QR,骆4']%V n}(-J"eEҼ~LW9%Ȫd =U>~  UƱC}IcEgDdֺM[(L +A +T{l_A]A*Jr%==$y9,Ydh60b s*Xe,!C˻ [zJ.UW66ZO%j-'' P^nOT"],M673X;boPfp6:.]Af2䚋-Vtr:Nh(ڽy1e9VTUk6鯻cglT*c .vyfnNKeD6n;4|6],\JYp4Q)/JRt A͟ A^R0=6-VDX;*)ZYnȸԌBo $ (ƃ:,*AO1CUƫCqwu'լ'J,Z*g'jwmT\RPH[K-XR ꠞhhkd*-үPmrrm{*IC^/&iCI +`T$& n.Aѣq&\c:@^Y?8fG`5@R7ֵמ! 4xW^j린t*\ANDeh2tL-m kJZ\&gk"LҩNvNNn.>7ȲT +E5pWKM{oT)uLT*cxDf}%1)|K9椒)%"q{c%f678zl +qwwv +زskg s;utsEw.\% *Miizo +7oihgԖ,^|c{ ׀*Xe!5^[Qk|/ I9ҺShȁK\YWwS:s;[[?=~[ڱ=jֵl = a +ϪX`& Ms: %m^k=pXoa;hKfn6g5dҎ& UƱC~xKEt#_= 珼W|}q3gzSHvܖ(nvrwߺmoضH?{[wkl\cf204XSP?b_6qcςZOfHo/,5fMJf۴L6ojky{8Ma֮QXkSl&|mYeJ&_UƱC~xSM~ho/wy|5LC5|.WV-ĵ3 +T%xl߾슚ӹmllmݶoߗ_|t7ӸBt;whN? ?4|26^|F43`i-*`@oLlRQIUޘp2`zdqoT*c ͮ݋+P= ]^ӟVt,dDsr3U`2ٳ9!k 5޲cs?a.n@,~At +z*x)9 КQl@zELc`9 Cs2FK7jOqP[ ߚO~2TcPYpYءzWkӟ4| Gtk[2%^'?9?Q؟gvʂ{OotzS~s^{ma5 !2D2t \"Cd5`rAd k@׀!2D]pp5f4"Մ"P}!($ eX'Pe ]'@5kV){8;\6z~8#$9ckg O-tr=OVuf1#FM(IͿ{}}EMV9sTO8VYk5[īof^7~`œœEw:G.g vgu7/c:n^̻Y:Y6U?Ys 2Udds oA?jNj~ԵݕWʆ/ɻv:霫 }^H=›I.a]_k@Ħ@Kv47K؞ܞ]͇W_Y'q 2Upd8syMr2{>}4záӏNzrNw5hTn\:>x6)!9)-w K!Ms]o]}ĥ*W< >v4d4a+Pe"Ckd.i^wvͣN=>3rza':^z4VU]e`;U:zdVk١aH-n=!]tjOkͭԃ[G/g 6i7;`?uQ:|r]vmpls`@q2k5۹c7ҟ:na㱧ۦ t5*FsQl}^xE֪cێ'eĸ;f_eQ^.R h"ż1V<~1ѢE"Z.uáыeg*̏k>Uv4:g{yzpijPA}IB-ガrB|k@2k5Vț(o/mE4cH㓦f\MIɌHx(.1v?Y** $A] (>n鯯g)zw_6lLm,>x8}΀4qM\NUGfbEH\c ]<;s|vgXE*"Hr$[L^թ(r{[7fnΊuKtNTnX݋* [Oj3z魎;jҳZJ(r1Me~.Rվ'› BA횲Xsc=xAB~58V[5p=S57L>1p>y>$w}kM,3iU9R1 +%dYU&kvmql) +<_15@m^qz?sC!wLU͐޾zaF"T D)>oW*Gڊ\j*p߸\Fk$Fu;t 'YLaRU)M%%qwwoI'3'JA + G|ɮ@:VL/`Ȳ*4=^c̔s6$ޑ(jqء*Xe!/os?5u\O)1BRGeJ:Ӿp~z\sOǚˎć[+S9b a11IEҚK, %%2dph8TmmAS-i EDRR~|zW7j u8&rj+EKUHi,e.Teд̴;hXt|>,,_\ck>C]A$A#cj7up`إ¡s٣]?{:bm$y JS_(>|W7q QE +(#H 55Wh%e kI=z>RM…qk⻚Z\mĮ),B|KRi ȼ;|/^˛z/7zTB_k< Q^@ Y~e" +EΙP>Q6bUX{Gs'p)llM;ӒQ.R'DS׀*Ue!5^m߫-y8O-u ./"yS(rOF/TVqjks됣)bQωD n):CZsX2$rμ DFɒHunN"VVZ% j޹H8 ,kUƱʘB~5_oٌJڱ#1O4ZXv348B(UZBV3NF,ۃ5`wPo׼*Xe kE? +ku TN 9.W% ˜g3':rZޮͪ_-hU4Cg̯a9 +Cq2FYءya|VXڒL4JGgaVYZD0?5ZNjP\4ײa%S; _s}?ӟ޴ϡz+@x[aBkKZ^Y<,jEZ=fKh+| dǠ"+5^~gz6쟀 UTdk)gȳ +Pe ]'D7Ƞ88a\k "Cd wke#Ǒ\ta@!2t zU*C׀ZA>|Flhr䌑y\#%.<}4záӏNzrNw5hTn\:>x6)!9)-w Ku6uϻw`~yf~?l[x^,ѐZt4z(◫`LPe,5p3;KcීmLkk؉ת nDWXNv^.:Zv()wz;*͎*@w@=XOtmw_(\v]y5'Pe-dp vXͶ'[34w}xk5m%]\[^ضũA1"l`YW˻ڨjr1/ht_b(-&xֵK?pqbY#'㚏G ^\Tts.P˸ 벜b_3Qf\W ]@dGx{݇u5l+@4xv5rmruvxeFXNOfGzCv[FPQV)fK˜< <,u\\˦;9vٜ疶& 黺3\HO6Pe-d8pܩS;*RifVFz$b~N5E1kwE_Z)/6ssV[js>tw7w; +/^T_ԎgN[ewn3g͵P.c:|]⥪}O77;#5eñx,-S +sg{k@q2k5zj^o}b||I֚,5YfҪFs/c,KȲԙLRQxf,U%ZviQ-E) rfFU)N-iPe-d8pɌ'c7ݽVzs]b :aU~꫌\2@'F,e/PePXJ06O@kb•m?J;M齾/x-uXdk jjL"U_BQ{4KR16VR Wlugmsf\ jiPe-dwJDZwz/W|?yf'KjFLhթ |!Q*g +g3EۍNfq(Z*4mw{F;%&YHLIgOV˿~XTwّ0{k{e*GB!,X"X HZs8CQePD9nm^꽭-wJ% HXʹo80ܖ`\FCmA|DNZm(c8c)Ųe u=~zVχk@q2֐_rV෗ek H1#~d~Q6?ToF&  _3|6m쑎cw$y&g'$%&{m^Uv6qY ׀*Xe!kvꥢ_⑯./ꑯ~;^ۮQE +(#H 55Wh%e kI=z>RM…qk⻚Z\mĮ),B|KRi ȼ;|/^˛z^cVhu]gx1@@/As]@K1f,Ou=2g]3ӛUj Z,KAh"?Θ_Gs*AJWJ*Xe יCo 煥Ya)BkK.Z^2 LG+Yzd9ZjJh/BAr\zl.چO, 2Ul[NzӦ[Np;T r*T /¬YcV[Yw@* * *2n]|>~ }-ll PAeAQƛ"~~ܟ< U5k`yBd q !:8\kl'kiok02 C+fA@EDE@D PA@DQqm𗧷Uk؄O<|YRdy"#3T55~aD~ԃȍz_n7Ql~l߃O^n?s\䅖Ҵʂ} "ʲc6Lvߞ1WĭR 7*")~>BhUf¶ :Gud)$!#֐|k\;0hzFwDe9g+.o*CIU[n[W}jgֲ͆5EuQi)޹j +hXJF01}kr XeJK7lQm۹} +z2H.ht}]Og 0 8aVhʱEDs[FNn^*!!1L"|<}anb=C0ʒXC?]{ұ;n>gdO+9mթVo1,,ZFVѤXۭ*쪎:}.*:ѧ +#m8tTlľzd|^CUwpT27ojȘR!w)â(]een105pf8#Ka% [x*DÃKj\άog~ b֪ Gy880YT +weȪV.F6b=N<+GNEb버D:dCd1ڜ]y!#Mb^G1Ð{!$awrf)Րøy{+lxN[ku[a$ǩlD5IU 7`Cksv塔1 +;yn<OwpO^.VLԔaTu@U0-m]x^XJ̪R._<0ʒx^CkfkF%V[݇v{uBX{ݡڎ/U*O6q s")D2{ CfiDOI%hlҞ4 6ɁFYpK Y'vMXfm:^AFB3n~~w?oA/"Hz }|Cv]WyNBmnR%}){ n=Dô䰬 XzĀ;7t=„e-gdD(KYe~ k9kTCR8ܝ3wkFۊ/&6ŏY2dULLrDXoh쪵.Fd€Њʚ2C'IOzgS V0bLP4|VD% aby{GG':{98WV2~׫0ʒGxAG!֨2 A۠i 9_jy4R3Qvh3.:&9 ZwwuvZl >q}]UOB6\ +,y?bq5ޜ5D6A[!h޶E~<^sobTF +N̾АQ~z뙪-j4f{*#C,* oy] @l6J+,;`0MOk8.Knk:q5VZ]Q?}3ʒGg>Shg5eљGBP6m"jocAKRnRNEӍ;[m,b*IiNyJu.(=oAA}܆_q +ggtji ɾT]0I +RU +ci0< TOAkڂϦt܁t n DseG=<言C;@τ +cܒג,>.!wJ >@[Dg0x1@rkß; _T;dI]Qw π])=컹G,-/io(GqG1-Kd # oN%$P ~0 ڷp/4}fπF(K ]A9k̺cVUOQ +,|ʃ?xlRoYKë$!EF(2ϬL}T%R#jG_U[As8? 2b dwk< i]_k 2b d0k<# o!AF5,< K,XCo!PAFfYFO=9'|ƃX̌ReCF!=wiYz5Y%, +[,()4 +Xgc~ZzD_26Anbyե*8U%|5y,QSd5$?2L4$4F 1*2j2j*TaezG_#'zXk0 }E£tJGm2-%e668.>X\d)"#֘w֘5JځycYyc;:ӸE͋5~o5/[&qڻʚ9Q<'ɥ0S} +M[QDy]qotk| gЕjQYyU '^>S`µ21Lf4C&V#c #֘P>\s5R_dGdgɵo.*.]6֙7W6V<k{*X%M sW +{ad6fE]f& K+;;ssπo%TUU .ڱkDOϠU2W'ltq,\.j~_K\ ()2b8CU<{ءzrzwŵUӃӃn T_92qJ}>6;wVs\?G?@Td"#ה:FqQ +8%hm%>afZqYVaf6X |K5GU jrX7wEQzKК.Ќ˴vi.7qsY+YRe1EF1qޙO=t;Cu7nV'dW]eW/T=2Q>Ҵkf5I5aj0x ElZz=:X*JQ!j)5qjr8UY,J-è( G.O%{j*T~\շuV"V!hE 8ץ8nt8L0bXcYC }q߷m;xgؽ}U/-S5sd`OSAkXx k Iq!:\y=Wp٫b@b9 ã(vX =WW:zt n>_J9?|L&^>S ls.슋ԲV^+HΐMOqJ,PwOY +,aȈ55Lϛ\ھCf+,ҋY[K$4PcZd>.'pn|cUMF B4h"W^-#'7TKoeJ&`p>07r!ReIBF!蟮؝ 7Zn2qT՘ R-#h mF NDvUG4bYhhwqF;!Ͽ}52G_B5 Y4zeHGWUFB4޶#W(VcTtASY4k [?GH5fyA<{U=PMVԾ#cWKw߹P_1 t}L`]O,Q$do⩼G .5}p񐓍"Xfh]O(Z7050"f("W ^ɐU7HX.ˈDZ]#ؑ. L@kn*Cb:ț[GE 뎷0Thb?%-;Ej+ z8CK2)C(g'~(,;k1Th/x]}S6ؐ.2f.iVc#S2 4m%F&TJsx"Ka%=k:ןW}l*HFF6N7LvV~9]Me6ŴXeaG,!&P9zL6gW^H@X>ƱQ 0wz;w؝Ƣic50nn^7G +9iݖm;rXts: C)q:f&6<;wӝ/ܓW`禋G+5qUPU8L {[g.*Od)!oX +5Q UDlP5^vwċ+aDaMȜH +'^CfŐYDeRI$'M.dCMrQV&1 d ]ֶkf'ůWQL__[$F{^``r|())P!""&wۮo`|ނ[ODG).Q0-9,+#^!1'` ]aϷuut0aY˽ ٟ"C<0ʒXCҭQ N|zK-Gpwm+Vxq|x VQ,S(Q/VM;RъeO5[f[0ApsY.EF&YeƶV^j\YUpI\(KK[cWBA;!XL tfSm#>fMdD\b}<\v?X:9D3؜;&{(9w_]tZ`f}#$?46&!**asZVYy"a +~rrZS8'R-37~0 Kޤ-'v%+XuY9F-|Aw)<ȀT,fQ Z\.扯~-m5؜>Ԛw&`ར)3oAF|g7;)vTeIB~%k K_s^\Sxy7tzHt +*lA!(EJǂ.Uݤ&oc3ws2XT&ũ AD3]P.{ނ1~7ѹ $Lr 5x1}3i-`$ |day0'ֈ5MO/+.8eiA~Uk $^3_/@lNy!g +HnɿkIpK OD[nXd;W ny\ݭ^3Ip  _Jo{Jܵ~m/Ϥ税;gS.`l\#Q~ r?,JH ϡz lA`2o^<1 i.`5~3 f#Q?s4%g^`~~]P-ߨ5f1( rH>G@ru<6)SU~dy"#w;>aT)ۑ_-령xROd5iVͮi5dH5瑆7z #k A;,Ȃ,Ȃ,"\42ƛm2 dPk @ AFd5^D]oV| eb 2e5V޻*iW<7#l ЬK<[ԼHk6q[Vtn\0xvX^Xv=i{4[5>|'HqƼ)嚫';&;K?xTwTWTwμA7PU46&^cҫnt.)Y:_~cXw`a^ HkƼ*= FoTOTok]7kosd\ᕶ}m|ws=qzzOՍ* Hۃuw./nUOv\=WR;#QF<_kKk\wS.=tP>U&ʯu*zb]F7c\}N}2qة; InLMT]x +{x|ŕWm{1r`ߘ5((32bg 32Ž:h7~߽X?=P{jBŃ ,8q`Dao]zP]0>GʧT>>xݡ~n=;Af _=x"r)e9:2XcYw +'w}>~0`pFA=_}tTt9]X},1Q/~N^I^o>/Z݋t oQxHu,o`cNh7WY<##֘֘ɔi m'\S/sZwJ0U}k(V_)ܩ#{ +Zwf:$wƋgX+dtq~׳wǍ]>ǣ\>yofɮ*@z7Fz\>[Y{ܵvVb yeBF1?azDr4[aUҴʂ} "ʲc6Lvߞ1WĭQ wT5vMMd4w +?}}UTpMUGcJ2s6zgu߲%ƥ0V ?U/1@<_,YȈ55ϛ].:gdO+9mթVo1,,ZFVѤXۭ*쪎ADYDQ,T_NQ tG +֕GJۑdꞿEX#:_ܒ RHaҞ?rr{1}t+JF Yl"e2e2uFKU=c[cykݛꙗ_weG+_/X[4~˧wwVXqbIf t aQ`V=_tvNDyGYҐ5xOm/3?S BPmM{fk^?8TxͽS]?i+:;x2BCFGmgӘ9|jw社5PN*! A +=L:sEwƪWݹXy[i~f[{-{2GZ?=*,;'@<,i//.گTXvZxjf:hƷ?زE .jrm'jƫ^D,i~C,"}+ie:n?ߵѕo|3k|N/i:*?Z\w7S" @<_,i3g5^0p#Ugފ.穃2*lPW㥈[)XԥTSmztccV&{JRڤ8Sށ!hhD9"%t'(}iQePlZ(M +4[F&LVd+NoR\i[%A9!QQ(?kSx٪zRaJ=cDw)LxI :%%-9SB wQŵΒV΂LI/_C@|Ͱsx[$8ʒμ}3Tpo:wb?vlwO[O"QXuTCm2N`hODЁO,VK.FYLk;kF}%xVxNⱬaf\iܢE?÷-PV8gdheMSȨDϓ \>( ͮ8ǃ7J5b3tKԈw])0Z&\3!TPYαsDYZkGk(R/h7zNuMuMu.+h+xɵU=Uy&Yh[02qu3".wf3X\ugn **VYVCص?"lgP i6pXLc.mjiicckknCwm%J[|*= [=S9[yZWCu8Wxm{~wߝiN#Yq*ZkJӸ(AG[˰a3,+ӂ03a[Z,S>%#Ъ59,hǛ;"(=%hMy NMihep;ӂ4۸{,d)"#ָ֘~\:y{}U7z+oydZɮ*(iڵkt$0te y"6-=gB,HĨ859,%ӖaԈFVS'ƒ=C5`*XE.a[ٺh+@IA4"pVm7[}o&YRe1EF1ﬡsFO[j3tYb@퍾 :0xhāuCAst'MF WN<ٗ߰ZJ$ +MT$h*@ީ+e"`dʱ~/5N&,~"ի?LAQ +Y[EgA+tq`~-y%T,Ȉ55i|p"{?Z7=`XV;0ܸqhtqOcA;Dc9*(G W~c x6䗬&R$ )̡i"V&5P9ڊ4ؐ-,~6 +z'!`/<Vnâ֨ɢ ZT>KK4 H hTgy.(K 2b ɷy•|1;uLqZWnU_)꩚92y|gfCrgNhk YHݞ+wX e1 e{jQKK;臫+fxuC=h7/ % C> {/e{@SvEjEV_aengHaD8U%QF\E,Q0dM.OT]m!G~N<>=P{pqZJ* %ʊ(ˎ3}{^iF#%<Kk#kڦjjU8Q}fm "@<*DSpfaTHʼn_f$Ygd տT[>(I}U +{uEL褓2SHrf*È`9FYkH5ϛ].:Is_mMDX>eoڭ'r#r B_xۺ::x_Sxw!ReCWkHXF5$:)-ݹ_;sgfR[[.|.[EL"DYXJ4HH)v;lrS+cDn57\yU#C3\ r mrcb\x+CV$G%ƮZmDf~( )3tG+~=:l*#6nEgePLLTrP*fWpttZyseU].'qO +,ydL[`W̻f_̲V/SzTA{!h m!#ؽ[-Fj&:.m?~fߥ='2m=S̀¢]’̠#١bΖԜΔ-]!~5^ំk݀s +C}}CxN|5)!a>^w7_ʑad߳$g~X8>#~g3OyN~aG$D <.N+XÙ0#'jآc)U(׆Ka%5^~AU,/Qo CAʁ zo" }J?7\1tGy#mCrOf_hM?[LՖs[{3O=WF + Abz7.xK6bh1k"#7\A?wO΁ i,6Gɹ` 蚞7 & 1 QQ Ӳw #]|]]}lWӚN9yja8_&mQ0CN5H@ "ݥ#R!hƷ?زE .jrm'jƫ^D|ϼ~]qX `e_꦳uuM>j9?4E]8%_$}&9cYvPHa\ 7עpF]6Dŗ8uDgMusksk m6o'< +PIg% μ}^U|W\k/2}fEyu +!(CfJR %KU7jܭL61Ieqo%C:L AG >wLMtnï83@\m ^dLZz .Ń$*wC~4{v*̉5bmA gSpvK:@:sDYZ_hؿ>x!֘qà +:TLX>-w- nɢhKrsA +$ =/kKt}: N$W+Pi=|OQ6ӯ ECq0 8pJ;Kp$҂׬j^5^_b78@? +;!hlݐPvX"[ ( ̴4h.xt*!1˖Rx T*2H LT#ILoՃ҉X\xEDlQyC¾|I#ΝPJsT?~W=ə(AIiB%F`  z*b;OvRaRìOgybn=ɖ3GhC-Tq}:]T^^ʊ<~0.'u|:౤f.<dC1!6uצ3`XaE,YPqdze\T*cRC6TwmOΈfj&ʦ{*gza?@1~Cᗐ*҄[(-9BOZ?#Z`u~58 VRY;2gyJȢBNBHϕ_U|Tưʊ R1bщQ߱3SKUe|@s<3=l>,\ _tWPFގvC,Z1AH/??y, h0 MvYY볚؉97?ݏ2OVYAj`#5ܚ]Anғ=y8t+kgyR1*Ê3(_S.Ĝʍ?C=xʞv_?K3r%"t˶ކ7;@~,N =֡OJL.-,3"'pv0l~ } ?毗J@e\ 502f46-ۛ~Ċa"%N +9p;`OT7/\9r,\Pqĥ4Г>EH9J'%g// +b\ʍq$9Pu_4s;.n٦e(Sj1r!@jT ˄92kO(JMGu]?ff6n!M/kr/r2YɟQ&^wo2[Whˑ7)eltG{w稫Ru^)/ֱ!u̳Y69`ܗR"|K)7l/7]RTrJ 2UV.dH 9[2Yy~qwr!u)3N\MYC*cXeBȔ rۙ39;i<.9ȵ&xP,=YoM =xGiY״ebOp˴pmLL0']5#}s:dN3',-_;u^;Ohjƚ~_&k/l,v깓[xzxES8bnFdF$[{Q?t~ff%H 2UV6ߥƋ~.1:A*Y*,3T3BNv09Y=Zau4tO<'1394wHWO~ya"v"7uhTs`nn~Y ۵Ff. .gxxLlxG cz=VmW` +a ҧBQYOqnBz:Qc#ݵĜNXNXNXin:n\[މ!{ +^AWf8ڰfꦻKLI/VV~D'XGP[gd2mە -?G\ &#b$;y%5VYِ45~g[zV~?z՟>Ɵ7&BP݀-qLp~xhsԦJRzkD :zh^܉é~i72eE_PO b܏^9_:LAd -X a; [Bs4DX^ZFhI楬#Q~Ң2O8H=WL ޏZzna@e lȯدbj:^_VoddYBPE@P06Q6)Dُ$B@GtT'[:Zx3Bm".k@!(S:,)!(B w ".S7gLv&:FbnZΚ$AYLf7#[ˢk⚫nFUќsXP*++zV5>k]FǢQHA_B /X2h.Oc?I~)VB{ؙ?њSsGTQC)~ hQbțd)db>_)BRBF|3/IWWZ0kq> +mtDuTF y{}os](},eH 2VUV6?=;/ꑷyXhBP#S]pQ!+55B7,HN\"H7!8` e T+tYA< +ittF~O :ˠ,[V;X865҉eAt +w1|/%j*_. \`u^;2UV*F95pX +!,4ihDU]y +Z!%CZs"?3k(io1A`ޝcX9aR5wF`jn.2!(XtzpC0t;3S_N}Rٱy,u(t}8m6 +5|ϔTưJ{1T/ +s^g 8j +ﹱОK6-騽$EVWzYBԎXbjUZdzQtQ6/<\_q(BiRBG* +Y+2^m+;| fS+5߰2PmPYaAjGXn)]|U1LP*+ 2H ω&ieq4Hp$Zd6{}:7)q2Y8Ӱ+7w; Di偭 +5'4_2{;Tư + R{ay&QFG1ޡ¾̶ܶ^lni0lIrv!o{b\0)܎۴uX̶&r0~c& P*+82H L5λ5E涭VmVm&VBSuΦԲ~SĊԯkbYHm &Y&V"U'F`jlj5 +; 톬{ I(\aRCoC`n`B37xxe%EL.3;Miʹo!n\ɪ M&0)5"4aX&Bz`ԢnF|Sk]v`!5VYAj`,5Lj=]cqI9\x*=̫ +44U #ma9-z ٟPָN΄ڦ KFJ>HFaak,VLʸk6 50Ey:ƕf,"mC J=\l?6bVsM-ߗ)Q +jԯ1`ӵ چlR]I jmVAiFeHGY@e2VAj`,5Kew{p-Ne72 +Ǖ!ɬu7`?1u.,GߔmDEI JuYsqLakeȢjeM 2UVpdXK r֤.6m\:&p\x g7`T~/s̫6 %1sQ/>kе7 6 HzP#XjX[+70"s[ +2𸔭gBC')]$k<453+QtJ߄gw.:Z1Ox"1a:0)|K12*G&FYv J45VYAj`,5H+M< &z&DbtQUօ )<*XOS iNYQ(lp; ?'bCc|s±jtM(4]Ma;*3b@7`h9`j+yNj"kWm1zU&4K $To2UV"7J=}޶Ԁ(NkGn0O'9F'E=y>cx̐25w#|؃ D\+3IߠP0Ú1,RTg0wY{F +Na"ImiZ*lO +TưJxq/"xzR︐[d& GTF*ߧ{F`6zCyq1C4MM +|u(fI6Sn^)3UI qxXMZ ^ tw:kFi.țS`8&ak@tMS9R&>ٓ@:P&ei.-K>w|~K7w$]knPB<)/L0[SeH⯇h.YIjn簹 :o%׃/DaTJu! @RH 2UV:7MO7'}DjTPIDCJ\P`"Cx3GÈ)|x|W%¤PzߒhBZ[7O;, Z>9]j_~ 2UV&7:;+Ta--I =G3N}Hƒ x8bkBdWk,sݗtO=֢|AByv. %GS(FT *_ [gq{7h?e剚 3TuCSj1r!1T>o1TА4اqaЄj\0_*ԁU +۹^A +<ׂC9ҍJ Bz%*cXeBgE^Vupᡣ<Q?&ч.] 0oʊ R dd 5@ Qjx[36 l5Rj d *sd AjxuS)UyK:L:ϰ'@e R'@e2H r +ZBtI UP,&gŐn{}Ks=8jom BΑijȅ}qaW +>phӮZPK~Tư + Rzc0-y1c)khk+Jcܾ&rw/<\;K)#Q~O +reBpcj!JK6xb)5XUYAj`r*s VF+]*( ycBLĔ:XA@CZm*WrX;w7]2!cD@m0)|+1X%6/[RKlb={2P 50#Su$3U:J':Xcmp=2 oG r[ +%;wzBz+Q6Sxa_D'g% vT@>h.o,멈<-?yK 2UVddK :w|?鞊ꦺ[d'[m PtQUF{ez{eZ++dǧP14%\5}t cIdG)]x$6ɆdcB<lMUgŠtaYgF9Oj1#XjrTjnCL_dWtOLO9'BX7tp(r[Eu 䁼OHG_ 7Nv¤{T֎LGYcxKPyT/i+(PoGotbASqdT\ s$V}<WMuW Kx4tG&S],~XP,YMʜGHJ'@e \ 5nͮ 7H<x:ɕ3-XrᤐD|xϕ(,r P:*4zGyÒ#'\|V?$YAKQ"$J F]~nX_-Գ5 eJ 2UV.dHt0G&b]E[\?rY騮t& ;eMEN?+3Jء 3[wm9DS\?a %˄0:u}QW }ץ궛Sn_cG5үC +8g+lr/DR;ov^n>h<`@e \ 50Bsdx.fѦ2םB;lZiJUx m{kۍޛ~:4~-CKtyS)s(uM9?roy2,hktgGǮN XxZ}KcSWG}{|hgr/]C SzgZ +Tưʅ R)%?(匷3g:svzoy\rޑkMXz\xzcn@Zz;‘]NN2l+VΕ0pAAq+t}I;R6äyVgm<|mnn;-`m`oFdhF #]<뜟_Bhy8 a w{|?MOhZpd⡦廷~g9^kwg<-11tՌ9Ԟs0tpsC>~#{ vPD?AkQudہҫN.^NXlfoMpOŻ 8R9O@J2woG9x} 5VYِ_L I"H%KejZh}f#'Vk9д4p»n;&8_“.g#v8ǃN8 )/Oy_9b# VUAwUt= +bnL?ks[aV0 tOO܂tal^=WOp*P1!PԠC!11*?NM=YO86jl4 K46-_G7A0 z+;1dOr_a 3!ֹ` ZWLtw >e~_ʊ8}ԏH`j,YmRӒ`GK;aؤ}Cc'[XP*+ƋkVKG+T/}K_Fo`BP.%A hQ'?'݌\1nOm.6NTŝȌ>v/_V') kCsyDj"\Eʽƫ-T17[\!OOߏެed^ʊ>y(-/#ns%ʹ`V.Tưʆ/4#~w _7n_Obd] A Aл7D٤_ud?0 +e)/Q(o)jdF#h '::L݆L\pGHH +T54L=О1GE,狹i];kje1M \z̎l-kYpV=Fsa@e laꍬMS_O &4E\_,|eѴ9]ԟ*4R35推Yʐ@elajRsnLR<,r!( ⑩.RxAHS Z(d񊐕z!H[.NDzZȲA c|YR::OG'l}atePEKC ^mnliDw :;`5/BtM.:P*+k_^&zCpG1;\a#B9 MZ3hrmW^hhgjD tA8泽J[_oowV*cXeA~Ԙù߱ߗƯ.2!(XtzpC0t;3S_N}Rٱy,u(t}8m6 +5|ϔTưJ+Ts5u?}K]LXhό%t^"LB+ OA, }f!jG,H15* -B(H:(ЗvTƸʊ (xQo)B텊_ge|ViJk` +;@AeEExi=og#o/e7? T~TVdoEjQ @e,@f l`^csqQ 2@` +\ d 5ߐ+ &gX2@R 2PH 9yiaolX$*I(3b}~ĽJݹw 5^HnHY}¾ޫ{84ih-(]%?*cXeGXW1ۖ<Ԙ1Ԕ5|w@ϕr1~n_RۗyTth\EzϥΎƔ~`C(?_ʧJM2!u1O%IZ<@e 50B9+}.I[Fü1!M&bDv !6+L9,;S]t1"`^DX}- 6d1Eqj=PUdLGު6p7ģ +x-}Fjwٝ;=H(Yj~=LvMT~2.1JcNL/!U 9]Q +[9kOHG_ 7Nv¤{T֎LGYJ;{f{)jlh.u)tFN_Tsrȏ%ىg:w5߷RIUTɥŖeWS2.&͏?}2ots>gvQr2[iRU Rcc`W7Lf3?0ۦc{3O8??`uאX1|ZI!n +E+'6QY: *4zGyÒ#'\|V?$YAKQ"$J F]~nX_-Գ5l*Oj1r!@jT ˄92kO(JMGu]?ff6n!M/kr/r2YɟQ&^wo2[Whˑ+(eltG{w稫Ru^)/ֱ!u̳Y69`ܗR"|K)7l/7]RTrJ 2UV.dH 9[2Yy~qwr!u)3N\MYC*cXeBȔ rۙ39;i<.9ȵ&xP,=Yo`?^t/iGf43㬍-Mm}e ͈u ͈zgvKm=R1r!Qj@4V7Ok_o8y ZPCLX92'ړpfN~zwǯ:'4h5cW?/ 6};Pz -ndVhi8Z]O/I3xS;SAs'KΎ 뗧+b**Y}SJ 17&5-Ѱ]modlmrrO'~'~nAV O:w06pKl𞫧܃Nm8lvE VVYِ߆Ԙ "BQYOqnBz:Qc#ݵĜNXNXNXin:n\[މ!{ +^AWf8ڰfꦻKLI/VV~D'XGP[gd2mە -?G\ &#b$;y%5VYِ_?5?ǡn/>/#~;=_a />`BP.%A hQ'?'݌\1nOm.6NTŝȌ>v/_V') kCsyDj"\Eʽƫ-T17[\!OOߏެed^ʊ>y(-/#ns%ʹ`V.Tưʆbj6_ߨ_ }Khx7F1. +݅`KmlRʯ:IS]2au]KNUŷG52#ufUZE]֊сnCPuYR#$BP$@D]ohϘ?Mtܴɝ5I]5I& .=K ofGEw5W݌,89rI 2UV67JOKC寘GgR.fc(/, _ecy4mNEpʟe?~+=̟h詹#*!\?Boe(x1ZMs1dJЂEKu?Lq~++-a86Sk:*=>ڷt߹.O2P*+Rz>/]x{tOW^lYiLu BJE!W ߰ E:8rpp" ԃ5B-R@Ud +Β}:=a H//ZlmZ`mpcHkH'bk)Q?| +kryVY_L7j5^#ibpX +!,4ihDU]y +Z!%CZs"?3k(io1A`ޝcX9aש >os;xWgvV^:T +˄~bM^" }urL~9Kkff 8EpڧbP44װ=S:P*+ LWCwlk{NdjF_X@*dy5 l`ksҷo 2@+T 5@ !\\0<*2H O 5@j+LkM }c%1TIBC#./UlY% +Er;G#gDž^+NFkA, P*+82H Lƺu޶ƌ滣R~+gsmھ̣C*r\{.uv62FR>U*nʖ Í}|J(.I≥*cUeǴXtHZ4/ i2S&b?`G i\aa'pޑ߄W~ȟw˄m¤Lx bMtwClI-e!)W<@e"djL=TV=(`W@Ć .!uW0l)ϗ4R ED:WL}6.dYRmDP 6o>"ֿ`-5VYAj`/5̿{Tƛ{*&;oٓlY;s6BgEUiȓ駦rB^WΧmNKj&;Ja#N6<$2A`s^wm:V ˒w<[6w@e2VAj`,5T9i?N57hflrq!}Tsg +8~ "MILﺅRq^~G?,\ _tWPFގvEH9J'%g// +b\ʍq$9Pu_4s;.n٦\dSyRa Rb8]&̑X|j@QŖ\|Vj::813;uib|Y{Jv(>7$C~{jF[\EQ5,fä#<#.>G]}4]nN}H/+d:!ܗ[J9g{쒢Sj1r!@jeޒⱶEF\w +R߲kzE+ KW5m7zo<ӶD--M̹5kȽB賤ӝ:2baj覺j*Š-M]=I >ȣˍ;t'Lqjjr*P*+2H Fdx3ΜM qyG&6bqz ^xWSi 68C{CF Gv]:E:(oN!(0pAAq+t}I;R6äyVgm<|mnn;-`m`oFdhF #]<뜟_Bhy8 a wWԠAkO~~Ñ ~޾xM+]!֞L sU3g8CD?S{9O^珸5ѺCfGeƢoJ;x9aW4=#&HfKfc8D_c;#M|?Q|?WzZy)+Hz_j䡴(h1GN2Rϕd6ӂV[XP*+ktZx6QBw!(" (zR(kGTWLX u#wR:EU-QzzD-!DwUǶVGibtxk A!jF3&hE|17~rgMRWM,}qK›ّe5qU7# Ϊh9\Ra 5 5:5h6:BZp}U1GTwQIZH֌;ȎrN#QFïE$K!;YJN-XT7Jä7yOgҲ_aXi3&2ZXL ܓ}KBAd)Cj!yXhBP#S]pQ!+55B7,HN\"H7!8` e T+tYA< +ittF~O :ˠ,[V;X865҉eAt +w1|/%j*_. \`u^;2UV*dXH +BYhКF'5hB @8CP#JD(tEEf 17ePb +6~{ ;ǰr<-P*+2H Ư.2!(XtzpC0t;3S_N}Rٱy,u(t}8m6 +5|ϔTưJz8JQRy=73cF%dJBS2BY R_ Bx6 +5ð<%rk1b#3`-5^j,t[P{-WY1UZZ(߶B2PmPYQAj`65^Z~Y{H[KaY  [Tq0*2P 35<Эl`\mk}o 2X:@H 7?.^ v5Z J`OVYAj`25Uc &%5f 5e 7m-s\)?{DneWks#u1e=ؐ1ϗRApSLHnLS:DitIҦO,P*+82H LPe`hKE֢~0pLH2Ak>"hHM +S ?y&Ct]&dh4&oe"k3FeKj) YLQܿZavT*c&ScdzAGDk ."6\fp ü!^`Ka_}]vNO(Ro%JֹfT?쫞Ltq!CΒ +h#gyͅy=;oTưʊ R{aVg3ST.hLoLkeETN?5jG_w>nvBXR3Q +tMt!٘kE0"]X,ٲQ* RcQMHqɶEOgD3}5]e=3=尟 cm xߘ}?SKmiBNbz-dV-,>|QWÍ0i<.#SQxݮ{,,+$\>JxR&2UV|dHٕψN힙^}(,390>NgaJ2J v+M31OfIՎ 2Go%'QcqTwŘdGIytn=U Ȳ?/_\N̹~~4~Tưʅ R* rpÁ\Y;S"QVPDr!'TnrWܼ)O] +E\6ܡcIvbY]-T@Uerie9ԄIgdEL'O]4\_LV*cUeB>ؕ! 5SǧLiތX5&V #5F>y,9pRȁ{>yʉMefNf.'.MQ^.BI7Uď?98.߯8c4~i|iV#Rng#¤Qwq'=v6l "ʓ@e \ 502aLS-4~RQ]١M~#{ vPD?AkQudہҫN.^NXlfoMpOŻ 8R9O@J2woG9x} 5VYِ_N>?~R"H%KejZh}f#'VyTSGJkkQTp!JʚRwkV[kHbX7a aI–XEA!l%A0".m֧{P<*h%9ޛ|LZ:OpqYNLt;Lr;E$޶=\ G +!:tWY,%UWFmWwi$y&B"!8aӢn+܏)o/q$R$^lN(@ ~10Cl*c w ̻KbXFsb-3k~/SIZx; +{Qawn۹de9i9i9irSf8m!-ܾ8ڎWv#~}k\)!3ͣB_~%_#!K/E7w{"Ͳ8gd+i$;6{>%}+?pʁхՉk*XCk<=_8azU2Q'R2 Ntu-SEQ%'^/V]C2"%1#_ b}~ w%ָLDPS.Jo=i^ji +n{Ejj L;ŏNaz%1&3^CcUx9-e5p Xe!ua3Pk' Gxȯ&5yQ +@,aP;V2W&^^Hzt#?=h~Q#@`5RfӥHeI;3`GVs~ʆ2֐_p 0\v wרIdbС.xAh5 +z˔6a*mb͚nGa8svsmisl3d @ :yzBHpD'BF[26NMIiEZL_Xp%3<ȮtkO} pF'WـUPx٧|16Öݕ\c.40f"a`b H' &8Ek +}J'N;heg ioAQិ2vuexШCB% D?Qp a` ȟ.3[{fo&o5&$ʢaea:!Æ6ł4ڰ)WـU]kFxH^k\xOh0ܒK x]w 3><3#o *xIm ˄v l*7!(K^ +Ya&<̦PX5[c<TWd*Oa? +k7<Tdk + wE`F[X@UƑua ^e)}<5 +_GƑqd| +w q82yGBHV 2x> 22k(Wؖ-٧u#4%lӰym,v۹irhIn\O9*6\紟Oobx7CعѪҸؐ ȸkk*%p!YIfhڴ۵mNYojd6SMI7oզݬv +Bm]FWuZRUViR%][cHl*929CEFX[ϹUݥȾ;MF:AGe$2q ݀Wwߪ}ŽJɭ:QwEH*9vS^ƹYɗumqq w t[K_|Iv ;\$̐TYײ*U– ZCxXj_}GɃ¾|H*QJze:ѭA̎UY7*2[|v\WـUgd5 5/_Ssnu-ܻ͹Q5*IQ]6^Ji\/cjJG_5l~|羺K6 5"]J YR*"eQB]5>jqq w s B䎄k~}һ{^DIR|AtTnT\rj ¸9}*|/xXko誺ی#{-ţ3U}UUXZ`pS&\eVYq0ɜR 5hv@Gz+\wm>l^s2S!BHo*ݖ~u2BM:7RzD\PR)f -d5 5Vxh:D7nop=t<+mjuh(N p'Hgda9#`i̯ܳms`GE_CJEGFg%f3UsւJ2O.*ыөأG1GbwGJ?M 'b5p Uel!aAM5W˕|q<>*YK)Zƒ$Ǔi_$V8ڻ. v|^MhMVd+r:ݚ{zCmErmAL?Hx*#Nw}o\nyz;ؖ_GvظE_3WRoߑy}~=&;lX!\f86VW;Z?tٴ=g?K ]pĜIՑk*B]\C+w=9vCeh]GJMM9mkx4ҤVN+>XnSJهȫ--),޽-dEx>^sjmN$vhrU&ӗONb[g5Gݣ-Iʈ7i<ʅkڊ.ae*-d5 5xZ {?ZْۖrI9Ϭ=llm(Ӭ\f]iIX" m|(-b\;~6O8MNS3_Mﶛ%qBi|ѕw/t ^j"w]'uqZJ^9uR#ێy9M +?noe2_pO3ƩkLZ*:s~^-氞bM ibr2JR7׽^NR{;Wn_9N-[1 ɻ?FQocͪ; +04n*+F<1r,B_J9|2ŎOHe.V8Kl݀U6`]#e~wgi5Q%}+?pʁхՉk*XC~-兿>{Fx|WR2 Ntu-SEQ%'^/V]C2"%1#_ b}~ w%ָLDPS.Jo=i^ji +n{Ejj L;ŏNaz%1&3^CcUx9-e5p Xe!ueXÞ<^}+.PhI:/ +R *x'|JċgTMi%^eVn)4ĩ.\cVIrRVW./aE-Yyx׸H0cXtZue#M@-kh ͥ"VunD$\.5Ȗ,QՉk*XCXYN˴/w!Si/DƓYwӻ'/==UsAZzAuTN +a.2N@Eo%l_ m!(QiȤLOⷄ(OOڢߺrXm t)RY A>|,51p[^8u9Wޢ_ t^Z2MJfAX@&Qή\)d[:ی68΁}^R1ѧPVMhgRgZQ;0Vx0\L'0+Ś=fFg~ U6`1%́ 'Y34ỳg`?ɷ l(p[\eV;ojk H ,x<aDjL/t!5Γ#Ln}&隁L`+Y 鰆< &hvt\eV#ȣjN#\C5E4X`nI%a> +stream +x! &^ Y(o +endstream +endobj +756 0 obj << +/D [754 0 R /XYZ 77.386 776.032 null] +>> endobj +98 0 obj << +/D [754 0 R /XYZ 77.386 755.708 null] +>> endobj +757 0 obj << +/D [754 0 R /XYZ 77.386 728.769 null] +>> endobj +753 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R >> +/XObject << /Im17 752 0 R >> +/ProcSet [ /PDF /Text /ImageC ] +>> endobj +761 0 obj << +/Length 194 +/Filter /FlateDecode +>> +stream +xMR1 D{J8rg<.L 2@C +*~N=ݚ"HEHgD)Qّ^9rAvWw6yY_B'q+sTcc/BV?n6O`kW}:i Z`9c; %=3s֑ZGECO}fHD[}69/ +endstream +endobj +760 0 obj << +/Type /Page +/Contents 761 0 R +/Resources 759 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 747 0 R +>> endobj +762 0 obj << +/D [760 0 R /XYZ 115.087 776.032 null] +>> endobj +759 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +766 0 obj << /Length 1608 /Filter /FlateDecode >> stream -xڥXKo8 WxoVe;sQ v6=82c~lKǞ"-rIN8xs^ޜ|-d bH Mt3ŸM|[EI;ciabRi R \{+*qLHXIvh<9 HY*u)Ydnv1Rp/5< g߾3)򮢙/QZhO3yby(wwU]횎gSs`|xƙ1lktI%1I‚r(g9\,<ǝ<Ƹ9LjD$6^pPk(rܧq]튱2`ڃRBbg̙{o:D/hCiS~MZxRnMvnWCUXo%KTNqlW-W<&S^yb; m[4*ز Y8HmIU1 Iziz4f\dߑ<+kOх0M]>=;Yȕ yӝÏjmQ㯫8Xmp*8>}(?B%ŲQe7TCJٷg?Rf T$K,ς',1up ̵ ,eY"Nو4O o K <y AxRyb"W +xڥXKo8 WxoVe;sQ v6=82c~lKǞ"-rIN8xs^ޜ|-d bH Mt3ŸM|[EI;ciabRi R \{+*qLHXIvh<9 HY*u)Ydnv1Rp/5< g߾3)򮢙/QZhO3yby(wwU]횎gSs`|xƙ1lktI%1I‚r(g9\,<ǝ<Ƹ9LjD$6^pPk(rܧq]튱2`ڃRBbg̙{o:D/hCiS~MZxRnMvnWCUXo%KTNqlW-W<&S^yb; m[4*ز Y8HmIU1 Iziz4f\dߑ<+kOх0M]>=;Yȕ yӝÏjmQ㯫8Xmp*8>}(?B%ŲQe7TCJٷg?Rf T$K,ς',1up ̵ ,eY"Nو4O o K <y AxRyb"W ^"Q:1.L%]cج@>F@e yNĻ 4UK'_[0:,#F.@W'Xe *>E LXx~i&i'F6#ik(Ouw0ud:Ph! endstream endobj -744 0 obj << +765 0 obj << /Type /Page -/Contents 745 0 R -/Resources 743 0 R +/Contents 766 0 R +/Resources 764 0 R /MediaBox [0 0 595.276 841.89] -/Parent 737 0 R +/Parent 747 0 R >> endobj -742 0 obj << +763 0 obj << /Type /XObject /Subtype /Image /Width 987 /Height 513 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 748 0 R +/SMask 769 0 R /Length 16019 /Filter /FlateDecode >> @@ -3934,7 +4341,7 @@ p UZ֍OGȫ&iE11[^w_mk^A-Tpą|Ϸ[hX"F!>E%"\[B~W붹e#@9@B "#!F 9@r !@=.d/+>qr 9/szE`铒gWBr OvWW~+ 'תuډW^`Ɛ;}V`BRۏbBX !1~3VB@ !7dC^)+M$؞1&<99!CqB's`|fY~uX# !@B!9Br 9@r !@B 9@ endstream endobj -748 0 obj << +769 0 obj << /Type /XObject /Subtype /Image /Width 987 @@ -3948,24 +4355,24 @@ stream x!  'Y endstream endobj -746 0 obj << -/D [744 0 R /XYZ 77.386 776.032 null] ->> endobj -98 0 obj << -/D [744 0 R /XYZ 77.386 755.708 null] +767 0 obj << +/D [765 0 R /XYZ 77.386 776.032 null] >> endobj 102 0 obj << -/D [744 0 R /XYZ 77.386 661.296 null] +/D [765 0 R /XYZ 77.386 755.708 null] >> endobj -747 0 obj << -/D [744 0 R /XYZ 77.386 623.254 null] +106 0 obj << +/D [765 0 R /XYZ 77.386 661.296 null] >> endobj -743 0 obj << -/Font << /F23 489 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F16 449 0 R /F41 593 0 R /F46 648 0 R >> -/XObject << /Im17 742 0 R /Im2 586 0 R /Im11 660 0 R /Im5 607 0 R >> +768 0 obj << +/D [765 0 R /XYZ 77.386 623.254 null] +>> endobj +764 0 obj << +/Font << /F23 497 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F16 457 0 R /F41 603 0 R /F46 658 0 R >> +/XObject << /Im18 763 0 R /Im2 596 0 R /Im11 670 0 R /Im5 617 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -751 0 obj << +772 0 obj << /Length 2341 /Filter /FlateDecode >> @@ -3981,83 +4388,456 @@ p4 M:q,ty:U"]RT"vU%Uc}@@+X,[yo%<=kF yHYo+p5P0ûLHX˹ VS?ZS$O\LC䟅>a^k~(v0KDTw#{v,c[='K'}68LE#F8/( 7rc"RQ\rÓ,Jƿ\v9DGLv= YۛTdR*8 9T"gwx>̏m%7Xnggz8V.L]=%`>Qؖ*ÅP|⍦%J>w@ 3{i 葠xTp-N&aDZm6$@&.˒,1rnpPsj\(#qM~2(~9`$"Il1#hH|ܪk 8 ሽnt36 n}c3 ћmXa9%";U\iH3!#( dϽEF`YG:RznӰO%H< ~= " iP*0P>>wO=TH8΄FƋXOp U* {K\ڗ NXtW)թwTls'& -Al`Ĺ3UOa=:8@ʮ&YV\2 {SDFaN9{@P=~YW c5@&He4 J˦]m;BԴ9$[?d`U䯱4W^&WH\ *,Zi;O0=BDR͏fM!YcU0( =%$ZM^u5=QyHgNM뾃;~W[Lf ' d̓ H wkS .ƩQsg@|j @%;P)!5T0b7j +Al`Ĺ3UOa=:8@ʮ&YV\2 {SDFaN9{@P=~YW c5@&He4 J˦]m;BԴ9$[?d`U䯱4W^&WH\ *,Zi;O0=BDR͏fM!YcU0( =%$ZM^u5=QyHgNM뾃;~W[Lf ' d̓ H wkS .ƩQsg@|j @%;P)!51el endstream endobj -750 0 obj << +771 0 obj << /Type /Page -/Contents 751 0 R -/Resources 749 0 R +/Contents 772 0 R +/Resources 770 0 R /MediaBox [0 0 595.276 841.89] -/Parent 737 0 R +/Parent 747 0 R >> endobj -752 0 obj << -/D [750 0 R /XYZ 115.087 776.032 null] +773 0 obj << +/D [771 0 R /XYZ 115.087 776.032 null] >> endobj -106 0 obj << -/D [750 0 R /XYZ 115.087 202.436 null] +110 0 obj << +/D [771 0 R /XYZ 115.087 202.436 null] >> endobj -749 0 obj << -/Font << /F20 534 0 R /F41 593 0 R /F16 449 0 R /F29 601 0 R /F46 648 0 R /F42 594 0 R >> -/XObject << /Im2 586 0 R >> +770 0 obj << +/Font << /F20 543 0 R /F41 603 0 R /F16 457 0 R /F29 611 0 R /F46 658 0 R /F42 604 0 R >> +/XObject << /Im2 596 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -756 0 obj << +777 0 obj << /Length 992 /Filter /FlateDecode >> stream xVKo;WxHǞB vX,3̃Hc{rQ+;O3%G/BF887$IHc,!܎g$"K: X?^OoOED0xf~z\}Zهt1M`D4|)GY;¨R%,)p.!p,$&2sHXY?:W<J\biZZnԄ#K!3Pc(z& }84$lkQλ y_̋ꆺ%vf[;!U|p+l(iTq!8XnH es -o8;h'kf< ǺtþpUV[3ߌȭeS>P(I Hig*F8҃Q%RV>T;msY9bH*:0Р/J|0̣cԵ8LqcP.{m?2gc鋶|Cǵ>/·J{|v(n)пs|Ej_e$7bR].. V-/elt @"Hʹw +o8;h'kf< ǺtþpUV[3ߌȭeS>P(I Hig*F8҃Q%RV>T;msY9bH*:0Р/J|0̣cԵ8LqcP.{m?2gc鋶|Cǵ>/·J{|v(n)пs|Ej_e$7bR].. V-/elt @"Hʹw endstream endobj -755 0 obj << +776 0 obj << /Type /Page -/Contents 756 0 R -/Resources 754 0 R +/Contents 777 0 R +/Resources 775 0 R /MediaBox [0 0 595.276 841.89] -/Parent 737 0 R -/Annots [ 753 0 R ] +/Parent 779 0 R +/Annots [ 774 0 R ] >> endobj -753 0 obj << +774 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [334.746 596.211 359.039 607.837] /A << /S /GoTo /D (subsection.2.3.1) >> >> endobj -757 0 obj << -/D [755 0 R /XYZ 77.386 776.032 null] +778 0 obj << +/D [776 0 R /XYZ 77.386 776.032 null] >> endobj -754 0 obj << -/Font << /F20 534 0 R /F41 593 0 R /F16 449 0 R /F29 601 0 R /F46 648 0 R >> +775 0 obj << +/Font << /F20 543 0 R /F41 603 0 R /F16 457 0 R /F29 611 0 R /F46 658 0 R >> /ProcSet [ /PDF /Text ] >> endobj -760 0 obj << -/Length 194 +783 0 obj << +/Length 230 /Filter /FlateDecode >> stream -xMn@D-›[+rcT*(iBAsD[ii恾 t/$$d_$2bHHjƞMúb7ֿy,YPT󦷼U_;vy`+͝_ZyrX5E^O4-MW*=k Iwo+ -9 +x]N1 y +úί#,ж SBJtYg>-bM(i(G#E[ТjBoCis7kh_ܩZ]:W]ny>OER">j_{,;K )h=#lO+A +qt낙85g'}u> endobj -761 0 obj << -/D [759 0 R /XYZ 115.087 776.032 null] +784 0 obj << +/D [782 0 R /XYZ 115.087 776.032 null] >> endobj -758 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +114 0 obj << +/D [782 0 R /XYZ 115.087 755.708 null] +>> endobj +781 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -767 0 obj << +787 0 obj << +/Length 357 +/Filter /FlateDecode +>> +stream +xuKS0w.j1B\! ;82}@:MΝs|@Z0`C 0&E4O6 ,8Nts?8L)jIܢ#>ԇ}ekaG%k#  s0  :R|F8Nn,`MBKbdMpO d>J:Y`L6)7X Hc*w$5p~g֛7sM1 PkVg<r3LG +W]BDטFUJmQkeզr\Cs﹨.Oʰg(6=,7ڰ +endstream +endobj +786 0 obj << +/Type /Page +/Contents 787 0 R +/Resources 785 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 779 0 R +>> endobj +780 0 obj << +/Type /XObject +/Subtype /Image +/Width 576 +/Height 981 +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/SMask 790 0 R +/Length 87038 +/Filter /FlateDecode +>> +stream +x\TgPcX@{e:b *=V=VlPD;qh{kb}}9GQ s_3 s{眙qt@ H\ұn(-A K w^Z/n{=/~:]܏:-u!Uma:E:wI>d ~@ %s靘vk[$3Ev%$-֜v"+@/AQ&z\YвEh&[HY8>Q ?~@ OvswgX4 +eZy5OZÕyU|6U>WBy7_\k ~@ kTwͺL2+̊2Ep%Xi6WbΐX7_ CZEn>A  J43tQGfƙt:$ ++DmZ'H#jnLAKưF~_7YN 7̊ҩ +_J(x/2ƓX&T*'Ϥq/ 5nӰV~(lk+XfeвM ki!SL Tn+ #ʹIdPiN>p7sˡa탞_+zySÝxїP?WNeԏ|%J*^3V# 58jy}m3_$lʚ2o̷YTpę AJGRXA$f2vsF{:7 tT֢ zc$*Qod;o$zՏe6ZK>vÉsr["F^b/GRܚ^ d Y|uѰ!8LZ /eߓoka9fBxxˢ^`QǗѭZ<66i١ԫG/᫿TkjC5+jhׯj|g./Bngxن˲&9t ,ql)h3y +xCZE foox`ȍuH'^Kxym:7ƌ}J%)>? ^|5ڃf ms{O{XC;:팡țKU[ +᳈{d}̯ `@突?`Zr|?o(ɯ!|pډտ~~+~)-S?AmY/-dtbB,B 1 +"_)n̏I>v@'H'*g_SO^SW_G#}ݣWf5j!K+3 ;LcC`lX=:x|cr:AYY;Pi>[WSk՚`X bTGd!i׫֐[2~u^`Z׀Ahu w[_p a4Q8e]׹n04`h>v&aw+7ƗSs8o_{kv%((n7Nͽ+R`u"URp G^ >?} ~A_  R^ YvU@ Fl_ _>I@/ _P/Z~_6^Loˍ@.~|}MF)uǍg>Àdf}z;6g @/o_9m$ģX$Ɔ?dff6.ڵx_/"[q'|AfQD7n>u}N.r[ng;Lfg`&S&F.9[m@/旈!2CM5K:}.`W;-Zsnqh6VNNSN4eҿ9o~@ C,ñtTFzԌKgSMSYE›/cfgl|~܂be33Lg822'|nr_(ـ9iXf_d=6eq%|vW^6~԰/7_|5?,q4~~TW\VL_h<9c+ ǐ'OOϼeafKg/p]v'P̕GC2ᛋ&Mʧ:Lv-z8}Xʅ_@k~_e <71 ۢ5VlY0oç>xr 2[߳︅Ԟ:2& -L-v"4:e9_DZ/"5OɚyX.)&ЌHz /W.e.3. 1m>.N`c |q9s]х=.~qniکEkއ_JV_So~Yn-aLϠOE@vD2՞f-^2mūWn޼qe<<ڰa_ڴi׼9_:XOsbb}e/-Ow_/%Ϛ-v+G_Z~/\^.,1ݗ1q˖}e¥˾ں{/peϞ92>t^\?<7?iga_Ô2f/ 篦+nٙiZ8IJ۱l;6nqȤ yl3wɼy'ϙ5s޽ӳ^JvÜ$k_ʃC7/%۷zw~_oՅ!Q `)@!]7e^ ͑߼y7>.#'#h8$kOsyhễB!xgJm$"z@翀__ҵ?Wܫ9Xo1fܤO|^i4gD4t{G/3븮 +_׬`=?p~)SfT_~xsV]? zMa3]hCVޢZ}μb{,٨s|7krG# F[$k)Y_BB?jOY/ +,/XvU@ FR1(-,@ 4}_/(~TT::/~_ (6sY/4t>Rr_py__Ph˾1_/kB+ueWZ Z],(됇uv5)m^ULk)_/UpĩҸҘ6ytWylOEBOE҃q%yW/(#mT~@/Ѫoe=L}XUY"LAVyd.?*3,_/uTyO“U]eQwgLN]n>llFIC -!9Zobn*;~hN~Z}?iՍ39lfI&' EL'58I`8ضi_ID9]ac]7eCqAH߁*+z<2}[  ts7i=ɭwcڑ1o漏>'͕:1u(۞aZ]YZoX.Yyͭ9\Eߚ&m_aemV,-@{?Ϭ$;~>d`:!:7*֜{ ya* +B\df4X`7C`AhK`S`Y`mȖ,E5v_w޻BzV f_>+S\4x^qx_yX_\SsZOY]Y/l(#&,YB<-Nq=z#yoJ~8zj?yڗƗzraavN`Ï}"dV|3o. ϻ^tj]Oͳ Y|vyISA~݅%X4)tdJkeS)CB?|O~ / E\!DX0]ytS: ÎYoϚ/S[?p"^,9Bq]qv3e-Z7q%bZe~dq8bpEREῙiW0@ KcX׋{\/qi +@ ` e 5q~2X/l,e f~2X/ ,e f~2X/l,e f~2X~``,e6{ 2X~``,@ك_ 2 =`,@ك_ 2 `,@ك_ -kW@ m,e /X`vs _ /X`e _ /X/l,e f~2X/l,e ~_ 2 =`,@ك_ 2 =$X/РW9X`"f?hh9X/ vs 2 ,e _p (?/ A_ +/0l/0@ڰٿ2/ ,ì2 ,kV $~39X~A A_ /Z>$~s9X/8=ַ 2XҸ ,0 _ /X2eTa7+ts [F5'y !Q~@ Fyuك2 ~_Zu 93/hpO;Ms +(# mӵ~ 0[C-D6 ~(_ 8RfR(/  G)#@CC ;2 p{9 `Q +`Of[YϏa>{(vd6{q,k헉 ifkC  N6hF_0/l/h9b2~`a]>(6   ،(@/52e@Hvsh9__ 7hF`54A _ ն{\AeGkO Aap Ғ_r@nWSZNy3\iav憓A`vdta2A=$బW@AW oKV_ -AypO5('Sb~@/- f /82˰#@dOג#sd,Zu j9X/c_/ AAljAێ|~//L;_2 =]ZapҶ6xg+lZey{_odoL7 U `O~A [5 ՞AZ{1X~0L>w`VZlezmdv y/ `7`,R_ou'y?|di_;XV_eZ"BeyПyȠ?JoO~i/6K{Fyp[Cvr~iew?|: a_/U ~aܗ@ZZQZ5믺=ڶUÎ A~2Xʲ#"4JiybS/֪`yZC Mu3a_ Kœ%1٤͍RR@2?8%ިS0=:@N/m sEZ)q{d EN6ݦNy6wv D_uZ&_a>P=^|tR7ϲM`,lZuLmHY8vpjo 6˄ _/dc8S>h^37.&6E7\ n9VA3!C*:Z#)b5zE5OZ͕ry56UئQ(7Re^3jeB,/ N~UURx8 88$nhOyd[a@CeE`\4_Zfq 3+92-*-K\Wq$%lq[\oXZ6t}SieJ-/ MTǷvvĴɣmOEćU)h,UڔRP3*&!d K,?)c9SPD%,Z@u-噕sbVu9ΙԪq6LL/U4Ys7 Vt)(]s?$$U&j7E7F5f^RAM◶9b] + +\&?ˡssh<:/+`2U1r.SX‘ f;&WheJ-/ ~MYSΣOP* _]1-E5**3_)zRs_1sYz/>z4y_EKGj*4`0"L/@"V"Fa!Ǜ4r}Ek9ͦ2T +3 6y#42W RzOZ|iBW5m5])¨y\GI죚m򨶒(ԅ#C&޼qwB<7,SK¼8ePs$3΄iBO"1Rɬ$2+ʠ,*^LfŚ0ҩ +y ~M:G,p|Uj~_ K/7=k +=9J~uo??Mm* +΋yp%ї=#.n9!\xmFn`X ނi*{oNb1#ʎ3aD"iƴT2D~Q(DNHP#Z\2%1dR˄ _wkuZ"I_e4K"]Z<8bj.l?2C{{u5NqܥSgǂ4_Z0;<ۄ\ &td9̘cRx:Hfř0Ҩ:@ayhMj9 8*LX/z<"] qÂv[Uv.TS&?Nwaܡ#w{fl ^wd׋wO_n0Ł#]IH,VcUa[eQYRŒh $!z<KbƓXhX+˜8D3!fC42W R=qORV%wF= +Fs v[e>-l|0뉘l; "WK属١a>GZڑM-;gTƨ|?S(rm0MȬd +']q4J 1SYUYVǑTN6Cq=~*$,jeJ-kϗMukSq}=7K|O-OT&=봷u|ʏ;5Wq_ɊS` +bI ; v;rM qT>, }*ruwNğȋ;Ut4lMOQ֩Q`g0,p0<;_u2t:C8ʝ & +?+ymkȼ/kx ujs@@%fke |-^/# +Q 98dёdo˳Nm/И_:nK>⛪"ʛg˳su19MAyB/ +糅]:dGCI#B&nZ#Z9?$4"l WT9ƻٟ FfR2b@[ {?~a)O xSvü:R8q`ļP\Q4:h7ƒ X [,I*hXzM{w`-k_(XX>p揟&CP2?z^ 1߿Ua +aTU2t$5 +j5X&eM _/(d8bq6EaX$+9KCkp,a|i8~_ /%=f|Q/LHr}~iUe~~9*> + VRRA=m~2XĖa9X`~n2X~_::`2 4|0˃, ~AÙG7t1/bpϱ JXId?_H="TA]U-WۋC[ +:#:#;JG4WV5]|Is-p|_/*jS'q=%%1mhtS"aU +Z*k6$TL笺S55*LX^@j?$NAʞf?k!aUʔ2%%ѭ6yT<(01?6– +)fh~/E|0𚐭U?=)aɳG*ST$X"<4(&ZEvPEVPy+%MSe-/zE|06tq_-˃{?=۪ +U?|Z&":Q݋Ͽ^}+$_Ws<ґڽdͰLUebRo2nGeZ]4+Y}̮Vy,ʱyʷG5IQD`oGMyナnynH ~s|Uj~T/"XKa~ϚB}zҵ_]ۏOjS +"+b/{e8y3>pgeψCήt>W.^FnQw$2Wu"2_ ae{׺Z<(m]FS\)ߥuS/+F+x-=gy^[g^w]:uP},"eM5 "~9 ߿[T$#$pXnEj7rtʤgvI.;T|NԞ`̐+,z-8p7u*tOثL?kYSxZ~aEukS_}  R?$?K{P6mܭgMI:N=%bʳ7b،Z~jdnB3ZMv YҹV{(;7a]xtN12%eM~8ǷW_O$@/"V,6&~w1~JKȁͩp^E2!@`wcucŵŵZͱ\³rg1֗y27I>sڲr"ڔ)ĴLX˚&)1"vAo`ur:s;JU&EI/51gpmL˅ֻVVVsXRcLIagثl/[NM߁)~O~;wfo[qyLgO??&>/67?5$߰ڙd$'|p'OM_| w>E~ǖ_^j,x5a|Ҳ~)9V{#8' ~; ߷0,06py[~sSRǽ۾/SOM rv5o=z\?*Һ)bG,x5a|Ҳƫ8ޙ_08HE|0JV+^/İ#0i'#zMuêWr.W\.I?7TAy^EI'Ke:9vÂgYw -k׻T~58E|0 ]_/(}2H7uY'~hL[w/?%}_MUDGMwͳW&tc 39ng͜>dž]?ՆS̱tqtS8 ;CnْtS)Y\Vlm9jz :0'e . N~MYSΣOP'* $]1-E5**3_)~{ԥHSu̟Z֥=LzVy`6ֳ̦$ EN'ŎGwT`O1lR-?527s&;,\=띛n0.Cbefk.$F_̞W>c#9,kL_/nW̯ C6zU|F"HJp ðSذc9Wo;MI"Bo߾ O=4%xW׼=N. :qK+=ykcPfUHVb#e/~/sͺu7o3REK޼a5Zsڱt-\Kc>X6:&>L2_ּ0׎_6b6ݦ_"KS8+__ ;aGa^N2vG)!؇U1yշT\ι\~nҩyqbN):u2sy _6_?WsSe{&}Z2y%k,Y2{oܹ}5_m_E _5y,Ԏ\ px91yaK4~!JxW0EŰ1CIοW_}ğ'"Yսo_cTtT-3n߼smvq=!.=?<11'=Vf|"! +aL慹v n_^|ywu1;L0>z$70"?uةَz?ð/U{Bv4qFjV ?tϦ+4p2gf3-z(㩓Bo[!kvo!jIPT0'Gsp@*׋TGI<X>vSNb^G_cxrG +@ +1?$Yu~o(QuD=u.fB 9C=/q}B . ~ڞ- +gPgP_2?zA 1?f_x/ +A9W?%k~Sekuk@j׋`xJqaxο\ϓ,~_/ވnl .Ta]c;WtɹC21XEkA̯=DYg lF)qI) go)ѩΝ]ak&dsUk[f<Z?ٴKٮ u]hyנ=L~/TT_]S6mIM*mgLbt[k a#X,D]6feNm,IY||q+s[֒Q&@/khlz]I<6eвUh!F# yUXCTX n}dY ۬Y` rf NCmê$uwƴ^ +*ϼV~$ӽK¢|fPv&CU:jCWw?Wqͦq^6g]T~m*Oc h4 ++DM*s˥@~6Aab Yr4 kXY֪Q&@дKm_iV}V*ImӺ'5=3eq"W +.IU\/Otv>7"L/@XKCMCT|gg +ݼʯ},A +@bDQХQܱI(,SQ)-N 1oǏK%cz4ȲV2GR5zOZ|iBW5m5])¨y\GI죚m򨶒(ԅ#C&޼qwB<7ŧ'h8e=O"1L&$IdV⨕MfQ9p= OXF:Ury ~M:GCu%I$0biƴ8c:JTxnEZH&dӓ) *WrRV2GRysXk߳Pߣt-WcԦȊ ^7G^}3搳.r?k湑[(aT"IDߜIewVaB&1R)cz=Ƙ0kHf~$ĈDiO t*ʰ\*֠)g9 {E/;_ޯo4_'u);KT 9;έ2o6mTy~hDLiXP0# -HNڿW3*c@]Ed|)̤qѮEf%S8I$t\D;>:w$bG;P\hh, ˥a/q=f1E7, !Ȧ(HWbN!)ljIrh\OZa:j FyW?z[K;(@u̟Z֥=LzVy`6ֳ̦$ EN'ŎGk*wqlXPi!wJ ˨#"EEiHPDz]g}r>":I<1{}'~ksxK"Rb6h:CO2f +[阒o]᡽=d .S˵^ϴe;&-,s|"Y҅[B"(eH[2vviLLUEmU~$R: vr]lMm,L^.L_'2uiDF.5W"v-ènળOcB:6!è[cmqI{_*t0[4ۿJk/zUcgS>Na[[l. +ZEs,.20Sa%pQ8BG0w1XqfFӃ$j;k0tp$I0iGC\5ݰ½Afٹ$V*"SYKvw"n +%_IGljZFH/r:O oLa7srG8`nթ$ǵ|iY?Q 1%~ڻ=<4'kXv]P+H8q{ŬD^LB1bu¥bYRD/"Ic+.%Wp 1+YEZY)ZO뭫8:#696~A0}0~e@g$Ɍ˷,#^,ARQ#&}AwTw8>d˕`M1!W{$_Eύ;Vr;+Atv9 gyD C N-3rbKgFF#I.yّ19Ziгg Wmcq؟Gftd,/ĭ]os?b$ w[xݠ3% q#àdjehٷ/ٍ_c{|+O!05ap +L +D9Ap[ӦƴdIYLƒwTNeTe4V J^ C27nuCI\ubcF'ZlieԖZ^FƄ>BDc7S<*sI'u(I1?"i&# GiI1+Rw U}EK]'lJVVV,ox6hWsE)w8p>&M#W8X%=oғ$icr_UTsIp͐ȈcNaON~ +|c_VrѧnsBΔǓ+{XU[Ύ][Љ~d pE#rʖ_O>;!kub,Ey0u+ 6_d:4āhtZ:$#2[5EAޔI\?/q:4 R |'O;5CW PyAA`c@ixB,Lcb2&yז7xPz 信j i֜;=lܯ?}F9dje,~4EDLR, -F  Mʂ@%G(rŠLX[7D G\S$DǨ=!zR瑀D1 ىDB,4\,P2:5EdQZQWQꥡo{? +S4}ED.|N8}$Ѕ&,THR#2FZ b/@&B)j/|N. %Cd$YV VY 4h5 #>t=[y%;bdU+o MaYgӶ܁Ҏ0X'zW[s[#N'uV]oLm/Oj)q *Y0ǎX(Y[26B~AS ]#yQ!aCHS>2rnFpuڴ+űEuW +"k +P^LUA\%cV/4kb ~/o|X0Rh9o聴?^jӭ(qnD}պKZ~%X %XIƲ^/hrh{2{/<&)7-$E r합]⌾Gُrzĩ=5@W,)vڙc\\P.,JV,z!ɏ_rCqgbwEij0?j&*z%"(,BA\@5ߔK^Cý/t5S~Sb&5^`  %XK)B~A +;[Ro4wE6ؑo1y}D'^%2`SI`o#k8&+~ui~aY, +be+YY_{޴Q?RZ!_2ȡ^qì/;xX8--ZuНʌ9zyOq-@׼&VvV ޑ*iӤwj*,JV,zߚO߉_9xaC#Í9#ѓHq֫l7gN"[N?ew<=*„o&N*NpO d˕`M1!W{$_Eύ;Vr;+A9Bɪ VG/~+Fi"#Kap +L +D9Ap[ӦƴdIYLƒwTNeTe4V J^ {bdU+KʣMze_1vM;y/u H~8 +NgGߞ_ +~N1*$fH]qdD10Y''?>y11,JV2旒}_u6I~L_`ȯwl -wg+X.NJ0wS3|xjd`d*6s}M;1xѓ$c2 %XKVQ-Ϗ^w:]єN +GH}bG_ѧި#>,)l^bdU+{ʠ ڿzc9B4BAuAchA1h'JX\mP*#1 ڿsù V#J;//|8z8i6eP*U({z_*hiUTTݹs۷n*)))**yfaal#"GX/}y>~^x/v@b3L5T_oo%݃4z 2tKb/ z 뇐__o +9Uȯ7=ů+  `Rzϯ_|՟~/$bP24//3l9{>Y3gy'.M|T VdD?|U/X/4//oF_[:DI u?\l =.Ϙoi.ڰfM{z7 ؁b$#zNZP +CQhQ댭Zzͻv!"py8U_ +`~gµ&/МK^b*|x4QAЙKvvpp,F$k1-N(ꪈϬ]zVu6ŎXEi?W)*_3 .?W!hRԨtgi˖gn ;V=3uf׮s)523:ZH$gSh-&w~6 MyuImÍ }N4 &z8G-Nꬺ^^Rxa_.iHU2~aGy_~5@ِvuuѴfS Ct>Ќ:UGؙDp{v(0kH|ѫ56' t +3W^$$ L,Y翠)/]#yQ!aCHS> 7f#)@6*J}ql}Ql]ᕺȚ¯m-u*Sb/^mja:W50\5vR$$i&mzGƳ:\%dm6^(ZR~ѨZLC 1؂`}XCf]R-,dAM~׋\/B.rov/hJʯ7n<_iQcHK֢漡bZ{)MjĹ%W/j9s_X+'~!{=w1!lmSf5Zs)H 3E}3ojӹ4cg:I&WM4\`}XVol}vAeX*wYD$ԚE[hͣ0 )x~]K*%悅q[z7]=ȡQJF6wmIX@]]WNGGІ ix6_hx^=W dOnwi+)K'v7Y4(LiYך3uV5w lh +G&J%.3zH*/h/^3"YGBt5MX=ҒQR_W~ .o%/Q̡^Ƈx^:r)`C)1tzl b/$p5.ӵu損 D}ωH>bie_Z@˧{z+a/htXt~3da-[1tJg,QcP}M;*u ׳\Ѡm"ӤzդzɚLCfú 5zk!) +;[Ro4wE6ؑo1y}D'^%2`SI`o#k8&+~u1/,FEmq9old5oݮؽKIK79}6}<*I  ,[SUBR Żwwu޲=+ACH2A#p,t46P`dngʥj}j嚺e/ZNKV",6ߎ!/X6,z׭Q C&m&̧I[^p%_X.վO߉_9 7<8yK<1Қ;ܘ_:=dgxhv#{$YSfqgӣ-L6Nant4M-t_/::tY-,^,i1wcc=Cuم#+\W,uX~*^/j1t(:->aUztC-a2? (Mzl=T~Σ\d*uH@bU$ :IIdaT)-Z,"i?Mug݊[1Ư +Rr?l~֒վ3 fFv\$= }k/CkW}+ǒȲԢ!2ƓV:d[Wxh_rjrq2Y sX+~`+%dd Wj-2M ׸mvmV=ֺwذq˶%vW,_a BSvv+6RZljF1|m5~6ɘk!U\ֺ{xaQ ;v<n&ׄy/.q|}3&m%0ȯwWOk~o:MUacէobRi~٢9U]{Ѓܮʴ;w +ڒgpQ*cq!0m Ӎ,+Ո:r,(c66t&Ua_+~.-ʲ(l|yzܻq :Wm۽=/6ui+c:{<; WbJkJF4n9uE1e).;Wo$!Nׯݴu݇wxgQx8 &Q_hl|#wSC }nQ0LmAo+ 8BMMHn8W ?I6=~a[~7{4$ֽXzuڵ'/G'_M{ە\|K/U CE]%w?ɯ5^ ΀Iٗo2XSGv߽IY<K];v~5..[^=㋃k7#k-Ylj+^/[ꘒdo6&XgP~Cȯ?ztVH~))r$e{ŃᶌMÍiɒۑ%M%5f.,K-i. *:58@m +FۘkJˋ)K7HCpI\,".F6F7JJ:$Ȧfa-[^i5^:Hzl٫22o>i56nIH9M7W,窉?_?ϔQ=HC'gdi`c߷m׾_z$?mLj. nRWt)OzxL byuH|FB_?{=3$\W!i wi+G64q7z-\%;6a-*Wߡ.M<-H.v +ormq|{.MO̎z'9Lȑ)ZN?x]ܓ!^f[/0˯~[_l @kkW$NJc;0wS3|xjd`d*6s}M;1xѓ$cH o;? &` +?[mb9# @TDYlhβIY$ M\H?o<^? +>zLt^"!Byۑ@}c}GzlY4_EcUwEJVQ^#S!d3 !V?v5z}~aΆk/hSr&"4'5h4)A9YH0Ab!䏕א_/HO2Ȝţ6$G3GHGx8zA,o`Y,KQMVZEEEYYٝ;wn߾}֭7oxnvqq1jii)rdyy{XhР`9S畷bgs(`PN@/=/螾?PHCȯï7-Gn.?Z%C~A(F6(JΚ2Pg1Y"JI b? v!MПַ[[ccWfϙҏE6_ 0rmuz6fxV659fR1"Va1 bMZ%~G:]븘qb\{5L*%&|M\InͰghe1vs}j,i)|Z4Ҝ7@Z9쿟}/ER~V\M~87j]S-GTrkae|r-2^K/ԥy.#;df1y̪HFEK$cP\%cV/49ktj2{/<&)7-$E r합]⌾Gُrzĩ=5H+NyLرu.e.kg* q *ޡqΞK"PuiHG$1.D?͋ɬB"#O~.rfGXS_*%b*z!ɏ_rCqgbwEij0?j&*z%"(,BA\@5ߔK^Cý/t5S~Sb&5"S6E*;[':<-@եХED2'rt<(e oΐK$cP\%cV/49J8*einOKsYD n6@Sw1/GtpQ["6t v >&`#m2.OPXy*LOg))ڤdmumRq#ҳCM"eґ._IaoV>~d d&'~euG% gSf}iAh1m>nsdWf9u';?Ϋ0~BֈSn'/Em6bTyMMҕ_+T #:DmbѪセ"2ԫ|"̮ ~R1(V1wl~3_{r~?؛c_<%inMiD^hDdd=vr,)3Q&|g'0_7qWq{bi:¯Ah ~cV;',Hҥ!=-k&j2u5]*ҡ!yLס%kSnH-r +;hybK$cP\%cVޣDZK~yҚ!YKW$ +WDesl ]xK"Rb6h:CO2f +[阒o]᡽=d \9s@Tn!KO%rt +-Sl]lߥ 5(H'yhML$Э,R)+?X %~٢9U]{Ѓܮʴ;w +ڒgpQ*cq!0m Ӎ,+Ո:r,(c66t&Ua_ܠ^O-׮Czi8dkh7"#%H{},$2j.CYKcb:.n@R\LIu$cV$c\Ηբ٫?l^{k?oN'8?J*Ol{|Ҿ,QCfsY>/r:O oLa7srG8`nթ$ǵ|iY?QW{+ =AA: vW )dvKb"=dy.vެ@ \:6( .%*IƬX9IƸ7뭠C[a1y^q_Ȅ_ӱί ]1x-ɝ\IY\Ki?fpmu\@o d˕`M1!W{$_Eύ;Vr;+AFe8k(&$uy\S/ݼe"sLZV `h5PG6btAgFTJ2\R}-XAT{ʑNIY@OIA#)+eud΢_0j5q0tEt_}Y8d tAD6U},z?~)8UXdtj,--"8B +GWKCߘe&7D G\Sk ٩ I_"jJƾXJVG,Ti~ P$lJ ~92KIJ'^"Mpj,0, b);z_*hhU<]РA{ #>t=[y ;b!U}-z!)_?,~V<ܘ?ܐ;p_DCj{kwSzĩΪ합I-5v\%vBdB[26B~AS ]#yQ!aCHS>ֆ6P'MJj.R_[_[Wx k{ efyŔXlUh_JƬ^/h +j7M_I/4~S`IkHsȼK_mW%΍/ZT߯kb!U}'z!ɉ_E7osx6@ߴ<=n.#.q28Ԝ)Ԥ"QW,)vڙc\\.,"[WE/4Wn(L쮈x֑5]ASo?VuTŕ_( (rKszWŽ!Ns +wuJ>D"^>¬XlUh_K)B~A +;[Ro4wE6ؑo1y}D'^%2`SI`o#k8&+~u齛1/,Vde MNK ;7?`m٪о%Qlx;ܖ)}1:YRt;$$3eeUA!%UEgR^0ǶXlUh_YJVoͿT{Tb?&w~e>@L7Lt _q:`8 WKOw䧍}UQ% 7C##99>9)AI~aX,D*$zS?|+ͯ8.祿B M@ +ऴ/ |'O;5CW PyAA`c@ix~Qp{\tkBr+t},9SW?q# %sgNpfe[mճ7{ij41;~XxGTiȯoB~AS ^IDsޯhTǹk"]ko=fID{Bބ_+ɭ  L{8\nO_8``gĺiJVXrkb~D6A6W| "upcCtWꄮꔾĞ Cu)=mQ 1(/(8o7HhgqI0$,f9=AY;2n'UȦ"`*1oB~ASXpOΑ:QoMzmz_MZ:8T/zX5ܘl 'tFuUgև.g+ +FosywiXM׻п< ~]u:QY Yx̮RF6UC6W1oB~AS?)~Yx1!wྔbuY}55׻)=nqRg wIL2;Tu%PeTN[E利Z~5Ml n2czͻu [n%1ؾr| bXpͳG yFk1ɿD}i]UIͥWcb +D~msol/`NZM ץTv UBfedV)UAܥJ}rT]*a( +$d/+#T +l_yKf M?qC_{??o{*5>i-iz 辗")t+&?JQ_r.ҩ_&G9Ӱjn9]yH/ХK(wļCfwp2ļMfU $t"dtR)dc}*&49ktj2{/<&)7-$E r합]⌾Gُrzĩ=5H+NyLرu.e.Ke* q *ޡqK"PuiHC$1wD֊ɬB"#O~.rfGXS_*l \%c6߄&?~ ŝ:IאcNN٧Hkf+NUjKlj'gPl-WvC^LdH'rt<(ue oΐKd曐_/Ζ+[<-f7 v$qLużxÉvGn v51Ț+lɸʳ_6?A]zoDWĪ2mJ>hI׵Iy:ӐD4ҳCM"eґWIaoV>~1ؾr| 9T0T+Nx^s uŴ}<8x+G:&eMA>%Qlx;ܖ)}1:YRt;$$3eeUA!%UEgR0n2g v,#(ap6eF]lxm4%HXc!:(' z`4z6.A*lh_R_oM޺~]kt߉_[l 2#,H 0o!t*q9,$OKnGF$s +s%|rS's27nuCI\ubcF'[[-hgo qh7oa{9fFÚ.JwZ<2W)d+Eʼ"|Ɔ{k@8>΃6]?/q:4 R |'O;5CW PyAA`c@ix,K+CJo~(~~֝Ϲ_²D, DtEGtQ8dp /Soԑm4w;* +D,!1j5q04&G#aY\SR`=fY&lC6pƤWJN1MNA*l %+Qȕ_Ͽ aH"&B)Q&eA YwbPl?$V<" ,+m?cThpaivYFL&QC'1*jNP$Ɏ@ M7"4 4Ko"[L2d7WV7}Stw5}眪iR4iJGY7z+jd/GbBXe})DxYMmSt8x_?$SdԢI[Eq䳩r_E=yO`9_.i%jLPDiă:Q Х1Vo_1|_cTtSB\RjOQm厚&z >Aڨ( Dge21P8o_j2|EqL8:8̧\S/(7|-_pEyFW_Ȁ7BF5/42  4d@d _/l /MMF4` / _tA_cҥI<{|^{LvȠS[l*4KOOuc L_޽Zɚ⻫.զuW& fr7҆UqM k\^1d&*[_ T6EfPOKsz%ϡFƼaXH:+Sr#?Y~ +xd&_2+yUrdXV0$W$ͼ~)O#Jz$]UYEd)/Y1ld<} Ph<^Ha;MMb ltWg%6$5'5%6Jsyڋ*+X@f5 B^0}{_Hz{<=ꭺ#+i-V<" "j N"i,Mm(z?YɧA1 Tdl} P_V۰#/xP^|hA#n im'o,"$¨+NGt[6-,sΰX g_ / + IWzOeδ@o67vUYm,N.E&]^$͎<0%낟G݃n&IgK佘sla "/%}Wk${뾨b\Ow磂AIB8WpXz_BvvsGxX4 pd&R/Zz\g%J"U?(_y=C iCy}9qt`9Yd棸G ê~׳| +R}#CMvXjmaliZL,7YkZpwֲ3=W#j"5Jf)K-2]|z<ҳFNf~EK<&p覨*qaYog8Y=d&oxޘs> gg+8Vf+lZ礗luu_x2`E׳/x _rJUNa߽@YT /ϸӔRs[iMk}իLv7|i”rgf8Do>w.8sa T"/z ʞ'#/>R=D., <,;Dy)!xrj-3b╳ZiΒlSu6;>5 9[cv +z]݋+x2`D'9z9=;78S/Z+ b:f4>gzj/piΊ(t P|,%|wbg|΄0Ϥps{2/x OVI+x2`Dꯗsh|,"= +E(~C7T8w_ͤvfް,g6S^|-VV\--td9ްX*kL_Y7Hw9aMБ[E+^y__Rt%$6&(w3{e1K%2}|ͼM*L8^uȧ:Љړ_}F,sTyn\a #/+) ?œP8-DgA dA87, 3zd:oy,dFd)dqL M.ǑϦ"\1y a Jrb1Q ̨"׮]zjiiiqq+W.\RRB<[VVFɺ z'#HbP(x<^VVHOO'~fgg*j%}Bk +ZhO8kc#:5S LUrSO9䑣, =:i ^3=/GWpU , 3v +15 /T_'dd@d"_8jb51$U Ŝ _ AMeK? l;yRAmH7TZi.&F4 +ń;[yJ| PZɚ⻫.զuW& fr7҆UqM k\/L`ALؾ/K#A7PJCۍy20XuuW6F~XVy^|`ALؾJEv P<*^2,+n +V`f^'p{%Y=쎪֢C_}U/ Ǜ/kqƃe??>,$$i. ڰLHԷA]NwuFKYbcIRcqRCQbCa;ך^ye3a*& B^0}{_Hz{<=ꭺ#+i-V<"+Hm,-bKS +.7iPqe3a*{+9A(_O]6;&vy?>m)lHx~-|bfUO)H!rtOoS\E-_ fUVv P,+,$]=1;ӢlڑVqg%8Q\tɟ{[p4;;p ~'7v>pH'./laALؾMpþ5q@Sͽu_T}.;nufQ$V|^+x,=/q!cwFyl +;I#<,qQy gXP6/to 䯼ءƼ> wvW[8k,t[Q٣ׅaU|Y>E)> ֋!]6nƖǫgQܬW f_o/LDI|~ _!HhX?P5"Qf}VL-s1|\ W9غnC.IL5gw֜_I:L9/ΰl&l_j2|^]F2+Aaׅ?vk+$|ok_o&ddt 5wp0w4sbpZ]ݛˬ5uM8;kp|tx+v`5% f.MlEhBywM}GMQwU.^b2uq\{bM891炱}1^cVp< 7Wn[&2nI/C٪V놣e3aRL~o&]~v2pӃ/+T5Vݫ?K;M->ufkX.д7Ya᠙q3Ηf/L9 -ffaiCS}2?c1̈́K-2]ƛTL_|>D., <,;Dy)!xrj-3b╳ZiΒlSu6;>5 9[cv +z]ݫ;9noXP6/o7({&/PB1F3f3x5[?u +k4yERgEZZD|L(J>;13>tgBgRg=E'yka$CisaALؾT"g9ٹq''By_^"= +E(~C7T8w_ͤvfް,g6S^|-VV\--td9ްl&l_*3T^qEof},Rj B 5i3h6EZCGo_K{y}Yfu\KiXӕؘ5h KO +̈́K%2}ƛړ!p8^qlٗ#r!,ta!};m9o._il`1Ԏf± e_8_]|L,/1,( ۗJd7__~E''s!%ߡJ=I!YrJ''%bD?O$)N"tW˾dmRZU:v*F(ўX{0&*o!^ll)휀 _ ȀL& ՞ܸ Me wʑU;S _/wweK? l;yRAmH7TZi.&F4 +V*O^!c PZɚ⻫.զuW& fr7҆UqM k\/L`U/xU/x/ y_*?yH3A' 9lPvcްLD, {$ieqݕ)֬UƼ +xU 2nFƐWx T{%J +DD /I{$^IV$:*"("D4>AƍW*O^jDGKvin4=a 6r3ZK +cE߹ּGy +V*O^!c PL^ҿޮ^/dz +GZn*&=5\yEjdiADXPp!)Ild wvW[8k,t[Q٣ׅaU|Y>E)> ֋!]6nƖǫgQ\W dyE/tA(_!HhX?P5"Qf}VL-s1|\ W9غnC.IL5gw֜_~Yq)VRL ^ +;SAӲLOBn>l~}W{دr]2Vx[x;[9V8-_.e֚&L8>:Gnkj>uWBj)W( +wr[3}y;ְ\ioz.A3f/8_r6Z.7V@wͧ;we\CaG/4 >׸S/|v_|}帟s'C "EtHH^ZC[{<9k_~{1[}K-Դ|gJ:耭1A;{U7 K=2xD /e} MI>qL敿?˨W.B ti|ՠ_n)I kQk2A(XJ0Н aIឩd^%s8/aG/4 >g]UMlIr_Wb]F!PnqʛIͼaY@mʍpr5D_N@&B9OB$Bd.`>Ղ>2e?Lx*]X*Qٸ*Kb~(ߣ=9]O!g'#gډ&whr9|6Lr<7pU2~EƒW3x_*X"傀ܫy̋[螟;'^RpUE/3^JTY̱2)U52cr!bJj4xx'p115F7 iȀ /9 2 _ Ȁ _jb51$U Lr)A2 {Yҏ$Nuy>=&|rGdP۩- 6V˧:ͱd&*[^*zL]u62i6/Mq6okjLwF_Jb , 3V/4}R@_+&~5 +n7 D`=GY]aZeKX@fA_Jvo/ 7pA0t3_fHIFWuvGUVGEFkQ!E +hVd&*O^jDGKvin4=a 6r3ZK +cE߹ּGUԔ͋, 3V Tӷmk~٣ު;‘֢{m#-⡛ɇz~O W^|5YZ'46\h=+2`3/ BIz2~Y}oÎܾgblWACyݖQQ-KywZw{%Y,#'ɔWF]t:ʷ)pd&RL^eYa!J社yؙ譾fsտ׎;+弈K ނޙ{]?9{܄C:,tb-, 3rт$9ܰjMTsoUrrpi[|T0(I +.KK\Q~a>Ž|x}u\ΰXj Pzb҆$y_9osprmGqg^Ujg${N <&`G7[/xv89[3GqW\3, 3ZdNtnV$C6Ѱ,.kD?C%e֙Z4c40ruݺ=]kR;G-֭9g#,R:U'R΋3, 3ZdN'5y2 zmu +n7 r>ګ=[ .+]C]-\<̝-͜X+~e2kM]kZvz&7ʃXwDMFQ`yqd&RL^K)ywM}GMQwU.^b2uq\{bM891炱}1^cVp< 7Wn[&2nI/C٪V놣d&RLӿ`lG7C>&~ >ӞOk~2_9i^y_*gim)9k4[rU쏛q4|a`h33[ M["7gyp 9ްX*<M v+_}$?%/`Hq9 rQdYOɭe?!K 9ǓcVkMMwdڬYȱS^_1K%2}x)Ig򃾉&)y+F+ b:f4>gzj/piΊ(t P|,%|wbg|΄0Ϥps{2/x OVI+x2`DBUwnCvW̢+v(B +@3 ?Wy3i7,͔'4_F7FK |[)W C +[J#Ofy/:E(b7, 3Jd>_/4yKEfA,R캁}| [jIUk/eq-aMWJbc2Nnr<7/>)Xsa &kbqfU_ϟW|]1K@(˅!"3Ae*P;Nc.ؖ7luo#F[M2)ưXixnG=yEךكCy&|!FIGNHrJ' +( ӣ@ا:Љړ_}F,ݿ3JW&K=2xQVSGr229x2" +'u-Dΐ)C d ?Dec j<֝{r&9BNGδyMrl*89yo LUE/?^5c j{g!%=4)82`U\ȨPaTQ9O؃U ;n _X|%vT=ya/T4d@A 4ՈPKe 9 fS<%/@.H.D\Kc'wD"`SiY|x _/lU}SM1k=&k﮺W]4P_헦HjVŷ55&;߯q}=d eTdly_&M_4i5:^4WMjnz~$,2%1Ú-k C^o*୿W~{ɰ`I4X@ /I{$^IV$:*"(VDK1 +7Y+O^O}S6~<,}YzI|I<\@LH`.:,$8(0VZk{ʸ ޲V62/ Tӷmk~٣ު;‘֢{m#-⡛Y+R&K $Ԇ 'sT\̖iZ T/O&I/mؑwL*$ԊϋS|G%.dwl(?0Ma? >>W~?.JPܫ{1 +YS/Z /y=C iCy}9qt`9Yd棸G ê~׳| +R}#Cl~}W{دr]2Vx[x;[9V8-_.e֚&L8>:Gn'u2vNyN3S5 Q}7T5Vݫ?K;M->ufkX.д7Ya᠙q3Ηf/L9 -ffaiCS}2?! k*ǿ]/[t&C_ o9 rQdYOɭe?!K 9ǓcVkMMwdڬYȱS^LYSLƕ 1 kjw}7 b:f4>gzj/piΊ(t P|,%|wbg|΄0Ϥps{2/x OVIp k*zv\ t/g'/ F1obE +E(~C7T8w_ͤvfް,g6S^|-VV\--td\(d:ȚJdkbgM~W?D_w}"Ň D;mf0֦TK_ ~/ϼ/쯎k) kPqrs?|I_ADNf$ǿh/BD2 +BOA|9' 45 ,CW9q¬C8v g}3 5BߒoLYS/_}p'>PIRjRx\4d#}Zq$M%{8_̖9˚bd׏/ryd3D(,-D&C`& D[#Ӂz t@_7l,g$bRȮ,GNh-\#M%E9yS11/_c M}O Yq-{1w>d2~V(?1Q ̨"׮]zjiiiqq+W.\RRB<[VVFɺx*lsLۙqk +Xw]8:S1̧`d[S/ b*5E #^U5@~ey_x 달&V{rczʀ x_3)G^ 98J~$Yv"y1;"Nmn,]>M< A_X7(JBk=&k﮺W]4P_헦HjVŷ55&;߯q/2W T/Lse/4}R@_+&~5 +n7 D`=GY]aZە/ +!/ Be7(hJvo/ 7C7>iv+dtUgwTeuTdEP hU62/ ŜDGKvin4mX&$J`.:,$8(0VZk{8Zȸm_e# PoP̩m o_o|GUwd#EڊGZC7^ÕW6_MID1 ZO盰4:W T/sJ?/mؑwL|p#7N: ]"*K-2]x_ 7]j^NsY?mq3 +% _c 3#gSO?ϕa4_o_E ^s}b-'v!m1O>=,9,|wuaX߯6?zOAwQᴰcvD~b8nj9swZK-2]x_J 7M4,uIv(@`>ukg9͘k>k.+ ml]nv!yyGQukNو/TYo_j PpoP_]:cwM‡ܯ}jVnBKJPso sgK3' +eeٽZSڄ󾳖 G=`Qy)ۗZdNW=8poP_<&p覨*qaYog8Y=d&oxޘs> gg+8Vf+lZ礗luuK-2]x'S&^ U[Bj)W( +wr[3}y;ְ\ioz.A3f/8_r6Z.7V@wͧ;we\!'/A(_x7(HqPZ(,{GZDֲr奄ɱ_|BۋW^j;KVMm,g|Fl )uu!aRLӿfI<<N1»A1ՖPB1F3f3x5[?u +k4yERgEZZD|L(J>;13>tgBgRg=E'yka$Ci!aRLkO~q_9+! #]ߠjW2)>^Bo4ο fJKnOW +-燔󂫅u-ŧC["2/_|dZ/ ŜQX}| [jIUk/eq-aMWJbc2Nnr<7/>)!aRLqƋ?1_7(4!RLɾz"Y +BO|9' 45 ,CW9q¬C8v g}3 5Bߒo߾&d{/?s}bNYa.tI :=NB$B'jO~!K3$o*?K12Mx,9ǿ 9Dd;dD({-Dִ3俈M i9SV޾#ӁEʼn'T+_h_8 \擟<}J!{ "$`4G>JrWƘu~ GaYߠ+|]@RH,=J; +KWb}U1Ï_N 7p'?GJ?*z)l_U {_x7(SR&?S}1Q 1Q5 x'p115F7 iȀ /9 2 /5*d&N9 _PtGum':^<~>#2J+hX2`-/ Bk=&k﮺W]4P_헦HjVŷ55&;߯q{1a PGC >)o/d?e"ba#I,Lmf2%T, 3Vx T{%J +DD /I{$^IV$:*"("D4+2`'/ B5Z\{#;K4o7G ۰LHtu9-e%II E Ң\kޣ*4 +Tdly_*@5?kQoYHkѽM@=+Hm,-bKS +.ϕp^` Cƙ$=VaGn3_+nK`G;-»^iёd+Rn\:umW_82`E / BytT*$ԊϋS|G%.dwl(?0Ma? >>W~?.JPܾc L./%+'v!m1O>=,9,|wuaX߯6?zOAwQᴰcvD~b8nj9s7_82`E / BI GDòY ]d2VZgjvӌ^uf(wIgz9K[ԟHTK9/ΰXj;&S.y?OBB+_؝va+C~}풱5̉iwYvo.Ե6egѱ?zpaO<؁uGDjgX@f,t_Ojd*KTi<5yd4'xwuW<:5-,S'˵,քs.35lJ~>zUk"r=ݑnn8 oX@f,K)A(UM;~eR̃OXd&RL׸çyvvyNdjNGE/2_|8Z(,{GZDֲr奄ɱ_|BۋW^j;KVMm,g|Fl )uu/ï L>|L>竿2_e i4#h9ӋW~US+/OW$uV$ȯEɯEHħc)s ڎkzU̱d&*[^jywVf`ZTϤTפ\oEފJ}VE6`K 7 Rc 9#׳Fzs` JEƖ^SaeQQQ)KWuM뙖^'3hLJtM魨5Z%7HFb, 3V TCª: /16(1$1tM E,cU} +vy+fѩc LU*2/+j Tej چBmCeI1˘hk4 Yt(7f9VX"c Pb6//`5u3f/k=}R2 +t2H[+1"Jߴ3ytVX"c P?(4 jb#R }9+GIBq!_ unˤTϴRWͥS1 +Tdly_W t ( gR/RLA xZ-C"G<-S)VwҨc LU*2؊/Lf^3`隈t u  ZbbA[Dj)kY%uOY6tQ7X@fq_L=敽ulNzlLmLmZWXK W]3gLDڊD(PLDXXq^u,>̯,, 3VIȘ F}U쭝V+9lN3bW4r̅Z#}e=SHwE@(krrn4 Q.2;2`9$Ig_'>{oC_DIsŧIJӜAfOłmlDFh31uՈ\:=wɴlb_D-^`;K92-xCq^qWkɯbY*p 4[edɶ#vvro_aH3[E +ٴڶڌ{-AĞL6b!A5`[̱d&RL =pd<*@Jyyw0syV{"-[yt*۟+Ğْ"]ߎ@O'-a70d&RL#I??9&39K-wzU W7kuoهwLSm֭C, gZMmW/ [2-ɞD%j,Ԋg1K!2x_W sY=hBbĜ4'bTd _/s@A_/( _PA1d b0c{|?R;A&V#C2)%Nese#k]K-2XT]y ZRs]ӭ}uA_>%Nȸse#œ6i.3f.54f,xkⷖj[mimqɟv~ѷWx 5V.H.D\Kc'wD"`SiY|xOS2n\+-sg.^:_Eǧf +CO_8c[V:v2g[,]' G_t_1YS|wžڴʤZn4FP*61~+ OS2n\wdK-zK}ö>p.N G׹ms88vq]v[w#/~Ѽ? xҜ^I6sQp1oX&"=βʔk*cM_8 zloj-1O)DVZ Ydhc`ngj;[gG\]ܶlֿk}UaWaYph^Qo5nKy} W#h-8$;(" X d깲z\ / +p62DoB#] #E/}W<=wu.5dn\9iCkqƃe??>,$$i. F"2!1$ltWg%6$5'5%6Jsy#EU)q*@ƭ+_k]9_eoor\4tؚ 5e .623tZm_4@5?kQoYHkѽMd@=+Hm,-bKS +.Ps!eU]_ؔ8U zN?-jшm_M;N,p<} ]S琑9+lfhU4: MXl /q{v?eZʋ 6z$n _ʻ"ۜ+f>I"0ʥQ'?V "E_8*_8 +RϩB&`jYjTk{ϸlyײyzm]~ijvu@oL,L]ݾشve+2agZTUz\;*6'" +.s/x fG{g?u#7r餳%rQ VI¿QLzN2VzJ ~힋g/_6Oh|}Bط:ˍ؆[YF& a6qtU/Lh=*Ty'Ô}Wk${뾨b\Ow磂AIB8WpXz_BvvsGxX4 pU/q"ӥS?- yĮ/}-23Z|յt`Ozhi/4" 5M-lsx֝}+=T﯉Ijk;%'W)^~ I᯼ءƼ> wvW[8k,t[Q٣ׅaU|Y>E)> ֋!]6nƖǫgA<|3a^EE=VǶ=˵ճ^`2_l:9+iζ56=x<DYhhmfmn>>*_KD GDò\c *m{o,,˲TA T@ET`5(((H#M(RJ5KN䜜=;DolDwgkvogIy=nkY:'hn rdɢIY cSDgm_qWB:&dcw7O(J8\┋zC~ ̗\7])4Sc5>[DL):eU6~ȥECG"SZ<*ˣˍ,lX$Bi棿zrOד+#|_z⟖>Oz}g?wGDשG-nSɻWOy.6Y'ۄ =V%o4J3+%ѥ<لRMmZKhJՠt^a/%NjJA':}f M c wzru+ɚ,i9ͦ| u&[4KMDlC 7=gwsV>%^2ʟ~֑?!ѩοҰ)S΂՗sD֖;a"hI4g,=XFL4/s7V7}=7,jJA&klˬy'Y1ҝ=t^>iKgtdM&y:,̱[1&sjSe%|Q)+2?݃/GU_0%I2oU$ѹjI4IR&@`RdIhPE((/dK˅2-DuV{Ca/8e!+GcƜC!!fu{3E\lbϕ]<=W{y[qRwe}̱_`wnݦCEP?|9zGڔ_#C/?3/Jc3|r+b[cn37+zo/YW[yx۴i>\o"d^+צ^H0tT_8%UA%nW2PW&%bi ;90{\pw.ו-"|WeL{YD{ىڼscV Yu>qSћscwԤ%n + K) Y\Yǿj繖srv[{y]mum eK׺tq^/b7{Lbc#cΜbZ'^ _oP^( +)7B0l6&zdu֒v@]R{ELKٙȖWWeH?X\r VIx!)~3kcG1,>_K+?x +^c;~DOdmm {6:Bb\\V8/^Lyys,vwA_Ϛ6™# ~K_N8| +V3BcnLcϨSBiΑ o3;E?ЛU{gI5QJB>k(>s:qKo{A K!8J-\VW^vz~bvމa;0lc9|7Oogz~8?+ +? ]_ xuBГv nrG_U|žsxOtGz \}bѸcXާ`X0xr 1)\`7* *9ÿ[߆> +/x_ }~'zYQ1Q]]]UUUQQQVVVRRRTTnThNNNaa!xIyyyee%x.Q2Xto3,6 +~ |Xh`X2~LJǟ)*V0%B~K _Hy{V)b`#d_(NsގJ`#d_(9B~ūTDUFȿPy2}Cb0׎Zx@\8%:km:zdVԎv/42" /_Ps47EwW:?P__{5~!:.1&+"CX_BEB!1'"7{В>ԐW6p=Rom*j̸ۘu9, H祉*ꮊl {͎q;U}U_"Bs"Ƨ_.^s +; C7S{j{kSzjoפvVtV&o^@U3dK42ȿP̿7$JϙZޫ~Sݦ-@5gl~&V7k(8S_t,"~G@(2l%N^_(T_Psˮ/߽?|eoE]~p+obp>ג+/Gn,Аj_?~٭&R"Cˋ + 6}Cbc"vB5 }'^__V`CnOmwצ[ٟyo} +ڤʸ_<c{Y_p֗8dy ȿ`7$JATN:EW|~ 7[Ak^WUr؊EOelKK:).^.7-J&а!EEV^_(/h Uۭjzj|[i2Mt睮~?XSw2/nOـ:"bGhsG7/&aތx-/tR ^_(/ gVϙƬYZ;y[8i,ϐϞutەu9m]}zgn=V[[q%{i"__" //ճv(A[朁)Эc5Kd1rڍaX,7Y4i>ca,qsqM+J_9^Ălzaε e +}./]zX}qK G-nSɻWOy.6Y'ۄ =V%o4J3+%ѥ<لRMmZKhp2EVװYy!1LædL: nvW_v;X[J g'S\`iOk/`1"H`vx_&[up"__" //U]Р:>)~>"~S歊@?:]-&IW7 M?ʷltPŢ;rٹj:al9աDV޿_V>ɕz£5O}՟ozdU3S?i/?ݧWmm--ܬ뽽vd]I3Ef꿫c8$y_[_$0v0{. p<hk|K(F :W,zwdu2ՇYC b}Cb9\B1Uc{F ;~D MR̒XC&2>ƴM= İ]v$( *ٿԄIzՉ/g:VƎ1, ׽ scy״#&1F;e*Yx߼G!ȿ`7$w:'{;Q("qH|9 +./̂*oח@ˆ/t ^Rߐ=HqR0,gĊjrJ뫊|oL( / ˝p$(>*F)W>/kׂ%22#eY Hwf_7ʿ~7 ҙ4 :l.M@IzOg{:ZSE\nl}+6F_(z$׺%:km:zdVԎv/42"* *#ZC,QX>! T4] 5mfqޒ ξnA?R߃\'31na )2 +BZ!@fnf)Q䥆V "B5)l_]|wޫC ɽuQM1]lݿUA%q,)̤hsl]{ݼx2;mΞd,+;:S[?ŜY.4ƌHN Î?yw `6&Vrcs 3kvvs̚em/[P[=hIjO_65fm̺ל owGuWe6ϽfG~6yU#qD~+6Sk*]s27oon7f&@"7ZKܑ2Bm^>wD4.JɚLI4 6*6ٙ62+ Y6v!Bu/nQ|9^S i_WS[Sx&:2z窙AJJs|;!MSͤ:.Y\neea=Bѿ~aKu&3:c蓧sZ 4Ty*:IHDE \Z.?D5X󯚿p{_toʻ۔%t"AK2ؐRwMs/o(:Pp͵Yu2%`U_PI,&QI$%^9FT-m<;e$ +i +6ҹv 6;/lZL&i,&PfpiZ\UD&idQ4Y![bi6{/+/j_G/~6y }vi7{%W^h)Ϗ=Xr!ԾuMNf !J &#V7T_~aиԙ\ 'j>$'C,7YW_#7$XPU&:SMw +Pd5a],dKq^2Y:PMdlh+VZ_(ȿL(33[:+˟*lMNMO+ڔИ&W]͎K+̈́׿ %¿B┅HM#߯}iN""i:XX؃6Kr >/6͗g[~RY]|AtmkwSMw +LfW Ea H +f*f Rk+n +͟Gv%4Su~4oTmּ݃˱i' +b.%ˈٖtrS\墳a;\7;oZOMasYg_0_j!qJA] K3]s|d(u'3LVwNgRfr䳘$!i:GW ->\>kvXk}ZSab˼f;JNcqZ>붤fR8"ɍ$t--15\`~Bs =5w>˭\ki4&_NW?;'l@‰ QW ^#49|c~C0oFگDZHDWَ̹Q"7IL]7 Zg~aíE d-XLL=M(6ã6s!_ }gnM 9R& dӅouXKɲ͋šL瀺fMHY>n+=P;93?ԘWs'o '-nZ.gߕXO vG^Jc+{+w/W\iV_K`u%;g׶Rx2,`)Z5mԬ'L˒-TSAreK뻪/kNX,p֚Gʐshbir()Xͻ-lt6"Mf[wc__(οjk9z :zQtN#qE827 4xuL,Ȧf\IoP8A˕ 9,A) `{8zH$M +MISRs[؂sŋҴrBakſ%/Yn:zShƶk|StJ˪6lK8ƇDxyNgѵxTߔYZ;HӾG3^JžGBGJj_n;ӶM_&_=ba >[do"3[I4.l*dDVdOH5ݶif/׷jjyea /%Nb,촅>4n"em1oDdRg. +<,YI<"Ξ5ܿa':}f k c wzru+A =<<C0 FR}P}B 6ؿT&ȿ4JædL: nvW_v;X[J g'S\`iOk/`1"H`vx_&[u0J/u8e?&lcWf ;_i;`|S;y&6ͣ]KRY:i=~`_ }>-o.v̚wbiCo*cJ;;. |)tKKd|1imi2g_(ƿ.a J3+7eުH +s-ՒhL||#|PQ _Ȗ M eZ, \)*ݿE^{}*Z^+p>~&4.}e^,C [[⺂MV85e%ǏD2،\2oGՠ30 +!44ߛ)JMd{\sjK\{/[f]ݝĴw5׭qؠӾħ]||埞Wȿ1$f}zد2͊;KnjGO.4S4a:IEcc#vNXƷt AtR{ud`^|Jւb\k-yZH!8ҥ+yٰ!`f>K!Qgry4zsZ.<$B){\z)#Qſ_g|_yBebX"ưؘcgKpw]ג++wUƴE;\?76 .lչP1^ü.N:97vGMZPrY`J/u87# > }[p5lp[lj ><^|Z߭k}sq^}3" _ߋW\"Ɯ^^k/qrt= ۶`벥k\WR~< d Kw|;J K/A( +)7B0l6&zdu֒v@]R{ELKٙȖWWeH?X\r VIx!)~3kcG1,>_j!qJ94 Xz5ةA0l?\`ˊ7:.ps\sWmuy;GPo54,Su` Kw?*q<_% ` wrqYx8:;/?u pew_#O/I Կ2L!1l7g)4ҷFݙӝ ~=[%M59%‰t`{ҿ%KRW=ۯ_6;/pw_zluu^ z]YṪbׯ,6#ȿP Re?(!JX_q/5(P~ +#̍P'!6^`d`ȿ9BF +_k2BF#d@FHTe /5G!ᣨ2}CbN;hkW}Σ4y&/_ȿP=x̯u߶=ŮYS;NvhZиʈT7*oԛь2e[P?As@}romj}ZKv1~s΃»M7һkw韛?u+XD8# -//Mg⻫%%'^jHjjIf ;>m/۔w1k¼a vW[W.vMjgeBWE\UZ{6檟AU_ȿPlƖuZ҇2+@]1>rw9,멍*ꮊl {͎ +xU wOws>h@l连Up\cqlS sO^+?!Y.a/p"B2i?(ל)wp!cf666Q1>NLl-:߼^s5?~v?|'7>*\~K +q[ZRئ D65ֲ鏓 2l%N^_(T_3>7WEWMyZ^sD||~s gꋎ\^O + qڗgZԘF]97qˮ/Jt51y͹+0ܿ[n^>،S77qN~5/K(2ȿP-~6ymc|~#[{兖Ӎ%Okݮ9_ iU{7I88z]O*NU_y%㥩憕 )YR",?Z&Z:N Y_aE O(33[:+˟*lMNMO+ڔ0Mj;W+.  KEuF\pnvn:fvuyGUeϋ <w'*eB-#w^yp+"VdD-]8Klb7,!Kưh Ű؄Ims*>LΪ+:+_9}Tkɑ⤭E6ggƀ=Uzl; +[ YLdEQ_a106Xq?ܹ]Wv]1ee'jgR\WtȊPa^{'͈*&-(,sSxnXBs PGaQa{4=ݜSYMWyvdoHYy"ᵹayno+=]yًA'f ~l@,>du2ՇΟU - S|\#0,acߡ0?Jy^Gg-i/ %Yk);\RY_pj᪌C+҂kC* |8$oqmTB)ԓ°p<4Y,㖛VޑS~*ڵk"*Ns6aKpc8g4Îa0Z:W_~C"BW >Dߏa1=O 9G.86Μ_CoWI5'D* m8.N#}h}sa:3^6< ň] 5F5zy睽&2u)gkk9~ߤѻhlbvLa^G A__%G hgOErR7jL&jiH`. 11J-Me}iA {Bva!M`sXa nGGى<_أ+`x߆"C__%# //?ҷK>8.v=T@.TU6+k} ly0/5(PUUUeee%%%EEEyyyiii)))III MMMWVVA0+WHiii1w`g5BaF/oZ[[NT?/??w}?O?_߆_FO?X0S U}U !#d_ȿ^X !H`s?u#$eW0"BLߐOV_Uϋ [(nH2B~!B!#d_("d@{ċ2BF}쑲!d #^2/cx2BFȿP=E +G!#d_("d@{ċ2/ȿ/BF +G!#d)<#^2'z Y#^k? lcx2BFȯѿ'(p͓=("d_ѿ/g򳞀}/BFY,G{ B>!#dLɞ_#Oebcx2BFK{j("d_ſG2#^+_vCG!#d #^2/cx2BFȿP=E!?Bƣ +(PP@[1;oOm!h!/5G!#B }2BFȿP B_s2/ȿ>fpǢ*#d_(4R!1':у^wj}SnYǾRw@8n<W5"F^_(^^}CbNh Z#+wȖݗX1i,1 ,: P_U"Ë s=#-D;|^mIH/640+olϓDUVۼ[x=2$U2TȿPҿ 7$cxiɗveB'i@ +eYHƗvd/2TU2ȿPƿ7$Dn_o~WrgXѿlq#W5k86Kh72Lw7pf֗PdhyPY!1WzJ yiŽܣvȰ՗hd8yPAoH̕KuT b,A _y ~9_^e)ajY,Q=װ]$og}hۨ^֗PdhyPAoH̕ kfP+9 ^!S@Q9%4x)w!`[+c833 a} E +T\/*I<*;ʧ81 <i1_DQ9LA%KTg}N֗PdhyPAoH̕l.WkJXl2+H&1< +;Υ b2 t/ΡH)(K2%Z^_(T_PsYz|'L֣'Sy@Jp|*' l2+^Mj@\2E!/>տ0 {R➺r*EfT\XLb +Jb=%P9>P͢I :|!R /3N-'%Z+/_Psg4v y5AIV 3Ȭ42+ܦIzB]PgR#dK(2#Ww_ȿ7$J?Pɦ2˥rR(*@1ggYy`MȊ!z:G3vuGr:֣֗Pdhy__G n?=O/(HMߐ+ .E] +e}mq+_Z6!ȡqh<W y`-U[rkN8CXp֗8dy_ߑ^'7Ͽ 7$<3Z5җwd]BH|g3E ACKRXN +zƆ4Zg: 32%rH\i=!z B}Cb,q$ Xv$]by')ƊC`܎gn6G`. +=*jkֈ&aŐ[6%rg׳i5W!z Z}Cb4u!玢AXFҴx{T"y\Dc/_֍[q]'e$m윶FF`T&Y-Dd5EBAAoH̕@(u-\XiagqsH; +ew}]W4k.9H{L*sFD E}FȿPv ^}CbIHXNM4$k`B,Q Oc4퐋V?B8Eh⦇Q[Dd^ȰW A!1c=tYA]5.jNTb`%kcQEVGeG +Jʧ>tʕcǎ?v, +󫫫Z*///**),,,--+ч*=P/U&ӱ>vP:ѰN"~!BZaH!P_U"Ëx-(BF +_k2BFR6U&,?d*#d_( R!1':у^wj}SnYǾRw@8n<W5"F^_(^^}CbNh Z#+wȖݗX1i,1 ,: P_U"Ë s=#-D;|^mubA7|B'i@ +eYHƗvd/2TU2ȿPƿ7$Dn_o~WrgXѿlq#W5k86Kh72Lw7pf֗PdhyPY!1WzJ yiŽܣvȰ՗hd8yPAoH̕KuT b,A _y ~9_^e)ajY,Q=װ]$og}hۨ^֗PdhyPAoH̕ kfP+9 ^!S@Q9%4x)w!`[+c833 a} E +T\/*I<*;ʧ81 <i1_DQ9LA%KTg}N֗PdhyPAoH̕l.WkJXl2+H&1< +;Υ b2 t/ΡH)(K2%Z^_(T_PsYz|'L֣'Sy@Jp|*' l2+^Mj@\2E!/"BJߐ+=I,@xSI GD*иYv:uAO0U +eթ儰"C,wGjIZWjċ_WOFpuja X3`ZX֨xi\Ѽ}y/B{t,7=,"'JEFV^_(/ 'cz qQ{t+X#P=U."BAoH̉NEhm*Bn<@I j __" #ƣ +DuuuUUUyyyQQQnnnNNNaaaii)X`Q"޿Bۓo/BFo02 }2BFȿP B_sx "cJ62BF /s1=(oKuև;V{+,uop_K}_#kE7$&o젛5>j{lI=}Fҩo 2 U%2<ȿP޿^!1'(٣82N̾7V\7J/640+olϓDUVۼ[x=2$U2TȿPҿ 7$cxiɗ*NN.4nKZxVQ;_z P֫/udm|i'M<"CU_ Cȋ j *}CbND.U7q%7xu\ p7r\z#n& |Y+t}oj a} E +_stP:)` +%ױ`Ma+ߨ'6P,=j [}F +T\D]I"V0% ^ W3ULU"%s Evч a} E +T\ΰf_8TNSBSyW + +@^a2c1:3?N֗PdhyPAoH̕+lͣ(|*ӹ[3E4nSTDu,qGq a} E +T\r6%&Id#̣)\*).Ӹ@) +;,)+Bd!CX_BEB5!1Wz^U̧qId=z=UGL 4GΧr6!uTf + +%S  -/// 317 zK$r|xEaXt4^ CP@^f0YZNK(2ȿPƿ7$Jxci,* #8j.=gYidV M#!)3ZݥF֗Pdhy_ȿ$}Cbs +l*c\*'Ρr qv&( +jSXy4n1S1m'[wt+c=j a} EaW!1W\{g2Vm1CCx.EX[F宥qѱ>ȑ/q0"BAAoH̕yfN_ȭkԥ/ɺWq'^1,f +< Ώ2( i>54atfdhK2#?Y̟v*/?ɽOO}g-d:_se%i:';qN!5V,dv<;wS e=sVLQW[㼶F4 +ܲ/AȐs՟|BAoH̕m&qo3os$`p:pY(S 6˂:cҴ1@'Xb Њ9U:ZpS۟0|_*pxYdzLC Uyt :v@'p5;p'Ejaä !?td'w=z~4݃#[(/ +;Q=?3gNٓ%{_ u +d}B 3PQäg55ѰV8\-Dd57j^hhz玢AXFҴx{T"yoU5-;ε3;B*Di?T*US) ETJ*RZ$ҀMpQ|q1X]mJ8iMj,o<߯Ѽ|lM}޿'hàclCd .\[z1/0B ʓCccTɢ{ ܍.TD5ނ sw`Iq77_)27GA/'y^%ܴQ s:G;-Ol9E +/ $\ߠGM>Fq' &͸:"[7do>}⯝F A@@@@@X* ο3d@d!! 9 2 _0}}I Ȁ _>jVrF5SIΎY뀷m,~uO\/, " +0W ;Oc93z-/N7BZ*奧4D6,uB A j+eˌ|QuH!hIvv=$Bsda%wV3ߵ@44ik21}G&ظXg6Ԧ-q^s ˋ>*$LY`sL> +/-篢umMySBxJ. C[JLWPژ{tеFX[g;,ErgN9D + +_l';T|N}P~ +1)dkK@3 [Lw?#'ZBVf Yրl"[6/sUk>jFt߾Qz)wqcjIh +3e[5 #N):á$9d;Z˸~c_`<4B NܒT{ҊhޒƤ۔ˆgitTA# ƒ?ˠ.I4sNtFu > +stream +x :H;> endobj +789 0 obj << +/D [786 0 R /XYZ 77.386 691.504 null] +>> endobj +785 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R >> +/XObject << /Im19 780 0 R >> +/ProcSet [ /PDF /Text /ImageC ] +>> endobj +793 0 obj << +/Length 192 +/Filter /FlateDecode +>> +stream +xM;o@[^veg^TUЄ"U~NH3 ++fL(1707H1@;GAWy/vZ-s*Cvqh\%%Hy9齺A&5\^h0\[ o`N5FdNF|MDt*o^9 +endstream +endobj +792 0 obj << +/Type /Page +/Contents 793 0 R +/Resources 791 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 779 0 R +>> endobj +794 0 obj << +/D [792 0 R /XYZ 115.087 776.032 null] +>> endobj +791 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +800 0 obj << /Length 1496 /Filter /FlateDecode >> @@ -4067,53 +4847,53 @@ n f [ !:B(錢0H-CkLgp M6@""7}[}aQ5j}Tňagf 7 3\ߩ$f5TY;:y, .S MOWK*@gtFx!xadAE{ߛVIz+*mvp!#uqTF9ɢ͞؝LVj-]yHHh^Y}oDv]vάO.{#[EtXUH|;ɣӃcoQ|}ZYS\З]p@X/zj6\r~=%ĩ{2K!5CI ~y]A`KA ЪaJ1(m0<=NMI',$ mM[O'WRX<L&1:1 Dkʋm5tWnQQW6684nqjsC[Iq%L-HtC&4Eo.5?꨽ SymelٍOOбWb81LA|| d鞦Dvj IA`6.2te'5©Wy NlҘSb#A-É%Tmȁd[y6)FM?~iʉʹU_ hG:nOєF ɇ,lhoNO?@4I81)ŽۅFDq(`qdYp_/.8ұAZDt߄L;Hx➯,nߤx5i^vk 22!`I@IDԚIZb yڐ>в"a)Iߓ)4ܬ~̚,S Z, io :+&`)>QeDj}}}@dԇhaU[Ϻ9C -* :QCC) +!Ǽ&𸌢)GZLX&޽O073TʄM0qo.#޼vf;.͝;T4T)2;BI"aI7;.7t$wzA=;-['̣ӤB*vF@UʈWaJhD4!_@\W=_o -gozN!l} [!Nv?u--/hdݘp_"j:ne(#/}MhzvǬMy\O0KLo`< ^#h SϕHFԲ +* :QCC) +!Ǽ&𸌢)GZLX&޽O073TʄM0qo.#޼vf;.͝;T4T)2;BI"aI7;.7t$wzA=;-['̣ӤB*vF@UʈWaJhD4!_@\W=_o -gozN!l} [!Nv?u--/hdݘp_"j:ne(#/}MhzvǬMy\O0KLo`< ^#h SϕDžC?Զ endstream endobj -766 0 obj << +799 0 obj << /Type /Page -/Contents 767 0 R -/Resources 765 0 R +/Contents 800 0 R +/Resources 798 0 R /MediaBox [0 0 595.276 841.89] -/Parent 770 0 R -/Annots [ 762 0 R 763 0 R 764 0 R ] +/Parent 779 0 R +/Annots [ 795 0 R 796 0 R 797 0 R ] >> endobj -762 0 obj << +795 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [245.263 586.787 261.117 599.686] /A << /S /GoTo /D (section.2.2) >> >> endobj -763 0 obj << +796 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [103.135 573.843 118.989 585.47] -/A << /S /GoTo /D (figure.xxx.15) >> +/A << /S /GoTo /D (figure.xxx.17) >> >> endobj -764 0 obj << +797 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [397.985 186.285 413.839 199.184] -/A << /S /GoTo /D (figure.xxx.16) >> +/A << /S /GoTo /D (figure.xxx.18) >> >> endobj -768 0 obj << -/D [766 0 R /XYZ 77.386 776.032 null] +801 0 obj << +/D [799 0 R /XYZ 77.386 776.032 null] >> endobj -110 0 obj << -/D [766 0 R /XYZ 77.386 755.708 null] +118 0 obj << +/D [799 0 R /XYZ 77.386 755.708 null] >> endobj -769 0 obj << -/D [766 0 R /XYZ 77.386 502.348 null] +802 0 obj << +/D [799 0 R /XYZ 77.386 502.348 null] >> endobj -765 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F20 534 0 R /F3 596 0 R /F4 597 0 R /F44 598 0 R /F43 599 0 R /F46 648 0 R /F29 601 0 R /F41 593 0 R >> -/XObject << /Im9 658 0 R >> +798 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F20 543 0 R /F3 606 0 R /F4 607 0 R /F44 608 0 R /F43 609 0 R /F46 658 0 R /F29 611 0 R /F41 603 0 R >> +/XObject << /Im9 668 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -774 0 obj << +806 0 obj << /Length 1092 /Filter /FlateDecode >> @@ -4125,57 +4905,55 @@ xڥVKo LLeS$l^+:Ͻ`t(RK )eJ0T /+_8zuZIrbr*>ѧW_>qgBLDF Mj`=(_k*-Zɑ ZExJE5ȕ zA}r?X]}qH@"V{;n/a-^O tpuF#'%m0l Ŝxlm<֮k5V4"*[(t! >lwxQX**6Dm~cL:M"pLR@P*PС8xloṉDZYw֛Za$\3le4*gd -&Qeg7u8c=IBm7%qV@m ӻ75$e}~(6c:]%7V-p5Xk"뎡daglF y"=q +&Qeg7u8c=IBm7%qV@m ӻ75$e}~(6c:]%7V-p5Xk"뎡daglF yžq_ endstream endobj -773 0 obj << +805 0 obj << /Type /Page -/Contents 774 0 R -/Resources 772 0 R +/Contents 806 0 R +/Resources 804 0 R /MediaBox [0 0 595.276 841.89] -/Parent 770 0 R +/Parent 779 0 R >> endobj -775 0 obj << -/D [773 0 R /XYZ 115.087 776.032 null] +807 0 obj << +/D [805 0 R /XYZ 115.087 776.032 null] >> endobj -771 0 obj << -/D [773 0 R /XYZ 115.087 662.431 null] +803 0 obj << +/D [805 0 R /XYZ 115.087 662.431 null] >> endobj -772 0 obj << -/Font << /F20 534 0 R /F41 593 0 R /F16 449 0 R /F29 601 0 R /F46 648 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im15 712 0 R >> +804 0 obj << +/Font << /F20 543 0 R /F41 603 0 R /F16 457 0 R /F29 611 0 R /F46 658 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im15 722 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -781 0 obj << -/Length 1466 +813 0 obj << +/Length 1467 /Filter /FlateDecode >> stream xڵWKo8W("R)"qmQt[ lm!ݕ䦛_ kt_(rh8$7Ll4]'/W˥&J"XT*e" S(."|eYS"|LYK&UZ <( 5QiɴQQ(h.J8v%N*Gn.G,CmMfbe"_OI ɉ`'[׶xI Y$ doIþXhLi>u"|v̀b24Qװ#n4C qp8X? /08UTfzgctK{۰@n(}ߛ~ܡ|ùu~p -yAbv)|3~2/k+'龵,i"+ 2˴(RQW!R|݃zN{_eyTI -%O$+\g9hf⤹˞/E"Cqk56+1}a^8G"O\I(J, J -u|$t^lNםL7 H8vV82=byЏZ7f.o&6 ݌n8njG}=>VolZ泸x82BT"OF%p*R]e`_P& w$'Թ}"]o3ee5PI`֧Z)wE BUK0M+J<2 a}{x4unX^ _j3*k Pr"޸uNӢ ũ~$m -:MB_&;䰭=5(_gnX%^ˍfndW@ix+聢v_9o-rkkz`P񿼿aGH Ϭ\VeqHڃ2 +yAbv)|3~2/k+'龵,i"+ 2˴(RQW!R|4-~^Wxv5rUR)34f" +ssd8Y78inKv@ Js_ȓ,W/E<˂~ d$W3u焫( Ge(+]1d8"y~B{k+#xˈ =ݬs1hm"l /­-Q#sE^3زp4%27p1TB3ݍhY%eZޙe0.,&+i5!+}o]Ll>A2B;4q KԎ&z|ٴgqVqd-DPKT4ˬBvM"-,8'KdINs1#DP 0;Imgij^ LA#OS6p>@'᫖`*WǍydmhܬxAR'f߱=9U>7-xD0Cqu;%m )&ESHNێuXLwa[;۽3{j{yEB?`7ڎ]OwsGY?B֠^0sB)˶Zݚx#zjwyJm{?Tҵy#gۚg:^D:1t -5JwTaO3E2Rz |_nq*Y]Ô·0{ztC:yf:5.{*qr?'FG)]8(ϦȿOnM"X’#L\ A)jpLRp#3u#} +Pf>w;ܰJ0WI`WWE,s6G"89[j ~> endobj -777 0 obj << +809 0 obj << /Type /XObject /Subtype /Image /Width 1018 /Height 510 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 784 0 R +/SMask 817 0 R /Length 8849 /Filter /FlateDecode >> @@ -4194,7 +4972,7 @@ Kk 0SP$IENzK52'r;_zzT$Iq+jә<,qf$IrOz٭#YyF N$I򌵟_7>?>'?sŧ ?G$Iϵ>MM$I_j$Ij=E$I}O$I >I$~o({$I>wӈ%InO$IR$IO>̍@cXVwFUO~O>&@cXੇK!o߽Wj>1Fz,,_Tj_އ4HCƅ7 [n%{o*#clHcn(.?ˌo;u|n=;;U.cjƊNnCn0TrBfX4+/FW[~c3>S.33?͟+$Ksf wˇnOMV|c2y klJ. 5Ƃ 3ۮhǖӝUj?ƣZYrL~7#XdrSPyof[di_]?%y.boxAloZf';lM|r~a qGI;#=>@m8ot_.yʦ[_6#]G/ͮy~Вcfp/} r\k|3;gjvgϫ_&G n1Cf6u`2mYkQTϭM?gumoV ep19 `6i/{SE_1ob†eF.9;IϼdlxsO+>'[}ߥK$I>I$վ'I$վ'I$վ'I$i6} K}jV}}վ@ykKx}H/l}`ڟ>>>>>ԾWPjPjxVߚFವK}jV}}վ@3?xFn[>ԾWP\p["MWq~-tvM\§jjڟl TP=c5>_5&jjw}}>p視U>.[mH}ZQ@}վWWWWPTPj_@}'I$I$I}$I{~/I$SXZ$I$OdI$I6'I$>I$IO$IR$IT$I$>I$IO$I}$Ij$I'I$I$I}$Ij$IT$I$>I$IO$IR$IT$I$>I$I$I}$Ij$I'I$I$I}$IR$IT$I$>I$IO$IR$IT$I'I$I$I}$Ij$I'I$I$Iv I$>I$IO$IR$IT$I$>I$IO$I}$Ij$I'I$I$I}$Ij$IT$I$>I$IO$IR$IT$I$>I$I$I}$Ij$I'I$I$I}$IR$IT$I$; endstream endobj -784 0 obj << +817 0 obj << /Type /XObject /Subtype /Image /Width 1018 @@ -4208,39 +4986,39 @@ stream x1 /J$}0Q endstream endobj -776 0 obj << +808 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [260.24 633.765 276.094 646.664] -/A << /S /GoTo /D (figure.xxx.17) >> +/A << /S /GoTo /D (figure.xxx.19) >> >> endobj -778 0 obj << +810 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [129.719 284.001 145.574 295.628] -/A << /S /GoTo /D (figure.xxx.18) >> +/A << /S /GoTo /D (figure.xxx.20) >> >> endobj -782 0 obj << -/D [780 0 R /XYZ 77.386 776.032 null] +814 0 obj << +/D [812 0 R /XYZ 77.386 776.032 null] >> endobj -114 0 obj << -/D [780 0 R /XYZ 77.386 755.708 null] +122 0 obj << +/D [812 0 R /XYZ 77.386 755.708 null] >> endobj -783 0 obj << -/D [780 0 R /XYZ 77.386 587.985 null] +815 0 obj << +/D [812 0 R /XYZ 77.386 587.985 null] >> endobj -118 0 obj << -/D [780 0 R /XYZ 77.386 368.165 null] +126 0 obj << +/D [812 0 R /XYZ 77.386 368.165 null] >> endobj -779 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F46 648 0 R /F44 598 0 R /F43 599 0 R /F42 594 0 R /F20 534 0 R /F29 601 0 R >> -/XObject << /Im18 777 0 R >> +811 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F46 658 0 R /F44 608 0 R /F43 609 0 R /F42 604 0 R /F20 543 0 R /F29 611 0 R >> +/XObject << /Im20 809 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -789 0 obj << -/Length 2170 +822 0 obj << +/Length 2168 /Filter /FlateDecode >> stream @@ -4254,27 +5032,27 @@ B Ӟ YJ"Qo[ڕN6ކfpJ3XU:%\ԛ]էЗG^# <`jS*aϝ=OwM )Mg25{4ڞ-6o7kޖ)BF/Si= endstream endobj -788 0 obj << +821 0 obj << /Type /Page -/Contents 789 0 R -/Resources 787 0 R +/Contents 822 0 R +/Resources 820 0 R /MediaBox [0 0 595.276 841.89] -/Parent 770 0 R +/Parent 816 0 R >> endobj -786 0 obj << +819 0 obj << /Type /XObject /Subtype /Image /Width 1278 /Height 289 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 791 0 R +/SMask 824 0 R /Length 5595 /Filter /FlateDecode >> @@ -4291,7 +5069,7 @@ d UZ0t־ endstream endobj -791 0 obj << +824 0 obj << /Type /XObject /Subtype /Image /Width 1278 @@ -4305,51 +5083,54 @@ stream x! 83xov endstream endobj -790 0 obj << -/D [788 0 R /XYZ 115.087 776.032 null] +823 0 obj << +/D [821 0 R /XYZ 115.087 776.032 null] >> endobj -785 0 obj << -/D [788 0 R /XYZ 115.087 387.832 null] +818 0 obj << +/D [821 0 R /XYZ 115.087 387.832 null] >> endobj -122 0 obj << -/D [788 0 R /XYZ 115.087 254.961 null] +130 0 obj << +/D [821 0 R /XYZ 115.087 254.961 null] >> endobj -787 0 obj << -/Font << /F20 534 0 R /F29 601 0 R /F16 449 0 R /F41 593 0 R /F46 648 0 R /F44 598 0 R /F43 599 0 R /F42 594 0 R >> -/XObject << /Im2 586 0 R /Im19 786 0 R >> +820 0 obj << +/Font << /F20 543 0 R /F29 611 0 R /F16 457 0 R /F41 603 0 R /F46 658 0 R /F44 608 0 R /F43 609 0 R /F42 604 0 R >> +/XObject << /Im2 596 0 R /Im21 819 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -795 0 obj << +828 0 obj << /Length 2236 /Filter /FlateDecode >> stream -xڽkS8;µ*,,[~2wGvve?8XItk;Cm~CvcnKՒZ|gǓu;c,Ilj3˝ܛߧۑǡ{n6JCwr3 N`*۫WwCGA~^L>rvJn짓'vz.Ha<';9"+,"C '?q/8;R%}ݾkoBE#ORY f)9n>э.yx3 -Rw]6{6m c6UZyB"A<:GZhf]KWzed*TG?צ.3PM7kGQ+F]V#`04KM# Z2όkRyj,iꕰz%2:Q%?394-"PofW*LV -+gCRiBi]2Of.hTd 9*qm131R,$/R -?=ԾyC]$R_ֆC5Dpv|@ FO 8[*)mI`Liڬʳ:7 rTKI;E$ 41f%ܼA+WݒaSg;i @'mRZ2aڍ]ڿ\oZ6k-JΝ -s5}WOW]J؝L5fde6"ixuEozP.S#E> -/N#[lkD92"N]XYRłU ԯ]*{T/ --\ܾKXږN?6.(kfṰ\vXFV{TA $,%eQoJ]1`̇$Qa;"fpwK+./ooqh@Ra6K#it<0ݏ͒:H&Yw%>½v\癥@tS *y`t*T=xV/-xSԏR8i8$#Qhv"K%A=s3 H\G='(! P7ByD5`mb1B0aC  5ش1|嘳yKc 6 VK4+ {=̂W~IOi] /Ĥ@3o@7qhQ S64{v~adn߰xV^p8e=tE lU˗pJXcy].u&%k)#xfx'QbUíRg|No8ko n?Rۗ\Wl^&zy3*F񾂜.O4'"^a}`rqʒ66do;=:;d]~7ب0vNzݽ -8oiP}L GG{ +xڽ]S8_' + ˒e} + ea#;;ŲVP_j3u]n)^}<]GC6ܛ-$a"U^,',~o&ήnG(PJ7fTD*)&'wWp?W}#O'W?N8\$1Kʓ~~B&ƩjW #»?ID D8,c/~!O,ݾk7!E@RYf)9} +?qF4E=? 0*'`Z- Kz(C_v^ɣ%ByJr&u?NB Ғ}N( ilZFa vGYa֗l"EZ,x""A&)r!:nr_ KϏl +숧Elzu,V%OU^@X$BViS} +~Ln0%4z=F#K&LıHYFq"I YUsSosoh GplP8W3*NY!,^ _Mh]bL!qxLnfnd )8[92n.Ӻ,Me2\TũcH31Uy͌oX(8gb4YzCIS[T"P1RH8 k8! *+ -)mvi*4XOX1Kq荥T؛P|^m (6n0~v3Az?msW% +:ǘl nBH0zӚ%)(q6ڢԩ]SwT݉8ظ϶fք\xW$ ]|ۈQOC ӈQ9!W$j%^,+\N:I;˺B46+UKD )Ƒ7veӏK* 2$j3TX.;,!WYKv= zqp朾YloJ]1`̇뤴V͆\AMyGCD,N ]^F\b6K#it/0 b~,,,tW# lEmc > endobj -792 0 obj << +825 0 obj << /Type /XObject /Subtype /Image /Width 1280 /Height 180 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 798 0 R +/SMask 831 0 R /Length 3424 /Filter /FlateDecode >> @@ -4364,7 +5145,7 @@ x ҿɒ-0FķҿtߛS7.wҿɣXnѿ_89(m{[܉``$?yM @/s\xl/WyпT^3Ή 3[ӶտL@_6~_B} endstream endobj -798 0 obj << +831 0 obj << /Type /XObject /Subtype /Image /Width 1280 @@ -4378,21 +5159,21 @@ stream x /9:@ endstream endobj -796 0 obj << -/D [794 0 R /XYZ 77.386 776.032 null] +829 0 obj << +/D [827 0 R /XYZ 77.386 776.032 null] >> endobj -797 0 obj << -/D [794 0 R /XYZ 77.386 691.695 null] +830 0 obj << +/D [827 0 R /XYZ 77.386 691.695 null] >> endobj -126 0 obj << -/D [794 0 R /XYZ 77.386 590.241 null] +134 0 obj << +/D [827 0 R /XYZ 77.386 590.241 null] >> endobj -793 0 obj << -/Font << /F20 534 0 R /F29 601 0 R /F16 449 0 R /F44 598 0 R /F43 599 0 R /F42 594 0 R /F41 593 0 R >> -/XObject << /Im20 792 0 R >> +826 0 obj << +/Font << /F20 543 0 R /F29 611 0 R /F16 457 0 R /F44 608 0 R /F43 609 0 R /F42 604 0 R /F41 603 0 R >> +/XObject << /Im22 825 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -802 0 obj << +835 0 obj << /Length 1864 /Filter /FlateDecode >> @@ -4401,50 +5182,49 @@ xڽkS /6?8>Y< '9K}p\yo [(s0dI`(l !^n[dql#,o(Kür})s7n 9\M'nV"@5^ XqjY GΎA(66G`|YGtdd(N7RWyU^ь!vCLY 2AƲ8X/[b,+Ԓ;.RjDjԄQ܂!-jGC<4~Y)Xuj%ux٘ZG`H͖eER,' VX%yn4__y^P%@A| DІUSM6U U]77?Ea )ȁ[" + Vx+206²enG{ȲD2Hu8w$ai*G`DLQop8eAOWֲr/ar?)wM||zI7|P8K.\-p6!7%-/B\%TAʶ\8n|L y=ljlxT%|cniՄ:r3:oah-W!G+yimאjMƞЫ7虍~y:9wq1h\w.b M '感']O?ǭ2:>u|_ed+֏I{(ium:/S/@ǜiu*S^ D&ORw1k,Ti]ʶ\8n|L y=ljlxT%|cniՄ:r3:oah-W!G+yimאjMƞЫ7虍~y:9wq1h\w.b M '感']O?ǭ2:>u|_ed+֏I{(ium:/S/@ǜiu*S^ D&ORw1k,Ti]> endobj -803 0 obj << -/D [801 0 R /XYZ 115.087 776.032 null] +836 0 obj << +/D [834 0 R /XYZ 115.087 776.032 null] >> endobj -804 0 obj << -/D [801 0 R /XYZ 115.087 599.381 null] +837 0 obj << +/D [834 0 R /XYZ 115.087 599.381 null] >> endobj -800 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F29 601 0 R /F41 593 0 R /F44 598 0 R /F43 599 0 R >> +833 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F29 611 0 R /F41 603 0 R /F44 608 0 R /F43 609 0 R >> /ProcSet [ /PDF /Text ] >> endobj -807 0 obj << +840 0 obj << /Length 340 /Filter /FlateDecode >> stream -xuRMO@ﯘaomJ+ j0QBvf{oV XYF 38[p^ -fn'֊[LRk5/'ULY BuUbPTMD9>9%yV>Vj@W> endobj -799 0 obj << +832 0 obj << /Type /XObject /Subtype /Image /Width 1276 /Height 262 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 811 0 R +/SMask 843 0 R /Length 4195 /Filter /FlateDecode >> @@ -4456,7 +5236,7 @@ x ^w{푻{) ރ7m=qߺ`H7ιGw>C;gNotmo>x/ 6/LT`'l^yl^yl^f`1x=>y8{m^ ߼Sټؼ6/k0[Pl^yKߕj0ͻP=[="\\)6/m7opV/ ^Hl^nރm|> endobj -809 0 obj << -/D [806 0 R /XYZ 77.386 482.412 null] +842 0 obj << +/D [839 0 R /XYZ 77.386 482.412 null] >> endobj -805 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R >> -/XObject << /Im21 799 0 R >> +838 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R >> +/XObject << /Im23 832 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -814 0 obj << +846 0 obj << /Length 201 /Filter /FlateDecode >> stream -xM1 E|ˤk;y3" X6K@@AV9' %`HA -| ` -sۼHӔHꍱA/_K~,]JZ<2\{~ /\+Sey#/j#8%=&gU?^b)SP\M@8 =)*= +xM1 E|ˤ1G9#Aa 4 +6KA9@0W]Q%`HA +| 衜` +sۼJHꝱA_K~EnZzd -:j[_9JE]W "pTK ^`BIGmSݧ0#qɓUi= endstream endobj -813 0 obj << +845 0 obj << /Type /Page -/Contents 814 0 R -/Resources 812 0 R +/Contents 846 0 R +/Resources 844 0 R /MediaBox [0 0 595.276 841.89] -/Parent 810 0 R +/Parent 816 0 R >> endobj -815 0 obj << -/D [813 0 R /XYZ 115.087 776.032 null] +847 0 obj << +/D [845 0 R /XYZ 115.087 776.032 null] >> endobj -812 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +844 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -820 0 obj << +852 0 obj << /Length 1546 /Filter /FlateDecode >> stream -xڽWKs6WḦ́0 HF!qtKHdGwdʬ&~El8xsT,UIT67 އXDI[D:÷PwDžVaSG d,8h3" #3&NJ~!CYIF-2NJ]?«5%6lr,݁:%g\Y X\Ԉ=Z$&gG?W3Fm1"J bjU Mk{WQǞ ЈHT$й >/qHqњzIRƥqbD!c\VYD.h)2X𿼻v%m£p!y\#*FIK8&IXp Q跖49Q#k +xڽWKs6WḦ́0 HF!qtKHdGwdʬ&~El8xsT,UIT67 އXDI[D:÷PwDžVaSG d,8h3" #3&NJ~!CYIF-2NJ]?«5%6lr,݁:%g\Y X\Ԉ=Z$&gG?W3Fm1"J bjU Mk{WQǞ ЈHT$й >/qHqњzI2ƥqbD!c\VYD.h)2X𿼻v%m£p!y\#*FIK8&IXp Q跖49Q#k " ;YCέ!ûE]׻-RˡfLCPwT誝֬z'qWwqo7~~,P^%y;?'VLd6鳇r  ݮ\pmi,{Y\AȲk)/18Bqto1gV>-#KS+Y{hAr}Q:jlx?HGGljk\5Ixd88ȺGUWֽ3]1I`L:EIJhiä$[mY2WCDGڬP%kA`3Fk7]W/[ R(n O3|c*i ݓ7{Gk7rw 6yȎӑ@qӦ%b]j^p[ +bϤK /$Gu-%돵u=OUM bǷS{lb&Rǣ?%5TVz -(NLjE:`s]U7uDrmݬ+R "XLRzLq6 ,ٚ%3eɡ$vO^,[uۧчsvʐ׎gaLl*:̢i=Ԡtr((1˶<uECZڱ>Fk7]W/[ R(n O3|c*i ݓ7{Gk7rw 6yȎӑ@qӦ%b]S[ endstream endobj -819 0 obj << +851 0 obj << /Type /Page -/Contents 820 0 R -/Resources 818 0 R +/Contents 852 0 R +/Resources 850 0 R /MediaBox [0 0 595.276 841.89] -/Parent 810 0 R -/Annots [ 817 0 R ] +/Parent 855 0 R +/Annots [ 849 0 R ] >> endobj -816 0 obj << +848 0 obj << /Type /XObject /Subtype /Image /Width 1433 /Height 505 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 823 0 R +/SMask 856 0 R /Length 16494 /Filter /FlateDecode >> @@ -4563,7 +5344,7 @@ R  $)e$IQ($IQ($I2D$IR IR I QIe2He2H(@A$Er$I2D$IR I I QIe2H(2H(@A$E $) $)e$IQ($I2($I2D$IR I I QIe2H(2H(@A$E $) $)e$IQ($I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$9# 7*)7oTF2 endstream endobj -823 0 obj << +856 0 obj << /Type /XObject /Subtype /Image /Width 1433 @@ -4577,32 +5358,32 @@ stream x O3Dxk0 endstream endobj -817 0 obj << +849 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [375.941 398.559 391.795 411.459] -/A << /S /GoTo /D (figure.xxx.22) >> +/A << /S /GoTo /D (figure.xxx.24) >> >> endobj -821 0 obj << -/D [819 0 R /XYZ 77.386 776.032 null] +853 0 obj << +/D [851 0 R /XYZ 77.386 776.032 null] >> endobj -130 0 obj << -/D [819 0 R /XYZ 77.386 755.708 null] +138 0 obj << +/D [851 0 R /XYZ 77.386 755.708 null] >> endobj -134 0 obj << -/D [819 0 R /XYZ 77.386 609.585 null] +142 0 obj << +/D [851 0 R /XYZ 77.386 609.585 null] >> endobj -822 0 obj << -/D [819 0 R /XYZ 77.386 569.627 null] +854 0 obj << +/D [851 0 R /XYZ 77.386 569.627 null] >> endobj -818 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F41 593 0 R /F20 534 0 R >> -/XObject << /Im22 816 0 R >> +850 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F41 603 0 R /F20 543 0 R >> +/XObject << /Im24 848 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -826 0 obj << -/Length 1443 +859 0 obj << +/Length 1444 /Filter /FlateDecode >> stream @@ -4617,25 +5398,25 @@ qB iO_jzu- *AD+#q|qr|.9r|{CFZ~z> H|0-}Yxzw—IU{_y )c 3lXׇ9CZ^zBNG0cˁ!/0Sچo[è$ԕ,F> endobj -827 0 obj << -/D [825 0 R /XYZ 115.087 776.032 null] +860 0 obj << +/D [858 0 R /XYZ 115.087 776.032 null] >> endobj -824 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F41 593 0 R /F46 648 0 R >> -/XObject << /Im2 586 0 R >> +857 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F41 603 0 R /F46 658 0 R >> +/XObject << /Im2 596 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -830 0 obj << +863 0 obj << /Length 1412 /Filter /FlateDecode >> @@ -4645,56 +5426,55 @@ xڕWKs ԅSYHuzc'sx3|8`—*")#ѴO>c? ?xrӘk;~c;)I|\2 xS!| t><8apv-I8 ACcS4Y,[N_XLn9oa/nTW{k)+Sܤdqlj0CM Mq#\3Q pg$!f(VUnLc{S  TG3WTO$rB\u-K sR"}YjKyձɪhzx9ꓼJv$F+j$瑏Pn_mF5Lf,[xP=vR!yˀh\рX Mz7z7a>a_c7ymOܜ?Y$QN^}܁>/% +RR^lj_^$aݢ;'4 *R7.gɰcyw< dxE #»wHndBFfZHX3>_mF5Lf,[xP=vR!yˀh\рX Mz7z7a>a_c7ymOܜ?Y$QN^}܁uvb_) endstream endobj -829 0 obj << +862 0 obj << /Type /Page -/Contents 830 0 R -/Resources 828 0 R +/Contents 863 0 R +/Resources 861 0 R /MediaBox [0 0 595.276 841.89] -/Parent 810 0 R +/Parent 855 0 R >> endobj -831 0 obj << -/D [829 0 R /XYZ 77.386 776.032 null] ->> endobj -138 0 obj << -/D [829 0 R /XYZ 77.386 755.708 null] ->> endobj -142 0 obj << -/D [829 0 R /XYZ 77.386 610.261 null] +864 0 obj << +/D [862 0 R /XYZ 77.386 776.032 null] >> endobj 146 0 obj << -/D [829 0 R /XYZ 77.386 515.054 null] +/D [862 0 R /XYZ 77.386 755.708 null] >> endobj -828 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F42 594 0 R >> +150 0 obj << +/D [862 0 R /XYZ 77.386 610.261 null] +>> endobj +154 0 obj << +/D [862 0 R /XYZ 77.386 515.054 null] +>> endobj +861 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F42 604 0 R >> /ProcSet [ /PDF /Text ] >> endobj -834 0 obj << +867 0 obj << /Length 193 /Filter /FlateDecode >> stream -xM=o1D{-6;(]4@ - T},HvFoH2 gdC"#E hc{vMjWe\#m@ׯF#|˥nU|=LݮL_HW?+vTi6P3kNtGsD+05gaĐU58C +xMN1D{Ŗvqˬ^$qhTDАJ@[ig>4wn"HEL(v8rRRq:_޾<)t.?!fWiu꾜4xJo'; sD="ݟq+_\H6QFh0y_y8G endstream endobj -833 0 obj << +866 0 obj << /Type /Page -/Contents 834 0 R -/Resources 832 0 R +/Contents 867 0 R +/Resources 865 0 R /MediaBox [0 0 595.276 841.89] -/Parent 810 0 R +/Parent 855 0 R >> endobj -835 0 obj << -/D [833 0 R /XYZ 115.087 776.032 null] +868 0 obj << +/D [866 0 R /XYZ 115.087 776.032 null] >> endobj -832 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +865 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -841 0 obj << +874 0 obj << /Length 1966 /Filter /FlateDecode >> @@ -4706,27 +5486,27 @@ j{"6 S~B;Js{sXr~+M+ g6n8/;L1&8>_+\el/@dAhzʐ҈S52݃KgA4OTs)< I.>(e,ElD,K@+ּ Cҩk$e/~:,Xger(3W<ԇXA&:@*W =lD/GwUpTIhb["ۦ-cߴqb"oƮxDKyEPB - Ⅹcח+z~^OZh*in}άftyaCk fGC) J#lh ڢ&MG+@ox෱Px| "h͓V@pX٣#LCȸ(vxZiq(5tyRPĎ{QΈ.uS -m7R?($h0xͪWx.s[3J>οlC~Z7Y1i@mU?7Ssׄ1|M^R SKFH< + Ⅹcח+z~^OZh*in}άftyaCk fGC) J#lh ڢ&MG+@ox෱Px| "h͓V@pX٣#LCȸ(vxZiq(5tyRPĎ{lz4.P`R 0El[4l| +d0?-d!Gon|S[wE;#2ԍ6O)ihKHpԦؒףa7"_EKcm@+8i)TdݖƤJUu@JL^Ƹas7gxJ%L/"?Dk endstream endobj -840 0 obj << +873 0 obj << /Type /Page -/Contents 841 0 R -/Resources 839 0 R +/Contents 874 0 R +/Resources 872 0 R /MediaBox [0 0 595.276 841.89] -/Parent 845 0 R -/Annots [ 836 0 R 838 0 R ] +/Parent 855 0 R +/Annots [ 869 0 R 871 0 R ] >> endobj -837 0 obj << +870 0 obj << /Type /XObject /Subtype /Image /Width 444 /Height 98 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 846 0 R +/SMask 878 0 R /Length 4411 /Filter /FlateDecode >> @@ -4742,7 +5522,7 @@ XI} 3[z-1agBI5鹝3h[[6L2S\?`f g0u9B6 fx  I_VRPaL0f~\'|L0̄?7حL|_( f0sԟY1L3/7C&xbLnh~YA+/(ۙD`f]T7G~[f9uf3$`it,9}}i)+ϪP(Iw9rL0,cfTMm%9%ɽ f 1vҤɴ)J rszfV:3c!3?~E_r/_~W~u>!3WW@=,c[8[O6'he](T8\+_ĉ_:tz3]bHL funLbW3[`g`&Ycwyos+Xf|M=3^1HC D2YZۓn(zbfƜ.eЙb e*t fş(7=ef.}foy_X8bTd&87ϊvWѓPRfm>ss9fBZTL.1}|fB>df-3Ǚ1]vLJ˂ U endstream endobj -846 0 obj << +878 0 obj << /Type /XObject /Subtype /Image /Width 444 @@ -4756,45 +5536,45 @@ stream x |W endstream endobj -836 0 obj << +869 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [361.378 261.917 377.233 273.544] -/A << /S /GoTo /D (figure.xxx.24) >> +/A << /S /GoTo /D (figure.xxx.26) >> >> endobj -838 0 obj << +871 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [263.519 129.423 279.373 141.049] -/A << /S /GoTo /D (figure.xxx.25) >> +/A << /S /GoTo /D (figure.xxx.27) >> >> endobj -842 0 obj << -/D [840 0 R /XYZ 77.386 776.032 null] ->> endobj -150 0 obj << -/D [840 0 R /XYZ 77.386 755.708 null] ->> endobj -154 0 obj << -/D [840 0 R /XYZ 77.386 541.803 null] ->> endobj -843 0 obj << -/D [840 0 R /XYZ 77.386 484.452 null] +875 0 obj << +/D [873 0 R /XYZ 77.386 776.032 null] >> endobj 158 0 obj << -/D [840 0 R /XYZ 77.386 342.052 null] +/D [873 0 R /XYZ 77.386 755.708 null] >> endobj -844 0 obj << -/D [840 0 R /XYZ 77.386 257.603 null] +162 0 obj << +/D [873 0 R /XYZ 77.386 541.803 null] >> endobj -839 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F46 648 0 R /F20 534 0 R >> -/XObject << /Im23 837 0 R >> +876 0 obj << +/D [873 0 R /XYZ 77.386 484.452 null] +>> endobj +166 0 obj << +/D [873 0 R /XYZ 77.386 342.052 null] +>> endobj +877 0 obj << +/D [873 0 R /XYZ 77.386 257.603 null] +>> endobj +872 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F46 658 0 R /F20 543 0 R >> +/XObject << /Im25 870 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -851 0 obj << -/Length 1919 +883 0 obj << +/Length 1920 /Filter /FlateDecode >> stream @@ -4809,25 +5589,25 @@ B )!r+6m2zBq OcܽlHKyaK$[y="aJ0 --/Թ):8ۘ®󶓶&<ƊNlb>s7 ^j\4;J-$^00GT!8 0xC)M:oEՎYԎv=GNb Fv`Iۆb,BG5UOr0`ƽYv+ ܔ0+K3voh0DoV O1en㮼iヒ촼UXIUt}hv][1t=J>WRq@ONB3z 9 +AP:tWlW॒lXӹšXACeQ* 4:]Q@wn#I;Jt[v<ˈ]gОݻ&24UQ&ah "TnnL\iPbr`"pfe[]";pPɡ*GF#EAyc: i#S?ky B] ]ImUw0(r,jм0j7YeԔ_H(n|. HmƐG!G1z2a^DS%ɮڳEsG^aRiqƞ:I 7LϑnQ)@iZo81I]uEn:t+t7(HZo n/_caіJϳ/< -;% OOP>k((U$t|g^u;{s8*c%:r/c^zK1;̘2c&azO!ʞ&6k((U$tBg^u;{s8'C_ȡPtxA(.m3cfЏޛ\҇RWw?fJ$8*{lo( Y(|',PJ@T 7T:݂ |%B~v '"(3FF"CǏyqNՎ +z,?꾣R FN;opU( endstream endobj -850 0 obj << +882 0 obj << /Type /Page -/Contents 851 0 R -/Resources 849 0 R +/Contents 883 0 R +/Resources 881 0 R /MediaBox [0 0 595.276 841.89] -/Parent 845 0 R +/Parent 855 0 R >> endobj -848 0 obj << +880 0 obj << /Type /XObject /Subtype /Image /Width 1678 /Height 759 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 859 0 R +/SMask 891 0 R /Length 39701 /Filter /FlateDecode >> @@ -4951,7 +5731,7 @@ _ %\Q(`SQUIRsU|iZ~L0ujn|'S'2KKPS$KqS̵L&(&r:dBj endstream endobj -859 0 obj << +891 0 obj << /Type /XObject /Subtype /Image /Width 1678 @@ -4965,61 +5745,54 @@ stream x! &x yc endstream endobj -852 0 obj << -/D [850 0 R /XYZ 115.087 776.032 null] +884 0 obj << +/D [882 0 R /XYZ 115.087 776.032 null] >> endobj -853 0 obj << -/D [850 0 R /XYZ 115.087 715.53 null] +885 0 obj << +/D [882 0 R /XYZ 115.087 715.53 null] >> endobj -854 0 obj << -/D [850 0 R /XYZ 115.087 697.285 null] +886 0 obj << +/D [882 0 R /XYZ 115.087 697.285 null] >> endobj -855 0 obj << -/D [850 0 R /XYZ 115.087 665.491 null] +887 0 obj << +/D [882 0 R /XYZ 115.087 665.491 null] >> endobj -856 0 obj << -/D [850 0 R /XYZ 115.087 633.697 null] +888 0 obj << +/D [882 0 R /XYZ 115.087 633.697 null] >> endobj -857 0 obj << -/D [850 0 R /XYZ 115.087 614.846 null] +889 0 obj << +/D [882 0 R /XYZ 115.087 614.846 null] >> endobj -858 0 obj << -/D [850 0 R /XYZ 115.087 542.404 null] +890 0 obj << +/D [882 0 R /XYZ 115.087 542.404 null] >> endobj -847 0 obj << -/D [850 0 R /XYZ 115.087 420.044 null] +879 0 obj << +/D [882 0 R /XYZ 115.087 420.044 null] >> endobj -849 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F46 648 0 R /F3 596 0 R /F4 597 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im24 848 0 R >> +881 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F46 658 0 R /F3 606 0 R /F4 607 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im26 880 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -865 0 obj << -/Length 1908 +897 0 obj << +/Length 1909 /Filter /FlateDecode >> stream -xڵXKo6W,-mECY^Ɏ5`VZA0` p }WocZeYןF]in]3n$~/ :0I$HX˙VV 2!&6=-'#/9Ea6(Uel2Rl֏hAv{Z_pd!%ʼni [\YҐX6"ҸG6- K2^~caa͐E+&Gf,-*4@6H(T?6zgԦLX{qd"'$..BW0Vnl|EO8pí F#w _Jg1 8XVy,A?U32$.ru&5hj@Ʈgu;Dw&po秮&i"Ga#9(%4PHb^ λۥiXuݖ oMbzM#(@Q  -ޞD#Lj}/c/ҕs"! .q|t'Σ;,8MCkps`߳TЃNۄ#;|sfEP,24K73f9~bIud4n[w÷ o)blv -R --4 c=Q>gw% -vXx4^݂lX YqO9Z/09D9U!)\/x;ETBOweϫ0|魡k.z&sDo2\2,hYs?WbQsJ%ts셎,.{,|D] HEӷcA' >AjUKD[n([cCՒ*,TKI*wo*I7 6$)+b$2Bfǩ;V1MQ~$xYqR_4p@4% VA* /xSYPaLE%ػӜQ1?e ̯EOvdaӄ?< 0$̐+I6Ta>qT(DpQ͢|luL*zC2G B#ZLorOB --k T>H^⑁Pro78nY:d]Mp1-gcxEy>:eʼ౩c=7Y8 +xڵXKo6W,-mECY^Ɏ5`VZA0` p }WocZeYןF]in]3n$~/ :0I$HX˙VV 2!&6=mo~?/8Y4fRYYƖ( ,If`A*ѱu_MR"^FkZy!`@ٰ]1 | |_{. Ui * qjY $7: & Ya^bidFBYi4LexcsnlaFmʄ'>KN+2PqBb"t} cu]D8G8ڰm8xk^3Z<#OB'Q' j`]3Fݡ1k hz&_wO4~goq~j bIyt\1RsUؓ0A)m]W,C0׀*L\79|f;}i:L0YkQZM40P$!>#QȖܴa<8gjjOT)!%༻]Um0ք-琀sfW@FhՋ} ,yݏ,_v $E#-pXy!9ҙ b[$8mBr/{_@'(9LӶ>YBlOu$ئ7)YHMtZp:M _ EQ<ɆFpR{${ϭ=޹l/Ź_""u!ǑOͲ},s axlTmNUFƧ_}>:q,&S6)lM~zxdFJ$8><Ⱦ9p3*4_<txlJ?Rѫ~'=,]1'ObGw<R4W? =K=)nM8rL;gP"Oopt3cv}G,TGI&@C1zu<|@iAr/f ]),`B26s{\`ze]gL-qϰHQ(ٜ' {Er c\#jqOğc]RSD%tWz*:ϩgb?GOa)3%eY,(T endstream endobj -864 0 obj << +896 0 obj << /Type /Page -/Contents 865 0 R -/Resources 863 0 R +/Contents 897 0 R +/Resources 895 0 R /MediaBox [0 0 595.276 841.89] -/Parent 845 0 R -/Annots [ 861 0 R 862 0 R ] +/Parent 902 0 R +/Annots [ 893 0 R 894 0 R ] >> endobj -860 0 obj << +892 0 obj << /Type /XObject /Subtype /Image /Width 1016 @@ -5091,68 +5864,68 @@ _Q[A L?.1UQ sW~v zR:K\%vu4 endstream endobj -861 0 obj << +893 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [130.206 485.671 151.484 497.298] -/A << /S /GoTo /D (figure.xxx.26) >> +/A << /S /GoTo /D (figure.xxx.28) >> >> endobj -862 0 obj << +894 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [130.971 170.07 152.249 181.697] -/A << /S /GoTo /D (figure.xxx.26) >> +/A << /S /GoTo /D (figure.xxx.28) >> >> endobj -866 0 obj << -/D [864 0 R /XYZ 77.386 776.032 null] +898 0 obj << +/D [896 0 R /XYZ 77.386 776.032 null] >> endobj -162 0 obj << -/D [864 0 R /XYZ 77.386 755.708 null] +170 0 obj << +/D [896 0 R /XYZ 77.386 755.708 null] >> endobj -867 0 obj << -/D [864 0 R /XYZ 77.386 656.948 null] +899 0 obj << +/D [896 0 R /XYZ 77.386 656.948 null] >> endobj -868 0 obj << -/D [864 0 R /XYZ 77.386 475.239 null] +900 0 obj << +/D [896 0 R /XYZ 77.386 475.239 null] >> endobj -869 0 obj << -/D [864 0 R /XYZ 77.386 428.032 null] +901 0 obj << +/D [896 0 R /XYZ 77.386 428.032 null] >> endobj -863 0 obj << -/Font << /F23 489 0 R /F3 596 0 R /F4 597 0 R /F16 449 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F46 648 0 R /F20 534 0 R >> -/XObject << /Im25 860 0 R >> +895 0 obj << +/Font << /F23 497 0 R /F3 606 0 R /F4 607 0 R /F16 457 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F46 658 0 R /F20 543 0 R >> +/XObject << /Im27 892 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -875 0 obj << -/Length 2118 +908 0 obj << +/Length 2120 /Filter /FlateDecode >> stream -xڽrFί*0xRJXHt\e+XCZ~k@bnNwJw'?.'oކ^灳|r ,uԻfm0s_7g`N]7ur/䩧'^'}@d8t$dEXyJ 6D,!!L#-abA نdE| FqyXAj#!8o3wQE!FV8^ 磓i -)Q4GE혧]r"¡r=NzFt:EsfKbmHHal)q]zAYkL "((tHaIKB&2RZ\Hz &8ԉ̆z*P?~ 槧aoϚcS#'D,( -ժq`x5 x/F3q/*pԹ<10HRh'S 4@氧z > -/% P暲 G#|NA&[$`j / -^rט~a,+. vA(R`ðFl[ ݪ*?9vQsg`Ybߖz(V yJiQS;WB|W壘}Ҟ]0ԑ{( -ThvSe\J sV g\T{i#b&:.zlz(nA@VhL~췕[sL> L榔ǜ#6Fq>(8YE{/dħ$j,",xv( -]cd:phi0V f9_h=`Oi| t[0o܆lXNFxԤcI/tWT̶ -|Mh -֥>I)jr!`Vu;"u5?ė -ЙY_p)Ǵ"@aW-T*?1. OrtH30`/\4VQRdD*V8Ph"Sw͖L[^J8)cW$&QYWSnj7=x͌W7֘~{s%=Ɓw}r;p/E)R1EW~+ R)c\hKqM-prnI,Vռcm*6XTfT5B|l _7IpD]KD&P:O_̎ͳYW%[ȾËUhM[tVë5CG^M CXҦhs^%Bi-I5L,)Č_x"͒*' B_i[+hx|Usg ) SaO]ί%abH|$2f'Qe%QfQPe.2s.4J;EK*`(7B~h: QF1]fo}|=0f^'L (B&&t."}'=Űa"Cj#[c]"/¡;H;NzBu@Z3PhHQ^(TCJuRIiRoor:!"AIC'DKZF84ilD(#E]\ɇQQfC=hK~ ^g6̏O;=k;LL3, ˲؉㐯-X,JCi= =I&l2+$sc;αISÔ0Xv)IIŔE ɺ PzzU#(Ȫr'O-w9'Q# ecٙ8Th" RC`^ FVF @=) ݖb. ղ#14DKeh4ٔc]AIVXx˙h0 !I[vyh͠ guMTqF=Z5p@[Z2b\,VI~v;hb]Iv-I6PW\ի +Jշ}:QSʩnKU~Um6աu je^d|]@%Kld[4G*cl!fIdA"qQ2. +d_}]Py՘;EK+`7~7h; +Ql3áz0f^'$N=EDx8H4: endstream endobj -874 0 obj << +907 0 obj << /Type /Page -/Contents 875 0 R -/Resources 873 0 R +/Contents 908 0 R +/Resources 906 0 R /MediaBox [0 0 595.276 841.89] -/Parent 845 0 R -/Annots [ 871 0 R 872 0 R ] +/Parent 902 0 R +/Annots [ 904 0 R 905 0 R ] >> endobj -870 0 obj << +903 0 obj << /Type /XObject /Subtype /Image /Width 1016 @@ -5202,35 +5975,35 @@ z E%I(N?%j@#pIMU4I  ufDX@n %_@hM oB Ӵ  kFYH  }iZ|@M2  ,o߄^UI#P"oG@@NCSRRO%,ߟL~]U @x'`G "pDu@: }ѝ;H1"@뒯Z &U=9:M @oGg  }iZ|@ u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@53LZ Ӵ  G\nB%_@hMD V~4-> u~+ uW-@Z 71D:M @~E&~]U @Md0hEN# PG跲q _|B@5X5 XEu@*|WW@@NHgE@@H}@@:$@;<oTG@'  tHwxR;5@@>G@@CDÓOu@@}  @~'PC@@H}@@:$@;<oTG@'  tHwxR;5@@>G@@CDÓOu@@}  @^/@@xoݞyggk&u endstream endobj -871 0 obj << +904 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [444.348 371.009 465.626 383.909] -/A << /S /GoTo /D (figure.xxx.26) >> +/A << /S /GoTo /D (figure.xxx.28) >> >> endobj -872 0 obj << +905 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [232.889 344.517 254.167 356.144] -/A << /S /GoTo /D (figure.xxx.27) >> +/A << /S /GoTo /D (figure.xxx.29) >> >> endobj -876 0 obj << -/D [874 0 R /XYZ 115.087 776.032 null] +909 0 obj << +/D [907 0 R /XYZ 115.087 776.032 null] >> endobj -166 0 obj << -/D [874 0 R /XYZ 115.087 647.293 null] +174 0 obj << +/D [907 0 R /XYZ 115.087 647.293 null] >> endobj -877 0 obj << -/D [874 0 R /XYZ 115.087 603.947 null] +910 0 obj << +/D [907 0 R /XYZ 115.087 603.947 null] >> endobj -873 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F41 593 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F46 648 0 R /F29 601 0 R >> -/XObject << /Im2 586 0 R /Im26 870 0 R >> +906 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F41 603 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F46 658 0 R /F29 611 0 R >> +/XObject << /Im2 596 0 R /Im28 903 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -881 0 obj << +914 0 obj << /Length 1912 /Filter /FlateDecode >> @@ -5239,48 +6012,47 @@ xڵX jq1>΃$͇7 {?R*n9O8?}^/lq5:c X|XSa*w}yPdh57xF[E @@<%DLmbx;}=Op;KSӬ_=u7pƅqch|זv\Wx'4'$qt)gR^: A_xo%%"qwZotsK$t" =JiC (,LU!7E4{C׮Yhn7G׎gJ r]QSX cn,=u?6}kS{և-d(d­ -^ Gn.J·kC=>vzv17 ~5/mشݨն*;j8݆ZΚi gngCbqdAg t־YfBg+S o(W'&>0V-u\@RU?SYcאԥ2 w}-k˞.7ۃU^7yM0 8@vyuJ-{=- A|i%lP<5UXg4+8>y]5&B1A C/WUrH^:fJVe,A%E>?;B}/kl#Y&&=Pw'Gat4 3q =a#Z/=,]Gq(E>OXf5B=E,-tJBZ!;6Kd>,BWCCkRsOR -S'W82@.nk=趬`!މ5"LU+3b.\LH& i9%nؕJX;F@vՑPOjUF;mZwTrpl*~&Ӯl u6zdZjM\ZtxC`A3c_ ΰvl~cQV;,u;uqψmӧ0hw/4SKɀ P (Ȕ5Liݳ}];ht½`j=c`?;v# .@P#KwF3n? ؙ 47Me"{|ir͓^t@|0O&(#qfΓvc9:%S=s۪2*!h]5zcQEo({cQvzv17 ~5/mشݨն*;j8݆ZΚi gngCbqdAg t־YfBg+S o(W'&>0V-u\@RU?SYcאԥ2 w}-k˞.7ۃU^7yM0 8@vyuJ-{=- A|i%lP<5UXg4+8>y]5&B1A C/WUrH^:fJVe,A%E>?;B}/kl#Y{wY PQRG{؀#0:z8ąÞ-GLca.8 PY"a'@s,I +_"vH\l%!B{m2ꫡ5)9]H)ʓɫrv J Mt[VB^㐏i zcz1wjwk [D&c$RѴ L7nJ%cl cH'5*L6E;*9CW6y?IiW6Һh=2 w.-Q:<ɡ?/Qg U;Jm?1|YHٺRȸgDȶSjq4sۻrd X(Yk[dʎY>`4tC{Ny0̱i;摄K yXwa %ûpb#e7`vuxL RPLQd&2=49I/:  xg>'~gGlBđ83k;`UܱmE + Ԯ(P"7=б(c=J h΂|"}Y6'yeؾq NDe,`ĽI GE&m mێDzG}lo+x8@yc_+|#=vG 7LE3+4ge6w!(ss %3 ,-K='J L׍Aܦ17܏ߚЊۧhjYPlr,lè?W)-2sEI(1@1w!pͪY+2HZM+Y, 3Օy)+) endstream endobj -880 0 obj << +913 0 obj << /Type /Page -/Contents 881 0 R -/Resources 879 0 R +/Contents 914 0 R +/Resources 912 0 R /MediaBox [0 0 595.276 841.89] -/Parent 845 0 R -/Annots [ 878 0 R ] +/Parent 902 0 R +/Annots [ 911 0 R ] >> endobj -878 0 obj << +911 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [269.6 536.53 290.878 549.429] -/A << /S /GoTo /D (figure.xxx.28) >> +/A << /S /GoTo /D (figure.xxx.30) >> >> endobj -882 0 obj << -/D [880 0 R /XYZ 77.386 776.032 null] ->> endobj -170 0 obj << -/D [880 0 R /XYZ 77.386 617.02 null] ->> endobj -883 0 obj << -/D [880 0 R /XYZ 77.386 532.305 null] ->> endobj -174 0 obj << -/D [880 0 R /XYZ 77.386 339.843 null] +915 0 obj << +/D [913 0 R /XYZ 77.386 776.032 null] >> endobj 178 0 obj << -/D [880 0 R /XYZ 77.386 163.038 null] +/D [913 0 R /XYZ 77.386 617.02 null] >> endobj -879 0 obj << -/Font << /F20 534 0 R /F29 601 0 R /F16 449 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F45 600 0 R /F41 593 0 R >> -/XObject << /Im26 870 0 R /Im2 586 0 R >> +916 0 obj << +/D [913 0 R /XYZ 77.386 532.305 null] +>> endobj +182 0 obj << +/D [913 0 R /XYZ 77.386 339.843 null] +>> endobj +186 0 obj << +/D [913 0 R /XYZ 77.386 163.038 null] +>> endobj +912 0 obj << +/Font << /F20 543 0 R /F29 611 0 R /F16 457 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F45 610 0 R /F41 603 0 R >> +/XObject << /Im28 903 0 R /Im2 596 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -888 0 obj << +921 0 obj << /Length 1561 /Filter /FlateDecode >> @@ -5290,25 +6062,25 @@ xڽ fB +-TeAuQs :maن[j!F* J,$u9Z֒Sјڂx (Y}U D2mE$8]]*2tL; cBBZVDUӐl(,n~%Eߺ1ZWbh@ET{_{b`*ݝn4Z:H-jbY3,r8G3AWbb ZtNZkJ |qN G{X'suCẨ SH삠A"/tSΔeZhNv4`a8< -ugɁ rӈAioJ}uUij?++x1h@6[j +ugɁ rӈAioJ> endobj -885 0 obj << +918 0 obj << /Type /XObject /Subtype /Image /Width 1016 /Height 438 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 891 0 R +/SMask 924 0 R /Length 6554 /Filter /FlateDecode >> @@ -5321,7 +6093,7 @@ M t>UVD7|f::LA||3o::LA|]-f5|3OaN~|v{ov/||6t>|3o:_:_7So|y~7A|_IeA|:FI3뿔~#|A|{7o$^:t~~~|3UωoVU<3A|y@ :L|@o6_/u>Sh:u>7:L|3t>7t>7:L|3t>7t>7:L|3M|3t>7:L|:_f:@|ottf:@|ot|otf:@|ot|otf:@|o:@|otf:@f:@|otf:@f:@|ottf:@|ot| M|3t>7:L|:L|3t>7:t>7:L|3t>7:t>7:L|3t>7t>7:L|3M|3t>7:L|3M|3t>7:L|:L|3t>7:t>Wtf:@|ot|otf:@|o:@|otf:@|o:@|otf:@f:@|ottf:@|ottf:@|ot|otf:@|o:@+C:L|3t>7:t>7:L|3t>7t>7:L|3t>7t>7:L|3M|3t>7:L|:L|3t>7:L|:L|3t>7:t>7:L|3t>7|otf:@|o:@|otf:@f:@|otf:@f:@|ottf:@|ot|otf:@|ot|otf:@|o:@|otf:@t>:E0'l;y;_? ݺ$%vvٚ endstream endobj -891 0 obj << +924 0 obj << /Type /XObject /Subtype /Image /Width 1016 @@ -5335,59 +6107,60 @@ stream x pjl endstream endobj -884 0 obj << +917 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [449.757 619.327 471.036 630.953] -/A << /S /GoTo /D (figure.xxx.29) >> +/A << /S /GoTo /D (figure.xxx.31) >> >> endobj -889 0 obj << -/D [887 0 R /XYZ 115.087 776.032 null] +922 0 obj << +/D [920 0 R /XYZ 115.087 776.032 null] >> endobj -182 0 obj << -/D [887 0 R /XYZ 115.087 712.644 null] +190 0 obj << +/D [920 0 R /XYZ 115.087 712.644 null] >> endobj -890 0 obj << -/D [887 0 R /XYZ 115.087 376.459 null] +923 0 obj << +/D [920 0 R /XYZ 115.087 376.459 null] >> endobj -886 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F42 594 0 R /F29 601 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im27 885 0 R >> +919 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F42 604 0 R /F29 611 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im29 918 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -897 0 obj << -/Length 1492 +930 0 obj << +/Length 1493 /Filter /FlateDecode >> stream xڵXK6W7DQuM٢@91Wlk=E~}g8,^g55$37C.O'fT%7wI3eMbb:y fnӖ]ߖQB'"әLLY~O06L6y+ + -]n\Dbxά2tDKaoBh^p&unO X-qK嫠}5Q&d4g\ _[tS}bR[/pRڴ*w=ֵ~h֮yv$7AAݸ}TAuiauOn%2vOZۻwmG,EZ8y +]n\Dbxά2tDKaoBh^p&unO X-q+嫠}5Q&d4g\ _[tS}bR[/pRڴ*w=ֵ~h֮yv$7AAݸ}TAuiauOn%2vOZۻwmG,EZ8y tܲGѭuבH"p 5UV$R.,S8Ζ#n0.n˷i l9E|K)/W%gWU6U8Ќf} ʲ kP!EFp)h李h:付'y]G] #8V+s+G 4Q@L*dJ/}U2(RBH2EB xJHJ5fT)R\K6Է r C\aYH)罒xr2a/ΜWH],d9,UvW7}GNub )3a|E~6pŗu :T{LzΥ_@18.>,Usy FѴ}ľU|W,"Ǿ.<c@y]?pm}lm0:n8ЮqCHuJ(m2]6.Ll@_/~!q2=YL2J]nC>y9G/r 'G8$X$'%ydeshd> endobj -892 0 obj << +925 0 obj << /Type /XObject /Subtype /Image /Width 159 /Height 164 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 900 0 R +/SMask 932 0 R /Length 29389 /Filter /FlateDecode >> @@ -5489,7 +6262,7 @@ v DX}h˘ƽjZ צC8EjY,"ޱ )KO:{Y[E۠A@kYWe.G^Z(n-}09DbEc筆Y745ٕ)˚ㅃd0QIs1cOa3tocV@>pےa-;(i;(.fnt1nKE-1zqIk`YArRDe.dgT031n}>6,uQ+ י6Z7[YٝFvCx:-ꄀw{M _oNpS HsܑB^&sysQpY6 &[)}:X.ggK탍^-XO'C}MqD]7+H>+ҔK.{&oK_5_45i:}I@ l>wWa\;3@*ZjYvlZo K"UxmS^ a |OsN5+q|#g:T~<Ƽn-[QDB}0I,鋓w$Ju*`s[W(B%s!|Ἧ1g:cPi,V `J{Ch_@ A?v,/;؟ӞHI[0:0.7E uk-BsҜ]멘oG^e iN9QБ*i%țRN3ѿ2C[~&+V' 1Ж(lM4N!$㫬'lgV3VE apSn1o\~lAttTt7`Pc2Vz*Bn{͹u5/Ԝn΋fHxZX?fq|=+>qPs*Q'AgS$*2 A2<أGOS/QZʴE﷾Z}Phw ۟'*II&<E~ǝZi?t= -} ps*z.s _7BĴgF;.l_Xc^i^db;~^}7S֔L: ԐHw SonBo5u?םD]"wܿ~ɺ<@&7Ċ %XvTx,M]@F뀂cd?}/o_K3i: GM\z,Nz&=&U'bG%dWF0{D{+@ :cIw%ٯWg'([CtH!9HD ")GkM$o;ZHCi=B& ^ /!o#^!HZ^"ä0iL%MlfŲ[[ID#F;MzE%I&x`4[K7زvj7.7+T*XQ[%^Ғ(kOuW'jA piG2ntumO&ZE!N@/^I$iG;Iܰɯĺɞfib۽i i&%J;R= R'Hཿ1ډNHd*xRI XeJ^HD;yM.޿-}44xCq2`Xa/X<R$V`=qXAOcKm*aSw6u۷ї֗u[YoO~g﫴?}Lfˑ} ޣ/gt?5o|vei+4N̆'ZZKki-ZZKki}ֿm; endstream endobj -900 0 obj << +932 0 obj << /Type /XObject /Subtype /Image /Width 159 @@ -5503,51 +6276,52 @@ stream x1 /~$`<~| endstream endobj -893 0 obj << +926 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [425.612 376.176 433.028 389.075] /A << /S /GoTo /D (chapter.6) >> >> endobj -898 0 obj << -/D [896 0 R /XYZ 77.386 776.032 null] +931 0 obj << +/D [929 0 R /XYZ 77.386 776.032 null] >> endobj -186 0 obj << -/D [896 0 R /XYZ 77.386 755.708 null] +194 0 obj << +/D [929 0 R /XYZ 77.386 755.708 null] >> endobj -190 0 obj << -/D [896 0 R /XYZ 77.386 590.006 null] +198 0 obj << +/D [929 0 R /XYZ 77.386 590.006 null] >> endobj -895 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F42 594 0 R /F41 593 0 R /F29 601 0 R >> -/XObject << /Im28 892 0 R /Im2 586 0 R >> +928 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F42 604 0 R /F41 603 0 R /F29 611 0 R >> +/XObject << /Im30 925 0 R /Im2 596 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -903 0 obj << -/Length 328 +935 0 obj << +/Length 327 /Filter /FlateDecode >> stream xuMo0 >'N -!AwB`%&92K:/EʀAAJQbpPa(%L3k))F a q U2(GTS'](0yj?ԢjԍtZEQP< vVLsN%U j8X<߲>6Pn1."EkmUҌa?z[a:+eTЪL7 V&/ x6Pn1."EkmUҌa?z[RgZ*khUAm\DOgf[k+ڻөAq +Y}nut{ m"SI2 ^1x?G endstream endobj -902 0 obj << +934 0 obj << /Type /Page -/Contents 903 0 R -/Resources 901 0 R +/Contents 935 0 R +/Resources 933 0 R /MediaBox [0 0 595.276 841.89] -/Parent 899 0 R +/Parent 902 0 R >> endobj -894 0 obj << +927 0 obj << /Type /XObject /Subtype /Image /Width 498 /Height 294 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 906 0 R +/SMask 938 0 R /Length 4286 /Filter /FlateDecode >> @@ -5564,7 +6338,7 @@ L ΁ARX8O:0:оf#ΐ.\iUW U'UWUb\.M(ꍫ>UU] Ug%Uo?ϼP _):굦QͿQ7IKڬy$VuDfԙT=qUo]-%WuɺwrL͂Tuj|uUWu6U9UT}s^HL:ӭLEeYM endstream endobj -906 0 obj << +938 0 obj << /Type /XObject /Subtype /Image /Width 498 @@ -5578,44 +6352,51 @@ stream x! \ fl endstream endobj -904 0 obj << -/D [902 0 R /XYZ 115.087 776.032 null] +936 0 obj << +/D [934 0 R /XYZ 115.087 776.032 null] >> endobj -905 0 obj << -/D [902 0 R /XYZ 115.087 540.575 null] +937 0 obj << +/D [934 0 R /XYZ 115.087 540.575 null] >> endobj -901 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R >> -/XObject << /Im29 894 0 R >> +933 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R >> +/XObject << /Im31 927 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -910 0 obj << -/Length 1425 +942 0 obj << +/Length 1424 /Filter /FlateDecode >> stream xڵWKo6W,F$4S;ij@ Ah`-7#;Rlz) -< 7 >ŋgo>(XdJSBYZdug(XEiFcWL2*΂̂gPeS8I(cWqp; "UBJoaD 2HB$I!]><]=fBcR t/`]XFUkMՏ}^i3*Iz$L(Q"X< /j j3qS - ɛe cQƥleBg:T)B}9rm;@OWJ˰kpt, fl,Y塹ubkc9+>@cUݚMo(4}nccYpHj&%{[:'Lሌ$l-<;ƽ`{E}짯_c:5f֌ L:ҦM N}vr#eV5;5W35jl]9iMmETf`򨃀ќ{W bcEH"M17* ?SzahԐSX/8S/tf뽮!41IMLVSz5m@gƝu]dPvNȞ3r'KmQ0>W^ھf' X.Vzs*D? o༟Ƒ &N=CskC=|fі?<*XG0i6ǣ:d%s-{Ŋ`SGRYB A18p9QWẵh8KgfYHZji !ΣKU.]:S+s';&^'7HE'ԋ.ٷLŠ.&C&~(@>|p70u9 k_Vr7?uX|A01/\$t\O@gvu;~[;Fz߻\-ٺD՞TtݙvtÈU.wk:vrZ~(炩v4L57y(540gAx`r2 3U*H 0i 2FZTe; Ի|mo:n/'oH鉉b_ϣSDμ=5U+WIsRM?f~88 ?j)z:wrQٱxǃkR+.<ŋgo>(XdJSBYZdug(XEiFcWL2*΂̂gPeS8I(cW*ڝM*E!%IP·0"Yd]$Y!.ڮlt1B)NGRCd5`PG>4D?N߁qD$Sh=e&L(EzHHC5q陸VZP2(RR23DI!X@9 'իHeصy:Oyuke +\6:ڕ W nͦ7KU7Nv8e$HVލ^pDFLmo^ н">ׯ̱ykkFthi'Ǿ Hr +}Aֲ鉉Sĝ站 adzw&}*m3u`NyAhNKX1"K$ ŘVq +̟)H04j)y +,y `G:3q `^DӘrx&)ԁA` 3sq :.2 BgF;vdDw֋\iK%炶(+r p +/m_,c+k +_L9Lr7pOHIEZ'zѡ!>h#`A]J +NQMzйbET# K, ܆ AB LD8֜+[FpWY43D,$eg4ֈqx]ѥ*NLL_y.ZĩK +޹IK_USǛgDJÓHER&aEs桏 dWihL8z te/+xp,Es{OhBVИ]l:'j3ncݺl?x-CzG#]vr.nllvjOn*?}L;aDm`{I'V68r2U3YF*[j; +NCH9-?@sgpJo&fLvIxv V [ z<0KGGx*C# -z]f߶77ʗ7DIQݩi"Qgߪ+ 9)&qxnk3?ye;(OX<`5)ǽ7o-ښ5VIsCS_:xeLE;-Rxr?ަO endstream endobj -909 0 obj << +941 0 obj << /Type /Page -/Contents 910 0 R -/Resources 908 0 R +/Contents 942 0 R +/Resources 940 0 R /MediaBox [0 0 595.276 841.89] -/Parent 899 0 R +/Parent 945 0 R >> endobj -907 0 obj << +939 0 obj << /Type /XObject /Subtype /Image /Width 1016 /Height 521 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 913 0 R +/SMask 946 0 R /Length 10310 /Filter /FlateDecode >> @@ -5633,7 +6414,7 @@ p "S⤎/OɷS:Nt>t~pfؿd+@p?suY:%>fv2~~~cLt>w~)jm:ɶw\|t>:@|lξ|t>:_|t>Be{Z-W,+:@w/n_G'@{F^? %^e[N[+2gfpa6(H2w~d-篕!̽e:_et???{t~K;? Y'"tx~l1(ڣu~d3{Ѐ:?͑PDawau>]Ʈ;uv=o'xG:t`οwe2xKKpsatR@|t>:u>7:_|u>@ۍ\+v >ns awݸ6[_q't>YҮ?l㝷󏹑k\t`Ο~qz}z?M._g7n2]>2w _#⮫4*z^QtxOp&y3.f%Qc_=rOYL2Խ6t|%_=\ڷT#ۯb;aWG|yx?r̓ϩLGSp9ŝVi+!Wt~o=oSV~̹"ڃK8r񣁡VA|?׺{w~UZ3-Ͼv:@wOY|:J̍p *e/|"kcUZgv:@W t"ίQ|:@|v|Dm:@u>@|m:.v@|@|t>|t>:@|t>@|:@|t>:u>]6:o|t>:@|t>:o|t>:F[t˰:@|t>:u>:_|t@|m:@u>@|m:.v@|@|t>|t>:@|t>@|:@|t>:u>]6:o|t>:@|t>:o|t>:F[t˰:@|t>:u>:_|t@|m:@u>@|m:.v@|@|t>|t>:@|t>@|:@|t>:u>]6:o|t>:@|t>:o|t>:F[t˰:@|t>:u>:_|t@|m:@u>@|m:.v@|@|t>|t>:@|t>@|:@|t>:u>]6:o|t>:@|t>:o|t>:F[t˰:@|t>:u>:_|t@`a1c1c1c1c1c1c1c1c1c1c1c1:ct1o+7o1'zO?Rbc?k1:cN`c1:c^45c1c1 endstream endobj -913 0 obj << +946 0 obj << /Type /XObject /Subtype /Image /Width 1016 @@ -5647,86 +6428,83 @@ stream x o0 endstream endobj -911 0 obj << -/D [909 0 R /XYZ 77.386 776.032 null] ->> endobj -194 0 obj << -/D [909 0 R /XYZ 77.386 755.708 null] ->> endobj -912 0 obj << -/D [909 0 R /XYZ 77.386 654.649 null] ->> endobj -198 0 obj << -/D [909 0 R /XYZ 77.386 440.592 null] +943 0 obj << +/D [941 0 R /XYZ 77.386 776.032 null] >> endobj 202 0 obj << -/D [909 0 R /XYZ 77.386 252.706 null] +/D [941 0 R /XYZ 77.386 755.708 null] >> endobj -908 0 obj << -/Font << /F23 489 0 R /F44 598 0 R /F43 599 0 R /F42 594 0 R /F29 601 0 R /F16 449 0 R /F46 648 0 R >> -/XObject << /Im30 907 0 R >> +944 0 obj << +/D [941 0 R /XYZ 77.386 654.649 null] +>> endobj +206 0 obj << +/D [941 0 R /XYZ 77.386 440.592 null] +>> endobj +210 0 obj << +/D [941 0 R /XYZ 77.386 252.706 null] +>> endobj +940 0 obj << +/Font << /F23 497 0 R /F44 608 0 R /F43 609 0 R /F42 604 0 R /F29 611 0 R /F16 457 0 R /F46 658 0 R >> +/XObject << /Im32 939 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -916 0 obj << -/Length 1132 +949 0 obj << +/Length 1133 /Filter /FlateDecode >> stream -xڕVYoF~ׯG -0{VR'zDADy`•Ę\9<*@3;Kj /poε`k&brF &E.bŤRfMCUq~ ¥J':σ7/f#OL,Mfɏ<>y5L>;&3s @䯉8NJ&"F9%5Pez#7 ~mHTNu]"a9A؃uKٴbL[خ/&@ZKFVkͦ-cZa(5$R|7%CC? Ɍ,7(U;Faa3RhmM g ȇ -hW.H\QvO[bb9V*+5)`K"vdٙ'nՐ8$. k% -74d΀Sw騩+CԠ:o?P;ȵ -+[ -uei89j"ȫ2[fz')MY08#]UENH1Oo4U\q;!cP~aڄdz-ƺp?Hi]z}K<:_BH礍~0|!s?`M"(bS0S= hzGXi_/MLr  ;ǙMB/}skU2z ֟бbqp^<ʻ HY"*J'?"HʈG Qt}ߨmw蝇^'FXI_`Ս;X8^ -nm= qy?_.ui ]Hջ?, S -!i1ĺҨ˛jqT,̤#N@G*:b5pHs?>GUgli ԙ  -Kez 0amR~q%/zeqkuWxy*2~Ǧ5E-vx-ߏç{G1!/[.DSq/MF+H?X +xڕVYo8~# D )vzXuԊHtc x%Hf.&oBɔ[RYL +lQ\" I4g7iu?PLTr1(iSR aMכ /o!SYCߗ:IuEGkT+ηi]_AvM6:<֚MZ^a @iIl7,L%nJ~@YaojQ vX" ]g ]1J1ښޫt TѮn]+$rG= +jlXlXXD\%ɲ3uOܪ!wqH]zK +0moisd΀Sw騅5S2\*vk~WPy+qps߹ +DW#d)$,(OR:-3>8#]Ue]R9RLSAġ0D꽞8n'>ăy^j:L1]xb߷X)þ6"TCcCTRoXKh0霴&41dxYd}Plf'TW:˯&XB+5iE|R̦ܼFyPcBŚ%p^q"t8KD^H"֡w1:DJ9)(Mt""ed2xTF}%ۂ;/N*d 4'~U7`exe!:in.$Ĺ >܃e@QST2_'t#Uz|4O-njp+CW> endobj -917 0 obj << -/D [915 0 R /XYZ 115.087 776.032 null] +950 0 obj << +/D [948 0 R /XYZ 115.087 776.032 null] >> endobj -914 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F46 648 0 R >> -/XObject << /Im28 892 0 R >> +947 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F46 658 0 R >> +/XObject << /Im30 925 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -922 0 obj << +955 0 obj << /Length 1440 /Filter /FlateDecode >> stream -xڽWKoFWH֚ -6MsE\5|H~}gv*켿QAr}6gB"bI"` ҔIV,i)!luTm[_ o6gQ.R$P::xl>ELdI;]kO/^7?w,megœmJi\ A$f:MȴWU]A-e@{r\',p^WITO8qE/tq JeQƑg +xڽWKoFWH֚ -6MsE\5|H~}gv*켿QAr}6gB"bI"` ҔIV,i)!luTm[_ o6gQ.R$P::xl>ELdI;]kO/^7R?w,megœmJi\ A$f:MȴWU]A-e@{r\',p^WITO8qE/tq JeQƑg "f|g"u$bC\AkQ`ZQuyiq Џ j-t٭{d zCGkʚĽnM]>(L1RBXet]'Y <3s~- <6}^ A ZzD.;󲹓xɔ,=WmAֳ޵){C[$Co&% Pڪ{„~dkI;a>K#wlkє0wfVuSr.,g*#RKOQP)(?ώ 84I`YwP\%Z'2T,fJKRe$jxe/4y*ν@ xc@H3p =4{Bx0Q."9Ӌv JA浣No'^`ϴA͠,\6ƕs뎐rVN45\.ZWC6…`;3Bfء#@#ˆ:Z?SyHuA)|t'PmuIRDOvG-:DbҌṏxp⒏5*%W?}DRWS3# dB|'h=zcHSNue@{6q bl1\_A+kzXgvuNR>;Ca§r?+)]KK7q~0m~{xq6路_"òzD ̲t/B6mSaeM,'$%Htى=M(On h*^dR.yP{x˩jd5 -x?Q:n$|iH_3(\>pu4+ڧCݜ2&=k8x}~"uSi<|}kiVaLL oD0@ +x?Q:n$|iH_3(\>pu4+ڧCݜ2&=k8x}~"uSi<|}kiVaLL oD0 endstream endobj -921 0 obj << +954 0 obj << /Type /Page -/Contents 922 0 R -/Resources 920 0 R +/Contents 955 0 R +/Resources 953 0 R /MediaBox [0 0 595.276 841.89] -/Parent 899 0 R -/Annots [ 919 0 R ] +/Parent 945 0 R +/Annots [ 952 0 R ] >> endobj -918 0 obj << +951 0 obj << /Type /XObject /Subtype /Image /Width 1018 /Height 521 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 925 0 R +/SMask 958 0 R /Length 8139 /Filter /FlateDecode >> @@ -5740,7 +6518,7 @@ v8 :˫}33߰g}ֵ1A}33y9?^/}33t/~DQK}8}q}33s>H վ__u$ϡQpR_훙揷?>Pc}`ҝof->&ɣ>'~Ծ73S[j÷%}33>pOUJ훙}>I?nu73S73S}ofPffPff)ԾPj|73S}S}WAffGrμ j^T>73_j_[~?OUdPffja3/vUϞ}|Pffjz>׹Ƀ=&y{q7Ijoff{޷_Qs?#pqZ9тڏW}33ۿǿ{8g\WԾ_y~joff{~ݑj_훙}Ծ\33733733M훙}ݹo_훙}Α73Sj@}33վ73S_}ͿRffAsoffj}b|#,}33JkOL>s_K훙}8_FվWk's[ވ73Sj`{~}ԾآH33S}1y^,jL}&/fv'ԾWj_훙},jL})3QffjM<+WffjRffj>jpj삵u}@>}@jP>}@jP>}@jP>}@jP>}@jP>}@jP>}@jP>@jP>@jP>@jP>@jP>@jP>@jP>@jP>jP>jP>jP>jP>jP>jP>jP>}P>}P>}P>}P>}P>}P>}P>}@>}@>}@>}@>}@>}@>}@>}@j>}@j>}@j>}@j>}@j>}@j>9AI endstream endobj -925 0 obj << +958 0 obj << /Type /XObject /Subtype /Image /Width 1018 @@ -5754,80 +6532,79 @@ stream x +' endstream endobj -919 0 obj << +952 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [282.066 437.149 303.345 450.049] -/A << /S /GoTo /D (figure.xxx.32) >> +/A << /S /GoTo /D (figure.xxx.34) >> >> endobj -923 0 obj << -/D [921 0 R /XYZ 77.386 776.032 null] +956 0 obj << +/D [954 0 R /XYZ 77.386 776.032 null] >> endobj -206 0 obj << -/D [921 0 R /XYZ 77.386 755.708 null] +214 0 obj << +/D [954 0 R /XYZ 77.386 755.708 null] >> endobj -924 0 obj << -/D [921 0 R /XYZ 77.386 651.767 null] +957 0 obj << +/D [954 0 R /XYZ 77.386 651.767 null] >> endobj -210 0 obj << -/D [921 0 R /XYZ 77.386 311.453 null] +218 0 obj << +/D [954 0 R /XYZ 77.386 311.453 null] >> endobj -920 0 obj << -/Font << /F23 489 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R /F46 648 0 R /F41 593 0 R /F42 594 0 R /F29 601 0 R >> -/XObject << /Im31 918 0 R >> +953 0 obj << +/Font << /F23 497 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R /F46 658 0 R /F41 603 0 R /F42 604 0 R /F29 611 0 R >> +/XObject << /Im33 951 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -928 0 obj << -/Length 652 +961 0 obj << +/Length 653 /Filter /FlateDecode >> stream -xڕTMO0Wxo!_#UV, =,pM"RW;$S'7oxHM9fypr&ጦ,$_ʬ!2RC܇\RNXkf秳,H׵m$L :s}AV[-«ӛ<@4le[A(zbj$6dK¨L- Ж(&e ~pjMU]jλۄ~rc[SL̢#4p#7h{˨W ]ӗ0~n v֭5>c2' j{z^J~|'%9L'$n`DWZ +xڕTMO0Wxo!_#UV, =,pM"RW;$S'7oxHM9fypr&ጦ,$_ʬ!2RC܇\RNXkf秳,H׵m$L :s}AV[-«ӛ<@4le[A(zbj$6dK¨L- Ж(&e ~pjMU]jλۄ~rc[SL̢#4p#7h{˨W ]ӗ0~n v֭5>c2' j{z^J~|'%9L'$n6 0U D?WU endstream endobj -927 0 obj << +960 0 obj << /Type /Page -/Contents 928 0 R -/Resources 926 0 R +/Contents 961 0 R +/Resources 959 0 R /MediaBox [0 0 595.276 841.89] -/Parent 899 0 R +/Parent 945 0 R >> endobj -929 0 obj << -/D [927 0 R /XYZ 115.087 776.032 null] +962 0 obj << +/D [960 0 R /XYZ 115.087 776.032 null] >> endobj -926 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F46 648 0 R /F41 593 0 R >> -/XObject << /Im11 660 0 R >> +959 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F46 658 0 R /F41 603 0 R >> +/XObject << /Im11 670 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -934 0 obj << -/Length 1085 +967 0 obj << +/Length 1087 /Filter /FlateDecode >> stream -xڍVKo6W(#>DIeln5zHӃ12aNXPu"H<gQeO潐Ș"6OQQ0YHU6MgKҼ{3__uYqG\:ReɊ2z<^eLTȽR%R7﹎xƪ7`(T|_OxLQ eƤf y6r(#+hΠo0 VEܚc[,;$# q"6(=}53^2\jmdzuA; ˂%uG v]PB4~a fgbg" @ŭHz:N%dõod;]0R5/]дfy- m7U`h[2z۞,f<*p$:ĩ*>gTH$Ldh4)8ߗ/ftn\3^S̤@}_~oXAqVA[VuS +xڍVKo6W(#>DIeln5zHӃ12aNXPu"p4ǑUny/d$2ȣSTL:ҥdUMsŒ4/LC|mV,+TYW.ro&xWT#s5/JbkP "s&tIEnk&&,%Nj .K* ykk'yD=XUeq/Bx !+v̘T"hR3!φ?Pux*mhʛ#5z[bliz$1"ݟQ1e`_kW@k0\>;;O +JZ|n0UkΌ0@Ѫ iBG7ZYw /fa񶷮?=6P{ c0;8V9L板*n-ێ3`QB]D##sW u`v=Pѩŀ2 +LmK0Wzۓ GU.>OCuFՌ$vD~L3-}b9rxq՚3}> endobj -930 0 obj << +963 0 obj << /Type /XObject /Subtype /Image /Width 1018 /Height 522 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 938 0 R +/SMask 970 0 R /Length 5401 /Filter /FlateDecode >> @@ -5842,7 +6619,7 @@ g /79a'P(K'offfvڟ lşMʽGΤtǗ#yz'=%jjH̓o_*k8;y8S}333k~hoOO1G򘙙#yѸxOyYZDޓH7 P"oL.[qз~ffffj_offfQj@?e}333O57y}333C>$}3333WffffjoffffjoffffjofffA훙}Pffffj>j>j>jL7333S>j_훙}Ծ}Ծ}Ծ׫}3333jLվG훙G훙G훙}7333S>j_훙}Ծ}Ծ}ԾW}3333jLվG훙G훙G훙}7333S>j_훙}ԾG훙G훙}7333S>}3333WffffjoffffjoffffjofffA훙}(}Pj>GnW\jN*mkP>jP>jP>}P>}P>}P>}P>}P>}P>}P>}@>}@>}@>}@>}@>}@>}@>}@j>}@j>}@j>}@j>}@j>}@j>}@j>}@jP}@jP}@jP}@jP}@jP}@jP}@jP}@jP}@jP}@jP}@jP}@jP}@jP}@jP}@jP>}@jP>}@jP>}@jP>}@jP>}@jP>}@jP>}@jP>@jP>@jP>@jP>@jP>@jP>@jP>@jP>jP>jP>jP>jP>jP>jP>jP>}P>H endstream endobj -938 0 obj << +970 0 obj << /Type /XObject /Subtype /Image /Width 1018 @@ -5856,54 +6633,52 @@ stream x O\j!i endstream endobj -931 0 obj << +964 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [290.989 437.036 312.268 448.662] -/A << /S /GoTo /D (figure.xxx.33) >> +/A << /S /GoTo /D (figure.xxx.35) >> >> endobj -935 0 obj << -/D [933 0 R /XYZ 77.386 776.032 null] +968 0 obj << +/D [966 0 R /XYZ 77.386 776.032 null] >> endobj -214 0 obj << -/D [933 0 R /XYZ 77.386 755.708 null] +222 0 obj << +/D [966 0 R /XYZ 77.386 755.708 null] >> endobj -936 0 obj << -/D [933 0 R /XYZ 77.386 651.456 null] +969 0 obj << +/D [966 0 R /XYZ 77.386 651.456 null] >> endobj -932 0 obj << -/Font << /F23 489 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R /F46 648 0 R >> -/XObject << /Im32 930 0 R >> +965 0 obj << +/Font << /F23 497 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R /F46 658 0 R >> +/XObject << /Im34 963 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -941 0 obj << +973 0 obj << /Length 167 /Filter /FlateDecode >> stream -xU; @~ŔIu7{ -1@`hc -+GTnavq3d&!L ]!' -8z b5.R.+պ9-,)-MHc{KA'%K0i x)W(O(B,l 6aT|[YJ/V +xU; @~ŔIẛͽJ| gcHeV}  +FkLC"GA@cMN>0qHb=-S)'U!585v<}Z&< b*ΣzƐ4<^#j(W(O(B,l  JZ/Q endstream endobj -940 0 obj << +972 0 obj << /Type /Page -/Contents 941 0 R -/Resources 939 0 R +/Contents 973 0 R +/Resources 971 0 R /MediaBox [0 0 595.276 841.89] -/Parent 937 0 R +/Parent 945 0 R >> endobj -942 0 obj << -/D [940 0 R /XYZ 115.087 776.032 null] +974 0 obj << +/D [972 0 R /XYZ 115.087 776.032 null] >> endobj -939 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +971 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -945 0 obj << -/Length 1294 +977 0 obj << +/Length 1293 /Filter /FlateDecode >> stream @@ -5915,72 +6690,72 @@ H(? bBIGY8^;:,Fwvvj? ޵}odOXYL < mk_ ̺S}_m.ͣQ(Otn7;xpd2DF]dY^&  `&P0zfC41f-oҍT)?@K*gkPưcXтfe|4Xs\{~#] C O2UkIC`$y^LHKNJ/K%m aky_ ͆nsȢC w ,uʍMBNQWQWfq_{X>摈`)$ZEw> endobj -946 0 obj << -/D [944 0 R /XYZ 77.386 776.032 null] +978 0 obj << +/D [976 0 R /XYZ 77.386 776.032 null] >> endobj -218 0 obj << -/D [944 0 R /XYZ 77.386 755.708 null] +226 0 obj << +/D [976 0 R /XYZ 77.386 755.708 null] >> endobj -222 0 obj << -/D [944 0 R /XYZ 77.386 446.27 null] +230 0 obj << +/D [976 0 R /XYZ 77.386 446.27 null] >> endobj -943 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F45 600 0 R >> -/XObject << /Im2 586 0 R >> +975 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F45 610 0 R >> +/XObject << /Im2 596 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -949 0 obj << -/Length 178 +982 0 obj << +/Length 179 /Filter /FlateDecode >> stream -xUαr1 _] V'|ː  - UhHߏ 4#gon^tE=J), ,k0{nXAUq_. };m?Z7%Ruuql(V2~nWIuC XUG,獼)y2J +xUαr1 _]N])P!M(}<̄N3Ү b=M¢GXR)Q2%U_̬%̆WSPUiCe܆}]uC[9!( _'\b%r;=g'|w_(ux +Z2N endstream endobj -948 0 obj << +981 0 obj << /Type /Page -/Contents 949 0 R -/Resources 947 0 R +/Contents 982 0 R +/Resources 980 0 R /MediaBox [0 0 595.276 841.89] -/Parent 937 0 R +/Parent 979 0 R >> endobj -950 0 obj << -/D [948 0 R /XYZ 115.087 776.032 null] +983 0 obj << +/D [981 0 R /XYZ 115.087 776.032 null] >> endobj -947 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +980 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -955 0 obj << +988 0 obj << /Length 1472 /Filter /FlateDecode >> stream xڕWKs6WHX$[.AI5iS@yb*U[uIIkt^V$ŊвKۑ}?0 ^zJ%hylKuaFZ؁nkWš!%T,IұU]̘SJ%aSPj >br.plhFwo0ZET1! l@ޏx [["8g#IŴV3DgČ8QGEhasZixiPwJ -zm'm]-'[{6@ybhx~z@fZ0OТ#ʘӷHRᨉ,eZ䁡♲s|Fy4YZH,|UmIX& zq]?T =cK3ՔuCBSПZ4O-\k׼h:t+u+ܟE Ex~xtji44£ǙZir";\IԶ7m̀Dgu@<IJH%-T[< (+|%)9|Okk=>!w{WuF9v)@ߑa p2%6Ė^xKQή/;hWǡ=dmHtӳ( ȫ^nC}ԁFoyo 8]r{9ECKl3 -$]{p%`gE9s}"Hf922,eL!>{< %9ővb|-퉴xYJ|ώޭ +zhnIȕ^e.EG'wt{]G_3RQrvLJK/U]nO62ݟ `\Όghf6qA8J8:`""A x$h~ͳqp\_?i&!,ai?+N {ڹm 6zPHa:lyiLmU[pBJ:ҼzXiωT>.AI5iS@yb*U[uIIkt^V$ŊвKۑ}?0 ^zJ%hylKuaFZ؁nkWš!%T,IұU]̘SJ%aSPj >br.plhFwo0ZET1! l@ޏx [["8g#IŴV3DgČ8QGEhasZixiPwJ +zm'm]-'[{6@ybhx~z@fZ0OТ#ʘӷHRᨉ,eZ䁡♲s|mFy4YZH,|UmIX& zq]?T =cK3ՔuCBSПZ4O-\k׼h:t+u+ܟE Ex~xtji44£ǙZir";\IԶ7m̀Dgu@<IJH%-T[< (+|%)9|Okk=>!w{WuF9v)@ߑa p2%6Ė^xKQή/;hWǡ=dmHtӳ( ȫ^nC}ԁFoyo 8]r{9ECKl3 +$]{p%`gE9s}"Hf922,eL!>{< %9ővb|-퉴xYJzώ;޵ endstream endobj -954 0 obj << +987 0 obj << /Type /Page -/Contents 955 0 R -/Resources 953 0 R +/Contents 988 0 R +/Resources 986 0 R /MediaBox [0 0 595.276 841.89] -/Parent 937 0 R +/Parent 979 0 R >> endobj -951 0 obj << +984 0 obj << /Type /XObject /Subtype /Image /Width 1026 @@ -6062,7 +6837,7 @@ E n  lcX7 @& ($wv @` @ pQB endstream endobj -952 0 obj << +985 0 obj << /Type /XObject /Subtype /Image /Width 19 @@ -6077,30 +6852,30 @@ stream 8Oc|3ya'đ‰?Woهrtbj&p{ 6õaPAԌ N" -4)2Q" endstream endobj -956 0 obj << -/D [954 0 R /XYZ 77.386 776.032 null] ->> endobj -226 0 obj << -/D [954 0 R /XYZ 77.386 755.708 null] ->> endobj -230 0 obj << -/D [954 0 R /XYZ 77.386 656.277 null] ->> endobj -957 0 obj << -/D [954 0 R /XYZ 77.386 618.373 null] +989 0 obj << +/D [987 0 R /XYZ 77.386 776.032 null] >> endobj 234 0 obj << -/D [954 0 R /XYZ 77.386 351.976 null] +/D [987 0 R /XYZ 77.386 755.708 null] >> endobj 238 0 obj << -/D [954 0 R /XYZ 77.386 217.638 null] +/D [987 0 R /XYZ 77.386 656.277 null] >> endobj -953 0 obj << -/Font << /F23 489 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R /F46 648 0 R /F45 600 0 R >> -/XObject << /Im33 951 0 R /Im34 952 0 R >> +990 0 obj << +/D [987 0 R /XYZ 77.386 618.373 null] +>> endobj +242 0 obj << +/D [987 0 R /XYZ 77.386 351.976 null] +>> endobj +246 0 obj << +/D [987 0 R /XYZ 77.386 217.638 null] +>> endobj +986 0 obj << +/Font << /F23 497 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R /F46 658 0 R /F45 610 0 R >> +/XObject << /Im35 984 0 R /Im36 985 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -960 0 obj << +993 0 obj << /Length 1839 /Filter /FlateDecode >> @@ -6116,34 +6891,34 @@ q1i ;3@՝ }$1i[@L4cQ6N"`$$T2PPڽ8_MJ/HoJJEa0@UJ1`Ƈ1Tsm n5멟')Xy,gxDLς:0cٞ[mԚks͢k85+p7K`O/{Hv-pM&xgKS^ДY#-`:Khp6<γY&' m)iFJtv\-/z%}xvTHjcÓ0L N_%WcutklC3JlL $"eH?ΦLl. n.l#a (Ǚ{u5Y'1*+) )iX;!0"99݆ Tuq<G8Vcs4CfBBYRԷN-Gp()mDY_ f2s1EyQr/> endobj -961 0 obj << -/D [959 0 R /XYZ 115.087 776.032 null] +994 0 obj << +/D [992 0 R /XYZ 115.087 776.032 null] >> endobj -242 0 obj << -/D [959 0 R /XYZ 115.087 555.209 null] +250 0 obj << +/D [992 0 R /XYZ 115.087 555.209 null] >> endobj -958 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F46 648 0 R /F45 600 0 R >> -/XObject << /Im5 607 0 R >> +991 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F46 658 0 R /F45 610 0 R >> +/XObject << /Im5 617 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -967 0 obj << -/Length 1413 +1000 0 obj << +/Length 1412 /Filter /FlateDecode >> stream xWKoFWHf_\)8qP qtPTGwfgIbb-gfg<V$fR'l&Leip$撥\ qe 4SȱZDg䣷8NtJ n٢5ŷxG}$ ֙~&;"de$L=>LfZ+'2>;ҸXȞ`yz?oE}d,3 giV,5+MWU9@ ԰ !C$E飉a$Y}+a(qQa~HK +1*4|fv=OUyX#JBҋ-.WWWtyuqח>V$fR'l&Leip$撥\ qe 4SȱZDg䣷8NtJ n٢5ŷxG}$ ֙~&;"de$L=>LfZ+'2>;ҸXȞ⠒`yz?oE}d,3 giV,5+MWU9@ ԰ !C$E飉a$Y}+a(qQa~HK ֹ{I>xlg"i7 ٯ 7ES>tyY֍gmnSتTܴK\wH(X8J=K!n.J}i+,\vg$IvYߪDFHv}2kH$26,5ClGR8K@S/䌲fxd[܇nkK4=o lk[(8U]"3rVSU=йHzP!fص xXm *.qa%:@*DbɈp/J\l VCuڲ!X%}yY A~؏xRM'.E8O>tzjw>pzL(HO$ /BWAsb <]tu/2Ud rC^Qϝjڼl}/Z+ ;!{j#n򺣾BngX59y@vLŐ_ ['%,iƍ!>z1?'2P OjUU:oÒún{د7o*[}WY (j7\ +7>1?'2P OjUU:oÒún;_o"U,[?<6pX9&?q2x҈ endstream endobj -966 0 obj << +999 0 obj << /Type /Page -/Contents 967 0 R -/Resources 965 0 R +/Contents 1000 0 R +/Resources 998 0 R /MediaBox [0 0 595.276 841.89] -/Parent 971 0 R -/Annots [ 963 0 R ] +/Parent 979 0 R +/Annots [ 996 0 R ] >> endobj -962 0 obj << +995 0 obj << /Type /XObject /Subtype /Image /Width 1026 @@ -6258,7 +7033,7 @@ rO !@zH|MzC@%2!MDk~'N h$&ޔh Pl@7EoSHg A4_f D%!7ѧ{+4h%{`:@H|MB> +/A << /S /GoTo /D (figure.xxx.37) >> >> endobj -968 0 obj << -/D [966 0 R /XYZ 77.386 776.032 null] +1001 0 obj << +/D [999 0 R /XYZ 77.386 776.032 null] >> endobj -246 0 obj << -/D [966 0 R /XYZ 77.386 755.708 null] +254 0 obj << +/D [999 0 R /XYZ 77.386 755.708 null] >> endobj -969 0 obj << -/D [966 0 R /XYZ 77.386 725.986 null] +1002 0 obj << +/D [999 0 R /XYZ 77.386 725.986 null] >> endobj -970 0 obj << -/D [966 0 R /XYZ 77.386 365.289 null] +1003 0 obj << +/D [999 0 R /XYZ 77.386 365.289 null] >> endobj -965 0 obj << -/Font << /F20 534 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R /F46 648 0 R /F41 593 0 R >> -/XObject << /Im35 962 0 R /Im2 586 0 R /Im36 964 0 R >> +998 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R /F46 658 0 R /F41 603 0 R >> +/XObject << /Im37 995 0 R /Im2 596 0 R /Im38 997 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -984 0 obj << -/Length 1224 +1016 0 obj << +/Length 1226 /Filter /FlateDecode >> stream @@ -6412,20 +7187,19 @@ x FTFxe"?BI$/;&bx8c&WU8VJEP&f_o&7<Ke|>$%CVoPT?|hObvQn쾪i3Q0D&(.IŰW-+K_{sQ+vt|&b؟1 TN'@4nI)@)⮓|!62gȠ|x S^}CY0JZrԄ?)r݂:Y(Pɮ6/n4۟Lb0і'z M+{ -~=|Y2Nņي M~%y>^9P%PmnܹL?SBs͆鄛lAgmJ6$Nsj&w0!!GJq.%ܰsKy~?T:p~Lzq endstream endobj -983 0 obj << +1015 0 obj << /Type /Page -/Contents 984 0 R -/Resources 982 0 R +/Contents 1016 0 R +/Resources 1014 0 R /MediaBox [0 0 595.276 841.89] -/Parent 971 0 R -/Annots [ 972 0 R 974 0 R 976 0 R 977 0 R 978 0 R ] +/Parent 979 0 R +/Annots [ 1004 0 R 1006 0 R 1008 0 R 1009 0 R 1010 0 R ] >> endobj -973 0 obj << +1005 0 obj << /Type /XObject /Subtype /Image /Width 1026 @@ -6545,7 +7319,7 @@ Z Rx6p" @V! hyGzxD8M݀$ @'l@v[欎 w 7MAv\<> +/A << /S /GoTo /D (figure.xxx.38) >> >> endobj -974 0 obj << +1006 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [287.253 482.807 308.531 494.434] -/A << /S /GoTo /D (figure.xxx.37) >> +/A << /S /GoTo /D (figure.xxx.39) >> >> endobj -976 0 obj << +1008 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [275.662 220.727 296.94 232.354] -/A << /S /GoTo /D (figure.xxx.38) >> +/A << /S /GoTo /D (figure.xxx.40) >> >> endobj -977 0 obj << +1009 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [152.659 126.564 173.937 138.191] /A << /S /GoTo /D (section.16.2) >> >> endobj -978 0 obj << +1010 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [220.463 126.564 233.303 138.191] /A << /S /GoTo /D (section.16.2) >> >> endobj -985 0 obj << -/D [983 0 R /XYZ 115.087 776.032 null] +1017 0 obj << +/D [1015 0 R /XYZ 115.087 776.032 null] >> endobj -986 0 obj << -/D [983 0 R /XYZ 115.087 707.938 null] +1018 0 obj << +/D [1015 0 R /XYZ 115.087 707.938 null] >> endobj -987 0 obj << -/D [983 0 R /XYZ 115.087 435.563 null] +1019 0 obj << +/D [1015 0 R /XYZ 115.087 435.563 null] >> endobj -250 0 obj << -/D [983 0 R /XYZ 115.087 199.604 null] +258 0 obj << +/D [1015 0 R /XYZ 115.087 199.604 null] >> endobj -254 0 obj << -/D [983 0 R /XYZ 115.087 105.441 null] +262 0 obj << +/D [1015 0 R /XYZ 115.087 105.441 null] >> endobj -982 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F46 648 0 R /F44 598 0 R /F43 599 0 R /F42 594 0 R >> -/XObject << /Im37 973 0 R /Im38 975 0 R >> +1014 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F46 658 0 R /F44 608 0 R /F43 609 0 R /F42 604 0 R >> +/XObject << /Im39 1005 0 R /Im40 1007 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -993 0 obj << -/Length 2177 +1025 0 obj << +/Length 2176 /Filter /FlateDecode >> stream @@ -6714,26 +7488,23 @@ xڍXKwܶ ͋`]䈮PMc A xwoK~e_\ALG:!c/"G $Bd -biQ2Y(zqR8B`Zg'1N*'HFdU -@Zv|Q Y`z ? -&ғKԈ)ҒX<" 4MpO  @2ҟ(~x4C7CG`uQF2G3us'q׍pdMlOl4$XW֤R1_f 6-/n! -ʖ#DYrL45*dtCl4'}86jKu[Z!naq) -XJCDuVe6 ҾwC -!=nMFxE8lϙkv8!)Y$AȻ*PG)W\FޒC OLMKAq7b3Mj;!h!$ -WEx rL+K4{-v>$5`shc7^JB`'p)ߺtim$xHi7u\u cU-IRdPych5ȇ{k6hS\ rE|$ADLlES&9[T&c ! tB y8?ý'?#?{.:kڲ y7ؙbr&0&r@0`RlBe0a0hYS(`0r^jxp S(҄0LVLCJ6#jcy5 6lgcg"f  SAYGZ;8q ],栐M&5\*dH-ۨDŽ)L SdjMӏ֌QH1<'18!z{-VlSb`,Es!S4w! ea56Qاf;=OCU$O%[ᔙ*&9TbgEE1c;k\g@S -F -u7Re9 IBG%-Hollߡ }Ԧhc7PD:ۣ}k&CVU{z|44զDP ҩ!?"J:q UGBPL@ uaiP E!c1cA ,̌q΁ 1&ByMKqM1P v垒6՘ +biQ2Y(zqW¹>YaI4E*GV]/_lT;lB^O'8$5b#j$:H/MSAgE B.' +980MdQ+&=o`ѵQ?LIucoD=۠.ӡf/} $5)@T WYBMˋ[Bﲲe'f9gM +Y-h5<Ő[w:ɱͬR gD/@V8>[XE֦//zUMݐ*BH[SQ^.+syHJ,8k)J Q-@$PSShRw܍L;ګjHw1ZIk|C g]ƩI 6MR= !\>sJFz]Z74(dm5xA]}(rDnKeRY"T^$Z +! W\E24 s<[b%ip08y.ɘwHC<q.p/ = oe'O@Gd型nZhsEM{r3v  X+-pL=0Z +>̡\T4:6TyRNA.x0yp!G8}+b"c: fp/4**jɻU%ѐ^b^y|5j{ { ج"KN cPVYؼYEJ[xىկ1r">a/ SxǬSem;ͿXChaEM7 y<ۙdHYBFdP¬nN0a'lK-9($'m| -uy +RKj6j1a +@{0ZS5r4a} "I ~%bAw0KzjHbgB@By F.)pSkPU= gs8yIV8efıa(ĠIN"UؙFaw<Y;ШuBp1 ߱~nE-fH}mБ=`I ,R whB)Z+ -nm_ڳ8xj-:D4~)i/y6D7E1G>n)T)0tsHgȩqBU8>T<2%P/':H]X1TBQH=X̃,Xs{c~( #3c\s C@mӒuv\8yy Tbq]M&az endstream endobj -992 0 obj << +1024 0 obj << /Type /Page -/Contents 993 0 R -/Resources 991 0 R +/Contents 1025 0 R +/Resources 1023 0 R /MediaBox [0 0 595.276 841.89] -/Parent 971 0 R -/Annots [ 980 0 R 988 0 R 989 0 R ] +/Parent 1028 0 R +/Annots [ 1012 0 R 1020 0 R 1021 0 R ] >> endobj -979 0 obj << +1011 0 obj << /Type /XObject /Subtype /Image /Width 1025 @@ -6826,65 +7597,62 @@ z{ %1 d x#) @_<y(OCy# @Iz@8O}M  @ 4< @ @^KV @hB @uG2 @X@ {z/mX  @ EW endstream endobj -980 0 obj << +1012 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [187.275 274.474 208.553 286.1] -/A << /S /GoTo /D (figure.xxx.40) >> +/A << /S /GoTo /D (figure.xxx.42) >> >> endobj -988 0 obj << +1020 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [128.993 156.521 150.271 168.147] -/A << /S /GoTo /D (figure.xxx.41) >> +/A << /S /GoTo /D (figure.xxx.43) >> >> endobj -989 0 obj << +1021 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [239.919 142.972 261.197 154.598] -/A << /S /GoTo /D (figure.xxx.42) >> +/A << /S /GoTo /D (figure.xxx.44) >> >> endobj -994 0 obj << -/D [992 0 R /XYZ 77.386 776.032 null] +1026 0 obj << +/D [1024 0 R /XYZ 77.386 776.032 null] >> endobj -995 0 obj << -/D [992 0 R /XYZ 77.386 635.351 null] +1027 0 obj << +/D [1024 0 R /XYZ 77.386 635.351 null] >> endobj -258 0 obj << -/D [992 0 R /XYZ 77.386 254.855 null] +266 0 obj << +/D [1024 0 R /XYZ 77.386 254.855 null] >> endobj -991 0 obj << -/Font << /F20 534 0 R /F42 594 0 R /F16 449 0 R /F44 598 0 R /F43 599 0 R /F46 648 0 R /F48 720 0 R >> -/XObject << /Im39 979 0 R /Im5 607 0 R >> +1023 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F16 457 0 R /F44 608 0 R /F43 609 0 R /F46 658 0 R /F48 730 0 R >> +/XObject << /Im41 1011 0 R /Im5 617 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1006 0 obj << -/Length 1357 +1039 0 obj << +/Length 1356 /Filter /FlateDecode >> stream -xWKs6W7*"x=VR'׵@GJw Ҕu;nO\.oXhx>yFHpVBD/D&&/Șf$T|t~6{;;&Jxvz>BRdz%2]gg$iT/f]NOw|u"+ YTy3G X|q<(\&Nx8ZTfDgJʯd̋i(4O s_nRlM%ddCQLf #m +xWKs6W7*"x=VR'׵@GJw Ҕu;nO\.oXhx>yFHpVBD/D&&/Șf$T|t~6{;;&Jxvz>BRdz%2]gg$iT/f]NOw|u"+ YTy3G X|q<(\&Nx8ZTfDgJʯd̋i(4O s_nRlM%ddCQLf #m &$}tsS]DfgȾYjÚrlŪoo! 5N*ɑbndsP4E>un꙽u ӺrIxPS$IK! ޠкQ+ћPH{?pD\7#Ȧ-;FwT0ZdrHd>ZW.t/ֶnYKT[;mBgp[sYFOTuv%I Mܔ֮IC;ֆ=;M?{<0h)Ѱa,)aXѡ #F>46BN:ǻƻ4eFn$x.OFi;%sT -(B?@Bnj[-X9v,x:eCNP`!UGqc>-,R,zɨgtO3ɇy_H|vDDB I%t*ЃaUnD+'8v]n`@WYnˀaA9KIm[2TĠ . ɡ |1 - P -]_PBVO)カ@Z^[&}xmmזC-q9' Y}﹕?skhEkkB Ke%F0-S % +Ͽj㖑Ƀ >ޠкQ+ћPH{?pD\7#Ȧ-;FwT0ZdrHd>ZW.t/ֶnYKT[;mBgp[sYFOTuv%I Mܔ֮IC;ֆ=;M?{<0h)Ѱa,)aXѡ #F>46BN:ǻƻ4eFn$xÈ7tA}2OI.(R8ERp;Tjy(Ҍ|ȱdYijЉ /[J@vzȆ/<!m` f1(eYгLF={I>̫jηD &#z`&jH헐/9T܄4 @}v'Z9ıv[2rC^ BYMjے"]pqN5M8Q^R> endobj -981 0 obj << +1013 0 obj << /Type /XObject /Subtype /Image /Width 1027 @@ -6976,7 +7744,7 @@ $T %1 v  ,_o$1 '/9 @4N 7OC}w $ @&@ H'Uڼ< @@8 @v$1d@ 05N @;l endstream endobj -1000 0 obj << +1033 0 obj << /Type /XObject /Subtype /Image /Width 1025 @@ -7077,52 +7845,50 @@ m #` cL * 0FkҌ!LK h&ʹ;1AO07~@P# h&l"@ @`j}I^Kf#zm 4^f|@`Zx< LM@5i݉ xxw!F@5ifk@x@ 'y45aW:^ Gh<#Q) u Kk> +/A << /S /GoTo /D (figure.xxx.45) >> >> endobj -999 0 obj << +1032 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [372.476 363.711 399.178 376.61] -/A << /S /GoTo /D (figure.xxx.44) >> +/A << /S /GoTo /D (figure.xxx.46) >> >> endobj -1007 0 obj << -/D [1005 0 R /XYZ 115.087 776.032 null] +1040 0 obj << +/D [1038 0 R /XYZ 115.087 776.032 null] >> endobj -996 0 obj << -/D [1005 0 R /XYZ 115.087 762.483 null] +1029 0 obj << +/D [1038 0 R /XYZ 115.087 762.483 null] >> endobj -997 0 obj << -/D [1005 0 R /XYZ 115.087 311.437 null] +1030 0 obj << +/D [1038 0 R /XYZ 115.087 311.437 null] >> endobj -1004 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F16 449 0 R /F46 648 0 R /F41 593 0 R >> -/XObject << /Im40 981 0 R /Im2 586 0 R /Im41 1000 0 R >> +1037 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F16 457 0 R /F46 658 0 R /F41 603 0 R >> +/XObject << /Im42 1013 0 R /Im2 596 0 R /Im43 1033 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1012 0 obj << +1045 0 obj << /Length 444 /Filter /FlateDecode >> stream -xڽMS0{HZ}rKI`R' a&I(ӿߵ$聓ɒ b\KP -O)8A -n4"҅rXVQq(u(e.$M3m"/ϯEwtMIʋ=-mŃP7s[ Dc+nn%87i+` ,7!^Qi14K>:Cm0nJj~Ytk4|Fޫѱ.sV>3h@7ݺH ň-f\{*4P:ݦ^׻;~jBSLߏseQ~zK\&o@s4힦ҤPِ13h@7ݺH ň-f\{*4P|:ݦ^׻;~jBSLߏseQ~7&Mȁ>i=M=iOs`vCe41N9/Q88 x8|>qc8qNTڲu> endobj -1001 0 obj << +1034 0 obj << /Type /XObject /Subtype /Image /Width 1026 @@ -7206,7 +7972,7 @@ E Y|P-Z|,c`w8Vbr0 U ÈR)N Sh$HLMr\ghxXD(tQ#~g|W '>險9w^UMm.y^s֐f':ʽ{ 4;8]^9|__nnRyfsFۮ/؃7{wǷu}??ۏR8N&mިU*Z&1-ӱmQόd kkX0t88~zKEBH!Tmot˛w핞vㄛ[{TU]O6cpȉF͍F"8fc\5;P(LBhfF(X0 ߟdtDžA 4rZݓH) Hᐪj똦eFQ굪mF^5Ukek۶e6lvDzlDZ]u]uBOx+v͹E[FQh4:88Jh0TqjZTrPX]]j@ _/S 8H=4[tT݅d=\/}:b.n6ݚ-v'1H8qx[W.R |$n 컯<>ew p0s#:3s_`@Zdl@u) ٠VɆ-:J6{ n:i/P}ب/ЖvZfV|4of+0׷<-xN^d5ƀ;|>o)]8ɢ+ٿ-K<!O W.R n<>@k/D%εQYcf»tn_cB_*؁mA  ޤ H Zۭ]JKDӆlޅk& C|, :6l{wa dq=g -׃&)esޅ}@ K$ޏ;]Rl)h|k{/@ /<4waNAdĀ>hȱ^*1cl@pGO(1cB7 .>`[j7/g*9:Cjñ 1 )l/p4Yqq& bRJ }Jy}zO}8.\,V+@ I-4ilUq$AF%3$Di to>l˓~1vfcvI[ryJv9ÞZ[}ߓ:k/D%εE ^7{r1燺GB__*؁ma_f?+W(P!P"16U~p/|GZq}᧻}㛻xbDW$5X?1!ྐRzG=taБT@ us`tt t9<@ 1+TU=~TB_ cs5]Xwha 77 :bbb-n8\>N^|JpqXP`l@ @ @ @ @ p1a(NxX~_BlqqxbNR~ 2;u|>Nc< ރŽ'=|`S>=7}ؖ'*bmwv=ykbw&v̰'`0D7!lo7O=6U~p|{,@ :]ұw]drlH ?:9w~8BIUM=k4? M' 7E-~OĀOG) "111#ǡWo>~0q_v> endstream endobj -1002 0 obj << +1035 0 obj << /Type /XObject /Subtype /Image /Width 1025 @@ -7312,7 +8078,7 @@ x })3"6ڄN"(N p8ה9I0@`:v8zw{@#6!I@5eQA>{~EzMO|XLY2` @`W}) @`M`דo|"*@3 h̘ ؑqpM!{yL 94eΠ( q*<`}@4^SˁJ#tIn  ,הvD@!@4^S9G;# %P @ -<3­57®r @x[S@Vd&P @ؚ`Gc- @X@ g> endobj -998 0 obj << -/D [1011 0 R /XYZ 77.386 746.212 null] +1031 0 obj << +/D [1044 0 R /XYZ 77.386 746.212 null] >> endobj -1008 0 obj << -/D [1011 0 R /XYZ 77.386 527.149 null] +1041 0 obj << +/D [1044 0 R /XYZ 77.386 527.149 null] >> endobj -1009 0 obj << -/D [1011 0 R /XYZ 77.386 307.636 null] +1042 0 obj << +/D [1044 0 R /XYZ 77.386 307.636 null] >> endobj -1010 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R >> -/XObject << /Im42 1001 0 R /Im43 1002 0 R /Im44 1003 0 R >> +1043 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R >> +/XObject << /Im44 1034 0 R /Im45 1035 0 R /Im46 1036 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1019 0 obj << +1052 0 obj << /Length 992 /Filter /FlateDecode >> stream -xڵVKs8 W(T _Ȟ;ݤlLV/Plytzȉ$> Z ތ #(#JSLT2E0KtQ%)yt9Ŕ|MpN a¢IT4yEuv|qOyYӿΦosk>OOK~6o# -A^t+ztg`zpk$ÊpЇ .X `i&R6̓겫-M'5˺rtB.%Lc"RmLUɸ&<6:bՏfUCϰ87Ҁ&Xuu=,<!ʇ*nPPbnJS-D -$2%6"Xpԩ4;*N@o;NvF6 K{=7qjK0q/T8brjPn +xڵVKs8 W(T _Ȟ;ݤlٙ&=(m,mv3^rtzȉ$> Z ތ #(#JSLT2E0KtQ%)yt9Ŕ8F„Eh+84s1M|<;l4G_G򃼶d)V3A%(\+LH0_#@]!*0 +3`LD1l7eW/d[O&Ekju]> JD +6qwMxZmZt޿ Z4ͪ0aqnVM{Yϯy&BUBC]֋)M0G(ʶ$ +)8V#`v;SP <:] MJ&ddz+Gkɤ+YJ3$RH +X[>3 +rU<%$hp$vfb ++*`z 0O\㔅tB)"\?+ы),f8[8Tf/?l^PTeA3鯪/EV0ߺr%/?{ <8$&\>2V۞m× _ KfX;Σ8hz] 8LRb5 ͐ׄf϶:?̫֬|&)Tf@ 4EphOif_ <^ܵ8<(0fskZmkdE]m@C(hFڿ }iƥoLukKY>`p(ayR56 )+ YHM#NFjօWU-Sձi柦k8Mˋ[`[{"=VQ-ˈt#v))_cd5ڎ!re01_~F'/^۴Eـ\.Eĩ"8,IsoJā|pRgaʙw Pk endstream endobj -1018 0 obj << +1051 0 obj << /Type /Page -/Contents 1019 0 R -/Resources 1017 0 R +/Contents 1052 0 R +/Resources 1050 0 R /MediaBox [0 0 595.276 841.89] -/Parent 971 0 R -/Annots [ 1015 0 R 1016 0 R ] +/Parent 1028 0 R +/Annots [ 1048 0 R 1049 0 R ] >> endobj -1014 0 obj << +1047 0 obj << /Type /XObject /Subtype /Image /Width 921 @@ -7502,35 +8271,35 @@ h6, / rT(,JE. RTܓ l;}*ukKlO] "zdO9{۩CH(,JE. 0Z7ª5$hӅo/ 0].UV^}H֥_`*hh^{.eiyO1q N"2k-rY/ׄI(=_.Ƶ_S{V\t/ 0N[Dڷo0eI( e-F$1@eKOr[XHB|QDvu,I. P6o|/ RT(,JE. RT{r=1+ze?~1+z29rx@eP*rYۦq endstream endobj -1015 0 obj << +1048 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [252.011 400.017 278.713 412.916] -/A << /S /GoTo /D (figure.xxx.45) >> +/A << /S /GoTo /D (figure.xxx.47) >> >> endobj -1016 0 obj << +1049 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [301.121 381.772 327.823 394.671] -/A << /S /GoTo /D (figure.xxx.45) >> +/A << /S /GoTo /D (figure.xxx.47) >> >> endobj -1020 0 obj << -/D [1018 0 R /XYZ 115.087 776.032 null] +1053 0 obj << +/D [1051 0 R /XYZ 115.087 776.032 null] >> endobj -262 0 obj << -/D [1018 0 R /XYZ 115.087 755.708 null] +270 0 obj << +/D [1051 0 R /XYZ 115.087 755.708 null] >> endobj -1021 0 obj << -/D [1018 0 R /XYZ 115.087 708.403 null] +1054 0 obj << +/D [1051 0 R /XYZ 115.087 708.403 null] >> endobj -1017 0 obj << -/Font << /F20 534 0 R /F42 594 0 R /F16 449 0 R /F3 596 0 R /F4 597 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F46 648 0 R >> -/XObject << /Im45 1014 0 R >> +1050 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F16 457 0 R /F3 606 0 R /F4 607 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F46 658 0 R >> +/XObject << /Im47 1047 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1028 0 obj << +1061 0 obj << /Length 1634 /Filter /FlateDecode >> @@ -7538,74 +8307,73 @@ stream xڽXK6W(kd=|KI-Ͷf{VVDԠᐲ%+ ؜D1/|I<{g/^ ,MMp yyDe1[7&|-yRaaZpZ]>6h, Rz/ʗoE ^ǃu"9" (7rEzWQHW"$vuyCRq#.{_=O2TVz]CkYh&)FiԛaYe׫zlBLq -Rvh]ʓZhѫɪU׭S3d0`& O(Wu_*ke-iIJwN;,ڦ}'I׳'Q 'i?Yc L,9'8'R)Y>c^+ :X~48c"ULխ&# L)`M@.#g7$І.nB)'UJ}zFjEAwYIb$LsК3c#|\o/_駛TF(=hژU\vvQqyQʊז,:i@0kʟh;4Op:S'6_CGW/(J7*4=q >x=P^W]Ŭimܒ|g ͨ R!ݻm0A{.J)#ywAx4bt „s/uVj@p|+kΕ٤Mrg2XWwP-|^TQAwRE(6uReuWzӴc,g1KW;\^tJFŨZ9ܫY&(] h5FgF,I](nB22 @6hسw_RPR7 Cv+z'WD-pYvH]-ޢhzYSnnq jg"#:}%l ~,9TLΕy@T/0wyJؑGJǩq pYҎ~t=uBLTkOOAPOE<е3o?T:r Fq<_~/H,'Y^պA]Ihl8kswSIAJBs0aM3 Ԉa0,L|Kv,d5'U(6NN2uiMo_; +#ldT&bg| MJ% }b(gӄ'>ז,:i@0kʟh;4Op:S'6_CGW/(J7*4=q >x=P^W]Ŭimܒ|g ͨ R!ݻm0A{.J)#ywAx4bt „s/uVj@p|+kΕ٤Mrg2XWwP-|^TQAwRE(6uReuWzӴc,g1KW;\^tJFŨZ9ܫY&(] h5FgF,I](nB22 @6hسw_RPR7 Cv+z'WD-pYvH]-ޢhzYSnnq jg"#:}%l ~,9TLΕy@T/0wyJؑGJǩq pYҎ~t=uBLTkOOAPOE<е3o?T:r Fq<_~/H,'Y^պA]Ihl8kswSIAJBs0aM3 Ԉa0,L|Kv,d5'U(6NN2uiJɦ7/ė; endstream endobj -1027 0 obj << +1060 0 obj << /Type /Page -/Contents 1028 0 R -/Resources 1026 0 R +/Contents 1061 0 R +/Resources 1059 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1032 0 R -/Annots [ 1022 0 R 1023 0 R ] +/Parent 1028 0 R +/Annots [ 1055 0 R 1056 0 R ] >> endobj -1022 0 obj << +1055 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [387.976 476.864 409.254 489.764] /A << /S /GoTo /D (section.16.2) >> >> endobj -1023 0 obj << +1056 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [149.57 423.213 170.848 434.839] -/A << /S /GoTo /D (figure.xxx.46) >> +/A << /S /GoTo /D (figure.xxx.48) >> >> endobj -1029 0 obj << -/D [1027 0 R /XYZ 77.386 776.032 null] +1062 0 obj << +/D [1060 0 R /XYZ 77.386 776.032 null] >> endobj -266 0 obj << -/D [1027 0 R /XYZ 77.386 755.708 null] +274 0 obj << +/D [1060 0 R /XYZ 77.386 755.708 null] >> endobj -270 0 obj << -/D [1027 0 R /XYZ 77.386 597.63 null] +278 0 obj << +/D [1060 0 R /XYZ 77.386 597.63 null] >> endobj -1030 0 obj << -/D [1027 0 R /XYZ 77.386 532.725 null] +1063 0 obj << +/D [1060 0 R /XYZ 77.386 532.725 null] >> endobj -1031 0 obj << -/D [1027 0 R /XYZ 77.386 514.639 null] +1064 0 obj << +/D [1060 0 R /XYZ 77.386 514.639 null] >> endobj -1026 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F42 594 0 R /F29 601 0 R /F20 534 0 R /F46 648 0 R >> +1059 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F42 604 0 R /F29 611 0 R /F20 543 0 R /F46 658 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1037 0 obj << -/Length 1700 +1069 0 obj << +/Length 1701 /Filter /FlateDecode >> stream -xڽWYsH~У\t-B[%e9 ==#[TQbfz<]LN{'[,=!ȋbxy䋈I6O2xuj*#Z)}y<8{;)%[3:xy ៾}nryfr|PTi,VʻL>}^ocj7_$r5WӾLSGLwyZiY4cHrאΎѮcc2CLM+s뇨yKg g5y0j@ Xm7f^nmJ{.7C96yIRRp]0*Ǯ:> ˂-0ޤ-Q,5D xv||dGwqzyn}u8x/ T ޠhP}.df}J)9>WXSnƄf9؁ b2V<Wa\ I5a\~6:伊Yi*k{=;ǧ9=֫?4bTWɍm<햻;*a䪡}TdGD[>W`u]w0nD՝U΄RO$K`dDg +xڽWYo8~У Ԭx[9nzwئJ$ۂ%9`wCʖŦߜ9؋X:̋B'<šHO.`YHx*"7g>\ϯ"toT.`?痋wә=5W݇C^gWϋ˄Ng}9sR8|xLƑIKGyEuLx^߳ |ddqL<& b'{}}Y9݂oKYQ,RN "@J]^]"r9G.G%*ٞŶ|oe]J7+C['\8\1g<`T`9~ܓ~)~пFtՁ<Jϙžg/䮹Zy¬JAk}4 ;i6nMkD}R8ɳju+ DY G=ӤhG=34ցܻ)fOYNZWY$toE@UJ +ؖe4B݋"#v6[gA50oSGi崳F ՞ĠR䥿7zecQӣ A@~-nִyWX&3Z,QkC]K +3`@\nrȅ{*@h "6axP\& "m0z<|1iivFpD: %ߦE.*ۉB®J3ߘs/!S╾댊ҶF\efe1hSP]ڴ\۬NMCN* )jt3Gs*Ͷs "jDEq3u7[@䀘M4p1SZi"kR[ B@7U$Ģ2",'_ 8]6YQXZÜFVъ tB֫K-NhP.%L3s!dsx^Cp El&=ń:H J9ٜňTEGTDL _vכW& 851ЌT`WvٮN`zN+lт)RYtt/,} m9V1&B1T2~]pF_lP[)%t3h֤x;{Clq7 58TNVAUY>u ֹIOXkۺLZ|ja?=t08j;H P#ɴ(ECp(G Zze R;iG"ރ ++tm,U;A_`PL깃 @bDwI3;k5=fB"?ͥy_gA7s|ӣ|c#OsSI!ƏuuhyƄцΓnC +MeMp4IDEB㺱m^} VMsnGTit !ux& +a*0Hj@tF endstream endobj -1036 0 obj << +1068 0 obj << /Type /Page -/Contents 1037 0 R -/Resources 1035 0 R +/Contents 1069 0 R +/Resources 1067 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1032 0 R -/Annots [ 1025 0 R ] +/Parent 1028 0 R +/Annots [ 1058 0 R ] >> endobj -1024 0 obj << +1057 0 obj << /Type /XObject /Subtype /Image /Width 1020 @@ -7691,46 +8459,51 @@ dW_ B? @5 @  @oV@ p/ @\@]S:: @@i? endstream endobj -1025 0 obj << +1058 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [225.525 487.194 246.803 498.82] -/A << /S /GoTo /D (figure.xxx.47) >> +/A << /S /GoTo /D (figure.xxx.49) >> >> endobj -1038 0 obj << -/D [1036 0 R /XYZ 115.087 776.032 null] +1070 0 obj << +/D [1068 0 R /XYZ 115.087 776.032 null] >> endobj -1033 0 obj << -/D [1036 0 R /XYZ 115.087 762.483 null] +1065 0 obj << +/D [1068 0 R /XYZ 115.087 762.483 null] >> endobj -274 0 obj << -/D [1036 0 R /XYZ 115.087 557.322 null] +282 0 obj << +/D [1068 0 R /XYZ 115.087 557.322 null] >> endobj -278 0 obj << -/D [1036 0 R /XYZ 115.087 168.362 null] +286 0 obj << +/D [1068 0 R /XYZ 115.087 168.362 null] >> endobj -1035 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F42 594 0 R /F16 449 0 R /F29 601 0 R /F46 648 0 R >> -/XObject << /Im46 1024 0 R >> +1067 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F42 604 0 R /F16 457 0 R /F29 611 0 R /F46 658 0 R >> +/XObject << /Im48 1057 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1042 0 obj << +1074 0 obj << /Length 971 /Filter /FlateDecode >> stream -xڽUMs8 W(Ϭ~H['mlMSӃ\Ѳ6꣙_۞:'<<>RJ0MYjC2QD'TUN>7g^?>t@ˇ݇˻*r(pyqxs{}qBҾ>.Wo3(i"%Z>a$'¨L2k1A&&cE.4R"Y%i,]t!΄_Ŝޓ:d6nI+{J(ÈJE$Ty{[Du7ӃTꉢ)wUϳxp[SYh[(0Xd?mAS݄\3D1 eD#}g0#eҾ6nHvUu:DҴE{kz[5QG|cEpFxLR{:-c)E{Z45Y&Dd$2)Q:hzw6/\Fj]N50MKYZ/cd[Eĝ`/MQZg]Bg{\/[So\fUem/.U:6f6?=(-m:04֎|\kSFr2>23e0?LYt._awCPſuc W:X8I1Or~5\`̰W^pξꡂ~mD:^W;#f縴آG[H2rSgӷ@Afj^`0s:G n^]ÈNȘ5*zk!ssylg==iXآ*S9(AJfWR1UCA&$U@? +xڽUMs8 W(ϬR()$N4ě8em$:G3_!9=uvOxx|+`fU <d cDplzuy; +<󹯵A]|)t@Czˇy{JWOw.:!PCˋǛRnVweiv}I@ 'Jr}b4ao.fx"{5äw(J3-B.E%HBR'u?v'aR@#F:dx?[*m& + #TO4Oz}Ńۚj׼6*7B)-ƺ&+iA:Ս/c0b +yK,d|L64lͮ۽ ]U( EiZӢ ڽ!y+n[o pFaXE!Ѩ"q^Dq+("D4ADsSֶ3M :wַrK#hzw6/\khZxm˝U*qsUT <|bFNs@T,`ʭ]U W + 'BgԚ(_]5La ˩Pi%#h.B״87Eimus +5dq#_d\fUҲ6ۆJf+{G{AiKAOfk3wd;ao<-'3KqDɗ0ex|eeƒ0 E[*$!Sc'Z0!l=}CBz_+"wGr@cqiE7r_|Ʃ9 H2i JܳI-Pxak̜Q7Kb S66UeZ[ Üovfk> endobj -1034 0 obj << +1066 0 obj << /Type /XObject /Subtype /Image /Width 1023 @@ -7800,66 +8573,66 @@ H K{KU@ pPwODp~i Q(D  @g5P.N }葞%DyKOX  @,wLq<}@i~y.̓X@ P#Pj쮩m @@^@O$W V+g_obu3 @h.#7os[ @($7 qk޽g  @k_?< @ @((=}R @ ܔ?x @ \`/S: @A`'mL @@Wҿ @ 0?JOw @&ҿO @`nT) @@WҿO @`jѩ1 @M @((=dqR @ @((=բSc @H? @QQzR @] H? @QQzE @4 @HtťJ  @ @HtWN!@h" K @FG&K @t% K @FGC D@  @" M*%@J@  @" ]-:5 @/ @E@,.UJ Е/ @E@Ztj  @@_'@ 0?JO7Y\ @+_'@ 0?JOw @&ҿO @`nT) @@WҿO @`jѩ1 @M @((=dqR @ @((=բSc @H? @QQzR @] H? @QQzE @4 @HtťJ  @ @HtWN!@h" K @FG&K @t% K @FGC D@  @" M*%@J@  @" ]-:5 @/ @E@,.UJ Е/ @E@Ztj  @@_'@ 0?JO7Y\ @+_'@ 0?JOw @&ҿO @`nT) @@WҿO @`jѩ1 @M @((=dqR @ @((=բSc @H? @QQzR @] H? @QQzE @4 @HtťJ  @ @HtWN!@h" K @FG&K @t% K @FGC D@  @" M*%@J@  @" ]-:5 @/ @E@,.UJ Е/ @E@Ztj  @@_'@ 0?JO7Y\ @+_'@ 0?JOw @&ҿO @`nT) @@WҿO @`jѩ1 @M @((=dqR @ @((=բSc @H? @QQzR @] H? @QQzE @4 @HtťJ  @ @HtWN!@h" K @FG&K @t% K @FGC D@  @" M*%@J@  @" ]-:5 @/ @E@,.UJ Е/ @E@Ztj  @@_'@ 0?JO7Y\ @+_'@ 0?JOw @&ҿO @`nT) @@WҿO @`jѩ1 @M @((=dqR @ @((=բSc @H? @QQzR @] H? @QQzE @4 @HtťJ  @ @HtWN!@h" K @FG&K @t% K @FGC D@  @" M*%@J@  @" ]-:5 @/ @E@,.UJ Е/ @E@Ztj  @@_'@ 0?JO7Y\ @+_'@ 0?JOw @&ҿO @`nT) @@WҿO @`jѩ1 @M @((=dqR @ @((=բSc @H? @QQzR @] H? @QQzE @4 @HtťJ  @ @HtWN!@h" K @FG&K @t% K @FGC D@  @" M*%@J@  @" ]-:5 @/ @E@,.UJ Е/ @E@Ztj  @@_'@ 0?JO7Y\ @+_'@ 0?JOw @&ҿO @`nT) @@WҿO @`jѩ1 @M @((=dqR @ @((=բSc @H? @QQzR @] H? @QQzE @4 @HtťJ  @ @HtWN!@h" K @FG&K @t% K @FGC D@  @" M*%@J@  @" ]-:5 @/ @E@,.UJ ЕW @LS|׿in' endstream endobj -1043 0 obj << -/D [1041 0 R /XYZ 77.386 776.032 null] +1075 0 obj << +/D [1073 0 R /XYZ 77.386 776.032 null] >> endobj -1039 0 obj << -/D [1041 0 R /XYZ 77.386 762.483 null] +1071 0 obj << +/D [1073 0 R /XYZ 77.386 762.483 null] >> endobj -1040 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F16 449 0 R >> -/XObject << /Im47 1034 0 R >> +1072 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F16 457 0 R >> +/XObject << /Im49 1066 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1046 0 obj << +1079 0 obj << /Length 222 /Filter /FlateDecode >> stream xMr@ { ŠdSscsT*L҄"U^?gL3jӦ `BO!s,XGHBYE,7F]<]SԷgƚRrb,*+w|YNu3v8ͮW2nS%UKqBMdB'o7u\s|߭7(@G'A^zq0# -*~m;_*:C +*~m̝/h~;C endstream endobj -1045 0 obj << +1078 0 obj << /Type /Page -/Contents 1046 0 R -/Resources 1044 0 R +/Contents 1079 0 R +/Resources 1077 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1032 0 R +/Parent 1076 0 R >> endobj -1047 0 obj << -/D [1045 0 R /XYZ 115.087 776.032 null] +1080 0 obj << +/D [1078 0 R /XYZ 115.087 776.032 null] >> endobj -1044 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +1077 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1052 0 obj << +1085 0 obj << /Length 1157 /Filter /FlateDecode >> stream xڵWO8~_T& .ǁV:t=m)=vچ]8>3}O`D(_LG_XD`I0iJ<RIƓD&nBϚuѶ3WuF$2jD$fD8/$NĞ1 +~45r]hY܎TlRK]ڈJ/tմ< tnЁ Ya[t34II❼3.GMc\㜅?PMREcИX0&8jKT%FxWp}dDKC4<͊2徭;4 -3-B~+VIȁNáP8uP@x.AhE^$%4M5!,Ʌ6e{ID,F% Ljo2g[-.3Œ 5N\4sUZqryV%mg΃)@Ie^Rjr,L^ yDl$aR(ɅuahIix67 QUEN`pXZC{f3{ 8]c+qUnQ {,YZF8CX6Ezg1.WK,^Tl6t5(tPZeɯBPl-= *{ eV=8z?ߺZgx/7,bĮrÈhnB73g85&mYD^`@"٭g=ϧFu²g :ݾg^y*)>zJTK x)\BZ; ;n]nc>O }ݱMHMv;ѻ"b^UB_dm:d@ei%7*t;ahpy/𲺲?RK57eCCe:Y,%)bg6(֣Gaݲ?4%5th_~xSokg~qL0ao*lWI7{Ү}ON$}'45M7IIM;|[8|x?)eZ +3-B~+VIȁNáP8uP@x.AhE^$%4M5!,Ʌ6e{ID,F% Ljo2g[-.3Œ 5N\4sUZqryV%mg΃)@Ie^Rjr,L^ yDl$aR(ɅuahIix67 QUEN`pXZC{f3{ 8]c+qUnQ {,YZF8CX6Ezg1.WK,^Tl6t5(tPZeɯBPl-= *{ eV=8z?ߺZgx/7,bĮrÈhnB73g85&mYD^`@"٭g=ϧFu²g :ݾg^y*)>zJTK x)\BZ; ;n]nc>O }ݱMHMv;ѻ"b^UB_dm:d@ei%7*t;ahpy/𲺲?RK57eCCe:Y,%)bg6(֣Gaݲ?4%u_~xSokg~qL0ao*lWI7{Ү}ON$}'45M7IIM;|[8~ eW endstream endobj -1051 0 obj << +1084 0 obj << /Type /Page -/Contents 1052 0 R -/Resources 1050 0 R +/Contents 1085 0 R +/Resources 1083 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1032 0 R -/Annots [ 1048 0 R ] +/Parent 1076 0 R +/Annots [ 1081 0 R ] >> endobj -1049 0 obj << +1082 0 obj << /Type /XObject /Subtype /Image /Width 1019 /Height 508 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 1055 0 R +/SMask 1088 0 R /Length 8003 /Filter /FlateDecode >> @@ -7880,7 +8653,7 @@ $ ~`L~ endstream endobj -1055 0 obj << +1088 0 obj << /Type /XObject /Subtype /Image /Width 1019 @@ -7894,31 +8667,31 @@ stream x! &p endstream endobj -1048 0 obj << +1081 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [149.455 552.361 170.733 563.987] -/A << /S /GoTo /D (figure.xxx.48) >> +/A << /S /GoTo /D (figure.xxx.50) >> >> endobj -1053 0 obj << -/D [1051 0 R /XYZ 77.386 776.032 null] +1086 0 obj << +/D [1084 0 R /XYZ 77.386 776.032 null] >> endobj -282 0 obj << -/D [1051 0 R /XYZ 77.386 755.708 null] +290 0 obj << +/D [1084 0 R /XYZ 77.386 755.708 null] >> endobj -286 0 obj << -/D [1051 0 R /XYZ 77.386 608.929 null] +294 0 obj << +/D [1084 0 R /XYZ 77.386 608.929 null] >> endobj -1054 0 obj << -/D [1051 0 R /XYZ 77.386 298.06 null] +1087 0 obj << +/D [1084 0 R /XYZ 77.386 298.06 null] >> endobj -1050 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F42 594 0 R /F20 534 0 R /F29 601 0 R /F41 593 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im48 1049 0 R >> +1083 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F42 604 0 R /F20 543 0 R /F29 611 0 R /F41 603 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im50 1082 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1058 0 obj << +1091 0 obj << /Length 1615 /Filter /FlateDecode >> @@ -7929,27 +8702,27 @@ xڭWKs PnR o떼XID;B?' } JowlǐC=dwt䱵{ =44 ]j{ s0F> -%x`ٻ$A!8RqÝt.tyGv5!xJ5Z`ISI[gXUTNoPR׃/<<Ǜ vx$yTO(2>E<āL*֤IOn0lVD@)Yh5/b +%x`ٻ$A!8RqÝt.tyGv5!xJ5Z`ISI[gXUTNoPR׃/<<Ǜ vx$yTO(2>E<āL*֤IOn0lVD@)Yd _ b endstream endobj -1057 0 obj << +1090 0 obj << /Type /Page -/Contents 1058 0 R -/Resources 1056 0 R +/Contents 1091 0 R +/Resources 1089 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1032 0 R +/Parent 1076 0 R >> endobj -1059 0 obj << -/D [1057 0 R /XYZ 115.087 776.032 null] +1092 0 obj << +/D [1090 0 R /XYZ 115.087 776.032 null] >> endobj -290 0 obj << -/D [1057 0 R /XYZ 115.087 755.708 null] +298 0 obj << +/D [1090 0 R /XYZ 115.087 755.708 null] >> endobj -1056 0 obj << -/Font << /F20 534 0 R /F42 594 0 R /F16 449 0 R /F46 648 0 R /F41 593 0 R >> +1089 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F16 457 0 R /F46 658 0 R /F41 603 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1064 0 obj << +1097 0 obj << /Length 1134 /Filter /FlateDecode >> @@ -7960,25 +8733,25 @@ e~ VIn't"Դ^}\)ct!`fVc*R$G)!58eC:0<M gocG(| +MjW0)@" !o1 >f?tv훊:g4Vx600:!8iNBp8^RM } @ --mpTR}Ew}H&l9|!>ND]*ɊCA~={™ ʡ> -.lx+Mgf+j|_bn =A`Q po~ |1uiu`ءN] Npq 5-tbcP7 +.lx+Mg@W,8 3Y*# f{VRLSL8b#Cλz1 x(AjH[V/T >7 endstream endobj -1063 0 obj << +1096 0 obj << /Type /Page -/Contents 1064 0 R -/Resources 1062 0 R +/Contents 1097 0 R +/Resources 1095 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1067 0 R -/Annots [ 1060 0 R ] +/Parent 1076 0 R +/Annots [ 1093 0 R ] >> endobj -1061 0 obj << +1094 0 obj << /Type /XObject /Subtype /Image /Width 1018 /Height 508 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 1068 0 R +/SMask 1100 0 R /Length 9231 /Filter /FlateDecode >> @@ -8006,7 +8779,7 @@ j_ j_Ծ}jPK^WUA}PW@jv >X>ݫ}}P>}@}PWojP`w@۫W@j_Ծ}@{W`WUA}PW@j_ԾvjjԾ*}jPj>>}@}Pڷ]^_ڷW@{A}PW@jv {Vj_WUA}PW@jv >X>ݫ}PjԾ*}jPj>>}@.{Vj^Ծ}jPj>m@j>X>}{UPj>>}@}Pڷ]}O=vjjԾ*}jPj>>}@}Pڷ]^_ڷWʵo9Y* cYwj.c1j#c1Fc`1ƨ}cTVc7ƨ}%c1FcԾ1cwQ1ss9G{1Ƙ}PƘ jc1E7c1Ɯ`Ծ1c1jc11c1{2i! endstream endobj -1068 0 obj << +1100 0 obj << /Type /XObject /Subtype /Image /Width 1018 @@ -8021,166 +8794,154 @@ x P endstream endobj -1060 0 obj << +1093 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [217.709 612.151 238.987 623.778] -/A << /S /GoTo /D (figure.xxx.49) >> +/A << /S /GoTo /D (figure.xxx.51) >> >> endobj -1065 0 obj << -/D [1063 0 R /XYZ 77.386 776.032 null] ->> endobj -294 0 obj << -/D [1063 0 R /XYZ 77.386 755.708 null] ->> endobj -1066 0 obj << -/D [1063 0 R /XYZ 77.386 448.996 null] ->> endobj -1062 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F20 534 0 R /F29 601 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im49 1061 0 R >> -/ProcSet [ /PDF /Text /ImageC ] ->> endobj -1071 0 obj << -/Length 168 -/Filter /FlateDecode ->> -stream -xUλ0 =_qv6D@SՉ -:0D$,0n`,,ɢdg/WhI -1=l==be&6bȻبCIMu59qT1ls<PqIu8⏍b"ĦFſƌo*i^7/ -endstream -endobj -1070 0 obj << -/Type /Page -/Contents 1071 0 R -/Resources 1069 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 1067 0 R ->> endobj -1072 0 obj << -/D [1070 0 R /XYZ 115.087 776.032 null] ->> endobj -1069 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -1077 0 obj << -/Length 1217 -/Filter /FlateDecode ->> -stream -xڵWnF}W޸$ @[+ikjb$4naZ.w̜GG&x{6_PQY4GyX!"Q0TMgu IY|0KR:6es%1w(^sz{Y%1o:emdZ+TĠ<@=~o>'j:,\@8r9(]$CA51 Οrx69GYVD)){EFÕj;粞8L_ҭGۣ4"MeÝ o0\v[c_ܯ  .+o"0n /=pD* ^!Rc!"a(G8y5"?@>^AR|dAD Xd飩3[/ǵDY|1~zP?qڿonmm>e4MuU㩣@LPi%S1Tħmk=۰Vh֒| R7S!zY- UnО_yS]w}]0('q@şcnY^gxmDԋJ/ڝS }!)vw" FY20d[t`^J%0$jݩjJ¦o^L!>nu>h|tsu;[Ŷ۹5!nlC!<Js@CWYo?ʥlLr-{NQYLھۺU+c9Be-e57'=ee5բLDf(Vh&Dا Az|pt0JtN0" :;floKڌosBmKloqmO@ G zGQ3/03<>5LځyXL^Z> endobj -1074 0 obj << -/Type /XObject -/Subtype /Image -/Width 1016 -/Height 507 -/BitsPerComponent 8 -/ColorSpace /DeviceRGB -/SMask 1080 0 R -/Length 6888 -/Filter /FlateDecode ->> -stream -xOdW_  ąDl&!@bd7 "0659:!Lzz]}r2Yy|}ٺqL$ra>;{{nN15/^W.k4Nޝu -0I|w^iVSηSvZ;-O"oc;c);o0|;;ߍo|;;ηk4|3Mg.Wz m{,>qϿOx~Z?=~帝c^ڏQFˇEvίn;⧶#WO|;Fuw~q;O|;Qͽ7;]ڣ%pvNu{vzMs>~Knm5Qs\;һM/U{|ivOߏ_=4P^L#q|"*>}F;-^J@ǿa*h3l|;H_ +ۥ%UzHoeo"{NsКeܖ):Գq;0[*.8l~O.~{[gOyēx< 1ԁ; ?h,8gj+vdwƼSv_{`{h sofu ~&}0᝵1|\vOο^9Yy|}ٺqL$ra>;k糵$Ia)./C&P^O;͛?æG? {+;Gw~ѽ`eɁvmpy;I_R82\ů'Z|4[n7_4sK?yw=;;] 2lZ~4B~ٷ2`gs'{,`ſf'0+ڗV5s>k/^t[.f?x_fwgiwKw|h!xe2{+:f%x-z䛝ջݯwi|{ y+^v*x~C<.Gŵ|qY||ΧZş--'x~v7( -v~p_c_}܎opvbou;bϧFi^m vzf'sOy?-vdv>jVP&v'ױWj%#|<݈G;??ϻ `h;lsh;7Ҧ7*}v>вذ54Mg[Q|ڛ7@W38w` ;?|;[6kt=b`ηGo?U_ُfI'v83Lfk_o@ΟeSq9gi>.p_-;ϳtw'{ڃk}㴉];>Lprzm˾ xFx;memO#'I_o;|Ns|/,=I3Pwfx|{(;oqڃ[SY|9ܺG+Bʞ*6w~vq܎I=SSks_; `Pz|>v>v>v>v>v>v>v>_X 1w$Iex>;%Iv~?Ľ$;%Iv`K|;Η$w_.ӯ7ev$ng||/I8;]{`KU_Kfw~$?c_Ċypo%IzΟ9ه7t$8ncKNO|Η$ixgԙ/X/Iw߇ `K|;|Iov$Ivu$;%IO'|I҃.;_d;Η$$;η%Iv>/I`K|;Η$$;^~%Iv>><Է%Iv>#/^v$@;rW:b'y~I[;#ŏ~/,v$X;e&v>v>}ş>>z4|I)w 'O59a7o/ƏC8ta#930׿SΗ$uϏ)C~OV`Kf#=ȟx[{̝ڃk}N^'xůD'࿞x*w~o|I҃?__\㉓GN+&t\hA~$·w$.`/IL}s /=|;_d|H8^7$Iv|IpVv$[I|;_$;Η$v}yzCKyv$L;>.{7I|`"1;_t?S潝#>ܸ>콏^$n|Iwk_aο3|؝?9B qtM5h׷%I'/ٓ$^soN>Ο$;+^v*8v>eΗ$rwuΟP4On#Η$lg t|w|>pNb$;v8k#Η$l'_<'~hM y2>ߎw9őoKη8|Hq}oqC<~XbΗ$~)߇ ;_dcQv;栝/Ia)ͩ{+I0>;_d$Iv>/I`K|;Η$$;η%Iv>/I`K|;Η$$;η%Iv>8.Η$\Է%Iv>;L/I|;_dv/I}pkW/I)w$;`G'UL2Η$񝿸X|o$}*;_dyF%Iv>@Du|QPoΗ$[]g/I.;nGdv|~Y{k$;K|;Η$v|IL|Ip9]-7$Iv>|I`绷$v$IwLΗ$Η$  V$;Η$ɽ'/I%Iv>v$Η$v$Iv>/I%Iv>v$Η$v$Iv>/I%Iv>v$Η$$;Η$%Iv>v$Η$$;Η$%Iv>v$Η$$;Η$%Iv>v$Η$$;;_d$v$Η$$;;_d$v$Η$$;;_dJd$%Iv>v$Η$$;Η$%Iv>v$Η$$;Η$%Iv>v$Η$$;;_d$v$Η$$;;_d$v$Η$$;;_d$v$Η$$;;_d`K|;_$;Η$$;;_d`K|;_$;Η$$;;_d`K|[I|;_$v$Η$$;;_d$v$Η$$;;_d$v$Η$$;;_d`K|;_$;Η$$;;_d`K|;_$;Η$$;;_d`K|;_$;Η$$;;_d`K||I`Kd$;;_d`K||I`Kd$;;_d`K||I{+I`KΗ$$;;_d`K|;_$;Η$$;;_d`K|;_$;Η$$;;_d`K||I`Kd$;;_d`K||I`Kd$;;_d`K||I`Kd$;;_d`K||I/I|I|;_d`K||I/I|I|;_d`K||I/Ipo%I|I{$;;_d`K||I`Kd$;;_d`K||I`Kd$;;_d`K||I/I|I|;_d`K||I/I|I|;_d`K||I/I|I|;_d`K||I/I%Iv>/I`K||I/I%Iv>/I`K||I/I%Iv>$Iv>/I{O;_d`K||I/I|I|;_d`K||I/I|I|;_d`K||I/I%Iv>/I`K||I/I%Iv>/I`K||I/I%Iv>/I`K||I/I%Iv>v$%I|I/I%Iv>v$%I|I/I%Iv>v$$%Ir `K||I/I%Iv>/I`K||I/I%Iv>/I`K||I/I%Iv>v$%I|I/I%Iv>v$%I|I/I%Iv>v$%I|I/I%Iv>v$Η$v$Iv>/I%Iv>v$Η$v$Iv>/I%Iv>v$Η$$v$I=|I/I%Iv>v$%I|I/I%Iv>v$%I|I/I%Iv>v$Η$v$Iv>/I%Iv>v$Η$v$Iv>/I%Iv>v$Η$v$Iv>/I%Iv>v$Η$$;Η$N鿳k -endstream -endobj -1080 0 obj << -/Type /XObject -/Subtype /Image -/Width 1016 -/Height 507 -/BitsPerComponent 8 -/ColorSpace /DeviceGray -/Length 1023 -/Filter /FlateDecode ->> -stream -x! 3E -endstream -endobj -1073 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [129.719 638.921 150.997 650.548] -/A << /S /GoTo /D (figure.xxx.50) >> ->> endobj -1078 0 obj << -/D [1076 0 R /XYZ 77.386 776.032 null] ->> endobj -298 0 obj << -/D [1076 0 R /XYZ 77.386 755.708 null] ->> endobj -1079 0 obj << -/D [1076 0 R /XYZ 77.386 433.49 null] +1098 0 obj << +/D [1096 0 R /XYZ 77.386 776.032 null] >> endobj 302 0 obj << -/D [1076 0 R /XYZ 77.386 223.944 null] +/D [1096 0 R /XYZ 77.386 755.708 null] >> endobj -1075 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F20 534 0 R /F29 601 0 R /F41 593 0 R /F44 598 0 R /F43 599 0 R /F42 594 0 R >> -/XObject << /Im50 1074 0 R >> +1099 0 obj << +/D [1096 0 R /XYZ 77.386 448.996 null] +>> endobj +1095 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F20 543 0 R /F29 611 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im51 1094 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1084 0 obj << -/Length 1269 +1103 0 obj << +/Length 167 /Filter /FlateDecode >> stream -xڵVKoH W(T3gҭM&i&=(D,wKG8A.6Cw -w's;grgqp2?8"w]3μiIlv<;R -';ܽ:?]x=8G0{zd1;`Q~.>Mf?o q) LhTWN ҹ5w#ȂAJ6wIJFƱrvݻQW"l.]`KUWtg/Xeу'bWUrvR5ny@ڛo -r뚒 -U{/+!!2θ/ -dBE6_$9~B֖B|#0ġt*"). mMG`V0КXd$)OBBvxti!*pEn ekExԲהΠ.X5`cT"<(A LhUxg - e%pU0tʜ04jp+OGmF=W2U)XS.Yؿ[oGX-DSDZQFIDje 7/ V@w/v+hÅpz3g>Ӷ\#EW}  -tG7뜨UEy{ۘ$Yse]`Wk) Ƅ1Hm7hĩIP72`(:`z[厦XVQQvf|=8F-teoCbznͱ A~`<×]q펲W Xo''v~ *ݘ7ʬ%L˶tUXX܇1v"$ Ԑ}XkA:ShE!Gq+3e?Y]ڄmVYC N#BS5v Ķ=C }T[3~"i;SãӧQ۬> -aK#(7]⺢ Z0"<fõTCU]fufYYw+Y\N/1 0ɮVf h)0J 4aFabQkHSX{L9Gİ<-Gw"M(̵=ʲL0BREN,x$L͎UgYple<*"=O7]Vc{Og\\K> endobj -1081 0 obj << +1104 0 obj << +/D [1102 0 R /XYZ 115.087 776.032 null] +>> endobj +1101 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1109 0 obj << +/Length 1137 +/Filter /FlateDecode +>> +stream +xڽWIo8W(#nZ"M``䘱qe`#}oWV(Eti>; gh"CY0g͗68.bƢ^?vqB"Uk/_N.HH˴$%blPeWԘ7M#Fٻi,*&6OKm NXȬu@4,ǜ".Ք$?lBs(PB +½srpNY:N@^![Oۣ4#E$8peWM yFW[" cXAyDzL[FT-%UHWr%^[| 7Hl9k=&H4'{T)fOCqAJ4YQ',7|ś}{r0Yqw1ͪҪ VNRuK5X6$& M.hA&WTw6v <jL\|T!Ռch/o'zq27k!p_vpHcưElCKMi9JR]>C}W߅B>&Vd6b*_&͇q~CC153d]hck,i׵!׀:0e צ0h>,U>ԚPKBtTI=<?eӌ,,3av,}% “輞 4%AU2eG`K\f4"Q\LGׄc͈Oh7 9]^ddìrWHBH EcƁ E +yYh!u"r鍴=ͰVF{Z₈nE0KpK>@2dOn`q13o 8mS322 h_o>[Z'5tkЯ%/0{es&m~p|YW.T.]91$rF*E`N_n +endstream +endobj +1108 0 obj << +/Type /Page +/Contents 1109 0 R +/Resources 1107 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1112 0 R +/Annots [ 1105 0 R ] +>> endobj +1106 0 obj << +/Type /XObject +/Subtype /Image +/Width 982 +/Height 491 +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/Length 9995 +/Filter/FlateDecode +/DecodeParms<> +>> +stream +x_m}uiN."( LАQa\Ph.7 Z(ŠA26x! 1Ms12!ɐ)afx|ӝl׬~~֟Y^YZ{?{Y~O(o?n[{{FrȐjs=0Ƈw]nj2kgk vȷ^=Ї>tzFT{wmvpA6>rSy];k{gG + ~w篽`'+A#Cj|`vͽ;ܶ?8 uɼ=Gr?ܟ*rSy];+o٩6s >l|x&vV, ~Smݱ}wMMuY G^Nu_Mv}猷͹$6k10@Z0Z>.>zL>#ywΟkAճx>3][Qzzd!5~m֝z͵WZ|AOAzVJ^7-'x˓d҃o᭭RG"$l"+9 uIy#kj_w#|Z-~$nHގ/>5 Ӛ/ 6۬5; gv'&(m{rY^-g`9cHxIS[=Qڪci3^/x:~ΚGx|LojGi컩`M#ׂg'qd6Wa[[KwrTC.VI<$F]\D8ӛ\nx콪ĆIeIrG&Mn'x{jG_sɕ~/{ˎsᑿɾ$*&y'K=}jׂG}<>kHK|؊8.^[x[up]9k.>)<1{^dHbn+K+!WNWsΙ}|;ev暝c^T{wmv +⩩A٣ֆw]JOïGZ?ZHjs=_hc[V{Kl7.K!~`vͽ;ܶ?8 uɼ7K_T{wmvpA6>rSy];+oO~ΐjs=0Ƈw]nj2kg%m~= u`6~߸=ЬP$8T%* UIpJ@UP{0~~TxB݆szY 8o?{/78vÏߟW?O8SnrrN7^k ^ρ3x*ّS98k8{"2Rz=)9*9w_+xMy[6?vh |G]8tW; ~~_yǟL'i!O{" |r&'a/\,{̝m Oxyk[a5cݵ +gO;>׸afWR Pk5Dl[v<1['˚J?Vx ޭX9{Ejw|پwQ?DoRB >#||9S7,{R&nITdxnv}TyB$גw__o_oOGg xamluwT.7Y;/-LȂ*Ux Q4x/ke@l(hg'̺; m)z-(={Mȶ/.㘧*]>i.T.(Q2ۚ㤋f?8e(~Q^n>즾ۂ9.}"J6 .x*~"WO}W兿vY~nnD_|y/,X8@&wy]oǬg x82e$ywB]|lr(Pw<ݘ̐. >X2JdODe \ PV ^ߎ / Po2/ۏ5l2W|{dV5صm^`/ؖo2# %xtWu& 8Ys?p9w ~>y=y6(pfdn2CzbNY]$6OZwsSf%x73Eh!u,O 3CyլMƫz#E%&s٬|Rƻ|k ~`[s۱j\p&[ ``rl>?ś' ^lKY(+W}7YXxsmӋtr$Ipb[8河;x9y[]ϋJL=$ @d*ۻ_R:W^S ~`[6ׂwS&.o/Xݥ!Iٰpɭ2cɜ$gQ.^I?Hp$8֭lG  @Dߢ6!Hp"$8 P "Xb='~#{W#'ރ>oY]u;_EI_E^P!D$8@(BEN12~^?Ֆ  PDt_L̶Hp"*'`v]p|ڲ0 1=XՖ  PĬ]<ɂO /}$\(bn~_9N&.eYh(bA_%̓.DXlERQ9KӗtYpׂlBS!,LS:qECO#$8@MN$$8@MNԴI_˯ P& N &IpzV&8 t& @'jt& @'jt& @'jt& @'jD~zO$ҝiӯ69/ +$8s}|&>TTԳm D -KO|~ާ>l*)ڧv<~Zs{c~+/|^xM*:~(x|]b~Mrn\7;' @# p +] NwfO>+|^t{i + wx:ǐp0htj'xG3OGhȎHFD ~6y:|03[dڬǺ8@5QL А|(kٺrM@5 Q?2%8@C$8QVVrOo.nu>k'|"RC ׈g,s>%=qewxs6YXxPMѕQ!~;& (9]aD+&\ ލ>'dBbv>$};gn-Vj$8DvLh)2׿1  + NDCN ooKGвg^I%8@=N$$8@MN$$8@MN$$8@M%l&JЊO7ү{>o`ۭuFCC>/.]LO?y套 ϷkoR6XsN %8@+%xkœқ$^\-p%sg3GssAO7[swIp+V,xܪP$xznuWħۓOWV?oZyb: 5'xG3OhH; ~tjhp<+HouZz( NòE ^s?}k6O\-4b|!JtܞHpDY^wyg]"EIۤ'rVCV,JM^ > А: >' >8e(?ev(](9 /O'\ԕg/.|ċ$8-~sN4eߎ^%kʻ`|" +M9ׂwSO_+2^?U&|<.s'C}{51Wv#9%V?&Z!4/94௽f&~DKKpz$8Ft̋6I_'t& @'jt& @'jt& @'jD|(!lZ/6wwݗ e6yj&lV -;v~u|viiavxas >C;N %8@+%(+LnXx񁘥৫N%8C\ +ׂ&+&8'Д~4+RQ|U_j@Bh,xTo[ А +ׂO]wK^/DFE> -_2hHBk%2Z6y-x߰!u>eiJZ8f!~;& -(WL2 p$8ZvJoLBвSƛ|--D$8.?gmt P5Ip: P5Ip: Pg[* ^4" ΘT$QIpz$8cRIG%<>xtc}n%7ؗwM=z?* P϶ >YWVޭz`? sɳ<կp ~T |\ғ=X?k>Xm0qW;|'{Oz`w ='=W?* PORz|W(w}[ࢅ _%lx|] PO^]|r={tMޕKrlޓq4O&K/wHpzvNp~.Kv ΂G~N Pgl?I`|!ʸI["(^ >; >-5Iׂ+ߝ% ~uv':J5<`s΂8I["ic +o9e^Ga>2?]42ΓhS;oecFHpzLp-N oo1oG3-yq&G%yK%AG3- ~T ΘT$QIpz$8IIp$8cRIp!QIpz$8cRIG%yK%Ag?n+%LH\-s[rxK={įm|/N POәOD!"i3ǧ̩[ꁝy+s7Bf/ovJx3Oߎy $8@=1ov̋6w'K#J?* Pg[* $8@=1o$HHp: P5Ip: P5Ip: P5Ip: P5IpL_Oş<ߖHpsKpz$8Eد%8@= ?Dzy[ +Hp~?crl_ߐi\lLIp 1 <~V/$v#.&f p@ mqnNV88/`w2isA|aFo5 v#_ .Y{{'}`7 m'䜫>[;$8@$8@k ӛ> +>> endobj +1110 0 obj << +/D [1108 0 R /XYZ 77.386 776.032 null] +>> endobj +306 0 obj << +/D [1108 0 R /XYZ 77.386 755.708 null] +>> endobj +1111 0 obj << +/D [1108 0 R /XYZ 77.386 418.088 null] +>> endobj +310 0 obj << +/D [1108 0 R /XYZ 77.386 207.453 null] +>> endobj +1107 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F20 543 0 R /F29 611 0 R /F41 603 0 R /F44 608 0 R /F43 609 0 R /F42 604 0 R >> +/XObject << /Im52 1106 0 R >> +/ProcSet [ /PDF /Text /ImageC ] +>> endobj +1116 0 obj << +/Length 1318 +/Filter /FlateDecode +>> +stream +xڵVKsF WHX}Fr;vZLhsMoMQ)~}ReEm㋴rw2:g{›?xB''4wKOHGӓxe___?@0Rvt>=В̾?_# qrP~8Si=[Ӆp`]zWFE`AA o-~LDMv *k~Z5iOc]kȁ< \dVR%s{3Ko"&=讹4?Fߪ8UƇ@lB&^}׀u]ўaPa=O=!l]9HBJ), t6Oa9ocU.]Tnջ=e)S<.suE(eeݪ) xD@Klw.*VEQQ2H0"J1#zݪ[u~=Ky1aY'wOϤhsm *feUŻ)l~TEɚf3h0netYj=`J 6%<*XX6h!l}6 Z2ܒBO,[wV-Z"j ?hZR%QGfYqL@_DSWu'@Rws>0lj;R<VBaʖ$ipE}V&wҘ4Y}kLD$~OƄa& aeE& +V*CSaY/vmQDu'#ƚ:-Nb `-_]pjkwwҥ7g< Xޯ;+9~ ˺*7x_xvv + > endobj +1113 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [452.072 618.546 459.488 631.445] /A << /S /GoTo /D (chapter.9) >> >> endobj -1085 0 obj << -/D [1083 0 R /XYZ 115.087 776.032 null] +1117 0 obj << +/D [1115 0 R /XYZ 115.087 776.032 null] >> endobj -1082 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F41 593 0 R /F29 601 0 R >> +1114 0 obj << +/Font << /F20 543 0 R /F29 611 0 R /F16 457 0 R /F41 603 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1093 0 obj << -/Length 1822 +1125 0 obj << +/Length 1821 /Filter /FlateDecode >> stream @@ -8188,19 +8949,19 @@ xڍX 2` :^E*tzX]")j:Pil\ ju 8 C`d`'uTRؔ3jXݷ͈"|LxU-˸Tf{t cRwt1V,)Tvr >ID…gЭ#5e&D^= NqZȓ3fftG]5b+ƪ ?Kj|B2ug-*gLs1CE7)r`n(isr(x 92?M6,7TXDQ:C8Yoeg0hLo(ÍA2.SUe\{r\G5-t.I0y`tkhF>v^$q -&c&ZwL7wټS4oEUxϫ$N$ois4G<^`vx#F: eW/n|i%" [*-~T^mn!'g "u8;)ּ3T3 KR2ڊ u 1޸_a2Iˀ6]*1jXGi F5[skkpYԮE)c !ЁL6`'P>G0HE}'1|PXnh-y̼w I:881 ^UB =( {7s{%b(?B"-H~xSC -L@r' @g8j0яREȤCFt}=:1R1h=^mط|cv\|/aI/TRIu + 0Him˭dF 8,㤥]TLiX!167>O=~ y͝.V#mŁ 3oʫ'GG.L{teO"o^K0X7͘V%f9/E?4[21*Qf>7uW֜fT^^zߴ̂;<ܩ3wLRf@+{ Ourp<][am` k#$f LY. J8R+t,t# +&c&Zw7wټS4oEUxϫ$N$ois4G<^`vx#F: eW/n|i%" [*-~T^mn!'g "u8;)ּ3T3 KR2ڊ u 1޸_a2Iˀ6]*1jXGi F5[skkpYԮE)c !ЁL6`'P>G0HE}'1|PXnh-y̼w I:881 ^UB =( {7s{%b(?B"-H~xSC +L@r' @g8j0яREȤCFt}=:1R1h=^mط|cv\|/aI/TRIu + 0Him˭dF 8,㤥]TLiX!167>O=~ y͝.V#mŁ 3oʫ'GG.L{teO"o^K0X7͘V%f9/E?4[21*Qf>7uW֜fT^^zߴ̂;<ܩ3wLRf@+{ Ourp<][am` k#$f LY. J8R+ s"߅ endstream endobj -1092 0 obj << +1124 0 obj << /Type /Page -/Contents 1093 0 R -/Resources 1091 0 R +/Contents 1125 0 R +/Resources 1123 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1067 0 R -/Annots [ 1087 0 R ] +/Parent 1112 0 R +/Annots [ 1119 0 R ] >> endobj -1086 0 obj << +1118 0 obj << /Type /XObject /Subtype /Image /Width 648 @@ -8270,59 +9031,60 @@ l WFyN%| Bvt0?A_!(R*?BMӷ֯ *u r,̈좪S6W퀓Emsm;br*lG<a ZȂYAH\riŏ\MBw0*ա>(2/cqV0)/@(ЮϮ endstream endobj -1087 0 obj << +1119 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [205.274 243.563 226.552 255.189] -/A << /S /GoTo /D (figure.xxx.51) >> +/A << /S /GoTo /D (figure.xxx.53) >> >> endobj -1094 0 obj << -/D [1092 0 R /XYZ 77.386 776.032 null] ->> endobj -306 0 obj << -/D [1092 0 R /XYZ 77.386 755.708 null] ->> endobj -310 0 obj << -/D [1092 0 R /XYZ 77.386 541.115 null] +1126 0 obj << +/D [1124 0 R /XYZ 77.386 776.032 null] >> endobj 314 0 obj << -/D [1092 0 R /XYZ 77.386 419.839 null] ->> endobj -1095 0 obj << -/D [1092 0 R /XYZ 77.386 388.384 null] +/D [1124 0 R /XYZ 77.386 755.708 null] >> endobj 318 0 obj << -/D [1092 0 R /XYZ 77.386 215.408 null] +/D [1124 0 R /XYZ 77.386 541.115 null] >> endobj -1091 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F42 594 0 R /F45 600 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im51 1086 0 R >> +322 0 obj << +/D [1124 0 R /XYZ 77.386 419.839 null] +>> endobj +1127 0 obj << +/D [1124 0 R /XYZ 77.386 388.384 null] +>> endobj +326 0 obj << +/D [1124 0 R /XYZ 77.386 215.408 null] +>> endobj +1123 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F42 604 0 R /F45 610 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im53 1118 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1099 0 obj << -/Length 2008 +1131 0 obj << +/Length 2010 /Filter /FlateDecode >> stream xڥ]s۸]}f"@-r%4vN{#BMQ9Gkn".bWriwX~-Ik)pqw,+5aBFn$<&2usx:kH=l. \SYGw6FEBݦn'dOOYW>fP]%crh^} nwS(` udQ]G A'@2՞V5T`3!,E&Rhgާ#®t2 QI5 -^+vWyԜZU:Ĵn|C\T80_'D޴ M1$jסD3+S%mmM^+ҧFG;~BpBлfߢ ,~J3‚$yUof}b][]h#xvI軸z+k: J:F2')>*zGJ -3N$tT\w_v[5fnD~}+@p,VrPK|}+F`Ӑu"zޡGGd3^XGtU=ixykqb<E9E,BZYLAs7xANc"g 4;C~k8B=6ثAz!THX,&#I|$ -T}m W(Z5~P)w;2ܭ2M2è T8C˺{BCo1hdf\G'E09%Bw7 /L \97wtOt (dߏMe=FԤ45P8B삯p9}0]Hui4q`NtSi֛c& ~GIծCf WJ-vWO鍎v> +w;EA83Y25n[giId'̪1ĺ̷nӻG8Q?(Czܻ wqg]3Wju"?nuF\eNR}T; +qv flHڵ"bG춾k.~ݏΣW|7!X5 <0.)VD&8(!%fDCgpFSz)::x>#"r>?>XյXŃn\9#R2D*(iw6qzjm>W>4C~RXLFNIH(ڡ P*k$S&&zwd[e :eVQ6pZuH4)/5_`cР̸N`*s>JK>&'%n^snFg:9Q@ɾ +z8#|éICUij:ᡴ̠BN,誅*EUT4y=aS8&ZR +S;u?5a%UEn²)hbUX.FZP*ZXU򴱄-ƖE >puT>!-L@m0EAyIwR9#ljѧ5E>ȸAxC7bV/{.4@?fy;"0JTgAΔQ̂/2*le~hm5tE< ?=#q}d +]7h}N8Ek&,3IPT"Rj"E>'ϓG̓J03 +VhI̓SGTQYRrK޻wE5!!$)V=dLLM JaܫkiZ7[rd+fZ#շI]BUHI8oz endstream endobj -1098 0 obj << +1130 0 obj << /Type /Page -/Contents 1099 0 R -/Resources 1097 0 R +/Contents 1131 0 R +/Resources 1129 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1067 0 R -/Annots [ 1088 0 R 1090 0 R ] +/Parent 1112 0 R +/Annots [ 1120 0 R 1122 0 R ] >> endobj -1089 0 obj << +1121 0 obj << /Type /XObject /Subtype /Image /Width 647 @@ -8416,7 +9178,7 @@ lW  endstream endobj -1096 0 obj << +1128 0 obj << /Type /XObject /Subtype /Image /Width 1201 @@ -8523,35 +9285,35 @@ $@ Ȅqv*L @tP&$@ @@\mwϗ endstream endobj -1088 0 obj << +1120 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [166.701 741.632 187.979 753.259] -/A << /S /GoTo /D (figure.xxx.52) >> +/A << /S /GoTo /D (figure.xxx.54) >> >> endobj -1090 0 obj << +1122 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [443.461 565.511 464.739 577.137] -/A << /S /GoTo /D (figure.xxx.53) >> +/A << /S /GoTo /D (figure.xxx.55) >> >> endobj -1100 0 obj << -/D [1098 0 R /XYZ 115.087 776.032 null] +1132 0 obj << +/D [1130 0 R /XYZ 115.087 776.032 null] >> endobj -1101 0 obj << -/D [1098 0 R /XYZ 115.087 708.305 null] +1133 0 obj << +/D [1130 0 R /XYZ 115.087 708.305 null] >> endobj -1103 0 obj << -/D [1098 0 R /XYZ 115.087 354.395 null] +1135 0 obj << +/D [1130 0 R /XYZ 115.087 354.395 null] >> endobj -1097 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F46 648 0 R /F44 598 0 R /F43 599 0 R /F41 593 0 R /F50 1102 0 R >> -/XObject << /Im52 1089 0 R /Im2 586 0 R /Im53 1096 0 R >> +1129 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F46 658 0 R /F44 608 0 R /F43 609 0 R /F41 603 0 R /F50 1134 0 R >> +/XObject << /Im54 1121 0 R /Im2 596 0 R /Im55 1128 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1117 0 obj << +1149 0 obj << /Length 2201 /Filter /FlateDecode >> @@ -8559,24 +9321,23 @@ stream xڝXKsFW`o`0^9E([Z*V A(QUۏ\śĞ~~^/.֋WWZzJT[{q,Lyq"Lco>o?\W7k%A6x50l0yyOao81z7m`gO &3=+Hn^ȿ")_lAPel{d)C^]h&&B!owe7 my t ˾.!o{y^Mޜ?mߺʜW\f=TQ]/p ʈpgsg4C?0-{T(wscp}-6rWW6ij`0qQ`0%f*aAbBi4LF*/Jq YT:v"F (D -}!qD &$M)e,*2^]:. z/gu3a" IPXvhdQajFY&x&wf؞t; .-nyl YUym.]ؗ&jP"}iծ):d}{|]B0"G -k8|Mm&3C[͘Vۋ8VZU\>MǨSy.〜}ƍqo1cOLTApd( i$ԩ:-8咉sܵ&%1'?=hzJnNpXpmR P]S#<{^ -%St2kMPTiWS|ιdn첌 E6?fŻ^sȰg=;7˞ iH":G+ S 621m6TgnO^6 apnqsgttɺ:lsxǾ6YUנUUѥ;H뼬vME 3h\!Ϻo^P&?H&N=G:˗]]CUǧ/Fښ}Q7: +B]l_.ށ$םۻ*`CVۢI (!WcNHl ~[ses"I Ǫ${R02k2:4[w'uc@oWd_e;i4"~ĥЏkMّ2j .r 7rY`q92:mO s:i~LWq!Kfr f&6>7 +u 3m2FGLy{ڧJC`V  endstream endobj -1116 0 obj << +1148 0 obj << /Type /Page -/Contents 1117 0 R -/Resources 1115 0 R +/Contents 1149 0 R +/Resources 1147 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1120 0 R -/Annots [ 1104 0 R 1105 0 R 1106 0 R 1107 0 R 1113 0 R 1114 0 R ] +/Parent 1112 0 R +/Annots [ 1136 0 R 1137 0 R 1138 0 R 1139 0 R 1145 0 R 1146 0 R ] >> endobj -1108 0 obj << +1140 0 obj << /Type /XObject /Subtype /Image /Width 1280 @@ -9185,80 +9946,80 @@ p\k 'j @ @Mz @ @ VDt endstream endobj -1104 0 obj << +1136 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [130.273 623.517 151.551 635.143] -/A << /S /GoTo /D (figure.xxx.54) >> +/A << /S /GoTo /D (figure.xxx.56) >> >> endobj -1105 0 obj << +1137 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [262.082 595.813 283.36 608.712] -/A << /S /GoTo /D (figure.xxx.55) >> +/A << /S /GoTo /D (figure.xxx.57) >> >> endobj -1106 0 obj << +1138 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [161.765 569.32 183.043 580.947] -/A << /S /GoTo /D (figure.xxx.56) >> +/A << /S /GoTo /D (figure.xxx.58) >> >> endobj -1107 0 obj << +1139 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [420.525 555.165 441.803 568.064] -/A << /S /GoTo /D (figure.xxx.57) >> +/A << /S /GoTo /D (figure.xxx.59) >> >> endobj -1113 0 obj << +1145 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [139.287 515.123 160.566 526.75] -/A << /S /GoTo /D (figure.xxx.58) >> +/A << /S /GoTo /D (figure.xxx.60) >> >> endobj -1114 0 obj << +1146 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [343.707 155.915 373.423 168.814] /A << /S /GoTo /D (subsection.21.1.2) >> >> endobj -1118 0 obj << -/D [1116 0 R /XYZ 77.386 776.032 null] +1150 0 obj << +/D [1148 0 R /XYZ 77.386 776.032 null] >> endobj -322 0 obj << -/D [1116 0 R /XYZ 77.386 714.083 null] +330 0 obj << +/D [1148 0 R /XYZ 77.386 714.083 null] >> endobj -1119 0 obj << -/D [1116 0 R /XYZ 77.386 511.5 null] +1151 0 obj << +/D [1148 0 R /XYZ 77.386 511.5 null] >> endobj -1115 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F45 600 0 R /F49 736 0 R /F29 601 0 R /F3 596 0 R /F4 597 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im28 892 0 R /Im54 1108 0 R >> +1147 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F45 610 0 R /F49 746 0 R /F29 611 0 R /F3 606 0 R /F4 607 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im30 925 0 R /Im56 1140 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1127 0 obj << +1158 0 obj << /Length 487 /Filter /FlateDecode >> stream xڭMs@ 9*r"%tL)I3іt8qdj_I(ev^fg -!D${Ad> `Iz9aOjMKu٣>GK4_r8J*I4XyU6,njnc_[ZlrbƇWA ~թ+aPA@Rfj틤`&jI1CPaCRL>+V֊뜮$RV !:_Esx -ۿYXY;ALHjfQ}Oc\|&j;)ˏPmnO6oɚHȺld#.;5PlVC_/6N阡udyS_i@2|uu$T?# `Iz9aOjMKu٣>GK4_r8J*I4XyU6,njnc_[ZlrbƇWA ~թ+aPA@Rfj틤`&jI1CPaCRL>+V֋뜮$RV !:_Esx +ۿYXY;ALHjfQ}Oc\|&j;)ˏPmnO6oɚHȆld#.;5PlVC_/6N阡udyS_i@2|uu$T?# > endobj -1109 0 obj << +1141 0 obj << /Type /XObject /Subtype /Image /Width 1280 @@ -9679,7 +10440,7 @@ p ??rii9~m7/iЗ绿k}//C_ /~]>'o\J @ 7GV+܇GW8+\ Ͼ>{?| ^6*0j @1m ҡ7O~_k xO>W\"2 @u3mkFmO~Go @ @`?Z=Y+ @ З< endstream endobj -1110 0 obj << +1142 0 obj << /Type /XObject /Subtype /Image /Width 1280 @@ -10471,38 +11232,37 @@ p >Y @( endstream endobj -1128 0 obj << -/D [1126 0 R /XYZ 115.087 776.032 null] +1159 0 obj << +/D [1157 0 R /XYZ 115.087 776.032 null] >> endobj -1121 0 obj << -/D [1126 0 R /XYZ 115.087 743.142 null] +1152 0 obj << +/D [1157 0 R /XYZ 115.087 743.142 null] >> endobj -1122 0 obj << -/D [1126 0 R /XYZ 115.087 426.723 null] +1153 0 obj << +/D [1157 0 R /XYZ 115.087 426.723 null] >> endobj -1125 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F3 596 0 R /F4 597 0 R /F16 449 0 R >> -/XObject << /Im55 1109 0 R /Im56 1110 0 R >> +1156 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F3 606 0 R /F4 607 0 R /F16 457 0 R >> +/XObject << /Im57 1141 0 R /Im58 1142 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1131 0 obj << -/Length 601 +1162 0 obj << +/Length 603 /Filter /FlateDecode >> stream -xUMo1nͩRڈzhI*%"';lBe<{~;pβ"e$(>$Xb/jszp:b46m՛I^ϊ(.γȞ2bޯŵ%D|+#` 5W0ˮ2kO eѓ:iOD#/H2pF|[ࢁ^!bt%U5g9&JwR$TD?w?686CmˢGif>DgpcT & g?fn%fc@SD}s35h[HJ\듕~fM~'ٿAFg4ퟵiBhmfme ׃41bt7eysAт`t ߳% +xUMo1nͩRڈzhI*%"';lBزgypβ"e$(>$Xb/jszp:b46]՗I^ϊ(.γȞ2bޯŵ%ߝD|+#` 5W0ˮ2k_ eѓ:iOD#ޛHܗ2pF[ࢁ^!bt%U5g9&JwR$TD闳N32D#{)ld8{:$^\гBB{J\LMB,i'׏l9<c_.)uһZ=,]n]+ ; +NBgeFcA[RExVS+ P,O*ThiHam;^=M3$^?#p\0aP?cVbkj64E;G=zZjU4MK\4h=4;A 5?il6ֆ]c60f;S?z6fBn=6o.(Z,vi}?$ endstream endobj -1130 0 obj << +1161 0 obj << /Type /Page -/Contents 1131 0 R -/Resources 1129 0 R +/Contents 1162 0 R +/Resources 1160 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1120 0 R +/Parent 1164 0 R >> endobj -1111 0 obj << +1143 0 obj << /Type /XObject /Subtype /Image /Width 1280 @@ -10727,7 +11487,7 @@ U 7جVu/x㭺߬k1s[[>}/V|:XsêTۧ0#OWAg'N"_\\GO endstream endobj -1112 0 obj << +1144 0 obj << /Type /XObject /Subtype /Image /Width 1280 @@ -11098,21 +11858,21 @@ p VΫ @! ?/1x߆pyuan=<>|~_|%_}?o^}qI 5zT @T@g R 7?߾ЯmXz+b0.}>i|"7~G|'}/gK_Y_;~oYb @~x{badGß~5R#=[[0p[kүWg}oK?}3_7?׿[?n~@|t\eq @9xs~J4{?Oʯ^Np1 qϕ< 54wbUO}߿//zǯ/~~ooY_Uow}_z_~\MUr=F P. oV_ (>ėQK{;m̯o7g]?/?}¨ @GmzO>^[oxFPߔ  @& oR'+}aQ?G;I]Wp7r @ P.V{ @%Ѳ endstream endobj -1132 0 obj << -/D [1130 0 R /XYZ 77.386 776.032 null] +1163 0 obj << +/D [1161 0 R /XYZ 77.386 776.032 null] >> endobj -1123 0 obj << -/D [1130 0 R /XYZ 77.386 749.492 null] +1154 0 obj << +/D [1161 0 R /XYZ 77.386 749.492 null] >> endobj -1124 0 obj << -/D [1130 0 R /XYZ 77.386 420.373 null] +1155 0 obj << +/D [1161 0 R /XYZ 77.386 420.373 null] >> endobj -1129 0 obj << -/Font << /F20 534 0 R /F3 596 0 R /F4 597 0 R /F16 449 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im57 1111 0 R /Im58 1112 0 R >> +1160 0 obj << +/Font << /F20 543 0 R /F3 606 0 R /F4 607 0 R /F16 457 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im59 1143 0 R /Im60 1144 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1138 0 obj << +1170 0 obj << /Length 1547 /Filter /FlateDecode >> @@ -11120,27 +11880,26 @@ stream xڭnHQ[ 'EڍmzP-XSYKgdCr8|:ͭ,@, Ҍ3 R0Qpqw3qsp<?\[|Dv"HۻX,gf5ί1˔ ~f3gɲ%˸f_f|hH&mҚ:'NsE $#8I)qlIrFRv:6k3MyhiḦY-WW`_$ =D+6j# vm Qd"m ܦlug.3ՕCVd:@'Y_픹+fSԝa9U@S"nqMC'뀣;kو=!dJDCf9X{iёs^4kh lFaRqc#ɴkS=wS}RZ׵?̢lYF@c:0;?O28~z/v'Vtc)\jK6.MeE*UR0ʝ1 EDZĠ. TXLVXJuj;`; --"-mڝ^<ӆDآ`7( y!-dD>w9-fQ _ ,JOd0@ʴws3b/ll.t9o[펓NW/q|nw9-fQ _ ,JOd0@ʴws3b/ll.t9o[펓NW/q|n(gjg*m‹h3``&l= ,G|Րҋf6fSL%i(\ީ~1V6 3GJ˴}3?e'q`=F0 _}w2O32e`و +s endstream endobj -1137 0 obj << +1169 0 obj << /Type /Page -/Contents 1138 0 R -/Resources 1136 0 R +/Contents 1170 0 R +/Resources 1168 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1120 0 R -/Annots [ 1134 0 R 1135 0 R ] +/Parent 1164 0 R +/Annots [ 1166 0 R 1167 0 R ] >> endobj -1133 0 obj << +1165 0 obj << /Type /XObject /Subtype /Image /Width 1280 /Height 1025 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 1141 0 R +/SMask 1173 0 R /Length 58436 /Filter /FlateDecode >> @@ -11283,7 +12042,7 @@ g <%~7ޱr_~e$Y Q鉓}yuֻ.;_.{9Fo̫ࣷyћλ&>ûyU+>3#:I<\s>O" $YE IKoF($YE IK/I$I_$IK$II$I_3:Ȼ5]_1jVow&I$i-[gѾK8<}W>eؿSyX-zߐ\ߴ}7 FHv⏂yeTX7ӿ[ם}BoljWr}Ix}$H[3Sϕzq7v^{S߉ X'\Ƚ6G9{K3Qxyy׍Ȏ}GbEտ_t]EI I_^og95e6Y3h#QƳ%?-]ğ^\a͜> 9G}/O)Rov_$IwO߾u7o ^r4NHؿy]zͥnԳfL}ԋ|Ӱ0䐛^ڜ/IQ#I$I$i%I$IK$I$I$I/I$Ik%I$Iᄏ 8IR̷SogxF 'IV3vY~<;s}W}E%^N䜝wTg?/y;Ώb$=>3R}Cr2{zvNF+N۟)_$is e}r/q?3!<]~m=k}(uo1qve]Օh]}zgw 7I_o;e|BuxROϟ^H̍峍ͱħvƚrY<ϝ<})תX?O>ا}g$Iwٟ4;WOL)M}ڍs7{(PnkF=9ۣ{vI['&>;7#ٜ~h4ω/h"PPnWf+o,{$INh?ozKlSf(I$]Ngs=/|ܠ{ܓ}S_OxOW&Iu9}<&pOGoK]9k7Ϲ՜o1|x8Gۆ$IW.}1xKrHD=@/|ۯȱg__;7~so_}x_6W|$IԿs9+ۮ}>~wߗ7rxnmGʳU#Eq7|>?kz3>\K߄;o>?6kG$I߽\C?4?'obhET)My⚯}|pK}ᶇϾ7/I$oA{=&H{ݿ^W?p߿ߏ{ᯅe聿h{SҔI$ g>7:_|ë>FXc#Eֿg^|۫ky<W|ǧ~'o䶓<'O׿F$I߃^{4Q*UJ߼_{'~8ϽcW]O? 7?fʯ~_$IR_J]ޡ?y"#)޿ҷ76}^Ϗ:-S>S/uv"Im}tK'\{s?zO[ǿp}/ZGI$(8Y2K]K$I=!"y}?&I$IxW endstream endobj -1141 0 obj << +1173 0 obj << /Type /XObject /Subtype /Image /Width 1280 @@ -11297,35 +12056,35 @@ stream x! F!\ &/ endstream endobj -1134 0 obj << +1166 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [213.59 232.566 234.868 244.192] -/A << /S /GoTo /D (figure.xxx.59) >> +/A << /S /GoTo /D (figure.xxx.61) >> >> endobj -1135 0 obj << +1167 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [418.112 218.411 439.39 231.31] -/A << /S /GoTo /D (figure.xxx.59) >> +/A << /S /GoTo /D (figure.xxx.61) >> >> endobj -1139 0 obj << -/D [1137 0 R /XYZ 115.087 776.032 null] +1171 0 obj << +/D [1169 0 R /XYZ 115.087 776.032 null] >> endobj -326 0 obj << -/D [1137 0 R /XYZ 115.087 632.523 null] +334 0 obj << +/D [1169 0 R /XYZ 115.087 632.523 null] >> endobj -1140 0 obj << -/D [1137 0 R /XYZ 115.087 603.776 null] +1172 0 obj << +/D [1169 0 R /XYZ 115.087 603.776 null] >> endobj -1136 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F45 600 0 R /F3 596 0 R /F4 597 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im59 1133 0 R >> +1168 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F45 610 0 R /F3 606 0 R /F4 607 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im61 1165 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1144 0 obj << +1176 0 obj << /Length 2103 /Filter /FlateDecode >> @@ -11342,102 +12101,95 @@ xڵX ^ >+"zuuw6"G{ѽ~~{W^CuVdK5')PɷmY/'N:%t 3ޮm&R$^oo}C% )sR L)o"܋F ݉2⋼C^AV7',p]'f8|!Qb #8T cVHNLL'z`g/+]>b8K@ <o>]ˢ! 4T$)O@5Yȩ@@g0pypa =utʳiUIAT,ɂIwdr'<ٟ,[+F8n4jxȳޣ== -|<>ѼٸʸJٜg&[#ݮZ @0}]ɸ]&D +|<>ѼٸʸJٜg&[#ݮZ @0}]I:ZXMΈ endstream endobj -1143 0 obj << +1175 0 obj << /Type /Page -/Contents 1144 0 R -/Resources 1142 0 R +/Contents 1176 0 R +/Resources 1174 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1120 0 R +/Parent 1164 0 R >> endobj -1145 0 obj << -/D [1143 0 R /XYZ 77.386 776.032 null] ->> endobj -330 0 obj << -/D [1143 0 R /XYZ 77.386 755.708 null] ->> endobj -334 0 obj << -/D [1143 0 R /XYZ 77.386 680.94 null] +1177 0 obj << +/D [1175 0 R /XYZ 77.386 776.032 null] >> endobj 338 0 obj << -/D [1143 0 R /XYZ 77.386 330.236 null] +/D [1175 0 R /XYZ 77.386 755.708 null] >> endobj -1142 0 obj << -/Font << /F20 534 0 R /F42 594 0 R /F16 449 0 R /F45 600 0 R /F29 601 0 R /F41 593 0 R >> +342 0 obj << +/D [1175 0 R /XYZ 77.386 680.94 null] +>> endobj +346 0 obj << +/D [1175 0 R /XYZ 77.386 330.236 null] +>> endobj +1174 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F16 457 0 R /F45 610 0 R /F29 611 0 R /F41 603 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1148 0 obj << +1180 0 obj << /Length 359 /Filter /FlateDecode >> stream x}[O0)ΓZOok(a a&&J!S@?eLgЎYtC![皡5`,2t9L&$NS)9iŔAXXrM{Mo>ܶcһt_mZjtFgou4>"GFfVJx^G)<2,|kP(ExxS IJ1ILmi>ʈa1ؾbWfY+t`NR ǔG* -t[)_D*UJݽǡD8QB5K=n~7dxӧYw.kbUG`tŸIΓi`&987GH +t[)_D*UJݽǡD8QB5K=n~7dxӧYw.kbUG`tŸIΓi`O> F endstream endobj -1147 0 obj << +1179 0 obj << /Type /Page -/Contents 1148 0 R -/Resources 1146 0 R +/Contents 1180 0 R +/Resources 1178 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1120 0 R +/Parent 1164 0 R >> endobj -1149 0 obj << -/D [1147 0 R /XYZ 115.087 776.032 null] ->> endobj -342 0 obj << -/D [1147 0 R /XYZ 115.087 755.708 null] ->> endobj -346 0 obj << -/D [1147 0 R /XYZ 115.087 731.167 null] +1181 0 obj << +/D [1179 0 R /XYZ 115.087 776.032 null] >> endobj 350 0 obj << -/D [1147 0 R /XYZ 115.087 705.938 null] +/D [1179 0 R /XYZ 115.087 755.708 null] >> endobj 354 0 obj << -/D [1147 0 R /XYZ 115.087 680.251 null] +/D [1179 0 R /XYZ 115.087 731.167 null] >> endobj -1146 0 obj << -/Font << /F20 534 0 R /F42 594 0 R /F45 600 0 R /F16 449 0 R >> +358 0 obj << +/D [1179 0 R /XYZ 115.087 705.938 null] +>> endobj +362 0 obj << +/D [1179 0 R /XYZ 115.087 680.251 null] +>> endobj +1178 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F45 610 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1153 0 obj << +1185 0 obj << /Length 1261 /Filter /FlateDecode >> stream xWKo6W(/[IEA/Mʚq *˻9,9r(|p8|8Cl=zwE)QW}5Fepbn9(+S.Ȼd]Q -;߻g_ݬ4ch2i$RdV0m-&S9N2m݇7{\r,)efU\4V`3(37}̌i3؞&`w1(bL* - `;7.xDHŃCn J.xj,W7 -ٜ:. %ZRD(ap[QLրƼƝd&څ n -8Q}58.aTD}zhZ^vuB%?5e+ f@'Gi͡(1Y",*h@DTZcayqvQ`#(5DiTu -xED a-5'\\(`Ou;XTUpri}ݮ޵'G/\m2` -?ԏ=/ѠDŽs6HOƉ,\|$DP 68 -Xd`ul(USO(5l@1b\&?" sإ: @H`&$U'fyY*K=J֚qϑ AY~]8m.F}@[8y`0l ߟFjvbXqN>z7f2%B0Y&BaE5oOjR 616%Z.oG.ё"ϜAU'оsa: -jdu+ -9U.8-3Ĉ ~| -V#c1\*|~ƁFK#Vox  <3j"'P)> ҡ& RtO6}EU&+p]K =[cAx;h~l}ic4(:ߺڻ_]">pˢ7o_bW?|,/OU4xZXQM^Y l}!\wzõQ@Wc~w÷ѳ lƥ6J9|-ƇP8t c|EiKZhjlF\ؾ?ZZ_ ǰ@A|#}Wo] rhZ7&'4E +;߻g_ݬ4ch2i$RdV0m-&S9N2m݇7{\r,)efU\4V`3(37}̌i3؞&`w1(bL* + `;7.xDHܕ rWp!Scܴ:qTql(Բ"B ;RfjD64(%3.K@ukW){׬QqQ bM'ECʷ;Rp.A,C^02=9JkEy`q PᕍpE*&Ң3S 6/Dĭ!LST7=.'kniE}8z:D)Ǣ -wMM;v]==D>z9GPoȵCUH~q|%<&D(-AtGʆ0Nf!8#!jQ "@6cC9zbE)IgŒ2 lEI`.Յ$ЁI@3!Z?1CȋrVYBQ@֌dKnw1J:0kfc7\ 5:U5lÊpiXֻi0)2* +C5xJVjq=ޯ.Ѣu<|>>rɎϜW~ :(%YPV#%XÚUpi޸%h!Fg'8|tSq"}P964^zXPP5Uc9uO5 m}s$-"G5_цگ_4%s ҔDۑD ׄgc{NE-*: -) Mt[},czcyyŠjbf{ bֻtgf6.Pn5>E'ȇ`?lj@?K(J#]BS f3*",b>ޏ$Pz3 \D +Y5 endstream endobj -1152 0 obj << +1184 0 obj << /Type /Page -/Contents 1153 0 R -/Resources 1151 0 R +/Contents 1185 0 R +/Resources 1183 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1156 0 R +/Parent 1164 0 R >> endobj -1150 0 obj << +1182 0 obj << /Type /XObject /Subtype /Image /Width 1679 /Height 892 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 1157 0 R +/SMask 1188 0 R /Length 26413 /Filter /FlateDecode >> @@ -11482,7 +12234,7 @@ X źD:J:7W?X7\J<&Q:) M0.ԕx::@t :Y'źpLX&h&Ŕ:o;㭖1c1cbfu 6A endstream endobj -1157 0 obj << +1188 0 obj << /Type /XObject /Subtype /Image /Width 1679 @@ -11496,24 +12248,24 @@ stream x O3D"9 endstream endobj -1154 0 obj << -/D [1152 0 R /XYZ 77.386 776.032 null] +1186 0 obj << +/D [1184 0 R /XYZ 77.386 776.032 null] >> endobj -358 0 obj << -/D [1152 0 R /XYZ 77.386 755.708 null] +366 0 obj << +/D [1184 0 R /XYZ 77.386 755.708 null] >> endobj -1155 0 obj << -/D [1152 0 R /XYZ 77.386 652.499 null] +1187 0 obj << +/D [1184 0 R /XYZ 77.386 652.499 null] >> endobj -362 0 obj << -/D [1152 0 R /XYZ 77.386 431.292 null] +370 0 obj << +/D [1184 0 R /XYZ 77.386 431.292 null] >> endobj -1151 0 obj << -/Font << /F23 489 0 R /F44 598 0 R /F43 599 0 R /F42 594 0 R /F29 601 0 R /F16 449 0 R /F46 648 0 R /F41 593 0 R /F20 534 0 R >> -/XObject << /Im60 1150 0 R >> +1183 0 obj << +/Font << /F23 497 0 R /F44 608 0 R /F43 609 0 R /F42 604 0 R /F29 611 0 R /F16 457 0 R /F46 658 0 R /F41 603 0 R /F20 543 0 R >> +/XObject << /Im62 1182 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1163 0 obj << +1194 0 obj << /Length 2191 /Filter /FlateDecode >> @@ -11528,83 +12280,88 @@ CnӔE͌T! ㆧi1?* W~H./@iMV(lxlZNP[ډp8pR |:rSqWSRO'Wz3,v<CCGz\ȿY?=X$~MxF4iWTWz߰==%N"^ }spP=@xSg0;):}K!GQCٹIks+^`+Ƃ|!s,>VK5@ eq~4^PXKSq}FOԓO&cbagoK#cTDϠ#\{nmtf'%>m F !>Z^hڽ ]9 ..lyh qZVv/GH)nAj@4]kOB 3&baN;L8 + |F)Lqo,„;(`rR{>j@4]kOB 3&ba}t6?䂳 endstream endobj -1162 0 obj << +1193 0 obj << /Type /Page -/Contents 1163 0 R -/Resources 1161 0 R +/Contents 1194 0 R +/Resources 1192 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1156 0 R -/Annots [ 1158 0 R 1160 0 R ] +/Parent 1164 0 R +/Annots [ 1189 0 R 1191 0 R ] >> endobj -1158 0 obj << +1189 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [114.09 208.688 121.507 221.587] /A << /S /GoTo /D (chapter.6) >> >> endobj -1160 0 obj << +1191 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [167.05 148.118 188.328 159.745] -/A << /S /GoTo /D (figure.xxx.61) >> +/A << /S /GoTo /D (figure.xxx.63) >> >> endobj -1164 0 obj << -/D [1162 0 R /XYZ 115.087 776.032 null] ->> endobj -366 0 obj << -/D [1162 0 R /XYZ 115.087 587.911 null] ->> endobj -370 0 obj << -/D [1162 0 R /XYZ 115.087 555.972 null] +1195 0 obj << +/D [1193 0 R /XYZ 115.087 776.032 null] >> endobj 374 0 obj << -/D [1162 0 R /XYZ 115.087 295.951 null] +/D [1193 0 R /XYZ 115.087 587.911 null] >> endobj 378 0 obj << -/D [1162 0 R /XYZ 115.087 193.522 null] +/D [1193 0 R /XYZ 115.087 555.972 null] >> endobj -1165 0 obj << -/D [1162 0 R /XYZ 115.087 137.686 null] +382 0 obj << +/D [1193 0 R /XYZ 115.087 295.951 null] >> endobj -1161 0 obj << -/Font << /F20 534 0 R /F41 593 0 R /F16 449 0 R /F46 648 0 R /F29 601 0 R /F42 594 0 R /F45 600 0 R >> +386 0 obj << +/D [1193 0 R /XYZ 115.087 193.522 null] +>> endobj +1196 0 obj << +/D [1193 0 R /XYZ 115.087 137.686 null] +>> endobj +1192 0 obj << +/Font << /F20 543 0 R /F41 603 0 R /F16 457 0 R /F46 658 0 R /F29 611 0 R /F42 604 0 R /F45 610 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1170 0 obj << -/Length 2176 +1201 0 obj << +/Length 2175 /Filter /FlateDecode >> stream xڭYKs6WH͘0^$L{kutRGPG3ͯ.DRXvxx|69<e<>04 LL07gogR2M$Q4U%Nkʩ%5T~5`4kr6{"@-PgYTq9/a׀3G 4, -en{gQHÌJD1 g23*v$c(Hܛr?{zLDpAEEhKZ cY"DZ¢ N3>(]&DxvpW[ӄe -5rlϯEykQ^W`V D",QI [ f@+$ʙȇ)ѹm+ -*)[k~BsaE^-le]5,R|;uvAd <%-`8 JzDHq8 Q)ڼ0PZ[7DW_mhٚsҭЦ G$|_8n47/sa^?OctI7zuIo7%gʻ{̝ہkU54!FFA}Ovf&] |(#b\A,@QZ;E}>ۮH3imZ-bRX!Dx9D{p+6Wyte^C"Iټ$0aSCA;si)T~Қڒ+D IE{ᣎr(6\Wy\„7jNBLnHH,)IZ=l@gֈ,8tUA+yٸ뙛q θIgr@ B-IYU]]%&10%3={Z EO}nٜnlS*z-}h8yTm {R,8k?~b&@/8 %9ON[TR"1L* _@)%*<@8ă ᪞`:مg ~Z'4P5I}]d -2S5Tw1+jpzkV$W\KWxz!T!A:6,܏ŏe'P{NGi02QĔZcw.)Ӵ]嫃=^yf<8f -x%~"u-Gj2s=*qI|1mT^xhx_ttr [e$R/tsUGTde^i}D ʗCPf(&mu~qa;6^6dqÌ̦؇ºPHa}al5ˆ1:mTQqATO`P)Ʃ\k8K4Xh)fQwąhFZs쟎Qt/샿S/ח&2#^йE8ji%[UA{X+K@r<0u [\_6vSÖ2HAQ' -R{e;^Rщu% l}uCkS֚SZt):iNTu4OP"džj4txW/Ka;aC>>uj%'q޵Vu@{X%:>7޵!vMviHe0b föאc&ۭQE +en{gQHÌJD1 g23*v$c(Hܛr?{zLTpAEEhKZ cY"DZ¢ N3>(]&DxvpW[ӄe +5rlϯEykQ^W`V D" 33bqak h`\b$[9u2e>:->bT<`teaѴ4EE0e{[B`Ohn7~PX84w%<90EDs m]TJHRvem3 )5eڟw\o8pO1s{ +11xOuQ8sQiEÈ"g/N,˸4{1Vw%9K:A]D'zkWHRHWGcH4_Gn8Yw8 +/L%s"5~J'W̶VVh1z6KktYK+[_=hZ| C-Pм#n,3 7AqcZr [YU[/!s'oಳXa܇$&^#vx(qc9-~# +V=OpSZX[yH!ɠh/|Q%Ɛ!V}CrRmQI ))|2#iTkH +:`%/=w=s3`w89 5_NHpUx0@H%I7 +KĄ fpD}FGsOk1!Hb-S׭mU4c@E/O PMp'#maB%gMO=g$ _rނJJ$Tx`?(Tt~S%HxA<\ճb0`R';Ot2&LP~}P5`Z .Y/r ܊Jk +CO1*$H2&X۞q y $c`CI(2 P?R{e2;e|u+lQ~ǷLAqq/A(BMbBE=q=o;ٺ* O-ar_!w˶LDnyj㈊L+0u(P!>cUj 䵭ϖ<e, Hzӑv3n}7wDFb :G=cWݿc롪;uO ve)(5Xg"<7U=v+\f{n\p}R&)7 +ZSj/lNjX*::oRnpM}*ض@Zs6X.Z'3҉Ӛ" JPmjzYE|)r',18chǾ56WأB-$λVتnh}kӼDgٻ ٢).;-| &X pr>U54B endstream endobj -1169 0 obj << +1200 0 obj << /Type /Page -/Contents 1170 0 R -/Resources 1168 0 R +/Contents 1201 0 R +/Resources 1199 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1156 0 R -/Annots [ 1167 0 R ] +/Parent 1204 0 R +/Annots [ 1198 0 R ] >> endobj -1159 0 obj << +1190 0 obj << /Type /XObject /Subtype /Image /Width 1016 /Height 477 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 1173 0 R +/SMask 1205 0 R /Length 11430 /Filter /FlateDecode >> @@ -11622,7 +12379,7 @@ RY ʳ|OfGpO\fñm[9ϝo~ӑط,2~}t~<7y;7_:#R쳀U$޳,.H[~{";vt~|5o8V4*@Ο?|;5=u'i;\{{ܦ?ˠ:u>|EZt:GL:nM:+οx^):_|ORu>I:{ie몼3>^2ο_.Kί{y9f/:Í_٫}It>k:rs?wu= sW0qSJ/y, PfNpwvOjpNA珧D.hvk?~;93gqG7#[O(5K7{KroYx~5?ˮ"Sp:_of;L|$BvRt:dX?ˠ:u~m7>"n[:u>Od=u>@|=u>@K:_t':@|F:_C|:?ks`#|@7|Ѯ?ů^.A|t~Οs?~p`p#/}|GzL}oV9ŝ?9c<#s!q3t7߾ kv~b:,wDfvt秿~ۙ{ɁDt|t1w~$RΟK}v[?l;:>W:UR|t~Wngo\; ?BWr.د1Ͻ/)&;O d!|E\ :Lt>@S|^u>t|O$wP|Η$u|Ovp4Hu>@|||t~?Ɨο2O|t~/Xgիe9H}o/ǏG<Yu:~ϿWm;~7ԎS/;۷Au>:?kt 'Dp#{rNY;\|t:F޲gt~dM>#0o'7?rk'g]ΟL}v,o;u:yR|t=Hc̺y : :9˲'~5t~TuY:p:_s||t>k"u·:jI|t':@|:{ Cu~s::η.@|O:_SSu>u~ͷ^pW땹O/ƃI { :u;&<t>:_SO'}:k.$qXu>u~~b}𦠠u>@|/|xb|::m7oގ||M3XpIu>u]|tΧ:yΧ@|;~:|O|I@R|$u>:_|ORu>Iw%ٍ:N3k:$Idst>I$I$I}$I> +/A << /S /GoTo /D (table.xxx.65) >> >> endobj -1171 0 obj << -/D [1169 0 R /XYZ 77.386 776.032 null] +1202 0 obj << +/D [1200 0 R /XYZ 77.386 776.032 null] >> endobj -1166 0 obj << -/D [1169 0 R /XYZ 77.386 762.483 null] +1197 0 obj << +/D [1200 0 R /XYZ 77.386 762.483 null] >> endobj -1172 0 obj << -/D [1169 0 R /XYZ 77.386 318.9 null] +1203 0 obj << +/D [1200 0 R /XYZ 77.386 318.9 null] >> endobj -1168 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F16 449 0 R /F46 648 0 R /F29 601 0 R >> -/XObject << /Im61 1159 0 R >> +1199 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F16 457 0 R /F46 658 0 R /F29 611 0 R >> +/XObject << /Im63 1190 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1178 0 obj << +1210 0 obj << /Length 2329 /Filter /FlateDecode >> @@ -11668,55 +12425,55 @@ xڵZ[s xr? $ٶy5 jݯatB_.KɁ`,Hk>=0TCCVqKZW>15&XO ~ŪyzUJ0AbEHE+jf8{jJU,m'\ j5}#Hk[{{6j.Z N9ʸŘ@z* y\MV+ CvSVkJ'$2\.֘P4IfLY_+Me\HO8湜響k1$fOx텞[IOFH "r 7:㾂5h;*T;Ex*MSUK'7H-@b tdup@[t@ -{eHrD_puhlS‡Ȼߘ H2-e#pʶIhF:,\^ rkCc-"lEJ-gm@٥'l7 K#dkf> wM~:fa2vK(A#BQH_+ͦNÂJTVZisٮC5%`ۖo5?أf)6{{p$a4qPdMĶ:Y 7SߛZ g +{eHrD_puhlS‡Ȼߘ H2-e#pʶIhF:,\^ rkCc-"lEJ-gm@٥'l7 K#dkf> wM~:fa2vK(A#BQH_+ͦNÂJTVZisٮC5%`ۖo5?أf)6{{p$a4qPdMĶ:Y 7SߛtZ g endstream endobj -1177 0 obj << +1209 0 obj << /Type /Page -/Contents 1178 0 R -/Resources 1176 0 R +/Contents 1210 0 R +/Resources 1208 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1156 0 R +/Parent 1204 0 R >> endobj -1179 0 obj << -/D [1177 0 R /XYZ 115.087 776.032 null] +1211 0 obj << +/D [1209 0 R /XYZ 115.087 776.032 null] >> endobj -1174 0 obj << -/D [1177 0 R /XYZ 115.087 762.483 null] +1206 0 obj << +/D [1209 0 R /XYZ 115.087 762.483 null] >> endobj -1180 0 obj << -/D [1177 0 R /XYZ 115.087 281.636 null] +1212 0 obj << +/D [1209 0 R /XYZ 115.087 281.636 null] >> endobj -1181 0 obj << -/D [1177 0 R /XYZ 115.087 180.204 null] +1213 0 obj << +/D [1209 0 R /XYZ 115.087 180.204 null] >> endobj -382 0 obj << -/D [1177 0 R /XYZ 115.087 105.441 null] +390 0 obj << +/D [1209 0 R /XYZ 115.087 105.441 null] >> endobj -1176 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F46 648 0 R >> +1208 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F46 658 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1187 0 obj << -/Length 1393 +1219 0 obj << +/Length 1392 /Filter /FlateDecode >> stream -xڍWKs8 Wy&f%-8ikw G,zlf ([~Ξ Av9ys/y 8Ky*:c gDui:D|FQ K:̀y\_3O:HYj'Eөoժ#0.ªFRRO * vL(Mq SWh udM^<8f˿-ȥȇl-ֶi-s]Ҿض{*ҡ4M/HPG5?Xpp$0)G"8F2ɰ/UfKG1!bꌦ z!#A«a!ܶ.poe>O O#!]}1aJ=*KIJŸ' 8MpzwY7|yJoi˱ ~$.=tѿL2`v6ۄe!*p^Eky/.zF1 ᠁$gg>G:~×KuL5Ux>vMKTYA*hr51v+ -O*h]M,6DK3._d55Gߟc&Q)D>7尗.ʛHM?h\l_Fy( vzbQ^Bi/KmS*6ع _K< OJM5X vW{{" -G>(+3;9u|8O 'm{qfD0?h@>o KCf"~"|.sEw N^XX&+N$0W;M*#%xM{3S +xڍWKsF WfjdoXN'@1E%|D=XǷvɃ"r^@pDuEL6bx,Δl:VX7_n R Wx?Ҧs]`<~wrs" (fCdXT|΃ dTNsh.YU|qbB9NLk`%2ͻW캼rQ ;3ic2{7әLd:q7Y^:+s"!|3n3X7b3ZT"ݶ:o"ߤU7~↷x`>%D)<_N0@Q[r .P +1#\~D/]ô>ZDui:D|"'WDf@q?%G)g'#6Xvi]\3A'ɷ\t=8g)EZ ]]Z$H+re#юc$MĬ ERnּt".Ni +">T8K*ZR֥<\ͣ)]p4D]/& GEv)IW$a@ S.f/0O\:[r,v |]/ @*h`6ad~eQ8/"M=#ᘄp~ hNjRw\OmGE˥:*^h ~WDThr51v+ +O*h]M,6DK3._٤55Gߟs^L2<}.n"x'*a/] 7\d&پ =pQb%%Gy=ho t,u׍`Rw>o^ZyRZo]'W8I> endobj -1183 0 obj << +1215 0 obj << /Type /XObject /Subtype /Image /Width 1019 @@ -11760,90 +12517,90 @@ o /M\!u&; T/nъ@ue*y"'r%s_[w/:Fn?l+S,:?oĿ Xw nkI9ic?\ 9Cſxwϑe=/^L&T7i_ݮ;BWfKw׊sPҵzs%#rwVO̜(ʬ8d\l>ޖݨ =`2P?@)4PsUş{ e(R5R0_Ch3|/?Jݻw@?4I@?L@?L@?L@?L@?L@?L@?L@?L@?L@?L@?L@?L@?L@?L@?L@?L@?L@?L@?,o`J`NNL迬a6jw' r9ʻNJޟ3G|KG-G!{dZ=rhiW\>o ʳ-ql"Wp[uLz|08^d` U?-apBJ6p ܥsHxl{/~Ѓx~uE@-6R  X+ \vso.;vJ^|n̤-Mb)n$M2m--߹#U-.ޥxDOxď-0#wQú2YqgyLnR{+~n7\\Cի:b=9Ȥu{LzprV?dO-(~(z+O>2rLVg\5<zLD&YeZeQzO)~h-t'> 4$Θ|l-=v`bRV~܏OVLRP9?r)[y0vRň9bkwW0'c = -S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-S2-nI endstream endobj -1175 0 obj << +1207 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [76.389 702.189 89.229 715.088] /A << /S /GoTo /D (chapter.18) >> >> endobj -1182 0 obj << +1214 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [152.324 616.503 165.164 628.129] /A << /S /GoTo /D (chapter.20) >> >> endobj -1184 0 obj << +1216 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [76.389 235.422 97.668 247.048] -/A << /S /GoTo /D (figure.xxx.64) >> +/A << /S /GoTo /D (figure.xxx.66) >> >> endobj -1188 0 obj << -/D [1186 0 R /XYZ 77.386 776.032 null] +1220 0 obj << +/D [1218 0 R /XYZ 77.386 776.032 null] >> endobj -386 0 obj << -/D [1186 0 R /XYZ 77.386 687.924 null] +394 0 obj << +/D [1218 0 R /XYZ 77.386 687.924 null] >> endobj -390 0 obj << -/D [1186 0 R /XYZ 77.386 601.064 null] +398 0 obj << +/D [1218 0 R /XYZ 77.386 601.064 null] >> endobj -1189 0 obj << -/D [1186 0 R /XYZ 77.386 561.792 null] +1221 0 obj << +/D [1218 0 R /XYZ 77.386 561.792 null] >> endobj -1185 0 obj << -/Font << /F20 534 0 R /F45 600 0 R /F16 449 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F46 648 0 R >> -/XObject << /Im62 1183 0 R >> +1217 0 obj << +/Font << /F20 543 0 R /F45 610 0 R /F16 457 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F46 658 0 R >> +/XObject << /Im64 1215 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1192 0 obj << +1224 0 obj << /Length 194 /Filter /FlateDecode >> stream xM0 E|t6M"*aBL XZlC܀Qf C +rkE,1z̉wư{?Y*4V/MVZ1h~ST8Q%DU'K; 9Z(Ƞ#Ij3'(H!:;R|S> endstream endobj -1191 0 obj << +1223 0 obj << /Type /Page -/Contents 1192 0 R -/Resources 1190 0 R +/Contents 1224 0 R +/Resources 1222 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1156 0 R +/Parent 1204 0 R >> endobj -1193 0 obj << -/D [1191 0 R /XYZ 115.087 776.032 null] +1225 0 obj << +/D [1223 0 R /XYZ 115.087 776.032 null] >> endobj -1190 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +1222 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1202 0 obj << +1234 0 obj << /Length 1139 /Filter /FlateDecode >> stream -xڵWYoF~ׯ#kel8na}@[EwBfvU׻f/,)qŤ2ͥQ2&}0X⟋{&d34ˤtTF?ɜK5ve j}\nf߾O2:J؀Ʊ={KO\^U=?鯀R& ߻unMsl +xڵWYoF~ׯ#kel8na}@[EwBfvU׻f/,)qŤ2ͥQ2&}0X⟋{&d34ˤtTF?ɜK5ve j}\nf߾O2:J؀Ʊ={KO\^U=?鯀R& ߻unMsl ЬzޡkE^HckԼ~Ӗ TS:R*oz -31#dZ\Zt5 *z:u]Q/4%8D}4vߺ:}Lm$)$ϟK~.LJQ]COǂ +31#dZ\Zt5 *z:u]Q/4%8D}4vߺ:}Lm$)$ϟK~.LJQ]COǂ }͌^Cs_E-,d QnWE&_/*~]4wLr'[8&E*5Λ/|ݔmr]{`Oq4uAK"M¥av $i1t+uj*9;vI0d>`]ʵ= '-UCO..pFЍ݈B,Enjs|@(RD]U}<š5a\",0L@((UGy܊7CC?[R>U*ml=@0e*歃s!I*4.>-ޫj -ʎ´7І8I2+FuhCKn&>|Ǜ$ODv3\cד'muW%LBi^H{Jǩm@ m Ṱ%Ag'v}߆ﯺM} 䤠\iC$SToHm -ͪg(uz3e?ee+/*G<= +ͪg(uz3e?ee_Tp= endstream endobj -1201 0 obj << +1233 0 obj << /Type /Page -/Contents 1202 0 R -/Resources 1200 0 R +/Contents 1234 0 R +/Resources 1232 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1206 0 R -/Annots [ 1196 0 R 1197 0 R 1199 0 R ] +/Parent 1204 0 R +/Annots [ 1228 0 R 1229 0 R 1231 0 R ] >> endobj -1194 0 obj << +1226 0 obj << /Type /XObject /Subtype /Image /Width 772 @@ -11866,7 +12623,7 @@ u xn S=X&k?hn2LO.04i3K5])8(hN#lLEha龽D;Q/ :5`hKGdɅBrֺyģ ! B@~+BLEM:MmZF-# \lEDJ.o)dbHz?>7DrM^Loކq@'Y endstream endobj -1195 0 obj << +1227 0 obj << /Type /XObject /Subtype /Image /Width 767 @@ -12014,70 +12771,72 @@ lJ? tm"i|Wt>ʂZ^,/u ӗ߃oIbY]IGQEЩվt.mO?iӸ~p,wcpB_1Hذ endstream endobj -1196 0 obj << +1228 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [228.92 259.088 250.198 271.987] -/A << /S /GoTo /D (figure.xxx.66) >> +/A << /S /GoTo /D (figure.xxx.68) >> >> endobj -1197 0 obj << +1229 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [346.086 212.971 361.941 225.87] /A << /S /GoTo /D (figure.xxx.3) >> >> endobj -1199 0 obj << +1231 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [203.849 120.737 225.128 133.636] -/A << /S /GoTo /D (figure.xxx.67) >> +/A << /S /GoTo /D (figure.xxx.69) >> >> endobj -1203 0 obj << -/D [1201 0 R /XYZ 77.386 776.032 null] +1235 0 obj << +/D [1233 0 R /XYZ 77.386 776.032 null] >> endobj -394 0 obj << -/D [1201 0 R /XYZ 77.386 755.708 null] +402 0 obj << +/D [1233 0 R /XYZ 77.386 755.708 null] >> endobj -398 0 obj << -/D [1201 0 R /XYZ 77.386 659.324 null] +406 0 obj << +/D [1233 0 R /XYZ 77.386 659.324 null] >> endobj -1204 0 obj << -/D [1201 0 R /XYZ 77.386 616.192 null] +1236 0 obj << +/D [1233 0 R /XYZ 77.386 616.192 null] >> endobj -1205 0 obj << -/D [1201 0 R /XYZ 77.386 466.672 null] +1237 0 obj << +/D [1233 0 R /XYZ 77.386 466.672 null] >> endobj -1200 0 obj << -/Font << /F23 489 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F16 449 0 R /F41 593 0 R /F20 534 0 R >> -/XObject << /Im63 1194 0 R /Im64 1195 0 R >> +1232 0 obj << +/Font << /F23 497 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F16 457 0 R /F41 603 0 R /F20 543 0 R >> +/XObject << /Im65 1226 0 R /Im66 1227 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1212 0 obj << -/Length 1831 +1243 0 obj << +/Length 1830 /Filter /FlateDecode >> stream -xڵXKs8 W(THꙛ3q۴i7%fl5t H[*iNNt|d>:z-|,SoC''>ؙ/ϮE};baJ|z6O^}?8OǞђ_Fۈ~8dz,`3&΃v_ė.ob;Q "}%B6Y'"Sm=>v9>٭^ pRF"BX(`\_Ţ-X"0 os@HO"JH=ZlZcW2 -׍s-I08~Wv}C˅Ix2d=Օ˞<:p1ݴڞ9OEq ^|`S*/uN+_p zƹZUQns7kZu%<.Y"W2U5p[.!p- 읲) gAsQm^_]Ucφh ݷ9=Hν@%>Ayce-\=y[PkTw쁖R=+B GZHHTQʸ؝x.զZ!Z< HU2!A=) +[Doe_iE ]cA`)D 芮*7-ؤs`~~՝, ѱ<KTG BhhiiR-c_^&P7%"dy*1i'p)N? 4ԭ*Ϊ;shԱ^GB{U)G/F!Ӭ-ԕ[A̵DWؐMMي:-u\f;qꡬsb0E#GmuT9*yy:{i.a--D{ x-|{]: -EQFn(q2Q<ҹC 117k -EDD!! -;kkuo61r3Mۼ| ?) ި:[[yN|"ޯXؔo٪2%mx̵u&] Dt h;|Шe|wӄdBLRBQ(>PHg*VOE3#Y^g:/cA5{/lO X'N\-gUu{}GBW˃@ MAn٫ay+.-?9+i6Vj~ ~,)PԔw/|:>G/аN]&BB%b~$_TFR= Z>Ut X|]ktp-#耤fY'Yf׵tp0Df5BծB2_U+iĊ6˲¸Ȯ\%d1*aC.G@ +xڵXKs8 W(THꙛ3q۴i7%fl5t H[*iNNOwGGp~ʝy$vg~;q6Ho'c^?L?^IOfKX'gؓ&rh:}q,ҹY>Ls|&yKN ™FݱBH`,巑?^ҥdW +;xtbt<~g:gi\IYa~B?t8f ur}\`D2=>=X*Q"4WhU7kUE^8(T^7fΣω +SE-&ɐEV+ߗ=aytbҞ9OE(q ^| )\'/CЃ`8W;PUVMV^O1wIMPF㒅AJ,rU.3U hN0eO>8Sςڌ0t&z4Pu} ($/7v]å*3W FqxWhY[/PA*4spDZXRNmTjQ~hQ%1UɄN亦0(ں0ZnEӚ]tu%2G^+K}Èi8 "$GD( eB +IȢRY4,N=iؠq7h=hX4I-z('+-*§-Y!7k)P ˬT]Ą]Bw20* pFpCi] &Dk@L)&0`r\́&†V'pz_S733?dʖdH?q`U 'DLܨ]$J#NxM9QN @Řk<KSLmUQZP!qk[?1R@ <%7(j<\PW_G<c3т$ΩA2+ +]+;Y(0c qy'6IjSv9Wm} 9fKT&Zs0)& WO^5,L;3Oi&p7qoKCú¥묺:N :_ӗn*RtkovW] Tm?!}svҶl2>TXSxiɅ^tLC}q^.A&qlݡkb5ppVcW +:ı+Z{M\7X&udlu }lWum YMlk"H,4.CU5qypΙqbYv_wu2X # 㡳,PtX b,G;F endstream endobj -1211 0 obj << +1242 0 obj << /Type /Page -/Contents 1212 0 R -/Resources 1210 0 R +/Contents 1243 0 R +/Resources 1241 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1206 0 R -/Annots [ 1208 0 R ] +/Parent 1204 0 R +/Annots [ 1239 0 R ] >> endobj -1198 0 obj << +1230 0 obj << /Type /XObject /Subtype /Image /Width 740 @@ -12134,55 +12893,52 @@ S @@nC endstream endobj -1208 0 obj << +1239 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [257.879 209.249 279.157 220.876] -/A << /S /GoTo /D (figure.xxx.68) >> +/A << /S /GoTo /D (figure.xxx.70) >> >> endobj -1213 0 obj << -/D [1211 0 R /XYZ 115.087 776.032 null] +1244 0 obj << +/D [1242 0 R /XYZ 115.087 776.032 null] >> endobj -1207 0 obj << -/D [1211 0 R /XYZ 115.087 762.483 null] +1238 0 obj << +/D [1242 0 R /XYZ 115.087 762.483 null] >> endobj -1210 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F16 449 0 R /F41 593 0 R >> -/XObject << /Im65 1198 0 R >> +1241 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F16 457 0 R /F41 603 0 R >> +/XObject << /Im67 1230 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1217 0 obj << -/Length 1669 +1248 0 obj << +/Length 1670 /Filter /FlateDecode >> stream xڽWKsF Wpzf"f|fiqc59њbMR I3cW"%CA,v> ^.V+Id"K@"Yg|8[÷˫|ʼnUi_Uu ο̖+$ Ra'#I^(T - t kJD^%Ax$2iQ88U -(z^Z [˂,V1zUiDEP[jk -plua@9Vg8]NO Cc`a*M{7_з sH -b cX=J9){ay -PJm/&wQG)l=-Qzþ})rq31>5_ Ilӑ!w ک{кkӐC5ԟ_rd)0ǮD^ [iNbkF -zWiCi5:iӭDdjdG:Mm'e>Yܥõ8Id+u)h9r<a(`Mf7aweǡ߶5vR 8`9G|KA3A2aiwXQ E%JLjXJU n¸5n;7wz]gR<,|4!nu/Ae4U-h"pau%|v4h=}k)O>28` 3lGPG\TuL#GWn䓇seG/zSV4zN\`!dWw=S*JBIq[Ǧ>Džt[Nˉ+Z`6ٶ%98] ExM;ޅ '\xINx?gj)H .3܎~x9UC7<*eֽ|9aPMZ&cqojCN:eF[_$o*4-n[=RQiHy3(kƾ\5_ژfo7Mד`G\6jt0T)Mp{a6xcu1q[-B/[` j'4E7y0гZ/008  JJH6m]6gX"yȧ"AL{l@p;)-A`P +Yl${l J/j03i. 2Va:FmGw͚k4Bf=Ӯ0vM7] 6=gl'ՏҴ=TqȤ̄QIp \J.ҧ%d s2U-\SpC&>Gr^t1T,p %Nܜ=0cp9ȸvӚlHUj_=hֵiȡI/9LcW"g/fr4'5J#=īȴAR4[\ VDl YQ6MYOFt79Ww?+ci:Wm`6A#|2@VYg<ɒĵdqCyȏ*5z%"yMdґHh" +;PJ@2* ^܃A$ j|6x6%D'b9Q˛3&ݵWstЎ 6K?#|أp.:m瑣+J7kz92pX#)+='D.yG+ʻ%}m܈c  BWE -OK-XzlËOjn"<B†w.@'Q5BcnG?<֜rp2xލ >KƂ0gɦY-qV8n T!4)ka@4 -W͊  endstream endobj -1216 0 obj << +1247 0 obj << /Type /Page -/Contents 1217 0 R -/Resources 1215 0 R +/Contents 1248 0 R +/Resources 1246 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1206 0 R +/Parent 1250 0 R >> endobj -1209 0 obj << +1240 0 obj << /Type /XObject /Subtype /Image /Width 1266 /Height 659 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 1219 0 R +/SMask 1251 0 R /Length 17509 /Filter /FlateDecode >> @@ -12217,7 +12973,7 @@ R pS`ܘH;}!R-MEڃ{,l=K~[jR-Te2RT RmkoԈxszv#R-gJU2jXkt'T R˗_Z-)53Zjj||l{QO&1wZj[S-5Sԍ@u`$_ڑ<u\/M` 6h>U)k pT2lj惐}fO>8MyeZ86iLo#gE:QUtp,pT&HRT JHR-RT p Do endstream endobj -1219 0 obj << +1251 0 obj << /Type /XObject /Subtype /Image /Width 1266 @@ -12231,18 +12987,18 @@ stream x '= endstream endobj -1218 0 obj << -/D [1216 0 R /XYZ 77.386 776.032 null] +1249 0 obj << +/D [1247 0 R /XYZ 77.386 776.032 null] >> endobj -1214 0 obj << -/D [1216 0 R /XYZ 77.386 762.483 null] +1245 0 obj << +/D [1247 0 R /XYZ 77.386 762.483 null] >> endobj -1215 0 obj << -/Font << /F20 534 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F16 449 0 R >> -/XObject << /Im66 1209 0 R >> +1246 0 obj << +/Font << /F20 543 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F16 457 0 R >> +/XObject << /Im68 1240 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1224 0 obj << +1256 0 obj << /Length 1680 /Filter /FlateDecode >> @@ -12251,20 +13007,20 @@ x ucxnq=ڑ{ɓj:jAKߋq2tF_BJtmY {uv!T?ouG[CCWVhi JnM] Ǣh} /q5~pDh.7VelqhAoe]XҊٲcu=&cO i99Xh&.D{bH qb`0&u.}qn+a ĈN㺓kb)e@.nxۃ@|5J ^x`YsLMRJk(SfY @kZv@$N7VmG-!; 9uxE/l;iJ Zk!ꆧi]ex[Ic~WFY ,' 1ZƐ݃(YaUGTUc>wBAs(&]r WpLoHf E-dעޅ'%w,BZVK4iV P@)`@ib_E[GpHF*<49 t$` ', A "<@Z'Zi/ Ǩ5} 7U@ja eM7->{ 6ҴE!a%!@m0xNh y탌a:s^mutSզO((.1h\YGmG{bt V6#S2ϭ7q^$I^̺~64>9=rY=ٗb5`oCñ k -Bd?W+[;nGLNg\= 3J7*뿵@BFGz ]8`^`Y]uh#O*m^ia͘9&DsGnپZ$yHAj6bAylXf3M2ř#n;k){̸_iTMt4"((5Y,`Ö[fDh$KU|O8< +Bd?W+[;nGLNg\= 3J7*뿵@BFGz ]8`^`Y]uh#O*m^ia͘9&DsGnپZ$yHAj6bAylXf3M2ř#n;k){̸_iTMt4"((5Y,`Ö[fDh$KU|O8< 9s蛲6?vh6?\1?ÐC,0._eBA|f4, $136$ɱxy#i|3db *3"" Ƈ> endobj -1220 0 obj << +1252 0 obj << /Type /XObject /Subtype /Image /Width 657 @@ -12324,48 +13080,45 @@ S fwKAiu˭wG|MsGa6܎` "l Aaj9xl̆+01--j3ەlGfC Aal{ok[8Vrf]nXMJyN"DIz^ҩ 6B Qwv1)HTPzl& Ȉ"nui~6.R3{ttt~~~nnȅA,~JC/lbU5(]ӯYECa endstream endobj -1221 0 obj << +1253 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [256.609 275.544 277.887 288.443] -/A << /S /GoTo /D (figure.xxx.69) >> +/A << /S /GoTo /D (figure.xxx.71) >> >> endobj -1225 0 obj << -/D [1223 0 R /XYZ 115.087 776.032 null] +1257 0 obj << +/D [1255 0 R /XYZ 115.087 776.032 null] >> endobj -1226 0 obj << -/D [1223 0 R /XYZ 115.087 453.302 null] +1258 0 obj << +/D [1255 0 R /XYZ 115.087 453.302 null] >> endobj -1222 0 obj << -/Font << /F20 534 0 R /F16 449 0 R /F41 593 0 R /F29 601 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im67 1220 0 R >> +1254 0 obj << +/Font << /F20 543 0 R /F16 457 0 R /F41 603 0 R /F29 611 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im69 1252 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1234 0 obj << +1266 0 obj << /Length 1329 /Filter /FlateDecode >> stream xX[s8~ϯ3YV) L\  ^ O9 %)MY0Z@'TY.|uz=.< #Dx5z}+o&(U)Co'=h28`nuL!4ˀ&g+$$֫f׀z3hɺ0HE$ZΞ[cF9S}-Iԉ_jE YXi1#TX ,<3uU~r?X:(_C}k -eDp8Dj+]C%RfxlN֭ R@E,s$U\Y{4D Øν7 y8%, #CHf}rt8'+ZeZcR=NRS>/zux p|bc٩Y33ޔޅO1߾ 6ɿ֛bb!R}@eIqvf8t>]AnM7o2};SƯQٚIs,n kxеtbF`})` -{h_@~wk{?Tܝ}ӟ};Pf_E ЄkW{||ر7% y -Qc/b1Mxm'wͣqxB OZ>u|lY߹ɭOyQύkm jZUBʪ(~y"yCy=Cm2:V&k£+cY6.D0KWYg7+$cb"[SxE b O,\A}~7zZeO42j `0>f%|ra5z/ +eDp8Dj+]C%Rfxip~)j R*=\C`%;N %TE_='YtnO k:,Sz[MT +-W&++?/U1-xw$ %X=eDkyKcc] O$MsŎ6"s()Cp(P*ρ LaCHg*L(h%&q SVӢ2LB/1kAn2soi}d۬2&M7 +zKNXaB}wJtYd<ƊuT!$>9vWOYX|} N#A wC{ ;ݢdeTִy4ayq^9!&]NC]&>1d{!'3$ƭ^1-YTb38,!ҞUb P\-ѐ]&ws,gn1E jp0+o>^/&nmeJS2P1{Mh)wE:<8>Sa嬙oJ§Hto_OXV_M1}1ƐYUcQ>D8r;3:panDyekz. T}[I7&_囷?AB̾j)KXlMGfrse9QO5<ZP:q#s0r=^4ïHc =J*ξgԡW%.4pwF_ 1cޔ$)LGy̫86 8cK7 $d[K7?iL-Yf}&>E=7Nm 5׫i]f`^V +)r[Xt`F7繋` lZQvVe/}_e~X⛪.D{`݋l57'?Oqu7;/?Opmq>i>|tKtsCʨُP1ykOWz endstream endobj -1233 0 obj << +1265 0 obj << /Type /Page -/Contents 1234 0 R -/Resources 1232 0 R +/Contents 1266 0 R +/Resources 1264 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1206 0 R -/Annots [ 1228 0 R 1229 0 R 1231 0 R ] +/Parent 1250 0 R +/Annots [ 1260 0 R 1261 0 R 1263 0 R ] >> endobj -1227 0 obj << +1259 0 obj << /Type /XObject /Subtype /Image /Width 639 @@ -12440,7 +13193,7 @@ r wg,].ؘĥ/24zVغ8z}Y-,Ԣ&}}̐9 endstream endobj -1230 0 obj << +1262 0 obj << /Type /XObject /Subtype /Image /Width 763 @@ -12474,69 +13227,72 @@ x> SL`"8"]%~hxb> +/A << /S /GoTo /D (figure.xxx.72) >> >> endobj -1229 0 obj << +1261 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [128.375 519.554 141.215 532.453] /A << /S /GoTo /D (chapter.24) >> >> endobj -1231 0 obj << +1263 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [182.449 203.992 203.727 216.891] -/A << /S /GoTo /D (figure.xxx.71) >> +/A << /S /GoTo /D (figure.xxx.73) >> >> endobj -1235 0 obj << -/D [1233 0 R /XYZ 77.386 776.032 null] +1267 0 obj << +/D [1265 0 R /XYZ 77.386 776.032 null] >> endobj -1236 0 obj << -/D [1233 0 R /XYZ 77.386 699.395 null] +1268 0 obj << +/D [1265 0 R /XYZ 77.386 699.395 null] >> endobj -1237 0 obj << -/D [1233 0 R /XYZ 77.386 294.29 null] +1269 0 obj << +/D [1265 0 R /XYZ 77.386 294.29 null] >> endobj -1232 0 obj << -/Font << /F20 534 0 R /F41 593 0 R /F16 449 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F46 648 0 R >> -/XObject << /Im68 1227 0 R /Im69 1230 0 R >> +1264 0 obj << +/Font << /F20 543 0 R /F41 603 0 R /F16 457 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F46 658 0 R >> +/XObject << /Im70 1259 0 R /Im71 1262 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1244 0 obj << -/Length 2277 +1276 0 obj << +/Length 2276 /Filter /FlateDecode >> stream xڽY[S~У\g5xlHXIA^ yeן[2d! {{ ONo&EQ΃EYYĢ< nPH&t$20R]/oә"e*+ׯhM'YNj_Wo~o&L89JcI|L>K1̳*,$zI*>7V,Ie*R-#y2K -\tQ ctUMy2)WF74hrPDd"XO_֞zS(1{\8߽u-AׂnQ,eʱR$d9@a6(pb MH#4%Y%k(n}?` Y}k|1t,2i e\|bSJ?8J}Ƈ(Ø$fJA"LBcl#Nk.6imw"ho"XRAD󜁖IۓبC=Yrɽ%B:4)-zgF| EpYV4к2vt֓.d?sz"8tϺeH1fNdYLJۖhisce]дGtr4/lօgΊQDh@_ۢ*GcD4a]Ff/b+d\ N.™^ڬ`BJx\uۧ]*ٺDG qkxB$S]t_Qw,ksnP'L СVk5gj0-7H.wtߥ_Z@,ʡܔ_Lc*xˋP+Z>K/g*zp] -*OwLd0|w#@566tESAKs(xxWlXl-cgOA"X7yYAn 7e, 'oec]jj;cIK> (D~`HEL9 -(Pjd!&ß0,Aү48,lY$A 6q@c(x[0dXWPn\?Ҧt*:MjHc7ඦehkp:s?ʭQ˔{dth.y hʦ&whA(#?8iGQx$Hclﻍ7cZc$Au8:(8[isKǎh]Fj6C]p֪{g^}vxPok{ZZbh|'Tnr;S|rXBSV"j8`_h+jPp5!娐T)x-jZXk[*#Ao}. "`` yy^`ؼwiS]M+i{=ifqdƃ  }P'H[2ͰV7b}W*+HYj;󮑦Xkv3HsHֻi#g x[ |FZFkhwnxk7VҲe{L+'t*|s4\M(G^ƨ@jLcjm8 -A2S)8GRfQ +\tQ ctUMy2)WF74hrPDd"XO_֞zS(1{\8߽u-AׂnQ,eʱR$d9@a6(pb MH#4%Y%k(n}?` Y}k|1t,2i e\|bSJ?8J}Ƈ(Ø$fJA"LBcl#Nk.6`g[/fT<A@$,8<隝⊢8ïδdB#]*ݷˆ,ܦ85ȣpf~hR_>se)Giv4? uᙳb0Zfs5aeQ' OkԙD6yN|Ծ# :'%AsTOE)8Y pi#`,,ׂSzKDfp6o8^(WiעJ.QDCcl=ɔb?W#7Ér(7r6SlJ01)Ԋ.˙^p *gc􄂣,H lM!]TP= +$&4~;[ YwSH"Ms^VMK[$X%:cĽXҒO)` ++2sQ;tb= +.6(Y'K++ N* [|BͨE9;< +ޖ+"h; Y.-1>iW!Ǐ)8]hh؍&iokZ\܏Ǣrkl 2]G"9mz^F ;Zh8J|Q5%n7hyq"/- +cVұ#"uPW;6\ű٩W.&mb<ڞĨ4 ܰN\ Д@Zi0p.MH9*>U +zV, HP[gˮmCg!m9}X@-H^إ56~aF|TWE +9gu^u}hGO#mY3}3H=EB,X\u퐼Zk%1\_ y3dٵp2ԃ d̲x3lGzMrb4xμk)iL955_ozHY_u>z]Ʊ=(Mզ,ju +I;8.pE@gM6pqn +]Mrx"Hsc ,'wʥ]*@!0 >CGݶ;nJ}^mc؃kzG푂g_1*> endobj -1239 0 obj << +1271 0 obj << /Type /XObject /Subtype /Image /Width 859 @@ -12557,7 +13313,7 @@ RI: ~W&f.C}@ަ35GS5eSn8Ldt*OVkQB#9T0ɧ9s\Z˔Ä]iG^*U<KV-5=BAzxgfIbʎm&1w}3 f""tBH>GX`Rb7߯OC`CqRϛڑےQNRlBb;jG֊!ٻ4/<154 Bޗ2Q!D*!ɓ#av\_q5I(ˑkGHIղ=]::ԒˊPyh!5XL*\H貅Jt}}''rt"tJe"_lٔ2JIp2jB%MIM IXH%{Kt:t m& OYjS+@!-"d9BIZpq,gnP}XJ4ZEQLShKHZ5R&Xʡ#4!TZdM]ڼZj670TaIs <[gm"Q1Ք'|ʧc6c&4ZwV!eP9i,I|Paӹ-y(®)B'Pp?1=dSwd{)6D[Vv-!@VŠ)V-L.H?&qtkСt)‰9: z@}?iϦ3n+hC5 U,iKFha]&aauӥ'{ȃr"(11a.O@mmBvSeEHv,|f[Ed8yY麍Mc)* bIc bځȏaY?X}p{#99."TnSnΣG0 $z6ې6I"XA>&G\UwJ~ JAMh mippF endstream endobj -1241 0 obj << +1273 0 obj << /Type /XObject /Subtype /Image /Width 719 @@ -12581,69 +13337,66 @@ lå s endstream endobj -1238 0 obj << +1270 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [350.658 655.081 371.936 667.98] -/A << /S /GoTo /D (figure.xxx.72) >> +/A << /S /GoTo /D (figure.xxx.74) >> >> endobj -1240 0 obj << +1272 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [396.756 220.063 418.034 232.962] -/A << /S /GoTo /D (figure.xxx.73) >> +/A << /S /GoTo /D (figure.xxx.75) >> >> endobj -1245 0 obj << -/D [1243 0 R /XYZ 115.087 776.032 null] +1277 0 obj << +/D [1275 0 R /XYZ 115.087 776.032 null] >> endobj -402 0 obj << -/D [1243 0 R /XYZ 115.087 708.153 null] +410 0 obj << +/D [1275 0 R /XYZ 115.087 708.153 null] >> endobj -1246 0 obj << -/D [1243 0 R /XYZ 115.087 638.171 null] +1278 0 obj << +/D [1275 0 R /XYZ 115.087 638.171 null] >> endobj -1247 0 obj << -/D [1243 0 R /XYZ 115.087 334.884 null] +1279 0 obj << +/D [1275 0 R /XYZ 115.087 334.884 null] >> endobj -1248 0 obj << -/D [1243 0 R /XYZ 115.087 303.192 null] +1280 0 obj << +/D [1275 0 R /XYZ 115.087 303.192 null] >> endobj -1249 0 obj << -/D [1243 0 R /XYZ 115.087 271.5 null] +1281 0 obj << +/D [1275 0 R /XYZ 115.087 271.5 null] >> endobj -1250 0 obj << -/D [1243 0 R /XYZ 115.087 203.152 null] +1282 0 obj << +/D [1275 0 R /XYZ 115.087 203.152 null] >> endobj -1242 0 obj << -/Font << /F20 534 0 R /F41 593 0 R /F16 449 0 R /F42 594 0 R /F29 601 0 R /F44 598 0 R /F43 599 0 R /F46 648 0 R >> -/XObject << /Im70 1239 0 R /Im71 1241 0 R >> +1274 0 obj << +/Font << /F20 543 0 R /F41 603 0 R /F16 457 0 R /F42 604 0 R /F29 611 0 R /F44 608 0 R /F43 609 0 R /F46 658 0 R >> +/XObject << /Im72 1271 0 R /Im73 1273 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1255 0 obj << +1287 0 obj << /Length 1306 /Filter /FlateDecode >> stream xWKs6WHX$@榌Mk5=9,sLB bIFNiOH.٫Ź,繈6w1Le:2g<7f}.]l֗R2ZՍRzrϊ\+\sUl} 1)˔>ճyޛ3gcKq*2㽇Dz*fQIf\2 v _ }|i0Һ4Y|o"IxM7mh$ޖ$ʚR zl%$n]4m|7tKϐ Mh9G/*߹uL(f;7\I'Vkgݻ-6A7ۺte"om/e2ZNbEȘLwEUؐ0it)PptOYa;Ld H+;ZS@a{ ӧW0X*_LO0$+J@N!@pβ4)}ܢ-=G9r8pS--]o/vs׳CB# [Wm-Y1'V$ڎ5&bꅅ2mќ=uv$"vg[q/'4B`eL+3GJSWfxV"0 -iQ:҉d?8d9\I9@{qQrP4-T&Qr-u֌i($L!乲K*% W>ۂk7κև^SU4tg%:GзG'kG"}*<K"דTn􃂪*rԜ9C0eOZ '+GB -SӢN?v$J6F0*&5^XCHy亂!z>dM,~[Ly zf\'* P-tS@^jP."u6 +[owøS򸤠l -apQ$:؃@&dF U3e]ӓS*.Bמ -.'&-Jq~uEm -JQl>,$l.(߻.5LSJsj&0߹I BC]Taӏ nq)Cupſ{BS<#I< ̠6275a˜lxNVd (E Ʒ0I&m6-`gULk?- I718OC;|Y@`3҃͸xyOUZfG<ՠ=]>E벧m W0$qqIA.髫5%ItpwM˱ L`.߫gj˺ƫ'U\~=|]NLZRxON0}YH\P,w] +5j,m.)1M2aBɿsû yLY=S$*37ԅ>yGx-Amx*Wo?T endstream endobj -1254 0 obj << +1286 0 obj << /Type /Page -/Contents 1255 0 R -/Resources 1253 0 R +/Contents 1287 0 R +/Resources 1285 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1258 0 R -/Annots [ 1251 0 R ] +/Parent 1250 0 R +/Annots [ 1283 0 R ] >> endobj -1252 0 obj << +1284 0 obj << /Type /XObject /Subtype /Image /Width 750 @@ -12672,72 +13425,79 @@ x7Z8 $ LXLX\-V{N)S° ge݆yI0l0lrX|ŌKQ7Qw2tx,ϘK~ h-pqXmdl` C9K endstream endobj -1251 0 obj << +1283 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [321.474 677.438 348.176 690.337] -/A << /S /GoTo /D (figure.xxx.74) >> +/A << /S /GoTo /D (figure.xxx.76) >> >> endobj -1256 0 obj << -/D [1254 0 R /XYZ 77.386 776.032 null] +1288 0 obj << +/D [1286 0 R /XYZ 77.386 776.032 null] >> endobj -1257 0 obj << -/D [1254 0 R /XYZ 77.386 660.311 null] +1289 0 obj << +/D [1286 0 R /XYZ 77.386 660.311 null] >> endobj -1253 0 obj << -/Font << /F20 534 0 R /F41 593 0 R /F16 449 0 R /F29 601 0 R /F44 598 0 R /F43 599 0 R /F46 648 0 R >> -/XObject << /Im72 1252 0 R >> +1285 0 obj << +/Font << /F20 543 0 R /F41 603 0 R /F16 457 0 R /F29 611 0 R /F44 608 0 R /F43 609 0 R /F46 658 0 R >> +/XObject << /Im74 1284 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1261 0 obj << -/Length 203 +1292 0 obj << +/Length 200 /Filter /FlateDecode >> stream -xmn1{?ŖvqY/D1rAX4@4H׏}"̼4 '$I"-#vE0RGH;=&/eTU;FԵUdvбz 0BKmdHM8S*0@ +xm=1-n.08Ѡbh(TP`IF t +P{B +5#lh +Dc)8Yh +7zhuQlLz\y=/'tDZ54U1⌘ѾDu^Wq +<ܟW(ɢ'j蝓~+H#qx 41!@ endstream endobj -1260 0 obj << +1291 0 obj << /Type /Page -/Contents 1261 0 R -/Resources 1259 0 R +/Contents 1292 0 R +/Resources 1290 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1258 0 R +/Parent 1250 0 R >> endobj -1262 0 obj << -/D [1260 0 R /XYZ 115.087 776.032 null] +1293 0 obj << +/D [1291 0 R /XYZ 115.087 776.032 null] >> endobj -1259 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +1290 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1267 0 obj << -/Length 1160 +1298 0 obj << +/Length 1158 /Filter /FlateDecode >> stream -xڽWKo6WH×H17--M{izPV"ĖS=6E~9cl|5o4K%߮yu2j-vCe]HIn7"Mɻ?o?:Zf%Ti6\fRKrf÷.Iqv/njklHsN0oŤ썻/'|?C`c5-$l/0u?!ւ췽Weε˼$㪠JXH+>7%dcH+*D:=Fy]?|H'|w` O0Nc!+Fe8Z-NҋvF&O[eURV j9D(Kf[A+ɟK t/0#녦V9_z'qE:Y2(VP L`}3TFꚯPH "]5e 細妫b@BӢPLc>xzA+RԃCR 0R皶.cn'>nKhiqSnܸ/d*UQ\BWm]=V(jF{N*X2ΗHDH7lC@xfɀo n<^Bfg "|~!׾}Jn|z! -CpägRz;4@$w,go2Q1kژulk"{9ySAwO-B8@[baL«@1 |! [9%Q63vJ=lbG/iVP9W~m+srD4jW"K@T +xڽWKo6W(7dS6AYъ[N;P%{E_Ap4o4|↋S5W&1B'DVo)$Uw]g~0qqt(2=Mrɉ/mƋtp] -,&u;|{0iloF1&{>LXQL޸*}>46_BVc[b-*<}rsmr:ə,(i禄l@I0I|Ukd5O>1,gi=3:=ݮ,h IinNJnG˰(7%$ngTr_Q>yʏ\.IXb5סvCPN@Po$ @r 8^hb;yW%rf9ι\ +7CK+SWH]R DSF 1E +k\n*!4- +^}:V1{gLkzpHjΡ@j{i2vf|㶄7ƍkX@@uCѲJ=K読T +A=bO )A ZfX+[xrzܗ#jWG37~*p#i(v(3oK?ek>^wEu7>=@!W 8a3)Z ;T8*f{M tUrQh,c,ȯΞG8?<)}z"dd%!H$xz\ؙSeh=i'(:L!vfU > endobj -1263 0 obj << +1294 0 obj << /Type /XObject /Subtype /Image /Width 1023 /Height 539 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 1270 0 R +/SMask 1302 0 R /Length 26377 /Filter /FlateDecode >> @@ -12856,7 +13616,7 @@ m / endstream endobj -1270 0 obj << +1302 0 obj << /Type /XObject /Subtype /Image /Width 1023 @@ -12870,61 +13630,57 @@ stream x! v~o endstream endobj -1264 0 obj << +1295 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [417.154 347.182 438.432 358.808] -/A << /S /GoTo /D (figure.xxx.75) >> +/A << /S /GoTo /D (figure.xxx.77) >> >> endobj -1268 0 obj << -/D [1266 0 R /XYZ 77.386 776.032 null] +1299 0 obj << +/D [1297 0 R /XYZ 77.386 776.032 null] >> endobj -406 0 obj << -/D [1266 0 R /XYZ 77.386 755.708 null] +414 0 obj << +/D [1297 0 R /XYZ 77.386 755.708 null] >> endobj -410 0 obj << -/D [1266 0 R /XYZ 77.386 610.019 null] +418 0 obj << +/D [1297 0 R /XYZ 77.386 610.019 null] >> endobj -1269 0 obj << -/D [1266 0 R /XYZ 77.386 567.488 null] +1300 0 obj << +/D [1297 0 R /XYZ 77.386 567.488 null] >> endobj -1265 0 obj << -/Font << /F23 489 0 R /F16 449 0 R /F46 648 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F29 601 0 R /F41 593 0 R >> -/XObject << /Im73 1263 0 R >> +1296 0 obj << +/Font << /F23 497 0 R /F16 457 0 R /F46 658 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F29 611 0 R /F41 603 0 R >> +/XObject << /Im75 1294 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1275 0 obj << -/Length 1567 +1307 0 obj << +/Length 1568 /Filter /FlateDecode >> stream -xڥWKs6WH͔@3$'3qtKSÇ.DFubǾvŃU7٫"XB$g:g< b1Gi*ówWWs!x|p<"I|Imcyur=|?[,gg{:aW>LYdncq :6~#R-*'nxXCWg"ǁY -[I1Ь&wƚ"w)S`h:-ai>܈p=#zycZS}YGJ|MOIXu=IJӒVv5?!<L%Tuc^1t+oR7 2U,XYHpכg):Y=~aYھixc;>t%:qf ٶ'i<6p!ДV'dZT=P mHTV袨jTQ׆Vӈt$aGo -rat3]MۑncT8% -<w 瘘Qw{mu'ZϦp¶$v>\dnVnpbke=hŤJc[:fr<bqVB2IT<)W]z{>Rk ja*iㄋ7Coe@Ęd\ -ϋf:g -*(^+`X&jd@I&pv7ѕºR3)8]ZXmUY1\lh%E>1 @&i˰gKV5<9CiGN2p (![+.IAHX! ޠS?SCP{^ rȸ~@Al/8D|B` 8HAWl~-]%\ic&E6?T,͕ve}$1S*L$ M$w( 8;zʉ4[ݳ-ES2^9 ) -QhHbͺS4]OnLӄ)'L'v">,)#k)`J_JջV'u*e4ƫ gyT,۪. qZ1i Y]Q̼)0#s{)S(-cn4ٹI+;#,m {sTD?K]/IšdGsXR|K3J\rړQT\#nNK6C-)4H{,.ecp>Gm Wnx4g*l1\3'p*0M1@a_]p=#vycZS}YGJ|MOIXu=IJӒVv1\dnVnmCG2mOZ4bRmXXB9qh8ڍiM4z,Gb7,N3We$!-qQQ)!Bi+ӑGnQ-mʴÝq7lQ IIT5+kSwtSGbgYHb6ڕPP6RĜ&žWV>^ [4O'\~k"ƴ(%Rx^4^tPW@+&X4w˔\c|P#JrI [.6(IjKbUeCC(0(!2YOK^wUS.Q`<<2ȉPeASb꒘!?*u;S=GP0޻عX{*=2EPAR"؉W`Gk}?X/R*}[I(?^b.شr~I1":Cq_2>X)iTѦc;rUvvDZ؝O.+pm`rR +P%5 Q'F'ܬ[x`}ya&MiB;q˔n +RWR/}nt s7y[с1U> endobj -1271 0 obj << +1303 0 obj << /Type /XObject /Subtype /Image /Width 1280 /Height 846 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 1279 0 R +/SMask 1311 0 R /Length 26894 /Filter /FlateDecode >> @@ -12983,7 +13739,7 @@ Mr =zȿN4b+ȿ6w&J-*%uBu-HȿkW%uBu-Hȿ6"LPvG!_ 5#ڈl2ŗ_ 5#ڈ Xʮ\ȿ򯒂f_EB_Kٕ ׾WPRvB*)hA}C4Fkʮ\ȿ ׾U|eW._G@ GEP V]X+.A endstream endobj -1279 0 obj << +1311 0 obj << /Type /XObject /Subtype /Image /Width 1280 @@ -12997,51 +13753,56 @@ stream x! f.p endstream endobj -1272 0 obj << +1304 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [478.975 152.681 500.253 164.308] -/A << /S /GoTo /D (figure.xxx.76) >> +/A << /S /GoTo /D (figure.xxx.78) >> >> endobj -1276 0 obj << -/D [1274 0 R /XYZ 115.087 776.032 null] +1308 0 obj << +/D [1306 0 R /XYZ 115.087 776.032 null] >> endobj -414 0 obj << -/D [1274 0 R /XYZ 115.087 618.588 null] +422 0 obj << +/D [1306 0 R /XYZ 115.087 618.588 null] >> endobj -418 0 obj << -/D [1274 0 R /XYZ 115.087 452.815 null] +426 0 obj << +/D [1306 0 R /XYZ 115.087 452.815 null] >> endobj -1277 0 obj << -/D [1274 0 R /XYZ 115.087 413.186 null] +1309 0 obj << +/D [1306 0 R /XYZ 115.087 413.186 null] >> endobj -1278 0 obj << -/D [1274 0 R /XYZ 115.087 140.128 null] +1310 0 obj << +/D [1306 0 R /XYZ 115.087 140.128 null] >> endobj -1273 0 obj << -/Font << /F20 534 0 R /F41 593 0 R /F16 449 0 R /F29 601 0 R /F42 594 0 R /F46 648 0 R /F44 598 0 R /F43 599 0 R >> -/XObject << /Im74 1271 0 R >> +1305 0 obj << +/Font << /F20 543 0 R /F41 603 0 R /F16 457 0 R /F29 611 0 R /F42 604 0 R /F46 658 0 R /F44 608 0 R /F43 609 0 R >> +/XObject << /Im76 1303 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1285 0 obj << -/Length 1454 +1317 0 obj << +/Length 1455 /Filter /FlateDecode >> stream -xڵWYsH~WQqֱyZ舫#B\[8+'pގ&e82YIgtD4v4A8^?\ͧ7TZx~+wn<4H343+?B]|5Nmw3w\=besF{/k& _]LŇya0%GdaX9Ƭo| |TQEմ=W]t˕) XO@2;.2{lexM]@*ei*1pD=<"GAޠNV#0D..~`%v$}i<7.ܕ2nsԽ2(J5*$uD|c_1P KڣUBL0,^/6}$MpڛBGoGjL#^rf=bM܋_2 ?B:Ki?# kDBgdRm|@ T CۓVوWF$ĦbU029m8hâ7RXnVX^wGx$S4bhv Kis& Tw|~Xվ.k$Ah)}َ>}yPy=Q,HzF"gF40'?4GJ#=5=4GRWDz5OAn +ڦY2SK ?C¯mN4vW*:7[lu$/<S EWn?âmٺua?meyuc| BT IEմMU+z+)!`>Lʒ֏_ƇX%yzyll%BeDa#OaE 4HkN"M_Vo|@b K6sҴzn^ cNٺW+EFnO K9 +DI{Ԟ*Y ;ŏuI[79Qo)[呷3[ߊWٮnϱXQ@^+XưG9^}7mgd!هTh~Cx"=U>3v +l+G`qXU;4' mX[6^[I+dwfšS\DTPbt> X"mz.Wd|vE(/U]& E!eu+~W]k4 K*OXPvA&NkTjGehw[S{3 +䑏;5=2١tpDP果Yu 𞒳y* Qo{`qhM*[? ԏE[@0N5-N]Nl +D5Y&2@Ǔ [? p-o g"^>uqJ}_/G*>$qؓZ(Ɣ^gUPa[U;?d,c^TK h(UF$k1(,ӳ1G^T +<@ JGB&83aF]<ȱLZ+fJm#pEMa;vpM`q skn@S6nsRqN}/\397]& 7oq endstream endobj -1284 0 obj << +1316 0 obj << /Type /Page -/Contents 1285 0 R -/Resources 1283 0 R +/Contents 1317 0 R +/Resources 1315 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1258 0 R -/Annots [ 1281 0 R ] +/Parent 1301 0 R +/Annots [ 1313 0 R ] >> endobj -1280 0 obj << +1312 0 obj << /Type /XObject /Subtype /Image /Width 1262 @@ -13074,31 +13835,31 @@ Su e@ e@@) ) R) R,R,HY,HYL(h endstream endobj -1281 0 obj << +1313 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [225.095 142.972 246.373 154.598] -/A << /S /GoTo /D (figure.xxx.77) >> +/A << /S /GoTo /D (figure.xxx.79) >> >> endobj -1286 0 obj << -/D [1284 0 R /XYZ 77.386 776.032 null] +1318 0 obj << +/D [1316 0 R /XYZ 77.386 776.032 null] >> endobj -1287 0 obj << -/D [1284 0 R /XYZ 77.386 686.713 null] +1319 0 obj << +/D [1316 0 R /XYZ 77.386 686.713 null] >> endobj -422 0 obj << -/D [1284 0 R /XYZ 77.386 456.004 null] +430 0 obj << +/D [1316 0 R /XYZ 77.386 456.004 null] >> endobj -1288 0 obj << -/D [1284 0 R /XYZ 77.386 410.125 null] +1320 0 obj << +/D [1316 0 R /XYZ 77.386 410.125 null] >> endobj -1283 0 obj << -/Font << /F20 534 0 R /F29 601 0 R /F16 449 0 R /F42 594 0 R /F44 598 0 R /F43 599 0 R /F46 648 0 R >> -/XObject << /Im75 1280 0 R >> +1315 0 obj << +/Font << /F20 543 0 R /F29 611 0 R /F16 457 0 R /F42 604 0 R /F44 608 0 R /F43 609 0 R /F46 658 0 R >> +/XObject << /Im77 1312 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -1291 0 obj << +1323 0 obj << /Length 863 /Filter /FlateDecode >> @@ -13106,769 +13867,790 @@ stream x}UKs8WhW1B2Ld]GG*n=e׏em*x6L ^R2Y^.ʜU cS, 7Q\^_GR{rIX}|VR _\Wh$M&Z U_ !jTwh[l[%*.P) *N˰1;3VPS'>,B)>y}04%Q >rC,j?eeZ$YCJ%+x&2I#7zuwDkk~u$i3AVP~gӿxJ:>C2pYŸyQ_>%ʃWp~’ !pQ? wp 8륋ٙs  0Qc[g=f QNșdhqI  -2[x뮶8ylM7+'謦ґ^woR572m71=ų{R:h*]0Ά^ajЌ(ykH̝ {`30K%[4]%L,y3T X?Q +2[x뮶8ylM7+'謦ґ^woR572m71=ų{R:h*]0Ά^ajЌ(ykH̝ {`30K%[4]%L,y3,:4~ endstream endobj -1290 0 obj << +1322 0 obj << /Type /Page -/Contents 1291 0 R -/Resources 1289 0 R +/Contents 1323 0 R +/Resources 1321 0 R /MediaBox [0 0 595.276 841.89] -/Parent 1258 0 R -/Annots [ 1282 0 R ] +/Parent 1301 0 R +/Annots [ 1314 0 R ] >> endobj -1282 0 obj << +1314 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [257.859 671.94 265.275 683.566] /A << /S /GoTo /D (chapter.5) >> >> endobj -1292 0 obj << -/D [1290 0 R /XYZ 115.087 776.032 null] +1324 0 obj << +/D [1322 0 R /XYZ 115.087 776.032 null] >> endobj -426 0 obj << -/D [1290 0 R /XYZ 115.087 755.708 null] +434 0 obj << +/D [1322 0 R /XYZ 115.087 755.708 null] >> endobj -1289 0 obj << -/Font << /F20 534 0 R /F42 594 0 R /F16 449 0 R /F46 648 0 R >> +1321 0 obj << +/Font << /F20 543 0 R /F42 604 0 R /F16 457 0 R /F46 658 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1295 0 obj << +1327 0 obj << /Length 114 /Filter /FlateDecode >> stream xe!@ aⓛX׻VBH&p  -Pz ]n"S(LEWFjV ݚALy??LΞNv!o咫|$y +Pz ]n"S(LEWFjV ݚALy??LΞNv!o咫|$y endstream endobj -1294 0 obj << -/Type /Page -/Contents 1295 0 R -/Resources 1293 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 1297 0 R ->> endobj -1296 0 obj << -/D [1294 0 R /XYZ 77.386 776.032 null] ->> endobj -430 0 obj << -/D [1294 0 R /XYZ 77.386 755.708 null] ->> endobj -1293 0 obj << -/Font << /F23 489 0 R /F16 449 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -1300 0 obj << -/Length 165 -/Filter /FlateDecode ->> -stream -xUν@bJ(Xw9DbH gE$Ha{AMdv&FQm%CABGWpC1fu}ZYMyaΆ]{<C>Nz(Ii -";8gkˢƉ1uA%ycP'D޼`Wŷ4/. -endstream -endobj -1299 0 obj << -/Type /Page -/Contents 1300 0 R -/Resources 1298 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 1297 0 R ->> endobj -1301 0 obj << -/D [1299 0 R /XYZ 115.087 776.032 null] ->> endobj -1298 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -1308 0 obj << -/Length 350 -/Filter /FlateDecode ->> -stream -xOO0;ھ?D xŋ0"u, k+CsР:1z7w 05(͐1TXY)zY r˕,ʢJ^u(v4hs89ޖ皂HMwyM9M #Pń:reey`9 %ԅPk)ƇltR_MZEg74U6aWUwwiA.2 ,`IÂ#XωM}#opҲvG 3(nbv=^m_" -endstream -endobj -1307 0 obj << -/Type /Page -/Contents 1308 0 R -/Resources 1306 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 1297 0 R -/Annots [ 1302 0 R 1303 0 R 1304 0 R 1305 0 R ] ->> endobj -1302 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 636.103 202.601 645.609] -/A << /S /GoTo /D (table.xxx.20) >> ->> endobj -1303 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 610.471 272.884 622.097] -/A << /S /GoTo /D (table.xxx.23) >> ->> endobj -1304 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 586.959 262.122 598.585] -/A << /S /GoTo /D (table.xxx.62) >> ->> endobj -1305 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 573.41 206.221 585.036] -/A << /S /GoTo /D (table.xxx.63) >> ->> endobj -1309 0 obj << -/D [1307 0 R /XYZ 77.386 776.032 null] ->> endobj -1310 0 obj << -/D [1307 0 R /XYZ 77.386 660.611 null] ->> endobj -1306 0 obj << -/Font << /F23 489 0 R /F16 449 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -1313 0 obj << -/Length 183 -/Filter /FlateDecode ->> -stream -xm -@E)ήqg[AtvG@PAwS  sD5^C{xp$LC9wIB*6ґMcw>jߥs["cw=E<'wkiߨM:eN =hC-1״V+r<YfiFhyybƂA) -endstream -endobj -1312 0 obj << -/Type /Page -/Contents 1313 0 R -/Resources 1311 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 1297 0 R ->> endobj -1314 0 obj << -/D [1312 0 R /XYZ 115.087 776.032 null] ->> endobj -1311 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -1348 0 obj << -/Length 1093 -/Filter /FlateDecode ->> -stream -xrH~ -e\q\'DgHB..ƾ@x}Czo+'cq1m1cT6?UR2K,Ͷɍ!CLr:UjL|wzx=#&CUإ9w@; -u1|E!ybF׽5 HQ8SďQ'j7H}gĂ|K5ds,͇!t&G;oV(,cJLW9( B v-WV0I^J (YsŻ4~Mc)RqdG_Լ5״1jw|*?#4R#{F! UWtn~\͏votwhB7ٖrŌG.5:>v,+[׸ƌsLРv3̲ڮ ˣ7t6cžs;%wUݺċNxw5U Q˶:Oْ̗*3s'8|-XWgXa~9eŧ)bhx.6<ކ[Mx@Iv?͕4a -i]vnYrlw;N3sTLի9<ЋS!`hWQpZ[FI{5 Ҹ/T! $=Q^vN@sĖen$tw׈SU(ٚ'ty{26(Mo$L;{:2> "W?sAkAЯvFy1QZKW|d0N$kHU<=B{4|Xc zeۺmI83 emEB#m?ΚP -endstream -endobj -1347 0 obj << -/Type /Page -/Contents 1348 0 R -/Resources 1346 0 R -/MediaBox [0 0 595.276 841.89] -/Parent 1297 0 R -/Annots [ 1315 0 R 1316 0 R 1317 0 R 1318 0 R 1319 0 R 1320 0 R 1321 0 R 1322 0 R 1323 0 R 1324 0 R 1325 0 R 1326 0 R 1327 0 R 1328 0 R 1329 0 R 1330 0 R 1331 0 R 1332 0 R 1333 0 R 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R ] ->> endobj -1315 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 632.275 227.472 641.78] -/A << /S /GoTo /D (figure.xxx.3) >> ->> endobj -1316 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 616.419 224.758 628.045] -/A << /S /GoTo /D (figure.xxx.4) >> ->> endobj -1317 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 602.684 214.514 614.31] -/A << /S /GoTo /D (figure.xxx.5) >> ->> endobj -1318 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 578.986 171.794 590.613] -/A << /S /GoTo /D (figure.xxx.6) >> ->> endobj -1319 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 565.251 220.667 576.878] -/A << /S /GoTo /D (figure.xxx.7) >> ->> endobj -1320 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 553.637 201.984 563.143] -/A << /S /GoTo /D (figure.xxx.8) >> ->> endobj -1321 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 539.902 242.51 549.408] -/A << /S /GoTo /D (figure.xxx.9) >> ->> endobj -1322 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 526.167 232.116 535.673] -/A << /S /GoTo /D (figure.xxx.10) >> ->> endobj -1323 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 512.432 232.116 521.938] -/A << /S /GoTo /D (figure.xxx.11) >> ->> endobj -1324 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 495.97 214.663 508.869] -/A << /S /GoTo /D (figure.xxx.12) >> ->> endobj -1325 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 474.999 229.946 484.505] -/A << /S /GoTo /D (figure.xxx.13) >> ->> endobj 1326 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 451.302 248.625 460.807] -/A << /S /GoTo /D (figure.xxx.14) >> ->> endobj -1327 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 425.483 202.462 437.11] -/A << /S /GoTo /D (figure.xxx.15) >> +/Type /Page +/Contents 1327 0 R +/Resources 1325 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1301 0 R >> endobj 1328 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 411.142 214.663 424.041] -/A << /S /GoTo /D (figure.xxx.16) >> +/D [1326 0 R /XYZ 77.386 776.032 null] >> endobj -1329 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 390.171 240.577 399.677] -/A << /S /GoTo /D (figure.xxx.17) >> +438 0 obj << +/D [1326 0 R /XYZ 77.386 755.708 null] >> endobj -1330 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 374.315 201.077 385.942] -/A << /S /GoTo /D (figure.xxx.18) >> +1325 0 obj << +/Font << /F23 497 0 R /F16 457 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 1331 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 360.58 417.187 372.207] -/A << /S /GoTo /D (figure.xxx.19) >> +/Length 166 +/Filter /FlateDecode +>> +stream +xUν +@bʤ:Mrwe$gR1[#n fbS,8_y +CgqyZfEh֭vsCܛu4cd;8WWe2@)܃9NXΜ ?.lYrf|k/ +endstream +endobj +1330 0 obj << +/Type /Page +/Contents 1331 0 R +/Resources 1329 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1301 0 R >> endobj 1332 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 346.845 247.508 358.472] -/A << /S /GoTo /D (figure.xxx.21) >> +/D [1330 0 R /XYZ 115.087 776.032 null] +>> endobj +1329 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1339 0 obj << +/Length 349 +/Filter /FlateDecode +>> +stream +xO0;Eݡ{d a@Eܡ0w%@Dץ/ߵ>Aujn@QBCH[A(1gp>IدV\,%~A9hASnhBdx(5&˽x4&94+ƎN}9 ~B oNpc Ťy0xC/ú!/b].F3܅Po8>dj,s?Ţv\R,+K?Xьfف9rJ\-ek)DXB۬ r%": +endstream +endobj +1338 0 obj << +/Type /Page +/Contents 1339 0 R +/Resources 1337 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1342 0 R +/Annots [ 1333 0 R 1334 0 R 1335 0 R 1336 0 R ] >> endobj 1333 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 325.268 225.811 334.774] -/A << /S /GoTo /D (figure.xxx.22) >> +/Rect [92.66 636.103 202.601 645.609] +/A << /S /GoTo /D (table.xxx.22) >> >> endobj 1334 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 299.45 329.444 311.077] -/A << /S /GoTo /D (figure.xxx.24) >> +/Rect [92.66 610.471 272.884 622.097] +/A << /S /GoTo /D (table.xxx.25) >> >> endobj 1335 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 285.715 216.837 297.342] -/A << /S /GoTo /D (figure.xxx.25) >> +/Rect [92.66 586.959 262.122 598.585] +/A << /S /GoTo /D (table.xxx.64) >> >> endobj 1336 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 262.017 341.559 273.644] -/A << /S /GoTo /D (figure.xxx.26) >> ->> endobj -1337 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 248.282 202.671 259.909] -/A << /S /GoTo /D (figure.xxx.27) >> ->> endobj -1338 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 234.547 206.213 246.174] -/A << /S /GoTo /D (figure.xxx.28) >> ->> endobj -1339 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 222.933 206.291 232.439] -/A << /S /GoTo /D (figure.xxx.29) >> +/Rect [92.66 573.41 206.221 585.036] +/A << /S /GoTo /D (table.xxx.65) >> >> endobj 1340 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 199.235 194.778 208.741] -/A << /S /GoTo /D (figure.xxx.30) >> +/D [1338 0 R /XYZ 77.386 776.032 null] >> endobj 1341 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 175.538 225.51 185.044] -/A << /S /GoTo /D (figure.xxx.31) >> +/D [1338 0 R /XYZ 77.386 660.611 null] >> endobj -1342 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 149.719 235.305 161.346] -/A << /S /GoTo /D (figure.xxx.32) >> ->> endobj -1343 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 126.022 233.109 137.648] -/A << /S /GoTo /D (figure.xxx.33) >> ->> endobj -1344 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [92.66 102.324 240.885 113.951] -/A << /S /GoTo /D (figure.xxx.34) >> ->> endobj -1349 0 obj << -/D [1347 0 R /XYZ 77.386 776.032 null] ->> endobj -1350 0 obj << -/D [1347 0 R /XYZ 77.386 652.993 null] ->> endobj -1346 0 obj << -/Font << /F23 489 0 R /F16 449 0 R >> +1337 0 obj << +/Font << /F23 497 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1393 0 obj << -/Length 1343 +1345 0 obj << +/Length 183 /Filter /FlateDecode >> stream -xKsF,a!.ۙ)VRmb@T~}i2`[Myf@x|un=<;\~:A @BoqAHC b]qܤUguy0qA@?>->̎fP_\_Zcjv xKX -Ky#`xfz{:EL=y& CLu 9 QA(}* #_ũ&dk}~a0MxWs&F Rvw~{ۅ'(n!à 2⎌FF~TddesEE|YnC+=回mqwbh1wב"S=1NกÃIgphqwpܫzfLFy2B :Q#S+!K(*Tz7k~y7@?}a/G!tm;CD8ªLb}Ĝ^i ,2jl]I1z}cу=l;u|[9w-)(+T|ai\U\*NLo|=0>厸*5թfOv0H T;4|:``sinnl_֞,VW'&BU}7±P$]T,/L/$A[gscBnNh<0iq4-i͘ʀVPekdM&!dIΝ_j7ۙ$'L9 N,O׷qjQFB#K$[5pt#w 6Co5ɚ9RˋHΊӡ*4Xlc11E3w=#4pWuVwV*YXgi -orW v#ZkhӼznMI,NTB̔{G`Q2w4&kyiƧ3 _t>q翪Q]/K7 Գ?bN.<Ǿ&Qq5o6;f[͠~a=8N$SNWLsΓ-nF C5s ӱЂCć] NB7*H}lDuHHZ 4rˈ3bCj?EubR*B=R_vG}MsC׹V_{(;:9ݩ˪Б6QR I2M@bvccӡ67uiRjtmI\lBE%{Xtae^QHYdg_FHU > endobj -1345 0 obj << +1346 0 obj << +/D [1344 0 R /XYZ 115.087 776.032 null] +>> endobj +1343 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1381 0 obj << +/Length 1129 +/Filter /FlateDecode +>> +stream +xrJ~ +aW3n|j. bp9@,ڱlP?NtWovCԙ}0g;}XLNd߄Y2sNΧsu]P_2qu}o p_ETz3ADž7C5r]|Q: Gl;K@@3 F`LӉ(ӥiq>`O&7 EC"jBɰsA"Qg/u n똇Jy&Aqۢw[540^m.7PT-SYUL&2*tӋ D/H)|=$B52$d)jaAȞ萆VC.Qu@O<K/ό("ig:Xw&M!Y8Y\βeYO`SlP^g5f,J3x$AOoؚmg3Ϫ?BjV0M};"-d8|,#1zs 88JaKTxsƻ:*:",TK$UP5>|>῭Ɩ]8Wl_lz9̍ːRn9{rQ-fZs&&MIkm{`"#ŁJGٙu榫VkMrx{hvoRZ^эY5@9@}4D#n0 u<:jts"$^!Ya@Q 'evQ#Jܖ O*ӹxU ;B2߿CFȧCK5O1CZ ds;$ +endstream +endobj +1380 0 obj << +/Type /Page +/Contents 1381 0 R +/Resources 1379 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1342 0 R +/Annots [ 1347 0 R 1348 0 R 1349 0 R 1350 0 R 1351 0 R 1352 0 R 1353 0 R 1354 0 R 1355 0 R 1356 0 R 1357 0 R 1358 0 R 1359 0 R 1360 0 R 1361 0 R 1362 0 R 1363 0 R 1364 0 R 1365 0 R 1366 0 R 1367 0 R 1368 0 R 1369 0 R 1370 0 R 1371 0 R 1372 0 R 1373 0 R 1374 0 R 1375 0 R 1376 0 R 1377 0 R ] +>> endobj +1347 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 741.632 297.566 753.259] -/A << /S /GoTo /D (figure.xxx.35) >> +/Rect [92.66 633.811 227.472 643.316] +/A << /S /GoTo /D (figure.xxx.3) >> +>> endobj +1348 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 618.029 224.758 629.656] +/A << /S /GoTo /D (figure.xxx.4) >> +>> endobj +1349 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 604.369 214.514 615.996] +/A << /S /GoTo /D (figure.xxx.5) >> +>> endobj +1350 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [92.66 580.746 171.794 592.372] +/A << /S /GoTo /D (figure.xxx.6) >> >> endobj 1351 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 728.083 297.566 739.71] -/A << /S /GoTo /D (figure.xxx.36) >> +/Rect [92.66 567.085 220.667 578.712] +/A << /S /GoTo /D (figure.xxx.7) >> >> endobj 1352 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 714.534 297.566 726.161] -/A << /S /GoTo /D (figure.xxx.37) >> +/Rect [92.66 555.546 201.984 565.051] +/A << /S /GoTo /D (figure.xxx.8) >> >> endobj 1353 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 700.985 297.566 712.611] -/A << /S /GoTo /D (figure.xxx.38) >> +/Rect [92.66 541.885 242.51 551.391] +/A << /S /GoTo /D (figure.xxx.9) >> >> endobj 1354 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 687.436 289.85 699.062] -/A << /S /GoTo /D (figure.xxx.39) >> +/Rect [92.66 528.225 232.116 537.731] +/A << /S /GoTo /D (figure.xxx.10) >> >> endobj 1355 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 673.887 289.85 685.513] -/A << /S /GoTo /D (figure.xxx.40) >> +/Rect [92.66 514.564 232.116 524.07] +/A << /S /GoTo /D (figure.xxx.11) >> >> endobj 1356 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 660.337 279.91 671.964] -/A << /S /GoTo /D (figure.xxx.41) >> +/Rect [92.66 498.177 214.663 511.076] +/A << /S /GoTo /D (figure.xxx.12) >> >> endobj 1357 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 646.788 279.91 658.415] -/A << /S /GoTo /D (figure.xxx.42) >> +/Rect [92.66 477.281 229.946 486.786] +/A << /S /GoTo /D (figure.xxx.13) >> >> endobj 1358 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 633.239 279.91 644.865] -/A << /S /GoTo /D (figure.xxx.43) >> +/Rect [92.66 463.62 342.403 473.126] +/A << /S /GoTo /D (figure.xxx.14) >> >> endobj 1359 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 619.69 279.91 631.316] -/A << /S /GoTo /D (figure.xxx.44) >> +/Rect [92.66 439.997 248.625 449.503] +/A << /S /GoTo /D (figure.xxx.15) >> >> endobj 1360 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 606.141 297.421 617.767] -/A << /S /GoTo /D (figure.xxx.45) >> +/Rect [92.66 426.337 333.881 435.842] +/A << /S /GoTo /D (figure.xxx.16) >> >> endobj 1361 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 582.629 276.473 594.255] -/A << /S /GoTo /D (figure.xxx.46) >> +/Rect [92.66 400.593 202.462 412.219] +/A << /S /GoTo /D (figure.xxx.17) >> >> endobj 1362 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 569.079 282.804 580.706] -/A << /S /GoTo /D (figure.xxx.47) >> +/Rect [92.66 386.326 214.663 399.225] +/A << /S /GoTo /D (figure.xxx.18) >> >> endobj 1363 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 547.688 301.999 557.194] -/A << /S /GoTo /D (figure.xxx.48) >> +/Rect [92.66 365.43 240.577 374.936] +/A << /S /GoTo /D (figure.xxx.19) >> >> endobj 1364 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 524.177 288.671 533.682] -/A << /S /GoTo /D (figure.xxx.49) >> +/Rect [92.66 349.649 201.077 361.275] +/A << /S /GoTo /D (figure.xxx.20) >> >> endobj 1365 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 500.665 288.072 510.171] -/A << /S /GoTo /D (figure.xxx.50) >> +/Rect [92.66 335.988 417.187 347.615] +/A << /S /GoTo /D (figure.xxx.21) >> >> endobj 1366 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 477.153 321.251 486.659] -/A << /S /GoTo /D (figure.xxx.51) >> +/Rect [92.66 322.328 247.508 333.954] +/A << /S /GoTo /D (figure.xxx.23) >> >> endobj 1367 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 463.604 281.045 473.109] -/A << /S /GoTo /D (figure.xxx.52) >> +/Rect [92.66 300.825 225.811 310.331] +/A << /S /GoTo /D (figure.xxx.24) >> >> endobj 1368 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 450.054 248.062 459.56] -/A << /S /GoTo /D (figure.xxx.53) >> +/Rect [92.66 275.082 329.444 286.708] +/A << /S /GoTo /D (figure.xxx.26) >> >> endobj 1369 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 436.505 226.748 446.011] -/A << /S /GoTo /D (figure.xxx.54) >> +/Rect [92.66 261.421 216.837 273.048] +/A << /S /GoTo /D (figure.xxx.27) >> >> endobj 1370 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 420.835 274.36 432.462] -/A << /S /GoTo /D (figure.xxx.55) >> +/Rect [92.66 237.798 341.559 249.425] +/A << /S /GoTo /D (figure.xxx.28) >> >> endobj 1371 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 407.286 249.568 418.913] -/A << /S /GoTo /D (figure.xxx.56) >> +/Rect [92.66 224.138 202.671 235.764] +/A << /S /GoTo /D (figure.xxx.29) >> >> endobj 1372 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 393.737 191.346 405.363] -/A << /S /GoTo /D (figure.xxx.57) >> +/Rect [92.66 210.477 206.213 222.104] +/A << /S /GoTo /D (figure.xxx.30) >> >> endobj 1373 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 380.188 267.87 391.814] -/A << /S /GoTo /D (figure.xxx.58) >> +/Rect [92.66 198.937 206.291 208.443] +/A << /S /GoTo /D (figure.xxx.31) >> >> endobj 1374 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 366.639 290.027 378.265] -/A << /S /GoTo /D (figure.xxx.59) >> +/Rect [92.66 175.314 194.778 184.82] +/A << /S /GoTo /D (figure.xxx.32) >> >> endobj 1375 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 345.247 284.821 354.753] -/A << /S /GoTo /D (figure.xxx.60) >> +/Rect [92.66 151.691 225.51 161.197] +/A << /S /GoTo /D (figure.xxx.33) >> >> endobj 1376 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 331.698 207.313 341.204] -/A << /S /GoTo /D (figure.xxx.61) >> +/Rect [92.66 125.947 235.305 137.574] +/A << /S /GoTo /D (figure.xxx.34) >> >> endobj 1377 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 316.028 284.154 327.655] -/A << /S /GoTo /D (figure.xxx.64) >> +/Rect [92.66 102.324 233.109 113.951] +/A << /S /GoTo /D (figure.xxx.35) >> +>> endobj +1382 0 obj << +/D [1380 0 R /XYZ 77.386 776.032 null] +>> endobj +1383 0 obj << +/D [1380 0 R /XYZ 77.386 654.455 null] +>> endobj +1379 0 obj << +/Font << /F23 497 0 R /F16 457 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1427 0 obj << +/Length 1360 +/Filter /FlateDecode +>> +stream +xKsF,aXe;3;XJUYQ&FʯO7 d);MVZsx1 @ŭaAsK=&weoi{>d]1}4;]AuquXp/g,OЕC +8{g@D]uƫ }L8T!$`Dg4#ݟPw(/ ]Cz>Ƚ֞!(SGܨՓE,=8>U' Ax07Ѻyq.WC'P(Ms'SMƩWďze[rfؾ*} }_ȶ*#@푅}Yn\fC?lV-bS9{ {d: d##;E&72%2T!jpR2lQVJjP; +di T&٪z_S1F=^{yFR ƈM:13rt#=,jl] >G}#c=L !u|k!p_ +8i 2˛|L:v=qU+da<پCX + =yTyu~|}:cRd6Ȏ6:lܚڿyYju1T_&&2VYLp,z9a˒8%4 mЖuŹC:&l=:vTRHiFϕU +:7*XBF¾0,i׹W\ @02YZ$C{uhyS225I465pxS{tMx\ͲzR5"Rt +u S_3ç>d2(`̞101}wC8RNxuZ>J&K0iAZyaKC>U;¸A:ͫ ) ]Os(Y%^"zm>E [>k&3 +bX`gѲKuiFU&V$zC[ό1ÇhX&qC.ľn=SnkK8UDM:]-R>9Y3˰,P:M4:X~5P$/Uiʔžb8@z/fԻ>F3Cj׷":Iir- *blHA8Aoû^{D0{+GщA}V'T%Eod# DWTl~l?&Yé,Bǧ5lHd\:{7BE%0 ?J +ֱ;iWs +'׏ j;0mct݇)$d9p_m7U톌BP', ^D\;]z3 +endstream +endobj +1426 0 obj << +/Type /Page +/Contents 1427 0 R +/Resources 1425 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1342 0 R +/Annots [ 1378 0 R 1384 0 R 1385 0 R 1386 0 R 1387 0 R 1388 0 R 1389 0 R 1390 0 R 1391 0 R 1392 0 R 1393 0 R 1394 0 R 1395 0 R 1396 0 R 1397 0 R 1398 0 R 1399 0 R 1400 0 R 1401 0 R 1402 0 R 1403 0 R 1404 0 R 1405 0 R 1406 0 R 1407 0 R 1408 0 R 1409 0 R 1410 0 R 1411 0 R 1412 0 R 1413 0 R 1414 0 R 1415 0 R 1416 0 R 1417 0 R 1418 0 R 1419 0 R 1420 0 R 1421 0 R 1422 0 R 1423 0 R 1424 0 R ] >> endobj 1378 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 292.517 256.643 304.143] -/A << /S /GoTo /D (figure.xxx.65) >> ->> endobj -1379 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 278.967 331.585 290.594] -/A << /S /GoTo /D (figure.xxx.66) >> ->> endobj -1380 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 265.418 306.515 277.045] -/A << /S /GoTo /D (figure.xxx.67) >> ->> endobj -1381 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 253.99 259.873 263.495] -/A << /S /GoTo /D (figure.xxx.68) >> ->> endobj -1382 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 238.32 321.574 249.946] -/A << /S /GoTo /D (figure.xxx.69) >> ->> endobj -1383 0 obj << -/Type /Annot -/Subtype /Link -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 224.771 298.739 236.397] -/A << /S /GoTo /D (figure.xxx.70) >> +/Rect [130.361 741.632 278.586 753.259] +/A << /S /GoTo /D (figure.xxx.36) >> >> endobj 1384 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 211.221 285.115 222.848] -/A << /S /GoTo /D (figure.xxx.71) >> +/Rect [130.361 727.984 297.566 739.61] +/A << /S /GoTo /D (figure.xxx.37) >> >> endobj 1385 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 199.793 295.519 209.299] -/A << /S /GoTo /D (figure.xxx.72) >> +/Rect [130.361 714.335 297.566 725.961] +/A << /S /GoTo /D (figure.xxx.38) >> >> endobj 1386 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 184.123 344.845 195.749] -/A << /S /GoTo /D (figure.xxx.73) >> +/Rect [130.361 700.686 297.566 712.312] +/A << /S /GoTo /D (figure.xxx.39) >> >> endobj 1387 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 172.694 301.846 182.2] -/A << /S /GoTo /D (figure.xxx.74) >> +/Rect [130.361 687.037 297.566 698.663] +/A << /S /GoTo /D (figure.xxx.40) >> >> endobj 1388 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 147.062 270.267 158.688] -/A << /S /GoTo /D (figure.xxx.75) >> +/Rect [130.361 673.388 289.85 685.014] +/A << /S /GoTo /D (figure.xxx.41) >> >> endobj 1389 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 133.513 300.098 145.139] -/A << /S /GoTo /D (figure.xxx.76) >> +/Rect [130.361 659.739 289.85 671.365] +/A << /S /GoTo /D (figure.xxx.42) >> >> endobj 1390 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] -/Rect [130.361 119.964 265.325 131.59] -/A << /S /GoTo /D (figure.xxx.77) >> ->> endobj -1394 0 obj << -/D [1392 0 R /XYZ 115.087 776.032 null] +/Rect [130.361 646.09 279.91 657.716] +/A << /S /GoTo /D (figure.xxx.43) >> >> endobj 1391 0 obj << -/Font << /F20 534 0 R /F16 449 0 R >> +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 632.441 279.91 644.067] +/A << /S /GoTo /D (figure.xxx.44) >> +>> endobj +1392 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 618.792 279.91 630.418] +/A << /S /GoTo /D (figure.xxx.45) >> +>> endobj +1393 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 605.143 279.91 616.769] +/A << /S /GoTo /D (figure.xxx.46) >> +>> endobj +1394 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 591.494 297.421 603.12] +/A << /S /GoTo /D (figure.xxx.47) >> +>> endobj +1395 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 567.882 276.473 579.509] +/A << /S /GoTo /D (figure.xxx.48) >> +>> endobj +1396 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 554.233 282.804 565.86] +/A << /S /GoTo /D (figure.xxx.49) >> +>> endobj +1397 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 532.742 301.999 542.248] +/A << /S /GoTo /D (figure.xxx.50) >> +>> endobj +1398 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 509.131 288.671 518.637] +/A << /S /GoTo /D (figure.xxx.51) >> +>> endobj +1399 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 485.519 288.072 495.025] +/A << /S /GoTo /D (figure.xxx.52) >> +>> endobj +1400 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 461.908 321.251 471.414] +/A << /S /GoTo /D (figure.xxx.53) >> +>> endobj +1401 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 448.259 281.045 457.765] +/A << /S /GoTo /D (figure.xxx.54) >> +>> endobj +1402 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 434.61 248.062 444.116] +/A << /S /GoTo /D (figure.xxx.55) >> +>> endobj +1403 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 420.961 226.748 430.467] +/A << /S /GoTo /D (figure.xxx.56) >> +>> endobj +1404 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 405.191 274.36 416.818] +/A << /S /GoTo /D (figure.xxx.57) >> +>> endobj +1405 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 391.542 249.568 403.169] +/A << /S /GoTo /D (figure.xxx.58) >> +>> endobj +1406 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 377.893 191.346 389.52] +/A << /S /GoTo /D (figure.xxx.59) >> +>> endobj +1407 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 364.244 267.87 375.871] +/A << /S /GoTo /D (figure.xxx.60) >> +>> endobj +1408 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 350.595 290.027 362.222] +/A << /S /GoTo /D (figure.xxx.61) >> +>> endobj +1409 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 329.104 284.821 338.61] +/A << /S /GoTo /D (figure.xxx.62) >> +>> endobj +1410 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 315.456 207.313 324.961] +/A << /S /GoTo /D (figure.xxx.63) >> +>> endobj +1411 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 299.686 284.154 311.312] +/A << /S /GoTo /D (figure.xxx.66) >> +>> endobj +1412 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 276.074 256.643 287.701] +/A << /S /GoTo /D (figure.xxx.67) >> +>> endobj +1413 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 262.425 331.585 274.052] +/A << /S /GoTo /D (figure.xxx.68) >> +>> endobj +1414 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 248.776 306.515 260.403] +/A << /S /GoTo /D (figure.xxx.69) >> +>> endobj +1415 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 237.248 259.873 246.754] +/A << /S /GoTo /D (figure.xxx.70) >> +>> endobj +1416 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 221.478 321.574 233.105] +/A << /S /GoTo /D (figure.xxx.71) >> +>> endobj +1417 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 207.829 298.739 219.456] +/A << /S /GoTo /D (figure.xxx.72) >> +>> endobj +1418 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 194.181 285.115 205.807] +/A << /S /GoTo /D (figure.xxx.73) >> +>> endobj +1419 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 182.652 295.519 192.158] +/A << /S /GoTo /D (figure.xxx.74) >> +>> endobj +1420 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 166.883 344.845 178.509] +/A << /S /GoTo /D (figure.xxx.75) >> +>> endobj +1421 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 155.354 301.846 164.86] +/A << /S /GoTo /D (figure.xxx.76) >> +>> endobj +1422 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 129.622 270.267 141.249] +/A << /S /GoTo /D (figure.xxx.77) >> +>> endobj +1423 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 115.973 300.098 127.6] +/A << /S /GoTo /D (figure.xxx.78) >> +>> endobj +1424 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [130.361 102.324 265.325 113.951] +/A << /S /GoTo /D (figure.xxx.79) >> +>> endobj +1428 0 obj << +/D [1426 0 R /XYZ 115.087 776.032 null] +>> endobj +1425 0 obj << +/Font << /F20 543 0 R /F16 457 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1396 0 obj +1430 0 obj [527.3 585.6 527.3 385.3 527.3 585.6 352.5 352.5 527.3 294.2 935.2 643.8 585.6 585.6 527.3 493 478.4 381.6] endobj -1397 0 obj +1431 0 obj [781.4 590.1 767.2 795.6 795.6 1090.7 795.6 795.6 649.1 295.1 531.1 295.1 649.1 826.2 295.1 531.1] endobj -1398 0 obj +1432 0 obj [314.1 545 545 545 545 545 545 545 545 545 545 545 314.1 314.1 833.7 833.7 833.7 516.1 833.7 803.3 760.8 776 818.5 731.9 703 840.5 803.3 399.1 558.7 832.2 674.1 976.5 803.3 833.7 731.9 833.7 789.6 602.7 776 803.3 803.3 1092 803.3 803.3 660.5 314.1 545 314.1 660.5 833.7 314.1 620.2 586.5 597.9 631.6 564 541.5 648.5 620.2 304.8 428.8 642.7 518.9 755.3 620.2 643 564 643 609 462.7 597.9 620.2 620.2 845.5 620.2] endobj -1399 0 obj +1433 0 obj [558 583.4 875.1 887.7 507.1 304.4 507.1 811.2 507.1 811.2 760.5 304.4 405.7 405.7 507.1 760.5 304.4 355 304.4 507.1 507.1 507.1 507.1 507.1 507.1 507.1 507.1 507.1 507.1 507.1 304.4 304.4 760.5 760.5 760.5 507.1 760.5 737.1 698.1 709.8 748.8 672.8 647.4 767.3 737.1 382.4 520.7 762.5 622.1 889.2 737.1 760.5 672.8 760.5 723.5 557.8 709.8 737.1 737.1 990.5 737.1 737.1 608.4 304.4 507.1 304.4 608.4 760.5 304.4 507.1 456.4 456.4 507.1 456.4 304.4 456.4 507.1 304.4 304.4 456.4 253.7 811.2 557.8 507.1 507.1 456.4 418.4 405.7 329.7 532.4 456.4 659.1 456.4 481.7 405.7 507.1 304.4 507.1 608.4 203 737.1 737.1 709.8 709.8 748.8 672.8 672.8 767.3 622.1 622.1 622.1 737.1 737.1 774.2 760.5 723.5 723.5 557.8 557.8 557.8 709.8 709.8 737.1 737.1 737.1 608.4 608.4 608.4 838.5 382.4 507.1 456.4 507.1 507.1 456.4 456.4 507.1 456.4 456.4 456.4 253.7 253.7 317 557.8 557.8 557.8 507.1 418.4 418.4 405.7 405.7 405.7 329.7 329.7 532.4 532.4 481.7 405.7 405.7 405.7 557.8 304.4 507.1 764 737.1 737.1 737.1 737.1 737.1 737.1 875.5 709.8 672.8 672.8 672.8 672.8 382.4 382.4 382.4 382.4 748.8 737.1 760.5 760.5 760.5 760.5 760.5 976.9 760.5 737.1 737.1 737.1 737.1 737.1 622.1 1064.6 507.1 507.1 507.1 507.1 507.1 507.1 709.8 456.4 456.4 456.4 456.4 456.4 304.4 304.4 304.4 304.4 507.1 557.8 507.1 507.1 507.1 507.1 507.1 709.8 507.1 532.4 532.4 532.4 532.4] endobj -1400 0 obj +1434 0 obj [277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 500 500] endobj -1401 0 obj +1435 0 obj [374.9 312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 749.8 742.9 746.3 718.6 808.8 671.1 639.9 749.8 786.8 305.5 527.6 774.1 608.6 974.3 786.8 830.8 715.1 830.8 724.4 624.8 768.3 764.9 742.9 1055.3 742.9 742.9 687.3 339 562.4 339 687.3 874.8 312.4 539.2 578.6 499.9 578.6 510.9 343.7 562.4 578.6 266.1 297.4 547.3 266.1 891 578.6 562.4 578.6 578.6 383 431.1 406.1 578.6 516.1 766 516.1 516.1 488.3 562.4 312.4 562.4 687.3 187.5 742.9 742.9 718.6 718.6 808.8 671.1 671.1 749.8 608.6 608.6 702.4 786.8 786.8 840.1 830.8 724.4 724.4 624.8 624.8 624.8 768.3 768.3 764.9 764.9 742.9 687.3 687.3 687.3 805.4 305.5 578.6 521.9 539.2 539.2 499.9 499.9 728.4 510.9 510.9 562.4 266.1 416 362.2 578.6 578.6 578.6 562.4 383 383 431.1 431.1 431.1 406.1 406.1 578.6 578.6 516.1 488.3 488.3 488.3 609.8 356.4 531.1 718.6 742.9 742.9 742.9 742.9 742.9 742.9 965 718.6 671.1 671.1 671.1 671.1 305.5 305.5 305.5 305.5 808.8 786.8 830.8 830.8 830.8 830.8 830.8 1090 874.8 764.9 764.9 764.9 764.9 742.9 652.6 1249.7 539.2 539.2 539.2 539.2 539.2 539.2 812.3 499.9 510.9 510.9 510.9 510.9 266.1 266.1 266.1 328.6 562.4 578.6 562.4 562.4 562.4 562.4 562.4 874.8 562.4 578.6 578.6 578.6 578.6] endobj -1402 0 obj +1436 0 obj [555.4 833.1 833.1 499.9 277.7 499.9 833.1 499.9 833.1 777.6 277.7 388.8 388.8 499.9 777.6 277.7 333.3 277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7 527.7 444.3 499.9 277.7 499.9 611 166.6 749.8 749.8 722 722 763.7 680.4 680.4 784.5 624.8 624.8 624.8 749.8 749.8 791.5 777.6 735.9 735.9 555.4 555.4 555.4 722 722 749.8 749.8 749.8 611 611 611 860.9 361 555.4 444.3 499.9 499.9 444.3 444.3 674.8 444.3 444.3 499.9 277.7 402.7 336 555.4 555.4 555.4 499.9 391.6 391.6 394.3 394.3 394.3 388.8 388.8 555.4 555.4 527.7 444.3 444.3 444.3 583.2 277.7 472.1 638.7 749.8 749.8 749.8 749.8 749.8 749.8 902.6 722 680.4 680.4 680.4 680.4 361 361 361 361 763.7 749.8 777.6 777.6 777.6 777.6 777.6 1013.6 777.6 749.8 749.8 749.8 749.8 749.8 624.8 1110.8 499.9 499.9 499.9 499.9 499.9 499.9 722 444.3 444.3 444.3 444.3 444.3 277.7 277.7 277.7 333.3 499.9 555.4 499.9 499.9 499.9 499.9 499.9 777.6 499.9 555.4 555.4 555.4 555.4] endobj -1403 0 obj +1437 0 obj [319.4 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7] endobj -1404 0 obj +1438 0 obj [1400 1500 0 100 200 300 400 500 600 700 800 900 1000 1100 1200 1300 1400] endobj -1405 0 obj +1439 0 obj [1000 500 333.3 250 200 166.7 0 0 1000 1000 666.7 500 400 333.3 333.3 250 1000 1000 1000 750 600 500 0 250 1000 1000 1000 1000 800 666.7 666.7 0 1000 1000 1000 1000 0 833.3 0 0 1000 1000 1000 1000 1000 1000 0 750 0 1000 0 1000 0 0 1000 750 0 1000 1000 0 0 1000 1000 1000 1000 500 333.3 250 200 166.7 0 0 1000 1000 666.7 500 400 333.3 333.3 250 1000 1000 1000 750 600 500 0 250 1000 1000 1000 0 800 666.7 666.7 0 1000 1000 1000 1000 0 833.3 0 0 1000 1000 1000 1000 1000 0 0 750 0 1000] endobj -1406 0 obj +1440 0 obj [614.5 614.5 933.6 933.6 574.4 372.1 574.4 957.3 574.4 1006.3 869.8 319.1 446.7 446.7 574.4 893.5 319.1 382.9 319.1 574.4 574.4 574.4 574.4 574.4 574.4 574.4 574.4 574.4 574.4 574.4 319.1 319.1 893.5 893.5 893.5 542.5 765.8 767.2 766.5 733.9 830.3 681.6 649.7 765.8 820.1 320.4 543.1 799.1 617.8 1011.6 820.1 840.5 734.6 840.5 740 638.2 776.7 793.6 767.2 1086.3 767.2 767.2 702 348.3 574.4 348.3 702 893.5 319.1 550.7 590.8 510.6 590.8 523.9 351 574.4 590.8 271.7 303.7 558.9 271.7 909.9 590.8 574.4 590.8 590.8 391.2 440.4 414.8 590.8 527 782.3 527 527 498.7 574.4 319.1 574.4 702 191.5 767.2 767.2 733.9 733.9 830.3 681.6 681.6 765.8 617.8 617.8 713.5 820.1 820.1 862.2 840.5 740 740 638.2 638.2 638.2 776.7 776.7 793.6 793.6 767.2 702 702 702 831 320.4 590.8 537.2 550.7 550.7 510.6 510.6 748.2 523.9 523.9 574.4 271.7 429.1 369.9 590.8 590.8 590.8 574.4 391.2 391.2 440.4 440.4 440.4 414.8 414.8 590.8 590.8 527 498.7 498.7 498.7 622.8 372.1 542.5 733.9 767.2 767.2 767.2 767.2 767.2 767.2 989.9 733.9 681.6 681.6 681.6 681.6 320.4 320.4 320.4 320.4 830.3 820.1 840.5 840.5 840.5 840.5 840.5 1117.5 893.5 793.6 793.6 793.6 793.6 767.2 670.8 1276.4 550.7 550.7 550.7 550.7 550.7 550.7 829.7 510.6 523.9 523.9 523.9 523.9 271.7 271.7 271.7 335.6 574.4 590.8 574.4 574.4 574.4 574.4 574.4 893.5 574.4 590.8 590.8 590.8 590.8] endobj -1407 0 obj +1441 0 obj [571.2 1142.4 0 444.3 317.4 349.1 666.5 634.8 634.8 952.2 952.2 571.2 347.9 571.2 951.9 571.2 951.9 888.5 317.4 444.3 444.3 571.2 888.5 317.4 380.9 317.4 571.2 571.2 571.2 571.2 571.2 571.2 571.2 571.2 571.2 571.2 571.2 317.4 317.4 888.5 888.5 888.5 539.5 888.5 862.3 812 825 875.4 749.7 718 897.8 892.9 426.8 589.9 894.1 686.3 1083.2 892.9 858 780.2 858 853.2 634.7 794.5 877.6 862.3 1179.6 862.3 862.3 698.1 317.4 571.2 317.4 698.1 888.5 317.4 555.4 634.7 507.8 634.7 522.3 349.1 571.2 634.7 317.4 349.1 602.9 317.4 951.9 634.7 571.2 634.7 602.9 467.9 450.7 444.3 634.7 602.9 825 602.9 602.9 507.8 571.2 317.4 571.2 698.1 190.5 862.3 862.3 825 825 875.4 749.7 749.7 897.8 686.3 686.3 686.3 892.9 892.9 907.1 858 853.2 853.2 634.7 634.7 634.7 794.5 794.5 877.6 877.6 862.3 698.1 698.1 698.1 997.8 426.8 634.7 523.8 555.4 555.4 507.8 507.8 797.8 522.3 522.3 571.2 317.4 490.5 384 634.7 634.7 634.7 571.2 467.9 467.9 450.7 450.7 450.7 444.3 444.3 634.7 634.7 602.9 507.8 507.8 507.8 666.4 347.9 539.5 729.9 862.3 862.3 862.3 862.3 862.3 862.3 1034 825 749.7 749.7 749.7 749.7 426.8 426.8 426.8 426.8 875.4 892.9 858 858 858 858 858 1161 888.5 877.6 877.6 877.6 877.6 862.3 716.8 1269.2 555.4 555.4 555.4 555.4 555.4] endobj -1408 0 obj +1442 0 obj [580.3 552.7 552.7 829.1 829.1 497.2 276.4 497.2 828.4 497.2 828.4 773.2 276.4 386.8 386.8 497.2 773.2 276.4 331.6 276.4 497.2 497.2 497.2 497.2 497.2 497.2 497.2 497.2 497.2 497.2 497.2 276.4 276.4 773.2 773.2 773.2 469.6 773.2 745.3 704 718 759.2 676.4 648.8 780 745.3 358.9 510.8 772.9 621.2 910.9 745.3 773.2 676.4 773.2 731.6 552.4 718 745.3 745.3 1021.3 745.3 745.3 607.6 276.4 497.2 276.4 607.6 773.2 276.4 497.2 552.4 442 552.4 442 304 497.2 552.4 276.4 304 524.8 276.4 828.4 552.4 497.2 552.4 524.8 386.8 392.3 386.8 552.4 524.8 718 524.8 524.8 442 497.2 276.4 497.2 607.6 166 745.3 745.3 718 718 759.2 676.4 676.4 780 621.2 621.2 621.2 745.3 745.3 786.8 773.2 731.6 731.6 552.4 552.4 552.4 718 718 745.3 745.3 745.3 607.6 607.6 607.6 855.7 358.9 552.4 442 497.2 497.2 442 442 666.3 442 442 497.2 276.4 395.4 334.3 552.4 552.4 552.4 497.2 386.8 386.8 392.3 392.3 392.3 386.8 386.8 552.4 552.4 524.8 442 442 442 580 276.4 469.6 722 745.3 745.3 745.3 745.3 745.3 745.3 897.2 718 676.4 676.4 676.4 676.4 358.9 358.9 358.9 358.9 759.2 745.3 773.2 773.2 773.2 773.2 773.2 1007.6 773.2 745.3 745.3 745.3 745.3 745.3 621.2 1104.4 497.2 497.2 497.2 497.2 497.2 497.2 718 442 442 442 442 442 276.4 276.4 276.4 331.6 497.2 552.4 497.2 497.2 497.2 497.2 497.2 773.2 497.2 552.4 552.4 552.4 552.4] endobj -1409 0 obj +1443 0 obj [367.2 306 550.8 550.8 550.8 550.8 550.8 550.8 550.8 550.8 550.8 550.8 550.8 306 306 856.8 856.8 856.8 520.2 734.4 730.3 732.3 703.8 793.5 654.2 623.6 734.4 777.7 305.6 518.1 760.9 593 961.3 777.7 809.3 701.7 809.3 708.6 612 748.1 754 730.3 1036.3 730.3 730.3 673.2 334.2 550.8 334.2 673.2 856.8 306 527.3 565 489.6 565 502.5 336.6 550.8 565 259 289.6 534.4 259 871 565 550.8 565 565 374.3 422.3 397.8 565 503.8 748.6 503.8 503.8 477.8 550.8 306 550.8 673.2 183.6 730.3 730.3 703.8 703.8 793.5 654.2 654.2 734.4 593 593 684.8 777.7 777.7 824.1 809.3 708.6 708.6 612 612 612 748.1 748.1 754 754 730.3 673.2 673.2 673.2 795.2 305.6 565 515.4 527.3 527.3 489.6 489.6 717.4 502.5 502.5 550.8 259 411.4 353.1 565 565 565 550.8 374.3 374.3 422.3 422.3 422.3 397.8 397.8 565 565 503.8 477.8 477.8 477.8 595.6 353.5 520.2 703.8 730.3 730.3 730.3 730.3 730.3 730.3 946.5 703.8 654.2 654.2 654.2 654.2 305.6 305.6 305.6 305.6 793.5 777.7 809.3 809.3 809.3 809.3 809.3 1068.9 856.8 754 754 754 754 730.3 640.5 1224 527.3 527.3 527.3 527.3 527.3 527.3 795.6 489.6 502.5 502.5 502.5 502.5 259 259 259 320.2 550.8 565 550.8 550.8 550.8 550.8 550.8 856.8 550.8 565 565 565 565] endobj -1410 0 obj +1444 0 obj [389.9 325 584.9 584.9 584.9 584.9 584.9 584.9 584.9 584.9 584.9 584.9 584.9 325 325 909.9 909.9 909.9 552.4 779.9 781.2 780.6 747.4 845.5 706.8 674.3 779.9 822.5 326.3 553.1 813.7 641.8 1017.4 822.5 868.6 748.1 868.6 759.9 649.9 803.6 801.8 781.2 1106.2 781.2 781.2 714.9 343.9 584.9 343.9 714.9 909.9 325 562.8 605.7 519.9 605.7 522.6 357.5 584.9 605.7 280.8 313.3 573.2 280.8 930.7 605.7 584.9 605.7 605.7 400.3 448.4 422.4 605.7 540.7 800.7 540.7 540.7 508.9 584.9 325 584.9 714.9 195 781.2 781.2 747.4 747.4 845.5 706.8 706.8 779.9 641.8 641.8 739.3 822.5 822.5 878 868.6 759.9 759.9 649.9 649.9 649.9 803.6 803.6 801.8 801.8 781.2 714.9 714.9 714.9 846.2 326.3 605.7 525.3 562.8 562.8 519.9 519.9 744.3 522.6 522.6 584.9 280.8 419.3 380.9 605.7 605.7 605.7 584.9 400.3 400.3 448.4 448.4 448.4 422.4 422.4 605.7 605.7 540.7 508.9 508.9 508.9 638.2 366.2 552.4 747.4 781.2 781.2 781.2 781.2 781.2 781.2 1008 747.4 706.8 706.8 706.8 706.8 326.3 326.3 326.3 326.3 845.5 822.5 868.6 868.6 868.6 868.6 868.6 1138 909.9 801.8 801.8 801.8 801.8 781.2 683.1 1299.8 562.8 562.8 562.8 562.8 562.8 562.8 844.9 519.9 522.6 522.6 522.6 522.6 280.8 280.8 280.8 345.8 584.9 605.7 584.9 584.9 584.9 584.9 584.9 909.9 584.9 605.7 605.7 605.7 605.7] endobj -1411 0 obj +1445 0 obj [497.2 497.2 745.3 496.8 497.2 497.2 276.4 442 276.4 276.4 442 442 331.6 331.6 331.6 552.4 552.4 497.2 994.3 0 386.8 276.4 304 580.3 552.7 552.7 829.1 829.1 497.2 276.4 497.2 828.4 497.2 828.4 773.2 276.4 386.8 386.8 497.2 773.2 276.4 331.6 276.4 497.2 497.2 497.2 497.2 497.2 497.2 497.2 497.2 497.2 497.2 497.2 276.4 276.4 773.2 773.2 773.2 469.6 773.2 745.3 704 718 759.2 676.4 648.8 780 745.3 358.9 510.8 772.9 621.2 910.9 745.3 773.2 676.4 773.2 731.6 552.4 718 745.3 745.3 1021.3 745.3 745.3 607.6 276.4 497.2 276.4 607.6 773.2 276.4 497.2 552.4 442 552.4 442 304 497.2 552.4 276.4 304 524.8 276.4 828.4 552.4 497.2 552.4 524.8 386.8 392.3 386.8 552.4 524.8 718 524.8 524.8 442 497.2 276.4 497.2 607.6 166 745.3 745.3 718 718 759.2 676.4 676.4 780 621.2 621.2 621.2 745.3 745.3 786.8 773.2 731.6 731.6 552.4 552.4 552.4 718 718 745.3 745.3 745.3 607.6 607.6 607.6 855.7 358.9 552.4 442 497.2 497.2 442 442 666.3 442 442 497.2 276.4 395.4 334.3 552.4 552.4 552.4 497.2 386.8 386.8 392.3 392.3 392.3 386.8 386.8 552.4 552.4 524.8 442 442 442 580 276.4 469.6 635.2 745.3 745.3 745.3 745.3 745.3 745.3 897.2 718 676.4 676.4 676.4 676.4 358.9 358.9 358.9 358.9 759.2 745.3 773.2 773.2 773.2 773.2 773.2 1007.6 773.2 745.3 745.3 745.3 745.3 745.3 621.2 1104.4 497.2 497.2 497.2 497.2 497.2 497.2 718 442 442 442 442 442 276.4 276.4 276.4 331.6 497.2 552.4 497.2 497.2 497.2 497.2 497.2 773.2 497.2 552.4 552.4 552.4 552.4 524.8 552.4 497.2] endobj -1412 0 obj -[271.9 326.3 271.9 489.5 489.5 489.5 489.5 489.5 489.5 489.5 489.5 489.5 489.5 489.5 271.9 271.9 761.4 761.4 761.4 462.3 761.4 733.8 693.2 707 747.6 666 638.8 768.1 733.8 353.2 502.9 761 611.7 897 733.8 761.4 666 761.4 720.4 543.8 707 733.8 733.8 1005.8 733.8 733.8 598.2 271.9 489.5 271.9 598.2 761.4 271.9 489.5 543.8 435.1 543.8 435.1 299.1 489.5 543.8 271.9 299.1 516.7 271.9 815.8 543.8 489.5 543.8 516.7 380.7 386.1 380.7 543.8] +1446 0 obj +[271.9 326.3 271.9 489.5 489.5 489.5 489.5 489.5 489.5 489.5 489.5 489.5 489.5 489.5 271.9 271.9 761.4 761.4 761.4 462.3 761.4 733.8 693.2 707 747.6 666 638.8 768.1 733.8 353.2 502.9 761 611.7 897 733.8 761.4 666 761.4 720.4 543.8 707 733.8 733.8 1005.8 733.8 733.8 598.2 271.9 489.5 271.9 598.2 761.4 271.9 489.5 543.8 435.1 543.8 435.1 299.1 489.5 543.8 271.9 299.1 516.7 271.9 815.8 543.8 489.5 543.8 516.7 380.7 386.1 380.7] endobj -1413 0 obj +1447 0 obj [760.2 787.1 787.1 1070.6 787.1 787.1 646.8 306.6 533.4 306.6 646.8 816.9 306.6 620 586.3 597.8 631.4 563.7 541.2 648.5 620 304.1 428.4 642.5 518.6 755.4 620 642.9 563.7 642.9 608.9 462.4 597.8 620] endobj -1414 0 obj +1448 0 obj [655.3 668.3 706.7 629.5 603.8 726.1 693.6 333.5 475.2 719.3 578.1 847.9 693.6 719.8 629.5 719.8 681 514 668.3 693.6 693.6 950.8 693.6 693.6 565.5 256.8 462.6 256.8 565.5 719.8 256.8 462.6 514 411.1 514 411.1 282.5 462.6 514 256.8 282.5 488.3 256.8 771.2 514 462.6 514 488.3 359.7 364.8 359.7 514 488.3 668.3 488.3 488.3 411.1] endobj -1415 0 obj << +1449 0 obj << /Length1 825 /Length2 966 /Length3 0 @@ -13885,7 +14667,7 @@ T= WgCtQHNُgEj8 endstream endobj -1416 0 obj << +1450 0 obj << /Type /FontDescriptor /FontName /FGLMSM+CMSY10 /Flags 4 @@ -13897,9 +14679,9 @@ endobj /StemV 85 /XHeight 431 /CharSet (/asteriskmath/bullet/circlecopyrt/periodcentered) -/FontFile 1415 0 R +/FontFile 1449 0 R >> endobj -1417 0 obj << +1451 0 obj << /Length1 817 /Length2 1088 /Length3 0 @@ -13913,7 +14695,7 @@ xڭR{XSeO墀1̑ `?y1,yԙF˭ŽVMKlw뚶Ux#z3}c7~\~Ր({k֐G [}{o&ieXkFݎVO pvkt_Os\kD ⼁rsE6H_6i %V'-N*x\@(ʹ$xn{A۳|Rlw4+Դ-;p7p Rً.eNv-!/_:++Ze3喞[0`vz"qҗՍN֑E5dZyg+EcpMmK\T-ˎx%2Z%j>8ɱN`^~glw^Teg_,3w^;xՊչRNkS!S뿹8E|W[Ur@TPâ&?{ J򒬵[vdcGD籬NZUy_H#enhC&Cڜd?weEcOM%L'{,~MƳZƑ_{d V$=#>U\xQF\c9;{27g4ֻ~ ؁|JEܝm2?kQ$ wc䀮c9S7P|}[FϚґ疄ܸ+q{jS4 YӶ86oG}^N endstream endobj -1418 0 obj << +1452 0 obj << /Type /FontDescriptor /FontName /MPCDJE+LCIRCLE10 /Flags 4 @@ -13925,9 +14707,9 @@ endobj /StemV 40 /XHeight 0 /CharSet (/a109/a125) -/FontFile 1417 0 R +/FontFile 1451 0 R >> endobj -1419 0 obj << +1453 0 obj << /Length1 1009 /Length2 1939 /Length3 0 @@ -13945,7 +14727,7 @@ xڭ GN/V%[`YUN3ᔂ}"fDUc;;gr2ӯYgzMDŽ[-ޣF8[_cQ/^q%Vx0c/-&WL" Nk yW^TʻP$#o<,F0n߇^md43/P+5.ڠ 2 .UjW`#3ɍ3ci/Y*hP5Y#䯇:DWRlVMW]r6ơLBQX<pk& f] PgTkw_ j0xjbBm$E,~ /T endstream endobj -1420 0 obj << +1454 0 obj << /Type /FontDescriptor /FontName /UGMIGW+LINEW10 /Flags 4 @@ -13957,9 +14739,9 @@ endobj /StemV 80 /XHeight 0 /CharSet (/a0/a113/a16/a18/a45/a49/a54/a63/a64/a65/a73/a80/a82/a85/a9) -/FontFile 1419 0 R +/FontFile 1453 0 R >> endobj -1421 0 obj << +1455 0 obj << /Length1 739 /Length2 17793 /Length3 0 @@ -14047,7 +14829,7 @@ w GCTJx9'+{MFsNA /":Cp)(z> endobj -1423 0 obj << +1457 0 obj << /Length1 727 /Length2 17770 /Length3 0 @@ -14132,7 +14914,7 @@ m lTAPƥ?ó?MJZCRt-gnvҔ ]1waQK*u ~Nwv WHKWGllsY3 ZsjПjkLwϓdXOsA )'܏؄W.[>%Fh}^O!0>D?y>' }ec`bMvFA~OP:m S@ty{xJP ?W&{Xcqu*jO-IISqĠX{Zpxr?f5;4\?n%d y.Nr9h]^uI# uѻc\?~g @6+fP%:QlKt.yrm^iow`ԖPWp:ְ'$\7u uD־dY(\tzC X`KO+SR)Y2iBRb?Z5(kwd&7PrW&ks?$-LvǢx}JP]fJ.m ֯q%K= pucy#LzkpWOf:)0U_֬ ()Ogz+ 9,}oS~Ļ޿;e|.b#r؞D> f<4eb">.Ǟ7:-hVvR&\pk& I_SAylDq) |z?+8j4.ގ.eЧ AO;>bn4C%`> endobj -1425 0 obj << +1459 0 obj << /Length1 727 /Length2 21657 /Length3 0 @@ -14250,7 +15032,7 @@ H Hn(ԋ-sMǻR+Rw<{XB5D,pehL.Rfcݣ2Y)gIuO;M4~WZ+ }ZM(hV 2P^o0UVYW<8«QFV8xXw3^Vђ {Ju6כ9,Ѻ!ei4;{UCIh?;kўOdI-kKwz1 L,&AP}Ggoac4]hvАWXuԣ~0B5'}gLO%|k/#Cdlf֧۽T%!hDYԃ =;%].gZVhđk5|ͽְa Z?1Z1)||uFWed;6w{b]%Pl%2Fn,9n0Ңp1M9GtkB ڗ!@{,S=Ӭ zW-͋YpְIumCtj6~1Csb 0@m%gq@i|.bٕpb) lTV+Y7ݎѯ" ИMj.SijRA3-K%fXrlDת#bV3r͢W#f9jj|cNW(gJoI endstream endobj -1426 0 obj << +1460 0 obj << /Type /FontDescriptor /FontName /PFBGNV+SFBX1095 /Flags 4 @@ -14262,9 +15044,9 @@ endobj /StemV 50 /XHeight 444 /CharSet (/A/B/C/D/E/F/H/I/K/L/N/S/T/W/a/adieresis/b/c/colon/d/e/endash/f/g/h/hyphen/i/k/l/m/n/o/p/r/s/t/u/v/w/x/z) -/FontFile 1425 0 R +/FontFile 1459 0 R >> endobj -1427 0 obj << +1461 0 obj << /Length1 722 /Length2 12082 /Length3 0 @@ -14318,7 +15100,7 @@ S- A\ (#,kNC۫e;T3+0 endstream endobj -1428 0 obj << +1462 0 obj << /Type /FontDescriptor /FontName /VMIZBE+SFCC1095 /Flags 4 @@ -14330,9 +15112,9 @@ endobj /StemV 50 /XHeight 430 /CharSet (/E/F/L/S/V/a/d/e/g/h/i/l/m/n/o/period/r/s/slash/t/u/v/w/x) -/FontFile 1427 0 R +/FontFile 1461 0 R >> endobj -1429 0 obj << +1463 0 obj << /Length1 722 /Length2 5536 /Length3 0 @@ -14372,7 +15154,7 @@ H3H Uq KExQ׃hS#~PxFK]KҮ9R4Pfy q3| |oy*sľbb$uJ2E![(Qy֝)1|e"Qҝޯ3؎A&Kb7pF5a/yNoo xC.ſlǘ`ŧ_0\w( `&Bnii'> endobj -1431 0 obj << +1465 0 obj << /Length1 721 /Length2 3620 /Length3 0 @@ -14407,7 +15189,7 @@ U [cItW%8i3cR8?MMpPV(>"dLƔGjU}57,I֔*ʨj4]i~^W[+7ť b"ݎ:C"瘈k񱜴GoN/&+UTE "Ȫ{9o}T3RC߃aF1W#190[2%Aemj>ZڊyQ95&0W{liXVvs꽎w]w`vUټ{6$st%;5> endobj -1433 0 obj << +1467 0 obj << /Length1 721 /Length2 19088 /Length3 0 @@ -14516,7 +15298,7 @@ oh~. JG`&) # endstream endobj -1434 0 obj << +1468 0 obj << /Type /FontDescriptor /FontName /NCLUFF+SFRM1000 /Flags 4 @@ -14528,9 +15310,9 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/B/D/E/F/G/H/I/K/L/M/N/O/P/R/S/U/V/X/Z/a/adieresis/b/c/d/e/f/fl/four/g/h/hyphen/i/j/k/l/m/n/o/odieresis/one/p/r/s/slash/t/three/two/u/udieresis/v/w/x/z) -/FontFile 1433 0 R +/FontFile 1467 0 R >> endobj -1435 0 obj << +1469 0 obj << /Length1 721 /Length2 31381 /Length3 0 @@ -14667,7 +15449,7 @@ k jCQH5TqʶԲٍf v%1.SZӹQ. endstream endobj -1436 0 obj << +1470 0 obj << /Type /FontDescriptor /FontName /SPJIAG+SFRM1095 /Flags 4 @@ -14679,74 +15461,63 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/Adieresis/B/C/D/E/F/G/H/I/J/K/L/M/N/O/Odieresis/P/Q/R/S/T/U/Udieresis/V/W/X/Y/Z/a/adieresis/ampersand/asterisk/b/c/colon/comma/d/dieresis/e/eight/emdash/endash/equal/exclam/f/ff/ffi/fi/five/fl/four/g/germandbls/greater/h/hyphen/i/idieresis/j/k/l/less/m/n/nine/o/odieresis/one/p/parenleft/parenright/period/question/quotedbl/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/udieresis/underscore/v/w/x/y/z/zero) -/FontFile 1435 0 R +/FontFile 1469 0 R >> endobj -1437 0 obj << +1471 0 obj << /Length1 721 -/Length2 12061 +/Length2 11942 /Length3 0 -/Length 12654 +/Length 12494 /Filter /FlateDecode >> stream -xm&-ܶڶm۶mkڶmNczڶmvOs޽/کWRdD^fLtLqe9&fFF#= 7@b`b0D,,]&TFVvVu[w+K?"33 %%/WHٛ9݌mLV&f.fTsg?\!`n@NLUH\A^ & *07J-wu63qOwYFg/E02qYX0G7){saS7r@WC*_R `jlPv3/RFu!+q+O3SE+׿R蟸ٿ"gfjfo_=ި=o )(K'-fo`jeoPq4/gl ax0g(aaO:&N6 3#klf{ y-;X7UVS [$7.t&ۖ5KxgF"nə&-qo!LyZHh&}Ӿ8KKpufUr<Ő*LI]nq/@ZpY(y}XVuKM"h2L+ ^9 5Ӗ@ق -$6 tn -sPKAП5ȁЄnm'򶔺@Iqg ܼ|m&G5oepQhmJ oVN0|EpUD #V٧! -ŎB^n9\tp!+)W0Z $Xj[5Hßmhz::Quyo -;H,:vQ;n W{Σc}ki܄s65V&.wMb1DgKFeD>}4? }q)[sb0*CB6~V+Q uERY?ԚjH9޷7"UBnE[*1؆T i6:_E)]xœcNHIH C:?l/PvJ.|̵-~ڋ.?D -gz -= )߽omel*!krZTފj 9(zM9a|nf=^nx/a 5N%|dAI/=Q9C:3i޵7l ߓ)H P'uۺN=6.:hzޕ@j.؂Z7X3lݸ~Y{Pn_-){x*61Uj%B+Wc#￝ڕ]id-/J,NkŖI]%WBoٌ`"rR` r߈~MٌHLQRm!%P[/:_5vy5_4?JW૧40}ȷ}Otecw\ lѱ[kq u$=w5$VN xGT"}cE@]aw#'& 9D!GH|oK;aO[ĝfR -["މ -}p!΄ob*/XOkhd9WBNd7HI>t7Ü!xAYZA2`vIORþ.zMwT5Z<z"AWh&Vy}`xS-eO@[F.k7?9`9ٰ*F4/R_ -zAt6a^ր u 9su9ǧ->Q/ؓioDJލ9b }K;!Ƒ5݊^6\^o'`5kE:mg{3_2":6l0F6!7kz*uΦ㭦 4 C:[񡛤Y\\ -55Z!A=a+,ք1xɎϔ_+a^i(e(\%[ޢ \@4GˀY>릎ȳU`nJ-+^dFAQib"q5M\'L ds$RFg..݋ơs=~.~C .|4_ ;bI:%A`qʅ*DV? eO 9p(Kr^]z\*~3TuizqZִW~t6V[LpdRqή#}/@ޗ!.C{QXYBG([A\U6(KfZa7-YD -֣Rhc{ӝMEgv8ħ4Xsvea$G=hSbmJTQ O (ax1ĕT=Z0Vϻzː71Ekj}w_B޻v2aēZ^K4mo'8N>eMxpxq -o:\Օ|SCdh10J8^)M7\.RƉ򬐚 -vHw^ɟŠx3v%Fw=%5dK+1¹/!FSx% ,I/Ÿ|,`[/xUM6D2ZE{ )Êƾz-&xnoZ5;<B",wE~EoV$m uFf1.0dftf{N=kF"p~L:D sTk{,y}>X7G ksjXbrjk䧥AlF&g!)%&B:Qd=Ie٫ﴢFNݍQ?Hy8(qٯI8}KxMʵ@,nЌF! -zYWɠ;) *_e3j_wNq 5{':DbN<&@8k4hy/e(q_M7yE -#cH{G]FgrPKĵÊz޴_6vy|if=Qq{ Wn .c<׭tmnb׬JΞ&ͬwa:p"Tɮm)H N<=0ڗnĖǩr%.rfshɑ4ȧF U|NX0OcZz۰g$JZqcNRa( -PU̶_dp@zDਗ਼d`'p%}׸0rDsk~m}]EUl/L%3y%(Hꇐ1ȽTԾ-d3o@荫7$*:Y ˀ,+qHOعepP}{}$ =9N;H Bf|`(*q^8Z.ejheQI \d\3O rUן%. -Њp^e*Q 6f/x/8svtњp2G;7ϓъ^xB YVٸ7kMm 7ŭ(09|`(fOHՕu\co> d~8{$ #W+C0aqHKeS{$ۼnajdޭc / i.qne -P|Zd3tߨ]0i(?m+ji`K,z$eȂsi,gz7>?53Ы:c;ӊPy\/$B]ߚ4am^4z#@)\JIˎwTx3[II&Hzr +s@~}Z:i%.G:|Iڟ,΁o([!k&z^85T,yC doՋ0fף;K*c7T4w^&cFbO.i|ϚF+O|A-FQj)eB;se9ZYכBx@ cViVydjHykziS&1ǯE[\ B/V*7ZKT% gl8vz-IE9Hϧ1Kf\~+`@9 - -q &:9d~{8Mc0$T4:K !16w`2vtmCkzIFۯhܼl$QF@UjLYx׸,||GВ] )n<sĿ,62p>~]\&紹WUm( '8tַXgqRDĸ:o5Ƴ`& Qp3btO 5M€8wHw<$WqJ-]KL0vX_D*xjH-XTNBȗLJ4ٸ-؍Z-hρr<֋f AT Xi+,P.49MgU Mmn`%:c05}l'z03hl<;F9Y$QD{(I.8PVAᓦ{B =+g3rg[6O)kUWlNuN[)i'H6C+|^+BݮJYf(m识C=6j+D>'&~n -AWuh"蹙Q BDMdZTI?z z-J0`k2C쎷Pj>Ё8Mux9-ſ,i2\ݖk >\b8+(LK5 Mo MnERAp -bX {0nd[#A -whiHVe[xĿ&~9?!-܂`( Z*|.!E)QfN1 &n^Kos[M9-L" r1[@ݓs?]sXw? -^ i$o"k A`᧧oUX[]MUWpc A^_ -.0ats+V::.FOngJ0`х*&ֺ@Z-k 6%C@;f21u^;G($'MÀ̔Dԓ u|-$mlkgvl# K" F"@]2kfmF%ke &pSW',Qnwo oaX ^aIsd%&tcnPޤ#K4 Beg8n~ -=RIsNn,{Ŷ`E#22dR -xOs}i9cjD i:bhO~`iX ZmЌ愖`I g-:T7RS~40S8hy{a.eim2I)'u`" R#SZ߆lCڤָ>mگ]l0NZ`j<μo#(2,WG$2 -f:E&9ĸ$)lJgUT%&3i9~^ t* -Zpvi̔!evkĿ ʭ{VaDR'eVǠd , v?i! lub^RgIFΧYEG7.HDJW#>M%^@.gܴ/k4Yp T#̖i_ - 7ʹ)}l[wD).Ak"^PRg*% fIQ@8h68̦XYRGzpKfijWi&!2S:wq52#NN؈}x \m0ǻעgww(;l!0Y("U6{mN:f q)I2'M.~ܐNL!$b]‰^X{Ey;!(o+ee3uH'˧3|>"/ƈH![(۹j=# йﻔAp;!176IGdm[PhժGQ= i_BQ)P?"-iWXJ*S|*m[`d3,@!~V䕽:ר-d3[]YIY4ϊ_!j9&Flװ W+\d2棅8I&=&_bτܙ ؈6[ퟰ3H`TT4mG"ffHE QΌ׃u4ca"6`Cl)n8xb8m"5ȟzFû ]~TyjAX\=5Aj}B4F8t,\/D+cN 2J-DE! -\ʳt@ & i%d}EH9aFRp Ck{wSz=Gh[G]@j<)XшF\R5xMz.-ź\QWo뵼()JOI83Hz  o6q~ -f]1ۼi.q*ҷpހ@|As[(ޒ"БBP&waE2$Cn;sZo%iqǑdI爜RZGj%FzKSYZH6&UEfFF <' a[h-4BXN3Ax-0ŷ\e˨A>'U:O\=tZjzOAftw3Glb9$j-×U$Vd`kQBhr:649Vg: >nFҟOyu\Gn)}&D };}^:Jv5JN1ui"d S?%?|SWA`rK=BB3gciZ"IˆNu9ꪞVg-cAUqr - g?W! -E|!BN>˰Bs%v80k߳ōJ[usw u y VUFIj[`-&*\@wHQ0TQx%!\0C:B&SqBYn_}!Ǡ X[ 6u`B8R[SUW]2,i~WhЋ/"QeUӮ*G6OUY-c#Oqf*ʂ9PPg8uqmCQ7ԚD5ɗ7.3$+KmV0$i,'HVnaWn[*MyJ .Uf3Z{ <ƕSV,:5*5jX|J$ ?~JCbƞr..Ax4|Ó4`A#QLyt.mJȫH}b -j4Jj%%%Y F]-"R -/}#3rơm:qTM>u*LghTӋ n"MTL^3ŸPEz"CFYN0^ ,s甤I?l><> _!7(u­-г`4mZسQ/N8S6][?,@Vmef4|#%4<@TŒ RW*B*5Ծ˞JakB1,O'd&: Ej< %^ jY8#fK$+Ud}}0~.?XSBwabqՊ0V>F$:WL['W~3>s{ -}}sR\nSVOd625a͗vmAH7Ӯ]}`l+1vzkJܘw rz[JRXNh0ӭ3^wkgP6k2 !k$Yc N },Ez~^Jպp',jVNPAAfM9 (3]jr)/rBn; =-íhR sC&x_P?NkaV>fb_+vLS[Yg Vqd6.1XߨfcҒųECb諦ORZsSFJ0v`N/@O~Ymᄚq!wX˜3!Հ?Aau,O썊?,]&0UyU2 :a ZeA-"h02Hj'#!>ϳ!50!φm2>V5S>t |km`o{|r&vA/2 ؉VK*4 -܋QOA*-ZO*O&#]#Ǽ.%Mp1D(qp0*z;j/t|4،iX=' }RQ7.kFѲ {:z.=Ѝ[R~<t)J/\8D.7;ObVm_u{if@=aӚ z3z>'AqL:o\6GI0Lbc[νv;WAY `eYė TdC/%>Ofkݖ/ܩ@)c+}#yZ~I6v?'4{T2<"iZc/\}o:PI~811>:,c+)uYOE~eV +xmwpfmlb6''Nض1mc21&m[o߽nիSյzջNצ sQt0ca`adJȳ23((Ĝ̌\vF.fM3SGwtZXMh 4lL@'&*w `1)*i(HRfvfNF6%Wc @hbflF0wۙəvnfN.;%D$bLjb#;Sv.μf&N_迖f  0϶og8pv LJ$fq6b}]3)"h +nVDfF]W҃"N@7N)O .84a{1Ys˜+[cHGG?:Mj̅ emz }|XG'Qr[M?mWMC +M@ۃFVC(`9D +dxJ+ܭtcD \w b0 ؽiC}5rp}Q|tOX/-I.{.k߈4JP}gw'5DdfWk츁Ow`(Wo"w=:y&|avWX悡huLxmZX|;PV>c2Vz-0&Rxjq<!-NaD9tYu;PG;?=>}#r}C+ C7bR}sfrE8z$[Qw<|(X:W+ $&V6ߊ+eJ3S9ZWIonF+YLbUN=xkDp`G @4OR +|yM֛XWl²^Ńwmh!SFonsMb=8M[>!LUx$@ S}Osi*h9pF+ֆKĉ4%,M0F~\s֋iӳv/?M?{vH!txh^BeO!D&|㚍?nVisd]0Nixh?\wKKS|4Gс!v Ǎ{zN2x|Wez@#E2uivF-|Mbcח$z60Ҷ)\-76g}:fRJU]84*A.z-s۲_s Y6;cdzdO:Q㇛fS4,\#NW%rIx*Ȍd_|.R"'Ayٵ{ ]fe66dfbGrKgP?QE ֒׿]yo-/>H֝k+{FȥyEa+ll / q9|i "}LPgCotrp/:ENk;aӇz#`YWRA P&INK  +r2rj3N'Qa{p.<05!mb+Bd&=(Z],u@O-mC/əO'5$ T!u1Ճf(Bd)E J\=Oc%I7-tɽjK}#aIu}=կt5%Łnqg]hm\4mV~̹~:ߗt`>l͂ȇcn 1+GxlHaB#g'`< E I$2N +e:cί? ex0^M,ptҏ:Sd& (@`c1ѳS֫5(lSو9sE>G퍪o3ghw)*~w y`~ Lxp"7Gwߌo奓/c 0At5c7x:A+|0.s!F% xI ?jn"('Э睉f.OU<_+'_e!+zPbd!Ftf4{ 6NyE`Ge.K/ p{seR3:+X iy1XfHa!{ˤ5͜5tݡw0]lm{5ھdV]n)D?ͻ ´WA# `$gъ,ȳht uo৓@װE$(ZJPC92s`<`siXB!&Gt!^6; wzG7*4_, eIn'd1K7w9 Kvdx4jzm*7\E$ErɮjG+׮"-?}182~bY>ʏyIDۻs۾fAմk曾W&ƋV3/b%.#!8˫hV!1¹s { +d&I[ֻ繘5+,S_[GS]Z,'44 YƟ {ZPb_.D9&-g.,8]a~Y ۋ Qj,y{3I|P(T.! ĝQyH}aTJ{i5?ׯ,N*$ +ث뙇O!?EB&:,ғ1SrD~ x"o{'_tVRu)•+8)y,gԙ{S8ܟTh( ]^TD_qHm%0l 6 DlE'1PG.5{Ɨis?NûulF'2uأʷik6_:swP[JIu+eCI[!mVfCJپ LðlP4Zcq'[Z9/:u1;ڀ6Jp,a7)jDf؝gmI nS赆&F9n~ڕbhae;|ϻh wROhUl|s$H㖛PvuNdV.oxb<3eުo"oX-pdo!?gyl "7e7-i$ދ]^H }~wS<% Ífzc C; =ml5vquŠuPeA[bC:,=g-$[fQoۀMȜ%sq o@pdRݥ# [wst:a JIkNϾH]Qk,Ԛl?o/Aq'޼;|΄<P15Ph{-Hqќ TY3b2rfhixn9X}qw=jX1'4`+ܛ>՞mg +p"[Qb3l=ssn7c!G`?i]'۪ f8߁{h*j>}O?RyJirC@Tޘ 6C?2hd7KzcE:I,8/WISw!.QS)faP\?/k\eYu`Rܾ7S,hWZܥŸ:gP~|x[zVh~N*4w A 6&nhߺ>AhjHN~YRK6K%5K=R^ٯoRKxtr[CZD'|`- +bxBFرIjڻ".0xv{C'h$X2X%c$7eF0%> >9OqYIW*:6d253v_4 $t`ezZN]{|ӆ?-lǯKЊ"«6 /@0fS| Lџ}3|̷v b|`zz,{xjbK8a-8Ty5b|z:7d sgZ5y1?O@끂ϕGaufTf;3h$ZAڬJr. SY*Mu!zs=ܕO<(tуMoj@̝/f'?a9s6ABA܍ep)'1̍CeO ȉz<]j6#̊/D(M2~jk8aq,@*o"=)fWYM9z~7!fŴx$|YePɀ /?ITGd /Mv R4ϟ X>~? nlI_ _YTBY=sZuFv"NGMJ)yd,M'YnrIe? 1w9eׅAX$\r7Ѱ5_o7Z_.`ByZ_5O=a#g_WIsx?` ѨUF[[R6@H_ram[Z#=NЖE%2D.CE|I%c]Mdp_yo7 >O1ˮ9懵=(9 +Ř@KJ.5d(䐚x ”5Knl0CRiÖ~=1  \S>Y (2q=$!? ?kEL{xET&8:,"6-86i 4.+nFn .w|5:{`RsKhJS4E>P߿s, "tWB^-bQte"_.ƨo z]N20ӍJd=I{AGPAR@,l qz@8™|zf<)(wT$Wʝ7,~6ǤJǜfړr8OSaL#>9&(u Q*+n`~Gڷ_>(ya1q ~V 7ޱ>0U SY4E~Oɳb{l MYܼ`7JV"{ܕ &^ t!vn W IBZ. ;p6ޏ~{WAV&Kǡbxȝ 'zg!&R8!68:@ I6dx@ߛgMjR2뎢]28K39vi+.n+:%ua1ιLIDAi(!1VgBN6:O-y ;!- #.xQ^@m2+x|6 -o T(dJ1nC~+뭩h)bߘPQw4m~f&X)axJ5W7޷-&]gzPs8![Usu5Xa9?ʩ=sǩCɛϝ4mWg{M@K q|[%"$ Q+O'ON /q8̠쾘,Be)V<6yEgdEC6鄛1(.T +gٓylRRG;N7,F؅͒ ÷ymNYAWimLTM^ ˩ӥ?Ȅ?CXe@A:0y)т8.huls~5nz#.q `uq*E +!īœ5HC 79`2DȑJ xL,Q|E.}h/4n%Z%1Y-ꛛ:%_wFsƒhb|NP80 [j|'/y6rMeD_}a1 0/ (l8eЭ` xd]EnC(d}nUlRNf=”k;qe%U +0R6 +DH@b5diyrPxAl7Acg__Byf@%PZ7]OeÊ#|G$$*|jL'Ǽ[i?Z{&-$v)yVU~sS^0=5+sR]χbBtUl:I՝ ՝EY -Ђ4F‡~7~2Tp1n$@'v37&?1P3ϔsZu~>TdR;&UKs֚ѐg+L/7c6tS7W$D3v9K'-i^dU2Z's?+bHc>%ww\jS\,?~^@? +YRWlXh?Jotmeq[ ++n^ЈBe1_}tʖE"a ='DʑS"UbO_ u#bVy{1?oiϧ]|?l伽]A!(J6#F/ Vk^c\.poEE9Qz\R.NG9E _#G`A}lSphmn veƗE9o^ XjI{,x$TMȨkbv, mͨ4CTe5hӍ:&΅]6x^~S\-wdly nYC#lQ8LRȬm3Nb)N-i (p s! K8Ȭ֑ombۏ׼tdkNk-.veV47$ڲi,Luv͚缫|Ptfw +lc)*w6UNL[aNԐX,H?VQ|f 2/݅B}8F#' [}vTmRh0Y\32¾HR>,/*q¹T{0K+O-'hhк2pkӍZ28SQ.B[w-DEѵ^<˱rUomӮG6S)ǭK0*ęTE_Õ v;^j%n"ef7$Ex2U+*?dO R:#׳c&GϕN>1Sɯh/aG|ie= 8Yv>v}Fs7t泯=:A=9MydVr (z UW Ff}ap}"M\#žb<$qI\Sg;(j<}2omс L zb3. +5;̃pY"xK-5#hwȶQ -^>~GAlᙩg5E$鴂ek!:D_62Ipd& kL O^FfǡZ4Far&K=tOI(@j8xN{gB*KDz ;ss}n_jOTꛧN@6AaA +[J^2^ ++^?Q֎vGHeOJmR 'evWX 62"OxxGa-{K5U.Hw{a!I}u9Eb_GLWE< +p .jUd*7@i&*(`[sj+(4d"ԬG򃦆2 Mh&?0#)c,G7}IA8mbwxk\BO8`]Iq( +:z=:hqO B@ ɽ 1޽CǓ6Z)L*sxZP=!rcHva21}G[ Yaxlס HM_p\mP5t^5篳 uEsCϷ T3A2Jvs70sL]K5LI["5f- endstream endobj -1438 0 obj << +1472 0 obj << /Type /FontDescriptor -/FontName /GZXLPL+SFRM1200 +/FontName /DVTEZF+SFRM1200 /Flags 4 /FontBBox [-185 -320 1420 942] /Ascent 689 @@ -14755,10 +15526,10 @@ endobj /ItalicAngle 0 /StemV 50 /XHeight 430 -/CharSet (/A/W/comma/e/eight/g/i/n/nine/period/s/t/two/u/zero) -/FontFile 1437 0 R +/CharSet (/S/W/b/comma/e/i/m/n/nine/p/period/r/seven/t/two/zero) +/FontFile 1471 0 R >> endobj -1439 0 obj << +1473 0 obj << /Length1 721 /Length2 9413 /Length3 0 @@ -14807,7 +15578,7 @@ B ^5?ִWY~;Alk?D#2-92fl[wfH~q:1kzP,iIK.QhogUHc endstream endobj -1440 0 obj << +1474 0 obj << /Type /FontDescriptor /FontName /GVTTXZ+SFRM2074 /Flags 4 @@ -14819,9 +15590,9 @@ endobj /StemV 50 /XHeight 430 /CharSet (/B/a/b/c/d/e/h/n/r/t/u/z) -/FontFile 1439 0 R +/FontFile 1473 0 R >> endobj -1441 0 obj << +1475 0 obj << /Length1 727 /Length2 30259 /Length3 0 @@ -14952,7 +15723,7 @@ g <І<0඄^W{8j㡟o5`npN8&4ebZAQ MUTP90;h^ '(FTS% K1ۈ¯x#2lxB"XaX"!WڝGFKq;\W+w̙eHe"mЧbQ8BqȉSMv9Vpv4?[ͥ_PqB֯(h endstream endobj -1442 0 obj << +1476 0 obj << /Type /FontDescriptor /FontName /VTXNUC+SFSL1095 /Flags 4 @@ -14964,9 +15735,9 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/Adieresis/B/C/D/E/F/G/H/I/J/K/L/M/N/O/Odieresis/P/R/S/T/U/Udieresis/V/W/X/Z/a/adieresis/ampersand/at/b/c/d/e/eight/equal/f/ff/five/four/g/greater/h/hyphen/i/k/l/less/m/n/nine/o/one/p/parenleft/parenright/period/r/s/seven/six/slash/t/three/two/u/udieresis/v/w/x/y/z/zero) -/FontFile 1441 0 R +/FontFile 1475 0 R >> endobj -1443 0 obj << +1477 0 obj << /Length1 738 /Length2 22440 /Length3 0 @@ -15067,7 +15838,7 @@ v ˝͝'.2Υ+ G8',dk'daŊ3 endstream endobj -1444 0 obj << +1478 0 obj << /Type /FontDescriptor /FontName /HIMHFX+SFSX1095 /Flags 4 @@ -15079,9 +15850,9 @@ endobj /StemV 50 /XHeight 459 /CharSet (/A/B/D/E/F/G/I/K/L/M/N/P/S/V/Z/a/adieresis/b/c/d/e/eight/f/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/period/r/s/seven/six/t/three/two/u/udieresis/v/x/zero) -/FontFile 1443 0 R +/FontFile 1477 0 R >> endobj -1445 0 obj << +1479 0 obj << /Length1 738 /Length2 23176 /Length3 0 @@ -15193,7 +15964,7 @@ $ NgAOaW6ڎO> endobj -1447 0 obj << +1481 0 obj << /Length1 738 /Length2 24885 /Length3 0 @@ -15327,7 +16098,7 @@ F k@#Yg'  ^-yǑo[mYNfTG|z>T;.D(-7r~!8 $f?«J߱^65xs c9%h}"s\ia%E`rѶNx|:NROL>k,.!VMIZZ#XF<G@x]ȐKnytO̾.2o%w5z}-n@R2`GGhJgYjԽF/K*Z};AuI eh' o:־I[cZ .a,*# z$ V?aAª$Cb 1_8F˯Hɯƣ;*Z@Sdu /qY@%_z0d} A"d$ɐ6mR3.#0qDcP$xcbu{^x$2 hS}X_I qƒi#N^1f7] ZVJ}:4ٞhAyt )Iy Ցg#Pjj'#.O^e*0B9v$>-ըk8 endstream endobj -1448 0 obj << +1482 0 obj << /Type /FontDescriptor /FontName /PZKPTQ+SFSX1440 /Flags 4 @@ -15339,9 +16110,9 @@ endobj /StemV 50 /XHeight 451 /CharSet (/A/B/D/E/F/G/H/I/K/L/M/N/O/P/R/S/V/a/adieresis/ampersand/b/c/d/e/eight/f/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/o/odieresis/one/p/parenleft/parenright/period/r/s/seven/six/t/three/two/u/udieresis/v/w/z/zero) -/FontFile 1447 0 R +/FontFile 1481 0 R >> endobj -1449 0 obj << +1483 0 obj << /Length1 738 /Length2 19227 /Length3 0 @@ -15413,7 +16184,7 @@ s ^kO];0( R endstream endobj -1450 0 obj << +1484 0 obj << /Type /FontDescriptor /FontName /WSGQMF+SFSX2074 /Flags 4 @@ -15425,9 +16196,9 @@ endobj /StemV 50 /XHeight 447 /CharSet (/A/B/D/E/F/G/I/K/L/M/N/P/S/T/V/Z/a/adieresis/b/c/d/e/eight/f/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/period/r/s/seven/six/t/three/two/u/udieresis/v/x/z/zero) -/FontFile 1449 0 R +/FontFile 1483 0 R >> endobj -1451 0 obj << +1485 0 obj << /Length1 726 /Length2 35228 /Length3 0 @@ -15585,7 +16356,7 @@ sW ^peU2i]l I.-# endstream endobj -1452 0 obj << +1486 0 obj << /Type /FontDescriptor /FontName /CKSKYH+SFTI1095 /Flags 4 @@ -15597,431 +16368,456 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/B/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/V/Z/a/adieresis/b/c/d/e/equal/f/fi/five/g/h/hyphen/i/j/k/l/less/m/n/o/odieresis/one/p/parenleft/parenright/r/s/slash/t/u/udieresis/v/w/x/y/z) -/FontFile 1451 0 R +/FontFile 1485 0 R >> endobj -1395 0 obj << +1429 0 obj << /Type /Encoding /Differences [4/dieresis 21/endash/emdash 27/ff/fi/fl/ffi 33/exclam/quotedbl 38/ampersand/quoteright/parenleft/parenright/asterisk 44/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 95/underscore 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p 114/r/s/t/u/v/w/x/y/z 196/Adieresis 214/Odieresis 220/Udieresis 228/adieresis 239/idieresis 246/odieresis 252/udieresis 255/germandbls] >> endobj -601 0 obj << +611 0 obj << /Type /Font /Subtype /Type1 /BaseFont /FGLMSM+CMSY10 -/FontDescriptor 1416 0 R +/FontDescriptor 1450 0 R /FirstChar 1 /LastChar 15 -/Widths 1400 0 R +/Widths 1434 0 R >> endobj -1102 0 obj << +1134 0 obj << /Type /Font /Subtype /Type1 /BaseFont /HBUOKN+SFBI1095 -/FontDescriptor 1422 0 R +/FontDescriptor 1456 0 R /FirstChar 99 /LastChar 116 -/Widths 1396 0 R -/Encoding 1395 0 R +/Widths 1430 0 R +/Encoding 1429 0 R >> endobj -598 0 obj << +608 0 obj << /Type /Font /Subtype /Type1 /BaseFont /ORUTIJ+SFBX1000 -/FontDescriptor 1424 0 R +/FontDescriptor 1458 0 R /FirstChar 46 /LastChar 117 -/Widths 1403 0 R -/Encoding 1395 0 R +/Widths 1437 0 R +/Encoding 1429 0 R >> endobj -593 0 obj << +603 0 obj << /Type /Font /Subtype /Type1 /BaseFont /PFBGNV+SFBX1095 -/FontDescriptor 1426 0 R +/FontDescriptor 1460 0 R /FirstChar 21 /LastChar 228 -/Widths 1407 0 R -/Encoding 1395 0 R +/Widths 1441 0 R +/Encoding 1429 0 R >> endobj -720 0 obj << +730 0 obj << /Type /Font /Subtype /Type1 /BaseFont /VMIZBE+SFCC1095 -/FontDescriptor 1428 0 R +/FontDescriptor 1462 0 R /FirstChar 46 /LastChar 120 -/Widths 1398 0 R -/Encoding 1395 0 R ->> endobj -441 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /MBRHWD+SFCC1200 -/FontDescriptor 1430 0 R -/FirstChar 84 -/LastChar 117 -/Widths 1413 0 R -/Encoding 1395 0 R ->> endobj -736 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /YGFCOA+SFRM0800 -/FontDescriptor 1432 0 R -/FirstChar 82 -/LastChar 97 -/Widths 1397 0 R -/Encoding 1395 0 R ->> endobj -599 0 obj << -/Type /Font -/Subtype /Type1 -/BaseFont /NCLUFF+SFRM1000 -/FontDescriptor 1434 0 R -/FirstChar 29 -/LastChar 252 -/Widths 1402 0 R -/Encoding 1395 0 R +/Widths 1432 0 R +/Encoding 1429 0 R >> endobj 449 0 obj << /Type /Font /Subtype /Type1 -/BaseFont /SPJIAG+SFRM1095 -/FontDescriptor 1436 0 R -/FirstChar 4 -/LastChar 255 -/Widths 1411 0 R -/Encoding 1395 0 R +/BaseFont /MBRHWD+SFCC1200 +/FontDescriptor 1464 0 R +/FirstChar 84 +/LastChar 117 +/Widths 1447 0 R +/Encoding 1429 0 R >> endobj -442 0 obj << +746 0 obj << /Type /Font /Subtype /Type1 -/BaseFont /GZXLPL+SFRM1200 -/FontDescriptor 1438 0 R -/FirstChar 44 -/LastChar 117 -/Widths 1412 0 R -/Encoding 1395 0 R +/BaseFont /YGFCOA+SFRM0800 +/FontDescriptor 1466 0 R +/FirstChar 82 +/LastChar 97 +/Widths 1431 0 R +/Encoding 1429 0 R >> endobj -440 0 obj << +609 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /NCLUFF+SFRM1000 +/FontDescriptor 1468 0 R +/FirstChar 29 +/LastChar 252 +/Widths 1436 0 R +/Encoding 1429 0 R +>> endobj +457 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /SPJIAG+SFRM1095 +/FontDescriptor 1470 0 R +/FirstChar 4 +/LastChar 255 +/Widths 1445 0 R +/Encoding 1429 0 R +>> endobj +450 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /DVTEZF+SFRM1200 +/FontDescriptor 1472 0 R +/FirstChar 44 +/LastChar 116 +/Widths 1446 0 R +/Encoding 1429 0 R +>> endobj +448 0 obj << /Type /Font /Subtype /Type1 /BaseFont /GVTTXZ+SFRM2074 -/FontDescriptor 1440 0 R +/FontDescriptor 1474 0 R /FirstChar 66 /LastChar 122 -/Widths 1414 0 R -/Encoding 1395 0 R +/Widths 1448 0 R +/Encoding 1429 0 R >> endobj -534 0 obj << +543 0 obj << /Type /Font /Subtype /Type1 /BaseFont /VTXNUC+SFSL1095 -/FontDescriptor 1442 0 R +/FontDescriptor 1476 0 R /FirstChar 27 /LastChar 252 -/Widths 1408 0 R -/Encoding 1395 0 R +/Widths 1442 0 R +/Encoding 1429 0 R >> endobj -491 0 obj << +499 0 obj << /Type /Font /Subtype /Type1 /BaseFont /HIMHFX+SFSX1095 -/FontDescriptor 1444 0 R +/FontDescriptor 1478 0 R /FirstChar 45 /LastChar 252 -/Widths 1409 0 R -/Encoding 1395 0 R +/Widths 1443 0 R +/Encoding 1429 0 R >> endobj -600 0 obj << +610 0 obj << /Type /Font /Subtype /Type1 /BaseFont /NUXKCX+SFSX1200 -/FontDescriptor 1446 0 R +/FontDescriptor 1480 0 R /FirstChar 45 /LastChar 252 -/Widths 1401 0 R -/Encoding 1395 0 R +/Widths 1435 0 R +/Encoding 1429 0 R >> endobj -594 0 obj << +604 0 obj << /Type /Font /Subtype /Type1 /BaseFont /PZKPTQ+SFSX1440 -/FontDescriptor 1448 0 R +/FontDescriptor 1482 0 R /FirstChar 28 /LastChar 252 -/Widths 1406 0 R -/Encoding 1395 0 R +/Widths 1440 0 R +/Encoding 1429 0 R >> endobj -489 0 obj << +497 0 obj << /Type /Font /Subtype /Type1 /BaseFont /WSGQMF+SFSX2074 -/FontDescriptor 1450 0 R +/FontDescriptor 1484 0 R /FirstChar 45 /LastChar 252 -/Widths 1410 0 R -/Encoding 1395 0 R +/Widths 1444 0 R +/Encoding 1429 0 R >> endobj -648 0 obj << +658 0 obj << /Type /Font /Subtype /Type1 /BaseFont /CKSKYH+SFTI1095 -/FontDescriptor 1452 0 R +/FontDescriptor 1486 0 R /FirstChar 28 /LastChar 252 -/Widths 1399 0 R -/Encoding 1395 0 R +/Widths 1433 0 R +/Encoding 1429 0 R >> endobj -597 0 obj << +607 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MPCDJE+LCIRCLE10 -/FontDescriptor 1418 0 R +/FontDescriptor 1452 0 R /FirstChar 109 /LastChar 125 -/Widths 1404 0 R +/Widths 1438 0 R >> endobj -596 0 obj << +606 0 obj << /Type /Font /Subtype /Type1 /BaseFont /UGMIGW+LINEW10 -/FontDescriptor 1420 0 R +/FontDescriptor 1454 0 R /FirstChar 0 /LastChar 113 -/Widths 1405 0 R +/Widths 1439 0 R >> endobj -443 0 obj << +451 0 obj << /Type /Pages /Count 6 -/Parent 1453 0 R -/Kids [434 0 R 446 0 R 486 0 R 531 0 R 570 0 R 574 0 R] +/Parent 1487 0 R +/Kids [442 0 R 454 0 R 494 0 R 540 0 R 580 0 R 584 0 R] >> endobj -581 0 obj << +591 0 obj << /Type /Pages /Count 6 -/Parent 1453 0 R -/Kids [578 0 R 583 0 R 591 0 R 605 0 R 611 0 R 633 0 R] +/Parent 1487 0 R +/Kids [588 0 R 593 0 R 601 0 R 615 0 R 621 0 R 643 0 R] >> endobj -638 0 obj << +648 0 obj << /Type /Pages /Count 6 -/Parent 1453 0 R -/Kids [636 0 R 640 0 R 645 0 R 651 0 R 662 0 R 673 0 R] +/Parent 1487 0 R +/Kids [646 0 R 650 0 R 655 0 R 661 0 R 672 0 R 683 0 R] >> endobj -686 0 obj << +696 0 obj << /Type /Pages /Count 6 -/Parent 1453 0 R -/Kids [678 0 R 691 0 R 702 0 R 707 0 R 714 0 R 724 0 R] +/Parent 1487 0 R +/Kids [688 0 R 701 0 R 712 0 R 717 0 R 724 0 R 734 0 R] >> endobj -737 0 obj << +747 0 obj << /Type /Pages /Count 6 -/Parent 1453 0 R -/Kids [732 0 R 739 0 R 744 0 R 750 0 R 755 0 R 759 0 R] +/Parent 1487 0 R +/Kids [742 0 R 749 0 R 754 0 R 760 0 R 765 0 R 771 0 R] >> endobj -770 0 obj << +779 0 obj << /Type /Pages /Count 6 -/Parent 1453 0 R -/Kids [766 0 R 773 0 R 780 0 R 788 0 R 794 0 R 801 0 R] +/Parent 1487 0 R +/Kids [776 0 R 782 0 R 786 0 R 792 0 R 799 0 R 805 0 R] >> endobj -810 0 obj << +816 0 obj << /Type /Pages /Count 6 -/Parent 1454 0 R -/Kids [806 0 R 813 0 R 819 0 R 825 0 R 829 0 R 833 0 R] +/Parent 1488 0 R +/Kids [812 0 R 821 0 R 827 0 R 834 0 R 839 0 R 845 0 R] >> endobj -845 0 obj << +855 0 obj << /Type /Pages /Count 6 -/Parent 1454 0 R -/Kids [840 0 R 850 0 R 864 0 R 874 0 R 880 0 R 887 0 R] +/Parent 1488 0 R +/Kids [851 0 R 858 0 R 862 0 R 866 0 R 873 0 R 882 0 R] >> endobj -899 0 obj << +902 0 obj << /Type /Pages /Count 6 -/Parent 1454 0 R -/Kids [896 0 R 902 0 R 909 0 R 915 0 R 921 0 R 927 0 R] +/Parent 1488 0 R +/Kids [896 0 R 907 0 R 913 0 R 920 0 R 929 0 R 934 0 R] >> endobj -937 0 obj << +945 0 obj << /Type /Pages /Count 6 -/Parent 1454 0 R -/Kids [933 0 R 940 0 R 944 0 R 948 0 R 954 0 R 959 0 R] +/Parent 1488 0 R +/Kids [941 0 R 948 0 R 954 0 R 960 0 R 966 0 R 972 0 R] >> endobj -971 0 obj << +979 0 obj << /Type /Pages /Count 6 -/Parent 1454 0 R -/Kids [966 0 R 983 0 R 992 0 R 1005 0 R 1011 0 R 1018 0 R] +/Parent 1488 0 R +/Kids [976 0 R 981 0 R 987 0 R 992 0 R 999 0 R 1015 0 R] >> endobj -1032 0 obj << +1028 0 obj << /Type /Pages /Count 6 -/Parent 1454 0 R -/Kids [1027 0 R 1036 0 R 1041 0 R 1045 0 R 1051 0 R 1057 0 R] +/Parent 1488 0 R +/Kids [1024 0 R 1038 0 R 1044 0 R 1051 0 R 1060 0 R 1068 0 R] >> endobj -1067 0 obj << +1076 0 obj << /Type /Pages /Count 6 -/Parent 1455 0 R -/Kids [1063 0 R 1070 0 R 1076 0 R 1083 0 R 1092 0 R 1098 0 R] +/Parent 1489 0 R +/Kids [1073 0 R 1078 0 R 1084 0 R 1090 0 R 1096 0 R 1102 0 R] >> endobj -1120 0 obj << +1112 0 obj << /Type /Pages /Count 6 -/Parent 1455 0 R -/Kids [1116 0 R 1126 0 R 1130 0 R 1137 0 R 1143 0 R 1147 0 R] +/Parent 1489 0 R +/Kids [1108 0 R 1115 0 R 1124 0 R 1130 0 R 1148 0 R 1157 0 R] >> endobj -1156 0 obj << +1164 0 obj << /Type /Pages /Count 6 -/Parent 1455 0 R -/Kids [1152 0 R 1162 0 R 1169 0 R 1177 0 R 1186 0 R 1191 0 R] +/Parent 1489 0 R +/Kids [1161 0 R 1169 0 R 1175 0 R 1179 0 R 1184 0 R 1193 0 R] >> endobj -1206 0 obj << +1204 0 obj << /Type /Pages /Count 6 -/Parent 1455 0 R -/Kids [1201 0 R 1211 0 R 1216 0 R 1223 0 R 1233 0 R 1243 0 R] +/Parent 1489 0 R +/Kids [1200 0 R 1209 0 R 1218 0 R 1223 0 R 1233 0 R 1242 0 R] >> endobj -1258 0 obj << +1250 0 obj << /Type /Pages /Count 6 -/Parent 1455 0 R -/Kids [1254 0 R 1260 0 R 1266 0 R 1274 0 R 1284 0 R 1290 0 R] +/Parent 1489 0 R +/Kids [1247 0 R 1255 0 R 1265 0 R 1275 0 R 1286 0 R 1291 0 R] >> endobj -1297 0 obj << +1301 0 obj << /Type /Pages /Count 6 -/Parent 1455 0 R -/Kids [1294 0 R 1299 0 R 1307 0 R 1312 0 R 1347 0 R 1392 0 R] +/Parent 1489 0 R +/Kids [1297 0 R 1306 0 R 1316 0 R 1322 0 R 1326 0 R 1330 0 R] >> endobj -1453 0 obj << +1342 0 obj << +/Type /Pages +/Count 4 +/Parent 1490 0 R +/Kids [1338 0 R 1344 0 R 1380 0 R 1426 0 R] +>> endobj +1487 0 obj << /Type /Pages /Count 36 -/Parent 1456 0 R -/Kids [443 0 R 581 0 R 638 0 R 686 0 R 737 0 R 770 0 R] +/Parent 1491 0 R +/Kids [451 0 R 591 0 R 648 0 R 696 0 R 747 0 R 779 0 R] >> endobj -1454 0 obj << +1488 0 obj << /Type /Pages /Count 36 -/Parent 1456 0 R -/Kids [810 0 R 845 0 R 899 0 R 937 0 R 971 0 R 1032 0 R] +/Parent 1491 0 R +/Kids [816 0 R 855 0 R 902 0 R 945 0 R 979 0 R 1028 0 R] >> endobj -1455 0 obj << +1489 0 obj << /Type /Pages /Count 36 -/Parent 1456 0 R -/Kids [1067 0 R 1120 0 R 1156 0 R 1206 0 R 1258 0 R 1297 0 R] +/Parent 1491 0 R +/Kids [1076 0 R 1112 0 R 1164 0 R 1204 0 R 1250 0 R 1301 0 R] >> endobj -1456 0 obj << +1490 0 obj << /Type /Pages -/Count 108 -/Kids [1453 0 R 1454 0 R 1455 0 R] +/Count 4 +/Parent 1491 0 R +/Kids [1342 0 R] >> endobj -1457 0 obj << +1491 0 obj << +/Type /Pages +/Count 112 +/Kids [1487 0 R 1488 0 R 1489 0 R 1490 0 R] +>> endobj +1492 0 obj << /Type /Outlines /First 7 0 R -/Last 431 0 R +/Last 439 0 R /Count 26 >> endobj +439 0 obj << +/Title 440 0 R +/A 437 0 R +/Parent 1492 0 R +/Prev 415 0 R +>> endobj +435 0 obj << +/Title 436 0 R +/A 433 0 R +/Parent 415 0 R +/Prev 431 0 R +>> endobj 431 0 obj << /Title 432 0 R /A 429 0 R -/Parent 1457 0 R -/Prev 407 0 R +/Parent 415 0 R +/Prev 427 0 R +/Next 435 0 R >> endobj 427 0 obj << /Title 428 0 R /A 425 0 R -/Parent 407 0 R +/Parent 415 0 R /Prev 423 0 R +/Next 431 0 R >> endobj 423 0 obj << /Title 424 0 R /A 421 0 R -/Parent 407 0 R +/Parent 415 0 R /Prev 419 0 R /Next 427 0 R >> endobj 419 0 obj << /Title 420 0 R /A 417 0 R -/Parent 407 0 R -/Prev 415 0 R +/Parent 415 0 R /Next 423 0 R >> endobj 415 0 obj << /Title 416 0 R /A 413 0 R -/Parent 407 0 R -/Prev 411 0 R -/Next 419 0 R +/Parent 1492 0 R +/Prev 403 0 R +/Next 439 0 R +/First 419 0 R +/Last 435 0 R +/Count -5 >> endobj 411 0 obj << /Title 412 0 R /A 409 0 R -/Parent 407 0 R -/Next 415 0 R +/Parent 403 0 R +/Prev 407 0 R >> endobj 407 0 obj << /Title 408 0 R /A 405 0 R -/Parent 1457 0 R -/Prev 395 0 R -/Next 431 0 R -/First 411 0 R -/Last 427 0 R -/Count -5 +/Parent 403 0 R +/Next 411 0 R >> endobj 403 0 obj << /Title 404 0 R /A 401 0 R -/Parent 395 0 R -/Prev 399 0 R +/Parent 1492 0 R +/Prev 367 0 R +/Next 415 0 R +/First 407 0 R +/Last 411 0 R +/Count -2 >> endobj 399 0 obj << /Title 400 0 R /A 397 0 R -/Parent 395 0 R -/Next 403 0 R +/Parent 367 0 R +/Prev 375 0 R >> endobj 395 0 obj << /Title 396 0 R /A 393 0 R -/Parent 1457 0 R -/Prev 359 0 R -/Next 407 0 R -/First 399 0 R -/Last 403 0 R -/Count -2 +/Parent 375 0 R +/Prev 391 0 R >> endobj 391 0 obj << /Title 392 0 R /A 389 0 R -/Parent 359 0 R -/Prev 367 0 R +/Parent 375 0 R +/Prev 387 0 R +/Next 395 0 R >> endobj 387 0 obj << /Title 388 0 R /A 385 0 R -/Parent 367 0 R +/Parent 375 0 R /Prev 383 0 R +/Next 391 0 R >> endobj 383 0 obj << /Title 384 0 R /A 381 0 R -/Parent 367 0 R +/Parent 375 0 R /Prev 379 0 R /Next 387 0 R >> endobj 379 0 obj << /Title 380 0 R /A 377 0 R -/Parent 367 0 R -/Prev 375 0 R +/Parent 375 0 R /Next 383 0 R >> endobj 375 0 obj << @@ -16029,7 +16825,10 @@ endobj /A 373 0 R /Parent 367 0 R /Prev 371 0 R -/Next 379 0 R +/Next 399 0 R +/First 379 0 R +/Last 395 0 R +/Count -5 >> endobj 371 0 obj << /Title 372 0 R @@ -16040,354 +16839,354 @@ endobj 367 0 obj << /Title 368 0 R /A 365 0 R -/Parent 359 0 R -/Prev 363 0 R -/Next 391 0 R +/Parent 1492 0 R +/Prev 315 0 R +/Next 403 0 R /First 371 0 R -/Last 387 0 R -/Count -5 +/Last 399 0 R +/Count -3 >> endobj 363 0 obj << /Title 364 0 R /A 361 0 R -/Parent 359 0 R -/Next 367 0 R +/Parent 351 0 R +/Prev 359 0 R >> endobj 359 0 obj << /Title 360 0 R /A 357 0 R -/Parent 1457 0 R -/Prev 307 0 R -/Next 395 0 R -/First 363 0 R -/Last 391 0 R -/Count -3 +/Parent 351 0 R +/Prev 355 0 R +/Next 363 0 R >> endobj 355 0 obj << /Title 356 0 R /A 353 0 R -/Parent 343 0 R -/Prev 351 0 R +/Parent 351 0 R +/Next 359 0 R >> endobj 351 0 obj << /Title 352 0 R /A 349 0 R -/Parent 343 0 R -/Prev 347 0 R -/Next 355 0 R +/Parent 315 0 R +/Prev 339 0 R +/First 355 0 R +/Last 363 0 R +/Count -3 >> endobj 347 0 obj << /Title 348 0 R /A 345 0 R -/Parent 343 0 R -/Next 351 0 R +/Parent 339 0 R +/Prev 343 0 R >> endobj 343 0 obj << /Title 344 0 R /A 341 0 R -/Parent 307 0 R -/Prev 331 0 R -/First 347 0 R -/Last 355 0 R -/Count -3 +/Parent 339 0 R +/Next 347 0 R >> endobj 339 0 obj << /Title 340 0 R /A 337 0 R -/Parent 331 0 R -/Prev 335 0 R +/Parent 315 0 R +/Prev 319 0 R +/Next 351 0 R +/First 343 0 R +/Last 347 0 R +/Count -2 >> endobj 335 0 obj << /Title 336 0 R /A 333 0 R -/Parent 331 0 R -/Next 339 0 R +/Parent 319 0 R +/Prev 331 0 R >> endobj 331 0 obj << /Title 332 0 R /A 329 0 R -/Parent 307 0 R -/Prev 311 0 R -/Next 343 0 R -/First 335 0 R -/Last 339 0 R -/Count -2 +/Parent 319 0 R +/Prev 327 0 R +/Next 335 0 R >> endobj 327 0 obj << /Title 328 0 R /A 325 0 R -/Parent 311 0 R +/Parent 319 0 R /Prev 323 0 R +/Next 331 0 R >> endobj 323 0 obj << /Title 324 0 R /A 321 0 R -/Parent 311 0 R -/Prev 319 0 R +/Parent 319 0 R /Next 327 0 R >> endobj 319 0 obj << /Title 320 0 R /A 317 0 R -/Parent 311 0 R -/Prev 315 0 R -/Next 323 0 R +/Parent 315 0 R +/Next 339 0 R +/First 323 0 R +/Last 335 0 R +/Count -4 >> endobj 315 0 obj << /Title 316 0 R /A 313 0 R -/Parent 311 0 R -/Next 319 0 R +/Parent 1492 0 R +/Prev 307 0 R +/Next 367 0 R +/First 319 0 R +/Last 351 0 R +/Count -3 >> endobj 311 0 obj << /Title 312 0 R /A 309 0 R /Parent 307 0 R -/Next 331 0 R -/First 315 0 R -/Last 327 0 R -/Count -4 >> endobj 307 0 obj << /Title 308 0 R /A 305 0 R -/Parent 1457 0 R -/Prev 299 0 R -/Next 359 0 R +/Parent 1492 0 R +/Prev 303 0 R +/Next 315 0 R /First 311 0 R -/Last 343 0 R -/Count -3 +/Last 311 0 R +/Count -1 >> endobj 303 0 obj << /Title 304 0 R /A 301 0 R -/Parent 299 0 R +/Parent 1492 0 R +/Prev 291 0 R +/Next 307 0 R >> endobj 299 0 obj << /Title 300 0 R /A 297 0 R -/Parent 1457 0 R +/Parent 291 0 R /Prev 295 0 R -/Next 307 0 R -/First 303 0 R -/Last 303 0 R -/Count -1 >> endobj 295 0 obj << /Title 296 0 R /A 293 0 R -/Parent 1457 0 R -/Prev 283 0 R +/Parent 291 0 R /Next 299 0 R >> endobj 291 0 obj << /Title 292 0 R /A 289 0 R -/Parent 283 0 R -/Prev 287 0 R +/Parent 1492 0 R +/Prev 275 0 R +/Next 303 0 R +/First 295 0 R +/Last 299 0 R +/Count -2 >> endobj 287 0 obj << /Title 288 0 R /A 285 0 R -/Parent 283 0 R -/Next 291 0 R +/Parent 275 0 R +/Prev 283 0 R >> endobj 283 0 obj << /Title 284 0 R /A 281 0 R -/Parent 1457 0 R -/Prev 267 0 R -/Next 295 0 R -/First 287 0 R -/Last 291 0 R -/Count -2 +/Parent 275 0 R +/Prev 279 0 R +/Next 287 0 R >> endobj 279 0 obj << /Title 280 0 R /A 277 0 R -/Parent 267 0 R -/Prev 275 0 R +/Parent 275 0 R +/Next 283 0 R >> endobj 275 0 obj << /Title 276 0 R /A 273 0 R -/Parent 267 0 R -/Prev 271 0 R -/Next 279 0 R +/Parent 1492 0 R +/Prev 235 0 R +/Next 291 0 R +/First 279 0 R +/Last 287 0 R +/Count -3 >> endobj 271 0 obj << /Title 272 0 R /A 269 0 R -/Parent 267 0 R -/Next 275 0 R +/Parent 235 0 R +/Prev 267 0 R >> endobj 267 0 obj << /Title 268 0 R /A 265 0 R -/Parent 1457 0 R -/Prev 227 0 R -/Next 283 0 R -/First 271 0 R -/Last 279 0 R -/Count -3 +/Parent 235 0 R +/Prev 263 0 R +/Next 271 0 R >> endobj 263 0 obj << /Title 264 0 R /A 261 0 R -/Parent 227 0 R +/Parent 235 0 R /Prev 259 0 R +/Next 267 0 R >> endobj 259 0 obj << /Title 260 0 R /A 257 0 R -/Parent 227 0 R +/Parent 235 0 R /Prev 255 0 R /Next 263 0 R >> endobj 255 0 obj << /Title 256 0 R /A 253 0 R -/Parent 227 0 R -/Prev 251 0 R +/Parent 235 0 R +/Prev 239 0 R /Next 259 0 R >> endobj 251 0 obj << /Title 252 0 R /A 249 0 R -/Parent 227 0 R +/Parent 239 0 R /Prev 247 0 R -/Next 255 0 R >> endobj 247 0 obj << /Title 248 0 R /A 245 0 R -/Parent 227 0 R -/Prev 231 0 R +/Parent 239 0 R +/Prev 243 0 R /Next 251 0 R >> endobj 243 0 obj << /Title 244 0 R /A 241 0 R -/Parent 231 0 R -/Prev 239 0 R +/Parent 239 0 R +/Next 247 0 R >> endobj 239 0 obj << /Title 240 0 R /A 237 0 R -/Parent 231 0 R -/Prev 235 0 R -/Next 243 0 R +/Parent 235 0 R +/Next 255 0 R +/First 243 0 R +/Last 251 0 R +/Count -3 >> endobj 235 0 obj << /Title 236 0 R /A 233 0 R -/Parent 231 0 R -/Next 239 0 R +/Parent 1492 0 R +/Prev 227 0 R +/Next 275 0 R +/First 239 0 R +/Last 271 0 R +/Count -6 >> endobj 231 0 obj << /Title 232 0 R /A 229 0 R /Parent 227 0 R -/Next 247 0 R -/First 235 0 R -/Last 243 0 R -/Count -3 >> endobj 227 0 obj << /Title 228 0 R /A 225 0 R -/Parent 1457 0 R -/Prev 219 0 R -/Next 267 0 R +/Parent 1492 0 R +/Prev 223 0 R +/Next 235 0 R /First 231 0 R -/Last 263 0 R -/Count -6 +/Last 231 0 R +/Count -1 >> endobj 223 0 obj << /Title 224 0 R /A 221 0 R -/Parent 219 0 R +/Parent 1492 0 R +/Prev 215 0 R +/Next 227 0 R >> endobj 219 0 obj << /Title 220 0 R /A 217 0 R -/Parent 1457 0 R -/Prev 215 0 R -/Next 227 0 R -/First 223 0 R -/Last 223 0 R -/Count -1 +/Parent 215 0 R >> endobj 215 0 obj << /Title 216 0 R /A 213 0 R -/Parent 1457 0 R -/Prev 207 0 R -/Next 219 0 R +/Parent 1492 0 R +/Prev 203 0 R +/Next 223 0 R +/First 219 0 R +/Last 219 0 R +/Count -1 >> endobj 211 0 obj << /Title 212 0 R /A 209 0 R -/Parent 207 0 R +/Parent 203 0 R +/Prev 207 0 R >> endobj 207 0 obj << /Title 208 0 R /A 205 0 R -/Parent 1457 0 R -/Prev 195 0 R -/Next 215 0 R -/First 211 0 R -/Last 211 0 R -/Count -1 +/Parent 203 0 R +/Next 211 0 R >> endobj 203 0 obj << /Title 204 0 R /A 201 0 R -/Parent 195 0 R -/Prev 199 0 R +/Parent 1492 0 R +/Prev 195 0 R +/Next 215 0 R +/First 207 0 R +/Last 211 0 R +/Count -2 >> endobj 199 0 obj << /Title 200 0 R /A 197 0 R /Parent 195 0 R -/Next 203 0 R >> endobj 195 0 obj << /Title 196 0 R /A 193 0 R -/Parent 1457 0 R -/Prev 187 0 R -/Next 207 0 R +/Parent 1492 0 R +/Prev 171 0 R +/Next 203 0 R /First 199 0 R -/Last 203 0 R -/Count -2 +/Last 199 0 R +/Count -1 >> endobj 191 0 obj << /Title 192 0 R /A 189 0 R -/Parent 187 0 R +/Parent 171 0 R +/Prev 179 0 R >> endobj 187 0 obj << /Title 188 0 R /A 185 0 R -/Parent 1457 0 R -/Prev 163 0 R -/Next 195 0 R -/First 191 0 R -/Last 191 0 R -/Count -1 +/Parent 179 0 R +/Prev 183 0 R >> endobj 183 0 obj << /Title 184 0 R /A 181 0 R -/Parent 163 0 R -/Prev 171 0 R +/Parent 179 0 R +/Next 187 0 R >> endobj 179 0 obj << /Title 180 0 R /A 177 0 R /Parent 171 0 R /Prev 175 0 R +/Next 191 0 R +/First 183 0 R +/Last 187 0 R +/Count -2 >> endobj 175 0 obj << /Title 176 0 R @@ -16398,160 +17197,158 @@ endobj 171 0 obj << /Title 172 0 R /A 169 0 R -/Parent 163 0 R -/Prev 167 0 R -/Next 183 0 R +/Parent 1492 0 R +/Prev 159 0 R +/Next 195 0 R /First 175 0 R -/Last 179 0 R -/Count -2 +/Last 191 0 R +/Count -3 >> endobj 167 0 obj << /Title 168 0 R /A 165 0 R -/Parent 163 0 R -/Next 171 0 R +/Parent 159 0 R +/Prev 163 0 R >> endobj 163 0 obj << /Title 164 0 R /A 161 0 R -/Parent 1457 0 R -/Prev 151 0 R -/Next 187 0 R -/First 167 0 R -/Last 183 0 R -/Count -3 +/Parent 159 0 R +/Next 167 0 R >> endobj 159 0 obj << /Title 160 0 R /A 157 0 R -/Parent 151 0 R -/Prev 155 0 R +/Parent 1492 0 R +/Prev 147 0 R +/Next 171 0 R +/First 163 0 R +/Last 167 0 R +/Count -2 >> endobj 155 0 obj << /Title 156 0 R /A 153 0 R -/Parent 151 0 R -/Next 159 0 R +/Parent 147 0 R +/Prev 151 0 R >> endobj 151 0 obj << /Title 152 0 R /A 149 0 R -/Parent 1457 0 R -/Prev 139 0 R -/Next 163 0 R -/First 155 0 R -/Last 159 0 R -/Count -2 +/Parent 147 0 R +/Next 155 0 R >> endobj 147 0 obj << /Title 148 0 R /A 145 0 R -/Parent 139 0 R -/Prev 143 0 R +/Parent 1492 0 R +/Prev 139 0 R +/Next 159 0 R +/First 151 0 R +/Last 155 0 R +/Count -2 >> endobj 143 0 obj << /Title 144 0 R /A 141 0 R /Parent 139 0 R -/Next 147 0 R >> endobj 139 0 obj << /Title 140 0 R /A 137 0 R -/Parent 1457 0 R -/Prev 131 0 R -/Next 151 0 R +/Parent 1492 0 R +/Prev 123 0 R +/Next 147 0 R /First 143 0 R -/Last 147 0 R -/Count -2 +/Last 143 0 R +/Count -1 >> endobj 135 0 obj << /Title 136 0 R /A 133 0 R -/Parent 131 0 R +/Parent 123 0 R +/Prev 131 0 R >> endobj 131 0 obj << /Title 132 0 R /A 129 0 R -/Parent 1457 0 R -/Prev 115 0 R -/Next 139 0 R -/First 135 0 R -/Last 135 0 R -/Count -1 +/Parent 123 0 R +/Prev 127 0 R +/Next 135 0 R >> endobj 127 0 obj << /Title 128 0 R /A 125 0 R -/Parent 115 0 R -/Prev 123 0 R +/Parent 123 0 R +/Next 131 0 R >> endobj 123 0 obj << /Title 124 0 R /A 121 0 R -/Parent 115 0 R +/Parent 1492 0 R /Prev 119 0 R -/Next 127 0 R +/Next 139 0 R +/First 127 0 R +/Last 135 0 R +/Count -3 >> endobj 119 0 obj << /Title 120 0 R /A 117 0 R -/Parent 115 0 R +/Parent 1492 0 R +/Prev 103 0 R /Next 123 0 R >> endobj 115 0 obj << /Title 116 0 R /A 113 0 R -/Parent 1457 0 R +/Parent 103 0 R /Prev 111 0 R -/Next 131 0 R -/First 119 0 R -/Last 127 0 R -/Count -3 >> endobj 111 0 obj << /Title 112 0 R /A 109 0 R -/Parent 1457 0 R -/Prev 99 0 R +/Parent 103 0 R +/Prev 107 0 R /Next 115 0 R >> endobj 107 0 obj << /Title 108 0 R /A 105 0 R -/Parent 99 0 R -/Prev 103 0 R +/Parent 103 0 R +/Next 111 0 R >> endobj 103 0 obj << /Title 104 0 R /A 101 0 R -/Parent 99 0 R -/Next 107 0 R +/Parent 1492 0 R +/Prev 91 0 R +/Next 119 0 R +/First 107 0 R +/Last 115 0 R +/Count -3 >> endobj 99 0 obj << /Title 100 0 R /A 97 0 R -/Parent 1457 0 R -/Prev 91 0 R -/Next 111 0 R -/First 103 0 R -/Last 107 0 R -/Count -2 +/Parent 91 0 R +/Prev 95 0 R >> endobj 95 0 obj << /Title 96 0 R /A 93 0 R /Parent 91 0 R +/Next 99 0 R >> endobj 91 0 obj << /Title 92 0 R /A 89 0 R -/Parent 1457 0 R +/Parent 1492 0 R /Prev 35 0 R -/Next 99 0 R +/Next 103 0 R /First 95 0 R -/Last 95 0 R -/Count -1 +/Last 99 0 R +/Count -2 >> endobj 87 0 obj << /Title 88 0 R @@ -16648,7 +17445,7 @@ endobj 35 0 obj << /Title 36 0 R /A 33 0 R -/Parent 1457 0 R +/Parent 1492 0 R /Prev 11 0 R /Next 91 0 R /First 39 0 R @@ -16692,7 +17489,7 @@ endobj 11 0 obj << /Title 12 0 R /A 9 0 R -/Parent 1457 0 R +/Parent 1492 0 R /Prev 7 0 R /Next 35 0 R /First 15 0 R @@ -16702,1825 +17499,1870 @@ endobj 7 0 obj << /Title 8 0 R /A 5 0 R -/Parent 1457 0 R +/Parent 1492 0 R /Next 11 0 R >> endobj -1458 0 obj << -/Names [(Doc-Start) 439 0 R (Item.1) 665 0 R (Item.10) 711 0 R (Item.11) 717 0 R (Item.12) 718 0 R (Item.13) 719 0 R] +1493 0 obj << +/Names [(Doc-Start) 447 0 R (Item.1) 675 0 R (Item.10) 721 0 R (Item.11) 727 0 R (Item.12) 728 0 R (Item.13) 729 0 R] /Limits [(Doc-Start) (Item.13)] >> endobj -1459 0 obj << -/Names [(Item.14) 727 0 R (Item.15) 728 0 R (Item.16) 729 0 R (Item.17) 853 0 R (Item.18) 854 0 R (Item.19) 855 0 R] +1494 0 obj << +/Names [(Item.14) 737 0 R (Item.15) 738 0 R (Item.16) 739 0 R (Item.17) 885 0 R (Item.18) 886 0 R (Item.19) 887 0 R] /Limits [(Item.14) (Item.19)] >> endobj -1460 0 obj << -/Names [(Item.2) 666 0 R (Item.20) 856 0 R (Item.21) 857 0 R (Item.22) 858 0 R (Item.23) 868 0 R (Item.24) 869 0 R] +1495 0 obj << +/Names [(Item.2) 676 0 R (Item.20) 888 0 R (Item.21) 889 0 R (Item.22) 890 0 R (Item.23) 900 0 R (Item.24) 901 0 R] /Limits [(Item.2) (Item.24)] >> endobj -1461 0 obj << -/Names [(Item.25) 1030 0 R (Item.26) 1031 0 R (Item.27) 1165 0 R (Item.28) 1180 0 R (Item.29) 1181 0 R (Item.3) 668 0 R] +1496 0 obj << +/Names [(Item.25) 1063 0 R (Item.26) 1064 0 R (Item.27) 1196 0 R (Item.28) 1212 0 R (Item.29) 1213 0 R (Item.3) 678 0 R] /Limits [(Item.25) (Item.3)] >> endobj -1462 0 obj << -/Names [(Item.30) 1247 0 R (Item.31) 1248 0 R (Item.32) 1249 0 R (Item.33) 1278 0 R (Item.34) 1287 0 R (Item.4) 669 0 R] +1497 0 obj << +/Names [(Item.30) 1279 0 R (Item.31) 1280 0 R (Item.32) 1281 0 R (Item.33) 1310 0 R (Item.34) 1319 0 R (Item.4) 679 0 R] /Limits [(Item.30) (Item.4)] >> endobj -1463 0 obj << -/Names [(Item.5) 681 0 R (Item.6) 682 0 R (Item.7) 683 0 R (Item.8) 684 0 R (Item.9) 710 0 R (appendix*.78) 1310 0 R] -/Limits [(Item.5) (appendix*.78)] ->> endobj -1464 0 obj << -/Names [(appendix*.79) 1350 0 R (appendix.A) 430 0 R (chapter*.1) 490 0 R (chapter*.2) 6 0 R (chapter.1) 10 0 R (chapter.10) 162 0 R] -/Limits [(appendix*.79) (chapter.10)] ->> endobj -1465 0 obj << -/Names [(chapter.11) 186 0 R (chapter.12) 194 0 R (chapter.13) 206 0 R (chapter.14) 214 0 R (chapter.15) 218 0 R (chapter.16) 226 0 R] -/Limits [(chapter.11) (chapter.16)] ->> endobj -1466 0 obj << -/Names [(chapter.17) 266 0 R (chapter.18) 282 0 R (chapter.19) 294 0 R (chapter.2) 34 0 R (chapter.20) 298 0 R (chapter.21) 306 0 R] -/Limits [(chapter.17) (chapter.21)] ->> endobj -1467 0 obj << -/Names [(chapter.22) 358 0 R (chapter.23) 394 0 R (chapter.24) 406 0 R (chapter.3) 90 0 R (chapter.4) 98 0 R (chapter.5) 110 0 R] -/Limits [(chapter.22) (chapter.5)] ->> endobj -1468 0 obj << -/Names [(chapter.6) 114 0 R (chapter.7) 130 0 R (chapter.8) 138 0 R (chapter.9) 150 0 R (figure.xxx.10) 694 0 R (figure.xxx.11) 705 0 R] -/Limits [(chapter.6) (figure.xxx.11)] ->> endobj -1469 0 obj << -/Names [(figure.xxx.12) 721 0 R (figure.xxx.13) 735 0 R (figure.xxx.14) 747 0 R (figure.xxx.15) 769 0 R (figure.xxx.16) 771 0 R (figure.xxx.17) 783 0 R] -/Limits [(figure.xxx.12) (figure.xxx.17)] ->> endobj -1470 0 obj << -/Names [(figure.xxx.18) 785 0 R (figure.xxx.19) 797 0 R (figure.xxx.21) 809 0 R (figure.xxx.22) 822 0 R (figure.xxx.24) 844 0 R (figure.xxx.25) 847 0 R] -/Limits [(figure.xxx.18) (figure.xxx.25)] ->> endobj -1471 0 obj << -/Names [(figure.xxx.26) 867 0 R (figure.xxx.27) 877 0 R (figure.xxx.28) 883 0 R (figure.xxx.29) 890 0 R (figure.xxx.3) 595 0 R (figure.xxx.30) 905 0 R] -/Limits [(figure.xxx.26) (figure.xxx.30)] ->> endobj -1472 0 obj << -/Names [(figure.xxx.31) 912 0 R (figure.xxx.32) 924 0 R (figure.xxx.33) 936 0 R (figure.xxx.34) 957 0 R (figure.xxx.35) 969 0 R (figure.xxx.36) 970 0 R] -/Limits [(figure.xxx.31) (figure.xxx.36)] ->> endobj -1473 0 obj << -/Names [(figure.xxx.37) 986 0 R (figure.xxx.38) 987 0 R (figure.xxx.39) 995 0 R (figure.xxx.4) 603 0 R (figure.xxx.40) 996 0 R (figure.xxx.41) 997 0 R] -/Limits [(figure.xxx.37) (figure.xxx.41)] ->> endobj -1474 0 obj << -/Names [(figure.xxx.42) 998 0 R (figure.xxx.43) 1008 0 R (figure.xxx.44) 1009 0 R (figure.xxx.45) 1021 0 R (figure.xxx.46) 1033 0 R (figure.xxx.47) 1039 0 R] -/Limits [(figure.xxx.42) (figure.xxx.47)] ->> endobj -1475 0 obj << -/Names [(figure.xxx.48) 1054 0 R (figure.xxx.49) 1066 0 R (figure.xxx.5) 613 0 R (figure.xxx.50) 1079 0 R (figure.xxx.51) 1095 0 R (figure.xxx.52) 1101 0 R] -/Limits [(figure.xxx.48) (figure.xxx.52)] ->> endobj -1476 0 obj << -/Names [(figure.xxx.53) 1103 0 R (figure.xxx.54) 1119 0 R (figure.xxx.55) 1121 0 R (figure.xxx.56) 1122 0 R (figure.xxx.57) 1123 0 R (figure.xxx.58) 1124 0 R] -/Limits [(figure.xxx.53) (figure.xxx.58)] ->> endobj -1477 0 obj << -/Names [(figure.xxx.59) 1140 0 R (figure.xxx.6) 649 0 R (figure.xxx.60) 1155 0 R (figure.xxx.61) 1166 0 R (figure.xxx.64) 1189 0 R (figure.xxx.65) 1204 0 R] -/Limits [(figure.xxx.59) (figure.xxx.65)] ->> endobj -1478 0 obj << -/Names [(figure.xxx.66) 1205 0 R (figure.xxx.67) 1207 0 R (figure.xxx.68) 1214 0 R (figure.xxx.69) 1226 0 R (figure.xxx.7) 667 0 R (figure.xxx.70) 1236 0 R] -/Limits [(figure.xxx.66) (figure.xxx.70)] ->> endobj -1479 0 obj << -/Names [(figure.xxx.71) 1237 0 R (figure.xxx.72) 1246 0 R (figure.xxx.73) 1250 0 R (figure.xxx.74) 1257 0 R (figure.xxx.75) 1269 0 R (figure.xxx.76) 1277 0 R] -/Limits [(figure.xxx.71) (figure.xxx.76)] ->> endobj -1480 0 obj << -/Names [(figure.xxx.77) 1288 0 R (figure.xxx.8) 671 0 R (figure.xxx.9) 685 0 R (page.1) 438 0 R (page.10) 675 0 R (page.100) 1394 0 R] -/Limits [(figure.xxx.77) (page.100)] ->> endobj -1481 0 obj << -/Names [(page.11) 680 0 R (page.12) 693 0 R (page.13) 704 0 R (page.14) 709 0 R (page.15) 716 0 R (page.16) 726 0 R] -/Limits [(page.11) (page.16)] ->> endobj -1482 0 obj << -/Names [(page.17) 734 0 R (page.18) 741 0 R (page.19) 746 0 R (page.2) 448 0 R (page.20) 752 0 R (page.21) 757 0 R] -/Limits [(page.17) (page.21)] ->> endobj -1483 0 obj << -/Names [(page.22) 761 0 R (page.23) 768 0 R (page.24) 775 0 R (page.25) 782 0 R (page.26) 790 0 R (page.27) 796 0 R] -/Limits [(page.22) (page.27)] ->> endobj -1484 0 obj << -/Names [(page.28) 803 0 R (page.29) 808 0 R (page.3) 488 0 R (page.30) 815 0 R (page.31) 821 0 R (page.32) 827 0 R] -/Limits [(page.28) (page.32)] ->> endobj -1485 0 obj << -/Names [(page.33) 831 0 R (page.34) 835 0 R (page.35) 842 0 R (page.36) 852 0 R (page.37) 866 0 R (page.38) 876 0 R] -/Limits [(page.33) (page.38)] ->> endobj -1486 0 obj << -/Names [(page.39) 882 0 R (page.4) 533 0 R (page.40) 889 0 R (page.41) 898 0 R (page.42) 904 0 R (page.43) 911 0 R] -/Limits [(page.39) (page.43)] ->> endobj -1487 0 obj << -/Names [(page.44) 917 0 R (page.45) 923 0 R (page.46) 929 0 R (page.47) 935 0 R (page.48) 942 0 R (page.49) 946 0 R] -/Limits [(page.44) (page.49)] ->> endobj -1488 0 obj << -/Names [(page.5) 572 0 R (page.50) 950 0 R (page.51) 956 0 R (page.52) 961 0 R (page.53) 968 0 R (page.54) 985 0 R] -/Limits [(page.5) (page.54)] ->> endobj -1489 0 obj << -/Names [(page.55) 994 0 R (page.56) 1007 0 R (page.57) 1013 0 R (page.58) 1020 0 R (page.59) 1029 0 R (page.6) 576 0 R] -/Limits [(page.55) (page.6)] ->> endobj -1490 0 obj << -/Names [(page.60) 1038 0 R (page.61) 1043 0 R (page.62) 1047 0 R (page.63) 1053 0 R (page.64) 1059 0 R (page.65) 1065 0 R] -/Limits [(page.60) (page.65)] ->> endobj -1491 0 obj << -/Names [(page.66) 1072 0 R (page.67) 1078 0 R (page.68) 1085 0 R (page.69) 1094 0 R (page.7) 647 0 R (page.70) 1100 0 R] -/Limits [(page.66) (page.70)] ->> endobj -1492 0 obj << -/Names [(page.71) 1118 0 R (page.72) 1128 0 R (page.73) 1132 0 R (page.74) 1139 0 R (page.75) 1145 0 R (page.76) 1149 0 R] -/Limits [(page.71) (page.76)] ->> endobj -1493 0 obj << -/Names [(page.77) 1154 0 R (page.78) 1164 0 R (page.79) 1171 0 R (page.8) 653 0 R (page.80) 1179 0 R (page.81) 1188 0 R] -/Limits [(page.77) (page.81)] ->> endobj -1494 0 obj << -/Names [(page.82) 1193 0 R (page.83) 1203 0 R (page.84) 1213 0 R (page.85) 1218 0 R (page.86) 1225 0 R (page.87) 1235 0 R] -/Limits [(page.82) (page.87)] ->> endobj -1495 0 obj << -/Names [(page.88) 1245 0 R (page.89) 1256 0 R (page.9) 664 0 R (page.90) 1262 0 R (page.91) 1268 0 R (page.92) 1276 0 R] -/Limits [(page.88) (page.92)] ->> endobj -1496 0 obj << -/Names [(page.93) 1286 0 R (page.94) 1292 0 R (page.95) 1296 0 R (page.96) 1301 0 R (page.97) 1309 0 R (page.98) 1314 0 R] -/Limits [(page.93) (page.98)] ->> endobj -1497 0 obj << -/Names [(page.99) 1349 0 R (page.i) 580 0 R (page.ii) 585 0 R (section.1.1) 14 0 R (section.10.1) 166 0 R (section.10.2) 170 0 R] -/Limits [(page.99) (section.10.2)] ->> endobj 1498 0 obj << -/Names [(section.10.3) 182 0 R (section.11.1) 190 0 R (section.12.1) 198 0 R (section.12.2) 202 0 R (section.13.1) 210 0 R (section.16.1) 230 0 R] -/Limits [(section.10.3) (section.16.1)] +/Names [(Item.5) 691 0 R (Item.6) 692 0 R (Item.7) 693 0 R (Item.8) 694 0 R (Item.9) 720 0 R (appendix*.80) 1341 0 R] +/Limits [(Item.5) (appendix*.80)] >> endobj 1499 0 obj << -/Names [(section.16.2) 246 0 R (section.16.3) 250 0 R (section.16.4) 254 0 R (section.16.5) 258 0 R (section.16.6) 262 0 R (section.17.1) 270 0 R] -/Limits [(section.16.2) (section.17.1)] +/Names [(appendix*.81) 1383 0 R (appendix.A) 438 0 R (chapter*.1) 498 0 R (chapter*.2) 6 0 R (chapter.1) 10 0 R (chapter.10) 170 0 R] +/Limits [(appendix*.81) (chapter.10)] >> endobj 1500 0 obj << -/Names [(section.17.2) 274 0 R (section.17.3) 278 0 R (section.18.1) 286 0 R (section.18.2) 290 0 R (section.2.1) 38 0 R (section.2.2) 42 0 R] -/Limits [(section.17.2) (section.2.2)] +/Names [(chapter.11) 194 0 R (chapter.12) 202 0 R (chapter.13) 214 0 R (chapter.14) 222 0 R (chapter.15) 226 0 R (chapter.16) 234 0 R] +/Limits [(chapter.11) (chapter.16)] >> endobj 1501 0 obj << -/Names [(section.2.3) 54 0 R (section.2.4) 70 0 R (section.2.5) 74 0 R (section.2.6) 86 0 R (section.20.1) 302 0 R (section.21.1) 310 0 R] -/Limits [(section.2.3) (section.21.1)] +/Names [(chapter.17) 274 0 R (chapter.18) 290 0 R (chapter.19) 302 0 R (chapter.2) 34 0 R (chapter.20) 306 0 R (chapter.21) 314 0 R] +/Limits [(chapter.17) (chapter.21)] >> endobj 1502 0 obj << -/Names [(section.21.2) 330 0 R (section.21.3) 342 0 R (section.22.1) 362 0 R (section.22.2) 366 0 R (section.22.3) 390 0 R (section.23.1) 398 0 R] -/Limits [(section.21.2) (section.23.1)] +/Names [(chapter.22) 366 0 R (chapter.23) 402 0 R (chapter.24) 414 0 R (chapter.3) 90 0 R (chapter.4) 102 0 R (chapter.5) 118 0 R] +/Limits [(chapter.22) (chapter.5)] >> endobj 1503 0 obj << -/Names [(section.23.2) 402 0 R (section.24.1) 410 0 R (section.24.2) 414 0 R (section.24.3) 418 0 R (section.24.4) 422 0 R (section.24.5) 426 0 R] -/Limits [(section.23.2) (section.24.5)] +/Names [(chapter.6) 122 0 R (chapter.7) 138 0 R (chapter.8) 146 0 R (chapter.9) 158 0 R (figure.xxx.10) 704 0 R (figure.xxx.11) 715 0 R] +/Limits [(chapter.6) (figure.xxx.11)] >> endobj 1504 0 obj << -/Names [(section.3.1) 94 0 R (section.4.1) 102 0 R (section.4.2) 106 0 R (section.6.1) 118 0 R (section.6.2) 122 0 R (section.6.3) 126 0 R] -/Limits [(section.3.1) (section.6.3)] +/Names [(figure.xxx.12) 731 0 R (figure.xxx.13) 745 0 R (figure.xxx.14) 757 0 R (figure.xxx.15) 768 0 R (figure.xxx.16) 789 0 R (figure.xxx.17) 802 0 R] +/Limits [(figure.xxx.12) (figure.xxx.17)] >> endobj 1505 0 obj << -/Names [(section.7.1) 134 0 R (section.8.1) 142 0 R (section.8.2) 146 0 R (section.9.1) 154 0 R (section.9.2) 158 0 R (subsection.1.1.1) 18 0 R] -/Limits [(section.7.1) (subsection.1.1.1)] +/Names [(figure.xxx.18) 803 0 R (figure.xxx.19) 815 0 R (figure.xxx.20) 818 0 R (figure.xxx.21) 830 0 R (figure.xxx.23) 842 0 R (figure.xxx.24) 854 0 R] +/Limits [(figure.xxx.18) (figure.xxx.24)] >> endobj 1506 0 obj << -/Names [(subsection.1.1.2) 22 0 R (subsection.1.1.3) 26 0 R (subsection.1.1.4) 30 0 R (subsection.10.2.1) 174 0 R (subsection.10.2.2) 178 0 R (subsection.15.0.1) 222 0 R] -/Limits [(subsection.1.1.2) (subsection.15.0.1)] +/Names [(figure.xxx.26) 877 0 R (figure.xxx.27) 879 0 R (figure.xxx.28) 899 0 R (figure.xxx.29) 910 0 R (figure.xxx.3) 605 0 R (figure.xxx.30) 916 0 R] +/Limits [(figure.xxx.26) (figure.xxx.30)] >> endobj 1507 0 obj << -/Names [(subsection.16.1.1) 234 0 R (subsection.16.1.2) 238 0 R (subsection.16.1.3) 242 0 R (subsection.2.2.1) 46 0 R (subsection.2.2.2) 50 0 R (subsection.2.3.1) 58 0 R] -/Limits [(subsection.16.1.1) (subsection.2.3.1)] +/Names [(figure.xxx.31) 923 0 R (figure.xxx.32) 937 0 R (figure.xxx.33) 944 0 R (figure.xxx.34) 957 0 R (figure.xxx.35) 969 0 R (figure.xxx.36) 990 0 R] +/Limits [(figure.xxx.31) (figure.xxx.36)] >> endobj 1508 0 obj << -/Names [(subsection.2.3.2) 62 0 R (subsection.2.3.3) 66 0 R (subsection.2.5.1) 78 0 R (subsection.2.5.2) 82 0 R (subsection.21.1.1) 314 0 R (subsection.21.1.2) 318 0 R] -/Limits [(subsection.2.3.2) (subsection.21.1.2)] +/Names [(figure.xxx.37) 1002 0 R (figure.xxx.38) 1003 0 R (figure.xxx.39) 1018 0 R (figure.xxx.4) 613 0 R (figure.xxx.40) 1019 0 R (figure.xxx.41) 1027 0 R] +/Limits [(figure.xxx.37) (figure.xxx.41)] >> endobj 1509 0 obj << -/Names [(subsection.21.1.3) 322 0 R (subsection.21.1.4) 326 0 R (subsection.21.2.1) 334 0 R (subsection.21.2.2) 338 0 R (subsection.21.3.1) 346 0 R (subsection.21.3.2) 350 0 R] -/Limits [(subsection.21.1.3) (subsection.21.3.2)] +/Names [(figure.xxx.42) 1029 0 R (figure.xxx.43) 1030 0 R (figure.xxx.44) 1031 0 R (figure.xxx.45) 1041 0 R (figure.xxx.46) 1042 0 R (figure.xxx.47) 1054 0 R] +/Limits [(figure.xxx.42) (figure.xxx.47)] >> endobj 1510 0 obj << -/Names [(subsection.21.3.3) 354 0 R (subsection.22.2.1) 370 0 R (subsection.22.2.2) 374 0 R (subsection.22.2.3) 378 0 R (subsection.22.2.4) 382 0 R (subsection.22.2.5) 386 0 R] -/Limits [(subsection.21.3.3) (subsection.22.2.5)] +/Names [(figure.xxx.48) 1065 0 R (figure.xxx.49) 1071 0 R (figure.xxx.5) 623 0 R (figure.xxx.50) 1087 0 R (figure.xxx.51) 1099 0 R (figure.xxx.52) 1111 0 R] +/Limits [(figure.xxx.48) (figure.xxx.52)] >> endobj 1511 0 obj << -/Names [(table.xxx.20) 804 0 R (table.xxx.23) 843 0 R (table.xxx.62) 1172 0 R (table.xxx.63) 1174 0 R] -/Limits [(table.xxx.20) (table.xxx.63)] +/Names [(figure.xxx.53) 1127 0 R (figure.xxx.54) 1133 0 R (figure.xxx.55) 1135 0 R (figure.xxx.56) 1151 0 R (figure.xxx.57) 1152 0 R (figure.xxx.58) 1153 0 R] +/Limits [(figure.xxx.53) (figure.xxx.58)] >> endobj 1512 0 obj << -/Kids [1458 0 R 1459 0 R 1460 0 R 1461 0 R 1462 0 R 1463 0 R] -/Limits [(Doc-Start) (appendix*.78)] +/Names [(figure.xxx.59) 1154 0 R (figure.xxx.6) 659 0 R (figure.xxx.60) 1155 0 R (figure.xxx.61) 1172 0 R (figure.xxx.62) 1187 0 R (figure.xxx.63) 1197 0 R] +/Limits [(figure.xxx.59) (figure.xxx.63)] >> endobj 1513 0 obj << -/Kids [1464 0 R 1465 0 R 1466 0 R 1467 0 R 1468 0 R 1469 0 R] -/Limits [(appendix*.79) (figure.xxx.17)] +/Names [(figure.xxx.66) 1221 0 R (figure.xxx.67) 1236 0 R (figure.xxx.68) 1237 0 R (figure.xxx.69) 1238 0 R (figure.xxx.7) 677 0 R (figure.xxx.70) 1245 0 R] +/Limits [(figure.xxx.66) (figure.xxx.70)] >> endobj 1514 0 obj << -/Kids [1470 0 R 1471 0 R 1472 0 R 1473 0 R 1474 0 R 1475 0 R] -/Limits [(figure.xxx.18) (figure.xxx.52)] +/Names [(figure.xxx.71) 1258 0 R (figure.xxx.72) 1268 0 R (figure.xxx.73) 1269 0 R (figure.xxx.74) 1278 0 R (figure.xxx.75) 1282 0 R (figure.xxx.76) 1289 0 R] +/Limits [(figure.xxx.71) (figure.xxx.76)] >> endobj 1515 0 obj << -/Kids [1476 0 R 1477 0 R 1478 0 R 1479 0 R 1480 0 R 1481 0 R] -/Limits [(figure.xxx.53) (page.16)] +/Names [(figure.xxx.77) 1300 0 R (figure.xxx.78) 1309 0 R (figure.xxx.79) 1320 0 R (figure.xxx.8) 681 0 R (figure.xxx.9) 695 0 R (page.1) 446 0 R] +/Limits [(figure.xxx.77) (page.1)] >> endobj 1516 0 obj << -/Kids [1482 0 R 1483 0 R 1484 0 R 1485 0 R 1486 0 R 1487 0 R] -/Limits [(page.17) (page.49)] +/Names [(page.10) 685 0 R (page.100) 1332 0 R (page.101) 1340 0 R (page.102) 1346 0 R (page.103) 1382 0 R (page.104) 1428 0 R] +/Limits [(page.10) (page.104)] >> endobj 1517 0 obj << -/Kids [1488 0 R 1489 0 R 1490 0 R 1491 0 R 1492 0 R 1493 0 R] -/Limits [(page.5) (page.81)] +/Names [(page.11) 690 0 R (page.12) 703 0 R (page.13) 714 0 R (page.14) 719 0 R (page.15) 726 0 R (page.16) 736 0 R] +/Limits [(page.11) (page.16)] >> endobj 1518 0 obj << -/Kids [1494 0 R 1495 0 R 1496 0 R 1497 0 R 1498 0 R 1499 0 R] -/Limits [(page.82) (section.17.1)] +/Names [(page.17) 744 0 R (page.18) 751 0 R (page.19) 756 0 R (page.2) 456 0 R (page.20) 762 0 R (page.21) 767 0 R] +/Limits [(page.17) (page.21)] >> endobj 1519 0 obj << -/Kids [1500 0 R 1501 0 R 1502 0 R 1503 0 R 1504 0 R 1505 0 R] -/Limits [(section.17.2) (subsection.1.1.1)] +/Names [(page.22) 773 0 R (page.23) 778 0 R (page.24) 784 0 R (page.25) 788 0 R (page.26) 794 0 R (page.27) 801 0 R] +/Limits [(page.22) (page.27)] >> endobj 1520 0 obj << -/Kids [1506 0 R 1507 0 R 1508 0 R 1509 0 R 1510 0 R 1511 0 R] -/Limits [(subsection.1.1.2) (table.xxx.63)] +/Names [(page.28) 807 0 R (page.29) 814 0 R (page.3) 496 0 R (page.30) 823 0 R (page.31) 829 0 R (page.32) 836 0 R] +/Limits [(page.28) (page.32)] >> endobj 1521 0 obj << -/Kids [1512 0 R 1513 0 R 1514 0 R 1515 0 R 1516 0 R 1517 0 R] -/Limits [(Doc-Start) (page.81)] +/Names [(page.33) 841 0 R (page.34) 847 0 R (page.35) 853 0 R (page.36) 860 0 R (page.37) 864 0 R (page.38) 868 0 R] +/Limits [(page.33) (page.38)] >> endobj 1522 0 obj << -/Kids [1518 0 R 1519 0 R 1520 0 R] -/Limits [(page.82) (table.xxx.63)] +/Names [(page.39) 875 0 R (page.4) 542 0 R (page.40) 884 0 R (page.41) 898 0 R (page.42) 909 0 R (page.43) 915 0 R] +/Limits [(page.39) (page.43)] >> endobj 1523 0 obj << -/Kids [1521 0 R 1522 0 R] -/Limits [(Doc-Start) (table.xxx.63)] +/Names [(page.44) 922 0 R (page.45) 931 0 R (page.46) 936 0 R (page.47) 943 0 R (page.48) 950 0 R (page.49) 956 0 R] +/Limits [(page.44) (page.49)] >> endobj 1524 0 obj << -/Dests 1523 0 R +/Names [(page.5) 582 0 R (page.50) 962 0 R (page.51) 968 0 R (page.52) 974 0 R (page.53) 978 0 R (page.54) 983 0 R] +/Limits [(page.5) (page.54)] >> endobj 1525 0 obj << -/Type /Catalog -/Pages 1456 0 R -/Outlines 1457 0 R -/Names 1524 0 R -/PageMode/UseOutlines/PageLabels<>6<>8<>]>> -/OpenAction 433 0 R +/Names [(page.55) 989 0 R (page.56) 994 0 R (page.57) 1001 0 R (page.58) 1017 0 R (page.59) 1026 0 R (page.6) 586 0 R] +/Limits [(page.55) (page.6)] >> endobj 1526 0 obj << +/Names [(page.60) 1040 0 R (page.61) 1046 0 R (page.62) 1053 0 R (page.63) 1062 0 R (page.64) 1070 0 R (page.65) 1075 0 R] +/Limits [(page.60) (page.65)] +>> endobj +1527 0 obj << +/Names [(page.66) 1080 0 R (page.67) 1086 0 R (page.68) 1092 0 R (page.69) 1098 0 R (page.7) 657 0 R (page.70) 1104 0 R] +/Limits [(page.66) (page.70)] +>> endobj +1528 0 obj << +/Names [(page.71) 1110 0 R (page.72) 1117 0 R (page.73) 1126 0 R (page.74) 1132 0 R (page.75) 1150 0 R (page.76) 1159 0 R] +/Limits [(page.71) (page.76)] +>> endobj +1529 0 obj << +/Names [(page.77) 1163 0 R (page.78) 1171 0 R (page.79) 1177 0 R (page.8) 663 0 R (page.80) 1181 0 R (page.81) 1186 0 R] +/Limits [(page.77) (page.81)] +>> endobj +1530 0 obj << +/Names [(page.82) 1195 0 R (page.83) 1202 0 R (page.84) 1211 0 R (page.85) 1220 0 R (page.86) 1225 0 R (page.87) 1235 0 R] +/Limits [(page.82) (page.87)] +>> endobj +1531 0 obj << +/Names [(page.88) 1244 0 R (page.89) 1249 0 R (page.9) 674 0 R (page.90) 1257 0 R (page.91) 1267 0 R (page.92) 1277 0 R] +/Limits [(page.88) (page.92)] +>> endobj +1532 0 obj << +/Names [(page.93) 1288 0 R (page.94) 1293 0 R (page.95) 1299 0 R (page.96) 1308 0 R (page.97) 1318 0 R (page.98) 1324 0 R] +/Limits [(page.93) (page.98)] +>> endobj +1533 0 obj << +/Names [(page.99) 1328 0 R (page.i) 590 0 R (page.ii) 595 0 R (section.1.1) 14 0 R (section.10.1) 174 0 R (section.10.2) 178 0 R] +/Limits [(page.99) (section.10.2)] +>> endobj +1534 0 obj << +/Names [(section.10.3) 190 0 R (section.11.1) 198 0 R (section.12.1) 206 0 R (section.12.2) 210 0 R (section.13.1) 218 0 R (section.16.1) 238 0 R] +/Limits [(section.10.3) (section.16.1)] +>> endobj +1535 0 obj << +/Names [(section.16.2) 254 0 R (section.16.3) 258 0 R (section.16.4) 262 0 R (section.16.5) 266 0 R (section.16.6) 270 0 R (section.17.1) 278 0 R] +/Limits [(section.16.2) (section.17.1)] +>> endobj +1536 0 obj << +/Names [(section.17.2) 282 0 R (section.17.3) 286 0 R (section.18.1) 294 0 R (section.18.2) 298 0 R (section.2.1) 38 0 R (section.2.2) 42 0 R] +/Limits [(section.17.2) (section.2.2)] +>> endobj +1537 0 obj << +/Names [(section.2.3) 54 0 R (section.2.4) 70 0 R (section.2.5) 74 0 R (section.2.6) 86 0 R (section.20.1) 310 0 R (section.21.1) 318 0 R] +/Limits [(section.2.3) (section.21.1)] +>> endobj +1538 0 obj << +/Names [(section.21.2) 338 0 R (section.21.3) 350 0 R (section.22.1) 370 0 R (section.22.2) 374 0 R (section.22.3) 398 0 R (section.23.1) 406 0 R] +/Limits [(section.21.2) (section.23.1)] +>> endobj +1539 0 obj << +/Names [(section.23.2) 410 0 R (section.24.1) 418 0 R (section.24.2) 422 0 R (section.24.3) 426 0 R (section.24.4) 430 0 R (section.24.5) 434 0 R] +/Limits [(section.23.2) (section.24.5)] +>> endobj +1540 0 obj << +/Names [(section.3.1) 94 0 R (section.3.2) 98 0 R (section.4.1) 106 0 R (section.4.2) 110 0 R (section.4.3) 114 0 R (section.6.1) 126 0 R] +/Limits [(section.3.1) (section.6.1)] +>> endobj +1541 0 obj << +/Names [(section.6.2) 130 0 R (section.6.3) 134 0 R (section.7.1) 142 0 R (section.8.1) 150 0 R (section.8.2) 154 0 R (section.9.1) 162 0 R] +/Limits [(section.6.2) (section.9.1)] +>> endobj +1542 0 obj << +/Names [(section.9.2) 166 0 R (subsection.1.1.1) 18 0 R (subsection.1.1.2) 22 0 R (subsection.1.1.3) 26 0 R (subsection.1.1.4) 30 0 R (subsection.10.2.1) 182 0 R] +/Limits [(section.9.2) (subsection.10.2.1)] +>> endobj +1543 0 obj << +/Names [(subsection.10.2.2) 186 0 R (subsection.15.0.1) 230 0 R (subsection.16.1.1) 242 0 R (subsection.16.1.2) 246 0 R (subsection.16.1.3) 250 0 R (subsection.2.2.1) 46 0 R] +/Limits [(subsection.10.2.2) (subsection.2.2.1)] +>> endobj +1544 0 obj << +/Names [(subsection.2.2.2) 50 0 R (subsection.2.3.1) 58 0 R (subsection.2.3.2) 62 0 R (subsection.2.3.3) 66 0 R (subsection.2.5.1) 78 0 R (subsection.2.5.2) 82 0 R] +/Limits [(subsection.2.2.2) (subsection.2.5.2)] +>> endobj +1545 0 obj << +/Names [(subsection.21.1.1) 322 0 R (subsection.21.1.2) 326 0 R (subsection.21.1.3) 330 0 R (subsection.21.1.4) 334 0 R (subsection.21.2.1) 342 0 R (subsection.21.2.2) 346 0 R] +/Limits [(subsection.21.1.1) (subsection.21.2.2)] +>> endobj +1546 0 obj << +/Names [(subsection.21.3.1) 354 0 R (subsection.21.3.2) 358 0 R (subsection.21.3.3) 362 0 R (subsection.22.2.1) 378 0 R (subsection.22.2.2) 382 0 R (subsection.22.2.3) 386 0 R] +/Limits [(subsection.21.3.1) (subsection.22.2.3)] +>> endobj +1547 0 obj << +/Names [(subsection.22.2.4) 390 0 R (subsection.22.2.5) 394 0 R (table.xxx.22) 837 0 R (table.xxx.25) 876 0 R (table.xxx.64) 1203 0 R (table.xxx.65) 1206 0 R] +/Limits [(subsection.22.2.4) (table.xxx.65)] +>> endobj +1548 0 obj << +/Kids [1493 0 R 1494 0 R 1495 0 R 1496 0 R 1497 0 R 1498 0 R] +/Limits [(Doc-Start) (appendix*.80)] +>> endobj +1549 0 obj << +/Kids [1499 0 R 1500 0 R 1501 0 R 1502 0 R 1503 0 R 1504 0 R] +/Limits [(appendix*.81) (figure.xxx.17)] +>> endobj +1550 0 obj << +/Kids [1505 0 R 1506 0 R 1507 0 R 1508 0 R 1509 0 R 1510 0 R] +/Limits [(figure.xxx.18) (figure.xxx.52)] +>> endobj +1551 0 obj << +/Kids [1511 0 R 1512 0 R 1513 0 R 1514 0 R 1515 0 R 1516 0 R] +/Limits [(figure.xxx.53) (page.104)] +>> endobj +1552 0 obj << +/Kids [1517 0 R 1518 0 R 1519 0 R 1520 0 R 1521 0 R 1522 0 R] +/Limits [(page.11) (page.43)] +>> endobj +1553 0 obj << +/Kids [1523 0 R 1524 0 R 1525 0 R 1526 0 R 1527 0 R 1528 0 R] +/Limits [(page.44) (page.76)] +>> endobj +1554 0 obj << +/Kids [1529 0 R 1530 0 R 1531 0 R 1532 0 R 1533 0 R 1534 0 R] +/Limits [(page.77) (section.16.1)] +>> endobj +1555 0 obj << +/Kids [1535 0 R 1536 0 R 1537 0 R 1538 0 R 1539 0 R 1540 0 R] +/Limits [(section.16.2) (section.6.1)] +>> endobj +1556 0 obj << +/Kids [1541 0 R 1542 0 R 1543 0 R 1544 0 R 1545 0 R 1546 0 R] +/Limits [(section.6.2) (subsection.22.2.3)] +>> endobj +1557 0 obj << +/Kids [1547 0 R] +/Limits [(subsection.22.2.4) (table.xxx.65)] +>> endobj +1558 0 obj << +/Kids [1548 0 R 1549 0 R 1550 0 R 1551 0 R 1552 0 R 1553 0 R] +/Limits [(Doc-Start) (page.76)] +>> endobj +1559 0 obj << +/Kids [1554 0 R 1555 0 R 1556 0 R 1557 0 R] +/Limits [(page.77) (table.xxx.65)] +>> endobj +1560 0 obj << +/Kids [1558 0 R 1559 0 R] +/Limits [(Doc-Start) (table.xxx.65)] +>> endobj +1561 0 obj << +/Dests 1560 0 R +>> endobj +1562 0 obj << +/Type /Catalog +/Pages 1491 0 R +/Outlines 1492 0 R +/Names 1561 0 R +/PageMode/UseOutlines/PageLabels<>6<>8<>]>> +/OpenAction 441 0 R +>> endobj +1563 0 obj << /Author (Rudolf Hangl) /Title (FAS-Online) /Subject (Benutzerhandbuch FAS-Online) /Keywords (FAS FH-Complete Technikum-Wien) /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.4)/Keywords() -/CreationDate (D:20090828134746+02'00') -/ModDate (D:20090828134746+02'00') +/CreationDate (D:20090907134912+02'00') +/ModDate (D:20090907134912+02'00') /Trapped /False /PTEX.Fullbanner (This is MiKTeX-pdfTeX 2.6.2748 (1.40.4)) >> endobj xref -0 1527 +0 1564 0000000001 65535 f 0000000002 00000 f 0000000003 00000 f 0000000004 00000 f 0000000000 00000 f 0000000015 00000 n -0000068396 00000 n -0002452539 00000 n +0000068951 00000 n +0002635058 00000 n 0000000061 00000 n 0000000089 00000 n -0000219994 00000 n -0002452415 00000 n +0000220549 00000 n +0002634934 00000 n 0000000134 00000 n 0000000163 00000 n -0000220054 00000 n -0002452317 00000 n +0000220609 00000 n +0002634836 00000 n 0000000211 00000 n 0000000261 00000 n -0000220175 00000 n -0002452243 00000 n +0000220730 00000 n +0002634762 00000 n 0000000314 00000 n 0000000345 00000 n -0000252622 00000 n -0002452156 00000 n +0000253177 00000 n +0002634675 00000 n 0000000398 00000 n 0000000429 00000 n -0000257176 00000 n -0002452069 00000 n +0000257731 00000 n +0002634588 00000 n 0000000482 00000 n 0000000513 00000 n -0000257237 00000 n -0002451995 00000 n +0000257792 00000 n +0002634514 00000 n 0000000566 00000 n 0000000597 00000 n -0000260975 00000 n -0002451869 00000 n +0000261530 00000 n +0002634388 00000 n 0000000643 00000 n 0000000671 00000 n -0000261035 00000 n -0002451795 00000 n +0000261590 00000 n +0002634314 00000 n 0000000719 00000 n 0000000743 00000 n -0000324267 00000 n -0002451671 00000 n +0000324822 00000 n +0002634190 00000 n 0000000791 00000 n 0000000843 00000 n -0000324509 00000 n -0002451597 00000 n +0000325064 00000 n +0002634116 00000 n 0000000896 00000 n 0000000943 00000 n -0000351039 00000 n -0002451523 00000 n +0000351594 00000 n +0002634042 00000 n 0000000996 00000 n 0000001031 00000 n -0000358265 00000 n -0002451399 00000 n +0000358820 00000 n +0002633918 00000 n 0000001079 00000 n 0000001117 00000 n -0000358326 00000 n -0002451325 00000 n +0000358881 00000 n +0002633844 00000 n 0000001170 00000 n 0000001220 00000 n -0000370061 00000 n -0002451238 00000 n +0000370616 00000 n +0002633757 00000 n 0000001273 00000 n 0000001305 00000 n -0000370121 00000 n -0002451164 00000 n +0000370676 00000 n +0002633683 00000 n 0000001358 00000 n 0000001402 00000 n -0000370242 00000 n -0002451077 00000 n +0000370797 00000 n +0002633596 00000 n 0000001450 00000 n 0000001500 00000 n -0000387296 00000 n -0002450953 00000 n +0000387851 00000 n +0002633472 00000 n 0000001548 00000 n 0000001599 00000 n -0000387356 00000 n -0002450879 00000 n +0000387911 00000 n +0002633398 00000 n 0000001652 00000 n 0000001690 00000 n -0000390211 00000 n -0002450805 00000 n +0000390766 00000 n +0002633324 00000 n 0000001743 00000 n 0000001776 00000 n -0000390272 00000 n -0002450731 00000 n +0000390827 00000 n +0002633250 00000 n 0000001824 00000 n 0000001864 00000 n -0000415798 00000 n -0002450605 00000 n +0000416353 00000 n +0002633123 00000 n 0000001910 00000 n 0000001939 00000 n -0000415858 00000 n -0002450544 00000 n +0000416413 00000 n +0002633049 00000 n 0000001987 00000 n 0000002029 00000 n -0000437453 00000 n -0002450414 00000 n -0000002075 00000 n -0000002105 00000 n -0000437513 00000 n -0002450336 00000 n -0000002154 00000 n -0000002207 00000 n -0000440478 00000 n -0002450258 00000 n -0000002256 00000 n -0000002298 00000 n -0000445068 00000 n -0002450165 00000 n -0000002345 00000 n -0000002373 00000 n -0000459336 00000 n -0002450032 00000 n -0000002420 00000 n -0000002448 00000 n -0000459458 00000 n -0002449953 00000 n -0000002497 00000 n +0000507288 00000 n +0002632974 00000 n +0000002077 00000 n +0000002110 00000 n +0000527377 00000 n +0002632842 00000 n +0000002157 00000 n +0000002187 00000 n +0000527438 00000 n +0002632763 00000 n +0000002236 00000 n +0000002289 00000 n +0000530403 00000 n +0002632670 00000 n +0000002338 00000 n +0000002380 00000 n +0000532686 00000 n +0002632591 00000 n +0000002429 00000 n +0000002462 00000 n +0000625000 00000 n +0002632497 00000 n +0000002509 00000 n 0000002537 00000 n -0000468922 00000 n -0002449860 00000 n -0000002586 00000 n -0000002641 00000 n -0000476024 00000 n -0002449781 00000 n -0000002690 00000 n -0000002738 00000 n -0000505472 00000 n -0002449648 00000 n -0000002785 00000 n -0000002823 00000 n -0000505533 00000 n -0002449583 00000 n -0000002872 00000 n -0000002913 00000 n -0000509380 00000 n -0002449450 00000 n -0000002960 00000 n -0000002993 00000 n -0000509441 00000 n -0002449371 00000 n -0000003042 00000 n -0000003075 00000 n -0000509502 00000 n -0002449292 00000 n +0000639269 00000 n +0002632364 00000 n +0000002584 00000 n +0000002612 00000 n +0000639391 00000 n +0002632285 00000 n +0000002661 00000 n +0000002701 00000 n +0000648853 00000 n +0002632192 00000 n +0000002750 00000 n +0000002805 00000 n +0000655955 00000 n +0002632113 00000 n +0000002854 00000 n +0000002902 00000 n +0000685404 00000 n +0002631980 00000 n +0000002949 00000 n +0000002987 00000 n +0000685465 00000 n +0002631915 00000 n +0000003036 00000 n +0000003077 00000 n +0000689313 00000 n +0002631782 00000 n 0000003124 00000 n -0000003153 00000 n -0000517658 00000 n -0002449159 00000 n -0000003200 00000 n +0000003157 00000 n +0000689374 00000 n +0002631703 00000 n +0000003206 00000 n 0000003239 00000 n -0000517719 00000 n -0002449080 00000 n +0000689435 00000 n +0002631624 00000 n 0000003288 00000 n -0000003314 00000 n -0000517841 00000 n -0002449001 00000 n -0000003363 00000 n -0000003413 00000 n -0000587143 00000 n -0002448868 00000 n -0000003461 00000 n -0000003494 00000 n -0000607713 00000 n -0002448789 00000 n -0000003544 00000 n -0000003583 00000 n -0000610396 00000 n -0002448657 00000 n -0000003633 00000 n -0000003669 00000 n -0000610517 00000 n -0002448578 00000 n -0000003724 00000 n -0000003757 00000 n -0000610578 00000 n -0002448499 00000 n -0000003812 00000 n -0000003840 00000 n -0000620665 00000 n -0002448420 00000 n -0000003890 00000 n -0000003927 00000 n -0000652724 00000 n -0002448287 00000 n -0000003975 00000 n -0000004006 00000 n -0000652785 00000 n -0002448222 00000 n -0000004056 00000 n -0000004104 00000 n -0000672206 00000 n -0002448089 00000 n -0000004152 00000 n -0000004177 00000 n -0000672328 00000 n -0002448010 00000 n -0000004227 00000 n -0000004269 00000 n -0000672389 00000 n -0002447931 00000 n -0000004319 00000 n -0000004368 00000 n -0000685608 00000 n -0002447798 00000 n -0000004416 00000 n -0000004448 00000 n -0000685730 00000 n -0002447733 00000 n -0000004498 00000 n -0000004542 00000 n -0000695404 00000 n -0002447639 00000 n -0000004590 00000 n -0000004617 00000 n -0000697756 00000 n -0002447506 00000 n -0000004665 00000 n -0000004698 00000 n -0000697817 00000 n -0002447441 00000 n -0000004753 00000 n -0000004801 00000 n -0000726573 00000 n -0002447308 00000 n -0000004849 00000 n -0000004882 00000 n -0000726634 00000 n -0002447190 00000 n -0000004932 00000 n -0000004981 00000 n -0000726756 00000 n -0002447111 00000 n -0000005036 00000 n -0000005079 00000 n -0000726817 00000 n -0002447018 00000 n -0000005134 00000 n -0000005161 00000 n -0000729180 00000 n -0002446939 00000 n -0000005216 00000 n -0000005244 00000 n -0000789072 00000 n -0002446846 00000 n -0000005294 00000 n -0000005340 00000 n -0000852201 00000 n -0002446753 00000 n -0000005390 00000 n -0000005438 00000 n -0000852263 00000 n -0002446660 00000 n -0000005488 00000 n -0000005532 00000 n -0000883319 00000 n -0002446567 00000 n -0000005582 00000 n -0000005625 00000 n -0001051300 00000 n -0002446488 00000 n -0000005675 00000 n -0000005715 00000 n -0001053884 00000 n -0002446355 00000 n -0000005763 00000 n -0000005815 00000 n -0001053946 00000 n -0002446276 00000 n -0000005865 00000 n -0000005901 00000 n -0001077079 00000 n -0002446183 00000 n -0000005951 00000 n -0000005989 00000 n -0001077142 00000 n -0002446104 00000 n -0000006039 00000 n -0000006081 00000 n -0001111140 00000 n -0002445971 00000 n -0000006129 00000 n -0000006163 00000 n -0001111202 00000 n -0002445892 00000 n -0000006213 00000 n -0000006270 00000 n -0001113412 00000 n -0002445813 00000 n -0000006320 00000 n -0000006378 00000 n -0001125815 00000 n -0002445719 00000 n -0000006426 00000 n -0000006455 00000 n -0001136590 00000 n -0002445586 00000 n -0000006503 00000 n -0000006533 00000 n -0001136714 00000 n -0002445521 00000 n -0000006583 00000 n -0000006625 00000 n -0001150938 00000 n -0002445388 00000 n -0000006673 00000 n -0000006704 00000 n -0001151000 00000 n -0002445270 00000 n -0000006754 00000 n -0000006794 00000 n -0001151062 00000 n -0002445191 00000 n -0000006849 00000 n -0000006896 00000 n -0001151187 00000 n -0002445098 00000 n -0000006951 00000 n -0000006993 00000 n -0001369255 00000 n -0002445005 00000 n -0000007048 00000 n -0000007081 00000 n -0001796281 00000 n -0002444926 00000 n -0000007136 00000 n -0000007171 00000 n -0001798966 00000 n -0002444794 00000 n -0000007221 00000 n -0000007263 00000 n -0001799028 00000 n -0002444715 00000 n -0000007318 00000 n -0000007365 00000 n -0001799089 00000 n -0002444636 00000 n -0000007420 00000 n -0000007462 00000 n -0001799917 00000 n -0002444518 00000 n -0000007512 00000 n -0000007559 00000 n -0001799980 00000 n -0002444439 00000 n -0000007614 00000 n -0000007661 00000 n -0001800043 00000 n -0002444346 00000 n -0000007716 00000 n -0000007758 00000 n -0001800106 00000 n -0002444267 00000 n -0000007813 00000 n -0000007846 00000 n -0001831526 00000 n -0002444134 00000 n -0000007894 00000 n -0000007925 00000 n -0001831651 00000 n -0002444055 00000 n -0000007975 00000 n -0000008008 00000 n -0001834726 00000 n -0002443923 00000 n -0000008058 00000 n -0000008100 00000 n -0001834789 00000 n -0002443844 00000 n -0000008155 00000 n -0000008185 00000 n -0001834852 00000 n -0002443751 00000 n -0000008240 00000 n -0000008272 00000 n -0001834915 00000 n -0002443658 00000 n -0000008327 00000 n -0000008356 00000 n -0001853674 00000 n -0002443565 00000 n -0000008411 00000 n -0000008445 00000 n -0001871659 00000 n -0002443486 00000 n -0000008500 00000 n -0000008530 00000 n -0001871721 00000 n -0002443407 00000 n -0000008580 00000 n -0000008625 00000 n -0001909375 00000 n -0002443274 00000 n -0000008673 00000 n -0000008707 00000 n -0001909437 00000 n -0002443195 00000 n -0000008757 00000 n -0000008795 00000 n -0001991970 00000 n -0002443116 00000 n -0000008845 00000 n -0000008895 00000 n -0002027137 00000 n -0002442983 00000 n -0000008943 00000 n -0000008969 00000 n -0002027199 00000 n -0002442904 00000 n -0000009019 00000 n -0000009061 00000 n -0002058934 00000 n -0002442811 00000 n -0000009111 00000 n -0000009147 00000 n -0002058997 00000 n -0002442718 00000 n -0000009197 00000 n -0000009244 00000 n -0002072473 00000 n -0002442625 00000 n -0000009294 00000 n -0000009336 00000 n -0002074092 00000 n -0002442546 00000 n -0000009386 00000 n -0000009423 00000 n -0002074649 00000 n -0002442466 00000 n -0000009471 00000 n -0000009498 00000 n -0000009865 00000 n -0000009984 00000 n -0000044616 00000 n -0000009550 00000 n -0000044494 00000 n -0000044555 00000 n -0002438298 00000 n -0002437465 00000 n -0002438131 00000 n -0002439763 00000 n -0000028074 00000 n -0000045132 00000 n -0000044951 00000 n -0000044750 00000 n -0000045070 00000 n -0002437965 00000 n -0000046873 00000 n -0000047025 00000 n -0000047175 00000 n -0000047327 00000 n -0000047486 00000 n -0000047645 00000 n -0000047804 00000 n -0000047963 00000 n -0000048114 00000 n -0000048266 00000 n -0000048418 00000 n -0000048577 00000 n -0000048736 00000 n -0000048886 00000 n -0000049045 00000 n -0000049204 00000 n -0000049363 00000 n -0000049515 00000 n -0000049667 00000 n -0000049826 00000 n -0000049984 00000 n -0000050135 00000 n -0000050286 00000 n -0000050438 00000 n -0000050589 00000 n -0000050741 00000 n -0000050893 00000 n -0000051044 00000 n -0000051195 00000 n -0000051347 00000 n -0000051499 00000 n -0000051651 00000 n -0000051802 00000 n -0000054072 00000 n -0000054223 00000 n -0000052076 00000 n -0000046478 00000 n -0000045204 00000 n -0000051954 00000 n -0002439133 00000 n -0000052015 00000 n -0002438632 00000 n -0000054377 00000 n -0000054531 00000 n -0000054682 00000 n -0000054835 00000 n -0000054989 00000 n -0000055141 00000 n -0000055295 00000 n -0000055450 00000 n -0000055609 00000 n -0000055766 00000 n -0000055921 00000 n -0000056071 00000 n -0000056225 00000 n -0000056377 00000 n -0000056532 00000 n -0000056687 00000 n -0000056839 00000 n -0000056994 00000 n -0000057145 00000 n -0000057297 00000 n -0000057456 00000 n -0000057608 00000 n -0000057763 00000 n -0000057922 00000 n -0000058081 00000 n -0000058240 00000 n -0000058395 00000 n -0000058550 00000 n -0000058704 00000 n -0000058858 00000 n -0000059012 00000 n -0000059164 00000 n -0000059318 00000 n -0000059473 00000 n -0000059628 00000 n -0000059780 00000 n -0000059934 00000 n -0000061907 00000 n -0000060151 00000 n -0000053629 00000 n -0000052174 00000 n -0000060089 00000 n -0002438465 00000 n -0000062058 00000 n -0000062210 00000 n -0000062363 00000 n -0000062515 00000 n -0000062667 00000 n -0000062827 00000 n -0000062987 00000 n -0000063146 00000 n -0000063306 00000 n -0000063459 00000 n -0000063619 00000 n -0000063779 00000 n -0000063931 00000 n -0000064091 00000 n -0000064251 00000 n -0000064411 00000 n -0000064563 00000 n -0000064716 00000 n -0000064869 00000 n -0000065028 00000 n -0000065188 00000 n -0000065348 00000 n -0000065507 00000 n -0000065666 00000 n -0000065818 00000 n -0000065970 00000 n -0000066123 00000 n -0000066276 00000 n -0000066427 00000 n -0000066579 00000 n -0000066732 00000 n -0000066885 00000 n -0000067038 00000 n -0000067189 00000 n -0000067402 00000 n -0000061496 00000 n -0000060249 00000 n -0000067341 00000 n -0000067939 00000 n -0000067758 00000 n -0000067500 00000 n -0000067877 00000 n -0000068455 00000 n -0000068216 00000 n -0000068024 00000 n -0000068335 00000 n -0002439881 00000 n -0000068972 00000 n -0000068791 00000 n -0000068540 00000 n -0000068910 00000 n -0000070590 00000 n -0000076044 00000 n -0000219840 00000 n -0000221033 00000 n -0000220235 00000 n -0000070451 00000 n -0000069057 00000 n -0002437131 00000 n -0002438966 00000 n -0000220114 00000 n -0002439617 00000 n -0002439467 00000 n -0002436964 00000 n -0002437798 00000 n -0002438799 00000 n -0002436652 00000 n -0000217420 00000 n -0000244705 00000 n -0000244767 00000 n -0000220914 00000 n -0000220484 00000 n -0000246653 00000 n -0000252407 00000 n -0000247186 00000 n -0000252682 00000 n -0000246514 00000 n -0000244914 00000 n -0000252561 00000 n -0000246979 00000 n -0000254584 00000 n -0000254735 00000 n -0000254887 00000 n -0000255038 00000 n -0000255191 00000 n -0000255342 00000 n -0000255493 00000 n -0000255645 00000 n -0000255799 00000 n -0000255952 00000 n -0000256105 00000 n -0000256258 00000 n -0000256411 00000 n -0000256564 00000 n -0000256718 00000 n -0000256871 00000 n -0000257023 00000 n -0000257297 00000 n -0000254317 00000 n -0000252881 00000 n -0000258085 00000 n -0000257966 00000 n -0000257421 00000 n -0002439999 00000 n -0000258596 00000 n -0000258477 00000 n -0000258183 00000 n -0000260759 00000 n -0000261727 00000 n -0000261095 00000 n -0000260620 00000 n -0000258681 00000 n -0000260914 00000 n -0002439300 00000 n -0000282372 00000 n -0000282434 00000 n -0000261608 00000 n -0000261232 00000 n -0000282310 00000 n -0000280582 00000 n -0000323897 00000 n -0000284752 00000 n -0000324051 00000 n -0000285337 00000 n -0000325442 00000 n -0000298300 00000 n -0000324691 00000 n -0000284605 00000 n -0000282581 00000 n -0000324206 00000 n -0000324327 00000 n -0000324388 00000 n -0000324449 00000 n -0000324569 00000 n -0000324630 00000 n -0000295947 00000 n -0000342809 00000 n -0000342871 00000 n -0000325323 00000 n -0000324917 00000 n -0000342747 00000 n -0000345522 00000 n -0000351160 00000 n -0000345403 00000 n -0000343019 00000 n -0000350734 00000 n -0000350795 00000 n -0000350856 00000 n -0000350917 00000 n -0000350978 00000 n -0000351099 00000 n -0002440117 00000 n -0000350000 00000 n -0000353733 00000 n -0000358048 00000 n -0000358448 00000 n -0000353594 00000 n -0000351360 00000 n -0000358203 00000 n -0000358386 00000 n -0000357767 00000 n -0000369536 00000 n -0000369685 00000 n -0000369844 00000 n -0000360999 00000 n -0000373293 00000 n -0000370302 00000 n -0000360844 00000 n -0000358674 00000 n -0000370000 00000 n -0000370181 00000 n -0000373630 00000 n -0000373154 00000 n -0000370515 00000 n -0000373444 00000 n -0000373506 00000 n -0000373568 00000 n -0000375871 00000 n -0000387416 00000 n -0000375752 00000 n -0000373803 00000 n -0000386992 00000 n -0000387053 00000 n -0000387114 00000 n -0000387174 00000 n -0002437298 00000 n -0000387235 00000 n -0000385485 00000 n -0000390333 00000 n -0000389844 00000 n -0000387616 00000 n -0000389963 00000 n -0000390025 00000 n -0000390087 00000 n -0000390149 00000 n -0000391973 00000 n -0000415979 00000 n -0000391854 00000 n -0000390457 00000 n -0000415737 00000 n -0000415918 00000 n -0002437632 00000 n -0002440235 00000 n -0000418076 00000 n -0000417895 00000 n -0000416179 00000 n -0000418014 00000 n -0000419995 00000 n -0000437635 00000 n -0000419876 00000 n -0000418187 00000 n -0000437392 00000 n -0000437574 00000 n -0000436207 00000 n -0000440540 00000 n -0000440297 00000 n -0000437875 00000 n -0000440416 00000 n -0000441925 00000 n -0000442145 00000 n -0000441786 00000 n -0000440713 00000 n -0000442084 00000 n -0000442725 00000 n -0000442544 00000 n -0000442269 00000 n -0000442663 00000 n -0000444542 00000 n -0000444696 00000 n -0000444851 00000 n -0000445190 00000 n -0000444387 00000 n -0000442810 00000 n -0000445007 00000 n -0000445129 00000 n -0002440353 00000 n -0000446767 00000 n -0000446829 00000 n -0000446586 00000 n -0000445413 00000 n -0000446705 00000 n -0000458964 00000 n -0000448710 00000 n -0000459119 00000 n -0000459519 00000 n -0000448563 00000 n -0000447016 00000 n -0000459275 00000 n -0000459397 00000 n -0000457753 00000 n -0000468860 00000 n -0000462089 00000 n -0000468984 00000 n -0000461970 00000 n -0000459719 00000 n -0000468798 00000 n -0000467878 00000 n -0000471633 00000 n -0000476085 00000 n -0000471514 00000 n -0000469197 00000 n -0000475902 00000 n -0000475963 00000 n -0000475251 00000 n -0000479136 00000 n -0000478460 00000 n -0000478217 00000 n -0000476272 00000 n -0000478336 00000 n -0000478398 00000 n -0000484499 00000 n -0000479017 00000 n -0000478597 00000 n -0000484377 00000 n -0000484438 00000 n -0002440471 00000 n -0000483525 00000 n -0000485110 00000 n -0000484929 00000 n -0000484647 00000 n -0000485048 00000 n -0000486961 00000 n -0000505255 00000 n -0000505655 00000 n -0000486822 00000 n -0000485195 00000 n -0000505411 00000 n -0000505594 00000 n -0000503649 00000 n -0000507560 00000 n -0000507379 00000 n -0000505855 00000 n -0000507498 00000 n -0000509563 00000 n -0000509200 00000 n -0000507707 00000 n -0000509319 00000 n -0000510116 00000 n -0000509935 00000 n -0000509661 00000 n -0000510054 00000 n -0000517285 00000 n -0000512395 00000 n -0000517441 00000 n -0000517963 00000 n -0000512248 00000 n -0000510201 00000 n -0000517597 00000 n -0000517780 00000 n -0000517902 00000 n -0002440589 00000 n -0000516998 00000 n -0000563270 00000 n -0000520269 00000 n -0000563332 00000 n -0000520150 00000 n -0000518150 00000 n -0000562837 00000 n -0000562899 00000 n -0000562960 00000 n -0000563022 00000 n -0000563084 00000 n -0000563146 00000 n -0000563208 00000 n -0000560164 00000 n -0000565653 00000 n -0000586771 00000 n -0000586927 00000 n -0000587387 00000 n -0000565506 00000 n -0000563517 00000 n -0000587082 00000 n -0000587204 00000 n -0000587265 00000 n -0000587326 00000 n -0000589944 00000 n -0000607339 00000 n -0000607495 00000 n -0000607837 00000 n -0000589797 00000 n -0000587598 00000 n -0000607651 00000 n -0000607775 00000 n -0000610182 00000 n -0000610639 00000 n -0000610043 00000 n -0000608050 00000 n -0000610335 00000 n -0000610456 00000 n -0000620447 00000 n -0000612633 00000 n -0000620789 00000 n -0000612494 00000 n -0000610852 00000 n -0000620603 00000 n -0000620727 00000 n -0000619381 00000 n -0000622675 00000 n -0000652511 00000 n -0000653548 00000 n -0000652846 00000 n -0000622536 00000 n -0000620963 00000 n -0000652663 00000 n -0002440707 00000 n -0000652257 00000 n -0000658638 00000 n -0000653429 00000 n -0000653020 00000 n -0000658514 00000 n -0000658576 00000 n -0000658027 00000 n -0000660411 00000 n -0000672450 00000 n -0000660292 00000 n -0000658786 00000 n -0000672145 00000 n -0000672267 00000 n -0000670915 00000 n -0000674031 00000 n -0000673850 00000 n -0000672637 00000 n -0000673969 00000 n -0000675826 00000 n -0000685391 00000 n -0000685791 00000 n -0000675687 00000 n -0000674166 00000 n -0000685547 00000 n -0000685669 00000 n -0000684159 00000 n -0000686905 00000 n -0000686724 00000 n -0000685991 00000 n -0000686843 00000 n -0000688358 00000 n -0000695187 00000 n -0000695526 00000 n -0000688219 00000 n -0000687053 00000 n -0000695343 00000 n -0000695465 00000 n -0002440825 00000 n -0000693953 00000 n -0000696116 00000 n -0000695935 00000 n -0000695687 00000 n -0000696054 00000 n -0000697877 00000 n -0000697576 00000 n -0000696201 00000 n -0000697695 00000 n -0000698451 00000 n -0000698270 00000 n -0000698011 00000 n -0000698389 00000 n -0000700208 00000 n -0000726132 00000 n -0000726878 00000 n -0000700089 00000 n -0000698536 00000 n -0000726512 00000 n -0000726695 00000 n -0000729242 00000 n -0000728999 00000 n -0000727079 00000 n -0000729118 00000 n -0000731022 00000 n -0000788857 00000 n -0000758255 00000 n -0000789255 00000 n -0000730883 00000 n -0000729389 00000 n -0000789011 00000 n -0000789133 00000 n -0000789194 00000 n -0002440943 00000 n -0000851239 00000 n -0000790945 00000 n -0000851394 00000 n -0000823178 00000 n -0000851550 00000 n -0000851705 00000 n -0000851860 00000 n -0000854926 00000 n -0000882731 00000 n -0000885169 00000 n +0000003317 00000 n +0000697591 00000 n +0002631491 00000 n +0000003364 00000 n +0000003403 00000 n +0000697652 00000 n +0002631412 00000 n +0000003452 00000 n +0000003478 00000 n +0000697774 00000 n +0002631333 00000 n +0000003527 00000 n +0000003577 00000 n +0000767078 00000 n +0002631200 00000 n +0000003625 00000 n +0000003658 00000 n +0000787650 00000 n +0002631121 00000 n +0000003708 00000 n +0000003747 00000 n +0000790333 00000 n +0002630989 00000 n +0000003797 00000 n +0000003833 00000 n +0000790454 00000 n +0002630910 00000 n +0000003888 00000 n +0000003921 00000 n +0000790515 00000 n +0002630831 00000 n +0000003976 00000 n +0000004004 00000 n +0000800602 00000 n +0002630752 00000 n +0000004054 00000 n +0000004091 00000 n +0000832662 00000 n +0002630619 00000 n +0000004139 00000 n +0000004170 00000 n +0000832723 00000 n +0002630554 00000 n +0000004220 00000 n +0000004268 00000 n +0000852142 00000 n +0002630421 00000 n +0000004316 00000 n +0000004341 00000 n +0000852264 00000 n +0002630342 00000 n +0000004391 00000 n +0000004433 00000 n 0000852325 00000 n -0000790774 00000 n -0000789469 00000 n -0000852015 00000 n -0000852077 00000 n -0000852139 00000 n -0000882885 00000 n -0000883041 00000 n -0000942113 00000 n -0000883380 00000 n -0000854771 00000 n -0000852513 00000 n -0000883197 00000 n -0000883258 00000 n -0000942487 00000 n -0000942550 00000 n -0001032100 00000 n -0000942268 00000 n -0000913345 00000 n -0000943477 00000 n -0000971381 00000 n -0001002714 00000 n -0000942613 00000 n -0000885019 00000 n -0000883580 00000 n -0000942423 00000 n -0001032162 00000 n -0001032225 00000 n -0001032288 00000 n -0000943355 00000 n -0000942829 00000 n -0001032037 00000 n -0001033694 00000 n -0001050922 00000 n -0001051079 00000 n -0001051427 00000 n -0001033542 00000 n -0001032468 00000 n -0001051236 00000 n -0001051363 00000 n -0001053509 00000 n -0001053665 00000 n -0001056197 00000 n -0001076795 00000 n -0001054133 00000 n -0001053356 00000 n -0001051640 00000 n -0001053821 00000 n -0001054007 00000 n -0001054070 00000 n -0002441064 00000 n -0001077015 00000 n -0001078570 00000 n -0001077205 00000 n -0001056053 00000 n -0001054271 00000 n -0001076951 00000 n -0001099326 00000 n -0001099389 00000 n -0001078447 00000 n -0001077394 00000 n -0001099263 00000 n -0001100043 00000 n -0001099856 00000 n -0001099552 00000 n -0001099979 00000 n -0001110920 00000 n -0001101512 00000 n -0001111326 00000 n -0001101368 00000 n -0001100129 00000 n -0001111077 00000 n -0001111264 00000 n -0001109711 00000 n -0001113475 00000 n -0001113225 00000 n -0001111528 00000 n -0001113348 00000 n -0001125595 00000 n -0001114960 00000 n -0001125940 00000 n -0001114816 00000 n -0001113600 00000 n -0001125752 00000 n -0001125877 00000 n -0002441189 00000 n -0001124387 00000 n -0001126553 00000 n -0001126366 00000 n -0001126116 00000 n -0001126489 00000 n -0001136370 00000 n -0001128082 00000 n -0001136776 00000 n -0001127938 00000 n -0001126639 00000 n -0001136527 00000 n -0001136652 00000 n -0001135166 00000 n -0001138473 00000 n -0001138689 00000 n -0001138329 00000 n -0001136978 00000 n -0001138625 00000 n -0001140849 00000 n -0001150718 00000 n -0001193184 00000 n -0001153668 00000 n -0001193341 00000 n -0001151249 00000 n -0001140705 00000 n -0001138801 00000 n -0001150875 00000 n -0001151124 00000 n -0001165756 00000 n -0001193690 00000 n -0001153515 00000 n -0001151425 00000 n -0001193498 00000 n -0001193562 00000 n -0002436796 00000 n -0001193626 00000 n -0001368249 00000 n -0001368406 00000 n -0001368562 00000 n -0001368718 00000 n -0001196380 00000 n -0001370297 00000 n -0001446222 00000 n -0001573967 00000 n -0001647651 00000 n -0001368875 00000 n -0001369031 00000 n -0001369378 00000 n -0001196191 00000 n -0001193908 00000 n -0001369192 00000 n -0001369317 00000 n -0002441314 00000 n -0001572844 00000 n -0001572908 00000 n -0001732427 00000 n -0001732490 00000 n -0001572972 00000 n -0001370174 00000 n -0001369605 00000 n -0001572780 00000 n -0001732553 00000 n -0001573844 00000 n -0001573161 00000 n -0001732364 00000 n -0001734524 00000 n -0001795906 00000 n -0001796062 00000 n -0001796408 00000 n -0001734371 00000 n -0001732742 00000 n -0001796217 00000 n -0001796344 00000 n -0001793157 00000 n -0001799151 00000 n -0001798780 00000 n -0001796595 00000 n -0001798903 00000 n -0001800169 00000 n -0001799730 00000 n -0001799289 00000 n -0001799853 00000 n -0001801747 00000 n -0001831713 00000 n -0001801624 00000 n -0001800281 00000 n -0001831463 00000 n -0001831588 00000 n -0002441439 00000 n -0001828356 00000 n -0001834354 00000 n -0001837595 00000 n -0001834506 00000 n -0001835042 00000 n -0001834201 00000 n -0001831928 00000 n -0001834662 00000 n -0001834978 00000 n -0001850584 00000 n -0001850366 00000 n -0001850708 00000 n -0001837451 00000 n -0001835193 00000 n -0001850521 00000 n -0001850647 00000 n -0001849221 00000 n -0001853482 00000 n -0001871135 00000 n -0001853737 00000 n -0001853295 00000 n -0001850884 00000 n -0001853418 00000 n -0001853546 00000 n -0001853610 00000 n -0001871287 00000 n -0001855512 00000 n -0001871441 00000 n -0001871846 00000 n -0001855350 00000 n -0001853875 00000 n -0001871596 00000 n -0001871783 00000 n -0001872498 00000 n -0001872311 00000 n -0001872035 00000 n -0001872434 00000 n -0001873967 00000 n -0001876248 00000 n -0001908844 00000 n -0001909000 00000 n -0001911899 00000 n -0001909155 00000 n -0001909625 00000 n -0001873805 00000 n -0001872584 00000 n -0001909312 00000 n -0001909499 00000 n -0001909562 00000 n -0002441564 00000 n -0001921340 00000 n -0001921119 00000 n -0001923454 00000 n -0001921404 00000 n -0001911755 00000 n -0001909842 00000 n -0001921276 00000 n -0001943044 00000 n -0001943107 00000 n -0001923331 00000 n -0001921580 00000 n -0001942981 00000 n -0001941159 00000 n -0001945176 00000 n -0001960417 00000 n -0001960702 00000 n -0001945032 00000 n -0001943270 00000 n -0001960574 00000 n -0001960638 00000 n -0001962451 00000 n -0001982787 00000 n -0001982944 00000 n -0001975227 00000 n -0001983098 00000 n -0001983443 00000 n -0001962289 00000 n -0001960878 00000 n -0001983255 00000 n -0001983318 00000 n -0001983381 00000 n -0001991593 00000 n -0001986159 00000 n -0001991749 00000 n -0001989271 00000 n -0001992351 00000 n -0001986006 00000 n -0001983647 00000 n -0001991906 00000 n -0001992033 00000 n -0001992097 00000 n -0001992161 00000 n -0001992225 00000 n -0001992287 00000 n -0001996654 00000 n -0001994100 00000 n -0001996937 00000 n -0001993956 00000 n -0001992568 00000 n -0001996811 00000 n -0001996874 00000 n -0002441689 00000 n -0001997598 00000 n -0001997411 00000 n -0001997126 00000 n -0001997534 00000 n -0001999070 00000 n -0002026917 00000 n -0002027324 00000 n -0001998926 00000 n -0001997684 00000 n -0002027074 00000 n -0002027261 00000 n -0002025643 00000 n -0002029319 00000 n -0002058713 00000 n -0002059188 00000 n -0002029175 00000 n -0002027526 00000 n -0002058870 00000 n -0002059060 00000 n -0002059124 00000 n -0002056409 00000 n -0002061070 00000 n -0002072190 00000 n -0002073876 00000 n -0002072598 00000 n -0002060926 00000 n -0002059390 00000 n -0002072347 00000 n -0002072410 00000 n -0002072535 00000 n -0002074155 00000 n -0002073732 00000 n -0002072787 00000 n -0002074028 00000 n -0002074711 00000 n -0002074463 00000 n -0002074267 00000 n -0002074586 00000 n -0002441814 00000 n -0002075231 00000 n -0002075044 00000 n -0002074797 00000 n -0002075167 00000 n -0002075920 00000 n -0002076074 00000 n -0002076228 00000 n -0002076382 00000 n -0002076661 00000 n -0002075749 00000 n -0002075317 00000 n -0002076535 00000 n -0002076598 00000 n -0002077199 00000 n -0002077012 00000 n -0002076747 00000 n -0002077135 00000 n -0002078865 00000 n -0002079018 00000 n -0002079172 00000 n -0002079325 00000 n -0002079479 00000 n -0002079633 00000 n -0002079787 00000 n -0002079940 00000 n -0002080095 00000 n -0002080250 00000 n -0002080404 00000 n -0002080559 00000 n -0002080714 00000 n -0002080868 00000 n -0002081023 00000 n -0002081178 00000 n -0002081333 00000 n -0002081487 00000 n -0002081642 00000 n -0002081797 00000 n -0002081951 00000 n -0002082106 00000 n -0002082261 00000 n -0002082416 00000 n -0002082571 00000 n -0002082726 00000 n -0002082881 00000 n -0002083035 00000 n -0002083190 00000 n -0002083345 00000 n -0002085641 00000 n -0002083626 00000 n -0002078460 00000 n -0002077285 00000 n -0002083500 00000 n -0002083563 00000 n -0002085798 00000 n -0002085954 00000 n -0002086111 00000 n -0002086268 00000 n -0002086424 00000 n -0002086580 00000 n -0002086736 00000 n -0002086892 00000 n -0002087048 00000 n -0002087203 00000 n -0002087360 00000 n -0002087517 00000 n -0002087674 00000 n -0002087831 00000 n -0002087988 00000 n -0002088145 00000 n -0002088302 00000 n -0002088459 00000 n -0002088615 00000 n -0002088772 00000 n -0002088928 00000 n -0002089085 00000 n -0002089242 00000 n -0002089398 00000 n -0002089555 00000 n -0002089712 00000 n -0002089869 00000 n -0002090026 00000 n -0002090183 00000 n -0002090340 00000 n -0002090497 00000 n -0002090653 00000 n -0002090809 00000 n -0002090966 00000 n -0002091123 00000 n -0002091280 00000 n -0002091437 00000 n -0002091592 00000 n -0002091749 00000 n -0002091906 00000 n -0002092126 00000 n -0002085137 00000 n -0002083712 00000 n -0002092062 00000 n -0002436118 00000 n -0002092212 00000 n -0002092338 00000 n -0002092455 00000 n -0002092884 00000 n -0002094245 00000 n -0002094346 00000 n -0002095597 00000 n -0002096920 00000 n -0002097368 00000 n -0002097461 00000 n -0002097964 00000 n -0002099309 00000 n -0002100543 00000 n -0002101856 00000 n -0002103037 00000 n -0002104292 00000 n -0002105751 00000 n -0002106204 00000 n -0002106421 00000 n -0002106767 00000 n -0002108417 00000 n -0002108687 00000 n -0002110440 00000 n -0002110668 00000 n -0002113349 00000 n -0002113626 00000 n -0002132118 00000 n -0002132363 00000 n -0002150842 00000 n -0002151150 00000 n +0002630263 00000 n +0000004483 00000 n +0000004532 00000 n +0000865545 00000 n +0002630130 00000 n +0000004580 00000 n +0000004612 00000 n +0000865667 00000 n +0002630065 00000 n +0000004662 00000 n +0000004706 00000 n +0000875344 00000 n +0002629971 00000 n +0000004754 00000 n +0000004781 00000 n +0000877695 00000 n +0002629838 00000 n +0000004829 00000 n +0000004862 00000 n +0000877756 00000 n +0002629773 00000 n +0000004917 00000 n +0000004965 00000 n +0000906513 00000 n +0002629640 00000 n +0000005013 00000 n +0000005046 00000 n +0000906574 00000 n +0002629522 00000 n +0000005096 00000 n +0000005145 00000 n +0000906696 00000 n +0002629443 00000 n +0000005200 00000 n +0000005243 00000 n +0000906757 00000 n +0002629350 00000 n +0000005298 00000 n +0000005325 00000 n +0000909120 00000 n +0002629271 00000 n +0000005380 00000 n +0000005408 00000 n +0000969014 00000 n +0002629178 00000 n +0000005458 00000 n +0000005504 00000 n +0001032169 00000 n +0002629085 00000 n +0000005554 00000 n +0000005602 00000 n +0001032232 00000 n +0002628992 00000 n +0000005652 00000 n +0000005696 00000 n +0001063307 00000 n +0002628899 00000 n +0000005746 00000 n +0000005789 00000 n +0001231302 00000 n +0002628820 00000 n +0000005839 00000 n +0000005879 00000 n +0001233886 00000 n +0002628687 00000 n +0000005927 00000 n +0000005979 00000 n +0001233948 00000 n +0002628608 00000 n +0000006029 00000 n +0000006065 00000 n +0001257082 00000 n +0002628515 00000 n +0000006115 00000 n +0000006153 00000 n +0001257145 00000 n +0002628436 00000 n +0000006203 00000 n +0000006245 00000 n +0001291143 00000 n +0002628303 00000 n +0000006293 00000 n +0000006327 00000 n +0001291205 00000 n +0002628224 00000 n +0000006377 00000 n +0000006434 00000 n +0001293415 00000 n +0002628145 00000 n +0000006484 00000 n +0000006542 00000 n +0001305818 00000 n +0002628051 00000 n +0000006590 00000 n +0000006619 00000 n +0001318461 00000 n +0002627918 00000 n +0000006667 00000 n +0000006697 00000 n +0001318586 00000 n +0002627853 00000 n +0000006747 00000 n +0000006789 00000 n +0001332859 00000 n +0002627720 00000 n +0000006837 00000 n +0000006868 00000 n +0001332921 00000 n +0002627602 00000 n +0000006918 00000 n +0000006958 00000 n +0001332983 00000 n +0002627523 00000 n +0000007013 00000 n +0000007060 00000 n +0001333108 00000 n +0002627430 00000 n +0000007115 00000 n +0000007157 00000 n +0001551178 00000 n +0002627337 00000 n +0000007212 00000 n +0000007245 00000 n +0001978206 00000 n +0002627258 00000 n +0000007300 00000 n +0000007335 00000 n +0001980891 00000 n +0002627126 00000 n +0000007385 00000 n +0000007427 00000 n +0001980953 00000 n +0002627047 00000 n +0000007482 00000 n +0000007529 00000 n +0001981014 00000 n +0002626968 00000 n +0000007584 00000 n +0000007626 00000 n +0001981842 00000 n +0002626850 00000 n +0000007676 00000 n +0000007723 00000 n +0001981905 00000 n +0002626771 00000 n +0000007778 00000 n +0000007825 00000 n +0001981968 00000 n +0002626678 00000 n +0000007880 00000 n +0000007922 00000 n +0001982031 00000 n +0002626599 00000 n +0000007977 00000 n +0000008010 00000 n +0002013451 00000 n +0002626466 00000 n +0000008058 00000 n +0000008089 00000 n +0002013576 00000 n +0002626387 00000 n +0000008139 00000 n +0000008172 00000 n +0002016651 00000 n +0002626255 00000 n +0000008222 00000 n +0000008264 00000 n +0002016714 00000 n +0002626176 00000 n +0000008319 00000 n +0000008349 00000 n +0002016777 00000 n +0002626083 00000 n +0000008404 00000 n +0000008436 00000 n +0002016840 00000 n +0002625990 00000 n +0000008491 00000 n +0000008520 00000 n +0002035598 00000 n +0002625897 00000 n +0000008575 00000 n +0000008609 00000 n +0002053582 00000 n +0002625818 00000 n +0000008664 00000 n +0000008694 00000 n +0002053644 00000 n +0002625739 00000 n +0000008744 00000 n +0000008789 00000 n +0002091298 00000 n +0002625606 00000 n +0000008837 00000 n +0000008871 00000 n +0002091360 00000 n +0002625527 00000 n +0000008921 00000 n +0000008959 00000 n +0002173892 00000 n +0002625448 00000 n +0000009009 00000 n +0000009059 00000 n +0002209054 00000 n +0002625315 00000 n +0000009107 00000 n +0000009133 00000 n +0002209116 00000 n +0002625236 00000 n +0000009183 00000 n +0000009225 00000 n +0002240852 00000 n +0002625143 00000 n +0000009275 00000 n +0000009311 00000 n +0002240915 00000 n +0002625050 00000 n +0000009361 00000 n +0000009408 00000 n +0002254392 00000 n +0002624957 00000 n +0000009458 00000 n +0000009500 00000 n +0002256011 00000 n +0002624878 00000 n +0000009550 00000 n +0000009587 00000 n +0002256568 00000 n +0002624798 00000 n +0000009635 00000 n +0000009662 00000 n +0000010036 00000 n +0000010155 00000 n +0000044787 00000 n +0000009714 00000 n +0000044665 00000 n +0000044726 00000 n +0002620436 00000 n +0002619603 00000 n +0002620269 00000 n +0002621901 00000 n +0000028245 00000 n +0000045303 00000 n +0000045122 00000 n +0000044921 00000 n +0000045241 00000 n +0002620103 00000 n +0000047071 00000 n +0000047222 00000 n +0000047373 00000 n +0000047525 00000 n +0000047683 00000 n +0000047841 00000 n +0000048000 00000 n +0000048159 00000 n +0000048310 00000 n +0000048462 00000 n +0000048614 00000 n +0000048772 00000 n +0000048931 00000 n +0000049083 00000 n +0000049242 00000 n +0000049401 00000 n +0000049560 00000 n +0000049712 00000 n +0000049863 00000 n +0000050022 00000 n +0000050180 00000 n +0000050331 00000 n +0000050482 00000 n +0000050633 00000 n +0000050784 00000 n +0000050935 00000 n +0000051087 00000 n +0000051238 00000 n +0000051390 00000 n +0000051541 00000 n +0000051690 00000 n +0000051841 00000 n +0000051993 00000 n +0000052145 00000 n +0000054419 00000 n +0000052418 00000 n +0000046668 00000 n +0000045375 00000 n +0000052296 00000 n +0002621271 00000 n +0000052357 00000 n +0002620770 00000 n +0000054573 00000 n +0000054724 00000 n +0000054878 00000 n +0000055032 00000 n +0000055183 00000 n +0000055336 00000 n +0000055490 00000 n +0000055642 00000 n +0000055797 00000 n +0000055952 00000 n +0000056111 00000 n +0000056267 00000 n +0000056422 00000 n +0000056574 00000 n +0000056729 00000 n +0000056881 00000 n +0000057036 00000 n +0000057190 00000 n +0000057342 00000 n +0000057496 00000 n +0000057648 00000 n +0000057800 00000 n +0000057959 00000 n +0000058111 00000 n +0000058266 00000 n +0000058425 00000 n +0000058584 00000 n +0000058743 00000 n +0000058898 00000 n +0000059053 00000 n +0000059207 00000 n +0000059361 00000 n +0000059516 00000 n +0000059667 00000 n +0000059822 00000 n +0000059977 00000 n +0000060132 00000 n +0000060284 00000 n +0000062313 00000 n +0000060500 00000 n +0000053976 00000 n +0000052516 00000 n +0000060438 00000 n +0002620603 00000 n +0000062466 00000 n +0000062617 00000 n +0000062766 00000 n +0000062919 00000 n +0000063071 00000 n +0000063223 00000 n +0000063383 00000 n +0000063543 00000 n +0000063703 00000 n +0000063863 00000 n +0000064016 00000 n +0000064175 00000 n +0000064335 00000 n +0000064487 00000 n +0000064647 00000 n +0000064807 00000 n +0000064966 00000 n +0000065118 00000 n +0000065271 00000 n +0000065423 00000 n +0000065581 00000 n +0000065741 00000 n +0000065901 00000 n +0000066060 00000 n +0000066220 00000 n +0000066372 00000 n +0000066524 00000 n +0000066677 00000 n +0000066829 00000 n +0000066981 00000 n +0000067132 00000 n +0000067285 00000 n +0000067438 00000 n +0000067591 00000 n +0000067744 00000 n +0000067957 00000 n +0000061894 00000 n +0000060598 00000 n +0000067896 00000 n +0000068494 00000 n +0000068313 00000 n +0000068055 00000 n +0000068432 00000 n +0000069010 00000 n +0000068771 00000 n +0000068579 00000 n +0000068890 00000 n +0002622019 00000 n +0000069527 00000 n +0000069346 00000 n +0000069095 00000 n +0000069465 00000 n +0000071145 00000 n +0000076599 00000 n +0000220395 00000 n +0000221588 00000 n +0000220790 00000 n +0000071006 00000 n +0000069612 00000 n +0002619269 00000 n +0002621104 00000 n +0000220669 00000 n +0002621755 00000 n +0002621605 00000 n +0002619102 00000 n +0002619936 00000 n +0002620937 00000 n +0002618790 00000 n +0000217975 00000 n +0000245260 00000 n +0000245322 00000 n +0000221469 00000 n +0000221039 00000 n +0000247208 00000 n +0000252962 00000 n +0000247741 00000 n +0000253237 00000 n +0000247069 00000 n +0000245469 00000 n +0000253116 00000 n +0000247534 00000 n +0000255139 00000 n +0000255290 00000 n +0000255442 00000 n +0000255593 00000 n +0000255746 00000 n +0000255897 00000 n +0000256048 00000 n +0000256200 00000 n +0000256354 00000 n +0000256507 00000 n +0000256660 00000 n +0000256813 00000 n +0000256966 00000 n +0000257119 00000 n +0000257273 00000 n +0000257426 00000 n +0000257578 00000 n +0000257852 00000 n +0000254872 00000 n +0000253436 00000 n +0000258640 00000 n +0000258521 00000 n +0000257976 00000 n +0002622137 00000 n +0000259151 00000 n +0000259032 00000 n +0000258738 00000 n +0000261314 00000 n +0000262282 00000 n +0000261650 00000 n +0000261175 00000 n +0000259236 00000 n +0000261469 00000 n +0002621438 00000 n +0000282927 00000 n +0000282989 00000 n +0000262163 00000 n +0000261787 00000 n +0000282865 00000 n +0000281137 00000 n +0000324452 00000 n +0000285307 00000 n +0000324606 00000 n +0000285892 00000 n +0000325997 00000 n +0000298855 00000 n +0000325246 00000 n +0000285160 00000 n +0000283136 00000 n +0000324761 00000 n +0000324882 00000 n +0000324943 00000 n +0000325004 00000 n +0000325124 00000 n +0000325185 00000 n +0000296502 00000 n +0000343364 00000 n +0000343426 00000 n +0000325878 00000 n +0000325472 00000 n +0000343302 00000 n +0000346077 00000 n +0000351715 00000 n +0000345958 00000 n +0000343574 00000 n +0000351289 00000 n +0000351350 00000 n +0000351411 00000 n +0000351472 00000 n +0000351533 00000 n +0000351654 00000 n +0002622255 00000 n +0000350555 00000 n +0000354288 00000 n +0000358603 00000 n +0000359003 00000 n +0000354149 00000 n +0000351915 00000 n +0000358758 00000 n +0000358941 00000 n +0000358322 00000 n +0000370091 00000 n +0000370240 00000 n +0000370399 00000 n +0000361554 00000 n +0000373848 00000 n +0000370857 00000 n +0000361399 00000 n +0000359229 00000 n +0000370555 00000 n +0000370736 00000 n +0000374185 00000 n +0000373709 00000 n +0000371070 00000 n +0000373999 00000 n +0000374061 00000 n +0000374123 00000 n +0000376426 00000 n +0000387971 00000 n +0000376307 00000 n +0000374358 00000 n +0000387547 00000 n +0000387608 00000 n +0000387669 00000 n +0000387729 00000 n +0002619436 00000 n +0000387790 00000 n +0000386040 00000 n +0000390888 00000 n +0000390399 00000 n +0000388171 00000 n +0000390518 00000 n +0000390580 00000 n +0000390642 00000 n +0000390704 00000 n +0000392528 00000 n +0000416534 00000 n +0000392409 00000 n +0000391012 00000 n +0000416292 00000 n +0000416473 00000 n +0002619770 00000 n +0002622373 00000 n +0000418631 00000 n +0000418450 00000 n +0000416734 00000 n +0000418569 00000 n +0000419334 00000 n +0000507409 00000 n +0000419215 00000 n +0000418742 00000 n +0000507227 00000 n +0000507348 00000 n +0000506202 00000 n +0000508026 00000 n +0000507845 00000 n +0000507570 00000 n +0000507964 00000 n +0000509919 00000 n +0000527560 00000 n +0000509800 00000 n +0000508111 00000 n +0000527316 00000 n +0000527499 00000 n +0000526131 00000 n +0000530465 00000 n +0000530222 00000 n +0000527800 00000 n +0000530341 00000 n +0000531850 00000 n +0000532070 00000 n +0000531711 00000 n +0000530638 00000 n +0000532009 00000 n +0002622491 00000 n +0000533403 00000 n +0000532748 00000 n +0000532505 00000 n +0000532194 00000 n +0000532624 00000 n +0000622055 00000 n +0000533284 00000 n +0000532846 00000 n +0000621933 00000 n +0000621994 00000 n +0000620634 00000 n +0000622657 00000 n +0000622476 00000 n +0000622203 00000 n +0000622595 00000 n +0000624474 00000 n +0000624628 00000 n +0000624783 00000 n +0000625122 00000 n +0000624319 00000 n +0000622742 00000 n +0000624939 00000 n +0000625061 00000 n +0000626699 00000 n +0000626761 00000 n +0000626518 00000 n +0000625345 00000 n +0000626637 00000 n +0000638897 00000 n +0000628643 00000 n +0000639052 00000 n +0000639452 00000 n +0000628496 00000 n +0000626948 00000 n +0000639208 00000 n +0000639330 00000 n +0002622609 00000 n +0000637686 00000 n +0000648791 00000 n +0000642020 00000 n +0000648915 00000 n +0000641901 00000 n +0000639652 00000 n +0000648729 00000 n +0000647809 00000 n +0000651564 00000 n +0000656016 00000 n +0000651445 00000 n +0000649128 00000 n +0000655833 00000 n +0000655894 00000 n +0000655182 00000 n +0000659068 00000 n +0000658391 00000 n +0000658148 00000 n +0000656203 00000 n +0000658267 00000 n +0000658329 00000 n +0000664431 00000 n +0000658949 00000 n +0000658528 00000 n +0000664309 00000 n +0000664370 00000 n +0000663457 00000 n +0000665042 00000 n +0000664861 00000 n +0000664579 00000 n +0000664980 00000 n +0000666893 00000 n +0000685187 00000 n +0000685587 00000 n +0000666754 00000 n +0000665127 00000 n +0000685343 00000 n +0000685526 00000 n +0002622727 00000 n +0000683581 00000 n +0000687493 00000 n +0000687312 00000 n +0000685787 00000 n +0000687431 00000 n +0000689496 00000 n +0000689133 00000 n +0000687640 00000 n +0000689252 00000 n +0000690049 00000 n +0000689868 00000 n +0000689594 00000 n +0000689987 00000 n +0000697218 00000 n +0000692328 00000 n +0000697374 00000 n +0000697896 00000 n +0000692181 00000 n +0000690134 00000 n +0000697530 00000 n +0000697713 00000 n +0000697835 00000 n +0000696931 00000 n +0000743204 00000 n +0000700203 00000 n +0000743266 00000 n +0000700084 00000 n +0000698083 00000 n +0000742771 00000 n +0000742833 00000 n +0000742894 00000 n +0000742956 00000 n +0000743018 00000 n +0000743080 00000 n +0000743142 00000 n +0000740098 00000 n +0000745588 00000 n +0000766706 00000 n +0000766862 00000 n +0000767322 00000 n +0000745441 00000 n +0000743451 00000 n +0000767017 00000 n +0000767139 00000 n +0000767200 00000 n +0000767261 00000 n +0002622845 00000 n +0000769881 00000 n +0000787276 00000 n +0000787432 00000 n +0000787774 00000 n +0000769734 00000 n +0000767533 00000 n +0000787588 00000 n +0000787712 00000 n +0000790119 00000 n +0000790576 00000 n +0000789980 00000 n +0000787987 00000 n +0000790272 00000 n +0000790393 00000 n +0000800384 00000 n +0000792570 00000 n +0000800726 00000 n +0000792431 00000 n +0000790789 00000 n +0000800540 00000 n +0000800664 00000 n +0000799318 00000 n +0000802613 00000 n +0000832449 00000 n +0000833485 00000 n +0000832784 00000 n +0000802474 00000 n +0000800900 00000 n +0000832601 00000 n +0000832195 00000 n +0000838575 00000 n +0000833366 00000 n +0000832958 00000 n +0000838451 00000 n +0000838513 00000 n +0000837964 00000 n +0000840347 00000 n +0000852386 00000 n +0000840228 00000 n +0000838723 00000 n +0000852081 00000 n +0000852203 00000 n +0002622963 00000 n +0000850851 00000 n +0000853968 00000 n +0000853787 00000 n +0000852573 00000 n +0000853906 00000 n +0000855763 00000 n +0000865328 00000 n +0000865728 00000 n +0000855624 00000 n +0000854103 00000 n +0000865484 00000 n +0000865606 00000 n +0000864096 00000 n +0000866843 00000 n +0000866662 00000 n +0000865928 00000 n +0000866781 00000 n +0000868298 00000 n +0000875127 00000 n +0000875466 00000 n +0000868159 00000 n +0000866991 00000 n +0000875283 00000 n +0000875405 00000 n +0000873893 00000 n +0000876056 00000 n +0000875875 00000 n +0000875627 00000 n +0000875994 00000 n +0000877816 00000 n +0000877515 00000 n +0000876141 00000 n +0000877634 00000 n +0002623081 00000 n +0000878391 00000 n +0000878210 00000 n +0000877950 00000 n +0000878329 00000 n +0000880148 00000 n +0000906072 00000 n +0000906818 00000 n +0000880029 00000 n +0000878476 00000 n +0000906452 00000 n +0000906635 00000 n +0000909182 00000 n +0000908939 00000 n +0000907019 00000 n +0000909058 00000 n +0000910963 00000 n +0000968798 00000 n +0000938196 00000 n +0000969199 00000 n +0000910823 00000 n +0000909329 00000 n +0000968952 00000 n +0000969075 00000 n +0000969137 00000 n +0001031196 00000 n +0000970900 00000 n +0001031352 00000 n +0001003134 00000 n +0001031509 00000 n +0001031665 00000 n +0001031821 00000 n +0001034906 00000 n +0001062712 00000 n +0001065162 00000 n +0001032295 00000 n +0000970721 00000 n +0000969413 00000 n +0001031977 00000 n +0001032041 00000 n +0001032105 00000 n +0001062867 00000 n +0001063024 00000 n +0001122107 00000 n +0001063369 00000 n +0001034744 00000 n +0001032486 00000 n +0001063181 00000 n +0001063244 00000 n +0002623200 00000 n +0001122483 00000 n +0001122547 00000 n +0001212100 00000 n +0001122263 00000 n +0001093339 00000 n +0001123477 00000 n +0001151381 00000 n +0001182714 00000 n +0001122611 00000 n +0001065009 00000 n +0001063571 00000 n +0001122419 00000 n +0001212163 00000 n +0001212226 00000 n +0001212289 00000 n +0001123354 00000 n +0001122828 00000 n +0001212037 00000 n +0001213696 00000 n +0001230924 00000 n +0001231081 00000 n +0001231429 00000 n +0001213543 00000 n +0001212469 00000 n +0001231238 00000 n +0001231365 00000 n +0001233511 00000 n +0001233667 00000 n +0001236200 00000 n +0001256798 00000 n +0001234135 00000 n +0001233358 00000 n +0001231642 00000 n +0001233823 00000 n +0001234009 00000 n +0001234072 00000 n +0001257018 00000 n +0001258573 00000 n +0001257208 00000 n +0001236056 00000 n +0001234273 00000 n +0001256954 00000 n +0001279329 00000 n +0001279392 00000 n +0001258450 00000 n +0001257397 00000 n +0001279266 00000 n +0002623325 00000 n +0001280046 00000 n +0001279859 00000 n +0001279555 00000 n +0001279982 00000 n +0001290923 00000 n +0001281515 00000 n +0001291329 00000 n +0001281371 00000 n +0001280132 00000 n +0001291080 00000 n +0001291267 00000 n +0001289714 00000 n +0001293478 00000 n +0001293228 00000 n +0001291531 00000 n +0001293351 00000 n +0001305598 00000 n +0001294963 00000 n +0001305943 00000 n +0001294819 00000 n +0001293603 00000 n +0001305755 00000 n +0001305880 00000 n +0001304390 00000 n +0001306555 00000 n +0001306368 00000 n +0001306119 00000 n +0001306491 00000 n +0001318241 00000 n +0001308004 00000 n +0001318648 00000 n +0001307860 00000 n +0001306641 00000 n +0001318398 00000 n +0001318523 00000 n +0002623450 00000 n +0001320394 00000 n +0001320611 00000 n +0001320250 00000 n +0001318850 00000 n +0001320547 00000 n +0001322770 00000 n +0001332639 00000 n +0001375107 00000 n +0001335591 00000 n +0001375264 00000 n +0001333170 00000 n +0001322626 00000 n +0001320723 00000 n +0001332796 00000 n +0001333045 00000 n +0001347679 00000 n +0001375613 00000 n +0001335438 00000 n +0001333346 00000 n +0001375421 00000 n +0001375485 00000 n +0002618934 00000 n +0001375549 00000 n +0001550172 00000 n +0001550329 00000 n +0001550485 00000 n +0001550641 00000 n +0001378303 00000 n +0001552220 00000 n +0001628145 00000 n +0001755892 00000 n +0001829576 00000 n +0001550798 00000 n +0001550954 00000 n +0001551301 00000 n +0001378114 00000 n +0001375831 00000 n +0001551115 00000 n +0001551240 00000 n +0001754767 00000 n +0001754831 00000 n +0001914352 00000 n +0001914415 00000 n +0001754895 00000 n +0001552097 00000 n +0001551528 00000 n +0001754703 00000 n +0001914478 00000 n +0001755769 00000 n +0001755084 00000 n +0001914289 00000 n +0002623575 00000 n +0001916449 00000 n +0001977831 00000 n +0001977987 00000 n +0001978333 00000 n +0001916296 00000 n +0001914667 00000 n +0001978142 00000 n +0001978269 00000 n +0001975082 00000 n +0001981076 00000 n +0001980705 00000 n +0001978520 00000 n +0001980828 00000 n +0001982094 00000 n +0001981655 00000 n +0001981214 00000 n +0001981778 00000 n +0001983672 00000 n +0002013638 00000 n +0001983549 00000 n +0001982206 00000 n +0002013388 00000 n +0002013513 00000 n +0002010281 00000 n +0002016279 00000 n +0002019519 00000 n +0002016431 00000 n +0002016967 00000 n +0002016126 00000 n +0002013853 00000 n +0002016587 00000 n +0002016903 00000 n +0002032508 00000 n +0002032290 00000 n +0002032632 00000 n +0002019375 00000 n +0002017118 00000 n +0002032445 00000 n +0002032571 00000 n +0002623700 00000 n +0002031145 00000 n +0002035406 00000 n +0002053058 00000 n +0002035661 00000 n +0002035219 00000 n +0002032808 00000 n +0002035342 00000 n +0002035470 00000 n +0002035534 00000 n +0002053210 00000 n +0002037435 00000 n +0002053364 00000 n +0002053769 00000 n +0002037273 00000 n +0002035799 00000 n +0002053519 00000 n +0002053706 00000 n +0002054421 00000 n +0002054234 00000 n +0002053958 00000 n +0002054357 00000 n +0002055890 00000 n +0002058171 00000 n +0002090767 00000 n +0002090923 00000 n +0002093821 00000 n +0002091078 00000 n +0002091548 00000 n +0002055728 00000 n +0002054507 00000 n +0002091235 00000 n +0002091422 00000 n +0002091485 00000 n +0002103262 00000 n +0002103041 00000 n +0002105377 00000 n +0002103326 00000 n +0002093677 00000 n +0002091765 00000 n +0002103198 00000 n +0002124967 00000 n +0002125030 00000 n +0002105254 00000 n +0002103502 00000 n +0002124904 00000 n +0002623825 00000 n +0002123082 00000 n +0002127099 00000 n +0002142340 00000 n +0002142625 00000 n +0002126955 00000 n +0002125193 00000 n +0002142497 00000 n +0002142561 00000 n +0002144374 00000 n +0002164710 00000 n +0002164867 00000 n +0002157150 00000 n +0002165021 00000 n +0002165366 00000 n +0002144212 00000 n +0002142801 00000 n +0002165178 00000 n +0002165241 00000 n +0002165304 00000 n 0002173515 00000 n -0002173842 00000 n -0002186597 00000 n -0002186871 00000 n -0002193115 00000 n -0002193352 00000 n -0002197680 00000 n -0002197907 00000 n -0002217714 00000 n -0002218090 00000 n -0002250179 00000 n -0002250819 00000 n -0002263594 00000 n -0002263868 00000 n -0002274000 00000 n -0002274247 00000 n -0002305185 00000 n -0002305681 00000 n -0002328842 00000 n -0002329223 00000 n -0002353071 00000 n -0002353457 00000 n -0002379067 00000 n -0002379501 00000 n -0002399429 00000 n -0002399814 00000 n -0002435719 00000 n -0002441939 00000 n -0002442059 00000 n -0002442180 00000 n -0002442306 00000 n -0002442389 00000 n -0002452612 00000 n -0002452786 00000 n -0002452957 00000 n -0002453126 00000 n -0002453300 00000 n -0002453474 00000 n -0002453650 00000 n -0002453846 00000 n -0002454041 00000 n -0002454234 00000 n -0002454423 00000 n -0002454622 00000 n -0002454841 00000 n -0002455060 00000 n -0002455278 00000 n -0002455497 00000 n -0002455715 00000 n -0002455939 00000 n -0002456162 00000 n -0002456387 00000 n -0002456610 00000 n -0002456833 00000 n -0002457058 00000 n -0002457254 00000 n -0002457425 00000 n -0002457595 00000 n -0002457766 00000 n -0002457936 00000 n -0002458107 00000 n -0002458277 00000 n -0002458448 00000 n -0002458617 00000 n -0002458790 00000 n -0002458967 00000 n -0002459142 00000 n -0002459319 00000 n -0002459494 00000 n -0002459671 00000 n -0002459846 00000 n -0002460023 00000 n -0002460212 00000 n -0002460423 00000 n -0002460634 00000 n -0002460840 00000 n -0002461042 00000 n -0002461253 00000 n -0002461464 00000 n -0002461666 00000 n -0002461878 00000 n -0002462122 00000 n -0002462366 00000 n -0002462608 00000 n -0002462859 00000 n -0002463110 00000 n -0002463277 00000 n -0002463400 00000 n -0002463527 00000 n -0002463655 00000 n -0002463777 00000 n -0002463893 00000 n -0002464008 00000 n -0002464129 00000 n -0002464259 00000 n -0002464389 00000 n -0002464507 00000 n -0002464601 00000 n -0002464688 00000 n -0002464728 00000 n -0002464909 00000 n +0002168081 00000 n +0002173671 00000 n +0002171193 00000 n +0002174273 00000 n +0002167928 00000 n +0002165570 00000 n +0002173828 00000 n +0002173955 00000 n +0002174019 00000 n +0002174083 00000 n +0002174147 00000 n +0002174209 00000 n +0002178576 00000 n +0002176022 00000 n +0002178859 00000 n +0002175878 00000 n +0002174490 00000 n +0002178733 00000 n +0002178796 00000 n +0002179517 00000 n +0002179330 00000 n +0002179048 00000 n +0002179453 00000 n +0002180987 00000 n +0002208834 00000 n +0002209241 00000 n +0002180843 00000 n +0002179603 00000 n +0002208991 00000 n +0002209178 00000 n +0002623950 00000 n +0002207560 00000 n +0002211237 00000 n +0002240631 00000 n +0002241106 00000 n +0002211093 00000 n +0002209443 00000 n +0002240788 00000 n +0002240978 00000 n +0002241042 00000 n +0002238327 00000 n +0002242989 00000 n +0002254109 00000 n +0002255795 00000 n +0002254517 00000 n +0002242845 00000 n +0002241308 00000 n +0002254266 00000 n +0002254329 00000 n +0002254454 00000 n +0002256074 00000 n +0002255651 00000 n +0002254706 00000 n +0002255947 00000 n +0002256630 00000 n +0002256382 00000 n +0002256186 00000 n +0002256505 00000 n +0002257151 00000 n +0002256964 00000 n +0002256716 00000 n +0002257087 00000 n +0002257839 00000 n +0002257993 00000 n +0002258147 00000 n +0002258301 00000 n +0002258580 00000 n +0002257668 00000 n +0002257237 00000 n +0002258454 00000 n +0002258517 00000 n +0002624075 00000 n +0002259118 00000 n +0002258931 00000 n +0002258666 00000 n +0002259054 00000 n +0002260829 00000 n +0002260983 00000 n +0002261137 00000 n +0002261291 00000 n +0002261445 00000 n +0002261599 00000 n +0002261753 00000 n +0002261906 00000 n +0002262061 00000 n +0002262215 00000 n +0002262370 00000 n +0002262525 00000 n +0002262679 00000 n +0002262834 00000 n +0002262989 00000 n +0002263144 00000 n +0002263299 00000 n +0002263453 00000 n +0002263608 00000 n +0002263763 00000 n +0002263918 00000 n +0002264073 00000 n +0002264228 00000 n +0002264383 00000 n +0002264538 00000 n +0002264693 00000 n +0002264848 00000 n +0002265003 00000 n +0002265157 00000 n +0002265311 00000 n +0002265466 00000 n +0002267788 00000 n +0002265747 00000 n +0002260415 00000 n +0002259204 00000 n +0002265621 00000 n +0002265684 00000 n +0002267945 00000 n +0002268101 00000 n +0002268258 00000 n +0002268415 00000 n +0002268572 00000 n +0002268728 00000 n +0002268884 00000 n +0002269039 00000 n +0002269195 00000 n +0002269351 00000 n +0002269507 00000 n +0002269663 00000 n +0002269820 00000 n +0002269976 00000 n +0002270133 00000 n +0002270290 00000 n +0002270447 00000 n +0002270604 00000 n +0002270761 00000 n +0002270917 00000 n +0002271074 00000 n +0002271230 00000 n +0002271387 00000 n +0002271543 00000 n +0002271699 00000 n +0002271856 00000 n +0002272012 00000 n +0002272169 00000 n +0002272326 00000 n +0002272483 00000 n +0002272640 00000 n +0002272797 00000 n +0002272954 00000 n +0002273111 00000 n +0002273268 00000 n +0002273425 00000 n +0002273582 00000 n +0002273739 00000 n +0002273895 00000 n +0002274052 00000 n +0002274207 00000 n +0002274428 00000 n +0002267275 00000 n +0002265833 00000 n +0002274364 00000 n +0002618256 00000 n +0002274514 00000 n +0002274640 00000 n +0002274757 00000 n +0002275186 00000 n +0002276547 00000 n +0002276648 00000 n +0002277899 00000 n +0002279222 00000 n +0002279670 00000 n +0002279763 00000 n +0002280266 00000 n +0002281611 00000 n +0002282845 00000 n +0002284158 00000 n +0002285339 00000 n +0002286594 00000 n +0002288053 00000 n +0002288500 00000 n +0002288717 00000 n +0002289063 00000 n +0002290713 00000 n +0002290983 00000 n +0002292736 00000 n +0002292964 00000 n +0002295645 00000 n +0002295922 00000 n +0002314414 00000 n +0002314659 00000 n +0002333138 00000 n +0002333446 00000 n +0002355811 00000 n +0002356138 00000 n +0002368893 00000 n +0002369167 00000 n +0002375411 00000 n +0002375648 00000 n +0002379976 00000 n +0002380203 00000 n +0002400010 00000 n +0002400386 00000 n +0002432475 00000 n +0002433115 00000 n +0002445730 00000 n +0002446006 00000 n +0002456138 00000 n +0002456385 00000 n +0002487323 00000 n +0002487819 00000 n +0002510980 00000 n +0002511361 00000 n +0002535209 00000 n +0002535595 00000 n +0002561205 00000 n +0002561639 00000 n +0002581567 00000 n +0002581952 00000 n +0002617857 00000 n +0002624182 00000 n +0002624302 00000 n +0002624423 00000 n +0002624549 00000 n +0002624629 00000 n +0002624721 00000 n +0002635131 00000 n +0002635305 00000 n +0002635476 00000 n +0002635645 00000 n +0002635819 00000 n +0002635993 00000 n +0002636169 00000 n +0002636365 00000 n +0002636560 00000 n +0002636753 00000 n +0002636943 00000 n +0002637142 00000 n +0002637361 00000 n +0002637580 00000 n +0002637798 00000 n +0002638017 00000 n +0002638240 00000 n +0002638465 00000 n +0002638688 00000 n +0002638913 00000 n +0002639136 00000 n +0002639359 00000 n +0002639584 00000 n +0002639790 00000 n +0002639972 00000 n +0002640143 00000 n +0002640313 00000 n +0002640484 00000 n +0002640654 00000 n +0002640825 00000 n +0002640995 00000 n +0002641166 00000 n +0002641335 00000 n +0002641507 00000 n +0002641684 00000 n +0002641859 00000 n +0002642036 00000 n +0002642211 00000 n +0002642388 00000 n +0002642563 00000 n +0002642740 00000 n +0002642929 00000 n +0002643140 00000 n +0002643351 00000 n +0002643557 00000 n +0002643759 00000 n +0002643970 00000 n +0002644181 00000 n +0002644382 00000 n +0002644585 00000 n +0002644816 00000 n +0002645064 00000 n +0002645301 00000 n +0002645552 00000 n +0002645803 00000 n +0002646031 00000 n +0002646154 00000 n +0002646281 00000 n +0002646409 00000 n +0002646532 00000 n +0002646648 00000 n +0002646764 00000 n +0002646885 00000 n +0002647010 00000 n +0002647140 00000 n +0002647226 00000 n +0002647344 00000 n +0002647447 00000 n +0002647534 00000 n +0002647574 00000 n +0002647755 00000 n trailer -<< /Size 1527 -/Root 1525 0 R -/Info 1526 0 R -/ID [ ] >> +<< /Size 1564 +/Root 1562 0 R +/Info 1563 0 R +/ID [ ] >> startxref -2465309 +2648155 %%EOF diff --git a/content/ToDo_FASo.html b/content/ToDo_FASo.html index ebe201a3b..cc762a9a3 100644 --- a/content/ToDo_FASo.html +++ b/content/ToDo_FASo.html @@ -127,10 +127,7 @@ damit die Personen für diverse Kriterien markiert werden können
- Für Absolventen die in ein anderes Semester verschoben wurden -(zb 10) kann keine Studienerfolgsbestätigung gedruckt werden, da sonst -oben 10. Semester aufscheint. Hier sollte das Semester aus dem Status -angezeigt werden
+

@@ -472,6 +469,18 @@ Vorlage?

Erledigte Anforderungen


    +
  • Für Absolventen die in ein anderes Semester verschoben wurden +(zb 10) kann keine Studienerfolgsbestätigung gedruckt werden, da sonst +oben 10. Semester aufscheint. Hier sollte das Semester aus dem Status +angezeigt werden (gilt auch für das Zeugnis)
    +08.09.2009
    +
    +
  • +
  • Bei Funktionen kann nun ein Gültigkeitszeitraum angegeben werden +(für Stgl, Assistenz, FBL, ...)
    +07.09.2009
    +
    +
  • Bewerber können nun nur noch dann inskribiert werden, wenn ein "Aufgenommener" Status vorhanden ist. Ausserdem müssen Studiensemester und Ausbildungssemester der beiden Stati (Aufgenommener/Bewerber) diff --git a/content/fasDBDML.php b/content/fasDBDML.php index 4c08e9177..452a79180 100644 --- a/content/fasDBDML.php +++ b/content/fasDBDML.php @@ -353,7 +353,7 @@ if(!$error) if(isset($_POST['neu']) && $_POST['neu']=='true') { $benutzerfunktion->new = true; - $bentuzerfunktion->insertamum=date('Y-m-d H:i:s'); + $benutzerfunktion->insertamum=date('Y-m-d H:i:s'); $benutzerfunktion->insertvon = $user; } else @@ -388,6 +388,8 @@ if(!$error) $benutzerfunktion->funktion_kurzbz = $_POST['funktion_kurzbz']; $benutzerfunktion->updateamum = date('Y-m-d H:i:s'); $benutzerfunktion->updatevon = $user; + $benutzerfunktion->datum_von = $_POST['datum_von']; + $benutzerfunktion->datum_bis = $_POST['datum_bis']; if($benutzerfunktion->save()) { diff --git a/content/funktionen.js.php b/content/funktionen.js.php index cc259f02b..eae96cf66 100644 --- a/content/funktionen.js.php +++ b/content/funktionen.js.php @@ -178,6 +178,13 @@ function FunktionNeu() document.getElementById('funktion-menulist-funktion').value='stdv'; } + var Datum = new Date() + var Jahr = Datum.getFullYear() + var Tag = Datum.getDate() + var Monat = Datum.getMonth()+1 + + document.getElementById('funktion-box-datum_von').value=Tag+'.'+Monat+'.'+Jahr; + document.getElementById('funktion-box-datum_bis').value=''; FunktionToggleFachbereich(); } @@ -242,12 +249,14 @@ function FunktionDelete() // **** function FunktionDetailSpeichern() { - funktion_kurzbz = document.getElementById('funktion-menulist-funktion').value; - oe_kurzbz = document.getElementById('funktion-menulist-oe_kurzbz').value; - semester = document.getElementById('funktion-menulist-semester').value; - fachbereich_kurzbz = document.getElementById('funktion-menulist-fachbereich').value; - neu = document.getElementById('funktion-checkbox-neu').checked; - benutzerfunktion_id = document.getElementById('funktion-textbox-benutzerfunktion_id').value; + var funktion_kurzbz = document.getElementById('funktion-menulist-funktion').value; + var oe_kurzbz = document.getElementById('funktion-menulist-oe_kurzbz').value; + var semester = document.getElementById('funktion-menulist-semester').value; + var fachbereich_kurzbz = document.getElementById('funktion-menulist-fachbereich').value; + var neu = document.getElementById('funktion-checkbox-neu').checked; + var benutzerfunktion_id = document.getElementById('funktion-textbox-benutzerfunktion_id').value; + var datum_von = document.getElementById('funktion-box-datum_von').value; + var datum_bis = document.getElementById('funktion-box-datum_bis').value; //Bei Mitarbeitern wird kein Studiengang mitgeschickt if(window.parent.document.getElementById('main-content-tabs').selectedItem==window.parent.document.getElementById('tab-mitarbeiter')) @@ -272,6 +281,8 @@ function FunktionDetailSpeichern() req.add('uid', FunktionenUID); req.add('neu', neu); req.add('benutzerfunktion_id', benutzerfunktion_id); + req.add('datum_von', ConvertDateToISO(datum_von)); + req.add('datum_bis', ConvertDateToISO(datum_bis)); var response = req.executePOST(); @@ -305,6 +316,9 @@ function FunktionBearbeiten() tree = document.getElementById('funktion-tree'); + if (tree.currentIndex==-1) + return; + //Ausgewaehlte Nr holen var col = tree.columns ? tree.columns["funktion-treecol-benutzerfunktion_id"] : "funktion-treecol-benutzerfunktion_id"; var benutzerfunktion_id=tree.view.getCellText(tree.currentIndex,col); @@ -322,11 +336,13 @@ function FunktionBearbeiten() var predicateNS = "http://www.technikum-wien.at/bnfunktion/rdf"; //Daten holen - fachbereich_kurzbz = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#fachbereich_kurzbz" )); - uid = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#uid" )); - oe_kurzbz = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#oe_kurzbz" )); - semester = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#semester" )); - funktion_kurzbz = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#funktion_kurzbz" )); + var fachbereich_kurzbz = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#fachbereich_kurzbz" )); + var uid = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#uid" )); + var oe_kurzbz = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#oe_kurzbz" )); + var semester = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#semester" )); + var funktion_kurzbz = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#funktion_kurzbz" )); + var datum_von = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#datum_von" )); + var datum_bis = getTargetHelper(dsource,subject,rdfService.GetResource( predicateNS + "#datum_bis" )); document.getElementById('funktion-menulist-fachbereich').value=fachbereich_kurzbz; document.getElementById('funktion-menulist-oe_kurzbz').value=oe_kurzbz; @@ -334,6 +350,8 @@ function FunktionBearbeiten() document.getElementById('funktion-menulist-funktion').value=funktion_kurzbz; document.getElementById('funktion-textbox-benutzerfunktion_id').value=benutzerfunktion_id; document.getElementById('funktion-checkbox-neu').checked = false; + document.getElementById('funktion-box-datum_von').value=datum_von; + document.getElementById('funktion-box-datum_bis').value=datum_bis; FunktionDetailDisableFields(false); FunktionToggleFachbereich(); @@ -361,6 +379,8 @@ function FunktionDetailDisableFields(val) document.getElementById('funktion-menulist-semester').disabled=val; document.getElementById('funktion-menulist-funktion').disabled=val; document.getElementById('funktion-button-speichern').disabled=val; + document.getElementById('funktion-box-datum_von').disabled=val; + document.getElementById('funktion-box-datum_bis').disabled=val; } // **** @@ -369,45 +389,53 @@ function FunktionDetailDisableFields(val) function FunktionDetailResetFields() { document.getElementById('funktion-menulist-fachbereich').value=''; - document.getElementById('funktion-menulist-oe_kurzbz').value='0'; + document.getElementById('funktion-menulist-oe_kurzbz').selectedIndex=0; document.getElementById('funktion-menulist-semester').value=''; document.getElementById('funktion-menulist-funktion').value='ass'; + + var Datum = new Date(); + var Jahr = Datum.getFullYear(); + var Tag = Datum.getDate(); + var Monat = Datum.getMonth()+1; + + document.getElementById('funktion-box-datum_von').value=Tag+'.'+Monat+'.'+Jahr; + document.getElementById('funktion-box-datum_bis').value=''; } // **** -// * FachbereichsDropDown steht nur bei manchen Funktionen zur Verfuegung +// * Fachbereichs und Semester DropDown nur Anzeigen, wenn die entsprechenden Attribute +// * der Funktion auf true gesetzt sind // **** function FunktionToggleFachbereich() { - fkt = document.getElementById('funktion-menulist-funktion').value; + var menulist = document.getElementById('funktion-menulist-funktion'); - var hidd=false; + //ersten selektierten Eintrag holen + var children = menulist.getElementsByAttribute('selected','true'); + children = children[0]; - switch(fkt) - { - case 'ass': - case 'infr': - case 'rek': - case 'lkt': - case 'stdv': - case 'stgl': - case 'stglstv': - case 'vrek': - case 'stud': - case 'prl': - case 'oeh-kandidatur': - hidd = true; - break; + //Attribute semester und fachbereich auslesen + var semester = children.getAttribute('semester'); + var fachbereich = children.getAttribute('fachbereich'); + + //Felder sichtbar/unsichtbar setzen + var semesterhidden=false; + var fachbereichhidden=false; + + if(semester=='true') + semesterhidden=false; + else + semesterhidden=true; - case 'fbk': - case 'fbl': - hidd = false; - break; - default: - hidd=false; - break; - } + if(fachbereich=='true') + fachbereichhidden=false; + else + fachbereichhidden=true; + + document.getElementById('funktion-menulist-fachbereich').hidden=fachbereichhidden; + document.getElementById('funktion-label-fachbereich').hidden=fachbereichhidden; + + document.getElementById('funktion-menulist-semester').hidden=semesterhidden; + document.getElementById('funktion-label-semester').hidden=semesterhidden; - document.getElementById('funktion-menulist-fachbereich').hidden=hidd; - document.getElementById('funktion-label-fachbereich').hidden=hidd; } \ No newline at end of file diff --git a/content/funktionen.xul.php b/content/funktionen.xul.php index 3818580ac..41a16c04f 100644 --- a/content/funktionen.xul.php +++ b/content/funktionen.xul.php @@ -31,6 +31,7 @@ echo ''."\n"; echo ''; echo ''; +echo ''; if(isset($_GET['uid'])) $uid = $_GET['uid']; @@ -92,6 +93,14 @@ else class="sortDirectionIndicator" sort="rdf:http://www.technikum-wien.at/bnfunktion/rdf#funktion_kurzbz" onclick="FunktionTreeSort()"/> +