diff --git a/Bugzilla.pm b/Bugzilla.pm index 0deb6e16e56e1ac328f6008c21e05df1275d9e85..c46b8f80637f65f22fa2bbd541ff4b1a86a698fc 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -144,12 +144,20 @@ sub switch_to_shadow_db { } $_dbh = $_dbh_shadow; + # we have to return $class->dbh instead of $_dbh as + # $_dbh_shadow may be undefined if no shadow DB is used + # and no connection to the main DB has been established yet. + return $class->dbh; } sub switch_to_main_db { my $class = shift; $_dbh = $_dbh_main; + # We have to return $class->dbh instead of $_dbh as + # $_dbh_main may be undefined if no connection to the main DB + # has been established yet. + return $class->dbh; } # Private methods diff --git a/Bugzilla/Auth/CVS/Entries b/Bugzilla/Auth/CVS/Entries index 51770adbdf4f572e6d8ba35af2db82e2b9deaa75..b1c6ac055f8468932d113b1cd13417235da531d1 100644 --- a/Bugzilla/Auth/CVS/Entries +++ b/Bugzilla/Auth/CVS/Entries @@ -1,3 +1,3 @@ -/README/1.2/Thu Jul 29 02:45:38 2004//TBUGZILLA-2_20 +/README/1.2/Thu Jul 29 02:45:38 2004//TBUGZILLA-2_20_1 D/Login//// D/Verify//// diff --git a/Bugzilla/Auth/CVS/Tag b/Bugzilla/Auth/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/Bugzilla/Auth/CVS/Tag +++ b/Bugzilla/Auth/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/Bugzilla/Auth/Login/CVS/Entries b/Bugzilla/Auth/Login/CVS/Entries index baffa44b2df277554878034818337449e1194e39..5bc112bf21262a261b7975777de268ce9f262daa 100644 --- a/Bugzilla/Auth/Login/CVS/Entries +++ b/Bugzilla/Auth/Login/CVS/Entries @@ -1,2 +1,2 @@ -/WWW.pm/1.6.4.1/Wed Jul 27 19:08:42 2005//TBUGZILLA-2_20 +/WWW.pm/1.6.4.1/Wed Jul 27 19:08:42 2005//TBUGZILLA-2_20_1 D/WWW//// diff --git a/Bugzilla/Auth/Login/CVS/Tag b/Bugzilla/Auth/Login/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/Bugzilla/Auth/Login/CVS/Tag +++ b/Bugzilla/Auth/Login/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/Bugzilla/Auth/Login/WWW/CGI.pm b/Bugzilla/Auth/Login/WWW/CGI.pm index 00d5e382ac3080e7b67afb092b7643a8595ba7aa..9a83821bd11d68333511575c32e4c97908cedd15 100644 --- a/Bugzilla/Auth/Login/WWW/CGI.pm +++ b/Bugzilla/Auth/Login/WWW/CGI.pm @@ -80,6 +80,7 @@ sub login { # or admin didn't forbid it and user told to remember. if ((Param('rememberlogin') eq 'on') || ((Param('rememberlogin') ne 'off') && + $cgi->param('Bugzilla_remember') && ($cgi->param('Bugzilla_remember') eq 'on'))) { $cgi->send_cookie(-name => 'Bugzilla_login', -value => $userid, @@ -195,6 +196,7 @@ sub can_logout { return 1; } sub logout { my ($class, $user, $option) = @_; my $dbh = Bugzilla->dbh; + my $cgi = Bugzilla->cgi; $option = LOGOUT_ALL unless defined $option; if ($option == LOGOUT_ALL) { @@ -203,8 +205,17 @@ sub logout { return; } - # The LOGOUT_*_CURRENT options require a cookie - my $cookie = Bugzilla->cgi->cookie("Bugzilla_logincookie"); + # The LOGOUT_*_CURRENT options require the current login cookie. + # If a new cookie has been issued during this run, that's the current one. + # If not, it's the one we've received. + my $cookie; + foreach (@{$cgi->{'Bugzilla_cookie_list'}}) { + if ($_->name() eq 'Bugzilla_logincookie') { + $cookie = $_->value(); + last; + } + } + $cookie ||= $cgi->cookie("Bugzilla_logincookie"); detaint_natural($cookie); # These queries use both the cookie ID and the user ID as keys. Even diff --git a/Bugzilla/Auth/Login/WWW/CGI/CVS/Entries b/Bugzilla/Auth/Login/WWW/CGI/CVS/Entries index 2fee5f9ab8d472d6742804eeb0c8ef0940f8ebe5..0a8797eff868ab46d8dd8100809f0121cc74403d 100644 --- a/Bugzilla/Auth/Login/WWW/CGI/CVS/Entries +++ b/Bugzilla/Auth/Login/WWW/CGI/CVS/Entries @@ -1,2 +1,2 @@ -/Cookie.pm/1.3/Tue Mar 22 22:41:07 2005//TBUGZILLA-2_20 +/Cookie.pm/1.3/Tue Mar 22 22:41:07 2005//TBUGZILLA-2_20_1 D diff --git a/Bugzilla/Auth/Login/WWW/CGI/CVS/Tag b/Bugzilla/Auth/Login/WWW/CGI/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/Bugzilla/Auth/Login/WWW/CGI/CVS/Tag +++ b/Bugzilla/Auth/Login/WWW/CGI/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/Bugzilla/Auth/Login/WWW/CVS/Entries b/Bugzilla/Auth/Login/WWW/CVS/Entries index 278027edc4932f96e7f39d445a224e9fdbcd7c36..86bbe89ec0d9012fe413d55bfc8e32a61843dfe7 100644 --- a/Bugzilla/Auth/Login/WWW/CVS/Entries +++ b/Bugzilla/Auth/Login/WWW/CVS/Entries @@ -1,3 +1,3 @@ -/CGI.pm/1.12/Fri Jul 8 04:48:47 2005//TBUGZILLA-2_20 -/Env.pm/1.4.2.1/Tue Jul 26 14:57:04 2005//TBUGZILLA-2_20 +/CGI.pm/1.12.2.2/Mon Jan 9 19:09:46 2006//TBUGZILLA-2_20_1 +/Env.pm/1.4.2.1/Tue Jul 26 14:57:04 2005//TBUGZILLA-2_20_1 D/CGI//// diff --git a/Bugzilla/Auth/Login/WWW/CVS/Tag b/Bugzilla/Auth/Login/WWW/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/Bugzilla/Auth/Login/WWW/CVS/Tag +++ b/Bugzilla/Auth/Login/WWW/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/Bugzilla/Auth/Verify/CVS/Entries b/Bugzilla/Auth/Verify/CVS/Entries index 4eb3d7ce7c7fded0f8f4727bde69d4d92d58aaff..52ea52fae1e32b1e9fd01760985424bad2293dac 100644 --- a/Bugzilla/Auth/Verify/CVS/Entries +++ b/Bugzilla/Auth/Verify/CVS/Entries @@ -1,3 +1,3 @@ -/DB.pm/1.5.2.1/Wed Jul 13 04:02:21 2005//TBUGZILLA-2_20 -/LDAP.pm/1.6/Fri Jul 8 02:31:42 2005//TBUGZILLA-2_20 +/DB.pm/1.5.2.1/Wed Jul 13 04:02:21 2005//TBUGZILLA-2_20_1 +/LDAP.pm/1.6/Fri Jul 8 02:31:42 2005//TBUGZILLA-2_20_1 D diff --git a/Bugzilla/Auth/Verify/CVS/Tag b/Bugzilla/Auth/Verify/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/Bugzilla/Auth/Verify/CVS/Tag +++ b/Bugzilla/Auth/Verify/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index c0fc7d882953ba1212bfdf2faafb921b8fdb1320..98420f51d2d414072c69c4f2581edfa1c2c89164 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -163,8 +163,21 @@ sub ProcessOneBug($$) { my $reporter = $values{'reporter'}; my @assignees = ($values{'assigned_to'}); my @qa_contacts = ($values{'qa_contact'}); - my @ccs = @{$dbh->selectcol_arrayref("SELECT who - FROM cc WHERE bug_id = $id")}; + + my $cc_users = $dbh->selectall_arrayref( + "SELECT cc.who, profiles.login_name + FROM cc + INNER JOIN profiles + ON cc.who = profiles.userid + WHERE bug_id = ?", + undef, $id); + + my (@ccs, @cc_login_names); + foreach my $cc_user (@$cc_users) { + my ($user_id, $user_login) = @$cc_user; + push (@ccs, $user_id); + push (@cc_login_names, $user_login); + } # Include the people passed in as being in particular roles. # This can include people who used to hold those roles. @@ -190,6 +203,7 @@ sub ProcessOneBug($$) { if ($values{'qa_contact'}) { $values{'qa_contact'} = DBID_to_name($values{'qa_contact'}); } + $values{'cc'} = join(', ', @cc_login_names); $values{'estimated_time'} = format_time_decimal($values{'estimated_time'}); if ($values{'deadline'}) { @@ -408,7 +422,9 @@ sub ProcessOneBug($$) { my $sent_mail = 0; my $user = new Bugzilla::User($user_id); - + # Deleted users must be excluded. + next unless $user; + if ($user->can_see_bug($id)) { # Go through each role the user has and see if they want mail in @@ -584,7 +600,7 @@ sub sendMail($$$$$$$$$$$$) { $newcomments =~ s/(Created an attachment \(id=([0-9]+)\))/$1\n --> \(${showattachurlbase}$2&action=view\)/g; } - $substs{"neworchanged"} = $isnew ? ' New: ' : ''; + $substs{"neworchanged"} = $isnew ? 'New: ' : ''; $substs{"to"} = $user->email; $substs{"cc"} = ''; $substs{"bugid"} = $id; @@ -629,6 +645,9 @@ sub MessageToMTA ($) { } my @args; + if (Param("mail_delivery_method") eq "sendmail") { + push @args, "-i"; + } if (Param("mail_delivery_method") eq "sendmail" && !Param("sendmailnow")) { push @args, "-ODeliveryMode=deferred"; } diff --git a/Bugzilla/CVS/Entries b/Bugzilla/CVS/Entries index 46e7dfe706a4b5f6b53097c6a3d53bae4f301f29..425ee0c4e1d5b23829dc1654113f8e9815f71693 100644 --- a/Bugzilla/CVS/Entries +++ b/Bugzilla/CVS/Entries @@ -1,23 +1,23 @@ -/.cvsignore/1.1/Mon Aug 26 22:24:55 2002//TBUGZILLA-2_20 -/Attachment.pm/1.21/Thu Apr 28 02:14:26 2005//TBUGZILLA-2_20 -/Auth.pm/1.10.2.2/Wed Jul 27 19:08:41 2005//TBUGZILLA-2_20 -/Bug.pm/1.81.2.3/Thu Sep 8 23:45:15 2005//TBUGZILLA-2_20 -/BugMail.pm/1.39.4.2/Sat Aug 13 15:04:29 2005//TBUGZILLA-2_20 -/CGI.pm/1.16.2.1/Thu Sep 22 16:57:59 2005//TBUGZILLA-2_20 -/Chart.pm/1.8/Mon Apr 11 22:39:11 2005//TBUGZILLA-2_20 -/Config.pm/1.43.2.4/Fri Sep 30 22:38:03 2005//TBUGZILLA-2_20 -/Constants.pm/1.25.2.1/Sat Aug 13 15:04:29 2005//TBUGZILLA-2_20 -/DB.pm/1.56.2.3/Fri Sep 2 23:32:47 2005//TBUGZILLA-2_20 -/Error.pm/1.13.4.1/Wed Jul 27 19:08:41 2005//TBUGZILLA-2_20 -/Flag.pm/1.45.2.1/Wed Jul 27 19:08:41 2005//TBUGZILLA-2_20 -/FlagType.pm/1.19.2.1/Wed Jul 27 19:08:41 2005//TBUGZILLA-2_20 -/Group.pm/1.1/Fri Feb 18 22:42:07 2005//TBUGZILLA-2_20 -/Search.pm/1.99.2.5/Fri Sep 16 15:02:56 2005//TBUGZILLA-2_20 -/Series.pm/1.9/Wed Mar 16 00:27:15 2005//TBUGZILLA-2_20 -/Template.pm/1.26/Wed Jun 15 03:54:58 2005//TBUGZILLA-2_20 -/Token.pm/1.31/Fri Jul 8 02:31:41 2005//TBUGZILLA-2_20 -/User.pm/1.61.2.10/Fri Sep 30 22:28:04 2005//TBUGZILLA-2_20 -/Util.pm/1.28.2.3/Thu Sep 22 16:57:59 2005//TBUGZILLA-2_20 +/.cvsignore/1.1/Mon Aug 26 22:24:55 2002//TBUGZILLA-2_20_1 +/Attachment.pm/1.21/Thu Apr 28 02:14:26 2005//TBUGZILLA-2_20_1 +/Auth.pm/1.10.2.2/Wed Jul 27 19:08:41 2005//TBUGZILLA-2_20_1 +/Bug.pm/1.81.2.3/Thu Sep 8 23:45:15 2005//TBUGZILLA-2_20_1 +/BugMail.pm/1.39.4.6/Sat Jan 7 16:23:10 2006//TBUGZILLA-2_20_1 +/CGI.pm/1.16.2.1/Thu Sep 22 16:57:59 2005//TBUGZILLA-2_20_1 +/Chart.pm/1.8.4.1/Thu Jan 26 22:35:18 2006//TBUGZILLA-2_20_1 +/Config.pm/1.43.2.6/Tue Feb 21 06:50:15 2006//TBUGZILLA-2_20_1 +/Constants.pm/1.25.2.2/Tue Feb 21 00:12:02 2006//TBUGZILLA-2_20_1 +/DB.pm/1.56.2.7/Thu Jan 5 00:16:19 2006//TBUGZILLA-2_20_1 +/Error.pm/1.13.4.1/Wed Jul 27 19:08:41 2005//TBUGZILLA-2_20_1 +/Flag.pm/1.45.2.4/Fri Dec 30 00:34:50 2005//TBUGZILLA-2_20_1 +/FlagType.pm/1.19.2.2/Tue Oct 18 17:48:08 2005//TBUGZILLA-2_20_1 +/Group.pm/1.1/Fri Feb 18 22:42:07 2005//TBUGZILLA-2_20_1 +/Search.pm/1.99.2.10/Sun Dec 18 19:29:20 2005//TBUGZILLA-2_20_1 +/Series.pm/1.9/Wed Mar 16 00:27:15 2005//TBUGZILLA-2_20_1 +/Template.pm/1.26.2.4/Mon Jan 9 19:02:52 2006//TBUGZILLA-2_20_1 +/Token.pm/1.31.2.1/Sun Nov 13 17:36:20 2005//TBUGZILLA-2_20_1 +/User.pm/1.61.2.17/Sat Jan 7 16:01:35 2006//TBUGZILLA-2_20_1 +/Util.pm/1.28.2.4/Sun Jan 8 19:54:35 2006//TBUGZILLA-2_20_1 D/Auth//// D/DB//// D/Template//// diff --git a/Bugzilla/CVS/Entries.Log b/Bugzilla/CVS/Entries.Log index 1b9c529ed6cc3fa2a0c356a402c2ef2b6cfd6cdd..e2503589d1071fecc2a30b99c76dd80e06f7ac6b 100644 --- a/Bugzilla/CVS/Entries.Log +++ b/Bugzilla/CVS/Entries.Log @@ -1,2 +1,4 @@ +A D/Config//// A D/Search//// R D/Search//// +R D/Config//// diff --git a/Bugzilla/CVS/Tag b/Bugzilla/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/Bugzilla/CVS/Tag +++ b/Bugzilla/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm index 0cc41f9a4a540ab185d5975591794872046d7e8c..47c3f15429d1d47b356faca691f866985203c293 100644 --- a/Bugzilla/Chart.pm +++ b/Bugzilla/Chart.pm @@ -325,7 +325,7 @@ sub getVisibleSeries { " AND cgm.group_id NOT IN($grouplist) " . "WHERE creator = " . Bugzilla->user->id . " OR " . " cgm.category_id IS NULL " . - $dbh->sql_group_by('series_id', 'cc1.name, cc2.name, ' . + $dbh->sql_group_by('series.series_id', 'cc1.name, cc2.name, ' . 'series.name')); foreach my $series (@$serieses) { my ($cat, $subcat, $name, $series_id) = @$series; diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index 4579e0cd67c67a1eed574c9b5e9084a2b041f91a..ee41efe3d5c2a15e58d97b3793f76bfeef0b3052 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -77,7 +77,7 @@ our $webdotdir = "$datadir/webdot"; Exporter::export_ok_tags('admin', 'db', 'locations'); # Bugzilla version -$Bugzilla::Config::VERSION = "2.20"; +$Bugzilla::Config::VERSION = "2.20.1"; use Safe; diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index ce4801b9328b346d2bf6c8d83da245fd13fd10eb..a5cea329239a6928ae598b5f3091414f30116f8f 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -146,7 +146,7 @@ use constant contenttypes => { "html"=> "text/html" , "rdf" => "application/rdf+xml" , - "rss" => "application/rss+xml" , + "atom"=> "application/atom+xml" , "xml" => "application/xml" , "js" => "application/x-javascript" , "csv" => "text/plain" , diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index c5f38d17bcf3b743814653b66af041e238a33123..ba2a9c631c7dc87b93510537b445ba966df745db 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -332,6 +332,13 @@ sub bz_setup_database { } } +# The defauly implementation just returns what you passed-in. This function +# really exists just to be overridden in Bugzilla::DB::Mysql. +sub bz_enum_initial_values { + my ($self, $enum_defaults) = @_; + return $enum_defaults; +} + ##################################################################### # Schema Modification Methods ##################################################################### @@ -757,7 +764,7 @@ sub db_new { my $self = DBI->connect($dsn, $user, $pass, $attributes) or die "\nCan't connect to the database.\nError: $DBI::errstr\n" . " Is your database installed and up and running?\n Do you have" - . "the correct username and password selected in localconfig?\n\n"; + . " the correct username and password selected in localconfig?\n\n"; # RaiseError was only set to 0 so that we could catch the # above "die" condition. @@ -1118,6 +1125,13 @@ formatted SQL command have prefix C<sql_>. All other methods have prefix C<bz_>. Returns: formatted SQL for limiting number of rows returned from query with optional offset (e.g. LIMIT 1, 1) (scalar) +=item C<sql_from_days> + + Description: Outputs SQL syntax for converting Julian days to date. + Abstract method, should be overriden by database specific code. + Params: $days = days to convert to date + Returns: formatted SQL for returning Julian days in dates. (scalar) + =item C<sql_to_days> Description: Outputs SQL syntax for converting date to Julian days. @@ -1140,8 +1154,8 @@ formatted SQL command have prefix C<sql_>. All other methods have prefix C<bz_>. Description: Outputs proper SQL syntax for a time interval function. Abstract method, should be overriden by database specific code. - Params: $interval = the time interval requested (e.g. '30 minutes') - (scalar) + Params: $interval - the time interval requested (e.g. '30') (integer) + $units - the units the interval is in (e.g. 'MINUTE') (string) Returns: formatted SQL for interval function (scalar) =item C<sql_position> @@ -1270,6 +1284,26 @@ These methods return information about data in the database. =back +=head2 Database Setup Methods + +These methods are used by the Bugzilla installation programs to set up +the database. + +=over 4 + +=item C<bz_enum_initial_values(\%enum_defaults)> + + Description: For an upgrade or an initial installation, provides + what the values should be for the "enum"-type fields, + such as version, op_sys, rep_platform, etc. + Params: \%enum_defaults - The default initial list of values for + each enum field. A hash, with the field + names pointing to an arrayref of values. + Returns: A hashref with the correct initial values for the enum fields. + +=back + + =head2 Schema Modification Methods These methods modify the current Bugzilla Schema. diff --git a/Bugzilla/DB/CVS/Entries b/Bugzilla/DB/CVS/Entries index 6f5f0273e89821f2712ce2bc8026ab1142e5e98f..8a2c0d7006d6d2824041edcbe8bf0791444d9ffa 100644 --- a/Bugzilla/DB/CVS/Entries +++ b/Bugzilla/DB/CVS/Entries @@ -1,4 +1,4 @@ -/Mysql.pm/1.24.2.1/Wed Jul 27 19:08:42 2005//TBUGZILLA-2_20 -/Pg.pm/1.12.2.2/Sun Sep 4 08:14:14 2005//TBUGZILLA-2_20 -/Schema.pm/1.32.2.4/Sun Sep 25 20:42:20 2005//TBUGZILLA-2_20 +/Mysql.pm/1.24.2.7/Thu Dec 29 22:28:52 2005//TBUGZILLA-2_20_1 +/Pg.pm/1.12.2.4/Fri Dec 23 02:08:50 2005//TBUGZILLA-2_20_1 +/Schema.pm/1.32.2.4/Sun Sep 25 20:42:20 2005//TBUGZILLA-2_20_1 D/Schema//// diff --git a/Bugzilla/DB/CVS/Tag b/Bugzilla/DB/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/Bugzilla/DB/CVS/Tag +++ b/Bugzilla/DB/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index e76dc4599b431cc23d06639e7692ae86b9dcba5a..0e0cc2e1d21ba77a433c5a9ff5d2a4cb6ac0bd4b 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -117,6 +117,12 @@ sub sql_istring { return $string; } +sub sql_from_days { + my ($self, $days) = @_; + + return "FROM_DAYS($days)"; +} + sub sql_to_days { my ($self, $date) = @_; @@ -132,9 +138,9 @@ sub sql_date_format { } sub sql_interval { - my ($self, $interval) = @_; + my ($self, $interval, $units) = @_; - return "INTERVAL $interval"; + return "INTERVAL $interval $units"; } sub sql_position { @@ -266,6 +272,27 @@ sub bz_setup_database { ($self->bz_index_info_real('bugs', 'assigned_to') || $self->bz_index_info_real('flags', 'flags_bidattid_idx')) ) { + + # This is a check unrelated to the indexes, to see if people are + # upgrading from 2.18 or below, but somehow have a bz_schema table + # already. This only happens if they have done a mysqldump into + # a database without doing a DROP DATABASE first. + # We just do the check here since this check is a reliable way + # of telling that we are upgrading from a version pre-2.20. + if (grep($_ eq 'bz_schema', $self->bz_table_list_real())) { + die("\nYou are upgrading from a version before 2.20, but the" + . " bz_schema\ntable already exists. This means that you" + . " restored a mysqldump into\nthe Bugzilla database without" + . " first dropping the already-existing\nBugzilla database," + . " at some point. Whenever you restore a Bugzilla\ndatabase" + . " backup, you must always drop the entire database first.\n\n" + . "Please drop your Bugzilla database and restore it from a" + . " backup that\ndoes not contain the bz_schema table. If for" + . " some reason you cannot\ndo this, you can connect to your" + . " MySQL database and drop the bz_schema\ntable, as a last" + . " resort.\n"); + } + my $bug_count = $self->selectrow_array("SELECT COUNT(*) FROM bugs"); # We estimate one minute for each 3000 bugs, plus 3 minutes just # to handle basic MySQL stuff. @@ -477,6 +504,38 @@ sub bz_setup_database { } +sub bz_enum_initial_values { + my ($self, $enum_defaults) = @_; + my %enum_values = %$enum_defaults; + # Get a complete description of the 'bugs' table; with DBD::MySQL + # there isn't a column-by-column way of doing this. Could use + # $dbh->column_info, but it would go slower and we would have to + # use the undocumented mysql_type_name accessor to get the type + # of each row. + my $sth = $self->prepare("DESCRIBE bugs"); + $sth->execute(); + # Look for the particular columns we are interested in. + while (my ($thiscol, $thistype) = $sth->fetchrow_array()) { + if (defined $enum_values{$thiscol}) { + # this is a column of interest. + my @value_list; + if ($thistype and ($thistype =~ /^enum\(/)) { + # it has an enum type; get the set of values. + while ($thistype =~ /'([^']*)'(.*)/) { + push(@value_list, $1); + $thistype = $2; + } + } + if (@value_list) { + # record the enum values found. + $enum_values{$thiscol} = \@value_list; + } + } + } + + return \%enum_values; +} + ##################################################################### # MySQL-specific Database-Reading Methods ##################################################################### diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm index 84631e62b7dc17a8d6dd11ad34ca1371d98fe44a..e0a8e7ff5fcc2c51c50b3ab02601e858bb9ab080 100644 --- a/Bugzilla/DB/Pg.pm +++ b/Bugzilla/DB/Pg.pm @@ -106,6 +106,12 @@ sub sql_limit { } } +sub sql_from_days { + my ($self, $days) = @_; + + return "TO_TIMESTAMP(${days}::int, 'J')::date"; +} + sub sql_to_days { my ($self, $date) = @_; @@ -130,9 +136,9 @@ sub sql_date_format { } sub sql_interval { - my ($self, $interval) = @_; + my ($self, $interval, $units) = @_; - return "INTERVAL '$interval'"; + return "$interval * INTERVAL '1 $units'"; } sub sql_string_concat { diff --git a/Bugzilla/DB/Schema/CVS/Entries b/Bugzilla/DB/Schema/CVS/Entries index 1050152ff016dac913b7aeb1a1032cd6d5c67f5c..832ecf809e1ebb08d7bfa069fc341712d63f9061 100644 --- a/Bugzilla/DB/Schema/CVS/Entries +++ b/Bugzilla/DB/Schema/CVS/Entries @@ -1,3 +1,3 @@ -/Mysql.pm/1.10.2.1/Mon Aug 1 10:11:59 2005//TBUGZILLA-2_20 -/Pg.pm/1.9/Wed Jun 15 03:54:59 2005//TBUGZILLA-2_20 +/Mysql.pm/1.10.2.1/Mon Aug 1 10:11:59 2005//TBUGZILLA-2_20_1 +/Pg.pm/1.9/Wed Jun 15 03:54:59 2005//TBUGZILLA-2_20_1 D diff --git a/Bugzilla/DB/Schema/CVS/Tag b/Bugzilla/DB/Schema/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/Bugzilla/DB/Schema/CVS/Tag +++ b/Bugzilla/DB/Schema/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 65636d78c3f51dc03adb950eb210ce1fb7801593..643c6635b691bd9521be9b1612efa872140602d4 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -19,7 +19,7 @@ # # Contributor(s): Myk Melez <myk@mozilla.org> # Jouni Heikniemi <jouni@heikniemi.net> -# Fr�d�ric Buclin <LpSolit@gmail.com> +# Frédéric Buclin <LpSolit@gmail.com> =head1 NAME @@ -228,10 +228,13 @@ sub count { =over -=item C<validate($cgi, $bug_id)> +=item C<validate($cgi, $bug_id, $attach_id)> Validates fields containing flag modifications. +If the attachment is new, it has no ID yet and $attach_id is set +to -1 to force its check anyway. + =back =cut @@ -535,12 +538,13 @@ sub create { $timestamp)"); # Send an email notifying the relevant parties about the flag creation. - if (($flag->{'requestee'} - && $flag->{'requestee'}->wants_mail([EVT_FLAG_REQUESTED])) - || $flag->{'type'}->{'cc_list'}) + if ($flag->{'requestee'} + && $flag->{'requestee'}->wants_mail([EVT_FLAG_REQUESTED])) { - notify($flag, "request/email.txt.tmpl"); + $flag->{'addressee'} = $flag->{'requestee'}; } + + notify($flag, "request/email.txt.tmpl"); } =pod @@ -642,14 +646,25 @@ sub modify { modification_date = $timestamp , is_active = 1 WHERE id = $flag->{'id'}"); - - # Send an email notifying the relevant parties about the fulfillment. - if ($flag->{'setter'}->wants_mail([EVT_REQUESTED_FLAG]) - || $flag->{'type'}->{'cc_list'}) - { - $flag->{'status'} = $status; - notify($flag, "request/email.txt.tmpl"); + + # If the status of the flag was "?", we have to notify + # the requester (if he wants to). + my $requester; + if ($flag->{'status'} eq '?') { + $requester = $flag->{'setter'}; + } + # Now update the flag object with its new values. + $flag->{'setter'} = Bugzilla->user; + $flag->{'requestee'} = undef; + $flag->{'status'} = $status; + + # Send an email notifying the relevant parties about the fulfillment, + # including the requester. + if ($requester && $requester->wants_mail([EVT_REQUESTED_FLAG])) { + $flag->{'addressee'} = $requester; } + + notify($flag, "request/email.txt.tmpl"); } elsif ($status eq '?') { # Get the requestee, if any. @@ -658,6 +673,11 @@ sub modify { $requestee_id = login_to_id($requestee_email); $flag->{'requestee'} = new Bugzilla::User($requestee_id); } + else { + # If the status didn't change but we only removed the + # requestee, we have to clear the requestee field. + $flag->{'requestee'} = undef; + } # Update the database with the changes. &::SendSQL("UPDATE flags @@ -667,14 +687,19 @@ sub modify { modification_date = $timestamp , is_active = 1 WHERE id = $flag->{'id'}"); - + + # Now update the flag object with its new values. + $flag->{'setter'} = Bugzilla->user; + $flag->{'status'} = $status; + # Send an email notifying the relevant parties about the request. - if ($flag->{'requestee'} - && ($flag->{'requestee'}->wants_mail([EVT_FLAG_REQUESTED]) - || $flag->{'type'}->{'cc_list'})) + if ($flag->{'requestee'} + && $flag->{'requestee'}->wants_mail([EVT_FLAG_REQUESTED])) { - notify($flag, "request/email.txt.tmpl"); + $flag->{'addressee'} = $flag->{'requestee'}; } + + notify($flag, "request/email.txt.tmpl"); } # The user unset the flag; set is_active = 0 elsif ($status eq 'X') { @@ -708,12 +733,24 @@ sub clear { &::SendSQL("UPDATE flags SET is_active = 0 WHERE id = $id"); &::PopGlobalSQLState(); + # If we cancel a pending request, we have to notify the requester + # (if he wants to). + my $requester; + if ($flag->{'status'} eq '?') { + $requester = $flag->{'setter'}; + } + + # Now update the flag object to its new values. The last + # requester/setter and requestee are kept untouched (for the + # record). Else we could as well delete the flag completely. $flag->{'exists'} = 0; - # Set the flag's status to "cleared" so the email template - # knows why email is being sent about the request. $flag->{'status'} = "X"; - - notify($flag, "request/email.txt.tmpl") if $flag->{'requestee'}; + + if ($requester && $requester->wants_mail([EVT_REQUESTED_FLAG])) { + $flag->{'addressee'} = $requester; + } + + notify($flag, "request/email.txt.tmpl"); } @@ -888,7 +925,8 @@ sub GetTarget { =item C<notify($flag, $template_file)> -Sends an email notification about a flag being created or fulfilled. +Sends an email notification about a flag being created, fulfilled +or deleted. =back @@ -897,6 +935,9 @@ Sends an email notification about a flag being created or fulfilled. sub notify { my ($flag, $template_file) = @_; + # There is nobody to notify. + return unless ($flag->{'addressee'} || $flag->{'type'}->{'cc_list'}); + # If the target bug is restricted to one or more groups, then we need # to make sure we don't send email about it to unauthorized users # on the request type's CC: list, so we have to trawl the list for users @@ -920,19 +961,26 @@ sub notify { $flag->{'type'}->{'cc_list'} = join(", ", @new_cc_list); } - $flag->{'requestee'}->{'email'} .= Param('emailsuffix'); - $flag->{'setter'}->{'email'} .= Param('emailsuffix'); + # If there is nobody left to notify, return. + return unless ($flag->{'addressee'} || $flag->{'type'}->{'cc_list'}); + $::vars->{'flag'} = $flag; - - my $message; - my $rv = - $::template->process($template_file, $::vars, \$message); - if (!$rv) { - Bugzilla->cgi->header(); - ThrowTemplateError($::template->error()); - } - Bugzilla::BugMail::MessageToMTA($message); + # Process and send notification for each recipient + foreach my $to ($flag->{'addressee'} ? $flag->{'addressee'}->email : '', + split(/[, ]+/, $flag->{'type'}->{'cc_list'})) + { + next unless $to; + my $message; + $::vars->{'to'} = $to; + my $rv = $::template->process($template_file, $::vars, \$message); + if (!$rv) { + Bugzilla->cgi->header(); + ThrowTemplateError($::template->error()); + } + + Bugzilla::BugMail::MessageToMTA($message); + } } # Cancel all request flags from the attachment being obsoleted. diff --git a/Bugzilla/FlagType.pm b/Bugzilla/FlagType.pm index 49c9f777e8d597b8644b73c375c31e53aaecec29..49620e3327ccc678ed8b202c0d5cb0817aee55c3 100644 --- a/Bugzilla/FlagType.pm +++ b/Bugzilla/FlagType.pm @@ -321,6 +321,9 @@ to extract flag type IDs from form field names by matching columns whose name looks like "flag_type-nnn", where "nnn" is the ID, and returning just the ID portion of matching field names. +If the attachment is new, it has no ID yet and $attach_id is set +to -1 to force its check anyway. + =back =cut diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 56d2846f37c176e27d2a69ff9a05efe99f0754d1..2233ed514b969f80b88e79d115a7ca4112d15d0d 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -844,7 +844,7 @@ sub init { $f = "setters_$chartid.login_name"; }, - "^changedin," => sub { + "^(changedin|days_elapsed)," => sub { $f = "(" . $dbh->sql_to_days('NOW()') . " - " . $dbh->sql_to_days('bugs.delta_ts') . ")"; }, @@ -960,7 +960,7 @@ sub init { $unitinterval = 'YEAR'; } my $cutoff = "NOW() - " . - $dbh->sql_interval("$quantity $unitinterval"); + $dbh->sql_interval($quantity, $unitinterval); my $assigned_fieldid = &::GetFieldID('assigned_to'); push(@supptables, "LEFT JOIN longdescs AS comment_$table " . "ON comment_$table.who = bugs.assigned_to " . @@ -1379,11 +1379,12 @@ sub init { foreach my $field (@fields, @orderby) { next if ($field =~ /(AVG|SUM|COUNT|MAX|MIN|VARIANCE)\s*\(/i || $field =~ /^\d+$/ || $field eq "bugs.bug_id" || - $field =~ /^relevance/); - if ($field =~ /.*AS\s+(\w+)$/i) { + $field =~ /^(relevance|actual_time|percentage_complete)/); + # The structure of fields is of the form: + # [foo AS] {bar | bar.baz} [ASC | DESC] + # Only the mandatory part bar OR bar.baz is of interest + if ($field =~ /(?:.*\s+AS\s+)?(\w+(\.\w+)?)(?:\s+(ASC|DESC))?$/i) { push(@groupby, $1) if !grep($_ eq $1, @groupby); - } else { - push(@groupby, $field) if !grep($_ eq $field, @groupby); } } $query .= ") " . $dbh->sql_group_by("bugs.bug_id", join(', ', @groupby)); @@ -1624,6 +1625,6 @@ sub BuildOrderBy { return; } - push(@$stringlist, $orderfield . ' ' . $orderdirection); + push(@$stringlist, trim($orderfield . ' ' . $orderdirection)); } 1; diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 7efd3a16e55bc5e1a96b040959bbb064c430ae03..f4bcc7105cb71c94e3db1d3cfaac06a59e57e108 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -134,6 +134,12 @@ sub getTemplateIncludePath () { ############################################################################### # Templatization Code +# The Template Toolkit throws an error if a loop iterates >1000 times. +# We want to raise that limit. +# NOTE: If you change this number, you MUST RE-RUN checksetup.pl!!! +# If you do not re-run checksetup.pl, the change you make will not apply +$Template::Directive::WHILE_MAX = 1000000; + # Use the Toolkit Template's Stash module to add utility pseudo-methods # to template variables. use Template::Stash; @@ -197,6 +203,14 @@ $Template::Stash::SCALAR_OPS->{ truncate } = sub create { my $class = shift; + my %opts = @_; + + # checksetup.pl will call us once for any template/lang directory. + # We need a possibility to reset the cache, so that no files from + # the previous language pollute the action. + if ($opts{'clean_cache'}) { + $template_include_path = undef; + } # IMPORTANT - If you make any configuration changes here, make sure to # make them in t/004.template.t and checksetup.pl. @@ -295,7 +309,15 @@ sub create { # as prefix. In addition it replaces a ' ' by a '_'. css_class_quote => \&Bugzilla::Util::css_class_quote , - quoteUrls => \&::quoteUrls , + quoteUrls => [ sub { + my ($context, $bug) = @_; + return sub { + my $text = shift; + return &::quoteUrls($text, $bug); + }; + }, + 1 + ], bug_link => [ sub { my ($context, $bug) = @_; diff --git a/Bugzilla/Template/CVS/Tag b/Bugzilla/Template/CVS/Tag index 84507d26c5041aeb69e8ccabe5e10972bfb1ecb2..d41053336282a6c1efa06c22f928744d27d4ccc2 100644 --- a/Bugzilla/Template/CVS/Tag +++ b/Bugzilla/Template/CVS/Tag @@ -1 +1 @@ -TBUGZILLA-2_20 +TBUGZILLA-2_20_1 diff --git a/Bugzilla/Template/Plugin/CVS/Entries b/Bugzilla/Template/Plugin/CVS/Entries index 87829e0b189afa4bd91b218d304ab27ecf69f973..8ee02f4a71d66eeb91b2ea629bf53b9961f2e530 100644 --- a/Bugzilla/Template/Plugin/CVS/Entries +++ b/Bugzilla/Template/Plugin/CVS/Entries @@ -1,4 +1,4 @@ -/Bugzilla.pm/1.2/Fri Feb 7 07:19:15 2003//TBUGZILLA-2_20 -/Hook.pm/1.1/Sun Jan 11 17:12:15 2004//TBUGZILLA-2_20 -/User.pm/1.1/Wed Aug 4 18:08:21 2004//TBUGZILLA-2_20 +/Bugzilla.pm/1.2/Fri Feb 7 07:19:15 2003//TBUGZILLA-2_20_1 +/Hook.pm/1.1/Sun Jan 11 17:12:15 2004//TBUGZILLA-2_20_1 +/User.pm/1.1/Wed Aug 4 18:08:21 2004//TBUGZILLA-2_20_1 D diff --git a/Bugzilla/Template/Plugin/CVS/Tag b/Bugzilla/Template/Plugin/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/Bugzilla/Template/Plugin/CVS/Tag +++ b/Bugzilla/Template/Plugin/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/Bugzilla/Token.pm b/Bugzilla/Token.pm index fe72915a36b4a725d2f0599b50fc5d7853f87e03..7404d61e5b62facdb522b27477eba4cfe14357c5 100644 --- a/Bugzilla/Token.pm +++ b/Bugzilla/Token.pm @@ -103,7 +103,7 @@ sub IssuePasswordToken { ON tokens.userid = profiles.userid AND tokens.tokentype = 'password' AND tokens.issuedate > NOW() - " . - $dbh->sql_interval('10 MINUTE') . " + $dbh->sql_interval(10, 'MINUTE') . " WHERE " . $dbh->sql_istrcmp('login_name', $quotedloginname)); my ($userid, $toosoon) = &::FetchSQLData(); diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index cfa3429206942b69cbdbd9fca074081a0920a5dc..909511ca243ff13700a81ace65ce6156eb3d8385 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -25,6 +25,7 @@ # Shane H. W. Travis <travis@sedsystems.ca> # Max Kanat-Alexander <mkanat@bugzilla.org> # Gervase Markham <gerv@gerv.net> +# Justin C. De Vries <judevries@novell.com> ################################################################################ # Module Initialization @@ -66,10 +67,20 @@ use constant MATCH_SKIP_CONFIRM => 1; sub new { my $invocant = shift; - if (scalar @_ == 0) { + my ($user_id, $tables_locked) = @_; + + if ($user_id) { + my $uid = $user_id; + detaint_natural($user_id) + || ThrowCodeError('invalid_numeric_argument', + {argument => 'userID', + value => $uid, + function => 'Bugzilla::User::new'}); + return $invocant->_create('userid = ?', $user_id, $tables_locked); + } + else { return $invocant->_create; } - return $invocant->_create("userid=?", @_); } # This routine is sort of evil. Nothing except the login stuff should @@ -82,8 +93,11 @@ sub new { # in the id its already had to validate (or the User.pm object, of course) sub new_from_login { my $invocant = shift; + my ($login, $tables_locked) = @_; + my $dbh = Bugzilla->dbh; - return $invocant->_create($dbh->sql_istrcmp('login_name', '?'), @_); + return $invocant->_create($dbh->sql_istrcmp('login_name', '?'), + $login, $tables_locked); } # Internal helper for the above |new| methods @@ -149,11 +163,11 @@ sub _create { if ($result) { my $is_main_db; unless ($is_main_db = Bugzilla->dbwritesallowed()) { - Bugzilla->switch_to_main_db(); + $dbh = Bugzilla->switch_to_main_db(); } $self->derive_groups($tables_locked_for_derive_groups); unless ($is_main_db) { - Bugzilla->switch_to_shadow_db(); + $dbh = Bugzilla->switch_to_shadow_db(); } } @@ -216,34 +230,28 @@ sub queries { return [] unless $self->id; my $dbh = Bugzilla->dbh; - my $sth = $dbh->prepare(q{ SELECT - DISTINCT name, query, linkinfooter, - CASE WHEN whine_queries.id IS NOT NULL - THEN 1 ELSE 0 END, - UPPER(name) AS uppername - FROM namedqueries - LEFT JOIN whine_events - ON whine_events.owner_userid = - namedqueries.userid - LEFT JOIN whine_queries - ON whine_queries.query_name = - namedqueries.name - AND whine_queries.eventid = - whine_events.id - WHERE namedqueries.userid=? - ORDER BY uppername}); - $sth->execute($self->{id}); - - my @queries; - while (my $row = $sth->fetch) { - push (@queries, { - name => $row->[0], - query => $row->[1], - linkinfooter => $row->[2], - usedinwhine => $row->[3], - }); + my $used_in_whine_ref = $dbh->selectcol_arrayref(q{ + SELECT DISTINCT query_name + FROM whine_events we + INNER JOIN whine_queries wq + ON we.id = wq.eventid + WHERE we.owner_userid = ?}, undef, $self->{id}); + + my $queries_ref = $dbh->selectall_arrayref(q{ + SELECT name, query, linkinfooter + FROM namedqueries + WHERE userid = ? + ORDER BY UPPER(name)},{'Slice'=>{}}, $self->{id}); + + foreach my $name (@$used_in_whine_ref) { + foreach my $queries_hash (@$queries_ref) { + if ($queries_hash->{name} eq $name) { + $queries_hash->{usedinwhine} = 1; + last; + } + } } - $self->{queries} = \@queries; + $self->{queries} = $queries_ref; return $self->{queries}; } @@ -298,7 +306,7 @@ sub bless_groups { my $self = shift; return $self->{'bless_groups'} if defined $self->{'bless_groups'}; - return {} unless $self->id; + return [] unless $self->id; my $dbh = Bugzilla->dbh; my $query; @@ -855,9 +863,16 @@ sub match_field { my $raw_field = join(" ", $cgi->param($field)); # When we add back in values later, it matters that we delete - # the param here, and not set it to '', so that we will add + # the field here, and not set it to '', so that we will add # things to an empty list, and not to a list containing one - # empty string + # empty string. + # If the field accepts only one match (type eq "single") and + # no match or more than one match is found for this field, + # we will set it back to '' so that the field remains defined + # outside this function (it was if we came here; else we would + # have returned earlier above). + # If the field accepts several matches (type eq "multi") and no match + # is found, we leave this field undefined (= empty array). $cgi->delete($field); my @queries = (); @@ -942,6 +957,15 @@ sub match_field { $need_confirm = 1; # confirmation screen shows failures } } + # Above, we deleted the field before adding matches. If no match + # or more than one match has been found for a field expecting only + # one match (type eq "single"), we set it back to '' so + # that the caller of this function can still check whether this + # field was defined or not (and it was if we came here). + if (!defined $cgi->param($field) + && $fields->{$field}->{'type'} eq 'single') { + $cgi->param($field, ''); + } } my $retval; diff --git a/Bugzilla/User/CVS/Entries b/Bugzilla/User/CVS/Entries index 0300628b43e6b43fb543dbeca9155cfc177944aa..7ebfdb2526f102a173ee5daf2051c07bb924c2cb 100644 --- a/Bugzilla/User/CVS/Entries +++ b/Bugzilla/User/CVS/Entries @@ -1,2 +1,2 @@ -/Setting.pm/1.4.2.2/Wed Jul 27 19:08:43 2005//TBUGZILLA-2_20 +/Setting.pm/1.4.2.2/Wed Jul 27 19:08:43 2005//TBUGZILLA-2_20_1 D diff --git a/Bugzilla/User/CVS/Tag b/Bugzilla/User/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/Bugzilla/User/CVS/Tag +++ b/Bugzilla/User/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index 3374d2c115b9a802feb4c0d49ce8520cca5b64fb..9d5f40ffb6bc97add1b1762d0498efe72205569b 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -39,7 +39,7 @@ use base qw(Exporter); trim wrap_comment find_wrap_point format_time format_time_decimal file_mod_time - bz_crypt); + bz_crypt clean_text); use Bugzilla::Config; use Bugzilla::Error; @@ -359,6 +359,12 @@ sub ValidateDate { } } +sub clean_text { + my ($dtext) = shift; + $dtext =~ s/[\x00-\x1F\x7F]+/ /g; # change control characters to a space + return trim($dtext); +} + 1; __END__ @@ -611,6 +617,10 @@ Takes a string and returns a C<crypt>ed value for it, using a random salt. Please always use this function instead of the built-in perl "crypt" when initially encrypting a password. +=item C<clean_text($str)> +Returns the parameter "cleaned" by exchanging non-printable characters with a space. +Specifically characters (ASCII 0 through 31) and (ASCII 127) will become ASCII 32 (Space). + =begin undocumented Random salts are generated because the alternative is usually diff --git a/CVS/Entries b/CVS/Entries index 7e75dd275bdea7a22d30cc8b5b66ab6ac8b548a1..bc288585826c32a90709b0eeeaf0d659ab37a948 100644 --- a/CVS/Entries +++ b/CVS/Entries @@ -1,77 +1,77 @@ -/.cvsignore/1.6/Mon May 13 22:28:26 2002//TBUGZILLA-2_20 -/Bugzilla.pm/1.17/Thu Mar 3 05:28:42 2005//TBUGZILLA-2_20 -/CGI.pl/1.242.2.1/Wed Jul 27 20:01:38 2005//TBUGZILLA-2_20 -/QUICKSTART/1.4/Thu Jul 8 19:59:25 2004//TBUGZILLA-2_20 -/README/1.52/Fri Oct 10 02:22:39 2003//TBUGZILLA-2_20 -/UPGRADING/1.1/Fri Aug 10 22:35:21 2001//TBUGZILLA-2_20 -/UPGRADING-pre-2.8/1.3/Thu Mar 27 00:06:37 2003//TBUGZILLA-2_20 -/ant.jpg/1.2/Wed Aug 26 22:36:05 1998/-kb/TBUGZILLA-2_20 -/attachment.cgi/1.89/Fri Jul 8 05:29:14 2005//TBUGZILLA-2_20 -/buglist.cgi/1.299.2.3/Sun Sep 25 21:10:55 2005//TBUGZILLA-2_20 -/bugzilla.dtd/1.11/Thu Jun 2 21:26:43 2005//TBUGZILLA-2_20 -/chart.cgi/1.11/Thu May 12 01:52:13 2005//TBUGZILLA-2_20 -/checksetup.pl/1.412.2.9/Mon Sep 12 10:51:08 2005//TBUGZILLA-2_20 -/colchange.cgi/1.49/Fri Jul 8 03:39:19 2005//TBUGZILLA-2_20 -/collectstats.pl/1.43.4.1/Tue Jul 19 14:35:57 2005//TBUGZILLA-2_20 -/config.cgi/1.8.4.2/Sat Oct 1 01:09:04 2005//TBUGZILLA-2_20 -/createaccount.cgi/1.39.2.1/Wed Jul 27 20:18:20 2005//TBUGZILLA-2_20 -/defparams.pl/1.160.2.2/Mon Aug 22 21:31:16 2005//TBUGZILLA-2_20 -/describecomponents.cgi/1.29/Wed Mar 9 20:53:20 2005//TBUGZILLA-2_20 -/describekeywords.cgi/1.14/Wed Mar 16 00:27:14 2005//TBUGZILLA-2_20 -/doeditparams.cgi/1.33/Tue Mar 15 22:10:13 2005//TBUGZILLA-2_20 -/duplicates.cgi/1.44/Sat Jul 10 07:17:02 2004//TBUGZILLA-2_20 -/duplicates.xul/1.2/Thu Oct 21 19:02:28 2004//TBUGZILLA-2_20 -/editclassifications.cgi/1.12.2.1/Wed Jul 27 19:36:50 2005//TBUGZILLA-2_20 -/editcomponents.cgi/1.54/Wed Apr 6 00:19:51 2005//TBUGZILLA-2_20 -/editflagtypes.cgi/1.19/Thu May 5 19:20:44 2005//TBUGZILLA-2_20 -/editgroups.cgi/1.52.4.1/Wed Aug 3 00:38:35 2005//TBUGZILLA-2_20 -/editkeywords.cgi/1.26/Wed Mar 16 00:27:14 2005//TBUGZILLA-2_20 -/editmilestones.cgi/1.38/Tue May 3 19:41:22 2005//TBUGZILLA-2_20 -/editparams.cgi/1.24/Tue Mar 15 22:10:13 2005//TBUGZILLA-2_20 -/editproducts.cgi/1.85.2.7/Tue Sep 27 21:53:05 2005//TBUGZILLA-2_20 -/editsettings.cgi/1.2.4.1/Wed Jul 20 02:23:33 2005//TBUGZILLA-2_20 -/editusers.cgi/1.90.2.6/Sun Sep 25 20:54:38 2005//TBUGZILLA-2_20 -/editvalues.cgi/1.3.2.2/Wed Jul 27 19:36:50 2005//TBUGZILLA-2_20 -/editversions.cgi/1.34/Wed Apr 6 00:19:51 2005//TBUGZILLA-2_20 -/editwhines.cgi/1.8.2.1/Sun Aug 21 20:25:29 2005//TBUGZILLA-2_20 -/enter_bug.cgi/1.114.4.1/Wed Aug 17 18:18:13 2005//TBUGZILLA-2_20 -/globals.pl/1.326.2.4/Fri Sep 9 22:22:41 2005//TBUGZILLA-2_20 -/importxml.pl/1.44.2.1/Fri Aug 5 01:01:40 2005//TBUGZILLA-2_20 -/index.cgi/1.13.10.1/Sun Aug 21 19:30:07 2005//TBUGZILLA-2_20 -/localconfig.js/1.2/Thu Jul 17 22:49:47 2003//TBUGZILLA-2_20 -/long_list.cgi/1.45/Mon Jan 24 16:39:15 2005//TBUGZILLA-2_20 -/move.pl/1.31.4.2/Thu Sep 8 23:45:14 2005//TBUGZILLA-2_20 -/page.cgi/1.15/Sat Apr 17 04:41:14 2004//TBUGZILLA-2_20 -/post_bug.cgi/1.118.2.1/Wed Aug 3 00:20:45 2005//TBUGZILLA-2_20 -/process_bug.cgi/1.263.2.3/Thu Sep 8 23:45:15 2005//TBUGZILLA-2_20 -/productmenu.js/1.2/Tue Dec 14 02:29:56 2004//TBUGZILLA-2_20 -/query.cgi/1.146.2.1/Sun Aug 21 20:46:56 2005//TBUGZILLA-2_20 -/quicksearch.html/1.3/Mon Apr 15 02:47:55 2002//TBUGZILLA-2_20 -/quicksearch.js/1.12/Thu Jun 9 09:32:24 2005//TBUGZILLA-2_20 -/quicksearchhack.html/1.6/Mon Jun 20 19:16:26 2005//TBUGZILLA-2_20 -/quips.cgi/1.28/Wed Jun 29 21:54:49 2005//TBUGZILLA-2_20 -/relogin.cgi/1.25.10.1/Sat Aug 13 14:17:16 2005//TBUGZILLA-2_20 -/report.cgi/1.29/Mon Apr 4 23:02:16 2005//TBUGZILLA-2_20 -/reports.cgi/1.74.4.1/Thu Aug 4 16:06:36 2005//TBUGZILLA-2_20 -/request.cgi/1.23/Fri Jul 8 02:31:41 2005//TBUGZILLA-2_20 -/robots.txt/1.2/Wed Apr 24 18:11:00 2002//TBUGZILLA-2_20 -/runtests.pl/1.4/Fri Sep 3 06:59:08 2004//TBUGZILLA-2_20 -/sanitycheck.cgi/1.97/Wed Jun 29 22:18:21 2005//TBUGZILLA-2_20 -/show_activity.cgi/1.15/Sat Mar 27 03:51:44 2004//TBUGZILLA-2_20 -/show_bug.cgi/1.32.4.1/Sun Aug 21 20:56:12 2005//TBUGZILLA-2_20 -/showattachment.cgi/1.14/Mon May 5 01:15:29 2003//TBUGZILLA-2_20 -/showdependencygraph.cgi/1.38.4.1/Tue Aug 9 19:46:36 2005//TBUGZILLA-2_20 -/showdependencytree.cgi/1.32/Mon Apr 4 21:52:06 2005//TBUGZILLA-2_20 -/sidebar.cgi/1.14/Sat Mar 27 03:51:44 2004//TBUGZILLA-2_20 -/summarize_time.cgi/1.7/Thu Apr 7 18:18:52 2005//TBUGZILLA-2_20 -/testagent.cgi/1.2/Thu Jul 22 07:05:05 2004//TBUGZILLA-2_20 -/testserver.pl/1.6.4.1/Thu Sep 15 10:37:33 2005//TBUGZILLA-2_20 -/token.cgi/1.31.2.1/Wed Jul 13 04:02:16 2005//TBUGZILLA-2_20 -/userprefs.cgi/1.75.4.4/Wed Aug 3 00:10:08 2005//TBUGZILLA-2_20 -/votes.cgi/1.29.4.1/Tue Aug 23 12:22:26 2005//TBUGZILLA-2_20 -/whine.pl/1.13.2.1/Sat Aug 20 17:23:56 2005//TBUGZILLA-2_20 -/whineatnews.pl/1.19/Fri Jul 8 02:17:04 2005//TBUGZILLA-2_20 -/xml.cgi/1.12/Thu Mar 27 00:06:50 2003//TBUGZILLA-2_20 +/.cvsignore/1.6/Mon May 13 22:28:26 2002//TBUGZILLA-2_20_1 +/Bugzilla.pm/1.17.4.1/Sun Nov 13 17:57:26 2005//TBUGZILLA-2_20_1 +/CGI.pl/1.242.2.1/Wed Jul 27 20:01:38 2005//TBUGZILLA-2_20_1 +/QUICKSTART/1.4/Thu Jul 8 19:59:25 2004//TBUGZILLA-2_20_1 +/README/1.52/Fri Oct 10 02:22:39 2003//TBUGZILLA-2_20_1 +/UPGRADING/1.1/Fri Aug 10 22:35:21 2001//TBUGZILLA-2_20_1 +/UPGRADING-pre-2.8/1.3/Thu Mar 27 00:06:37 2003//TBUGZILLA-2_20_1 +/ant.jpg/1.2/Wed Aug 26 22:36:05 1998/-kb/TBUGZILLA-2_20_1 +/attachment.cgi/1.89.2.3/Thu Dec 29 21:16:34 2005//TBUGZILLA-2_20_1 +/buglist.cgi/1.299.2.10/Tue Feb 21 00:12:01 2006//TBUGZILLA-2_20_1 +/bugzilla.dtd/1.11/Thu Jun 2 21:26:43 2005//TBUGZILLA-2_20_1 +/chart.cgi/1.11/Thu May 12 01:52:13 2005//TBUGZILLA-2_20_1 +/checksetup.pl/1.412.2.22/Thu Jan 12 07:13:14 2006//TBUGZILLA-2_20_1 +/colchange.cgi/1.49/Fri Jul 8 03:39:19 2005//TBUGZILLA-2_20_1 +/collectstats.pl/1.43.4.3/Fri Dec 23 02:08:46 2005//TBUGZILLA-2_20_1 +/config.cgi/1.8.4.2/Sat Oct 1 01:09:04 2005//TBUGZILLA-2_20_1 +/createaccount.cgi/1.39.2.1/Wed Jul 27 20:18:20 2005//TBUGZILLA-2_20_1 +/defparams.pl/1.160.2.4/Mon Feb 20 23:35:10 2006//TBUGZILLA-2_20_1 +/describecomponents.cgi/1.29/Wed Mar 9 20:53:20 2005//TBUGZILLA-2_20_1 +/describekeywords.cgi/1.14/Wed Mar 16 00:27:14 2005//TBUGZILLA-2_20_1 +/doeditparams.cgi/1.33/Tue Mar 15 22:10:13 2005//TBUGZILLA-2_20_1 +/duplicates.cgi/1.44/Sat Jul 10 07:17:02 2004//TBUGZILLA-2_20_1 +/duplicates.xul/1.2/Thu Oct 21 19:02:28 2004//TBUGZILLA-2_20_1 +/editclassifications.cgi/1.12.2.1/Wed Jul 27 19:36:50 2005//TBUGZILLA-2_20_1 +/editcomponents.cgi/1.54.4.1/Sun Jan 1 21:19:21 2006//TBUGZILLA-2_20_1 +/editflagtypes.cgi/1.19.4.2/Wed Jan 11 13:19:53 2006//TBUGZILLA-2_20_1 +/editgroups.cgi/1.52.4.3/Sun Jan 22 20:12:20 2006//TBUGZILLA-2_20_1 +/editkeywords.cgi/1.26.4.2/Mon Dec 12 02:42:50 2005//TBUGZILLA-2_20_1 +/editmilestones.cgi/1.38/Tue May 3 19:41:22 2005//TBUGZILLA-2_20_1 +/editparams.cgi/1.24/Tue Mar 15 22:10:13 2005//TBUGZILLA-2_20_1 +/editproducts.cgi/1.85.2.8/Thu Jan 19 11:30:26 2006//TBUGZILLA-2_20_1 +/editsettings.cgi/1.2.4.1/Wed Jul 20 02:23:33 2005//TBUGZILLA-2_20_1 +/editusers.cgi/1.90.2.9/Tue Dec 13 20:20:43 2005//TBUGZILLA-2_20_1 +/editvalues.cgi/1.3.2.2/Wed Jul 27 19:36:50 2005//TBUGZILLA-2_20_1 +/editversions.cgi/1.34/Wed Apr 6 00:19:51 2005//TBUGZILLA-2_20_1 +/editwhines.cgi/1.8.2.2/Thu Feb 2 19:09:01 2006//TBUGZILLA-2_20_1 +/enter_bug.cgi/1.114.4.3/Sun Oct 23 21:50:34 2005//TBUGZILLA-2_20_1 +/globals.pl/1.326.2.5/Mon Jan 9 19:02:51 2006//TBUGZILLA-2_20_1 +/importxml.pl/1.44.2.1/Fri Aug 5 01:01:40 2005//TBUGZILLA-2_20_1 +/index.cgi/1.13.10.1/Sun Aug 21 19:30:07 2005//TBUGZILLA-2_20_1 +/localconfig.js/1.2/Thu Jul 17 22:49:47 2003//TBUGZILLA-2_20_1 +/long_list.cgi/1.45.6.1/Tue Oct 25 19:26:56 2005//TBUGZILLA-2_20_1 +/move.pl/1.31.4.2/Thu Sep 8 23:45:14 2005//TBUGZILLA-2_20_1 +/page.cgi/1.15/Sat Apr 17 04:41:14 2004//TBUGZILLA-2_20_1 +/post_bug.cgi/1.118.2.5/Sun Jan 8 19:54:34 2006//TBUGZILLA-2_20_1 +/process_bug.cgi/1.263.2.6/Sun Jan 8 19:54:34 2006//TBUGZILLA-2_20_1 +/productmenu.js/1.2/Tue Dec 14 02:29:56 2004//TBUGZILLA-2_20_1 +/query.cgi/1.146.2.1/Sun Aug 21 20:46:56 2005//TBUGZILLA-2_20_1 +/quicksearch.html/1.3/Mon Apr 15 02:47:55 2002//TBUGZILLA-2_20_1 +/quicksearch.js/1.12/Thu Jun 9 09:32:24 2005//TBUGZILLA-2_20_1 +/quicksearchhack.html/1.6/Mon Jun 20 19:16:26 2005//TBUGZILLA-2_20_1 +/quips.cgi/1.28/Wed Jun 29 21:54:49 2005//TBUGZILLA-2_20_1 +/relogin.cgi/1.25.10.1/Sat Aug 13 14:17:16 2005//TBUGZILLA-2_20_1 +/report.cgi/1.29.4.2/Fri Dec 2 20:51:14 2005//TBUGZILLA-2_20_1 +/reports.cgi/1.74.4.1/Thu Aug 4 16:06:36 2005//TBUGZILLA-2_20_1 +/request.cgi/1.23.2.1/Wed Nov 16 01:09:51 2005//TBUGZILLA-2_20_1 +/robots.txt/1.2/Wed Apr 24 18:11:00 2002//TBUGZILLA-2_20_1 +/runtests.pl/1.4/Fri Sep 3 06:59:08 2004//TBUGZILLA-2_20_1 +/sanitycheck.cgi/1.97.2.5/Mon Jan 16 10:32:30 2006//TBUGZILLA-2_20_1 +/show_activity.cgi/1.15/Sat Mar 27 03:51:44 2004//TBUGZILLA-2_20_1 +/show_bug.cgi/1.32.4.1/Sun Aug 21 20:56:12 2005//TBUGZILLA-2_20_1 +/showattachment.cgi/1.14/Mon May 5 01:15:29 2003//TBUGZILLA-2_20_1 +/showdependencygraph.cgi/1.38.4.2/Tue Feb 7 09:22:56 2006//TBUGZILLA-2_20_1 +/showdependencytree.cgi/1.32/Mon Apr 4 21:52:06 2005//TBUGZILLA-2_20_1 +/sidebar.cgi/1.14/Sat Mar 27 03:51:44 2004//TBUGZILLA-2_20_1 +/summarize_time.cgi/1.7.4.1/Thu Dec 29 23:28:53 2005//TBUGZILLA-2_20_1 +/testagent.cgi/1.2/Thu Jul 22 07:05:05 2004//TBUGZILLA-2_20_1 +/testserver.pl/1.6.4.1/Thu Sep 15 10:37:33 2005//TBUGZILLA-2_20_1 +/token.cgi/1.31.2.2/Sun Oct 23 21:50:34 2005//TBUGZILLA-2_20_1 +/userprefs.cgi/1.75.4.6/Tue Dec 20 21:49:26 2005//TBUGZILLA-2_20_1 +/votes.cgi/1.29.4.1/Tue Aug 23 12:22:26 2005//TBUGZILLA-2_20_1 +/whine.pl/1.13.2.5/Tue Feb 7 09:31:22 2006//TBUGZILLA-2_20_1 +/whineatnews.pl/1.19/Fri Jul 8 02:17:04 2005//TBUGZILLA-2_20_1 +/xml.cgi/1.12/Thu Mar 27 00:06:50 2003//TBUGZILLA-2_20_1 D/Bugzilla//// D/contrib//// D/docs//// diff --git a/CVS/Tag b/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/CVS/Tag +++ b/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/attachment.cgi b/attachment.cgi index e4cbe8eed76e6099b788a67e163d8dd901ab6a85..b8890ac03cb8226544f1eb8b7419e4c959c8c4f8 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -586,7 +586,7 @@ sub get_unified_diff my ($bugid, $description, $ispatch, $thedata) = FetchSQLData(); if (!$ispatch) { $vars->{'attach_id'} = $id; - ThrowCodeError("must_be_patch"); + ThrowUserError("must_be_patch"); } # Reads in the patch, converting to unified diff in a temp file @@ -913,11 +913,11 @@ sub insert $vars->{'message'} = 'user_match_multiple'; } - # Flag::validate() should not detect any reference to existing - # flags when creating a new attachment. Setting the third param - # to -1 will force this function to check this point. + # FlagType::validate() and Flag::validate() should not detect + # any reference to existing flags when creating a new attachment. + # Setting the third param to -1 will force this function to check this point. Bugzilla::Flag::validate($cgi, $bugid, -1); - Bugzilla::FlagType::validate($cgi, $bugid); + Bugzilla::FlagType::validate($cgi, $bugid, -1); # Escape characters in strings that will be used in SQL statements. my $sql_filename = SqlQuote($filename); @@ -1000,7 +1000,8 @@ sub insert if ($cgi->param('takebug') && UserInGroup("editbugs")) { - my @fields = ("assigned_to", "bug_status", "resolution", "login_name"); + my @fields = ("assigned_to", "bug_status", "resolution", "everconfirmed", + "login_name"); # Get the old values, for the bugs_activity table SendSQL("SELECT " . join(", ", @fields) . " " . @@ -1010,25 +1011,25 @@ sub insert "WHERE bugs.bug_id = $bugid"); my @oldvalues = FetchSQLData(); - my @newvalues = ($userid, "ASSIGNED", "", Bugzilla->user->login); + my @newvalues = ($userid, "ASSIGNED", "", 1, Bugzilla->user->login); # Make sure the person we are taking the bug from gets mail. - $owner = $oldvalues[3]; + $owner = $oldvalues[4]; @oldvalues = map(SqlQuote($_), @oldvalues); @newvalues = map(SqlQuote($_), @newvalues); # Update the bug record. Note that this doesn't involve login_name. SendSQL("UPDATE bugs SET delta_ts = $sql_timestamp, " . - join(", ", map("$fields[$_] = $newvalues[$_]", (0..2))) . + join(", ", map("$fields[$_] = $newvalues[$_]", (0..3))) . " WHERE bug_id = $bugid"); # We store email addresses in the bugs_activity table rather than IDs. - $oldvalues[0] = $oldvalues[3]; - $newvalues[0] = $newvalues[3]; + $oldvalues[0] = $oldvalues[4]; + $newvalues[0] = $newvalues[4]; # Add the changes to the bugs_activity table - for (my $i = 0; $i < 3; $i++) { + for (my $i = 0; $i < 4; $i++) { if ($oldvalues[$i] ne $newvalues[$i]) { my $fieldid = GetFieldID($fields[$i]); SendSQL("INSERT INTO bugs_activity " . diff --git a/buglist.cgi b/buglist.cgi index d579d8086d4a7c4dd1855cc2ca764d68b8717179..c8a43ee3e3273f582a650fb0e283e37672d45367 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -59,6 +59,10 @@ use vars qw($db_name my $cgi = Bugzilla->cgi; my $dbh = Bugzilla->dbh; +# We have to check the login here to get the correct footer +# if an error is thrown. +Bugzilla->login(); + if (length($::buffer) == 0) { print $cgi->header(-refresh=> '10; URL=query.cgi'); ThrowUserError("buglist_parameters_required"); @@ -80,9 +84,6 @@ if ($dotweak) { object => "multiple_bugs"}); GetVersionTable(); } -else { - Bugzilla->login(); -} # Hack to support legacy applications that think the RDF ctype is at format=rdf. if (defined $cgi->param('format') && $cgi->param('format') eq "rdf" @@ -91,6 +92,11 @@ if (defined $cgi->param('format') && $cgi->param('format') eq "rdf" $cgi->delete('format'); } +# Treat requests for ctype=rss as requests for ctype=atom +if (defined $cgi->param('ctype') && $cgi->param('ctype') eq "rss") { + $cgi->param('ctype', "atom"); +} + # The js ctype presents a security risk; a malicious site could use it # to gather information about secure bugs. So, we only allow public bugs to be # retrieved with this format. @@ -482,6 +488,8 @@ if (!$params->param('query_format')) { # "DESC" is added to the end of the field to sort in descending order, # and the redundant short_desc column is removed when the client # requests "all" columns. +# Note: For column names using aliasing (SQL "<field> AS <alias>"), the column +# ID needs to be identical to the field ID for list ordering to work. my $columns = {}; sub DefineColumn { @@ -505,12 +513,12 @@ if ($format->{'extension'} eq 'html') { DefineColumn("reporter_realname" , "CASE WHEN map_reporter.realname = '' THEN map_reporter.login_name ELSE map_reporter.realname END AS reporter_realname" , "Reporter" ); DefineColumn("qa_contact_realname" , "CASE WHEN map_qa_contact.realname = '' THEN map_qa_contact.login_name ELSE map_qa_contact.realname END AS qa_contact_realname" , "QA Contact"); } else { - DefineColumn("assigned_to_realname", "map_assigned_to.realname" , "Assignee" ); - DefineColumn("reporter_realname" , "map_reporter.realname" , "Reporter" ); - DefineColumn("qa_contact_realname" , "map_qa_contact.realname" , "QA Contact" ); + DefineColumn("assigned_to_realname", "map_assigned_to.realname AS assigned_to_realname", "Assignee" ); + DefineColumn("reporter_realname" , "map_reporter.realname AS reporter_realname" , "Reporter" ); + DefineColumn("qa_contact_realname" , "map_qa_contact.realname AS qa_contact_realname" , "QA Contact"); } DefineColumn("bug_status" , "bugs.bug_status" , "Status" ); -DefineColumn("resolution" , "bugs.resolution" , "Result" ); +DefineColumn("resolution" , "bugs.resolution" , "Resolution" ); DefineColumn("short_short_desc" , "bugs.short_desc" , "Summary" ); DefineColumn("short_desc" , "bugs.short_desc" , "Summary" ); DefineColumn("status_whiteboard" , "bugs.status_whiteboard" , "Whiteboard" ); @@ -525,7 +533,13 @@ DefineColumn("keywords" , "bugs.keywords" , "Keywords" DefineColumn("estimated_time" , "bugs.estimated_time" , "Estimated Hours" ); DefineColumn("remaining_time" , "bugs.remaining_time" , "Remaining Hours" ); DefineColumn("actual_time" , "(SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id)) AS actual_time", "Actual Hours"); -DefineColumn("percentage_complete","(100*((SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id))/((SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id))+bugs.remaining_time))) AS percentage_complete", "% Complete"); +DefineColumn("percentage_complete", + "(CASE WHEN (SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id)) " . + " + bugs.remaining_time = 0.0 " . + "THEN 0.0 " . + "ELSE 100*((SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id)) " . + " /((SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id)) + bugs.remaining_time)) " . + "END) AS percentage_complete" , "% Complete"); DefineColumn("relevance" , "relevance" , "Relevance" ); DefineColumn("deadline" , $dbh->sql_date_format('bugs.deadline', '%Y-%m-%d') . " AS deadline", "Deadline"); @@ -640,9 +654,9 @@ if ($format->{'extension'} eq 'ics') { push(@selectcolumns, "opendate") if !grep($_ eq 'opendate', @selectcolumns); } -if ($format->{'extension'} eq 'rss') { - # This is the list of fields that are needed by the rss filter. - my @required_rss_columns = ( +if ($format->{'extension'} eq 'atom') { + # This is the list of fields that are needed by the Atom filter. + my @required_atom_columns = ( 'short_desc', 'opendate', 'changeddate', @@ -653,7 +667,7 @@ if ($format->{'extension'} eq 'rss') { 'bug_status' ); - foreach my $required (@required_rss_columns) { + foreach my $required (@required_atom_columns) { push(@selectcolumns, $required) if !grep($_ eq $required,@selectcolumns); } } @@ -721,7 +735,7 @@ if ($order) { $fragment = trim($fragment); # Accept an order fragment matching a column name, with # asc|desc optionally following (to specify the direction) - if (grep($fragment =~ /^\Q$_\E(\s+(asc|desc))?$/, @columnnames)) { + if (grep($fragment =~ /^\Q$_\E(\s+(asc|desc))?$/, @columnnames, keys(%$columns))) { next if $fragment =~ /\brelevance\b/ && !$fulltext; push(@order, $fragment); } @@ -748,21 +762,29 @@ else { $order = "bugs.bug_status, bugs.priority, map_assigned_to.login_name, bugs.bug_id"; } +# Make sure ORDER BY columns are included in the field list. foreach my $fragment (split(/,/, $order)) { $fragment = trim($fragment); if (!grep($fragment =~ /^\Q$_\E(\s+(asc|desc))?$/, @selectnames)) { # Add order columns to selectnames # The fragment has already been validated $fragment =~ s/\s+(asc|desc)$//; - # This fixes an issue where columns being used in the ORDER BY statement - # can have the SQL that generates the value changed to become invalid - - # mainly affects time tracking. + + # While newer fragments contain IDs for aliased columns, older + # LASTORDER cookies (or bookmarks) may contain full names. + # Convert them to an ID here. if ($fragment =~ / AS (\w+)/) { - $fragment = $columns->{$1}->{'name'}; + $fragment = $columns->{$1}->{'id'}; } - else { - $fragment =~ tr/a-zA-Z\.0-9\-_//cd; + + $fragment =~ tr/a-zA-Z\.0-9\-_//cd; + + # If the order fragment is an ID, we need its corresponding name + # to be in the field list. + if (exists($columns->{$fragment})) { + $fragment = $columns->{$fragment}->{'name'}; } + push @selectnames, $fragment; } } @@ -836,7 +858,7 @@ if ($serverpush) { # Connect to the shadow database if this installation is using one to improve # query performance. -Bugzilla->switch_to_shadow_db(); +$dbh = Bugzilla->switch_to_shadow_db(); # Normally, we ignore SIGTERM and SIGPIPE (see globals.pl) but we need to # respond to them here to prevent someone DOSing us by reloading a query @@ -879,7 +901,7 @@ while (my @row = $buglist_sth->fetchrow_array()) { s/^(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})$/$1-$2-$3 $4:$5:$6/; # Put in the change date as a time, so that the template date plugin - # can format the date in any way needed by the template. ICS and RSS + # can format the date in any way needed by the template. ICS and Atom # have specific, and different, date and time formatting. $bug->{'changedtime'} = str2time($bug->{'changeddate'}); $bug->{'changeddate'} = DiffDate($bug->{'changeddate'}); diff --git a/checksetup.pl b/checksetup.pl index e9cf38d41dc37c7f9f26bfbd19e02bff2629dfd8..2f3307a5ee62cc6d5342d09e6f627c2d66026d32 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -31,6 +31,7 @@ # Erik Stambaugh <erik@dasbistro.com> # Dave Lawrence <dkl@redhat.com> # Max Kanat-Alexander <mkanat@bugzilla.org> +# Marc Schumann <wurblzap@gmail.com> # # # @@ -751,22 +752,6 @@ my $my_db_name = ${*{$main::{'db_name'}}{SCALAR}}; my $my_index_html = ${*{$main::{'index_html'}}{SCALAR}}; my $my_create_htaccess = ${*{$main::{'create_htaccess'}}{SCALAR}}; my $my_webservergroup = ${*{$main::{'webservergroup'}}{SCALAR}}; -# mkanat@bugzilla.org - bug 17453 -# The following values have been removed from localconfig. -# However, if we are upgrading from a Bugzilla with enums to a -# Bugzilla without enums, we use these values one more time so -# that we correctly populate the tables. -my @my_severities; -@my_severities = @{*{$main::{'severities'}}{ARRAY}} - if exists($main::{'severities'}); -my @my_priorities; -@my_priorities = @{*{$main::{'priorities'}}{ARRAY}} - if exists($main::{'priorities'}); -my @my_platforms; -@my_platforms = @{*{$main::{'platforms'}}{ARRAY}} - if exists($main::{'platforms'}); -my @my_opsys; -@my_opsys = @{*{$main::{'opsys'}}{ARRAY}} if exists($main::{'opsys'}); if ($my_webservergroup && !$silent) { if ($^O !~ /MSWin32/i) { @@ -992,7 +977,7 @@ if ($my_create_htaccess) { open HTACCESS, '>', '.htaccess'; print HTACCESS <<'END'; # don't allow people to retrieve non-cgi executable files or our private data -<FilesMatch ^(.*\.pl|.*localconfig.*)$> +<FilesMatch ^(.*\.pm|.*\.pl|.*localconfig.*)$> deny from all </FilesMatch> <FilesMatch ^(localconfig.js|localconfig.rdf)$> @@ -1009,7 +994,15 @@ END $oldaccess .= $_; } close HTACCESS; + my $repaired = 0; if ($oldaccess =~ s/\|localconfig\|/\|.*localconfig.*\|/) { + $repaired = 1; + } + if ($oldaccess !~ /\(\.\*\\\.pm\|/) { + $oldaccess =~ s/\(/(.*\\.pm\|/; + $repaired = 1; + } + if ($repaired) { print "Repairing .htaccess...\n"; open HTACCESS, '>', '.htaccess'; print HTACCESS $oldaccess; @@ -1197,27 +1190,6 @@ unless ($switch{'no_templates'}) { } } - # Search for template directories - # We include the default and custom directories separately to make - # sure we compile all templates - my @templatepaths = (); - { - use File::Spec; - opendir(DIR, $templatedir) || die "Can't open '$templatedir': $!"; - my @files = grep { /^[a-z-]+$/i } readdir(DIR); - closedir DIR; - - foreach my $dir (@files) { - next if($dir =~ /^CVS$/i); - my $path = File::Spec->catdir($templatedir, $dir, 'custom'); - push(@templatepaths, $path) if(-d $path); - $path = File::Spec->catdir($templatedir, $dir, 'extension'); - push(@templatepaths, $path) if(-d $path); - $path = File::Spec->catdir($templatedir, $dir, 'default'); - push(@templatepaths, $path) if(-d $path); - } - } - # Precompile stuff. This speeds up initial access (so the template isn't # compiled multiple times simultaneously by different servers), and helps # to get the permissions right. @@ -1244,12 +1216,27 @@ unless ($switch{'no_templates'}) { # Don't hang on templates which use the CGI library eval("use CGI qw(-no_debug)"); - $::template = Bugzilla::Template->create(); + + use File::Spec; + opendir(DIR, $templatedir) || die "Can't open '$templatedir': $!"; + my @files = grep { /^[a-z-]+$/i } readdir(DIR); + closedir DIR; - foreach $::templatepath (@templatepaths) { - # Traverse the template hierarchy. - find({ wanted => \&compile, no_chdir => 1 }, $::templatepath); - } + foreach my $dir (@files) { + next if($dir =~ /^CVS$/i); + -d "$templatedir/$dir/custom" || -d "$templatedir/$dir/default" + || next; + local $ENV{'HTTP_ACCEPT_LANGUAGE'} = $dir; + SetParam("languages", "$dir,en"); + $::template = Bugzilla::Template->create(clean_cache => 1); + my @templatepaths; + foreach my $subdir (qw(custom extension default)) { + $::templatepath = File::Spec->catdir($templatedir, $dir, $subdir); + next unless -d $::templatepath; + # Traverse the template hierarchy. + find({ wanted => \&compile, no_chdir => 1 }, $::templatepath); + } + } } } @@ -1429,6 +1416,9 @@ import Bugzilla::User::Setting qw(add_setting); require Bugzilla::Util; import Bugzilla::Util qw(bz_crypt trim html_quote); +require Bugzilla::User; +import Bugzilla::User qw(insert_new_user); + # globals.pl clears the PATH, but File::Find uses Cwd::cwd() instead of # Cwd::getcwd(), which we need to do because `pwd` isn't in the path - see # http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2001-09/msg00115.html @@ -1695,9 +1685,6 @@ AddFDef("attachments.isprivate", "Attachment is private", 0); AddFDef("target_milestone", "Target Milestone", 0); AddFDef("delta_ts", "Last changed date", 0); -AddFDef("(" . $dbh->sql_to_days('NOW()') . " - " . - $dbh->sql_to_days('bugs.delta_ts') . ")", - "Days since bug changed", 0); AddFDef("longdesc", "Comment", 0); AddFDef("alias", "Alias", 0); AddFDef("everconfirmed", "Ever Confirmed", 0); @@ -1723,13 +1710,75 @@ AddFDef("percentage_complete", "Percentage Complete", 0); AddFDef("content", "Content", 0); +# 2005-11-13 LpSolit@gmail.com - Bug 302599 +# One of the field names was a fragment of SQL code, which is DB dependent. +# We have to rename it to a real name, which is DB independent. +my $new_field_name = 'days_elapsed'; +my $field_description = 'Days since bug changed'; + +my ($old_field_id, $old_field_name) = + $dbh->selectrow_array('SELECT fieldid, name + FROM fielddefs + WHERE description = ?', + undef, $field_description); + +if ($old_field_id && ($old_field_name ne $new_field_name)) { + print "SQL fragment found in the 'fielddefs' table...\n"; + print "Old field name: " . $old_field_name . "\n"; + # We have to fix saved searches first. Queries have been escaped + # before being saved. We have to do the same here to find them. + $old_field_name = url_quote($old_field_name); + my $broken_named_queries = + $dbh->selectall_arrayref('SELECT userid, name, query + FROM namedqueries WHERE ' . + $dbh->sql_istrcmp('query', '?', 'LIKE'), + undef, "%=$old_field_name%"); + + my $sth_UpdateQueries = $dbh->prepare('UPDATE namedqueries SET query = ? + WHERE userid = ? AND name = ?'); + + print "Fixing saved searches...\n" if scalar(@$broken_named_queries); + foreach my $named_query (@$broken_named_queries) { + my ($userid, $name, $query) = @$named_query; + $query =~ s/=\Q$old_field_name\E(&|$)/=$new_field_name$1/gi; + $sth_UpdateQueries->execute($query, $userid, $name); + } + + # We now do the same with saved chart series. + my $broken_series = + $dbh->selectall_arrayref('SELECT series_id, query + FROM series WHERE ' . + $dbh->sql_istrcmp('query', '?', 'LIKE'), + undef, "%=$old_field_name%"); + + my $sth_UpdateSeries = $dbh->prepare('UPDATE series SET query = ? + WHERE series_id = ?'); + + print "Fixing saved chart series...\n" if scalar(@$broken_series); + foreach my $series (@$broken_series) { + my ($series_id, $query) = @$series; + $query =~ s/=\Q$old_field_name\E(&|$)/=$new_field_name$1/gi; + $sth_UpdateSeries->execute($query, $series_id); + } + + # Now that saved searches have been fixed, we can fix the field name. + print "Fixing the 'fielddefs' table...\n"; + print "New field name: " . $new_field_name . "\n"; + $dbh->do('UPDATE fielddefs SET name = ? WHERE fieldid = ?', + undef, ($new_field_name, $old_field_id)); +} +AddFDef($new_field_name, $field_description, 0); + ########################################################################### # Detect changed local settings ########################################################################### -# mkanat@bugzilla.org - bug 17453 -# Create the values for the tables that hold what used to be enum types. -# Don't populate the tables if the table isn't empty. +# Nick Barnes nb+bz@ravenbrook.com 2005-10-05 +# +# PopulateEnumTable($table, @values): if the table $table has no +# entries, fill it with the entries in the list @values, in the same +# order as that list. + sub PopulateEnumTable ($@) { my ($table, @valuelist) = @_; @@ -1758,37 +1807,36 @@ sub PopulateEnumTable ($@) { } } -# mkanat@bugzilla.org - bug 17453 -# Set default values for what used to be the enum types. -# These values are no longer stored in localconfig. -# However, if we are upgrading from a Bugzilla with enums to a -# Bugzilla without enums, we use the localconfig values one more time. - +# Set default values for what used to be the enum types. These values +# are no longer stored in localconfig. If we are upgrading from a +# Bugzilla with enums to a Bugzilla without enums, we use the +# enum values. +# # The values that you see here are ONLY DEFAULTS. They are only used -# the FIRST time you run checksetup. After that, they are either -# controlled through the Bugzilla UI or through the DB. -@my_severities = ('blocker','critical','major','normal','minor', - 'trivial','enhancement') if !@my_severities; -@my_priorities = ("P1","P2","P3","P4","P5") if !@my_priorities; -@my_opsys = ("All","Windows","Mac OS","Linux","Other") if !@my_opsys; -@my_platforms = ("All","PC","Macintosh","Other") if !@my_platforms; - -PopulateEnumTable('bug_severity', @my_severities); -PopulateEnumTable('priority', @my_priorities); -PopulateEnumTable('op_sys', @my_opsys); -PopulateEnumTable('rep_platform', @my_platforms); - -# The resolution and bug_status lists are absolute. On an upgrade from -# a Bugzilla with enums, whatever is in the enum will be replaced with -# this. This is because Bugzilla depends on the exact names of these -# resolutions in order to function properly. -my @states = ("UNCONFIRMED","NEW","ASSIGNED","REOPENED","RESOLVED", - "VERIFIED","CLOSED"); -my @resolutions = ("","FIXED","INVALID","WONTFIX","LATER","REMIND", - "DUPLICATE","WORKSFORME","MOVED"); -PopulateEnumTable('bug_status', @states); -PopulateEnumTable('resolution', @resolutions); - +# the FIRST time you run checksetup, IF you are NOT upgrading from a +# Bugzilla with enums. After that, they are either controlled through +# the Bugzilla UI or through the DB. + +my $enum_defaults = { + bug_severity => ['blocker', 'critical', 'major', 'normal', + 'minor', 'trivial', 'enhancement'], + priority => ["P1","P2","P3","P4","P5"], + op_sys => ["All","Windows","Mac OS","Linux","Other"], + rep_platform => ["All","PC","Macintosh","Other"], + bug_status => ["UNCONFIRMED","NEW","ASSIGNED","REOPENED","RESOLVED", + "VERIFIED","CLOSED"], + resolution => ["","FIXED","INVALID","WONTFIX","LATER","REMIND", + "DUPLICATE","WORKSFORME","MOVED"], +}; + +# Get all the enum column values for the existing database, or the +# defaults if the columns are not enums. +my $enum_values = $dbh->bz_enum_initial_values($enum_defaults); + +# Populate the enum tables. +while (my ($table, $values) = each %$enum_values) { + PopulateEnumTable($table, @$values); +} ########################################################################### # Create initial test product if there are no products present. @@ -3128,10 +3176,9 @@ if ($dbh->bz_table_info("attachstatuses") print "Converting attachment statuses to flags...\n"; # Get IDs for the old attachment status and new flag fields. - $sth = $dbh->prepare("SELECT fieldid FROM fielddefs " . - "WHERE name='attachstatusdefs.name'"); - $sth->execute(); - my $old_field_id = $sth->fetchrow_arrayref()->[0] || 0; + my ($old_field_id) = $dbh->selectrow_array( + "SELECT fieldid FROM fielddefs WHERE name='attachstatusdefs.name'") + || 0; $sth = $dbh->prepare("SELECT fieldid FROM fielddefs " . "WHERE name='flagtypes.name'"); @@ -3999,6 +4046,152 @@ if (!exists $dbh->bz_column_info('whine_queries', 'title')->{DEFAULT}) { NOTNULL => 1, DEFAULT => "''"}); } +# 2005-12-30 - wurblzap@gmail.com - Bug 300473 +# Repair broken automatically generated series queries for non-open bugs. +my $broken_series_indicator = + 'field0-0-0=resolution&type0-0-0=notequals&value0-0-0=---'; +my $broken_nonopen_series = + $dbh->selectall_arrayref("SELECT series_id, query FROM series + WHERE query LIKE '$broken_series_indicator%'"); +if (@$broken_nonopen_series) { + print 'Repairing broken series...'; + my $sth_nuke = + $dbh->prepare('DELETE FROM series_data WHERE series_id = ?'); + # This statement is used to repair a series by replacing the broken query + # with the correct one. + my $sth_repair = + $dbh->prepare('UPDATE series SET query = ? WHERE series_id = ?'); + # The corresponding series for open bugs look like one of these two + # variations (bug 225687 changed the order of bug states). + # This depends on the set of bug states representing open bugs not to have + # changed since series creation. + my $open_bugs_query_base_old = + join("&", map { "bug_status=" . url_quote($_) } + ('UNCONFIRMED', 'NEW', 'ASSIGNED', 'REOPENED')); + my $open_bugs_query_base_new = + join("&", map { "bug_status=" . url_quote($_) } OpenStates()); + my $sth_openbugs_series = + $dbh->prepare("SELECT series_id FROM series + WHERE query IN (?, ?)"); + # Statement to find the series which has collected the most data. + my $sth_data_collected = + $dbh->prepare('SELECT count(*) FROM series_data WHERE series_id = ?'); + # Statement to select a broken non-open bugs count data entry. + my $sth_select_broken_nonopen_data = + $dbh->prepare('SELECT series_date, series_value FROM series_data' . + ' WHERE series_id = ?'); + # Statement to select an open bugs count data entry. + my $sth_select_open_data = + $dbh->prepare('SELECT series_value FROM series_data' . + ' WHERE series_id = ? AND series_date = ?'); + # Statement to fix a broken non-open bugs count data entry. + my $sth_fix_broken_nonopen_data = + $dbh->prepare('UPDATE series_data SET series_value = ?' . + ' WHERE series_id = ? AND series_date = ?'); + # Statement to delete an unfixable broken non-open bugs count data entry. + my $sth_delete_broken_nonopen_data = + $dbh->prepare('DELETE FROM series_data' . + ' WHERE series_id = ? AND series_date = ?'); + + foreach (@$broken_nonopen_series) { + my ($broken_series_id, $nonopen_bugs_query) = @$_; + + # Determine the product-and-component part of the query. + if ($nonopen_bugs_query =~ /^$broken_series_indicator(.*)$/) { + my $prodcomp = $1; + + # If there is more than one series for the corresponding open-bugs + # series, we pick the one with the most data, which should be the + # one which was generated on creation. + # It's a pity we can't do subselects. + $sth_openbugs_series->execute($open_bugs_query_base_old . $prodcomp, + $open_bugs_query_base_new . $prodcomp); + my ($found_open_series_id, $datacount) = (undef, -1); + foreach my $open_series_id ($sth_openbugs_series->fetchrow_array()) { + $sth_data_collected->execute($open_series_id); + my ($this_datacount) = $sth_data_collected->fetchrow_array(); + if ($this_datacount > $datacount) { + $datacount = $this_datacount; + $found_open_series_id = $open_series_id; + } + } + + if ($found_open_series_id) { + # Move along corrupted series data and correct it. The + # corruption consists of it being the number of all bugs + # instead of the number of non-open bugs, so we calculate the + # correct count by subtracting the number of open bugs. + # If there is no corresponding open-bugs count for some reason + # (shouldn't happen), we drop the data entry. + print " $broken_series_id..."; + $sth_select_broken_nonopen_data->execute($broken_series_id); + while (my $rowref = + $sth_select_broken_nonopen_data->fetchrow_arrayref()) { + my ($date, $broken_value) = @$rowref; + my ($openbugs_value) = + $dbh->selectrow_array($sth_select_open_data, undef, + $found_open_series_id, $date); + if (defined($openbugs_value)) { + $sth_fix_broken_nonopen_data->execute + ($broken_value - $openbugs_value, + $broken_series_id, $date); + } + else { + print "\nWARNING - During repairs of series " . + "$broken_series_id, the irreparable data\n" . + "entry for date $date was encountered and is " . + "being deleted.\n" . + "Continuing repairs..."; + $sth_delete_broken_nonopen_data->execute + ($broken_series_id, $date); + } + } + + # Fix the broken query so that it collects correct data in the + # future. + $nonopen_bugs_query =~ + s/^$broken_series_indicator/field0-0-0=resolution&type0-0-0=regexp&value0-0-0=./; + $sth_repair->execute($nonopen_bugs_query, $broken_series_id); + } + else { + print "\nWARNING - Series $broken_series_id was meant to\n" . + "collect non-open bug counts, but it has counted\n" . + "all bugs instead. It cannot be repaired\n" . + "automatically because no series that collected open\n" . + "bug counts was found. You'll probably want to delete\n" . + "or repair collected data for series $broken_series_id " . + "manually.\n" . + "Continuing repairs..."; + } + } + } + print " done.\n"; +} + +# Fixup for Bug 101380 +# "Newlines, nulls, leading/trailing spaces are getting into summaries" + +my $controlchar_bugs = + $dbh->selectall_arrayref("SELECT short_desc, bug_id FROM bugs WHERE " . + "'short_desc' " . $dbh->sql_regexp . + " '[[:cntrl:]]'"); +if (scalar(@$controlchar_bugs)) +{ + my $msg = 'Cleaning control characters from bug summaries...'; + my $found = 0; + foreach (@$controlchar_bugs) { + my ($short_desc, $bug_id) = @$_; + my $clean_short_desc = clean_text($short_desc); + if ($clean_short_desc ne $short_desc) { + print $msg if !$found; + $found = 1; + print " $bug_id..."; + $dbh->do("UPDATE bugs SET short_desc = ? WHERE bug_id = ?", + undef, $clean_short_desc, $bug_id); + } + } + print " done.\n" if $found; +} # If you had to change the --TABLE-- definition in any way, then add your # differential change code *** A B O V E *** this comment. @@ -4283,9 +4476,6 @@ if ($sth->rows == 0) { } } - # Crypt the administrator's password - my $cryptedpassword = bz_crypt($pass1); - if ($^O !~ /MSWin32/i) { system("stty","echo"); # re-enable input echoing } @@ -4295,12 +4485,7 @@ if ($sth->rows == 0) { $SIG{QUIT} = 'DEFAULT'; $SIG{TERM} = 'DEFAULT'; - $dbh->do( - q{INSERT INTO profiles (login_name, realname, cryptpassword, - disabledtext, refreshed_when) - VALUES (?, ?, ?, ?, ?)}, - undef, $login, $realname, $cryptedpassword, - '', '1900-01-01 00:00:00'); + insert_new_user($login, $realname, $pass1); } # Put the admin in each group if not already @@ -4320,12 +4505,22 @@ if ($sth->rows == 0) { # Admins get inherited membership and bless capability for all groups foreach my $group ( @groups ) { - $dbh->do("INSERT INTO group_group_map - (member_id, grantor_id, grant_type) - VALUES ($admingroupid, $group, " . GROUP_MEMBERSHIP . ")"); - $dbh->do("INSERT INTO group_group_map - (member_id, grantor_id, grant_type) - VALUES ($admingroupid, $group, " . GROUP_BLESS . ")"); + my $sth_check = $dbh->prepare("SELECT member_id FROM group_group_map + WHERE member_id = ? + AND grantor_id = ? + AND grant_type = ?"); + $sth_check->execute($admingroupid, $group, GROUP_MEMBERSHIP); + unless ($sth_check->rows) { + $dbh->do("INSERT INTO group_group_map + (member_id, grantor_id, grant_type) + VALUES ($admingroupid, $group, " . GROUP_MEMBERSHIP . ")"); + } + $sth_check->execute($admingroupid, $group, GROUP_BLESS); + unless ($sth_check->rows) { + $dbh->do("INSERT INTO group_group_map + (member_id, grantor_id, grant_type) + VALUES ($admingroupid, $group, " . GROUP_BLESS . ")"); + } } print "\n$login is now set up as an administrator account.\n"; diff --git a/collectstats.pl b/collectstats.pl index a12c85586cf05ef7d8bf3796ca24687b51c90261..2d7d3d25846b9c7345e8316b6878a228349a11f6 100755 --- a/collectstats.pl +++ b/collectstats.pl @@ -286,7 +286,7 @@ sub regenerate_stats { $dbh->sql_to_days('current_date') . " AS end, " . $dbh->sql_to_days("'1970-01-01'") . " FROM bugs $from_product WHERE " . - $dbh->sql_to_days('creation_ts') . " != 'NULL'" . + $dbh->sql_to_days('creation_ts') . " IS NOT NULL " . $and_product . " ORDER BY start " . $dbh->sql_limit(1)); @@ -316,8 +316,8 @@ FIN # Get a list of bugs that were created the previous day, and # add those bugs to the list of bugs for this product. SendSQL("SELECT bug_id FROM bugs $from_product " . - "WHERE bugs.creation_ts < from_days(" . ($day - 1) . ") " . - "AND bugs.creation_ts >= from_days(" . ($day - 2) . ") " . + " WHERE bugs.creation_ts < " . $dbh->sql_from_days($day - 1) . + " AND bugs.creation_ts >= " . $dbh->sql_from_days($day - 2) . $and_product . " ORDER BY bug_id"); @@ -354,8 +354,8 @@ FIN " ON bugs_activity.fieldid = fielddefs.fieldid " . " WHERE fielddefs.name = 'bug_status' " . " AND bugs_activity.bug_id = $bug " . - " AND bugs_activity.bug_when >= from_days($day) " . - "ORDER BY bugs_activity.bug_when " . + " AND bugs_activity.bug_when >= " . $dbh->sql_from_days($day) . + " ORDER BY bugs_activity.bug_when " . $dbh->sql_limit(1)); my $status; @@ -377,8 +377,8 @@ FIN " ON bugs_activity.fieldid = fielddefs.fieldid " . " WHERE fielddefs.name = 'resolution' " . " AND bugs_activity.bug_id = $bug " . - " AND bugs_activity.bug_when >= from_days($day) " . - "ORDER BY bugs_activity.bug_when " . + " AND bugs_activity.bug_when >= " . $dbh->sql_from_days($day) . + " ORDER BY bugs_activity.bug_when " . $dbh->sql_limit(1)); if (@row = FetchSQLData()) { @@ -458,10 +458,8 @@ sub CollectSeriesData { # We save a copy of the main $dbh and then switch to the shadow and get # that one too. Remember, these may be the same. - Bugzilla->switch_to_main_db(); - my $dbh = Bugzilla->dbh; - Bugzilla->switch_to_shadow_db(); - my $shadow_dbh = Bugzilla->dbh; + my $dbh = Bugzilla->switch_to_main_db(); + my $shadow_dbh = Bugzilla->switch_to_shadow_db(); my $serieses = $dbh->selectall_hashref("SELECT series_id, query, creator " . "FROM series " . diff --git a/contrib/CVS/Entries b/contrib/CVS/Entries index 7f75d18d87dd5715680f53db834041b4453ac293..45a79f376d29718d88b7c2bbd7c95f54dc96a6be 100644 --- a/contrib/CVS/Entries +++ b/contrib/CVS/Entries @@ -1,19 +1,20 @@ -/BugzillaEmail.pm/1.3/Fri Jul 8 02:31:43 2005//TBUGZILLA-2_20 -/README/1.10/Mon Jul 5 21:54:00 2004//TBUGZILLA-2_20 -/README.Mailif/1.3/Wed Mar 15 23:39:03 2000//TBUGZILLA-2_20 -/bug_email.pl/1.28/Fri Jul 8 02:31:43 2005//TBUGZILLA-2_20 -/bugmail_help.html/1.2/Mon Jun 20 19:16:27 2005//TBUGZILLA-2_20 -/bugzilla.procmailrc/1.1/Wed Mar 15 23:39:09 2000//TBUGZILLA-2_20 -/bugzilla_email_append.pl/1.9/Fri Jul 8 02:31:43 2005//TBUGZILLA-2_20 -/bugzilla_ldapsync.rb/1.2/Sat Apr 26 16:35:04 2003//TBUGZILLA-2_20 -/cvs-update.pl/1.1/Tue Nov 11 05:58:52 2003//TBUGZILLA-2_20 -/gnats2bz.pl/1.6/Thu Jan 31 14:29:21 2002//TBUGZILLA-2_20 -/jb2bz.py/1.4/Tue Feb 8 16:51:03 2005//TBUGZILLA-2_20 -/mysqld-watcher.pl/1.5/Thu Mar 27 00:06:53 2003//TBUGZILLA-2_20 -/sendbugmail.pl/1.3/Thu Feb 24 23:42:48 2005//TBUGZILLA-2_20 -/sendunsentbugmail.pl/1.5/Tue Mar 29 21:43:00 2005//TBUGZILLA-2_20 -/syncLDAP.pl/1.3/Fri Jul 8 02:31:43 2005//TBUGZILLA-2_20 -/yp_nomail.sh/1.1/Tue Sep 12 23:50:31 2000//TBUGZILLA-2_20 +/BugzillaEmail.pm/1.3/Fri Jul 8 02:31:43 2005//TBUGZILLA-2_20_1 +/README/1.10/Mon Jul 5 21:54:00 2004//TBUGZILLA-2_20_1 +/README.Mailif/1.3/Wed Mar 15 23:39:03 2000//TBUGZILLA-2_20_1 +/bug_email.pl/1.28/Fri Jul 8 02:31:43 2005//TBUGZILLA-2_20_1 +/bugmail_help.html/1.2/Mon Jun 20 19:16:27 2005//TBUGZILLA-2_20_1 +/bugzilla.procmailrc/1.1/Wed Mar 15 23:39:09 2000//TBUGZILLA-2_20_1 +/bugzilla_email_append.pl/1.9/Fri Jul 8 02:31:43 2005//TBUGZILLA-2_20_1 +/bugzilla_ldapsync.rb/1.2/Sat Apr 26 16:35:04 2003//TBUGZILLA-2_20_1 +/bzdbcopy.pl/1.1.2.2/Tue Oct 18 22:26:27 2005//TBUGZILLA-2_20_1 +/cvs-update.pl/1.1/Tue Nov 11 05:58:52 2003//TBUGZILLA-2_20_1 +/gnats2bz.pl/1.6/Thu Jan 31 14:29:21 2002//TBUGZILLA-2_20_1 +/jb2bz.py/1.4/Tue Feb 8 16:51:03 2005//TBUGZILLA-2_20_1 +/mysqld-watcher.pl/1.5/Thu Mar 27 00:06:53 2003//TBUGZILLA-2_20_1 +/sendbugmail.pl/1.3/Thu Feb 24 23:42:48 2005//TBUGZILLA-2_20_1 +/sendunsentbugmail.pl/1.5.4.1/Sun Nov 13 17:36:21 2005//TBUGZILLA-2_20_1 +/syncLDAP.pl/1.3/Fri Jul 8 02:31:43 2005//TBUGZILLA-2_20_1 +/yp_nomail.sh/1.1/Tue Sep 12 23:50:31 2000//TBUGZILLA-2_20_1 D/bugzilla-submit//// D/cmdline//// D/gnatsparse//// diff --git a/contrib/CVS/Tag b/contrib/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/contrib/CVS/Tag +++ b/contrib/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/contrib/bugzilla-submit/CVS/Entries b/contrib/bugzilla-submit/CVS/Entries index 32cde16010718a3268cafac2fe440330aedf85c4..b68e038bed618b16d9896ba56d91086b894b9601 100644 --- a/contrib/bugzilla-submit/CVS/Entries +++ b/contrib/bugzilla-submit/CVS/Entries @@ -1,5 +1,5 @@ -/README/1.2/Wed Dec 10 23:36:21 2003//TBUGZILLA-2_20 -/bugdata.txt/1.2/Fri Jan 16 22:26:49 2004//TBUGZILLA-2_20 -/bugzilla-submit/1.6/Fri Jul 16 03:56:35 2004//TBUGZILLA-2_20 -/bugzilla-submit.xml/1.7/Mon Apr 11 14:23:32 2005//TBUGZILLA-2_20 +/README/1.2/Wed Dec 10 23:36:21 2003//TBUGZILLA-2_20_1 +/bugdata.txt/1.2/Fri Jan 16 22:26:49 2004//TBUGZILLA-2_20_1 +/bugzilla-submit/1.6/Fri Jul 16 03:56:35 2004//TBUGZILLA-2_20_1 +/bugzilla-submit.xml/1.7/Mon Apr 11 14:23:32 2005//TBUGZILLA-2_20_1 D diff --git a/contrib/bugzilla-submit/CVS/Tag b/contrib/bugzilla-submit/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/contrib/bugzilla-submit/CVS/Tag +++ b/contrib/bugzilla-submit/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/contrib/bzdbcopy.pl b/contrib/bzdbcopy.pl new file mode 100755 index 0000000000000000000000000000000000000000..20fca2cfa051c8781080ca5fb604115fdab2232b --- /dev/null +++ b/contrib/bzdbcopy.pl @@ -0,0 +1,188 @@ +#!/usr/bin/perl -w +# +# bzdbcopy.pl - Copies data from one Bugzilla database to another. +# +# Author: Max Kanat-Alexander <mkanat@bugzilla.org> +# +# The intended use of this script is to copy data from an installation +# running on one DB platform to an installation running on another +# DB platform. +# +# It must be run from the directory containing your Bugzilla installation. +# That means if this script is in the contrib/ directory, you should +# be running it as: ./contrib/bzdbcopy.pl +# +# Note: Both schemas must already exist and be IDENTICAL. (That is, +# they must have both been created/updated by the same version of +# checksetup.pl.) This script will DESTROY ALL CURRENT DATA in the +# target database. +# +# Both Schemas must be at least from Bugzilla 2.19.3, but if you're +# running a Bugzilla from before 2.20rc2, you'll need the patch at: +# https://bugzilla.mozilla.org/show_bug.cgi?id=300311 in order to +# be able to run this script. +# +# Before you using it, you have to correctly set all the variables +# in the "User-Configurable Settings" section, below. The "SOURCE" +# settings are for the database you're copying from, and the "TARGET" +# settings are for the database you're copying to. The DB_TYPE is +# the name of a DB driver from the Bugzilla/DB/ directory. +# + +use strict; +use lib "."; +use Bugzilla::DB; +use Bugzilla::Util; + +##################################################################### +# User-Configurable Settings +##################################################################### + +# Settings for the 'Source' DB that you are copying from. +use constant SOURCE_DB_TYPE => 'Mysql'; +use constant SOURCE_DB_NAME => 'bugs'; +use constant SOURCE_DB_USER => 'bugs'; +use constant SOURCE_DB_PASSWORD => ''; + +# Settings for the 'Target' DB that you are copying to. +use constant TARGET_DB_TYPE => 'Pg'; +use constant TARGET_DB_NAME => 'bugs'; +use constant TARGET_DB_USER => 'bugs'; +use constant TARGET_DB_PASSWORD => ''; + +##################################################################### +# MAIN SCRIPT +##################################################################### + +print "Connecting to the '" . SOURCE_DB_NAME . "' source database on " + . SOURCE_DB_TYPE . "...\n"; +my $source_db = Bugzilla::DB::_connect(SOURCE_DB_TYPE, 'localhost', + SOURCE_DB_NAME, undef, undef, SOURCE_DB_USER, SOURCE_DB_PASSWORD); + +print "Connecting to the '" . TARGET_DB_NAME . "' target database on " + . TARGET_DB_TYPE . "...\n"; +my $target_db = Bugzilla::DB::_connect(TARGET_DB_TYPE, 'localhost', + TARGET_DB_NAME, undef, undef, TARGET_DB_USER, TARGET_DB_PASSWORD); + +# We use the table list from the target DB, because if somebody +# has customized their source DB, we still want the script to work, +# and it may otherwise fail in that situation (that is, the tables +# may not exist in the target DB). +my @table_list = $target_db->bz_table_list_real(); + +# We don't want to copy over the bz_schema table's contents. +my $bz_schema_location = lsearch(\@table_list, 'bz_schema'); +splice(@table_list, $bz_schema_location, 1) if $bz_schema_location > 0; + +# We turn off autocommit on the target DB, because we're doing so +# much copying. +$target_db->{AutoCommit} = 0; +$target_db->{AutoCommit} == 0 + || warn "Failed to disable autocommit on " . TARGET_DB_TYPE; +foreach my $table (@table_list) { + my @serial_cols; + print "Reading data from the source '$table' table on " + . SOURCE_DB_TYPE . "...\n"; + my @table_columns = $target_db->bz_table_columns_real($table); + my $select_query = "SELECT " . join(',', @table_columns) . " FROM $table"; + my $data_in = $source_db->selectall_arrayref($select_query); + + my $insert_query = "INSERT INTO $table ( " . join(',', @table_columns) + . " ) VALUES ("; + $insert_query .= '?,' foreach (@table_columns); + # Remove the last comma. + chop($insert_query); + $insert_query .= ")"; + my $insert_sth = $target_db->prepare($insert_query); + + print "Clearing out the target '$table' table on " + . TARGET_DB_TYPE . "...\n"; + $target_db->do("DELETE FROM $table"); + + print "Writing data to the target '$table' table on " + . TARGET_DB_TYPE . "..."; + foreach my $row (@$data_in) { + # Each column needs to be bound separately, because + # many columns need to be dealt with specially. + my $colnum = 0; + foreach my $column (@table_columns) { + # bind_param args start at 1, but arrays start at 0. + my $param_num = $colnum + 1; + my $already_bound; + + # Certain types of columns need special handling. + my $col_info = $source_db->bz_column_info($table, $column); + if ($col_info && $col_info->{TYPE} eq 'LONGBLOB') { + $insert_sth->bind_param($param_num, + $row->[$colnum], $target_db->BLOB_TYPE); + $already_bound = 1; + } + elsif ($col_info && $col_info->{TYPE} =~ /decimal/) { + # In MySQL, decimal cols can be too long. + my $col_type = $col_info->{TYPE}; + $col_type =~ /decimal\((\d+),(\d+)\)/; + my ($precision, $decimals) = ($1, $2); + # If it's longer than precision + decimal point + if ( length($row->[$colnum]) > ($precision + 1) ) { + # Truncate it to the highest allowed value. + my $orig_value = $row->[$colnum]; + $row->[$colnum] = ''; + my $non_decimal = $precision - $decimals; + $row->[$colnum] .= '9' while ($non_decimal--); + $row->[$colnum] .= '.'; + $row->[$colnum] .= '9' while ($decimals--); + print "Truncated value $orig_value to " . $row->[$colnum] + . " for $table.$column.\n"; + } + } + elsif ($col_info && $col_info->{TYPE} =~ /DATETIME/i) { + my $date = $row->[$colnum]; + # MySQL can have strange invalid values for Datetimes. + $row->[$colnum] = '1901-01-01 00:00:00' + if $date && $date eq '0000-00-00 00:00:00'; + } + + $insert_sth->bind_param($param_num, $row->[$colnum]) + unless $already_bound; + $colnum++; + } + + $insert_sth->execute(); + } + + # PostgreSQL doesn't like it when you insert values into + # a serial field; it doesn't increment the counter + # automatically. + if ($target_db->isa('Bugzilla::DB::Pg')) { + foreach my $column (@table_columns) { + my $col_info = $source_db->bz_column_info($table, $column); + if ($col_info && $col_info->{TYPE} =~ /SERIAL/i) { + # Set the sequence to the current max value + 1. + my ($max_val) = $target_db->selectrow_array( + "SELECT MAX($column) FROM $table"); + $max_val = 0 if !defined $max_val; + $max_val++; + print "\nSetting the next value for $table.$column to $max_val."; + $target_db->do("SELECT pg_catalog.setval + ('${table}_${column}_seq', $max_val, false)"); + } + } + } + + print "\n\n"; +} + +# And there's one entry in the fielddefs table that needs +# to be manually fixed. This is a huge hack. +my $delta_fdef = "(" . $target_db->sql_to_days('NOW()') . " - " . + $target_db->sql_to_days('bugs.delta_ts') . ")"; +$target_db->do(q{UPDATE fielddefs SET name = ? + WHERE name LIKE '%bugs.delta_ts%'}, undef, $delta_fdef); + +print "Committing changes to the target database...\n"; +$target_db->commit; + +print "All done! Make sure to run checksetup on the new DB.\n"; +$source_db->disconnect; +$target_db->disconnect; +1; diff --git a/contrib/cmdline/CVS/Entries b/contrib/cmdline/CVS/Entries index 2fccf1c440b35a592db9a5c09509eeb9e117abe4..5bd8874b855b09b7be115ad467b15146f734b455 100644 --- a/contrib/cmdline/CVS/Entries +++ b/contrib/cmdline/CVS/Entries @@ -1,8 +1,8 @@ -/bugcount/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20 -/bugids/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20 -/buglist/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20 -/bugs/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20 -/bugslink/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20 -/makequery/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20 -/query.conf/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20 +/bugcount/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20_1 +/bugids/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20_1 +/buglist/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20_1 +/bugs/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20_1 +/bugslink/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20_1 +/makequery/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20_1 +/query.conf/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_20_1 D diff --git a/contrib/cmdline/CVS/Tag b/contrib/cmdline/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/contrib/cmdline/CVS/Tag +++ b/contrib/cmdline/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/contrib/gnatsparse/CVS/Entries b/contrib/gnatsparse/CVS/Entries index 03cea623815c14293435b854ba8058f431602c3c..24e83626cb370823316b43dcd12e82e06f7b8d43 100644 --- a/contrib/gnatsparse/CVS/Entries +++ b/contrib/gnatsparse/CVS/Entries @@ -1,5 +1,5 @@ -/README/1.2/Tue Mar 23 17:59:11 2004//TBUGZILLA-2_20 -/gnatsparse.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-2_20 -/magic.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-2_20 -/specialuu.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-2_20 +/README/1.2/Tue Mar 23 17:59:11 2004//TBUGZILLA-2_20_1 +/gnatsparse.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-2_20_1 +/magic.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-2_20_1 +/specialuu.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-2_20_1 D diff --git a/contrib/gnatsparse/CVS/Tag b/contrib/gnatsparse/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/contrib/gnatsparse/CVS/Tag +++ b/contrib/gnatsparse/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/contrib/sendunsentbugmail.pl b/contrib/sendunsentbugmail.pl index c82c0ae30c49d0c4b522e04ab7b78dd9eb4d405a..0bd6a9b17b4be7cdd3895f8d2f4e970073fb197f 100644 --- a/contrib/sendunsentbugmail.pl +++ b/contrib/sendunsentbugmail.pl @@ -33,7 +33,7 @@ my $dbh = Bugzilla->dbh; SendSQL("SELECT bug_id FROM bugs WHERE lastdiffed IS NULL OR lastdiffed < delta_ts AND delta_ts < NOW() - " - . $dbh->sql_interval('30 minute') . + . $dbh->sql_interval(30, 'MINUTE') . " ORDER BY bug_id"); my @list; while (MoreSQLData()) { diff --git a/defparams.pl b/defparams.pl index b598cc20cc4a4e42bc0025a1fc4aa73f15e8019e..4bd109b8e7931c456d46eb0448e77b685a8c5013 100644 --- a/defparams.pl +++ b/defparams.pl @@ -662,7 +662,8 @@ sub check_mail_delivery_method { 'If you have a large database and this page takes a long time to ' . 'load, try increasing this number.', type => 't', - default => '2' + default => '2', + checker => \&check_numeric }, { @@ -790,7 +791,8 @@ Configure bugmail: %urlbase%userprefs.cgi?tab=email state before our cronjob will whine at the owner.<br> Set to 0 to disable whining.}, type => 't', - default => 7 + default => 7, + checker => \&check_numeric }, { @@ -1357,7 +1359,8 @@ Reason: %reason% { name => 'usemenuforusers', - desc => 'If this option is set, a popup menu will be used where a user' . + desc => 'If this option is set, Bugzilla will offer you a list' . + ' to select from (instead of a text entry field) where a user' . ' needs to be selected. This option should not be enabled on' . ' sites where there are a large number of users.', type => 'b', diff --git a/docs/CVS/Entries b/docs/CVS/Entries index 25e9843a90bd9e75bda4868f628edc9fc14c354b..5940d6bdb8d2f7bb5faab58c5d33bf79cdb31a21 100644 --- a/docs/CVS/Entries +++ b/docs/CVS/Entries @@ -1,6 +1,6 @@ -/.cvsignore/1.2/Wed Mar 17 05:15:41 2004//TBUGZILLA-2_20 -/README.docs/1.10/Sun May 30 21:46:07 2004//TBUGZILLA-2_20 -/makedocs.pl/1.7/Thu Feb 5 04:49:08 2004//TBUGZILLA-2_20 -/rel_notes.txt/1.32.2.2/Fri Sep 30 21:35:19 2005//TBUGZILLA-2_20 +/.cvsignore/1.2/Wed Mar 17 05:15:41 2004//TBUGZILLA-2_20_1 +/README.docs/1.10/Sun May 30 21:46:07 2004//TBUGZILLA-2_20_1 +/makedocs.pl/1.7/Thu Feb 5 04:49:08 2004//TBUGZILLA-2_20_1 +/rel_notes.txt/1.32.2.4/Mon Feb 20 19:18:49 2006//TBUGZILLA-2_20_1 D/images//// D/xml//// diff --git a/docs/CVS/Tag b/docs/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/docs/CVS/Tag +++ b/docs/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/docs/html/Bugzilla-Guide.html b/docs/html/Bugzilla-Guide.html index 31e9e2327c2d94ec7d2a676e90ca8eec8979b689..d3bfe442fda57ab0041acdc729f36ff4c8ae4eda 100644 --- a/docs/html/Bugzilla-Guide.html +++ b/docs/html/Bugzilla-Guide.html @@ -2,8 +2,7 @@ <HTML ><HEAD ><TITLE ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TITLE ><META NAME="GENERATOR" @@ -44,8 +43,7 @@ CLASS="TITLEPAGE" CLASS="title" ><A NAME="AEN2" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</A ></H1 ><H3 @@ -53,7 +51,7 @@ CLASS="corpauthor" >The Bugzilla Team</H3 ><P CLASS="pubdate" ->2005-09-30<BR></P +>2006-02-20<BR></P ><DIV ><DIV CLASS="abstract" @@ -422,7 +420,7 @@ HREF="#trbl-relogin-everyone" ></DT ><DT >B.9. <A -HREF="#AEN3196" +HREF="#AEN3190" >Some users are constantly being forced to relogin</A ></DT ><DT @@ -637,7 +635,7 @@ NAME="copyright" >1.1. Copyright Information</A ></H2 ><P ->This document is copyright (c) 2000-2005 by the various +>This document is copyright (c) 2000-2006 by the various Bugzilla contributors who wrote it.</P ><A NAME="AEN26" @@ -706,10 +704,8 @@ NAME="newversions" >1.3. New Versions</A ></H2 ><P -> This is the 2.20 version of The Bugzilla Guide. It is so named +> This is the 2.20.1 version of The Bugzilla Guide. It is so named to match the current version of Bugzilla. - This version of the guide, like its associated Bugzilla version, is a - development version. </P ><P > The latest version of this guide can always be found at <A @@ -1647,11 +1643,7 @@ CLASS="filename" The first thing it checks is whether you have appropriate versions of all the required Perl modules. The aim of this section is to pass this check. - When it passes, - <EM ->do not run it again</EM ->, - but proceed to <A + When it passes, proceed to <A HREF="#configuration" >Section 2.2</A >. @@ -2199,27 +2191,73 @@ NAME="install-MTA" >2.1.6. Mail Transfer Agent (MTA)</A ></H3 ><P ->Bugzilla is dependent on the availability of an e-mail system for its user - authentication and for other tasks. </P +> Bugzilla is dependent on the availability of an e-mail system for its + user authentication and for other tasks. + </P +><DIV +CLASS="note" ><P ->On Linux, any Sendmail-compatible MTA (Mail Transfer Agent) will suffice. - Sendmail, Postfix, qmail and Exim are examples of common MTAs. Sendmail is the - original Unix MTA, but the others are easier to configure, and therefore many people - replace Sendmail with Postfix or Exim. They are drop-in replacements, so that Bugzilla - will not distinguish between them.</P +></P +><TABLE +CLASS="note" +WIDTH="100%" +BORDER="0" +><TR +><TD +WIDTH="25" +ALIGN="CENTER" +VALIGN="TOP" +><IMG +SRC="../images/note.gif" +HSPACE="5" +ALT="Note"></TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +><P +> This is not entirely true. It is possible to completely disable + email sending, or to have Bugzilla store email messages in a + file instead of sending them. However, this is mainly intended + for testing, as disabling or diverting email on a production + machine would mean that users could miss important events (such + as bug changes or the creation of new accouts). + </P +><P +> For more information, see the "maildeliverymethod" parameter in + <A +HREF="#parameters" +>Section 3.1</A +>. + </P +></TD +></TR +></TABLE +></DIV +><P +> On Linux, any Sendmail-compatible MTA (Mail Transfer Agent) will + suffice. Sendmail, Postfix, qmail and Exim are examples of common + MTAs. Sendmail is the original Unix MTA, but the others are easier to + configure, and therefore many people replace Sendmail with Postfix or + Exim. They are drop-in replacements, so Bugzilla will not + distinguish between them. + </P ><P > If you are using Sendmail, version 8.7 or higher is required. - If you are using a Sendmail-compatible MTA, it must be congruent with at least version 8.7 of Sendmail. + If you are using a Sendmail-compatible MTA, it must be congruent with + at least version 8.7 of Sendmail. </P ><P ->Consult the manual for the specific MTA you choose for detailed installation - instructions. Each of these programs will have their own configuration files where you must - configure certain parameters to ensure that the mail is delivered properly. They - are implemented as services, and you should ensure that the MTA is in the - auto-start list of services for the machine.</P +> Consult the manual for the specific MTA you choose for detailed + installation instructions. Each of these programs will have their own + configuration files where you must configure certain parameters to + ensure that the mail is delivered properly. They are implemented + as services, and you should ensure that the MTA is in the auto-start + list of services for the machine. + </P ><P ->If a simple mail sent with the command-line 'mail' program succeeds, then - Bugzilla should also be fine.</P +> If a simple mail sent with the command-line 'mail' program + succeeds, then Bugzilla should also be fine. + </P ></DIV ></DIV ><DIV @@ -2322,6 +2360,24 @@ CLASS="filename" characters) and put it here. </P ><P +> You may need to change the value of + <EM +>webservergroup</EM +> if your web server does not + run in the "apache" group. On Debian, for example, Apache runs in + the "www-data" group. If you are going to run Bugzilla on a + machine where you do not have root access (such as on a shared web + hosting account), you will need to leave + <EM +>webservergroup</EM +> empty, ignoring the warnings + that <TT +CLASS="filename" +>checksetup.pl</TT +> will subsequently display + every time it in run. + </P +><P > The other options in the <TT CLASS="filename" >localconfig</TT @@ -2499,7 +2555,7 @@ CLASS="section" ><HR><H5 CLASS="section" ><A -NAME="AEN432" +NAME="AEN439" >2.2.2.1.2. Allow small words in full-text indexes</A ></H5 ><P @@ -2573,7 +2629,7 @@ CLASS="section" ><HR><H5 CLASS="section" ><A -NAME="AEN442" +NAME="AEN449" >2.2.2.1.3. Permit attachments table to grow beyond 4GB</A ></H5 ><P @@ -2820,7 +2876,7 @@ CLASS="section" ><HR><H5 CLASS="section" ><A -NAME="AEN483" +NAME="AEN490" >2.2.2.2.1. Add a User to PostgreSQL</A ></H5 ><P @@ -2901,7 +2957,7 @@ CLASS="section" ><HR><H5 CLASS="section" ><A -NAME="AEN499" +NAME="AEN506" >2.2.2.2.2. Configure PostgreSQL</A ></H5 ><P @@ -2982,7 +3038,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN522" +NAME="AEN529" >2.2.3. checksetup.pl</A ></H3 ><P @@ -3406,121 +3462,28 @@ HREF="#security-webserver-access" >. </P ></DIV +></DIV ><DIV CLASS="section" -><HR><H4 +><HR><H3 CLASS="section" ><A -NAME="http-aol" ->2.2.4.3. AOL Server</A -></H4 -><P ->Ben FrantzDale reported success using AOL Server with Bugzilla. He - reported his experience and what appears below is based on that. - </P -><P ->AOL Server will have to be configured to run - <A -HREF="#gloss-cgi" -><I -CLASS="glossterm" ->CGI</I -></A -> scripts, please consult - the documentation that came with your server for more information on - how to do this. - </P -><P ->Because AOL Server doesn't support <TT -CLASS="filename" ->.htaccess</TT -> - files, you'll have to create a <A -HREF="#gloss-tcl" -><I -CLASS="glossterm" ->TCL</I -></A -> - script. You should create an <TT -CLASS="filename" ->aolserver/modules/tcl/filter.tcl</TT -> - file (the filename shouldn't matter) with the following contents (change - <SAMP -CLASS="computeroutput" ->/bugzilla/</SAMP -> to the web-based path to - your Bugzilla installation): - </P -><TABLE -BORDER="0" -BGCOLOR="#E0E0E0" -WIDTH="100%" -><TR -><TD -><FONT -COLOR="#000000" -><PRE -CLASS="programlisting" -> ns_register_filter preauth GET /bugzilla/localconfig filter_deny - ns_register_filter preauth GET /bugzilla/localconfig~ filter_deny - ns_register_filter preauth GET /bugzilla/\#localconfig\# filter_deny - ns_register_filter preauth GET /bugzilla/*.pl filter_deny - ns_register_filter preauth GET /bugzilla/syncshadowdb filter_deny - ns_register_filter preauth GET /bugzilla/data/* filter_deny - ns_register_filter preauth GET /bugzilla/template/* filter_deny - - proc filter_deny { why } { - ns_log Notice "filter_deny" - return "filter_return" - } - </PRE -></FONT -></TD -></TR -></TABLE -><DIV -CLASS="warning" -><P -></P -><TABLE -CLASS="warning" -WIDTH="100%" -BORDER="0" -><TR -><TD -WIDTH="25" -ALIGN="CENTER" -VALIGN="TOP" -><IMG -SRC="../images/warning.gif" -HSPACE="5" -ALT="Warning"></TD -><TD -ALIGN="LEFT" -VALIGN="TOP" +NAME="install-config-bugzilla" +>2.2.5. Bugzilla</A +></H3 ><P ->This probably doesn't account for all possible editor backup - files so you may wish to add some additional variations of - <TT +> Your Bugzilla should now be working. Access + <TT CLASS="filename" ->localconfig</TT ->. For more information, see - <A -HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=186383" -TARGET="_top" -> bug 186383</A -> or <A -HREF="http://online.securityfocus.com/bid/6501" -TARGET="_top" ->Bugtraq ID 6501</A +>http://<your-bugzilla-server>/</TT +> - + you should see the Bugzilla + front page. If not, consult the Troubleshooting section, + <A +HREF="#troubleshooting" +>Appendix B</A >. - </P -></TD -></TR -></TABLE -></DIV + </P ><DIV CLASS="note" ><P @@ -3542,70 +3505,14 @@ ALT="Note"></TD ALIGN="LEFT" VALIGN="TOP" ><P ->If you are using webdot from research.att.com (the default - configuration for the <VAR -CLASS="option" ->webdotbase</VAR -> paramater), you - will need to allow access to <TT -CLASS="filename" ->data/webdot/*.dot</TT -> - for the reasearch.att.com machine. - </P -><P ->If you are using a local installation of <A -HREF="http://www.graphviz.org" -TARGET="_top" ->GraphViz</A ->, you will need to allow - everybody to access <TT -CLASS="filename" ->*.png</TT ->, - <TT -CLASS="filename" ->*.gif</TT ->, <TT -CLASS="filename" ->*.jpg</TT ->, and - <TT -CLASS="filename" ->*.map</TT -> in the - <TT -CLASS="filename" ->data/webdot</TT -> directory. - </P +> The URL above may be incorrect if you installed Bugzilla into a + subdirectory or used a symbolic link from your web site root to + the Bugzilla directory. + </P ></TD ></TR ></TABLE ></DIV -></DIV -></DIV -><DIV -CLASS="section" -><HR><H3 -CLASS="section" -><A -NAME="install-config-bugzilla" ->2.2.5. Bugzilla</A -></H3 -><P -> Your Bugzilla should now be working. Access - <TT -CLASS="filename" ->http://<your-bugzilla-server>/</TT -> - - you should see the Bugzilla - front page. If not, consult the Troubleshooting section, - <A -HREF="#troubleshooting" ->Appendix B</A ->. - </P ><P > Log in with the administrator account you defined in the last <TT @@ -3676,7 +3583,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN646" +NAME="AEN628" >2.3.1. Bug Graphs</A ></H3 ><P @@ -3732,6 +3639,42 @@ CLASS="programlisting" > After two days have passed you'll be able to view bug graphs from the Reports page. </P +><P +> When upgrading Bugzilla, this format may change. + To create new status data, (re)move old data and run the following + commands: + </P +><TABLE +BORDER="0" +BGCOLOR="#E0E0E0" +WIDTH="100%" +><TR +><TD +><FONT +COLOR="#000000" +><PRE +CLASS="screen" +> <SAMP +CLASS="prompt" +>bash$</SAMP +> + <B +CLASS="command" +>cd <your-bugzilla-directory></B +> + <SAMP +CLASS="prompt" +>bash$</SAMP +> + <B +CLASS="command" +>./collectstats.pl --regenerate</B +> + </PRE +></FONT +></TD +></TR +></TABLE ><DIV CLASS="note" ><P @@ -3772,7 +3715,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN659" +NAME="AEN647" >2.3.2. Dependency Charts</A ></H3 ><P @@ -4548,77 +4491,11 @@ CLASS="section" CLASS="section" ><A NAME="win32-code-changes" ->2.4.1.3. Code changes required to run on win32</A +>2.4.1.3. Code changes required to run on Win32</A ></H4 ><P -> Bugzilla on win32 is mostly supported out of the box; one - remaining issue is related to bug email. To make bug email - work on Win32 (until - <A -HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=49893" -TARGET="_top" ->bug - 49893</A -> lands), the - simplest way is to have the Net::SMTP Perl module installed and - change this line in the file Bugzilla/Bugmail.pm: - </P -><TABLE -BORDER="0" -BGCOLOR="#E0E0E0" -WIDTH="100%" -><TR -><TD -><FONT -COLOR="#000000" -><PRE -CLASS="programlisting" -> open(SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t -i") || - die "Can't open sendmail"; - -print SENDMAIL trim($msg) . "\n"; -close SENDMAIL; - </PRE -></FONT -></TD -></TR -></TABLE -><P -> to - </P -><TABLE -BORDER="0" -BGCOLOR="#E0E0E0" -WIDTH="100%" -><TR -><TD -><FONT -COLOR="#000000" -><PRE -CLASS="programlisting" -> use Net::SMTP; -my $smtp_server = 'smtp.mycompany.com'; # change this - -# Use die on error, so that the mail will be in the 'unsent mails' and -# can be sent from the sanity check page. -my $smtp = Net::SMTP->new($smtp_server) || - die 'Cannot connect to server \'$smtp_server\''; - -$smtp->mail('bugzilla-daemon@mycompany.com'); # change this -$smtp->to($person); -$smtp->data(); -$smtp->datasend($msg); -$smtp->dataend(); -$smtp->quit; - </PRE -></FONT -></TD -></TR -></TABLE -><P -> Don't forget to change the name of your SMTP server and the - domain of the sending email address (after the '@') in the - above lines of code. +> Bugzilla on Win32 is supported out of the box from version 2.20; this + means that no code changes are required to get Bugzilla running. </P ></DIV ><DIV @@ -4682,6 +4559,19 @@ CLASS="filename" ></TABLE ></DIV ></DIV +><DIV +CLASS="section" +><HR><H4 +CLASS="section" +><A +NAME="win32-email" +>2.4.1.5. Sending Email</A +></H4 +><P +> To enable Bugzilla to send email on Windows, the server running the + Bugzilla code must be able to connect to, or act as, an SMTP server. + </P +></DIV ></DIV ><DIV CLASS="section" @@ -4998,7 +4888,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN871" +NAME="AEN857" >2.5.1. Introduction</A ></H3 ><P @@ -5018,7 +4908,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN875" +NAME="AEN861" >2.5.2. MySQL</A ></H3 ><P @@ -5074,7 +4964,7 @@ CLASS="section" ><HR><H4 CLASS="section" ><A -NAME="AEN883" +NAME="AEN869" >2.5.2.1. Running MySQL as Non-Root</A ></H4 ><DIV @@ -5082,7 +4972,7 @@ CLASS="section" ><H5 CLASS="section" ><A -NAME="AEN885" +NAME="AEN871" >2.5.2.1.1. The Custom Configuration Method</A ></H5 ><P @@ -5126,7 +5016,7 @@ CLASS="section" ><HR><H5 CLASS="section" ><A -NAME="AEN889" +NAME="AEN875" >2.5.2.1.2. The Custom Built Method</A ></H5 ><P @@ -5149,7 +5039,7 @@ CLASS="section" ><HR><H5 CLASS="section" ><A -NAME="AEN894" +NAME="AEN880" >2.5.2.1.3. Starting the Server</A ></H5 ><P @@ -5277,7 +5167,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN910" +NAME="AEN896" >2.5.3. Perl</A ></H3 ><P @@ -5370,7 +5260,7 @@ CLASS="section" ><HR><H4 CLASS="section" ><A -NAME="AEN929" +NAME="AEN915" >2.5.4.1. The Independant Method</A ></H4 ><P @@ -5442,7 +5332,7 @@ CLASS="section" ><HR><H4 CLASS="section" ><A -NAME="AEN942" +NAME="AEN928" >2.5.4.2. The Mixed Method</A ></H4 ><P @@ -5647,7 +5537,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN975" +NAME="AEN961" >2.5.5. HTTP Server</A ></H3 ><P @@ -5661,7 +5551,7 @@ CLASS="section" ><HR><H4 CLASS="section" ><A -NAME="AEN978" +NAME="AEN964" >2.5.5.1. Running Apache as Non-Root</A ></H4 ><P @@ -5743,7 +5633,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN987" +NAME="AEN973" >2.5.6. Bugzilla</A ></H3 ><P @@ -5925,6 +5815,21 @@ CLASS="QUOTE" </P ></DD ><DT +>maildeliverymethod</DT +><DD +><P +> This is used to specify how email is sent, or if it is sent at + all. There are several options included for different MTAs, + along with two additional options that disable email sending. + "testfile" does not send mail, but instead saves it in + <TT +CLASS="filename" +>data/mailer.testfile</TT +> for later review. + "none" disables email sending entirely. + </P +></DD +><DT >shadowdb</DT ><DD ><P @@ -7715,7 +7620,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN1447" +NAME="AEN1438" >3.10.1. Creating Groups</A ></H3 ><P @@ -7794,7 +7699,9 @@ VALIGN="TOP" resulted in a user acquiring permanent membership in a group. To remove a user from a group the user was in due to a regular expression in version 2.16 or earlier, the user must be explicitly - removed from the group.</P + removed from the group. This can easily be done by pressing + buttons named 'Remove Memberships' or 'Remove Memberships + included in regular expression' under the table.</P ></TD ></TR ></TABLE @@ -7851,7 +7758,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN1474" +NAME="AEN1465" >3.10.2. Assigning Users to Groups</A ></H3 ><P @@ -7883,7 +7790,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN1484" +NAME="AEN1475" >3.10.3. Assigning Group Controls to Products</A ></H3 ><P @@ -7975,7 +7882,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN1502" +NAME="AEN1493" >3.10.4. Common Applications of Group Controls</A ></H3 ><DIV @@ -7983,7 +7890,7 @@ CLASS="section" ><H4 CLASS="section" ><A -NAME="AEN1504" +NAME="AEN1495" >3.10.4.1. General User Access With Security Group</A ></H4 ><P @@ -8018,7 +7925,7 @@ CLASS="section" ><HR><H4 CLASS="section" ><A -NAME="AEN1508" +NAME="AEN1499" >3.10.4.2. General User Access With A Security Product</A ></H4 ><P @@ -8050,7 +7957,7 @@ CLASS="section" ><HR><H4 CLASS="section" ><A -NAME="AEN1512" +NAME="AEN1503" >3.10.4.3. Product Isolation With Common Group</A ></H4 ><P @@ -11169,7 +11076,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN2071" +NAME="AEN2062" >5.5.1. Bugzilla Database Basics</A ></H3 ><P @@ -11281,7 +11188,7 @@ CLASS="section" ><HR><H4 CLASS="section" ><A -NAME="AEN2098" +NAME="AEN2089" >5.5.1.1. Bugzilla Database Tables</A ></H4 ><P @@ -12099,7 +12006,7 @@ NAME="query" >6.5. Searching for Bugs</A ></H2 ><P ->The Bugzilla Search page is is the interface where you can find +>The Bugzilla Search page is the interface where you can find any bug report, comment, or patch currently in the Bugzilla system. You can play with it here: <A @@ -12212,7 +12119,7 @@ NAME="negation" > At first glance, negation seems redundant. Rather than searching for <A -NAME="AEN2286" +NAME="AEN2277" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -12223,7 +12130,7 @@ CLASS="BLOCKQUOTE" > one could search for <A -NAME="AEN2288" +NAME="AEN2279" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -12234,7 +12141,7 @@ CLASS="BLOCKQUOTE" > However, the search <A -NAME="AEN2290" +NAME="AEN2281" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -12246,7 +12153,7 @@ CLASS="BLOCKQUOTE" would find every bug where anyone on the CC list did not contain "@mozilla.org" while <A -NAME="AEN2292" +NAME="AEN2283" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -12260,7 +12167,7 @@ CLASS="BLOCKQUOTE" complex expressions to be built using terms OR'd together and then negated. Negation permits queries such as <A -NAME="AEN2294" +NAME="AEN2285" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -12273,7 +12180,7 @@ CLASS="BLOCKQUOTE" to find bugs that are neither in the update product or in the documentation component or <A -NAME="AEN2296" +NAME="AEN2287" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -12301,7 +12208,7 @@ NAME="multiplecharts" a bug that has two different people cc'd on it, then you need to use two boolean charts. A search for <A -NAME="AEN2301" +NAME="AEN2292" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -12316,7 +12223,7 @@ CLASS="BLOCKQUOTE" containing "foo@" and someone else containing "@mozilla.org", then you would need two boolean charts. <A -NAME="AEN2303" +NAME="AEN2294" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -12713,7 +12620,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN2386" +NAME="AEN2377" >6.9.1. Autolinkification</A ></H3 ><P @@ -13331,7 +13238,7 @@ CLASS="section" ><HR><H4 CLASS="section" ><A -NAME="AEN2493" +NAME="AEN2484" >6.11.2.1. Creating Charts</A ></H4 ><P @@ -13371,7 +13278,7 @@ CLASS="section" ><HR><H4 CLASS="section" ><A -NAME="AEN2500" +NAME="AEN2491" >6.11.2.2. Creating New Data Sets</A ></H4 ><P @@ -13437,6 +13344,13 @@ NAME="flags" appended to the flag name within parentheses. For example, if Jack asks Jill for review, it appears as Jack: review [ ? ] (Jill). </P +><P +> You can browse through open requests made of you and by you by selecting + 'My Requests' from the footer. You can also look at open requests limited + by other requesters, requestees, products, components, and flag names from + this page. Note that you can use '-' for requestee to specify flags with + 'no requestee' set. + </P ></DIV ><DIV CLASS="section" @@ -13791,7 +13705,7 @@ CLASS="section" ><HR><H3 CLASS="section" ><A -NAME="AEN2552" +NAME="AEN2544" >6.13.4. Saving Your Changes</A ></H3 ><P @@ -16014,6 +15928,14 @@ CLASS="answer" > </B > To disable email, set the + <VAR +CLASS="option" +>mail_delivery_method</VAR +> parameter to + <VAR +CLASS="literal" +>none</VAR +> (2.20 and later), or <TABLE BORDER="0" BGCOLOR="#E0E0E0" @@ -16326,7 +16248,7 @@ CLASS="QUOTE" > link of your Bugzilla installation and clicking the <SPAN CLASS="QUOTE" ->"Email me a password"</SPAN +>"Submit Request"</SPAN > button after entering your email address. </P @@ -16679,7 +16601,7 @@ CLASS="answer" ><P > Microsoft has some advice on this matter, as well: <A -NAME="AEN2975" +NAME="AEN2969" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -16925,7 +16847,7 @@ BORDER="0" ><TR ><TD > <A -HREF="http://bugzilla.mozilla.org/show_bug?id=35195" +HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=35195" TARGET="_top" >Bug 35195</A > @@ -16951,7 +16873,7 @@ TARGET="_top" ><TR ><TD > <A -HREF="http://bugzilla.mozilla.org/show_bug?id=37613" +HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=37613" TARGET="_top" >Bug 37613</A @@ -17181,13 +17103,13 @@ TARGET="_top" enhancement for Bugzilla. </P ><P -> You can view bugs marked for 2.20.1 release +> You can view bugs marked for 2.20.2 release <A HREF="http://bugzilla.mozilla.org/buglist.cgi?product=Bugzilla&target_milestone=Bugzilla+&bz-nextver;" TARGET="_top" >here</A >. - This list includes bugs for the 2.20.1 release that have already + This list includes bugs for the 2.20.2 release that have already been fixed and checked into CVS. Please consult the <A HREF="http://www.bugzilla.org/" @@ -17797,7 +17719,7 @@ NAME="trbl-relogin-everyone-share" >Example B-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B ></P ><A -NAME="AEN3182" +NAME="AEN3176" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -17838,7 +17760,7 @@ NAME="trbl-relogin-everyone-restrict" >Example B-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B ></P ><A -NAME="AEN3189" +NAME="AEN3183" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -17880,7 +17802,7 @@ CLASS="section" ><HR><H2 CLASS="section" ><A -NAME="AEN3196" +NAME="AEN3190" >B.9. Some users are constantly being forced to relogin</A ></H2 ><P @@ -18743,7 +18665,7 @@ NAME="gfdl" ><P >Version 1.1, March 2000</P ><A -NAME="AEN3372" +NAME="AEN3366" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -19206,7 +19128,7 @@ NAME="gfdl-howto" of the License in the document and put the following copyright and license notices just after the title page:</P ><A -NAME="AEN3462" +NAME="AEN3456" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -19243,7 +19165,7 @@ CLASS="glossdiv" ><H1 CLASS="glossdiv" ><A -NAME="AEN3467" +NAME="AEN3461" >0-9, high ascii</A ></H1 ><DL @@ -19750,17 +19672,21 @@ NAME="gloss-mta" > (MTA)<DD ><P >A Message Transport Agent is used to control the flow of email - on a system. Many unix based systems use - <A -HREF="http://www.sendmail.org" + on a system. The <A +HREF="http://search.cpan.org/dist/MailTools/Mail/Mailer.pm" TARGET="_top" ->sendmail</A -> which is what - Bugzilla expects to find by default at <TT -CLASS="filename" ->/usr/sbin/sendmail</TT ->. - Many other MTA's will work, but they all require that the +>Mail::Mailer</A +> + Perl module, which Bugzilla uses to send email, can be configured to + use many different underlying implementations for actually sending the + mail using the <VAR +CLASS="option" +>mail_delivery_method</VAR +> parameter. + Implementations other than <VAR +CLASS="literal" +>sendmail</VAR +> require that the <VAR CLASS="option" >sendmailnow</VAR @@ -20157,7 +20083,7 @@ NAME="gloss-zarro" Terry had the following to say: </P ><A -NAME="AEN3713" +NAME="AEN3708" ></A ><TABLE BORDER="0" diff --git a/docs/html/about.html b/docs/html/about.html index 679cd7de3f5208a024495d959520d57c924ce2e6..5d12bddd6e326ae25c1b9879f2afb1e15cab2a41 100644 --- a/docs/html/about.html +++ b/docs/html/about.html @@ -7,13 +7,11 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="NEXT" @@ -38,8 +36,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -157,8 +154,7 @@ ACCESSKEY="N" WIDTH="33%" ALIGN="left" VALIGN="top" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TD ><TD WIDTH="34%" diff --git a/docs/html/administration.html b/docs/html/administration.html index 69ba17356b9a21fde3f032af33bcab77d580cfe4..435a4abf579a4d7b030d094e287733ee69239bd4 100644 --- a/docs/html/administration.html +++ b/docs/html/administration.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -36,8 +35,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -180,22 +178,22 @@ HREF="groups.html" ><DL ><DT >3.10.1. <A -HREF="groups.html#AEN1447" +HREF="groups.html#AEN1438" >Creating Groups</A ></DT ><DT >3.10.2. <A -HREF="groups.html#AEN1474" +HREF="groups.html#AEN1465" >Assigning Users to Groups</A ></DT ><DT >3.10.3. <A -HREF="groups.html#AEN1484" +HREF="groups.html#AEN1475" >Assigning Group Controls to Products</A ></DT ><DT >3.10.4. <A -HREF="groups.html#AEN1502" +HREF="groups.html#AEN1493" >Common Applications of Group Controls</A ></DT ></DL diff --git a/docs/html/bug_page.html b/docs/html/bug_page.html index f31b3c6451f8ba825eed9a3483c21b0c9101df0a..9717a42757a4d841fcb1121a89a1097f812bd7ef 100644 --- a/docs/html/bug_page.html +++ b/docs/html/bug_page.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/bugreports.html b/docs/html/bugreports.html index 31d94663bb02b9a7e876f6942ee718e82c639404..70941f2c32750803aeedb96022269d0cf4ef1865 100644 --- a/docs/html/bugreports.html +++ b/docs/html/bugreports.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/cmdline-bugmail.html b/docs/html/cmdline-bugmail.html index 3e211a952d8417c10a8a66cf26bd68521c46a6c3..0dde3959e59133d4c641ecc040868afff4dbc8a5 100644 --- a/docs/html/cmdline-bugmail.html +++ b/docs/html/cmdline-bugmail.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/cmdline.html b/docs/html/cmdline.html index 9848dcad53b46d4098bcbc96cd08b932c2848bfe..c01be3cb2cb40e5a25027b60fb896e5a1c4914a5 100644 --- a/docs/html/cmdline.html +++ b/docs/html/cmdline.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/components.html b/docs/html/components.html index 05530f43c7f5a38872413d9c198b2b9db9825de4..1a5e7cca45e21a60049b1a182a0307daee778d80 100644 --- a/docs/html/components.html +++ b/docs/html/components.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/configuration.html b/docs/html/configuration.html index 5d9c8a6663a7fb1f41e9099074d5c73a82304f8d..9a1d82877b0294cb2c3b5a98cf35269b46efe4ee 100644 --- a/docs/html/configuration.html +++ b/docs/html/configuration.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -172,6 +170,24 @@ CLASS="filename" characters) and put it here. </P ><P +> You may need to change the value of + <EM +>webservergroup</EM +> if your web server does not + run in the "apache" group. On Debian, for example, Apache runs in + the "www-data" group. If you are going to run Bugzilla on a + machine where you do not have root access (such as on a shared web + hosting account), you will need to leave + <EM +>webservergroup</EM +> empty, ignoring the warnings + that <TT +CLASS="filename" +>checksetup.pl</TT +> will subsequently display + every time it in run. + </P +><P > The other options in the <TT CLASS="filename" >localconfig</TT @@ -349,7 +365,7 @@ CLASS="section" ><H4 CLASS="section" ><A -NAME="AEN432" +NAME="AEN439" >2.2.2.1.2. Allow small words in full-text indexes</A ></H4 ><P @@ -423,7 +439,7 @@ CLASS="section" ><H4 CLASS="section" ><A -NAME="AEN442" +NAME="AEN449" >2.2.2.1.3. Permit attachments table to grow beyond 4GB</A ></H4 ><P @@ -670,7 +686,7 @@ CLASS="section" ><H4 CLASS="section" ><A -NAME="AEN483" +NAME="AEN490" >2.2.2.2.1. Add a User to PostgreSQL</A ></H4 ><P @@ -751,7 +767,7 @@ CLASS="section" ><H4 CLASS="section" ><A -NAME="AEN499" +NAME="AEN506" >2.2.2.2.2. Configure PostgreSQL</A ></H4 ><P @@ -832,7 +848,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN522" +NAME="AEN529" >2.2.3. checksetup.pl</A ></H2 ><P @@ -1256,121 +1272,28 @@ HREF="security-webserver.html#security-webserver-access" >. </P ></DIV +></DIV ><DIV CLASS="section" -><H3 +><H2 CLASS="section" ><A -NAME="http-aol" ->2.2.4.3. AOL Server</A -></H3 -><P ->Ben FrantzDale reported success using AOL Server with Bugzilla. He - reported his experience and what appears below is based on that. - </P -><P ->AOL Server will have to be configured to run - <A -HREF="glossary.html#gloss-cgi" -><I -CLASS="glossterm" ->CGI</I -></A -> scripts, please consult - the documentation that came with your server for more information on - how to do this. - </P -><P ->Because AOL Server doesn't support <TT -CLASS="filename" ->.htaccess</TT -> - files, you'll have to create a <A -HREF="glossary.html#gloss-tcl" -><I -CLASS="glossterm" ->TCL</I -></A -> - script. You should create an <TT -CLASS="filename" ->aolserver/modules/tcl/filter.tcl</TT -> - file (the filename shouldn't matter) with the following contents (change - <SAMP -CLASS="computeroutput" ->/bugzilla/</SAMP -> to the web-based path to - your Bugzilla installation): - </P -><TABLE -BORDER="0" -BGCOLOR="#E0E0E0" -WIDTH="100%" -><TR -><TD -><FONT -COLOR="#000000" -><PRE -CLASS="programlisting" -> ns_register_filter preauth GET /bugzilla/localconfig filter_deny - ns_register_filter preauth GET /bugzilla/localconfig~ filter_deny - ns_register_filter preauth GET /bugzilla/\#localconfig\# filter_deny - ns_register_filter preauth GET /bugzilla/*.pl filter_deny - ns_register_filter preauth GET /bugzilla/syncshadowdb filter_deny - ns_register_filter preauth GET /bugzilla/data/* filter_deny - ns_register_filter preauth GET /bugzilla/template/* filter_deny - - proc filter_deny { why } { - ns_log Notice "filter_deny" - return "filter_return" - } - </PRE -></FONT -></TD -></TR -></TABLE -><DIV -CLASS="warning" -><P -></P -><TABLE -CLASS="warning" -WIDTH="100%" -BORDER="0" -><TR -><TD -WIDTH="25" -ALIGN="CENTER" -VALIGN="TOP" -><IMG -SRC="../images/warning.gif" -HSPACE="5" -ALT="Warning"></TD -><TD -ALIGN="LEFT" -VALIGN="TOP" +NAME="install-config-bugzilla" +>2.2.5. Bugzilla</A +></H2 ><P ->This probably doesn't account for all possible editor backup - files so you may wish to add some additional variations of - <TT +> Your Bugzilla should now be working. Access + <TT CLASS="filename" ->localconfig</TT ->. For more information, see - <A -HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=186383" -TARGET="_top" -> bug 186383</A -> or <A -HREF="http://online.securityfocus.com/bid/6501" -TARGET="_top" ->Bugtraq ID 6501</A +>http://<your-bugzilla-server>/</TT +> - + you should see the Bugzilla + front page. If not, consult the Troubleshooting section, + <A +HREF="troubleshooting.html" +>Appendix B</A >. - </P -></TD -></TR -></TABLE -></DIV + </P ><DIV CLASS="note" ><P @@ -1392,70 +1315,14 @@ ALT="Note"></TD ALIGN="LEFT" VALIGN="TOP" ><P ->If you are using webdot from research.att.com (the default - configuration for the <VAR -CLASS="option" ->webdotbase</VAR -> paramater), you - will need to allow access to <TT -CLASS="filename" ->data/webdot/*.dot</TT -> - for the reasearch.att.com machine. - </P -><P ->If you are using a local installation of <A -HREF="http://www.graphviz.org" -TARGET="_top" ->GraphViz</A ->, you will need to allow - everybody to access <TT -CLASS="filename" ->*.png</TT ->, - <TT -CLASS="filename" ->*.gif</TT ->, <TT -CLASS="filename" ->*.jpg</TT ->, and - <TT -CLASS="filename" ->*.map</TT -> in the - <TT -CLASS="filename" ->data/webdot</TT -> directory. - </P +> The URL above may be incorrect if you installed Bugzilla into a + subdirectory or used a symbolic link from your web site root to + the Bugzilla directory. + </P ></TD ></TR ></TABLE ></DIV -></DIV -></DIV -><DIV -CLASS="section" -><H2 -CLASS="section" -><A -NAME="install-config-bugzilla" ->2.2.5. Bugzilla</A -></H2 -><P -> Your Bugzilla should now be working. Access - <TT -CLASS="filename" ->http://<your-bugzilla-server>/</TT -> - - you should see the Bugzilla - front page. If not, consult the Troubleshooting section, - <A -HREF="troubleshooting.html" ->Appendix B</A ->. - </P ><P > Log in with the administrator account you defined in the last <TT diff --git a/docs/html/conventions.html b/docs/html/conventions.html index 5e4113b389a34bb65a21376a0764caa2977968f1..934bacb34612bc9cff591aefaad6807463e16340 100644 --- a/docs/html/conventions.html +++ b/docs/html/conventions.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/copyright.html b/docs/html/copyright.html index f4ee24b56779abdef8e3ae2a5807437e650dc5e3..eea68df997f3f7546b29ccd6ff5b6a238d7f2a5e 100644 --- a/docs/html/copyright.html +++ b/docs/html/copyright.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -81,7 +79,7 @@ NAME="copyright" >1.1. Copyright Information</A ></H1 ><P ->This document is copyright (c) 2000-2005 by the various +>This document is copyright (c) 2000-2006 by the various Bugzilla contributors who wrote it.</P ><A NAME="AEN26" diff --git a/docs/html/credits.html b/docs/html/credits.html index 81432a8387059b049e4241dba9034e188f3fe558..b7452d0bf1a237d4045abc21f9a91f43a7d54a0f 100644 --- a/docs/html/credits.html +++ b/docs/html/credits.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/cust-change-permissions.html b/docs/html/cust-change-permissions.html index cdbbe7bd3b865fd877a15a26a06b36bfacada0f3..a8d23a2c027e514a917a79d5118d191723759f9b 100644 --- a/docs/html/cust-change-permissions.html +++ b/docs/html/cust-change-permissions.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/cust-hooks.html b/docs/html/cust-hooks.html index 51b67f114c3e73e4dac77cddd4a89bc33521b4c1..0f441f065bfe6a92d4dbb4df4a3319ca7347b342 100644 --- a/docs/html/cust-hooks.html +++ b/docs/html/cust-hooks.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/cust-templates.html b/docs/html/cust-templates.html index 53007ed8dfbf8dc33ffc1c6eb41d2443f7c3174f..9e39bd39bda2e22da4dfee9793ced783cb0627b1 100644 --- a/docs/html/cust-templates.html +++ b/docs/html/cust-templates.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/customization.html b/docs/html/customization.html index d28d999242c10c4b7dc8d857cd745441d0fe9a81..32e2212a8920c6c82c32b006111f3766a9d29631 100644 --- a/docs/html/customization.html +++ b/docs/html/customization.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -36,8 +35,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/dbdoc.html b/docs/html/dbdoc.html index 778b02db5d4587ab2f45a0949a43a23e906f2496..78cf56dc88c7f4631783aa831a1aa5d909c3d49d 100644 --- a/docs/html/dbdoc.html +++ b/docs/html/dbdoc.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -139,7 +137,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN2071" +NAME="AEN2062" >5.5.1. Bugzilla Database Basics</A ></H2 ><P @@ -251,7 +249,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN2098" +NAME="AEN2089" >5.5.1.1. Bugzilla Database Tables</A ></H3 ><P diff --git a/docs/html/dbmodify.html b/docs/html/dbmodify.html index 76c45d07e2b70e89d170e361227a9494a216f155..4d3b73a17f38210fcddb4ff45c304c880a829285 100644 --- a/docs/html/dbmodify.html +++ b/docs/html/dbmodify.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/disclaimer.html b/docs/html/disclaimer.html index 220d6c2e62d2c712f351d9bf51b831cc0e73cc7c..31783c42d0988faf606ddfff51b43bb36e2fc7c6 100644 --- a/docs/html/disclaimer.html +++ b/docs/html/disclaimer.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/extraconfig.html b/docs/html/extraconfig.html index 8fc467a7719101b69e75325f918f6a8da1baa01b..2ee9d056416f9b9ead20969a88333345a3778e42 100644 --- a/docs/html/extraconfig.html +++ b/docs/html/extraconfig.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -89,7 +87,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN646" +NAME="AEN628" >2.3.1. Bug Graphs</A ></H2 ><P @@ -145,6 +143,42 @@ CLASS="programlisting" > After two days have passed you'll be able to view bug graphs from the Reports page. </P +><P +> When upgrading Bugzilla, this format may change. + To create new status data, (re)move old data and run the following + commands: + </P +><TABLE +BORDER="0" +BGCOLOR="#E0E0E0" +WIDTH="100%" +><TR +><TD +><FONT +COLOR="#000000" +><PRE +CLASS="screen" +> <SAMP +CLASS="prompt" +>bash$</SAMP +> + <B +CLASS="command" +>cd <your-bugzilla-directory></B +> + <SAMP +CLASS="prompt" +>bash$</SAMP +> + <B +CLASS="command" +>./collectstats.pl --regenerate</B +> + </PRE +></FONT +></TD +></TR +></TABLE ><DIV CLASS="note" ><P @@ -185,7 +219,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN659" +NAME="AEN647" >2.3.2. Dependency Charts</A ></H2 ><P diff --git a/docs/html/faq.html b/docs/html/faq.html index 0d45be524142c6586ffa8e750b0e1cdcea143083..c2d11f6d8e68c6804ff843e41ba2cc6cb7e909ac 100644 --- a/docs/html/faq.html +++ b/docs/html/faq.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -36,8 +35,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -2251,6 +2249,14 @@ CLASS="answer" > </B > To disable email, set the + <VAR +CLASS="option" +>mail_delivery_method</VAR +> parameter to + <VAR +CLASS="literal" +>none</VAR +> (2.20 and later), or <TABLE BORDER="0" BGCOLOR="#E0E0E0" @@ -2563,7 +2569,7 @@ CLASS="QUOTE" > link of your Bugzilla installation and clicking the <SPAN CLASS="QUOTE" ->"Email me a password"</SPAN +>"Submit Request"</SPAN > button after entering your email address. </P @@ -2916,7 +2922,7 @@ CLASS="answer" ><P > Microsoft has some advice on this matter, as well: <A -NAME="AEN2975" +NAME="AEN2969" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -3162,7 +3168,7 @@ BORDER="0" ><TR ><TD > <A -HREF="http://bugzilla.mozilla.org/show_bug?id=35195" +HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=35195" TARGET="_top" >Bug 35195</A > @@ -3188,7 +3194,7 @@ TARGET="_top" ><TR ><TD > <A -HREF="http://bugzilla.mozilla.org/show_bug?id=37613" +HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=37613" TARGET="_top" >Bug 37613</A @@ -3418,13 +3424,13 @@ TARGET="_top" enhancement for Bugzilla. </P ><P -> You can view bugs marked for 2.20.1 release +> You can view bugs marked for 2.20.2 release <A HREF="http://bugzilla.mozilla.org/buglist.cgi?product=Bugzilla&target_milestone=Bugzilla+&bz-nextver;" TARGET="_top" >here</A >. - This list includes bugs for the 2.20.1 release that have already + This list includes bugs for the 2.20.2 release that have already been fixed and checked into CVS. Please consult the <A HREF="http://www.bugzilla.org/" diff --git a/docs/html/flags-overview.html b/docs/html/flags-overview.html index fdb41e8e75e33b001d7cf02aa719a51e9447b0b4..65e7fb324471d10cc697bf02e4e2ad9827393546 100644 --- a/docs/html/flags-overview.html +++ b/docs/html/flags-overview.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/flags.html b/docs/html/flags.html index da8a6a28365589f837e9cbd204fa4047289d1277..3fc162131d60575c542209ef57fb31c49562dfe8 100644 --- a/docs/html/flags.html +++ b/docs/html/flags.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -119,6 +117,13 @@ NAME="flags" appended to the flag name within parentheses. For example, if Jack asks Jill for review, it appears as Jack: review [ ? ] (Jill). </P +><P +> You can browse through open requests made of you and by you by selecting + 'My Requests' from the footer. You can also look at open requests limited + by other requesters, requestees, products, components, and flag names from + this page. Note that you can use '-' for requestee to specify flags with + 'no requestee' set. + </P ></DIV ><DIV CLASS="NAVFOOTER" diff --git a/docs/html/general-advice.html b/docs/html/general-advice.html index 26e5b9dde2532e997e51e96996a8b498b6624b7f..864af183df0a5f28d0109e22b6bd235a3648b67d 100644 --- a/docs/html/general-advice.html +++ b/docs/html/general-advice.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-0.html b/docs/html/gfdl-0.html index 42d501512fb1c75b7470019d387d49d4f0606f89..29042ba0db5bbbb6255bc12d4376b9f17e484784 100644 --- a/docs/html/gfdl-0.html +++ b/docs/html/gfdl-0.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-1.html b/docs/html/gfdl-1.html index 49e6a061d7f3130eb3c85e3ba1bb5524c6940195..040f708d7439ab213d04f5139b0ed772f1aa5169 100644 --- a/docs/html/gfdl-1.html +++ b/docs/html/gfdl-1.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-10.html b/docs/html/gfdl-10.html index 33040c8db3fe84536967b0de43c3d7468d1eaf94..7ee7e2039a96aa4b9b735c921bab169ba05764c1 100644 --- a/docs/html/gfdl-10.html +++ b/docs/html/gfdl-10.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-2.html b/docs/html/gfdl-2.html index 423aea447f628618400a080b3cdffadcff527615..6bb68e9a47604ffb77a3a4a283f2c376c8febb69 100644 --- a/docs/html/gfdl-2.html +++ b/docs/html/gfdl-2.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-3.html b/docs/html/gfdl-3.html index d8813270dd97daee4323795a0103045051d1c62e..76387967cff740b7909a4dc009da47ab7576d9c8 100644 --- a/docs/html/gfdl-3.html +++ b/docs/html/gfdl-3.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-4.html b/docs/html/gfdl-4.html index 8e93759315e02b0ab8f8c1b29e7f3ba233c150f8..95868950161c2de45cebdd58a6aca420ea631e33 100644 --- a/docs/html/gfdl-4.html +++ b/docs/html/gfdl-4.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-5.html b/docs/html/gfdl-5.html index 60c5beb1d8cf5fd055b55846d15c49ca311516b1..a0b1c729c712854c132179d6f2deb031f58a42a8 100644 --- a/docs/html/gfdl-5.html +++ b/docs/html/gfdl-5.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-6.html b/docs/html/gfdl-6.html index 5d3d0e036e9b3f699c356915c9f81ce0629e229a..22f3ec53023c8cd15175872c8350630dadcd9634 100644 --- a/docs/html/gfdl-6.html +++ b/docs/html/gfdl-6.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-7.html b/docs/html/gfdl-7.html index 7b9c2dfa2c940ebc8d2214f11dfe858ac219a7b9..51d5ea1babaf3076be0afa05f7c93a9ccda70b52 100644 --- a/docs/html/gfdl-7.html +++ b/docs/html/gfdl-7.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-8.html b/docs/html/gfdl-8.html index b56e07b5bf832669d88c1fd1460d5945010a7050..7e7b42b7ced93b04ea41f5b8d9f29621cefe9f95 100644 --- a/docs/html/gfdl-8.html +++ b/docs/html/gfdl-8.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-9.html b/docs/html/gfdl-9.html index cee36dfd0be4dfa935e60aa640e8beffda765695..3e9f5ce966990f176e02743edbf9efce2bd199cf 100644 --- a/docs/html/gfdl-9.html +++ b/docs/html/gfdl-9.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/gfdl-howto.html b/docs/html/gfdl-howto.html index 00fd769136ccffe4ed7e5cd29f72ac8de2fbc056..3985a1f596e1ad86f2f7b9f4d689a2fbaf40f05c 100644 --- a/docs/html/gfdl-howto.html +++ b/docs/html/gfdl-howto.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -85,7 +83,7 @@ NAME="gfdl-howto" of the License in the document and put the following copyright and license notices just after the title page:</P ><A -NAME="AEN3462" +NAME="AEN3456" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" diff --git a/docs/html/gfdl.html b/docs/html/gfdl.html index 196df724b697a194e3aa3a972e38ccd9ffffae39..ed070732d02ce0273204cfaf22e6e07f235d02f8 100644 --- a/docs/html/gfdl.html +++ b/docs/html/gfdl.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -36,8 +35,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -148,7 +146,7 @@ HREF="gfdl-howto.html" ><P >Version 1.1, March 2000</P ><A -NAME="AEN3372" +NAME="AEN3366" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" diff --git a/docs/html/glossary.html b/docs/html/glossary.html index f859a9b44db43526079bacc78cc8c9221be98082..24d14f405d39a168482012241777839e293a35f3 100644 --- a/docs/html/glossary.html +++ b/docs/html/glossary.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -33,8 +32,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -74,7 +72,7 @@ CLASS="glossdiv" ><H1 CLASS="glossdiv" ><A -NAME="AEN3467" +NAME="AEN3461" >0-9, high ascii</A ></H1 ><DL @@ -581,17 +579,21 @@ NAME="gloss-mta" > (MTA)<DD ><P >A Message Transport Agent is used to control the flow of email - on a system. Many unix based systems use - <A -HREF="http://www.sendmail.org" + on a system. The <A +HREF="http://search.cpan.org/dist/MailTools/Mail/Mailer.pm" TARGET="_top" ->sendmail</A -> which is what - Bugzilla expects to find by default at <TT -CLASS="filename" ->/usr/sbin/sendmail</TT ->. - Many other MTA's will work, but they all require that the +>Mail::Mailer</A +> + Perl module, which Bugzilla uses to send email, can be configured to + use many different underlying implementations for actually sending the + mail using the <VAR +CLASS="option" +>mail_delivery_method</VAR +> parameter. + Implementations other than <VAR +CLASS="literal" +>sendmail</VAR +> require that the <VAR CLASS="option" >sendmailnow</VAR @@ -988,7 +990,7 @@ NAME="gloss-zarro" Terry had the following to say: </P ><A -NAME="AEN3713" +NAME="AEN3708" ></A ><TABLE BORDER="0" diff --git a/docs/html/groups.html b/docs/html/groups.html index 21e3ba7033af4ae87f26bf73de78edc14b0377fd..e5797a2f2eabdd648c51cae44f0aae79fe303005 100644 --- a/docs/html/groups.html +++ b/docs/html/groups.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -152,7 +150,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN1447" +NAME="AEN1438" >3.10.1. Creating Groups</A ></H2 ><P @@ -231,7 +229,9 @@ VALIGN="TOP" resulted in a user acquiring permanent membership in a group. To remove a user from a group the user was in due to a regular expression in version 2.16 or earlier, the user must be explicitly - removed from the group.</P + removed from the group. This can easily be done by pressing + buttons named 'Remove Memberships' or 'Remove Memberships + included in regular expression' under the table.</P ></TD ></TR ></TABLE @@ -288,7 +288,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN1474" +NAME="AEN1465" >3.10.2. Assigning Users to Groups</A ></H2 ><P @@ -320,7 +320,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN1484" +NAME="AEN1475" >3.10.3. Assigning Group Controls to Products</A ></H2 ><P @@ -412,7 +412,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN1502" +NAME="AEN1493" >3.10.4. Common Applications of Group Controls</A ></H2 ><DIV @@ -420,7 +420,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN1504" +NAME="AEN1495" >3.10.4.1. General User Access With Security Group</A ></H3 ><P @@ -455,7 +455,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN1508" +NAME="AEN1499" >3.10.4.2. General User Access With A Security Product</A ></H3 ><P @@ -487,7 +487,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN1512" +NAME="AEN1503" >3.10.4.3. Product Isolation With Common Group</A ></H3 ><P diff --git a/docs/html/hintsandtips.html b/docs/html/hintsandtips.html index 4724e18e6d0288b53eb559967945bb93e16a1084..94e5c57dbb775ef1325777b42d692d239a7cd90a 100644 --- a/docs/html/hintsandtips.html +++ b/docs/html/hintsandtips.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -88,7 +86,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN2386" +NAME="AEN2377" >6.9.1. Autolinkification</A ></H2 ><P diff --git a/docs/html/index.html b/docs/html/index.html index 6466e9220b9bae7b80afc6d2cb8a8afa14ad1963..9f86230a5946cf858d7586b3d95259ff1819604e 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -2,8 +2,7 @@ <HTML ><HEAD ><TITLE ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TITLE ><META NAME="GENERATOR" @@ -47,8 +46,7 @@ CLASS="TITLEPAGE" CLASS="title" ><A NAME="AEN2" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</A ></H1 ><H3 @@ -56,7 +54,7 @@ CLASS="corpauthor" >The Bugzilla Team</H3 ><P CLASS="pubdate" ->2005-09-30<BR></P +>2006-02-20<BR></P ><DIV ><DIV CLASS="abstract" @@ -425,7 +423,7 @@ HREF="trbl-relogin-everyone.html" ></DT ><DT >B.9. <A -HREF="x3196.html" +HREF="x3190.html" >Some users are constantly being forced to relogin</A ></DT ><DT diff --git a/docs/html/install-perlmodules-manual.html b/docs/html/install-perlmodules-manual.html index 23e1b77b5d6ebb83aa29bd658fb85271f79f05ba..f4da1544a6c47091c9d5081a37f837ad7c805c0a 100644 --- a/docs/html/install-perlmodules-manual.html +++ b/docs/html/install-perlmodules-manual.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -36,8 +35,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/installation.html b/docs/html/installation.html index 5f7783a9c85a384464d828657166058e6c3a1bd2..5184290302038e9141fcb4a1c10e18edef9dedc0 100644 --- a/docs/html/installation.html +++ b/docs/html/installation.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -501,11 +499,7 @@ CLASS="filename" The first thing it checks is whether you have appropriate versions of all the required Perl modules. The aim of this section is to pass this check. - When it passes, - <EM ->do not run it again</EM ->, - but proceed to <A + When it passes, proceed to <A HREF="configuration.html" >Section 2.2</A >. @@ -1053,27 +1047,73 @@ NAME="install-MTA" >2.1.6. Mail Transfer Agent (MTA)</A ></H2 ><P ->Bugzilla is dependent on the availability of an e-mail system for its user - authentication and for other tasks. </P +> Bugzilla is dependent on the availability of an e-mail system for its + user authentication and for other tasks. + </P +><DIV +CLASS="note" ><P ->On Linux, any Sendmail-compatible MTA (Mail Transfer Agent) will suffice. - Sendmail, Postfix, qmail and Exim are examples of common MTAs. Sendmail is the - original Unix MTA, but the others are easier to configure, and therefore many people - replace Sendmail with Postfix or Exim. They are drop-in replacements, so that Bugzilla - will not distinguish between them.</P +></P +><TABLE +CLASS="note" +WIDTH="100%" +BORDER="0" +><TR +><TD +WIDTH="25" +ALIGN="CENTER" +VALIGN="TOP" +><IMG +SRC="../images/note.gif" +HSPACE="5" +ALT="Note"></TD +><TD +ALIGN="LEFT" +VALIGN="TOP" +><P +> This is not entirely true. It is possible to completely disable + email sending, or to have Bugzilla store email messages in a + file instead of sending them. However, this is mainly intended + for testing, as disabling or diverting email on a production + machine would mean that users could miss important events (such + as bug changes or the creation of new accouts). + </P +><P +> For more information, see the "maildeliverymethod" parameter in + <A +HREF="parameters.html" +>Section 3.1</A +>. + </P +></TD +></TR +></TABLE +></DIV +><P +> On Linux, any Sendmail-compatible MTA (Mail Transfer Agent) will + suffice. Sendmail, Postfix, qmail and Exim are examples of common + MTAs. Sendmail is the original Unix MTA, but the others are easier to + configure, and therefore many people replace Sendmail with Postfix or + Exim. They are drop-in replacements, so Bugzilla will not + distinguish between them. + </P ><P > If you are using Sendmail, version 8.7 or higher is required. - If you are using a Sendmail-compatible MTA, it must be congruent with at least version 8.7 of Sendmail. + If you are using a Sendmail-compatible MTA, it must be congruent with + at least version 8.7 of Sendmail. </P ><P ->Consult the manual for the specific MTA you choose for detailed installation - instructions. Each of these programs will have their own configuration files where you must - configure certain parameters to ensure that the mail is delivered properly. They - are implemented as services, and you should ensure that the MTA is in the - auto-start list of services for the machine.</P +> Consult the manual for the specific MTA you choose for detailed + installation instructions. Each of these programs will have their own + configuration files where you must configure certain parameters to + ensure that the mail is delivered properly. They are implemented + as services, and you should ensure that the MTA is in the auto-start + list of services for the machine. + </P ><P ->If a simple mail sent with the command-line 'mail' program succeeds, then - Bugzilla should also be fine.</P +> If a simple mail sent with the command-line 'mail' program + succeeds, then Bugzilla should also be fine. + </P ></DIV ></DIV ><DIV diff --git a/docs/html/installing-bugzilla.html b/docs/html/installing-bugzilla.html index e47d423fbae2222ca5b9d4a57b68b408ddb48f56..3ea57ca7553846a2f01233bf0e756e2f8f5e5cdd 100644 --- a/docs/html/installing-bugzilla.html +++ b/docs/html/installing-bugzilla.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -36,8 +35,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -141,7 +139,7 @@ HREF="configuration.html#database-engine" ></DT ><DT >2.2.3. <A -HREF="configuration.html#AEN522" +HREF="configuration.html#AEN529" >checksetup.pl</A ></DT ><DT @@ -165,12 +163,12 @@ HREF="extraconfig.html" ><DL ><DT >2.3.1. <A -HREF="extraconfig.html#AEN646" +HREF="extraconfig.html#AEN628" >Bug Graphs</A ></DT ><DT >2.3.2. <A -HREF="extraconfig.html#AEN659" +HREF="extraconfig.html#AEN647" >Dependency Charts</A ></DT ><DT @@ -236,17 +234,17 @@ HREF="nonroot.html" ><DL ><DT >2.5.1. <A -HREF="nonroot.html#AEN871" +HREF="nonroot.html#AEN857" >Introduction</A ></DT ><DT >2.5.2. <A -HREF="nonroot.html#AEN875" +HREF="nonroot.html#AEN861" >MySQL</A ></DT ><DT >2.5.3. <A -HREF="nonroot.html#AEN910" +HREF="nonroot.html#AEN896" >Perl</A ></DT ><DT @@ -256,12 +254,12 @@ HREF="nonroot.html#install-perlmodules-nonroot" ></DT ><DT >2.5.5. <A -HREF="nonroot.html#AEN975" +HREF="nonroot.html#AEN961" >HTTP Server</A ></DT ><DT >2.5.6. <A -HREF="nonroot.html#AEN987" +HREF="nonroot.html#AEN973" >Bugzilla</A ></DT ></DL diff --git a/docs/html/integration.html b/docs/html/integration.html index b3ead04239a3ceb95f6abfcbdc8cfdaa867ba06d..523d6faa8529245d399bf635da97585eecc9c047 100644 --- a/docs/html/integration.html +++ b/docs/html/integration.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/lifecycle.html b/docs/html/lifecycle.html index a81d1a4c3e1239d8f13685a8a8a6b8d5385edb21..73c14a44f36a0aa5112972c11cca5fa9ce7b12b9 100644 --- a/docs/html/lifecycle.html +++ b/docs/html/lifecycle.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/list.html b/docs/html/list.html index ebfdd014dcc0f916ec81b3d7af4728549d1817a5..e981a9d1aac8c2988d9a4bbfba5a71283674d355 100644 --- a/docs/html/list.html +++ b/docs/html/list.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/milestones.html b/docs/html/milestones.html index e75e97bb28d964e3cbecf8c2207ebea8de89848d..cc8a1cd32072425c7d33c4b8055476f9a97ceb9c 100644 --- a/docs/html/milestones.html +++ b/docs/html/milestones.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/modules-manual-download.html b/docs/html/modules-manual-download.html index b2537a1f1b56e2df028e82def1467c14c2937e74..51e0167375f7eacdaead175a478b9611f9921ddc 100644 --- a/docs/html/modules-manual-download.html +++ b/docs/html/modules-manual-download.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/modules-manual-instructions.html b/docs/html/modules-manual-instructions.html index 8a62089be5657c50bfce7e4985ed8623059823b8..85bd2f75c8f7e0f55005eac248e799f0c37a9a64 100644 --- a/docs/html/modules-manual-instructions.html +++ b/docs/html/modules-manual-instructions.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/modules-manual-optional.html b/docs/html/modules-manual-optional.html index e23b004b126aa5c35e4d8b02c73b948341fa2238..a6dd1f818d72daffaf2f4cdb83cbc28a5fd48495 100644 --- a/docs/html/modules-manual-optional.html +++ b/docs/html/modules-manual-optional.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/myaccount.html b/docs/html/myaccount.html index 9924f0ed3c7904d2f21c84e516af15ca48b605cc..32829ab2b30a9d7265543b667ecd5e3ef521d92f 100644 --- a/docs/html/myaccount.html +++ b/docs/html/myaccount.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/newversions.html b/docs/html/newversions.html index 01abf4261a42895ecce382e62fe37bb79a12c013..f19437ee8fd6ab908f8d9898e8d19836c37d26ed 100644 --- a/docs/html/newversions.html +++ b/docs/html/newversions.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -81,10 +79,8 @@ NAME="newversions" >1.3. New Versions</A ></H1 ><P -> This is the 2.20 version of The Bugzilla Guide. It is so named +> This is the 2.20.1 version of The Bugzilla Guide. It is so named to match the current version of Bugzilla. - This version of the guide, like its associated Bugzilla version, is a - development version. </P ><P > The latest version of this guide can always be found at <A diff --git a/docs/html/nonroot.html b/docs/html/nonroot.html index 256057f4f84d21aca8de1cd7755b304c6cf23e79..1cee3484c9562b920420c8dde298758f80a94702 100644 --- a/docs/html/nonroot.html +++ b/docs/html/nonroot.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -85,7 +83,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN871" +NAME="AEN857" >2.5.1. Introduction</A ></H2 ><P @@ -105,7 +103,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN875" +NAME="AEN861" >2.5.2. MySQL</A ></H2 ><P @@ -161,7 +159,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN883" +NAME="AEN869" >2.5.2.1. Running MySQL as Non-Root</A ></H3 ><DIV @@ -169,7 +167,7 @@ CLASS="section" ><H4 CLASS="section" ><A -NAME="AEN885" +NAME="AEN871" >2.5.2.1.1. The Custom Configuration Method</A ></H4 ><P @@ -213,7 +211,7 @@ CLASS="section" ><H4 CLASS="section" ><A -NAME="AEN889" +NAME="AEN875" >2.5.2.1.2. The Custom Built Method</A ></H4 ><P @@ -236,7 +234,7 @@ CLASS="section" ><H4 CLASS="section" ><A -NAME="AEN894" +NAME="AEN880" >2.5.2.1.3. Starting the Server</A ></H4 ><P @@ -364,7 +362,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN910" +NAME="AEN896" >2.5.3. Perl</A ></H2 ><P @@ -457,7 +455,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN929" +NAME="AEN915" >2.5.4.1. The Independant Method</A ></H3 ><P @@ -529,7 +527,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN942" +NAME="AEN928" >2.5.4.2. The Mixed Method</A ></H3 ><P @@ -734,7 +732,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN975" +NAME="AEN961" >2.5.5. HTTP Server</A ></H2 ><P @@ -748,7 +746,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN978" +NAME="AEN964" >2.5.5.1. Running Apache as Non-Root</A ></H3 ><P @@ -830,7 +828,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN987" +NAME="AEN973" >2.5.6. Bugzilla</A ></H2 ><P diff --git a/docs/html/os-specific.html b/docs/html/os-specific.html index 331f44cda140390a6a35cc4812679a99c5d91134..d07edbe9d7d5ac7573b6b12a2c8de2a35c95497d 100644 --- a/docs/html/os-specific.html +++ b/docs/html/os-specific.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -272,77 +270,11 @@ CLASS="section" CLASS="section" ><A NAME="win32-code-changes" ->2.4.1.3. Code changes required to run on win32</A +>2.4.1.3. Code changes required to run on Win32</A ></H3 ><P -> Bugzilla on win32 is mostly supported out of the box; one - remaining issue is related to bug email. To make bug email - work on Win32 (until - <A -HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=49893" -TARGET="_top" ->bug - 49893</A -> lands), the - simplest way is to have the Net::SMTP Perl module installed and - change this line in the file Bugzilla/Bugmail.pm: - </P -><TABLE -BORDER="0" -BGCOLOR="#E0E0E0" -WIDTH="100%" -><TR -><TD -><FONT -COLOR="#000000" -><PRE -CLASS="programlisting" -> open(SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t -i") || - die "Can't open sendmail"; - -print SENDMAIL trim($msg) . "\n"; -close SENDMAIL; - </PRE -></FONT -></TD -></TR -></TABLE -><P -> to - </P -><TABLE -BORDER="0" -BGCOLOR="#E0E0E0" -WIDTH="100%" -><TR -><TD -><FONT -COLOR="#000000" -><PRE -CLASS="programlisting" -> use Net::SMTP; -my $smtp_server = 'smtp.mycompany.com'; # change this - -# Use die on error, so that the mail will be in the 'unsent mails' and -# can be sent from the sanity check page. -my $smtp = Net::SMTP->new($smtp_server) || - die 'Cannot connect to server \'$smtp_server\''; - -$smtp->mail('bugzilla-daemon@mycompany.com'); # change this -$smtp->to($person); -$smtp->data(); -$smtp->datasend($msg); -$smtp->dataend(); -$smtp->quit; - </PRE -></FONT -></TD -></TR -></TABLE -><P -> Don't forget to change the name of your SMTP server and the - domain of the sending email address (after the '@') in the - above lines of code. +> Bugzilla on Win32 is supported out of the box from version 2.20; this + means that no code changes are required to get Bugzilla running. </P ></DIV ><DIV @@ -406,6 +338,19 @@ CLASS="filename" ></TABLE ></DIV ></DIV +><DIV +CLASS="section" +><H3 +CLASS="section" +><A +NAME="win32-email" +>2.4.1.5. Sending Email</A +></H3 +><P +> To enable Bugzilla to send email on Windows, the server running the + Bugzilla code must be able to connect to, or act as, an SMTP server. + </P +></DIV ></DIV ><DIV CLASS="section" diff --git a/docs/html/parameters.html b/docs/html/parameters.html index c142dceec8a7adf0bb103b9c461cfc3ff6269a75..279d55ebe3220cdebd5ace82a054d08ab30bb3d3 100644 --- a/docs/html/parameters.html +++ b/docs/html/parameters.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -151,6 +149,21 @@ CLASS="QUOTE" </P ></DD ><DT +>maildeliverymethod</DT +><DD +><P +> This is used to specify how email is sent, or if it is sent at + all. There are several options included for different MTAs, + along with two additional options that disable email sending. + "testfile" does not send mail, but instead saves it in + <TT +CLASS="filename" +>data/mailer.testfile</TT +> for later review. + "none" disables email sending entirely. + </P +></DD +><DT >shadowdb</DT ><DD ><P diff --git a/docs/html/paranoid-security.html b/docs/html/paranoid-security.html index 37119b1c4fa7c8b25add7ca1b56ad7ababcf7dd1..f338d2e70092d1fb4d6cfdce188b38b06e513164 100644 --- a/docs/html/paranoid-security.html +++ b/docs/html/paranoid-security.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/patches.html b/docs/html/patches.html index 2bd273fa262573e8c35eeb55c7cf0b168b0373d3..cdcfccfb0cef40c746986a8b0e15a944116f737e 100644 --- a/docs/html/patches.html +++ b/docs/html/patches.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/patchviewer.html b/docs/html/patchviewer.html index 8e266b210b6a1b98bd18345ee8c98a3fcf80814d..9f2a781eae095d83bf168097fb9eee06745e56e9 100644 --- a/docs/html/patchviewer.html +++ b/docs/html/patchviewer.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/products.html b/docs/html/products.html index 2698657f966ef4abf5ad94055ddb08f21e856f46..c2ffd50d5e8aa8f1a2d35ad61569aff77c2e7a92 100644 --- a/docs/html/products.html +++ b/docs/html/products.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/query.html b/docs/html/query.html index 98f9cd51b2f786ce406233e283fe13311144e6b3..ad673ab5822bafe5ca20319233ae27a73a7ecd2a 100644 --- a/docs/html/query.html +++ b/docs/html/query.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -81,7 +79,7 @@ NAME="query" >6.5. Searching for Bugs</A ></H1 ><P ->The Bugzilla Search page is is the interface where you can find +>The Bugzilla Search page is the interface where you can find any bug report, comment, or patch currently in the Bugzilla system. You can play with it here: <A @@ -194,7 +192,7 @@ NAME="negation" > At first glance, negation seems redundant. Rather than searching for <A -NAME="AEN2286" +NAME="AEN2277" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -205,7 +203,7 @@ CLASS="BLOCKQUOTE" > one could search for <A -NAME="AEN2288" +NAME="AEN2279" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -216,7 +214,7 @@ CLASS="BLOCKQUOTE" > However, the search <A -NAME="AEN2290" +NAME="AEN2281" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -228,7 +226,7 @@ CLASS="BLOCKQUOTE" would find every bug where anyone on the CC list did not contain "@mozilla.org" while <A -NAME="AEN2292" +NAME="AEN2283" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -242,7 +240,7 @@ CLASS="BLOCKQUOTE" complex expressions to be built using terms OR'd together and then negated. Negation permits queries such as <A -NAME="AEN2294" +NAME="AEN2285" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -255,7 +253,7 @@ CLASS="BLOCKQUOTE" to find bugs that are neither in the update product or in the documentation component or <A -NAME="AEN2296" +NAME="AEN2287" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -283,7 +281,7 @@ NAME="multiplecharts" a bug that has two different people cc'd on it, then you need to use two boolean charts. A search for <A -NAME="AEN2301" +NAME="AEN2292" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -298,7 +296,7 @@ CLASS="BLOCKQUOTE" containing "foo@" and someone else containing "@mozilla.org", then you would need two boolean charts. <A -NAME="AEN2303" +NAME="AEN2294" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" diff --git a/docs/html/quips.html b/docs/html/quips.html index fdd3fee0b35ecd34dbc1d0489085ca37aad0e2fa..40de0b2f8dda44f70ea280f98bf857eaee0dd53d 100644 --- a/docs/html/quips.html +++ b/docs/html/quips.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/reporting.html b/docs/html/reporting.html index 083090ca5ebb98c6f2948d8cbc91ce5cb9dd7f16..c9bf9b12a1a3053883b79c57ba5e3adf04cac101 100644 --- a/docs/html/reporting.html +++ b/docs/html/reporting.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -195,7 +193,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN2493" +NAME="AEN2484" >6.11.2.1. Creating Charts</A ></H3 ><P @@ -235,7 +233,7 @@ CLASS="section" ><H3 CLASS="section" ><A -NAME="AEN2500" +NAME="AEN2491" >6.11.2.2. Creating New Data Sets</A ></H3 ><P diff --git a/docs/html/security-bugzilla.html b/docs/html/security-bugzilla.html index e9fb68a90eb2ddc171166f76a0452e1e6c96a986..b252c5cbc40983cd56fce1c3595efbbeb456fca7 100644 --- a/docs/html/security-bugzilla.html +++ b/docs/html/security-bugzilla.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/security-mysql.html b/docs/html/security-mysql.html index 756d22504313eda02d1b3eeeb44a15b0f54ebe35..43ad40f75953de2139395a5912103440a48385a4 100644 --- a/docs/html/security-mysql.html +++ b/docs/html/security-mysql.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/security-os.html b/docs/html/security-os.html index 42141a8018df48baab5587fe7e5034591a0d3a0c..0cfcba5f53c99bf579674669cd5c1b9bd614217d 100644 --- a/docs/html/security-os.html +++ b/docs/html/security-os.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/security-webserver.html b/docs/html/security-webserver.html index b6df5cb8b6aa7d8fb626d20ad9c8ef0d3a08d361..55e03b00396ec94d47f8034b95f7fa0fc303aaa2 100644 --- a/docs/html/security-webserver.html +++ b/docs/html/security-webserver.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/security.html b/docs/html/security.html index b0ef51cbf9e72fd5b11499e5d2f076d8dc67c8f2..094c7aeaf26a16853d1245c4d1cb4720af4311db 100644 --- a/docs/html/security.html +++ b/docs/html/security.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -36,8 +35,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/trbl-bundlebugzilla.html b/docs/html/trbl-bundlebugzilla.html index 8557e07cdea2840ee5cf02dc7ed566f4d11b1e52..fe90f18a92dcf88b750bb9496c8b04f776d8905d 100644 --- a/docs/html/trbl-bundlebugzilla.html +++ b/docs/html/trbl-bundlebugzilla.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -40,8 +39,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/trbl-dbdsponge.html b/docs/html/trbl-dbdsponge.html index a643117d2371dfdc84d20b853ab51d60464bb364..cad224bdef5e7bf5c0f6ad1b4f5b42c036303492 100644 --- a/docs/html/trbl-dbdsponge.html +++ b/docs/html/trbl-dbdsponge.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/trbl-index.html b/docs/html/trbl-index.html index 43175b6a6e1afe337a6f941c266b5daf0deb581e..7c93e431149e34f320f61a8cebda4d026bfa5931 100644 --- a/docs/html/trbl-index.html +++ b/docs/html/trbl-index.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -16,7 +15,7 @@ TITLE="Troubleshooting" HREF="troubleshooting.html"><LINK REL="PREVIOUS" TITLE="Some users are constantly being forced to relogin" -HREF="x3196.html"><LINK +HREF="x3190.html"><LINK REL="NEXT" TITLE=' checksetup.pl reports "Client does not support authentication protocol @@ -42,8 +41,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -52,7 +50,7 @@ WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A -HREF="x3196.html" +HREF="x3190.html" ACCESSKEY="P" >Prev</A ></TD @@ -122,7 +120,7 @@ WIDTH="33%" ALIGN="left" VALIGN="top" ><A -HREF="x3196.html" +HREF="x3190.html" ACCESSKEY="P" >Prev</A ></TD diff --git a/docs/html/trbl-passwd-encryption.html b/docs/html/trbl-passwd-encryption.html index 8cfb2cdff0b1f9ef36e7ecb9b66cde44303038be..2ce3a8ed76d270c34da64443cbbd99a34c2670bf 100644 --- a/docs/html/trbl-passwd-encryption.html +++ b/docs/html/trbl-passwd-encryption.html @@ -9,8 +9,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -41,8 +40,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/trbl-perlmodule.html b/docs/html/trbl-perlmodule.html index 5a56b4d90d3878544154bbf03f66739c811939a0..266e2b3ccb90d5b11845a7350c93925e94ce9942 100644 --- a/docs/html/trbl-perlmodule.html +++ b/docs/html/trbl-perlmodule.html @@ -8,8 +8,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -40,8 +39,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/trbl-relogin-everyone.html b/docs/html/trbl-relogin-everyone.html index 4fcac489def33e6a34a9c9ddcf74b55ec23ecbea..0879ce3f61acd6b2778d7ef99fd77d8d2f9212c4 100644 --- a/docs/html/trbl-relogin-everyone.html +++ b/docs/html/trbl-relogin-everyone.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -19,7 +18,7 @@ TITLE="Your vendor has not defined Fcntl macro O_NOINHERIT" HREF="trouble-filetemp.html"><LINK REL="NEXT" TITLE="Some users are constantly being forced to relogin" -HREF="x3196.html"></HEAD +HREF="x3190.html"></HEAD ><BODY CLASS="section" BGCOLOR="#FFFFFF" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -63,7 +61,7 @@ WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A -HREF="x3196.html" +HREF="x3190.html" ACCESSKEY="N" >Next</A ></TD @@ -122,7 +120,7 @@ NAME="trbl-relogin-everyone-share" >Example B-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B ></P ><A -NAME="AEN3182" +NAME="AEN3176" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -163,7 +161,7 @@ NAME="trbl-relogin-everyone-restrict" >Example B-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B ></P ><A -NAME="AEN3189" +NAME="AEN3183" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -234,7 +232,7 @@ WIDTH="33%" ALIGN="right" VALIGN="top" ><A -HREF="x3196.html" +HREF="x3190.html" ACCESSKEY="N" >Next</A ></TD diff --git a/docs/html/trbl-testserver.html b/docs/html/trbl-testserver.html index 6877f8f0d99e9e6cee2e95f51b8d28a458b36227..0f5f368f88238f4a84a394646041d91b2b27543f 100644 --- a/docs/html/trbl-testserver.html +++ b/docs/html/trbl-testserver.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -40,8 +39,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/trouble-filetemp.html b/docs/html/trouble-filetemp.html index b3b105ea09e8b1cc91a2786a7bc1d4cb1a65b818..84f11c59521c691238ce6f2eab822cede470488c 100644 --- a/docs/html/trouble-filetemp.html +++ b/docs/html/trouble-filetemp.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/troubleshooting.html b/docs/html/troubleshooting.html index 2061f3a7f12f232e8116a9dc397676742be69b76..d6c191394dcab0758d47d9aab0d00eceb18b34ed 100644 --- a/docs/html/troubleshooting.html +++ b/docs/html/troubleshooting.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -36,8 +35,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -129,7 +127,7 @@ HREF="trbl-relogin-everyone.html" ></DT ><DT >B.9. <A -HREF="x3196.html" +HREF="x3190.html" >Some users are constantly being forced to relogin</A ></DT ><DT diff --git a/docs/html/upgrading.html b/docs/html/upgrading.html index 1d8837eed53a600dadc7dd586949e669b5bc1c53..853417be448efe92d2f168bdfdfb3510334a3fe8 100644 --- a/docs/html/upgrading.html +++ b/docs/html/upgrading.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/useradmin.html b/docs/html/useradmin.html index 8639ca6a529ee9be08fee24d15bc742537d41a8e..6b184275144a43782845a0108722ddd9b75ffbca 100644 --- a/docs/html/useradmin.html +++ b/docs/html/useradmin.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/userpreferences.html b/docs/html/userpreferences.html index 1fb6ca04dbcae46b137de19ce0742cf2dfa8f0b0..20e354d76f6679c837f4d126f243d8788f9a8bd8 100644 --- a/docs/html/userpreferences.html +++ b/docs/html/userpreferences.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/using-intro.html b/docs/html/using-intro.html index 3a1f11d99bb097d246459a110915b0ffda2cb154..96d44a71e6d3c4acfd9e321e61923ad05855b0fb 100644 --- a/docs/html/using-intro.html +++ b/docs/html/using-intro.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/using.html b/docs/html/using.html index b047fac0d067acbfd5aef9dde84957d576f045e8..d0bcdb8625061ed98a2bd2a2fe01c52dc84d73d7 100644 --- a/docs/html/using.html +++ b/docs/html/using.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="PREVIOUS" @@ -36,8 +35,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -171,7 +169,7 @@ HREF="hintsandtips.html" ><DL ><DT >6.9.1. <A -HREF="hintsandtips.html#AEN2386" +HREF="hintsandtips.html#AEN2377" >Autolinkification</A ></DT ><DT @@ -263,7 +261,7 @@ HREF="whining.html#whining-query" ></DT ><DT >6.13.4. <A -HREF="whining.html#AEN2552" +HREF="whining.html#AEN2544" >Saving Your Changes</A ></DT ></DL diff --git a/docs/html/versions.html b/docs/html/versions.html index ad6f3d2b71b35774171ad2438c92c8b1568591d8..f5699f2fccde87735a4efaf09e0d8a9d06e75bca 100644 --- a/docs/html/versions.html +++ b/docs/html/versions.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/voting.html b/docs/html/voting.html index d54877fd6650458b3590f52b8893698d3c6de26f..a7c4ddb91abc08ec155fbb179208615a3e6aa680 100644 --- a/docs/html/voting.html +++ b/docs/html/voting.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR diff --git a/docs/html/whining.html b/docs/html/whining.html index 76fafbb34a00cb332ddc182941b017f4b520b21b..427fadde9add2b4ae30c95974680c655c80ed0ed 100644 --- a/docs/html/whining.html +++ b/docs/html/whining.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -425,7 +423,7 @@ CLASS="section" ><H2 CLASS="section" ><A -NAME="AEN2552" +NAME="AEN2544" >6.13.4. Saving Your Changes</A ></H2 ><P diff --git a/docs/html/x3196.html b/docs/html/x3190.html similarity index 96% rename from docs/html/x3196.html rename to docs/html/x3190.html index 045db07e945e7aaff4c8b6a962abce9cb6f55a62..522432b172b8d197c723febed16b450f8c99d5ba 100644 --- a/docs/html/x3196.html +++ b/docs/html/x3190.html @@ -7,8 +7,7 @@ NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK REL="HOME" -TITLE="The Bugzilla Guide - 2.20 - Development +TITLE="The Bugzilla Guide - 2.20.1 Release" HREF="index.html"><LINK REL="UP" @@ -39,8 +38,7 @@ CELLSPACING="0" ><TH COLSPAN="3" ALIGN="center" ->The Bugzilla Guide - 2.20 - Development +>The Bugzilla Guide - 2.20.1 Release</TH ></TR ><TR @@ -77,7 +75,7 @@ CLASS="section" ><H1 CLASS="section" ><A -NAME="AEN3196" +NAME="AEN3190" >B.9. Some users are constantly being forced to relogin</A ></H1 ><P diff --git a/docs/images/CVS/Entries b/docs/images/CVS/Entries index 0e0fdea65e2d6c632c65d6e305695ced33c1f791..8b58e163087b663be18559c77087483f152d7b61 100644 --- a/docs/images/CVS/Entries +++ b/docs/images/CVS/Entries @@ -1,7 +1,7 @@ -/bzLifecycle.png/1.1.10.1/Tue Jul 12 10:30:44 2005/-kb/TBUGZILLA-2_20 -/bzLifecycle.xml/1.1.10.1/Tue Jul 12 10:30:44 2005//TBUGZILLA-2_20 -/caution.gif/1.2/Wed May 8 21:16:44 2002/-kb/TBUGZILLA-2_20 -/note.gif/1.1/Thu Aug 23 14:30:18 2001/-kb/TBUGZILLA-2_20 -/tip.gif/1.2/Wed May 8 21:16:44 2002/-kb/TBUGZILLA-2_20 -/warning.gif/1.2/Wed May 8 21:16:44 2002/-kb/TBUGZILLA-2_20 +/bzLifecycle.png/1.1.10.2/Fri Oct 14 04:44:13 2005/-kb/TBUGZILLA-2_20_1 +/bzLifecycle.xml/1.1.10.1/Tue Jul 12 10:30:44 2005//TBUGZILLA-2_20_1 +/caution.gif/1.2/Wed May 8 21:16:44 2002/-kb/TBUGZILLA-2_20_1 +/note.gif/1.1/Thu Aug 23 14:30:18 2001/-kb/TBUGZILLA-2_20_1 +/tip.gif/1.2/Wed May 8 21:16:44 2002/-kb/TBUGZILLA-2_20_1 +/warning.gif/1.2/Wed May 8 21:16:44 2002/-kb/TBUGZILLA-2_20_1 D/callouts//// diff --git a/docs/images/CVS/Tag b/docs/images/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/docs/images/CVS/Tag +++ b/docs/images/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/docs/images/bzLifecycle.png b/docs/images/bzLifecycle.png index f2bf2c5c60db1a26e9157e30510f086d8b080bf9..33ecc77b48f89346eec6a765558e07ce019ec19f 100644 Binary files a/docs/images/bzLifecycle.png and b/docs/images/bzLifecycle.png differ diff --git a/docs/images/callouts/CVS/Entries b/docs/images/callouts/CVS/Entries index 6f70ee799186dc2af58086ff79c27f9f5530778f..ee46ba3def2bcb0447cc48a3391316b37b66daa8 100644 --- a/docs/images/callouts/CVS/Entries +++ b/docs/images/callouts/CVS/Entries @@ -1,4 +1,4 @@ -/1.gif/1.1/Sat May 17 01:27:53 2003/-kb/TBUGZILLA-2_20 -/2.gif/1.1/Sat May 17 01:27:54 2003/-kb/TBUGZILLA-2_20 -/3.gif/1.1/Thu Jul 3 20:23:39 2003/-kb/TBUGZILLA-2_20 +/1.gif/1.1/Sat May 17 01:27:53 2003/-kb/TBUGZILLA-2_20_1 +/2.gif/1.1/Sat May 17 01:27:54 2003/-kb/TBUGZILLA-2_20_1 +/3.gif/1.1/Thu Jul 3 20:23:39 2003/-kb/TBUGZILLA-2_20_1 D diff --git a/docs/images/callouts/CVS/Tag b/docs/images/callouts/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/docs/images/callouts/CVS/Tag +++ b/docs/images/callouts/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/docs/pdf/Bugzilla-Guide.pdf b/docs/pdf/Bugzilla-Guide.pdf index f4a5c4f130ac40b9666a18d31c9d9ac6ce520590..eb9a06b2e67eb3d2452c230e3207d7599c46b894 100644 --- a/docs/pdf/Bugzilla-Guide.pdf +++ b/docs/pdf/Bugzilla-Guide.pdf @@ -3,7 +3,7 @@ << /S /GoTo /D (1.0) >> endobj 4 0 obj -(The Bugzilla Guide 2.20 Development Release) +(The Bugzilla Guide 2.20.1 Release) endobj 5 0 obj << /S /GoTo /D (2.0) >> @@ -264,100 +264,100 @@ endobj (2.2.4.2. Microsoft Internet Information Services) endobj 177 0 obj -<< /S /GoTo /D (6.7.10.16.3) >> +<< /S /GoTo /D (6.7.11.2) >> endobj 180 0 obj -(2.2.4.3. AOL Server) +(2.2.5. Bugzilla) endobj 181 0 obj -<< /S /GoTo /D (6.7.11.2) >> +<< /S /GoTo /D (6.8.1) >> endobj 184 0 obj -(2.2.5. Bugzilla) +(2.3. Optional Additional Configuration) endobj 185 0 obj -<< /S /GoTo /D (6.8.1) >> +<< /S /GoTo /D (6.8.12.2) >> endobj 188 0 obj -(2.3. Optional Additional Configuration) +(2.3.1. Bug Graphs) endobj 189 0 obj -<< /S /GoTo /D (6.8.12.2) >> +<< /S /GoTo /D (6.8.13.2) >> endobj 192 0 obj -(2.3.1. Bug Graphs) +(2.3.2. Dependency Charts) endobj 193 0 obj -<< /S /GoTo /D (6.8.13.2) >> +<< /S /GoTo /D (6.8.14.2) >> endobj 196 0 obj -(2.3.2. Dependency Charts) +(2.3.3. The Whining Cron) endobj 197 0 obj -<< /S /GoTo /D (6.8.14.2) >> +<< /S /GoTo /D (6.8.15.2) >> endobj 200 0 obj -(2.3.3. The Whining Cron) +(2.3.4. Whining) endobj 201 0 obj -<< /S /GoTo /D (6.8.15.2) >> +<< /S /GoTo /D (6.8.16.2) >> endobj 204 0 obj -(2.3.4. Whining) +(2.3.5. Patch Viewer) endobj 205 0 obj -<< /S /GoTo /D (6.8.16.2) >> +<< /S /GoTo /D (6.8.17.2) >> endobj 208 0 obj -(2.3.5. Patch Viewer) +(2.3.6. LDAP Authentication) endobj 209 0 obj -<< /S /GoTo /D (6.8.17.2) >> +<< /S /GoTo /D (6.8.18.2) >> endobj 212 0 obj -(2.3.6. LDAP Authentication) +(2.3.7. Serving Alternate Formats with the right MIME type) endobj 213 0 obj -<< /S /GoTo /D (6.8.18.2) >> +<< /S /GoTo /D (6.9.1) >> endobj 216 0 obj -(2.3.7. Serving Alternate Formats with the right MIME type) +(2.4. OSSpecific Installation Notes) endobj 217 0 obj -<< /S /GoTo /D (6.9.1) >> +<< /S /GoTo /D (6.9.19.2) >> endobj 220 0 obj -(2.4. OSSpecific Installation Notes) +(2.4.1. Microsoft Windows) endobj 221 0 obj -<< /S /GoTo /D (6.9.19.2) >> +<< /S /GoTo /D (6.9.19.16.3) >> endobj 224 0 obj -(2.4.1. Microsoft Windows) +(2.4.1.1. Win32 Perl) endobj 225 0 obj << /S /GoTo /D (6.9.19.17.3) >> endobj 228 0 obj -(2.4.1.1. Win32 Perl) +(2.4.1.2. Perl Modules on Win32) endobj 229 0 obj << /S /GoTo /D (6.9.19.18.3) >> endobj 232 0 obj -(2.4.1.2. Perl Modules on Win32) +(2.4.1.3. Code changes required to run on Win32) endobj 233 0 obj << /S /GoTo /D (6.9.19.19.3) >> endobj 236 0 obj -(2.4.1.3. Code changes required to run on win32) +(2.4.1.4. Serving the web pages) endobj 237 0 obj << /S /GoTo /D (6.9.19.20.3) >> endobj 240 0 obj -(2.4.1.4. Serving the web pages) +(2.4.1.5. Sending Email) endobj 241 0 obj << /S /GoTo /D (6.9.20.2) >> @@ -1647,11 +1647,12 @@ endobj << /S /GoTo /D [1098 0 R /Fit ] >> endobj 1100 0 obj << -/Length 210 +/Length 182 /Filter /FlateDecode >> stream -xڍP�n�@����ܳ/w����Ĉn�:D�HI�T`��qH�:TU���z�{�&�ZB(N����c(,tʬ�7��=k�i�l��Ca���;�����^M�Ef��{+�!W�%��Kw;�};M��q7fF�S������Ӑ?��{��E��W{�{,�m�s��G������pT���_��$U���F��5=/�VG�$����Rdendstream +xڍP� +�0��7�C�ܥ�5kA��M��Zh'��כ�""rû�=���NC �b�Gv�c��KL�Ѫ(�C���/��F�WԇC�͎ p��!\�Zm@�Ff�p9���R���=�ah�����J�Y#-�!�������d�s����Ζ�2B�t�q�ɶ���ZEYaE�wO��Hendstream endobj 1098 0 obj << /Type /Page @@ -1670,21 +1671,19 @@ endobj /D [1098 0 R /XYZ 71.731 718.306 null] >> endobj 2 0 obj << -/D [1098 0 R /XYZ 351.709 667.995 null] +/D [1098 0 R /XYZ 512.21 700.222 null] >> endobj 1099 0 obj << /Font << /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1109 0 obj << -/Length 538 +/Length 525 /Filter /FlateDecode >> stream -xڍT=��0��+<�@�Hr䏎�k�t(��[���V ��~}�璢C�A�#�H>ҡ �MJ��VcV�w$���1�P�q�?��K\Wy��1<5��W�'5��<iN�$����4��2�XY����I���:vё���"F��Y���79��,��r����W� ҖiI�Q�k��e<^!������NK����{�8�I�_���i4��B$#�g��rr�-qU���h ��(��>��jWW���Z��t�m�| -��1e�}f�h�K��j,��ȡ��g�90�� -�8��ڼ�J,��H}֣�Y; ���e+����7�NA�N��R���z�A�h�zM�g� d�r6��\D���Ye�<`��i����L9�߽��V�'<�Q�}�JO������X�5�hl��Uk�dEEЛ[<��6~zsu�@�g�mđ���1��A�� ��1�)T�L�l|��1:w{~����D�8���? '�������rIa�8*��${W�[��v��1�*��4�o=~Ň -W����?*endstream +xڍT���0��*% �I�N�H�@�E�.IAKԁ�0H*���3�P>����f���,��cA�H���+��,h� z���H�����g�%��$�^���O��Ty�ݭ-I��A�~�AF1/��e���i��nc�1>�D,�0T��I +-���W�Q�k� f�TШ�?]!<��e�9*h(�lal&�HE�����Q��HNiSsz�-HYe~�QCX����q��Ю�6��3���U�o���ZO����F�����Wm$00{��>���(+Þ��ȧ�Ă:�#�Y�Z��$���G����t427��!z��%b4��ia�d��(�P�`do��p�*���&��aؖV��/?g�A���h��Ժ9������u���%���P��~|yQ�ڠ�lJ=��4�1 Q�m��l6и�[i_��$[AL�4�u|��:�Ԋ��y�}uV��|?��f�����ЌƜ?���%�U��ӑm���v`2�y�d�X:|�o��dӒ���ᅤ?<�$endstream endobj 1108 0 obj << /Type /Page @@ -1701,7 +1700,7 @@ endobj /ProcSet [ /PDF /Text ] >> endobj 1115 0 obj << -/Length 56592 +/Length 56611 /Filter /FlateDecode >> stream @@ -1791,112 +1790,88 @@ Z Z�Q��&JAk9JQ�D)hm G)�:��.@�R�5Q Z�Q��&JAk9JQ�D)hm F)F�(����(E)G����q����RP�@�R�5Q Z�Q���(�������E)x��|��q�r|�%J�������q����(�����o��;���_����(O����?���?�(o���3�/ہ�ϗ�|����v>���e;�,�lG9��6�_�c��e;d]���e��v��@~َ��kBk�kR�tMhm wM�:�&�.@5]Z�]���kBk�kR�tMhm wM�:�&�.@5]Z�]���kBk�kR�tMhm wM�:�&�.@Ꚕs����]��� ���I9�5����5 �k� -�IY�5����5)k�&�6��&eMׄ�r�d��k"��IY�5����5)k�&�6��&eMׄ�r�d��k"��IY�5����5)k�&�6��&eMׄ�b�d����8요rtM�,wMʙ� � �IY�5����5��Ⱥ��kR�tMhm wMʚ� � �IY�5����5��Ⱥ��kR�tMhm wMʚ� � �IY�5����5��Ⱥ��kR�tMhm wMʚ� � ĮIIGׄ��a�d��H�83]J�]���kBk�kR�tMhm wM�:�&�.@5]Z�]���kBk�kR�tMhm wM�:�&�.@5]Z�]���kBk�kR�tMhm wM�z����kR�tMhm wMʚ� � ĮIIGׄ��q�d��k"��IY�5����5)k�&�6��&eMׄ�r�d��k"��IY�5����5)k�&�6��&eMׄ�r�d��k"��IY�5����5)k�&�6��&eMׄ�r�d��k"��IY�5����5)���Y83]J�]��ή����&eMׄ�rפ����@5]Z�]��ή����&eMׄ�rפ����@5]Z�]��ή����&eMׄ�rפ����@5]Z�]��ή���&%]:�]�r�kBi�kR�tMhm wM�:�&�.@5]Z�]���kBk�kR�tMhm wM�z����kR�tMhm wMʚ� � �IY�5����5��Ⱥ��kR�tMhm wMʚ� � �IY�5����5i�&r6�&�]*�]�r�kBi�kR�tMhm wM�:�&�.@[�5�EF���"�]��E����<�����]S�\����5����w�?¦�����W�]������Ǚ�?�}�\��A����YG���b�㬣�ak��q�Q����X�(kj�.@�}�u�>lm �>�:j�6kg�[�������Ms��ym鿢!9�@������p��v��L<�C�Ŋ�!ŒO�}'*��d�ȅřd���� ���;S��:��q�}X�A�}��jV{k��ڇ���G��}P�P�8�[�����><�>,��>�\��=���Qw�C���ǩ��a���q�}X�A�}��jV{k���Aub���U��ڃX�8u�>�� �>N]��=���RS��:��q�}X�A�}��jV{k��ڇ���G���A���q��a���q�}�A�}��jV{k���Aub���U��ڃX�8u�>�� �>N]��=���RS��:��q�}X�A�}��jV{k��ڇ���G��}P�X�8u�>�� �>N]��=H��CO��5G��"W�d�a���U�0ڃX�8u�>�� �>N]��=���RS��:��q�}X�A�}��jV{k��ڇ���G��}P�X�8u�>�� �>N]��=���SW��jb�c�]��:��q�}X�A�}��jV{�j��j6kke��Atb���U��ڃX�8u�>�� �>N]��=���RS��:��q�}X�A�}��jV{k��ڇ���G��}P�X�8u�>�� �>N]��=���SW��jb����>��A�}��jV{�j��j6kkg�ڇ���G��}P�X�8u�>�� �>N]��=���SW��jb����>��A�}��jV{k��ڇ���ǩ��a���QjjT� �>N]��=���SW��jb���U��ڃX�(5��c�j��j6kkg�ڇ���ǩ��a���QjjT� �>N]��=���SW��jb���U��ڃX�u�>��A�}��jV{k��ڇ���ǩ��a���QjjT� �>N]��=���SW��jb���U��ڃT�(t�>h��>�<�>L��>�\��=���SW��jb����>��A�} PQ�?��C�r����}�bt������G�X��Ϝk��U��:��?���|��������#���>��j=����}�+�t��j�s�:!z���˧��uB�<���b�902��H�)5��=ȁ�R�ڃ)5��=ȁ�Qw`D���H� �P�A�������H� �P�A���#R� FJM`�jr`��F�� FJM`�jr`d��:)0R�)0B�r#��Ś��H� ��A��z�@��)5��=ȁ�R�ڃ)5��=ȁ�Qw`D���H� �P�A�������H� �P�A���#R� FJM`�jr`��F�� FJM`�jb`d�Fd�F�\��5ǁ�2!ڃ)5��=ȁ�Qw`D���H� �P�A�������H� �P�A���#R� FJM`�jr`��F�� FJM`�jr`d��:90Rj#T{�#�&0B�10R� -�Ь9����Ȟ��H� ��A�������H� �P�A���#R� FJM`�jr`��F�� FJM`�jr`d��:90Rj#T{�#�&0B�90Rj#T{�#��#P� FJM`�jr`��F�� F -]��5ǁ�1w`D���H� �P�A�������H� �P�A���#R� FJM`�jr`��F�� FJM`�jr`d��:90Rj#T{�#�&0B�90Rj#T{�#�����1ȁ�R�ڃ)tFh�F�L`�hr`d��:90Rj#T{�#�&0B�90Rj#T{�#�����1ȁ�R�ڃ)5��=ȁ�R�ڃuF��A�������H� �P�A�������Ȩ;0"ub`���Ys)3��=ȁ�R�ڃuF��A�������H� �P�A�������H����9ȁ�R�ڃ)5��=ȁ�R�ڃuF��A�������H� �P�A�������Ƞ ���9��#$k�#e&0B�90Rj#T{�#�����1ȁe1&0�Y��Ń<] ��?���7�wo|������=Ͽ4���������|&��C�L���N��߾�{�ݗ�?�������O?=G����}�t�ݟ�}����燙O|t����f@�a�@/ - R� @JM�jr��@�� @JM�jrd�]��:��Rj - T{� ���B���Rj - T{� ����1��RS��ڃ\�)5�=��RS��ڃ\�u@��A*��y*�P��H���B���Rf - D{� �� P� @JM�jr��@�� @JM�jrd�]��:��Rj - T{� ���B���Rj - T{� ����1��RS��ڃ\�)5�=��RS��ڃX�4�=��"W�d�q��@�� @JM�jrd�]��:��Rj - T{� ���B���Rj - T{� ����1��RS��ڃ\�)5�=��RS��ڃ\�u@��A.�����H�)�P�A,�� - 4k C��"���Rf - D{� ���B���Rj - T{� ����1��RS��ڃ\�)5�=��RS��ڃ\�u@��A.�����H�)�P�A.�����H���9��RS��ڃ\�)5�=��BW�f�qd�]�:��Rj - T{� ���B���Rj - T{� ����1��RS��ڃ\�)5�=��RS��ڃ\�u@��A.�����H�)�P�A.�����Ȩ��"ur��@�� @ -]�5��2S�!ڃ\�u@��A.�����H�)�P�A.�����Ȩ��"ur��@�� @JM�jr��@�� @F��c� ���B���Rj - T{� ���B���2�.�H�X�)t@h�@�L�hr��@�� @F��c� ���B���Rj - T{� ���B�����ur��@�� @JM�jr��@�� @F��c� ���B���Rj +�IY�5����5)k�&�6��&eMׄ�r�d��k"��IY�5����5)k�&�6��&eMׄ�r�d��k"��IY�5����5)k�&�6��&eMׄ�b�d����8요rtM�,wMʙ� � �IY�5����5��Ⱥ��kR�tMhm wMʚ� � �IY�5����5��Ⱥ��kR�tMhm wMʚ� � �IY�5����5��Ⱥ��kR�tMhm wMʚ� � ĮIIGׄ��a�d��H�83]J�]���kBk�kR�tMhm wM�:�&�.@5]Z�]���kBk�kR�tMhm wM�:�&�.@5]Z�]���kBk�kR�tMhm wM�z����kR�tMhm wMʚ� � ĮIIGׄ��q�d��k"��IY�5����5)k�&�6��&eMׄ�r�d��k"��IY�5����5)k�&�6��&eMׄ�r�d��k"��IY�5����5)k�&�6��&eMׄ�r�d��k"��IY�5����5)���Y83]J�]��ή����&eMׄ�rפ����@5]Z�]��ή����&eMׄ�rפ����@5]Z�]��ή����&eMׄ�rפ����@5]Z�]��ή���&%]:�]�r�kBi�kR�tMhm wM�:�&�.@5]Z�]���kBk�kR�tMhm wM�z����kR�tMhm wMʚ� � �IY�5����5��Ⱥ��kR�tMhm wMʚ� � �IY�5����5i�&r6�&�]*�]�r�kBi�kR�tMhm wM�:�&�.@[�5�EF���"�]��E����<�����]S�\����5����w�?¦�����W�]������Ǚ�?�}�\��A����YG���b�㬣�ak��q�Q����X�(kj�.@�}�u�>lm �>�:j�6kg�[�������Ms��ym��a�@&���Pmww8⨏��8�x�S�U���R�h;ܿ��g?��ra�Le���"d�>�u��}P�X�8u�>�� �>N]��=���SW��jb����>��A�}����a�r�j�jkkg�ڇ���Ǩ��!ub���U��ڃX�8u�>�� �>N]��=���RS��:��q�}X�A�}��jV{k��ڇ���G��}P�X�8u�>�� �>N]��=���SW��jR���U���sT�8�T�0YsX�8s�>�� �>N]��=���RS��:��q�}X�A�}��jV{k��ڇ���G��}P�X�8u�>�� �>N]��=���SW��jb����>��A�}��jV{k��ڇ���ǡ�ڇ͚��G���A���q�}�A�}��jV{k��ڇ���G��}P�X�8u�>�� �>N]��=���SW��jb����>��A�}��jV{k��ڇ���ǩ��a���1�}H��X�8u�>�� �>N]��=H��CO��5���2S� :��q�}X�A�}��jV{k��ڇ���G��}P�X�8u�>�� �>N]��=���SW��jb����>��A�}��jV{k��ڇ���ǩ��a���QjjT� �>N]��=H��CO��5���3W��hb����>��A�}��jV{k��ڇ���ǩ��a���QjjT� �>N]��=���SW��jb���U��ڃX�(5��ck��ڇ���ǩ��a���q�}X�A�}����1H��CO��5���3W��hb���U��ڃX�(5��ck��ڇ���ǩ��a���q�}X�A�}��kR� �>N]��=���SW��jb���U��ڃX�(5��ck��ڇ���ǩ��a���q�}X�A�}�j4{�jG�j&kkg�ڇ���ǩ��a���QjjT� �>��ڇ���C�_�j�_��������������Y�9�>O��9u>�~������/��ϻ�G�_O}���z�+���W��������:!���3�����^��_'�hr`d��:90Rj#T{�#�&0B�90Rj#T{�#�����1ȁ�R�ڃ)5��=ȁ�R�ڃuF��A�������H� �P�A�������Ȩ;0"uR`��S`���F +\��5ǁ�2!ڃ ��:90Rj#T{�#�&0B�90Rj#T{�#�����1ȁ�R�ڃ)5��=ȁ�R�ڃuF��A�������H� �P�A�������Ƞ ���9��#$k�#e&0B�90Rj#T{�#�����1ȁ�R�ڃ)5��=ȁ�R�ڃuF��A�������H� �P�A�������Ȩ;0"ur`��F�� FJM`�jb`���Ys2��=ǁ�2!ڃ)5��=ȁ�R�ڃuF��A�������H� �P�A�������Ȩ;0"ur`��F�� FJM`�jr`��F�� FB=F��A�������H� �P�A��#4k�#c����1ȁ�R�ڃ)5��=ȁ�R�ڃuF��A�������H� �P�A�������Ȩ;0"ur`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�10R� +�Ь9�������Ȩ;0"ur`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�902��H�)5��=ȁ�R�ڃ)5��=ȁ�Qw`D���H�+0B��80Rf#D{�#�&0B�902��H�)5��=ȁ�R�ڃ)5��=ȁ�Pρ�s�#�&0B�90Rj#T{�#�&0B�902��H�)5��=ȁ�R�ڃ)5��=���A��s)rFH�F�L`�hr`��F�� FF݁�c�#�bL`�_dF_��j`t������xs���O���y��y8�<�?���3 ��2���9������_?~���R�|;G?~��?��t����`���������>���of@�f�@/�@��A.�����H�)�P�A.�����Ȩ��"ur��@�� @JM�jr��@�� @F��c� ���B���Rj + T{� ���B���2�.�H�T�)�T��x9��W�b�q��@�� @B=@��A.�����H�)�P�A.�����Ȩ��"ur��@�� @JM�jr��@�� @F��c� ���B���Rj T{� ���B���2h - 2{ E�ɚ�H�)��A.�����Ȩ��"urt=Qq>�*�.�zt�A��Ő��<_1t�-��~����������#���v�?���������������Ͽ�<����e<�]~������/�����_1��ˇ.��O���ps���k�R]�eu^Q�n��z��j^Q�C�'��>��ڃW���֪�Ͼ��������p���G��+��gp8H���7����z��j^Qo><�_��g�P{�u��ps���nF]�eu^Q�n>|���o�=xE}��}~5C��Ͼ�����cx�\J=}� �_�N��N�gQ��W����A��Ͼ�����c�� ��g�P{��z�1�z��j���?�w|��1xE��yxz���o�=xE}�9<Z���7���>�<�_�o}ì�������� '�et^Q�?���>��ڃW������TO�}C��+��p'��g�P{�u���c����,�c��z�1��K���7�������j^Q�?�wV=}� �_W�7��os볬��+����G����j^Qn�}���o�=xE}�yo�Wx}� ��|����^���>�����V=}� ����oV���a4k��dX�91�h���#��A>1�ԜA��ĈRsb��#J͉T{�O�u�!u�����=�'F��#�� �QjN��ڃ|bĨ���c�O�(5'FP�A>1�ԜA��ĈRsb��#F�'FH�tbD��#(^���#(��QfN� ڃ|bD��#��A>1�ԜA��ĈRsb��#J͉T{�O�u�!u�����=�'F��#�� �QjN��ڃ|bĨ���c�O�(5'FP�A>1�ԜA��ĈRsb��#͉2{O�(r�A���Ĉ2sb��#J͉T{�O�u�!u�����=�'F��#�� �QjN��ڃ|bĨ���c�O�(5'FP�A>1�ԜA��ĈRsb��#F�'FH�|bD�91�j�����=�'F�N��YsxbĐ91Bd��e���=�'F��#�� �QjN��ڃ|bĨ���c�O�(5'FP�A>1�ԜA��ĈRsb��#F�'FH�|bD�91�j�����=�'F��#�� �����s�O�(5'FP�A>1�ԜA��ĈB4k�O�s�!t�����=�'F��#�� �QjN��ڃ|bĨ���c�O�(5'FP�A>1�ԜA��ĈRsb��#F�'FH�|bD�91�j�����=�'F��#�� �1�>1B��#J͉T{O�(t�A���Ĉ2sb��#F�'FH�|bD�91�j�����=�'F��#�� �1�>1B��#J͉T{�O�(5'FP�A>1�ԜA��ĈQ��R� �QjN��ڃ|bD�91�j�����=�'F��O��:�ĈB4k�O�(3'F�A>1�ԜA��ĈQ��R� �QjN��ڃ|bD�91�j�����=�'F�z>1��#J͉T{�O�(5'FP�A>1�ԜA��ĈQ��R� �QjN��ڃ|bD�91�j�����=�'F�#d��Q�:1�d��e���=�'F��#�� �1�>1B��#x1C��Y'F.������;�d�����5�/^�ɑ��:3��/?|��uk��#w��d�� ���g��r������-x�p���1�g����� �-Pj��ڃ|�@�9[�j������:�l�Rs����J��T{��(5gP�A>[`�}���1�g����� �-Pj��ڃx�@��l�5�g���:�l�Rs����J��T{��(5gP�A>[`�}���1�g����� �-Pj��ڃ|�@�9[�j������A>[�Ԝ-@��l�Rs����J��T{��u�- u����l�=�g���Ys|�@�9[�h������A>[�Ԝ-@��l�Rs����J��T{��u�- u����l�=�g����� �-Pj��ڃ|����l�c��(5gP�A>[�Ԝ-@��l�Rs����F�gH�t�@���(^�����(��-Pf� ڃ|�@����A>[�Ԝ-@��l�Rs����J��T{��u�- u����l�=�g����� �-Pj��ڃ|����l�c��(5gP�A>[�Ԝ-@��l�Rs���ij��2{�(r�-@���l�2s����J��T{��u�- u����l�=�g����� �-Pj��ڃ|����l�c��(5gP�A>[�Ԝ-@��l�Rs����F�gH�|�@�9[�j����l�=�g���Ysx���9[@d���e�l�=�g����� �-Pj��ڃ|����l�c��(5gP�A>[�Ԝ-@��l�Rs����F�gH�|�@�9[�j����l�=�g����� �-��l�s��(5gP�A>[�Ԝ-@��l�B��4k��s�- t����l�=�g����� �-Pj��ڃ|����l�c��(5gP�A>[�Ԝ-@��l�Rs����F�gH�|�@�9[�j����l�=�g����� �-0�>[@��J��T{�(t�-@���l�2s����F�gH�|�@�9[�j����l�=�g����� �-0�>[@��J��T{��(5gP�A>[�Ԝ-@��l�Q��R� �-Pj��ڃ|�@�9[�j����l�=�g����:�l�B��4k��(3g�A>[�Ԝ-@��l�Q��R� �-Pj��ڃ|�@�9[�j����l�=�g�z>[���J��T{��(5gP�A>[�Ԝ-@��l�Q��R� �-Pj��ڃ|�@�9[�j����l�=�g��d��-P�:[�d���e�l�=�g����� �-0�>[@������� �l�Ń\?[p�A~�قۣ�t�g�gr��v�-�Ǐ_?����}:���|��������������/����@��������9N�g�q�ų^��_>�ɨ� ��JM��jb���'�Ys's�Ʉ�A����8��8Y���Q�A����8��8٨;N&ur����ɨ� ��JM��jr����ɨ� ��F�q2�c��d�&NF�9NVj�dT{��d�&NF�9N6ꎓI�'+5q2�=�q�BW��f�q����Ɉ� ��F�q2�c��d�&NF�9NVj�dT{��d�&NF�9N6ꎓI�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�����dR� ���<��(^�a���'�Xs'+3q2�=�q�P�q2�s��d�&NF�9NVj�dT{��d�&NF�9N6ꎓI�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�� �8�̞�8Y�+NF��8NVf�dD{��d�&NF�9N6ꎓI�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�����dR� ��JM��jr����ɨ� �� -]q2�5�q�!'�s'+3q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�����dR� ��JM��jr����ɨ� ��JM��jr�,�s���8Y���Q�A����8��8Y�+NF��8N6掓 �'+5q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�����dR� ��JM��jr����ɨ� ��JM��jr�l�'�:9NVj�dT{�d��8͚�8Y����A�����dR� ��JM��jr����ɨ� ��JM��jr�l�'�:9NVj�dT{��d�&NF�9NVj�dT{��d��8��1�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ�A����d4k��de&NF�9NVj�dT{��d��8��1�q�R'�ڃ'+5q2�=�q�R'�ڃ'�'�:9NVj�dT{��d�&NF�9NVj�dT{��d��8��1�q�R'�ڃ'+5q2�=�q�R'�ڃ'4q2�=�q�"W��d�q����Ɉ� ��דSvoo��������8����^�?�=��5����������߇���{��}��]�gνn�h��������_�z�o7�<������t-���X������Ѯc���(��1�Q�R�ڃ+5Q0�=�Q�BW�f�ql�:9 + 2{ E�ɚ�H�)��A.�����Ȩ��"ur��@�� @JM�jr��@�� @F��c� ���B���Rj + T{� ���B���2�.�H�\�)5�=��RS��ڃX�)t@h�@�LDd�q��@�� @JM�jr��@�� @F��c� ���B���Rj + T{� ���B���2�.�H�\�)5�=��RS��ڃ\�)5�=��P��s� ���B���Rj + T{ ��͚�Ș��"tr��@�� @JM�jr��@�� @F��c� ���B���Rj + T{� ���B���2�.�H�\�)5�=��RS��ڃ\�)5�=��QwD��H�)�P�A,�� + 4k� e��B���2�.�H�\�)5�=��RS��ڃ\�)5�=��QwD��H�)�P�A.�����H�)�P�A.��� R� @JM�jr��@�� @JM�jrd�]��:��R�*�Ь9.�����H�)�P�A.��� R� @JM�jr��@�� @JM�jr$�s��H�)�P�A.�����H�)�P�A.��� R� @JM�jr��@�� @JM�jbd�@d�@�\�5��2S�!ڃ\�)5�=��QwD���z�� + �"����"���_����{�������o��뙕���W���L>r�nW����~��w�n���_?~����=�]������W~���=��?~�;f����/��'w�p��{��/�R]�eu^Q�n��z��j^Q�C�'��>��ڃW���֪�Ͼ��������p���G��+��gp8H���7����z��j^Qo><�_��g�P{�u��ps���nF]�eu^Q�n>|���o�=xE}��}~4C��Ͼ�����cx�\J=}� �_�N��N�gQ��W����A��Ͼ�����c�� ��g�P{��z�1�z��j���?�w|��1xE��yxz���o�=xE}�9<Z���7���>�<�_��}ì�������� '�et^Q�?���>��ڃW������TO�}C��+��p'��g�P{�u���c����,�c��z�1��K���7�������j^Q�?�wV=}� �_W�7��os볬��+����G����j^Qn�}���o�=xE}�yo�[x}� �����cx/�Y�eu^Q�?�{��>��ڃW��[��^2�f��K���#�� �1�>1B��#J͉T{�O�(5'FP�A>1�ԜA��ĈQ��R� �QjN��ڃ|bD�91�j�����=�'F��O��:�ĈRsb��#J͉T{�O�(5'FP�A>1b�}b��1H'F�y:1����Q�:1�b��e���=�'F�z>1��#J͉T{�O�(5'FP�A>1�ԜA��ĈQ��R� �QjN��ڃ|bD�91�j�����=�'F��O��:�ĈRsb��#J͉T{�O�(5'FP�A<1bМ!���Ĉ"$k�O�(3'F�A>1�ԜA��ĈQ��R� �QjN��ڃ|bD�91�j�����=�'F��O��:�ĈRsb��#J͉T{�O�(5'FP�A>1b�}b��1�'F��#�� �QjN��ڃxbD����5�'F�#D��QfN� ڃ|bD�91�j�����=�'F��O��:�ĈRsb��#J͉T{�O�(5'FP�A>1b�}b��1�'F��#�� �QjN��ڃ|bD�91�j���O��:�ĈRsb��#J͉T{O�(t�A���Ĉ1��B� �QjN��ڃ|bD�91�j�����=�'F��O��:�ĈRsb��#J͉T{�O�(5'FP�A>1b�}b��1�'F��#�� �QjN��ڃ|bD�91�j���#��A>1�ԜA��ĈB4k�O�(3'F�A>1b�}b��1�'F��#�� �QjN��ڃ|bD�91�j���#��A>1�ԜA��ĈRsb��#J͉T{�O�u�!u�����=�'F��#�� �QjN��ڃ|bĨ���cO�(t�A���Ĉ2sb��#J͉T{�O�u�!u�����=�'F��#�� �QjN��ڃ|bD��#��A>1�ԜA��ĈRsb��#J͉T{�O�u�!u�����=�'F��#�� �QjN��ڃxbĠ91Bf��E�#H��QfN� ڃ|bD�91�j���#��A>1�3ĉ�"�����~b����/�{��O��%��392rXgF~�������n��z������/��w�+7F���~9[p����-x�=�l�c��(5gP�A>[�Ԝ-@��l�Rs����B=�-�u����l�=�g����� �-Pj��ڃ|����l�c��(5gP�A>[�Ԝ-@��l�B��4k��s�- t����l�=�g����� �-Pj��ڃ|����l�c��(5gP�A>[�Ԝ-@��l�Rs����F�gH�|�@�9[�j����l�=�g����� �-0�>[@��J��T{�(t�-@���l�2s����F�gH�|�@�9[�j����l�=�g����� �-0�>[@��J��T{��(5gP�A>[�Ԝ-@��l�Q��R� �-Pj��ڃ|�@�9[�j����l�=�g����:�l�2OgP�ó +\gP�9>[�̜-@��l�P�g@��|�@�9[�j����l�=�g����� �-0�>[@��J��T{��(5gP�A>[�Ԝ-@��l�Q��R� �-Pj��ڃ|�@�9[�j����l�=�g��d��-P�:[�d���e�l�=�g����� �-0�>[@��J��T{��(5gP�A>[�Ԝ-@��l�Q��R� �-Pj��ڃ|�@�9[�j����l�=�g����:�l�Rs����J��T{�(t�-@���l�!s��Ȟ����D{��(5gP�A>[�Ԝ-@��l�Q��R� �-Pj��ڃ|�@�9[�j����l�=�g����:�l�Rs����J��T{��(5gP�A>[ ���P� �-Pj��ڃ|�@�9[�j�����h��-0�>[@��J��T{��(5gP�A>[�Ԝ-@��l�Q��R� �-Pj��ڃ|�@�9[�j����l�=�g����:�l�Rs����J��T{��(5gP�A>[`�}���1�g����� �-P�:[�f���e�l�=�g����:�l�Rs����J��T{��(5gP�A>[`�}���1�g����� �-Pj��ڃ|�@�9[�j������A>[�Ԝ-@��l�Rs����J��T{��u�- u�����h��-Pf� ڃ|�@�9[�j������A>[�Ԝ-@��l�Rs����J��T{���|���9�g����� �-Pj��ڃ|�@�9[�j������A>[�Ԝ-@��l�Rs����J��T{�4g��9<[��u��ɚ����D{��(5gP�A>[`�}���1�g��7g����_��ق�_�w�-�=�O�|�`}&gn�ق�������ۧ�����������O__��O7w���l�/t�y<�/^��;���]w�|�]���/��ɨ� ��JM��jb���'�Ys's�Ʉ�A����8��8Y���Q�A����8��8٨;N&ur����ɨ� ��JM��jr����ɨ� ��F�q2�c��d�&NF�9NVj�dT{��d�&NF�9N6ꎓI�'+5q2�=�q�BW��f�q����Ɉ� ��F�q2�c��d�&NF�9NVj�dT{��d�&NF�9N6ꎓI�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�����dR� ���<��(^�a���'�Xs'+3q2�=�q�P�q2�s��d�&NF�9NVj�dT{��d�&NF�9N6ꎓI�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�� �8�̞�8Y�+NF��8NVf�dD{��d�&NF�9N6ꎓI�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�����dR� ��JM��jr����ɨ� �� +]q2�5�q�!'�s'+3q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�����dR� ��JM��jr����ɨ� ��JM��jr�,�s���8Y���Q�A����8��8Y�+NF��8N6掓 �'+5q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�����dR� ��JM��jr����ɨ� ��JM��jr�l�'�:9NVj�dT{�d��8͚�8Y����A�����dR� ��JM��jr����ɨ� ��JM��jr�l�'�:9NVj�dT{��d�&NF�9NVj�dT{��d��8��1�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ�A����d4k��de&NF�9NVj�dT{��d��8��1�q�R'�ڃ'+5q2�=�q�R'�ڃ'�'�:9NVj�dT{��d�&NF�9NVj�dT{��d��8��1�q�R'�ڃ'+5q2�=�q�R'�ڃ'4q2�=�q�"W��d�q����Ɉ� ��דSvoo������˯qxw��=�p�t���uo_�u��n��>|���������P>s�u��?�ן�����뉿�ӄ���_���ӵ<w����~c��W����_�`R� G�JM�jr��D��� F� +]Q0�5�Q�1wL��(X���Q�A����(��(X���Q�A�����`R� G�JM�jr��D��� G�JM�jrl��:9 Vj�`T{��`�& F�9 -Vj�`T{��`��(��1�Q�R�ڃ+5Q0�=�Q�R�ڃuG���A����(��(X���Q�A����(��(ب; -&ur��D��� F� -]Q0�5�Q�2#ڃuG���A����(��(X���Q�A����(��(ب; -&ur��D��� G�JM�jr��D��� G�F�Q0�c��`�& +Vj�`T{��`��(��1�Q�R�ڃ+tE�h�G��L�hrl��:9 +Vj�`T{��`�& F�9 +Vj�`T{��`��(��1�Q�R�ڃ+5Q0�=�Q�R�ڃuG���A����(��(X���Q�A����(��(ب; +&uR��S���F� +\Q0�5�Q�2#ڃ��:9 Vj�`T{��`�& F�9 -6ꎂI�+��x9�Q�W�b�q��D��� G�B=G���A����(��(X���Q�A����(��(ب; +Vj�`T{��`��(��1�Q�R�ڃ+5Q0�=�Q�R�ڃuG���A����(��(X���Q�A����(��(ؠ����9����`$k��`e& +F�9 +Vj�`T{��`��(��1�Q�R�ڃ+5Q0�=�Q�R�ڃuG���A����(��(X���Q�A����(��(ب; +&ur��D��� G�JM�jb���Ys2Q0�=�Q�2#ڃ+5Q0�=�Q�R�ڃuG���A����(��(X���Q�A����(��(ب; +&ur��D��� G�JM�jr��D��� G�B=G���A����(��(X���Q�A����`4k��`c�(��1�Q�R�ڃ+5Q0�=�Q�R�ڃuG���A����(��(X���Q�A����(��(ب; &ur��D��� G�JM�jr��D��� G�F�Q0�c��`�& -F�9 -Vj�`T{��`�& F�1 -6h�`2{�`E�(ɚ�(X����A����(��(ب; +V节Ѭ9����(��(ب; &ur��D��� G�JM�jr��D��� G�F�Q0�c��`�& F�9 Vj�`T{��`�& F�9 -6ꎂI�+5Q0�=�Q�R�ڃ+tE�h�F��LLd�q��D��� G�JM�jr��D��� G�F�Q0�c��`�& -F�9 -Vj�`T{��`�& +6ꎂI�+5Q0�=�Q�R�ڃ+5Q0�=�Q�QwL��(X�+ +F��8 +Vf�`D{��`�& F�9 6ꎂI�+5Q0�=�Q�R�ڃ+5Q0�=�Q�P�Q0�s��`�& F�9 -Vj�`T{�`��(͚�(ؘ; -&tr��D��� G�JM�jr��D��� G�F�Q0�c��`�& -F�9 Vj�`T{��`�& F�9 -6ꎂI�+5Q0�=�Q�R�ڃ+5Q0�=�Q�QwL��(X���Q�A����`4k��`e& -F�9 -6ꎂI�+5Q0�=�Q�R�ڃ+5Q0�=�Q�QwL��(X���Q�A����(��(X���Q�A�����`R� G�JM�jr��D��� G�JM�jrl��:1 -V节Ѭ9����(��(X���Q�A�����`R� G�JM�jr��D��� G�JM�jr,�s��(X���Q�A����(��(X���Q�A�����`R� G�JM�jr��D��� G�JM�jbl�D�d�F��\Q0�5�Q�2#ڃS�*�`|�S|�_�8 -�=�Npx:`�Ϝ��|�����}��Z|{|�����Ž�Eٕ28�#=_>t�|W�W�z��jb��$���AL��GV{G��đ���ѩ+qd�1qTjGT� &�N]�#�=���SW��jb��ԕ8�ڃ�8*5�#�cG��đ���ѡ�đ͚��љ+qd�1qTjGT� &�N]�#�=���SW��jb��ԕ8�ڃ�8*5�#�cG��đ���ѩ+qd�1qt�JY�AL����1���SW��jb��ԕ8�ڃ�8:u%��� &�JM����љ�G/�(qt�)qd��0qt�J�AL��GR� &�N]�#�=���SW��jb��ԕ8�ڃ�8*5�#�cG��đ���ѩ+qd�1qt�JY�AL����1���SW��jb��ԕ8�ڃ�8:u%��� %� -]�#�=G��#O�#�5���3W��hb��ԕ8�ڃ�8*5�#�cG��đ���ѩ+qd�1qt�JY�AL����1���SW��jb��ԕ8�ڃ�8:u%��� &�JM����ѩ+qd�1qt�JY�AJzJ٬9J�G${Gg�đ���ѩ+qd�1qt�JY�AL����1���SW��jb��ԕ8�ڃ�8:u%��� &�JM����ѩ+qd�1qt�JY�AL��GV{G��đ�9���SW��jb��ԕ8�ڃ�8:��8�Ys�8*3�#�cG��đ���ѩ+qd�1qt�JY�AL����1���SW��jb��ԕ8�ڃ�8:u%��� &�JM����ѩ+qd�1qt�JY�AL��GV{G�&qDub��ԕ8�ڃ�8:��8�Ys�8:s%��� &�JM����ѩ+qd�1qt�JY�AL��GV{G�&qDub��ԕ8�ڃ�8:u%��� &�N]�#�=���R�8�:1qt�JY�AL��GV{G��đ���Q�IQ��8:��8�Ys�8:s%��� &�N]�#�=���R�8�:1qt�JY�AL��GV{G��đ���Ѩ;q$ub��ԕ8�ڃ�8:u%��� &�N]�#�=���R�8�:1qt�JY�AL��GV{G��đ���Q�+qD��(qt�)qd��0qt�J�AL��3�#?Ƿ�\>���Z�����������{zx:�����`��z�>��$q�[��?~�������z��O�IO��v.��ǭ�۫�~z����w����|�w�=�+��o�=xE}��}�C��>��ڃW����:u}�,�=��/��|�,�c�_֩��eY�A�~Y���e���ez�~Y6k�_V��~YD� ~��S��˲ڃ���NM|�jr|���ר� ��F��5�c��k�&�F�9�Vj�kT{��k�&�F�9�6ꎯI�_+5�5�=��R_�ڃ_+5�5�=��Qw|M���Z���Q�A����k4k��ke&�F�9�6ꎯI�_+5�5�=��R_�ڃ_+5�5�=��Qw|M���Z���Q�A��������Z���Q�A�����kR� ��JM|�jr|���ר� ��JM|�jr|m�_�:)�V�)�F�r�k��Ś��Z����A���z��A��_+5�5�=��R_�ڃ_+5�5�=��Qw|M���Z���Q�A��������Z���Q�A�����kR� ��JM|�jr|���ר� ��JM|�jb|m���d��\�5�5��2_#ڃ_+5�5�=��Qw|M���Z���Q�A��������Z���Q�A�����kR� ��JM|�jr|���ר� ��JM|�jr|m�_�:9�Vj�kT{��k�&�F�1�V芯Ѭ9�� ���Ȟ��Z����A��������Z���Q�A�����kR� ��JM|�jr|���ר� ��JM|�jr|m�_�:9�Vj�kT{��k�&�F�9�Vj�kT{��k���kP� ��JM|�jr|���ר� �� -]�5�5��1w|M���Z���Q�A��������Z���Q�A�����kR� ��JM|�jr|���ר� ��JM|�jr|m�_�:9�Vj�kT{��k�&�F�9�Vj�kT{��k�����1��R_�ڃ_+t��h����L|�hr|m�_�:9�Vj�kT{��k�&�F�9�Vj�kT{��k�����1��R_�ڃ_+5�5�=��R_�ڃ_u�פ�A��������Z���Q�A��������ڨ;�&ub|��_�Ys_+3�5�=��R_�ڃ_u�פ�A��������Z���Q�A��������Z����9��R_�ڃ_+5�5�=��R_�ڃ_u�פ�A��������Z���Q�A��������ڠ����9����k$k��ke&�F�9�������__<���j|}�9F|}x#��p������3���W|�߿|�ݧ�q�'�}������ˋ�������� -���{������o�{�Iׇ.���e~w����k�z��j^Qnn����RO�}C��+��͇��z��j^i�W/�s]��^���Q�A�땚���^���Q�A�덺�zR� ��JM]�jr]������ �� +6ꎂI�+5Q0�=�Q�R�ڃ+5Q0�=�Q�A��s+rE�H�G��L�hrL�����{�����Q���1��G���� O���s����ӯ�}���O�����/q���.�_����(�R'q��]~����+_�z��jb��$���AL��GV{G��đ���ѩ+qd�1qTjGT� &�N]�#�=���SW��jb��ԕ8�ڃ�8*5�#�cG��đ���ѡ�đ͚��љ+qd�1qTjGT� &�N]�#�=���SW��jb��ԕ8�ڃ�8*5�#�cG��đ���ѩ+qd�1qt�JY�AL����1���SW��jb��ԕ8�ڃ�8:u%��� &�JM����љ�G/�(qt�)qd��0qt�J�AL��GR� &�N]�#�=���SW��jb��ԕ8�ڃ�8*5�#�cG��đ���ѩ+qd�1qt�JY�AL����1���SW��jb��ԕ8�ڃ�8:u%��� %� +]�#�=G��#O�#�5���3W��hb��ԕ8�ڃ�8*5�#�cG��đ���ѩ+qd�1qt�JY�AL����1���SW��jb��ԕ8�ڃ�8:u%��� &�JM����ѩ+qd�1qt�JY�AJzJ٬9J�G${Gg�đ���ѩ+qd�1qt�JY�AL����1���SW��jb��ԕ8�ڃ�8:u%��� &�JM����ѩ+qd�1qt�JY�AL��GV{G��đ�9���SW��jb��ԕ8�ڃ�8:��8�Ys�8*3�#�cG��đ���ѩ+qd�1qt�JY�AL����1���SW��jb��ԕ8�ڃ�8:u%��� &�JM����ѩ+qd�1qt�JY�AL��GV{G�&qDub��ԕ8�ڃ�8:��8�Ys�8:s%��� &�JM����ѩ+qd�1qt�JY�AL��GV{G�&qDub��ԕ8�ڃ�8:u%��� &�N]�#�=���R�8�:1qt�JY�AL��GV{G��đ���Q�IQ��8:��8�Ys�8:s%��� &�N]�#�=���R�8�:1qt�JY�AL��GV{G��đ���Ѩ;q$ub��ԕ8�ڃ�8:u%��� &�N]�#�=���R�8�:1qt�JY�AL��GV{G��đ���Q�+qD��(qt�)qd��0qt�J�AL��3�#����k�#|�?�o���x�������o�x������|&��� +���O��o�����n���������;��ǭ�۫o?=��~��`���/��9�ww7�^�"���Ͼ��������O��z��j^QO��u�z�,�=��Uj�/�����:u�_�����:u�_�����:��~Y6k�/�̼_�1��u�z�,�=��uj�kT{��k�&�F�9�6ꎯI�_+5�5�=��R_�ڃ_+5�5�=��Qw|M���Z���Q�A��������Z���Q�A�����kR� ��JM|�jb|��_�Ys_+3�5�=��Qw|M���Z���Q�A��������Z���Q�A�����kR� ��JM|�jr|���ר� ��JM|�jr|m�_�:9�Vj�kT{��k�&�F�9�Vj�kT{��k�����1H�2O�5��c_+p��(����L|�hr|-�s| ���Z���Q�A��������Z���Q�A�����kR� ��JM|�jr|���ר� ��JM|�jr|m�_�:9�Vj�kT{��k�&�F�9�Vj�kT{�k�&�&��0�V䊯��9��������Z���Q�A�����kR� ��JM|�jr|���ר� ��JM|�jr|m�_�:9�Vj�kT{��k�&�F�9�Vj�kT{��k�����1��R_�ڃ_+5�5�=��BW|�f�a|m���D����L|�hr|���ר� ��JM|�jr|m�_�:9�Vj�kT{��k�&�F�9�Vj�kT{��k�����1��R_�ڃ_+5�5�=��R_�ڃ_�_�:9�Vj�kT{��k�&�F�1�V芯Ѭ9�����kB� ��JM|�jr|���ר� ��JM|�jr|m�_�:9�Vj�kT{��k�&�F�9�Vj�kT{��k�����1��R_�ڃ_+5�5�=��R_�ڃ_u�פ�A��������Z�+�F��8�Vf�kD{��k�����1��R_�ڃ_+5�5�=��R_�ڃ_u�פ�A��������Z���Q�A��������ڨ;�&ur|���ר� ��JM|�jr|���ר� ��F��5�c�k���͚��Z����A��������ڨ;�&ur|���ר� ��JM|�jr|���ר� ��B=�נ�A��������Z���Q�A��������ڨ;�&ur|���ר� ��JM|�jr|���ר� ��M|Mf�a|��_#Ys_+3�5�=�����X���=N����8�]����_ވ�?�?8����L���_�ˏ��~��?O�ۧ���������Ȱ�n����,�������O��gwo|����oz�2������/�z��j^Qnn����RO�}C��+��͇��z��j^i�W/�s]��^���Q�A�땚���^���Q�A�덺�zR� ��JM]�jr]������ �� ]u=�5�u�1w]O��^���Q�A�땚���^���Q�A�덺�zR� ��JM]�jr]������ ��JM]�jr]o�]ד:��Wj�zT{��z���G���Wj�zT{��z��1�u�RSףڃX�+t��h����L]�hr]o�]ד:��Wj�zT{��z���G���Wj�zT{��z��1�u�RSףڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚���ި��'uR]��S]����� -\u=�5�u�2S�#ڃ\��\׃:��Wj�zT{��z���G���Wj�zT{��z��1�u�RSףڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚��ĺޠ����9����z$k��ze��G���Wj�zT{��z��1�u�RSףڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚���ި��'ur]������ ��JM]�jb]��UףYsX�2u=�=�u�2S�#ڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚���ި��'ur]������ ��JM]�jr]������ ��B=����A�땚���^���Q�A����z4k��zc�1�u�RSףڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚���ި��'ur]������ ��JM]�jr]������ ��F�u=�c��z���G���W��Ѭ9�땙���ި��'ur]������ ��JM]�jr]������ ��F�u=�c��z���G���Wj�zT{��z���G���7��I�\�+5u=�=�u�RSףڃ\�+5u=�=�u�Qw]O�ĺ^���G�渮Wf�zD{��z���G���7��I�\�+5u=�=�u�RSףڃ\�+5u=�=�u�P�u=�s��z���G���Wj�zT{��z���G���7��I�\�+5u=�=�u�RSףڃ\�+5u=�=�u�ASד�sX�+r��H����L]�hr]=Wu=>ǩ��x��?������W������}������^/�ׇ�s]X}��~��Ï�N��ǯ_�������9�;+�Q7�O���s�O�㿋����|��P�A��������O���P�A�����?R� �JM��jr������ �JM��jr�g���:9�Sj�?T{�?���͚��O����A�����?R� �JM��jr������ �JM��jr�g���:9�Sj�?T{��?�&�C�9�Sj�?T{��?�����1��R��ڃ�)5��=��R��ڃ�u���A���y��P���O�+�C��8�Sf�?D{��?���?P� �JM��jr������ �JM��jr�g���:9�Sj�?T{��?�&�C�9�Sj�?T{��?�����1��R��ڃ�)5��=��R��ڃ�4��=��"W��d�q������ �JM��jr�g���:9�Sj�?T{��?�&�C�9�Sj�?T{��?�����1��R��ڃ�)5��=��R��ڃ�u���A��������O���P�A����?4k�?C&�#��8�Sf�?D{��?�&�C�9�Sj�?T{��?�����1��R��ڃ�)5��=��R��ڃ�u���A��������O���P�A��������O����9��R��ڃ�)5��=��BW��f�q�g��:9�Sj�?T{��?�&�C�9�Sj�?T{��?�����1��R��ڃ�)5��=��R��ڃ�u���A��������O���P�A��������Ϩ;�#ur������ � -]��5��2�!ڃ�u���A��������O���P�A��������Ϩ;�#ur������ �JM��jr������ �F���c��?�&�C�9�Sj�?T{��?�&�C�9�3��H��)t�h���L��hr������ �F���c��?�&�C�9�Sj�?T{��?�&�C�9��9�ur������ �JM��jr������ �F���c��?�&�C�9�Sj�?T{��?�&�C�1�3h�?2{�?E��ɚ��O����A���Wl*���8���������������s��>s��nW����?|��_�������_?}����g����_��Ϗ_?�������O_����~{�J����ݙz������������m��8�ݦ��8��mz� �n�=��6u��D��w���w�P�A~�I�y� ��w���w�P�A~�ɨ��&R� �ۤԼۄj�MJͻM�� �ۤԼۄj�MF��6�:��&���&T{��mRj�mB���&��w�Ь9|�ɐy��Ȟ�w���w��A~�I�y� ��w���w�P�A~�ɨ��&R� �ۤԼۄj�MJͻM�� �ۤԼۄj�MF��6�:��&���&T{��mRj�mB���&���&T{��m���&P� �ۤԼۄj�MJͻM�� �ۤ��n�5��6s��D��w���w�P�A~�I�y� ��w���w�P�A~�ɨ��&R� �ۤԼۄj�MJͻM�� �ۤԼۄj�MF��6�:��&���&T{��mRj�mB���&���&T{��m2�~���1��6)5�6�ڃ�n�BMh��̼ۤۄh�MF��6�:��&���&T{��mRj�mB���&���&T{��m2�~���1��6)5�6�ڃ�n�R�n�=��6)5�6�ڃ�n�Q��M��A~�I�y� ��w���w�P�A~�I�y� ��w����m"u�M -]�6�Ys�n�2�n�=��6)5�6�ڃ�n�Q��M��A~�I�y� ��w���w�P�A~�I�y� ��w��z~� �9��6)5�6�ڃ�n�R�n�=��6)5�6�ڃ�n�Q��M��A~�I�y� ��w���w�P�A~�I�y� ��w��w���9|�I���&$k��mRf�mB���&z�F�ۄ�qz���1�W�m����ݦ�ۛ����n����ݦ�6���������-}x�ݧ//ϛ������|�ۛw�W��>�����þ�wx�5~x���僼��>��ڃW.����Fݷ�I�|�]���j�-w��;�=ȷܕ�[�� �r7��N��[�J�-wT{�o�+5��Q�A����rG����Q�-wR� �rWjn��ڃx�]��;�5Ƿܕ�[�� �r7��N��[�J�-wT{�o�+5��Q�A����rG����Q�-wR� �rWjn��ڃ|�]���j�-w��;�=ȷ܍�o��:���Rs���[�J�-wT{�o�+5��Q�A��n�}˝�1H�ܕy�����rW��b��-we�;�=ȷ܅z����[�J�-wT{�o�+5��Q�A����rG����Q�-wR� �rWjn��ڃ|�]���j�-w��;�=ȷ܍�o��:���Rs���[�J�-wT{�o�+5��Q�A��n��r'���"�-w$k�o�+3�#�=Ƚ�R�;�ڃ�;u����A�������Q��Q�A�������Ѩ�w$ur���� ��JM�jr���� ��Fݽ#�c�{G��wD��wTjzGT{{G���͚��ѐ���9�������Q��Q�A�������Ѩ�w$ur���� ��JM�jr���� ��Fݽ#�c�{G��wD��wTjzGT{�{G��wD��w�wur���� ��JM�jb���;�Ys�;s����A�������Q��Q�A�������Ѩ�w$ur���� ��JM�jr���� ��Fݽ#�c�{G��wD��wTjzGT{�{G��wD��w4��I��;*5�#�=���BW�f�q���� ��Fݽ#�c�{G��wD��wTjzGT{�{G��wD��w4��I��;*5�#�=Ƚ�R�;�ڃ�;*5�#�=Ƚ�Qw�H���Q��Q�A�������Q��Q�A���{GR� �� -]�#�5ǽ�2�;"ڃ�;*5�#�=Ƚ�Qw�H���Q��Q�A�������Q��Q�A��z�A���;*5�#�=Ƚ�R�;�ڃ�;*5�#�=Ƚ�Qw�H���Q��Q�A�������Q��Q�A� �ޑ̞��Q��wD��wTfzGD{�{��Ş��9N���c�_��?����-��������_��':���м�;��3�߯��������?��q>�������_�b=������o��7���և.���O��L7w��=�K��Q6{� -yw�x8H���7���>�ܽ���o�=xE}���d}O�}C���է�����u}��1xE�������Ͼ��������oi+���7����a@��Ͼ������;�Ϣ:����݃TO�}C��+������z��j^Q�?��UO�}C�������p�{��ϲ:��w�?I���o�=xE}8�Y�UO�}C��+��̓����7̚�r8�ps��~��g�W�������Ͼ���u]RPjN3�ڃ|�A�9̀j�i�����A>͠Ԝf@��4�Rs����J�iT{�O3u�f u�i��4�=ȧ����� �fPjN3�ڃ|����4�c�O3(5�P�A<͠�u�͚����iD{�O3u�f u�i��4�=ȧ����� �fPjN3�ڃ|����4�c�O3(5�P�A>͠Ԝf@��4�Rs����FݧH�|�A�9̀j�i��4�=ȧ����� �f0�>�@����<�f@�rO3(p�f@���4�2s����B=�f�u�i��4�=ȧ����� �fPjN3�ڃ|����4�c�O3(5�P�A>͠Ԝf@��4�Rs����FݧH�|�A�9̀j�i��4�=ȧ����� �f0hN3��sx�A��4�5ǧ����� �fPjN3�ڃ|����4�c�O3(5�P�A>͠Ԝf@��4�Rs����FݧH�|�A�9̀j�i��4�=ȧ����� �f0�>�@���J�iT{�O3(5�P�A<͠�u�͚����i"{�O3(3��A>͠Ԝf@��4�Rs����FݧH�|�A�9̀j�i��4�=ȧ����� �f0�>�@���J�iT{�O3(5�P�A>͠Ԝf@��4�Pϧ@��|�A�9̀j�i��4�=���N3�Ys|����4�c�O3(5�P�A>͠Ԝf@��4�Rs����FݧH�|�A�9̀j�i��4�=ȧ����� �f0�>�@���J�iT{�O3(5�P�A>͠Ԝf@��4�Q�iR� �fPjN3�ڃx�A��4�5ǧ����� �f0�>�@���J�iT{�O3(5�P�A>͠Ԝf@��4�Q�iR� �fPjN3�ڃ|�A�9̀j�i��4�=ȧ��O3�:�4�Rs����J�iT{�O3(5�P�A>�`�}���1���N3�Ys|�A�9̀h�i��4�=ȧ��O3�:�4�Rs����J�iT{�O3(5�P�A>� ��iP� �fPjN3�ڃ|�A�9̀j�i��4�=ȧ��O3�:�4�Rs����J�iT{�O3(5�P�A<�`Мf ���4�"�i$k�O3(3��A>�@��i|��i��ǀ�ן��_�{�+��U���u�W������@�3���0C���_~�����?�������|���ᗟ��ݻۿ����w_>>�+/��w7������/A�k�N�3#��3����3����=���BWf�f�qf��dF�� gFFݙ�c�3#�&3B�93Rj2#T{�3#�&3B�932�ΌH��)5��=ș�R��ڃ�)5��=ș�QwfD���H�ɌP�AΌ������H�ɌP�AΌ��3#R� eF�<eF(^�af����Xs�)3��=ș�Pϙ�s�3#�&3B�93Rj2#T{�3#�&3B�932�ΌH��)5��=ș�R��ڃ�)5��=ș�QwfD���H�ɌP�AΌ������H�ɌP�Ǎ�̞̈��H�+3B��83Rf2#D{�3#�&3B�932�ΌH��)5��=ș�R��ڃ�)5��=ș�QwfD���H�ɌP�AΌ������H�ɌP�AΌ��3#R� gFJMf�jrf��dF�� fF -]��5���!��s�)3��=ș�R��ڃ�)5��=ș�QwfD���H�ɌP�AΌ������H�ɌP�AΌ��3#R� gFJMf�jrf��dF�� gFJMf�jrf$�sf���H�ɌP�AΌ������H�+3B��832�Ό��)5��=ș�R��ڃ�)5��=ș�QwfD���H�ɌP�AΌ������H�ɌP�AΌ��3#R� gFJMf�jrf��dF�� gFJMf�jrfdԝ�:93Rj2#T{3#���͚��H�Ɍ�AΌ��3#R� gFJMf�jrf��dF�� gFJMf�jrfdԝ�:93Rj2#T{�3#�&3B�93Rj2#T{�3#��̈�1ș�R��ڃ�)5��=ș�R��ڃ�ugF��Ǎ�2#4k�3#e&3B�93Rj2#T{�3#��̈�1ș�R��ڃ�)5��=ș�R��ڃ� ���:93Rj2#T{�3#�&3B�93Rj2#T{�3#��̈�1ș�R��ڃ�)5��=ș�R��ڃ�4��=���"Wf�d�qf��dF�� gFTň���]<���jft�9~�7�>��O� ��LB���`O�������{�E���>�႘�q����`�=����C��x�{4_y��ߣ�j��h:u}�&�=�ߣi��=���A�M����d��{4���G�����t��MV{�GS��MT� ~��S��h�ڃ�=�N]ߣ�j��h:��=�l�~��2�=���A�M����d��{4���G�����t��MV{�GS��MT� ~��S��h�ڃ�=�N]ߣ�j��h:u}�&�=�ߣ��|�&�c�Gө�{4Y�A�M����d��{4���G�����TjwT� �N]�;�=H��CO�;�5���3W��hb��Aܝ�wV{w�������ݩ+pg�1pWjwT� �N]�;�=���SW��jb�����ڃ�+5�;�cw�������ݩ+pg�1pw� -�Y�Aܕ���1��3��,^�Q���S��b�a����3ڃ�u��Aܝ�wV{w�������ݩ+pg�1pWjwT� �N]�;�=���SW��jb�����ڃ�+5�;�cw�������ݩ+pg�1pw� -�Y�A -��w4{�wG�w&kwg������ݩ+pg�1pWjwT� �N]�;�=���SW��jb�����ڃ�+5�;�cw�������ݩ+pg�1pw� -�Y�Aܕ���1���SW��jb�����ڃ�;���Ys�+r�H���\�;�=���SW��jb�����ڃ�+5�;�cw�������ݩ+pg�1pw� -�Y�Aܕ���1���SW��jb�����ڃ�;u�� �F݁;�sw�������ݩ+pg�)pw�)pg��0pWfwD� �N]�;�=���SW��jb�����ڃ�+5�;�cw�������ݩ+pg�1pw� -�Y�Aܕ���1���SW��jb�����ڃ�;u�� �JM�����ݩ+pg�)pw�)pg��0pw� -��Aܕ���1���SW��jb�����ڃ�;u�� �JM�����ݩ+pg�1pw� -�Y�Aܝ�wV{w�&pGub�����ڃ�;u�� �N]�;�=���R��:)pw�)pg��0pw� -��Aܝ�wV{w�&pGub�����ڃ�;u�� �N]�;�=���Qw�N���ݩ+pg�1pw� -�Y�Aܝ�wV{w�&pGub�����ڃ�;u�� �N]�;�=H��BW��f�Q���S��d�a����3ڃ�C�mw~�o��|��;<��o��?�z�}��}}&��� -���ӯ�~�맟������Zߠ���/_{�ޞ���u���ڷf���vg�O{=�|� �Y�ڃ�Y*5�%�=ș�QwfI���R��,Q�A�,������R��,Q�A�,��3KR� g�JMf�jrf��d��� g�JMf�jrfiԝY�:9�Tj2KT{3K���͚��R��,�A�,��3KR� g�JMf�jrf��d��� g�JMf�jrfiԝY�:9�Tj2KT{�3K�&�D�9�Tj2KT{�3K��̒�1ș�R�Y�ڃ�Y*5�%�=ș�R�Y�ڃ�Yug���A�,�y�,Q���R�+�D��8�Tf2KD{�3K��3KP� g�JMf�jrf��d��� g�JMf�jrfiԝY�:9�Tj2KT{�3K�&�D�9�Tj2KT{�3K��̒�1ș�R�Y�ڃ�Y*5�%�=ș�R�Y�ڃ�Y4�%�=���"Wf�d�qf��d��� g�JMf�jrfiԝY�:9�Tj2KT{�3K�&�D�9�Tj2KT{�3K��̒�1ș�R�Y�ڃ�Y*5�%�=ș�R�Y�ڃ�Yug���A�,������R��,Q�A�,�2K4k3KC&�$��8�Tf2KD{�3K�&�D�9�Tj2KT{�3K��̒�1ș�R�Y�ڃ�Y*5�%�=ș�R�Y�ڃ�Yug���A�,������R��,Q�A�,������R����9ș�R�Y�ڃ�Y*5�%�=���BWf�f�qfi̝Y:9�Tj2KT{�3K�&�D�9�Tj2KT{�3K��̒�1ș�R�Y�ڃ�Y*5�%�=ș�R�Y�ڃ�Yug���A�,������R��,Q�A�,������Ҩ;�$urf��d��� f� -]�%�5Ǚ�2�Y"ڃ�Yug���A�,������R��,Q�A�,������Ҩ;�$urf��d��� g�JMf�jrf��d��� g�Fݙ%�c�3K�&�D�9�Tj2KT{�3K�&�D�9�4��,I��Y*te�h�g��Lf�hrf��d��� g�Fݙ%�c�3K�&�D�9�Tj2KT{�3K�&�D�9��9�urf��d��� g�JMf�jrf��d��� g�Fݙ%�c�3K�&�D�9�Tj2KT{�3K�&�D�1�4h2K2{3KE��ɚ��R��,�A�,�w�*���8e���������#���;�g��3�,�Vf�o?~:������?���T��������|:����.������Є��ߡy�C��@܉jrܩ�ĝ�� ǝJM܉jr�i�w�:9�Tj�NT{��N�&�D�9�Tj�NT{��N��1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;����ĸS�+�D��8�Tf�ND{��N��1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��Ne��N/�0�T��;Q�9�;�����S���9�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ƝM�If�aܩ�w"Ysw*3q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{�N���͚øӐ�;��9�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{��N�&�D�9��9�urܩ�ĝ�� ǝJM܉jbܩ�w�Yswsǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{��N�&�D�9�4�;I�w*5q'�=�q�BW܉f�qܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{��N�&�D�9�4�;I�w*5q'�=�q�Rw�ڃw*5q'�=�q�Qw�I��S��;Q�A�;�����S��;Q�A�;���NR� Ɲ -]q'�5�q�2w"ڃw*5q'�=�q�Qw�I��S��;Q�A�;�����S��;Q�A�;�z�;A��w*5q'�=�q�Rw�ڃw*5q'�=�q�Qw�I��S��;Q�A�;�����S��;Q�A�; ���̞øS�+�D��8�Tf�ND{����u��;�9Nq��c>\�;�?�������?D}�q��L����n:�3><��=�Q�y�e��t������ss�֓�>s�`/~d�ǻ���?E����Ͼ�������UO�}C��+��͇�[��>��ڃ��O�����2u}��1xE�������Ͼ��������o.+���7��������g�P{��7���N�gQ��W����A��Ͼ�����cx��^QO�}C��+���p���o�=��z8��=:u}��1xE�;���TO�}C��+���ϗ�z��j^Qo�/a�ܕ��40�>�@��# J͑T{��$(5GP�A>���I@��H�Q��R� IPj�$�ڃ|$A�9��j���H�=�G���$�:�H�Rs$��# J͑T{��$(5GP�A>�`�}$��1�G��# �� IP�:��f��e�H�=�G���$�:�H�Rs$��# J͑T{��$(5GP�A>�`�}$��1�G��# �� IPj�$�ڃ|$A�9��j���# ��A>���I@��H�Rs$��# J͑T{��$uI uґe��$�x9�G��$�Xs|$A�9��h����$�:�H�Rs$��# J͑T{��$(5GP�A>�`�}$��1�G��# �� IPj�$�ڃ|$A�9��j���# ��A>���I@��H�Rs$��# J͑T{�$4G��9<���u$ɚ�# �̑D{��$(5GP�A>�`�}$��1�G��# �� IPj�$�ڃ|$A�9��j���# ��A>���I@��H�Rs$��# J͑T{��$uI u���H�=�G��# �� IP�:��f��C�H�=�G��# �� IPj�$�ڃ|$A�9��j���# ��A>���I@��H�Rs$��# J͑T{��$uI u���H�=�G��# �� IPj�$�ڃ|$A��# ��A>���I@��H�Rs$��# -]GЬ9>�`�}$��1�G��# �� IPj�$�ڃ|$A�9��j���# ��A>���I@��H�Rs$��# J͑T{��$uI u���H�=�G��# �� IPj�$�ڃ|$���H�c��$(5GP�A<���u$͚�# �̑D{��$uI u���H�=�G��# �� IPj�$�ڃ|$���H�c��$(5GP�A>���I@��H�Rs$��# F�GH�|$A�9��j���H�=�G��# �� I0�>�@��# -]GЬ9>���I@��H�Rs$��# F�GH�|$A�9��j���H�=�G��# �� I��H�s��$(5GP�A>���I@��H�Rs$��# F�GH�|$A�9��j���H�=�G��# �� I0h�$��sx$A��H�5�G��# �� I���# ��# �G�?��<�p��p�<��>�# �ב�������_���O�������������O_^��n�����<�pw��+�vN��'�/pP� '�JM�jr��$�� '�JM�jrnԝ��:9WjpT{�p�&G�1W�J�Ѭ9N���pB� '�JM�jr��$�� '�JM�jrnԝ��:9WjpT{�p�&G�9WjpT{�p����1� �R���ڃ��+5 8�=� �R���ڃ��u'ऎAN�����\�+G��8WfpD{�p����1� �R���ڃ��+5 8�=� �R���ڃ��u'ऎAN�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� '�F� 8�c�pe�p/�0W�J�Q�9N�����\���9� �R���ڃ��+5 8�=� �R���ڃ��u'ऎAN�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� &�MNf�a�ȕ�#Ys��+3 8�=� �R���ڃ��u'ऎAN�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� '�F� 8�c�p�&G�9WjpT{p��͚�ܐI���9N�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� '�F� 8�c�p�&G�9WjpT{�p�&G�9�9ur��$�� '�JM�jb�Е��Ys��s'���AN�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� '�F� 8�c�p�&G�9WjpT{�p�&G�97�N�I���+5 8�=� �BW�f�q��$��� '�F� 8�c�p�&G�9WjpT{�p�&G�97�N�I���+5 8�=� �R���ڃ��+5 8�=� �QwN��\�I�Q�AN�����\�I�Q�AN���pR� &� -] 8�5� �2��#ڃ��+5 8�=� �QwN��\�I�Q�AN�����\�I�Q�AN��zN�A����+5 8�=� �R���ڃ��+5 8�=� �QwN��\�I�Q�AN�����\�I�Q�AL� ��̞�\�+G��8WfpD{����J��9N ��c@~�9F~�F~Too9_�I��������}��=��?��돟~�����_?���k�������������_�s���{��ǽ��|��P�A����Ϩ��#ur����x�� �xJM��jr����x�� �xF�=�c�{<���C���S���Ь9����Ϩ��#ur����x�� �xJM��jr����x�� �xF�=�c�{<���C���Sjz<T{�{<���C���3���H���)5=�=�=�R��ڃ��)5=�=�=�Qw�G��O����1���z<k�{<e��C�����ur����x�� �xJM��jr����x�� �xF�=�c�{<���C���Sjz<T{�{<���C���3���H���)5=�=�=�R��ڃ��)5=�=�=�A���s��)r�xH��x�L��hr����x�� �xF�=�c�{<���C���Sjz<T{�{<���C���3���H���)5=�=�=�R��ڃ��)5=�=�=�Qw�G��O���P�A����O���C���3dz<"{�{<e��C���Sjz<T{�{<���C���3���H���)5=�=�=�R��ڃ��)5=�=�=�Qw�G��O���P�A����O���P�A��z��@����)5=�=�=�R��ڃ��)t�xh��x��=�c�{<���C���Sjz<T{�{<���C���3���H���)5=�=�=�R��ڃ��)5=�=�=�Qw�G��O���P�A����O���P�A��{<R� �xJM��jb�����Ys��)3=�=�=�Qw�G��O���P�A����O���P�A��{<R� �xJM��jr����x�� �xJM��jr�g���:��Sjz<T{�{<���C���Sjz<T{�{<����1�=�BW��f�q����x�� �xJM��jr�g���:��Sjz<T{�{<���C���Sjz<T{�{<��{<P� �xJM��jr����x�� �xJM��jr�g���:��Sjz<T{�{<���C���Sjz<T{{<���#���S���9�����zO�z<|�S�w��ǫ=�����_���jއ�x�3��>��/�������r���~���ǯ�N���x���_�����}�������>]�������/������?��?��_�����7'�����y_��noW~��)�?�~���?���)^>�L�j��F�/S�:�e -��e -T{�_�Pj^�@��e -���)Ь9|�y��Ȟ�)���)�A~�B�y���)���)P�A~�¨�e -R� �L�ԼL�j��J���� �L�ԼL�j��F�/S�:�e -��e -T{�_�Pj^�@��e -��e -T{�_���e -P� �L�ԼL�j��J���� �L���2�5�/Ss�LA��)���)P�A~�B�y���)���)P�A~�¨�e -R� �L�ԼL�j��J���� �L�ԼL�j��F�/S�:�e -��e -T{�_�Pj^�@��e -��e -T{�_�0�~���1�/S(5/S�ڃ�2�B��h��L�̼L�h��F�/S�:�e -��e -T{�_�Pj^�@��e -��e -T{�_�0�~���1�/S(5/S�ڃ�2�R�2�=�/S(5/S�ڃ�2�Q����A~�B�y���)���)P�A~�B�y���)��_� u�� -]/S�Ys�2�2�2�=�/S(5/S�ڃ�2�Q����A~�B�y���)���)P�A~�B�y���)�z~��9�/S(5/S�ڃ�2�R�2�=�/S(5/S�ڃ�2�Q����A~�B�y���)���)P�A~�B�y��ė)��)��9|�B��e -$k�_�Pf^�@��e -�{��e -|����qx��2�������N�������u�Vy�k���Wh}&9�Jq�^������/�~���{w�����O?����O?�n���_������^����y>mw�_�t|��������7�/�����7�Q�A�9l�}s��1�7����è� �Vjn�ڃ|sX��9�j��a��ä�A�9���F���B��a4k�o+37��A�9l�}s��1�7����è� �Vjn�ڃ|sX��9�j��a��ä�A�9���F���Rss���J��aT{�ou�&u��a���0�=�7����è� �Vjn�ڃ|sب��0�c�n+�ts��1�9��usŚ�����aD{�o�|s�9�7����è� �Vjn�ڃ|sX��9�j��a��ä�A�9���F���Rss���J��aT{�ou�&u��a���0�=�7����è� �Vjn�ڃxsؠ�9Lf���aE���H��Vfn#ڃ|sX��9�j��a��ä�A�9���F���Rss���J��aT{�ou�&u��a���0�=�7���L��LN���P�A�䌺39R� grJM&�jr&��dr�� fr -]��5���!���s��)3��=ș�R�ɡڃ��)5��=ș�Qw&G��LN���P�A�䔚L��LN���P�A�䌺39R� grJM&�jr&��dr�� grJM&�jr&'�s&��LN���P�A�䔚L��LN�+�C��8�3������)5��=ș�R�ɡڃ��)5��=ș�Qw&G��LN���P�A�䔚L��LN���P�A�䌺39R� grJM&�jr&��dr�� grJM&�jr&gԝɑ:9�Sj29T{39��L͚�LN����A�䌺39R� grJM&�jr&��dr�� grJM&�jr&gԝɑ:9�Sj29T{�39�&�C�9�Sj29T{�39��L��1ș�R�ɡڃ��)5��=ș�R�ɡڃ��ugr��A���294k�39e&�C�9�Sj29T{�39��L��1ș�R�ɡڃ��)5��=ș�R�ɡڃ�� ��Ɂ:9�Sj29T{�39�&�C�9�Sj29T{�39��L��1ș�R�ɡڃ��)5��=ș�R�ɡڃ��4��=���"W&�d�q&��dr�� gr��.���s�2��ǀL��s�0�����G�����^��>n>�}�����Ç�<�?{�x������Xy~�ϟ?_{��P�����endstream +\u=�5�u�2S�#ڃ\��\׃:��Wj�zT{��z���G���Wj�zT{��z��1�u�RSףڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚��ĺޠ����9����z$k��ze��G���Wj�zT{��z��1�u�RSףڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚���ި��'ur]������ ��JM]�jb]��UףYsX�2u=�=�u�2S�#ڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚���ި��'ur]������ ��JM]�jr]������ ��B=����A�땚���^���Q�A����z4k��zc�1�u�RSףڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚���ި��'ur]������ ��JM]�jr]������ ��F�u=�c��z���G���W��Ѭ9�땙���ި��'ur]������ ��JM]�jr]������ ��F�u=�c��z���G���Wj�zT{��z���G���7��I�\�+5u=�=�u�RSףڃ\�+5u=�=�u�Qw]O�ĺ^���G�渮Wf�zD{��z���G���7��I�\�+5u=�=�u�RSףڃ\�+5u=�=�u�P�u=�s��z���G���Wj�zT{��z���G���7��I�\�+5u=�=�u�RSףڃ\�+5u=�=�u�ASד�sX�+r��H����L]�hr]=Wu=~�S]�5����=�p�t��o���������������zQ�>�Ϝ���������?��������oy>�<'rge~����ӵ��������ŷ����"��ڃ�)5��=��R��ڃ�u���A��������O���P�A��������Ϩ;�#ur������ � +]��5��2�!ڃ�u���A��������O���P�A��������Ϩ;�#ur������ �JM��jr������ �F���c��?�&�C�9�Sj�?T{��?�&�C�9�3��H��)���x9��W��b�q������ �B=���A��������O���P�A��������Ϩ;�#ur������ �JM��jr������ �F���c��?�&�C�9�Sj�?T{��?�&�C�1�3h�?2{�?E��ɚ��O����A��������Ϩ;�#ur������ �JM��jr������ �F���c��?�&�C�9�Sj�?T{��?�&�C�9�3��H��)5��=��R��ڃ�)t�h���L�Gd�q������ �JM��jr������ �F���c��?�&�C�9�Sj�?T{��?�&�C�9�3��H��)5��=��R��ڃ�)5��=��P���s��?�&�C�9�Sj�?T{�?���͚��Ϙ;�#tr������ �JM��jr������ �F���c��?�&�C�9�Sj�?T{��?�&�C�9�3��H��)5��=��R��ڃ�)5��=��Qw�G���O���P�A����?4k��?e&�C�9�3��H��)5��=��R��ڃ�)5��=��Qw�G���O���P�A��������O���P�A�����?R� �JM��jr������ �JM��jr�g���:1�S��Ь9��������O���P�A�����?R� �JM��jr������ �JM��jr�'�s����O���P�A��������O���P�A�����?R� �JM��jr������ �JM��jb�g��d���\��5��2�!ڃ�]��T�����]| �����ވ������=��3���v�����_��߾����|���˧�G����_�����>����?������O��|������L����x����}��6����l�ſ���6��"�l�=��6u?�D��g���g�P�A~�I�y� ��g���g�P�A~�ɨ��&R� ?ۤ�<ۄj�MJͳM�� ?ۤ�<ۄj�MF��6�:��&���&T{��mRj�mB���&��g�Ь9|�ɐy��Ȟ�g���g��A~�I�y� ��g���g�P�A~�ɨ��&R� ?ۤ�<ۄj�MJͳM�� ?ۤ�<ۄj�MF��6�:��&���&T{��mRj�mB���&���&T{��m���&P� ?ۤ�<ۄj�MJͳM�� >ۤ��l�5��6s?�D��g���g�P�A~�I�y� ��g���g�P�A~�ɨ��&R� ?ۤ�<ۄj�MJͳM�� ?ۤ�<ۄj�MF��6�:��&���&T{��mRj�mB���&���&T{��m2�~���1��6)5�6�ڃ�l�B׳Mh�?ۤ�<ۄh�MF��6�:��&���&T{��mRj�mB���&���&T{��m2�~���1��6)5�6�ڃ�l�R�l�=��6)5�6�ڃ�l�Q��M��A~�I�y� ��g���g�P�A~�I�y� ��g����m"u�M +]�6�Ys�l�2�l�=��6)5�6�ڃ�l�Q��M��A~�I�y� ��g���g�P�A~�I�y� ��g��z~� �9��6)5�6�ڃ�l�R�l�=��6)5�6�ڃ�l�Q��M��A~�I�y� ��g���g�P�A~�I�y� ��g��g���9|�I���&$k��mRf�mB���&z�F<ۄ���l���8�_}������������g�O��@=�����_�i}(�ɳM�דM�ۿ������/�<|x��}�K����_��w�~������r�n�C����O��'L7w��}����l������p���o�=xE}��{g��g�P{���x������>��ڃ��O�7�>������|�`��g�P{���ps�����z��j^Q�?��1���g�P{��[��?�{�注��+���p� ��g�P{��z�1<����>��ڃW���`��g�P{�u�p�1��^�볬��+���/ҟ�z��j^Q��n��g�P{���x�`��� ��^'o7��7�|��1xE=��z��j^Q�?���R=}� ���ǟ���TO�}C��+/EYo�1�~��c�_;�Լv����(5��A���3J�kgP�A~�Q�kgH�����3�� �vF�y��=ȯ�Qj^;�j�kg��_;C����(5��A��3 +]��A����3��kg�A~�Q�kgH�����3�� �vF�y��=ȯ�Qj^;�j�kg��_;C����(5��A���3J�kgP�A~�R��T{�_;c���R� �vF�y��=ȯ�Qj^;�j�kg���Πڃ�����ΐ:�3�<�v��1|��kgP�9~�2��D{�_;#��kg@������3�� �vF�y��=ȯ�Qj^;�j�kg��_;C����(5��A���3J�kgP�A~�R��T{�_;c���R� �vF�y��=ȯ�Qj^;�j�kg���Πڃ����3d��vF��3H��vF�9̀h�i��4�=ȧ��O3�:�4�Rs����J�iT{�O3(5�P�A>�`�}���1ȧ����� �fPjN3�ڃ|�A�9̀j�i�����A>͠Ԝf@��4�Rs���� +]�Ь9<�`Ȝf ���4�2s����J�iT{�O3(5�P�A>�`�}���1ȧ����� �fPjN3�ڃ|�A�9̀j�i�����A>͠Ԝf@��4�Rs����J�iT{�O3�|��9ȧ����� �fPjN3�ڃx�A��4�5ǧ��O3:�4�Rs����J�iT{�O3(5�P�A>�`�}���1ȧ����� �fPjN3�ڃ|�A�9̀j�i�����A>͠Ԝf@��4�Rs����J�iT{�O3u�f u�i��4�=���N3�Ys|�A�9̀h�i�����A>͠Ԝf@��4�Rs����J�iT{�O3u�f u�i��4�=ȧ����� �fPjN3�ڃ|����4�c�O3(5�P�A>͠Ԝf@��4�Rs����FݧH�x�A��4�5ǧ����� �fPjN3�ڃ|����4�c�O3(5�P�A>͠Ԝf@��4�Rs����B=�f�u�i��4�=ȧ����� �fPjN3�ڃ|����4�c�O3(5�P�A>͠Ԝf@��4�Rs�����i2{O3(r�f@���4�2s����tm@�f��q:�p�5ﯞf��=������c��o�����:ߟ:<��|��/�>���3ܭ���o����������|�����˿�{w��������[g^D/�n�������=<����3#�7�3���3��_2#T{3#���͚��H�Ɍ�AΌ��3#R� gFJMf�jrf��dF�� gFJMf�jrfdԝ�:93Rj2#T{�3#�&3B�93Rj2#T{�3#��̈�1ș�R��ڃ�)5��=ș�R��ڃ�ugF��Aʌ�yʌP���H�+3B��83Rf2#D{�3#��3#P� gFJMf�jrf��dF�� gFJMf�jrfdԝ�:93Rj2#T{�3#�&3B�93Rj2#T{�3#��̈�1ș�R��ڃ�)5��=ș�R��ڃ�4��=���"Wf�d�qf��dF�� gFJMf�jrfdԝ�:93Rj2#T{�3#�&3B�93Rj2#T{�3#��̈�1ș�R��ڃ�)5��=ș�R��ڃ�ugF��AΌ������H�ɌP�Ǎ�2#4k3#C&3"��83Rf2#D{�3#�&3B�93Rj2#T{�3#��̈�1ș�R��ڃ�)5��=ș�R��ڃ�ugF��AΌ������H�ɌP�AΌ������H����9ș�R��ڃ�)5��=���BWf�f�qfd̝:93Rj2#T{�3#�&3B�93Rj2#T{�3#��̈�1ș�R��ڃ�)5��=ș�R��ڃ�ugF��AΌ������H�ɌP�AΌ������Ȩ;3"urf��dF�� fF +]��5Ǚ�2�!ڃ�ugF��AΌ������H�ɌP�AΌ������Ȩ;3"urf��dF�� gFJMf�jrf��dF�� gFFݙ�c�3#�&3B�93Rj2#T{�3#�&3B�932�ΌH��)teFh�gF�Lf�hrf��dF�� gFFݙ�c�3#�&3B�93Rj2#T{�3#�&3B�93�93urf��dF�� gFJMf�jrf��dF�� gFFݙ�c�3#�&3B�93Rj2#T{�3#�&3B�132h2#2{3#E��ɚ��H�Ɍ�AΌ���~�Sft�5 3��=~�`�=|oE� ��3 ��7���������~���$�~~��L��q����E��=���͋�x�=�/��G���h*5��D��=�B=�G�9���Tjޣ�j�{4���h�ڃ�M��=��� �GӨ�=���A~��R�MT{�ߣ�ԼG���h*t�G͚��hs�G��1���Tjޣ�j�{4���h�ڃ�M��=��� �GӨ�=���A~��R�MT{�ߣ�ԼG���h*5��D��=�F���$u�{4���h�ڃ�M��=��� �GS�y�&�=���4��I��+5�;�=���BW��f�q���� �F݁;�c�w�&pG�9pWjwT{�w�&pG�9p7��I��+5�;�=ȁ�R��ڃ�+5�;�=ȁ�Qw�N���]� �Q�Aܕ�����]� �Q�A܍�wR� ��<�(^�a����Xs�+3�;�=ȁ�Pρ;�s�w�&pG�9pWjwT{�w�&pG�9p7��I��+5�;�=ȁ�R��ڃ�+5�;�=ȁ�Qw�N���]� �Q�Aܕ�����]� �Q�A� ���̞��]�+pG��8pWfwD{�w�&pG�9p7��I��+5�;�=ȁ�R��ڃ�+5�;�=ȁ�Qw�N���]� �Q�Aܕ�����]� �Q�A܍�wR� �JM��jr���� � +]�;�5���!��s�+3�;�=ȁ�R��ڃ�+5�;�=ȁ�Qw�N���]� �Q�Aܕ�����]� �Q�A܍�wR� �JM��jr���� �JM��jr�.�s����]� �Q�Aܕ�����]�+pG��8p7�� ��+5�;�=ȁ�R��ڃ�+5�;�=ȁ�Qw�N���]� �Q�Aܕ�����]� �Q�A܍�wR� �JM��jr���� �JM��jr�n���:9pWjwT{w���͚��]� ��A܍�wR� �JM��jr���� �JM��jr�n���:9pWjwT{�w�&pG�9pWjwT{�w�����1ȁ�R��ڃ�+5�;�=ȁ�R��ڃ�uA��w4k�we&pG�9pWjwT{�w�����1ȁ�R��ڃ�+5�;�=ȁ�R��ڃ����:9pWjwT{�w�&pG�9pWjwT{�w�����1ȁ�R��ڃ�+5�;�=ȁ�R��ڃ�4�;�=���"W��d�q���� ��cm���8�_���c��?��?<a���$p�]��?|�ۧ/�������͟?~�������{>v��l�߽����d��m��o{5�|�\�,Y�A�,��2KV{3K�&�Dubf�ԕY�ڃ�Y:ue��� f�N]�%�=���R�Y�:1�t��,Y�A�,��2KV{3K��̒���R��,Q��Y:ue��� e�=e�l�f��\�%�=���R�Y�:1�t��,Y�A�,��2KV{3K��̒���R��,Q��Y:ue��� f�N]�%�=���SWf�jbf��d���A�,��2KV{3K��̒���ҩ+�d�1�Tj2KT� d����Y�x9F��O�%�5���3Wf�hbfiԝY�:1�t��,Y�A�,��2KV{3K��̒���R��,Q��Y:ue��� f�N]�%�=���SWf�jbf��d���A�,��2KV{3K��̒���ҩ+�d�)�T��,��9�,y�,��9�,��2KF{3K��̒���R��,Q��Y:ue��� f�N]�%�=���SWf�jbf��d���A�,��2KV{3K��̒���ҩ+�d�1�Tj2KT� f�N]�%�=���SWf�jRf��Sf�f�Qf�ȕY"�s�Y:se��� f�N]�%�=���SWf�jbf��d���A�,��2KV{3K��̒���ҩ+�d�1�Tj2KT� f�N]�%�=���SWf�jbf�ԕY�ڃ�Yug���A�,��2KV{3K��̒���ҡ�͚̒��R��,��Y:ue��� f�N]�%�=���SWf�jbf��d���A�,��2KV{3K��̒���ҩ+�d�1�Tj2KT� f�N]�%�=���SWf�jbf�ԕY�ڃ�Y*5�%�c3K��̒���ҡ�͚̒��ҙ+�d�1�Tj2KT� f�N]�%�=���SWf�jbf�ԕY�ڃ�Y*5�%�c3K��̒���ҩ+�d�1�t��,Y�A�,����1���SWf�jbf�ԕY�ڃ�Y:ue��� f�JMf����ҡ�͚̒��ҙ+�d�1�t��,Y�A�,����1���SWf�jbf�ԕY�ڃ�Y:ue��� f�Fݙ%�s3K��̒���ҩ+�d�1�t��,Y�A�,����1���SWf�jbf�ԕY�ڃ�Y:ue��� e� +]�%�=G��#O�%�5���3Wf�hbf ���,�{|����8<\�,�{�����p�ș��L2˻�Y��ϟN��_~�����R���뗗��|:�����]h������m��o{���|�;Q�A�;�����S��;Q�A�;���NR� ǝJM܉jrܩ�ĝ�� ǝJM܉jr�i�w�:9�Tj�NT{��N�&�D�9�Tj�NT{��N��1�q�Rw�ڃw*tŝh�ǝ�L܉hr�i�w�:9�Tj�NT{��N�&�D�9�Tj�NT{��N��1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$uRܩ�S܉��Ɲ +\q'�5�q�2w"ڃw +�w�:9�Tj�NT{��N�&�D�9�Tj�NT{��N��1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;����ĸӠ�;��9�;��N$k��Ne&�D�9�Tj�NT{��N��1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jbܩ�w�Ysw2q'�=�q�2w"ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝB=ǝ��A�;�����S��;Q�A�;��N4k��Nc�1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�1�T�;Ѭ9�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{��N�&�D�9�4�;I�w*5q'�=�q�Rw�ڃw*5q'�=�q�Qw�I�ĸS�+�D��8�Tf�ND{��N�&�D�9�4�;I�w*5q'�=�q�Rw�ڃw*5q'�=�q�P�q'�s��N�&�D�9�Tj�NT{��N�&�D�9�4�;I�w*5q'�=�q�Rw�ڃw*5q'�=�q�Aw��sw*rŝH�ǝ�L܉hr�y�NTq'~�S�y�5 ��=~�;4���s}&q��M7��;><��=�Y�y�e��t������ss��7;}�����n�����x�<}� ���7w�z��j^Qo><�J���7�|]}:��>��Ѩ볬��+��͇V=}� ���7���pY��Ͼ�����cx�Kt��>��ڃ�?9���c�wj>����wR=}� �������e��z��j^Q�?��UO�}C���������ѩ볬��+���/���z��j^Q��l��g�P{���x�`��� ��$�릁1��B� IPj�$�ڃ|$A�9��j���H�=�G���$�:�H�Rs$��# J͑T{��$(5GP�A>�`�}$��1�G��# �� IPj�$�ڃ|$A�9��j���# ��A>���I@��H�Bב4k��$(3G�A>�`�}$��1�G��# �� IPj�$�ڃ|$A�9��j���# ��A>���I@��H�Rs$��# J͑T{��$uI u���H�=�G��# �� IPj�$�ڃ|$���H�c��$(�t$��1<���u$Ś�# �̑D{��$�|$�9�G��# �� IPj�$�ڃ|$A�9��j���# ��A>���I@��H�Rs$��# J͑T{��$uI u���H�=�G��# �� IPj�$�ڃx$��9�@f��E�# H�IPf�$ ڃ|$A�9��j���# ��A>���I@��H�Rs$��# J͑T{��$uI u���H�=�G��# �� IPj�$�ڃ|$���H�c��$(5GP�A>���I@��H�Bב4k�$2G��9>���I@��H�Rs$��# J͑T{��$uI u���H�=�G��# �� IPj�$�ڃ|$���H�c��$(5GP�A>���I@��H�Rs$��# B=I�u���H�=�G��# �� IP�:��f��c�# ��A>���I@��H�Rs$��# J͑T{��$uI u���H�=�G��# �� IPj�$�ڃ|$���H�c��$(5GP�A>���I@��H�Rs$��# F�GH�|$A�9��j���# h�IPf�$ ڃ|$���H�c��$(5GP�A>���I@��H�Rs$��# F�GH�|$A�9��j���H�=�G��# �� I0�>�@��# J͑T{��$(5GP�A>���I@��H�Q��R� IP�:��f��e�H�=�G��# �� I0�>�@��# J͑T{��$(5GP�A>���I@��H�P�G@��|$A�9��j���H�=�G��# �� I0�>�@��# J͑T{��$(5GP�A>���I@��H�As$�̞�# �\G��9>���I@��H���_I��q:�p�5�I��=~������=IX�ɑ���H�?�xx���o?�|�����û>��������������������ap�t�N��'�����_pP� '�JM�jr��$�� '�JM�jrnԝ��:9WjpT{�p�&G�1W�J�Ѭ9N���pB� '�JM�jr��$�� '�JM�jrnԝ��:9WjpT{�p�&G�9WjpT{�p����1� �R���ڃ��+5 8�=� �R���ڃ��u'ऎAN�����\�+G��8WfpD{�p����1� �R���ڃ��+5 8�=� �R���ڃ��u'ऎAN�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� '�F� 8�c�pe�p/�0W�J�Q�9N�����\���9� �R���ڃ��+5 8�=� �R���ڃ��u'ऎAN�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� &�MNf�a�ȕ�#Ys��+3 8�=� �R���ڃ��u'ऎAN�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� '�F� 8�c�p�&G�9WjpT{p��͚�ܐI���9N�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� '�F� 8�c�p�&G�9WjpT{�p�&G�9�9ur��$�� '�JM�jb�Е��Ys��s'���AN�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� '�F� 8�c�p�&G�9WjpT{�p�&G�97�N�I���+5 8�=� �BW�f�q��$��� '�F� 8�c�p�&G�9WjpT{�p�&G�97�N�I���+5 8�=� �R���ڃ��+5 8�=� �QwN��\�I�Q�AN�����\�I�Q�AN���pR� &� +] 8�5� �2��#ڃ��+5 8�=� �QwN��\�I�Q�AN�����\�I�Q�AN��zN�A����+5 8�=� �R���ڃ��+5 8�=� �QwN��\�I�Q�AN�����\�I�Q�AL� ��̞�\�+G��8WfpD{����J��{���� ����;���͇�_�`�>��a%���~������G��o?����O�}���k�������������_�s�_w�x_�z���@��jr����x�� �xF�=�c�{<���C���Sjz<T{�{<���C���3���H���)5=�=�=�BW��f�q����x�� �xF�=�c�{<���C���Sjz<T{�{<���C���3���H���)5=�=�=�R��ڃ��)5=�=�=�Qw�G��O���P�A����O���P�A��{<R� �x�<�x(^�a�����Xs��)3=�=�=�P�=�s�{<���C���Sjz<T{�{<���C���3���H���)5=�=�=�R��ڃ��)5=�=�=�Qw�G��O���P�A����O���P�A����̞�O���C���Sfz<D{�{<���C���3���H���)5=�=�=�R��ڃ��)5=�=�=�Qw�G��O���P�A����O���P�A��{<R� �xJM��jr����x�� �x +]=�5�=�!���s��)3=�=�=�R��ڃ��)5=�=�=�Qw�G��O���P�A����O���P�A��{<R� �xJM��jr����x�� �xJM��jr�'�s���O���P�A����O���C���3������)5=�=�=�R��ڃ��)5=�=�=�Qw�G��O���P�A����O���P�A��{<R� �xJM��jr����x�� �xJM��jr�g���:��Sjz<T{{<��͚�O����A��{<R� �xJM��jr����x�� �xJM��jr�g���:��Sjz<T{�{<���C���Sjz<T{�{<����1�=�R��ڃ��)5=�=�=�R��ڃ��u�x��A���z<4k�{<e��C���Sjz<T{�{<����1�=�R��ڃ��)5=�=�=�R��ڃ�� ���:��Sjz<T{�{<���C���Sjz<T{�{<����1�=�R��ڃ��)5=�=�=�R��ڃ��4=�=�=�"W��d�q����x�� �x�{2����8�x_z���c�x�o�xG����{����xV���O_���o��~������������x����N�����m������c_?���o������������O�=9q����������p�p~����).��^�����)P�A~�¨�a +R� ?L��<L�j��J���� >L���0�5�S2S�s�0�2�0�=�S(5S�ڃ�0�R�0�=�Su?LA��)���)P�A~�B�y���)���)P�A~�¨�a +R� ?L��<L�j��J���� ?L��<L�j��B=?L��)���)P�A~�B�y��ć)��@���a +c�)��0�R�0�=�S(5S�ڃ�0�R�0�=�Su?LA��)���)P�A~�B�y���)���)P�A~�¨�a +R� ?L��<L�j��J���� ?L��<L�j��F�S�:�a +��a +T{�P�z�͚�)���)�A~�¨�a +R� ?L��<L�j��J���� ?L��<L�j��F�S�:�a +��a +T{��Pj�@��a +��a +T{��0�~���1�S(5S�ڃ�0�R�0�=�S(5S�ڃ�0�Q����A|�B��a +4k��Pf�@��a +��a +T{��0�~���1�S(5S�ڃ�0�R�0�=�S(5S�ڃ�0�P�S�:�a +��a +T{��Pj�@��a +��a +T{��0�~���1�S(5S�ڃ�0�R�0�=�S(5S�ڃ�0�A�0�=�S(r=L�d�������� ?LA�,_<L����0���8<]}��������N���q���:��<�9�px����#�G)�׃������>���_߽����?��/�}���/�����'��~��鷗�~�o�O�W.߽�z�87����������_n�ڃ|sب��0�c�o+57�Q�A�9���F���Rss���F�7�I�|sX��9�j��a����h��Vfn#ڃ|sب��0�c�o+57�Q�A�9���F���Rss���F�7�I�|sX��9�j��a���0�=�7����è� �6�9L���J��aT{�o+57�Q�A�9���F���Q��aR� �V���0��cxsX���0�5�7����È� ����0�s�o+57�Q�A�9���F���Rss���F�7�I�|sX��9�j��a���0�=�7����è� �6�9L���J��aT{�o+57�Q�A�9���F���Ass�̞ÛÊ\7���9�9���F���Rss���F�7�I�|sX��9�j��a���0�=�7����è� �6�9L���J��aT{�o+5��=ș�R�ɡڃ��ugr��A�䔚L��LN���P�A���294k39C&�#��8�Sf29D{�39�&�C�9�Sj29T{�39��L��1ș�R�ɡڃ��)5��=ș�R�ɡڃ��ugr��A�䔚L��LN���P�A�䔚L��LN��L�9ș�R�ɡڃ��)5��=���BW&�f�q&g̝�:9�Sj29T{�39�&�C�9�Sj29T{�39��L��1ș�R�ɡڃ��)5��=ș�R�ɡڃ��ugr��A�䔚L��LN���P�A�䔚L��LΨ;�#ur&��dr�� fr +]��5Ǚ�2��!ڃ��ugr��A�䔚L��LN���P�A�䔚L��LΨ;�#ur&��dr�� grJM&�jr&��dr�� grFݙ�c�39�&�C�9�Sj29T{�39�&�C�9�3���H���)terh�gr�L&�hr&��dr�� grFݙ�c�39�&�C�9�Sj29T{�39�&�C�9��9�ur&��dr�� grJM&�jr&��dr�� grFݙ�c�39�&�C�9�Sj29T{�39�&�C�1�3h292{39E�Lɚ�LN����A�䮗]*���q��.�dr��9��7�O|sx}&��a�r����_���������������o���/۸ۻ���w=��[���}�����>�������~�\������wܗ_����7��R�nwR]�eu^Q�nn�z��j^QW���4��� 7�JM�jr�h��<�:�yTj�GT{��G��yD��yTj�GT{��G����1�ͣR�<�ڃ�<*t5�h�7��L�hr�h��<�:�yTj�GT{��G��yD��yTj�GT{��G����1�ͣR�<�ڃ�<*5�#�=�ͣR�<�ڃ�<u7���An������Q�iQ�An������Ѩ�y$uR��S���6� +\�#�5�ͣ2�<"ڃ�< +��<�:�yTj�GT{��G��yD��yTj�GT{��G����1�ͣR�<�ڃ�<*5�#�=�ͣR�<�ڃ�<u7���An������Q�iQ�An������Ѡi��9l��G$k��Ge�yD��yTj�GT{��G����1�ͣR�<�ڃ�<*5�#�=�ͣR�<�ڃ�<u7���An������Q�iQ�An������Ѩ�y$ur��4��� 7�JM�jb���<�Ys�<2�#�=�ͣ2�<"ڃ�<*5�#�=�ͣR�<�ڃ�<u7���An������Q�iQ�An������Ѩ�y$ur��4��� 7�JM�jr��4��� 7�B=7���An������Q�iQ�Al��G4k��Gc���1�ͣR�<�ڃ�<*5�#�=�ͣR�<�ڃ�<u7���An������Q�iQ�An������Ѩ�y$ur��4��� 7�JM�jr��4��� 7�F��#�c��G��yD��yT�jѬ9n������Ѩ�y$ur��4��� 7�JM�jr��4��� 7�F��#�c��G��yD��yTj�GT{��G��yD��y4�nI��<*5�#�=�ͣR�<�ڃ�<*5�#�=�ͣQw�H���Q��yD��yTf�GD{��G��yD��y4�nI��<*5�#�=�ͣR�<�ڃ�<*5�#�=�ͣP��#�s��G��yD��yTj�GT{��G��yD��y4�nI��<*5�#�=�ͣR�<�ڃ�<*5�#�=�ͣA�<��s�<*r5�H�7��L�hr�x��S�#~�S�x�5�y��=��p��������_A�7�7��Y������>ǿz��>O�����n}���|����:����k�endstream endobj 1114 0 obj << /Type /Page @@ -2331,14 +2306,14 @@ endobj /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 282.082 198.963 290.994] /Subtype /Link -/A << /S /GoTo /D (521) >> +/A << /S /GoTo /D (528) >> >> endobj 1180 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 282.082 537.983 290.994] /Subtype /Link -/A << /S /GoTo /D (521) >> +/A << /S /GoTo /D (528) >> >> endobj 1181 0 obj << /Type /Annot @@ -2385,156 +2360,156 @@ endobj 1187 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [143.462 232.334 224.109 239.188] +/Rect [119.552 230.277 178.221 239.188] /Subtype /Link -/A << /S /GoTo /D (http-aol) >> +/A << /S /GoTo /D (install-config-bugzilla) >> >> endobj 1188 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [528.02 232.334 537.983 239.188] +/Rect [528.02 230.277 537.983 239.188] /Subtype /Link -/A << /S /GoTo /D (http-aol) >> +/A << /S /GoTo /D (install-config-bugzilla) >> >> endobj 1189 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 217.325 178.221 226.237] +/Rect [95.641 217.325 250.898 226.237] /Subtype /Link -/A << /S /GoTo /D (install-config-bugzilla) >> +/A << /S /GoTo /D (extraconfig) >> >> endobj 1190 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 217.325 537.983 226.237] /Subtype /Link -/A << /S /GoTo /D (install-config-bugzilla) >> +/A << /S /GoTo /D (extraconfig) >> >> endobj 1191 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [95.641 204.374 250.898 213.285] +/Rect [119.552 204.374 192.328 213.285] /Subtype /Link -/A << /S /GoTo /D (extraconfig) >> +/A << /S /GoTo /D (627) >> >> endobj 1192 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 204.374 537.983 213.285] /Subtype /Link -/A << /S /GoTo /D (extraconfig) >> +/A << /S /GoTo /D (627) >> >> endobj 1193 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 191.422 192.328 200.334] +/Rect [119.552 191.422 222.605 200.334] /Subtype /Link -/A << /S /GoTo /D (645) >> +/A << /S /GoTo /D (646) >> >> endobj 1194 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 191.422 537.983 200.334] /Subtype /Link -/A << /S /GoTo /D (645) >> +/A << /S /GoTo /D (646) >> >> endobj 1195 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 178.471 222.605 187.382] +/Rect [119.552 178.471 219.726 187.382] /Subtype /Link -/A << /S /GoTo /D (658) >> +/A << /S /GoTo /D (installation-whining-cron) >> >> endobj 1196 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 178.471 537.983 187.382] /Subtype /Link -/A << /S /GoTo /D (658) >> +/A << /S /GoTo /D (installation-whining-cron) >> >> endobj 1197 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 165.52 219.726 174.431] +/Rect [119.552 165.52 179.327 174.431] /Subtype /Link -/A << /S /GoTo /D (installation-whining-cron) >> +/A << /S /GoTo /D (installation-whining) >> >> endobj 1198 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 165.52 537.983 174.431] /Subtype /Link -/A << /S /GoTo /D (installation-whining-cron) >> +/A << /S /GoTo /D (installation-whining) >> >> endobj 1199 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 152.568 179.327 161.48] +/Rect [119.552 154.625 197.409 161.48] /Subtype /Link -/A << /S /GoTo /D (installation-whining) >> +/A << /S /GoTo /D (patch-viewer) >> >> endobj 1200 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [528.02 152.568 537.983 161.48] +/Rect [528.02 154.625 537.983 161.48] /Subtype /Link -/A << /S /GoTo /D (installation-whining) >> +/A << /S /GoTo /D (patch-viewer) >> >> endobj 1201 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 141.674 197.409 148.528] +/Rect [119.552 141.674 231.78 148.528] /Subtype /Link -/A << /S /GoTo /D (patch-viewer) >> +/A << /S /GoTo /D (bzldap) >> >> endobj 1202 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 141.674 537.983 148.528] /Subtype /Link -/A << /S /GoTo /D (patch-viewer) >> +/A << /S /GoTo /D (bzldap) >> >> endobj 1203 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 128.723 231.78 135.577] +/Rect [119.552 126.665 355.445 135.577] /Subtype /Link -/A << /S /GoTo /D (bzldap) >> +/A << /S /GoTo /D (apache-addtype) >> >> endobj 1204 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [528.02 128.723 537.983 135.577] +/Rect [528.02 126.665 537.983 135.577] /Subtype /Link -/A << /S /GoTo /D (bzldap) >> +/A << /S /GoTo /D (apache-addtype) >> >> endobj 1205 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 113.714 355.445 122.625] +/Rect [95.641 113.714 234.28 122.625] /Subtype /Link -/A << /S /GoTo /D (apache-addtype) >> +/A << /S /GoTo /D (os-specific) >> >> endobj 1206 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 113.714 537.983 122.625] /Subtype /Link -/A << /S /GoTo /D (apache-addtype) >> +/A << /S /GoTo /D (os-specific) >> >> endobj 1207 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [95.641 100.762 234.28 109.674] +/Rect [119.552 102.7 223.78 109.674] /Subtype /Link -/A << /S /GoTo /D (os-specific) >> +/A << /S /GoTo /D (os-win32) >> >> endobj 1208 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [528.02 100.762 537.983 109.674] +/Rect [528.02 102.7 537.983 109.674] /Subtype /Link -/A << /S /GoTo /D (os-specific) >> +/A << /S /GoTo /D (os-win32) >> >> endobj 1116 0 obj << /D [1114 0 R /XYZ 71.731 729.265 null] @@ -2547,39 +2522,80 @@ endobj /ProcSet [ /PDF /Text ] >> endobj 1258 0 obj << -/Length 58097 +/Length 58035 /Filter /FlateDecode >> stream -xڔ�͒dׁ]�y=������C�����Rue-3I4�"aMeV��J��y�>���勦I����$ �u��������y9�^��;�??}���7w��q�w���9�'��O�O��?��o~�x~==n��ߝ���W�9��NO���/w�����/��������|�vz{~�����M�3���?}{z<�O�}�t���~��/������������ݷ?���w�O���_��/��?����4��N/��Ouzx9����>�o}�<���>~�����õrEݟ����u��|:?Hu<��2x�>�����?{C��u��ORݟ������} wVݟ����u��|�{{v�x��e�@}8=��Hu��ڃ����Ū��7�<P_OOϯRݟ����u�i��ޜ:�eu<P���Ѫ��7�<P��A�Ib�Ys��|�!����h^W����^��YV��u���Rݟ������}wVݟ��������Ǜ�17�����u�e�+�W����,�����pz|���� �ԧ�y�cn<{C��u��䏹�� �������(��,�����} ���x��ڃ��5��s��j���p���� ���o��p'̍gY]��k��'o�����ӫ����� �����|�?�Ƴ7���>�ݝ^_�<��:x�>����?{C��u����?{C��u�7��?sC����y��:�eu<P����I���7�<P����,���j�ۿyg���j^W��N/o�\�eu<PN�O����P{�@}:��Xu��ڃ�����M���7���>l_����(�=w@n߁����� ����x<Ks�ڃ��<ȟ6��j^W���^��YV��u���g�x��ڃ��5ȿ �go�=x����oVݟ����u�����*�{3�eu<PNg�'��� �ԧ��U�go�=x�n_Ó�7�����u�y��O��,�����} Vݟ������} ��g�x��ڃ��5�?!��0k�:��}����(�=w@n_��5�go�=x�>����/�x��ڃ����ժ��7����ޝ�^�ϸ�,�����p�{�?mƳ7�<P���ɪ��7�<P���Q����P{���} Rϲ����p/ƍgo�=x�n_�Y����P{�@ݾ�;����P{��xwwz|s?��,����zz�/��P{�@}:=�Xu��ڃ��I�M��� �殓��;�?Z�,�����}OVݟ������}��Rݟ������}��I�����u�~��:�eu<P����(���j��� ����j�/��7����P{��pwzxu?��,����zz��N�� �ԧ�óU�go�=x�n_Ó�17�����u�q�䱓<��2x�n_ÃU�go�=x�n_��S��� ����;��N�� ���O�wp��x��e�@ݾy�$��P{�@}:��c'y��ڃ����ժ��7���>ߝ�屓<��2x�ޟ^䱓<{C��u����?{C��u�䱓<{C������5�c'y��e�@ݾ�{����P{�@ݾy�$��P{�@ݾy�$��P{��zw:�Iu<��2x�ޟ�-���f��O��<|�go�=x����_��?{C��������'y��e�@ݾy�$��P{�@ݾ�G����P{�@ݾy�$��P{��t�} ��γ�����5���?{C��u���<{C�����$�>S�����u�|w���D�eu<P�OO��I�������t�{���� ���k��D�����u�~��q�G��r�%���d��� k�<{��u��>�#��B�^�=ݿ�n��n<S��݇���rz��۬w�C���Y���_�V�������������������z�8�3��1������?��珉��������+w�r�:n��_�*�>gz�9Oג��竟㊺?{C��u�0�:�NV{�N�����ĬS��:Q]1�t��:Y�A�:�:�NV{�N�����ĬS��:Q]1�t��:Y�A�:�:�NV{�N�����ĬS��:Q]1�t��:Y�A�:�g�l�f��Y'�=�Y�R�u��b��ԑu�ڃ�u:ud��� f�NY'�=�Y�R�u��b��ԑu�ڃ�u:ud��� f�NY'�=�Y�R�u��b��ԑu�ڃ�u:ud��� f�NY'�=�Y�R�u��B��̯Y'���(�t��u�Xs�u:sd��� f�F�Y'�� f�NY'�=�Y�SG��jb��ԑu�ڃ�u*5Y'�� f�NY'�=�Y�SG��jb��ԑu�ڃ�u*5Y'�� f�NY'�=�Y�SG��jb��ԑu�ڃ�u*td�h�e��ܳN&k�Ng����Ĭө#�d�1�Tj�NT�A�:�:�NV{�N�����Ĭө#�d�1�Tj�NT�A�:�:�NV{�N�����Ĭө#�d�1�Tj�NT�A�:�:�NV{�N�������ӡ{��f�Q֩ȑu"�s�u:sd��� f�NY'�=�Y�SG��jb֩�d��.��u:ud��� f�NY'�=�Y�SG��jb֩�d��.��u:ud��� f�NY'�=�Y�SG��jb�iԙu��b��ԑu�ڃ�u:ud��� e�ݳN6k�Ne&�DtĬө#�d�1�t��:Y�A�:�:�NV{�N�&�DuĬө#�d�1�t��:Y�A�:�:�NV{�N�&�DuĬө#�d�1�t��:Y�A�:�:�NV{�N�&�DuĬө#�d�)�t�u�Ys�u:sd��� f�JM։�2�Y�SG��jb��ԑu�ڃ�u:ud��� f�JM։�2�Y�SG��jb��ԑu�ڃ�u:ud��� f�JM։�2�Y�SG��jb��ԑu�ڃ�u:ud��� f�JM։�2HY�C���͚ìә#�d�1�t��:Y�A�:����e�N�����Ĭө#�d�1�t��:Y�A�:�:�NR�A�:�:�NV{�N�����Ĭө#�d�1�Tj�NT�A�:�:�NV{�N�����Ĭө#�d�)�T��:��9�:�g�L�f��Y'�=�Y'Ɖ��N�_����0�ϱd��Y��3��g�:�3��������_k�������_����Z}^������Z��Q�9����[x�鏻���T{����[@��[Pj�T{����n��e����[@��[Pj�T{����[@��[0��H]�[P��-��~��nŚ�nA���A��z�@]�[Pj�T{����[@��[Pj�T{����n��e����[@��[Pj�T{����[@��[0��H]�[Pj�T{����[@��[Pj�T{���[ ��[P����9���n��nA��P�A��:�R�A���n��nA��P�A���n��n���[ u�nA��P�A���n��nA��P�A��:�R�A���n��nA��P�A�:�4k�C�[ ��[Pf�D{����[@��[Pj�T{����n��e����[@��[Pj�T{����[@��[0��H]�[Pj�T{����[@��[Pj�T{���^�P�A���n��nA��P�A�:�4k��c�n��e����[@��[Pj�T{����[@��[0��H]�[Pj�T{����[@��[Pj�T{����n��e����[@��[Pj�T{����[@��[0��H]�[Pj�T{���n͚�nA���A��:�R�A���n��nA��P�A���n��n���[ u�nA��P�A���n��nA��P�A��:�R�A���n��nA��P�A���n��n���[ u�nA��[@��[Pf�D{����[@��[0��H]�[Pj�T{����[@��[Pj�T{���^�P�A���n��nA��P�A���n��n���[ u�nA��P�A���n��nA��P�A��n�̞�nA��[@��[Pf�D{��:h/��{��>8��?�_�:�����w�K��0������O�?�ß~���t�������/?����_�;�y��}��_�U _�&��s}���~�\�u����*���A����)�\�=�窔�sU�� ��2�<WE�2�窔�sU�� ��Rj�U�ڃ|�J�9W�j�*��sU�.�|�J�9W�j�*��\�=�窔�sU�� ��2�<WE�2�窔�sU�� ��Rj�U�ڃx�J��\�5���sUD���Rf�U!ڃ|�J�9W�j�*��\�=�窌:�U���*��\�=�窔�sU�� ��Rj�U�ڃ|�ʨ�\�� ��Rj�U�ڃ|�J�9W�j�*��\�=�窄z9W�:�窔�sU�� ��Rj�U�ڃx�J��\�5�窌9�U��*��\�=�窔�sU�� ��Rj�U�ڃ|�ʨ�\�� ��Rj�U�ڃ|�J�9W�j�*��\�=�窌:�U���*��\�=�窔�sU�� ��Rj�U�ڃ|�ʨ�\�� ��Rj�U�ڃx�J��\�5�窔�sU�� ��2�<WE�2�窔�sU�� ��Rj�U�ڃ|�J�9W�j�*��sU�.�|�J�9W�j�*��\�=�窔�sU�� ��2�<WE�2�窔�sU�� ��Rj�U�ڃ|�J�9W�j�*��sU�.�x�J��\�5�窔�sU�� ��Rj�U�ڃ|�ʨ�\�� ��Rj�U�ڃ|�J�9W�j�*��\�=�窄z9W�:�窔�sU�� ��Rj�U�ڃ|�J�9W�j�*��sU�.�|�J�9W�j�*��\�=�窔�sU�� ��2h�U��sx�J��\�5�窔�sU�� ����>�\~��\��CL�窎?�_y�������U�g.�ǹ������?��Sg�����{�'��×�V�}��o;^6��|�����U��ϧ����y���x������]�W���j\�:n�5����e���Uj��E���[���[T{���Uj��E���[��koI]��[���[T{���Uj��E���[���[T{���5����e���U�~�-�����[�koQ�9��V�����ko�z���u���Uj��E���[���[T{���Uj��E���[��koI]��[���[T{���Uj��E���[���[T{���5����e���Uj��E���[���[T{���Uj��E���[���[2{��U��3��9�3��<��<C��3P�A�3�:�R�A�3��<��<C��3P�A�3��<��<è3� u�<C��3P�A�3��<��<C��3P�A�3�:�R�A�3��<��<C��3P�A�3:�4k�C&� ��8�Pf�D{���&�@�9�Pj�T{����<��e���&�@�9�Pj�T{���&�@�9�0��3H]9�Pj�T{���&�@�9�Pj�T{���^�P�A�3��<��<C��3P�A�3:�4k��c�<��e���&�@�9�Pj�T{���&�@�9�0��3H]9�Pj�T{���&�@�9�Pj�T{����<��e���&�@�9�Pj�T{���&�@�9�0��3H]9�Pj�T{���<͚�<C��3�A�3�:�R�A�3��<��<C��3P�A�3��<��<è3� u�<C��3P�A�3��<��<C��3P�A�3�:�R�A�3��<��<C��3P�A�3��<��<è3� u�<C�#�@��8�Pf�D{���&�@�9�0��3H]9�Pj�T{���&�@�9�Pj�T{���^�P�A�3��<��<C��3P�A�3��<��<è3� u�<C��3P�A�3��<��<C��3P�A�3�<�̞�<C�#�@��8�Pf�D{��j -D���c�3��<��s|�x~==>��3�o���|�LJ����ݫy�x(�$ϸq��~���O��?���{�����[.��Q��_!������ۭO9z�)?|����˯���Qϲ��������P{�@}>���A��?{C��u���nR���7��~��n���gQ]��kxx���� ���k��I����P{�@ݾ��U�go�=x]=o_�ݫSdz�.����;�7����P{�@}�~kg���j���g����f�]'�ϧ��Ms<��2x�n���U�go�=x�n���������P{�@ݾ������P{���} Rϲ����p�(���j���p�?pƳ7�<P���Ϊ��7���>�Owo���x��e�@��M����P{�@}>ݽXu��ڃ�����Yx<{C������5<�8�YV��u�7��?{C��u��$�Go�5w@n�����3�����Am�}�Rϲ��ۿy�?�Ƴ7�<P���Vݟ��� ��JMϏjr�o���rϯ����� ��JMϏjrϯ����� ��F�=?�� ��JMϏjrϯ����� ��JMϏjr�o���Rϯ̽�G���� -=?�5�=�2��#ڃ�����rϯ����� ��JMϏjrϯ����� ��F�=?�� ��JMϏjrϯ����� ��JMϏjr�o���rϯ����� ��JMϏjrϯ����� ��M�Of�aϯ���#Ys��+3=?�=�=�R��ڃ��u���.���+5=?�=�=�R��ڃ��+5=?�=�=�Qg�O�2�=�R��ڃ��+5=?�=�=�R��ڃ��u���.���+5=?�=�=�R��ڃ��+t��h����L�Od�qϯ����� ��JMϏjrϯ����� ��F�=?�� ��JMϏjrϯ����� ��JMϏjr�o���rϯ����� ��JMϏjrϯ����� ��B��������+5=?�=�=�R��ڃ��+t��h���Ɯ=?�� ��JMϏjrϯ����� ��JMϏjr�o���rϯ����� ��JMϏjrϯ����� ��F�=?�� ��JMϏjrϯ����� ��JMϏjr�o���rϯ����� �� -=?�5�=�2��#ڃ��u���.���+5=?�=�=�R��ڃ��+5=?�=�=�Qg�O�2�=�R��ڃ��+5=?�=�=�R��ڃ��u���.���+5=?�=�=�R��ڃ��+5=?�=�=�Qg�O�2�=�BGϏf�qϯ����� ��JMϏjr�o���rϯ����� ��JMϏjrϯ����� ��B��������+5=?�=�=�R��ڃ��+5=?�=�=�Qg�O�2�=�R��ڃ��+5=?�=�=�R��ڃ��4=?�=�=�"GϏd�qϯ����� ���a����s�=��x���?�K�����~<q�?�I��0z����������ӏ����|w��v�nq�㸖7�~����1��r��%��=��;��w��=��A�=$u��P�iQ�An������P�iQ�An�:�CR�An������P�iQ�An������Ш�=$u��P�iQ�Al:�C4k��Ce�=D��=4�lI]�=Tj�CT{��C��=D��=Tj�CT{��C�����e��C��=D��=Tj�CT{��C��=D��=4�lI]�=Tj�CT{��C��=D��=Tj�CT{��C�����e��Ce��!��ǰ=T�hQ�9n������P����u��C��=D��=Tj�CT{��C��=D��=4�lI]�=Tj�CT{��C��=D��=Tj�CT{��C�����e��C��=D��=Tj�CT{��C��=D��=4h�C2{�CE��ɚ��P�i�An������Ш�=$u��P�iQ�An������P�iQ�An�:�CR�An������P�iQ�An������Ш�=$u��P�iQ�An������P��=D��=4d�C"{��Ce�=D��=Tj�CT{��C��=D��=4�lI]�=Tj�CT{��C��=D��=Tj�CT{��C�����e��C��=D��=Tj�CT{��C��=D��=�=u��P�iQ�An������P��=D��=4�l ]�=Tj�CT{��C��=D��=Tj�CT{��C�����e��C��=D��=Tj�CT{��C��=D��=4�lI]�=Tj�CT{��C��=D��=Tj�CT{��C�����e��C��=D��=T�hѬ9n������Ш�=$u��P�iQ�An������P�iQ�An�:�CR�An������P�iQ�An������Ш�=$u��P�iQ�An������P�iQ�An�:�CR�Al:�C4k��Ce�=D��=Tj�CT{��C�����e��C��=D��=Tj�CT{��C��=D��=�=u��P�iQ�An������P�iQ�An�:�CR�An������P�iQ�An������Рi��9l9�C$k��Ce�=D��=<n�T{��co߇~�����������Sx���S���Y��?Xϯ�W?�x&���������������{�������|����������}�˯?���?�������~��?���?��c��xz��?�]>��,����(KL�$�p���W8?T8�� W8F��� W8JM��jr���T8�� W8JM��jr�c�Yᐺr���T8�� W8JM��jr���T8�� W8F��� W8JM��jr���T8�� W8JM��jr�c�YᐺR��̽�A��V8 -�5��2S� ڃ\��R်r���T8�� W8JM��jr���T8�� W8F��� W8JM��jr���T8�� W8JM��jr�c�Yᐺr���T8�� W8JM��jr���T8�� V8M�Cf�a���Q� Ys\�(3�=��RS�ڃ\�uV8�.�\�(5�=��RS�ڃ\�(5�=��Qg�C�2��RS�ڃ\�(5�=��RS�ڃ\�uV8�.�\�(5�=��RS�ڃX�(tT8h�V8�L�Cd�q���T8�� W8JM��jr���T8�� W8F��� W8JM��jr���T8�� W8JM��jr�c�Yᐺr���T8�� W8JM��jr���T8�� W8B�T8���\�(5�=��RS�ڃX�(tT8h�W8Ɯ�� W8JM��jr���T8�� W8JM��jr�c�Yᐺr���T8�� W8JM��jr���T8�� W8F��� W8JM��jr���T8�� W8JM��jr�c�Yᐺr���T8�� V8 -�5��2S� ڃ\�uV8�.�\�(5�=��RS�ڃ\�(5�=��Qg�C�2��RS�ڃ\�(5�=��RS�ڃ\�uV8�.�\�(5�=��RS�ڃ\�(5�=��Qg�C�2��BG��f�q���T8�� W8JM��jr�c�Yᐺr���T8�� W8JM��jr���T8�� W8B�T8���\�(5�=��RS�ڃ\�(5�=��Qg�C�2��RS�ڃ\�(5�=��RS�ڃX�4�=��"G��d�q���T8�� W8ǩ��p�s������9����O/����L:��)�ͯ�|��?����O�=�=�^�s����;Jk��_�_�㍇������|���? -~�W���j����/��R��� ���x�;����gQ]��kxx���� ���k��[+����P{�@ݾ��U�go�=x]=o_�ݫSdz�.����ۜ7����P{�@}�~�c���j���g����f�]'�ϧ��Zs<��2x�n���U�go�=x�n���$����P{�@o�Tj^1�j�+&�:_1I�2ȯ�Tj^1�j�+&��WL�ڃ��I����� �bҨ���.���I����� �bR�y�$�=ȯ�Tj^1�j�+&�:_1I�2ȯ�Tj^1�j�+&:�v4k��ve&nG�9n7��I]9nWj�vT{��v�&nG�9nWj�vT{��v�θ��e��v�&nG�9nWj�vT{��v�&nG�9n7��I]9nWj�vT{��v�&nG�9nWj�vT{��v�θ��e��ve�q;���0nW���Q�9�ە����]����u��v�&nG�9nWj�vT{��v�&nG�9n7��I]9nWj�vT{��v�&nG�9nWj�vT{��v�θ��e��v�&nG�9nWj�vT{��v�&nG�1n7h�v2{�vE��ɚ�]����A�ە����ݨ3n'u�]���Q�A�ە����]���Q�A�ۍ:�vR�A�ە����]���Q�A�ە����ݨ3n'u�]���Q�A�ە���ĸ]�#nG��0n7d�v"{��ve&nG�9nWj�vT{��v�&nG�9n7��I]9nWj�vT{��v�&nG�9nWj�vT{��v�θ��e��v�&nG�9nWj�vT{��v�&nG�9n�%nu�]���Q�A�ە���ĸ]�#nG��8n7�� ]9nWj�vT{��v�&nG�9nWj�vT{��v�θ��e��v�&nG�9nWj�vT{��v�&nG�9n7��I]9nWj�vT{��v�&nG�9nWj�vT{��v�θ��e��v�&nG�1nW��Ѭ9�ە����ݨ3n'u�]���Q�A�ە����]���Q�A�ۍ:�vR�A�ە����]���Q�A�ە����ݨ3n'u�]���Q�A�ە����]���Q�A�ۍ:�vR�A��:�v4k��ve&nG�9nWj�vT{��v�θ��e��v�&nG�9nWj�vT{��v�&nG�9n�%nu�]���Q�A�ە����]���Q�A�ۍ:�vR�A�ە����]���Q�A�ە���ĸݠ����9��9�v$k��ve&nG�9n�V[���9���}I�p��%n?s���v�~�uƸ=�$n�q����?����C�u����ͻ�o����d�/��o��n|�����10=��}����(�=w@>�^�gi���@{�@}>=�Yu��ڃ����������P{��ր��~�ϿRdz�.��~��Sǽ�� ����q/�=��28u���j�F��2���N�2�ڃx/�Sǽ�� ����q/�=��2(5�2���N�2�ڃx/�Sǽ�� �����^6k�ePf�e@t�{�:�e`��^��{X�A�����^V{�ePj�e@u�{�:�e`��^��{X�A�����^V{�ePj�e@u�{�:�e`��^��{X�A�����^V{�ePj�e@u�{�:�e`��^���2�Ysx/�3ǽ�� �ˠ��ˀ�2��28u���j�N�2�ڃx/�Sǽ�� �ˠ��ˀ�2��28u���j�N�2�ڃx/�Sǽ�� �ˠ��ˀ�2��28u���j�N�2�ڃx/�Sǽ�� �ˠ��ˀ�2�28��,��{����b����20ڃx/�Q����x/�Sǽ�� ����q/�=��28u���j�Jͽ�.�x/�Sǽ�� ����q/�=��28u���j�Jͽ�.�x/�Sǽ�� ����q/�=��28u���jҽ -�2��st/�#�{��9�����^F{�ep긗���{��{P]�^��{X�A�����^V{�ep긗���{��{P]�^��{X�A�����^V{�ep긗���{��{P]�^��{X�A�����^V{��ep�~/�5G�2(r�ˀd����20ڃx/�Sǽ�� ����q/�=��2(5�2���N�2�ڃx/�Sǽ�� ����q/�=��2(5�2���N�2�ڃx/�Sǽ�� ����q/�=��2u��@�:��28u���j�N�2�ڃt/�C�{ج9��A����e�ep긗���{�:�e`��^��{X�A��A����e�ep긗���{�:�e`��^��{X�A��A����e�ep긗���{�:�e`��^��{X�A��A����e�ep긗���{����f����20ڃx/�Rs/�� ����q/�=��28u���j�N�2�ڃx/�Rs/�� ����q/�=��28u���j�N�2�ڃx/�Rs/�� ����q/�=��28u���j�N�2�ڃx/�Rs/�� �����^6k�ep渗���{�:�e`��^��^T�A�����^V{�ep긗���{�:�e`��^��{H]�^��{X�A�����^V{�ep긗���{��{P]�^��{X�A�����^V{�ep긗���{:�e@���^G��20Ysx/�3ǽ�� ���� �{�s|}�.A8��>��o��gͽ��n�~���W\-��Cy�r/�y�����}���?�����?��/�?���O�w��?�����/�./��!�O������������w������GgQ�A>:���E���Rst�䣳F�GgI]��Rst�䣳J��YT{���*5GgQ�A>:k�yt��e���*5GgQ�A>:���E���Rst�ģ���Y2{��*r�E����2st�䣳J��YT{���u�%u䣳J��YT{���*5GgQ�A>:���E���Q��YR�A>:���E���Rst�䣳J��YT{���u�%u䣳J��YT{���*5GgQ�A<:��qt͚ã����Y"{���*3Gg�A>:���E���Rst�䣳F�GgI]��Rst�䣳J��YT{���*5GgQ�A>:k�yt��e���*5GgQ�A>:���E���Rst�䣳B��u䣳J��YT{���*5GgQ�A<:��qt͚㣳ƜGg ]��Rst�䣳J��YT{���*5GgQ�A>:k�yt��e���*5GgQ�A>:���E���Rst�䣳F�GgI]��Rst�䣳J��YT{���*5GgQ�A>:k�yt��e���*5GgQ�A<:��qt͚㣳���YD{���u�%u䣳J��YT{���*5GgQ�A>:���E���Q��YR�A>:���E���Rst�䣳J��YT{���u�%u䣳J��YT{���*5GgQ�A>:���E���Q��YR�A<:��qt͚㣳���YD{���*5GgQ�A>:k�yt��e���*5GgQ�A>:���E���Rst�䣳B��u䣳J��YT{���*5GgQ�A>:���E���Q��YR�A>:���E���Rst�䣳J��YT{��4Gg��9<:��qtɚ㣳���YD{�����TGg�s�GgߟS=>:{�9��W�m� x��[��4�����88�?���oD�~���3�ݏ�P�۟,�h�|>=|��s���C�?��W3=?l�ӵrEݟ������|z�r -D���7�<P��4|��iJݟ����u�e���:�eu<P����U���7�<P�����NS��� ����>��]��� �Рy �=��Tf��h����w�ڃ�.@��]��� �Ш�]��.��.@��]��� �P�y �=��Tj��j���zy �� �P�y �=��Tj��j����w�ڃ�.@��w������w�ڃ�.@��]��� �P��]�h��И�]��.��.@��]��� �P�y �=��Tj��j���:�H�2��Tj��j����w�ڃ�.@��]��� �Ш�]��.��.@��]��� �P�y �=��Tj��j���:�H�2��Tj��j��:��f�����w"ڃ�.@��w������w�ڃ�.@��]��� �P�y �=��4�| �� �P�y �=��Tj��j����w�ڃ�.@��w������w�ڃ�.@��]��� �P�y �=��4�| �� �P����Q|?��T�x �5��Tf��h���z���u�/4Qj.4A��B��BT{�/4Qj.4A��B��MH]�B��BT{�/4Qj.4A��B��BT{�/41�Є�e�/4Qj.4A��B��BT{�/4Qj.4A��B��B2{/4Q��ɚ�M��M�A��D�����M�:/4!u�M��MP�A��D�����M��MP�A��Ĩ�BR�A��D�����M��MP�A��D�����M�:/4!u�M��MP�A��D�����M:.4A���BC�B"{�/4Qf.4A��B��BT{�/4Qj.4A��B��MH]�B��BT{�/4Qj.4A��B��BT{�/41�Є�e�/4Qj.4A��B��BT{�/4Qj.4A��B�^.4u�M��MP�A��D�����M:.4A���Bc�M]�B��BT{�/4Qj.4A��B��BT{�/41�Є�e�/4Qj.4A��B��BT{�/4Qj.4A��B��MH]�B��BT{�/4Qj.4A��B��BT{�/41�Є�e�/4Qj.4A��B��MЬ9��D�����M�:/4!u�M��MP�A��D�����M��MP�A��Ĩ�BR�A��D�����M��MP�A��D�����M�:/4!u�M��MP�A��D�����M��MP�A��Ĩ�BR�A��D��B4k�/4Qf.4A��B��BT{�/41�Є�e�/4Qj.4A��B��BT{�/4Qj.4A��B�^.4u�M��MP�A��D�����M��MP�A��Ĩ�BR�A��D�����M��MP�A��D�����M�M��9��D��B$k�/4Qf.4A��B��C\h��c�����!������B����o���M�3������&�k�?��۟�����e��\����W�}ӇL���Cg�?dߠ���}+5�7�=�ٷR�}�ڃ�}+5�7�=�ٷQg�M�2�ٷR�}�ڃ�}+5�7�=�ٷBG��f�q�m̙}�r���dߨ� g�JM��jr���dߨ� g�F��7�� g�JM��jr���dߨ� g�JM��jr�mԙ}��r���dߨ� g�JM��jr���dߨ� g�F��7�� g�JM��jb��Б}�Ys�}+3�7�=�ٷQg�M�2�ٷR�}�ڃ�}+5�7�=�ٷR�}�ڃ�}ufߤ.��}+5�7�=�ٷR�}�ڃ�}+5�7�=�ٷQg�M�2�ٷR�}�ڃ�}+5�7�=�ٷR�}�ڃ�}ufߤ.��}+sϾQ|?�ٷG��b�q���d߈� g�B�dߠ���}+5�7�=�ٷR�}�ڃ�}+5�7�=�ٷQg�M�2�ٷR�}�ڃ�}+5�7�=�ٷR�}�ڃ�}ufߤ.��}+5�7�=�ٷR�}�ڃ�}+5�7�=�ٷA�}��s�}+rd�H�g��L��hr���dߨ� g�F��7�� g�JM��jr���dߨ� g�JM��jr�mԙ}��r���dߨ� g�JM��jr���dߨ� g�F��7�� g�JM��jr���dߨ� f� -�7�5�ٷ!�}�s�}+3�7�=�ٷR�}�ڃ�}+5�7�=�ٷQg�M�2�ٷR�}�ڃ�}+5�7�=�ٷR�}�ڃ�}ufߤ.��}+5�7�=�ٷR�}�ڃ�}+5�7�=�ٷP/�7�� g�JM��jr���dߨ� f� -�7�5�ٷ1g�M�2�ٷR�}�ڃ�}+5�7�=�ٷR�}�ڃ�}ufߤ.��}+5�7�=�ٷR�}�ڃ�}+5�7�=�ٷQg�M�2�ٷR�}�ڃ�}+5�7�=�ٷR�}�ڃ�}ufߤ.��}+5�7�=�ٷBG��f�q���d߈� g�F��7�� g�JM��jr���dߨ� g�JM��jr�mԙ}��r���dߨ� g�JM��jr���dߨ� g�F��7�� g�JM��jr���dߨ� g�JM��jr�mԙ}��b��Б}�Ys�}+3�7�=�ٷR�}�ڃ�}ufߤ.��}+5�7�=�ٷR�}�ڃ�}+5�7�=�ٷP/�7�� g�JM��jr���dߨ� g�JM��jr�mԙ}��r���dߨ� g�JM��jr���dߨ� f�M�Mf�a��ȑ}#Ys�}+3�7�=��7�"��ϱg�������s|����}�d���LJ��ן��xy�^T����%�>�����i�'��ǟ��O?��������>�������_����Oow��������i�w���4����I]�4�Rs�����J�izT{�O�+5��Q�A>Mo�y���e�N�+s?M���1<M��q�Ś�����izD{�O��r��u�O�+5��Q�A>M�Ԝ�G��4�Rs�����F���I]�4�Rs�����J�izT{�O�+5��Q�A>Mo�y���e�O�+5��Q�A>M�Ԝ�G��4�Rs������iz2{O�+r��G���4�2s�����J�izT{�O�u��'u���J�izT{�O�+5��Q�A>M�Ԝ�G��4�Q�izR�A>M�Ԝ�G��4�Rs�����J�izT{�O�u��'u���J�izT{�O�+5��Q�A<M��q�͚����iz"{�O�+3���A>M�Ԝ�G��4�Rs�����F���I]�4�Rs�����J�izT{�O�+5��Q�A>Mo�y���e�O�+5��Q�A>M�Ԝ�G��4�Rs�����B���u���J�izT{�O�+5��Q�A<M��q�͚���Ɯ�� ]�4�Rs�����J�izT{�O�+5��Q�A>Mo�y���e�O�+5��Q�A>M�Ԝ�G��4�Rs�����F���I]�4�Rs�����J�izT{�O�+5��Q�A>Mo�y���e�O�+5��Q�A<M��q�͚�����izD{�O�u��'u���J�izT{�O�+5��Q�A>M�Ԝ�G��4�Q�izR�A>M�Ԝ�G��4�Rs�����J�izT{�O�u��'u���J�izT{�O�+5��Q�A>M�Ԝ�G��4�Q�izR�A<M��q�͚�����izD{�O�+5��Q�A>Mo�y���e�O�+5��Q�A>M�Ԝ�G��4�Rs�����B���u���J�izT{�O�+5��Q�A>M�Ԝ�G��4�Q�izR�A>M�Ԝ�G��4�Rs�����J�izT{O�4����9<M��q�ɚ�����izD{�O�W���s���]?>M�9������?���G>M?�����_O���������۟~ij�_�H|���k���vt�~�1>�|cƻ�|�ƌ�����h��1C�yc�=�o�0�|c�� �1C�yc�=�o�Pjޘ�j�3��7f�ڃ����7f���3��7f�ڃ������ �1C�i|P�An|�:R�An|������G�i|P�An|������Ǩ��!u��G�{���1l|8k�e��A�����u��G�i|P�An|������G�i|P�An|�:R�An|������G�i|P�An|������Ǩ��!u��G�i|P�An|������G�i|P�Al|�Ƈ̞��G���A���QfD{����A���1�l|H]��QjT{����A���QjT{���Ƈ�e����A���QjT{����A���1�l|H]��QjT{����A���Q�h|Ь9l|�ƇȞ��G�i|�An|������G�i|P�An|�:R�An|������G�i|P�An|������Ǩ��!u��G�i|P�An|������G�i|P�An|�zi|@]��QjT{����A���Q�h|Ь9n|�9B�An|������G�i|P�An|������Ǩ��!u��G�i|P�An|������G�i|P�An|�:R�An|������G�i|P�An|������Ǩ��!u��G�i|P�Al|:4k�e��A���1�l|H]��QjT{����A���QjT{���Ƈ�e����A���QjT{����A���1�l|H]��QjT{����A���QjT{���Ƈ�e���͚��G�i|�An|������Ǩ��!u��G�i|P�An|������G�i|P�An|�zi|@]��QjT{����A���QjT{���Ƈ�e����A���QjT{����A���1h2{E��ɚ��G�i|�An|�O�~���y�7>ǟ���������3�o__]�����t�r���4>O���������?��������~��ۗ�,|����w�/�p�������������ߝO��O�>�����YT�������,���j�ϧ�/��P��� ���k8[u��ڃ����5\��Gu<��2x�>l�x���� ����7Vݟ������zz���_�a��u��|:�}�1dz�.���<[u��ڃ�����,���7�<P�o���;��?{C������5<Hu<��2x�n_���ҩ��7�<P���,��go�=x�n_ÝU�go�=x]}�~���s�YV������*��go�=x�>o��U�go�=x����쟅dz7�<H����I��ϲ��#�Vj�oT{�o���͚��[�)��A.��:�oR�A.�������[�)�Q�A.�������ۨ��&u��[�)�Q�A.�������[�)�Q�A.��:�oR�A.�������[�)�Q�A.�������ۨ��&u��[�{����1,�8�ok��oe��F�����u��[�)�Q�A.�������[�)�Q�A.��:�oR�A.�������[�)�Q�A.�������ۨ��&u��[�)�Q�A.�������[�)�Q�A,� ��̞��[���F���Vf�oD{��o���F���6�,�I]��Vj�oT{��o���F���Vj�oT{��o����e��o���F���Vj�oT{��o���F���6�,�I]��Vj�oT{��o���F���V�(�Ѭ9,� ��Ȟ��[�)��A.�������[�)�Q�A.��:�oR�A.�������[�)�Q�A.�������ۨ��&u��[�)�Q�A.�������[�)�Q�A.��z)�A]��Vj�oT{��o���F���V�(�Ѭ9.��9�oB�A.�������[�)�Q�A.�������ۨ��&u��[�)�Q�A.�������[�)�Q�A.��:�oR�A.�������[�)�Q�A.�������ۨ��&u��[�)�Q�A,�:�o4k��oe��F���6�,�I]��Vj�oT{��o���F���Vj�oT{��o����e��o���F���Vj�oT{��o���F���6�,�I]��Vj�oT{��o���F���Vj�oT{��o����e�o���͚��[�)��A.�������ۨ��&u��[�)�Q�A.�������[�)�Q�A.��z)�A]��Vj�oT{��o���F���Vj�oT{��o����e��o���F���Vj�oT{��o���F���6h�o2{�oE��ɚ��[�)��A.��fU~���������a�}�9�ʷ;ޝ�?'����K�}��?����ϟ�����/?�!o{��/�?���O�w��?�����罰�|��cޟ�/G/{�Gv�`�}�Gp|d���#����|dW�9��j�]���.�=�Gv��#��� �5�<�K�2�Gv��#��� �Uj��ڃ|dW�9��j�]��#��.�|dW�9��j�]���.�=�Gv��#��� �5h���sxdW���.�5�Gv��#��� �Uj��ڃ|dר��.�� �Uj��ڃ|dW�9��j�]���.�=�Gv�:�쒺�]���.�=�Gv��#��� �Uj��ڃ|dר��.�� �Uj��ڃ|dW�9��j�]��#�h��5d���s|dW�9��h�]���.�=�Gv��#��� �5�<�K�2�Gv��#��� �Uj��ڃ|dW�9��j�]��#��.�|dW�9��j�]���.�=�Gv��#��� ����.�� �Uj��ڃ|dW�9��j�]��#�h��5�<�K�2�Gv��#��� �Uj��ڃ|dW�9��j�]��#��.�|dW�9��j�]���.�=�Gv��#��� �5�<�K�2�Gv��#��� �Uj��ڃ|dW�9��j�]��#��.�|dW�9��j�]��#�h��Uf��"ڃ|dר��.�� �Uj��ڃ|dW�9��j�]���.�=�Gv�:�쒺�]���.�=�Gv��#��� �Uj��ڃ|dר��.�� �Uj��ڃ|dW�9��j�]���.�=�Gv�:�쒺�]��#�h��Uf��"ڃ|dW�9��j�]��#��.�|dW�9��j�]���.�=�Gv��#��� ����.�� �Uj��ڃ|dW�9��j�]���.�=�Gv�:�쒺�]���.�=�Gv��#��� �Uj��ڃxdנ9�Kf��]E�#�H��Uf��"ڃ|d��|�:���c?���|����������u�Y��/k�39��<����������?���M/�����7�?�b=��b}�?��?��g��l���/�N��>�Gt�͞; N��4�go�=x�>�?{C������f}�go�=x]};��� -(u<��2x�>�^^��?{C����t��(���j���Ϝ:ަ�j��Ԍ:ߦF�:�oSs�x��=�oSs�x��=�oSs�x��=�oSSjަ��2�oSs�x��=�oSs�x��=HoSs��656kߦ�̼M �eߦ���65V{ߦ���65V{ߦ���65V{ߦ�ԼM �eߦ���65V{ߦ���65V{ߦ���65V{ߦ�ԼM �eߦ���65V{ߦ���65V{ߦ���65V{ߦ�ԼM �eߦ���65V{�ަ���mjl��M͙�mj�� �MM�y��� �Mͩ�mj�� �Mͩ�mj�� �Mͩ�mj�� �MM�y��� �Mͩ�mj�� �Mͩ�mj�� �Mͩ�mj�� �MM�y��� �Mͩ�mj�� �Mͩ�mj�� �Mͩ�mj�� �MM�y��� �M͙_ߦ���1z������Xs�65g���A�����jR�A�����jV{�fp긚��ī�:�f`��j��jT�A�����jV{�fp긚��ī�:�f`��j��jT�A�����jV{�fp긚��ī�:�f`��j�����9������L�^���q5�=�W38u\��j��J���.�x5�S���� ^���q5�=�W38u\��j��J���.�x5�S���� ^���q5�=�W38u\��j��J���.�x5�S���� ^���q5�=HW38t���͚��9�f@���jg���A�����jV{�fp긚��ī���P]�j���X�A�����jV{�fp긚��ī���P]�j���X�A�����jV{�fp긚��ī�:�f uī�:�f`��j���X�A������l�^͠�\̀�2�W38u\��j��NW3�ڃx5�S���� ^͠�\̀�2�W38u\��j��NW3�ڃx5�S���� ^͠�\̀�2�W38u\��j��NW3�ڃx5�S���� ^͠�\̀�2�W38u\��j��ݯf`���jg���A��A����e�fp긚��ī�:�f`��j���X�A��A����e�fp긚��ī�:�f`��j���X�A��A����e�fp긚��ī�:�f`��j���X�A��A����e��fp�~5�5�W38s\��h��NW3�ڃx5�Rs5�� ^���q5�=�W38u\��j��NW3�ڃx5�Q�����x5�S���� ^���q5�=�W38u\��j��J���.�x5�S���� ^���q5�=�W38u\��j�� -W3��st5�#����9�����jF{�f��n_�����3u����9�����~Ӷ��><^����|zy��}�|������/�a\��o~��?��/����|���= _���/\������\��4W&����W&|�pe�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃ|e�P/W&��� J͕ �� _���\��j� J͕ �� _�`�ye�� _���\��j� J͕ �� ^���qe�5�W&s^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃ|e�Q� �.�|e�Rse�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃ|e�Q� �.�|e�Rse�=�W&(t\��f�� �̕ �� _�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��� J͕ �� _���\��j� J͕ �� _�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��ҕ �ܯL@��^���qe�5�W&(3W& ڃ|e�P/W&��� J͕ �� _���\��j� J͕ �� _�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��� J͕ �� _���\��j� J͕ �� ^�`�\�@f�� �W& Ys|e�2se�=�W&(5W&�ڃ|e�Q� �.�|e�Rse�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃ|e�Q� �.�|e�Rse�=�W&(5W&�ڃxe�BǕ h�^�`�\�@d�� �̕ �� _���\��j� J͕ �� _�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��� J͕ �� _���\��j� J͕ �� _� �˕ ���|e�Rse�=�W&(5W&�ڃxe�BǕ h�_�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��� J͕ �� _���\��j� J͕ �� _�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��� J͕ �� ^���qe�5�W&(3W& ڃ|e�Q� �.�|e�Rse�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃ|e�Q� �.�|e�Rse�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(t\��f�� �̕ �� _���\��j� F�W&��� J͕ �� _���\��j� J͕ �� _� �˕ ���|e�Rse�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃxe�Ase�=�W&(r\��d�� �̕ �� _�@Ὸ2?�~e»�q�vxe�������\��_��p��������������;�3yd�2�|ZnH�������|ww���~��ן?��?��_/SW>�y��~�.q2|�'����q��q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�BG��f�q�l�'�r����ɨ� ��JM��jr����ɨ� ��F�q2�� ��JM��jr����ɨ� ��JM��jr�l�'��r����ɨ� ��JM��jr����ɨ� ��F�q2�� ��JM��jb���'�Ys'+3q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ.�'+s��Q|?�q�G��b�q����Ɉ� ��B��ɠ��'+5q2�=�q�R'�ڃ'+5q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�A'��s'+r��H����L��hr����ɨ� ��F�q2�� ��JM��jr����ɨ� ��JM��jr�l�'��r����ɨ� ��JM��jr����ɨ� ��F�q2�� ��JM��jr����ɨ� �� -q2�5�q�!'�s'+3q2�=�q�R'�ڃ'+5q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�P/q2�� ��JM��jr����ɨ� �� -q2�5�q�1g�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ.�'+5q2�=�q�BG��f�q����Ɉ� ��F�q2�� ��JM��jr����ɨ� ��JM��jr�l�'��r����ɨ� ��JM��jr����ɨ� ��F�q2�� ��JM��jr����ɨ� ��JM��jr�l�'��b���'�Ys'+3q2�=�q�R'�ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�P/q2�� ��JM��jr����ɨ� ��JM��jr�l�'��r����ɨ� ��JM��jr����ɨ� ��M�Lf�a���'#Ys'+3q2�=�q�q^��d�{���c@�|�9����ߊ�8�������q�xd���G�����/�n��]���q���t�K�~r�:��2l���e��>��˰?~x6�=�/���eؠ���2l��eب� �[���Q�A�͕�����ܨ�7'u��\���Q�A�͕�����\��7G��77��� ]�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�e�{s��7G��7WjzsT{�{s��7G��77���I]�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�e�{s��7G��7W���Ѭ9�͕�����ܨ�7'u��\���Q�A�͕�����\���Q�A�͍:{sR�A�͕�����\���Q�A�͕�����ܨ�7'u��\���Q�A�͕�����\���Q�A�͍:{sR�A�͕���(���\��7G��7WfzsD{�{s�^zsP�A�͕�����\���Q�A�͕�����ܨ�7'u��\���Q�A�͕�����\���Q�A�͍:{sR�A�͕�����\���Q�A�͕�����ܠ����9��9zs$k�{se�7G��7WjzsT{�{s��ޜ�e�{s��7G��7WjzsT{�{s��7G��77���I]�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�e�{s��7G��7WjzsT{{s���͚��ܐ�͉�9�͕�����\���Q�A�͕�����ܨ�7'u��\���Q�A�͕�����\���Q�A�͍:{sR�A�͕�����\���Q�A�͕�����\����u�{s��7G��7WjzsT{{s���͚��ܘ�7't��\���Q�A�͕�����\���Q�A�͍:{sR�A�͕�����\���Q�A�͕�����ܨ�7'u��\���Q�A�͕�����\���Q�A�͍:{sR�A�͕�����\��7G��7WfzsD{�{s��ޜ�e�{s��7G��7WjzsT{�{s��7G��77���I]�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�e�{s��7G��7WjzsT{�{s��7G��77���I]�7W���Ѭ9�͕�����\���Q�A�͍:{sR�A�͕�����\���Q�A�͕�����\����u�{s��7G��7WjzsT{�{s��7G��77���I]�7WjzsT{�{s��7G��7WjzsT{{s��7'��7W��͑�9�͕������8�V�9~��7�w�{�����������z���m�ԗO�p>=��_/��Cy&�y^������ï?����~��O�?������w���۟m�w�o���b��=��|�+)���+�g��oz��p�7}� �7��rߤ��M�� �M -}�5�}�2�7!ڃ�7u�M�.��7)5}�=�}�R�7�ڃ�7)5}�=�}�Qg�D�2�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�7u�M�.��7)5}�=�}�R�7�ڃ�7)5}�=�}�Qg�D�2H}�2�� ��c�7)p�M(��M�L߄hr�$�K��:�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�7u�M�.��7)5}�=�}�R�7�ڃ�7)5}�=�}�Qg�D�2�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�74}�=�}�"G߄d�qߤ��M�� �MJM߄jr�d��7��rߤ��M�� �MJM߄jrߤ��M�� �MF�}�� �MJM߄jrߤ��M�� �MJM߄jr�d��7��rߤ��M�� �MJM߄jbߤ��7�Ys�72}�=�}�2�7!ڃ�7)5}�=�}�R�7�ڃ�7u�M�.��7)5}�=�}�R�7�ڃ�7)5}�=�}�Qg�D�2�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�7 ��7��rߤ��M�� �MJM߄jbߤ��7�Ys�7s�M�.��7)5}�=�}�R�7�ڃ�7)5}�=�}�Qg�D�2�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�7u�M�.��7)5}�=�}�R�7�ڃ�7)5}�=�}�Qg�D�2�}�R�7�ڃ�7)t�Mh��M�L߄hr�d��7��rߤ��M�� �MJM߄jrߤ��M�� �MF�}�� �MJM߄jrߤ��M�� �MJM߄jr�d��7��rߤ��M�� �MJM߄jrߤ��M�� �MF�}�� �M -}�5�}�2�7!ڃ�7)5}�=�}�Qg�D�2�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�7 ��7��rߤ��M�� �MJM߄jrߤ��M�� �MF�}�� �MJM߄jrߤ��M�� �MJM߄jb�d��Md��M�}�5�}�2�7!ڃ�7�8�o�ϱ�M�c����s,}������{�8o�Iݔ7j��O?�q�M���?��_^����o��������1���~owG�~�7�����=~�ׇO��"����_��������_�����9~ݗ!�/"k���eȤpD��p���=��!�Ys��qp���̀��H�9��9�7 {��7C&|#��8{3d�7"k��7C&y#��8x��݀�9���؍Ț��͐)݈�9���̍Ț��M��q��p3d7"k��6C�n#��m3d�6"k��6Aή Ȟ��̀{�Fܻ)Lڌ6�6�ޏq�f��l$��l��K�vL.s\�2!�5��!S�Ysܰ2 �5�� g�d�q�f��kD��k�L�Fd�q�f�dkD�Gk����=�Ś!�Ys��2��5ǭ�!��Ys� 1��5����F�F��1N��B�Ě�>͐�ӈ�9��9�4 {��4C&L#��8K3d�4"k��4C&I#��8H��р�9����Ț�͐)ш�9����Ț�M��A��@3d4"k��3C�>#��=3�H�|?���ҝ�Wc\�0��5�ə!S�Ysܛ2��5DZ� gkd�qifȄfD�gf�LeFd�qcf�$fD�f��}�=�u�!�Ys��2e�5�]�!��Ys��&/M�1��qQf�eD��d�LMFd�aKfđ��~�C2ΎĞ�̐�Ȉ�9N����Ț�~̐�Lj�9��9�1 {��1C&#��83d�1"k��1C&#��8��ŀ�9���X�Ț�T̐)ň�9���L�Ț�HL����3d1"k�0#�:���c܆0i�5�a� gd�qf�DaD�'a�LFd�qf��`D��`��-�=�%�!�Ys��2�5� �!��Ys� r�_@��_�L�Ed�q�eȔ_D�w_�L�Ed�q�%��|�sX|q_���ˀ��H�9n��ԋȚ��K������2d"/"k�/C��"���2d�."k�����:&�9.����Ț�ː����9n����Ț�K������2db."k�S.C��"���2d2."k#.!���ư�2���{?���So�Xs�nAz$�-�{����:�?��o����^�LJ��ן�۟��_ޮ�[�<s)������O��?}������j��t�>��7��+��z{:ʷf��z�)�>�a���s�)h��)�L��hr�bԙ���r���T*�� w*JM��jr��Դ*�� �*F�� -�� +JM��jr���D+�� g+JM��jr�bԙ���r����+�� �+JM��jr¢�4,�� W,F��� �,��Kߏaˢ���Xs��(3=�=�E�P/I�� G-JMՂjrעԄ-�� �-JMۂjr�bԙ���r��.�� 7.JM�jr��t.�� �.F���� �.JM�jr��/�� '/JM�jb�b�d/d��/���5��2� ڃ��(5��=��QgC�2��RS��ڃ��(5!�=�)�R� ڃ\�u�0�.��(5E�=�M�RŠڃ��(5]�=�e�QgC�2�q�RSǠڃ��(5��=���BG#�f�a%c�d2D��2�L)�hr+���2�� �2JM/�jr1cԙ̐�r4��T3�� w3JM8�jr:�Դ3�� �3F���� 4JMA�jrC��D4�� g4JMG�jrI#�KJ�:�1�RSӠڃ��(5A �=�I�BGS�f�qUc̙��rX�Ԕ5�� �5JM\�jr^���5�� 6F�� �� G6JMe�jrg�Ԅ6�� �6JMk�jrmcԙې�rp��7�� 77JMt�jrv��t7�� �7F�� �� �7JM}�jb���Ys��(3 �=��Qg�C�2�!�RS�ڃ��(51�=�9�R��ڃ\�u&9�.��(5U�=�]�R�ڃ��(5m�=�u�Qg�C�2ȁ�RS�ڃ��(5��=ș�R��ڃ\�u�:�.��(t�:h��:�L��hr���4;�� W;F���� �;JM��jr����;�� �;JM��jr�#�K��:��RS�ڃ��(5!�=�)�R��ڃ\�u�<�.��(5E�=�M�R��ڃ��(5]�=�e�A����s�(r�=H��=�L��hr�sܧ��?���oj�+��ϱd>���<���J�O��d>�M�������|���i[y~x�杴~������(���|������}>W>��}X�A|��R�NT�A|��SG<�jR<��=�b��0�r戧�A����x +xڔ�M�l�a��~�������v�m[��Z���p{��0u!�`�z��g���v�y�e�@`�h=�� +��>�o��w���|z�l����t����?��_�}�����_��<�xxz:�?�o�ɿ������x������u���=s~���������tyxx{�������������������7y(���������������������۟�\����?�����������~7�����o�1�g�;�=��T��/o�.~�<��c�>~�������?{C����t~����� �ԗ���E���7��\�l_�E��YV��u����?{C��u�ΏRݟ������} wVݟ��������t�����,����z9=�<Ku��ڃ���W#����P{�@}9=>�Hu��ڃ����������,�����} Vݟ������} �/��7̚; ���"��go�=����}�Rϲ���wp�?�Ƴ7�<P�o�Ϊ��7�<P_N����x��ڃ�����˽���gY]��o����?{C���q{^����P{�@ݾ�G�cn<{C����kx��x��e�@ݾ���17�������} ����x��ڃ��5���?{C������k��?�Ƴ�.���5H���������b�$�>zC��r�7_���� �?U/ww��g��&Ϣ�����ɪ��7�<P�o��"���j�������j~�����"��,�����} ��Rݟ������} �'����P{�@���;����P{�s������~��YV���r�~:Hu��ڃ����٪��7�<P_N�O�Rݟ������e����G��r������ k�ܾ���4�go�=x�n_�E����P{�s�a� +�:�eu<P�o�,ƍgo�=x�n_���y��ڃ����j���j~�>ޝ�^��gY]���l�1�������xzz���� ���kx�?�Ƴ7��\}ھ���f<��2x�n_�Ū��7�<P���^����P{�@ݾ����f�}N>o߁�y�?�d���pg���h����W��;�������r�{���� �?W_�N���g�x��e�@����O��� ���kx���� ���kx�?�Ƴ7��\}ݾ��Tdz�.���5�˟q��j���p�?�Ƴ7�<P���Ϊ��7��T}��;=���qy�u�@�?����go�=x�>����?{C����$���x�Ys����;�?Z�,�����}�Vݟ������}�Rݟ������}��I���������5�Ku<��2x�n_��A���7�<P��A;ɳ7�<P�O/�Vݟ��������tyq?��,����zz��N�� �����ɪ��7�<P���Q����P{�s�a�䱓<��2x�n_�Ū��7�<P��A��i�Ys���c'y�ڃ����wp��x��e�@ݾy�$��P{�@}<��c'y��ڃ����Ū��7��\}�;��c'y��e�@�?=�c'y��ڃ��5<Zu��ڃ��5�c'y��ڃ����� ���YV��u�?{C��u�䱓<{C��u�䱓<{C������U��YV�����dѯ��0k�|<���<{������l���j~��n߁<|�gY]��[��O�� ���kx���� ���k��O�� �?UﶯA��y�u�@ݾ��U�go�=x�n_�<|�go�=x�>��?gʳ7��\=ߝ�d0�gY]��ӣ<|�go�=x�>��?{C��u�d0�go�=��z�} ��p�G��r�$���d��� k�<{��u�>?|r�����u������o��3�P�}��������Xu~�G��\u>m?.��Xu�k�yz�q~������?��?���/k��Y�p�|�N��b�t�����O�-|�A��V{���n���n���[`��[Pj�T�A��:�V{���n���n���[`��[Pj�T�A����[`��uܻk�g�n���n���[ u�n���[`��[p��X�A��:�V{���[@u�n���[`��[p��X�A��:�V{���[@u�n���[`��[p��X�A��:�V{����n͞�n��{��d�a����-0ڃ�-8ut�� vJM���2�݂SG��jb����-�ڃ�-8ut�� vJM���2�݂SG��jb����-�ڃ�-8ut�� vJM���2�݂SG��jb����-�ڃ�-8t�ج9�9�${�g�n���n���[`��[p��X�A���n�e���n���n���[`��[p��X�A���n�e���n���n���[`��[p��X�A��:�R�A��:�V{���n���n��{��f�a���t�.��-8ut�� vN��=�݂SG��jb���t�.��-8ut�� vN��=�݂SG��jb���t�.��-8ut�� vN��=�݂SG��jb���t�.��-8ut�� uݻ6k�g�n���nA��P]�[p��X�A��:�V{���n���nA��P]�[p��X�A��:�V{���n���nA��P]�[p��X�A��:�V{���n���nA��P]�[p��-�Ys�-8st�� vN��=�݂R�-��b����-�ڃ�-8ut�� vN��=�݂Qg�@�:�݂SG��jb����-�ڃ�-8ut�� vJM���2�݂SG��jb����-�ڃ�-8ut�� u +��=G݂#�n�ɚ�n���[`��[������_��H�[�ϱt7�F������Ù���̵[��n�������?|�}��_�����?����߾;���7��E� ���������}�;�}�F�y� ���a�w~LJ�>~8�j�a'���N�.�|�I�9�j�a'���=ȇ����N�� v2�<�D�2ȇ����N�� vRj;�ڃ|�I�9�j�a'���N�.�|�I�9�j�a'���=���:;�Ysx�ɐ9�Dd��a'e��=ȇ����N�� vRj;�ڃ|�ɨ��� vRj;�ڃ|�I�9�j�a'���=ȇ��:;���a'���=ȇ����N�� vRj;�ڃ|�I���N���|�I�9�j�a'���=���:;�Ys|�ɘ��� vRj;�ڃ|�I�9�j�a'���=ȇ��:;���a'���=ȇ����N�� vRj;�ڃ|�ɨ��� vRj;�ڃ|�I�9�j�a'���=ȇ��:;���a'���=���:;�Ys|�I�9�h�a'���N�.�|�I�9�j�a'���=ȇ����N�� v2�<�D�2ȇ����N�� vRj;�ڃ|�I�9�j�a'���N�.�|�I�9�j�a'���=ȇ����N�� v2�<�D�2���:;�Ys|�I�9�h�a'���=ȇ��:;���a'���=ȇ����N�� vRj;�ڃ|�I���N���|�I�9�j�a'���=ȇ����N�� v2�<�D�2ȇ����N�� vRj;�ڃ|�I�9�j�a'���=���9;!Ys|�I�9�h�a':{#;���;�?Yt|���s����>��^^���x�z��av�ǟ~�/?��8��q�������?��Z/!�~���䏿��G��>=���.�������2ħ����s|����P{���qu�Q�]��.�|�Rs-�=�w�*5wѢڃ|�Rs-�=�w�u�EK�2�w�*5wѢڃ|�Rs-�=�w�*5wѢڃ|�Q�]��.�t�2��hQ|?�w�*p�E�b��]���]��� �E+��]����|�Rs-�=�w�*5wѢڃ|�Rs-�=�w�u�EK�2�w�*5wѢڃ|�Rs-�=�w�*5wѢڃ|�Q�]��.�|�Rs-�=�w�*5wѢڃ|�Rs-�=�w�4wђ�sx�"�]�H��E����� �JM��jr�aԙg��r������ �JM��jr������ �F�y�� �JM��jr������ �JM��jr�aԙg��r������ �JM��jb��Бg�Ys�g2y�=�y�2�g ڃ�g(5y�=�y�R�g�ڃ�gu��.��g(5y�=�y�R�g�ڃ�g(5y�=�y�Qg�A�2�y�R�g�ڃ�g(5y�=�y�R�g�ڃ�g��g��r������ �JM��jb��Бg�Ys�gs��.��g(5y�=�y�R�g�ڃ�g(5y�=�y�Qg�A�2�y�R�g�ڃ�g(5y�=�y�R�g�ڃ�gu��.��g(5y�=�y�R�g�ڃ�g(5y�=�y�Qg�A�2�y�R�g�ڃ�g(t�h���L��hr�aԙg��r������ �JM��jr������ �F�y�� �JM��jr������ �JM��jr�aԙg��r������ �JM��jr������ �F�y�� � +y�5�y�2�g ڃ�g(5y�=�y�Qg�A�2�y�R�g�ڃ�g(5y�=�y�R�g�ڃ�g��g��r������ �JM��jr������ �F�y�� �JM��jr������ �JM��jb�a��d���y�5�y�2�g ڃ�gPS ��{��8�3�?�_x�������y�x�g<�<�ˏ3��w�����p +���6���w��aΧ���Q�qy:���>gz�9?�����?� ����7��\}8��^��:�eu<P/�Ƿ� +u��ڃ����٪��7�<P_N�oAV��� �?W����թ�YV��u���?{C��u�$���f���w���de���@{� �ھ�{��gY]��;8�Ku��ڃ�[�f���jr��$q�� 'qF�I�� 'qJM�jr��$q�� 'qJM�jrgԙđ�r��$q�� 'qJM�jr��$q�� 'qF�I�� %q�ܓ8ߏa���ġXs��)3I�=�I�P�I�� 'qJM�jr��$q�� 'qJM�jrgԙđ�r��$q�� 'qJM�jr��$q�� 'qF�I�� 'qJM�jr��$q�� 'qJM�jbg�$qd�&q�I�5�I�2��!ڃ��)5I�=�I�QgG�2�I�R�ġڃ��)5I�=�I�R�ġڃ��u&q�.���)5I�=�I�R�ġڃ��)5I�=�I�QgG�2�I�R�ġڃ��)5I�=�I�BG�f�ag�$qD�'q�L�hr��$q�� 'qJM�jrgԙđ�r��$q�� 'qJM�jr��$q�� 'qF�I�� 'qJM�jr��$q�� 'qJM�jr'�k�:�I�R�ġڃ��)5I�=�I�BG�f�qg̙��r��$q�� 'qJM�jr��$q�� 'qF�I�� 'qJM�jr��$q�� 'qJM�jrgԙđ�r��$q�� 'qJM�jr��$q�� 'qF�I�� 'qJM�jb�БġYs��)3I�=�I�QgG�2�I�R�ġڃ��)5I�=�I�R�ġڃ��u&q�.���)5I�=�I�R�ġڃ��)5I�=�I�QgG�2�I�R�ġڃ��)5I�=�I�R�ġڃ��u&q�.���)t$qh�'q�L�hr��$q�� 'qF�I�� 'qJM�jr��$q�� 'qJM�jr'�k�:�I�R�ġڃ��)5I�=�I�R�ġڃ��u&q�.���)5I�=�I�R�ġڃ��)5I�=�I�A�đ�s��)r$qH�'q�L�hrw\v�$?ǞĽ��·I�������rz��H�ί���>ш�>M��Cy&I���������?���?���q���?|�����1�{>|=������z�S��������|��u��A>��YV���rz~���� �ԧ�������j������I����P{��C�w�����<��:x�n_��I���7�<P����w�Jݟ������} g����P{�s��} w/Nϲ����wv�Rݟ���������Ϊ��7�<P_NO���7̚���?��o��4�x��e�@ݾ�'����P{�@ݾ�w?;Yݟ������}����P{�6߾��Tdz�.���5�?Hu��ڃ�����_���Q�A���:{~R�A�������_���Q�A�������ߨ��'u�_���Q�A��:z~4k�{~e��G���7���I]��Wjz~T{�{~���G���Wjz~T{�{~�Ξ��e�{~���G���Wjz~T{�{~���G���7���I]��Wjz~T{�{~���G���Wjz~T{�{~�Ξ��e�z~e�=?��ǰ�W���Q�9�������_�מ�u�{~���G���Wjz~T{�{~���G���7���I]��Wjz~T{�{~���G���Wjz~T{�{~�Ξ��e�{~���G���Wjz~T{�{~���G���7hz~2{{~E��ɚ�_����A�������ߨ��'u�_���Q�A�������_���Q�A���:{~R�A�������_���Q�A�������ߨ��'u�_���Q�A������Ğ_���G���7dz~"{�{~e��G���Wjz~T{�{~���G���7���I]��Wjz~T{�{~���G���Wjz~T{�{~�Ξ��e�{~���G���Wjz~T{�{~���G�����u�_���Q�A������Ğ_���G���7��� ]��Wjz~T{�{~���G���Wjz~T{�{~�Ξ��e�{~���G���Wjz~T{�{~���G���7���I]��Wjz~T{�{~���G���Wjz~T{�{~�Ξ��e�{~���G���W���Ѭ9�������ߨ��'u�_���Q�A�������_���Q�A���:{~R�A�������_���Q�A�������ߨ��'u�_���Q�A�������_���Q�A���:{~R�A��:z~4k�{~e��G���Wjz~T{�{~�Ξ��e�{~���G���Wjz~T{�{~���G�����u�_���Q�A�������_���Q�A���:{~R�A�������_���Q�A������Ğߠ����9��9z~$k�{~e��G���?�UϏ�c������=���Xz��=��n�I��=�x&=�e�����/�o���_~�������ݷ?���۟�gy����^��a��qȃ7���>�l�}���������e��C��=D��=Tj�CT{��C��=D��=4�lI]�=Tj�CT{��C��=D��=Tj�CT{��C�����e��C��=D��=T�hѬ9n������Ш�=$u��P�iQ�An������P�iQ�An�:�CR�An������P�iQ�An������Ш�=$u��P�iQ�An������P�iQ�An�:�CR�Aj����(���P��=D��=Tf�CD{��C�^�CP�An������P�iQ�An������Ш�=$u��P�iQ�An������P�iQ�An�:�CR�An������P�iQ�An������Рi��9l9�C$k��Ce�=D��=Tj�CT{��C�����e��C��=D��=Tj�CT{��C��=D��=4�lI]�=Tj�CT{��C��=D��=Tj�CT{��C�����e��C��=D��=Tj�CT{�C���͚��Аi��9n������P�iQ�An������Ш�=$u��P�iQ�An������P�iQ�An�:�CR�An������P�iQ�An������P����u��C��=D��=Tj�CT{�C���͚��И�=$t��P�iQ�An������P�iQ�An�:�CR�An������P�iQ�An������Ш�=$u��P�iQ�An������P�iQ�An�:�CR�An������P��=D��=Tf�CD{��C�����e��C��=D��=Tj�CT{��C��=D��=4�lI]�=Tj�CT{��C��=D��=Tj�CT{��C�����e��C��=D��=Tj�CT{��C��=D��=4�lI]�=T�hѬ9n������P�iQ�An�:�CR�An������P�iQ�An������P����u��C��=D��=Tj�CT{��C��=D��=4�lI]�=Tj�CT{��C��=D��=Tj�CT{�C��=$��=T�h��9n�������S�!~��=|���ǟ��?���Sx���S���Y��?XO/�~��L������ǿ�������{���˗���߶?>�����O����?���Ͽ|w������w���ӟ>�/�������Q>f���OGYb*�3I��������1��A���1�pH]��Qj*T{�+���A���Qj*T{�+�� +��e�+���A���Qj*T{�+���A���1�pH]��Qj*T{�+���A���Qj*T{�+�� +��e�*e���ǰ�Q�pP�9�p�� +�� +G�� +�u�+���A���Qj*T{�+���A���1�pH]��Qj*T{�+���A���Qj*T{�+�� +��e�+���A���Qj*T{�+���A���1h*2{+E� +ɚ� +G��p�A�p�� +�� +Ǩ��!u� +G��pP�A�p�� +�� +G��pP�A�p�:+R�A�p�� +�� +G��pP�A�p�� +�� +Ǩ��!u� +G��pP�A�p�� +�� +G���A���1d*"{�+e��A���Qj*T{�+���A���1�pH]��Qj*T{�+���A���Qj*T{�+�� +��e�+���A���Qj*T{�+���A�����u� +G��pP�A�p�� +�� +G���A���1�p]��Qj*T{�+���A���Qj*T{�+�� +��e�+���A���Qj*T{�+���A���1�pH]��Qj*T{�+���A���Qj*T{�+�� +��e�+���A���Q�pЬ9�p�� +�� +Ǩ��!u� +G��pP�A�p�� +�� +G��pP�A�p�:+R�A�p�� +�� +G��pP�A�p�� +�� +Ǩ��!u� +G��pP�A�p�� +�� +G��pP�A�p�:+R�A�p:*4k�+e��A���Qj*T{�+�� +��e�+���A���Qj*T{�+���A�����u� +G��pP�A�p�� +�� +G��pP�A�p�:+R�A�p�� +�� +G��pP�A�p�� +�� +Ǡ�p��9�p9*$k�+e��A���9NET���c�p�G/��������v�pz�����3�pΧ�6���ˏ���~����Aϯ����1����_������������>�x���;}�O����R����Dݟ������rz~���R�go�=���������y�u�@ݾ�˓T�go�=x�n_��o���?{C��u��Vݟ������y��^�:�eu<P/�os^��?{C���i�}�U�go�=x�����/��Go�5�9y>��~ke��,�����}OVݟ������}�~���?{C��u�R�y�$�=ȯ�4�|�$�� �bR�y�$�=ȯ�Tj^1�j�+&��WL�ڃ��I��WL���+&��WL�ڃ��I����� �bR�y�$�=ȯ�4�|�$�� �bR�y�$�=���T��Ѭ9�ە����ݨ3n'u�]���Q�A�ە����]���Q�A�ۍ:�vR�A�ە����]���Q�A�ە����ݨ3n'u�]���Q�A�ە����]���Q�A�ۍ:�vR�A�ە���(�ø]�#nG��8nWf�vD{��v�^�vP�A�ە����]���Q�A�ە����ݨ3n'u�]���Q�A�ە����]���Q�A�ۍ:�vR�A�ە����]���Q�A�ە���ĸݠ����9��9�v$k��ve&nG�9nWj�vT{��v�θ��e��v�&nG�9nWj�vT{��v�&nG�9n7��I]9nWj�vT{��v�&nG�9nWj�vT{��v�θ��e��v�&nG�9nWj�vT{�v���͚øݐ�ۉ�9�ە����]���Q�A�ە����ݨ3n'u�]���Q�A�ە����]���Q�A�ۍ:�vR�A�ە����]���Q�A�ە����]��u��v�&nG�9nWj�vT{�v���͚�ݘ3n't�]���Q�A�ە����]���Q�A�ۍ:�vR�A�ە����]���Q�A�ە����ݨ3n'u�]���Q�A�ە����]���Q�A�ۍ:�vR�A�ە���ĸ]�#nG��8nWf�vD{��v�θ��e��v�&nG�9nWj�vT{��v�&nG�9n7��I]9nWj�vT{��v�&nG�9nWj�vT{��v�θ��e��v�&nG�9nWj�vT{��v�&nG�9n7��I]1nW��Ѭ9�ە����]���Q�A�ۍ:�vR�A�ە����]���Q�A�ە����]��u��v�&nG�9nWj�vT{��v�&nG�9n7��I]9nWj�vT{��v�&nG�9nWj�vT{�v�&n'��0nW�ۑ�9�ە���丝Zm�������%�q�~�9����q���y�m���<���~���������������o� |c�[�~��?�l������C�?�����|���9>���l��y9����ܟ������t��Yu��ڃ����������P{��ր��~�ϿRdz�.��~��Sǽ�� ����q/�=��28u���j�F��2���N�2�ڃx/�Sǽ�� ����q/�=��2(5�2���N�2�ڃx/�Sǽ�� �����^6k�ePf�e@t�{�:�e`��^��{X�A�����^V{�ePj�e@u�{�:�e`��^��{X�A�����^V{�ePj�e@u�{�:�e`��^��{X�A�����^V{�ePj�e@u�{�:�e`��^���2�Ysx/�3ǽ�� �ˠ��ˀ�2��28u���j�N�2�ڃx/�Sǽ�� �ˠ��ˀ�2��28u���j�N�2�ڃx/�Sǽ�� �ˠ��ˀ�2��28u���j�N�2�ڃx/�Sǽ�� �ˠ��ˀ�2�28��,��{����b����20ڃx/�Q����x/�Sǽ�� ����q/�=��28u���j�Jͽ�.�x/�Sǽ�� ����q/�=��28u���j�Jͽ�.�x/�Sǽ�� ����q/�=��28u���jҽ +�2��st/�#�{��9�����^F{�ep긗���{��{P]�^��{X�A�����^V{�ep긗���{��{P]�^��{X�A�����^V{�ep긗���{��{P]�^��{X�A�����^V{��ep�~/�5G�2(r�ˀd����20ڃx/�Sǽ�� ����q/�=��2(5�2���N�2�ڃx/�Sǽ�� ����q/�=��2(5�2���N�2�ڃx/�Sǽ�� ����q/�=��2u��@�:��28u���j�N�2�ڃt/�C�{ج9��A����e�ep긗���{�:�e`��^��{X�A��A����e�ep긗���{�:�e`��^��{X�A��A����e�ep긗���{�:�e`��^��{X�A��A����e�ep긗���{����f����20ڃx/�Rs/�� ����q/�=��28u���j�N�2�ڃx/�Rs/�� ����q/�=��28u���j�N�2�ڃx/�Rs/�� ����q/�=��28u���j�N�2�ڃx/�Rs/�� �����^6k�ep渗���{�:�e`��^��^T�A�����^V{�ep긗���{�:�e`��^��{H]�^��{X�A�����^V{�ep긗���{��{P]�^��{X�A�����^V{�ep긗���{:�e@���^G��20Ysx/�3ǽ�� ���� �{�s|}�.A8��>���ׇ���^���n�~���W|ZT�����^��������_~������ß���w�|�������/�}v<�����_?����r�z=:��}�����~� pt�䣳J��YT{���*5GgQ�A>:k�yt��e���*5GgQ�A>:���E���Rst�䣳F�GgI]��Rst�䣳J��YT{���*5GgQ�A<:k��%����"��Y$k���*3Gg�A>:���E���Q��YR�A>:���E���Rst�䣳J��YT{���u�%u䣳J��YT{���*5GgQ�A>:���E���Q��YR�A>:���E���Rst�ģ� +GgѬ9<:k��%����2st�䣳J��YT{���*5GgQ�A>:k�yt��e���*5GgQ�A>:���E���Rst�䣳F�GgI]��Rst�䣳J��YT{���*5GgQ�A>:+���YP�A>:���E���Rst�ģ� +GgѬ9>:k�yt��e���*5GgQ�A>:���E���Rst�䣳F�GgI]��Rst�䣳J��YT{���*5GgQ�A>:k�yt��e���*5GgQ�A>:���E���Rst�䣳F�GgI]��Rst�ģ� +GgѬ9>:���E���Q��YR�A>:���E���Rst�䣳J��YT{���u�%u䣳J��YT{���*5GgQ�A>:���E���Q��YR�A>:���E���Rst�䣳J��YT{���u�%uģ� +GgѬ9>:���E���Rst�䣳F�GgI]��Rst�䣳J��YT{���*5GgQ�A>:+���YP�A>:���E���Rst�䣳J��YT{���u�%u䣳J��YT{���*5GgQ�A>:���E���Ast�̞ã��Gg��9>:���E�����IOut?�~t��9�㣳ǟ�/|����������f�������ӯ��F��7P�o����~��z��bq�F������������\_��tٜ��>�'��� �ԧ����R�go�=x�n�ix��iJݟ��������5<Ju<��2x�n_�ËT�go�=x�n_��?NS��� ����>��]��� �Рy �=��Tf��h����w�ڃ�.@��]��� �Ш�]��.��.@��]��� �P�y �=��Tj��j���z} �� �P�y �=��Tj��j����w�ڃ�.@��w������w�ڃ�.@��]��� �P��]�h��И�]��.��.@��]��� �P�y �=��Tj��j���:�H�2��Tj��j����w�ڃ�.@��]��� �Ш�]��.��.@��]��� �P�y �=��Tj��j���:�H�2��Tj��j��:��f�����w"ڃ�.@��w������w�ڃ�.@��]��� �P�y �=��4�| �� �P�y �=��Tj��j����w�ڃ�.@��w������w�ڃ�.@��]��� �P�y �=��4�| �� �P����Q|?��T�x �5��Tf��h���z���u�/4Qj.4A��B��BT{�/4Qj.4A��B��MH]�B��BT{�/4Qj.4A��B��BT{�/41�Є�e�/4Qj.4A��B��BT{�/4Qj.4A��B��B2{/4Q��ɚ�M��M�A��D�����M�:/4!u�M��MP�A��D�����M��MP�A��Ĩ�BR�A��D�����M��MP�A��D�����M�:/4!u�M��MP�A��D�����M:.4A���BC�B"{�/4Qf.4A��B��BT{�/4Qj.4A��B��MH]�B��BT{�/4Qj.4A��B��BT{�/41�Є�e�/4Qj.4A��B��BT{�/4Qj.4A��B�^/4u�M��MP�A��D�����M:.4A���Bc�M]�B��BT{�/4Qj.4A��B��BT{�/41�Є�e�/4Qj.4A��B��BT{�/4Qj.4A��B��MH]�B��BT{�/4Qj.4A��B��BT{�/41�Є�e�/4Qj.4A��B��MЬ9��D�����M�:/4!u�M��MP�A��D�����M��MP�A��Ĩ�BR�A��D�����M��MP�A��D�����M�:/4!u�M��MP�A��D�����M��MP�A��Ĩ�BR�A��D��B4k�/4Qf.4A��B��BT{�/41�Є�e�/4Qj.4A��B��BT{�/4Qj.4A��B�^/4u�M��MP�A��D�����M��MP�A��Ĩ�BR�A��D�����M��MP�A��D�����M�M��9��D��B$k�/4Qf.4A��B��C\h��c�����!�����B��������M�3������&�k������O���^�+���&G�j��>d��w�8���A �u��[�ɾQ�Aξ������[�ɾQ�Aξ�:�oR�Aξ������[�ɾQ�A̾:�o4k��oc���e��o�&�F�9�Vj�oT{��o�&�F�9�6�̾I]9�Vj�oT{��o�&�F�9�Vj�oT{��o����e��o�&�F�9�Vj�oT{��o�&�F�9�6�̾I]9�Vj�oT{�o���͚��[�ɾ�Aξ�:�oR�Aξ������[�ɾQ�Aξ������ۨ3�&u��[�ɾQ�Aξ������[�ɾQ�Aξ�:�oR�Aξ������[�ɾQ�Aξ������ۨ3�&u��[�{����1̾8�ok��oe&�F�9��5�u��[�ɾQ�Aξ������[�ɾQ�Aξ�:�oR�Aξ������[�ɾQ�Aξ������ۨ3�&u��[�ɾQ�Aξ������[�ɾQ�A̾ ��̞��[�#�F��8�Vf�oD{��o�&�F�9�6�̾I]9�Vj�oT{��o�&�F�9�Vj�oT{��o����e��o�&�F�9�Vj�oT{��o�&�F�9�6�̾I]9�Vj�oT{��o�&�F�1�V�ȾѬ9̾ ��Ȟ��[�ɾ�Aξ������[�ɾQ�Aξ�:�oR�Aξ������[�ɾQ�Aξ������ۨ3�&u��[�ɾQ�Aξ������[�ɾQ�Aξ�z;A]9�Vj�oT{��o�&�F�1�V�ȾѬ9ξ�9�oB�Aξ������[�ɾQ�Aξ������ۨ3�&u��[�ɾQ�Aξ������[�ɾQ�Aξ�:�oR�Aξ������[�ɾQ�Aξ������ۨ3�&u��[�ɾQ�A̾:�o4k��oe&�F�9�6�̾I]9�Vj�oT{��o�&�F�9�Vj�oT{��o����e��o�&�F�9�Vj�oT{��o�&�F�9�6�̾I]9�Vj�oT{��o�&�F�9�Vj�oT{��o����e�o���͚��[�ɾ�Aξ������ۨ3�&u��[�ɾQ�Aξ������[�ɾQ�Aξ�z;A]9�Vj�oT{��o�&�F�9�Vj�oT{��o����e��o�&�F�9�Vj�oT{��o�&�F�1�6h�o2{�oE��ɚ��[�ɾ�Aξ)`�7~�=�~�Xg�ǟ������Y�}�^T?\N__����yQ=�3���<��������ˏ?��O_~���o#��?���ǣ�O{H~Uv>��=�2^O�ç����}����?��'u���J�izT{�O�+5��Q�A>M�Ԝ�G��4�Q�izR�A:M���4=����4��izk�O�+3���A>M/��izP�A>M�Ԝ�G��4�Rs�����J�izT{�O�u��'u���J�izT{�O�+5��Q�A>M�Ԝ�G��4�Q�izR�A>M�Ԝ�G��4�Rs�����J�izT{O�4����9<M��q�ɚ�����izD{�O�+5��Q�A>Mo�y���e�O�+5��Q�A>M�Ԝ�G��4�Rs�����F���I]�4�Rs�����J�izT{�O�+5��Q�A>Mo�y���e�O�+5��Q�A>M�Ԝ�G��4�B�iz4kO�2���9>M�̜�G��4�Rs�����J�izT{�O�u��'u���J�izT{�O�+5��Q�A>M�Ԝ�G��4�Q�izR�A>M�Ԝ�G��4�Rs�����J�izT{�O��z��u�O�+5��Q�A>M�Ԝ�G��4�B�iz4k�O�s��'t���J�izT{�O�+5��Q�A>M�Ԝ�G��4�Q�izR�A>M�Ԝ�G��4�Rs�����J�izT{�O�u��'u���J�izT{�O�+5��Q�A>M�Ԝ�G��4�Q�izR�A>M�Ԝ�G��4�B�iz4k�O�+3���A>Mo�y���e�O�+5��Q�A>M�Ԝ�G��4�Rs�����F���I]�4�Rs�����J�izT{�O�+5��Q�A>Mo�y���e�O�+5��Q�A>M�Ԝ�G��4�Rs�����F���I]�4�B�iz4k�O�+3���A>M�Ԝ�G��4�Q�izR�A>M�Ԝ�G��4�Rs�����J�izT{�O��z��u�O�+5��Q�A>M�Ԝ�G��4�Rs�����F���I]�4�Rs�����J�izT{�O�+5��Q�A<MoМ�'���4�"�iz$k�O�+3���A>M|\���ϱ��t��4���XNӟo��������4�x�z��~=M��?���Ώ���#���zD�w��_�����Q�������>��3>~��7f�Ys��e��� �1è��.������� �1C�yc�=�o�Pjޘ�j�3�:ߘA�2�o�Pjޘ�j�3��7f�ڃ�����A���1�l|H]��QjT{����A���QjT{���Ƈ�e�e���ǰ�Q�h|P�9n|������G����u����A���QjT{����A���1�l|H]��QjT{����A���QjT{���Ƈ�e����A���QjT{����A���1h2{E��ɚ��G�i|�An|������Ǩ��!u��G�i|P�An|������G�i|P�An|�:R�An|������G�i|P�An|������Ǩ��!u��G�i|P�An|������G���A���1d"{�e��A���QjT{����A���1�l|H]��QjT{����A���QjT{���Ƈ�e����A���QjT{����A�����u��G�i|P�An|������G���A���1�l|]��QjT{����A���QjT{���Ƈ�e����A���QjT{����A���1�l|H]��QjT{����A���QjT{���Ƈ�e����A���Q�h|Ь9n|������Ǩ��!u��G�i|P�An|������G�i|P�An|�:R�An|������G�i|P�An|������Ǩ��!u��G�i|P�An|������G�i|P�An|�:R�Al|:4k�e��A���QjT{���Ƈ�e����A���QjT{����A�����u��G�i|P�An|������G�i|P�An|�:R�An|������G�i|P�An|������Ǡi|��9l|9$k�e��A���>E4>�9���}P�x�����/��ˍ7f�_���b����������g<�g��<�������~���������u����-|����w��p�ח�����������ߝO���}��ǁdz������|y���� �ԧ����;��?{C��u��Vݟ������y�>��Gu<��2x�^���Ju��ڃ���������P{�@}9=�_�0k�s��|:���Ø�YF��u����?{C��u���U����j�۷�������P{�s��} ��gY]��k�~X:u��ڃ��5����� ���k����� �?W�����x��e�@��_���� �ԧ�ߴ��� �ԗӣ���x��ڃi��5<�8�YV��u��JM��jb���Q~�Ys\~+3�7�=��Qg�M�2��RS~�ڃ\~+5�7�=��RS~�ڃ\~u�ߤ.�\~+5�7�=��RS~�ڃ\~+5�7�=��Qg�M�2��RS~�ڃ\~+5�7�=��RS~�ڃ\~u�ߤ.�T~+s/�Q|?��G��b�q��̔߈� ��B��ߠ��\~+5�7�=��RS~�ڃ\~+5�7�=��Qg�M�2��RS~�ڃ\~+5�7�=��RS~�ڃ\~u�ߤ.�\~+5�7�=��RS~�ڃ\~+5�7�=��AS~��sX~+r��H����L��hr��Ԕߨ� ��F��7�� ��JM��jr��Ԕߨ� ��JM��jr�m�Y~��r��Ԕߨ� ��JM��jr��Ԕߨ� ��F��7�� ��JM��jr��Ԕߨ� �� +�7�5��!S~�s\~+3�7�=��RS~�ڃ\~+5�7�=��Qg�M�2��RS~�ڃ\~+5�7�=��RS~�ڃ\~u�ߤ.�\~+5�7�=��RS~�ڃ\~+5�7�=��P��7�� ��JM��jr��Ԕߨ� �� +�7�5��1g�M�2��RS~�ڃ\~+5�7�=��RS~�ڃ\~u�ߤ.�\~+5�7�=��RS~�ڃ\~+5�7�=��Qg�M�2��RS~�ڃ\~+5�7�=��RS~�ڃ\~u�ߤ.�\~+5�7�=��BG��f�q��̔߈� ��F��7�� ��JM��jr��Ԕߨ� ��JM��jr�m�Y~��r��Ԕߨ� ��JM��jr��Ԕߨ� ��F��7�� ��JM��jr��Ԕߨ� ��JM��jr�m�Y~��b���Q~�Ys\~+3�7�=��RS~�ڃ\~u�ߤ.�\~+5�7�=��RS~�ڃ\~+5�7�=��P��7�� ��JM��jr��Ԕߨ� ��JM��jr�m�Y~��r��Ԕߨ� ��JM��jr��Ԕߨ� ��M�Mf�a���Q~#Ys\~+3�7�=���q���o�{��>�~:,��?�_�vǻ����3��q<s-�ϣ���?�������������=�����/_�����?���o��>������t~���qم?�yd�ݟ��ݏ�삺�]���.�=�Gv��#��� �Uj��ڃ|dר��.�� �Uj��ڃ|dW�9��j�]���.�=�Gv�:�쒺�]���.�=�Gv��#��� �Uj��ڃxdנ9�Kf��]E�#�H��Uf��"ڃ|dW�9��j�]��#��.�|dW�9��j�]���.�=�Gv��#��� �5�<�K�2�Gv��#��� �Uj��ڃ|dW�9��j�]��#��.�|dW�9��j�]���.�=�Gv:��Ysxdא9�Kd��]e��.�=�Gv��#��� �Uj��ڃ|dר��.�� �Uj��ڃ|dW�9��j�]���.�=�Gv�:�쒺�]���.�=�Gv��#��� �Uj��ڃ|dW��#����|dW�9��j�]���.�=�Gv:��Ys|dט��.�� �Uj��ڃ|dW�9��j�]���.�=�Gv�:�쒺�]���.�=�Gv��#��� �Uj��ڃ|dר��.�� �Uj��ڃ|dW�9��j�]���.�=�Gv�:�쒺�]���.�=�Gv:��Ys|dW�9��h�]��#��.�|dW�9��j�]���.�=�Gv��#��� �5�<�K�2�Gv��#��� �Uj��ڃ|dW�9��j�]��#��.�|dW�9��j�]���.�=�Gv��#��� �5�<�K�2�Gv:��Ys|dW�9��h�]���.�=�Gv�:�쒺�]���.�=�Gv��#��� �Uj��ڃ|dW��#����|dW�9��j�]���.�=�Gv��#��� �5�<�K�2�Gv��#��� �Uj��ڃ|dW�9��j�]���.�=�Gv9��"Ys|dW�9��h������.~�������Gv�?�_�������g�+��)�����8��o��������Ç4=����������tw�������_��g��l���o�N���>�Gt�͞; /���Y���7�<P�N�;����P{�@}9=��_���j~���O��� (u<��2x�^N��Vݟ������t�z���� ����gNoSc��mjF�oS#uķ�9u�M��ķ�9u�M��ķ�9u�M��ķ�)5oSCuķ�9u�M��ķ�9u�M�����9t��5�oSSfަ��2�oSs�x��=�oSs�x��=�oSs�x��=�oSSjަ��2�oSs�x��=�oSs�x��=�oSs�x��=�oSSjަ��2�oSs�x��=�oSs�x��=�oSs�x��=�oSSjަ��2�oSs�x��=HoSs��656kߦ���65F{ߦ�ԼM �eߦ���65V{ߦ���65V{ߦ���65V{ߦ�ԼM �eߦ���65V{ߦ���65V{ߦ���65V{ߦ�ԼM �eߦ���65V{ߦ���65V{ߦ���65V{ߦ�ԼM �eަ�̯oSc���Ḿ���X�9|��3���� ^�`�y5�� ^���q5�=�W38u\��j��NW3�ڃx5�Rs5�� ^���q5�=�W38u\��j��NW3�ڃx5�Rs5�� ^���q5�=�W38u\��j��NW3�ڃt5�B��h�]����j&k�fp渚��ī�:�f`��j��jT�A�����jV{�fp긚��ī�:�f`��j��jT�A�����jV{�fp긚��ī�:�f`��j��jT�A�����jV{�fp긚�����_��f����W3 �sx5�3���� ^���q5�=�W38u\��j��J���.�x5�S���� ^���q5�=�W38u\��j��J���.�x5�S���� ^���q5�=�W38u\��j��F�W3����NW3�ڃx5�S���� ]����j6k�fPf�f@tī�:�f`��j���X�A�����jV{�fPj�f@uī�:�f`��j���X�A�����jV{�fPj�f@uī�:�f`��j���X�A�����jV{�fPj�f@uī�:�f`��j��W3�Ysx5�3���� ^͠�\̀�2�W38u\��j��NW3�ڃx5�S���� ^͠�\̀�2�W38u\��j��NW3�ڃx5�S���� ^͠�\̀�2�W38u\��j��NW3�ڃx5�S���� ^͠�\̀�2HW38t���͚ë�9�f`��j���X�A��A����e�fp긚��ī�:�f`��j���X�A�����jR�A�����jV{�fp긚��ī�:�f`��j��jT�A�����jV{�fp긚��ī�:�f`��j�����9������L�^���q5�=�W3�m��f���������j��߆?m_�i�T/�_��|>=_��ƾl�"�r�@�<���.�R�������?��ӯ�]j��4��w�o^W������\��4W&����W&|�pe�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃ|e�P�W&��� J͕ �� _���\��j� J͕ �� _�`�ye�� _���\��j� J͕ �� ^���qe�5�W&s^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃ|e�Q� �.�|e�Rse�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃ|e�Q� �.�|e�Rse�=�W&(t\��f�� �̕ �� _�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��� J͕ �� _���\��j� J͕ �� _�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��ҕ �ܯL@��^���qe�5�W&(3W& ڃ|e�P�W&��� J͕ �� _���\��j� J͕ �� _�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��� J͕ �� _���\��j� J͕ �� ^�`�\�@f�� �W& Ys|e�2se�=�W&(5W&�ڃ|e�Q� �.�|e�Rse�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃ|e�Q� �.�|e�Rse�=�W&(5W&�ڃxe�BǕ h�^�`�\�@d�� �̕ �� _���\��j� J͕ �� _�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��� J͕ �� _���\��j� J͕ �� _� �� ���|e�Rse�=�W&(5W&�ڃxe�BǕ h�_�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��� J͕ �� _���\��j� J͕ �� _�`�ye�� _���\��j� J͕ �� _���\��j� F�W&��� J͕ �� ^���qe�5�W&(3W& ڃ|e�Q� �.�|e�Rse�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃ|e�Q� �.�|e�Rse�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(t\��f�� �̕ �� _���\��j� F�W&��� J͕ �� _���\��j� J͕ �� _� �� ���|e�Rse�=�W&(5W&�ڃ|e�Rse�=�W&u^�@�2�W&(5W&�ڃ|e�Rse�=�W&(5W&�ڃxe�Ase�=�W&(r\��d�� �̕ �� _�@Ὸ2?�~e»�q�rxe������ޮJدL�|���S��a�V�����;�3yd�2�|ZnH������/����������~����&����r�����/���W�'ç�q�{'� '�ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+t��h���Ɯq2�� ��JM��jr����ɨ� ��JM��jr�l�'��r����ɨ� ��JM��jr����ɨ� ��F�q2�� ��JM��jr����ɨ� ��JM��jr�l�'��r����ɨ� �� +q2�5�q�2'#ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qg�L�2Hq�2�8��c'+p��(����L��hr�,�k��:�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'4q2�=�q�"G��d�q����Ɉ� ��JM��jr�l�'��r����ɨ� ��JM��jr����ɨ� ��F�q2�� ��JM��jr����ɨ� ��JM��jr�l�'��r����ɨ� ��JM��jb���'�Ys'2q2�=�q�2'#ڃ'+5q2�=�q�R'�ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'�'��r����ɨ� ��JM��jb���'�Ys's�Ʉ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ.�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qg�L�2�q�R'�ڃ'+t��h����L��hr�l�'��r����ɨ� ��JM��jr����ɨ� ��F�q2�� ��JM��jr����ɨ� ��JM��jr�l�'��r����ɨ� ��JM��jr����ɨ� ��F�q2�� �� +q2�5�q�2'#ڃ'+5q2�=�q�Qg�L�2�q�R'�ڃ'+5q2�=�q�R'�ڃ'�'��r����ɨ� ��JM��jr����ɨ� ��F�q2�� ��JM��jr����ɨ� ��JM��jb�l���d��Ɋq2�5�q�2'#ڃ'�*N�ϱ���>��ǟ�]����X��N�����=N�q���O����?�ϯ��^�O���w!�s�/Æ:_��������a�ڃ�2l�^_� �:�/�Vj^��j�˰������\���Q�A�͍:{sR�A�͕�����\���Q�A��:zs4k�{sc�ޜ�e�{s��7G��7WjzsT{�{s��7G��77���I]�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�e�{s��7G��7WjzsT{�{s��7G��77���I]�7WjzsT{{s���͚��\����A�͍:{sR�A�͕�����\���Q�A�͕�����ܨ�7'u��\���Q�A�͕�����\���Q�A�͍:{sR�A�͕�����\���Q�A�͕�����ܨ�7'u��\�{o���1��8zsk�{se�7G��7�7u��\���Q�A�͕�����\���Q�A�͍:{sR�A�͕�����\���Q�A�͕�����ܨ�7'u��\���Q�A�͕�����\���Q�A�� �ޜ̞��\��7G��7WfzsD{�{s��7G��77���I]�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�e�{s��7G��7WjzsT{�{s��7G��77���I]�7WjzsT{�{s��7G��7W���Ѭ9�� �ޜȞ��\����A�͕�����\���Q�A�͍:{sR�A�͕�����\���Q�A�͕�����ܨ�7'u��\���Q�A�͕�����\���Q�A�ͅz��A]�7WjzsT{�{s��7G��7W���Ѭ9�͍9{sB�A�͕�����\���Q�A�͕�����ܨ�7'u��\���Q�A�͕�����\���Q�A�͍:{sR�A�͕�����\���Q�A�͕�����ܨ�7'u��\���Q�A��:zs4k�{se�7G��77���I]�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�e�{s��7G��7WjzsT{�{s��7G��77���I]�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�e{s���͚��\����A�͕�����ܨ�7'u��\���Q�A�͕�����\���Q�A�ͅz��A]�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�e�{s��7G��7WjzsT{�{s��7G��77hzs2{{sE��ɚ��\����A�͏�i՛���{��y��ao~�9�8������7?�_��@�}�����r�yQ=�3)��B����~�������~����響;�}�ß���hӿ;����������>Iџ_�=�&�S�}ӻ?��������e��&��oB��oR��Ь9�� ��ɨ�o"u�I��P�A�� ��I��P�A:�&R�A�� ��I��P�A�� ��ɨ�o"u�I��P�A�� ��I��P�A:�&R�Aꛔ��M(�þI��oB��oRf�&D{��&�^�&P�A�� ��I��P�A�� ��ɨ�o"u�I��P�A�� ��I��P�A:�&R�A�� ��I��P�A�� �ľɠ���9�9�&$k��&e�oB��oRj�&T{��&�ξ��e��&��oB��oRj�&T{��&��oB��o2��H]�oRj�&T{��&��oB��oRj�&T{��&�ξ��e��&��oB��oRj�&T{�&��� ͚þɐ雈�9�� ��I��P�A�� ��ɨ�o"u�I��P�A�� ��I��P�A:�&R�A�� ��I��P�A�� ��I� �u��&��oB��oRj�&T{�&��� ͚�ɘ�o"t�I��P�A�� ��I��P�A:�&R�A�� ��I��P�A�� ��ɨ�o"u�I��P�A�� ��I��P�A:�&R�A�� �ľI��oB��oRf�&D{��&�ξ��e��&��oB��oRj�&T{��&��oB��o2��H]�oRj�&T{��&��oB��oRj�&T{��&�ξ��e��&��oB��oRj�&T{��&��oB��o2��H]�oR��Ь9�� ��I��P�A:�&R�A�� ��I��P�A�� ��I� �u��&��oB��oRj�&T{��&��oB��o2��H]�oRj�&T{��&��oB��oRj�&T{�&��o"��oR�蛐�9�� ����Q}~��oz�Mǟc��o�Mop?��)o�������Y7�����l��j�O߸��M���1���~�wG�~�7�����=~�ׇO��"����_��������_�����9~ݗ!�/"k���eȤpD��p���=��!�Ys��qp���̀��H�9��9�7 {��7C&|#��8{3d�7"k��7C&y#��8x��݀�9���؍Ț��͐)݈�9���̍Ț��M��q��p3d7"k��6C�n#��m3d�6"k��6Aή Ȟ��̀{�Fܻ)Lڌ6�6�ޏq�f��l$��l��k�vL.s\�2!�5��!S�Ysܰ2 �5�� g�d�q�f��kD��k�L�Fd�q�f�dkD�Gk����=�Ś!�Ys��2��5ǭ�!��Ys� 1��5����F�F��1N��B�Ě�>͐�ӈ�9��9�4 {��4C&L#��8K3d�4"k��4C&I#��8H��р�9����Ț�͐)ш�9����Ț�M��A��@3d4"k��3C�>#��=3�H�|?���ҝ�Wc\�0��5�ə!S�Ysܛ2��5DZ� gkd�qifȄfD�gf�LeFd�qcf�$fD�f��}�=�u�!�Ys��2e�5�]�!��Ys��&�M�1��qQf�eD��d�LMFd�aKfđ��~�C2ΎĞ�̐�Ȉ�9N����Ț�~̐�Lj�9��9�1 {��1C&#��83d�1"k��1C&#��8��ŀ�9���X�Ț�T̐)ň�9���L�Ț�HL����3d1"k�0#�:���c܆0i�5�a� gd�qf�DaD�'a�LFd�qf��`D��`��-�=�%�!�Ys��2�5� �!��Ys� r�_@��_�L�Ed�q�eȔ_D�w_�L�Ed�q�%��|�sX|q_���ˀ��H�9n��ԋȚ��K������2d"/"k�/C��"���2d�."k�����:&�9.����Ț�ː����9n����Ț�K������2db."k�S.C��"���2d2."k#.!���ư�2���{?���So�Xs�nAz$�-�{����:�?���ׇ�s�x/���������������í�P���[�����O��?~�_���O������y�~�*��ǣ|k�)�g���S�)?�q��f�q����)�� *F�� +�� G*JM��jr��Ԅ*�� �*JM��jr�bԙ���r���+�� 7+JM��jr���t+�� �+F�� +�� �+JM��jr���,�� ',JMÂjr�bԙ���RȢ̽dA���, +1�5�9�2ӳ ڃ\������rԢ�T-�� w-JMjrڢԴ-�� �-F�y�� .JM�jr��D.�� g.JM�jr�bԙ���r���.�� �.JM��jr��4/�� V/M�Bf�a���Q� Ysܾ(3��=���Rӿ�ڃ\�u&0�.��(5�=��R ڃ��(5-�=�5�QgC�2�A�RSĠڃ��(5Q�=�Y�R�Šڃ\�u�1�.��(5u�=�}�RȠڃ��(t42h�V2�L&Cd�q(�̔2�� �2JM,�jr.���2�� 3F���� G3JM5�jr7�Ԅ3�� �3JM;�jr=cԙϐ�r@��4�� 74JMD�jrF��t4�� �4B��4����(55 �=�=�RԠڃ��(t45h�W5ƜY �� �5JMY�jr[���5�� �5JM_�jracԙؐ�rd��T6�� w6JMh�jrj�Դ6�� �6F�� �� 7JMq�jrs��D7�� g7JMw�jrycԙސ�r|���7�� �7 +�5� �2�� ڃ\�uf8�.��(5%�=�-�R�ڃ��(5=�=�E�Qg�C�2�Q�RS�ڃ��(5a�=�i�R��ڃ\�u�9�.��(5��=ȍ�R�ڃ��(5��=ȥ�Qg�C�2���BG��f�q���;�� ';JM��jr�cԙ퐺r��Ԕ;�� �;JM��jr����;�� <B�&<����(5�=��R�ڃ��(5-�=�5�Qg�C�2�A�RS��ڃ��(5Q�=�Y�R���ڃX�4i�=�q�"G݃d�qߣ�>�� '>�}�j|�s�����|X��%������-*e>y���W4�������g����������7���ܟ�GiO��C�4���������Ї��W�(5��Auķ�8u�S�� �S��)6k�)g�x���xJ���P]1�rꈧX�A���:�)V{�)��x���xJ���P]1�rꈧX�A���:�)V{�)��x���xJ���P]1�rꈧX�A���:�)V{�)��x���xJ���P]!�r��x���cO9p��X�9���9�)F{�)��x��u�)��x���xʩ#�b�1�rꈧX�A����x �e�)��x���xʩ#�b�1�rꈧX�A����x -�e�)��x���xʩ#�b�1�rꈧX�A����x -�e�)��x���xʩ#�b�1�rꈧX�A����x -�e�)g~��X|?F��x�Ś�xʙ#�b�1�2ꌧH]1�rꈧX�A���:�)V{�)��x���xJ���P]1�rꈧX�A���:�)V{�)��x���xJ���P]1�rꈧX�A���:�)V{�)��x���xJ�#�B��(�r�O1YsO9s�S�� �S�gw�Yz^���pH�� ��PV�<�Z��n�<)�ev�EU�UE������q^����H�:�e��d%�~é+�b�1�Rj�)T� �SN]��=��SW<�jb<��O�ڃO)5��c�)��x���xʩ+�b�1�rꊧX�A����x -�1��SW<�jb<��O�ڃO9�O�YsO)r�SH��S�\��=��SW<�jb<��O�ڃO)5��c�)��x���xʩ+�b�1�rꊧX�A����x -�1��SW<�jb<��O�ڃO9u�S�� �SF���s�)��x���xʩ+�b�)�r�%�b��0�Rf�)D� �SN]��=��SW<�jb<��O�ڃO)5��c�)��x���xʩ+�b�1�rꊧX�A����x -�1��SW<�jb<��O�ڃO9u�S�� �SJM<���xʩ+�b�)�r�%�b��0�r抧�A����x -�1��SW<�jb<��O�ڃO9u�S�� �SJM<���xʩ+�b�1�rꊧX�A�����)V{�)�&�Bub<��O�ڃO9u�S�� �SN]��=��RO�:)�r�%�b��0�r抧�A�����)V{�)�&�Bub<��O�ڃO9u�S�� �SN]��=��Qw<E��xʩ+�b�1�rꊧX�A�����)V{�)�&�Bub<��O�ڃO9u�S�� �SN]��=H�BW<�f�Q<��K<�d�a<��O1ڃOAd�)~�R�0������O�b -ߑt�]����@���}{���g�K:�������/�����!�:��v���?����z{{9��:=�����<X>t�d~b������w�>>�Gu}��1x�>=����R/���������|���w�<P�?��w��z���?W_NOo_��>��<P�^_�z���ԗ���w��z����ׇ��?�U��w��\�v�1|���,�c�@=���)R��w�<P�?��?�U��w�<P�?�G�^>{G������A�e��Q6{�<�N'i^>{����3�b��g�=x��>|{������Q{�s�����*�Y�eu�O���U/����������"�[������z�1|�����Q{��f�������|�9x��O/R�|��ڃ�����M����Q{�@=�NV�|��ڃ������m.�eu�O/ooR�|��ڃ����ժ���Q{�@}}x����?zǬ�������� '�et����U/������z�|}���w�<P�?��'�^>{G���է��I�볬����cx|���w�<P�?��� g}��ڃ����Ū���Q{��x���˛�mn}��1x�>=|}�����Q{�@]�l���8�� ��Qj��ڃ|Ǩ�<�c���(5�qP�A<���u͚��8��yD{���u��!u�y��<�=��q���8�� ��Qj��ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8ʼ��A�v��(p��A���<�2s���8B���u�y��<�=��q���8�� ��Qj��ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1h���sxG��<�5��q���8�� ��Qj��ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A<���u͚��8��y"{���(3�q�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�P��q@��|G�9��j�y��<�=��q���Ys|ǘ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Qj��ڃxG��<�5��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Qj��ڃ|G�9��j�y��<�=��q����:�<�Rs���8J�yT{���(5�qP�A>�c�}��1��q���Ys|G�9��h�y��<�=��q����:�<�Rs���8J�yT{���(5�qP�A>�#��yP� ��Qj��ڃ|G�9��j�y��<�=��q����:�<�Rs���8J�yT{���(5�qP�A<�cМ�!���<�"�y$k���(3�q�A>�CW_�y|��y��k4O��q��c��y��8//�{~��8�#��8��<�?�������?��Ɂ����f��_���_��qx�}\��َ��||8.�j�q���=��E�����:���Rs\���"J�qT{���(5�EP�A<.b�!�����2s\���"J�qT{���(5�EP�A>.b�}\��1��E���"�� Qj���ڃ|\D�9.�j�q�^���:���Rs\���"J�qT{���(5�EP�A>.b�}\��1��E���"�� Qj���ڃx\D���5��E����:���Rs\���"J�qT{���(5�EP�A>.b�}\��1��E���"�� Qj���ڃ|\D�9.�j�q���"��A>.��A����Rs\���"J�qT{���u!u�q���=��E����Ys|\D�9.�h�q���"��A>.��A����Rs\���"J�qT{���u!u�q���=��E���"�� Qj���ڃ|\Ĩ���c���(5�EP�A>.��A����Rs\���"F��EH�t\D���"(ގ�q��"(�Qf�� ڃ|\D���"��A>.��A����Rs\���"J�qT{���u!u�q���=��E���"�� Qj���ڃ|\Ĩ���c���(5�EP�A>.��A����Rs\���"�q2{��(rA�����2s\���"J�qT{���u!u�q���=��E���"�� Qj���ڃ|\Ĩ���c���(5�EP�A>.��A����Rs\���"F��EH�|\D�9.�j�q���=��E����Ysx\Đ9.Bd��qe��=��E���"�� Qj���ڃ|\Ĩ���c���(5�EP�A>.��A����Rs\���"F��EH�|\D�9.�j�q���=��E���"�� ����s���(5�EP�A>.��A��B�q4k���s!t�q���=��E���"�� Qj���ڃ|\Ĩ���c���(5�EP�A>.��A����Rs\���"F��EH�|\D�9.�j�q���=��E���"�� 1�>.B���"J�qT{��(tA�����2s\���"F��EH�|\D�9.�j�q���=��E���"�� 1�>.B���"J�qT{���(5�EP�A>.��A����Q�qR� Qj���ڃ|\D�9.�j�q���=��E�����:�B�q4k���(3�E�A>.��A����Q�qR� Qj���ڃ|\D�9.�j�q���=��E�z=.���"J�qT{���(5�EP�A>.��A����Q�qR� Qj���ڃ|\D�9.�j�q���=��E��"d�Q�:.�d��qe��=��E�b���"���"��<���?�8.r��"_�^�=�q����q���ȿ��t:���_�闟?�9�=���_��� N��C���"ϯo��.�}����������E䣺>��<P�����V����Q{�@}yx>Y���;j�����EJ�|��ڃ\NO�Bk��YV����N�(57rP�A������A��F�Rs#��9F�7rH�|#G����j���F�=�7r��9�� ��1hn��s|#G����h���F�=�7r��9�� ��1꾑C��9J͍T{�o�(57rP�A������A��F�P�7r@��|#G����j���F�=�7r��9�� ��1꾑C��9J͍T{�o�(57rP�A����u#͚�9��7r�|#G����j���F�=�7r��9�� ��1꾑C��9J͍T{�o�(57rP�A������A��F�Q��R� ��Qjn�ڃ|#G����j���F�=�7r��o�:�F�Rs#��9 -]7rЬ9������A��F�Q��R� ��Qjn�ڃ|#G����j���F�=�7r��o�:�F�Rs#��9J͍T{�o�(57rP�A��c�}#��1�7r��9�� ��Qjn�ڃ|#G����j���9��A����ˍo��F�k�o�(37r�A��#��P� ��Qjn�ڃ|#G����j���F�=�7r��o�:�F�Rs#��9J͍T{�o�(57rP�A��c�}#��1�7r��9�� ��Qjn�ڃ|#G����j���F�=�7r�n� Ys|#G����h���F�=�7r��o�:�F�Rs#��9J͍T{�o�(57rP�A��c�}#��1�7r��9�� ��Qjn�ڃ|#G����j���9��A������A��F�Rs#��9 -]7rЬ9��c���!���F�2s#��9J͍T{�o�(57rP�A��c�}#��1�7r��9�� ��Qjn�ڃ|#G����j���9��A������A��F�Rs#��9J͍T{�o��z#�9�7r��9�� ��Qjn�ڃx#G��F�5�7r��o�:�F�Rs#��9J͍T{�o�(57rP�A��c�}#��1�7r��9�� ��Qjn�ڃ|#G����j���9��A������A��F�Rs#��9J͍T{�o�u��!u���F�=�7r�n�Ys|#G����h���9��A������A��F�Rs#��9J͍T{�o�u��!u���F�=�7r��9�� ��Qjn�ڃ|#Ǩ�F�c�o�(57rP�A������A��F�Rs#��9F�7rH�x#G��F�5�7r��9�� ��Qjn�ڃ|#Ǩ�F�c�o�(57rP�A������A��F�Rs#��9B���u���F�=�7r��9�� ��Qjn�ڃ|#Ǩ�F�c�o�(57rP�A������A��F�Rs#��9͍2{o�(r��A���F�2s#��9�W_ԍ|�ˍ�ۓ4�7r�����������ϋn䬏\n伬9��O�������>������� �x�K��с�}HmR�y��C*��:���RsH��C*J�!T{��(5�TP�A>�b�}H��1ȇT��C*�� RQj��ڃ|HE�9��j�!�� +�e�)��x���xʩ#�b�1�rꈧX�A��:�)4{��)G���5��3G<�hb<��O�ڃO)5��� �SN��=��SG<�jb<��O�ڃO)5��� �SN��;���������Cr@��������j�vk�IY,�k-�J�*���@�w���wǦG����T%+y�+�b�1�rꊧX�A�����)V{�)�&�Bub<��O�ڃO9u�S�� �S��Sl��S�\��=��3W<�hb<��O�ڃO9u�S�� �SJM<���xʩ+�b�1�rꊧX�A�����)V{�)�&�Bub<��O�ڃO9u�S�� �SN]��=��Qw<E��xʩ+�b�1�rꊧX�A��z��ج9����x +�1��SW<�jb<��O�ڃO9u�S�� �SJM<���xʩ+�b�1�rꊧX�A�����)V{�)�&�Bub<��O�ڃO9u�S�� �SN]��=��RO�:1�rꊧX�A��z��ج9�����)F{�)�&�Bub<��O�ڃO9u�S�� �SN]��=��RO�:1�rꊧX�A�����)V{�)��x���xJ���P�O9u�S�� �SN]��=��SW<�jb<���S��A��z��ج9�����)F{�)��x���xJ���P�O9u�S�� �SN]��=��SW<�jb<e�O�:1�rꊧX�A�����)V{�)��x���xJ���P�O9u�S�� �SN]��=��SW<�jR<��O��sO9�O1YsO9s�S�� �SP��x�?��g�T:���s|���?1��H:�����]�oo߾�|���3y�N=�l����_��o�H�N�{�������^~�Nϯ���;,�~�?�������;E?�Gu=��<P����pV��g�=x��<<��zy��ڃ�����N�R/��Q{�s������թ�YV�������j�˳w�<P_���)R���;j����8��˳w��\�v�1|��z��1x����)��������g�zy��ڃ����h�˳w��\}=��_�/���s��gp:I���������U/��Q{�@}}��f}/��Q{�s�����*�Yϲ:ԧ��Ҫ�g�=x��<<����ֳw�<P�?���7����?o����Nͳ�����cxz����;j����7�^������z�1��zy��ڃ������m.ϲ:ԧ���7�^��������pz����;j��/����w̚��|<=����p�,�c�@=�^�zy��ڃ��g��Q��g�=x�� +�OR�<{G���է��I��YV���z�1<>K�������$�Y��Q{�@=��X������������ֳ�������� g={G��u]�Qj��ڃ|G�9��j�y���8��A>��Ԝ�A��<�B�y4k���(3�q�A>�c�}��1��q���8�� ��Qj��ڃ|G�9��j�y���8��A>��Ԝ�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Qj��ڃ|Ǩ�<�c���(�r��1<���uŚ��8��yD{����z�9��q���8�� ��Qj��ڃ|G�9��j�y���8��A>��Ԝ�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Qj��ڃxǠ9�Cf��yE��8H���Qf�� ڃ|G�9��j�y���8��A>��Ԝ�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Qj��ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�B�y4k��2�q��9>��̜�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Qj��ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8B���u�y��<�=��q���8�� ��Q�:��f��yc��8��A>��Ԝ�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Qj��ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y���8h���Qf�� ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Q�:��f��ye�<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�P��q@��|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�As�̞��8�\�q��9>��̜�A��<]}�q�s\���^�y<<�s�9�y�G>���r���g<�����y^�q�����_~���O伜�z�����O~���~���E���"7�������EP�A>.��A����Q�qR� Qj���ڃ|\D�9.�j�q���=��E��"d�Qf�� ڃ|\D�9.�j�q���=��E�����:���Rs\���"J�qT{���(5�EP�A>."��qP� Qj���ڃ|\D�9.�j�q���=��E�����:���Rs\���"J�qT{��(tA�����1�qB� Qj���ڃ|\D�9.�j�q���=��E�����:���Rs\���"J�qT{���(5�EP�A>.b�}\��1��E���"�� Qj���ڃ|\D�9.�j�q���"��A>.��A��B�q4k���(3�E�A>.b�}\��1��E���"�� Qj���ڃ|\D�9.�j�q���"��A>.��A����Rs\���"J�qT{���u!u�q���=��E���"�� Qj���ڃ|\Ĩ���c���(�r\��1<.��u\Ś��"��qD{����z\�9��E���"�� Qj���ڃ|\D�9.�j�q���"��A>.��A����Rs\���"J�qT{���u!u�q���=��E���"�� Qj���ڃx\Ġ9.Bf��qE��"H�Qf�� ڃ|\D�9.�j�q���"��A>.��A����Rs\���"J�qT{���u!u�q���=��E���"�� Qj���ڃ|\Ĩ���c���(5�EP�A>.��A��B�q4k��2�E��9>.��A����Rs\���"J�qT{���u!u�q���=��E���"�� Qj���ڃ|\Ĩ���c���(5�EP�A>.��A����Rs\���"B�u�q���=��E���"�� Q�:.�f��qc��"��A>.��A����Rs\���"J�qT{���u!u�q���=��E���"�� Qj���ڃ|\Ĩ���c���(5�EP�A>.��A����Rs\���"F��EH�|\D�9.�j�q���"h�Qf�� ڃ|\Ĩ���c���(5�EP�A>.��A����Rs\���"F��EH�|\D�9.�j�q���=��E���"�� 1�>.B���"J�qT{���(5�EP�A>.��A����Q�qR� Q�:.�f��qe��=��E���"�� 1�>.B���"J�qT{���(5�EP�A>.��A����P��E@��|\D�9.�j�q���=��E���"�� 1�>.B���"J�qT{���(5�EP�A>.��A��As\�̞��"�\�E��9>.��A���^̸\?����-����"ǟc9�q��O�ߞ��z�r\��:.�:�N����~����E�O�������������}��ׇ�{�.�~����������E?�Gu=��<P�����V��g�=x��<<��zy��ڃ�����b�R/��Q{��������Oh���eu�뤍Rs#��9J͍T{�o�(57rP�A��c�}#��1�7r��9�� ��Qjn�ڃ|#G����j���F�=�7r��9�� ��Qjn�ڃ|#G����j���9��A������A��F�Rs#��9J͍T{�o��z#�9�7r��9�� ��Qjn�ڃ|#G����j���9��A������A��F�Rs#��9 +]7rЬ9��c�}#��1�7r��9�� ��Qjn�ڃ|#G����j���9��A������A��F�Rs#��9J͍T{�o�u��!u���F�=�7r��9�� ��Qjn�ڃ|#Ǩ�F�c�o�(57rP�A����u#͚�9�̍D{�o�u��!u���F�=�7r��9�� ��Qjn�ڃ|#Ǩ�F�c�o�(57rP�A������A��F�Rs#��9F�7rH�|#G����j���F�=�7r��9�� ��1꾑C��9ʼ��A�vo�(p��A���F�2s#��9B���u���F�=�7r��9�� ��Qjn�ڃ|#Ǩ�F�c�o�(57rP�A������A��F�Rs#��9F�7rH�|#G����j���F�=�7r��9�� ��1hn��sx#G��F�5�7r��9�� ��Qjn�ڃ|#Ǩ�F�c�o�(57rP�A������A��F�Rs#��9F�7rH�|#G����j���F�=�7r��9�� ��1꾑C��9J͍T{�o�(57rP�A����u#͚�9�̍"{�o�(37r�A������A��F�Rs#��9F�7rH�|#G����j���F�=�7r��9�� ��1꾑C��9J͍T{�o�(57rP�A������A��F�P�7r@��|#G����j���F�=�7r�n�Ys|#ǘ�F�c�o�(57rP�A������A��F�Rs#��9F�7rH�|#G����j���F�=�7r��9�� ��1꾑C��9J͍T{�o�(57rP�A������A��F�Q��R� ��Qjn�ڃx#G��F�5�7r��9�� ��1꾑C��9J͍T{�o�(57rP�A������A��F�Q��R� ��Qjn�ڃ|#G����j���F�=�7r��o�:�F�Rs#��9J͍T{�o�(57rP�A��c�}#��1�7r�n�Ys|#G����h���F�=�7r��o�:�F�Rs#��9J͍T{�o�(57rP�A��#��P� ��Qjn�ڃ|#G����j���F�=�7r��o�:�F�Rs#��9J͍T{�o�(57rP�A��c���!���F�"$k�o�(37r�A��s|�E����q��s{���F�����n�<yx;��9�ˍ��u#���o?���/?���g�Z^�\��>��i|::����GۇTn>��!����:���RsH��C*J�!T{��(5�TP�A>�b�}H��1ȇT��C*�� RQj��ڃ|HE�9��j�!�� �=LJT��C*�� RQj��ڃ|HE�9��j�!��C*��A>���RA����RsH��C*J�!T{���zH�9ȇT��C*�� RQj��ڃ|HE�9��j�!��C*��A>���RA����RsH��C* ]�TЬ9>�b�}H��1ȇT��C*�� RQj��ڃ|HE�9��j�!��C*��A>���RA����RsH��C*J�!T{��uR!u�!�� �=ȇT��C*�� RQj��ڃ|HŨ�� @@ -2600,51 +2616,48 @@ D �5LJT��C*�� R1�>�B��C*J�!T{��(5�TP�A>���RA����Q�!R� RQj��ڃ|HE�9��j�!�� �=ȇT����:���RsH��C*J�!T{��(5�TP�A>�b�}H��1��T���Ys|HE�9��h�!�� �=ȇT����:���RsH��C*J�!T{��(5�TP�A>�"��!P� RQj��ڃ|HE�9��j�!�� -�=ȇT����:���RsH��C*J�!T{��(5�TP�A<�b�R!���"�!$k��(3�T�A>�r|DR��R��[r|H��9�!�G>����O�����3*������xA�������b��dO�S?<�������5��G�gn��cW��z�߽}�����2Ys��ϧ��G��"�s���{g��d�v��;��=9��Qk�<��?K��Q&k�s���W��=4A��"�s�����O� y�(�5w@��O��|�ɚ; ��#C��5�g���(�s|Cɐ9�Dd��%C�~�5�ד��ID��N侜d���$C�l�5�G���ID�_L2d&Ysx.I���`��$�T�5LJ��;ID�_I2d�$Ys|"I��B�=�����HD�G2dn#Ys|ɐ9�Dd��Y����*�19��&�!s�Ț�H��=$"k��!2ǐ��9>�$�} Ȟ�;H��$"k�� 27���9��d�u����1>$�}�Ğ��G���#"k�2w���9�zd�="���� ��# {��2玈�9>vd��:"���ґ!s�Ț�3G��W���9�qdȜ8"�����!s߈Ț��F��q#"k�O r_6�����!sֈȚãFF\7���F�A#k�� r_3�����!sʈȚ�CF��#"k��2G���9>a$�}�Ȟ��E���""k��2����9�\d�."���l� ��" {�o2'���9>Xd��+"���Z�!s��Ț�SE�ܗ���9�Sd�˙"�n��H��֍"�n��B�s��Ě��D���u�cr��m"C�4�5LJ���DD�_%2d�Ys|�H��"�=����sDD�#2dnYs|�Ȑ9DDd��"A�+D@�� 2dNYs|�Ȑ�?Dd���!C���5������C���2�:;D��2`n�Xs|qȐ98Dd��!A�kC@��2dN Ys|hȐ�3Dd��!C���5�'��/�s|_Ȑ9/Dd��q!C��5Ǘ���BD���*d��M!C��5���{BD�^2�:&D���^. �Wc|GȀ9#Db��!C��5���BD���d��� C�t�5LJ���AD�_ 2d�Ys|2H��b�=����sAD�2dnYs|)Ȑ9Dd�����J�19��F�!s"�Ț�A��} "k�q"�v�O p_���.�!s�Ț�@��M "k�/2���9>$�} Ȟ�[@��) "k�2w���9�d�"���� � {���2���9>�c���!����!s��Ț�?��W��9��cȜ�!�����o��ڏs�Ě�S?�ܗ~��9��cȜ�!���ȏ!s�Ț�?�́"k���r_������!sڇȚ��>��]"k���2G}��9>�#�}�Ȟ�{>��9"k���2�|��9��c��!����� � {o�q��!�v��0�{H�9��c��!���t� �� {���2g{��9>�c���!���b�!s��Ț�s=��뵞cr��C�T�5LJz�;=D�_�1d��Ys|�G��B�=��y��<D��1dn�Ys|�ǐ9�Cd��Y!�*�5�7y��N�w;�y�{<$�_�9�4����C\n��ܾ�zx���!��|z}x~�����ӻ7���/o�}9�}���3��sZ�x���_��O�������������C���Y_���v��G�v���v��7O{�~|h Q�A� ������P�)Q�An���CR� g�JMw�jry�Ԥ��� LJJM}�jrh� �:9ATjDT{�+D�&CD�9DTjJDT{�[D����1�9�R�#�ڃX$*t%�h�G��L��hr�h�&�:9MTj�DT{��D�&OD�9PTj -ET{�E��H��1ș�R�)�ڃ\**5�"�=ȱ�RS+�ڃ�+u���AN��f��jQ��Q�A��r��vѨ;^$uR���K����� -\ #�5��2S1"ڃ�1 -�2�:9eTjZFT{�kF�&gD�9hTj�FT{��F��1�Y�R�5�ڃ\6*5i#�=�q�RS7�ڃ�7u���AN������Q��Q�A������Ѡ���9��zG$k��Ge&yD�9zTj�GT{��G����1��R�>�ڃ\?*5�#�=��RS@�ڃ�@uG���A� ����R�I!Q�A�!����Ҩ;�$ur��4��� W�JM�jb��UF�Ys�F2q$�=�y�2�G"ڃ\H*5�$�=ȑ�RSI�ڃ�Iu����AN%��V��ZR��%Q�A&��b��fҨ;�$ur6��t��� ��JM:�jr<��ԓ�� ��B����AN(�����R��(Q�A)�JJ4k�[Jc�1�9�R�S�ڃ\T*5I%�=�Q�RSU�ڃ�Uu����AN+�����R��+Q�A,������Ҩ;�$urf��t��� ��JMj�jrl��Ԗ�� ��F��%�c��K���D���T��.Ѭ9/������Ҩ;�$ur~������ �JM��jr���T��� w�F�!&�c�SL���D���TjrLT{��L���D���4�2I��e*5]&�=�e�R�f�ڃg*5u&�=�}�Qw�I��DS���D���Tf2MD{�CM���D���4�5I��k*5�&�=�ŦR�l�ڃm*5�&�=�ݦP��&�s��M���D���Tj�MT{�N���D���4�8I��q*5'�=�%�R�r�ڃs*55'�=�=�At��s�t*r5�H�W��L։hr�Iu�(;�9.i�mIy�v?Lj;�ĝ�:~y��q��L���ĝ��/�����o?���Ͼ����ʫ���������M����ܛg<��_��j���*5ߗ�j�7� -������A��\��[sQ�A��\��sQ�A��\��sQ�A��\���%u��*5ߠ�j�w�*5_��j���*t}�.�5�ߤk�]�:�pWj -wT{�w��pG��pWj -wT{�w���1ȅ�RS��ڃ\�+5�;�=ȅ�RS��ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� � -]�;�5Dž�2S�#ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �F݅;�c�w��pG��pWj -wT{�w��pG��p7�.�I�T�+�R��x;���W�b�q���� �B���A.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �F݅;�c�w��pG��pWj -wT{�w��pG��p7h -w2{wE��ɚ��]�)��A.ܕ�����ݨ�p'ur���� �JM�jr���� �F݅;�c�w��pG��pWj -wT{�w��pG��p7�.�I�\�+5�;�=ȅ�RS��ڃX�+t�h��L�Nd�q���� �JM�jr���� �F݅;�c�w��pG��pWj -wT{�w��pG��p7�.�I�\�+5�;�=ȅ�RS��ڃ\�+5�;�=ȅ�P��;�s�w��pG��pWj -wT{w���͚��ݘ�p'tr���� �JM�jr���� �F݅;�c�w��pG��pWj +�=ȇT����:���RsH��C*J�!T{��(5�TP�A<�b�R!���"�!$k��(3�T�A>�r|DR��q9�r{��������T�����?��;*�'.gT��3*���������������ɞ��~x@������kn�)��|��]������ɧ���<�d�}N>��_�E��ȧ��0Έߟd�v��;��=9��(�5w@��%yy�ɚ���z��M��Q${�<�ڿ�i�!/�2Ys���$�ˣL���2����9>�$�}E Ȟ�J�� %"k�(2����9��d�O"���t� ��$ {��&2g���9>�d��L"���b�!s0�Ț�sIB̵$�k�o%0��H�9>�d��I"���J�!s$�Ț�I�����9��dȜG"���8�!s�Ț��H��a$"k��"�'�W���1�7���HD�D2d�!Ys| ɐ9�Dd��)$A�KH@��A2d� Ys|ɐ��Dd��$#�Hގ��#��G ��>2dNYs|�Ȑ�{Dd���#C���5�'��/�s|�Ȑ9wDd��#C���5Ǘ��CGD��9�rd��#C���5����FD�_72d�Ys|�H����=�w���FD�52�iD��_42`�Xs|�H����=Ƿ��SFD�22d�Ys|�Ȑ9bDd�� #A�F@��/2d�Ys|�Ȑ�]Dd���"C�p�5�g����s|�Ȑ9YDd���"C�^�5��cED��*�Td�ѝ"^�w3�G���nw;���E$��'�O^��c�o2����9>Ld��%"���*�!s��Ț�D�����9�GdȜ#"����!s��Ț�KD��!""k�� r_!����!s��Ț�D���!"k��2LJ��9<=$�\�������!�n���ss�Ě�C���!"k�� r_���!sj�Ț�CC�̝!"k��2G���9>1$�}aȞ��B��y!"k��2����9�,d�"����� �U! {�o +2'���9>(d��"����1!o���rI��;B�!k��27���9� d�"���|� �� {�o2����9>d�� "���j�!s4�Ț�A�����9�dȜ"���X�!s+�Ț�KA�̡ "k���'�W���1�7��AD�2d�YsxȈ�8��c|H��2�=�w���@D�2dnYs|Ȑ9Dd��9 A�k@@��2dNYs|Ȑ�Dd�� C��5�'��/��s|�ǐ9�Cd���C���5Ǘ��?D�����d���C���5�����x;��~�c?$�����d��C���5�G~�?D�_�1d�Ys|�G����=Ƿ}��>D��1d��Ys|�ǐ9�Cd��IA�>@���1d��Ys|�ǐ��Cd��%C��5�g|�����sx�Lj���c|�ǀ��Cb���C�x�5ǧ{�/���s|�ǐ9�Cd���C�f�5�{��=D���O^���c�o�2�z��9>�c���!���J�!s��Ț�=��z��9��cȜ�!���8�!s��Ț��<��a"k��1Wy��1��c�u����1>�c���!�����u��>�������S<���ϧׇ����??�{sz;�K����ڗ��� �z(���i�������?������?��������ۗKf}�>�ڽ���]CC���4���ǩ���!�=ȵ�R��ڃ*5�!�=�͡QwtH���P��Q�A.������P��Q�A���DR� '�JM��jr���d��� ��JM��jr�h�#�:9GTjzDT{�D��$͚�(Q���A����DR� ��JM��jr���䉨� �JM��jr�h�)�:9STj:ET{�KE�&UD�9VTjjET{�{E��`��1�ɢR�,�ڃ\-*5�"�=��RS.�ڃ�.uNj��A��y�Q�ÂQ�+aD��8bTf*FD{�;F�^CFP� ��JMˈjrͨ�䌨� �JMшjr�h�5�:9kTj�FT{��F�&mD�9nTj�FT{��F�����1ȉ�R�8�ڃ\9*5�#�=ȡ�RS:�ڃ�:4�#�=���"W�d�q��$��� G�JM��jr�h�>�:9}Tj�GT{��G�&D�9�Tj +HT{�H����1��R�A�ڃ\B*5)$�=�1�RSC�ڃ�Cu���AN"��&��*R��"Q�A#��H4k�HC&�$��8�Tf�HD{�I�&�D�9�Tj*IT{�;I��P��1ȩ�R�J�ڃ\K*5�$�=���RSL�ڃ�LuG���A�&��n��rR�I'Q�A�'��z��~R�׀�9� �R�P�ڃ\Q*5%�=�!�BWI�f�qKi�S:9�TjzJT{��J�&�D�9�Tj�JT{��J��1�i�R�V�ڃ\W*5y%�=ȁ�RSX�ڃ�XuG���A�,������R�I-Q�A�-������Ҩ;�$urr��4��� V� +]�%�5��2S^"ڃ�^uǗ��A�/�����S�I0Q�A�0�� +��Ө;�$ur��Դ��� טJM��jr������ 7�F�Q&�c��L���D���Tj�LT{��L���D���4�4I��h*t5�h�W��L��hr��Ԕ��� ��Fݱ&�c�sM���D���Tj�MT{��M���D����5�ur��Դ��� כJM��jr������ 7�F�'�c�3N���D���TjRNT{�cN���D���4h�N2{�NE��ɚ�S��:�A;�Ne'~�K�y[R��ǟcĝ�w���_��|�s=���1q�������������o�}~��j|�E{z|;�E�~S.}�|U��g<���,���Uj�/��o���+sA�����Jͷ�ڃ���J��ڃ�չJ�w�ڃ���F�_�K��/�Uj�A����Uj�D�į�U��]4k��Iט�p'tr���� �JM�jr���� �F݅;�c�w��pG��pWj wT{�w��pG��p7�.�I�\�+5�;�=ȅ�RS��ڃ\�+5�;�=ȅ�Qw�N���]�)�Q�A,�� -w4k�we�pG��p7�.�I�\�+5�;�=ȅ�RS��ڃ\�+5�;�=ȅ�Qw�N���]�)�Q�A.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jr�n�]��:�pW�*�Ѭ9.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jr�.�k����]�)�Q�A.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jb�n��d��\�;�5Dž�2S�#ڃ\�S�- -w|�K�~������秷������秇��߇_�N��ϋ���|�Z�����O���?���?���~|x�r�� 0����������A��C�x�A� �4�=��SW�jb��dШ�A̠��2hV{3h�����ڡ��͚�Z�ɠ��A;ueЬ� f�N]4�=��SW�jb��dШ�A̠��2hV{3h�����ک+�f�1�Vj2hT� f�N]4�=��SW�jb�ԕA�ڃ�A+54�c3h�����ڡ��͚�ڙ+�f�1�Vj2hT� f�N]4�=��SW�jb�ԕA�ڃ�A+54�c3h�����ک+�f�1�v�ʠY�A̠���1��SW�jb�ԕA�ڃ�A;ueЬ� f�JM���ڙ�3ho�(�v�%�f��0�v�ʠ�A̠��3hR� f�N]4�=��SW�jb�ԕA�ڃ�A+54�c3h�����ک+�f�1�v�ʠY�A̠���1��SW�jb�ԕA�ڃ�A;ueЬ� e� -]4�=G�#/4�5��3W�hb�ԕA�ڃ�A+54�c3h�����ک+�f�1�v�ʠY�A̠���1��SW�jb�ԕA�ڃ�A;ueЬ� f�JM���ک+�f�1�v�ʠY�Aʠzɠ٬9ʠ�2h${3hg����ک+�f�1�v�ʠY�A̠���1��SW�jb�ԕA�ڃ�A;ueЬ� f�JM���ک+�f�1�v�ʠY�A̠��2hV{3h����9��SW�jb�ԕA�ڃ�A;��A�Ys�A+34�c3h�����ک+�f�1�v�ʠY�A̠���1��SW�jb�ԕA�ڃ�A;ueЬ� f�JM���ک+�f�1�v�ʠY�A̠��2hV{3h�&�Fub�ԕA�ڃ�A;��A�Ys�A;seЌ� f�JM���ک+�f�1�v�ʠY�A̠��2hV{3h�&�Fub�ԕA�ڃ�A;ueЬ� f�N]4�=��R�A�:1�v�ʠY�A̠��2hV{3h�����Z�ɠQ��A;��A�Ys�A;seЌ� f�N]4�=��R�A�:1�v�ʠY�A̠��2hV{3h�����ڨ;�&ub�ԕA�ڃ�A;ueЬ� f�N]4�=��R�A�:1�v�ʠY�A̠��2hV{3h�����Z�+�F��(�v�%�f��0�v�ʠ�A̠!�54?���Ts�r�A�s�c_������{�3~�w>��iE�����~�����_�<����?�_���?�я�o<��pC~���G]�<�w�y��ǁ�������S� <Q�A<������Ө;�$ur����� �JM��jr����� �F݁'�c�O�&�D�9�TjOT{�O�&�D�9�4�<I�x*5�'�=���BW��f�q����� �F݁'�c�O�&�D�9�TjOT{�O�&�D�9�4�<I�x*5�'�=ȁ�Rx�ڃx*5�'�=ȁ�Qw�I���S� <Q�A<������S� <Q�A<��OR� �ʼ�(ގa��x�Xsx*3�'�=ȁ�P��'�s�O�&�D�9�TjOT{�O�&�D�9�4�<I�x*5�'�=ȁ�Rx�ڃx*5�'�=ȁ�Qw�I���S� <Q�A<������S� <Q�A< ���̞��S�+�D��8�TfOD{�O�&�D�9�4�<I�x*5�'�=ȁ�Rx�ڃx*5�'�=ȁ�Qw�I���S� <Q�A<������S� <Q�A<��OR� �JM��jr����� � -]�'�5���!x�sx*3�'�=ȁ�Rx�ڃx*5�'�=ȁ�Qw�I���S� <Q�A<������S� <Q�A<��OR� �JM��jr����� �JM��jr�)�k� ���S� <Q�A<������S�+�D��8�4�< �x*5�'�=ȁ�Rx�ڃx*5�'�=ȁ�Qw�I���S� <Q�A<������S� <Q�A<��OR� �JM��jr����� �JM��jr�i�x�:9�TjOT{O���͚��S� <�A<��OR� �JM��jr����� �JM��jr�i�x�:9�TjOT{�O�&�D�9�TjOT{�O�����1ȁ�Rx�ڃx*5�'�=ȁ�Rx�ڃxu���A<�O4k�Oe&�D�9�TjOT{�O�����1ȁ�Rx�ڃx*5�'�=ȁ�Rx�ڃx -�x�:9�TjOT{�O�&�D�9�TjOT{�O�����1ȁ�Rx�ڃx*5�'�=ȁ�Rx�ڃx4�'�=���"W��d�q����� �'����x�֔ǁ��s���t'�|�������L��x�oz�����O�/����?����.��/������~��'������t}����o��9�=S^�?�]^��8./?>���� ��JMy�jryi�]^�:��Tj�KT{��K���D���Tj�KT{��K����1��RS^�ڃ\^*5�%�=��RS^�ڃ\^u����A./������R���D�渼Tf�KD{��K����1��RS^�ڃ\^*5�%�=��RS^�ڃ\^u����A./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��F��%�c��Ke^�Koǰ�T�*/Q�9./������R����9��RS^�ڃ\^*5�%�=��RS^�ڃ\^u����A./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��MyIf�ay��U^"Ys\^*3�%�=��RS^�ڃ\^u����A./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��F��%�c��K���D���Tj�KT{�K���͚��Ґ)/��9./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��F��%�c��K���D���Tj�KT{��K���D���굼ury�Ԕ��� ��JMy�jby��U^�Ys\^s����A./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��F��%�c��K���D���Tj�KT{��K���D���4�./I�\^*5�%�=��BWy�f�qy�̔��� ��F��%�c��K���D���Tj�KT{��K���D���4�./I�\^*5�%�=��RS^�ڃ\^*5�%�=��QwyI���R�)/Q�A./������R�)/Q�A./���KR� �� -]�%�5��2S^"ڃ\^*5�%�=��QwyI���R�)/Q�A./������R�)/Q�A./�z-/A��\^*5�%�=��RS^�ڃ\^*5�%�=��QwyI���R�)/Q�A./������R�)/Q�A,/ ��̞��R���D�渼Tf�KD{��K�Ey��q)/o3�����9����|~�;�������߇�#����yy�>��\���j/���������?��;5��/�?ĻR�yϿ�?5��c�G��ͣwL:&R� wLJMDŽjbǤ��1�Ys�1)3�=��Qw�D��I��P�A�� ��I��P�A�;&R� wLJMDŽjrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{�;&��cB��cRj:&T{�;&��1H�2/��c�1)puL(�wL�LDŽhr�$�k���I��P�A�� ��I��P�A�;&R� wLJMDŽjrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{�;&��cB��cRj:&T{;&��c"��cR�ꘐ�9�� ��I��P�A�;&R� wLJMDŽjrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{�;&��cB��cRj:&T{�;&��1��R�1�ڃ�1)5�=��BWDŽf�a�d�tLD�wL�LDŽhrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{�;&��cB��cRj:&T{�;&��1��R�1�ڃ�1)5�=��R�1�ڃ�1 ��1�:�cRj:&T{�;&��cB��cR��Ь9�;&B� wLJMDŽjrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{�;&��cB��cRj:&T{�;&��1��R�1�ڃ�1)5�=��R�1�ڃ�1uwL��A�� �ĎI��cB��cRf:&D{�;&��1��R�1�ڃ�1)5�=��R�1�ڃ�1uwL��A�� ��I��P�A�� ��ɨ�c"urǤ�tL�� wLJMDŽjrǤ�tL�� wLF��c;&��� ͚�I���A�� ��ɨ�c"urǤ�tL�� wLJMDŽjrǤ�tL�� wLB�vL��A�� ��I��P�A�� ��ɨ�c"urǤ�tL�� wLJMDŽjrǤ�tL�� vLM�Df�aǤ��1!Ys�1)3�=��q��:&|�K�t wL��1:��;�y�����#�qUL����J������� -��K��;��N�������Gn��i;=����ˇg��k�.E�����u�̷�Ys�x��W�Ys�x����Ys��w��_~d��W�2�|Gd����2_{Gd���2�yGd��7� r��=�_wg�|��5��ug�|��5�_tg���D�ס��q(�=�i�!S�Ysqe�ގqj�4�$����A(�=�9�!S�Ys܂2)(�5�!�!ӁYs\� -rG�@�'��LJd�q�i��D�ǟ�L�Id�q�)�~�s�}2�'�5�ͧ!�|Ys|2�'�5ǵ� w� d�Q�i�K�I��v�F[�'q�cy0�'�5Dž�}�x�c��NC��$���4d�N"k��NC��$����:��9N: ���Ț�Ӑ�9��9�9 ���Ț�S�;���8�4d*N"k�NC&�$��8�4d�M"k�M!&���0�4�*7ɻ�nӀ�6I�9�6 �f�Ț�bS�;���8�4djM"k�[MC&�$��8�4d:M"k�+MA�HȞ�DӐ)4��9�3 �<�Ț�8Ӑi3��9.3��L {��LC��$���4d�L"k�L#����1�1����Ӏ)1I�9�0 ��Ț�Ӑi0��9.0�L {��KC��$�渽4d�K"k��KC��$�渺�.��9N. ��Ț��Ґ�-��9�- �֒Ț���>y -��1Ǚ�!SYYs�X2�%�5���W_I��ו�q%�=�i�!SVYs�U2Y%�5�Q�!�TYs\T -r�@�甆LMId�qKiȤ�D����LGId�qE)�Q�s�P2%�5���!�OYsO2�$�5�� w8 d�q6i�T�D�6�F\�$��cL0�$�5ǵ� w, d�q*iȔ�D�w��L&Id�q$i�4�D���܁$�=�y�!SGYs�F2i$�5�a�!�EYs\E -rG�@�'��LId�qi��D�ǐ�LId�q )�B�s�AqU�ގqi�$�$���L�Hd�q�(�?�s�>2�#�5�ݣ!�=Ys=2�#�5���}�<�c�sGC�v$��u4dRG"k�CGC�s$��r���9N �Ț�ѐ���9� ���ȚòQ� �1����F�nǸi4`�Fk����:O������&�vX3>ğ�O��Ow����v�����<>?<����i>��$g���d�˿���O����?��Y�{��Z^���r_�����������Y��� �=��Qw�G��O�)�P�An���O���P�A.<R� GyJM��jr��Ԅy�� �yJM��jr�gԝ�:9�Sj -=T{=��H͚�LO����A.���S=R� �zJM��jr���{�� '{JM��jr�gԝ�:9�Sj�=T{��=�&�C�9�Sj�=T{�>��1��RS�ڃ��)5!�=�)�R��ڃ\�u�|��A -��y)�P�æO�+�C��8�Sf�>D{��>�^�>P� �}JM݇jrߧ�~�� '~JM�jr�gԝ��:9�SjJ?T{�[?�&�C�9�Sjz?T{��?����1�џRS��ڃ��)5��=��R���ڃX�4��=��"W�d�q��D��� g�JM�jr hԝ�:9Tjj@T{�{@�&D�9 Tj�@T{��@��,��1�a�RS�ڃ�*5q �=�y�R��ڃ\u'���A���J��NP� Q�AL�ZA4kkAC&$��8Tf�AD{��A�&D�9Tj�AT{��A��t��1��RS�ڃ�*5!�=� �R��ڃ\ug���A �����P�� Q�A� �����P�פ�9�Q�RS�ڃ�*5a!�=�i�BW[�f�q]h̝:90Tj -CT{�C�&2D�93Tj:CT{�KC��Ԑ�1ȱ�RS�ڃ�*5�!�=�ɡR��ڃ\ug���A������P��Q�A������Ѩ;A$ur���T��� v� -]!"�5�)�2�""ڃ\#u爤�A��"��&Q��Q�A���.��2Ѩ;M$ur���ԉ�� ��JM��jr���4��� W�Fݙ"�c�CE��TD��UTjbET{�sE��WD��X4�NI�-*tU�h�w��L��hr��Դ��� F��"�c�F��`D��aTj"FT{�3F��cD��d�5eur̨�Ԍ�� ��JMЈjrҨ�4��� W�F�Y#�c��F��lD��mTj�FT{��F��oD��p4hG2{#GE��ɚ��Q� �AN���#>�%v�m�k�������tzx�q}�;�V��Ͽ����u��<~Ҿ]�ٺr�NOO/G��n��qw�v�Ǎ���F��1ȍ�RӨ�ڃܨ)5��=ȍ�RӨ�ڃܨu7j��AnԔ�F ��FM��QC��QSf5D{�5��F��1ȍ�RӨ�ڃܨ)5��=ȍ�RӨ�ڃܨu7j��AnԔ�F ��FM�i�P�AnԔ�F ��Fͨ�Q#ur���4j�� 7jJM��jr���4j�� 7jFݍ�c�5e^5oǰQS�j�P�9nԔ�F ��FM��F �9ȍ�RӨ�ڃܨ)5��=ȍ�RӨ�ڃܨu7j��AnԔ�F ��FM�i�P�AnԔ�F ��Fͨ�Q#ur���4j�� 7jJM��jr���4j�� 6jM�Ff�a���ը!Ysܨ)3��=ȍ�RӨ�ڃܨu7j��AnԔ�F ��FM�i�P�AnԔ�F ��Fͨ�Q#ur���4j�� 7jJM��jr���4j�� 7jFݍ�c�5��QC��QSj5T{5��F ͚�F͐iԈ�9nԔ�F ��FM�i�P�AnԔ�F ��Fͨ�Q#ur���4j�� 7jJM��jr���4j�� 7jFݍ�c�5��QC��QSj5T{�5��QC��Q�Qur���4j�� 7jJM��jb���ը�Ysܨs7j��AnԔ�F ��FM�i�P�AnԔ�F ��Fͨ�Q#ur���4j�� 7jJM��jr���4j�� 7jFݍ�c�5��QC��QSj5T{�5��QC��Q3�n�H�ܨ)5��=���BW��f�q���4j�� 7jFݍ�c�5��QC��QSj5T{�5��QC��Q3�n�H�ܨ)5��=ȍ�RӨ�ڃܨ)5��=ȍ�Qw�F��FM�i�P�AnԔ�F ��FM�i�P�AnԌ�5R� 6j -]��5Ǎ�2Ө!ڃܨ)5��=ȍ�Qw�F��FM�i�P�AnԔ�F ��FM�i�P�AnԄzm�@��ܨ)5��=ȍ�RӨ�ڃܨ)5��=ȍ�Qw�F��FM�i�P�AnԔ�F ��FM�i�P�Al��F�̞�FM��QC��QSf5D{����J5j��F�6;nԎ�c4j'n�No�wϩQ�g����j��ӏ��j�n��_�=n>t�����'rܨ�:�Qs�j�X�AlԜ�5V{5��F���FM�i�P�ب9u5j�� 5j�4jl�6j�\��=���RӨ�:�Qs�j�X�AlԜ�5V{5��F���FM�i�P�ب9u5j�� 6jN]��=���SW��jb���4j��AlԜ�5V{5��F���Fͩ�Qc��QSj5T� 4j��ި�x;F��/��5���3W��hb�f�ݨ�:�Qs�j�X�AlԜ�5V{5��F���FM�i�P�ب9u5j�� 6jN]��=���SW��jb���4j��AlԜ�5V{5��F���Fͩ�Qc��QS�j���9j�yiԘ�9lԜ�5F{5��F���FM�i�P�ب9u5j�� 6jN]��=���SW��jb���4j��AlԜ�5V{5��F���Fͩ�Qc��QSj5T� 6jN]��=���SW��jR���K��f�Q���ը!�sب9s5j�� 6jN]��=���SW��jb���4j��AlԜ�5V{5��F���Fͩ�Qc��QSj5T� 6jN]��=���SW��jb���ը�ڃبu7j��AlԜ�5V{5��F���F͡�F�͚�FM�i��ب9u5j�� 6jN]��=���SW��jb���4j��AlԜ�5V{5��F���Fͩ�Qc��QSj5T� 6jN]��=���SW��jb���ը�ڃب)5��c5��F���F͡�F�͚�F͙�Qc��QSj5T� 6jN]��=���SW��jb���ը�ڃب)5��c5��F���Fͩ�Qc��Qs�j�X�AlԔ�F �1���SW��jb���ը�ڃب9u5j�� 6jJM����F͡�F�͚�F͙�Qc��Qs�j�X�AlԔ�F �1���SW��jb���ը�ڃب9u5j�� 6jFݍ�s5��F���Fͩ�Qc��Qs�j�X�AlԔ�F �1���SW��jb���ը�ڃب9u5j�� 5j -]��=G��#/��5���3W��hb���i��9������F ������|�����k��������d��x�[��?�h�$j�lj�����3?m>t��_ -~zy8��f��A>Q/��������9�&�C�9�3���H���)59�=�9�R��ڃ��)59�=�9�Qw�G��O���P�A���r<4k�s<e&�C�9�3���H���)59�=�9�R��ڃ��)59�=�9�Qw�G��O���P�A����O���P�A��s<R� �xJM��jr����x�� �xJM��jr�gԝ�:)�S�%�C�vs<�Ś�O����A��z��@����)59�=�9�R��ڃ��)59�=�9�Qw�G��O���P�A����O���P�A��s<R� �xJM��jr����x�� �xJM��jb�g��xd��x�\9�5�9�2��!ڃ��)59�=�9�Qw�G��O���P�A����O���P�A��s<R� �xJM��jr����x�� �xJM��jr�gԝ�:9�Sjr<T{�s<�&�C�1�S���Ь9����Ȟ�O����A����O���P�A��s<R� �xJM��jr����x�� �xJM��jr�gԝ�:9�Sjr<T{�s<�&�C�9�Sjr<T{�s<�^s<P� �xJM��jr����x�� �x -]9�5�9�1w�G��O���P�A����O���P�A��s<R� �xJM��jr����x�� �xJM��jr�gԝ�:9�Sjr<T{�s<�&�C�9�Sjr<T{�s<����1�9�R��ڃ��)t�xh��x�L��hr�gԝ�:9�Sjr<T{�s<�&�C�9�Sjr<T{�s<����1�9�R��ڃ��)59�=�9�R��ڃ��u�x��A����O���P�A����Ϩ;�#ub��Е�Ys��)39�=�9�R��ڃ��u�x��A����O���P�A����O���9�9�R��ڃ��)59�=�9�R��ڃ��u�x��A����O���P�A����Ϡ����9���r<$k�s<e&�C�9�;��T���q��n۷���9������?1=�ʸ��:/��:�;ԯ���>{���|�㽮�_�tz|��/�c�����?ܹnO���˗��_������?�����}���DŽ���ǧ�4N�ޢ!Ys����ד4/����������l��g�=�����#xg˨볬����Sx��o�^>{G����c8Y���;j����;[J�|��ڃ��/����?�6��,�c�@=���ժ���Q{�@}yx�&��>{G�������>~�^>{G����o��W��ϲ:�����-�^>{G����cx��o�^>{G����cx���w��\}}�z�(�=w@�'����������U/�������������^>{G���շ���� g}��1x�>=|�f��g�=x��<<�����g�=x��_�o8�w���I�r�1<;5�Eu���ӋT/������z�1<~���w�<P�?��U/���������c��~��gY�����ۛT/��������pz���w�<P_^�/����1k�s���p��~��g���g�b��g�=x��_�z�����O��I����Q{��8����$��YV�����)5�P�A>?�ԜB����Rs~���CF��H�|~H�9?�j��!����=�燔��C�� �2�>?D���CJ��!T{�)t�B�����2s~���CF��H�|~H�9?�j��!����=�燔��C�� �2�>?D���CJ��!T{��)5�P�A>?�ԜB����Q��!R� �Rj��ڃ|~H�9?�j��!����=�燌���:���2/�P���C -\�P�9>?�̜B����P��@��|~H�9?�j��!����=�燔��C�� �2�>?D���CJ��!T{��)5�P�A>?�ԜB����Q��!R� �Rj��ڃ|~H�9?�j��!����=����Cd��R�:?�d���!e���=�燔��C�� �2�>?D���CJ��!T{��)5�P�A>?�ԜB����Q��!R� �Rj��ڃ|~H�9?�j��!����=�燌���:���Rs~���CJ��!T{�)t�B�����!s~�Ȟ��C���!D{��)5�P�A>?�ԜB����Q��!R� �Rj��ڃ|~H�9?�j��!����=�燌���:���Rs~���CJ��!T{��)5�P�A>?$���!P� �Rj��ڃ|~H�9?�j��!���Ch��2�>?D���CJ��!T{��)5�P�A>?�ԜB����Q��!R� �Rj��ڃ|~H�9?�j��!����=�燌���:���Rs~���CJ��!T{��)5�P�A>?d�}~��1�燔��C�� �R�:?�f���!e���=�燌���:���Rs~���CJ��!T{��)5�P�A>?d�}~��1�燔��C�� �Rj��ڃ|~H�9?�j��!���C��A>?�ԜB����Rs~���CJ��!T{��u�"u��!���Ch��Rf�!ڃ|~H�9?�j��!���C��A>?�ԜB����Rs~���CJ��!T{�� �z~�9�燔��C�� �Rj��ڃ|~H�9?�j��!���C��A>?�ԜB����Rs~���CJ��!T{�4���9<?��u~ɚ��C���!D{����Q��9.�n���:~�������J��G.��������?��o�<���q]�xx�t|x���������S�C����E������g�����{�ăG -]�Ь9>x��<B����Rs���GF��H�|�H�9x�j��#����=�����G�� <2�>xD��GJ��#T{�)5�P�A>x��<B����Q��#R� <Rj�ڃ|�H�9x�j��#����=����Gd�<Rf!ڃ|�H�9x�j��#����=�����:���Rs���GJ��#T{�)5�P�A>x$���#P� <Rj�ڃ|�H�9x�j��#����=�����:���Rs���GJ��#T{)t<B�����1��#B� <Rj�ڃ|�H�9x�j��#����=�����:���Rs���GJ��#T{�)5�P�A>xd�}���1�����G�� <Rj�ڃ|�H�9x�j��#��G��A>x��<B����B��#4k�)3��A>xd�}���1�����G�� <Rj�ڃ|�H�9x�j��#��G��A>x��<B����Rs���GJ��#T{�u<"u��#����=�����G�� <Rj�ڃ|�Ȩ���c�)�r���1<x��u�Ś�G���#D{� �z��9�����G�� <Rj�ڃ|�H�9x�j��#��G��A>x��<B����Rs���GJ��#T{�u<"u��#����=�����G�� <Rj�ڃx�Ƞ9xDf���#E��GH�<Rf!ڃ|�H�9x�j��#��G��A>x��<B����Rs���GJ��#T{�u<"u��#����=�����G�� <Rj�ڃ|�Ȩ���c�)5�P�A>x��<B����B��#4k2���9>x��<B����Rs���GJ��#T{�u<"u��#����=�����G�� <Rj�ڃ|�Ȩ���c�)5�P�A>x��<B����Rs���GB�<u��#����=�����G�� <R�:x�f���#c�G��A>x��<B����Rs���GJ��#T{�u<"u��#����=�����G�� <Rj�ڃ|�Ȩ���c�)5�P�A>x��<B����Rs���GF��H�|�H�9x�j��#���Gh�<Rf!ڃ|�Ȩ���c�)5�P�A>x��<B����Rs���GF��H�|�H�9x�j��#����=�����G�� <2�>xD��GJ��#T{�)5�P�A>x��<B����Q��#R� <R�:x�f���#e���=�����G�� <2�>xD��GJ��#T{�)5�P�A>x��<B����P��@��|�H�9x�j��#����=�����G�� <2�>xD��GJ��#T{�)5�P�A>x��<B����As��̞ÃG�\���9>x��<B�����)u���r���1��<:~�q��=����{G�O\����r��������o������^��������O����������U�ݏ��ߞ�~� ��c�����⇧��Ȟ��А���9N ��Ț��А���9���C {��CC&8$��874djC"k�[CC&5$��84����9� �ȐȚ��Ј�0$�v��B&/$��8.�n��9. ���Ț�А� -��9n - ���Ț�P��'��&4dbB"k�SBC�$$��#4d2B"k�#BA�Ȟ�А ��9� �z�Ț�vАI��9��A {��A^�A�n�04�*���^Ѐ�I�9���V�s\ -2� �5Ǚ�!S Ys�2� �5ǁ� wd�qh�āD����LHd�qh�d�D�G���M �=�E�!Ys�25 �5�-�!�Ys -1 �5���VH��'�LHb�q�g��D������=��!�Ys��2��5�͟!��Ys� r�~@��~�L�Gd�q�gȔ~D�w~�L�Gd�q�'����s\�2��5�y�!S�Ys��q�}ގa�'�t}��W}L�Gb�q�g�}D��|�L�Gd�q�'����s\�2!�5��!S�Ys��2 �5�� w�d�q�g��{D��{�L�Gd�q�g�d{D�G{��k�wL�9.��`�Ț�\ϐ����9l���R=o�8����@�9���H�Ț�Dϐ)�9���<�Ț�8O������3d�<"k��<C��#���3d�<"k��<A�Ȟ�ϐ��9N���Ț�ϐ����9���< {�<C&�#��0�3�����I�H�9���; {��;C&�#��8�3d�;"k�{;C&�#��8��n��9.��ЎȚ��ΐ�숬9n��ĎȚ��N����縮3d�:"k��:C��#�渫3d�:"k��:A�ȞâΈ+�#�v�s:��#�渥3dR:"k�C:A�Ȟ�ΐ�般9N����Ț�~ΐ�爬9����v�s\�2��5�ٜ!S�Ys��2��5��� w/d�q-g��rD��r�L)Gd�q'g�drD�FrBL#`�a!g�ȑw;�y�SǑXs��A�%�8z�Kw}���ϧׇ���|/���gN�������M��~���P>�۸Ӫ���������Z�܇�S�z���n���l/��n�#<��bǛ=�bǏ�q�Ŏh���1�;:����/vD�����/vD��������Ҩ;�$urZ�Դ��� וJM^�jr`����� 7�Fݑ%�c�3K���D���TjRKT{�cK���D���4�.I��\*5�%�=�եBWv�f�qx�̔��� ��F��%�c��K���D���TjLT{�#L���D���4�1I��b*5-&�=�5�R�c�ڃd*5E&�=�M�Qw�I��,S��2Q�A.3��4��8S��3Q�A�3��MR� %�ʼ4�(ގa����i�Xsj*3�&�=ȭ�P��&�s�sM���D���Tj�MT{��M���D���4�7I��n*5�&�=���R�o�ڃp*5'�=� �Qw�I��S��8Q�A.9�����S��9Q�A�9 ���̞äS���D���Tf�ND{��N���D���4�;I��w*5}'�=ȅ�R�x�ڃy*5�'�=ȝ�Qw�I���S�i=Q�A�=������S�)>Q�An>���OR� g�JM��jr��Ԥ��� Ɵ -]�'�5���!��s��*3 (�=��R���ڃ�*5%(�=�-�QwJ��T��AQ�A.B��$��(T��BQ�A�B���PR� ��JM�jr��䡨� �JM!�jr#*�k$ -��LT��DQ�A.E��T��XT��E��5�F ���*5�(�=�ըR���ڃ�*5�(�=���Qw<J��|T��GQ�A.H�����T��HQ�A�H��CRR� ��JMK�jrM��䤨� �JMQ�jrSj���:9+Uj�RT{�R���͚�T��K�A�K��SR� '�JMc�jre��d��� ��JMi�jrkj���:97UjzST{��S�&9E�9:Uj�ST{��S����1��RӞ�ڃ\�*5�)�=��RS��ڃܠuG���A�P�:T4k�KTe&EE�9FUjjTT{�{T�� ��1�I�RӤ�ڃ\�*5Y*�=�a�RS��ڃܦ -���:9OUj�TT{�U�&QE�9RUj*UT{�;U��P��1ȩ�RӪ�ڃ\�*5�*�=���RS��ڃج4�*�=�٪"W��d�q��̤��� ǫ�a�z�㒯�<����1��;���j��8`]���� -X���~��ϻ`�o��������YQ�N��k=��ݗ��4��|�����������������;���c�;���A���Qj:T{�;���A���1��`H���(5�=��R���ڃ��(5�=��QwC��F��`P�A�`����F��`P�A�`��;R� u0ʼt0(ގa�����Xs��(3�=��P��s�;���A���Qj:T{�;���A���1��`H���(5�=��R���ڃ��(5�=��QwC��F��`P�A�`����F��`P�A�`��̞�F���A�渃Qf:D{�;���A���1��`H���(5�=��R���ڃ��(5�=��QwC��F��`P�A�`����F��`P�A�`��;R� w0JM�jr��t0�� v0 -]�5��!���s��(3�=��R���ڃ��(5�=��QwC��F��`P�A�`����F��`P�A�`��;R� w0JM�jr��t0�� w0JM�jr#�k��F��`P�A�`����F���A�渃1��`���(5�=��R���ڃ��(5�=��QwC��F��`P�A�`����F��`P�A�`��;R� w0JM�jr��t0�� w0JM�jrc����:��Qj:T{;��͚�F��`�A�`��;R� w0JM�jr��t0�� w0JM�jrc����:��Qj:T{�;���A���Qj:T{�;����1��R���ڃ��(5�=��R���ڃ��uw0��A�`�:4k�;e��A���Qj:T{�;����1��R���ڃ��(5�=��R���ڃ������:��Qj:T{�;���A���Qj:T{�;����1��R���ڃ��(5�=��R���ڃ��4�=��"W�d�q��t0�� w0�ن�`�9.��c<�;��������W�oo/����������7���x���߿'0a��������~���[�����r�>��.�������/��?��R��?��Z?>�Ԋj�K�J�K��� ��j��R+�c�_jUj^jE���V��VT{�_jUj^jE���V��ZI��R�R�R+�=�/�*5/��ڃ�R�R�R+�=�/�4/���s�R�"�K�H��Ԫ̼Ԋh�K�J�K��� ��j��R+�c�_jUj^jE���V��VT{�_jUj^jE���V��ZI��R�R�R+�=�/�*5/��ڃ�R�R�R+�=�/�u��J��Z���ZQ�A~�U�y��ėZ�^jE���VC�V"{�_jUf^jE���V��VT{�_jUj^jE���V��ZI��R�R�R+�=�/�*5/��ڃ�R�R�R+�=�/�u��J��Z���ZQ�A~�U�y���Z���ZQ�A~�U�חZA���R�R�R+�=�/�*5/��ڃ�R�B�K�h���j��R+�c�_jUj^jE���V��VT{�_jUj^jE���V��ZI��R�R�R+�=�/�*5/��ڃ�R�R�R+�=�/�u��J��Z���ZQ�A~�U�y���Z���ZQ�A~�ը��VR� �ԪԼԊj�K� -]/��Ys�R�2�R+�=�/�u��J��Z���ZQ�A~�U�y���Z���ZQ�A~�ը��VR� �ԪԼԊj�K�J�K��� �ԪԼԊj�K�F�/��:��V��VT{�_jUj^jE���V��VT{�_j5�~���1�/�*t�Ԋf��K���K��� �ԪԼԊj�K�F�/��:��V��VT{�_jUj^jE���V��VT{�_j���VP� �ԪԼԊj�K�J�K��� �ԪԼԊj�K�F�/��:��V��VT{�_jUj^jE���V��VT{_j5h^j%���VE��Z��9~�U�y���Z�߹T/��s\^j�yx���9��6��������ׇ�o���vz�����<���/ٞ����<�<��a}��q~����:����)@endstream +w4k�we�pG��p7�.�I�\�+5�;�=ȅ�RS��ڃ\�+5�;�=ȅ�Qw�N���]�)�Q�A.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jr�n�]��:�pW�pG�vw��Ś��]�)��A.܅z-�A��\�+5�;�=ȅ�RS��ڃ\�+5�;�=ȅ�Qw�N���]�)�Q�A.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jb�n��d��\�;�5Dž�2S�#ڃ\�+5�;�=ȅ�Qw�N���]�)�Q�A.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jr�n�]��:�pWj +wT{�w��pG��pW�*�Ѭ9,� �Ȟ��]�)��A.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jr�n�]��:�pWj +wT{�w��pG��pWj +wT{�w�^wP� �JM�jr���� � +]�;�5Dž�1w�N���]�)�Q�A.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jr�n�]��:�pWj +wT{�w��pG��pWj +wT{�w���1ȅ�RS��ڃX�+t�h���L�hr�n�]��:�pWj +wT{�w��pG��pWj +wT{�w���1ȅ�RS��ڃ\�+5�;�=ȅ�RS��ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ub��U��Ys\�+3�;�=ȅ�RS��ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����]����9ȅ�RS��ڃ\�+5�;�=ȅ�RS��ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����ݠ)���9,�� +w$k�we�pG��p�X[��9.��mN~\��??�=�?띯/~~zx~�}�����tz���^�k�/0��?�N�?������������7�������G�X��>`�����'�8�f�1�v�ʠY�A̠���1��SW�jb�ԕA�ڃ�A;��A�Ys�A+34�c3h�����ک+�f�1�v�ʠY�A̠���1��SW�jb�ԕA�ڃ�A;ueЬ� f�JM���ک+�f�1�v�ʠY�A̠��2hV{3h�&�Fub�ԕA�ڃ�A;��A�Ys�A;seЌ� f�JM���ک+�f�1�v�ʠY�A̠��2hV{3h�&�Fub�ԕA�ڃ�A;ueЬ� f�N]4�=��R�A�:1�v�ʠY�A̠��2hV{3h�����Z�ɠQ��A;�{���e��d�,�f��\4�=��QwM��ک+�f�1�v�ʠY�A̠��2hV{3h�&�Fub�ԕA�ڃ�A;ueЬ� f�N]4�=��R�A�:1�v�ʠY�A̠��2hV{3h�����Z�+�F��(�v�%�f��0�v�ʠ�A̠��2hV{3h�&�Fub�ԕA�ڃ�A;ueЬ� f�N]4�=��R�A�:1�v�ʠY�A̠��2hV{3h�����Z�ɠQ��A;ueЬ� f�N]4�=H�C/4�5G�"W�d�a�̕A3ڃ�A;ueЬ� f�N]4�=��R�A�:1�v�ʠY�A̠��2hV{3h�����Z�ɠQ��A;ueЬ� f�N]4�=��SW�jbmԝA�:1�v�ʠY�A̠��2hV{�2h�^2h6k3he&�Ftb�ԕA�ڃ�A;ueЬ� f�N]4�=��R�A�:1�v�ʠY�A̠��2hV{3h�����Z�ɠQ��A;ueЬ� f�N]4�=��SW�jb��dШ�A̠��2hV{�2h�^2h6k3hg����Z�ɠQ��A;ueЬ� f�N]4�=��SW�jb��dШ�A̠��2hV{3h�����ک+�f�1�Vj2hT� f�N]4�=��SW�jb�ԕA�ڃ�A+54�c�2h�^2h6k3hg����ک+�f�1�Vj2hT� f�N]4�=��SW�jb�ԕA�ڃ�AugФ�A̠��2hV{3h�����ک+�f�1�Vj2hT� f�N]4�=��SW�jb�ԕA�ڃ�A+te�h�eЎ�d�L�f��\4�=�4D�&������j��e��9��/�~��r�����;�$�~Z������z�����/O?����������a�����?ܐ�|���Q�O��;���ǁ����'�=ȁ�Rx�ڃx*5�'�=ȁ�Qw�I���S� <Q�A<������S� <Q�A<��OR� �JM��jr����� �JM��jr�i�x�:9�TjOT{O���͚��S� <�A<��OR� �JM��jr����� �JM��jr�i�x�:9�TjOT{�O�&�D�9�TjOT{�O�����1ȁ�Rx�ڃx*5�'�=ȁ�Rx�ڃxu���A +<�y <Q���S�+�D��8�TfOD{�O�^OP� �JM��jr����� �JM��jr�i�x�:9�TjOT{�O�&�D�9�TjOT{�O�����1ȁ�Rx�ڃx*5�'�=ȁ�Rx�ڃx4�'�=���"W��d�q����� �JM��jr�i�x�:9�TjOT{�O�&�D�9�TjOT{�O�����1ȁ�Rx�ڃx*5�'�=ȁ�Rx�ڃxu���A<������S� <Q�A<�O4kOC&�$��8�TfOD{�O�&�D�9�TjOT{�O�����1ȁ�Rx�ڃx*5�'�=ȁ�Rx�ڃxu���A<������S� <Q�A<������S����9ȁ�Rx�ڃx*5�'�=���BW��f�q�i�x:9�TjOT{�O�&�D�9�TjOT{�O�����1ȁ�Rx�ڃx*5�'�=ȁ�Rx�ڃxu���A<������S� <Q�A<������Ө;�$ur����� � +]�'�5ǁ�2x"ڃxu���A<������S� <Q�A<������Ө;�$ur����� �JM��jr����� �F݁'�c�O�&�D�9�TjOT{�O�&�D�9�4�<I�x*t�h���L��hr����� �F݁'�c�O�&�D�9�TjOT{�O�&�D�9��5�ur����� �JM��jr����� �F݁'�c�O�&�D�9�TjOT{�O�&�D�1�4hO2{OE��ɚ��S� <�A<)N�'~�K�y[S�ǟc��;����u<�3 <�W���������?������������������/�ᯟ��o��[��|�};���3�%�����?����������R�)/Q�A./���KR� ��JMy�jry�Ԕ��� ��JMy�jryi�]^�:��Tj�KT{��K���D���Tj�KT{��K����1��RS^�ڃX^*t��h����Ly�hryi�]^�:��Tj�KT{��K���D���Tj�KT{��K����1��RS^�ڃ\^*5�%�=��RS^�ڃ\^u����A./������R�)/Q�A./������Ҩ��$uRy��Ky����� +\�%�5��2S^"ڃ\^ +�Z^�:��Tj�KT{��K���D���Tj�KT{��K����1��RS^�ڃ\^*5�%�=��RS^�ڃ\^u����A./������R�)/Q�A./������Ҡ)/��9,/��K$k��Ke��D���Tj�KT{��K����1��RS^�ڃ\^*5�%�=��RS^�ڃ\^u����A./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jby��U^�YsX^2�%�=��2S^"ڃ\^*5�%�=��RS^�ڃ\^u����A./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��B�����A./������R�)/Q�A,/��K4k��Kc���1��RS^�ڃ\^*5�%�=��RS^�ڃ\^u����A./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��F��%�c��K���D���T�*/Ѭ9./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��F��%�c��K���D���Tj�KT{��K���D���4�./I�\^*5�%�=��RS^�ڃ\^*5�%�=��QwyI���R���D�渼Tf�KD{��K���D���4�./I�\^*5�%�=��RS^�ڃ\^*5�%�=��P��%�s��K���D���Tj�KT{��K���D���4�./I�\^*5�%�=��RS^�ڃ\^*5�%�=��AS^��sX^*r��H����Ly�hryI��(/�s\�����<�~z{>�;�������߇�#����yy��3��������������?�N��������<�����1�G���G=�>~�H��1)5�=��BWDŽf�qǤ�tL�� wLF��c�;&��cB��cRj:&T{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A�� ��I��P�A�;&R� uLʼtL(ގaǤ��1�Xs�1)3�=��P��s�;&��cB��cRj:&T{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A�� ��I��P�A����̞ÎI��cB��cRf:&D{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A�� ��I��P�A�;&R� wLJMDŽjrǤ�tL�� vL +]�5��!�1�s�1)3�=��R�1�ڃ�1)5�=��Qw�D��I��P�A�� ��I��P�A�;&R� wLJMDŽjrǤ�tL�� wLJMDŽjr�$�k���I��P�A�� �ĎI��cB��c2����1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A�� ��I��P�A�;&R� wLJMDŽjrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{;&��� ͚�I���A�;&R� wLJMDŽjrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{�;&��cB��cRj:&T{�;&��1��R�1�ڃ�1)5�=��R�1�ڃ�1uwL��A��:&4k�;&e�cB��cRj:&T{�;&��1��R�1�ڃ�1)5�=��R�1�ڃ�1 ��1�:�cRj:&T{�;&��cB��cRj:&T{�;&��1��R�1�ڃ�1)5�=��R�1�ڃ�14�=��"WDŽd�qǤ�tL�� wL�-���s\:��h�c:��cz��1��N�1]�VL��b����WʗN/������I�t�x�������/�������{�N�����3|�5m�GQ�r}k�!�-xD��!�xD��!��wD��� ����s��w��7�Ys��w����Ys��w��w�Ys��w��_xd����2�vGd��w�2_uGd���2}(�5�u� w +d�qjȔ�D�v�F\Y(��c�0M(�5�E� w +d�qj�ԠD����L +Jd�qj�t�D�W���(�=� �!S�Ys�2�'�5��!�~Ys\~ +r��@�g��L�Id�q�i�$�D���L�Id�q�)�{�s�z�Rzw3����V�I��G�L�Ib�q�y������Ӑ�;��9n; ���Ț�Ӑ�:��9�:��N {��NC��$���4drN"k�cNC��$����9��9�8 ���Ț�ӐI8��98 �~�Ț�zS��7�1L7���M�nǸ�4`�Mk��MC��$����6��9�5 �Z�Ț�VӐI5��95 �N�Ț�JS�;���8�4d +M"k��LC&�$��8�4d�L"k��LA�0Ȟ�,Ӑ�2��9n2 �$�Ț� ӈ��$�vkL�%���8�4`JLk�;LC&�$��8�4dL"k�LA��Ȟ��Ґ�/��9n/ ���Ț��Ґ�.��9�.��K {��KC��$�渷4drK"k�cKC��$�渴�O^C�cr�qfi�T�D�7��LbId�a`i��Wx;�u��w\ b�qZiȔ�D�w��LVId�qTi�4�D����A%�=�9�!SSYs�R2)%�5�!�!�QYs\Q +rG�@�'��LAId�q?i��D�Ǔ�L;Id�q9)�N�s�M2�$�5�ͤW2I���L/Ib�q-)�K�s�J2�$�5ǝ�!�IYsI2�$�5Dž� w d�qi�ԑD����LId�qi�t�D�W���Q$�=�I�!SDYs�C29$�5�1�!�BYs\B +r��@�f�F\$��c�@0 $�5��!�?Ys\? +rǏ@����L�Hd�q�h�d�D�G��L�Hd�q�x�������ѐ���9n �ԑȚ��ѐ���9��#G {�GC�p$��o4d�F"k��FC�m$��lb�F�k�F㭪���1n ���Ě���S=#}�K�x����ϧׇ�;_�vz;�K���<>?<����i�3���+����?���o����O?c��^ǽ���W��ܗ����qx�Yw�w�Y���<T{�+<����1�!�RS�ڃ��)51�=�9�R��ڃ\�u'y��A��*��.O� �P�AN�6��:Ϩ;�#ur���z�� 6z +]��5Ǚ�2��!ڃ\�u�z��A����Z��^O� �P�AN���f��jϨ;�#ur��Ԕ{�� �{JM��jr����{�� |F� �c�#>���C���SjB>T{�S>���C���3���H��)�R��x;�M�Wԇb�q֧�t}�� �}B��}��A�������O� �P�AN�������Ϩ;�#ur�Ԕ~�� �~JM�jr���~�� F���c��?���C���Sj�?T{��?���C���3h�?2{@E�ɚ�P����A������Ш;$ur��Ԁ�� ��JM�jr��4��� W�F�Y �c��@��D�� Tj�@T{��@��D��4�NI� *5� �=ȝ�R +�ڃ� +*t��h�ւ�L.Hd�q0����� 7�JM4�jr6��t��� ��F�� �c��A��D��TjBT{�B��!D��"4��I�*5%!�=�-�R�ڃ�*5=!�=�E�P�I!�s��B��*D��+Tj�BT{�B���͚�И;/$tr`����� 7�JMd�jrf��t��� ��Fݩ!�c�cC��6D��7Tj�CT{��C��9D��:4��I�*5�!�=���R�ڃ�*5�!�=��Qw�H��Q��Q�A��BD4k�SDe�ED��F4��I�$*5E"�=�M�R%�ڃ�%*5]"�=�e�Qw�H��8Q��Q�A���@��DQ�iQ�A���3ER� ��JM��jr���Ċ�� �JM��jr�hԝ,�:1ZT�Ѭ9���p��tQ�iQ�A����ER� �JM��jrè�D��� g�JMLjjr�(�k���Q��Q�A������Q�iQ�A����FR� ��JMوjrۨ�č�� �JM߈jb�h�$�d�F��\�#�5ǝ�2:"ڃ�:R�'ZG����-<��?�?�ݍ����o���k�xZ��?�������k��1H�vyg����tzxzz9*w�w7j7��Q��A�Q#ur���4j�� 7jJM��jr���4j�� 7jFݍ�c�5��QC��QS�j�Ь9nԔ�F ��Fͨ�Q#ur���4j�� 7jJM��jr���4j�� 7jFݍ�c�5��QC��QSj5T{�5��QC��Q3�n�H�ܨ)5��=ȍ�RӨ�ڃܨ)5��=ȍ�Qw�F��FM��F ��1l��5k�5e�QC��Q�Qur���4j�� 7jJM��jr���4j�� 7jFݍ�c�5��QC��QSj5T{�5��QC��Q3�n�H�ܨ)5��=ȍ�RӨ�ڃܨ)5��=���AӨ��sب)r5jH�7j�L��hr���4j�� 7jFݍ�c�5��QC��QSj5T{�5��QC��Q3�n�H�ܨ)5��=ȍ�RӨ�ڃܨ)5��=ȍ�Qw�F��FM�i�P�AnԔ�F ��FM��QC��Q3d5"{�5e�QC��QSj5T{�5��QC��Q3�n�H�ܨ)5��=ȍ�RӨ�ڃܨ)5��=ȍ�Qw�F��FM�i�P�AnԔ�F ��FM�i�P�AnԄzm�@��ܨ)5��=ȍ�RӨ�ڃب)t5jh�7j�܍�c�5��QC��QSj5T{�5��QC��Q3�n�H�ܨ)5��=ȍ�RӨ�ڃܨ)5��=ȍ�Qw�F��FM�i�P�AnԔ�F ��FM�i�P�AnԌ�5R� 7jJM��jb���ը�Ysܨ)3��=ȍ�Qw�F��FM�i�P�AnԔ�F ��FM�i�P�AnԌ�5R� 7jJM��jr���4j�� 7jJM��jr�f�ݨ�:�QSj5T{�5��QC��QSj5T{�5��F��1���BW��f�q���4j�� 7jJM��jr�f�ݨ�:�QSj5T{�5��QC��QSj5T{�5�^5P� 7jJM��jr���4j�� 7jJM��jr�f�ݨ�:�QSj5T{�5��QC��QSj5T{5��Q#��QS�jԐ�9nԔ�F ��F���R�~�K�v�7jǟc4j'n�No�wϩQ�3�F�q5j��ǿ��5j7���F�>n������'�QCub���ը�ڃب9u5j�� 6jN]��=���RӨ�:�Qs�j�X�Aj�zi�ج9lԜ�5F{5��QCub���ը�ڃب9u5j�� 6jN]��=���RӨ�:�Qs�j�X�AlԜ�5V{5��F���FM�i�P�ب9u5j�� 6jN]��=���SW��jb���4j��AhԜ��Qc�v�5^5k5g�F���Fͨ�Q#ub���ը�ڃب9u5j�� 6jN]��=���RӨ�:�Qs�j�X�AlԜ�5V{5��F���FM�i�P�ب9u5j�� 6jN]��=���SW��jR���ը��sԨ9�Ҩ1Ysب9s5j�� 6jN]��=���RӨ�:�Qs�j�X�AlԜ�5V{5��F���FM�i�P�ب9u5j�� 6jN]��=���SW��jb���4j��AlԜ�5V{5��F���F͡�F�͚�FM��QC��Qs�j��AlԜ�5V{5��F���FM�i�P�ب9u5j�� 6jN]��=���SW��jb���4j��AlԜ�5V{5��F���Fͩ�Qc��Q3�n�H��ب9u5j�� 6jN]��=H��C/��5���2Ө!:�Qs�j�X�AlԜ�5V{5��F���FM�i�P�ب9u5j�� 6jN]��=���SW��jb���4j��AlԜ�5V{5��F���Fͩ�Qc��QSj5T� 6jN]��=H��C/��5���3W��hb���4j��AlԜ�5V{5��F���Fͩ�Qc��QSj5T� 6jN]��=���SW��jb���ը�ڃب)5��c5��F���Fͩ�Qc��Qs�j�X�AlԔ�F �1H��C/��5���3W��hb���ը�ڃب)5��c5��F���Fͩ�Qc��Qs�j�X�AlԌ�5R� 6jN]��=���SW��jb���ը�ڃب)5��c5��F���Fͩ�Qc��Qs�j�X�Aj��54{�5G^5&k5g�F���F +Ө����La�G�|��{�N���gn��3�F�i5j��/?�D��������>I�������g��y���~|)����������zy��ڃ�甚��Ϩ;�#ur����x�� �xJM��jr����x�� �xF�9�c�s<�&�C�1�S���Ь9����Ϩ;�#ur����x�� �xJM��jr����x�� �xF�9�c�s<�&�C�9�Sjr<T{�s<�&�C�9�3���H���)59�=�9�R��ڃ��)59�=�9�Qw�G��O����1���r<k�s<e&�C�9��5�ur����x�� �xJM��jr����x�� �xF�9�c�s<�&�C�9�Sjr<T{�s<�&�C�9�3���H���)59�=�9�R��ڃ��)59�=�9�A���s��)r�xH��x�L��hr����x�� �xF�9�c�s<�&�C�9�Sjr<T{�s<�&�C�9�3���H���)59�=�9�R��ڃ��)59�=�9�Qw�G��O���P�A����O�+�C��0�3dr<"{�s<e&�C�9�Sjr<T{�s<�&�C�9�3���H���)59�=�9�R��ڃ��)59�=�9�Qw�G��O���P�A����O���P�A��z��@����)59�=�9�R��ڃ��)t�xh��x��9�c�s<�&�C�9�Sjr<T{�s<�&�C�9�3���H���)59�=�9�R��ڃ��)59�=�9�Qw�G��O���P�A����O���P�A��s<R� �xJM��jb��Е�Ys��)39�=�9�Qw�G��O���P�A����O���P�A��s<R� �xJM��jr����x�� �xJM��jr�gԝ�:9�Sjr<T{�s<�&�C�9�Sjr<T{�s<����1�9�BW��f�q����x�� �xJM��jr�gԝ�:9�Sjr<T{�s<�&�C�9�Sjr<T{�s<�^s<P� �xJM��jr����x�� �xJM��jr�gԝ�:9�Sjr<T{�s<�&�C�9�Sjr<T{s<�&�#��0�S���9�����'S9~�K�w۾�xǟ���<}��㯌;�����]��C�z�M����#��u�x���������xzz{x~�Ý����|y:��:=����G[��~�?������)>���hH�������$�˳w�<P_ޞ�zy��ڃ��_�?��w����eu����~+�������d�˳w�<P�?��w��zy��ڃ��/����?�6�z��1x�����j�˳w�<P_��ɿF�g�=x��>�~���O�˳w��\�v�1|��z��1x����l)����������zy��ڃ����h�˳w��\}}�zy�͞; �?��� g={����3�b�˳w�<P_���_�˳w��\};=<���pֳ�������7�^����������"�[��Q{�@=����pֳw���I�r�1<;5Ϣ:����E��g�=x���ߤzy��ڃ���p����;j~���?�/<��<P�^�ޤzy��ڃ����ժ�g�=x��>��_���1k�s���p��~�ɳ�����3x����;j����G�^������z�)<?I������OR]ϲ:�u-H�9?�j��!����=�燔��C�� �2�>?D���CJ��!T{��)5�P�A>?�ԜB����Q��!R� �Rj��ڃx~H����5�燔��C�� �2�>?D���CJ��!T{��)5�P�A>?�ԜB����Q��!R� �Rj��ڃ|~H�9?�j��!����=�燌���:���Rs~���CJ��!T{��)5�P�A>?d�}~��1H燔y9?����R�:?�b���!e���=�燄z=?���CJ��!T{��)5�P�A>?�ԜB����Q��!R� �Rj��ڃ|~H�9?�j��!����=�燌���:���Rs~���CJ��!T{��)5�P�A<?dМ"�����"��!$k��)3��A>?�ԜB����Q��!R� �Rj��ڃ|~H�9?�j��!����=�燌���:���Rs~���CJ��!T{��)5�P�A>?d�}~��1�燔��C�� �Rj��ڃx~H����5����CD��Rf�!ڃ|~H�9?�j��!����=�燌���:���Rs~���CJ��!T{��)5�P�A>?d�}~��1�燔��C�� �Rj��ڃ|~H�9?�j��!�^��:���Rs~���CJ��!T{�)t�B�����1��!B� �Rj��ڃ|~H�9?�j��!����=�燌���:���Rs~���CJ��!T{��)5�P�A>?d�}~��1�燔��C�� �Rj��ڃ|~H�9?�j��!���C��A>?�ԜB����B��!4k��)3��A>?d�}~��1�燔��C�� �Rj��ڃ|~H�9?�j��!���C��A>?�ԜB����Rs~���CJ��!T{��u�"u��!����=�燔��C�� �Rj��ڃ|~Ȩ���c�)t�B�����2s~���CJ��!T{��u�"u��!����=�燔��C�� �Rj��ڃ|~H���C��A>?�ԜB����Rs~���CJ��!T{��u�"u��!����=�燔��C�� �Rj��ڃx~Ƞ9?Df���!E��CH��Rf�!ڃ|~����:?���r~��������������rV���z�r~�m��_������������;�Տ��NLJ��^��=|�<t��>��szx~y��|~���:���B��#4k�)3��A>x��<B����Q��#R� <Rj�ڃ|�H�9x�j��#����=�����:���Rs���GJ��#T{�)5�P�A>xd�}���1�����G�� <Rj�ڃ|�H�9x�j��#����=�����G�� <Rj�ڃ|�H�9x�j��#��G��A>x��<B����Rs���GJ��#T{� �z��9�����G�� <Rj�ڃ|�H�9x�j��#��G��A>x��<B����Rs��ăG +]�Ь9>xd�}���1�����G�� <Rj�ڃ|�H�9x�j��#��G��A>x��<B����Rs���GJ��#T{�u<"u��#����=�����G�� <Rj�ڃ|�Ȩ���c�)5�P�A<x��u�͚�G���#D{�u<"u��#����=�����G�� <Rj�ڃ|�Ȩ���c�)5�P�A>x��<B����Rs���GF��H�|�H�9x�j��#����=�����G�� <2�>xD���Gʼ<B�v)p<B�����2s���GB�<u��#����=�����G�� <Rj�ڃ|�Ȩ���c�)5�P�A>x��<B����Rs���GF��H�|�H�9x�j��#����=�����G�� <2h��sx�H����5�����G�� <Rj�ڃ|�Ȩ���c�)5�P�A>x��<B����Rs���GF��H�|�H�9x�j��#����=�����G�� <2�>xD��GJ��#T{�)5�P�A<x��u�͚ÃG���#"{�)3��A>x��<B����Rs���GF��H�|�H�9x�j��#����=�����G�� <2�>xD��GJ��#T{�)5�P�A>x��<B����P��@��|�H�9x�j��#����=����Ys|�Ș���c�)5�P�A>x��<B����Rs���GF��H�|�H�9x�j��#����=�����G�� <2�>xD��GJ��#T{�)5�P�A>x��<B����Q��#R� <Rj�ڃx�H����5�����G�� <2�>xD��GJ��#T{�)5�P�A>x��<B����Q��#R� <Rj�ڃ|�H�9x�j��#����=�����:���Rs���GJ��#T{�)5�P�A>xd�}���1����Ys|�H�9x�h��#����=�����:���Rs���GJ��#T{�)5�P�A>x$���#P� <Rj�ڃ|�H�9x�j��#����=�����:���Rs���GJ��#T{�)5�P�A<xd�<"�����"��#$k�)3��A>xt|�G<��q9xt{_��������������7=�wty�r�����{G����?~���~�����������_��|ϟ��_U��������� �] ^?�q���S@d�q}h�ćD����LyHd�qwh�d�D�G����!�=�š!Ys�2�!�5ǭ�!�Ys +rw�@�W��LdHd�abh�Ux;�}���Xs +r��@����LXHd�qVh�T�D�7��LRHd�qP(���s\21!�5�)�!SYs�2!�5�� wCd�qAh��D�烆L=Hd�q;hȤ�D������ �=Gՠ/� q7S�m��ݎq/h��$�ǂ��k+xL�9. �P�Ț�LА���9n �D�Ț�@P����4d�@"k��@C�$��4d�@"k��@A�&Ȟ�"А ��9� ��Ț�АI��9���� +�x+$�v�@��$���3d�?"k��?A��Ȟ��ϐ ���9����Ț��ϐI���9��{? {�k?C&�#��8�3dJ?"k�;?C&�#��8��n���9.����Ț�ϐ����9l����>o�0�^�>�j��>&�#��8�3d�>"k�{>C&�#��8��n���9.����Ț�ϐ����9n����Ț�O������3d�="k��=C��#���3d�="k������;&�{�L�Gd�q�g��zD��zF\���c� pwz �Wz�L�Gd�q�g�zD��y�L�Gd�q�'����s\�2a�5�Y�!S�Ys��2I�5�A� w�d�q�g��xD��x�L�Gd�q�g�dxD�Gx�� �=��!�Ys��q�wގq{g��w$��w����=�՝!�Ys��2��5ǽ�!��Ys� r�v@��v�LhGd�qfg�TvD�7v�LbGd�q`'����s\�2q�5�i�!S�Ys��2Y�5�Q� wSd�aQg��x;�9�SӑXs��2)�5�!� wGd�qEg�DtD�'t�LAGd�q?g��sD��s��k;wL�9.��p�Ț�lΐ�戬9n��d�Ț�`N����縖3db9"k�S9C��#�渓3d29"k#9!���ư�3� +�Ȼ�<��H�9n��i}�KwS��q���ϧׇ���|/���3����_B����M��~��z(��6�����~���V+������_����/���0��_�t���=�bǏ����Ѭ9�bGc�/v$t�;*5_�j�;*5_�j�;*5U%�=�]�QwXI��R�i+Q�A�+������R�),Q�An,��#KR� g�JMg�jri�Ԥ��� ǖJMm�jroi�\�:9�Tj�KT{�K���͚��R�)/�An/���KR� �JM�jr���$��� G�JM��jr�i�b�:9�TjZLT{�kL�&�D�9�Tj�LT{��L��(��1�Y�R�e�ڃ\f*5i&�=�q�RSg�ڃ�gu���AJ4�yi4Q��JS�+�D��8�TfJMD{�[M�^cMP� �JM��jr���$��� G�JM��jr�i�n�:9�Tj�MT{��M�&�D�9�Tj +NT{�N��1��R�q�ڃ\r*5)'�=�1�RSs�ڃ�s4A'�=�I�"WӉd�qթ�d��� ��JMىjr�i�w�:9�Tj�NT{�O�&�D�9�Tj*OT{�;O��Г�1ȩ�R�z�ڃ\{*5�'�=���RS|�ڃ�|uG���A�>������S�I?Q�A�?��O4k�OC&�%��8UfPD{�+P�&E�9UjJPT{�[P����1�9�RӃ�ڃ\�*5I(�=�Q�RS��ڃ܅u����ANC��6��:T��CQ�AD��B��FT��H�9ș�RӉ�ڃ\�*5�(�=���BW-�f�q/j��:9Uj�QT{��Q�&E�9Uj�QT{��Q��x��1���Rӏ�ڃ\�*5 )�=��RS��ڃܑu����ANI�����T��IQ�AJ�����Ԩ;*%urV��t��� �� +]i)�5�q�2S�"ڃܗu���ANL������T��LQ�AM������Ԩ;6%urn������ �JMr�jrt��T��� w�F��)�c��S��=E��>Uj�ST{�T��@E��A5�PI���*tu�h����L��hr���Ԩ�� ��F�A*�c��T��IE��JUj�TT{��T��LE��M�5Nur������� �JM��jr���T��� w�Fݡ*�c�SU��UE��VUjrUT{��U��XE��Y5h�U2{�UE�nɚ�rU�IW�A�W)��*~�K�z[���ǟc��w���՞�q������ +X���~��ϻ`�o��������YQ�N��k=��ݗ��4���������'t����Ͽ;�����|� ���:��Qj:T{�;���A���Qj:T{�;����1��R���ڃ��(5�=��R���ڃ��uw0��A�`����F��`P�A�`����ƨ��!uR��K���v0 +\�5��2�� ڃ������:��Qj:T{�;���A���Qj:T{�;����1��R���ڃ��(5�=��R���ڃ��uw0��A�`����F��`P�A�`����Ơ�`��9�`�:$k�;e��A���Qj:T{�;����1��R���ڃ��(5�=��R���ڃ��uw0��A�`����F��`P�A�`����ƨ��!ur��t0�� w0JM�jb�����Ys��2�=��2�� ڃ��(5�=��R���ڃ��uw0��A�`����F��`P�A�`����ƨ��!ur��t0�� w0JM�jr��t0�� w0B�v0��A�`����F��`P�A�`�:4k�;c���1��R���ڃ��(5�=��R���ڃ��uw0��A�`����F��`P�A�`����ƨ��!ur��t0�� w0JM�jr��t0�� w0F��c�;���A���Q��`Ь9�`����ƨ��!ur��t0�� w0JM�jr��t0�� w0F��c�;���A���Qj:T{�;���A���1��`H���(5�=��R���ڃ��(5�=��QwC��F���A�渃Qf:D{�;���A���1��`H���(5�=��R���ڃ��(5�=��P��s�;���A���Qj:T{�;���A���1��`H���(5�=��R���ڃ��(5�=��A����s��(ru0H�w0�L�hrs�m�?ǥ����_;����~������^��Y�������7���x���߿'0a��������~���[�����r�~��]��;��__j�>��֛>�/�~� �R+�=�/�*5/��ڃ�R�Q�K���A~�U�y���Z���ZQ�A~�U�y���Z��_j%u�K�J�K��� �ԪԼԊj�K�J�K��� ��jм�Jf��K��\/�"Ys�R�2�R+�=�/�*5/��ڃ�R�Q�K���A~�U�y���Z���ZQ�A~�U�y���Z��_j%u�K�J�K��� �ԪԼԊj�K�J�K��� ��j��R+�c�_jUj^jE���V��VT{_jU�z�͚×Z ��Z��9~�U�y���Z���ZQ�A~�U�y���Z��_j%u�K�J�K��� �ԪԼԊj�K�J�K��� ��j��R+�c�_jUj^jE���V��VT{�_jUj^jE���V�^_ju�K�J�K��� �ԪԼԊj�K� +]/��Ys�R�1�K���A~�U�y���Z���ZQ�A~�U�y���Z��_j%u�K�J�K��� �ԪԼԊj�K�J�K��� ��j��R+�c�_jUj^jE���V��VT{�_jUj^jE���V��ZI��R�R�R+�=�/�*t�Ԋf��K���K��� ��j��R+�c�_jUj^jE���V��VT{�_jUj^jE���V��ZI��R�R�R+�=�/�*5/��ڃ�R�R�R+�=�/�u��J��Z���ZQ�A~�U�y���Z���ZQ�A~�ը��VR� �Ԫ��R+�5�/�*3/�"ڃ�R�R�R+�=�/�u��J��Z���ZQ�A~�U�y���Z���ZQ�A~�U�חZA���R�R�R+�=�/�*5/��ڃ�R�R�R+�=�/�u��J��Z���ZQ�A~�U�y���Z���ZQ�A|�ՠy��̞×Z�^jE����Ve�VD{�_j=~�R�Ԋ���R��ǀ�Z�?��߆���}�Y���������Nߞ��������%��߽_?��+OoXO����s����� �Rendstream endobj 1257 0 obj << /Type /Page @@ -2657,72 +2670,72 @@ endobj 1260 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 708.244 223.78 715.098] +/Rect [143.462 708.244 221.101 715.098] /Subtype /Link -/A << /S /GoTo /D (os-win32) >> +/A << /S /GoTo /D (win32-perl) >> >> endobj 1261 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 708.244 537.983 715.098] /Subtype /Link -/A << /S /GoTo /D (os-win32) >> +/A << /S /GoTo /D (win32-perl) >> >> endobj 1262 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [143.462 695.293 221.101 702.147] +/Rect [143.462 695.293 270.913 702.147] /Subtype /Link -/A << /S /GoTo /D (win32-perl) >> +/A << /S /GoTo /D (win32-perl-modules) >> >> endobj 1263 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 695.293 537.983 702.147] /Subtype /Link -/A << /S /GoTo /D (win32-perl) >> +/A << /S /GoTo /D (win32-perl-modules) >> >> endobj 1264 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [143.462 682.341 270.913 689.195] +/Rect [143.462 680.284 334.813 689.195] /Subtype /Link -/A << /S /GoTo /D (win32-perl-modules) >> +/A << /S /GoTo /D (win32-code-changes) >> >> endobj 1265 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [528.02 682.341 537.983 689.195] +/Rect [528.02 680.284 537.983 689.195] /Subtype /Link -/A << /S /GoTo /D (win32-perl-modules) >> +/A << /S /GoTo /D (win32-code-changes) >> >> endobj 1266 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [143.462 667.333 333 676.244] +/Rect [143.462 667.333 265.763 676.244] /Subtype /Link -/A << /S /GoTo /D (win32-code-changes) >> +/A << /S /GoTo /D (win32-http) >> >> endobj 1267 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 667.333 537.983 676.244] /Subtype /Link -/A << /S /GoTo /D (win32-code-changes) >> +/A << /S /GoTo /D (win32-http) >> >> endobj 1268 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [143.462 654.381 265.763 663.293] +/Rect [143.462 654.381 234.789 663.293] /Subtype /Link -/A << /S /GoTo /D (win32-http) >> +/A << /S /GoTo /D (win32-email) >> >> endobj 1269 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 654.381 537.983 663.293] /Subtype /Link -/A << /S /GoTo /D (win32-http) >> +/A << /S /GoTo /D (win32-email) >> >> endobj 1270 0 obj << /Type /Annot @@ -2771,56 +2784,56 @@ endobj /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 604.633 193.713 611.487] /Subtype /Link -/A << /S /GoTo /D (870) >> +/A << /S /GoTo /D (856) >> >> endobj 1277 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 604.633 537.983 611.487] /Subtype /Link -/A << /S /GoTo /D (870) >> +/A << /S /GoTo /D (856) >> >> endobj 1278 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 589.624 177.116 598.535] /Subtype /Link -/A << /S /GoTo /D (874) >> +/A << /S /GoTo /D (860) >> >> endobj 1279 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 589.624 537.983 598.535] /Subtype /Link -/A << /S /GoTo /D (874) >> +/A << /S /GoTo /D (860) >> >> endobj 1280 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.462 576.673 298.44 585.584] /Subtype /Link -/A << /S /GoTo /D (882) >> +/A << /S /GoTo /D (868) >> >> endobj 1281 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 576.673 537.983 585.584] /Subtype /Link -/A << /S /GoTo /D (882) >> +/A << /S /GoTo /D (868) >> >> endobj 1282 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 565.778 160.508 572.633] /Subtype /Link -/A << /S /GoTo /D (909) >> +/A << /S /GoTo /D (895) >> >> endobj 1283 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 565.778 537.983 572.633] /Subtype /Link -/A << /S /GoTo /D (909) >> +/A << /S /GoTo /D (895) >> >> endobj 1284 0 obj << /Type /Annot @@ -2841,70 +2854,70 @@ endobj /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.462 537.818 276.552 546.73] /Subtype /Link -/A << /S /GoTo /D (928) >> +/A << /S /GoTo /D (914) >> >> endobj 1287 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 537.818 537.983 546.73] /Subtype /Link -/A << /S /GoTo /D (928) >> +/A << /S /GoTo /D (914) >> >> endobj 1288 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.462 526.924 253.17 533.778] /Subtype /Link -/A << /S /GoTo /D (941) >> +/A << /S /GoTo /D (927) >> >> endobj 1289 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 526.924 537.983 533.778] /Subtype /Link -/A << /S /GoTo /D (941) >> +/A << /S /GoTo /D (927) >> >> endobj 1290 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 513.973 197.708 520.827] /Subtype /Link -/A << /S /GoTo /D (974) >> +/A << /S /GoTo /D (960) >> >> endobj 1291 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 513.973 537.983 520.827] /Subtype /Link -/A << /S /GoTo /D (974) >> +/A << /S /GoTo /D (960) >> >> endobj 1292 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.462 498.964 296.208 507.875] /Subtype /Link -/A << /S /GoTo /D (977) >> +/A << /S /GoTo /D (963) >> >> endobj 1293 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 498.964 537.983 507.875] /Subtype /Link -/A << /S /GoTo /D (977) >> +/A << /S /GoTo /D (963) >> >> endobj 1294 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 486.013 178.221 494.924] /Subtype /Link -/A << /S /GoTo /D (986) >> +/A << /S /GoTo /D (972) >> >> endobj 1295 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 486.013 537.983 494.924] /Subtype /Link -/A << /S /GoTo /D (986) >> +/A << /S /GoTo /D (972) >> >> endobj 1296 0 obj << /Type /Annot @@ -3275,42 +3288,42 @@ endobj /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 131.542 215.571 140.453] /Subtype /Link -/A << /S /GoTo /D (1446) >> +/A << /S /GoTo /D (1437) >> >> endobj 1349 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 131.542 537.983 140.453] /Subtype /Link -/A << /S /GoTo /D (1446) >> +/A << /S /GoTo /D (1437) >> >> endobj 1350 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 118.59 257.085 127.502] /Subtype /Link -/A << /S /GoTo /D (1473) >> +/A << /S /GoTo /D (1464) >> >> endobj 1351 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 118.59 537.983 127.502] /Subtype /Link -/A << /S /GoTo /D (1473) >> +/A << /S /GoTo /D (1464) >> >> endobj 1352 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 105.639 302.205 114.55] /Subtype /Link -/A << /S /GoTo /D (1483) >> +/A << /S /GoTo /D (1474) >> >> endobj 1353 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 105.639 537.983 114.55] /Subtype /Link -/A << /S /GoTo /D (1483) >> +/A << /S /GoTo /D (1474) >> >> endobj 1259 0 obj << /D [1257 0 R /XYZ 71.731 729.265 null] @@ -3320,21 +3333,19 @@ endobj /ProcSet [ /PDF /Text ] >> endobj 1403 0 obj << -/Length 52210 +/Length 52209 /Filter /FlateDecode >> stream -xڜ�]�י�����.�}�_.�jw�;ƶƒ옘�p��2 I(�p�<����]g�s��"���UI����zr��f���w��t�����N���������n['�Ӵ;��~�?~�^����n3]wۧg���t��?o.��p���?��������u�������C:���w�i�����w�ͻ���Ͽ.������O?|�4��w_����_��|��/����ۗ�?}����_�����]�~{���w�_�f�ﷃ/���~ٞ�ҡ�/hz{!���9=��'�rvE����|���s��YV�����v�K�.gWT���|N�����2��t �������|����lz܀���1$_���7 �p؆�rv���:߀�.T��+�>W�-j�e���]��Cu9��z�@�o�������e�^Su9��z�s���N��ߛ:�j8P�O���:��z�@=N�S�.gWT��m8��quvE����i� ��Ӧβ���6�Su9��z�@�o�.����+���6�� .GWL�{N��{~�,G���y��oj.gWP���x ��uvE���z�6�T]ή��\�l��9�����v�u?mN�M�]Q=p�ηᘪ����|�g\�]Q=�z�o�>T�,�]�@�o�.����+���6l�ϸ:��z�@�o�&U��+�>U��t�f�q:�j8Pw��r �����8Ω��]Q=p�����utŴ�����;�G��2���Su9��z�@���a�����|��P]ή��\�ͷa�u��.p�ηa{����u� �c�.gWT���rM�������f�_��9�e����re��+���?��rvE���:߆c�1WgWT|���p?p�,�]�@�o�>U��+���6��4-GWL���=8uv����q��P���v�u���c�ή�8P�����:��z�@=O�K�.gWT|��6��~��YV�����Χ��ή�8P��pL����u� ��c�ή��\=Ϸa~��YV���:߆]�.gWT��m؆suvE���:߆M��SgWT|�^6���u��.p��S��]1-n@��%����+���t:��rvE����u���c�β���.��:��z�@�o�!U��+���6�Ï�:��z�S���oC�@[gQ��|����]Q=p�η!>����y:�?g������ʹ��j�e���������8mN���]Q=p�η�x �������|�q��lz܀���!$_���7 ��߆�rv���:߀��'�)�ۏПO�w�i�wu��2�7ױ?O���zx�p���6lx�Q����a?n�ç��g�=�C�C:�0���I�~���ˇ�����ח/5�������,���?l�}��������o_>}���|Ⓛ�����å��^��߁ &5#B_�=~i��'2�a�qF$SkF�U��L�V=gD"U3"�v�8#��5#ª�H��H3"�̈�iq4#�5#����Hf��3"�Z3"�z Έdj͈��8#��A���L�V=gD2�fDX�@��Ԛa�qF$R5#�j�3"�Z3"�z Έdj͈��8#��5#ª�H��R�@��Ԛa�qF$SkF�U��]fDش8��L͈ ��H���3"�Z3"�z Έdj͈��8#��A���L�V=gD2�fDX�@��Ԛa�qF$R5#�j�3"�Z3"�z Έdj͈��8#��5#ª�H�jF�.gD2�fDX�@���eF�M���̬F=gD"U3"�v�8#��5#ª�H���3"�Z3"�z ΈD�fDP�qF$SkF�U��L�V=gD2�fDX�@��T͈���H���3"�Z3"�z Έdj͈��8#��A���]fDش8��̚a�qF$SkF�U��HՌ�] Έdj͈��8#��5#ª�H���3"��fDH�qF$SkF�U��L�V=gD2�fDX�@��T͈���H���3"�Z3"�z Έdj͈��4#�5#���ьHF.3"LZΈdf͈0�8#�s�3"|�g/c<#��͈lWfD���[��33"�����=�×�?���۳��ۣ��5>Y_u��j��kl�������1~Ў�����ԃv"=��G��#���=R��U�푪��z ?hO�����.��G������=R��U�푪��z ?hO�����.��G������=R��U�푪��z ?h���vP�@~��zЎ���HՃvT=�Gh=hG���A{b��v���=R��U�푪��z ?h�T=hG��A{����v���=R��U�푪��z ?h�T=hG��A{����v���=R��U�푪��z ?h�T=hG��A{����v���=R��U��Z�Ѵ8~��zЎ���Dm�I��A{��A;���#U�Q�@~��zЎ���Dm�I��A{��A;���#U�Q�@~��zЎ���Dm�I��A{��A;���#U�Q�@~��zЎ���Dm�I��A{�փv4-��G��#���=R��U��������HՃvT=��G������=R��U��z�j��#U�Q�@~��zЎ���HՃvT=��'j{�Nj��#U�Q�@~��zЎ���HՃvT=�'����q��="�A;���#S��@~�N�|��x˃��ˀ�����1����r��u��A�~�G���~�yy+�������w?�}���5��t����~Q�����0z��W���C�_��,O.d� +xڜ�]�י�����.�}�_.�jw�;ƶƒ옘�p��2 I(�p�<����]g�s��"���UI����zr��f���w��t�����N���������n['�Ӵ;��~�?~�^����n3]wۧg���t��?o.��p���?��������u�������C:���w�i�����w�ͻ���Ͽ.������O?|�4��w_����_��|��/����ۗ�?}����_�����]�~{���w�_�f�ﷃ/���~ٞ�ҡ�/hz{!���9=��'�rvE����|���s��YV�����v�K�.gWT���|N�����2��t �������|����lz܀���1$_���7 �p؆�rv���:߀�.T��+�>W�-j�e���]��Cu9��z�@�o�������e�^Su9��z�s���N��ߛ:�j8P�O���:��z�@=N�S�.gWT��m8��quvE����i� ��Ӧβ���6�Su9��z�@�o�.����+���6�� .GWL�{N��{~�,G���y��oj.gWP���x ��uvE���z�6�T]ή��\�l��9�����v�u?mN�M�]Q=p�ηᘪ����|�g\�]Q=�z�o�>T�,�]�@�o�.����+���6l�ϸ:��z�@�o�&U��+�>U��t�f�q:�j8Pw��r �����8Ω��]Q=p�����utŴ�����;�G��2���Su9��z�@���a�����|��P]ή��\�ͷa�u��.p�ηa{����u� �c�.gWT���rM�������f�_��9�e����re��+���?��rvE���:߆c�1WgWT|���p?p�,�]�@�o�>U��+���6��4-GWL���=8uv����q��P���v�u���c�ή�8P�����:��z�@=O�K�.gWT|��6��~��YV�����Χ��ή�8P��pL����u� ��c�ή��\=Ϸa~��YV���:߆]�.gWT��m؆suvE���:߆M��SgWT|�^6���u��.p��S��]1-n@��%����+���t:��rvE����u���c�β���.��:��z�@�o�!U��+���6�Ï�:��z�S���oC�@[gQ��|����]Q=p�η!>����y:�?g������ʹ��j�e���������8mN���]Q=p�η�x �������|�q��lz܀���!$_���7 ��߆�rv���:߀��'�)�ۏПO�w�i�wu��2�7ױ?O���zx�p���6lx�Q����a?n�ç��g�=�C�C:�0���I�~���ˇ�����ח/5�������,���?l�}��������o_>}���|Ⓛ�����å��^��߁ &5#B_�=~i��'2�a�qF$SkF�U��L�V=gD"U3"�v�8#��5#ª�H��H3"�̈�iq4#�5#����Hf��3"�Z3"�z Έdj͈��8#��A���L�V=gD2�fDX�@��Ԛa�qF$R5#�j�3"�Z3"�z Έdj͈��8#��5#ª�H��R�@��Ԛa�qF$SkF�U��]fDش8��L͈ ��H���3"�Z3"�z Έdj͈��8#��A���L�V=gD2�fDX�@��Ԛa�qF$R5#�j�3"�Z3"�z Έdj͈��8#��5#ª�H�jF�.gD2�fDX�@���eF�M���̬F=gD"U3"�v�8#��5#ª�H���3"�Z3"�z ΈD�fDP�qF$SkF�U��L�V=gD2�fDX�@��T͈���H���3"�Z3"�z Έdj͈��8#��A���]fDش8��̚a�qF$SkF�U��HՌ�] Έdj͈��8#��5#ª�H���3"��fDH�qF$SkF�U��L�V=gD2�fDX�@��T͈���H���3"�Z3"�z Έdj͈��4#�5#���ьHF.3"LZΈdf͈0�8#�s�3"|�g/c<#��͈lWfD���[��33"�����=�×�?���۳��ۣ��5>Y_u��j��kl�������1~Ў�����ԃv"=��G��#���=R��U�푪��z ?hO�����.��G������=R��U�푪��z ?hO�����.��G������=R��U�푪��z ?h���vP�@~��zЎ���HՃvT=�Gh=hG���A{b��v���=R��U�푪��z ?h�T=hG��A{����v���=R��U�푪��z ?h�T=hG��A{����v���=R��U�푪��z ?h�T=hG��A{����v���=R��U��Z�Ѵ8~��zЎ���Dm�I��A{��A;���#U�Q�@~��zЎ���Dm�I��A{��A;���#U�Q�@~��zЎ���Dm�I��A{��A;���#U�Q�@~��zЎ���Dm�I��A{�փv4-��G��#���=R��U��������HՃvT=��G������=R��U��z�j��#U�Q�@~��zЎ���HՃvT=��'j{�Nj��#U�Q�@~��zЎ���HՃvT=�'����q��="�A;���#S��@~�N�|��x˃��ˀ�����1����r��u��A�~�G���~�yy+�������w?�}���5��t����~Q�����0z��W���C�_��,O.d� V=_���� V=_���� -V=_��m��] �T��@�y�F�j����5"U�5P�@^���m��] �T��@�y�F�j�Uĩ���4-�~RS?DzO�D��~�@���TM���<����A�y�'Q���] O�D��~P�@���TM���<����A�y�'Q���] O�D��~P�@���TM���<����A�y�'P�S?���<����A�y�'R5�����O�����S?�٦~�y�'R5�����O�j�U䩟H����S?�ڦ~H�y�'R5�����O�j�U䩟H����S?�ڦ~H�y�'R5�����O�j�U䩟H����S?�ڦ~H�y�'R5�����O�����S?���D=��~�M�����O�j�U䩟H����S?���T=��~�M�����O�j�U䩟H����S?���T=��~�M�����O�j�U䩟H����S?���T=��~�M�����O�����S?���D=��~"US?�z O�$j��!�䩟H����S?���T=��~"US?�z O��}��>��~"US?�z O�D��~P�@���TM���<���m��.��~"US?�z O�D��~P�@���TM���8�����!��p�'"k�I�㩟�����S?�y�h��c��y���_��������z��S�t�}c��鸿<��:�#5��/?~��ç_\�����?��������\��?��������������]�������/r;��~4��o����#�Сǯ�͝����iv�\�u9��z�@=���c�.gWT���I�������v�\O�ZgY��~:�>�"u9��z�@=M�s�.gWT���x�P��������|��L���v�u� �T]ή�8P���"�]1-n@��`� ��� -����|v�ZgY��|n�G���]Q=p��wa������e���>T��+�>Wϛ�7�?�u��.p���9U��+���|>����+���6Ï�:��z�s�2߆C��YV���:߆}�1WgWT��msuvE���:߆m�.gWT|�^�۰ ?��,�]�@�oCh�N���a�8]�/���hq�2�/�\�]A=����f3]��G�����?��rvE���:߅�>T��+��奤���]Q=o�>T�,�]�@�o�������|��P]ή�8P�۰I�������f:_�8�e���i�t�����8�ϩ��]Q=p�^�����������6��0-G���9߃����� -iqr��mh.gWP�� ؇�6uvE��Ai�Z|��j��v�\�T�Q�@�F�j��z �#U�@T=�k���j��v�\�T�Q�@�F�j��z �#U�@T=�k���j��v�\�T�Q�@�F�j��z �#�j�hZ�R�@"=�k���Z �ȵ�HU-U�Z`����r-0Q[-��.�k���Z �ȵ�HU-U�Z`����r-0Q[-��.�k���Z �ȵ�HU-U�Z`����r-0P�@P�@�F�j��z �#U�@T=k�Z�@4-�k���j��v�\�T�Q�@�F�j��z �#U�@T=�k���j��v�\�T�Q�@�F�j��z �#U�@T=�k���j��v�\�T�Q�@�F�j��z �#U�@T=�k���j��v�\�T�Q�@�Fh�Ѵ8�F�j��z ���I������\�T�Q�@�F�j��z ���I������\�T�Q�@�F�j��z ���I������\�T�Q�@�F�j��z ���I���UD����"�\�T�Q�@�&j���r-0RUD������\�T�Q�@��jȵ�HU-U�Z`����r-0RUD�����Hjȵ�HU-U�Z`����r-0RUD�������qX�Ȫ"iq\�L��@��[lQ-�c�>\�a?�������2�+o��^��nWTe�����δb������v�}���k[���/����~�t[ �� +V=_��m��] �T��@�y�F�j����5"U�5P�@^���m��] �T��@�y�F�j�Uĩ���4-�~RS?DzO�D��~�@���TM���<����A�y�'Q���] O�D��~P�@���TM���<����A�y�'Q���] O�D��~P�@���TM���<����A�y�'P�S?���<����A�y�'R5�����O�����S?�٦~�y�'R5�����O�j�U䩟H����S?�ڦ~H�y�'R5�����O�j�U䩟H����S?�ڦ~H�y�'R5�����O�j�U䩟H����S?�ڦ~H�y�'R5�����O�����S?���D=��~�M�����O�j�U䩟H����S?���T=��~�M�����O�j�U䩟H����S?���T=��~�M�����O�j�U䩟H����S?���T=��~�M�����O�����S?���D=��~"US?�z O�$j��!�䩟H����S?���T=��~"US?�z O��}��>��~"US?�z O�D��~P�@���TM���<���m��.��~"US?�z O�D��~P�@���TM���8�����!��p�'"k�I�㩟�����S?�y�h��c��y���n8�3��ן�o?1�����p��O�qyzAuFGj�G/_��_~���O���������Ǘ�������~����ח��w_�/d��N��o��_�v�s�h�g��N�ןG��C�_��;�����<��'�rvE���z����P]ή�8P/�i������������2�β���t�}(E�rvE���z�6�T]ή�8P/������������6��ZgY��|���]Q=p�η!�Eb9�bZ܀���~���������B�β����f�"u9��z�@���&U��+����;�}�.gWT|��7�o���,�]�@�O�s�.gWT���|�1WgWT��m8�suvE����e� �P���v�u� ��c�ή�8P�۰?����u� �T]ή��\�ηa~��YV���:߆м�\��q��_������e�_��:��z��A��f�����E���iJ����u��}�.gWT��KI3u9��z�su;߆}��YV���:߆�1T��+���6lO���]Q=p�ηa���������t�fp:�j8P���������q:�Su9��z�@�L��5T��+�>W��m�aZ���qr�Ύ�����|��\ή�8P��?m��ꁃ�Z����I������\�T�Q�@�F�j��z ���I������\�T�Q�@�F�j��z ���I������\�T�Q�@�Fh�Ѵ8�&�j�Dz�#S�@D=�k���Z �ȵ�HU-U�Z`��Z �] �#U�@T=�k���Z �ȵ�HU-U�Z`��Z �] �#U�@T=�k���Z �ȵ�HU-U�Z`��k����\�T�Q�@�F�j��z �#�j�hZ��� ������\�T�Q�@�F�j��z ���I������\�T�Q�@�F�j��z ���I������\�T�Q�@�F�j��z ���I������X�Ъ�iq\�L��@�&j���r-0RUD������\�T�Q�@�&j���r-0RUD������\�T�Q�@�&j���r-0RUD������\�T�Q�@�&j���b-0B����q-02UD������\L�V$��Z`����r-0RUD������\�{-�>�k���Z �ȵ�HU-U�Z`����r-0Q[-��.�k���Z �ȵ�HU-U�Z`����b-0AU$���UD����"�\�آZ ^�R|��������2�+o��^��nWTe�����δb������v�}���k[���/����~�t[ �� x�N����ͷU��uX��A���S�fz��'�����( ��r1RU@D����* ��\@�TQ�@. &j+ ��r1RU@D����* ��\@�TQ�@. &j+ ��r1RU@D����U@D�⸀�* "�\@L�V@$��b�����r1RU@D����* ��\@L�V@$��b�����r1RU@D����* ��\@L�V@$��b�����r1RU@D����* ��\@L�V@$��bd.Dð��U@D�⸀�* "�\@�{�>����"���HUU�b�����r1Q[��.����"���HUU�b�����r1Q[��.����"���HUU�b�����b1AU@$�㰀�U@D�⸀�* "�\@�TQ�@. &j+ ��r1RU@D����* ��\@�TQ�@. &j+ ��r1RU@D����* ��\@�TQ�@. &j+ ��r1RU@D����* ��X@��* �iqX@LH��8. F� ��z #UDT=����"���DmDR�@. F� ��z #UDT=����"���DmDR�@. F� ��z #UDT=����"���@�A����* ��\@�TQ�@, FhѴ8. &f+ �r1RU@D����* ��\@�TQ�@. &j+ ��r1RU@D����* ��\@�TQ�@. &j+ ��r1RU@D����* ��\@�TQ�@. &j+ ��r1RU@D����U@D�⸀�* "�\@L�V@$��b�����r1RU@D����* ��\@L�V@$��b�����r1RU@D����* ��\@L�V@$��b�����r1RU@D����* ��\@L�V@$��b�VM��bd����r1RU@D�������Hj��HUU�b�����r1RU@D�����"�} #UDT=����"���HUU�b��"�] #UDT=����"���HUU�b���H��a1"�����q12U@D���8��ED�����pP@_GW@ܭ�������:� -����&�~��������?|]������_X��_>|��//oGu�����~1o����y�L��0|-�~�R��o/&��@����0�} OG�&�Q�@��TM��<1��F�yb8Q��0�] OG�&�Q�@��TM��<1��F�yb8Q��0�] OG�&�Q�@��TM��<1��F�qb8A51L����pD��0��Ñ��aD=�'�#Uèz O'j�&���H��0��Ñ��aT=�'�#Uèz O'j�&���H��0��Ñ��aT=�'�#Uèz O'j�&���H��0��Ñ��aT='�#�&�Ѵ8�NHM�q<1��F�yb8R51����p�jbU��Dmäv�<1��F�yb8R51����p�jbU��Dmäv�<1��F�yb8R51����p�jbU��@�O����p�jbU��H��0���Z�hZO'f�&���H��0��Ñ��aT=�'�#Uèz O'j�&���H��0��Ñ��aT=�'�#Uèz O'j�&���H��0��Ñ��aT=�'�#Uèz O'j�&���H��0���Z�hZOG�&��@�N�61Lj�Ñ��aT=�'�#Uèz OG�&�Q�@�N�61Lj�Ñ��aT=�'�#Uèz OG�&�Q�@�N�61Lj�Ñ��aT=�'�#Uèz OG�&�Q�@�N�61Lj��Z�hZOG�&��@��TM��<1��mb��.�'�#Uèz OG�&�Q�@��TM��<1���aP�@��TM��<1��F�yb8R51����p���aR�@��TM��<1��F�yb8R51����p�jb�L�Éሬ�a$-�'�#SÈz O�Lk01�ױL?\��0�_����a�֕W�����sx�'�t9<��C:�01�}>3�������/|�B�:�o?z��o_Yr{/�`0��7�kn���y�����~sT=���G����ꁼ�<R��U���������~�H�~sT=���G����ꁼ�<R��U���������~��\�������#�� +����&�~��������?|]������_X��_>|��//oGu�����~1o����y�L��0|-�~�R��o/&��@����0�} OG�&�Q�@��TM��<1��F�yb8Q��0�] OG�&�Q�@��TM��<1��F�yb8Q��0�] OG�&�Q�@��TM��<1��F�qb8A51L����pD��0��Ñ��aD=�'�#Uèz O'j�&���H��0��Ñ��aT=�'�#Uèz O'j�&���H��0��Ñ��aT=�'�#Uèz O'j�&���H��0��Ñ��aT='�#�&�Ѵ8�NHM�q<1��F�yb8R51����p�jbU��Dmäv�<1��F�yb8R51����p�jbU��Dmäv�<1��F�yb8R51����p�jbU��@�O����p�jbU��H��0���Z�hZO'f�&���H��0��Ñ��aT=�'�#Uèz O'j�&���H��0��Ñ��aT=�'�#Uèz O'j�&���H��0��Ñ��aT=�'�#Uèz O'j�&���H��0���Z�hZOG�&��@�N�61Lj�Ñ��aT=�'�#Uèz OG�&�Q�@�N�61Lj�Ñ��aT=�'�#Uèz OG�&�Q�@�N�61Lj�Ñ��aT=�'�#Uèz OG�&�Q�@�N�61Lj��Z�hZOG�&��@��TM��<1��mb��.�'�#Uèz OG�&�Q�@��TM��<1���aP�@��TM��<1��F�yb8R51����p���aR�@��TM��<1��F�yb8R51����p�jb�L�Éሬ�a$-�'�#SÈz O�Lk01�ױL?\�a?�_����a�֕W�����sx�'�t9<��C:�01�}>3�������/|�B�:�o?z��o_Yr{/�`0��7�kn���y�����~sT=���G����ꁼ�<R��U���������~�H�~sT=���G����ꁼ�<R��U���������~��\�������#�� (Z�"SmD=�� �zo+��r[!R�V@����j+���V�T�P�@n+$jk+��r[!R�V@����j+���V�T�P�@n+$jk+��r[!R�V@����j+���V�T�P�@l+$�� dz�"�� @@ -3369,110 +3380,122 @@ hZ �v��V��j+�iq�V�L��@n+D�� �z ���H����j+���V�T�P�@n+D�� �z ���V���B�����r[!R�V@����j+���VH��V ��B�����r[!R�V@����j+���VHP���8l+Dd���8n+D�� -�z �ƃ�Q[�ci+<\��8l+���k+�V� +�z �ƃ�Q[�ci+<\��0l+���k+�V� ��t�︭Pg� -�ն·�^�/n+ο�ۇ�~6������~ o����e��\���5�i臯a4 ��2���(>��4t�44���Б�ihD=����> j��Б�ihT=���#U�Шz OCG���Q�@��N�6 Mj��Б�ihT=���#U�Шz OCG���Q�@��N�6 Mj��Б�ihT=���#U�Шz OCG���Q�@��NPMC��q8 �5 ����4tdjQ�i�H�44���Љڦ�I�y:R5 ���4t�jU�i�H�44���Љڦ�I�y:R5 ���4t�jU�i�H�44���Љڦ�I�y:R5 ���4t�jU�i��ih4-��R��DzOCG����@���TMC��< ���F�y:Q�44�] OCG���Q�@���TMC��< ���F�y:Q�44�] OCG���Q�@���TMC��< ���F�y:P��Р��< ���F�y:R5 ���4t��44���Љ٦� �y:R5 ���4t�jU�i�H�44���Љڦ�I�y:R5 ���4t�jU�i�H�44���Љڦ�I�y:R5 ���4t�jU�i�H�44���Љڦ�I�y:R5 ���4t��44���Б�ihD=����MC���4t�jU�i�H�44���Б�ihT=����MC���4t�jU�i�H�44���Б�ihT=����MC���4t�jU�i�H�44���Б�ihT=����MC���4t��44���Б�ihD=���#U�Шz OC'j��&��i�H�44���Б�ihT=���#U�Шz OC�}�>���#U�Шz OCG���Q�@���TMC��< ��m��.���#U�Шz OCG���Q�@���TMC��8 ����&��p:"kI��i���44����4�LC�u,���������v�����Y[��֙�i���4�_>|��������o��_��������4��֦o�rz����'2��ͪ��L�M߬z n�����ͪ��H�l;�] ̶g��l;��a4۞��l;����Y��z ζ'j�m'����L��vV=g�3�f�Y�@�m�Ԛmg�q�=R5ێj���Z���z ζgjͶ��8۞�5�Ϊ�l{�j��.g�3�f�Y�@�m�Ԛmg�q�=Sk��U�����v4=�f�3r�mg��p�=3k��Q���L��vV=g�#U���v�8۞�5�Ϊ�l{��l;����Z���z ζG�f�Q�q�=Sk��U���L��vV=g�3�f�Y�@�m�TͶ���l{��l;����Z���z Ͷg�2�Φ��l{D�l;����Y��z ζgjͶ��8۞�5�Ϊ�l{�j��.g�3�f�Y�@�m�Ԛmg�q�=Sk��U���H�l;�] ζgjͶ��8۞�5�Ϊ�l{��l;�����f�I�q�=Sk��U���L��vV=�f�3t�mg��p�=25ێh���Z���z ζgjͶ��8۞�5�Ϊ�l{�j��.g�3�f�Y�@�m�Ԛmg�q�=Sk��U���H�l;�] ζgjͶ��8۞�5�Ϊ�l{��l;���푪�vT�@�m�Ԛmg�i�=C��v6-g�3�f��@�m�TͶ���l{��l;����Z���z ζgjͶ��8���mG����L��vV=g�3�f�Y�@�m�Ԛmg�q�=R5ێj���Z���z ζgjͶ��8۞�5�Ϊ�l{�j��.�f�3t�mg��p�=3k��Q���L��vV=g�#U���v�8۞�5�Ϊ�l{��l;����Z���z ζ'j�m'����L��vV=g�3�f�Y�@�m�Ԛmg�q�=R5ێj���Z���z ζgjͶ��8۞�5�Ϊ�l{��l;�G���̶3iq8۞�5�Ψ�l;d'��|�g/�pͶ�u|�^��~e���:�u���e�����l{ҙ6ۮ�����/?�|k������v���o_����>���f6w�#��!���2��}<M�/p�u���ߎ/��v��^�s9��z�s���ot��YV�������]�.gWT��]ؤ�rvE���:�p��E�.gWT|��Ƽ^�ZgY��~:�Su9��z�@=�珡��]Q=p�η�x -���ꁃ^He�5oH��y�jޠ�ܼ�T5oP�@n�D��7�z 7o�5oH��y�K���0l�D`5oP�8n�D��7�z 7o����M��y��r�&RռA��y�jޠ�ܼI�ּ!���M��y��r�&RռA��y�jޠ�ܼI�ּ!���M��y��r�&RռA��y�jޠ�ؼIP5o��8l�Dd5o��8n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@n�D��7�z 6o"��7hZ6oR�"=��7��� ��͛HU�U��M��y��r�&Q[��.��7��� ��͛HU�U��M��y��r�&Q[��.��7��� ��͛HU�U��M��y��r�&P��P�@n�D��7�z 7o"U�T=�7Z�4-��7�ٚ7�v�ܼ�T5oP�@n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@l�Dh5oд8n�D��7�z 7o�5oH��y�jޠ�ܼ�T5oP�@n�D��7�z 7o�5oH��y�jޠ�ܼ�T5oP�@n�D��7�z 7o�5oH��y�jޠ�ܼ�T5oP�@n�D��7�z 7o�5oH��y�ռA��y�j� �ܼ�T5oP�@n�$jkސ�r�&RռA��y�jޠ�ܼ�T5oP�@n��yj�͛HU�U��M��y��r�&RռA��y���yCj�͛HU�U��M��y��r�&RռA��y��jސ�qؼ��j� iqܼ�L5o�@n�PU$h��u,͛��8��͛�u̿ ?Ϳ�������y�漝ίߘ�~�?���w��3:�zAU����~�_�~����w|��ۗO���_��x�n������G�~~��{�=����4 \�=^���:.��6���B������������1Q�,�]�@�O�K�.gWT��i~�����u����S�H]ή��\����C�β���6<��鉺�]Q=p�η��S�H]ή�8P�_�2u9��z�s�2߆]�.G���9߃�64��+���lRu9��z�@�L�k��]ή��\�n��e��u��.p���9U��+���s�~�����|��N�]Q=�y�g3߆C��,�}�@�o�������|v�P]ή�8P�۰M�������;�6�ǜβ���t�^Cu9��z�@=M�K�.gWT���~�_������m��9���YF���:߃S�.gWT��e�@�.gWT��]8�Cu9��z�su?߆}��YV���:߆�!T��+���6l��:��z�@�o�&U��+�>W�is ?��,�]�@�O�K��SgWT��isN�����2�_���ꁃE#�m8�8u��.p�ηᐪ����x%Bk���{\"S{\�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q��e���a��%k���{\"S{\�@����=.�����%R��U�=.��=.�z �q�T�qA�y�K��=.�v���%R��U�=.��=.�z �q�T�qA�y�K��=.�v���%R��U�=.��=.�z �q�T�qA�q�K�j���{\"��� iq��%2��Q�=.��=.�z �qIԶDž�.���D����ꁼ�%R��U�=.��=.�z �qIԶDž�.���D����ꁼ�%R��U�=.��=.�z �qIԶDž�.���D����ꁼ�%R��U�=.Z{\д8�㒐��B������D=���D����ꁼ�%R��U�=.��������H�T=���D����ꁼ�%R��U�=.��������H�T=���D����ꁼ�%R��U�=.�z��j�{\"U{\P�@����オ���=.hZ�qI̶Dž�.���D����ꁼ�%R��U�=.��=.�z �qIԶDž�.���D����ꁼ�%R��U�=.��=.�z �qIԶDž�.���D����ꁼ�%R��U�=.��=.�z �qIԶDž�.���D����ꁸ�%Bk���{\"S{\�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q���ウ�����D=���D����ꁼ�%Q�R�@����オ��H�T=���D����ꁼ�%P�{\@�y�K�j���{\"U{\P�@����オ��Dm{\H�y�K�j���{\"U{\P�@����オ���2=��Dd�qA��x�Kdj���{\�;I�=.x��ǵ)����u��|e��zf��9���&4���eꌎ,{\����?���ˇ�����ׯ�^~y��?,�+o7��?�6��%p�m���e����X"����DmKH�y�@�j����K"UKP�@^"�Z"����@�/���%��%�z /�T-@�y�@�j����K�- ��%��%�z /�T-@�q�@��4-��$f["@h�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@\"��D�M��%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.��D�D���0\"��D�E��%��%�z /��P�@^"�Z"����H�T=��D���ꁼD Q�R�@^"�Z"����H�T=��D���ꁼD Q�R�@^"�Z"����H�T=��D���ꁸD A�D�L��%YK��8^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"�����%hZ.HH- ��x�@dj����K"UKP�@^"�Z"����DmKH�y�@�j����K"UKP�@^"�Z"����DmKH�y�@�j����K"UKP�@^"�Z"����@�/���%��%�z /�T-@�q�@��4-��$f["@h�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@\"��D�M��%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.�Dh-@��x�@dj����K"UKP�@^"��m���] /�T-@�y�@�j����K"UKP�@^"��%����D R�D�U�%��%�z /�T-@�y�@��%�v��D R�D�U�%��%�z /�T-@�q�@�j����K"�� iq�D 2�D�Q�%�:|�D��cY"���/_����e:ܾ��Q��~��:�u������u��Q]�tFk�H�O������?,���_�}}��>O��S�;�v��aw-h�o�Hվ.r\�~{!P����w�����r�;RU�F�����}��\�N�V�&���w�����r�;RU�F����U�F�������Mhȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�V�M���wd����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.�jߑ�ԾQ|��wV�E���wd����r�;P�oP�@�}G�jߨz #U�oT=�kߑ��7�ȵ�Dm�oR�@�}G�jߨz #U�oT=�kߑ��7�ȵ�Dm�oR�@�}G�jߨz #U�oT=�kߑ��7����U�L���wDV�I���wd����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����b�;B�����a�;!U�&�����}#�\��TվQ�@�}G�jߨz �վI�����}��\��TվQ�@�}G�jߨz �վI�����}��\��TվQ�@�}G�jߨz �^����w�����r�;RU�F����U�F�������Mhȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�V�M���wd����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.k�Z�o4-�kߑ��7�ȵ�HU�U��w���7�] #U�oT=�kߑ��7�ȵ�HU�U��w��kߠ��\��TվQ�@�}G�jߨz #U�oT=�k߉�jߤv�\��TվQ�@�}G�jߨz #U�oT=k� ��7����7�ǵ��T�Q�����վ�:���c�z\�_��X����Îk�uF���d/���?}�����>~��ۯo;�������ķ����[x/���r����qo/�q�z �����H���*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�X���*ǡiq\��L���@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�R9.2�r��aX���*ǡhq\��L���@.��j��HU9U�r\����r9.RU�C�����Gj��HU9U�r\����r9.RU�C�����Gj��HU9U�r\����r9.RU�C����*Ǒ�qX���*�!iq\��L���@.�E��q�z �����H���*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�\��T��P�@,�Eh��д8,�%��qDz��"S�8D=��q��r���HU9U�r\��r�] ��"U�8T=��q��r���HU9U�r\��r�] ��"U�8T=��q��r���HU9U�r\���q���\��T��P�@.�E��q�z ��"��qhZ��������*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�X���*ǡiq\��L���@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�b9.B����q9.2U�C���*ǡ�\�K�V�#��r\����r9.RU�C���*ǡ�\��{9�>��q��r���HU9U�r\����r9.Q[9��.��q��r���HU9U�r\����b9.AU�#���U�C���*�!�\��fWP���X�q�M�q9n|]9n�R��\�?�q7n9�j�^oD���vu�O��w������l�\��q;��/�?[�X������~~�����I�������M��w_��������6~�囋�_iq��˄�[/��8|�e"�+/ |�^`{�%��o�LH��H��W]&��tI���{.R��$���%���q ���.R/�$����� �/���݄T{�H���n@��.���݄To�H���nB��K��qe7!��%�ⸯ�����qY7!��%�Ⱙ��U�%�1�k� ��.��݀l] =�� �~.���܄T9�H��jnB��K��q/7 [-H��RnB��K��q#7!U�%�⸎��j�iq�� �V��㸈����iq��MH�p��8��&��DZ�o��o��8*�&�ҽ%�! +�ն·�^�/n+ο�ۇ�~6������~ o����e��\���5�i臯a4 ��2���(>��4t�44���Б�ihD=����> j��Б�ihT=���#U�Шz OCG���Q�@��N�6 Mj��Б�ihT=���#U�Шz OCG���Q�@��N�6 Mj��Б�ihT=���#U�Шz OCG���Q�@��NPMC��q8 �5 ����4tdjQ�i�H�44���Љڦ�I�y:R5 ���4t�jU�i�H�44���Љڦ�I�y:R5 ���4t�jU�i�H�44���Љڦ�I�y:R5 ���4t�jU�i��ih4-��R��DzOCG����@���TMC��< ���F�y:Q�44�] OCG���Q�@���TMC��< ���F�y:Q�44�] OCG���Q�@���TMC��< ���F�y:P��Р��< ���F�y:R5 ���4t��44���Љ٦� �y:R5 ���4t�jU�i�H�44���Љڦ�I�y:R5 ���4t�jU�i�H�44���Љڦ�I�y:R5 ���4t�jU�i�H�44���Љڦ�I�y:R5 ���4t��44���Б�ihD=����MC���4t�jU�i�H�44���Б�ihT=����MC���4t�jU�i�H�44���Б�ihT=����MC���4t�jU�i�H�44���Б�ihT=����MC���4t��44���Б�ihD=���#U�Шz OC'j��&��i�H�44���Б�ihT=���#U�Шz OC�}�>���#U�Шz OCG���Q�@���TMC��< ��m��.���#U�Шz OCG���Q�@���TMC��8 ����&��p:"kI��i���44����4�LC�u,���������v�����Y[��֙�i���4�_>|��������o��_��������4��֦o�rz����'2��ͪ��L�M߬z n�����ͪ��H�l;�] ̶g��l;��a4۞��l;����Y��z ζ'j�m'����L��vV=g�3�f�Y�@�m�Ԛmg�q�=R5ێj���Z���z ζgjͶ��8۞�5�Ϊ�l{�j��.g�3�f�Y�@�m�Ԛmg�q�=Sk��U�����v4=�f�3r�mg��p�=3k��Q���L��vV=g�#U���v�8۞�5�Ϊ�l{��l;����Z���z ζG�f�Q�q�=Sk��U���L��vV=g�3�f�Y�@�m�TͶ���l{��l;����Z���z Ͷg�2�Φ��l{D�l;����Y��z ζgjͶ��8۞�5�Ϊ�l{�j��.g�3�f�Y�@�m�Ԛmg�q�=Sk��U���H�l;�] ζgjͶ��8۞�5�Ϊ�l{��l;�����f�I�q�=Sk��U���L��vV=�f�3t�mg��p�=25ێh���Z���z ζgjͶ��8۞�5�Ϊ�l{�j��.g�3�f�Y�@�m�Ԛmg�q�=Sk��U���H�l;�] ζgjͶ��8۞�5�Ϊ�l{��l;���푪�vT�@�m�Ԛmg�i�=C��v6-g�3�f��@�m�TͶ���l{��l;����Z���z ζgjͶ��8���mG����L��vV=g�3�f�Y�@�m�Ԛmg�q�=R5ێj���Z���z ζgjͶ��8۞�5�Ϊ�l{�j��.�f�3t�mg��p�=3k��Q���L��vV=g�#U���v�8۞�5�Ϊ�l{��l;����Z���z ζ'j�m'����L��vV=g�3�f�Y�@�m�Ԛmg�q�=R5ێj���Z���z ζgjͶ��8۞�5�Ϊ�l{��l;�G���̶3iq8۞�5�Ψ�l;d'��|�g/�pͶ�u|�^��~e���:�u���e�����l{ҙ6ۮ�����/?�|k������v���o_����>���f6w�#��!���2��}<M�/p�u���ߎ/��v��^�s9��z�s���ot��YV�������]�.gWT��]ؤ�rvE���:�p��E�.gWT|��Ƽ^�ZgY��~:�Su9��z�@=�珡��]Q=p�η�x +���ꁃ^He�5oH��y�jޠ�ܼ�T5oP�@n�D��7�z 7o�5oH��y�K���0l�D`5oP�8n�D��7�z 7o����M��y��r�&RռA��y�jޠ�ܼI�ּ!���M��y��r�&RռA��y�jޠ�ܼI�ּ!���M��y��r�&RռA��y�jޠ�ؼIP5o��8l�Dd5o��8n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@n�D��7�z 6o"��7hZ6oR�"=��7��� ��͛HU�U��M��y��r�&Q[��.��7��� ��͛HU�U��M��y��r�&Q[��.��7��� ��͛HU�U��M��y��r�&P��P�@n�D��7�z 7o"U�T=�7Z�4-��7�ٚ7�v�ܼ�T5oP�@n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@n�D��7�z 7o"U�T=��7�ښ7�v�ܼ�T5oP�@l�Dh5oд8n�D��7�z 7o�5oH��y�jޠ�ܼ�T5oP�@n�D��7�z 7o�5oH��y�jޠ�ܼ�T5oP�@n�D��7�z 7o�5oH��y�jޠ�ܼ�T5oP�@n�D��7�z 7o�5oH��y�ռA��y�j� �ܼ�T5oP�@n�$jkސ�r�&RռA��y�jޠ�ܼ�T5oP�@n��yj�͛HU�U��M��y��r�&RռA��y���yCj�͛HU�U��M��y��r�&RռA��y��jސ�qؼ��j� iqܼ�L5o�@n�PU$h��u,͛��8��͛�u̿ ?Ϳ�������y�漝ίߘ�~�?���w��3:�zAU����~�_�~����w|��ۗO���_��x�n������G�~~��{�=����4 \�=^���:.��6���B������������1Q�,�]�@�O�K�.gWT��i~�����u����S�H]ή��\����C�β���6<��鉺�]Q=p�η��S�H]ή�8P�_�2u9��z�s�2߆]�.G���9߃�64��+���lRu9��z�@�L�k��]ή��\�n��e��u��.p���9U��+���s�~�����|��N�]Q=�y�g3߆C��,�}�@�o�������|v�P]ή�8P�۰M�������;�6�ǜβ���t�^Cu9��z�@=M�K�.gWT���~�_������m��9���YF���:߃S�.gWT��e�@�.gWT��]8�Cu9��z�su?߆}��YV���:߆�!T��+���6l��:��z�@�o�&U��+�>W�is ?��,�]�@�O�K��SgWT��isN�����2�_���ꁃE#�m8�8u��.p�ηᐪ����x%Bk���{\"S{\�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q��e���a��%k���{\"S{\�@����=.�����%R��U�=.��=.�z �q�T�qA�y�K��=.�v���%R��U�=.��=.�z �q�T�qA�y�K��=.�v���%R��U�=.��=.�z �q�T�qA�q�K�j���{\"��� iq��%2��Q�=.��=.�z �qIԶDž�.���D����ꁼ�%R��U�=.��=.�z �qIԶDž�.���D����ꁼ�%R��U�=.��=.�z �qIԶDž�.���D����ꁼ�%R��U�=.Z{\д8�㒐��B������D=���D����ꁼ�%R��U�=.��������H�T=���D����ꁼ�%R��U�=.��������H�T=���D����ꁼ�%R��U�=.�z��j�{\"U{\P�@����オ���=.hZ�qI̶Dž�.���D����ꁼ�%R��U�=.��=.�z �qIԶDž�.���D����ꁼ�%R��U�=.��=.�z �qIԶDž�.���D����ꁼ�%R��U�=.��=.�z �qIԶDž�.���D����ꁸ�%Bk���{\"S{\�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q�T�qA�y�K�j���{\"U{\P�@�㒨m��] �q���ウ�����D=���D����ꁼ�%Q�R�@����オ��H�T=���D����ꁼ�%P�{\@�y�K�j���{\"U{\P�@����オ��Dm{\H�y�K�j���{\"U{\P�@����オ���2=��Dd�qA��x�Kdj���{\�;I�=.x��ǵ)����u��|e��zf��9���&4���eꌎ,{\����?���ˇ�����ׯ�^~y��?,�+o7��?�6��%p�m���e����X"����DmKH�y�@�j����K"UKP�@^"�Z"����@�/���%��%�z /�T-@�y�@�j����K�- ��%��%�z /�T-@�q�@��4-��$f["@h�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@\"��D�M��%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.��D�D���0\"��D�E��%��%�z /��P�@^"�Z"����H�T=��D���ꁼD Q�R�@^"�Z"����H�T=��D���ꁼD Q�R�@^"�Z"����H�T=��D���ꁸD A�D�L��%YK��8^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"�����%hZ.HH- ��x�@dj����K"UKP�@^"�Z"����DmKH�y�@�j����K"UKP�@^"�Z"����DmKH�y�@�j����K"UKP�@^"�Z"����@�/���%��%�z /�T-@�q�@��4-��$f["@h�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@^"�Z"����H�T=��$j["@j�K"UKP�@\"��D�M��%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.��D���ꁼD R�D�U�%��%�z /HԶD��.�Dh-@��x�@dj����K"UKP�@^"��m���] /�T-@�y�@�j����K"UKP�@^"��%����D R�D�U�%��%�z /�T-@�y�@��%�v��D R�D�U�%��%�z /�T-@�q�@�j����K"�� iq�D 2�D�Q�%�:|�D��cY"���/_����e:ܾ��Q��~��:�u������u��Q]�tFk�H�O������?,���_�}}��>O��S�;�v��aw-h�o�Hվ.r\�~{!P����w�����r�;RU�F�����}��\�N�V�&���w�����r�;RU�F����U�F�������Mhȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�V�M���wd����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.�jߑ�ԾQ|��wV�E���wd����r�;P�oP�@�}G�jߨz #U�oT=�kߑ��7�ȵ�Dm�oR�@�}G�jߨz #U�oT=�kߑ��7�ȵ�Dm�oR�@�}G�jߨz #U�oT=�kߑ��7����U�L���wDV�I���wd����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����b�;B�����a�;!U�&�����}#�\��TվQ�@�}G�jߨz �վI�����}��\��TվQ�@�}G�jߨz �վI�����}��\��TվQ�@�}G�jߨz �^����w�����r�;RU�F����U�F�������Mhȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�����r�;RU�F�������Mjȵ�HU�U��w�V�M���wd����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.�kߑ��7�ȵ�HU�U��w�����r�;Q[��.k�Z�o4-�kߑ��7�ȵ�HU�U��w���7�] #U�oT=�kߑ��7�ȵ�HU�U��w��kߠ��\��TվQ�@�}G�jߨz #U�oT=�k߉�jߤv�\��TվQ�@�}G�jߨz #U�oT=k� ��7����7�ǵ��T�Q�����վ�:���c�z\�_��X����Îk�uF���d/���?}�����>~��ۯo;�������ķ����[x/���r����qo/�q�z �����H���*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�X���*ǡiq\��L���@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�R9.2�r��aX���*ǡhq\��L���@.��j��HU9U�r\����r9.RU�C�����Gj��HU9U�r\����r9.RU�C�����Gj��HU9U�r\����r9.RU�C����*Ǒ�qX���*�!iq\��L���@.�E��q�z �����H���*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�\��T��P�@,�Eh��д8,�%��qDz��"S�8D=��q��r���HU9U�r\��r�] ��"U�8T=��q��r���HU9U�r\��r�] ��"U�8T=��q��r���HU9U�r\���q���\��T��P�@.�E��q�z ��"��qhZ��������*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�\��T��P�@.�E��q�z �����H���*ǡ�X���*ǡiq\��L���@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�r9.RU�C���*ǡ�\��T��P�@.�%j+Ǒ�b9.B����q9.2U�C���*ǡ�\�K�V�#��r\����r9.RU�C���*ǡ�\��{9�>��q��r���HU9U�r\����r9.Q[9��.��q��r���HU9U�r\����b9.AU�#���U�C���*�!�\��fWP���X�q�M�q9n|]9n�R��\�?�q7n9�j�^oD���vu�O��w������l�\��q;��/�?[�X������~~�����I�������M��w_��������6~�囋�_iq��˄�[/��8|�e"�+/ |�^`{�%��o�LH��H��W]&��tI���{.R��$���%���q ���.R/�$����� �/���݄T{�H���n@��.���݄To�H���nB��K��qe7!��%�ⸯ�����qY7!��%�Ⱙ��U�%�1�k� ��.��݀l] =�� �~.���܄T9�H��jnB��K��q/7 [-H��RnB��K��q#7!U�%�⸎��j�iq�� �V��㸈����iq��MH�p��8��&��DZ�o��o��8*�&�ҽ%�! ���V�[�øv��jݒhqܹ]'��1��q�6!շ%��m��*�iq\�MH5m��8��d���q\�MHul��8n�&� �DZ�kR�Z"-���٪�@zkR�Z"-�[� �R-�ǕڄT��H��>m �N��a�6�KK�c7iPEZ-�k� �-��ڀlZ =�� ��,���لTy�H���lB�9K��qo6 [mH���lB�3K��qc6!U�%��.��j�iqܕ �V���(����iqܒMH�d��8��&b5d |�~l���q96Ս%����*�iq\�MH�b��8��d���q\�MH�a��8n�&�ʰDZWaRMX"-�{��j�@z�`RX"-�� �,���ׄT��H����:y����.��� ��+�ǭׄT�H���k"V���0�`����q\vMHu]��8n�&���DZ�\R-W"-�;��*�@z\R�V"-�ۭ �r+���քT��H��^k@�Z+�ǥքT��H��FkB��J��q�5!�f%������ ��q�5!�c%��Ś�Ub%�1�+� �+���Հl�U =�˫ ��*���ՄTq�H���jB��J��qg5 [eH���jB��J��q[5!UV%�⸪��j�iq�S �VS�㸤���iq�PMHT��8��&�کDZwS�US��8,�&b�R |�Vj��J��q%5!�H%�⸏��� ��q5!�E%�⸉��*�iq\CMH�P��8�� ��⸀���iq�>MH�O��8��&���DZ�N��N��8.�&�:�DZ7NR�S"-�� ��)��]�@T�@âi�Uϔ��0n�&�J�$ZWL��4L�"���C�s�/^������S»�����c�4�i����Y�z�����������mc���C��o�y;�m��p\�*z����\��õ�?:��z�s����]��YV�������}�.gWT��mئ�rvE���:߆�!T��+�>WO�i=fj�e����rI����u�ϧP]ή�8P/��t�������|��ZgY��|�P]ή�8P��1S�3+���6�Ru9��z�s�2߆���(�7 �{� ?p�� �u�7���]Q=p�^��5��.gWT|�^���~��YV�������T]ή�8PO��~�����|��N�]Q=�yi3߆C��,�}�@�o�������|v�P]ή�8P�۰M���ꁃ�%��H�FT�@� ����Uĵ0�Z{aX�@����j6-��D��� ��~�L�1�z �����ê▘L�51�z .��Tm�A��]1�Z�bX�@\���/�Uč1�Z+cX�@\���j�{c2�ǰꁸ:&Skw���c2��ǰꁸ@&R�A�.w�dj-�a�i�L�.{dش8�$���J�Q�e2��m2�v��O&Sk���+e2�vʰꁸU&Sk����e"U�eP�q�L��rV=��dj�a�q�L�֊V=��D��̠�➙L�E3�z �����5êL�u3�z .��Tm�A���3���t���0Z;����-7�df��a�q�L���3����&Sk ��+h2�vаꁸ�&Sk ���h"U�hP�qM��2V=��dj��a�q#M��JV=��D��Ҡ��^�L��4�z �����Mê�v�L��4�z -����P���ю��\��0iq��&3kO ���j2�Vհꁸ�&R���.��dj-�a�qeM���V=��dj��a�qqM�js �] ���Z^ê���L��5�z n���Zaê��H�T�@�c���ȆU�U6�Z�lX�@�f���:6-��Ddm�A��p�Mf�RF=��dj��a�q�M��jV=��D��۠��~�L�7�z �����qê▛L�57�z .��Tm�A��]7�Z�nX�@\w����Uč7�Z+oX�@\z��m� �} ���Z|ê��L��7�z m���e� ��p"Sp�qN��V=��dj��a�qN��*V=��D�����>�L��8�z ����ډê�V�L��8�z .ƉTm�A���8�Z�qX�@\�����U� 9�Z+rX�@\��ڒ�j�{r2��ꁴ*'C�]9lZn���Z�è�H��T�@ܙ���4�Uĵ9�Z{sX�@ܜ���:�U��9���9�v��?'Sk���+t2�v�ꁸE'Sk����t"U�tP�q�N��2V=��dj��a�q�N��JV=��D�����^�]�iq�Z'3k����u2���ꁸ`'R�a�.w�dj-�a�q�N�֞V=7�dj��a�q�N��m;����o'Sk���+w2�v�ꁸu'Sk����w"U�wP�q�N���V=��dj��a�qO�� -V=���Dhm�A��hOF.�x��8\œ����Q�m<�kf}_��[�3\����a{�����G����o�����]��~�w�i���v�lk+ϟ~zy\�������o/�,�����>~���o�j ��=��s�|z�ݼC��[1����Ő���T=��!��b��ŐDm�R�@.�D��!�z C"U�T=��!��b��ŐDm�R�@.�D��!�z C"U�T=��!��b��ŐDm�R�@*�D�RA�1�!X�-��!��b��Ő@�C@���*���\�TCP�@.�D��!�z C�CH���*���\�TCP�@.�D��!�z C�CH���*���\�TCP�@.�D��!�z CT�2=�!Y�$-��!��b��ŐHU1U�bH��b�] C"U�T=��!��b��ŐHU1U�bH��b�] C"U�T=��!��b��ŐHU1U�bH��b�] C"U�T=��!��b��Ő�b��Ő�T1�H��bHd���r1$RUA���*���\I�V!��bH����r1$RUA���*���\I�V!��bH����r1$RUA���*���\ �{1�>��!��b��ŐHU1U�bH�V1M��bHb�b�] C"U�T=��!��b��ŐHU1U�bH��b�] C"U�T=��!��b��ŐHU1U�bH��b�] C"U�T=��!��b��ŐHU1U�bH��b�] C"U�T=�!Z�4-��!��b��ŐDm�R�@.�D��!�z C"U�T=��!��b��ŐDm�R�@.�D��!�z C"U�T=��!��b��ŐDm�R�@.�D��!�z C"U�T=��!��b��ŐDm�R�@,�DhCд8.�D��!�z C"U�T=��!�ڊ!�v�\�TCP�@.�D��!�z C"U�T=��!�z/���r1$RUA���*���\�TCP�@.�$j+���r1$RUA���*���\�TCP�@,�$��!dzC"��!HZC"S�D=��!�d�!xK1䱅qC���C�+Ő�7Ƈ���!uFŐC�u��������������_���Ӈ_?��~{|��_>���~��__�|};8��N�<\b�u��ϓ�����|�mn��K�ͽ���C�yn.R57����\�jn�L�ù����9$-���"Sss�z ��E���P�@��K�67Gj�ss���9T=���"Uss�z ��E���P�@��K�67Gj�ss���9T=���"Uss�z ��E���P�@��K�67Gj�ss���9T=���"Uss�z ��Eh�͡iq87����#��xn.257����\�jnU乹H����ss����H�yn.R57����\�jnU乹H����ss����H�yn.R57����\�jnU乹H����ss�z���乹H����ss���9T=��"���д8��K�67Gh�ss���9T=���"Uss�z ��E���P�@��K�67Gj�ss���9T=���"Uss�z ��E���P�@��K�67Gj�ss���9T=���"Uss�z ��E���P�@��K�67Gj�ss���9T=��"���д8���L��!�<7��mn��.���"Uss�z ��E���P�@���T�͡�<7��mn��.���"Uss�z ��E���P�@���T�͡�<7��mn��.���"Uss�z ��E���P�@���T�͡�<7��mn��.��"���д8���L��!�<7���C�yn.Q���] ��E���P�@���T�͡�<7���C�yn.P�ss���<7���C�yn.R57����\�jnU乹Dmss�v�<7���C�yn.R57����\�jnUĹ�����ssYssHZ��E����@���pEssx�����xnn|�B���Y�ˁ������57�_�����ͻ�_�_mP�������n3'��1O��v��h}�v�_7�Tz�Է�4���7n�g�D]ή�8PO���Ru9��z�@�L�K��]1-�9��N��63�,�]�@���)U��+���w���]Q=p��w����H]ή��\�Ϸa�u��.p�ηaw����u� ��,F�rvE���:߆M�.gWT|����z��:�j8P������H]ή�8PO�未����e:�� +V=���Dhm�A��hOF.�x��8\œ����Q�m<�kf}_��[�3\����a{�����G����o�����]��~�w�i���v�lk+ϟ~zy\�������o/�,�����>~���o�j ��=��s�|z�ݼC��[1����Ő���T=��!��b��ŐDm�R�@.�D��!�z C"U�T=��!��b��ŐDm�R�@.�D��!�z C"U�T=��!��b��ŐDm�R�@*�D�RA�1�!X�-��!��b��Ő@�C@���*���\�TCP�@.�D��!�z C�CH���*���\�TCP�@.�D��!�z C�CH���*���\�TCP�@.�D��!�z CT�2=�!Y�$-��!��b��ŐHU1U�bH��b�] C"U�T=��!��b��ŐHU1U�bH��b�] C"U�T=��!��b��ŐHU1U�bH��b�] C"U�T=��!��b��Ő�b��Ő�T1�H��bHd���r1$RUA���*���\I�V!��bH����r1$RUA���*���\I�V!��bH����r1$RUA���*���\ �{1�>��!��b��ŐHU1U�bH�V1M��bHb�b�] C"U�T=��!��b��ŐHU1U�bH��b�] C"U�T=��!��b��ŐHU1U�bH��b�] C"U�T=��!��b��ŐHU1U�bH��b�] C"U�T=�!Z�4-��!��b��ŐDm�R�@.�D��!�z C"U�T=��!��b��ŐDm�R�@.�D��!�z C"U�T=��!��b��ŐDm�R�@.�D��!�z C"U�T=��!��b��ŐDm�R�@,�DhCд8.�D��!�z C"U�T=��!�ڊ!�v�\�TCP�@.�D��!�z C"U�T=��!�z/���r1$RUA���*���\�TCP�@.�$j+���r1$RUA���*���\�TCP�@,�$��!dzC"��!HZC"S�D=��!�d�!xK1䱅qC���C�+Ő�7Ƈ���!uFŐC�u��������������_���Ӈ_?��~{|��_>���~��__�|};8��N�<\b�u��ϓ�����|�mn��K�ͽ���C�yn.R57����\�jn�L�ù����9$-���"Sss�z ��E���P�@��K�67Gj�ss���9T=���"Uss�z ��E���P�@��K�67Gj�ss���9T=���"Uss�z ��E���P�@��K�67Gj�ss���9T=���"Uss�z ��Eh�͡iq87����#��xn.257����\�jnU乹H����ss����H�yn.R57����\�jnU乹H����ss����H�yn.R57����\�jnU乹H����ss�z���乹H����ss���9T=��"���д8��K�67Gh�ss���9T=���"Uss�z ��E���P�@��K�67Gj�ss���9T=���"Uss�z ��E���P�@��K�67Gj�ss���9T=���"Uss�z ��E���P�@��K�67Gj�ss���9T=��"���д8���L��!�<7��mn��.���"Uss�z ��E���P�@���T�͡�<7��mn��.���"Uss�z ��E���P�@���T�͡�<7��mn��.���"Uss�z ��E���P�@���T�͡�<7��mn��.��"���д8���L��!�<7���C�yn.Q���] ��E���P�@���T�͡�<7���C�yn.P�ss���<7���C�yn.R57����\�jnU乹Dmss�v�<7���C�yn.R57����\�jnUĹ�����ssYssHZ��E����@���pEssx�����xnn|�B���Y�ˁ������57�_�����ͻ�_�_mP�������n3'��1O��v��h}�v�_7�Tz�Է�4���7n�g�D]ή�8PO���Ru9��z�@�L�K��]1-�9��N��63�,�]�@���)U��+���w���]Q=p��w����H]ή��\�Ϸa�u��.p�ηaw����u� ��,F�rvE���:߆M�.gWT|����z��:�j8P������H]ή�8PO�未����e:�� �������6��:�j8P��pH����u� �/�����|��N�]A=p����B�β��z+E��5�z ��"R��T=�_s�z��ȯ�H���R�@~�E��5�z ��"R��T=�_s�z��ȯ�H���R�@~�E��5�z ��"R��T=�_s�z��ȯ�H���R�@z�Ed.��@�1_s���-�_s�z��ȯ���k.@��5���\�����H�k.P�@~�E��5�z ��"Q�k.H��5���\�����H�k.P�@~�E��5�z ��"Q�k.H��5���.��u�HU]U�n�����b]7AU�%�㰮�U�E�⸮���"�\T�uQ�@��&j���r]7RU�E�������\T�uQ�@��&j���r]7RU�E�������\T�uQ�@��&j���r]7RU�E�������XЪ�iqX�MH�u��8��F�꺈z �u#Uu]T=�뺑��.��u�Dmu]R�@��F�꺨z �u#Uu]T=�뺑��.��u�Dmu]R�@��F�꺨z �u#Uu]T=�뺑��.��u�@��uA�������\T�uQ�@��Fh�uѴ8��&f���r]7RU�E�������\T�uQ�@��&j���r]7RU�E�������\T�uQ�@��&j���r]7RU�E�������\T�uQ�@��&j���r]7RU�E����U�E�⸮���"�\�M�V�%��n�����r]7RU�E�������\�M�V�%��n�����r]7RU�E�������\�M�V�%��n�����r]7RU�E�������\�M�V�%�ĺn�V]M��nd����r]7RU�E�������Kj�u�HU]U�n�����r]7RU�E������.�} �u#Uu]T=�뺑��.��u�HU]U�n���.�] �u#Uu]T=�뺑��.��u�HU]Uĺn���K��a]7"�����q]72U�E���;��Fu]�����؍�u�������'���S��:t8L�����.����R�UU����l��ח/����/_�+����x���]x[���G%���4^gi� -u����r���ї��D]ή��\=m���g��ZgY��~�\Ru9��z�@=M���K�.gWT���r:��rvE����y� �P���v�u� �їH]ή�8P��p�b�.gWT��mإ�rvE����e� �]���qr��mh.gWP��=ؤ�rvE���z�������]Q=�z���gj�e����|N�����4�N��\�]Q=p�η�~�����W{6�m8d����6�O���]Q=p�ηaw����u� �T]ή�8�1RKW�mq!��-.��-.�z oq�TmqA�q�K��4-���$f��Bh�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@�����M��-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.���D����0�����E��-.��-.�z oq ��P�@����₪��H�T=���D����ꁼ�%Q�R�@����₪��H�T=���D����ꁼ�%Q�R�@����₪��H�T=���D����ꁸ�%A�ŅL��-.Y[\��8����₨��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪���-.hZnqIHmq!��x�Kdj���[\"U[\P�@����₪��Dm[\H�y�K�j���[\"U[\P�@����₪��Dm[\H�y�K�j���[\"U[\P�@����₪��@�oq��-.��-.�z oq�TmqA�q�K��4-���$f��Bh�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@�����M��-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.��DhmqA��x�Kdj���[\"U[\P�@�⒨m��] oq�TmqA�y�K�j���[\"U[\P�@����-.�����%R��U�-.��-.�z oq�TmqA�y�K��-.�v���%R��U�-.��-.�z oq�TmqA�q�K�j���[\"��� iq��%2��Q�-.�$���e���e7�-.������L��W [\���������x�=oT�!���mmr��O_?��ϟ~�q�������o/�_�������/_�.������ۏ����?X�������f��o_>|�������O?�|}��x+�ݯ��J��u����������?�}{!��U����В���H�ZT=��F�Т���6R��U����В���H�ZT=��F�Т���6R��U���z@j�h#UhQ�@~@�z@������hZ?�M�����.��F�Т���6R��U������z ?�M�����.��F�Т���6R��U������z ?�M�����.��F�Т���6R��U������z ?�M�����.��F�Т���6B�-��h#Sh�@~@���-�] ?��T=�E��m��-��h#UhQ�@~@���-�] ?��T=�E��m��-��h#UhQ�@~@���-�] ?��T=�E��m��-��h#UhQ�@~@���-�] >���z@�������ZD=��F�Т���6Q�ZR�@~@�z@����H�ZT=��F�Т���6P�hA��m��-��h#UhQ�@~@�z@����DmhI��m��-��h#UhQ�@~@�z@�����Z2=�Fd=�E���md�-��h�O��x�ڇˀ������V�������rD�gw�x��_o�f���������_����7d�Y��������O_>����r���$�9\먞�����������_�-�e=�����Ƿ�z�����l�:�ޗ�~t_�|�߆����m��ys��H���= ��=DZ/�IH��!��xkOBji��+{�m���x_OBj]���zR�z��8�ԓ�Z�C��@Ԗ�-w�$^��!�1��$���hq��'!���H���<�6���q��'!���H��< ��<DZo�IH-�!��xO@�m<@z��IH��!��xOBj��[xRKx��8^��m���wR�w��8^���ڽC����D��;>��ڝ����,�w�$�V�hq�p'!5�I���0gBj��H��Il��@z�q&��8��8��LH�piq<�����$��xz3 ��&�ǣ� ��M"-��6Rc�DZm&�f6��8��\'��c���q̈́Դ&�dz� �QM"-5��4 |�)��lC� z�h&�&4��8��LH�giq<�����$��x23 �`&��c� ��L"-�g2R#�DZd&��1��8���6� ���(fBj�H��9̄�&��C� �L"-�'0� `�q<~����$��p�2k����0�L@�]�hq<u�m�H��˄��%��� �qK"-��-R��DZOZd���x�2!5eI���eBjĒH��˄�|%��ӕن+��8�LHMViq<W���$��x�2!5SI���De@��J =�)��) |�Y��(%�ǃ� �9J"-��(� Q�q<B����$��x~2!5>I����dBjv�H����u�>89&�8�LHMMiq<3���$��x`2!5/I���d@�aI =�G%R��DZ�I&��$��8�LH�Hiq8!����p<2�j:���0��L@�F�hq< �w�\$]�2y���v89���?��o?���5���P?�>��O/����2y���3��m������Ϳ��ߥ��2]�.L���������6m��Bުu��.p����'����]Q=p����6U��+���6��n"u9��z�s������&j�e����rI�����4�o�7���]Q=p�^���g����]Q=�z�o�1T�,�]�@�o�m'R��+���6<�E]Q=p�ηa���������6��/G���9߃�64��+���lRu9��z�@�L�k��]ή��\�n��%�����v�u?�ϩ��]Q=p����)����+���6��:��z��7}o��p�T�E���m؟Bu9��z�@�o�������|����]Q=o�&���YV�����N�k�.gWT��i{I����u��X� ~=�bZ�sr�����Gg��|N���]Q=p��������u��}�.gWT|���۰�:�j8P�۰;��rvE���:߆m��SgWT��mؤ�rvE����a;m���\�e����x ?p����4mΩ��]Q=p�^�c��p�]Q=�z�o�1�����v�u� �T]ή�8P���"�]1-n@��`~���������B�β���lÏ�:��z�@���&U��+���t��suvE����y3]/�?�u��.p���9U��+���|>����+���6Ï�:��z�s�2߆C��YV���:߆}�1WgWT��msuvE���:߆m�.gWT|�^�۰ ?��,�]�@�oCh�N���a�8�d]���7 /��~������6��r�>jt�>p���)U��+���.����]Q=p���H�NT=���$j[Cjȋa"U�aP�@� �Z���z�H�~T=�7�$j[Cj�Kb"U[bP�@��Z���HծT=��$��Ő�q�0&"kc��;c"SKc�@^������Dm�cH�yyL�j{���c"UdP�@^!��!����DmkdH�y�L�j��Ȼd"U�dP�@^'��'���F�Dm+eH�y�L�j���{e"U�eP�@\-��[M���2 ��2Dz/��Lm�A�y�L�j���kf"U{fP�@�4��m��] /��Tm�A�y�L�j���+g"U;gP�@�:��m��] /��Tm�A�y�L�j����g"U�gP�@�@��4�����&R��U�=4��E4�z �����E����6��l�h�y!M�j# ��;i"UKiP�@^K��K���f�Dm�iH�y9M�j; ���i"UjP�@^Q��Q���DmkjH�yQM�jS �Ȼj"U�jP�@^W��W���ƚDm+kH�yiM�jk ��{k"�נiq��&2��Q��5���א���H�T=�w�D��ؠꁼ�&R��U�M6��Vِ��2�H�6T=���D�ڠꁼ�&R��U�6���ڐ��b�H�fT=�w�D��۠ꁼ�&R��U� 7��Vܐ�⒛�-7hZ﹉L-�A�y�M�j� ���n���!��7���7�z )T-�A�y�M�j� �țo����>���D��ߠꁼ�&R��U�8��8�z o�IԶ��.��D�6�ꁼ'R�U�u8��}8�z n�IP��!��p)ND�V$-���D�� ꁼg��%ڍ�ױ,�y�؎3���흁���[Tzi��hA�v����������/?��?^>~���������?����ou�_>��m���9��_>���ۡ�ۏX��=\�������Ps��e���9�|r!�9AT�@��Ԛd�qN0SkN�U�9�L�9AV=��#����8���eN�I��9�̬9AF=�3��Y�@��T� ���`�֜ ��s��Zs��z � fj� ��8'��D��9�L�9AV=�3��Y�@��Ԛd�qN0R5'�j�s��Zs��z � fj� ��4'��˜ �Gs�Ys�Hz� ff� 2�8'��5'Ȫ�`�֜ ��s���9AT�@��Ԛd�qN0SkN�U�9�L�9AV=�#Us��v�8'��5'Ȫ�`�֜ ��s��Zs��z � &j�$��9�L�9AV=�3��Y�@���eN�M��9��Ԝ �] � fj� ��8'��5'Ȫ�`�֜ ��s���9AT�@��Ԛd�qN0SkN�U�9�L�9AV=�#Us��v�8'��5'Ȫ�`�֜ ��s��Zs��z � F��Q�qN0SkN�U�9�]�ٴ8��̚d�qN0R5'�j�s��Zs��z � fj� ��8'��5'Ȫ�`�jN�.�3��Y�@��Ԛd�qN0SkN�U�9�H՜ �] � fj� ��8'��5'Ȫ�`�֜ ��s���9AT�@���eN�M��9�̬9AF=�3��Y�@��T� ���`�֜ ��s��Zs��z � fj� ��8'��mN��>�3��Y�@��Ԛd�qN0SkN�U�9�H՜ �] � fj� ��8'��5'Ȫ�`�֜ �Hs�Zs�hz� f�2'Ȥ��`f֜ ��s�8��>'���z��2�s�p�o�O���o��;��N�ٙ�v:�~c�ߵ�/�vA����ꌎ�^PM�����>����_\y���;��f�݃�_�v:������Ut�:�x��7W=���X�@|sU�֛�X�@zsU�֛���8|sUf֛��@|sU�֛�X�@|sU�֛�X�@|sU���U�v���L�7W����L�7W����L�7W����Dmo�"��7Wej���U�7Wej���U�7Wej���U�7WE��\�j�o���zs��o���zs�Ho�����UlZ��*2��*D�@|sU�֛�X�@|sU�֛�X�@|sU�֛�X�@|sU���U�v���L�7W����L�7W����L�7W����H՛�P���U�Zo�b���U�Zo�b���U�Zo�b���U��7W��⛫2��\Ūқ�2tys��o���zs��o��T�� -�.�\����*V=�\����*V=�\����*V=�\�zs�] ��*S��U�z ��*S��U�z ��*S��U�z ��*R��*T�@|sU�֛�X�@|sU�֛�X�@|sU�֛�X�@|sU���U�v����|}s��a��\�\Ţ�᛫2��\Ũ⛫�����>�\����*V=�\����*V=�\����*V=�\�zs�] ��*S��U�z ��*S��U�z ��*S��U���6R���F�H�F -T=�7RD�6R�ꁼ�"R��Uč ��dzn����H����F���F -D=�7RD�6R�ꁼ�"Q�F -R�@�H��H���_���ș����*:y� -���}j)� 9 䄒�"#��p�H�>ռ��Ukw�W]s��N*�W3���}���"�Rs���J�E -T{�/Ru^� u�J�E -T{�/R(5)P�A�H��\�@��"�Q�E -R�A�H��\�@��"�Rs��ċ -)Ь9�Ha�\� ���"�2s���J�E -T{�/R(5)P�A�Ha�y���e�/R(5)P�A�H��\�@��"�Rs���F�)H]�"�Rs���J�E -T{�/R(5)P�A�H!��E -P�A�H��\�@��"�Rs��ċ -)Ь9�Ha�y���e�/R(5)P�A�H��\�@��"�Rs���F�)H]�"�Rs���J�E -T{�/R(5)P�A�Ha�y���e�/R(5)P�A�H��\�@��"�Rs���F�)H]�"�Rs��ċ -)Ь9�H��\�@��"�Q�E -R�A�H��\�@��"�Rs���J�E -T{�/Ru^� u�J�E -T{�/R(5)P�A�H��\�@��"�Q�E -R�A�H��\�@��"�Rs���J�E -T{�/Ru^� uċ -)Ь9�H��\�@��"�Rs���F�)H]�"�Rs���J�E -T{�/R(5)P�A�H!��E -P�A�H��\�@��"�Rs���J�E -T{�/Ru^� u�J�E -T{�/R(5)P�A�H��\�@��"�As��̞Ë�)��9�H��\�@��"��eu���v�������E������x�D�]��}�3��<|t��<�mW+^����G���ժy��ݛ����>|�XW*���ۧ/�_֣���ާ�\x/���?>���;'��}g�{���ݗ_�]T{��]�&�E�1�U�HvѬ9Nv�9�]B�ANv��d��dW�IvQ�ANv��d��dר3�%u�dW�IvQ�ANv��d��dW�IvQ�ANv�:�]R�ANv��d��dW�IvQ�ANv��d��dר3�%u�dW�IvQ�ALv:�]4k��]e&�E�9�5�LvI]9�Uj�]T{��]�&�E�9�Uj�]T{��]��d��e��]�&�E�9�Uj�]T{��]�&�E�9�5�LvI]9�Uj�]T{��]�&�E�9�Uj�]T{��]��d��e��]en�.��c��*p$�(�'��L��hr�+�s��:�ɮR��ڃ��*5�.�=�ɮR��ڃ��u&��.���*5�.�=�ɮR��ڃ��*5�.�=�ɮQg�K�2�ɮR��ڃ��*5�.�=�ɮR��ڃ��4�.�=�ɮ"G��d�q���$��� '�JM��jr�kԙ쒺r���$��� '�JM��jr���$��� '�F��.�� '�JM��jr���$��� '�JM��jr�kԙ쒺r���$��� '�JM��jb��Б�Ys��2�.�=�ɮ2��"ڃ��*5�.�=�ɮR��ڃ��u&��.���*5�.�=�ɮR��ڃ��*5�.�=�ɮQg�K�2�ɮR��ڃ��*5�.�=�ɮR��ڃ�� -��삺r���$��� '�JM��jb��Б�Ys��s&��.���*5�.�=�ɮR��ڃ��*5�.�=�ɮQg�K�2�ɮR��ڃ��*5�.�=�ɮR��ڃ��u&��.���*5�.�=�ɮR��ڃ��*5�.�=�ɮQg�K�2�ɮR��ڃ��*t$�h�'��L��hr�kԙ쒺r���$��� '�JM��jr���$��� '�F��.�� '�JM��jr���$��� '�JM��jr�kԙ쒺r���$��� '�JM��jr���$��� '�F��.�� &� -�.�5�ɮ2��"ڃ��*5�.�=�ɮQg�K�2�ɮR��ڃ��*5�.�=�ɮR��ڃ�� -��삺r���$��� '�JM��jr���$��� '�F��.�� '�JM��jr���$��� '�JM��jb�k�$�d�&���.�5�ɮ2��"ڃ��Rr*�]�[�{Y��'����w�����_���b_�u���鿠����������o��3�v�������O߾|��������㛯����/_?�ڟ��ͅ�~ɛ����N�;���� ����m��/m�=�m�Rӆ�ڃ܆u�!�.�܆(5m�=�m�Rӆ�ڃ܆(5m�=�m�QgB�2�m�Rӆ�ڃ܆(5m�=�m�Rӆ�ڃ܆u�!�.�Ԇ(skCP��6D�� A�� Qf�D{�����P�AnC��6��6D�iCP�AnC��6��6Ĩ� !u�6D�iCP�AnC��6��6D�iCP�AnC�:�R�AnC��6��6D�iCP�AnC��6��6ĠiC��9lC9�$k��e� A�� Qj�T{����6��e���� A�� Qj�T{���� A�� 1�lCH]� Qj�T{���� A�� Qj�T{����6��e���� A�� Qj�T{���6͚�6ĐiC��9nC��6��6D�iCP�AnC��6��6Ĩ� !u�6D�iCP�AnC��6��6D�iCP�AnC�:�R�AnC��6��6D�iCP�AnC��6��6D��6�u���� A�� Qj�T{���6͚�6Ę� !t�6D�iCP�AnC��6��6D�iCP�AnC�:�R�AnC��6��6D�iCP�AnC��6��6Ĩ� !u�6D�iCP�AnC��6��6D�iCP�AnC�:�R�AnC��6��6D�� A�� Qf�D{����6��e���� A�� Qj�T{���� A�� 1�lCH]� Qj�T{���� A�� Qj�T{����6��e���� A�� Qj�T{���� A�� 1�lCH]� Q�hCЬ9nC��6��6D�iCP�AnC�:�R�AnC��6��6D�iCP�AnC��6��6D��6�u���� A�� Qj�T{���� A�� 1�lCH]� Qj�T{���� A�� Qj�T{��� !�� Q�hC��9nC��6��6d?ePm~�� �1�ې���+ې���4d�Hʐ�Q����/_~�����?��������?������>~��˟_{[���?�̯��9}��:d����+�Ͼ����_|x�Md��oA��@���6��ܛ��)|�m��֛��1~�m�<�&�����u���{�\����!�ěȚ�ކ��n"k�_w2����9~�-���Ȟ�w݆̳n"k�u2o���9~�m�<�&���9� �kn {��r2O���9~�mȼ�&����!�Ț�'�B�n�k�oo<�&�r�o0o�I�9~�m�<�&���ٶ �m {��l2O���9~�mȼ�&�����!�X�Ț�ڂ�/���9~�m�<�&�����!�F�Ț�چ�m"k��gr�����m�!�4�Ț�ن̻l"k_eq<�&�r�d//���1~�m�<�&���1�!��Ț�؆�Cl"k��ar����� �!��Ț�؆��k"k�__2����9~z-���Ȟ�w׆̳k"k�]2o���9~qm�<�&�����u���z�\����!�ԚȚ�ֆ�;k"k_Yq<�&�r��Xp�����}�!�Ț��Ն��j"k�_V2���9~V-���Ȟ�7Ն̓j"k�T2爫�9~Mm�<�&���)� �Kj {��Q2Ϩ��9~Dmȼ�&����!�Ț��ӂ�����9~;m�<�&����ǻi/��մ�h�Ě�'ӂ�/���9~/m�<�&�����!�V�Ț�҆�Ci"k��Ir�������!�D�Ț�҆��h"k�_G2����9~-��2Ȟ�wц̳h"k�E2o���9~m�<�&���9� �kh {�Bq<�&�r�B0�I�9~m�<�&��� � �h {��?2ϟ��9~�lȼ}&����!��Ț�g�����}r��7φ̓g"k�<2�9~�l�<v&����� �Kg {��92Ϝ��9~�lȼq&�����!���Ț���B��f�k�6o<m&�r�60�I�9~ռ�W=j�/��i�xA���y�K,/�o��h��=�K�G~�<>�7ͷ�M��y{s��?r���ݛ/��_����˃�?�x�z�xx��ϗ�wx������Λ������5�C� /������;��/�}��ڃ;����{�n�������x���WJ�>{E���������2��,����z�c�����+j?�;�~����v�ӟ��Q��g��=�� �?���ϲ���7,���@��G1���@��G1���@��G1�:��e�C��QT{�C��QT{�C��QT{�è�G1H]�G1���@��G1��8 -��<J��P�A.��:)R�A����UR(^�a'��J�Xs�J)3��=ȵ�PϹ�� SJM1�jr3��DS�� gSJM7�jr9eԙN��r<���S�� �SJM@�jrB��4T�� WTF��� �TJMI�jrK���T�� �TJMO�jbQe�$Ud�FU�U�5�]�2V!ڃ�V)5m�=�u�Qg^E�2ȁ�RSX�ڃ�X)5��=ș�R�Y�ڃ\Zu�V�.�[)5��=Ƚ�R\�ڃ�\)5��=�ՕQgvE�2��RS^�ڃ�^)5��=���BG�f�a�e�$XD�GX�L��hr��ԄX�� �XJM��jr�eԙc��r���Y�� 7YJM��jr���tY�� �YF�i�� �YJM��jr���Z�� 'ZJM��jr�%�s��:ȡ�RSj�ڃ�j)5��=���BG��f�q�e̙l�r���T[�� w[JM��jr��Դ[�� �[F���� \JM��jrå�D\�� g\JMDžjr�eԙr��r̥��\�� �\JMЅjrҥ�4]�� W]F�Y�� �]JMمjbۥ�w�Ys�w)3}�=ȅ�Qg�E�2ȑ�RSy�ڃ�y)5��=ȩ�R�z�ڃ\{u�^�.�|)5��=�͗R}�ڃ�})5��=��Qg�E�2��RS�ڃ�)5�=� �RӀ�ڃ\�uf`�.��)t�`h��`�L�hr���`�� aF�I�� GaJM�jr�Ԅa�� �aJM�jr&�s�:ȁ�RS��ڃ܈)5��=ș�RӉ�ڃ\�u�b�.��)5��=Ƚ�R��ڃ��)5��=�A����s�)r�cH��c�L<�hr>�_;�~���]�Z�������?�q���1&d�3I��/����俾=���/��<~+��O����V����^��������Y�����x�ב�4�Bf�r������"���ڃ��(5i +u����r���ї��D]ή��\=m���g��ZgY��~�\Ru9��z�@=M���K�.gWT���r:��rvE����y� �P���v�u� �їH]ή�8P��p�b�.gWT��mإ�rvE����e� �]���qr��mh.gWP��=ؤ�rvE���z�������]Q=�z���gj�e����|N�����4�N��\�]Q=p�η�~�����W{6�m8d����6�O���]Q=p�ηaw����u� �T]ή�8�1RKW�mq!��-.��-.�z oq�TmqA�q�K��4-���$f��Bh�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@�����M��-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.���D����0�����E��-.��-.�z oq ��P�@����₪��H�T=���D����ꁼ�%Q�R�@����₪��H�T=���D����ꁼ�%Q�R�@����₪��H�T=���D����ꁸ�%A�ŅL��-.Y[\��8����₨��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪���-.hZnqIHmq!��x�Kdj���[\"U[\P�@����₪��Dm[\H�y�K�j���[\"U[\P�@����₪��Dm[\H�y�K�j���[\"U[\P�@����₪��@�oq��-.��-.�z oq�TmqA�q�K��4-���$f��Bh�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@����₪��H�T=���$j��Bj�[\"U[\P�@�����M��-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.���D����ꁼ�%R��U�-.��-.�z oqIԶŅ�.��DhmqA��x�Kdj���[\"U[\P�@�⒨m��] oq�TmqA�y�K�j���[\"U[\P�@����-.�����%R��U�-.��-.�z oq�TmqA�y�K��-.�v���%R��U�-.��-.�z oq�TmqA�q�K�j���[\"��� iq��%2��Q�-.�$���e���Ҕ�p���:�?l/���U����:�u���v:^v��uHg��e[�\�������_\��?���������~����ׯ��~����?�������������_�u����ۗ�>}�u�/����/_�=>ފ`��}��z���?����=�}�j�h�^<�E��m����v���6R��U������z ?��T=�E��m����v���6R��U������z ?��T=�E��m��Ђ���H�ZT=��F�Т���6B�-��h�=�%�������z ?��T=�E��m��-��h�=�%�������z ?��T=�E��m��-��h�=�%�������z ?��T=�E��m��-��h�=�%�������z >���z@�������ZD=��&j{@Kj�h#UhQ�@~@�z@����H�ZT=��&j{@Kj�h#UhQ�@~@�z@����H�ZT=��&j{@Kj�h#UhQ�@~@�z@����H�ZT=��&j{@Kj�h#�Тiq��62��Q������z ?�M�����.��F�Т���6R��U������z ?� ��ZP�@~@�z@����H�ZT=��F�Т���6Q�ZR�@~@�z@����H�ZT=��F�Т���6A���L���Yh��8~@�z@�������-^����i����:������E�{~>����]=����ۣ���������.���i�Gu� �yVn������ӗ�߾���}�? l�:�g����~w|�����o�YOt��?������t��:۾����ݗ�������{�\l���xwOBju�Nj{R{{��8�ړ�Z�C���ʞ�l{��8�ד�Z�C��Ԯ"-�7�$��iq��'��@�=�W+z�{�= ��<$Zo�IH-�!��x5O@��<@z��IH��!��x)OBj'��yRy��8^��m�ǻxR�x��8^ē���C������"-�W�d����������"-���$�v�iq�y'k���a�v'�u<�; ��;$Z/�IH�siq<̙���$��x�3 � '��c� �)N"-�g8R#�DZp&��7��8���6� ����fBjr�H��̈́��&��C� ��M"-�'6�������x\3!5�I���fBjT�H��A�D�9M�xJ3�ې&��#� � M"-��3R�DZg&�f3��8���6� ���XfBj*�H��̄�H&��� �yL"-��1� c�q<�����$��x3!5�I���fBj�H�� ̀l�@z�_&��/��8��L��$�1�/Ps�$ZO]d���x�2!5qI���eBjܒH��a˄Ԭ%�Ǔ��-��8�LHMYiq<c���$��x�2!5_I���te@��J =�G+R��DZ�U&��*��8�LH�Tiq<Q�m�H��q�D�iJ�x�25JI��� eBj��H��)ʀlC�@z�P&�&(��8��LH�Oiq<<����$��xrr��N��.��&RS�DZ�L&�F&��8�LH�Kiq<-�mXH��QɄԤ$��s� �1I"-��$R3�DZNH�$�0�L���$�1�g#P��$ZF��]0I��Eޯ�NE/�������)ak��ar:��O���˩3:�E�n�Lw}��i�y�=��w�}��wi{�Lӡ�+{s����t�Mۼ���j�e����z��h�.gWT���M����u� ���H]ή��\=m���G��ZgY��~�\Ru9��z�@=M���M�.gWT���r�Yi�.gWT|����p�:�j8P��pĉ����u� ��|�.gWT��mإ�rvE����e� �/��Q6=n@��`� ��� +�u��T]ή�8P/���~��+�>W��iw ?p�,�]�@�O�s�.gWT��iw +?����u� ���ή���Mߛ�62UgQ��|��P]ή�8P�۰;��rvE���:߆m�.gWT|�n�۰�>�t��.p���������i�^Ru9��z�@��<�~�_������m��9���YF���:߃S�.gWT��=8�Bu9��z�@���a��������6�C�β���6����]Q=p�ηa~�����|6���]Q=�z�N�k�1WgY��~:^��:��z�@=M�s�.gWT����*\gWT|���p?p�,�]�@�o�!U��+���6��H,GWL���=؇8uv����i��P���v�u���c�ή�8P绰I�����2���\�]Q=�z�L�K�Op�e����pN�����8�?����u� ��c�ή��\�̷��u��.p�ηa~�����|v��\�]Q=p�ηa���������6l�:�j8P�����+�c��;N�Y��+�� �˴��puv��煤�f�����E���iJ����u��}�.gWT���%R�U�0�����b�H�fT=�w�D��àꁼ&R�U� 1��VĐ��HՖT=���D�Šꁼ*&R�+U�m1 �u1dz.��������Θ���D=���D��Ơꁼ9&Q��R�@^�������H�T=�W�D�vȠꁼE&Q�R�@^$��$���.�H�2T=���D��ɠꁼQ&Q�JR�@^*��*���^�H�bT=W�Dh�A��p�LBj���f"Sf�@�1�Z2���H՞T=�7�$j[5Cj��f"U�fP�@�7�Z8���ʙH��T=���$j[;Cjȋg"U�gP�@�=�Z>�����H��T=�7��} �} /��Tm�A�yM�j ���h"�vѠiq��&1�:B�@^H��H���N�H�RT=���D��Ҡꁼ�&Q�jR�@^N��N���~�HՂT=�W�D�vԠꁼ�&QۚR�@^T��T���HղT=���D��ՠꁼ�&Q��R�@^Z��Z���ޚ��5hZ���L��A�y{M���5�v���&R��U�6��%6�z ���T��A�y�M��U6�v���&R��U�}6���6�z ���T��A�y�M���6�v���&R��U��6���6�z ���T��A�y�M��7�v���&Bk� ��{n"S�n�@^u��u���Dm�nH�y�M�j� ��;o"UKoP�@^{��{����@������7���7�z T-�A�yN�j��[p���!��E8��M8�z �T-�A�yN�j��qT+q��8\���I��8���8�z ��o}�v��u,�q.�㌯�o{g�����^�3Z�����~�}}��u��O������>��~�������ϟ>~��[���w�������O��v(��#��w�����?oG�Ԝ }�:��e��\�xN�.�3��Y�@��Ԛd�qN0SkN�U�9��9A4=��3r�d��pN03kN�Q�9�L�9AV=�#Us��v�8'��5'Ȫ�`�֜ ��s��Zs��z � F��Q�qN0SkN�U�9�L�9AV=�3��Y�@��T� ���`�֜ ��s��Zs��z � f�2'Ȧ�ќ`D֜ ��s��Ys��z � fj� ��8'��5'Ȫ�`�jN�.�3��Y�@��Ԛd�qN0SkN�U�9�H՜ �] � fj� ��8'��5'Ȫ�`�֜ ��s����I�qN0SkN�U�9�L�9AV=��3t�d��pN025'�h�s��Zs��z � fj� ��8'��5'Ȫ�`�jN�.�3��Y�@��Ԛd�qN0SkN�U�9�H՜ �] � fj� ��8'��5'Ȫ�`�֜ ��s���9AT�@��Ԛd�iN0C�9A6-�3���@��T� ���`�֜ ��s��Zs��z � fj� ��8'��D��9�L�9AV=�3��Y�@��Ԛd�qN0R5'�j�s��Zs��z � fj� ��8'��5'Ȫ�`�jN�.��3t�d��pN03kN�Q�9�L�9AV=�#Us��v�8'��5'Ȫ�`�֜ ��s��Zs��z � &j�$��9�L�9AV=�3��Y�@��Ԛd�qN0R5'�j�s��Zs��z � fj� ��8'��5'ȪҜ`�֜ �Gs��� 2iq8'��5'Ȩ� Ϋ�� �u��y��� \���������k�{v漝ίߘ�wm�˱]�~w��:�#�T�����Ͽ|����Wު7�x�����ײ�N���zzs]�=^���UO.d��*V=�\����*V=��\���*4=�\����*F=�\����*V=�\����*V=�\�zs�] ��*S��U�z ��*S��U�z ��*S��U�z ��*Qۛ�H���U�Zo�b���U�Zo�b���U�Zo�b���U��7W��⛫2��\Ū⛫2��\Ūқ�2tys��o��L�� +�.�\����*V=�\����*V=�\����*V=�\�zs�] ��*S��U�z ��*S��U�z ��*S��U�z ��*R��*T�@|sU�֛�X�@|sU�֛�X�@|sU�֛�X�@|sU���U�v���L�7W����]�\Ŧ�᛫2��\Ũ⛫"Uo�B��7Wej���U�7Wej���U�7Wej���U�7WE��\�j�o���zs��o���zs��o���zs��o��T�� +�.�\����*V=�\����*V=�\����*V=�\�zs�] ��*3_�\��c��*�7W�hq��̬7W1���Dmo�"��7Wej���U�7Wej���U�7Wej���U�7WE��\�j�o���zs��o���zs��o��Tm�@�y#E����v���"R��U�����z o��Tm�@�q#E�j#��)"�6R iq��"2��Q�����z o�HԶ���.�7RD�6R���ew�+gv^W���,�*���SK l���I '�Dwi��mG����g�U5��Ϩ�'/�2��_�,�q_�Pj.R�ڃ|�B��H�j�E +��.�|�B��H�j�E +��"�=�)����� _�0�HA�2�)����� _�Pj.R�ڃx�B��"�5�)��D�_�Pf.R ڃ|�B��H�j�E +��"�=�)�:/R���E +��"�=�)����� _�Pj.R�ڃ|�¨�"�� _�Pj.R�ڃ|�B��H�j�E +��"�=�)�z�H�:�)����� _�Pj.R�ڃx�B��"�5�)�9/R��E +��"�=�)����� _�Pj.R�ڃ|�¨�"�� _�Pj.R�ڃ|�B��H�j�E +��"�=�)�:/R���E +��"�=�)����� _�Pj.R�ڃ|�¨�"�� _�Pj.R�ڃx�B��"�5�)����� _�0�HA�2�)����� _�Pj.R�ڃ|�B��H�j�E +��.�|�B��H�j�E +��"�=�)����� _�0�HA�2�)����� _�Pj.R�ڃ|�B��H�j�E +��.�x�B��"�5�)����� _�Pj.R�ڃ|�¨�"�� _�Pj.R�ڃ|�B��H�j�E +��"�=�)�z�H�:�)����� _�Pj.R�ڃ|�B��H�j�E +��.�|�B��H�j�E +��"�=�)����� ^�0h.R��sx�B��"�5�)����� _�ؿ��.R���.R\�8�^��������K�E��W?s������@�����v��ʼn��|d�H�_�������|�˿����ǺR��>}���}�_���ͅ����������d��Lv/��~���@��jr���$��� &� +�.�5�ɮ1g�K�2�ɮR��ڃ��*5�.�=�ɮR��ڃ��u&��.���*5�.�=�ɮR��ڃ��*5�.�=�ɮQg�K�2�ɮR��ڃ��*5�.�=�ɮR��ڃ��u&��.���*5�.�=�ɮBG��f�q���$��� '�F��.�� '�JM��jr���$��� '�JM��jr�kԙ쒺r���$��� '�JM��jr���$��� '�F��.�� '�JM��jr���$��� '�JM��jr�kԙ쒺R���-�E�r�]�dŚ�dW�Iv�ANv�zNvA]9�Uj�]T{��]�&�E�9�Uj�]T{��]��d��e��]�&�E�9�Uj�]T{��]�&�E�9�5�LvI]9�Uj�]T{��]�&�E�9�Uj�]T{�]�&�%��0�U�Hv��9Nv��d��dW�IvQ�ANv�:�]R�ANv��d��dW�IvQ�ANv��d��dר3�%u�dW�IvQ�ANv��d��dW�IvQ�ANv�:�]R�ANv��d��dW�IvQ�ALv:�]4k�]C&�%��8�Uf�]D{��]�&�E�9�Uj�]T{��]��d��e��]�&�E�9�Uj�]T{��]�&�E�9�5�LvI]9�Uj�]T{��]�&�E�9�Uj�]T{��]���]P�ANv��d��dW�IvQ�ALv:�]4k��]c�d��e��]�&�E�9�Uj�]T{��]�&�E�9�5�LvI]9�Uj�]T{��]�&�E�9�Uj�]T{��]��d��e��]�&�E�9�Uj�]T{��]�&�E�9�5�LvI]9�Uj�]T{�]��d͚�dW�Iv�ANv�:�]R�ANv��d��dW�IvQ�ANv��d��dר3�%u�dW�IvQ�ANv��d��dW�IvQ�ANv�:�]R�ANv��d��dW�IvQ�ANv��d��dר3�%u�dW�#�E��8�Uf�]D{��]�&�E�9�5�LvI]9�Uj�]T{��]�&�E�9�Uj�]T{��]���]P�ANv��d��dW�IvQ�ANv��d��dר3�%u�dW�IvQ�ANv��d��dW�IvQ�ALv �d�̞�dW�#�E��8�Uf�]D{��]JNE���cKv/��dw�{����t�{���V쫿�~|�/��ot�������o��3�v�������O߾|��������㛯����/_?�ڟ<���_����Kw��m|�ن\|��6���6��6D�iCP�AnC�:�R�AnC��6��6D�iCP�AnC��6��6Ĩ� !u�6D�iCP�AnC��6��6D�iCP�AnC�:�R�AjC���!(^�a��ц�Xs܆(3m�=�m�P�m�� �!JM�jr�Դ!�� �!JM�jrb�ن��r�Դ!�� �!JM�jr�Դ!�� �!F�m�� �!JM�jr�Դ!�� �!JM�jbbд!d��!�m�5�m�2ӆ ڃ܆(5m�=�m�QgB�2�m�Rӆ�ڃ܆(5m�=�m�Rӆ�ڃ܆u�!�.�܆(5m�=�m�Rӆ�ڃ܆(5m�=�m�QgB�2�m�Rӆ�ڃ܆(5m�=�m�BG�f�abȴ!D��!�L�hr�Դ!�� �!JM�jrb�ن��r�Դ!�� �!JM�jr�Դ!�� �!F�m�� �!JM�jr�Դ!�� �!JM�jr"�s�:�m�Rӆ�ڃ܆(5m�=�m�BG�f�qb�ن�r�Դ!�� �!JM�jr�Դ!�� �!F�m�� �!JM�jr�Դ!�� �!JM�jrb�ن��r�Դ!�� �!JM�jr�Դ!�� �!F�m�� �!JM�jb��ц�Ys܆(3m�=�m�QgB�2�m�Rӆ�ڃ܆(5m�=�m�Rӆ�ڃ܆u�!�.�܆(5m�=�m�Rӆ�ڃ܆(5m�=�m�QgB�2�m�Rӆ�ڃ܆(5m�=�m�Rӆ�ڃ܆u�!�.�؆(t�!h��!�L�hr�Դ!�� �!F�m�� �!JM�jr�Դ!�� �!JM�jr"�s�:�m�Rӆ�ڃ܆(5m�=�m�Rӆ�ڃ܆u�!�.�܆(5m�=�m�Rӆ�ڃ܆(5m�=�m�Aӆ��s؆(r�!H��!�L�hr��2�6��ֆ\��m�����m��O �q�}$e��(C~��/?�����}X~�������u���O����ϯ�-x��z�WxY�ܜ��N2�}���g�翂�W�/�<�&���ɷ �o {��{p{�M��>�6�x�M����6`z�Xs���:y~�O.s��ېy�Md��oC�}7�5ǯ� ���D�?��|� d��nC�Y7�5Ǐ� �7�D���6dtYs��[��57�=�o� ���D�?�6d�qYs��ېy�Md��n!�7�5�7�o�w9Ə� ���$���6dnYs�l[���6�=�o� �'�D�?�6d�kYs�Zېy�Md��SmAΗ�@���6d�iYs�Hېy�Md��mC�6�5�ϳ9_g�s�6ېy�Md���lC�]6�5����8ex9�O��������6`�c�Xs�ېy�Md��KlC�!6�5�ϰ9_a�s�ېy�Md��lC��5�5ǯ� ���D�?��|y d��kC��5�5Ǐ� �7�D���6d\Ys���:y~m�O.s��ڐyjMd��CkC�5�5����8Yx9�O�8_X��s��ڐy^Md���jC�m5�5�/� ���D�?��|U d��jC�I5�5�� ���D���6dSYs��Z��%5�=�� �g�D�?�6d�PYs��ڐy@Md���iA���@���6d�NYs�pڈ��4��c�jڀy4Mb��iA��@���6d�KYs�Xڐy+Md��KiC�4�5�Ϥ9_I�s�Fڐy"Md��iC�}4�5ǯ� ���D�?��| d��hC�Y4�5Ǐ� �7�D���6dDYs�Z��54�=�o��8�Bx9�� �w�$���6dAYs�Z��4�=�� ���D�?~6d�>Ys��ِy�Ld��������>���gC��3�5�� ���D��v6d;Ys��Y��3�=�� �g�D�?r6d�8Ys��ِy�Ld���f!�u3�5�o��7�6�w9�� �w�$��j�}��5ӗ��4_� �Ҽ�%��7W^4�ܞ�%�?i�ɛ�������9}���͗�?�/����A��_�D�}:<>����^�i~~u����xx�����˿��Ob�n������yE�>{E������Ѫ�g��=��>����R��^Q{�u������߲�:>��2����}��ڃ;���N��?zŬ���gp{����+h��d����F�㳬.�;�� ��G1P�A�Q��G1P�A�Q��G1P�A�Q��� u��Pj~���Pj~���Pj~���0��QR�A�Q��G1P�A�Q�&�B�9�Rj�(T{�)��D��e�")en���c�I)p�R(��R�L+�hr-%�s.�:���RSL�ڃ�L)5��=�ٔR�M�ڃ\Nu�S�.�O)5��=���RP�ڃ�P)5 �=��QgFE�2�!�RSR�ڃ�R)51�=�9�R�S�ڃXT4I�=�Q�"GU�d�qW�̄U�� �UJM[�jr]eԙW��r`��V�� 7VJMd�jrf��tV�� �VF���� �VJMm�jro��W�� 'WJMs�jrueԙ]��rx�ԔW�� �WJM|�jb~���_�YsX`2 �=��2Sa!ڃ�a)5!�=�)�R�b�ڃ\cu�X�.�d)5E�=�M�Re�ڃ�e)5]�=�e�Qg�E�2�q�RSg�ڃ�g)5��=ȉ�R�h�ڃ\i ��i��r��ԔZ�� �ZJM��jb����k�Ys\ls&[�.�m)5��=�ݖRn�ڃ�n)5��=���Qg�E�2��RSp�ڃ�p)5�=��R�q�ڃ\ru�\�.�s)55�=�=�Rt�ڃ�t)5M�=�U�Qg�E�2�a�RSv�ڃ�v)t�]h��]�L߅hr�eԙx��r��T^�� w^JM�jr�Դ^�� �^F���� _JM�jr��D_�� g_JM��jr�eԙ~��r����_�� �_JM��jr��4`�� W`F��� �` +%�5�-�2�!ڃ��)5=�=�E�QgF�2�Q�RS��ڃ܅)5a�=�i�Rӆ�ڃ\� �����r ��b�� 7bJM$�jr&��tb�� �bF���� �bJM-�jr/��c�� 'cJM3�jb5f�dcd��c���5��2�!ڃ����N���d����nA��=~�b�a� ��L����>l�?��o��o�|�ˇo?�������p�~+���o�td�������Y����x����f�!3M���OS^~HSP�ANS��4��4E�ISP�ANS�:�R�ANS��4��4E�ISP�ANS��4��4Ũ3M!u�4E�ISP�ANS��4��4E�ISP�ANS�:�R�AJS���)(^�a������Xs��(3i +�=�i�P�i +�� �)JM��jr��Ԥ)�� �)JM��jr�bԙ���r��Ԥ)�� �)JM��jr��Ԥ)�� �)F�i +�� �)JM��jr��Ԥ)�� �)JM��jb�bФ)d��)�i +�5�i�2�� ڃ��(5i +�=�i�Qg�B�2�i�R���ڃ��(5i +�=�i�R���ڃ��u�)�.���(5i +�=�i�R���ڃ��(5i +�=�i�Qg�B�2�i�R���ڃ��(5i +�=�i�BG��f�a�bȤ)D��)�L��hr��Ԥ)�� �)JM��jr�bԙ���r��Ԥ)�� �)JM��jr��Ԥ)�� �)F�i +�� �)JM��jr��Ԥ)�� �)JM��jr�"�s��:�i�R���ڃ��(5i +�=�i�BG��f�q�b̙��r��Ԥ)�� �)JM��jr��Ԥ)�� �)F�i +�� �)JM��jr��Ԥ)�� �)JM��jr�bԙ���r��Ԥ)�� �)JM��jr��Ԥ)�� �)F�i +�� �)JM��jb��Б��Ys��(3i +�=�i�Qg�B�2�i�R���ڃ��(5i �=�i�R���ڃ��u�)�.���(5i �=�i�R���ڃ��(5i �=�i�Qg�B�2�i�R���ڃ��(5i -�=�i�R���ڃ��u�)�.���(sKSP��4E�#MA��8MQf�D{�����P�ANS��4��4E�ISP�ANS��4��4Ũ3M!u�4E�ISP�ANS��4��4E�ISP�ANS�:�R�ANS��4��4E�ISP�ANS��4��4ŠIS��9LS9�$k��e&MA�9MQj�T{����4��e���&MA�9MQj�T{���&MA�9M1�LSH]9MQj�T{���&MA�9MQj�T{����4��e���&MA�9MQj�T{���4͚�4ŐIS��9NS��4��4E�ISP�ANS��4��4Ũ3M!u�4E�ISP�ANS��4��4E�ISP�ANS�:�R�ANS��4��4E�ISP�ANS��4��4E��4�u���&MA�9MQj�T{���4͚�4Ř3M!t�4E�ISP�ANS��4��4E�ISP�ANS�:�R�ANS��4��4E�ISP�ANS��4��4Ũ3M!u�4E�ISP�ANS��4��4E�ISP�ANS�:�R�ANS��4��4E�#MA��8MQf�D{����4��e���&MA�9MQj�T{���&MA�9M1�LSH]9MQj�T{���&MA�9MQj�T{����4��e���&MA�9MQj�T{���&MA�9M1�LSH]1MQ�HSЬ9NS��4��4E�ISP�ANS�:�R�ANS��4��4E�ISP�ANS��4��4E��4�u���&MA�9MQj�T{���&MA�9M1�LSH]9MQj�T{���&MA�9MQj�T{��&M!��0MQ�HS��9NS��4��4e?�Pi -~�-M��@�Ӕ����~����O���{LS�)�#M������o����O���3�y8���sa��kF�n�*��ߠ����w·.��˧��������/�R�eu�Qo7wR�>{E����p<��ϩ�g��=�����Yu���w~�i�)+�深P]:~�����r��m,V{˩㷱X�A�m,�深P]:~�����r���Xl��6�3�oc1ڃ��XJM���2��SG��jb��� �ڃ :u��� �JM���2��SG��jb��� �ڃ :u��� �JM���2��SG��jb��� �ڃ :u��� �JM���2�3��,^�Q���-@d��0@t��A�:DR�A�:DV{D�������ѩ#@d�1@TjDT�A�:DV{D�������ѩ#@d�1@TjDT�A�:DV{D�������ѩ#@d�)@T���9 -��L���"�=��SG��jb�����.� :u��� �N"�=��SG��jb�����.� :u��� �N"�=��SG��jb�����.� :u��� �N"�=H�C���͚��Q�#@D��0@t��A�:DV{D�������Q� Q]1@t�Y�A�:DV{D�������Q� Q]1@t�Y�A�:DV{D�������Ѩ3@$u��ѩ#@d�1@t�Y�A -��l���L���2��SG��jb��� �ڃ :u��� �JM���2��SG��jb��� �ڃ :u��� �JM���2��SG��jb��� �ڃ :u��� �JM���2��SG��jR���-@d��0@t��A����eD�������ѩ#@d�1@t�Y�A����eD�������ѩ#@d�1@t�Y�A����eD�������ѩ#@d�1@t�Y�A����e�D�n"�5��3G��hb��� �ڃ *5"�� �N"�=��SG��jb��� �ڃ u���� :u��� �N"�=��SG��jb�����.� :u��� �N"�=��SG��jR��� ��s :r��9�9DF{Dh�L�����g�����{���ƺy�;���w ��$@|��|�?�������O��������駟>l�ٷ��7_�����}�ӷ����)����ǯ�������KZ�����|������_��o.�����z�������o�_�|�q���~������ ��Pj�o�ڃ�~è���� ��Pj�o�ڃ�~C�y��j�� ���h���0d�o�s�~C�y��h�� ����=��7����� ��0�|�A�2��7����� ��Pj�o�ڃ�~C�y��j�� ����.��~C�y��j�� ����=��7����� ������� ��Pj�o�ڃ�~C�y��j�� ���h���0�|�A�2��7����� ��Pj�o�ڃ�~C�y��j�� ����.��~C�y��j�� ����=��7����� ��0�|�A�2��7����� ��Pj�o�ڃ�~C�y��j�� ����.��~C�y��j�� ���h���Pf�o ڃ�~è���� ��Pj�o�ڃ�~C�y��j�� ����=��7�:�o���� ����=��7����� ��Pj�o�ڃ�~è���� ��Pj�o�ڃ�~C�y��j�� ����=��7�:�o���� ���h���Pf�o ڃ�~C�y��j�� ����.��~C�y��j�� ����=��7����� ������� ��Pj�o�ڃ�~C�y��j�� ����=��7�:�o���� ����=��7����� ��Pj�o�ڃ�~ày�Af��� E��H���Pf�o ڃ�~c��z���c{�q�X�~���������>�;�p@��O���\���7�~��|d{�qsxy(z�?��/_��������ƫ�n�O;۞�_?~�_���̇.��?�ӿt:<�y�=^��G�����x<Js���wԇ��;�n�������xx�d��n���������p���3u|��epG�=�o���W��Q7���m�n������z�cx����}��ڃ�_^|w�c�sj>��:����n��}��ڃ;�����"P���+j?��U��^Q{�u�x�cx����YV�����?�?Iu���wԇ���n���W��Q�o���^1k�u��x8�w���g]w�ӟ��U��^Q{pG=���Hu���w��J͏l�ڃ�#F�?�A�2�?������=�?������=�?������=�?�a��#�.��#J͏l�ڃ�#J͏l�ڃ�#J͏l�ڃ�#F�?�A�2�?������=�?����#h��Ȇ2�#�� �ȆQ�l���l(5?��j�l(5?��j�l(5?��j�lu���� �ȆR�#�� �ȆR�#�� �ȆR�#�� �ȆQ�l���l(5?��j�l(5?��j�l(5?��j�lu���� �Ȇ2��@�rdC��G6P�9�� e�G6�A�� ��d�u�dC��� T{�dC��� T{�dC��� T{�dè�G6H]�G6���@��G6���@��G6���@��G6�:d��e�dC��� T{�dC��� T{�dC��� T{dà�� 2{dC��G6��9�� e�G6�A�� ��G6P�A�� ��� u��Pj~d���Pj~d���Pj~d���0��� R�A�� ��H�=�G��# �� iPj�4�ڃ|����H�� iPj�4�ڃ|�A�9Ҁj���# h�i0d�4�s|�A�9Ҁh���H�=�G��# �� i0�<�@�2�G��# �� iPj�4�ڃ|�A�9Ҁj���# �.�|�A�9Ҁj���H�=�G��# �� i��H�� iPj�4�ڃ|�A�9Ҁj���# h�i0�<�@�2�G��# �� iPj�4�ڃ|�A�9Ҁj���# �.�|�A�9Ҁj���H�=�G��# �� i0�<�@�2�G��# �� iPj�4�ڃ|�A�9Ҁj���# �.�|�A�9Ҁj���# h�iPf�4 ڃ|����H�� iPj�4�ڃ|�A�9Ҁj���H�=�G�:�4�����H�=�G��# �� iPj�4�ڃ|����H�� iPj�4�ڃ|�A�9Ҁj���H�=�G�:�4�����# h�iPf�4 ڃ|�A�9Ҁj���# �.�|�A�9Ҁj���H�=�G��# �� i��H�� iPj�4�ڃ|�A�9Ҁj���H�=�G�:�4�����H�=�G��# �� iPj�4�ڃx���9�@f��E�# H�iPf�4 ڃ|��� �# �=�# �7v�4���HÑ�4�o?�AG�G�# ����_~���/��6^��8~N�w>�����t|���|�÷�"�������k�_��p<���m="�1�����B���B��BD�)DP�A.D�:R�A.D��B��BD�)DP�A.D��B��BĨ�!u�BD�)DP�A.D��B��BD�)DP�A.D�:R�A*D��"(^�a!��Q��Xs\�(3��=ȅ�Pυ�� "JM!�jr!��"�� "JM!�jr!b�Y���r!��"�� "JM!�jr!��"�� "F���� "JM!�jr!��"�� "JM!�jb!b�"d�"���5Dž�2S� ڃ\�(5��=ȅ�Qg!B�2ȅ�RS��ڃ\�(5��=ȅ�RS��ڃ\�u"�.�\�(5��=ȅ�RS��ڃ\�(5��=ȅ�Qg!B�2ȅ�RS��ڃ\�(5��=���BG!�f�a!b�"D�"�L!�hr!��"�� "JM!�jr!b�Y���r!��"�� "JM!�jr!��"�� "F���� "JM!�jr!��"�� "JM!�jr!"�s!�:ȅ�RS��ڃ\�(5��=���BG!�f�q!b�Y��r!��"�� "JM!�jr!��"�� "F���� "JM!�jr!��"�� "JM!�jr!b�Y���r!��"�� "JM!�jr!��"�� "F���� "JM!�jb!��Q��Ys\�(3��=ȅ�Qg!B�2ȅ�RS��ڃ\�(5��=ȅ�RS��ڃ\�u"�.�\�(5��=ȅ�RS��ڃ\�(5��=ȅ�Qg!B�2ȅ�RS��ڃ\�(5��=ȅ�RS��ڃ\�u"�.�X�(t"h�"�L!�hr!��"�� "F���� "JM!�jr!��"�� "JM!�jr!"�s!�:ȅ�RS��ڃ\�(5��=ȅ�RS��ڃ\�u"�.�\�(5��=ȅ�RS��ڃ\�(5��=���AS���sX�(r"H�"�L!�hr!��2�B��V�\�������u?�y����T���l���(D��˟?��_g�����|�������_>��w������|��k��s���#�_�e�� -u��?��'p.�*������!u��Qj~�ğ�Q�� 4k�G�� D{�Ǩ�'pH]�'p��� ���I� �P�A���� ���ɨ3p"u��I� �P�A���� ���I� �P�A��:'R�A���� ���I� �P�A���� ���ɨ3p"u��I�[����N -��5ǁ�28!ڃ8 �8��r��N�� NJM��jr��N�� NF���� NJM��jr��N�� NJM��jr�d�8��r��N�� NJM��jr��N�� NM�Df�a��8!Ys8)3��=ȁ�R8�ڃ8uN�.�8)5��=ȁ�R8�ڃ8)5��=ȁ�Qg�D�2ȁ�R8�ڃ8)5��=ȁ�R8�ڃ8uN�.�8)5��=ȁ�R8�ڃ8)tNh�N�L�Dd�q��N�� NJM��jr��N�� NF���� NJM��jr��N�� NJM��jr�d�8��r��N�� NJM��jr��N�� NB=N���8)5��=ȁ�R8�ڃ8)tNh�NƜ��� NJM��jr��N�� NJM��jr�d�8��r��N�� NJM��jr��N�� NF���� NJM��jr��N�� NJM��jr�d�8��r��N�� N -��5ǁ�28!ڃ8uN�.�8)5��=ȁ�R8�ڃ8)5��=ȁ�Qg�D�2ȁ�R8�ڃ8)5��=ȁ�R8�ڃ8uN�.�8)5��=ȁ�R8�ڃ8)5��=ȁ�Qg�D�2���BG��f�q��N�� NJM��jr�d�8��r��N�� NJM��jr��N�� NB=N���8)5��=ȁ�R8�ڃ8)5��=ȁ�Qg�D�2ȁ�R8�ڃ8)5��=ȁ�R8�ڃ84��=���"G��d�q��N�� N�-� -��{l��eO��8��_�8����7�8��l��}���������/?���O?}�������~~�ݛ��7�����/��O�>}�����_�>���;��{��v���9#����\�E�g/�d�� gJMF�jrF`ԙ��rF��d�� gJMF�jrF��d�� gF��� e��2/�0#P��P�9�������@����u�3�&#@�9#Pj2T{�3�&#@�9#0��H]9#Pj2T{�3�&#@�9#Pj2T{�3�Ό��e�3�&#@�9#Pj2T{�3�&#@�1#0h22{3E���ɚ�@���A���������3# u�@��P�A�������@��P�A��:3R�A�������@��P�A���������3# u�@��P�A������Č@�##@��0#0d2"{�3e&#@�9#Pj2T{�3�&#@�9#0��H]9#Pj2T{�3�&#@�9#Pj2T{�3�Ό��e�3�&#@�9#Pj2T{�3�&#@�9#�9#�u�@��P�A������Č@�##@��8#0��]9#Pj2T{�3�&#@�9#Pj2T{�3�Ό��e�3�&#@�9#Pj2T{�3�&#@�9#0��H]9#Pj2T{�3�&#@�9#Pj2T{�3�Ό��e�3�&#@�1#P��Ь9���������3# u�@��P�A�������@��P�A��:3R�A�������@��P�A���������3# u�@��P�A�������@��P�A��:3R�A�:24k�3e&#@�9#Pj2T{�3�Ό��e�3�&#@�9#Pj2T{�3�&#@�9#�9#�u�@��P�A�������@��P�A��:3R�A�������@��P�A������Č�����9�92$k�3e&#@�9#�'�"#��e_���nF��=~{w�~C�2�����_P����?x���o��3 ��+����݇��7?���/�~���g��������Fy8����i��·.���������~���_d1��ER�A�E��YP�A�E��_dA���Y��_dA��Y�:���e��E��ET{��E��ET{��E��ET{��Ũ�YH]�Y��� +�=�i�R���ڃ��u�)�.���(t�)h��)�L��hr��Ԥ)�� �)F�i +�� �)JM��jr��Ԥ)�� �)JM��jr�"�s��:�i�R���ڃ��(5i +�=�i�R���ڃ��u�)�.���(5i +�=�i�R���ڃ��(5i +�=�i�A����s��(r�)H��)�L��hr��P�4�ǖ�\v �i����u�nts�'���=�)�LҔ�����s����O��_���<N�Թ0_�5�w�{��o���?O�;�C���������x{��y��ϲ����;�n�������p8�������W��QOךּ}��ڃ;�ܴ���R��X�.���XN���j�oc9u�6�=�������X�� �6�R��X�.���XN���j�oc9t�m,6k˙㷱�A�m,�&@Du��ѩ#@d�1@t�Y�A�:DV{D�&@Du��ѩ#@d�1@t�Y�A�:DV{D�&@Du��ѩ#@d�1@t�Y�A�:DV{D�&@Du��љ�D/�(@t� �Xs :s��� �F�"�� �N"�=��SG��jb��� �ڃ *5"�� �N"�=��SG��jb��� �ڃ *5"�� �N"�=��SG��jb��� �ڃ *t�h����D&kDg������ѩ#@d�1@TjDT�A�:DV{D�������ѩ#@d�1@TjDT�A�:DV{D�������ѩ#@d�1@TjDT�A�:DV{D�������ѡ[��f�Q��� "�s :s��� �N"�=��SG��jb�����.� :u��� �N"�=��SG��jb�����.� :u��� �N"�=��SG��jb�h� ��b��� �ڃ :u��� ��D6kDe&@Dt��ѩ#@d�1@t�Y�A�:DV{D�&@Du��ѩ#@d�1@t�Y�A�:DV{D�&@Du��ѩ#@d�1@t�Y�A�:DV{D�&@Du��ѩ#@d�)@t� �Ys :s��� �JM���2��SG��jb��� �ڃ :u��� �JM���2��SG��jb��� �ڃ :u��� �JM���2��SG��jb��� �ڃ :u��� �JM���2H�C���͚��љ#@d�1@t�Y�A����eD�������ѩ#@d�1@t�Y�A�:DR�A�:DV{D�������ѩ#@d�1@TjDT�A�:DV{D�������ѩ#@d�)@T���9 +��L���"�=�"�s&@����3U�����=~�oc�<ݝ�g�;�g >���w_>��w�n~����?l�G�����O������/�����>����?�q���������������%�����_>���������7_���g=�T�����7�/v�߸�������� T{��o(5�7P�A~�a��~��e��o(5�7P�A~��Լ�@����B�� 4k�o2�7��9~��̼�@����R�~���J�� T{��ou�� u��J�� T{��o(5�7P�A~��Լ�@����Q�� R�A~��Լ�@����R�~���J�� T{��o��~�u��o(5�7P�A~��Լ�@����B�� 4k��os�� t��J�� T{��o(5�7P�A~��Լ�@����Q�� R�A~��Լ�@����R�~���J�� T{��ou�� u��J�� T{��o(5�7P�A~��Լ�@����Q�� R�A~��Լ�@����B�� 4k��o(3�7�A~�a��~��e��o(5�7P�A~��Լ�@����R�~���F��7H]���R�~���J�� T{��o(5�7P�A~�a��~��e��o(5�7P�A~��Լ�@����R�~���F��7H]���B�� 4k��o(3�7�A~��Լ�@����Q�� R�A~��Լ�@����R�~���J�� T{��o��~�u��o(5�7P�A~��Լ�@����R�~���F��7H]���R�~���J�� T{��o(5�7P�A|�aм� �����"�� $k��o(3�7�A~����@���ﱽ߸|,q��~c�{|��n��S8 }�����[.�����ͫ_h|&�^o�^���O��˗���d����p�x�o�����߶���O��W��5��������/��b^~����Q6{n��=<���>{����p�Ϊ�g��=��>�ۿ��g��=����x�y���:>��2�����}��ڃ;����������W��QO���R��^Q{��ˋ�NwN�gQ]w����T��^Q{pG=�1<�[J�>{E�����p����+j��O:>��2��ޞ����R�>{E�����?�[u���wԧÃ����W̚{��9���8�,����z�3x����+j?���n������:~C��� T{�dè�G6H]�G6���@��G6���@��G6���@��G6�:d��e�dC��� T{�dC��� T{�dC��� T{�dè�G6H]�G6���@��G6:~d͚��Pf~d���0��� R�A�� ��G6P�A�� ��G6P�A�� ��G6P�A�� ��� u��Pj~d���Pj~d���Pj~d���0��� R�A�� ��G6P�A�� ��G6P�A�� ��G6P�A�� ��� u��P��#(^��l(p���5�?������=�?�!��l���l(5?��j�l(5?��j�l(5?��j�lu���� �ȆR�#�� �ȆR�#�� �ȆR�#�� �ȆQ�l���l(5?��j�l(5?��j�l(5?��j�l4?�Af��l(r���5�?������=�?������=�?�a��#�.��#J͏l�ڃ�#J͏l�ڃ�#J͏l�ڃ�#F�?�A�2�?���i@��H�Rs���# J͑T{��4ui u�# J͑T{��4(5GP�A<Ҡ�q�͚�# �̑"{��4(3G�A>Ҡ�i@��H�Rs���# F�GH]�H�Rs���# J͑T{��4(5GP�A>�`�y���e��4(5GP�A>Ҡ�i@��H�Rs���# B=i�u�# J͑T{��4(5GP�A<Ҡ�q�͚�# ƜG]�H�Rs���# J͑T{��4(5GP�A>�`�y���e��4(5GP�A>Ҡ�i@��H�Rs���# F�GH]�H�Rs���# J͑T{��4(5GP�A>�`�y���e��4(5GP�A<Ҡ�q�͚�# �̑D{��4ui u�# J͑T{��4(5GP�A>Ҡ�i@��H�Q�R�A>Ҡ�i@��H�Rs���# J͑T{��4ui u�# J͑T{��4(5GP�A>Ҡ�i@��H�Q�R�A<Ҡ�q�͚�# �̑D{��4(5GP�A>�`�y���e��4(5GP�A>Ҡ�i@��H�Rs���# B=i�u�# J͑T{��4(5GP�A>Ҡ�i@��H�Q�R�A>Ҡ�i@��H�Rs���# J͑T{�44G��9<Ҡ�q�ɚ�# �̑D{��4еq���v���&����i8���9�H���v��6?����߾������k����i������x���o~��|��Z�r���x8�����ǻ����B�2f!r�ױ_���"P��ڃ\�(5��=ȅ�Qg!B�2ȅ�RS��ڃ\�(5��=ȅ�RS��ڃ\�u"�.�\�(5��=ȅ�RS��ڃ\�(5��=ȅ�Qg!B�2H��2�B��1,D8 +k�e�A���u�BD�)DP�A.D��B��BD�)DP�A.D�:R�A.D��B��BD�)DP�A.D��B��BĨ�!u�BD�)DP�A.D��B��BD�)DP�A,D�B�̞�BD��A��Qf +D{���A��1�,DH]�Qj +T{���A��Qj +T{���B��e���A��Qj +T{���A��1�,DH]�Qj +T{���A��Q�(DЬ9,D�B�Ȟ�BD�)D�A.D��B��BD�)DP�A.D�:R�A.D��B��BD�)DP�A.D��B��BĨ�!u�BD�)DP�A.D��B��BD�)DP�A.D�z.D@]�Qj +T{���A��Q�(DЬ9.D�9B�A.D��B��BD�)DP�A.D��B��BĨ�!u�BD�)DP�A.D��B��BD�)DP�A.D�:R�A.D��B��BD�)DP�A.D��B��BĨ�!u�BD�)DP�A,D: +4k�e�A��1�,DH]�Qj +T{���A��Qj +T{���B��e���A��Qj +T{���A��1�,DH]�Qj +T{���A��Qj +T{���B��e��B͚�BD�)D�A.D��B��BĨ�!u�BD�)DP�A.D��B��BD�)DP�A.D�z.D@]�Qj +T{���A��Qj +T{���B��e���A��Qj +T{���A��1h +2{E�Bɚ�BD�)D�A.D�SU���� +�� �q�����g<�7� +�����?}�����C�����ݛ/�|���������������㛏y�Wvn��{��K��C�_���!�'p�/b���_��O��"�8�.��8J�O�ڃ�8 +?��f��O�(3?��h�O�u��� ��R8�ڃ8)5��=ȁ�R8�ڃ8uN�.�8)5��=ȁ�R8�ڃ8)5��=ȁ�Qg�D�2ȁ�R8�ڃ8)5��=ȁ�R8�ڃ8uN�.�8)s�P���I�#pB��8pRf'D{�'��'P�A���� ���I� �P�A���� ���ɨ3p"u��I� �P�A���� ���I� �P�A��:'R�A���� ���I� �P�A���� ���ɠ ���9�9'$k�'e&pB�9pRj'T{�'�����e�'�&pB�9pRj'T{�'�&pB�9p2��H]9pRj'T{�'�&pB�9pRj'T{�'�����e�'�&pB�9pRj'T{'��� ͚��ɐ ���9���� ���I� �P�A���� ���ɨ3p"u��I� �P�A���� ���I� �P�A��:'R�A���� ���I� �P�A���� ���I��� �u�'�&pB�9pRj'T{'��� ͚��ɘ3p"t��I� �P�A���� ���I� �P�A��:'R�A���� ���I� �P�A���� ���ɨ3p"u��I� �P�A���� ���I� �P�A��:'R�A���� ���I�#pB��8pRf'D{�'�����e�'�&pB�9pRj'T{�'�&pB�9p2��H]9pRj'T{�'�&pB�9pRj'T{�'�����e�'�&pB�9pRj'T{�'�&pB�9p2��H]1pR��Ь9���� ���I� �P�A��:'R�A���� ���I� �P�A���� ���I��� �u�'�&pB�9pRj'T{�'�&pB�9p2��H]9pRj'T{�'�&pB�9pRj'T{'�&p"��0pR����9���� ���i��Q�~�-p�쉞v�����~���w�� ��-p�O���?����ÿ�凿}������>����Ͽ{s���?|���˟�ӷO_>�|G�WǷ���/��>���==g��03�������������@��P�A��:3R�A�������@��P�A���������3# u��@�[F���f +�5��2� ڃ�����rF��d�� gJMF�jrF��d�� gF��� gJMF�jrF��d�� gJMF�jrF`ԙ��rF��d�� gJMF�jrF��d�� fMF@f�aF�ȑ Ys�(3�=��R��ڃ�uf�.��(5�=��R��ڃ�(5�=��QgF@�2��R��ڃ�(5�=��R��ڃ�uf�.��(5�=��R��ڃ�(tdh�f�LF@d�qF��d�� gJMF�jrF��d�� gF��� gJMF�jrF��d�� gJMF�jrF`ԙ��rF��d�� gJMF�jrF��d�� gB=g����(5�=��R��ڃ�(tdh�gƜ�� gJMF�jrF��d�� gJMF�jrF`ԙ��rF��d�� gJMF�jrF��d�� gF��� gJMF�jrF��d�� gJMF�jrF`ԙ��rF��d�� f +�5��2� ڃ�uf�.��(5�=��R��ڃ�(5�=��QgF@�2��R��ڃ�(5�=��R��ڃ�uf�.��(5�=��R��ڃ�(5�=��QgF@�2��BGF�f�qF��d�� gJMF�jrF`ԙ��rF��d�� gJMF�jrF��d�� gB=g����(5�=��R��ڃ�(5�=��QgF@�2��R��ڃ�(5�=��R��ڃ�4�=��"GF�d�qF��d�� g��]d�=�������`�{����� +e����A=�������o��3 ��+����݇��7?���/�~���g��������Fy8����i��·.���������~���_d1��ER�A�E��YP�A�E��_dA���Y��_dA��Y�:���e��E��ET{��E��ET{��E��ET{��Ũ�YH]�Y��� ��J�I�P�AN���� ��ʨ3�"u�J�I�P�AN���� -��J�I�P�AN��:S*R�AJ����T(^�aJ���R�Xs�R)3)�=�)�P�)�� �TJMJ�jrJ�ԤT�� �TJMJ�jrJeԙR��rJ�ԤT�� �TJMJ�jrJ�ԤT�� �TF�)�� �TJMJ�jrJ�ԤT�� �TJMJ�jbJeФTd��T�)�5�)�2�R!ڃ�R)5)�=�)�QgJE�2�)�R�R�ڃ�R)5)�=�)�R�R�ڃ�Ru�T�.��R)5)�=�)�R�R�ڃ�R)5)�=�)�QgJE�2�)�R�R�ڃ�R)5)�=�)�BGJ�f�aJeȤTD��T�LJ�hrJ�ԤT�� �TJMJ�jrJeԙR��rJ�ԤT�� �TJMJ�jrJ�ԤT�� �TF�)�� �TJMJ�jrJ�ԤT�� �TJMJ�jrJ%�sJ�:�)�R�R�ڃ�R)5)�=�)�BGJ�f�qJe̙R�rJ�ԤT�� �TJMJ�jrJ�ԤT�� �TF�)�� �TJMJ�jrJ�ԤT�� �TJMJ�jrJeԙR��rJ�ԤT�� �TJMJ�jrJ�ԤT�� �TF�)�� �TJMJ�jbJ�БR�Ys�R)3)�=�)�QgJE�2�)�R�R�ڃ�R)5)�=�)�R�R�ڃ�Ru�T�.��R)5)�=�)�R�R�ڃ�R)5)�=�)�QgJE�2�)�R�R�ڃ�R)5)�=�)�R�R�ڃ�Ru�T�.��R)t�Th��T�LJ�hrJ�ԤT�� �TF�)�� �TJMJ�jrJ�ԤT�� �TJMJ�jrJ%�sJ�:�)�R�R�ڃ�R)5)�=�)�R�R�ڃ�Ru�T�.��R)5)�=�)�R�R�ڃ�R)5)�=�)�A�R��s�R)r�TH��T�LJ�hrJE�H��{l)��׀�j�{������]�Rݼ�R����s������ߓ_M�Ƈ�sJeb�y���͇?�=����ˠ�������:��W<�����U=|������↑�E�U=�� ��Wj^գڃ��^�yU�j�z��U=�=ȯ�:_Փ�ҫzen��Q��W� -��Q�9~U�̼�G��U�Pϯ�A]�U�R���W�JͫzT{�_�+5��Q�A~Uo�����e�_�+5��Q�A~U�Լ�G��U�R���W�F���I]�U�R���W�JͫzT{�_�+5��Q�A|Uoм�'���U�"ǫz$k�_�+3���A~U�Լ�G��U�Q�zR�A~U�Լ�G��U�R���W�JͫzT{�_�u��'u�W�JͫzT{�_�+5��Q�A~U�Լ�G��U�Q�zR�A~U�Լ�G��U�R���W� -��Ѭ9|Uoȼ�'���U�2���W�JͫzT{�_�+5��Q�A~Uo�����e�_�+5��Q�A~U�Լ�G��U�R���W�F���I]�U�R���W�JͫzT{�_�+5��Q�A~U/��zP�A~U�Լ�G��U�R���W� -��Ѭ9~Uo�����e�_�+5��Q�A~U�Լ�G��U�R���W�F���I]�U�R���W�JͫzT{�_�+5��Q�A~Uo�����e�_�+5��Q�A~U�Լ�G��U�R���W�F���I]�U�R���W� -��Ѭ9~U�̼�G��U�Q�zR�A~U�Լ�G��U�R���W�JͫzT{�_�u��'u�W�JͫzT{�_�+5��Q�A~U�Լ�G��U�Q�zR�A~U�Լ�G��U�R���W�JͫzT{�_�u��'u�W� -��Ѭ9~U�̼�G��U�R���W�F���I]�U�R���W�JͫzT{�_�+5��Q�A~U/��zP�A~U�Լ�G��U�R���W�JͫzT{�_�u��'u�W�JͫzT{�_�+5��Q�A~U�Լ�G��U�A�̞�W���ꑬ9~U�̼�G��U��3p��������k<w_���������c -?Pr�����[������w�~��|d{S�0�����o������÷O�x��|��c����������O>|����_���������������[�nN���v��}^g�_^>t��:��/��:�e^g;���l/��u����,���v�x��h��l���٤���:۩�u6�=����:^g�ڃ�:۩�u6�=������٨.��:۩�u6�=����:^g�ڃ�:۩�u6�=������٨.��:۩�u6�=����:^g�ڃ�:۩�u6�=H��:^g��s�:ۑ��l&k_g;s��f��u�S��lV{_g+5��Q]�u�S��lV{_g;u��f��u�S��lV{_g+5��Q]�u�S��lV{_g;u��f��u�S��lV{_g+5��Q]�u�S��lV{_g;u��f��u�C���l���V�x��d���lg��ٌ� ��v�x��j��l���٬� ��Vj^g����l���٬� ��v�x��j��l���٬� ��Vj^g����l���٬� ��v�x��j��l���٬� ��6�|�M�:����:^g�ڃ�:۩�u6�=H�����f���u�2�:�e_g;u��f��u�S��lV{_g;u��f��u�R�:�e_g;u��f��u�S��lV{_g;u��f��u�R�:�e_g;u��f��u�S��lV{_g;u��f��u�R�:�e_g;u��f��u�C���l���v�x��h��l��u6�� ��v�x��j��l���٬� ��v�x��j��l��u6�� ��v�x��j��l���٬� ��v�x��j��l��u6�� ��v�x��j��l���٬� ��v�x��j��l��u6�� ��v��:�͚�������A|����:�����J��lT�A|����:�����N��Y�A|����:�����F���I]�u�S��lV{_g;u��f��u�S��lV{_g+5��Q]�u�S��lV{_g;u��f��u�S��lV{�^g+t��F���u�#���L���v�x��h��lx.l^g�����˯�p��:��o���+7ϟo��?���̫7�LJ�ϞϿ|��ç�+O�����ϖ���{��w;���o�ߟ�7��f��_��p��o���"���g��=��>o��}��ڃ������C����s;������Q���+h?�wV�>{E����������>{E���է�����g7��,����z{x�ު�g��=��>n}��ڃ;�����Q���+j�^&�;�1�95�Eu�QO�R�>{E�������o�(u���w���Ѫ�g��=��z<�1�{t��,����z��OOR�>{E�������}��ڃ;����� ���+fͽN����8�,����z�3x����+j?���n������z�S������+j��ޞ�n�:>��2����n}��ڃ;���(��3>{E������Ϊ�g��=��zw<�{����eu�Qo���8�W��Q��[u���w��ý����W�|]�?�1����ϲ�?�;�n������z�c��Mb����v�ӟ�������_WN7R�eu�QOG�����+j?�wV�>{E����p�$�17>{E������O���gY]w����{�n������z��������w����:~"��ğTj~"�e"Щ�'Y�A��@���d��'��#�� �0�<BA�2HG(���@�r�P(p�@����2s���#B=��u�#J� -T{��P(5G(P�A>B���@���Q� +��J�I�P�AN��:S*R�AJ����T(^�aJ���R�Xs�R)3)�=�)�P�)�� �TJMJ�jrJ�ԤT�� �TJMJ�jrJeԙR��rJ�ԤT�� �TJMJ�jrJ�ԤT�� �TF�)�� �TJMJ�jrJ�ԤT�� �TJMJ�jbJeФTd��T�)�5�)�2�R!ڃ�R)5)�=�)�QgJE�2�)�R�R�ڃ�R)5)�=�)�R�R�ڃ�Ru�T�.��R)5)�=�)�R�R�ڃ�R)5)�=�)�QgJE�2�)�R�R�ڃ�R)5)�=�)�BGJ�f�aJeȤTD��T�LJ�hrJ�ԤT�� �TJMJ�jrJeԙR��rJ�ԤT�� �TJMJ�jrJ�ԤT�� �TF�)�� �TJMJ�jrJ�ԤT�� �TJMJ�jrJ%�sJ�:�)�R�R�ڃ�R)5)�=�)�BGJ�f�qJe̙R�rJ�ԤT�� �TJMJ�jrJ�ԤT�� �TF�)�� �TJMJ�jrJ�ԤT�� �TJMJ�jrJeԙR��rJ�ԤT�� �TJMJ�jrJ�ԤT�� �TF�)�� �TJMJ�jbJ�БR�Ys�R)3)�=�)�QgJE�2�)�R�R�ڃ�R)5)�=�)�R�R�ڃ�Ru�T�.��R)5)�=�)�R�R�ڃ�R)5)�=�)�QgJE�2�)�R�R�ڃ�R)5)�=�)�R�R�ڃ�Ru�T�.��R)t�Th��T�LJ�hrJ�ԤT�� �TF�)�� �TJMJ�jrJ�ԤT�� �TJMJ�jrJ%�sJ�:�)�R�R�ڃ�R)5)�=�)�R�R�ڃ�Ru�T�.��R)5)�=�)�R�R�ڃ�R)5)�=�)�A�R��s�R)r�TH��T�LJ�hrJE�H��{l)�e���R����;}פT7��Tw�����~�px8���WS��|�R���_�>�{��o�o~��2�z|8<�{]g}����#{��1����o?_�_|��W�/���'u�W�JͫzT{�_�+5��Q�A~U�Լ�G��U�Q�zR�AzU���U=��c��^��U=�5ǯꕙW��� ����U=�� ��Wj^գڃ��^�yU�j�z��U=�=ȯ�:_Փ��z��U=�=ȯꕚW��� ��Wj^գڃ��ި�U=�� ��Wj^գڃ��^�yU�j�z��U=�=��� �W�d���W�xU�d��ze�U=�=ȯꕚW��� ��7�|UO�2ȯꕚW��� ��Wj^գڃ��^�yU�j�z��W��.���^�yU�j�z��U=�=ȯꕚW��� ��7�|UO�2ȯꕚW��� ��Wj^գڃ��^��U=�5��� �W�D���Wf^�#ڃ��^�yU�j�z��U=�=ȯ�:_Փ��z��U=�=ȯꕚW��� ��Wj^գڃ��ި�U=�� ��Wj^գڃ��^�yU�j�z��U=�=ȯ�z~U�:ȯꕚW��� ��Wj^գڃ��^��U=�5ǯ�9_���z��U=�=ȯꕚW��� ��Wj^գڃ��ި�U=�� ��Wj^գڃ��^�yU�j�z��U=�=ȯ�:_Փ��z��U=�=ȯꕚW��� ��Wj^գڃ��ި�U=�� ��Wj^գڃ��^��U=�5ǯꕙW��� ��7�|UO�2ȯꕚW��� ��Wj^գڃ��^�yU�j�z��W��.���^�yU�j�z��U=�=ȯꕚW��� ��7�|UO�2ȯꕚW��� ��Wj^գڃ��^�yU�j�z��W��.���^��U=�5ǯꕙW��� ��Wj^գڃ��ި�U=�� ��Wj^գڃ��^�yU�j�z��U=�=ȯ�z~U�:ȯꕚW��� ��Wj^գڃ��^�yU�j�z��W��.���^�yU�j�z��U=�=ȯꕚW��� ��7h^Փ�s��^��U=�5ǯꕙW��� ����^����^�_|��w�����������1�(9�S���-������w�~��|d{S�0�����o������÷O�x��|��c����������O>|����_���������������[�nN���v��}^g�_^>t��:��/��:�e^g;���l/��u����,���v�x��h��l���٤���:۩�u6�=����:^g�ڃ�:۩�u6�=������٨.��:۩�u6�=����:^g�ڃ�:۩�u6�=������٨.��:۩�u6�=����:^g�ڃ�:۩�u6�=H��:^g��s�:ۑ��l&k_g;s��f��u�S��lV{_g+5��Q]�u�S��lV{_g;u��f��u�S��lV{_g+5��Q]�u�S��lV{_g;u��f��u�S��lV{_g+5��Q]�u�S��lV{_g;u��f��u�C���l���V�x��d���lg��ٌ� ��v�x��j��l���٬� ��Vj^g����l���٬� ��v�x��j��l���٬� ��Vj^g����l���٬� ��v�x��j��l���٬� ��6�|�M�:����:^g�ڃ�:۩�u6�=H�����f���u�2�:�e_g;u��f��u�S��lV{_g;u��f��u�R�:�e_g;u��f��u�S��lV{_g;u��f��u�R�:�e_g;u��f��u�S��lV{_g;u��f��u�R�:�e_g;u��f��u�C���l���v�x��h��l��u6�� ��v�x��j��l���٬� ��v�x��j��l��u6�� ��v�x��j��l���٬� ��v�x��j��l��u6�� ��v�x��j��l���٬� ��v�x��j��l��u6�� ��v��:�͚�������A|����:�����J��lT�A|����:�����N��Y�A|����:�����F���I]�u�S��lV{_g;u��f��u�S��lV{_g+5��Q]�u�S��lV{_g;u��f��u�S��lV{�^g+t��F���u�#���L���v�x��h��lx.l^g�����˯�p��:��o�O���+7ϟo��?���̫7�LJ�ϞϿ|��ç�+O�����ϖ���{�ǻ��U����������Ƈ.����y8�>�[ /��+���+j�O���n���������p{����l��y�3x��@��}� +ڃ;�����U��^Q{pG}:<����^Q{�u���p����u|��epG�=<>Zu���wԇ��ÝT��^Q{pG=�1<�[ J�>{E���˄w�?�;�注��;����A��g��=������-�n������z�c8Zu���_W��?�wON�eu�QO�R��{�n������z��OV�>{E�����`�����^'o����N>��2������}��ڃ;�����F��g��=�����n��}��ڃ����?�[��ϲ�?��;�n������z�c8����^Q{pG=�1�����+j������̍ϲ���'����+j��w�V�>{E����po������_W�O��8㳬.�;���Ϊ�g��=�������>zŬ���gp+��3>{���Շӟ��T�gY]w�ӟ�Q�cn|��ڃ;��O�U��^Q{pG}:ܽ�������������'�_�㳬.�;����Ѫ�g��=��ޟ>/�17>{E��u�E?���d��'���Duğt���@V{"Щ�'Y�A��@���=�G(�:�P��� +enG(P��# +G(P�9>B���@���P�G(@]��Rs���#J� +T{��P(5G(P�A>Ba�y���e��P(5G(P�A>B���@���Rs���#F�G(H]��Rs���#J� +T{��P(5G(P�A<Ba�� ����"� +$k��P(3G(�A>B���@���Q� R�A>B���@���Rs���#J� T{��Pu� u�#J� -T{��P(5G(P�A>B���@���As��̞�#�G(��9>B���@���Rs���#F�G(H]��Rs���#J� +T{��P(5G(P�A>B���@���Q� +R�A>B���@���Rs���# +G(Ь9<Ba�� ����2s���#J� T{��P(5G(P�A>Ba�y���e��P(5G(P�A>B���@���Rs���#F�G(H]��Rs���#J� -T{�P(t�@����!s��Ȟ�#�� -D{��P(5G(P�A>B���@���Q� +T{��P(5G(P�A>B!�� +P�A>B���@���Rs���# +G(Ь9>Ba�y���e��P(5G(P�A>B���@���Rs���#F�G(H]��Rs���#J� +T{��P(5G(P�A>Ba�y���e��P(5G(P�A>B���@���Rs���#F�G(H]��Rs���# +G(Ь9>B���@���Q� R�A>B���@���Rs���#J� T{��Pu� u�#J� -T{��P(5G(P�A>B���@���P�G(@]��Rs���#J� -T{�P(t�@����1� -B�A>B���@���Rs���#J� -T{��Pu� u�#J� T{��P(5G(P�A>B���@���Q� R�A>B���@���Rs���#J� +T{��Pu� u�# +G(Ь9>B���@���Rs���#F�G(H]��Rs���#J� +T{��P(5G(P�A>B!�� +P�A>B���@���Rs���#J� T{��Pu� u�#J� -T{�P(t�@����2s���#F�G(H]��Rs���#J� -T{��P(5G(P�A>Ba�y���e��P(5G(P�A>B���@���Rs���#F�G(H]��Rs���#J� -T{��P(5G(P�A>Ba�y���e�P(t�@����2s���#J� -T{��Pu� u�#J� -T{��P(5G(P�A>B���@���P�G(@]��Rs���#J� -T{��P(5G(P�A>Ba�y���e��P(5G(P�A>B���@���Rs���#� -2{�P(r�@����2s���#��� -�����G(���r��x����#�39Bq3�P����E��p{x|���g_�}:�W������ߟwз��V/�����k����u���w�������W��9{q<��Ku|��epGw@���"�� Qj��ڃ|XD�9,�j�a���=LJE���"�� Qj��ڃ|XD�9,�j�a���"�.�|XD�9,�j�a���=ȇE���"�� ����� Qj��ڃ|XD�9,�j�a���=ȇE�:����a���=ȇE���"�� Q�8,�f��ac��"�.�|XD�9,�j�a���=ȇE���"�� 1�<,B�2ȇE���"�� Qj��ڃ|XD�9,�j�a���"�.�|XD�9,�j�a���=ȇE���"�� 1�<,B�2ȇE���"�� Q�8,�f��ae��=ȇE�:����a���=ȇE���"�� Qj��ڃ|XĨ��� Qj��ڃ|XD�9,�j�a���=ȇE�:����a���=ȇE���"�� Qj��ڃ|XĨ��� Q�vX��1<,��qXŚ��"��aD{���|X�u��(5�EP�A>,��A����RsX���"F��EH]���RsX���"J�aT{��(5�EP�A>,b�yX��e��(5�EP�A>,��A����RsX���"�a2{�(rA�����2sX���"J�aT{��u!u��"J�aT{��(5�EP�A>,��A����Q�aR�A>,��A����RsX���"J�aT{��u!u��"J�aT{��(5�EP�A<,��qX͚��"��a"{��(3�E�A>,��A����RsX���"F��EH]���RsX���"J�aT{��(5�EP�A>,b�yX��e��(5�EP�A>,��A����RsX���"B=u��"J�aT{��(5�EP�A<,��qX͚��"Ɯ�E]���RsX���"J�aT{��(5�EP�A>,b�yX��e��(5�EP�A>,��A����RsX���"F��EH]���RsX���"J�aT{��(5�EP�A>,b�yX��e��(5�EP�A<,��qX͚��"��aD{��u!u��"J�aT{��(5�EP�A>,��A����Q�aR�A>,��A����RsX���"J�aT{��u!u��"J�aT{��(5�EP�A>,��A����Q�aR�A<,��qX͚��"��aD{��(5�EP�A>,b�yX��e��(5�EP�A>,��A����RsX���"B=u��"J�aT{��(5�EP�A>,��A����Q�aR�A>,��A����RsX���"J�aT{�4�E��9<,��qXɚ��"��aD{����qX��vX��k�a�����rX����x|��"�39,r;���ǯ����>n��~�O������3�~��ûw�;��)4|əB_|�������Z�I�Q�AN��:ShR�AN�����Z�I�Q�AL�:Rh4k�Shc���e�Sh�&�F�9�VjRhT{�Sh�&�F�9�6�L�I]9�VjRhT{�Sh�&�F�9�VjRhT{�Sh����e�Sh�&�F�9�VjRhT{�Sh�&�F�9�6�L�I]9�VjRhT{Sh��͚�Z�I��AN��:ShR�AN�����Z�I�Q�AN�����ڨ3�&u�Z�I�Q�AN�����Z�I�Q�AN��:ShR�AN�����Z�I�Q�AN�����ڨ3�&u�Z�[ -����� -)4�5�)�2�B#ڃ�B��B��r -�ԤШ� ��JM -�jr -�ԤШ� ��F�)4�� ��JM -�jr -�ԤШ� ��JM -�jr -mԙB��r +T{��P(5G(P�A>B���@���As��̞�#�G(��9>B���@����eu���v���k�����8^9B��/��|�b|&G(n�����?���nO�����˿O����9@�������V�C���e]��p�}~���{��n�������txz�����}��ڃ;g/���{��ϲ����RsX���"J�aT{��(5�EP�A<,b�!�����2sX���"J�aT{��(5�EP�A>,b�yX��e��(5�EP�A>,��A����RsX���"B=u��"J�aT{��(5�EP�A>,��A����Q�aR�A>,��A����RsX���" +�EЬ9>,b�yX��e��(5�EP�A>,��A����RsX���"F��EH]���RsX���"J�aT{��(5�EP�A>,b�yX��e��(5�EP�A>,��A����RsX���"F��EH]���RsX���" +�EЬ9>,��A����Q�aR�A>,��A����RsX���"J�aT{��u!u��"J�aT{��(5�EP�A>,��A����Q�aR�A>,��A����RsX���"J�aT{��u!u��"����x9��E8��Xs|XD�9,�h�a������a���=ȇE���"�� Qj��ڃ|XĨ��� Qj��ڃ|XD�9,�j�a���=ȇE�:����a���=ȇE���"�� Qj��ڃxXĠ9,Bf��aE��"H�Qf� ڃ|XD�9,�j�a���"�.�|XD�9,�j�a���=ȇE���"�� 1�<,B�2ȇE���"�� Qj��ڃ|XD�9,�j�a���"�.�|XD�9,�j�a���=��E:��YsxXĐ9,Bd��ae��=ȇE���"�� Qj��ڃ|XĨ��� Qj��ڃ|XD�9,�j�a���=ȇE�:����a���=ȇE���"�� Qj��ڃ|XD���"���|XD�9,�j�a���=��E:��Ys|XĘ��� Qj��ڃ|XD�9,�j�a���=ȇE�:����a���=ȇE���"�� Qj��ڃ|XĨ��� Qj��ڃ|XD�9,�j�a���=ȇE�:����a���=��E:��Ys|XD�9,�h�a���"�.�|XD�9,�j�a���=ȇE���"�� 1�<,B�2ȇE���"�� Qj��ڃ|XD�9,�j�a���"�.�|XD�9,�j�a���=ȇE���"�� 1�<,B�2��E:��Ys|XD�9,�h�a���=ȇE�:����a���=ȇE���"�� Qj��ڃ|XD���"���|XD�9,�j�a���=ȇE���"�� 1�<,B�2ȇE���"�� Qj��ڃ|XD�9,�j�a���=��E9� Ys|XD�9,�h�a:�!�����\| 8,��=��"7W����������L��"����~����������k����#pF�orsx��v���9��/9S�/��B��"�B�ڃ�B+5)4�=�)�Qg +M�2�)�R�B�ڃ�B+5)4�=�)�BG +�f�q +m̙B�r �ԤШ� ��JM �jr -�ԤШ� ��M -Mf�a -�ȑB#Ys�B+3)4�=�)�R�B�ڃ�Bu�Ф.��B+5)4�=�)�R�B�ڃ�B+5)4�=�)�Qg -M�2�)�R�B�ڃ�B+5)4�=�)�R�B�ڃ�Bu�Ф.��B+5)4�=�)�R�B�ڃ�B+t��h��ІL -Md�q -�̤Ј� ��JM -�jr �ԤШ� ��F�)4�� ��JM �jr �ԤШ� ��JM @@ -3480,33 +3503,12 @@ Md mԙB��r �ԤШ� ��JM �jr -�ԤШ� ��B=�Р���B+5)4�=�)�R�B�ڃ�B+t��h���Ɯ)4�� ��JM -�jr -�ԤШ� ��JM -�jr -mԙB��r -�ԤШ� ��JM -�jr �ԤШ� ��F�)4�� ��JM -�jr -�ԤШ� ��JM -�jr -mԙB��r -�ԤШ� �� -)4�5�)�2�B#ڃ�Bu�Ф.��B+5)4�=�)�R�B�ڃ�B+5)4�=�)�Qg +�jb +�БB�Ys�B+3)4�=�)�Qg M�2�)�R�B�ڃ�B+5)4�=�)�R�B�ڃ�Bu�Ф.��B+5)4�=�)�R�B�ڃ�B+5)4�=�)�Qg -M�2�)�BG -�f�q -�̤Ј� ��JM -�jr -mԙB��r -�ԤШ� ��JM -�jr -�ԤШ� ��B=�Р���B+5)4�=�)�R�B�ڃ�B+5)4�=�)�Qg -M�2�)�R�B�ڃ�B+5)4�=�)�R�B�ڃ�B4)4�=�)�"G -�d�q -�̤Ј� ���Q�J��{l)��׀z�{,)��J -}w<<���S���w#���/|{�������_����k�c��t�ͅy����v��q�����o��#�/���8�=�?2����8�=�?2����8�=�?2.���+5e=�=�e�RS֣ڃ\�+5e=�=�e�QgYO�2�e�RS֣ڃ\�+5e=�=�e�BGY�f�qYo�Y��rY�Ԕ��� ��JMY�jrY�Ԕ��� ��F�e=�� ��JMY�jrY�Ԕ��� ��JMY�jrYo�Y֓�rY�Ԕ��� ��JMY�jrY�Ԕ��� ��F�e=�� ��JMY�jbY��Q֣Ys\�+3e=�=�e�QgYO�2�e�RS֣ڃ\�+5e=�=�e�RS֣ڃ\�u���.�\�+5e=�=�e�RS֣ڃ\�+5e=�=�e�QgYO�2�e�RS֣ڃ\�+5e=�=�e�RS֣ڃ\�u���.�T�+s+�Q�ò^���G�測Wf�zD{��z���zP�A.땚���^�)�Q�A.땚���ި��'u�^�)�Q�A.땚���^�)�Q�A.�:�zR�A.땚���^�)�Q�A.땚��IJޠ)���9,�9�z$k��ze��G���Wj�zT{��z�β��e��z���G���Wj�zT{��z���G���7�,�I]��Wj�zT{��z���G���Wj�zT{��z�β��e��z���G���Wj�zT{�z���͚òސ)��9.땙���^�)�Q�A.땚���ި��'u�^�)�Q�A.땚���^�)�Q�A.�:�zR�A.땚���^�)�Q�A.땚���^���u��z���G���Wj�zT{�z���͚�ޘ��'t�^�)�Q�A.땚���^�)�Q�A.�:�zR�A.땚���^�)�Q�A.땚���ި��'u�^�)�Q�A.땚���^�)�Q�A.�:�zR�A.땚��IJ^���G�測Wf�zD{��z�β��e��z���G���Wj�zT{��z���G���7�,�I]��Wj�zT{��z���G���Wj�zT{��z�β��e��z���G���Wj�zT{��z���G���7�,�I]��W�(�Ѭ9.땙���^�)�Q�A.�:�zR�A.땚���^�)�Q�A.땚���^���u��z���G���Wj�zT{��z���G���7�,�I]��Wj�zT{��z���G���Wj�zT{�z���'�簬W�(둬9.땙���~?We=~������e�����e�I}:��~|&e��(�������O���������\����"��p1��w:��;���ύ�2��,�.��~��@�jrg�YƑ�r�Ԕq�� �qJM�jr�Ԕq�� �qF�e�� �qJM�jb��QơYs\�)3e�=�e�QgG�2�e�RSơڃ\�)5e�=�e�RSơڃ\�u�q�.�\�)5e�=�e�RSơڃ\�)5e�=�e�QgG�2�e�RSơڃ\�)5e�=�e�RSơڃ\�u�q�.�T�)s+�P��2N���C�渌Sf�8D{��8���8P�A.㔚2��2N�)�P�A.㔚2��2Ψ��#u�2N�)�P�A.㔚2��2N�)�P�A.�:�8R�A.㔚2��2N�)�P�A.㔚2��2Π)���9,�9�8$k��8e��C���Sj�8T{��8��2��e��8���C���Sj�8T{��8���C���3�,�H]��Sj�8T{��8���C���Sj�8T{��8��2��e��8���C���Sj�8T{�8��2͚�2ΐ)��9.㔙2��2N�)�P�A.㔚2��2Ψ��#u�2N�)�P�A.㔚2��2N�)�P�A.�:�8R�A.㔚2��2N�)�P�A.㔚2��2N��2�u��8���C���Sj�8T{�8��2͚�2Θ��#t�2N�)�P�A.㔚2��2N�)�P�A.�:�8R�A.㔚2��2N�)�P�A.㔚2��2Ψ��#u�2N�)�P�A.㔚2��2N�)�P�A.�:�8R�A.㔚2��2N���C�渌Sf�8D{��8��2��e��8���C���Sj�8T{��8���C���3�,�H]��Sj�8T{��8���C���Sj�8T{��8��2��e��8���C���Sj�8T{��8���C���3�,�H]��S�(�Ь9.㔙2��2N�)�P�A.�:�8R�A.㔚2��2N�)�P�A.㔚2��2N��2�u��8���C���Sj�8T{��8���C���3�,�H]��Sj�8T{��8���C���Sj�8T{�8���#�簌S�(㐬9.㔙2��2n��Re~�����P���ӿ8��������^�������� px��6�����mno��W�������/s����Q�XCendstream +M�2�)�R�B�ڃ�B+5)4�=�)�R�B�ڃ�Bu�Ф.��B+sK�Q��Z�#�F��8�VfRhD{�Sh��ShP�AN�����Z�I�Q�AN�����ڨ3�&u�Z�I�Q�AN�����Z�I�Q�AN��:ShR�AN�����Z�I�Q�AN�����ڠI���9L�9Rh$k�She&�F�9�VjRhT{�Sh����e�Sh�&�F�9�VjRhT{�Sh�&�F�9�6�L�I]9�VjRhT{�Sh�&�F�9�VjRhT{�Sh����e�Sh�&�F�9�VjRhT{Sh��͚�ڐI���9N�����Z�I�Q�AN�����ڨ3�&u�Z�I�Q�AN�����Z�I�Q�AN��:ShR�AN�����Z�I�Q�AN�����Z���u�Sh�&�F�9�VjRhT{Sh��͚�ژ3�&t�Z�I�Q�AN�����Z�I�Q�AN��:ShR�AN�����Z�I�Q�AN�����ڨ3�&u�Z�I�Q�AN�����Z�I�Q�AN��:ShR�AN�����Z�#�F��8�VfRhD{�Sh����e�Sh�&�F�9�VjRhT{�Sh�&�F�9�6�L�I]9�VjRhT{�Sh�&�F�9�VjRhT{�Sh����e�Sh�&�F�9�VjRhT{�Sh�&�F�9�6�L�I]1�V�H�Ѭ9N�����Z�I�Q�AN��:ShR�AN�����Z�I�Q�AN�����Z���u�Sh�&�F�9�VjRhT{�Sh�&�F�9�6�L�I]9�VjRhT{�Sh�&�F�9�VjRhT{Sh�&�&��0�V�H���9N�����z?�U)4~�-����B��%�>^I���=c +=>��n����o��o�������ϟ�|~�w�߿?��By�B����v��q�����o��#�/���8�=�?2����8�=�?2����8�=�?2.���+5e=�=�e�RS֣ڃ\�+5e=�=�e�QgYO�2�e�RS֣ڃ\�+5e=�=�e�BGY�f�qYo�Y��rY�Ԕ��� ��JMY�jrY�Ԕ��� ��F�e=�� ��JMY�jrY�Ԕ��� ��JMY�jrYo�Y֓�rY�Ԕ��� ��JMY�jrY�Ԕ��� ��F�e=�� ��JMY�jbY��Q֣Ys\�+3e=�=�e�QgYO�2�e�RS֣ڃ\�+5e=�=�e�RS֣ڃ\�u���.�\�+5e=�=�e�RS֣ڃ\�+5e=�=�e�QgYO�2�e�RS֣ڃ\�+5e=�=�e�RS֣ڃ\�u���.�T�+s+�Q�ò^���G�測Wf�zD{��z���zP�A.땚���^�)�Q�A.땚���ި��'u�^�)�Q�A.땚���^�)�Q�A.�:�zR�A.땚���^�)�Q�A.땚��IJޠ)���9,�9�z$k��ze��G���Wj�zT{��z�β��e��z���G���Wj�zT{��z���G���7�,�I]��Wj�zT{��z���G���Wj�zT{��z�β��e��z���G���Wj�zT{�z���͚òސ)��9.땙���^�)�Q�A.땚���ި��'u�^�)�Q�A.땚���^�)�Q�A.�:�zR�A.땚���^�)�Q�A.땚���^���u��z���G���Wj�zT{�z���͚�ޘ��'t�^�)�Q�A.땚���^�)�Q�A.�:�zR�A.땚���^�)�Q�A.땚���ި��'u�^�)�Q�A.땚���^�)�Q�A.�:�zR�A.땚��IJ^���G�測Wf�zD{��z�β��e��z���G���Wj�zT{��z���G���7�,�I]��Wj�zT{��z���G���Wj�zT{��z�β��e��z���G���Wj�zT{��z���G���7�,�I]��W�(�Ѭ9.땙���^�)�Q�A.�:�zR�A.땚���^�)�Q�A.땚���^���u��z���G���Wj�zT{��z���G���7�,�I]��Wj�zT{��z���G���Wj�zT{�z���'�簬W�(둬9.땙���~?We=~�������e�����e�I}|�~|&e��(�������O���������\����"��p1��w:��;���ύ�2��,�.��~��@�jrg�YƑ�r�Ԕq�� �qJM�jr�Ԕq�� �qF�e�� �qJM�jb��QơYs\�)3e�=�e�QgG�2�e�RSơڃ\�)5e�=�e�RSơڃ\�u�q�.�\�)5e�=�e�RSơڃ\�)5e�=�e�QgG�2�e�RSơڃ\�)5e�=�e�RSơڃ\�u�q�.�T�)s+�P��2N���C�渌Sf�8D{��8���8P�A.㔚2��2N�)�P�A.㔚2��2Ψ��#u�2N�)�P�A.㔚2��2N�)�P�A.�:�8R�A.㔚2��2N�)�P�A.㔚2��2Π)���9,�9�8$k��8e��C���Sj�8T{��8��2��e��8���C���Sj�8T{��8���C���3�,�H]��Sj�8T{��8���C���Sj�8T{��8��2��e��8���C���Sj�8T{�8��2͚�2ΐ)��9.㔙2��2N�)�P�A.㔚2��2Ψ��#u�2N�)�P�A.㔚2��2N�)�P�A.�:�8R�A.㔚2��2N�)�P�A.㔚2��2N��2�u��8���C���Sj�8T{�8��2͚�2Θ��#t�2N�)�P�A.㔚2��2N�)�P�A.�:�8R�A.㔚2��2N�)�P�A.㔚2��2Ψ��#u�2N�)�P�A.㔚2��2N�)�P�A.�:�8R�A.㔚2��2N���C�渌Sf�8D{��8��2��e��8���C���Sj�8T{��8���C���3�,�H]��Sj�8T{��8���C���Sj�8T{��8��2��e��8���C���Sj�8T{��8���C���3�,�H]��S�(�Ь9.㔙2��2N�)�P�A.�:�8R�A.㔚2��2N�)�P�A.㔚2��2N��2�u��8���C���Sj�8T{��8���C���3�,�H]��Sj�8T{��8���C���Sj�8T{�8���#�簌S�(㐬9.㔙2��2n��Re~�����P���ӿ8��������^�����x��_�.���v?�����7>��m�}�˜g"���X;endstream endobj 1402 0 obj << /Type /Page @@ -3521,56 +3523,56 @@ endobj /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 706.187 315.485 715.098] /Subtype /Link -/A << /S /GoTo /D (1501) >> +/A << /S /GoTo /D (1492) >> >> endobj 1406 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 706.187 537.983 715.098] /Subtype /Link -/A << /S /GoTo /D (1501) >> +/A << /S /GoTo /D (1492) >> >> endobj 1407 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.462 693.235 350.016 702.147] /Subtype /Link -/A << /S /GoTo /D (1503) >> +/A << /S /GoTo /D (1494) >> >> endobj 1408 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 693.235 537.983 702.147] /Subtype /Link -/A << /S /GoTo /D (1503) >> +/A << /S /GoTo /D (1494) >> >> endobj 1409 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.462 680.284 365.238 689.195] /Subtype /Link -/A << /S /GoTo /D (1507) >> +/A << /S /GoTo /D (1498) >> >> endobj 1410 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 680.284 537.983 689.195] /Subtype /Link -/A << /S /GoTo /D (1507) >> +/A << /S /GoTo /D (1498) >> >> endobj 1411 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.462 667.333 338.718 676.244] /Subtype /Link -/A << /S /GoTo /D (1511) >> +/A << /S /GoTo /D (1502) >> >> endobj 1412 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 667.333 537.983 676.244] /Subtype /Link -/A << /S /GoTo /D (1511) >> +/A << /S /GoTo /D (1502) >> >> endobj 1413 0 obj << /Type /Annot @@ -3785,28 +3787,28 @@ endobj 1445 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 457.265 209.922 464.239] +/Rect [119.552 457.385 209.922 464.239] /Subtype /Link /A << /S /GoTo /D (security-mysql-network) >> >> endobj 1446 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [528.02 457.265 537.983 464.239] +/Rect [528.02 457.385 537.983 464.239] /Subtype /Link /A << /S /GoTo /D (security-mysql-network) >> >> endobj 1447 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [95.641 444.433 155.277 451.288] +/Rect [95.641 444.314 155.277 451.288] /Subtype /Link /A << /S /GoTo /D (security-webserver) >> >> endobj 1448 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [528.02 444.433 537.983 451.288] +/Rect [528.02 444.314 537.983 451.288] /Subtype /Link /A << /S /GoTo /D (security-webserver) >> >> endobj @@ -4039,28 +4041,28 @@ endobj /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 217.42 245.727 226.331] /Subtype /Link -/A << /S /GoTo /D (2070) >> +/A << /S /GoTo /D (2061) >> >> endobj 1482 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 217.42 537.983 226.331] /Subtype /Link -/A << /S /GoTo /D (2070) >> +/A << /S /GoTo /D (2061) >> >> endobj 1483 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.462 204.468 276.86 213.38] /Subtype /Link -/A << /S /GoTo /D (2097) >> +/A << /S /GoTo /D (2088) >> >> endobj 1484 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 204.468 537.983 213.38] /Subtype /Link -/A << /S /GoTo /D (2097) >> +/A << /S /GoTo /D (2088) >> >> endobj 1485 0 obj << /Type /Annot @@ -4159,7 +4161,7 @@ endobj >> stream xڔ�_�d�}e��O�G�����_�"gF�C�[�#l?�P���P����|zg�=�d�SyW.�<)^�u� ���o�<�������{9^N��������w?������/�����8�x|~>�?ݟ�������Owx�?^}f8~�r�zxx||�����?=��������?�y��x�O���|����Ow���_?���/���_���~�����O�����?M�����x�_��w�����?�����g~����>�������k\qn�ސ6p��zx{�����^�>���-eϲu�XO�����n�ް6p�z��ֺ={�����c�{�����^�>oO�:�e�ܱ>^_�u{����;����˳�n�ް6p��zx}~�����^��� -��$��Y�.���cx|������XO���κ={�����c������^���>����Qv6nGy����x����;��gpg�۳7� ܱ�^����� k�[ߎ��W�g<���c}8��X��� kw����|�?�Ƴ7� ܱ�>�'�g<{�����������y�+p�z���u{����;���p�"�۳7� ܱ�>���n�ް6��x���<���c}8<��I��� kw�χ㫵n�ް6p��zx������,�u���p���ϲt�XO����n�ް6p�z���u{����;�ӧ�� �۳7� �n}8}�:�e�ܱ�>��Giݞ�am����1���� kw�����Z�goXx��x<ܽ�s�Y�.�����U���ް6p��|�{������X_O������^�>�>�'�g<���c=}�ֺ={�����c�����,��<�8���^�>�>�{iϲu�XO��Q���ް6p�z��u{����;�����17��am�u�����U�<�e�ܱ>_�u{����;֧�����x����;����$̍goXx��z��u<���c=}���x����;���p/̍goX�c=}Gkݞ�am�u���c��?�Ƴl]�;��� ��O�0^�v|O�_Y�Go��<�����x����W�ww����&Ϣu�X�ֺ={�����Sxz������X���Y�gnXx�z<}�:�e�ܱ�>��'iݞ�am����1��u{����;��xg�۳7� �n��;���py��p��p8�t������X�//ֺ={��������MZ�goXx��p��Lۣ�l����[���,���˓<{C�������3�ް6�����K�x��p�z���I��am����1�߆ȳ7� ܱ��oֺ={����֧�ó�<ɳl]�;և���b<{��������Z�goX�c=}��$�ް6����1�˓<���c=}ֺ={�����c��'y����;��� ���=z�Y��ʗ�g �l���q;��pg�۳7� ܱ>���I��am����p�j�۳7� �n}�;<ɳ�<���c}8�ɳ�<{�����cx������XO�<;ɳ7� �n}{�����,[����1�˟q����XO�<;ɳ7� ܱ�>�;kݞ�am�U���������˳h]�;��Û�=�<{��������Z�goX�c}9����p��x���<���c=}Oֺ={�����3x�������XO��<;ɳ7� �n�?}2�ȳl]�;���p|������XO�<;ɳ7� ܱ�^߬u{����w��W�c.ϲu�X����$�ް6p��txx������XOÓ�17��am�u���c�g'y��p�z��u{����;��� �Ҵ=z�Y���3�g'y����O��@y��p�z���I��am����p/�N�� kw�/��Wkݞ�am�u����^���Y�.����E������XOÓ�n�ް6p�z���I��am�u���c�g'y��p�z��u{����;��� �N�� kw���A�����^����2�ȳl]�;��ó�~{�p;ʧ�Q�����X_�/ֺ={����ַ�g �O�,[����)��<{�����cx������XO�<>ɳ7� �j}�;}�h�Y�����c8Z��� kw���A�����X_O����� k�[�w�;L�Y�.����I�����X�w�ֺ={�����c��D��am�u���c����=����(O���T~{�p;�� k�<{C�����~|ry�-���6O���[��n<S</�����v��f��<�����OՇӏ�kϜ~�<��=������|��߬���m�86���/_������矿|��8��������3��1�̋���˷��"��"lm 8�akq^DY3/����"�:�E��@�q�1/��⼈��y�6��E�t̋��q8/�c^�� �yg�"lm 8�akq^DY3/����"�:�E��@�q�1/��⼈��y�6�E�u�u⼈��y�6�E�ű���8/�c^�� �yeͼZ 8�akq^�YǼ[H�"N�͋��p8/���A��yg�"lm 8�akq^�YǼ[��"ʚy�.@�q�1/��⼈��y�6�E�ű���8/���A��yg�"lm 8�akq^�YǼ[��"ʚy�.@�q�1/��Ҽ��n�"�,8�aiq^DY3/����"�:�E��@�q�1/��⼈��y�6�E�5�"h]�8/�c^�� �yg�"lm 8�akq^DY3/����"�:�E��@�q�1/��⼈��y�6�E�5�"h]�0/���E�x �y'��E�X8�q�1/��⼈��y��@�q�1/��⼈��y�6�E�ű���8/���A��yg�"lm 8�akq^�YǼ[��"ʚy�.@�q�1/��⼈��y�6�E�ű���4/��c^���y���EXY8�q�1/��⼈��y�6�E�5�"h]�8/�c^�� �yg�"lm 8�akq^DY3/����"�:�E��@�q�1/��⼈��y�6�E�5�"h]�8/�c^�� �yg�"lm ͋8�6/���Ѽ�R�yT6�E�s̋���8/�c^�� �yg�"lm (k�Eк�q^�YǼ[��"�:�E��@�q�1/��⼈�f^��E�ű���8/�c^�� �yg�"lm �!� +��$��Y�.���cx|������XO���κ={�����c������^���>����Qv6nGy����x����;��gpg�۳7� ܱ�^����� k�[ߎ��W�g<���c}8��X��� kw����|�?�Ƴ7� ܱ�>�'�g<{�����������y�+p�z���u{����;���p�"�۳7� ܱ�>���n�ް6��x���<���c}8<��I��� kw�χ㫵n�ް6p��zx������,�u���p���ϲt�XO����n�ް6p�z���u{����;�ӧ�� �۳7� �n}8}�:�e�ܱ�>��Giݞ�am����1���� kw�����Z�goXx��x<ܽ�s�Y�.�����U���ް6p��|�{������X_O������^�>�>�'�g<���c=}�ֺ={�����c�����,��<�8���^�>�>�{iϲu�XO��Q���ް6p�z��u{����;�����17��am�u�����U�<�e�ܱ>_�u{����;֧�����x����;����$̍goXx��z��u<���c=}���x����;���p/̍goX�c=}Gkݞ�am�u���c��?�Ƴl]�;��� ��O�0^�v|O�_Y�Go��<�����x����W�ww����&Ϣu�X�ֺ={�����Sxz������X���Y�gnXx�z<}�:�e�ܱ�>��'iݞ�am����1��u{����;��xg�۳7� �n��;���py��p��p8�t������X�//ֺ={��������MZ�goXx��p��Lۣ�l����[���,���˓<{C�������3�ް6�����K�x��p�z���I��am����1�߆ȳ7� ܱ��oֺ={����֧�ó�<ɳl]�;և���b<{��������Z�goX�c=}��$�ް6����1�˓<���c=}ֺ={�����c��'y����;��� ���=z�Y��ʗ�g �l���q;��pg�۳7� ܱ>���I��am����p�j�۳7� �n}�;<ɳ�<���c}8�ɳ�<{�����cx������XO�<;ɳ7� �n}{�����,[����1�˟q����XO�<;ɳ7� ܱ�>�;kݞ�am�U���������˳h]�;��Û�=�<{��������Z�goX�c}9����p��x���<���c=}Oֺ={�����3x�������XO��<;ɳ7� �n�?}2�ȳl]�;���p|������XO�<;ɳ7� ܱ�^߬u{����w��W�c.ϲu�X����$�ް6p��txx������XOÓ�17��am�u���c�g'y��p�z��u{����;��� �Ҵ=z�Y���3�g'y����O��@y��p�z���I��am����p/�N�� kw�/��Wkݞ�am�u����^���Y�.����E������XOÓ�n�ް6p�z���I��am�u���c�g'y��p�z��u{����;��� �N�� kw���A�����^����2�ȳl]�;��ó�~{�p;ʧ�Q�����X_�/ֺ={����ַ�g �O�,[����)��<{�����cx������XO�<>ɳ7� �j}�;}�h�Y�����c8Z��� kw���A�����X_O����� k�[�w�;L�Y�.����I�����X�w�ֺ={�����c��D��am�u���c����=����(O���T~{�p;�� k�<{C�����~|ry�-���6O���[��n<S<������v��f��<�����OՇӏ�kϜ~�<��=������|��߬���m�86���/_������矿|��8��������3��1�̋���˷��"��"lm 8�akq^DY3/����"�:�E��@�q�1/��⼈��y�6��E�t̋��q8/�c^�� �yg�"lm 8�akq^DY3/����"�:�E��@�q�1/��⼈��y�6�E�u�u⼈��y�6�E�ű���8/�c^�� �yeͼZ 8�akq^�YǼ[H�"N�͋��p8/���A��yg�"lm 8�akq^�YǼ[��"ʚy�.@�q�1/��⼈��y�6�E�ű���8/���A��yg�"lm 8�akq^�YǼ[��"ʚy�.@�q�1/��Ҽ��n�"�,8�aiq^DY3/����"�:�E��@�q�1/��⼈��y�6�E�5�"h]�8/�c^�� �yg�"lm 8�akq^DY3/����"�:�E��@�q�1/��⼈��y�6�E�5�"h]�0/���E�x �y'��E�X8�q�1/��⼈��y��@�q�1/��⼈��y�6�E�ű���8/���A��yg�"lm 8�akq^�YǼ[��"ʚy�.@�q�1/��⼈��y�6�E�ű���4/��c^���y���EXY8�q�1/��⼈��y�6�E�5�"h]�8/�c^�� �yg�"lm 8�akq^DY3/����"�:�E��@�q�1/��⼈��y�6�E�5�"h]�8/�c^�� �yg�"lm ͋8�6/���Ѽ�R�yT6�E�s̋���8/�c^�� �yg�"lm (k�Eк�q^�YǼ[��"�:�E��@�q�1/��⼈�f^��E�ű���8/�c^�� �yg�"lm �!� �yg�"lm 8�aki^�I�yv�E�3�"(]�8/�c^�� �yg�"lm 8�akq^DY3/����"�:�E��@�q�1/��⼈��y�6�E�5�"h]�8/�c^�� �yg�"lm 8�akq^DY3/����"�:�E��@�q�m^����y��",m (k�Eк�q^�YǼ[��"�:�E��@�q�1/��⼈�f^��E�ű���8/�c^�� �yg�"lm (k�Eк�q^�YǼ[��"�:�E��@�q�1/��⼈�f^���E�t�ag�p^�9ǼK��"�:�E��@�Q�̋�u⼈��y�6�E�ű���8/�c^�� �yc��"d]�8/�c^�� �yg�"lm 8�akq^DY3/����"�:�E��@�q�1/��⼈��y�6��E�t̋��q4/�ۼ+��"�9�EX�@���3/����Z�؝�����~+�E^�}ȴ.�=���q�?��釯�������᷿���?�4������Ͽ}�z-"}|�-�����x|;��*ήt�����_z�*�����q��e�RR�{R�LNJ��qLj�iIIY8.I�r���lg�F�������(����p�e�QR��Q���((��Q�%e�5�d��,G�F�f����bT(g0 ��q.j��EIY8lE�q��$��q(j��D�X8�D�rF��l'�F�B����>�(����p�e�PR��P��a((�Y�Q� %e� 5�$��,�F�����T(g @@ -4171,7 +4173,7 @@ j �&A�8N&�2�$)ǽ�Q&�$e�8�4ʴ��,��B9CIP6�3I�L%I��q#i�I$IY8$�2}$)�u�P�8���4�GI�Kw�F�,����(�(�D��p\D �"A�8�!�25$)�-�Q&�$e�8�4�t��,W����r_��8�4���,��F��������(�>��p\> �A�8��2�#)�ͣQ&y$e�8x4��,֎������F�H�Kw�F�̑�����<�8�Kl��ER�_8��8�s�x�{��;S�8�LJ�8��������}�7?�ym�}9���o��}�R��p�+��7���o.�x��o.��"���d]����ʚo.Fk����5�\���7+k��� �o.��7�u�7+k��� �o.V�|s1Z��\����b�6����X�7�u�7+k��� �o.V�|s1Z��\���0Gg�17���trf������@.͕5�9Zȱ���6Gk�77���urr��i���@�Ε5�9Z�Ṳ�<Gk�=7���ur~������@.Е5 :Z����BGk�C7���ur���i���@�ѕt���,�ʙ"� �&�Xg�N��Y���KGk�LW֤�hm ��ʚ:� �>�Xg�N�ȉ���QGk�RW�d�hm ��ʚR� �V�Xg�N�ȹ���WGk�XW�$�hm G�ʚj� �n�Xg�N�H�rn�:/aX�+����X8ؕ3;J� ���#v��@�ؕ5;Z�%��&eGk9fW���hm ���:�v�.@Nڕ5M;Z�U��&kGk9lW֔�hm ���:�v�.@�ە5};Zȅ��&qGk9rW�T�hm v�F�Н����])G���q�����Q�@ޕ5�;Z�ͻ��蝬��weM���r���I���@�ߕ5�;Z���������xeM��r������@�5%<Z�-������sxeM��r��I���@��tT��,v�F�0����4^9�ƣ��\�+k�x�6�yeM!��r#o�3�'��L^Y�ɣ��\�+kRy�6�cyeM-��r/o�3�'��d^Y�̣��\�+k�y�6��yeM9��r;/��x�+��yeM?��rA��I���@��tT��,w��9Cz�.@N�5-=Z�5��&�Gk9�W��hm 7��:�z�.@��5]=Z�e��&�Gk9�W���hm ���:{�.@N�5�=Zȕ��&�Gk9�W֔�hm ���:c{�.@��5�=Z�Ž�������^9Sݣ������ɺ�9�Wִ�hm ��ʚ�� ��_YSࣵ�����ɺ�9�W�t�hm ��ʚ� �_YS㣵�����ɺ�9�W�4�hm W�ʚ,� �0_YS棵�����ɺ�1�W��磳p\�+g}�6�#}eM���r�o�3�'��T_Y�ꣵ�\�+kr}�6��}eM���r�/��h�+��}eM���r���I���@���5�>Z�������~eMÏ�rů�����@��5%?Z�-��&�'g�0�W���p\�+g�~�6����0]U��[����w����}s���������-�a�?~�����?����������K<{?�Oϻ�����g�~��������� ��]Y������9z� -��]Y�����+k�w�6��weM��r�n�3z'���]Y�����+k�w�6�w%�;:�ѻq�蝤��weM��r�������@�ޕ5�;Z�ѻ��蝬��weM��r�������@�ޕ5�;Z�ѻ��蝬��weM��r�������@�ޕ5�;Z�ѻ��蝬��weM��b���#zGg�8zW�D�(m G��:�w�.@�ޕ5�;Z�ѻ�&zGk9zW�D�hm G��:�w�.@�ޕ5�;Z�ѻ�&zGk9zW�D�hm G��:�w�.@�ޕ5�;Z�ѻ�&zGk9zW�D�hm G��:�w�.@�ޕs���x ��] G���q�����Q�@�ޅ���ur�������@�ޕ5�;Z�ѻ�&zGk9z7���ur�������@�ޕ5�;Z�ѻ�&zGk9z7���ur�������@�ޕ5�;Z�ѻ�&zGk1z7�D��lF�J9�wT��w�L��r�������@�ލuF�d]��+k�w�6��weM��r�������@�ލuF�d]��+k�w�6��weM��r�������@�ލuF�d]��+k�w�6��weM��b���#zGg�0z7�D�lG�ʙ�� ��]Y�����+k�w�6��wc��;Y G�ʚ�� ��]Y�����+k�w�6��wc��;Y G�ʚ�� ��]Y�����+k�w�6��wa=G�`]��+k�w�6��weM��b���#zGg�8z7���tr�������@�ޕ5�;Z�ѻ�&zGk9z7���ur�������@�ޕ5�;Z�ѻ�&zGk9z7���ur�������@�ޕ5�;Z�ѻ�&zGk9z7���ur�������@�ޕtD��,G�ʙ�� ���Xg�N��ѻ�&zGk9zW�D�hm G�ʚ�� ���Xg�N��ѻ�&zGk9zW�D�hm G�ʚ�� ���Xg�N��ѻ�&zGk9zW�D�hm G�ʚ�� ���Xg�N��ѻ�������]9�����+k�w�6��wc��;Y G�ʚ�� ��]Y�����+k�w�6��wa=G�`]��+k�w�6��weM��r�������@�ލuF�d]��+k�w�6��weM��r�������@�ލ4�;9�ѻR������]9��������*z��آ����u7z���-z<���������?����>��ˏ���/ۿ��Ͽ���_eb��U�,�X�߿>���Ryx����o����_�z�6��zeM_��r_������@����׃ur_������@��5}=Z�}����Gk��7��דur_������@��5}=Z�}��������8g_O��}����Gk��W���hm ��ʚ�� ��Xg_O��}����Gk��W���hm ��ʚ�� ��Xg_O��}����Gk��W���hm ��ʚ�� ��Xg_O��}����Gk��W��ף�p��+g�z�6��zc�}=Y ��ʚ�� �^Y�ף����+k�z�6��zc�}=Y ��ʚ�� �^Y�ף����+k�z�6��zc�}=Y ��ʚ�� �^Y�ף����+k�z�6��zc�}=Y ��ʹ��h��a_����GcḯW���(m ���z������W���hm ��ʚ�� �^Y�ף�������ɺ���W���hm ��ʚ�� �^Y�ף�������ɺ���W���hm ��ʚ�� �^Y�ף����i�zr6�z�}=*�}�r��Gi��W���hm ���:�z�.@��5}=Z�}����Gk��W���hm ���:�z�.@��5}=Z�}����Gk��W���hm ���:�z�.@��5}=Z�}����Gk��W��ף�p��e�zR6��z�L_��r_������@��5}=Z�}��ξ����zeM_��r_������@��5}=Z�}��ξ����zeM_��r_������@��5}=Z�}����z��@��5}=Z�}����Gk��W��ף�p�����I����W���hm ��ʚ�� �^Y�ף�������ɺ���W���hm ��ʚ�� �^Y�ף�������ɺ���W���hm ��ʚ�� �^Y�ף�������ɺ���W���hm ��J:�zt��z�L_��r_o���'��^Y�ף����+k�z�6��zeM_��r_o���'��^Y�ף����+k�z�6��zeM_��r_o���'��^Y�ף����+k�z�6��zeM_��r_o���'�ľ^IG_���q_����Q�@��5}=Z�}��ξ����zeM_��r_������@��5}=Z�}����z��@��5}=Z�}����Gk��W���hm ���:�z�.@��5}=Z�}����Gk��W���hm ��F�����þ^)G_���q_����Q�@���q���{l}�e�������������?�o�{�Y?����z��c����E�x(Ϥ�?���?��ӧ������|��Z�||�O8k>���=w~��Y2��̒/^s?K��"�%����%�̒ɺ�9KV�d�hm g�ʚ,� �,YIG����q�l�3K&��,YY�%����%+k�d�6��deM���r�l�3K&��,YY�%����%+k�d�6��deM���r�l�3K&��,YY�%����%+k�d�6��deM���r�l�3K&��,YY�%����%+�Ȓ�Y8Β�3Y2J�Y���,����deM���r���ɒ��@Β�5Y2Z�Y���,����deM���r���ɒ��@Β�5Y2Z�Y���,����deM���r���ɒ��@Β�5Y2Z�Y���,����d�ܲd4^�0KV%��p�%+g�d�6��da=g�`]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@̒�4Y29�Y�R�,���,Y9�%����%+k�d�6��dc�Y2Y g�ʚ,� �,YY�%����%+k�d�6��dc�Y2Y g�ʚ,� �,YY�%����%+k�d�6��dc�Y2Y g�ʚ,� �,YY�%����%+�Ȓ�Y8̒�2Y2)�Y�r&KFi9KV�d�hm g�ʚ,� �,�Xg�L��Y��&KFk9KV�d�hm g�ʚ,� �,�Xg�L��Y��&KFk9KV�d�hm g�ʚ,� �,YX�Y2XW g�ʚ,� �,YY�%����%+�Ȓ�Y8Β�sf�$]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6�d%Y2:�Y�r&KFi9K6֙%�ur���ɒ��@Β�5Y2Z�Y��&KFk9K6֙%�ur���ɒ��@Β�5Y2Z�Y��&KFk9K6֙%�ur���ɒ��@Β�5Y2Z�Y��&KFk9K6֙%�ub���#KFg�8KV�d�(m g�ʚ,� �,�Xg�L��Y��&KFk9KV�d�hm g�ʚ,� �,YX�Y2XW g�ʚ,� �,YY�%����%+k�d�6��dc�Y2Y g�ʚ,� �,YY�%����%+k�d�6�d#M�L��a���#KFe�8KV�d�(m gɔ,�c˒/��,y�=~���xz�#~���G��������_�f��<sΒ&��_~���o#L�����_�~�����?��B����D��}��{y���;(�3@�x�����@���r��� P��@P�5 +��]Y�����+k�w�6��weM��r�n�3z'���]Y�����+k�w�6�w%�;:�ѻq�蝤��weM��r�������@�ޕ5�;Z�ѻ��蝬��weM��r�������@�ޕ5�;Z�ѻ��蝬��weM��r�������@�ޕ5�;Z�ѻ��蝬��weM��b���#zGg�8zW�D�(m G��:�w�.@�ޕ5�;Z�ѻ�&zGk9zW�D�hm G��:�w�.@�ޕ5�;Z�ѻ�&zGk9zW�D�hm G��:�w�.@�ޕ5�;Z�ѻ�&zGk9zW�D�hm G��:�w�.@�ޕs���x ��] G���q�����Q�@�ޅ���ur�������@�ޕ5�;Z�ѻ�&zGk9z7���ur�������@�ޕ5�;Z�ѻ�&zGk9z7���ur�������@�ޕ5�;Z�ѻ�&zGk1z7�D��lF�J9�wT��w�L��r�������@�ލuF�d]��+k�w�6��weM��r�������@�ލuF�d]��+k�w�6��weM��r�������@�ލuF�d]��+k�w�6��weM��b���#zGg�0z7�D�lG�ʙ�� ��]Y�����+k�w�6��wc��;Y G�ʚ�� ��]Y�����+k�w�6��wc��;Y G�ʚ�� ��]Y�����+k�w�6��wa=G�`]��+k�w�6��weM��b���#zGg�8z7���tr�������@�ޕ5�;Z�ѻ�&zGk9z7���ur�������@�ޕ5�;Z�ѻ�&zGk9z7���ur�������@�ޕ5�;Z�ѻ�&zGk9z7���ur�������@�ޕtD��,G�ʙ�� ���Xg�N��ѻ�&zGk9zW�D�hm G�ʚ�� ���Xg�N��ѻ�&zGk9zW�D�hm G�ʚ�� ���Xg�N��ѻ�&zGk9zW�D�hm G�ʚ�� ���Xg�N��ѻ�������]9�����+k�w�6��wc��;Y G�ʚ�� ��]Y�����+k�w�6��wa=G�`]��+k�w�6��weM��r�������@�ލuF�d]��+k�w�6��weM��r�������@�ލ4�;9�ѻR������]9��������*z��آ����e7z���-z<���������?����>��ˏ���/ۿ��Ͽ���_eb��U�,�X�߿>���Ryx����o����_�z�6��zeM_��r_������@����׃ur_������@��5}=Z�}����Gk��7��דur_������@��5}=Z�}��������8g_O��}����Gk��W���hm ��ʚ�� ��Xg_O��}����Gk��W���hm ��ʚ�� ��Xg_O��}����Gk��W���hm ��ʚ�� ��Xg_O��}����Gk��W��ף�p��+g�z�6��zc�}=Y ��ʚ�� �^Y�ף����+k�z�6��zc�}=Y ��ʚ�� �^Y�ף����+k�z�6��zc�}=Y ��ʚ�� �^Y�ף����+k�z�6��zc�}=Y ��ʹ��h��a_����GcḯW���(m ���z������W���hm ��ʚ�� �^Y�ף�������ɺ���W���hm ��ʚ�� �^Y�ף�������ɺ���W���hm ��ʚ�� �^Y�ף����i�zr6�z�}=*�}�r��Gi��W���hm ���:�z�.@��5}=Z�}����Gk��W���hm ���:�z�.@��5}=Z�}����Gk��W���hm ���:�z�.@��5}=Z�}����Gk��W��ף�p��e�zR6��z�L_��r_������@��5}=Z�}��ξ����zeM_��r_������@��5}=Z�}��ξ����zeM_��r_������@��5}=Z�}����z��@��5}=Z�}����Gk��W��ף�p�����I����W���hm ��ʚ�� �^Y�ף�������ɺ���W���hm ��ʚ�� �^Y�ף�������ɺ���W���hm ��ʚ�� �^Y�ף�������ɺ���W���hm ��J:�zt��z�L_��r_o���'��^Y�ף����+k�z�6��zeM_��r_o���'��^Y�ף����+k�z�6��zeM_��r_o���'��^Y�ף����+k�z�6��zeM_��r_o���'�ľ^IG_���q_����Q�@��5}=Z�}��ξ����zeM_��r_������@��5}=Z�}����z��@��5}=Z�}����Gk��W���hm ���:�z�.@��5}=Z�}����Gk��W���hm ��F�����þ^)G_���q_����Q�@���q���{l}�e�������������?�o�{�Y?����z��c����E�x(Ϥ�?���?��ӧ������|��Z�||�O8k>���=w~��Y2��̒/^s?K��"�%����%�̒ɺ�9KV�d�hm g�ʚ,� �,YIG����q�l�3K&��,YY�%����%+k�d�6��deM���r�l�3K&��,YY�%����%+k�d�6��deM���r�l�3K&��,YY�%����%+k�d�6��deM���r�l�3K&��,YY�%����%+�Ȓ�Y8Β�3Y2J�Y���,����deM���r���ɒ��@Β�5Y2Z�Y���,����deM���r���ɒ��@Β�5Y2Z�Y���,����deM���r���ɒ��@Β�5Y2Z�Y���,����d�ܲd4^�0KV%��p�%+g�d�6��da=g�`]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@̒�4Y29�Y�R�,���,Y9�%����%+k�d�6��dc�Y2Y g�ʚ,� �,YY�%����%+k�d�6��dc�Y2Y g�ʚ,� �,YY�%����%+k�d�6��dc�Y2Y g�ʚ,� �,YY�%����%+�Ȓ�Y8̒�2Y2)�Y�r&KFi9KV�d�hm g�ʚ,� �,�Xg�L��Y��&KFk9KV�d�hm g�ʚ,� �,�Xg�L��Y��&KFk9KV�d�hm g�ʚ,� �,YX�Y2XW g�ʚ,� �,YY�%����%+�Ȓ�Y8Β�sf�$]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6�d%Y2:�Y�r&KFi9K6֙%�ur���ɒ��@Β�5Y2Z�Y��&KFk9K6֙%�ur���ɒ��@Β�5Y2Z�Y��&KFk9K6֙%�ur���ɒ��@Β�5Y2Z�Y��&KFk9K6֙%�ub���#KFg�8KV�d�(m g�ʚ,� �,�Xg�L��Y��&KFk9KV�d�hm g�ʚ,� �,YX�Y2XW g�ʚ,� �,YY�%����%+k�d�6��dc�Y2Y g�ʚ,� �,YY�%����%+k�d�6�d#M�L��a���#KFe�8KV�d�(m gɔ,�c˒/��,y�=~���xz�#~���G��������_�f��<sΒ&��_~���o#L�����_�~�����?��B����D��}��{y���;(�3@�x�����@���r��� P��@P�5 Z��������eM���r��� P��@P�5 Z��������eM���r��� P��@P�5 Z����������4^�0@Q����p�(g�6�a=(`]��(k�6�eM���r��� P��@P�u(d]��(k�6�eM���r��� P��@P�u(d]��(k�6�eM���r��� P��@P�4 @@ -4186,127 +4188,103 @@ Z Z���&@Ak9@1���ur��� P��@P�5 Z���&@Ak9@1���ub���#@Ag�8@Q�((m (ʚ�� ���Xg�B����&@Ak9@Q�(hm (ʚ�� ��EX� XW (ʚ�� ��EY�����(k�6�c� -Y (ʚ�� ��EY�����(k�6#M�B��a���#@Ae�8@Q�((m (P���cP.^��n7@��%@��������x��e<sP�G��}�����_����� ���D�,Y����(�d'�;��%�w�]���w�}|��6�6��MI�w���p��m�9�������MY�mhm g���;���@��6e�w������m�:�������MY�mhm g���;���@��6e�w������m�:�������MY�mhm g���;���@��6e�w������m�:�������MY�mhm ~g����lCg��;۔3�ن��w��Lfɺ�9�U�$�hm '�ʚd� �dVY�̢�����Lfɺ�9�U�$�hm '�ʚd� �dVY�̢�����Lfɺ�9�U�$�hm '�ʚd� �dVY�̢�����Lfɺ�)�U�-�E�%�Y%�,�ɬr&�Ei9��s2��ɬ�&�Ek9�U�$�hm '�ʚd� �d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd� �d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd� �d�H�̒�q��*�HfQY8Nf�3�,J�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ��d���d�(�̒�q��*g�Y�6��YeM2��r2��If��@Nf�u&�d]���*k�Y�6��YeM2��r2��If��@Nf�u&�d]���*k�Y�6��YeM2��r2��If��@Nf���̂ur2��If��@Nf�5�,Z�ɬ��d���d�8g2K��ɬ�&�Ek9�U�$�hm '�ʚd� �d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd� �d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd� �d�Xg2K��ɬ�&�Ek1�Uґ̢�p��*g�Y�6��Yc��,Y '�ʚd� �dVY�̢����*k�Y�6��Yc��,Y '�ʚd� �dVY�̢����*k�Y�6��Yc��,Y '�ʚd� �dVY�̢����*k�Y�6��Yc��,Y &�J:�Yt��Y�L2��r2��If��@Nf�u&�d]���*k�Y�6��YeM2��r2��If��@Nf���̂ur2��If��@Nf�5�,Z�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek1�5�$��l&�J9�YT��Y�L2��r2��d�cKf/^�����۾����������x��>�`�?�������ӧ����?���%����Ξ�]���{�l*1x�<s�Ƿ�O�PY8Ĕr�a�,�aJ9�0T�0�LF��a��#Ce�( +Y (ʚ�� ��EY�����(k�6#M�B��a���#@Ae�8@Q�((m (P���cP.k����e�=����F�r��������9@��������w����f'�78����d}��������l�����v������E�;���@��6%�ن���w����6�.@��6e�w������mʚ�lCk�;۔5�ن��w����6�.@��6e�w������mʚ�lCk�;۔5�ن��w����6�.@��6e�w������mʚ�lCk�;۔5�ن��w����6�.@��6e�w������mJ:�� ����lS�|gJ���f�3�%��dVY�̢����*k�Y�6��YeM2��r2k�3�%��dVY�̢����*k�Y�6��YeM2��r2k�3�%��dVY�̢����*k�Y�6��YeM2��r2k�3�%��dV9�d��0Lf�p$�h,'�ʙd� �dVX��,XW '�ʚd� �dVY�̢����*k�Y�6��Yc��,Y '�ʚd� �dVY�̢����*k�Y�6��Yc��,Y '�ʚd� �dVY�̢����*k�Y�6�Y#M2K��a2��#�Ee�8�U�$�(m '�ʚd� �d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd� �d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd� �d�Xg2K��ɬ�&�Ek9�U�$�hm &�J:�Yt�Y�L2K��q2��IfQ�@Nf�5�,Z�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek9��s2��ɬ�&�Ek9�U�$�hm &�J:�Yt��Y��,I '�ʚd� �dVY�̢����*k�Y�6��Yc��,Y '�ʚd� �dVY�̢����*k�Y�6��Yc��,Y '�ʚd� �dVY�̢����*k�Y�6��Yc��,Y '�ʚd� �dVIG2���q2��IfQ�@Nf�u&�d]���*k�Y�6��YeM2��r2��If��@Nf�u&�d]���*k�Y�6��YeM2��r2��If��@Nf�u&�d]���*k�Y�6��YeM2��r2��If��@Nf�u&�d]���*�Hf�Y8Nf�3�,J�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek9��s2��ɬ�&�Ek9�U�$�hm '�ʚd� �d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd� �d�H�̒�q��*�HfQY8Nf�3�,J���~���Y|�-���S������۾����������x��>�`�?�������ӧ����?���%����Ξ�]���{�l*1x�<s�Ƿ�O�PY8Ĕr�a�,�aJ9�0T�0�LF��a��#Ce�( Sƭ C�%�0%A�9�Q�#e�Sʑ���p�)���PY8���rD`�,&`F������K)G����a�����Be��R�~��p�}e�/R6�/��*���R������K)G���a�e�)�H�8輔�[慺E^ʶ5^���a᥄#�Bc�0��Yw�r�aۥ�#�Be�0�R��u��pXu)刺PY8L��2E)�=�R����ØK)G˅��aɥ�#�Be�0�2�T\�l6\J9.T.��*���R�x���t�G�EQ��|[���KF[J8�-4�-��*���Q��"e��Rʑj��pj)��PY8���rDZ�,&ZF�B����>K)G����a�����Be��R�f��p�ee�,R6�,�I*�A�R����K���0J��o�X�+vXJ82,4#,� *��R�������(S_��q�^)�H�PY8��rtW�,VWJ9�+T�+�LqE��ao��#�Be�0�R��Z��pXZ)��PY8̬�rVV�\p�X)�H�PY8��r�U�,�Uʸ�U(��aZe�)���8쪔rdU�,FUJ9�*T�*�A*�9�Q��"e㰥RʑR��pR)��PY8���rDT�,&TF������~J)G>���a<����BeᰜR�N��p�Me�)R6�)��*G��2n� /aXK)ሥ�X8L��2�)���R�L ���HJ)G#���a!��#�Be�0�2��Q�l�QJ9�(T�(�]*�U�R�( -���$�(SD��q�C)�ȡPY8���r�P�,�PJ9B(T3(�LE��Q��[��KPJ8�'4�'��*��Q�|"e�{Rʑ=��p=)�h�PY8,��rO�,�NB9k'P.8l��r�N�,�NJ9:'T+'��*���Q�p"e�oRʑ7��p7)�h�PY8,��r�M�,eM�8�&��&�ے&�]�0hR��3��pX3�G9&f����;�L�/����?��>%|���������������䑭dz�~���/���������g���j���0�o�~^/]���㋜���õ�bݞ�am������~���۳7� �n}>���xr��,[������j�۳7� ܱ>���y������X_�ᅨ��۳7� �n}9}O�:�e�ܱ�>��eݞ�am����1��v��n�ް6p�z��u{���������I�G�ٸ��38�s{����;��gpg�۳7� ܱ�^����� k�[ߎ��W�g<���c}8��X��� kw�χ�g�cn<{�����cx�?pƳ7� �^�ܝ>�Ggͳh]�;�����,�۳7� ܱ�>��iݞ�am����1�u{����;_�|���<���cݾ��Y�W`������:��� ���v��+��Y8� -l��W`�t�W`;�� -l�6��Y�W`������:��� į�V�|6Z ~�����fk�+��u|6[�_����+���@� -le��&d]�<o���7Aky�DY3q���ȉ�f�� �c�C'd]�<u���:Akq�DI�� :ǃ'ʙ��6�7O�u���u�쉲f�� ��e�� Z��'ʚ��6��O�u��u���f� �e� -Z�C(ʚ%�6��P�u���u���f� �Ee�$ -Zȣ(ʚU�6�wQ�u��u�4�rn�(h���:��y4�R�3)(m o��y$�+�gR�5;)hm /�(k�R��@KQ֬������b�s0���'S�5�)hm ��(kfS��@NQ�,������b�s<����S�5�)hm /�(k&T��@QQ֬������b�R!g�pJE)ǖ -*�k*ʙ9�6�U�5�*hm o��U!��Yeͮ -Z��*ʚi�6��U�5�*hm ��X!��e�� -Z�++ʚ��6��V�5K+hm o��[!��e�� -Zȋ+ʚ��6GW�t����p��b�^!e�xzE9��������f~� �e�Z�,�:GXȺ�y�EY�Â����f�� �1e�Z�{,�:YȺ�y�EY�ɂ��*��f�� �ae�2Z��,�zg� -�ye�>Z�-ʚ��6GZ�t����p��b�s�����Z�5[-hm ��(k�Z��@lQ�,������b�s����g[�5�-hm /�(k�[��@oQ֬������b�s����'\�5.hm ��(kf\��@rQ�,������b�s̅���\�5{.hm .�(�tAg�x�E9����a�.@�vQ�l������wAky�EY�����Ƌ�Α�.@�yQ�켠�������zAky�EY�����ދ����.@�|Q�l���������}Aky�EY�����������.@�Qұ������rf� �e� -Z�;0�:�`Ⱥ�y -FY������f� �Ae�"Zț0�z�� -�Ye�.Z��0ʚi�6��a�5�0hm ����!��e�FZ�+1ʚ��6��b�5K1hm n�i�b��8��Qʱ����b�rf2� �ј�%�����\���qw7f�=��#�<?N?�q8f<� Ǽ�������_�2Gd�LǼ�3��_����%�,��]x��kr���&_vM��@�5Q�욠���k���5Aky��X� Y �(kvM��@�5Q�욠���k���5Akq��H�kB���rf�� �]eͮ ZȻ&ʚ]�6�wM�uuf�� �]eͮ ZȻ&ʚ]�6�wM���k�Ȼ&ʚ]�6�wM�5�&hm �(kvM��@�51ֹkB�Ȼ&ʚ]�6�wM�5�&hm �(��5Ag�x��8� I �(kvM��@�5Q�욠���k���5Aky��X� Y �(kvM��@�5Q�욠���k���5Aky��X� Y �(kvM��@�5Q�욠���k���5Aky��X� Y �(kvM��@�5Qұk����rf�� �]c��&d]��k���5Aky�DY�k��f�� �]c��&d]��k���5Aky�DY�k��f�� �]c��&d]��k���5Aky�DY�k��f�� �]c��&d]��k��ۮ /a�k��c����]�̮ JȻ&�z�5� -�]eͮ ZȻ&ʚ]�6�wM�5�&hm ���5!��]eͮ ZȻ&ʚ]�6�wM�5�&hm ���5!��]eͮ ZȻ&ʚ]�6�wM�5�&hm �ivM��8�5Qʱk����rf�� �]eͮ ZȻ&�:wMȺ�y�DY�k��f�� �]eͮ ZȻ&�:wMȺ�y�DY�k��f�� �]eͮ ZȻ&�:wMȺ�y�DY�k��f�� �]%�&�,�evMH�8�5Q�욠���k���5Aky�DY�k���]�.@�5Q�욠���k���5Aky�DY�k���]�.@�5Q�욠���k���5Aky�DY�k���wM��y�DY�k��f�� �]%�&�,���5!��]eͮ ZȻ&ʚ]�6�wM�5�&hm ���5!��]eͮ ZȻ&ʚ]�6�wM�5�&hm ���5!��]eͮ ZȻ&ʚ]�6�wM�5�&hm ���5!��]eͮ Z��&J:vM�Y8�5Q�욠���kb�sׄ��wM�5�&hm �(kvM��@�5Q�욠���kb�sׄ��wM�5�&hm �(kvM��@�5Q�욠���kb�sׄ��wM�5�&hm �(kvM��@�5Q�욠���kb�sׄ�wM�t욠�p�k���5Aiy�DY�k���]�.@�5Q�욠���k���5Aky�DY�k���wM��y�DY�k��f�� �]eͮ ZȻ&�:wMȺ�y�DY�k��f�� �]eͮ Z��&F�]r6wM�r욠�p�k���5Aiy�d�C��{l�&��&����<���g�5�l�&�c��||�?�u������w�}�����w���k3w�|�}��{�=����,���友��_���"���������.@^�P�,�������Y�@ky�CY������f���������J��ʚ��6��?�5�hm /�\� ���e��Z��ʚ��6��?�5�hm /�y��+��?�5�hm /(k�?��@^�P�,�����a�s�����?�5�hm /(k�?��@\�Pұ������q���.@^�P�,�������Y�@ky�CY���������.@^�P�,�������Y�@ky�CY���������.@^�P�,�������Y�@ky�CY���������.@^�P�,�������c��������J���:�?Ⱥ�y�CY������f�� ��e��Z���:�?Ⱥ�y�CY������f�� ��e��Z���:�?Ⱥ�y�CY������f�� ��e��Z���:�?Ⱥ�i�C9��4^�p�C ����ʙ��6��?�������ʚ��6��?�5�hm /(k�?��@^�0ֹ�A���ʚ��6��?�5�hm /(k�?��@^�0ֹ�A���ʚ��6��?�5�hm /(k�?��@\�0�,��q����c��������J��ʚ��6��?�u.�u��f�� ��e��Z��ʚ��6��?�u.�u��f�� ��e��Z��ʚ��6��?�u.�u��f�� ��e��Z��J:�?�Y8\�0�,��q����Y�@iy�CY������f�� ��c��d]�����Y�@ky�CY������f�� ��c��d]�����Y�@ky�CY������f�� ��a=/�u��f�� ��e��Z��J:�?�Y8^�0ι�A���ʚ��6��?�5�hm /(k�?��@^�0ֹ�A���ʚ��6��?�5�hm /(k�?��@^�0ֹ�A���ʚ��6��?�5�hm /(k�?��@^�0ֹ�A���ʚ��6�?�t,��p����Y�@iy��X��Y /(k�?��@^�P�,�������Y�@ky��X��Y /(k�?��@^�P�,�������Y�@ky��X��Y /(k�?��@^�P�,�������Y�@ky��X��Y .(�X�@g�x�C9������f�� ��c��d]�����Y�@ky�CY������f�� ��a=/�u��f�� ��e��Z��ʚ��6��?�u.�u��f�� ��e��Z��ʚ��6�?�4��l.(�X�@e�x�C9������mW��|�m���5^�w�?������������ߊ��>�q|;� ��F'������z<�g��q<|�����/�$ȧ_����/�|��ܿͅO>���W�0�w���v���|y�����p������=Y _�+k.���@��W�\ޣ��|y����Gk���X��=Y ]�+�vy��K^�+ḼGc���^9sy���彰�/�����^Ysy���彲��� ��{e��=Zȗ��:/�ɺ���^Ysy���彲��� ��{e��=Zȗ��:/�ɺ���^Ysy���彲��� ��{e��=Z���F��{r6/�r\ޣ�p|y����Gi��^Ysy���影��{�.@��W�\ޣ��|y����Gk��^Ysy���影��{�.@��W�\ޣ��|y����Gk��^Ysy���影��{�.@��W�\ޣ��|y����Gk��^I��=:���F��{R6�/�3��(m _�+k.���@��W�\ޣ��|yo����/�5��hm _�+k.���@��W�\ޣ��|yo����/�5��hm _�+k.���@��W�\ޣ��|y/���{��@��W�\ޣ��|y����Gk��^I��=:Ǘ��9/�I����^Ysy���彲��� ��{e��=Zȗ��:/�ɺ���^Ysy���彲��� ��{e��=Zȗ��:/�ɺ���^Ysy���彲��� ��{e��=Zȗ��:/�ɺ���^Ysy���归��{t�/�3��(m _�뼼'���{e��=Zȗ�ʚ�{�6�/�5��hm _�뼼'���{e��=Zȗ�ʚ�{�6�/�5��hm _�뼼'���{e��=Zȗ�ʚ�{�6�/�5��hm _�뼼'���{%���,_�+g.�Q�@��W�\ޣ��|yo����/�5��hm _�+k.���@��W�\ޣ��|y/���{��@��W�\ޣ��|y����Gk��^Ysy���影��{�.@��W�\ޣ��|y����Gk��^Ysy���彑���{����,_�+g.�Q�@���?W�������k����{,���������|y?���������O����~�������S�?��ӗ��g�o�������i\����������w?���p;�����xˏ���{����9����s���s_N���@>�S֜Ρ��x:g�9�#g��tN)��*ǧsʙ�9�6�O�5�shm ���<�#���9e��Zȧsʚ�9�6�O�5�shm ���<�#���9e��Zȧsʚ�9�6�O�5�shm ���<�#���9e��Zȧsʚ�9�6O�t�Ρ�px:g�9�#e��tN9s:���露�t� ��9e��Zȧs�:O�Ⱥ��tNYs:���露�t� ��9e��Zȧs�:O�Ⱥ��tNYs:���露�t� ��9e��Zȧs�z>�� -��9e��Zȧsʚ�9�6O�t�Ρ�p|:g��t���O�5�shm ��)kN���@>�S֜Ρ��|:g��t���O�5�shm ��)kN���@>�S֜Ρ��|:g��t���O�5�shm ��)kN���@>�S֜Ρ��|:g��t���O�5�shm ��)�8�Cg��tN9s:���霱��9�.@>�S֜Ρ��|:��9�Ck�tNYs:���霱��9�.@>�S֜Ρ��|:��9�Ck�tNYs:���霱��9�.@>�S֜Ρ��|:��9�Ck�tNYs:���霱��9�.@<�S�q:�����r�t� ��9e��Zȧs�:O�Ⱥ��tNYs:���露�t� ��9e��Zȧs�z>�� -��9e��Zȧsʚ�9�6�O�5�shm ���<�#���9e��Zȧsʚ�9�6�O�5�shm ��iN���8<�S�q:�����r�t� �ӹ�.u:�ﱝ�]�������8Z{<�_�|:7�����8���O_��۹���/�x�?�����}�.�2[��r*�q�����~|t~�+3���3�O�7�?�<t���qu3[�_�q��@�5�9�K���ʚq\�6��q�5�hm ��*k�q��@�5�9�K�H�ʹ�����J8�q�X8�UΌ㢴�<�+��q\��@�U㢵�<����EkyWY3����8���q\�.@�U㢵�<����EkyWY3����8���q\�.@�U�\����|ᯬ��Gk��_Ys��ⅿ��������,_�+g.�Q�@��W�\����|�o����/��5�hm _�+k.���@��W�\����|�o����/��5�hm _�+k.���@��W�\����|�o����/��5�hm _�+k.���@��W�q���ᅿQ�����̅?J��ʚ�6�/��5�hm _���'��eͅ?Z��ʚ�6�/��5�hm _���'��eͅ?Z��ʚ�6�/��5�hm _�����+�/��5�hm _�+k.���@��W�q����q��.@��W�\����|ᯬ��Gk��_Ys����.@��W�\����|ᯬ��Gk��_Ys����.@��W�\����|ᯬ��Gk��_Ys����.@��W�\����xᯤ������̅?J���:/�ɺ���_Ys����� �eͅ?Z���:/�ɺ���_Ys����� �eͅ?Z���:/�ɺ���_Ys����� �eͅ?Z���:/�ɺ���_IDž?:��ʙ�6�/��5�hm _���'��eͅ?Z��ʚ�6�/��5�hm _�����+�/��5�hm _�+k.���@��W�\����|�o����/��5�hm _�+k.���@��W�\����x�o���'g���_)Dž?*��ʙ�6�/����Յ?��v��p���8��/��;�}��!��?��ÿ�:O����ۿ�����N��������ӧ�~��˯ۿ��������������+~��?>�㎫.��\����t}|�ݓ.�]��K �=��\J9��PY8<�2�\r��qxǥ�����#.�7\�,^p)�8�Be��|�(s�E����R��-T��r�m��px����h��Ó-���)��ZJ9εPY8<�R�q����ѥ�2n�Z(��љ��+-�o��p�h��px����>����,��Y�,�fe.�H�8��R�q�����Q�R��,T/��rd��px�e���"e��K)�)*��XJ9�PY8��R�q����� �P�,P.8��R�q~�����R��+T�.��q;�B�%Ϯ�0WWdl�\)�8�Be���J)ǽ*��VJ9��PY8<�2�\Z��qxg���� -���#+�7V�,^X)�8�Be���(s]E���m�R��*T��r�U��pxU��� -��Ó*��E)��TJ9ΩPY8:�R�� -��0��R�qH�����Q把���*�'T�,P)帟Be��zJ)��*��SF��)R6璉r�M��px4���f -��Ë)�S�,�Ke��H�8��R�q*���ᡔR�;)T���rI��px"e���"e��>J��(^��8J �m��QJ9�PY8<�2�\E��qx���$ -��Ã(��P�,^C)�8�Be��J(�%(�A)�8�Be��J)� *�PJ9�PY8<2�\?��qx����� ����'�wO�,^=)�8zBe������ F�Nʷ�;����NJ8n��X8�tڿ�1�N���x����3�����vL���}� -Ϝ�3�szwN���˿����]�MwM�o��L����������K���K|�|����9�*]�A]2�;�*?^{�+C�۳l]�;և�㋵n�ް6pǺ-�:똊ekq*�Y�T,[�S�ʚ�X�.@��u�1���T����X�6�b�uLŲ��8����E���X��6��KM�:�6����T�s��X�6�b�uNŒu�T����X�6�b�uLŲ��8�c*�� ĩXe�T,Z N�:똊ekq*�Y�T,[�S��:�b��@��U�LŢu�T����X�6�b�uLŲ��8�c*�� ��X%MT@��aV���+@e�,PΤ(m �ʚ��� ��Xg`@�ȉ���1@k�2P�dhm �ʚ��� ���Xgl@�ȹ���7@k�8P�$hm Gʚ��� ���Xgx@��遲�=@k�>P��hm J: -t�L�@��q����P�@.�5)Z�1���F@k�G0�$�ur���i��@��5YZ�a���L@k�M0�'�ur������@.�5�Zȑ���R@k�S�s���ȩ���U@k�VP�� -hm J:�t����I gʚn� �rAY�.���/(k��6��c�Y 'ʚ�� �AY�1���2(kJ�6�[c�1Y �ʚ�� �AY�4���5(k��6��c�aY � ʚ�� ĺAIGހ��qࠜ)P�@n�uFd]��9(k:�6�KeM��r젬���@��ud]��<(k��6��eM���r���)��@n�u�d]��?(k��6�eM��r��� ��@� �u�d]��B(�h!�Y8�!�39J�A����@k��0�E�ur���"��@.#�5iZ�q����@k���s �ȉ����@k��P�dhm �ʚR� �V�Xg,A�ȹ����@k��P�$hm Gʚj� �n�HN��q�N(�h'PY8�'�3�J������cK(.^�����bO��zz �(�3�(�GD�?H(���_��l����������}�������~w��koo{S��O�ӟ�o�G��.�> -?=���{��"W�۳7� ܱ>�r��ۣ7���Q���ҹ={C������gp/��Y�.���38�K��� kw��O��Z�goX�c]��&4Bk942��urh�� ���@��5�Zȡ��&4Bk942��urh�� ���@��5�Zȡ��&4Bk942��uRh��[h��K�FJ8B#4�C#�Lh��rh$����+�C#eMh��rh�� ���@��5�Zȡ���Ј��C#eMh��rh�� ���@��5�Zȡ���Ј��C#eMh��rh�� ���@��5�Z����&4"g�04R���p)gB#�6�C#eMh��rhd�34"���HY���)kB#�6�C#eMh��rhd�34"���HY���)kB#�6�C#eMh��rhd�34"���HY���)kB#�6C#%�:���Q&4"e�84R΄F(m �Fʚ�� ��HY�����Ⱥ�94RքFhm �Fʚ�� ��HY�����Ⱥ�94RքFhm �Fʚ�� ��HY��� �94� -��HY���)kB#�6C#%�:ǡ�q�Ј��C#eMh��rh�� ���@��5�Zȡ���Ј��C#eMh��rh�� ���@��5�Zȡ���Ј��C#eMh��rh�� ���@��5�Zȡ���Ј��C#eMh��bh��#4Bg�84R΄F(m �F�:C#�.@��5�Zȡ��&4Bk94RքFhm �F�:C#�.@��5�Zȡ��&4Bk94RքFhm �F�:C#�.@��5�Zȡ��&4Bk94RքFhm �F�:C#�.@��t�F�,�Fʙ�� ��HY�����Ⱥ�94RքFhm �Fʚ�� ��HY��� �94� -��HY���)kB#�6�C#eMh��rhd�34"���HY���)kB#�6�C#eMh��bhd� ���8��r�F�,�Fʙ�� ��h��Q���]��F���7~[������C��LB����O?|����*������sww�iDF������s�o�������_��dF���o������x&�x<ܽ=_{����,[��������Leݞ�am����p�b�۳7� ܱ�������۳7� ܩ�Fcf�3Z#��hMY�����)���Y8�֔3�J�њ��h����5eM���r�������@�֔5�Z�њ��h����5eM���r�������@�֔5�Z�њ��h����5eM���r�������@�֔5�Z�њ��h����5�ܢ54^�0ZS����p�)g�5�6��5a=Gk`]��)k�5�6��5eM���r�������@�uFkd]��)k�5�6��5eM���r�������@�uFkd]��)k�5�6��5eM���r�������@�4�9�њR�h ���hM9�����)k�5�6��5c��Y Gkʚh � �hMY�����)k�5�6��5c��Y Gkʚh � �hMY�����)k�5�6��5c��Y Gkʚh � �hMY�����)���Y8�2�)�њr&ZCi9ZS�Dkhm Gkʚh � �h�Xg�F��њ�&ZCk9ZS�Dkhm Gkʚh � �h�Xg�F��њ�&ZCk9ZS�Dkhm Gkʚh � �hMX��XW Gkʚh � �hMY�����)���Y8�sFk$]��)k�5�6��5eM���r�������@�uFkd]��)k�5�6��5eM���r�������@�uFkd]��)k�5�6��5eM���r�������@�uFkd]��)k�5�6�5%�:�њr&ZCi9Z3���ur�������@�֔5�Z�њ�&ZCk9Z3���ur�������@�֔5�Z�њ�&ZCk9Z3���ur�������@�֔5�Z�њ�&ZCk9Z3���ub���#ZCg�8ZS�Dk(m Gkʚh � �h�Xg�F��њ�&ZCk9ZS�Dkhm Gkʚh � �hMX��XW Gkʚh � �hMY�����)k�5�6��5c��Y Gkʚh � �hMY�����)k�5�6�5#M�F��a���#ZCe�8ZS�Dk(m Gk������=�h��5 Z��o�?���;���X��:��n��o��W_h<�G�d�mk���/_]��O�?<}���~]_��r<<��U�,[_����t���;�<^����˷=||�����o�||�+�����X_��ֺ={�������/���n���q;��gp<J��� iw�����Z�goX�c}=���_����^������o��Y�.������Z�goX�c}>ܿ��|eݞ�am����1�����n�ް6�z�pw��5Ϣu�XO�ó�n�ް6p�z��_�u{����;���p�����^�O�ݫ��gٺ�w���7iݞ�am����p|������X_���ۣ7�����?�/�N�e�ܱ�>�gkݞ�am����<�K��� kw��O��AZ�goXx��p��u<���c=}��Һ={�����c8�8����XNJ��f�� �Y -c��d]�<K����@ky�BY3K���,��f�� �Y -c��d]�<K����@kq�BI�,:dzʙY -�6�g)�u�R�u�,��f�� �Y -e�,ZȳʚY -�6�g)�u�R�u�,��f�� �Y -e�,ZȳʚY +���$�(SD��q�C)�ȡPY8���r�P�,�PJ9B(T3(�LE��Q��[��KPJ8�'4�'��*��Q�|"e�{Rʑ=��p=)�h�PY8,��rO�,�NB9k'P.8l��r�N�,�NJ9:'T+'��*���Q�p"e�oRʑ7��p7)�h�PY8,��r�M�,eM�8�&��&�ے&�]�0hR��3��pX3�G9&f���e9��2��ķ����������&��.d^���W_g<�G���yTL��/ۿ��Ͽ~엎O�ӟ���ݫ���^�t|z8�}�=Hx�<t�~��/r���^�u{����;�����A��n�ް6���x�S��Ydzl]�;և�뫵n�ް6p��|���YZ�goX�c}=���.��n�ް6����1<I�x��p�z��OT�u{����;�����ۉʺ={�����c������^���>�{'�eg�v����x������XO����n�ް6p��zxy���۳7� �n};�_���,[������b�۳7� ܱ>�叹�� kw����I���ް6�z5sw��5Ϣu�XO�ó�n�ް6p�z��_�u{����;���p������|A��c�s?��,[��u��jg_����W`;�� +l�6���I���fg��+��3_����_����+���@� +lg_����W`;�� +l�6�[Y��h]����:��� į�v���lm ~�����fk�+��u���uf�� �e�� Z�#'ʚ��6�wN�u��u�ԉ�f�� ĵ%s'�,�(gOP�@�<1�9zB�ȳ'ʚ��6��O�5�'hm ��(k�O��@�?1�9�B��(ʚ �6�WP�53(hm �(k�P��@�B1�9�B��s(ʚ=�6�Q�5�(hm ��(kVQ��@�E1�9�B�H�(ʹm�����(J8�Q�X8HQ�,������"����@�IQ�줠�������JAky,EY�����^�����.@�LQ�l���������MAky8EY�����v�����.@�OQ�짠�������PAkyDEY����⎊�fH����)�[*�,��(g�TP�@TQ�,������b�sT���gU�5�*hm /�(k�U��@WQ֬������b�s`���'V�5+hm ��(kfV��@ZQ�,������b�sl����V�5{+hm /�(k&W��@]Qұ������Qfx�������� +J��+ʚ��6�X�5,hm o��a!��e�Z�K,ʚ)�6��X�5k,hm ��d!��Ie�&Zȫ,ʚY�6��Y�5�,hm o��y��+��Y�5�,hm /�(k&Z��@iQұ҂���N�qΡ�.@�jQ�l�����֢��kAky�EY���f�����.@�mQ�춠���ܢ��nAky�EY�ނ��~����.@�pQ�l�����⢬�qAky�EY����1�.@�sQ�칠���袤c����Q�̪JȻ.�:�]Ⱥ�y�EY���f�� �e��Z�/�:G^Ⱥ�y�EY����ҋ�f�� �e��Z�{/�:_Ⱥ�y�EY�����ꋲf�� ��e��Z��/�:�_Ⱥ�q�EI��:�0ʙ �6�G`�5+0hm ����!��)e�Z�k0ʚ9�6�a�5�0hm o��y�+�ga�5�0hm /�(k�a��@�Q֬à���c�s ���'b�51hm ��(kfb��@�Q�,Š���c��!g�p.F)�^*Nj1ʙ��6�Gc��P�j��6s�/w��1���y8���p�!��1�m8�e����?}��9"se:�����Yg���o�(ig9f����]����5��"�k��f�� �]eͮ ZȻ&�:wMȺ�y�DY�k��f�� �]eͮ Z��&F�]r6�wM�3�&(m �(kvM��@�5Q�욠���kb�sׄ��wM�5�&hm �(kvM��@�5Q�욠���k"��]��@�5Q�욠���k���5Aky�DY�k���]�.@�5Q�욠���k���5Akq�DIǮ :ǻ&�9wMH��y�DY�k��f�� �]eͮ ZȻ&�:wMȺ�y�DY�k��f�� �]eͮ ZȻ&�:wMȺ�y�DY�k��f�� �]eͮ ZȻ&�:wMȺ�y�DY�k��⮉��]t�wM�3�&(m ���5!��]eͮ ZȻ&ʚ]�6�wM�5�&hm ���5!��]eͮ ZȻ&ʚ]�6�wM�5�&hm ���5!��]eͮ ZȻ&ʚ]�6�wM�5�&hm ���5!��]��vM�x �]%�&h,�(gvMP�@�5�� XW �(kvM��@�5Q�욠���k���5Aky��X� Y �(kvM��@�5Q�욠���k���5Aky��X� Y �(kvM��@�5Q�욠���k���5Akq��H�kB��ᮉR�]T�wM�3�&(m �(kvM��@�51ֹkB�Ȼ&ʚ]�6�wM�5�&hm �(kvM��@�51ֹkB�Ȼ&ʚ]�6�wM�5�&hm �(kvM��@�51ֹkB�Ȼ&ʚ]�6�wM�5�&hm �(��5Ag�p��(�kB���rf�� �]eͮ ZȻ&ʚ]�6�wM�uuf�� �]eͮ ZȻ&ʚ]�6�wM�uuf�� �]eͮ ZȻ&ʚ]�6�wM���k�Ȼ&ʚ]�6�wM�5�&hm �(��5Ag�x��8� I �(kvM��@�5Q�욠���k���5Aky��X� Y �(kvM��@�5Q�욠���k���5Aky��X� Y �(kvM��@�5Q�욠���k���5Aky��X� Y �(kvM��@�5Qұk����rf�� �]c��&d]��k���5Aky�DY�k��f�� �]c��&d]��k���5Aky�DY�k��f�� �]c��&d]��k���5Aky�DY�k��f�� �]c��&d]��k��c����]�̮ JȻ&ʚ]�6�wM�uuf�� �]eͮ ZȻ&ʚ]�6�wM���k�Ȼ&ʚ]�6�wM�5�&hm �(kvM��@�51ֹkB�Ȼ&ʚ]�6�wM�5�&hm �(kvM��@�51�욐�q�k��c����]�̮ JȻ&�;j��c�5�x �5���m������<��xd�5y�&�����w?|��ۿ�?��������O�\���{��������쭜d��v.\���������6��?�u.�u��f�� ��e��Z��ʚ��6�?�4��l/(g�?P�@^�P�,�������Y�@ky��X��Y /(k�?��@^�P�,�������Y�@ky�CX��`]�����Y�@ky�CY������f�� ��c��d]�����Y�@ky�CY������t��?�s.�t��f�� ��e��Z��ʚ��6��?�u.�u��f�� ��e��Z��ʚ��6��?�u.�u��f�� ��e��Z��ʚ��6��?�u.�u��f�� ��%��,/(g�?P�@^�0ֹ�A���ʚ��6��?�5�hm /(k�?��@^�0ֹ�A���ʚ��6��?�5�hm /(k�?��@^�0ֹ�A���ʚ��6��?�5�hm /(k�?��@^�0ֹ�A�H�ʹ-����J8�?�X8^�P�,�����!�����@^�P�,�������Y�@ky�CY���������.@^�P�,�������Y�@ky�CY���������.@^�P�,�������Y�@ky�CY������f���������,/(g�?P�@^�P�,�����a�s�����?�5�hm /(k�?��@^�P�,�����a�s�����?�5�hm /(k�?��@^�P�,�����a�s�����?�5�hm /(k�?��@\�Pұ������Qf���������J��ʚ��6��?�5�hm /�\� ���e��Z��ʚ��6��?�5�hm /�\� ���e��Z��ʚ��6��?�5�hm /�y��+��?�5�hm /(k�?��@\�Pұ������q���.@^�P�,�������Y�@ky�CY���������.@^�P�,�������Y�@ky�CY���������.@^�P�,�������Y�@ky�CY���������.@^�P�,�������c��������J���:�?Ⱥ�y�CY������f�� ��e��Z���:�?Ⱥ�y�CY������f�� ��e��Z���:�?Ⱥ�y�CY������f�� ��e��Z���:�?Ⱥ�q�CI��:��ʙ��6��?�5�hm /�\� ���e��Z��ʚ��6��?�5�hm /�y��+��?�5�hm /(k�?��@^�P�,�����a�s�����?�5�hm /(k�?��@^�P�,�����a�Y� g�p�C)��*��ʙ��6��?h�B,�{l���r�]����?_����~+��������'����O����P������q���,� �~��������;7r�>��z�_�ø?ܝ����_���=�����?�����/��d]�|y����Gk��^Ysy���彲��� ��{c���d]�ty����=/axy��������{���=Jȗ��z��� +��{e��=Zȗ�ʚ�{�6�/�5��hm _�뼼'���{e��=Zȗ�ʚ�{�6�/�5��hm _�뼼'���{e��=Zȗ�ʚ�{�6�/�5��hm ^�i.���8��W�qy�����r��� ��{e��=Zȗ��:/�ɺ���^Ysy���彲��� ��{e��=Zȗ��:/�ɺ���^Ysy���彲��� ��{e��=Zȗ��:/�ɺ���^Ysy���彲��� ��{%���,^�e.�I�8��W�\ޣ��|y����Gk��^Ysy���影��{�.@��W�\ޣ��|y����Gk��^Ysy���影��{�.@��W�\ޣ��|y����Gk��^Ysy���彰�/�����^Ysy���彲��� ��{%���,_�缼'���{e��=Zȗ�ʚ�{�6�/�5��hm _�뼼'���{e��=Zȗ�ʚ�{�6�/�5��hm _�뼼'���{e��=Zȗ�ʚ�{�6�/�5��hm _�뼼'���{e��=Z���J:.��Y8��W�\ޣ��|yo����/�5��hm _�+k.���@��W�\ޣ��|yo����/�5��hm _�+k.���@��W�\ޣ��|yo����/�5��hm _�+k.���@��W�\ޣ��|yo���/�t\ޣ�p|y����Gi��^Ysy���影��{�.@��W�\ޣ��|y����Gk��^Ysy���彰�/�����^Ysy���彲��� ��{e��=Zȗ��:/�ɺ���^Ysy���彲��� ��{e��=Z���F��{r6/�r\ޣ�p|y����Gi��~�\]��{l�������\�o\��?�~<���x&�������>}��_��i�����O����O_~|��=�}��O_��ӧq����_����w����V�����Wt<���-?^��?�]ߟO���r��]�Q��}|8�Ck�tNYs:���霑�t�����9��s�,��)gN�P�@>�S֜Ρ��|:g��t���O�5�shm ��)kN���@>�S֜Ρ��|:g��t���O�5�shm ��)kN���@>�S֜Ρ��|:g��t���O�5�shm ��)kN���@<�S�q:�����Q�t�����9���Jȧsʚ�9�6�O�5�shm ���<�#���9e��Zȧsʚ�9�6�O�5�shm ���<�#���9e��Zȧsʚ�9�6�O�5�shm �� ��t�+�O�5�shm ��)kN���@<�S�q:�����q��9�.@>�S֜Ρ��|:��9�Ck�tNYs:���霱��9�.@>�S֜Ρ��|:��9�Ck�tNYs:���霱��9�.@>�S֜Ρ��|:��9�Ck�tNYs:���霱��9�.@>�S֜Ρ��x:���t����9���Jȧs�:O�Ⱥ��tNYs:���露�t� ��9e��Zȧs�:O�Ⱥ��tNYs:���露�t� ��9e��Zȧs�:O�Ⱥ��tNYs:���露�t� ��9e��Zȧs�:O�Ⱥ��tNI��:ǧsʙ�9�6�O�5�shm ���<�#���9e��Zȧsʚ�9�6�O�5�shm �� ��t�+�O�5�shm ��)kN���@>�S֜Ρ��|:g��t���O�5�shm ��)kN���@>�S֜Ρ��x:g�9�#g��tN)��*ǧsʙ�9�6�O��o�����v:w�p:���h��xx~=���x&�s�t�>}�:o���Ͽ��?�����s���u���l�˩�Ǚڇ��������������>�������������l�~|�Eky�X�8.Y ��*k�q��@�U㢵�<����Eky�X�8.Y ��*�6���K��*��Ec�xW93����8����q��yWY3����8��f� �q\e�8.Z���:�qɺ�yWY3����8��f� �q\e�8.Z���:�qɺ�yWYs����� �eͅ?Z��F�r6/��r\���p|ᯜ��Gi��_Ys����.@��W�\����|ᯬ��Gk��_Ys����.@��W�\����|ᯬ��Gk��_Ys����.@��W�\����|ᯬ��Gk��_IDž?:��F�R6�/��3�(m _�+k.���@��W�\����|�o����/��5�hm _�+k.���@��W�\����|�o����/��5�hm _�+k.���@��W�\����|�/����@��W�\����|ᯬ��Gk��_IDž?:���9/�I����_Ys����� �eͅ?Z���:/�ɺ���_Ys����� �eͅ?Z���:/�ɺ���_Ys����� �eͅ?Z���:/�ɺ���_Ys��ⅿ��t�/��3�(m _���'��eͅ?Z��ʚ�6�/��5�hm _���'��eͅ?Z��ʚ�6�/��5�hm _���'��eͅ?Z��ʚ�6�/��5�hm _���'��%��,_�+g.�Q�@��W�\����|�o����/��5�hm _�+k.���@��W�\����|�/����@��W�\����|ᯬ��Gk��_Ys����.@��W�\����|ᯬ��Gk��_Ys��ⅿ��������,_�+g.�Q�@���?>W��ۅ��k����{�m㸧w>��6�x$�����������<����?o��?��;�������O�~����/�n���?����;���_Bϯ������;�;���p<r�Ƿw���vO��w Ã.%�\h,^s)�8�Be���(s�E����R�3.T���r�p��px��������-���)��[J9N�PY8<�R�q�����ՖR��-TO��2[�l�k)�8�Be��XK)ǭ*G�Zʸj��FgZ�7���W0��R�q����ၖR��,T���rg��px�e���"e��.K)�Y*�GYJ9n�PY8��R�q�����9�Q�����[,��X�,b)��Be�� +K)�*�'XB9/�@����J)��*��WJ9n�PY8��R��� +��0<�2�\]��qxs���� +��Ã+��V�,^[)�8�Be����(siE��R�3+T���r�X��pxa���� +����*��u)��UJ9N�PY8<�R�qW����U�R��*TO��2U�l�S)�8�Be��J�[*^��J �!�gTF�+*R6o��r�P��px@���~ +����)��S�,�Ne.�H�8��R�q6����єR��)T/��rL��px.e���"e��VJ)ǩ*��RJ9�PY8��R�q$���ቔQ�B�����(e�ΣPx ��(%�Qh,^F)�8�Be��,�(sE���M�R��(T��r�C��px ��� +���S(���P�\px��� +���#(�7P�,^@)�8�Be����(s�D����R��'T��r�=��px����� ����'cO$,�;)�vK;)�uBc���i���:�K|{��^��Μ�_�o�1}�[���*<s����i�9���/�r���vi6]�5=��2}�;�����_��/����/�������?�<t�ue������x�E��nϲu�X�/ֺ={������c*�� ĩXgS�lm N�*k�bѺ�q*�Y�T,[�S��:�b��@��u�1���T��f*��b���T,/a4��T,�S��9�bY�@��5�9K��S��:�b��@��u�1���T����X�6�b�5S�h]�8�c*�� ĩXgS�lm N�:똊ekq*VY3���S��:�b��@��u�1���T����X�6��b�4Q9�Y�R������@9����(k��6��c��Y 'ʚ��� ��@Y����(kJ�6�[c��Y �ʚ��� ��@Y����(k��6��c��Y �ʚ��� ��@Y���� (�(�Y8l�2)��r�C@i�DP֤hm �ʚ� ��Xg�@��I���I@k�JP�d hm � ʚ2� �6�Xg�@��y���O@k�PP�$ +hm G +ʚJ� �NAXϡXW � +ʚV� �ZAY�+���,(�(�Y8n�sF$]��-(k��6��eM���r������@��ud]��0(k�6�+eMƀ�rȠ�)��@n�u�d]��3(kz�6��eMҀ�rԠ����@��u� d]��6(k��6�%y:ǁ�r�p@i�q0�9�ur栬���@.�5�Zȱ���v@k�w0�<�ur�i��@��5�Z�ჲ�|@k�}0�?�ur������@. �5 Z�����@k��0�B�ub +����@gḆP��(m ʚ"� �&�XgA��Y����@k��P֤hm �ʚ:� �>BXρXW 'ʚF� �JBY�I���J(kJ �6�[ c��Y �ʚ^� �bBY�L���M(k� �6� #M8A��a:����@eḞP��(m t�/ + +|�-��x h(���o��=�-���50��$�x�?��!����_~���������������o��Kz�����y<���M��?Oz��A��#�x(��p����ڋ\�n�ް6p��|x?�Q�o��pnG�zxz8J��� i�[�O�����gٺ�w����x/�۳7� ܱ�>�;kݞ�am��utAʚ�� ���XghD�ȡ��&4Bk94RքFhm �Fʚ�� ���XghD�ȡ��&4Bk94RքFhm �Fʚ�� ���XghD�H��rn�/a)���X8��3�Jȡ���C#��@��5�Zȡ��&4Bk94RքFhm �F�:C#�.@��5�Zȡ��&4Bk94RքFhm �F�:C#�.@��5�Zȡ��&4Bk94RքFhm �FF�Ј����H)Gh���qh�� �P�@��5�Zȡ���Ј��C#eMh��rh�� ���@��5�Zȡ���Ј��C#eMh��rh�� ���@��5�Zȡ���Ј��C#eMh��rh�� ���@��t�F�,�FF�Ј����H9���)kB#�6�C#eMh��rhd�34"���HY���)kB#�6�C#eMh��rhd�34"���HY���)kB#�6�C#eMh��rh$����+�C#eMh��rh�� ���@��t�F�,�F�9C#�.@��5�Zȡ��&4Bk94RքFhm �F�:C#�.@��5�Zȡ��&4Bk94RքFhm �F�:C#�.@��5�Zȡ��&4Bk94RքFhm �F�:C#�.@��5�Z����������H9�����Ⱥ�94RքFhm �Fʚ�� ��HY�����Ⱥ�94RքFhm �Fʚ�� ��HY�����Ⱥ�94RքFhm �Fʚ�� ��HY�����Ⱥ�14R���p)gB#�6�C#eMh��rhd�34"���HY���)kB#�6�C#eMh��rh$����+�C#eMh��rh�� ���@��5�Zȡ���Ј��C#eMh��rh�� ���@��5�Z����&4"g�04R���p)gB#�6�C��*F�F�[ht������m-Oo�ח'��3 �^Fh��_>��u�F�X�����������������?��}x>���Cس�cf�~���=����.������p��|�E>Zdzl]�;և���_2�u{����;����n�ް6p��zxz�K��n�ް6p������h����5eM���b���#ZCg�8ZS�Dk(m Gk�:�5�.@�֔5�Z�њ�&ZCk9ZS�Dkhm Gk�:�5�.@�֔5�Z�њ�&ZCk9ZS�Dkhm Gk�:�5�.@�֔5�Z�њ�&ZCk9ZS�Dkhm Gk�:�5�.@�֔s���x �hM G����q�����P�@�ք���ur�������@�֔5�Z�њ�&ZCk9Z3���ur�������@�֔5�Z�њ�&ZCk9Z3���ur�������@�֔5�Z�њ�&ZCk1Z3�Dk�lFkJ9�5T��5�L���r�������@�uFkd]��)k�5�6��5eM���r�������@�uFkd]��)k�5�6��5eM���r�������@�uFkd]��)k�5�6��5eM���b���#ZCg�0Z3�Dk�lGkʙh � �hMY�����)k�5�6��5c��Y Gkʚh � �hMY�����)k�5�6��5c��Y Gkʚh � �hMY�����)k�5�6��5a=Gk`]��)k�5�6��5eM���b���#ZCg�8Z3���tr�������@�֔5�Z�њ�&ZCk9Z3���ur�������@�֔5�Z�њ�&ZCk9Z3���ur�������@�֔5�Z�њ�&ZCk9Z3���ur�������@�֔tDk�,Gkʙh � �h�Xg�F��њ�&ZCk9ZS�Dkhm Gkʚh � �h�Xg�F��њ�&ZCk9ZS�Dkhm Gkʚh � �h�Xg�F��њ�&ZCk9ZS�Dkhm Gkʚh � �h�Xg�F��њ��h ���hM9�����)k�5�6��5c��Y Gkʚh � �hMY�����)k�5�6��5a=Gk`]��)k�5�6��5eM���r�������@�uFkd]��)k�5�6��5eM���r�������@�4�9�њR�h ���hM9������7V*Z��آ��׀hm�=�������·c�~�<�z|>��?^}��Lْ����ϟ�|�u��?}������u}�������W��l}�����q����px�v�/��.����E��)��E�X�goX�c}=��[��� k�[_O���N�=����(O���(�۳7� ܱ�>�;kݞ�am������f}�goXx��v<ܿ�����gٺ�w���kݞ�am����p����u{����;������"ʺ={�������cxt�<���c=}�Һ={�����c�������XO��Z�goXx�z<}w��:�e�ܱ>��ޤu{����;�����Z�goX�c}=<�_�o��p���x8��8y��p�z���u{����;��g�t/�۳7� ܱ�>��iݞ�am�u���cx���,[����1�?J��� kw����(��goX�c+ʚY �6�g)�u�R�u�,��f�� �Y e�,ZȳʚY -�6�g)�u�R�u�,�rn�h���,��Y -4�g)�3�(m �R�y��+�g)�5�hm �R(kf)��@��P��R���<Ka�s����g)�5�hm �R(kf)��@��P��R���<Ka�s����g)�5�hm �R(kf)��@��P��R���8Ka��� g�p�B)�,*dzʙY -�6�g)�5�hm �R뜥 ��Y -e�,ZȳʚY +�6�g)�u�R�u�,��f�� �Y +%��,�R(gf)P�@��0�9KA�ȳʚY +�6�g)�5�hm �R(kf)��@��0�9KA�ȳʚY +�6�g)�5�hm �R(kf)��@��0�9KA�ȳʚY +�6�g)�5�hm �R(kf)��@��0�9KA�H�ʹ�R����J8f)�X8��P��R���<K!��Y +��@��P��R���<K����@ky�BY3K���,���Y +�.@��P��R���<K����@ky�BY3K���,���Y +�.@��P��R���<K����@ky�BY3K���,��f�����Y +���,�R(gf)P�@��P��R���<Ka�s����g)�5�hm �R(kf)��@��P��R���<Ka�s����g)�5�hm �R(kf)��@��P��R���<Ka�s����g)�5�hm �R(kf)��@��P�1K����,�Qf�����Y +��,JȳʚY �6�g)�5�hm �R뜥 ��Y e�,ZȳʚY �6�g)�5�hm �R뜥 ��Y e�,ZȳʚY -�6g)�t�R��p8Ka��� e�x�B93K���,��f�� �Y -e�,Zȳ�:g)Ⱥ�y�BY3K���,��f�� �Y -e�,Zȳ�:g)Ⱥ�y�BY3K���,��f�� �Y -e�,Zȳ�z���� -�Y -e�,ZȳʚY -�6g)�t�R��p<Ka�s����g)�5�hm �R(kf)��@��P��R���<Ka�s����g)�5�hm �R(kf)��@��P��R���<Ka�s����g)�5�hm �R(kf)��@��P��R���<Ka�s����g)�5�hm �R(阥@g�x�B93K���,���Y +�6�g)�5�hm �R�y��+�g)�5�hm �R(kf)��@��P�1K����,�q�Y +�.@��P��R���<K����@ky�BY3K���,���Y �.@��P��R���<K����@ky�BY3K���,���Y �.@��P��R���<K����@ky�BY3K���,���Y -�.@��P��R���<K����@ky�BY3K���,���Y -�.@��P�1K����,�rf�� �Y +�.@��P��R���8K��c����Y +��,Jȳ�:g)Ⱥ�y�BY3K���,��f�� �Y e�,Zȳ�:g)Ⱥ�y�BY3K���,��f�� �Y -e�,Zȳ�z���� -�Y -e�,ZȳʚY -�6�g)�5�hm �R뜥 ��Y +e�,Zȳ�:g)Ⱥ�y�BY3K���,��f�� �Y +e�,Zȳ�:g)Ⱥ�q�BI�,:dzʙY +�6�g)�5�hm �R뜥 ��Y e�,ZȳʚY -�6�g)�5�hm �Rif)��8��P�1K����,�rf�� �Y��e5K���R\��R���]��ߥ��px{y��R�d��8�)����?���˿|�������/���O�����;_�<�Yx��^��~4��E �Ek1�U�͢�p��fI��9�U�D�hm G�ʚh� �hVY͢����fɺ�9�U�D�hm G�ʚh� �hVY͢����fɺ�9�U�D�hm G�ʚh� �hVY͢����fɺ�9�U�D�hm F�J:�Yt��Y�L4��r4k�3�%��hVY͢���*k�Y�6��YeM4��r4k�3�%��hVY͢���*k�Y�6��YeM4��r4k�3�%��hVY͢���*k�Y�6��YeM4��r4k�3�%��hV9�h��0�f�pD�h,G�ʙh� �hVX��,XW G�ʚh� �hVY͢���*k�Y�6��Yc��,Y G�ʚh� �hVY͢���*k�Y�6��Yc��,Y G�ʚh� �hVY͢���*k�Y�6�Y#M4K��a4��#�Ee�8�U�D�(m G�ʚh� �h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh� �h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh� �h�Xg4K��Ѭ�&�Ek9�U�D�hm F�J:�Yt�Y�L4K��q4���fQ�@�f�5�,Z�Ѭ�&�Ek9�5�͒ur4���f��@�f�5�,Z�Ѭ�&�Ek9�5�͒ur4���f��@�f�5�,Z�Ѭ�&�Ek9��s4��Ѭ�&�Ek9�U�D�hm F�J:�Yt��Y��,I G�ʚh� �hVY͢���*k�Y�6��Yc��,Y G�ʚh� �hVY͢���*k�Y�6��Yc��,Y G�ʚh� �hVY͢���*k�Y�6��Yc��,Y G�ʚh� �hVIG4���q4���fQ�@�f�uF�d]��*k�Y�6��YeM4��r4���f��@�f�uF�d]��*k�Y�6��YeM4��r4���f��@�f�uF�d]��*k�Y�6��YeM4��r4���f��@�f�uF�d]��*�f�Y8�f�3�,J�Ѭ�&�Ek9�5�͒ur4���f��@�f�5�,Z�Ѭ�&�Ek9��s4��Ѭ�&�Ek9�U�D�hm G�ʚh� �h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh� �h�H͒�q�*�fQY8�f�3�,J���~���Y|�-��x �f��c�f�oD��[����x&����f���>��/�~�����+�O������ǯo�;>�}}��nfz�|7����7����fFk��������`]����ʚ�fFk����5�͌��w3+k��� ��f6����d]����ʚ�� ��\Y�������+����Y8�̍sf�$]���+k2s�6�3seMf��rf������@�̍uf�d]���+k2s�6�3seMf��rf������@�̍uf�d]���+k2s�6�3seMf��rf������@�̍uf�d]���+k2s�63s%�9:Ǚ�r&3Gi937֙��urf������@�̕5�9Zș��&3Gk937֙��urf������@�̕5�9Zș��&3Gk937֙��urf������@�̕5�9Zș��&3Gk937֙��uRf��[f��Kf�J82s4�3s�Lf��rf.����+�3seMf��rf������@�̕5�9Zș���̜��3seMf��rf������@�̕5�9Zș���̜��3seMf��rf������@�̕5�9Z����&3'g�03Wʑ���p��+g2s�6�3seMf��rfn�33'���\Y�������+k2s�6�3seMf��rfn�33'���\Y�������+k2s�6�3seMf��rfn�33'���\Y�������+k2s�63s%�9:���Q&3'e�83W�d�(m g�ʚ�� ��\Y����������ɺ�93W�d�hm g�ʚ�� ��\Y����������ɺ�93W�d�hm g�ʚ�� ��\Y��������93� -��\Y�������+k2s�63s%�9:Ǚ�q�̜��3seMf��rf������@�̕5�9Zș���̜��3seMf��rf������@�̕5�9Zș���̜��3seMf��rf������@�̕5�9Zș���̜��3seMf��bf��#3Gg�83W�d�(m g��:3s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕td��,g�ʙ�� ��\Y����������ɺ�93W�d�hm g�ʚ�� ��\Y��������93� -��\Y�������+k2s�6�3seMf��rfn�33'���\Y�������+k2s�6�3seMf��bfn�����8�̕rd�,g�ʙ�� ��|?�V�9�ǖ�_����nf���w3ߝ�/\�o�$2������������gxo�'�ڷ1?�毯���/6��x�+y��p����-���ۣ�l����"�ۣ�,r��F�r����n�(�퓲p��V���}��b�(쓲p��ej}R�[}�L�O��q�/���e��7�D��,'�F�B����>�G�O�K��B8�|06��|�L�O��q�o���IY8n�2I>)�A�P�����(㓲p��eJ|R�;|�L�O��q�/���e��7���,��F��������(�ޓ�p����A�8��2�=)�ɽ1�➄�0��0�=DZ�P�������(ړ�p��e*{R�{�LbO��q`/���e㸮7����,��F�������(�Փ�p��l�A�8.�2A=)�9�Q��'eḥ7ʤ��,��B9;zP6�*z#�"z�]�0�7�QГ����&�'c�8���<������Q&�'e�8�7�T�,7�F�d����`^(g/��q-o���IY8N�2�<)ǝ�Q&�'e�8���ȃ�q\�eyR��x�LO��qo�I�IY8�1]<�U��(�|�0N�0E<�=�Q&���+{�%ɮ�:�UZ#fW�����)��4�Qj^��a�;� ��e��Wd��v�ڙ��1R�:t?�l����+HY8��r��l��F������(S���p��exR�x���;(���Q&~'e�8}7ʔ�,w�F�읔���](g���q�n� �IY8�ݍ2�;)���1�ԝ��0݅/�;� -ƕ�&r'c�8q7��,��F������](g���q�n� �IY8�ڍ2U;)�M�Q&i'e�8h�ٳ��q\�ebvR�Sv�L�N��q�n���IY8��o+/ ��r�q�n� �IY8�2�:)���1�t���0ׅpv�`lW�F�h����d�(S���pܫeruR�cu���:(ǥ�Q&T'e�8S7�T�,7�F�D����@](g���q�n���IY8NӍ2e:)�]�Q&K'e�8J�٤��q\�e�tRstc5: �aܢaRt2�Ct��:(��Q&B'e�8A7��,��F�������\(g{��qyn� �IY8�2�9)�Q&9'e�88�ٛ��q\�ebsR�Ss�LiN��qgn���IY8�̅r6�l��8s^�8/7���d,��F������\(gW��qUn���IY8Nʍ2E9)�=�Q&''e�8&��������%�Q&$'e�8#7�T�,7�F������\(g?��q=n���IY8NǍ2�8)�ݸQ&'e�0�4� ,��7�q�]�87���d,���J��%�R�������:�O��ףP<Ϥ���?����?�q,�rx>��� -��?�����#��]��n�����w�lm ���:�f��@���u��lm ���:g�6gg�3[����&sF����YG���b��#vfk)wvҭwfg�xV�$�(]�=;먞��@잝u��lm ���:�g�6�geM��������� ��YG��b����fk��V֤�h]�C;먡��@졝u�lm &��:�h�6�heM���a���2�� �6�I�8����<�9G��b!��I�Ѻ�1�v�QI����I;����@L��u��lm ��ʚ\��ig�4[�ʹ��h�� �l�YG7��b9��I�Ѻ�1�v�QO����O;����@L��u4�lm V�ʚ��Bj��ZR��F-�n15�9�s���� Ģ�XgRM��Q������ Į�YGX��bZ����fk��V���h]�X;�(���@l��uD�lm f��::k�6KkeMj�������ښ� ���YGp��br����fk��Vґ]��q^;�V^��p�^;爯Y�@̯�u��lm �ʚ�#lg6[������ ��YG���b���ɱѺ�1�v�Qd����d;눲��@̲�ut�lm ��ʚ4��lgu6[�}���@�� �D�I�F����J[)G����a�휣�fi��v�k����k;����@,��5�6Z F��:�m�6�mg�6[�鶳�v�� �z[Y�o�ub�����fk��v�q����q;����@,��u��d]�s;먹��@칝u�lm %�N�5��,V�ʙ���nge7[�m������ ļ�YG���b᭬I�Ѻ�1�v�Qy����y;����@L��u��lm ��ʚ���og�7[�ͷ��蛭 ���YG���b���I�Ѻ�1�v�Q����;����p��;�h�Y�@���58Z ���:Jp�6[pg18[�9����� �"\Y���ub -gk�w�������;�h���@�Õ5y8Z ��: -q�6qg�8[�����N�� �R\Y���uR,�[-���a/�#gi1w�ь���X�+k�q�.@ǝu��lm ���:�q�6�qg�8[���΄��+#rg9[������� Ĕ�YGK��bM����Ѻ�1(w�Q����ؔ;����@�ʝut�lm ��J:�rt6��r���rV�r��9K��9dӦ1������k�W��_�����ߘ�ב�������^���q�>��#[d~�?��1��~y�y�O�����|����?�~����8��Õ�_�����&<�>�x�<t���k�� ����7�������ʚ/EG�įEw���lm ~3��fE�� �e͊�Z�+�zY�� -�e͊�Z�+ʚ�6�W�5+hm ��\ ��e͊�Z�+ʚ�6W�t���p�"`�sE���W�5+hm �(kV��@^P֬����"`�sE���W�5+hm �(kV��@^P֬����"`�sE���W�5+hm �(kV��@^P֬����"`�sE���W�5+hm �(�X@g�xE@9�"����.@^P֬����"��Y@kyE@Y�"����.@^P֬����"��Y@kyE@Y�"����.@^P֬����"��Y@kyE@Y�"����.@ZP�mE���0\P±"����rfE�� �a���ufE�� �e͊�Z�+ʚ�6�W�u��ufE�� �e͊�Z�+ʚ�6�W�u��ufE�� �e͊�Z�+ʚ�6W�4+�l�(�X@e�xE@9�"��fE�� �c�+d]��"��Y@kyE@Y�"��fE�� �c�+d]��"��Y@kyE@Y�"��fE�� �c�+d]��"��Y@kyE@Y�"��⊀��tW�2+�l�(gVP�@^P֬����"��Y@kyE�X��Y �(kV��@^P֬����"��Y@kyE�X��Y �(kV��@^P֬����"��Y@kyE@X/+`]��"��Y@kyE@Y�"��⊀��t�W�s��tfE�� �e͊�Z�+ʚ�6�W�u��ufE�� �e͊�Z�+ʚ�6�W�u��ufE�� �e͊�Z�+ʚ�6�W�u��ufE�� �%+�,�(gVP�@^0ֹ"@��+ʚ�6�W�5+hm �(kV��@^0ֹ"@��+ʚ�6�W�5+hm �(kV��@^0ֹ"@��+ʚ�6�W�5+hm �(kV��@^0ֹ"@��+J:V�Y8^Pά����"��Y@kyE�X��Y �(kV��@^P֬����"��Y@kyE@X/+`]��"��Y@kyE@Y�"��fE�� �c�+d]��"��Y@kyE@Y�"��fE�� �#͊�9�+J9VPY8^Pά����"�9��|�mE��5�vW���w~Y����o����3sG��o������_�?��믿~��_އ�O[o1���{~����1)�hbҫ�I߿Ĥ$]��*kbR�6�cReML��rL���I��@�I�uƤd]��*kbR�6�cReML��rL���I��@�I�uƤd]��*kbR�6�cReML��rL���I��@�I�uƤd]��*kbR�6cR%1):�1�r&&Ei9&5���urL���I��@�I�51)Z�1��&&Ek9&5���urL���I��@�I�51)Z�1��&&Ek9&5���urL���I��@�I�51)Z�1��&&Ek9&5���uRL��[L��kƤJ8bR4�cR�LL��rL*����+�cReML��rL���I��@�I�51)Z�1��Θ���cReML��rL���I��@�I�51)Z�1��Θ���cReML��rL���I��@�I�51)Z�1��&&%g�0&U����p�*gbR�6�cReML��rLj�3&%��TY�����*kbR�6�cReML��rLj�3&%��TY�����*kbR�6�cReML��rLj�3&%��TY�����*kbR�6cR%1):�1�Q&&%e�8&U�Ĥ(m Ǥʚ�� �TY������Iɺ�9&U�Ĥhm Ǥʚ�� �TY������Iɺ�9&U�Ĥhm Ǥʚ�� �TY����� -�%&� -�TY�����*kbR�6cR%1):�1�qΘ���cReML��rL���I��@�I�51)Z�1��Θ���cReML��rL���I��@�I�51)Z�1��Θ���cReML��rL���I��@�I�51)Z�1��Θ���cReML��bL��#&Eg�8&U�Ĥ(m Ǥ�:cR�.@�I�51)Z�1��&&Ek9&U�Ĥhm Ǥ�:cR�.@�I�51)Z�1��&&Ek9&U�Ĥhm Ǥ�:cR�.@�I�51)Z�1��&&Ek9&U�Ĥhm Ǥ�:cR�.@�I�tĤ�,Ǥʙ�� �TY������Iɺ�9&U�Ĥhm Ǥʚ�� �TY����� -�%&� -�TY�����*kbR�6�cReML��rLj�3&%��TY�����*kbR�6�cReML��bLj��I��8�I�rĤ�,Ǥʙ�� 䘔�H��{l1��k@L��KLz��>l_��1�xfƤw#&�����)���Ho��E�AI���W��o��ל�6{����6��E��fɺ���f�5�6����*k�m� �o�U���p��I��9V��hm �ʚ@� �@XY�����ɺ�9V��hm �ʚ@� �@XY�����ɺ�9V��hm �ʚ@� �@XY�����ɺ�9V��hm �J:at�a�L ��r l�3&��@XY���+ka�6�aeM ��r l�3&��@XY���+ka�6�aeM ��r l�3&��@XY���+ka�6�aeM ��r l�3&��@X9�@��0��p�h,�ʙ@� �@XX/�0XW �ʚ@� �@XY���+ka�6�ac��0Y �ʚ@� �@XY���+ka�6�ac��0Y �ʚ@� �@XY���+ka�6a#M L��a ��#Fe�8V��(m �ʚ@� �@�Xg L�ȁ��&Fk9V��hm �ʚ@� �@�Xg L�ȁ��&Fk9V��hm �ʚ@� �@�Xg L�ȁ��&Fk9V��hm �J:ata�L L��q �� �Q�@��5�0Zȁ��&Fk96��ur �� ���@��5�0Zȁ��&Fk96��ur �� ���@��5�0Zȁ��&Fk9�K �ȁ��&Fk9V��hm �J:at�a㜁0I �ʚ@� �@XY���+ka�6�ac��0Y �ʚ@� �@XY���+ka�6�ac��0Y �ʚ@� �@XY���+ka�6�ac��0Y �ʚ@� �@XIG ���q �� �Q�@��u�d]�+ka�6�aeM ��r �� ���@��u�d]�+ka�6�aeM ��r �� ���@��u�d]�+ka�6�aeM ��r �� ���@��u�d]�+���Y8��3�0Jȁ��&Fk96��ur �� ���@��5�0Zȁ��&Fk9�K �ȁ��&Fk9V��hm �ʚ@� �@�Xg L�ȁ��&Fk9V��hm �ʚ@� �@�H��q+��QY8��3�0Jȁ0��"����׀@x�=~g |:�������O#��ן���_����0����W��?\�ח8~�!�����|x��0�~���{��x����E>葷gѺw�����QZ�goX�c=����7�u{����;�h+k�o�6��oc��7Y �ʚ�� ��[YS|���X|+�(��Y8.��s�$]�\|+k�o�6��oeM��r�)���@.��u�d]�\|+k�o�6��oeM��r�)���@.��u�d]�\|+k�o�6��oeM��r�)���@.��u�d]�\|+k�o�6�o%�7:�ŷr��Fi��6�Y|�ur�)���@.��5�7Z�ŷ���Fk��6�Y|�ur�)���@.��5�7Z�ŷ���Fk��6�Y|�ur�)���@.��5�7Z�ŷ���Fk��6�Y|�uR�[��k�J8�o4��o�L��r�-����+��oeM��r�)���@.��5�7Z�ŷ��⛬��oeM��r�)���@.��5�7Z�ŷ��⛬��oeM��r�)���@.��5�7Z�ŷ���&g��V�Q|��p\|+g�o�6��oeM��r�m���&���[YS|���\|+k�o�6��oeM��r�m���&���[YS|���\|+k�o�6��oeM��r�m���&���[YS|���\|+k�o�6�o%�7:�ŷQ��&e��V��(m �ʚ�� ��[YS|���\|�,�ɺ���V��hm �ʚ�� ��[YS|���\|�,�ɺ���V��hm �ʚ�� ��[YS|���\|��� -��[YS|���\|+k�o�6�o%�7:�ŷq�⛤��oeM��r�)���@.��5�7Z�ŷ��⛬��oeM��r�)���@.��5�7Z�ŷ��⛬��oeM��r�)���@.��5�7Z�ŷ��⛬��oeM��b�Fg��V��(m ��:�o�.@.��5�7Z�ŷ���Fk��V��hm ��:�o�.@.��5�7Z�ŷ���Fk��V��hm ��:�o�.@.��5�7Z�ŷ���Fk��V��hm ��:�o�.@,��t��,�ʙ�� ��[YS|���\|�,�ɺ���V��hm �ʚ�� ��[YS|���\|��� -��[YS|���\|+k�o�6��oeM��r�m���&���[YS|���\|+k�o�6��oeM��b�m�)���8,��rߨ,�ʙ�� ��{?`V�7��V|_����n��_�����ߘ~�W�w>s�]��~�>����x&����8j������~����>����?���?����������.�����-�^������y��m��c$��_�s�6��sa�4�`]�ܜ+k�s�6��seMs��rs��i���@nu6�d]�ܜ+k�s�6��seMs��bs���9Gg�97�ٜ�trs��i���@nΕ5�9Z���9Gk�97�ٜ�urs��i���@nΕ5�9Z���9Gk�97�ٜ�urs��i���@nΕ5�9Z���9Gk�97�ٜ�urs��i���@lΕt4��,7�ʙ�� ���XgsN����9Gk�9W�4�hm 7�ʚ�� ���XgsN����9Gk�9W�4�hm 7�ʚ�� ���XgsN����9Gk�9W�4�hm 7�ʚ�� ���XgsN�Hrn�9�a+�h��X8nΕ3�9J��^�s��@nΕ5�9Z���9Gk�9W�4�hm 7��:�s�.@nΕ5�9Z���9Gk�9W�4�hm 7��:�s�.@nΕ5�9Z���9Gk�9W�4�hm 6�F�朜���\)Gs���qs��i�Q�@nΕ5�9Z���本��seMs��rs��i���@nΕ5�9Z���本��seMs��rs��i���@nΕ5�9Z���本��seMs��rs��i���@lΕt4��,6�F�朔���\9Ӝ���ܜ+k�s�6��seMs��rsn��9'���\YӜ���ܜ+k�s�6��seMs��rsn��9'���\YӜ���ܜ+k�s�6��seMs��rs.����+��seMs��rs��i���@lΕt4��,7��9�s�.@nΕ5�9Z���9Gk�9W�4�hm 7��:�s�.@nΕ5�9Z���9Gk�9W�4�hm 7��:�s�.@nΕ5�9Z���9Gk�9W�4�hm 7��:�s�.@nΕ5�9Z��������\9Ӝ���ܜ�l�ɺ��9W�4�hm 7�ʚ�� ��\YӜ���ܜ�l�ɺ��9W�4�hm 7�ʚ�� ��\YӜ���ܜ�l�ɺ��9W�4�hm 7�ʚ�� ��\YӜ���ܜ�l�ɺ��9W�ќ��pܜ+g�s�6��seMs��rsn��9'���\YӜ���ܜ+k�s�6��seMs��rs.����+��seMs��rs��i���@nΕ5�9Z���本��seMs��rs��i���@nΕ5�9Z���9'g�9W�ќ��pܜ+g�s�6����lZ5��[s~�М����������%��#�9_��5�>�-��ۿ����R�ϻ_/�|<�n�����k��˟O��<��G�X�����I*�GYY�������)�GYY��j�x�{>)�x���Q�OOR�=����(ǀ�Qf����9��)�[���)�}��!��)�+F�R�'�2�,��?�e�x��(�}@����Qf������c�$������06��2{�,�e�HY8�:0�,��p�s �s��������)�F��R�� �2��,o�6�e�x��(�k@���QfԀ���I�̢)�{B9�@�830�l��p�d`�cȀ��0�10¬��p�a �s�������~)��F��R���2��,��-�e�x��(�Y@���b�Qf�������Z)�[B9� -@�8*0����p�R`�) e�x��(�P@���>�P�yP6�� �p�& � -� �m��ƳF�U2�7 n+/���ǃF�=R���2c�,Oe�HY8�!�9C�����Qf��������)��F��R���rN��q<<`�� e�xu�(3:@����Qfq���ýa����c�7��w �#����3F��R�7�rN��q<0`�� e�x]�(3.@���QfY����]����l� -e6HY8^0� -��p<'`�Y e�xK@(��(�CF�R�W�2#�,N�X �5��/��+�a��X8^0���p<`�Y e�x3@(�d�(ǃF���R���2c�,Oe�HY8� �9����H�Qf#�������@�)���F�u�R��n+/�������F�]�R�W�2���,N�X �5����p���q<`�� e�x �(3@����Qf���� �����l�e�R���L�O��q�o�)�IY8���rf��lG�F�柔����(���p��ejR�[���?(ǡ�Q��'e��7����Ɖ���'c��ʙ���q�e�~R��~�L�O��q�o���IY8n��r&��l�F�������(�p��eJ~R�;~��?(��Q��'e��7���,��F�z����v_(g���a�o���'�5��}#L�O��q�o�)�IY8���r���l��F�V����R�(ꓲp��e*}R����K���\p�e�|R��|�L�O��q�o�)�IY8��rf��lG�F�&����"�(䓲p��ej|R[|aL�a�o|��'�5�+|#L�O��q�]�(��%�������Ē�����?����������_�~���������?=����ƫ���_�}���|����^���� kw��m�H�5@���ڀrfn�� ��e���Zțʚ��6�g�u��u��fz�� ��e���Z��ʚ�6�'���A���+ʚ�6���5Khm o(k���@�#0ֹG@�ȋʚI�6�G �5�hm �(�&@g�x��8�6I �(k� ��@(P�,����Q��)@ky��X�NY /(k� -��@+P֬����W��,@ky��X�fY �(kf��@.P�,����]��/@ky��X�~Y /(k&��@1Pұb����rf��� �)c�[d]��f���3@ky�@Y�h��f��� �Yc��d]��l���6@ky�@Y�n��f��� �c�d]��r���9@ky�@Y�t���ց�f��� �c�{d]��x�����a8z��c���������J���z�>�� -��e��Z�ʚ�6�7�5#hm � ��A ��%e�Z�cʚ5�6���5�hm O"��D ��Ue�,Z��ʚe�6���5�hm �#i���8\HP�1�����H�rf%� �e�PZ�S �:�Ⱥ�y-AY3����`��f1� ��e�hZȳ �:wȺ�y9AY3����x��f=� ��èZ� -�:7Ⱥ�yEAY3���fI� �-%c -�,�)e�H�8^TP�L*���<���YU@kyWAY3����m�.@^WP��+���<���YX@kycAY3����̂�Ν�.@^ZP�L-���<���Y[@kyoAY3����䂰^6��yuAY3�������fy� ��%��,�/��_ ��e�Z�#ʚ�6�w�5Chm O1��b ��5e�ZȃʚE�6�7�5�hm �2��e ��ee�4Z��ʚu�6���5 hm O4��h ��e�LZ�C J:��Y8�jPΌ5���<�`�s�����5� hm �6(kV��@�mP�7���<�`�s������5� hm 8(k��@�pP8���<�`�sǁ����5Shm �9(k���@�sP�:���<�`�sӁ�W�t�:��p<제Yv@iy�AY3���}�.@^xP�L<���<�Yy@ky�AY3���ԃ�^���y�AY3�������f�� ��e��Zȳ�:wȺ�y�AY3�������f�� ��e��Z�F� r6W �r�@��p<��Y�@iy�6��Ƕq�OO�s���N/��w��Ǜ��r�o�߽�j|\T������1�?�~��ˏ��>�[O�xz�Õj}�����q��n�S��y��Uw�^d��bk��R��Sh]�XO9먧��@���t���Y8���s�S,m �Sʚz -��)g�[�����z�� �z�YG=��b=����к���r�QO���XO9먧��@���u�Slm �Sʚz -��)g�[�����z�� �z�YG=��b=����к���rί��aTO9�VO��pXO9稧X�@���u�Sd]�XO9먧��@���u�Slm �S�:�)�6�)eM=�������z�� �z�YG=��b=嬣�bk��R��Sh]�XO9먧��@���u�Slm �S�:�)�6��)%�:G��Sn�+���s�z�� �z�YG=��b=����к���r�QO���XO9먧��@���u�Slm �Sʚz -��)g�[�����z�� �z�YG=��b=����к���r�QO���XO9먧��@���t���Y8���r�S�l�S�9�)�6�)g�[�����z�� �zJYSO�ub=嬣�bk��r�QO���XO9먧��@���5�Z �S�:�)�6�)g�[�����z�� �z�Xg=E������z�� �z�YG=��R=�[=���a=����P����r�QO���XO9먧��@���u�Slm �Sʚz -��)g�[�����z�� �z�YG=��b=����к���r�QO���XO9먧��@���u�Slm �Sʚz -��)g�[H���n�;���s�z�� �zJYSO�ub=嬣�bk��r�QO���XO9먧��@���5�Z �S�:�)�6�)g�[�����z�� �zJYSO�ub=嬣�bk��r�QO���XO9먧��@���5�Z �SN��S�,�S�9�)�6�)g�[������B��z�YG=��b=嬣�bk��r�QO���XO묧Ⱥ��r�QO���XO9먧��@���u�Slm �Sʚz -��)g�[�����z�� �z�YG=��R=����Bg㨞rʭ�beᰞr�QO���XOAd�)~���\��~=��Sw7ꩧ������\�Sw�S���ۻ�o�������������o>������y<<��al������0O���O�߿�֓u�i���� ��ze�i=Zȧ�ʚ�z�6�O�u�֓u�i�rn��h���i���z4�O�3��(m �����+�O�5��hm ��+kN���@>�W֣֜��|Zo��O�5��hm ��+kN���@>�W֣֜��|Zo��O�5��hm ��+kN���@>�W֣֜��xZo�9�'g��^)�i=*ǧ�ʙ�z�6�O�5��hm ���<�'���ze�i=Zȧ�ʚ�z�6�O�5��hm ���<�'���ze�i=Zȧ�ʚ�z�6�O�5��hm ���<�'���ze�i=Zȧ�ʚ�z�6O�t�֣�pxZo�9�'e���^9sZ���i���� ��ze�i=Zȧ��:O�ɺ���^YsZ���i���� ��ze�i=Zȧ��:O�ɺ���^YsZ���i���� ��ze�i=Zȧ��z9�� -��ze�i=Zȧ�ʚ�z�6O�t�֣�p|Zo��O�5��hm ��+kN���@>�W֣֜��|Zo��O�5��hm ��+kN���@>�W֣֜��|Zo��O�5��hm ��+kN���@>�W֣֜��|Zo��O�5��hm ��+�8�Gg���^9sZ���i����z�.@>�W֣֜��|Z��9�Gk��^YsZ���i����z�.@>�W֣֜��|Z��9�Gk��^YsZ���i����z�.@>�W֣֜��|Z��9�Gk��^YsZ���i����z�.@<�W�qZ����i�r�� ��ze�i=Zȧ��:O�ɺ���^YsZ���i���� ��ze�i=Zȧ��z9�� -��ze�i=Zȧ�ʚ�z�6�O�5��hm ���<�'���ze�i=Zȧ�ʚ�z�6�O�5��hm ��iN���8<�W�qZ����i�r�� ����3puZ�ﱝ�_�����i��{|����c -_Lr�]���-���̟�?|��L��9���>��Z�xz9��<�� -�����i��x<���/x�<t�^�~^oU�ˇ��ae��x�Y������(�۳7� ܱ>^�u{����[�?���-cϲu�X�?���۳7� ܱ�Gkݞ�am����cx;�R����~l}<No���Xdzl]�;�����Z�goX�c}<���_#Ƴ7� ܱ>���ͷ�n�ް6�c����� ��Y�.�����v���۳7� ܱ��iݞ�am����c������~l}>��_��G�ٸ��gp���goH�c=�>Y��� kw�χ���={�����/��ݳ� g<���c=���u{����;���ݣ�mn<{������� ��ް6�� ����p�y�+p�z�1��u{����;����IZ�goX�c=��ֺ={�����o��'��\�e�ܱ��//Һ={�������u{����;��ã���� g�>V��'�N�e�ܱ��ֺ={�����g�p'�۳7� ܱ� -�'iݞ�am������p���,[����c��������X߆�o8����X�?�Oֺ={����/�=>��gٺ�w���ó� g<{�����^e���������ʚ��Ek�k}�u~�/Y ����k}��@�Z_%_������*g��� ��5����d]����ʚ��Ek�k}�5_�����*k��� ��5����d]����ʚ��Ek�k}�5_�����*k����@�2ֹ=D���Cʚ�!�6����5�Chm o)k����@�2ֹ=D�H�Cʹm����CJ8���X8�R�l����=$���!��@�R�l����=���Bky{HY�=��������!�.@�R�l����=���Bky{HY�=��������!�.@�R�l����=���Bky{HY�=������f{�����!��C�,o)g��P�@�R�l����=d�s{������5�Chm o)k����@�R�l����=d�s{������5�Chm o)k����@�R�l����=d�s{������5�Chm o)k����@�Rұ=������Qf{�����!���J��Cʚ�!�6����5�Chm o��"���!e��Z��Cʚ�!�6����5�Chm o��"���!e��Z��Cʚ�!�6����5�Chm o �e{�+����5�Chm o)k����@�Rұ=������q��!�.@�R�l����=���Bky{HY�=��������!�.@�R�l����=���Bky{HY�=��������!�.@�R�l����=���Bky{HY�=��������!�.@�R�l����=��c{����!���J��C�:��Ⱥ�y{HY�=������f{� ��!e��Z��C�:��Ⱥ�y{HY�=������f{� ��!e��Z��C�:��Ⱥ�y{HY�=������f{� ��!e��Z��C�:��Ⱥ�q{HI��:��Cʙ�!�6����5�Chm o��"���!e��Z��Cʚ�!�6����5�Chm o �e{�+����5�Chm o)k����@�R�l����=d�s{������5�Chm o)k����@�R�l����=d��"g�p{H)��*��Cʙ�!�6����Gu���Ƕ=t��=���o{�a�M����#c{�4�����_~|�>�w�)g�ۇ5��_���_�vև�d���z��ɘ�/�1hm O�(k&c��@��1�9C�ȓ1ʚ��6�'c�5�1hm O�(k&c��@��1�9C�ȓ1ʚ��6�'c�5�1hm O�(k&c��@��1�LƐ�q<����Aiy2FY3���d��f2� ��c��1d]�<����Aky2FY3���d��f2� ��a�Lƀu�d��f2� ��e�dZȓ1ʚ��6�'c�uNƐu�d��f2� ��e�dZ��1J:&c�Y8��1�9C�ȓ1ʚ��6�'c�5�1hm O�(k&c��@��1�9C�ȓ1ʚ��6�'c�5�1hm O�(k&c��@��1�9C�ȓ1ʚ��6�'c�5�1hm O�(k&c��@��1�9C�ȓ1ʚ��6'c�tLƠ�p<����Aiy2�X�dY O�(k&c��@��Q�LƠ��<����Aky2�X�dY O�(k&c��@��Q�LƠ��<����Aky2�X�dY O�(k&c��@��Q�LƠ��<����Aky2�X�dY M�(�6��kN�(ᘌAc�x2F93���d��^&c��y2FY3���d��f2� ��e�dZȓ1�:'cȺ�y2FY3���d��f2� ��e�dZȓ1�:'cȺ�y2FY3���d��f2� ��e�dZ��1F��r6'c�rLƠ�p<����Aiy2FY3���d�����.@��Q�LƠ��<����Aky2FY3���d�����.@��Q�LƠ��<����Aky2FY3���d�����.@��Q�LƠ��<����Akq2FI�d:��1F��R6�'c�3�1(m O�(k&c��@��Q�LƠ��<c�s2���'c�5�1hm O�(k&c��@��Q�LƠ��<c�s2���'c�5�1hm O�(k&c��@��Q�LƠ��<#�����@��Q�LƠ��<����Akq2FI�d:Ǔ1�9'cH��y2FY3���d��f2� ��e�dZȓ1�:'cȺ�y2FY3���d��f2� ��e�dZȓ1�:'cȺ�y2FY3���d��f2� ��e�dZȓ1�:'cȺ�y2FY3���d����t�'c�3�1(m O�뜌!���e�dZȓ1ʚ��6�'c�5�1hm O�뜌!���e�dZȓ1ʚ��6�'c�5�1hm O�뜌!���e�dZȓ1ʚ��6�'c�5�1hm O�뜌!���%�1�,O�(g&cP�@��Q�LƠ��<c�s2���'c�5�1hm O�(k&c��@��Q�LƠ��<#�����@��Q�LƠ��<����Aky2FY3���d�����.@��Q�LƠ��<����Aky2FY3���d��f2�������1�,O�(g&cP�@���%1��M�\�L����?>�������ػ��Y�/��B�������mǏ���P���1�1�߿n��?�����7�?�����txx���E�����q�����k&��z������@Z��rZ��I���@N�5i=Z�i��^�z��@N�5i=Z�i��&�Gk9�W֤�hm ���:�z�.@N�5i=Z�i��&�Gk1�Wґ֣�p���L�I��9�W֤�hm ��ʚ�� �^Y�֣�����L�ɺ�9�W֤�hm ��ʚ�� �^Y�֣�����L�ɺ�9�W֤�hm ��ʚ�� �^Y�֣�����L�ɺ�9�W֤�hm ��J:�zt��z�LZ��rZo�3�'��^Y�֣����+k�z�6��zeMZ��rZo�3�'��^Y�֣����+k�z�6��zeMZ��rZo�3�'��^Y�֣����+k�z�6��zeMZ��rZo�3�'���^9����0L�p��h,��ʙ�� �^X/i=XW ��ʚ�� �^Y�֣����+k�z�6��zc�i=Y ��ʚ�� �^Y�֣����+k�z�6��zc�i=Y ��ʚ�� �^Y�֣����+k�z�6�z#MZO��aZ��#�Ge�8�WΤ�(m ��ʚ�� ��XgZO��i��&�Gk9�W֤�hm ��ʚ�� ��XgZO��i��&�Gk9�W֤�hm ��ʚ�� ��XgZO��i��&�Gk9�W֤�hm ��J:�zt�z�LZO��qZ��I�Q�@N�5i=Z�i��&�Gk9�7֙֓urZ��I���@N�5i=Z�i��&�Gk9�7֙֓urZ��I���@N�5i=Z�i��&�Gk9��KZ��i��&�Gk9�W֤�hm ��J:�zt��z�i=I ��ʚ�� �^Y�֣����+k�z�6��zc�i=Y ��ʚ�� �^Y�֣����+k�z�6��zc�i=Y ��ʚ�� �^Y�֣����+k�z�6��zc�i=Y ��ʚ�� Ĵ^IGZ���qZ��I�Q�@N�u��d]���+k�z�6��zeMZ��rZ��I���@N�u��d]���+k�z�6��zeMZ��rZ��I���@N�u��d]���+k�z�6��zeMZ��rZ��I���@N�u��d]���+�H��Y8N�3i=J�i��&�Gk9�7֙֓urZ��I���@N�5i=Z�i��&�Gk9��KZ��i��&�Gk9�W֤�hm ��ʚ�� ��XgZO��i��&�Gk9�W֤�hm ��ʚ�� Ĵ�H�֓�q��+�H�QY8N�3i=J�i=%�"��������xz�M���cI�7���������#3��a����ˏ_~�n��?�������G5��nB>�u;�^v~�.}��kμ���u廷�������(SV��p�U -��*A�8�*�2M%)�E�Q&�$e�8�4�Ԕ�,��B9SJP6�CJ�LGI��qEi��(IY8N(�2%)���P�|���x�(�N��pXN�'Ix �l�SM��p�L -�L&A�8&�2�$)ǵ�Q&�$e�8�4ʔ��,w�B93IP6�#I�L#I��q!i� $IY8�#�2u$)�m�P�4���0�(�E��p\Ee�HR��H�LI��q)�3�e�(�4�$� -KHc!$�a�Aa*H2����K��\p@e�GR��G�L�H��q�h�)IY8��rf��lG�F�摔����(<��p�;ejGR�[G���#(ǡ�Q�s$e�r4�D��,'�F���þQ�7��`7�h�w ��6��p�5e�FR��F��I#(�A�Q�g$e�f4�Č�,��F������Q(g���q�h�iIY8.�2#)���Q�^$e�]ʙ.��q.e�ER��E�L�H��a�h��X$�5{E�K���q�h�i�X8.�2�")Ǚ�Q�R$e�Qʙ(��q(e�DR��D�L�H��q�h�)IY8��rf��lG�F�&����"�($��p�#ejDR�[���K���\p"e:DR�+D�L�H��a�h��@$�5��C!��!��Q�=$e�<4ʄ��,g�F�ꐔ���P(gr��qph�� IY8� �2�!)ǩ�Q�4$e�3ʙ��qeCR�C�L`H��q^h��IY8n�r���l��F�����ê�GTH�k'�F������P(gN��qLh�i IY8. �2!!)��Q�"$e�!ʙ��qe�AR��A�L<H��q:h�)IY8��rf��lG�F�f����b�(��p�ejAR�[A��� (���1�N���0��0� lj�Q�$e�ʙ��qe�@R��@�LH��qh��IY8no+/I�r�qh��IY8��21 )�)�Q�$e�ʙ��qe@R�@�L�H��q�g���HY8l��1�����|�0���0����k������;@����t�������������Q���~{����/�&r��E������W���/_ ��z����|��Ց$]��Ցʚ�� �QYS7����7*kG�6�Gc��#Y W�ʚ�� ��QYS:����:*kbG�6�sGc��#Y �ʚ�� ��QYS=����=*k�G�6��Gc��#Y ʚ�� ��RIG���q��� Q�@� �uv�d]�\B*kRH�6�cHeM ��r�� "��@N"�u6�d]�\E*k�H�6��HeM��r���#��@�#�u��d]�\H*kI�6�#IeM%��r'�� %��@N%�u��d]�TK*�K������b���fR9M����M -륛� -�rRY�N���O*k�I�6��IeM@��rBi���$��RY�Q���R*kJJ�6�[JeML��rNi���$��RY�T���U*k�J�6��JeMX��bZi�i+��8�+�r䕨,�ʙ�� ��RYY����Y��,ɺ���T֤�hm ǖʚ�� ��RY\����\�l.ɺ���T�d�hm ��ʚ�� ��RY_����_��/ɺ���T�$�hm G�ʚ -� �SIG����a�i�i1I�8�1�39&J�A����Dk��T�D�hm g��:�L�.@.3�5i&Z�q����Dk��T��hm '��:M�.@�4�5�&Zȡ����Dk��T�Ěhm ��z�5����T�$�hm G�ʚj� �nSIG����q�i���$��zSY�o���p*k -N�6�NeMĉ�r�i���$��SY�r���s*kjN�6�{NeMЉ�r�i���$��SY�u���v*k�N�6��NeM܉�r�i���$���SY�x���y*�<�Y8�<�3�'Jȩ���֓��kOeM��r�)>��@n>�5�'Z�٧����OeM���r����?��@�?�5(Z� ������+PeM��r��)A��@nA�51(Z�9������P%I(:�Q�r� -Ei�Uք�hm ���:�P�.@�C�5y(Zȁ���Ek�U�D�hm g��z�D���U֤�hm ǢʚZ� �^TY�������lFɺ��U�d�hm ��ʚr� �vTY������i�Qr6R� )*��r�"Ei�#�"R���[Iz�ϟvS�����_�v^z��-�xf����%���o�>}�����������鷟�?�O����������_t]��-�v�NrVr�곒�z��J���@%��r%g���#��JNYSɡ��\�)k*9�6�+9eM%��r%g���#��JNYSɡ��X�)���Y8��3�Jȕ���J���+9eM%��r%������@��5�Zȕ���J���+9eM%��r%������@��5�Zȕ���J���+9eM%��r%������@��5�Zȕ���J���*9��*94^ð�S�Qɡ�p\�)g*9�6�+9a�Tr`]�\�)k*9�6�+9eM%��r%������@��uVrd]�\�)k*9�6�+9eM%��r%������@��uVrd]�\�)k*9�6�+9eM%��r%������@��4�9���R�J���JN9Sɡ��\�)k*9�6�+9c��Y WrʚJ� �JNYSɡ��\�)k*9�6�+9c��Y WrʚJ� �JNYSɡ��\�)k*9�6�+9c��Y WrʚJ� �JNYSɡ��X�)���Y8��2�)Ǖ�r��Ci��S�Trhm WrʚJ� �J�Xg%G�ȕ����Ck��S�Trhm WrʚJ� �J�Xg%G�ȕ����Ck��S�Trhm WrʚJ� �JNX/�XW WrʚJ� �JNYSɡ��X�)���Y8��sVr$]�\�)k*9�6�+9eM%��r%������@��uVrd]�\�)k*9�6�+9eM%��r%������@��uVrd]�\�)k*9�6�+9eM%��r%������@��uVrd]�\�)k*9�6+9%�:Ǖ�r��Ci��3�Yɑur%������@��5�Zȕ����Ck��3�Yɑur%������@��5�Zȕ����Ck��3�Yɑur%������@��5�Zȕ����Ck��3�Yɑub%����CgḒS�Tr(m WrʚJ� �J�Xg%G�ȕ����Ck��S�Trhm WrʚJ� �JNX/�XW WrʚJ� �JNYSɡ��\�)k*9�6�+9c��Y WrʚJ� �JNYSɡ��\�)k*9�6+9#M%G��a%����CeḒS�Tr(m WrTv�J�c��^���[�����o��_����z:����3O���א��ӫO��Nw��䑷�����������߾�?_~����G���˧o�����o������O_��+��R������x|<����{;z�<t�Ƈ�/r:<??|�"X�goX�c}<���u{����;����㓴n�ް6�c���8�iϲu�X�?��giݞ�am����c8�H��� kw��Ý�n�ް6�c����p�ۣ�l��38�s{����;������n�ް6p��|xz���۳7� ���r<ܝCQ��,[���txz������XϿ1>�K��� kw��Ã� g<{�����O�ý��Y������pz������X�?��'iݞ�am����c8Z��� k?��?�O<���c=_^�u{����;�����Z�goX�c����N�}8;�_���:p�.@�:pg_���ׁ;��:p�6��Y�ׁ����u�ʚ�G�įw��u�lm ~�����6�N�u����8t��:A�ġgC'lm �8�:akq��Y�� [�C'ʚ��.@:q�1t���Љ�nC'�,�8�:aiq�DY3t���C'�:�N��@:q�1t���Љ����6�N�5C'h]�8t�c脭 ġgC'lm �8�:akq�DY3t���C'�:�N��@:q�1t���Љ����6�N�5C'h]�0t�_�N�x ��'܆N�X8:q�1t���Љ�Ρ��@:q�1t���Љ����6�N�u����8t��:A�ġgC'lm �8�:akq��Y�� [�C'ʚ��.@:q�1t���Љ����6�N�u����4t��c������܆NXY8:q�1t���Љ����6�N�5C'h]�8t�c脭 ġgC'lm �8�:akq�DY3t���C'�:�N��@:q�1t���Љ����6�N�5C'h]�8t�c脭 ġgC'lm �8�6t����ЉR��T6�N�s����8t�c脭 ġgC'lm �(k�Nк�q��Y�� [�C'�:�N��@:q�1t���Љ�f���N�u����8t�c脭 ġgC'lm ��:!� -ġgC'lm �8�:aki��I��v�N�3C'(]�8t�c脭 ġgC'lm �8�:akq�DY3t���C'�:�N��@:q�1t���Љ����6�N�5C'h]�8t�c脭 ġgC'lm �8�:akq�DY3t���C'�:�N��@:q�m脝�á�C',m �(k�Nк�q��Y�� [�C'�:�N��@:q�1t���Љ�f���N�u����8t�c脭 ġgC'lm �(k�Nк�q��Y�� [�C'�:�N��@:q�1t���Љ�f����N�t:ag�p��9�� K�C'�:�N��@:Q���u�Љ����6�N�u����8t�c脭 ġc�C'd]�8t�c脭 ġgC'lm �8�:akq�DY3t���C'�:�N��@:q�1t���Љ����6��N�t���q4t��� +�C'�9�NX�@:��3t�������x��:��X�N�x��i����N�#o/�:�������=>��o����/���ӯo_ -�6��^������u����������_��[���|�?<�^���� kw�χ���eݞ�am�κɘ{1ֹC���1ʚ��6��c�5�1hm ��(k�c��@ޏ1ֹC���1ʚ��6��c�5�1hm ��(k�c��@1��ǐ�q���ُAiy?FY����~��f?� ��c��1d]����ُAky?FY����~��f?� ��a��ǀu�~��f?� ��e�~Z��1ʚ��6��c�u�ǐu�~��f?� ��e�~Z��1J:�c�Y8ޏ1ιC���1ʚ��6��c�5�1hm ��(k�c��@ޏ1ֹC���1ʚ��6��c�5�1hm ��(k�c��@ޏ1ֹC���1ʚ��6��c�5�1hm ��(k�c��@ޏ1ֹC���1ʚ��6�c�t�Ǡ�p���ُAiy?�X�~Y ��(k�c��@ޏQ��Ǡ�����ُAky?�X�~Y ��(k�c��@ޏQ��Ǡ�����ُAky?�X�~Y ��(k�c��@ޏQ��Ǡ�����ُAky?�X�~Y ��(���k��(�؏Ac�x?F9����~��^�c��y?FY����~��f?� ��e�~Z��1�:�cȺ�y?FY����~��f?� ��e�~Z��1�:�cȺ�y?FY����~��f?� ��e�~Z��1F��r6�c�r�Ǡ�p���ُAiy?FY����~�����.@ޏQ��Ǡ�����ُAky?FY����~�����.@ޏQ��Ǡ�����ُAky?FY����~�����.@ޏQ��Ǡ�����ُAkq?FI�~:��1F��R6��c�3�1(m ��(k�c��@ޏQ��Ǡ���c�s?����c�5�1hm ��(k�c��@ޏQ��Ǡ���c�s?����c�5�1hm ��(k�c��@ޏQ��Ǡ���#�����@ޏQ��Ǡ�����ُAkq?FI�~:��1�9�cH��y?FY����~��f?� ��e�~Z��1�:�cȺ�y?FY����~��f?� ��e�~Z��1�:�cȺ�y?FY����~��f?� ��e�~Z��1�:�cȺ�y?FY����~����t��c�3�1(m ���!���e�~Z��1ʚ��6��c�5�1hm ���!���e�~Z��1ʚ��6��c�5�1hm ���!���e�~Z��1ʚ��6��c�5�1hm ���!���%�1�,��(g�cP�@ޏQ��Ǡ���c�s?����c�5�1hm ��(k�c��@ޏQ��Ǡ���#�����@ޏQ��Ǡ�����ُAky?FY����~�����.@ޏQ��Ǡ�����ُAky?FY����~��f?�������1�,��(g�cP�@ޏ�_BQ�1��~��k�<������?p��~���gο�<~�z�?<_���fu��x&�l�1DZ ���������?�����˟_��1���~��8ޯ�ܽ<��̅xǹ�p��� ��c�������BJ� ʚ��6��5 hm /4�\h ��e�BZ� ʚ��6��5 hm /4�e��+��5 hm /4(k��@^hP�,4�����`�s�����5 hm /4(k��@\hPұЀ���B�q΅�.@^hP�,4����Р�Yh@ky�AY�Ѐ��B��΅�.@^hP�,4����Р�Yh@ky�AY�Ѐ��B��΅�.@^hP�,4����Р�Yh@ky�AY�Ѐ��B��΅�.@^hP�,4����Р�c������BJ� �:Ⱥ�y�AY�Ѐ��B��f�� �e�BZ� �:Ⱥ�y�AY�Ѐ��B��f�� �e�BZ� �:Ⱥ�y�AY�Ѐ��B��f�� �e�BZ� �:Ⱥ�i�A9��4^�p�A �B� ʙ��6�������� ʚ��6��5 hm /4(k��@^h0ֹ�@�� ʚ��6��5 hm /4(k��@^h0ֹ�@�� ʚ��6��5 hm /4(k��@\h0�,4��q�Р�c������BJ� ʚ��6��u.4�u�B��f�� �e�BZ� ʚ��6��u.4�u�B��f�� �e�BZ� ʚ��6��u.4�u�B��f�� �e�BZ� J:�Y8\h0�,4��q�Р�Yh@iy�AY�Ѐ��B��f�� �c� d]��Р�Yh@ky�AY�Ѐ��B��f�� �c� d]��Р�Yh@ky�AY�Ѐ��B��f�� �a�,4�u�B��f�� �e�BZ� J:�Y8^h0ι�@�� ʚ��6��5 hm /4(k��@^h0ֹ�@�� ʚ��6��5 hm /4(k��@^h0ֹ�@�� ʚ��6��5 hm /4(k��@^h0ֹ�@�� ʚ��6�t,4��p�Р�Yh@iy��X�BY /4(k��@^hP�,4����Р�Yh@ky��X�BY /4(k��@^hP�,4����Р�Yh@ky��X�BY /4(k��@^hP�,4����Р�Yh@ky��X�BY .4(�Xh@g�x�A9�Ѐ��B��f�� �c� d]��Р�Yh@ky�AY�Ѐ��B��f�� �a�,4�u�B��f�� �e�BZ� ʚ��6��u.4�u�B��f�� �e�BZ� ʚ��6�4 �l.4(�Xh@e�x�A9�Ѐ��B��ڀZh����^���j�a�W���p<<���L �m��n,4����c��o������_��ן�����ן��ї_���ǟ~=����o����w������|�������w���?�?�xN�z��;O�{;�;6�3�wlW��wl�_����@�c3�ܱ��qxǦ�� ���;6��J�wlʚ;6�6��،uޱ�u���� � �;6e�Z�wlʚ;6�6��،uޱ�u���� � �;6e�Z�wlʚ;6�6��،uޱ�u���� � �;6e�Z�wlJ:���Y8�c3�ܱ��q|Ǧ��cCi��MYsdž����� � �;6c�wld]�|Ǧ��cCk��MYsdž����� � �;6c�wld]�|Ǧ��cCk��MYsdž����� � �;6a�ܱ�u���� � �;6e�Z�wlJ:���Y8�c3�y�F��wlʚ;6�6��ؔ5wlhm ߱)k����@�c3�y�F��wlʚ;6�6��ؔ5wlhm ߱)k����@�c3�y�F��wlʚ;6�6��ؔ5wlhm ߱)k����@�c3�y�F��wlʚ;6�6�ؔtܱ��p|Ǧ��cCi���X�Y ߱)k����@�cS�ܱ���|Ǧ��cCk���X�Y ߱)k����@�cS�ܱ���|Ǧ��cCk���X�Y ߱)k����@�cS�ܱ���|Ǧ��cCk���X�Y ޱ)�cCg���M9sdž����� � �;6c�wld]�|Ǧ��cCk��MYsdž����� � �;6a�ܱ�u���� � �;6e�Z�wlʚ;6�6��،uޱ�u���� � �;6e�Z�wlʚ;6�6�،4wl�lޱ)�cCe���M9sdž����5��c����خ^������ݱ��/�'�c�lwl�q��_ƙڏ�����^����8H��ן�w�������������۷w����?���ϧ�?����_����x8����jo�?������믿������_�����w�y���_�:N����}x���_��}�9ʧ�3��/�?������� -�"ΏV�~�?Zy�"�� -Z��(k>ZAk�%���p�ъqΏVH����e�G+hm ����h� �V�5�����ъ�ΏVȺ���e�G+hm ����h� �V�5�����ъ�ΏVȺ���e�G+hm ����h� �V�5�����ъ�ΏVȺ���e�G+hm ~����t�?ZQ�|����G+�:?Z!��V�5�����ъ���6�?ZQ�|����G+�:?Z!��V�5�����ъ���6�?ZQ�|����G+�:?Z!��V�5�����ъ���6�?ZQ�|����G+�:?Z!�ďV�t|�����G+ʙ�VP�@�hEY�� +�6�g)�5�hm �R�y��+�g)�5�hm �R(kf)��@��P��R���<Ka�s����g)�5�hm �R(kf)��@��P��R���8Ka��� g�p�B)�,*dzʙY +�6�g)���,��6Kq�0K���w)o|������偿Ky<�a�㘦��߾����/���˓���矿|�F�?�3��W&���|e�f�5g4{������h� �hVIG4���q4k�3�%��hVY͢���*k�Y�6��YeM4��r4k�3�%��hVY͢���*k�Y�6��YeM4��r4k�3�%��hVY͢���*k�Y�6��YeM4��r4k�3�%��hVY͢���*�f�Y8�f�3�,J�Ѭ��h����YeM4��r4���f��@�f�5�,Z�Ѭ��h����YeM4��r4���f��@�f�5�,Z�Ѭ��h����YeM4��r4���f��@�f�5�,Z�Ѭ��h����Y�ܢY4^�0�U�͢�p�*g�Y�6��Ya=G�`]��*k�Y�6��YeM4��r4���f��@�f�uF�d]��*k�Y�6��YeM4��r4���f��@�f�uF�d]��*k�Y�6��YeM4��r4���f��@�f�4�,9�ѬR�h���hV9͢���*k�Y�6��Yc��,Y G�ʚh� �hVY͢���*k�Y�6��Yc��,Y G�ʚh� �hVY͢���*k�Y�6��Yc��,Y G�ʚh� �hVY͢���*�f�Y8�f�2�,)�Ѭr&�Ei9�U�D�hm G�ʚh� �h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh� �h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh� �hVX��,XW G�ʚh� �hVY͢���*�f�Y8�f�sF�$]��*k�Y�6��YeM4��r4���f��@�f�uF�d]��*k�Y�6��YeM4��r4���f��@�f�uF�d]��*k�Y�6��YeM4��r4���f��@�f�uF�d]��*k�Y�6�Y%�,:�Ѭr&�Ei9�5�͒ur4���f��@�f�5�,Z�Ѭ�&�Ek9�5�͒ur4���f��@�f�5�,Z�Ѭ�&�Ek9�5�͒ur4���f��@�f�5�,Z�Ѭ�&�Ek9�5�͒ub4��#�Eg�8�U�D�(m G�ʚh� �h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh� �hVX��,XW G�ʚh� �hVY͢���*k�Y�6��Yc��,Y G�ʚh� �hVY͢���*k�Y�6�Y#M4K��a4��#�Ee�8�U�D�(m G���f�=�h��5 ���%�����o�F��D��#���������_~��ǯD~<�w���.���������������������_��� ��f��w3�u�w3+k��� ��fV�|73Z��ͬ��nf�6����X�w3�u�w3+k2s�6�3seMf��bf��#3Gg�837Ι��trf������@�̕5�9Zș��&3Gk937֙��urf������@�̕5�9Zș��&3Gk937֙��urf������@�̕5�9Zș��&3Gk937֙��urf������@�̕td��,g�ʙ�� ���XgfN�ș��&3Gk93W�d�hm g�ʚ�� ���XgfN�ș��&3Gk93W�d�hm g�ʚ�� ���XgfN�ș��&3Gk93W�d�hm g�ʚ�� ���XgfN�H��rn�9/a��+����X8�̕3�9Jș���3s��@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Zș��&3Gk93W�d�hm f�F�̜����\)Gf���qf����Q�@�̕5�9Zș���̜��3seMf��rf������@�̕5�9Zș���̜��3seMf��rf������@�̕5�9Zș���̜��3seMf��rf������@�̕td��,f�F�̜����\9�������+k2s�6�3seMf��rfn�33'���\Y�������+k2s�6�3seMf��rfn�33'���\Y�������+k2s�6�3seMf��rf.����+�3seMf��rf������@�̕td��,g��93s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Z����������\9����������ɺ�93W�d�hm g�ʚ�� ��\Y����������ɺ�93W�d�hm g�ʚ�� ��\Y����������ɺ�93W�d�hm g�ʚ�� ��\Y����������ɺ�13Wґ���p��+g2s�6�3seMf��rfn�33'���\Y�������+k2s�6�3seMf��rf.����+�3seMf��rf������@�̕5�9Zș���̜��3seMf��rf������@�̕5�9Z����&3'g�03Wʑ���p��+g2s�6�3��lZe��[f~�/����{����|w��pe�=���aD���_��ӗ��~�����M��k�������^�n��x��Ů������/ԇ��R�o���q;ʇ�ˋTn���p;�Q�e�}R��}�L�O��q�[yn�����}�L�O��q�o���IY8n��2�>)ǡ�P�N���J�(铲p��e +}R�|cy> /a��l���8.�2a>)�Y�Q��'e��7�$��,�B9{|P6�k|�L�O��q�o�)�IY8���2>)��P�����(���p��e�{R��{�LzO��qx/���e㸺7�D��,&��8�{^¸�7���d,��B9[{P6�K{�LhO��qfo���IY8n�2�=)ǁ�Pξ����(ד�p��e�zR��z�LVO��qT/���e㸨7���,��F�������(�ғ�p����A�8��p��Iw���FAO�K��F�|����x������+��F�p����l�(S͓�p��e�yR��y���<(ǵ�Q&�'e�8�7ʔ�,w�F�L����H^(g#��q!o� �IY8��2u<)�m�Q&�'e�0��t� ,V��7�x�]�8�7��d,��F����eo�$ٕ^ǾJk$��*T���=#E�&2J�k�;,v��2��6����X;�x8FjP���M��|E�8����q\�eBxR�3x�LO��qo�I�IY8��r��l��F��������(S���pܽe�wR��w���;(�ŻQ&x'e�8w7���,���8Rw^�0t�t��+W�F�ȝ�����(S���pܷe�vR��v��m;(�e�Q&l'e�8k7�T��,7�F������](g���q�n���IY8Nٍ2%;)��Q&c'e�8b���4�����Q&`'e�8_7���,���8�u^�8\�٭��q\�e�uR��u�L�N��q�n���IY8�Յr��l��F�P����L�(S���pܨeuR�u��}:(�u�Q&N'e�8M7ʔ�,w�F�,����(](g���q�n� �IY8�эq��$��q�n�I��X8хrv�lW�F������(S���pܟe�sR��s���9(��Q&<'e�8;7�T�,7�F�䜔���\(go��qmn���IY8N͍2�9)ǝ�Q&3'e�82�٘��qX���Ix ��S���pܖe�rR��r��]9(�U�Q&*'e�8)7��,��F���������Ғ�+��F�������(S���pܐerR�r���8(���Q&'e�87ʔ�,w�F�l����h\ӌ��`X����w �\�S���p܊��*���J��;@(�������>E8��^�B�<�R�~����믟���DZ�������+��Z���_o<t�z�Y�/��5���X6�L�ɺ1nv�Q7����7;����@L��u4�lm V�ʚ��Cgg�3[�����ؙ� ���I�ޙ����Y9�<�tb�쬣zfk�{v�>����>;�h���@���5�3Z ��: +h�6hg4[������ �ZY�B�ub����fk��v�D����D;�h���@���5Y4Z ���:�h�6��h'��hv�h�}4K����&�F��H�YG%��b'��#�fk1�v��J���XK+kri�.@��u�lm 6��:�i�6�ig�4[�崲&�F��x�YG=��b?��#�fk1�v��P���XQ+k2j�.@���kI��k��N���l,���9zj�6�jc�I5YW F��:�j�6�jga5[�i������ ĺZY�W�ub`����fk��v�Y����Y;����@,��5�5Z ���:jk�6{kg�5[�ɵ��暭 ��ZIGv���Qx�[y���a{�#�fi1�v��_���X`+kl�.@���uT�lm v��:Bl�6Slg-6[�5��&�F�� �YG���b���#�fk1�v��e���Xf+k�l�.@���u��lm ���:m�6�m'�mv�*m��6*���s�R�� �V�YG���b�����fk��V�$�h]�m;먶��@춝u��lm ���:�m�6�meM���������� Ć�YG���b�����fk��6֙r�ub�����fk��v�t����t;��t��pXu+g�n�.@��u��lm ���:�n�6�ng}7[����&�F����YG���b���#�fk1�v��z���X{+kro�.@��u�lm 6��:�o�6�og�7[�已&�F����YG���R���[����agi�W�d�h]��;�(���@l��u��lm ���:zp�6�peM���Q���*�� �.�YG��b gk�W���h]��;�(���@lĝuD�lm f��::q�6KqeM*��H���n�8;���s�`�� �d�YG3��b5����Ѻ�1w�Q����؎;����@�ǝu��lm ��:r��@�ȝuT�lm v��:Br�6Srg-9[�5��&'G�Ġ�YGQ��bS�#*gk1+w�ѕ���T�+�H���8�˝r��YY8�˝s�,m &�M�Ɯ���3ׯ�_��{|����c +_G~�_�zt�{������x&�l����Է��������?��ϯ���������W�?�����W�~ٞ^v����p�t�5���{����7��"�߈���w�+k����Y���������Κ�6�W�5+hm ��eE��+�W�5+hm �(kV��@^P֬����"`�sE���W�5+hm �(kV��@\Pұ"����q��.@^P֬����"��Y@kyE@Y�"����.@^P֬����"��Y@kyE@Y�"����.@^P֬����"��Y@kyE@Y�"����.@^P֬����"��cE�����̊�J�+�:WȺ�yE@Y�"��fE�� �e͊�Z�+�:WȺ�yE@Y�"��fE�� �e͊�Z�+�:WȺ�yE@Y�"��fE�� �e͊�Z�+�:WȺ�iE@9�4^�pE@ NJ��+ʙ�6�W���"���+ʚ�6�W�5+hm �(kV��@^0ֹ"@��+ʚ�6�W�5+hm �(kV��@^0ֹ"@��+ʚ�6�W�5+hm �(kV��@\0Ҭ��q�"��cE�����̊�J�+ʚ�6�W�u��ufE�� �e͊�Z�+ʚ�6�W�u��ufE�� �e͊�Z�+ʚ�6�W�u��ufE�� �e͊�Z�+J:V�Y8\0ʬ��q�"��Y@iyE@Y�"��fE�� �c�+d]��"��Y@kyE@Y�"��fE�� �c�+d]��"��Y@kyE@Y�"��fE�� �a���ufE�� �e͊�Z�+J:V�Y8^0ι"@��+ʚ�6�W�5+hm �(kV��@^0ֹ"@��+ʚ�6�W�5+hm �(kV��@^0ֹ"@��+ʚ�6�W�5+hm �(kV��@^0ֹ"@��+ʚ�6W�t���p�"��Y@iyE�X��Y �(kV��@^P֬����"��Y@kyE�X��Y �(kV��@^P֬����"��Y@kyE�X��Y �(kV��@^P֬����"��Y@kyE�X��Y �(�X@g�xE@9�"��fE�� �c�+d]��"��Y@kyE@Y�"��fE�� �a���ufE�� �e͊�Z�+ʚ�6�W�u��ufE�� �e͊�Z�+ʚ�6W�4+�l�(�X@e�xE@9�"������W�=����x��]����e��/�Y|�/����c���������O�������~y�>m��������y�nƤ�I��s?&}���trL���I��@�I�51)Z�1��&&Ek9&5���urL���I��@�I�51)Z�1��&&Ek9&5���urL���I��@�I�51)Z�1��&&Ek9&5���urL���I��@�I�tĤ�,Ǥʙ�� ��XgLJ��1��&&Ek9&U�Ĥhm Ǥʚ�� ��XgLJ��1��&&Ek9&U�Ĥhm Ǥʚ�� ��XgLJ��1��&&Ek9&U�Ĥhm Ǥʚ�� ��XgLJ�H1�rn1)�a�*�I�X8�I�31)J�1��^bR��@�I�51)Z�1��&&Ek9&U�Ĥhm Ǥ�:cR�.@�I�51)Z�1��&&Ek9&U�Ĥhm Ǥ�:cR�.@�I�51)Z�1��&&Ek9&U�Ĥhm ƤF�����ØT)GL���qL���IQ�@�I�51)Z�1��Θ���cReML��rL���I��@�I�51)Z�1��Θ���cReML��rL���I��@�I�51)Z�1��Θ���cReML��rL���I��@�I�tĤ�,ƤF������T9�����*kbR�6�cReML��rLj�3&%��TY�����*kbR�6�cReML��rLj�3&%��TY�����*kbR�6�cReML��rL*����+�cReML��rL���I��@�I�tĤ�,Ǥ�9cR�.@�I�51)Z�1��&&Ek9&U�Ĥhm Ǥ�:cR�.@�I�51)Z�1��&&Ek9&U�Ĥhm Ǥ�:cR�.@�I�51)Z�1��&&Ek9&U�Ĥhm Ǥ�:cR�.@�I�51)Z�1�������T9������Iɺ�9&U�Ĥhm Ǥʚ�� �TY������Iɺ�9&U�Ĥhm Ǥʚ�� �TY������Iɺ�9&U�Ĥhm Ǥʚ�� �TY������Iɺ�1&U����p�*gbR�6�cReML��rLj�3&%��TY�����*kbR�6�cReML��rL*����+�cReML��rL���I��@�I�51)Z�1��Θ���cReML��rL���I��@�I�51)Z�1��&&%g�0&U����p�*gbR�6�cR*"EL��ŤW�1��{,1��FL��}�/Ƥ��ލ��?���n���"���%���^I:�m^s~���k�����o�%��o�U�|�,Z��6����Y�6�mVIG ���q l�3&��@XY���+ka�6�aeM ��r l�3&��@XY���+ka�6�aeM ��r l�3&��@XY���+ka�6�aeM ��r l�3&��@XY���+���Y8��3�0Jȁ���@���aeM ��r �� ���@��5�0Zȁ���@���aeM ��r �� ���@��5�0Zȁ���@���aeM ��r �� ���@��5�0Zȁ���@���a��a4^�0V���p+ga�6�aa��`]�+ka�6�aeM ��r �� ���@��u�d]�+ka�6�aeM ��r �� ���@��u�d]�+ka�6�aeM ��r �� ���@��4�09���R�@���@X9���+ka�6�ac��0Y �ʚ@� �@XY���+ka�6�ac��0Y �ʚ@� �@XY���+ka�6�ac��0Y �ʚ@� �@XY���+���Y8��2�0)ǁ�r&Fi9V��hm �ʚ@� �@�Xg L�ȁ��&Fk9V��hm �ʚ@� �@�Xg L�ȁ��&Fk9V��hm �ʚ@� �@XX/�0XW �ʚ@� �@XY���+���Y8��s�$]�+ka�6�aeM ��r �� ���@��u�d]�+ka�6�aeM ��r �� ���@��u�d]�+ka�6�aeM ��r �� ���@��u�d]�+ka�6a%�0:ǁ�r&Fi96��ur �� ���@��5�0Zȁ��&Fk96��ur �� ���@��5�0Zȁ��&Fk96��ur �� ���@��5�0Zȁ��&Fk96��ub ��#Fg�8V��(m �ʚ@� �@�Xg L�ȁ��&Fk9V��hm �ʚ@� �@XX/�0XW �ʚ@� �@XY���+ka�6�ac��0Y �ʚ@� �@XY���+ka�6a#M L��a ��#Fe�8V��(m ���@�c��^�����������'��33>�@�_^��_~��ӏ������_���p�__������_�������?�����������������GޞE� +ܱ�O�Giݞ�am����ߊ��P�����XG���)���@.��u�d]�\|+k�o�6��oeM��b�Fg��6�Y|�tr�)���@.��5�7Z�ŷ���Fk��6�Y|�ur�)���@.��5�7Z�ŷ���Fk��6�Y|�ur�)���@.��5�7Z�ŷ���Fk��6�Y|�ur�)���@,��t��,�ʙ�� ���Xg�M��ŷ���Fk��V��hm �ʚ�� ���Xg�M��ŷ���Fk��V��hm �ʚ�� ���Xg�M��ŷ���Fk��V��hm �ʚ�� ���Xg�M�Hŷrn�7�aX|+�(��X8.��3�7J�ŷ�^�o��@.��5�7Z�ŷ���Fk��V��hm ��:�o�.@.��5�7Z�ŷ���Fk��V��hm ��:�o�.@.��5�7Z�ŷ���Fk��V��hm �F�⛜���[)G���q�)�Q�@.��5�7Z�ŷ��⛬��oeM��r�)���@.��5�7Z�ŷ��⛬��oeM��r�)���@.��5�7Z�ŷ��⛬��oeM��r�)���@,��t��,�F�⛔���[9S|���\|+k�o�6��oeM��r�m���&���[YS|���\|+k�o�6��oeM��r�m���&���[YS|���\|+k�o�6��oeM��r�-����+��oeM��r�)���@,��t��,��9�o�.@.��5�7Z�ŷ���Fk��V��hm ��:�o�.@.��5�7Z�ŷ���Fk��V��hm ��:�o�.@.��5�7Z�ŷ���Fk��V��hm ��:�o�.@.��5�7Z�ŷ�������[9S|���\|�,�ɺ���V��hm �ʚ�� ��[YS|���\|�,�ɺ���V��hm �ʚ�� ��[YS|���\|�,�ɺ���V��hm �ʚ�� ��[YS|���\|�,�ɺ���V�Q|��p\|+g�o�6��oeM��r�m���&���[YS|���\|+k�o�6��oeM��r�-����+��oeM��r�)���@.��5�7Z�ŷ��⛬��oeM��r�)���@.��5�7Z�ŷ���&g��V�Q|��p\|+g�o�6�����Y��[�}�O����{|����c��_��}���w���q�tz<~�B�<2z�㨽����~���_�?���_������?|���~������o��{��V�����=�����h���@n΅�Ҝ�urs��i���@nΕ5�9Z���9Gk�97�ٜ�urs��i���@nΕ5�9Z���������8gsN����9Gk�9W�4�hm 7�ʚ�� ���XgsN����9Gk�9W�4�hm 7�ʚ�� ���XgsN����9Gk�9W�4�hm 7�ʚ�� ���XgsN����9Gk�9W�ќ��pܜ+g�s�6��sc��9Y 7�ʚ�� ��\YӜ���ܜ+k�s�6��sc��9Y 7�ʚ�� ��\YӜ���ܜ+k�s�6��sc��9Y 7�ʚ�� ��\YӜ���ܜ+k�s�6��sc��9Y 5�ʹ5�h��as���9Gc�9W�4�(m 7��zi����9W�4�hm 7�ʚ�� ��\YӜ���ܜ�l�ɺ��9W�4�hm 7�ʚ�� ��\YӜ���ܜ�l�ɺ��9W�4�hm 7�ʚ�� ��\YӜ���i�sr6�s��9*�r�9Gi�9W�4�hm 7��:�s�.@nΕ5�9Z���9Gk�9W�4�hm 7��:�s�.@nΕ5�9Z���9Gk�9W�4�hm 7��:�s�.@nΕ5�9Z���9Gk�9W�ќ��pe�sR6��s�Ls��rs��i���@nΕ5�9Z���本��seMs��rs��i���@nΕ5�9Z���本��seMs��rs��i���@nΕ5�9Z��^�s��@nΕ5�9Z���9Gk�9W�ќ��pܜ�l�I���9W�4�hm 7�ʚ�� ��\YӜ���ܜ�l�ɺ��9W�4�hm 7�ʚ�� ��\YӜ���ܜ�l�ɺ��9W�4�hm 7�ʚ�� ��\YӜ���ܜ�l�ɺ��9W�4�hm 6�J:�st��s�Ls��rsn��9'���\YӜ���ܜ+k�s�6��seMs��rsn��9'���\YӜ���ܜ+k�s�6��seMs��rsn��9'���\YӜ���ܜ+k�s�6��seMs��rsn��9'���\IGs���qs��i�Q�@nΕ5�9Z���本��seMs��rs��i���@nΕ5�9Z��^�s��@nΕ5�9Z���9Gk�9W�4�hm 7��:�s�.@nΕ5�9Z���9Gk�9W�4�hm 6�F�朜���\)Gs���qs��i�Q�@n���i՜�{l���k@s����[���ͺ?�o���|��װ���d�o�`���J=?�~����p��^�#W��>.>������;| �ec�v����'��ee�v�χ��;��ee�v���������QT6nGy:<=I��(+��F�AR���2k�,o!�V^������2;�,� eFHY8�@0�, ��p� �s���������)��F��Rg�q���ƛB8'��8<0����p�v`�; e�x��(�t@���PΙP6�G�2�,/eHY8�70ʬ��p�m �s�����a�̮)ǫF�QR�' �2��,��3�e�x��(�e@��ᒁ1�!^�x���b@���P� P6��2��,�e�HY8�.0�,��p�[ �s��������f)NjF��R�� +�2k�,o�*�e�x��(�S@���J�Qf�������B)��B9� @�8'0�m��tW(\&0�1L@�k�aV �X8�$���L�+e�HY8^#0ʌ��p<E`�Y" e�x�@(�(�#F� R��2�,�e�HY8��9=������Qfw���������)ǓF��R��1s ,� �� �5���0Cd,�eVHY8��91������Qf_����u�̸�)��F�eR�w�r� +��q<*`�� e�xQ�(3(@���QfM����-��S�l evHY8^0ʌ��p8!`�cA���0�����`<`�� c�x9�(3@���l�Qf5����������le�HY8^0ʌ��p<`�Y + e�x'@(�L�(�#F���R��2�,�e�HY8����L�+evHY8^0ʌ��p8 `�c���0��9�����Qf����%����)�3�F��R�7��rN���q<�`���IY8���2�?)��Q��'e��ʙ���q�e�R���L�O��q�o���IY8n��r���l��F�Ο�����G�O�k'�F����_(g���q�o�i�IY8.��2a?)�Y�Q��'e��ʙ�q�ez~R�k~�L�O��q�o�)�IY8���rf��lG�F�������(�p��e�}R��}���>(��1�n���0���0�>�ɾQ��'e��ʙ냲q�eZ}R�K}�L�O��q�o���IY8n�o+/���r�q�o���IY8��2q>)�i�Q��'e��ʙ僲q�e�|R��|�L�O��q�o���IY8l�1)>�!���|�0���0>� >t�������;@��K~w#��t�x��~<3��~���o���~o���x����6�~��I�����_>z��۳7� ܉�u�#���9�kʙ��6��5�hm o(kF��@�0ֹ;@���ʚ��6���5�hm �(k��@� ��XW �(kf��@"P�,����E��#@ky��X�Y /(k& ��@%P֬����K��c�����i��$]��N���'@ky�@Y�P���F��f��� �c�;d]��T���*@ky�@Y�V���^��f��� ��c��d]��Z���-@ky�@Y�\���v��f��� ��c��d]��`���0@kq�@INJ:�;ʙ!�6���un�uf��� �Ae͢ZțʚQ�6�g �u��uf��� �qeͺZ��ʚ��6�'�un�u�ʁ�f��� �e��Z�[ʚ��6���u��u��rn�h������4�w�3�(m O�e���+���5�hm (k��@�@P ���<�`�s�����5Shm �!(k���@�CP�"���<�`�s���W�5�hm #(k���@�FP#���8�`��G g�p!A)�D*�# ʙ��6�w�5C hm O%��J ��e�\Zȃ ʚ��6�7�5� hm �&��M ���e�tZ�� ʚ��6���5 +hm O(��P ��e͌Z�C +ʚ%�6��t�)��p8�`��S e�xQA93���fU� �]eͰZ�� +�:�Ⱥ�y]AY3�������fa� �e��Z�3�:wȺ�yiAY3�����fm� �e��Zȓ�z�\�� +��e��Z��ʚ��6��t�/��p<�`�s����5hm �0(kV��@�aP�1���<�`�s������5shm 2(k��@�dP2���<�`�s������5�hm �3(k���@�gP�4���<�`�s����W�53 hm 5(�Xj@g�x�A93ր��\��ν�.@^lP�L6���<ڠ�Ym@ky�AY3܀��t�����.@^oP��7���<ࠬYp@ky�AY3����.@^rP�L9���<栬Ys@ky�AY3���M�.@\uP�1����rf�� �meZ���:�Ⱥ�y�AY3���ȃ�f�� �e��Z�S�z�z�� +�e��Zȃʚ��6�7�5�hm �>��} ���e��Z��ʚ��6���5hm N@i6 ��8\�P�1�����rf � �-�8c����k<=��A��8�ܟ�5{oF��9ܿ�>|�r<����qQ=�3W{�,B�����/?~G�o=����W��}���ǝ_�YOѫ��Wݭ�>x��z�� �zJYSO�ub=嬣�bk��rҭ�bgᰞr�QO���XO)k�)�.@���u�Slm �S�:�)�6�)g�[������B��z�YG=��b=嬣�bk��r�QO���XO)k�)�.@���u�Slm �S�:�)�6�)g�[������B��z�9��Sl��Q=�[=���a=圣�bi��2�YO�ub=嬣�bk��r�QO���XO9먧��@���5�Z �S�:�)�6�)g�[�����z�� �zJYSO�ub=嬣�bk��r�QO���XO9먧��@���t�S�l�SN��S�,�S�9�)�6�)g�[������B��z�YG=��b=嬣�bk��r�QO���XO)k�)�.@���u�Slm �S�:�)�6�)g�[������B��z�YG=��b=嬣�bk��rҭ�bg᨞R�QO��qXO9稧X�@���u�Slm �S�:�)�6�)eM=�������z�� �z�YG=��b=嬣�bk��R��Sh]�XO9먧��@���u�Slm �S�:�)�6�)c��YW �S�:�)�6�)g�[H���n�;���r��B��z�YG=��b=嬣�bk��r�QO���XO)k�)�.@���u�Slm �S�:�)�6�)g�[������B��z�YG=��b=嬣�bk��r�QO���XO)k�)�.@���u�Slm �SN��S�,�S�9�)�6�)eM=�������z�� �z�YG=��b=嬣�bk��R��Sh]�XO9먧��@���u�Slm �S�:�)�6�)eM=�������z�� �z�YG=��b=嬣�bk��R��Sh]�TO9�VO��pXO9稧X�@���u�Slm �Sʚz +��)g�[�����z�� �z�YG=��b=e���"� +�z�YG=��b=嬣�bk��r�QO���XO)k�)�.@���u�Slm �S�:�)�6�)g�[H����z +���z�)�z����z�9G=��b=����=�>s�����RO�ݨ������z�zj<sUO�}XO���o��������_?o��O������zz<<<_�����|�����j��ß�<���S�?��"pZO�ȧ�ʚ�z�6�O�5��hm ��+kN���@>�7�yZO�H��ʹ�֣����J8N��X8>�WΜ֣��|Z/���z��@>�W֣֜��|Z��9�Gk��^YsZ���i����z�.@>�W֣֜��|Z��9�Gk��^YsZ���i����z�.@>�W֣֜��|Z��9�Gk��^YsZ���i��洞����z����,��+gN�Q�@>�W֣֜��|Zo��O�5��hm ��+kN���@>�W֣֜��|Zo��O�5��hm ��+kN���@>�W֣֜��|Zo��O�5��hm ��+kN���@<�W�qZ����i�Q洞����z��i=Jȧ�ʚ�z�6�O�5��hm ���<�'���ze�i=Zȧ�ʚ�z�6�O�5��hm ���<�'���ze�i=Zȧ�ʚ�z�6�O�5��hm �����+�O�5��hm ��+kN���@<�W�qZ����i�q��z�.@>�W֣֜��|Z��9�Gk��^YsZ���i����z�.@>�W֣֜��|Z��9�Gk��^YsZ���i����z�.@>�W֣֜��|Z��9�Gk��^YsZ���i����z�.@>�W֣֜��xZ�������z��i=Jȧ��:O�ɺ���^YsZ���i���� ��ze�i=Zȧ��:O�ɺ���^YsZ���i���� ��ze�i=Zȧ��:O�ɺ���^YsZ���i���� ��ze�i=Zȧ��:O�ɺ��^I�i=:ǧ�ʙ�z�6�O�5��hm ���<�'���ze�i=Zȧ�ʚ�z�6�O�5��hm �����+�O�5��hm ��+kN���@>�W֣֜��|Zo��O�5��hm ��+kN���@>�W֣֜��xZo�9�'g��^)�i=*ǧ�ʙ�z�6�O�����i=��vZ�OO������������)|1��w�ǯ�@o�3�����3yd������ݻk���������+���w��_����p��o�����{��y�U/�LJ����-g�v������tn�ސ6p��|x������~l}8����u<���c=���ͷ�n�ް6p�z�1�u{����;����`KY�goX����x8���ocϲu�XO��gkݞ�am����pz���ް6p��|x~�7�ʺ={�����O�Ã��gٺ�w�������n�ް6p�z�1�^�u{����;����Z�goX�����c��eg�v���Q��3��!m����3�d�۳7� ܱ>�^���� k?��w��7��,[���txz������Xw���� kw��Ã� g<{������O�ý��Y������pz������X�?��'iݞ�am����c8Z��� k?���Ɵ�osy��p�z:<��H��� kw��|������X�����7���Xyw<��o8y��p�z�<Z��� kw���Ý�n�ް6p�z�)ܟ�u{����[O��IZdzl]�;����^Z�goX�c}B���goX�c=�>Y��� kw�t�x�$��O�e�ܱ���7��� kw��[x�5_�����*k��� ��5����d]����ʚ��Ek�k}�t|�/:�_뫜�Z_�6����X����u���*k��� ��U�|�/Z�_뫬�Z_�6����X����u���*k��� ��U�|�/Z�_뫬�Bky{�X��Y o)k����@�R�l����=���Bky{�X��Y m)�=��kn)��Bc�x{H9�=������^����y{HY�=������f{� ��!e��Z��C�:��Ⱥ�y{HY�=������f{� ��!e��Z��C�:��Ⱥ�y{HY�=������f{� ��!e��Z��CF��!r6���rl��p�=���Biy{HY�=��������!�.@�R�l����=���Bky{HY�=��������!�.@�R�l����=���Bky{HY�=��������!�.@�R�l����=���Bkq{HI��:��CF��!R6����3�C(m o)k����@�R�l����=d�s{������5�Chm o)k����@�R�l����=d�s{������5�Chm o)k����@�R�l����=$���!��@�R�l����=���Bkq{HI��:��C�9��H��y{HY�=������f{� ��!e��Z��C�:��Ⱥ�y{HY�=������f{� ��!e��Z��C�:��Ⱥ�y{HY�=������f{� ��!e��Z��C�:��Ⱥ�y{HY�=��������!t����3�C(m o��"���!e��Z��Cʚ�!�6����5�Chm o��"���!e��Z��Cʚ�!�6����5�Chm o��"���!e��Z��Cʚ�!�6����5�Chm o��"���!%�C�,o)g��P�@�R�l����=d�s{������5�Chm o)k����@�R�l����=$���!��@�R�l����=���Bky{HY�=��������!�.@�R�l����=���Bky{HY�=������f{�����!��C�,o)g��P�@���Q�C�����k����{������7=�������������|�m���o�\���^���Y��1�bs2����'cLƠ��<����Aky2�X�dY O�(k&c��@��Q�LƠ��<����Aky2�X�dY O�(k&c��@��Q�LƠ��<����Akq2�H3C���d�rf2� ��e�dZȓ1ʚ��6�'c�uNƐu�d��f2� ��e�dZȓ1ʚ��6�'c��2�ȓ1ʚ��6�'c�5�1hm O�(k&c��@��1�9C�ȓ1ʚ��6�'c�5�1hm N�(阌Ag�x2�8�dI O�(k&c��@��Q�LƠ��<����Aky2�X�dY O�(k&c��@��Q�LƠ��<����Aky2�X�dY O�(k&c��@��Q�LƠ��<����Aky2�X�dY O�(k&c��@��Q�1����d�rf2� ��c��1d]�<����Aky2FY3���d��f2� ��c��1d]�<����Aky2FY3���d��f2� ��c��1d]�<����Aky2FY3���d��f2� ��c��1d]�4���d�a8��c2������dJȓ1�z��� +��e�dZȓ1ʚ��6�'c�5�1hm O�뜌!���e�dZȓ1ʚ��6�'c�5�1hm O�뜌!���e�dZȓ1ʚ��6�'c�5�1hm N�i&c��8��Q�1����d�rf2� ��e�dZȓ1�:'cȺ�y2FY3���d��f2� ��e�dZȓ1�:'cȺ�y2FY3���d��f2� ��e�dZȓ1�:'cȺ�y2FY3���d��f2� ��%�1�,N�e&cH�8��Q�LƠ��<����Aky2FY3���d�����.@��Q�LƠ��<����Aky2FY3���d�����.@��Q�LƠ��<����Aky2FY3���d��^&c��y2FY3���d��f2� ��%�1�,O�県!���e�dZȓ1ʚ��6�'c�5�1hm O�뜌!���e�dZȓ1ʚ��6�'c�5�1hm O�뜌!���e�dZȓ1ʚ��6�'c�5�1hm O�뜌!���e�dZ��1J:&c�Y8��Q�LƠ��<c�s2���'c�5�1hm O�(k&c��@��Q�LƠ��<c�s2���'c�5�1hm O�(k&c��@��Q�LƠ��<c�s2���'c�5�1hm O�(k&c��@��Q�LƠ��<c�s2��'c�tLƠ�p<����Aiy2FY3���d�����.@��Q�LƠ��<����Aky2FY3���d��^&c��y2FY3���d��f2� ��e�dZȓ1�:'cȺ�y2FY3���d��f2� ��e�dZ��1F��r6'c�rLƠ�p<����Aiy2��P�d��6s�0������|������b�>�f9�����F���߶?.��Cyf���l̿~�������o�����������/���_��ǽ_�KZO�����5����/i=Z�i��&�Gk9�W֤�hm ���zI���9�W֤�hm ��ʚ�� �^Y�֣�����L�ɺ�9�W֤�hm ��ʚ�� Ĵ^IGZ���qZo�3�'��^Y�֣����+k�z�6��zeMZ��rZo�3�'��^Y�֣����+k�z�6��zeMZ��rZo�3�'��^Y�֣����+k�z�6��zeMZ��rZo�3�'��^Y�֣����+�H��Y8N�3i=J�i��δ����zeMZ��rZ��I���@N�5i=Z�i��δ����zeMZ��rZ��I���@N�5i=Z�i��δ����zeMZ��rZ��I���@N�5i=Z�i��δ����z���z4^�0�W֣�p��+g�z�6��za���`]���+k�z�6��zeMZ��rZ��I���@N�u��d]���+k�z�6��zeMZ��rZ��I���@N�u��d]���+k�z�6��zeMZ��rZ��I���@L�4i=9�i�R�����^9�֣����+k�z�6��zc�i=Y ��ʚ�� �^Y�֣����+k�z�6��zc�i=Y ��ʚ�� �^Y�֣����+k�z�6��zc�i=Y ��ʚ�� �^Y�֣����+�H��Y8L�2i=)�i�r&�Gi9�W֤�hm ��ʚ�� ��XgZO��i��&�Gk9�W֤�hm ��ʚ�� ��XgZO��i��&�Gk9�W֤�hm ��ʚ�� �^X/i=XW ��ʚ�� �^Y�֣����+�H��Y8N�s��$]���+k�z�6��zeMZ��rZ��I���@N�u��d]���+k�z�6��zeMZ��rZ��I���@N�u��d]���+k�z�6��zeMZ��rZ��I���@N�u��d]���+k�z�6�z%i=:�i�r&�Gi9�7֙֓urZ��I���@N�5i=Z�i��&�Gk9�7֙֓urZ��I���@N�5i=Z�i��&�Gk9�7֙֓urZ��I���@N�5i=Z�i��&�Gk9�7֙֓ubZ��#�Gg�8�WΤ�(m ��ʚ�� ��XgZO��i��&�Gk9�W֤�hm ��ʚ�� �^X/i=XW ��ʚ�� �^Y�֣����+k�z�6��zc�i=Y ��ʚ�� �^Y�֣����+k�z�6�z#MZO��aZ��#�Ge�8�WΤ�(m �������cK�^��y7���%�?�H��O\�o�̰�n�����/?~�������_����Ք�� ����tz��u�����9���k�ו���JR��J�LYI��qW)�3�e�8�4�4��,�F�������(SS��p�R +�L)A�8)�2%)��Q&�$e�8�4���,��B9�IP6��I�L;I��a9i�#�$�5��I#L5I��q3)�3�e�8�4����,גF�X����T�(SJ��p�I +��$A�8�$�2�$)Dž�Q&�$e�8�4�ԑ�,��B9�HP6��H�LI��qi��"IY8N"�2E$)�=�P�������tW(,!�m�����qi�� �X8n o+/ �r�q�i��IY8��2�#)��Q�|$e�{ʙ=��q=e�GR��G�L�H��q�h��IY8n�r���l��F�Α�����(9��p�8e +GR�FaL�a�h|�m$�5��F#L�H��q�h��IY8n�r&��l�F�������(3��p�2eJFR�;F��#(��Q�a$e�`4���,�F�z����vQ(g���q�h��IY8��2�")�ɢ1�b���0��/�"� +Ʊ��U$c�T4ʄ��,g�F�J����FQ(g���q�h��IY8��2q")�i�Q�L$e�Kʙ%��q%e�DR��D�L�H��q�h��IY8no+/)�r�q�h��IY8��2")� �1����0��p�`lLJF��������(��p�e�CR��C���!(���Q�7$e�64�Ć�,��F�Ґ����P(gf��qdh�iIY8.�2�!)�y�Q�.$e�-ʙ��qe�BR�BcQ! �a�a�B2�{B��9!(�1�Q�%$e�$4ʄ��,g�F������P(gB��q@h��IY8��2� )��Q�$e�ʙ ��q e�AR��A�L0H��q.h��IY8n�r���l���8:A^ø4�D�d,'�F�B����>P(g��qh�iIY8.�2a )�Y�Q� +$e� ���$����A�Q�$e�4�Ā�,��F�����P(g��qh�i�IY8.��2 )���Q��#e��Ƥ ,��7�?�]ø�3�Dd,'P���^b�.�����K��o�=�O���o<3���G������/�������O\��_���_�v��|u$�g�:��5��:��k�WG�t�WG*k�F�6��FeM݈�rߨ� ��@N�u6�d]�\9*k2G�6�CGeM��r먬���@��u��d]�\<*k�G�6��GeM���r��� ��@N�u��d]�\?*k�G�6H%$:� �r&�Di9�4��A�ur ��I!��@�!�55$Z�=��&�Dk9�4��D�ur���"��@#�5e$Z�m��&�Dk9�4��G�ur!��I$��@�$�5�$Zȝ��&�Dk9�4��J�uR-��[.��k�J8�I4��I�L4��r6)��n�+��IeM:��r<���'��@�'�5%Z� ��Ά���+JeMF��rH��))��@n)�51%Z�9��Ξ����JeMR��rT���*��@�*�5a%Z�i����$g㰮TʑW��pX*g +K�6�KeMd��rfi���$���RY�Z���[*kjK�6�{KeMp��rri���$���RY�]���^*k�K�6��KeM|��r~i���$��SY�`���a*k*L�6;L%!&:�)�Q��$e��T��(m �ʚ"� �&SYe����e��2ɺ���T֤�hm Ǚʚ:� �>SYh����h�l4ɺ���T�d�hm ��ʚR� �VSYk����k +��� +�bSY�l���m*k�M�6�M%�&:��q�v����MeM���r���)8��@n8�5'Z���Ύ���KNeMʉ�r̩��9��@�9�5A'Z�I��Φ����NeM։�rة�);��@n;�5q'Z�y��ξ���OeM��b䩤��Dg��T΄�(m ���:[O�.@�=�5�'Z������Dk��T�D�hm g��:�O�.@.?�5�'Z��Dk��T��hm '��:P�.@�@�5(Z�!���Ek�U�Ġhm ��:{P�.@,B�t$��,G�ʙ*� �.TY�������lCɺ��U��hm �ʚB� �FTY������ +�� +�RTY������*kjQ�6�{QeM0��r2j��%��jTY������*k�Q�6��QeM<��b>j��G��8,H�r$��,G�ʙ�� 䎔�H��{l%��k<�즤���;�:������[���lI�GK�����}���3'���=?}��o?o������wԥ����ۿ躨��Z>��~�����g%w�������J� �J�Xg%G�ȕ����Ck��S�Trhm WrʚJ� �J�Xg%G�ȕ����Ck��S�Qɡ�p\�)g*9�6�+9c��Y WrʚJ� �JNYSɡ��\�)k*9�6�+9c��Y WrʚJ� �JNYSɡ��\�)k*9�6�+9c��Y WrʚJ� �JNYSɡ��\�)k*9�6�+9c��Y UrʹUrh��a%����CcḒS�Tr(m Wr�z������S�Trhm WrʚJ� �JNYSɡ��\���Ⱥ���S�Trhm WrʚJ� �JNYSɡ��\���Ⱥ���S�Trhm WrʚJ� �JNYSɡ��X�i*9r6+9��*Ǖ�r��Ci��S�Trhm Wr�:+9�.@��5�Zȕ����Ck��S�Trhm Wr�:+9�.@��5�Zȕ����Ck��S�Trhm Wr�:+9�.@��5�Zȕ����Ck��S�Qɡ�pX�e*9R6�+9�L%��r%������@��5�Zȕ���J���+9eM%��r%������@��5�Zȕ���J���+9eM%��r%������@��5�Zȕ��^*9��@��5�Zȕ����Ck��S�Qɡ�p\���H����S�Trhm WrʚJ� �JNYSɡ��\���Ⱥ���S�Trhm WrʚJ� �JNYSɡ��\���Ⱥ���S�Trhm WrʚJ� �JNYSɡ��\���Ⱥ���S�Trhm VrJ:*9t�+9�L%��r%g���#��JNYSɡ��\�)k*9�6�+9eM%��r%g���#��JNYSɡ��\�)k*9�6�+9eM%��r%g���#��JNYSɡ��\�)k*9�6�+9eM%��r%g���#��JNIG%���q%����P�@��5�Zȕ���J���+9eM%��r%������@��5�Zȕ��^*9��@��5�Zȕ����Ck��S�Trhm Wr�:+9�.@��5�Zȕ����Ck��S�Trhm VrF�J����JN)G%���q%����P�@������V�]����Jn�=��x������_�������y:���to�^}��/t����x&����?�<�_����?���������?��o_>}���?|���?>~���\ ח:N�ǝ_������������7>����������={��������(�۳7� ܱ>���u{����[���9=H�x��p�z�1�?K��� kw����EZ�goX�c=��u{����[��?�;'�eg�v����(�۳7� ܱ���u{����;���Ӌ��ݞ�am��֗�������gٺ�w���ӓ�n�ް6p�z����^Z�goX�c=��o8���~\�|:��5Ϣu�X�?�ӣ�n�ް6p�z�1�=I��� kw����Z�goX���x�1|r���Y�.������"�۳7� ܱ>��ֺ={�������v�����Y8�:p��ׁ�t�ׁ;��:p�6��Y�ׁ����u��:��� įW�|8Z ~����gk����u����8t�c脭 ġe�� Z �8�:akq��Y�� [�C'�:�N��@:Q���u�Љ����6��N�t:ag�p��9�� K�C'ʚ��.@:q�1t���Љ����6�N�u����8t��:A�ġgC'lm �8�:akq��Y�� [�C'ʚ��.@:q�1t���Љ����6�N�u����8t��:A�����:t��k �8�6t����Љs���6�N�u��u�Љ����6�N�u����8t�c脭 ġe�� Z �8�:akq��Y�� [�C'�:�N��@:Q���u�Љ����6�N�u����8t�c脭 ��%C'�l �8�6t����Љs���6�N�u����8t��:A�ġgC'lm �8�:akq��Y�� [�C'ʚ��.@:q�1t���Љ����6�N�u����8t��:A�ġgC'lm �8�:aki��I��v��N�r���q8t�c脥 ġgC'lm �8�:akq�DY3t���C'�:�N��@:q�1t���Љ����6�N�5C'h]�8t�c脭 ġgC'lm �8�:akq��X�� YW �8�:akq��Y�� [HC'N� ���p8t��:A�ġgC'lm �8�:akq��Y�� [�C'ʚ��.@:q�1t���Љ����6�N�u����8t��:A�ġgC'lm �8�:akq��Y�� [�C'ʚ��.@:q�1t���Љ�nC'�,�8�:aiq�DY3t���C'�:�N��@:q�1t���Љ����6�N�5C'h]�8t�c脭 ġgC'lm �8�:akq�DY3t���C'�:�N��@:q�1t���Љ����6�N�5C'h]�4t��� ;�C'�9�NX�@:q�1t���Љ�f���N�u����8t�c脭 ġgC'lm ��:!� +ġgC'lm �8�:akq��Y�� [�C'ʚ��.@:q�1t���Љ����6�N�u����4t��c������܆NXY8:q�1t���� �t��~���\���qo��c:�㡓���Z:����?f��ۧ�o~�����O�����|��O��})��x��y����_,��M�OO{�&���� +o���_�}l��x�?�>z��۳7� ܱ>^ގn�u{����;�&c��X�~Y ��(k�c��@ޏQ��Ǡ�����ُAky?�X�~Y ��(k�c��@ޏQ��Ǡ�����ُAkq?�H�C���~�rf?� ��e�~Z��1ʚ��6��c�u�ǐu�~��f?� ��e�~Z��1ʚ��6��c������1ʚ��6��c�5�1hm ��(k�c��@ޏ1ֹC���1ʚ��6��c�5�1hm ��(�؏Ag�x?�8�~I ��(k�c��@ޏQ��Ǡ�����ُAky?�X�~Y ��(k�c��@ޏQ��Ǡ�����ُAky?�X�~Y ��(k�c��@ޏQ��Ǡ�����ُAky?�X�~Y ��(k�c��@Qұ����~�rf?� ��c��1d]����ُAky?FY����~��f?� ��c��1d]����ُAky?FY����~��f?� ��c��1d]����ُAky?FY����~��f?� ��c��1d]�����~�a���c?������~J��1�zُ� +��e�~Z��1ʚ��6��c�5�1hm ���!���e�~Z��1ʚ��6��c�5�1hm ���!���e�~Z��1ʚ��6��c�5�1hm ��i�c��8Qʱ����~�rf?� ��e�~Z��1�:�cȺ�y?FY����~��f?� ��e�~Z��1�:�cȺ�y?FY����~��f?� ��e�~Z��1�:�cȺ�y?FY����~��f?� ��%�1�,��e�cH�8ޏQ��Ǡ�����ُAky?FY����~�����.@ޏQ��Ǡ�����ُAky?FY����~�����.@ޏQ��Ǡ�����ُAky?FY����~��^�c��y?FY����~��f?� ��%�1�,���!���e�~Z��1ʚ��6��c�5�1hm ���!���e�~Z��1ʚ��6��c�5�1hm ���!���e�~Z��1ʚ��6��c�5�1hm ���!���e�~Z��1J:�c�Y8ޏQ��Ǡ���c�s?����c�5�1hm ��(k�c��@ޏQ��Ǡ���c�s?����c�5�1hm ��(k�c��@ޏQ��Ǡ���c�s?����c�5�1hm ��(k�c��@ޏQ��Ǡ���c�s?���c�t�Ǡ�p���ُAiy?FY����~�����.@ޏQ��Ǡ�����ُAky?FY����~��^�c��y?FY����~��f?� ��e�~Z��1�:�cȺ�y?FY����~��f?� ��e�~Z��1F��r6�c�r�Ǡ�p���ُAiy?f E���{l�1W�����_����>�1��9���������||�/t����B�<���ǂ������ϟ������/~}?�p�5{�M��x�s��3��B��K�.4����r6��3 (m /4(k��@^hP�,4�����`�s�����5 hm /4(k��@^hP�,4����� �����@^hP�,4����Р�Yh@ky�AY�Ѐ��B��΅�.@^hP�,4����Р�Yh@kq�AI�B:� �9H��y�AY�Ѐ��B��f�� �e�BZ� �:Ⱥ�y�AY�Ѐ��B��f�� �e�BZ� �:Ⱥ�y�AY�Ѐ��B��f�� �e�BZ� �:Ⱥ�y�AY�Ѐ��B����t��3 (m /4�\h ��e�BZ� ʚ��6��5 hm /4�\h ��e�BZ� ʚ��6��5 hm /4�\h ��e�BZ� ʚ��6��5 hm /4�\h ������x Å% h,/4(gP�@^h��BXW /4(k��@^hP�,4����Р�Yh@ky��X�BY /4(k��@^hP�,4����Р�Yh@ky��X�BY /4(k��@^hP�,4����Р�Yh@kq��H��@���B�R��T��3 (m /4(k��@^h0ֹ�@�� ʚ��6��5 hm /4(k��@^h0ֹ�@�� ʚ��6��5 hm /4(k��@^h0ֹ�@�� ʚ��6��5 hm .4(�Xh@g�p��(��@���B�rf�� �e�BZ� ʚ��6��u.4�u�B��f�� �e�BZ� ʚ��6��u.4�u�B��f�� �e�BZ� ʚ��6�������� ʚ��6��5 hm .4(�Xh@g�x��8�BI /4(k��@^hP�,4����Р�Yh@ky��X�BY /4(k��@^hP�,4����Р�Yh@ky��X�BY /4(k��@^hP�,4����Р�Yh@ky��X�BY /4(k��@\hPұЀ���B�rf�� �c� d]��Р�Yh@ky�AY�Ѐ��B��f�� �c� d]��Р�Yh@ky�AY�Ѐ��B��f�� �c� d]��Р�Yh@ky�AY�Ѐ��B��f�� �c� d]��Р�c������BJ� ʚ��6��u.4�u�B��f�� �e�BZ� ʚ��6�������� ʚ��6��5 hm /4(k��@^h0ֹ�@�� ʚ��6��5 hm /4(k��@\h0�,4��q�Р�c������BJ� �kj��c[h�z Xh������_��B����|��3-4�G�������߿�u��}�s���~��_^���LJo^��G_~�������_�y{�ˏ�m��������>o���߽���|����9���M��<<���<\����tޱ]���߱��cCk��Hs�F����R�;6T��ؔ3wl(m ߱)k����@�c3�y�F��wlʚ;6�6��ؔ5wlhm ߱)k����@�c3�y�F��wlʚ;6�6��ؔ5wlhm ߱)k����@�c3�y�F��wlʚ;6�6��ؔ5wlhm ޱ)�cCg����(s�F����r� � �;6e�Z�wlʚ;6�6��،uޱ�u���� � �;6e�Z�wlʚ;6�6��،uޱ�u���� � �;6e�Z�wlʚ;6�6���r���wlʚ;6�6��ؔ5wlhm ޱ)�cCg����8�I ߱)k����@�cS�ܱ���|Ǧ��cCk���X�Y ߱)k����@�cS�ܱ���|Ǧ��cCk���X�Y ߱)k����@�cS�ܱ���|Ǧ��cCk���X�Y ߱)k����@�cS�qdž����r� � �;6c�wld]�|Ǧ��cCk��MYsdž����� � �;6c�wld]�|Ǧ��cCk��MYsdž����� � �;6c�wld]�|Ǧ��cCk��MYsdž����� � �;6c�wld]�xǦ�� ���;6��J�wlʚ;6�6��،uޱ�u���� � �;6e�Z�wlʚ;6�6���r���wlʚ;6�6��ؔ5wlhm ߱)k����@�c3�y�F��wlʚ;6�6��ؔ5wlhm ߱)k����@�c3�ܱ��qxǦ�� ���;6��J�wl��T� �c�c�z �c���w�v�����m<�ݱ���gj?����~x����� �_^�A�ן������v��o��}��_�����?��p�>>~� +��������I������/�������~��~���S��=��>��8��������:��~����(���.��P�;?��G+��8?Z��U��h����G+hm ����h� ďV�t|�����G+�9?Z!��V�5�����ъ���6�?ZQ�|����G+�:?Z!��V�5�����ъ���6�?ZQ�|����G+�:?Z!��V�5�����ъ���6�?ZQ�|����G+�:?Z!��V�5�����ъ���V�Y8�hE9�� +J����h���?ZQ�|����G+ʚ�V��@�hEY�� +Z����h���?ZQ�|����G+ʚ�V��@�hEY�� Z����h���?ZQ�|����G+ʚ�V��@�hEY�� -Z������@�hEY�� -Z��(k>ZAk��e�G+hm �b���.@�hEY�� -Z��(k>ZAk��e�G+hm ~�b��h���ÏV�r|�����G+ʙ�VP�@�h�-��V�=��V�^>Z��壕;�h�}'}�2�>Z�?$���/?����������������_�=~3�~��w?����_Z?�9���_t<��7��O���w��{���;��Or~g�՟��w&���$�6��3IY�Ihm g����L"���LR�|gZ�ߙ��ٚ@kykBY�5���ք�fk���í �[�,oM(g�&P�@ޚP�lM����5a�sk����&�5[hm oM(k�&��@ޚP�lM����5a�sk����&�5[hm oM(k�&��@ޚP�lM����5a�sk����&�5[hm oM(k�&��@ܚPұ5����քQfk���� ���J�[ʚ� �6��&�5[hm oM�ܚ �� e��Z�[ʚ� �6��&�5[hm oM�ܚ �� e��Z�[ʚ� �6��&�5[hm oM�� �+�"�5�hm D*k"��@<�T�q����A�qH�.@>�T�D���|��9�Dk� RYs���A��H�.@>�T�D���|��9�Dk� RYs���A��H�.@>�T�D���|��9�Dk� RYs���A��H�.@>�T�D���x��� ���H��A$J���:"ɺ�� RYs���A��� � �He�A$Z���:"ɺ�� RYs���A��� � �He�A$Z���:"ɺ�� RYs���A��� � �He�A$Z���:"ɺ�� RI�A$:��ʙ�H�6�"�5�hm D�<�$��He�A$Z��ʚ�H�6�"�5�hm D -�� �+�"�5�hm D*k"��@>�T�D���|i�� ���"�5�hm D*k"��@>�T�D���xi�9�$g�� R)�A$*��ʙ�H�6�"�o��A$��vy�/O�������&>����x9�"�A�?��?����O?~���?���Ɨ�����?����������/o;˟�������/ -.��_��r�w�xw�x����k����?�������1���۳7� ���p<���gٺ�w����mY��� kw��ý�~}�p;����t�����~l}<��u<���c=��n6�u{����;��Oᓵn�ް6p��|�+�IZ�goX������/����Y�.���p�d�۳7� ܱn��8��� kw���ã�n�ް6�c����p/��Y�.����pz������X�?�;���x����;���h�۳7� ���r�1|��͍gٺ�w���t�=y�x ��=����Go��|>���op���~|`�������V�gѺw�����Z�goX�c=�NҺ={������p/�۳7� ܉}�?����gٺ�w��~R��Thm �Tʚ� +Z����h��?ZQ��� +:��(g>ZAi��e�G+hm �b���.@�hEY�� +Z��(k>ZAk��e�G+hm �"���V����e�G+hm ����h� �V�5�����ъ�ΏVȺ���e�G+hm ����h� �V�5�����ъ��r6?ZQ��� +*��(g>ZAi�����?Z���>Z�z �he�=��V�������x���xd�h�����ǿ����?v��������o^������X��o����/�~�i��:�i��p<^���?���������L�?���IW��ߙ��E�;���@��$e�w&�����I�:�3����3IY�Ihm g��fk� � e��Z�[F�� r6�&�rlM��p�5��ٚ@iykBY�5���ք�έ �.@ޚP�lM����5��ٚ@kykBY�5���ք�έ �.@ޚP�lM����5��ٚ@kykBY�5���ք�έ �.@ޚP�lM����5��ٚ@kqkBI��:�[F�� R6��&�3[(m oM(k�&��@ޚP�lM����5a�sk����&�5[hm oM(k�&��@ޚP�lM����5a�sk����&�5[hm oM(k�&��@ޚP�lM����5!���H��@>�T�D���|��9�Dk� RI�A$:���9"I��� RYs���A��� � �He�A$Z���:"ɺ�� RYs���A��� � �He�A$Z���:"ɺ�� RYs���A��� � �He�A$Z���:"ɺ�� RYs���A����Ht�"�3�(m D�<�$��He�A$Z��ʚ�H�6�"�5�hm D�<�$��He�A$Z��ʚ�H�6�"�5�hm D�<�$��He�A$Z��ʚ�H�6�"�5�hm D�<�$�ăH%��,D*g"Q�@>�T�D���|i�� ���"�5�hm D*k"��@>�T�D���|)���H��@>�T�D���|��9�Dk� RYs���A��H�.@>�T�D���|��9�Dk� RYs���A��� ���ÃH���,D*g"Q�@>�ܿ�S���A��k�<�D���ۚ�t:|:��A�xd;�|������?��o?�������_z����>�<�����7����P,w����ۿ(��� ���ޡ��������/�������E�o����E>�n�ް6�c����X/�:�e�ܱ����e�۳7� ܱ��R������(�?��Q:�goH�����3����,[����3x��P�����X�?�Oֺ={��������'iݞ�am��֧O�����gٺ�w������n�ް6pǺ���۳7� ܱ��Һ={�������ý��gٺ�w����IZ�goX�c=���os����X�?���n�ް6�c�����I�67�e�ܱ����� �5l��px��_�a,��pz����goH��ͧO��'�[M�E� +ܱ��Gkݞ�am����Sx8I��� kw������n�ް6p'�9�N�:�e�ܱ��IY�S����S)kr*�6�s*eMN��rNe�3�"��JY�S����S)kr*�6�s*eMN��bNe�ɩ��8̩�r�T�,�Tʙ� +� �JY�S����S�̩Ⱥ�9�R��Thm �Tʚ� � �JY�S����S�̩Ⱥ�9�R��Thm �Tʚ� -� �JY�S����Sir*r6s*�9*�9�r&�Bi9�R��Thm �T�:s*�.@Ω�59Z�9��&�Bk9�R��Thm �T�:s*�.@Ω�59Z�9��&�Bk9�R��Thm �T�:s*�.@Ω�59Z�9��&�Bk1�RґS��p�Ser*R6�s*�LN��rN��ɩ��@Ω�59Z�9��Μ���s*eMN��rN��ɩ��@Ω�59Z�9��Μ���s*eMN��rN��ɩ��@Ω�59Z�9��^r*��@Ω�59Z�9��&�Bk1�RґS��p�S�̩H��9�R��Thm �Tʚ� � �JY�S����S�̩Ⱥ�9�R��Thm �Tʚ� +� ĜJIGN���aNe�ɩH�8Ω�39J�9��&�Bk9�R��Thm �T�:s*�.@Ω�59Z�9��&�Bk9�R��Thm �T�:s*�.@Ω�59Z�9��&�Bk9�R��Thm �T�zɩ��9�R��Thm �Tʚ� +� ĜJIGN���qNe�3�"��JY�S����S)kr*�6�s*eMN��rNe�3�"��JY�S����S)kr*�6�s*eMN��rNe�3�"��JY�S����S)kr*�6�s*eMN��rNe�3�"��JY�S����S)�ȩ�Y8Ω�39J�9��Μ���s*eMN��rN��ɩ��@Ω�59Z�9��Μ���s*eMN��rN��ɩ��@Ω�59Z�9��Μ���s*eMN��rN��ɩ��@Ω�59Z�9��Μ��s*%9:�9�r&�Bi9�R��Thm �T�:s*�.@Ω�59Z�9��&�Bk9�R��Thm �T�zɩ��9�R��Thm �Tʚ� � �JY�S����S�̩Ⱥ�9�R��Thm �Tʚ� -� �JY�S����S�̩Ⱥ�9�R��Thm �TJ:r*t�s*�LN��rNe�3�"��JY�S����S)kr*�6�s*eMN��rNe�3�"��JY�S����S)kr*�6�s*eMN��rNe�3�"��JY�S����S)kr*�6�s*eMN��rNe�3�"�ĜJIGN���qN��ɩP�@Ω�59Z�9��Μ���s*eMN��rN��ɩ��@Ω�59Z�9��^r*��@Ω�59Z�9��&�Bk9�R��Thm �T�:s*�.@Ω�59Z�9��&�Bk9�R��Thm �TF�����ÜJ)GN���qN��ɩP�@Ω� �S�{l9��k@N��� <�}���p�{��7蟎���8<_�ݟ����>o'O/O���߿��������endstream +� �JY�S����Sir*r6s*�9*�9�r&�Bi9��/�TN���TW�9��{��6�����g�����>ޠ:�N_�.��|�w�������<��a<��:���:LL�.%��endstream endobj 1543 0 obj << /Type /Page @@ -4403,28 +4381,28 @@ endobj 1558 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 628.025 206.166 634.999] +/Rect [119.552 628.145 206.166 634.999] /Subtype /Link /A << /S /GoTo /D (boolean) >> >> endobj 1559 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [528.02 628.025 537.983 634.999] +/Rect [528.02 628.145 537.983 634.999] /Subtype /Link /A << /S /GoTo /D (boolean) >> >> endobj 1560 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [143.462 615.193 260.263 622.047] +/Rect [143.462 615.074 260.263 622.047] /Subtype /Link /A << /S /GoTo /D (pronouns) >> >> endobj 1561 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [528.02 615.193 537.983 622.047] +/Rect [528.02 615.074 537.983 622.047] /Subtype /Link /A << /S /GoTo /D (pronouns) >> >> endobj @@ -4615,14 +4593,14 @@ endobj /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 433.753 212.542 440.727] /Subtype /Link -/A << /S /GoTo /D (2385) >> +/A << /S /GoTo /D (2376) >> >> endobj 1589 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 433.753 537.983 440.727] /Subtype /Link -/A << /S /GoTo /D (2385) >> +/A << /S /GoTo /D (2376) >> >> endobj 1590 0 obj << /Type /Annot @@ -4769,28 +4747,28 @@ endobj /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.462 289.35 243.636 298.261] /Subtype /Link -/A << /S /GoTo /D (2492) >> +/A << /S /GoTo /D (2483) >> >> endobj 1611 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 289.35 537.983 298.261] /Subtype /Link -/A << /S /GoTo /D (2492) >> +/A << /S /GoTo /D (2483) >> >> endobj 1612 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [143.462 276.399 276.582 285.31] /Subtype /Link -/A << /S /GoTo /D (2499) >> +/A << /S /GoTo /D (2490) >> >> endobj 1613 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 276.399 537.983 285.31] /Subtype /Link -/A << /S /GoTo /D (2499) >> +/A << /S /GoTo /D (2490) >> >> endobj 1614 0 obj << /Type /Annot @@ -4823,14 +4801,14 @@ endobj 1618 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [119.552 239.482 190.515 246.456] +/Rect [119.552 239.602 190.515 246.456] /Subtype /Link /A << /S /GoTo /D (whining-overview) >> >> endobj 1619 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [528.02 239.482 537.983 246.456] +/Rect [528.02 239.602 537.983 246.456] /Subtype /Link /A << /S /GoTo /D (whining-overview) >> >> endobj @@ -4867,14 +4845,14 @@ endobj /Border[0 0 0]/H/I/C[1 0 0] /Rect [119.552 198.69 235.586 207.601] /Subtype /Link -/A << /S /GoTo /D (2551) >> +/A << /S /GoTo /D (2543) >> >> endobj 1625 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 198.69 537.983 207.601] /Subtype /Link -/A << /S /GoTo /D (2551) >> +/A << /S /GoTo /D (2543) >> >> endobj 1626 0 obj << /Type /Annot @@ -4982,91 +4960,99 @@ endobj /ProcSet [ /PDF /Text ] >> endobj 1689 0 obj << -/Length 33399 +/Length 33449 /Filter /FlateDecode >> stream -xڜ�]�d�}��{} -�oܸP����Җ%�&$�cQ311�����a��Ƌ=��s -g�]�v�y��#L<Z�D'���Z��������t>=�m�p�r�}|��w�����~�w��_������ۇ��_�7�����tw�����9�ܞ/>��pz������y{�����ۿ����}�������7���ߌg��o���>����雿�}���ݷ�?�y��?|����y�������Ço���������o���/���{�o������7���������~�C��������������������?�����������^Q;��p>�<�8u<��x�ޝ?{E��u��%��W̊; ����,���+h^V���V��YV��u�ηRݟ��v���}7Vݟ��v���|�������/�O�H���dz�.�����ɪ��W�<P����?{E��u���?{E������5�Ku<��x�n_�ݓT�g��x�n_í�17���v���} g���^Q;���} 7���x��%�@ݾi�>yE|v�=����䯏^+����g�n<{������������ɳ�������Ѫ��W�<P�o��N���W�<P�ө�3W�������N��YV��u�n��?{E��u�ΏRݟ��v�����7Vݟ��v�eu��Χ�.ϲ��w����T�g��x�>�����?{E���y�k����^Q;�z�} �?L��lv��}���WȊ; �/��,���+h��p'ڌg��xY�߾�[��gY]��[8˟q��+j��� �6D���v���|:�Xu��ځ�Շ������x��%�@�;�� ƳW�<PN��Vݟ��v���} �g�x��ځ����k��?mƳ�.���5�Yu��ځ��5�ʟq��+j��� ���?zŬ�����ȟ7��Lv��}7�ܟ��v���pzx�����+j�ϧ�g���^Q;��|szx�?�Ƴ�.�����Q���^Q;�@ݾ����^Q;�@ݾ�{�3n<{E������5�Iu<��x�n_í�7���v���} g�3n<{E��u�n��?{E������������˳������E�=�<{E����t�d���+j�O'�7ƣW̊�L���@�hͳ�.���<Xu��ځ����Ju��ځ��-��Iu��ځ����k���x��%�@ݾ��T�g��x�n_�̓T�g��x�>��_��?{E�����������˳�.�����I��i<{E����t�h���+j���� ̍g��xY�߾yv�gY]��k��������k�h��bV��}��$�^A;���}g��gY]��;�g'y��ځ���V����+j�O��g���^Q;��xs��g'y��%�@�==ɳ�<{E��u���?{E��u���I���v�e�i���I�eu <P���֪��W�<P��A����+j��� �N���/��7��Tdz�.����Ѣ�>zŬ���t��'y� -ځ����ɪ��W����l߁<>ɳ�.���-��<{E��u�?{E��u���I���v�E��f�����gQ]��k8[u��ځ��5��<{E����� �>S���v�e�|s�y��x��%�@�==��<{E����t�h���+j��� y��ځ����k����e����;��䯏^!+�ܾ�ٖȳW�<P�/���I����������_܍g�����>������_f}]���o��b��q�'w/�T��#{��iT���o��_~�q�����Ç����2����i�'�w�����������_��wߜ?|����_����~�����������w������w���>�q��������������;�+������N^�\� �+�.�x���q��j�ŊS�� -��+N+�v ^�(5+�.�x���q��j�ŊS�� -�H+�/Vج8�XQ�XA���bř�b��ċ���V;/V�:.VX�@�XQj.VP]�bũ�b��ċ���V;/V�:.VX�@�XQj.VP]�bũ�b��ċ���V;/V�:.VX�@�X1�X!u ċ���V;/V�:.VX�@�Xq�~��f��Ŋ2s����+N+�v ^�8u\��ځx���q��j�ŊRs����+N+�v ^�8u\��ځx���q��j�ŊRs����+N+�v ^�8u\��ځx���q��j�ŊRs����+N+�v ]�8t�Xa���bř�b��ċ��b�%/V�:.VX�@�Xq�Xa��bũ�b��ċ��b�%/V�:.VX�@�Xq�Xa��bũ�b��ċ��b�%/V�:.VX�@�Xq�Xa��bũ�b��ċ��b�%�.V�_��Yqx���q��h�ŊS�� +xڜ�[�d�}��{~ +�n�s�de��R�H�R�E���pf�@���$��{��w�U���O>p(B8m�_N'0�������l��������n��ۗ����o���_����ۿ���<��|<�>�n�¿�����������������|�����O7�۳��������_����o^N/�w�����f<�G~�����ߟO�����͇�����������O?�����_��on>|��_���/_~��?~s��������_;������������������?�1��?�n��� ��#8}�9�O�ϗ>�u��ځ�Շ����ũ�YV�����po���+j���p/�_�bV��}wgi��^A;���}�Rϲ���wp��������[����������˝T�g��xY}��D�,�<�eu <P�N�OVݟ��v����=� ���+j�����(���+j^V����^��YV��u��?{E��u�n叹�����k8[u��ځ��k��?�Ƴ�.���5H���+������l� }�Xq��/>�p��+h^T�nnN�O�GM�Eu <P�Nw�Vݟ��v���}wRݟ��v�����Nݟ��v�e��} wRϲ����p� ���+j���p~�������_������/���|zq?��,�K��zw�~:Hu��ځ����ɪ��W�<P���n�"���+j^VﶯA��i�͎; ��@�gu� +Yq��ܟ��?{��u���O����/���Wp+��,�K���}g�3n<{E��u��_�ȳW�<P�O����^Q;��psz|���ϲ��w����x��ځ����Ѫ��W�<P���A���^Q;���} ���x��%�@ݾ�;���^Q;�@ݾ�[�3n<{E��u���G��w�|ھ��f�Ɏ; �/�ƚ��W�<PN/�w<{E����t�l���+j^V�oNO�g�x��%�@�;�<ʟ6��+j����`���+j���p/ƍg��xY}پ�;��gY]��k��?�ƳW�<P���,ƍg��x�n_ÍU�g��xQ���9ݿ��qy�5�@�=�ȿ��g��x�>��?{E����$���x�Yq������y��%�@ݾ����^Q;�@ݾ��[���^Q;�@ݾ��;���^Q;�z�} �Rϲ����p��������k�y�����ԧ��U�g��xY��9�=�sy��%�@�==?�?3�g��x�>����?{E��u�䏹���/���� �N�,�K���} wVݟ��v���} �OM��W̊; ��@����+h^V���,��,�K���}��$�^Q;�@}8�ʳ�<{E������l���+j^VoN���$ϲ����'yv�g��x�n_ÃU�g��x�n_�<;ɳW���>m_�<;ɳ�.���5�Zu��ځ��5ȳ�<{E��u���I���v�e���t~��x��%�@�==Z��G��w@>����$�^A;�@}:=>Yu��ځ��;��'y��%�@ݾy|�g��x�n_ýU�g��x�n_�<>ɳW���>�l_����,�k���} g���^Q;�@ݾy|�g��x�>��_gʳW����oN7�Rϲ����y|�g��x�>�n��?{E��u�da"�^Q;�z�} �?8��lv��}�����+d��� �y� +ځ��\>>�#�_B���z�}>]�/w������q�tz��_���T���bo�R������[�T命R�4*U��7��͇/���������������������ٻ���?���~�������o�>��������w?~����������������~}���f�7�>���u{���?��� +�1��Ї+>��� +�K ^�8u\��ځx���q��j�ŊS�� +��+J�� +�K ^�8u\��ځx���q��j�ŊC��6+�.V9.V��8�Xq�Xa��bũ�b��ċ���V;/V���T�@�Xq�Xa��bũ�b��ċ���V;/V���T�@�Xq�Xa��bũ�b��ċ���V;/V�:/VH]�bũ�b��ċ���V;�.V�_��Yqx���\� ��ŊS�� +��+N+�v ^�8u\��ځx���\����ŊS�� +��+N+�v ^�8u\��ځx���\����ŊS�� +��+N+�v ^�8u\��ځx���\����ŊS�� +�H+�/Vج8�Xq�Xa��bE��XAu ċ���V;/V�:.VX�@�Xq�Xa��bE��XAu ċ���V;/V�:.VX�@�Xq�Xa��bE��XAu ċ���V;/V�:.VX�@�Xq�Xa��bE��XAu ����+lV^�8s\�0ځx���q��j�ŊRs����+N+�v ^�8u\��ځx���q��j�ŊQ�� +�k ^�8u\��ځx���q��j�ŊS�� ��+J�� �K ^�8u\��ځx���q��j�ŊS�� -��+F�+���x���q��j�ŊS�� -��+N+�v ^�(5+�.�x���q��j�ŊS�� -��+N+�v ]�(t\���qt����b�ɊËg��F;/V�Z�\�����������b>�r��#��۟��ߟ�be<�_�<�����oT~���}��_���i�|���O?����o���O��)���տ|��<�T~��×����6�����y��_�o-qp���4���C�/G�.|��4V;GҔ��4T�@Is�Ic�q$ͩc$��đ4���4V;GҔ��4T�@Is�Ic�q$ͩc$��đ4���4V;�F�:F���8Is�>��d��H�3�H��#iN#i�v ��)5#i�.�8���1��j�H�S�H��#iN��)��'�F�'��.�|r�Ԝ��ځ|r�Ԝ��ځ|r�Ԝ��ځ|rj�yrJ��'�J��)��'�J��)��'� +�H+ ++hv]�8r�Xa���bř�b��ċ��0+�9~}���xy:�X�ϱ\�����{���3^��G����q��7��ʏ���/����O}G*�}�����~��������������_���]�V~W*?~����?}�z���t��?��}ȯ����.qp���4���C��(G�.|��4V;GҔ��4T�@Is�Ic�q$ͩc$��đ4���4V;GҔ��4T�@Is�Ic�q$ͩc$��đ4���4V;�F�:F���8Is�>��d��H�3�H��#iN#i�v ��)5#i�.�8���1��j�H�S�H��#iN��)��'�F�'��.�|r�Ԝ��ځ|r�Ԝ��ځ|r�Ԝ��ځ|rj�yrJ��'�J��)��'�J��)��'� '�hV��2'�Dv��*3'��v ��*5'��v ��*5'��v ��u�����ɩRsr�j�ɩRsr�j�ɩRsr�j�ɩQ��)�K ��*5'��v ��*5'��v ��*5'��v �� -����5�ON���ST;�ON���ST;ON:NNѬ8>95�<9%t �S�����S�����S�����S�ΓSR�@>9UjNNQ�@>9UjNNQ�@>9UjNNQ�@>95�<9%u �S�����S�����S�����S�ΓSR�@>9UjNNQ�@<9U�89E����T�99E���Ԩ���%�ON���ST;�ON���ST;�ON���ST;�ON�:ONI]��T�99E���T�99E���T�99E���Ԩ���%�ON���ST;�ON���ST;�ON���ST;�ON�:ONI]��T���͊�Se����S�����S�ΓSR�@>9UjNNQ�@>9UjNNQ�@>9UjNNQ�@>9���)�k ��*5'��v ��*5'��v ��*5'��v ��u�����ɩRsr�j�ɩRsr�j�ɩRsr�j�ɩAsrJf��ɩ"��)��'����)��'����?�~r��c�������F�_N��/xr:�ON_���?~���������DZ�?~�puz��zu����t��y�ٷ����������<����y����� ����v D*5��v DuD���A�Rs�j�A�Rs�j�A�Rs�j�A�AsIf��A�"�A$�����A$���J�A$���F���.�|��D�ځ|��D�ځ|��D�ځ|i�yI���J�A$���J�A$���J�A$���F���.�|��D�ځ|��D�ځx��q�f��A�!sId��A�2s�h�A�Rs�j�A�Rs�j�A�Q�A$�K D*5��v D*5��v D*5��v DuD���A�Rs�j�A�Rs�j�A�Rs�j�A�P�"A]� R�9�D�� R�9�D�� R�� ͊�HcHB�@>�Tj"Q�@>�Tj"Q�@>�Tj"Q�@>�4�<�$u �H�� ��H�� ��H�� ��H�HR�@>�Tj"Q�@>�Tj"Q�@>�Tj"Q�@>�4�<�$u �H�� �ăH���H4+�"���HD;�"�:"I]� R�9�D�� R�9�D�� R�9�D�� Ҩ� ��%�"���HT;�"���HT;�"���HT;�"�:"I]� R�9�D�� R�9�D�� R�9�D�� Ҩ� ��%":"Ѭ8>�Tf"�@>�Tj"Q�@>�4�<�$u �H�� ��H�� ��H�� ��H��D���A�Rs�j�A�Rs�j�A�Rs�j�A�Q�A$�K D*5��v D*5��v D*5��v D4�dvD*rD"Yq|��D"ځ|y|��"�s���>����A�����68Ow�x9�"����~���ۻ��<oO>�>y{���~}����?����~�i���tz��q��/��o�9?����_��}��?Ǚ��?~���O���?}����g�9�M���������_�ky�o��_y7�端��_�y���W������.�.�|�Ԝ��ځ|�Ԝ��ځ|�Ԝ��ځ|�b�y�B�ȧ.Jͩ�ȧ.Jͩ���. -�.hV��2�.Dv��(3�.�v ��(5�.�v ��(5�.�v ��u�����Rs�j�Rs�j�Rs�j�Q��K ��(5�.�v ��(5�.�v ��(5�.�v ������5�O]��ST;�O]��ST;O]:N]Ь8>u1�<u!t �S�����S�����S�����S��SR�@>uQjN]P�@>uQjN]P�@>uQjN]P�@>u1�<u!u �S�����S�����S�����S��SR�@>uQjN]P�@<uQ�8uA����E�9uA���Ũ�ԅ�%�O]��ST;�O]��ST;�O]��ST;�O]�:O]H]��E�9uA���E�9uA���E�9uA���Ũ�ԅ�%�O]��ST;�O]��ST;�O]��ST;�O]�:O]H]��E���͊�Se����S�����S��SR�@>uQjN]P�@>uQjN]P�@>uQjN]P�@>u�۩�k ��(5�.�v ��(5�.�v ��(5�.�v ��u�����Rs�j�Rs�j�Rs�j⩋As�Bf���ܿ��ܝn���lz�9�77�7 ��ϻ��;=l�����ȸ9�U��������ǟ���O?d��O_~�yl������O?��כ���}����_���0�~���ß����O_�aǟ~���������ǟ~������ן>�8^���Ç���o��S������o���~��us� ��8�_����ݯ���?�8G��ǹR�����J͏sT;�����9�k �8Wj~��ځ��\��q�j�s���9��?:����s���9��?Ε��v �8Wj~��ځ��ܠ�qNf������9~���������/�O��?���w�y:��~�u}�ǻ������#�g���'������|���O�[?�y��_�S�za����=����3��Ty�����;ߞ�/����Zϲ����w� ���+j�۟ٽ��(u��ځ��5���?{E������5���u<��x�ޝ^^���?{E����t�l���+j�ϧ��3���^Q;�z>�?Ju<��x�n_����������;x8Ks� -ځ���[u��ځ�Շ�;x�4�x��%�@ݾ��3���^Q;�@ݾ��U�g��x�n_Í�17���v�e�q�!�"̍gY]Ի��U�g��x�>���#ƳW�<P�OϏ���x��ځ���O���:�eu <P���^���^Q;�@ݾ�;�g<{E��u�n��?{E������5�?�q����������;���������Ӌ��ݟ��v�e��|�}�?pƳ�.�����ɪ��W�<P���}�?�ƳW�<P���A���^Q;�z{�} �Nͳ�����5�=Ju��ځ��5�>Iu��ځ��5���?{E����y�n�<��x�ޝ_^��?{E����t~�������ӣ����+f�]&oϧ����g]��;x�������;x��������[�������/�w�n��,�K���} ��Rݟ��v���} g�g<{E��u�n��?{E�������f+̍gY]����;u��ځ����ɪ��W�<P�O�����+j^V���A��ϲ����po���+j��� � �?zŬ�r�������/���wp+��,�K���}g�cn<{E��u�n��?{E����t�"̍g��xY}�9�<���gY]Ի���U�g��x�>l��s��+j���� ̍g��xY}�{��gY]��k��?�ƳW�<P���V���^Q;�@ݾ��U�g��xY}ٗ��:�eu <P��A��O^߇x'�����WĊ; �Ow���x� -ځ��nnN�O�GM�Eu <P�Nw�Vݟ��v���}wRݟ��v���} ��$�^Q;������p'��,�K��:^�Լs��w�*5�E����J�;gQ�@~�Q�;gI]���J�;gQ�@~�R��YT;��9�Լs��w�4�%���E�������;g�@~�R��YT;��9k���YR�@~�R��YT;��9�Լs��w�*5C��v quq����R3ĉj��R3ĉj��R3ĉj��Q�'�K q*5C��v q*5C��v q*tq�Yq8�i�q�q<ĩ�q"ځ<ĩ�q�ځ<ĩ�q�ځ<�i�9�I��C�J�'��C�J�'��C�J�'��C�F�C��.�<ĩ�q�ځ<ĩ�q�ځ<ĩ�q�ځ<�)Է!NP�@�Tj�8Q�@�Tj�8Q�@�T��D��x�Әs���%��8��!NT;��8��!NT;��8��!NT;��8�:�8I]y�S��D�y�S��D�y�S��D�y�Өs���%��8��!NT;��8��!NT;��8��!NT;��8�:�8I]y�S��D�q�S�c�͊�!Nef���!N��!NR�@�Tj�8Q�@�Tj�8Q�@�Tj�8Q�@�4��$u �!N�f���!N�f���!N�f���!N��!NR�@�Tj�8Q�@�Tj�8Q�@�Tj�8Q�@�4��$u �!N��!N4+��8��!ND;��8��!NT;��8�:��H]y�K�Y�B�y�K�Y�B�y�K�Y�B�y�K�o�]����ܥ�,w�ځ�ܥ�,w�ځ�ܥ�,w�ځ��eԹ�E���]J�r���]J�r���]J�r���]�r���]ǃTn�?�X�z�9�7�����n�����!��ys�C��}��<�����o?��?|�<ނ�����?����>�������͇o��x�B�r�}q���p������}��~���M�v ����~���&��~�K ����~���&��~���&e�߄hr�ɨ��D���&��߄jr�I��7�ځ�oRj�M�v ���:�M�.��oRj�M�v ����~���&��߄jr�ɨ��D���&��߄jr�I��7�ځ�oRj�M�v ���:�M�.��oR��oB�}��8�M(V����~���&����@]�ߤ���P�@�7)5�&T;��MJM� ��~�Qg���%��MJM� ��~�R�oB��ߤ���P�@�7u��H]�ߤ���P�@�7)5�&T;��MJM� ��~�A�o"��ߤ��oB��ߤ����@�7)5�&T;��MF��&R�@�7)5�&T;��MJM� ��~�R�oB���d��o"u �~�R�oB��ߤ���P�@�7)5�&T;��MF��&R�@�7)5�&T;��MJM� ��~�BG� ͊�~�!�o"��ߤ����@�7)5�&T;��MJM� ��~�Qg���%��MJM� ��~�R�oB��ߤ���P�@�7u��H]�ߤ���P�@�7)5�&T;��MJM� ��~�P��M����oRj�M�v ����~���&��~���&c�~�K ����~���&��߄jr�I��7�ځ�o2��7��r�I��7�ځ�oRj�M�v ����~���&��~�K ����~���&��߄jr�I��7�ځ�o2��7��r�I��7�ځ�oR��7�Yq�oRf�M�v ���:�M�.��oRj�M�v ����~���&��߄jr�ɨ��D���&��߄jr�I��7�ځ�oRj�M�v ���:�M�.��oRj�M�v ����~���&��߄jr�ɨ��D���&��~���&e�߄hr�I��7�ځ�o2��7��r�I��7�ځ�oRj�M�v ����~���&����@]�ߤ���P�@�7)5�&T;��MJM� ��~�Qg���%��MJM� ��~�R�oB��ߤ���P�@�74�&2;�M�m�o1�M�>���?ʻ~��ߣ�~���� ��4���M������?������k�����������/�������/��凯oXoO����ۧ�����M�m��t~W�'����~��v�{�W� -G�(V�� -r^���Ὦ"ǹ.��Ǻ���HV^�*r�"Yqx�k�\��qx���q��d�ၮ"�}.���ǹHV��2��Dv��*r��"Yqx���q��d��E�"�A.�G�FV��*o?�E�}�*p��Xqx���q��d�� �!s�Kd����"��-��Ƿ���HV^�*r�"Yqxvk�\��qxs��qr�d����"ǽ-���ǶHV��2��Dv��*r��"Yqxd��qc�d�х��[߇�y���u-y��� -��(V�*r��"YqxU��qT�d��I�!sQKd��=�"�9-��Ǵ���HV^�*r�"YqxFk�\��qxC��qB�d���"��,��׳�dzHV�� -r^����ݬ"��,��G��7�HV]�*q?�E�}��0ײ$v��*r��"Yqx(��q'�d�ᕬ"Ǒ,��'��̅,������HV�*r��"Yqx��q�d��Y�!sKd��M�"�I,������HV^�*r�"Yqx -k�\��qx��q�d����X߇���,��篆��+�������HV�*rܽ"Yqx���q�d��ɫ!s�Jd�Ὣ"ǹ+��Ǯ���HV^�*r�"Yqx�j�\��qx��q�d�ၫ"�}+���ǭHV��2��Dvݵ*q?kE�}�*pܴ�XqxѪ�qЊd��9�!s�Jd��-�"�)+�����w�HV^�*r�"Yqx�*�y� -������HV�*rܮ"Yqx���q��d��٪!s�Jd��ͪ"��*������HV^�*r�"Yqt�j�q�J`�ѝ*�Q�3U��3�>���O-�?S� �����u�����x�|���<����øQ��o?��������o��۟?}����/��������ï[������/?|�髃ͻ�����x�0~q��NT����_�_�}�C�gN��p��x�s\��ߟeu <P�w8u�|��ė8u�|��ė8u�|��ė(5/@u ė8u�|����8t����/p�x����/Pj^>���/p�x����/p�x����/p�x����/Pj^>���/p�x����/p�x����/p�x����/Pj^>���/p�x����/p�x����/p�x����/Pj^>��/p��`B�}v�8JL(Vט����M&��U�@]�̤Դ�P�@�3)5�&T;�+MJM� ��V�Qg���%��MJM� ��n�RSnB��ޤ���P�@n8uV�H]��Դ�P�@�9)5E'T;��NJM� �Ķ�ASw"�����xB���̔��@�=)5�'T;��OF��'R�@.?)5�'T;��OJM -�� -�RӁB��e�Y�"u �"�RӄB���Ԕ�P�@�C)5}(T;�QF��(R�@.E)5�(T;�{QJM1 -��j�BG7 -͊�v�!S�"�� ��4��@�H)5%)T;�kRJMO -�䦔QgU��%��RJM[ -�侔RS�B��2��t�P�@nMu֦H]�8��4�P�@�N)5�)T;��SJM -���P�*T���\�RjZT�v ����"��U*��.��m*c�:�K ���F�ȝ*��T�jr�J��U�ځܬ2�V��r�J�iW�ځܯRj -V�v W������-+�Κ�K ������]+��l�jr�J��[�ځܸ2�\��r�J�i]�ځػR�(^�Yq\�Rf�W�v ���:�W�.�\�RjX�v w�����5,����jr˨��E��e,����jrK�)d�ځ\�Rj:Y�v ���:kY�.�\�Rj�Y�v w���r���,����jrC˨��E��%-�����=-e���hrUK��j�ځ��2�k��raK�il�ځ��RjJ[�v ������-��U�@]���Դ�P�@�o)5.T;�+\JM����Qg���%��\JM���.�RS�B��Υ���P�@lt4�.2;K]X<�.�����s�on{]����^�]w��Ǘ��#�}`<��Χ�:�|��������P�������8��?&]��:?ޝ��~���������t�z�������^Q;�@}>=��]���^Q;��t>�=Hu<��x�n_�뱂R�g��x�n_��Y��?{E��u�n��?{E������5�:t�͎; ���|�������;���������Ӌ��ݟ��v�e��|�}�øQdz�.�����ɪ��W�<P��^���W�<P����A���W��\Ƹپ�{��YT��u����?{E��u�n���?{E��u��Vݟ��v�e��} 7��\�eu <P�N�//Rݟ��v���x:?[u��ځ����������.��������ɳ�.���<Zu��ځ��<�Ju��ځ��-��Iu��ځ�ջ�k���x��%�@ݾ��{���^Q;�@ݾ����3���v��:f2��� T;�w7�:w7H]ywC���@�ywC���@�ywC���@�ywèsw��%�w7��� T;w7:v7Ь8��Pfv7�@��0��� u �� �fw��� �fw��� �fw��� ��� R�@��Pjv7P�@��Pjv7P�@��Pjv7P�@��0��� u �� �fw��� �fw��� �fw��� ��� R�@��P澻���0��P���@��xwC���@�ywC�o���������n�ځ�����n�ځ�����n�ځ��aԹ�A�ȻJ���ȻJ���ȻJ���ȻF���.������n�ځ�����n�ځ�����n�ځ��a��n��q���ȱ��d���2���h��R���j��Q���K �n(5��v �n(5��v �n(5��v �nu�n����R���j��R���j��R���j��Q���K �n(5��v �n(5��v �n(t�n�Yq��a��n�q�����n ځ�����n�ځ�����n�ځ��aԹ�A�ȻJ���ȻJ���ȻJ���ȻF���.������n�ځ�����n�ځ�����n�ځ��!Է� P�@��Pjv7P�@��Pjv7P�@��P���@��xwØsw��%�w7��� T;�w7��� T;�w7��� T;�w7�:w7H]ywC���@�ywC���@�ywC���@�ywèsw��%�w7��� T;�w7��� T;�w7��� T;�w7�:w7H]ywC���@�qwC�cw͊�� efw��� ��� R�@��Pjv7P�@��Pjv7P�@��Pjv7P�@��0��� u �� �fw��� �fw��� �fw��� ��� R�@��Pjv7P�@��Pjv7P�@��Pjv7P�@��0��� u �� ��� 4+�w7��� D;�w7��� T;�w7�:w7H]ywC���@�ywC���@�ywC���@�ywC�o���������n�ځ�����n�ځ�����n�ځ��aԹ�A�ȻJ���ȻJ���ȻJ�����������;nw?���x�9hw��������%�n<<n�w���}w�v�n��/��>|��������o��/�}{y�������x�.������V��{܊���@+�5�[�JM+��V�RӊF���Դ�Q�@nEu��I]��Դ�Q�@nE+5�hT;[� +����5�ON���ST;�ON���ST;ON:NNѬ8>95�<9%t �S�����S�����S�����S�ΓSR�@>9UjNNQ�@>9UjNNQ�@>9UjNNQ�@>95�<9%u �S�����S�����S�����S�ΓSR�@>9UjNNQ�@<9U�89E����T�99E���Ԩ���%�ON���ST;�ON���ST;�ON���ST;�ON�:ONI]��T�99E���T�99E���T�99E���Ԩ���%�ON���ST;�ON���ST;�ON���ST;�ON�:ONI]��T���͊�Se����S�����S�ΓSR�@>9UjNNQ�@>9UjNNQ�@>9UjNNQ�@>9���)�k ��*5'��v ��*5'��v ��*5'��v ��u�����ɩRsr�j�ɩRsr�j�ɩRsr�j�ɩAsrJf��ɩ"��)��'����)��'����?�~r��c�������F�_N��/xr:�ON_���?~���������DZ�?~�puz��zu����t��y���ۇ���������tD��<�|�Gy|����HT;�"���HT;�"�:"I]� R�9�D�� R�9�D�� R�9�D�� Ҡ9�$��� R�� Ɋ�He� ��H�� ��H�HR�@>�Tj"Q�@>�Tj"Q�@>�Tj"Q�@>�4�<�$u �H�� ��H�� ��H�� ��H�HR�@>�Tj"Q�@>�Tj"Q�@<�T�8�D��� Ґ9�$��� R�9�D�� R�9�D�� R�9�D�� Ҩ� ��%�"���HT;�"���HT;�"���HT;�"�:"I]� R�9�D�� R�9�D�� R�9�D�� R�o����|��D�ځ|��D�ځx��q�f��A�1�A$�K D*5��v D*5��v D*5��v DuD���A�Rs�j�A�Rs�j�A�Rs�j�A�Q�A$�K D*5��v D*5��v D*5��v DuD���A�Rs�j�A�B�A$�����A$���F���.�|��D�ځ|��D�ځ|��D�ځ|i�yI���J�A$���J�A$���J�A$���F���.�|��D�ځ|��D�ځ|��D�ځ|i�yI��� +�hVD*3��v D*5��v DuD���A�Rs�j�A�Rs�j�A�Rs�j�A�P�"A]� R�9�D�� R�9�D�� R�9�D�� Ҩ� ��%�"���HT;�"���HT;�"���HT;" ��H2;"9"��8>�Tf"�@>�<��S��9���w���� ��s�y�����g<������_?�_����o��'_�������>�������w���?�v:�l�Cܟ���ǟ>��o���ke�×on>��qf�����Ӹ���O������o�rS����ø�������Z^������_������f�k�����:>u������K ��(5�.�v ��(5�.�v ��(5�.�v ��u�����Rs�j�Rs�j⩋Bǩ���.�̩�ǧ.�̩�ȧ.Jͩ�ȧ.Jͩ�ȧ.F��.�.�|�Ԝ��ځ|�Ԝ��ځ|�Ԝ��ځ|�b�y�B�ȧ.Jͩ�ȧ.Jͩ�ȧ.Jͩ�ȧ.B};uu �S�����S�����S��S4+�O]�9O]]��E�9uA���E�9uA���E�9uA���Ũ�ԅ�%�O]��ST;�O]��ST;�O]��ST;�O]�:O]H]��E�9uA���E�9uA���E�9uA���Ũ�ԅ�%�O]��ST;O]:N]Ь8>uQfN]�@>u1�<u!u �S�����S�����S�����S��SR�@>uQjN]P�@>uQjN]P�@>uQjN]P�@>u1�<u!u �S�����S�����S�����S��SR�@<uQ�8uA����E�9uA���E�9uA���Ũ�ԅ�%�O]��ST;�O]��ST;�O]��ST;�O]��v��ȧ.Jͩ�ȧ.Jͩ�ȧ.Jͩ�ȧ.F��.�.�|�Ԝ��ځ|�Ԝ��ځ|�Ԝ��ځx�bМ���qx��q�d��2s�h�]K�S���˻���rx�r�9��S������]:u��S�������o?}���?���C&����ǟ�]ʿ���9����dy=m����/9n��O��c7엟��=��o��eܯ���/?��ˌ��|�����n�/��������<<|8�N������n�n�����_�p.���ߵ�/��]˻_��ߵ|�9�w-�v ��E��]�ȿkQj~ׂj��Z����P�@�]�R�T;�ע�����ߵ(5�kA��w-F��k!u �ߵ(5�kA��w-J��ZP�@�]�R�T;�b����̎�ߵ(r��Ɋ�ߵ(3�kA��w-�?���Z�s�ky�1�w-ǟ�/�O���ky�~�rw�����_�ױ������n�>�x&��~���e��/������Ow��m��������Go�?���Z����Ty������:ߞ�#�_� _��YV���~�w҃T�g��x�n��}=�Q������k8[u��ځ�ջ�kx=�1�x��%�@�;��<Ku��ځ����٪��W�<P�O/�G=Jݟ��v�e��|���x��%�@ݾ�o���+f���w�p�������;������/��w�:�j��,�K���}�G=Jݟ��v���} g���^Q;�@ݾ��cn<{E������C�E��ϲ��w��g���^Q;�@}<�=�?G�g��x�>��叹���/��o���:�eu <P���^���^Q;�@ݾ�;�g<{E��u�n��?{E������5�? �q����������;���������Ӌ��ݟ��v�e��|�}�?pƳ�.�����ɪ��W�<P��B�(̍g��x�n_Ã��3���v�E��f�gQ]��k�{�������k�}�������k8[u��ځ����5ܸsy��%�@�;=��Hu��ځ����l���+j�ϧG���W̊�LޞO�'�'�2���w�h���+j��w�p+���+j�۷p'���+j^V��{�ߨ�YV��u�n梁?{E��u����x��ځ��5�Xu��ځ�����iZ��ϲ���_�w�������͓U�g��x�>�쟅dzW���>l_Ã��3�eu <P���ު��W�<P��A�Ib�Yq����8��+h^V���V��YV��u�����x��ځ��-�Xu��ځ����E���^Q;��tszy��ϲ��w��'���^Q;�@}؞�?�ƳW�<P���A���^Q;���} �Rϲ����p'̍g��x�n_í�17���v���} g���^Q;����j)u<��x�n_�4_��"�;�N����^+�|>�=�p��+h^ڸ�9=?�5y�5�@�;�=Zu��ځ��-<�Iu��ځ��5��<{E�����n_ÝTdz�.��x�R�aT;�� �ԼA��7+5oF�� �F�o&u �7+5oF�� �J��Q�@~��R�aT;� lмA�̎�7+r�AɊ�7+3oF�� �J��Q�@~��Q��I]� �J��Q�@~��R�aT;�� ��̪�ځ<�j�9�J�ȳ�Jͬ*�ȳ�Jͬ*�ȳ�Jͬ*�ȳ�F����.�<���̪�ځ<���̪�ځ8���1��f�ᬪ!3�Jd��23��h�R3��j�R3��j�Q�*�K Ϫ*5���v Ϫ*5���v Ϫ*5���v ϪuΪ���R3��j�R3��j�R3��j�P�fUA]yVU��UE�yVU��UE�qVU�cV͊�YUc�YUB�@�UUjfUQ�@�UUjfUQ�@�UUjfUQ�@�U5�U%u �YU�fV��YU�fV��YU�fV��YU��YUR�@�UUjfUQ�@�UUjfUQ�@�UUjfUQ�@�U5�U%u �YU�fV��YU��YU4+�gU��YUD;�gU�:gUI]yVU��UE�yVU��UE�yVU��UE�yVըsV��%�gU��YUT;�gU��YUT;�gU��YUT;�gU�:gUI]yVU��UE�yVU��UE�yVU��UE�yVըsV��%gU:fUѬ8�UUffU�@�UUjfUQ�@�U5�(#u �2�f���2�f���2�f���2�� ����@�R3P�j�@�R3P�j�@�R3P�j�@�Q�@�K �)5e�v �)5e�v �)5e�v �4edv�R�����ٮ��͵�"��������r��Gy�7��������_Ǽ�Ž��Ⱦ�u��]�㷟���>}��Ǐ�������w�����Ï�����÷�}�T�z�y˾8��x8���o��?�M�>�q����&T;��MJM� ��~�Qg���%��MJM� ��~�BG� ͊�~�2�oB���d��o"u �~�R�oB��ߤ���P�@�7)5�&T;��MF��&R�@�7)5�&T;��MJM� ��~�R�oB���d��o"u �~�R�oB��ߤ���P�@�7)5�&T;��MF��&R�@�7)s�7��>�M +�&+��M�L� ��~�P��M����oRj�M�v ����~���&��߄jr�ɨ��D���&��߄jr�I��7�ځ�oRj�M�v ���:�M�.��oRj�M�v ����~���&��߄jb�ɠ�7��q�oR��7!Yq�oRf�M�v ����~���&��~�K ����~���&��߄jr�I��7�ځ�o2��7��r�I��7�ځ�oRj�M�v ����~���&��~�K ����~���&��߄jb�I��߄f�a�ɐ�7�q�oRf�M�v ����~���&��߄jr�ɨ��D���&��߄jr�I��7�ځ�oRj�M�v ���:�M�.��oRj�M�v ����~���&��߄jr�I�o�&P�@�7)5�&T;��MJM� ��~�BG� ͊�~�1g���%��MJM� ��~�R�oB��ߤ���P�@�7u��H]�ߤ���P�@�7)5�&T;��MJM� ��~�Qg���%��MJM� ��~�R�oB��ߤ���P�@�7u��H]�ߤ���P�@�7)t��Ь8�7)3�&D;��MF��&R�@�7)5�&T;��MJM� ��~�R�oB���d��o"u �~�R�oB��ߤ���P�@�7)5�&T;��MF��&R�@�7)5�&T;��MJM� ��~�R�oB���d��o"u �~�BG� ͊�~�2�oB��ߤ���P�@�7u��H]�ߤ���P�@�7)5�&T;��MJM� ��~�P��M����oRj�M�v ����~���&��߄jr�ɨ��D���&��߄jr�I��7�ځ�oRj�M�v ���~�����6��7����w���M��]����Qr���e�ToO�����vӿ�Ǐ�����?}���������_~������v��?����7��������|����&����~�(���H�w����w�Ƚë]��]+Ov9/v�\��^W��\Ɋ�c]E�[]$+/u9u��8<�5d�t��8��U�8�E���@W��>Ɋ��\E��\$+Os ��\";�r9�r��8<�U��E���"W�� Ɋ�s\#�k\+�nq�����>q8�pQ�8��U�8�E���א��%����V���Ɋ��[E��[$+/o9o��8<�5d�n��8��U�8�E����V���Ɋ�k[E�c[$+Om �K[";�l9�l��8<�U丱E����V���-�����x㺖� +��Z��Z+k9�j��8��U�8�E�����%���V��Ɋ�cZE�[Z$+/i9i��8<�5d�h��8��U�8�E����V��~Ɋ��YE��Y$+Og9/g�\��nV��lɊãYE��Y$+�.f���"�>�e �kY;oe9Ne��8<�U专E���JV��HɊ�YC�B�Ȏ��XE��X$+�c9nc��8��U�8�E���,��%���&V��$ɊÃXE�{X$+�a9�a��8<�5d.a��8��U�8�E���V�� ,����V���Ŋ��WC���Ȏ��WE��W$+_9�^��8�zU�8zE����Ր�x%����U���Ɋ�cWE�[W$+/]9]��8<s5d�\��8�qU�8qE����U��Ɋ��VE��V$+O[ ��V";��Z����"�>�Z8nZQ�8�hU�8hE���Ր�f%���U��Ɋ�CVE�;V$+�X9�X��8<a�`r���UE��U$+�W9nW��8�\U�8\E���lՐ�Z%���fU��dɊÃUE�{U$+�U9�U��8:U5�T%���N��(ř*~���w�T�?��[���w����t>=�n�?<ߟo�/�`<�G^?�7�����_��!{�?���?|��/���˿��_�������x��|����`���t~��3�>̅_ܧ���������X���?�ӥ7ܼ<^����gY]��]N/`���N/`���N/`���J��P]��N/`����_>�f����9^>�h����������:^>�j���:^>�j���:^>�j����������:^>�j���:^>�j���:^>�j����������:^>�j���:^>�j���:^>�j�����������7�P|�&���5&e�DŽhr�I�oU&P�@.3)5m&T;��LJM� ��J�R�iB���d�Yk"u �b�R�lB��ۤԔ�P�@�7)5�&T;�NF�'R�@.9)5-'T;�{NJM� �䪓R�uB���d�ԝ��8,<)r4���8�<)3�'D;�kOJM� ���Qg���%��OJM� ����RS�B����t�P�@nAu֠H]���4�P�@�B)5e(T;��PJM +��F�Qg%��%�KQJM+ +��^�RS�B����эB��e�ԣ��8.H)3 )D;�;RJMI +�䚔RӓB��)e�Y�"u 䲔RӖB��/���P�@�L)5�)T;�[SF��)R�@.N)5�)T;��SJMy +����RӟB��A%Է +�k ������=*��H�jb�J��K�f�q�ʘ�NE�ȅ*��Q�jr�J�)U�ځ\�RjzU�v 7��:�U�.�\�Rj�U�v �������+��c�jr�ʨ�fE��E+��i�jr�J�)[�ځ\�Rj�V�v 7��:+W�.�\�RjZW�v ��:�WhVW�������+����K �����,����jr K��a�ځ��2�b��rK�ic�ځ��Rj +Y�v W���N�ȭ,��Z�K ���f���,����jr=K��g�ځ��2�h��bIK����f�qOK�)j!ځ\�Rj�Z�v ���:�Z�.�\�Rj[�v w�����ȵ-����jrsK�o�-P�@.o)5�-T;��[JM��� +�R��B���e�Y�"u �"�R��B��˥Ԕ�P�@�s)5}.T;]M��̎�R�D�?ƨu����a�����{��k��_>��r�}��G�b���V����^�\_��j�A~����ο��I��Ώw��_���������y<ݽ+|�A.���W�<P�Oϯ�G���W���>�OwRϲ�����z�����+j��������^Q;�@ݾ�[���^Q;���} ��e����;8���?{��u�n��?{E������b}�g��xY}9�n_�4n��,�K��zwzz��������_��������kxx�����/�1n���ީy�5�@ݾ��G���^Q;�@ݾ��'���^Q;�@ݾ��U�g��xY=o_Í�1�gY]Ի��ˋT�g��x�>���Vݟ��v���|z����>zŬ�����t~r?p�,�K���}�Vݟ��v���}�Rݟ��v���}�wRݟ��v�e�n��:�eu <P����^���W�<P���,��g��x����fw��� ��� R�@��Pjv7P�@��Pjv7P�@��Pjv7P�@��0��� u �� �fw��� ��� 4+�w7��� D;�w7�:w7H]ywC���@�ywC���@�ywC���@�ywèsw��%�w7��� T;�w7��� T;�w7��� T;�w7�:w7H]ywC���@�ywC���@�ywC���@�ywèsw��%�v7���n��>w78v7P�8��Pfv7�@������k �n(5��v �n(5��v �n(5��v �nu�n����R���j��R���j��R���j��Q���K �n(5��v �n(5��v �n(5��v �n4�dv�n(r�n Yq�����n ځ�����n�ځ��aԹ�A�ȻJ���ȻJ���ȻJ���ȻF���.������n�ځ�����n�ځ�����n�ځ��aԹ�A�ȻJ���ȻJ����� +�hV�n2�Dv�n(3��v �n(5��v �n(5��v �nu�n����R���j��R���j��R���j��Q���K �n(5��v �n(5��v �n(5��v �n�mw�5�w7��� T;�w7��� T;w7:v7Ь8��0��� t �� �fw��� �fw��� �fw��� ��� R�@��Pjv7P�@��Pjv7P�@��Pjv7P�@��0��� u �� �fw��� �fw��� �fw��� ��� R�@��Pjv7P�@��P���@��xwC���@�ywèsw��%�w7��� T;�w7��� T;�w7��� T;�w7�:w7H]ywC���@�ywC���@�ywC���@�ywèsw��%�w7��� T;�w7��� T;�w7��� T;�w7�:w7H]qwC�cw͊�� efw��� �fw��� ��� R�@��Pjv7P�@��Pjv7P�@��Pjv7P�@������k �n(5��v �n(5��v �n(5��v �nu�n����R���j��R���j��R���j��A��Af���������1v7�}��8�(�v7��F�������ݍ�Ⱦ�q;v7�×on>���?|�������/�}{y�������x�.������V��{܊���@+�5�[�JM+��V�RӊF���Դ�Q�@nEu��I]��Դ�Q�@nE+5�hT;[� �h4+�[�Ɯ�hB�@nE+5�hT;�[�JM+��V�RӊF��m�ي&u �V�RӊF���Դ�Q�@nE+5�hT;�[�F��hR�@nE+5�hT;�[�JM+��V�RӊF��m�ي&u �V�RӊF����ъF���̴��@nEu��I]��Դ�Q�@nE+5�hT;�[�JM+��V�Qg+��%�[�JM+��V�RӊF���Դ�Q�@nEu��I]��Դ�Q�@nE+5�hT;�[�JM+��V�Qg+��%�Z���[�(��V�G+Ŋ�V�2ӊF��-ԷV4�k ����V4�ȭh���jr+Z�iE�ځ܊6�lE��r+Z�iE�ځ܊VjZѨv ����V4�ȭh��V4�K ����V4�ȭh���jr+Z�iE�ځ؊6hZ�dv��9Z�HV����V4�ȭh���jr+ڨ�M�ȭh���jr+Z�iE�ځ܊VjZѨv ���:[Ѥ.�܊VjZѨv ����V4�ȭh���jr+ڨ�M�ȭh���jr+Z�iE�ځ؊V�hE�Yq؊6dZ�Dv����V4�ȭh���jr+Z�iE�ځ܊6�lE��r+Z�iE�ځ܊VjZѨv ����V4�ȭh��V4�K ����V4�ȭh���jr+Z�iE�ځ܊�[+�5�[�JM+��V�RӊF����ъF��m�ي&t �V�RӊF���Դ�Q�@nE+5�hT;�[�F��hR�@nE+5�hT;�[�JM+��V�RӊF��m�ي&u �V�RӊF���Դ�Q�@nE+5�hT;�[�F��hR�@nE+5�hT;[� -�h4+�[��L+��V�Qg+��%�[�JM+��V�RӊF���Դ�Q�@nEu��I]��Դ�Q�@nE+5�hT;�[�JM+��V�Qg+��%�[�JM+��V�RӊF���Դ�Q�@nEu��I]���ъF���̴��@nE+5�hT;�[�F��hR�@nE+5�hT;�[�JM+��V�RӊF��-ԷV4�k ����V4�ȭh���jr+Z�iE�ځ܊6�lE��r+Z�iE�ځ܊VjZѨv ����V4���h��Mf�a+k���c���}jE��}˭�����Z�㑽}7Z���O� �o���?|���>~݇�~�>�Ľ)�'9o�xԇ�o��O9����c����o�&u �+5o�F����J�ۿQ�@~��R�sG���.Է�;�k �ܕ��;��=w���jr�]�鹣ځ�s7�칓�r�]�鹣ځ�sWjz�v ��:z�hV�܍9{�.��sWjz�v �ܕ��;��=w���jr�ݨ��N��=w���jr�]�鹣ځ�sWjz�v �܍:{�.��sWjz�v �ܕ��;��=w���jr�ݨ��N��=w���jb�]���f�q�]��#ځ�s7�칓�r�]�鹣ځ�sWjz�v �ܕ��;��=w�Ξ;�K �ܕ��;��=w���jr�]�鹣ځ�s7�칓�r�]�鹣ځ�sWjz�v �ܕ��;��=w�Ξ;�K �ܕ���Q|�=w��;��=we��hr�]�o=wP�@�+5=wT;�{�JM��䞻R�sG���n��s'u 䞻R�sG������Q�@�+5=wT;�{�F�=wR�@�+5=wT;�{�JM��䞻R�sG���n�����8�+r�ܑ�8�+3=wD;�{�JM��䞻Qgϝ�%�{�JM��䞻R�sG������Q�@�u��I]�����Q�@�+5=wT;�{�JM��䞻Qgϝ�%�{�JM��䞻R�sG�����sG���n��܉�8�+3=wD;�{�JM��䞻R�sG���n��s'u 䞻R�sG������Q�@�+5=wT;�{�F�=wR�@�+5=wT;�{�JM��䞻R�sG���.Է�;�k �ܕ��;��=w���jb�]���f�q�ݘ��N��=w���jr�]�鹣ځ�sWjz�v �܍:{�.��sWjz�v �ܕ��;��=w���jr�ݨ��N��=w���jr�]�鹣ځ�sWjz�v �܍:{�.��sWjz�v ��:z�hV�ܕ��;��=w�Ξ;�K �ܕ��;��=w���jr�]�鹣ځ�s7�칓�r�]�鹣ځ�sWjz�v �ܕ��;��=w�Ξ;�K �ܕ��;��=w���jr�]�鹣ځ�s7�칓�b�]���f�q�]��#ځ�sWjz�v �܍:{�.��sWjz�v �ܕ��;��=w���jr�]�o=wP�@�+5=wT;�{�JM��䞻R�sG���n��s'u 䞻R�sG������Q�@�+5=wT;{�Mϝ̎Þ�q]����c�����q��?����O�?�}��?��w�������k����t����n�>�xd<��y�ft���������ߜ�?|�����?~���w�o����������>~��{�~=��]x~8��|���Y�{���M��>刬8��2-9"+�;r�LE�Ȋ゜ g?Ȏ�v�!S�#��g�4㈬8��2�8"+�Kq���8 ;�q�L!�Ȋ�:�G���a܅3`�p$V�9{p@v�����8C�Gd�q�͐��Yq\~���q�|3d�oDV�����ǝ7C��Fd�q�M���d�q�͐)�Yq\u3d�nDV������%7AΎ�G 7�7��Ea��h��F��0�0�6+��m�ɷ^�1��q�͐)�Yq\i3dmDV���:��e6A�.��M6C��Fd�q�͐i�Yq�a3d*lDV�9�k@v�������5C��Fd�qo͐��YqXZb:k�V67 -k�㺚�V#�⸫f�TՈ�8.� r�Ԁ�8n�2%5"+�+j�LC�Ȋ�~�!SO#�⸜&��M�㸙f�ӈ�8��2�4"+�;i�L%�Ȋ�B� g Ȏ�6�!SF#�⸊f�4ш�8�q��|�%4^�q̀)��Xq\?3d�gDVw������3A���ǭ3C�tFd�q�̐i�Yq�73d�fDV��9�f@v7�����53C�eFd�q�̐��Yq\0�N��ˎ�%��e�L��Ȋ�j�!�,#��Wf�Q+#�}��8;e v7��B��u2C�MFd�q�̐��Yq\$���q�"3dJdDVW�����1C�>Fd�qyL��;d�qs̐)�Yq\3dZcDVw����Dž1Aξ��m1C�,Fd�aÜ�)F��0�051+�Kb��1 ;�b�LA�Ȋ�z�!�#��f�TÈ�8.� r��8n�2�0"+�+a�L#�Ȋ�>�!S#��&���� f����8��2-0"+�;`�L�Ȋ�� g�Ȏ���G����a\�2`�_$V�����ǥ/A���Ǎ/C��Ed�q�ːi{Yq��2d�^DV���o=�cr�㖗!S�"���e�4���8�w2�."+��]���. ;��]�L��Ȋ�Z�!��"���e�T���8,t 1}.�+�\��#W��0�\ob���a���s�{c�q�k��t������'zc�x��.������_U�ί�� o�_�2=�>��t�?����j<��S}����������Ǹ`��^A;�@}>��[u��ځ�Շ����/���x��%�@ݾ�A����+j���p�������kx��Q����/�������)5�x��%�@�;=?[u��ځ�����Q���W�<P�Oϯ�T���W���>m_ÃTdz�.���5���(u��ځ��5��HS������k������/���� �0�?�f���wp�?pƳW�<P���ƪ��W�<PNjɕ�7��ځ��s��7����Ε�7��ځ��s��M�v ��\�y�9��o:�ۛ�A]�M�J͛�Q�@~ӹR�sT;��t�Լ���7�u���%��t�Լ���7�+5o:G��M� -o:G���M�Ɯo:'t �7�+5o:G��M�J͛�Q�@~ӹR�sT;��tnԹ�B���-J̀��.J͆��+.J͌��C.F�K.�.���Ԍ��ځ<��칠ځ���L��ځ<�bԹ�B�Ȼ.JͰ���. -�.hV��(3�.�v �u.����ƋR3�j�̋R��j�ҋR3��j�؋Q���K �(5�/�v O�(5�/�v ��(5�/�v �u.������R3��j���R���j��R3�j��Q� -�K ��(s�A�}N�(pl��Xq����� ځ<#ԷEP�@ބQjFaP�@��QjvaP�@^�Qj�aP�@�1�\�!u �}�f ���f#���f&���ΥR�@ފQj�bP�@��Qj�bP�@^�Qj&cP�@�1hVc��8܍Q��A��x:F�َA�y=F���A�y@ƨsA��%�7d��T;�gd��T;��d��)T;��d�:�dH]yOF��A�yRF�ٔA�yUF���A�yXƨsY��%��e��qT;��e��}T;f:&fЬ8�1dVf��8ޙQf�f�@��Qj�fP�@^�Qj�fP�@�1�\�!u ���ft����fw����fz������R�@ޟQjhP�@��Qj6hP�@^�QjfhP�@��� �k o�(5c4�v ��(5{4�v .�(tLҠYq<Jc̹JC�Ȼ4J�0 ���4J�6 ���4J�< ��5F�5�.��Q�ԌԠځ<S���Ԡځ�T��Lՠځ<VcԹVC��{5J�` �ȓ5J�f �ȫ5J�l ���5F��5�.��]�Ԍנځ8_�б_�f��23a�h�Q� �K ��(5C6�v O�(5[6�v ��(5s6�v �u.ڐ��R3j�j�R�k�j�R3m�j�Q� �K ��(57�v O�(57�v ��(537�v �u.ݐ��֍B�� ��s7��� �ȋ7J�� �ȣ7F��7�.��{��ߠځ<}��lߠځ�~���ߠځ<�#ԷP�@��QjFpP�@��QjvpP�@^�Qj�pP�@�1�\�!u �=�f��I�f��U�f��a�f�̎�mZ}1�8�1�:λ�A�8���>��ߣ�}��So��H�8y��O4�q�ݟ��ç��ݧ>����o������������_�w�U�r���o���s�G��i\ҧϼ�ԇ���q����K���%���K���%���K���%���K��q����K���%���K���%���K���%���K��q����K���%���K���%���K���%���K��q����K���%�H�K��K6+���KF;�JM��%�N�KV;�N�KV;�N�KV;�JM��%�N�KV;�N�KV;�N�KV;�JM��%�N�KV;�N�KV;�N�KV;�JM��%����q���0j\:po\�Xqظt�h\2ځظ4�l\��b�ҩ�q�jb�ҩ�q�jb�ҩ�q�jb�R�i\��b�ҩ�q�jb�ҩ�q�jb�ҩ�q�jb�R�i\��b�ҩ�q�jb�ҩ�q�jb�ҩ�q�jR�R��q�f�Q�ґ{�Ɋ�ƥ3G���ƥSG���ƥRӸDu �ƥSG���ƥSG���ƥSG���ƥRӸDu �ƥSG���ƥSG���ƥSG���ƥRӸDu �ƥSG���ƥSG���ƥC��%�G�KE��%���Kg��%���K���%���K���%���K��q����K���%���K���%���K���%���K��q����K���%���K���%���K���%���K���%�k 6.�:��v 6.�:��v 5.�7.٬8l\*3�KD�@l\:u4.Y�@l\:u4.Y�@l\:u4.Y�@l\*5�KT�@l\:u4.Y�@l\:u4.Y�@l\:u4.Y�@l\*5�KT�@l\:u4.Y�@l\:u4.Y�@l\:u4.Y�@l\*5�KT�@l\:u4.Y�@j\:to\�Yqظt�h\2ځظTj��.�ظt�h\�ځظt�h\�ځظt�h\�ځظTj��.�ظt�h\�ځظt�h\�ځظt�h\�ځظTj��.�ظt�h\�ځظt�h\�ځظt�h\�ځظTj��.�Ըt�d��q��Ѹd��q��Ѹd��q��4.Q]�q��Ѹd��q��Ѹd��q��Ѹd��qi�ٸ$u �ƥSG���ƥSG���ƥSG���ƥRӸDu �ƥSG���ƥSG���ƥSG���ƥBG�͎��%�E�?��P����Q����Ϗ���l\�G^?��h\��ߜ���ݷ?������˟�9�|��O��ѯ�oo���nO���_����>�x��g=|��q�gF;_����gV;_����gV;_�Լ��%_����gV;_����gV;_����gV;_�l��gR�@|��S��Y�@|��S��Y�@|��S��Y�@|��R�gT�@|��S��Y�@|��S��Y�@z��Cǜ���sƜs�.�<'��� �ځ<'��� �ځ<'��� �ځ<'`�9'@��sJ͜���sJ͜���sJ͜���sF�s�.�<'��� �ځ<'��� �ځ<'��� �ځ<'`�9'@��sJ͜���s -shV� (3s�v � u� ���R3'�j�R3'�j�R3'�j�Q���K � (5s�v � (5s�v � (5s�v � u� ���R3'�j�R3'�j�R3'�j�Q���K � (s�@�}� (p� �Xq<'��� ځ<' Է9P�@�Pj�P�@�Pj�P�@�Pj�P�@�0� u �9�fN���9�fN���9�fN���9��9R�@�Pj�P�@�Pj�P�@�Pj�P�@�0h���8�P�@��xN@��@�yN@��@�yN��sN��%����9T;����9T;����9T;���:�H]yN@��@�yN@��@�yN@��@�yN��sN��%����9T;����9T;�:�Ь8�0d���8�Pf��@�Pj�P�@�Pj�P�@�0� u �9�fN���9�fN���9�fN���9��9R�@�Pj�P�@�Pj�P�@�Pj�P�@��ۜ��k � (5s�v � (5s�v � (t� �Yq<'`�9'@��sJ͜���sJ͜���sJ͜���sF�s�.�<'��� �ځ<'��� �ځ<'��� �ځ<'`�9'@��sJ͜���sJ͜���sJ͜���sF�s�.�<'��� �ځ8'��1'�f��23'�h�Q���K � (5s�v � (5s�v � (5s�v � u� ���R3'�j�R3'�j�R3'�j�Q���K � (5s�v � (5s�v � (5s�v � u� ��✀Bǜ���s�̜���sJ͜���sF�s�.�<'��� �ځ<'��� �ځ<'��� �ځ<' Է9P�@�Pj�P�@�Pj�P�@�Pj�P�@�0� u �9�fN���9�fN���9�fN���9�fN�̎�9��:����1��}�������G��^��t��e�� �G^?�����_ç��?�o�|���ח:Uo:ݿ��o���Χ����E�4�������|�x���@��%��JM���ƻR�xG����4�Q�@n�����ȍw���jr�]�i��ځ�xWj�v 7ލ:�.��xWj�v 7ޕ��;���w���;�Ǎwc��;�K 7ޕ��;�ȍw���jr�]�i��ځ�x7�l���r�]�i��ځ�xWj�v 7ޕ��;�ȍw���;�K 7ޕ��;�ȍw���jr�]�i��ځ�x7�l���r�]�i��ځ�xW�h��Yq�xWf�v 7ލ:�.��xWj�v 7ޕ��;�ȍw���jr�ݨ��N�ȍw���jr�]�i��ځ�xWj�v 7ލ:�.��xWj�v 7ޕ��;�ȍw���jr�ݨ��N�H�we�w߇a�]���b�q�]�i�#ځ�x�[��5��JM���ƻR�xG����4�Q�@n�u6�I]���4�Q�@n�+5�wT;��JM���ƻQg��%��JM���ƻR�xG����4�Q�@l�4�w2;��w$+���L���ƻR�xG���n��x'u �ƻR�xG����4�Q�@n�+5�wT;��F��wR�@n�+5�wT;��JM���ƻR�xG���n��x'u �ƻR�xG����4�Q�@l�+t4�Ѭ8l�2�w";���L���ƻR�xG����4�Q�@n�u6�I]���4�Q�@n�+5�wT;��JM���ƻQg��%��JM���ƻR�xG����4�Q�@n�����ȍw���jr�]�i��ځ�xW�h��Yq�x7�l��r�]�i��ځ�xWj�v 7ޕ��;�ȍw���;�K 7ޕ��;�ȍw���jr�]�i��ځ�x7�l���r�]�i��ځ�xWj�v 7ޕ��;�ȍw���;�K 7ޕ��;���w���;�Ǎwe��hr�ݨ��N�ȍw���jr�]�i��ځ�xWj�v 7ލ:�.��xWj�v 7ޕ��;�ȍw���jr�ݨ��N�ȍw���jr�]�i��ځ�xWj�v 7ލ:�.��xW�h��Yq�xWf�v 7ޕ��;�ȍw���;�K 7ޕ��;�ȍw���jr�]�i��ځ�x�[��5��JM���ƻR�xG����4�Q�@n�u6�I]���4�Q�@n�+5�wT;��JM���ƻA�x'���~\�v�w�����sP����,��37���Kj��G^?��h��×�?�����w�����矾*=o�'/���o�~��~�Ώ��ݯ� ->]z��n_?n�L��>�u��ځ�����Q���W�<P�Oϯ�I���W���>m_ÃTdz�.���5��H(u��ځ��5��wT���W�<P���֪��W���>o_íC�G��r��gi��^A;�@ݾ����^Q;�@�J����sF�s�.�<����}�ځ<����}�ځ<����}�ځ<�!Է�P�@��Pj�>P�@��Pj�>P�@��Pj�>P�@��0�� u ��f����f��Ĺ���4+��>�9�>]y�C���@�y�C���@�y�C���@�y�ès��%��>���T;��>���T;��>���T;��>�:�>H]y�C���@�y�C���@�y�C���@�y�ès��%��>���T;�>:�>Ь8��Pf�>�@��0�� u ��f����f����f����ιR�@��Pj�>P�@��Pj�>P�@��Pj�>P�@��0�� u ��f����f����f����ιR�@��P�>����0��P���@��x�C���@�y�C�os���<����}�ځ<����}�ځ<����}�ځ<�a�9�A��sJ����sJ����sJ����sF�s�.�<����}�ځ<����}�ځ<����}�ځ8�a��}��q8���1��d��܇23��h�܇R3��j�܇Q���K �}(5s�v �}(5s�v �}(5s�v �}u�}���܇R3��j�܇R3��j�܇R3��j�܇Q���K �}(5s�v �}(5s�v �}(t�}�Yq8�a��}�q<����} ځ<����}�ځ<����}�ځ<�a�9�A��sJ����sJ����sJ����sF�s�.�<����}�ځ<����}�ځ<����}�ځ<�!Է�P�@��Pj�>P�@��Pj�>P�@��P��@��x�Øs��%��>���T;��>���T;��>���T;��>�:�>H]y�C���@�y�C���@�y�C���@�y�ès��%��>���T;��>���T;��>���T;��>�:�>H]y�C���@�q�C�c�͊�ef����ιR�@��Pj�>P�@��Pj�>P�@��Pj�>P�@��0�� u ��f����f����f����ιR�@��Pj�>P�@��Pj�>P�@��Pj�>P�@��0�� u Ĺ���4+��>���D;��>���T;��>�:�>H]y�C���@�y�C���@�y�C���@�y�C�os���<����}�ځ<����}�ځ<����}�ځ<�a�9�A��sJ����sJ����sJ����s����s�^!�>�c���w��|�|8�q�Q���[�������>�'^?�����/�ݧϟ>�~�����w�������}�{�C�D.���m~�2��G�]��x\���C@��\�m�Ԡ��8.A2h"+�ІL�Ȋ��� g�Ȏ��!S}&���l�����8l=q�� |ƕg��3��}gC��Ld�q�ِ�:Yq�t6d��DVל9[�@vw� ��3��gC��Ld�q�ِ)7Yq\m�l6�q�k6dj�DV�� �N3�ǍfC��Ld�q�Y���d�q�ِ�2YqXd6��1�>�[�L��Ċ� -� g�Ȏ���!S_&�⸼l�t���8n.2�e"+�k˂��e ;�;ˆLe�Ȋ�²!�W&�⸭lȔ���8�*r6���8�)25e"+�KʆLG�Ȋㆲ!SP&�⸞,��N�㨛l���Lܻ(,&m���{ƭd��Lb�q%�:��H>&�8�#2ud"+��ȆL�Ȋ�&�!SD&�⸆,��B�㸃l�T���8. 2�c"+��džL��Ȋ�� g�Ȏ�ޱ!S;&��tl�t���8n2�c"+��BL�� -î��F��a\46`z�$V�� ��1��cAΆ1���bC�^Ld�q�ؐ�Yq�,6d��DV9[�@vw� �J1�DžbC�OLd�q�ؐ)Yq\%�l�q�#6dj�DV�� �1�� b#�1��ð>,�����0�0�a+��ÆLo�Ȋ�ְ!S&��2,����/l�ԅ��8.2]a"+��LQ�Ȋ㚰 gKȎ㎰!S&�� l�8n2�`"+����ɷf�1��q/ؐ�Yq\ -6d:�DV6��8 -���:��gĎ�.�!S&��l�8n2%`"+�+��� ` ;����L��Ȋ��!��%���k���8�� -r�~��8��2�_"+���LߗȊ㶯!S�%���+������k��|��8,�qt| |� _��Kb�q�W���d�q�א��Yq\�5dz�DV�z �R/�Ǖ^A�F/��}^C��Kd�q�א��Yq��5d��DV�x9[�@vwx � -/��^C��Kd�q{א)�Yq\��l��q��5���>�K�Lg�Ċ�Ʈ!S�%�⸮+����㸫k�Tu��8.�2=]"+�[��LI�Ȋ��u�{L.q��5d�DV�s �n.���\C��Kd�q-W���d�q'א��Yq\�5d��DV�q �2.��U\!��`�a�����K�a�p�>���射{�9��;�w����%����z�-�~���ϟ�|�i� _��J���e�����}���o�J���S���*�� ЪD��W��+Q�@�V*tt+Ѭ8nWs�+ ]�`��4,Q�@�X*5%KT;�k�JM��䦥QgՒ�%�˖JM��侥RS�D��r��t.Q�@n]u�.I]�x��4/Q�@�^*5�KT;��JM����Qg��%�K�JM���BG͊�*�2��D���i�Y�$u �B�R��D����Ԕ2Q�@�e*5�LT;���F��LR�@.g*5�LT;���JMA�䊦R��D���i�Y�$u 䢦R��D����Ԕ5Q�@�k*5}MT;��F��MR�@*m*som��>{� -�M+����Lw����P�ꛠ��\�Tj��v w8��'��5N��ljjr�Ө��I��eN��͉jr�S�)t�ځ\�Tj:��v �:�:k��.�\�Tj���v w;��r'���N��߉jb�Ӡ�x��qX�T�hy"Yq��Tf���v W=���'��mO�κ'�K >���'�ȝO���jr�S��}�ځ��4�~��r�S�i�ځ��Tj -��v W@��(��-P��(�K A��&(��]P���jbT���f�a#Ԑ���q\ -UfZ��v �B��b(���P���jr;Ԩ�J��Q��!�jrGT�)��ځ\Ujz��v 7E�:���.�\Ujڢ�v �E���(�ȕQ��3�jrkT�o�QP�@.�*5�QT;���JMy����BG͊��1g���%�K�JM����RS$E��J��tIQ�@n�u�II]�P��4JQ�@�*5�RT;�k�JM���f�Qg���%�˥JM���~�RS0E��b��tLQ�@n�u�LI]�h��4MQ�@�*t�MѬ8��*3}SD;��F��SR�@.�*5�ST;�{�JM����R�=E��}j�Y?%u ��R�@E����ԔPQ�@��*5=TT;���F�UTR�@.�*5mTT;���JM!��J�R�IE���j�YK%u �b�BG3͊�n�2SNE������SQ�@n�uVTI]���ԴTQ�@�*5EUT;���JMW�䶪P�ꪠ��\XUj��v wV���*�ȵU����jrsը��J���U����jrU�)��ځ\aUj:��v �X �+��E��"�k���U�w�������{���{vs~�2�x��=�2�����������y���k�u����������}���>n��矷�p��������×���5ׇ���\��}�;�՝��=I=����q=���D;��)F��R�@��(5�T;��)JM=��z�RSOA���b�YO!u �z�RSOA������SP�@��(5�T;��)F��R�@��(5�T;��)JM=��z�RSOA���b�YO!u �z�2�z -��ð���QOA�⸞���S�@������������jr=E����ځ\OQj�)�v �S�:�)�.�\OQj�)�v �S��z -�������jr=Ũ��B�������jr=E����ځ\OQj�)�v �S�z -���E�z -���e���hr=E����ځ\O1��r=E����ځ\OQj�)�v �S��z +�h4+�[��L+��V�Qg+��%�[�JM+��V�RӊF���Դ�Q�@nEu��I]��Դ�Q�@nE+5�hT;�[�JM+��V�Qg+��%�[�JM+��V�RӊF���Դ�Q�@nEu��I]���ъF���̴��@nE+5�hT;�[�F��hR�@nE+5�hT;�[�JM+��V�RӊF��-ԷV4�k ����V4�ȭh���jr+Z�iE�ځ܊6�lE��r+Z�iE�ځ܊VjZѨv ����V4���h��Mf�a+k���c���}jE��}˭�����Z�㑽}7Z���O� �o���?|���>~݇�~�>�Ľ)�'9o�=��=�� �r�����<~�����M��o�Vj���j�ۿ����ځ��o���jr�]�o=wP�@�+5=wT;�{�JM��䞻R�sG���n��s'u 䞻R�sG������Q�@�+t��Ѭ8�s�� ]�����Q�@�+5=wT;�{�JM��䞻Qgϝ�%�{�JM��䞻R�sG������Q�@�u��I]�����Q�@�+5=wT;�{�JM��䞻Qgϝ�%�{�JM��Ğ�BG�͊㞻2�sG���n��s'u 䞻R�sG������Q�@�+5=wT;�{�F�=wR�@�+5=wT;�{�JM��䞻R�sG���n��s'u 䞻R�sG������Q�@�+5=wT;�{�F�=wR�@�+s﹣�>{� +=w+�{��L��䞻P�z��sWjz�v �ܕ��;��=w���jr�ݨ��N��=w���jr�]�鹣ځ�sWjz�v �܍:{�.��sWjz�v �ܕ��;��=w���jb�ݠ鹓�q�sW��#Yq�sWfz�v �ܕ��;��=w�Ξ;�K �ܕ��;��=w���jr�]�鹣ځ�s7�칓�r�]�鹣ځ�sWjz�v �ܕ��;��=w�Ξ;�K �ܕ��;��=w���jb�]���f�a�ݐ��q�sWfz�v �ܕ��;��=w���jr�ݨ��N��=w���jr�]�鹣ځ�sWjz�v �܍:{�.��sWjz�v �ܕ��;��=w���jr�]�o=wP�@�+5=wT;�{�JM��Ğ�BG�͊㞻1gϝ�%�{�JM��䞻R�sG������Q�@�u��I]�����Q�@�+5=wT;�{�JM��䞻Qgϝ�%�{�JM��䞻R�sG������Q�@�u��I]�����Q�@�+t��Ѭ8�+3=wD;�{�F�=wR�@�+5=wT;�{�JM��䞻R�sG���n��s'u 䞻R�sG������Q�@�+5=wT;�{�F�=wR�@�+5=wT;�{�JM��䞻R�sG���n��s'u Ğ�BG�͊㞻2�sG������Q�@�u��I]�����Q�@�+5=wT;�{�JM��䞻P�z��sWjz�v �ܕ��;��=w���jr�ݨ��N��=w���jr�]�鹣ځ�sWjz�v �� ��;��=�㺶���=�w��|sw�s?�(��O�����~��_z��|z��_q�|�y�Dw�o�h<2�x�<3:���?���w���o��>~�����?���;�����������>~��{�~=��]x~8��|���Y�{���M��>刬8��2-9"+�;r�LE�Ȋ゜ g?Ȏ�v�!S�#��g�4㈬8��2�8"+�Kq���8 ;�q�L!�Ȋ�:�G���a܅3`�p$V�9{p@v�����8C�Gd�q�͐��Yq\~���q�|3d�oDV�����ǝ7C��Fd�q�M���d�q�͐)�Yq\u3d�nDV������%7AΎ�G 7�7��Ea��h��F��0�0�6+��m�ɷ^�1��q�͐)�Yq\i3dmDV���:��e6A�.��M6C��Fd�q�͐i�Yq�a3d*lDV�9�k@v�������5C��Fd�qo͐��YqXZb:k�V67 +k�㺚�V#�⸫f�TՈ�8.� r�Ԁ�8n�2%5"+�+j�LC�Ȋ�~�!SO#�⸜&��M�㸙f�ӈ�8��2�4"+�;i�L%�Ȋ�B� g Ȏ�6�!SF#�⸊f�4ш�8�q��|�%4^�q̀)��Xq\?3d�gDVw������3A���ǭ3C�tFd�q�̐i�Yq�73d�fDV��9�f@v7�����53C�eFd�q�̐��Yq\0�N��ˎ�%��e�L��Ȋ�j�!�,#��Wf�Q+#�}��8;e v7��B��u2C�MFd�q�̐��Yq\$���q�"3dJdDVW�����1C�>Fd�qyL��;d�qs̐)�Yq\3dZcDVw����Dž1Aξ��m1C�,Fd�aÜ�)F��0�051+�Kb��1 ;�b�LA�Ȋ�z�!�#��f�TÈ�8.� r��8n�2�0"+�+a�L#�Ȋ�>�!S#��&���� f����8��2-0"+�;`�L�Ȋ�� g�Ȏ���G����a\�2`�_$V�����ǥ/A���Ǎ/C��Ed�q�ːi{Yq��2d�^DV���o=�cr�㖗!S�"���e�4���8�w2�."+��]���. ;��]�L��Ȋ�Z�!��"���e�T���8,t 1}.�+�\��#W��0�\o�|�pX�:���Xz��o,���������X:y�@7���_~�����W���m���[�LO��G�(�������ϼ�T_�>���t�p��1.���W�<P�O/�Vݟ��v�e��|���K��:�eu <P�o��/�*u��ځ��5���?{E��u�^�o��?{E������t��WJ�:�eu <P�N��Vݟ��v���x�{z����������_2U����/�O��� ��,�K���} ��8Jݟ��v���} �?Ҕ�?{E��u�n��?{E������5�? �q����������;��������br��M�v ��ܨ�M�.���s��M�v ��\�y�9��o:Wj�t�j�΅���sP�@~ӹR�sT;��t�Լ���7�+5o:G��M�F�o:'u �7�+5o:G��M�J͛�Q�@|ӹBǛ�Ѭ8~ӹ1�� ]�M�J͛�Q�@~ӹR�sT;��t�Լ���7�u�����~�R3��j�R��j�R3�j�Q��K o�(5c.�v Ϲ(5{.�v /�(5�.�v ��u�����R3�jⴋBǶ���.�̼��/F�/�.���Ԍ��ځ<��켠ځ����L��ځ<�bԹ�B��{/J���ȓ/J���ȫ/J�����/F��/�.����Ԍ��ځ<���쿠ځ����L��ځ<cԹC�H;0�܇`P|�S0 +[0(V��(3s0�v ��m�5�7a��QT;�ga��]T;��a��iT;��a�:�aH]yF��A�y"F�وA�y%F���A�y(ƨs)��%��b���T;��b���T;�c���T;Gc��2;wc9�c��8��Qf�c�@^�Qj�cP�@�1�\�!u � �fD���fG��%�fJ��1��5R�@ޓQjeP�@��Qj6eP�@^�QjfeP�@�1�\�!u �m�f\��y�f_�ą���4+Gf��";�wf���D;��f���T;��f���T;�g�:gH]ysF��A�yvF�ٝA�yyF���A�y|ƨs}��%��g��T;�'h�� T;�Wh��T;��h���D��[4J� ��s4J� ���4 +�4hV��s����.�R3L�j�4�R�M�j�:�R3O�j�@�Q�B �K o�(5#5�v ��(5;5�v /�(5S5�v ��u�Ր��^�R3X�j�d�R�Y�j�j�R3[�j�p�Q�r �K o�(5�5�v ��(t�נYq�`��L� ځ<bcԹbC��;6J͐ ��S6J͖ ��k6J͜ �ȃ6F��6�.��i�Ԍڠځ<k���ڠځ�l��L۠ځ<ncԹnC���6J�� ��7J�� ��+7J�� ��C7F�K7�.��u��1v�f��܍2�w�h��R3y�j��Q�� �K ��(5�7�v O�(5�7�v ��(5�7�v ��m�5�7p��T;�gp��T;��p��)T;��p�:�pH]yG��A�yG���A�yG���A�qǠY�!��p�V_�8~�����s�<��Gy�����(yg���o�i'�����>ο�ӟ~��ݷ���ç��u������x������������ծ�>��[�����ѯd����3�?�a����8n\"�b�ҩ�q�jb�ҩ�q�jb�ҩ�q�jb�R�i\��b�ҩ�q�jb�ҩ�q�jb�ҩ�q�jb�R�i\��b�ҩ�q�jb�ҩ�q�jb�ҩ�q�jb�R�i\��b�ҩ�q�jR�ҡ{�͊�ƥ3G���ƥRӸDu �ƥSG���ƥSG���ƥSG���ƥRӸDu �ƥSG���ƥSG���ƥSG���ƥRӸDu �ƥSG���ƥSG���ƥSG���ƥRӸDu �ƥ3m\��>����,V6.�9��v 6.�:����ظt�h\�ځظt�h\�ځظt�h\�ځظTj��.�ظt�h\�ځظt�h\�ځظt�h\�ځظTj��.�ظt�h\�ځظt�h\�ځظt�h\�ځԸT�h\��qԸt�d��q��Ѹd��q��Ѹd��q��4.Q]�q��Ѹd��q��Ѹd��q��Ѹd��q��4.Q]�q��Ѹd��q��Ѹd��q��Ѹd��q��4.Q]�q��Ѹd��q��Ѹd��q�нq�f�Q�R��q�d�a�ҙ�q�hb�ҩ�q�jb�ҩ�q�jb�R�i\��b�ҩ�q�jb�ҩ�q�jb�ҩ�q�jb�R�i\��b�ҩ�q�jb�ҩ�q�jb�ҩ�q�jb�Ҩ�qI���K���%���K���%�H�K��K6+��L��%�N�KV;�N�KV;�N�KV;�JM��%�N�KV;�N�KV;�N�KV;�JM��%�N�KV;�N�KV;�N�KV;�JM��%�N�KV;����lV6.�9��v 6.���%�K 6.�:��v 6.�:��v 6.�:��v 6.���%�K 6.�:��v 6.�:��v 6.�:��v 6.���%�K 6.�:��v 6.�:��v 6.�:��v 6.���%�K 5.�7.٬8l\:s4.�@l\:u4.Y�@l\*5�KT�@l\:u4.Y�@l\:u4.Y�@l\:u4.Y�@l\u6.I]�q��Ѹd��q��Ѹd��q��Ѹd��q��4.Q]�q��Ѹd��q��Ѹd��q��Ѹd��q��ѸD��q�=AѸ䏱?T����%|��qy�����������Ot;���7�������ϟ���S��Oߜo>��Ͽ�����?�7l�@�������_^�L�u<��������8~�3��/pv�x�3��/pv�x�3��/pVj^����/pv�x�3��/pv�x�3��/pv�x�3��/p6�|�3�k ��٩�άv ��٩�άv ��٩�άv ��Y�y�3�K ��٩�άv ��٩�άv ��١cN�͊�9c�9B�@�Pj�P�@�Pj�P�@�Pj�P�@�0� u �9�fN���9�fN���9�fN���9��9R�@�Pj�P�@�Pj�P�@�Pj�P�@�0� u �9�fN���9��94+����9D;���:�H]yN@��@�yN@��@�yN@��@�yN��sN��%����9T;����9T;����9T;���:�H]yN@��@�yN@��@�yN@��@�yN��sN��%����� ��>�8�P�8�Pf��@��ۜ��k � (5s�v � (5s�v � (5s�v � u� ���R3'�j�R3'�j�R3'�j�Q���K � (5s�v � (5s�v � (5s�v � 4sdv� (r� Yq<'��� ځ<'��� �ځ<'`�9'@��sJ͜���sJ͜���sJ͜���sF�s�.�<'��� �ځ<'��� �ځ<'��� �ځ<'`�9'@��sJ͜���sJ͜���s +shV� 2sDv� (3s�v � (5s�v � (5s�v � u� ���R3'�j�R3'�j�R3'�j�Q���K � (5s�v � (5s�v � (5s�v � �mN��5����9T;����9T;�:�Ь8�0� t �9�fN���9�fN���9�fN���9��9R�@�Pj�P�@�Pj�P�@�Pj�P�@�0� u �9�fN���9�fN���9�fN���9��9R�@�Pj�P�@�P�@��xN@��@�yN��sN��%����9T;����9T;����9T;���:�H]yN@��@�yN@��@�yN@��@�yN��sN��%����9T;����9T;����9T;���:�H]qN@�cN�͊�9efN���9�fN���9��9R�@�Pj�P�@�Pj�P�@�Pj�P�@��ۜ��k � (5s�v � (5s�v � (5s�v � u� ���R3'�j�R3'�j�R3'�j✀A3'@f���q�� ��s�>����9�������n���w8'0y�Dw���~�'>}�������?�����z������x���t>�=>. +���w6��}������.��xWj�v 7ޕ��;�ȍw���jr�]�o�wP�@n�+5�wT;��JM���ƻR�xG���n��x'u �ƻR�xG����4�Q�@l�+t4�Ѭ8n�s6� ]���4�Q�@n�+5�wT;��JM���ƻQg��%��JM���ƻR�xG����4�Q�@n�u6�I]���4�Q�@n�+5�wT;��JM���ƻQg��%��JM���ƻBG�͊�ƻ2�xG���n��x'u �ƻR�xG����4�Q�@n�+5�wT;��F��wR�@n�+5�wT;��JM���ƻR�xG���n��x'u �ƻR�xG����4�Q�@n�+5�wT;��F��wR�@j�+so���>� +�w+���L���ƻP���xWj�v 7ޕ��;�ȍw���jr�ݨ��N�ȍw���jr�]�i��ځ�xWj�v 7ލ:�.��xWj�v 7ޕ��;�ȍw���jb�ݠi���q�xW�h�#Yq�xWf�v 7ޕ��;�ȍw���;�K 7ޕ��;�ȍw���jr�]�i��ځ�x7�l���r�]�i��ځ�xWj�v 7ޕ��;�ȍw���;�K 7ޕ��;�ȍw���jb�]���f�a�ݐi��q�xWf�v 7ޕ��;�ȍw���jr�ݨ��N�ȍw���jr�]�i��ځ�xWj�v 7ލ:�.��xWj�v 7ޕ��;�ȍw���jr�]�o�wP�@n�+5�wT;��JM���ƻBG�͊�ƻ1g��%��JM���ƻR�xG����4�Q�@n�u6�I]���4�Q�@n�+5�wT;��JM���ƻQg��%��JM���ƻR�xG����4�Q�@n�u6�I]���4�Q�@l�+t4�Ѭ8n�+3�wD;��F��wR�@n�+5�wT;��JM���ƻR�xG���n��x'u �ƻR�xG����4�Q�@n�+5�wT;��F��wR�@n�+5�wT;��JM���ƻR�xG���n��x'u �ƻBG�͊�ƻ2�xG����4�Q�@n�u6�I]���4�Q�@n�+5�wT;��JM���ƻP���xWj�v 7ޕ��;�ȍw���jr�ݨ��N�ȍw���jr�]�i��ځ�xWj�v 6� ��;����㺶k�����w����ei�������]R�}<����G���|��onn����O_>��U�y�?yy��~K��vw�v~<��~��W�������u��q�ez~��A.���W�<POwO�Rݟ��v���|z~��MJݟ��v�e�i��:�eu <P����FB���W�<P����?�Jݟ��v���} �Vݟ��v�e�y�n�?�f���wp>Ks� +ځ���Xu��ځ�X�Pj�>P�@��0�� u ��f����f����f������}���܇R3��j�܇R3��j�܇R3��j�܇Q���K �}(5s�v �}(5s�v �}(t�}�Yq<�a�9�A��sJ����sJ����sJ����sF�s�.�<����}�ځ<����}�ځ<����}�ځ<�a�9�A��sJ����sJ����sJ����sF�s�.�<����}�ځ8���1��f��܇23��h�܇Q���K �}(5s�v �}(5s�v �}(5s�v �}u�}���܇R3��j�܇R3��j�܇R3��j�܇Q���K �}(5s�v �}(5s�v �}(5s�v �}u�}���܇2��߇�܇����s�����sB}���u ��f����f����f����ιR�@��Pj�>P�@��Pj�>P�@��Pj�>P�@��0�� u ��f����f����f��Ĺ�f�̎ùE��$+��>���D;��>���T;��>�:�>H]y�C���@�y�C���@�y�C���@�y�ès��%��>���T;��>���T;��>���T;��>�:�>H]y�C���@�y�C���@�q�C�c�͊ùCf�Ȏ�ef����f����f����ιR�@��Pj�>P�@��Pj�>P�@��Pj�>P�@��0�� u ��f����f����f������}���܇R3��j�܇R3��j�܇B����sƜs�.�<����}�ځ<����}�ځ<����}�ځ<�a�9�A��sJ����sJ����sJ����sF�s�.�<����}�ځ<����}�ځ<����}�ځ<�a�9�A��sJ����s +shV�}(3s�v �}u�}���܇R3��j�܇R3��j�܇R3��j�܇Q���K �}(5s�v �}(5s�v �}(5s�v �}u�}���܇R3��j�܇R3��j�܇R3��j�܇Q���K �}(t�}�Yq<����} ځ<����}�ځ<�a�9�A��sJ����sJ����sJ����sB}���u ��f����f����f����ιR�@��Pj�>P�@��Pj�>P�@��Pj�>P�@��0h�>��8���� +1��c�}��盧ù�㏲�}�����_+_x�c���<��������}��������|��?~���K���?%M��/�����,C�م~���U�>4���%�{ІL �Ȋ��!Ӂ&��m����8�?r����8�>2�g"+��φL�Ȋ�ֳG���a\y�l<��q�w6d��DV�� ��3��MgC��Ld�q�Y���d�q�ِ�8Yq\p6d��DV�� �r3���fA�f3�ǽfC��Ld�q�ِ�4Yq�h6d +�DVי9��@vw� �*3��Ef#�3��ø�l���I�8�0r6���8�/2�e"+��ˆLw�Ȋ��!S\&�⸶,��Z�㸳l�T���8.,2}e"+��ʆLY�Ȋ㪲 gSȎ㞲!SS&�⸤l�t���8n(2e"+��ɂ��d ;���ܫ�Ľ��b��F/���a�J6`J�$VW���o��cr��>�!SG&�⸌l�t���8n"2Ed"+�kȂ�-d ;�;ȆL�Ȋ��!�?&��}lȔ���8�r6���8�2�c"+�KdžL�Ȋ�Ʊ!S8&��n,Ĵ��0�oT��{�Ec�gLb�q�ؐ)Yq\1�l�q�/6d��DV�� �n1���bC�XLd�q�X��Ud�q�ؐ�Yq\(6d��DV�� �21��UbA�&1��=bC�FLd�q�ؐ�Yq� 6�(�>���K{� +��S&��8l�8n 2�a"+�+Â��a ;��L]�Ȋ㲰!�&��)l����8� r����8�2a"+�L?�Ȋ�v�!S&��|�|k�K�� �Z0�ǥ`C�Ld�a#؈�L��0�p��A�8�2U`"+����L�Ȋ��!S&��,������k����8.�2�_"+����L�Ȋ�گ g�Ȏ�ί!S�%���k��}��8n�2e_"+�����M_ ;�{��L͗ȊÒ�GǗ��a��5` +�$V�{9۽@vw{ �j/���^C��Kd�q�א)�Yq\��l��q��5d�DV�y �./��M^C��Kd�q�W���d�q�א��Yq\�5d��DV�w ��.���]A��.���]#��.��ø�k�tvI�8n�2�]"+�뺂�m] ;����LU�Ȋ㢮!��%�⸥kȔt��8��^'������\C��Kd�q9א��Yq��5d��DV�r9[�@vwr �J.�Dž\C��Kd�qא)�YqX�b���V�p�O*j��F��C�o�K���c�����{w��/X���~�����ᇏ��������˿\����?P���C�������R xv*�}��R��Z��v �*��b%���J��n%���Jc�z%�K ,���%��K��d�jr�R��Y�ځܴ4�Z��r�R�i[�ځܷTj +��v W.���%�ȭK���%�K /���%���K��|�jr�R��_�ځ��4�`��r S�ia�ځ��T�(b�Yq\�Tf���v �1�:똤.�\�Tj��v w2��R&�ȵL����jr3Ө��I���L����jr?S�)h�ځ\�Tj:��v �4�:k��.�\�Tj���v w5���&��uM����jrcӨ��I�H�Me�M߇aoS����b�quS��n"ځ���[}�5��JM����RS�D��Ʃ��8Q�@nruV9I]�̩Դ9Q�@�s*5�NT;�+�JM���V�Qg���%���JM���n�RS�D��ީ��;Q�@lx4O2;K��-O$+�{��L��䪧R��D���i�Y�$u �§R��D���Ԕ>Q�@�}*5�OT;���F��OR�@.*5�OT;���JM�� +�R�E��j�Y%u �"�R�E���ԔAQ�@��*t�AѬ8l�2�P";�K��L+��^�RSE����tCQ�@n�u�CI]� ��4DQ�@�*5%QT;�k�JMO�䦨QgU��%�ˢJM[�侨RSE��2��tFQ�@n� +��6 +���Q��9�jrwT�)��ځXU�菢Yq� 5欐�r�T�i��ځ�#Uj���v WI��.)��mR��:)�K J��F)�ȝR��T�jr�T�镢ځ�,5ꬖ��r�T�i��ځ�/Uj +��v WL���)��-S�Κ)�K M���)��]S���)��uSe�o�hr�Ԩ�rJ�ȥS��u�jr�T�)��ځ\=Uj���v �O�:매.�\@Uj��v wP��*��5T����jrը��J��eT����jrU�)��ځ\IUj:��v �R�:k��.�XLU�h��Yq�MUfʩ�v �S��~*�� U�Ί*�K �T���*��=U����jrUU�骢ځ�V�[]�5��JMc��ΪRSZE������VQ�@n�uVWI]���ԴWQ�@�*5VT;�+�JM����ASc%���z\�tMV�����sP�����y/����n�OXf��~��Qf�w�����9?|��7�}-�����������w�����������ퟸ��|�|��ˏ������_�zs.��>����z +������丞��ǀz +�����z +�K �S��z +�������jr=E����ځ\O1��r=E����ځ\OQj�)�v �S��z �����z �K �S��z -�������jr=E����ځ\O1��r=E����ځ\OQj�)�v �S:�)hV�S�z -���e���hr=E����ځ\OQj�)�v �S�:�)�.�\OQj�)�v �S��z -�������jr=Ũ��B�������jr=E����ځ\OQj�)�v �S��VOu �z�RSOA������SP�@��(t�SЬ8��s�S]�����SP�@��(5�T;��)JM=��z�Qg=��%��)JM=��z�RSOA������SP�@��u�SH]�����SP�@��(5�T;��)JM=��z�Qg=��%��)JM=��z�BG=͊�z�2SOA���b�YO!u �z�RSOA������SP�@��(5�T;��)F��R�@��(5�T;��)JM=��z�RSOA���b�YO!u �z�RSOA������SP�@��(5�T;��)F��R�@��(t�SЬ8��(3�D;��)JM=��z�Qg=��%��)JM=��z�RSOA������SP�@������������jr=E����ځ\OQj�)�v �S�:�)�.�\OQj�)�v �S��z -�������jb=Š����qXO��������w���)���{�����=?b=e<����G=���=|����?��wS�Oy~=Mx�P�ҿ�{���v~8��=��O�����������7�� ���+j�����U�g��x�>�^^o_��?{E������t�����,�K��zwz~�����������R�g��x�>��_�&�R�g��xY}ھ���gY]��kx�}Q������kx�c�R�g��x�n_íU�g��xY}�[��q�����ܟ��v���}7Vݟ��v�����`�����W�����O����x��%�@�;==Yu��ځ����Q���^Q;�@ݾ��g<{E���ݞ��k�wj�Eu <P����Q���W�<P����I���W�<P���l���+j�w�ب�-ä.���a��-èv �eX�y�0��oV�x�0��o6�|�0�K �eX�y�0��oVj�2�j�[�����ځ��a�η���[�����ځ��a��-èv �eX�y�0��o6�|�0�K �eX�y�0��oVj�2�j�[�����ځ��a�η���[�����ځ��a��4+�g\��D;�g\�:g\H]y�E��qA�y�E��qA�y�E��qA�y�Ũsƅ�%�g\��T;�g\��T;�g\��T;�g\�:g\H]y�E��qA�y�E��qA�y�E��qA�y�Ũsƅ�%�f\��ϸ��>g\8f\P�8�qQff\�@�q�ی�k ϸ(53.�v ϸ(53.�v ϸ(53.�v ϸuθ���R3�j�R3�j�R3�j�Q��K ϸ(53.�v ϸ(53.�v ϸ(53.�v θ43.dvθ(r̸ Yq<��̸ ځ<��̸�ځ<�b�9�B��3.J͌��3.J͌��3.J͌��3.F�3.�.�<��̸�ځ<��̸�ځ<��̸�ځ<�b�9�B��3.J͌��3.J͌��3. -3.hVθ23.Dvϸ(33.�v ϸ(53.�v ϸ(53.�v ϸuθ���R3�j�R3�j�R3�j�Q��K ϸ(53.�v ϸ(53.�v ϸ(53.�v ϸ�m��5�g\��T;�g\��T;g\:f\Ь8�q1�q!t ��f����f����f�����R�@�qQjf\P�@�qQjf\P�@�qQjf\P�@�q1�q!u ��f����f����f�����R�@�qQjf\P�@�qQ�qA��x�E��qA�y�Ũsƅ�%�g\��T;�g\��T;�g\��T;�g\�:g\H]y�E��qA�y�E��qA�y�E��qA�y�Ũsƅ�%�g\��T;�g\��T;�g\��T;�g\�:g\H]q�E�c�͊�ef����f�����R�@�qQjf\P�@�qQjf\P�@�qQjf\P�@�q�ی�k ϸ(53.�v ϸ(53.�v ϸ(53.�v ϸuθ���R3�j�R3�j�R3�j⌋A3�Bf������c����8�og\�?ʟ5�r��`�%��~��9��t������`��~����z��nN~{8�2�M�����p���9�6a�q�D��6Au �i��iV;�M�:�MX�@�6q�6a�q�D��6Au �i��iV;�M�:�MX�@�6q�6a�i�D�c�͎�ig�iF;�M�:�MX�@�6q�6a�q�D��6Au �i��iV;�M�:�MX�@�6q�6a�q�Ĩsڄ�5�M�:�MX�@�6q�6a�q�ĩcڄ��i�f��%�M�:�MX�@�6q�6a�i�ġ�� ���&�̴ �K N�8uL��ځ8m��1m�jⴉSǴ ���&Jʹ �K N�8uL��ځ8m��1m�jⴉSǴ ���&Jʹ �K N�8uL��ځ8m��1m�jⴉSǴ ���&Jʹ �K N�8uL��ځ4m��}ڄ͊�ig�iF;�M��iT�@�6q�6a�q�ĩcڄ��i��iV;�M��iT�@�6q�6a�q�ĩcڄ��i��iV;�M��iT�@�6q�6a�q�ĩcڄ��i��iV;�M��iT�@�6q��&,��i��&,VN�8sL�0ځ8mb�9mB���&N�&�v N�8uL��ځ8m��1m�jⴉR3m����&N�&�v N�8uL��ځ8m��1m�jⴉR3m����&N�&�v N�8uL��ځ8m��1m�jҴ�BǴ �G�&�ܧM��8�6q�6a�q�ĩcڄ��i�f��%�M�:�MX�@�6q�6a�q�ĩcڄ��i�f��%�M�:�MX�@�6q�6a�q�ĩcڄ��i�f��%�M�:�MX�@�6q�6a�i�ġ�� �G�&��&HvN�8sL�0ځ8m��1m�jⴉSǴ ���&Jʹ �K N�8uL��ځ8m��1m�jⴉSǴ ���&Jʹ �K N�8uL��ځ8m��1m�jⴉSǴ ���&F��&���8m��1m�jⴉSǴ �H�&ݧMج8�6Qf�M]q�ĩcڄ��i��iV;�M�:�MX�@�6Qj�MP]q�ĩcڄ��i��iV;�M�:�MX�@�6Qj�MP]q�ĩcڄ��i��iV;�M�:�MX�@�6Qj�MP]q�ĩcڄ��i���&lVN�8sL�0ځ8m��L���ⴉSǴ ���&N�&�v N�8uL��ځ8m��L���ⴉSǴ ���&N�&�v N�8uL��ځ8m��L���ⴉSǴ ���&N�&�v N�8uL��ځ8m��L���Ҵ�C�i6+�M�9�M�@�6q�6a�q�D��6Au �i��iV;�M�:�MX�@�6q�6a�q�Ĩsڄ�5�M�:�MX�@�6q�6a�q�ĩcڄ��i�f��%�M�:�MX�@�6q�6a�q�ĩcڄ��i��i4;��M`�CM����z�9`�>�2mr��&�w�Ϡ;�6����nƶ�����/?~�������Ç���O_>����/������4~�����ỏ���u��e��7���=o9�p��ְ�ߕٰz��rܰ���@� -�����͑�*�(��S������6�0��A�=ٓ�:�T�<�˩x�.�=�D�ف��RjV�v /������+����S /������+�n+4+�V��� -�䅕Q��)�VJ�� -�䅕R��B�ya��,�P�@^Xu,�H�ya��,�P�@^X)5+T;�VJ�� -�䅕Q��)�VJ�� -�䅕R��B�ya��,�P�@^Xu,�H�ia��ua���0\X)p[X�Xq��RfV�v /���XX�:��J�YX�ځ��RjV�v /������+����S /������+�fa�j��J�YX�ځ��2�XX�:��J�YX�ځ��RjV�v /������+�faEf���J��� -Ɋㅕ2��B�ya��,�P�@^Xu,�H�ya��,�P�@^X)5+T;�VJ�� -�䅕Q��)�VJ�� -�䅕R��B�ya��,�P�@^Xu,�H�ya��,�P�@^X)5+T;V -�VhV.�����+efa�h��J�YX�ځ��RjV�v /��:V�N���RjV�v /������+�fa�j��ʨcaE��+�fa�j��J�YX�ځ��RjV�v /���XX�:��J�YX�ځ��RjV�v .��-�Ь8^Xs,��ya��,�P�@^X)5+T;�VJ�� -�䅕Q��)�VJ�� +�������jr=E����ځ\O1��R=E�{=��aXOQਧ�Xq\OQf�)�v �S��VOu �z�RSOA������SP�@��(5�T;��)F��R�@��(5�T;��)JM=��z�RSOA���b�YO!u �z�RSOA������SP�@��(5�T;�)M=�̎�z�"G=Ɋ�z�2SOA������SP�@��u�SH]�����SP�@��(5�T;��)JM=��z�Qg=��%��)JM=��z�RSOA������SP�@��u�SH]�����SP�@��(5�T;�) +�4+�)�L=�Ȏ�z�2SOA������SP�@��(5�T;��)F��R�@��(5�T;��)JM=��z�RSOA���b�YO!u �z�RSOA������SP�@��(5�T;��)B}����r=E����ځ\OQj�)�v �S:�)hV�S�9�)�.�\OQj�)�v �S��z +�������jr=Ũ��B�������jr=E����ځ\OQj�)�v �S�:�)�.�\OQj�)�v �S��z +�������jr=Ũ��B�������jb=E����f�q=E��� ځ\O1��r=E����ځ\OQj�)�v �S��z +�����z +�K �S��z +�������jr=E����ځ\O1��r=E����ځ\OQj�)�v �S��z +�����z +�K �S:�)hV�S��z +�������jr=Ũ��B�������jr=E����ځ\OQj�)�v �S��VOu �z�RSOA������SP�@��(5�T;��)F��R�@��(5�T;��)JM=��z�RSOA���b��S��8��P���S�c�zʻ�A�����k��e����2y�Dϣ���o�>����~ػ)˧<��&��(o�_���^�]�;?�O������C�?���rwzy���_���������٪��W�<P�O/��/Jݟ��v�e��|�{yp�x��%�@�;=?[u��ځ������E���W�<P�OϯQ���W���>m_ÃTdz�.���5�(u��ځ��5���W���W�<P���֪��W���>o_íC�G��r��gi��^A;�@ݾ����^Q;�@}�~��_���+j^V_Χ�g�g<��x�ޝ����?{E����t�(̍g��x�n_Ã��3���v��n���5�;5Ϣ����p�(���+j���p�$���+j���p�����ށ;^ +l���aR�@~˰R�aT;��2�Լe�ķ+t�e͊�s�e��%��2�Լe��+5oF��-�J�[�Q�@~˰Q�[�I]�-�J�[�Q�@~˰R�aT;��2�Լe��u�e��%��2�Լe��+5oF��-�J�[�Q�@~˰Q�[�I]�-�J�[�Q�@|˰Bnj��3.�̌��3.F�3.�.�<��̸�ځ<��̸�ځ<��̸�ځ<�b�9�B��3.J͌��3.J͌��3.J͌��3.F�3.�.�<��̸�ځ<��̸�ځ<��̸�ځ<�b�9�B�H3.��g\P|�3. +3.(Vϸ(33.�v ϸ�m��5�g\��T;�g\��T;�g\��T;�g\�:g\H]y�E��qA�y�E��qA�y�E��qA�y�Ũsƅ�%�g\��T;�g\��T;�g\��T;g\�2;g\9f\��8�qQff\�@�qQjf\P�@�q1�q!u ��f����f����f�����R�@�qQjf\P�@�qQjf\P�@�qQjf\P�@�q1�q!u ��f����f�����4+g\�";�g\��D;�g\��T;�g\��T;�g\�:g\H]y�E��qA�y�E��qA�y�E��qA�y�Ũsƅ�%�g\��T;�g\��T;�g\��T;�g\��6���3.J͌��3.J͌��3. +3.hVϸsθ��R3�j�R3�j�R3�j�Q��K ϸ(53.�v ϸ(53.�v ϸ(53.�v ϸuθ���R3�j�R3�j�R3�j�Q��K ϸ(53.�v θ(t̸�Yq<��̸ ځ<�b�9�B��3.J͌��3.J͌��3.J͌��3.F�3.�.�<��̸�ځ<��̸�ځ<��̸�ځ<�b�9�B��3.J͌��3.J͌��3.J͌��3.F�3.�.�8��1�f��23�h�R3�j�Q��K ϸ(53.�v ϸ(53.�v ϸ(53.�v ϸ�m��5�g\��T;�g\��T;�g\��T;�g\�:g\H]y�E��qA�y�E��qA�y�E��qA�q�Š�q!��pƅVǏ~�1���s�o^g\�?ʟ5�r��`�%��~��9��t������`��~����z��n�'�=�q�&������w8mr�O��ځ8m��L���ⴉSǴ ���&N�&�v N�8uL��ځ8m��L���ⴉSǴ ���&N�&�v N�8uL��ځ4m��1m�f�ᴉ3Ǵ ���&N�&�v N�8uL��ځ8m��L���ⴉSǴ ���&N�&�v N�8uL��ځ8mb�9mB���&N�&�v N�8uL��ځ8m��1m�jⴉR3m����&N�&�v N�8uL��ځ4m��}ڄ͊�ief��%�M�:�MX�@�6q�6a�q�ĩcڄ��i�f��%�M�:�MX�@�6q�6a�q�ĩcڄ��i�f��%�M�:�MX�@�6q�6a�q�ĩcڄ��i�f��%�M�:�MX�@�6q�>m�f�ᴉ3Ǵ ���&Jʹ �K N�8uL��ځ8m��1m�jⴉSǴ ���&Jʹ �K N�8uL��ځ8m��1m�jⴉSǴ ���&Jʹ �K N�8uL��ځ8m��1m�jⴉSǴ ���&Jʹ �K L�8��i߇Ѵ��i+�M�9�M�@�61�6!u �i��iV;�M�:�MX�@�6q�6a�q�D��6Au �i��iV;�M�:�MX�@�6q�6a�q�D��6Au �i��iV;�M�:�MX�@�6q�6a�i�D�c�͎�iG��&LVN�8sL�0ځ8m��1m�jⴉR3m����&N�&�v N�8uL��ځ8m��1m�jⴉR3m����&N�&�v N�8uL��ځ8m��1m�jⴉR3m����&N�&�v N�8uL��ځ4m��}ڄ͊�iE�i$;�M�9�M�@�6q�6a�q�ĩcڄ��i�f��%�M�:�MX�@�6q�6a�q�ĩcڄ��i�f��%�M�:�MX�@�6q�6a�q�ĩcڄ��i��iR�@�6q�6a�q�ĩcڄ��i���&lVN�(3�&�.�8m��1m�jⴉSǴ ���&N�&�v N�(5�&�.�8m��1m�jⴉSǴ ���&N�&�v N�(5�&�.�8m��1m�jⴉSǴ ���&N�&�v N�(5�&�.�8m��1m�jҴ�C�i6+�M�9�M�@�6Qj�MP]q�ĩcڄ��i��iV;�M�:�MX�@�6Qj�MP]q�ĩcڄ��i��iV;�M�:�MX�@�6Qj�MP]q�ĩcڄ��i��iV;�M�:�MX�@�6Qj�MP]i�ġ�� ���&��&�v N�8uL��ځ8m��L���ⴉSǴ ���&N�&�v N�8uL��ځ8mb�9mB���&N�&�v N�8uL��ځ8m��1m�jⴉR3m����&N�&�v N�8uL��ځ8m��1m�jҴ�BǴ �G�&�ԡ�M�c���0me�6��i���g�N��G�O4�M������������on>��O?}��������/�����O���Oߜ?|���O����6G����v�O�����+�m ���Kc�ݓ�̸�q]y���x�S���7q�/�z8O>�y�����?��� +~)ca��ײ������� +�䅕R��B�ya��,�P�@^Xu,�H�ya��,�P�@\X)t[X�Yq��RfV�v /��:V�N���RjV�v /������+�fa�j��ʨcaE��+�fa�j��J�YX�ځ��RjV�v /��:V�N���RjV�v /������+�fa�j��ʨcaE�H+e�+?���J��� +Ŋㅕ2��B�ya%��� +�9�VJ�� �䅕R��B�ya��,�P�@^Xu,�H�ya��,�P�@^X)5+T;�VJ�� �䅕Q��)�VJ�� -�ą�B����+efa�h��ʨcaE��+�fa�j��J�YX�ځ��RjV�v /��:V�N���RjV�v /������+�fa�j��ʨcaE��+�fa�j��J�YX�ځ��RjV�v /��:V�N���R趰B��xa��,��@^X)5+T;�VF+R�@^X)5+T;�VJ�� +�䅕R��B�ya��,�P�@\X4+2;V��VHV/������+�fa�j��ʨcaE��+�fa�j��J�YX�ځ��RjV�v /��:V�N���RjV�v /������+�fa�j��ʨcaE��+�fa�j��J�YX�ځ��R趰B��pae�,���8^X)3+D;�VJ�� +�䅕R��B�yaeԱ�"u +䅕R��B�ya��,�P�@^X)5+T;�VF+R�@^X)5+T;�VJ�� �䅕R��B�ya%��� �9�VJ�� -�䅕R��B�ya��,�P�@^Xu,�H�ya��,�P�@^X)5+T;�VJ�� -�ą�A��"��pa��r+����� V���{y��/�\Xm�|~�?�S�w�O}[���_�qO������߿����߿�����?�۷���ϟ���_읟O�����dOW����j���l�������� кG��u�Դ�Q�@n�u��I��u�Դ�Q�@n�+5�{T;�[�JM���ֽQG��)�Z��\[�(~ �ֽ��=�ǭ{e�u�hr�^���=�s ��=�ȭ{��u�jr�^�iݣځܺ7�hݓ:r�^�iݣځܺWjZ��v ��=�ȭ{���=�S ��=�ȭ{��u�jr�^�iݣځغ7hZ�dv����8n�+3�{D;�[�JM���ֽQG��)�[�JM���ֽRӺG��u�Դ�Q�@n�u��I��u�Դ�Q�@n�+5�{T;�[�JM���ֽQG��)�[�JM���ֽRӺG��u�Эu�f�a�ސi��qܺWfZ��v ��=�ȭ{��u�jr�ި�uO�ȭ{��u�jr�^�iݣځܺWjZ��v ��:Z��N�ܺWjZ��v ��=�ȭ{��u�jr�^���=�s ��=�ȭ{��u�jb�^�[�͊�ֽ1G��)�[�JM���ֽRӺG��u�Դ�Q�@n�u��I��u�Դ�Q�@n�+5�{T;�[�JM���ֽQG��)�[�JM���ֽRӺG��u�Դ�Q�@n�u��I��u�Դ�Q�@l�+tkݣYqܺWfZ��v ��:Z��N�ܺWjZ��v ��=�ȭ{��u�jr�ި�uO�ȭ{��u�jr�^�iݣځܺWjZ��v ��:Z��N�ܺWjZ��v ��=�ȭ{��u�jr�ި�uO���{�n�{4+�[��L���ֽRӺG��uo�Ѻ'u -�ֽRӺG��u�Դ�Q�@n�+5�{T;�[�B}��A��u�Դ�Q�@n�+5�{T;�[�JM���ֽQG��)�[�JM���ֽRӺG��u�Դ�Q�@l�4�{2;[��EpǏ���|j����ק�������Soϛ�o�������N��O�|����g���'��?����_~�}�X痏�������|��<�;t>�O���>N��y~����������<Q�g��Q���y������~,��ޤ�>{�v�s��| 7�nϲ:�����[rJ]�=P;pG]���ߒS���ځ;��5���>{�v�s��| ��%g��YV���z���-9�������O�w��������>�>��>{�v�s�v>��Rݞeu -�Q��A�#�>z`V��|�gi�����.��ͪ�j>W_���*�mϲ:�˷p�?�g��Q���l����w��kx�?�g�|��ϧ��1�=����^O��V]�=P;pG���o��۳j��˟�?�g�|�.����Ju{��)pG]����1�={�v���| W�g{�@��u�.V]�=P;���| �_��lv��|g�g{����u�^��>{�v���~z���g�|�~�O�w�g{��)pG���ެ�>{�v��z?]������ځ;��5��8۳j>_ʾ,_�ͩy�9pG]���]��j���py����ځ;��5���>{�v�s��| /��\�eu -�Q���LJT�g��Q��U�g��Q�Ow�7���f�='/������ɳ�N�;��ܭ�>{�v���|�������.���*��������k�Ju{��)pG]���M��j���ǝ�>{�v���| /V]�=P;p�E�ۛÍ:^EN�ȯ"Wj^E�j�ȕ�W��ځ�*r��U�v ��ܨ�U�N��*r��U�v ��\�۫�Ѭ8~�2�*rD;�_En��*rR�@~�R�*rT;�_E�Լ���W�+5�"G��U�F�"'u -�W�+5G�P�@>���EC��(�Rs ��hFG�H��(�Rs ��hJ�Q4T;���)5G�P�@>�f�q��)���)s=����0<����(��Gє��h�v E��(�s ESj���ځ|M�9��j�Q4��(��Gь:���:�Q4��(��Gє��h�v ESj���ځ|ͨ�(�S ESj���ځ|M�9��j�Q4��(��G���hdvES�v Ɋ�h��Q4D;���)5G�P�@>�f�q��)���)5G�P�@>���EC��(�Rs ��hFG�H��(�Rs ��hJ�Q4T;���)5G�P�@>�f�q��)���)5G�P�@>���EC��(�B��hhVE3d���q|M�9��h�Q4��(��Gє��h�v E3�8�F��Gє��h�v ESj���ځ|M�9��j�Q4���h�N�|M�9��j�Q4��(��Gє��h�v E��(�s ESj���ځ|M�9��j�Q4�nG�Ь8>�f�q��)���)5G�P�@>���EC��(�Rs ��hFG�H��(�Rs ��hJ�Q4T;���)5G�P�@>�f�q��)���)5G�P�@>���EC��(�Rs ��hFG�H��(�Rs �ģh +�䅕R��B�qa��ma�f���ʘcaE��+�fa�j��J�YX�ځ��RjV�v /��:V�N���RjV�v /������+�fa�j��ʨcaE��+�fa�j��J�YX�ځ��RjV�v /��:V�N���RjV�v .��-�Ь8^X)3+D;�VF+R�@^X)5+T;�VJ�� +�䅕R��B�yaeԱ�"u +䅕R��B�ya��,�P�@^X)5+T;�VF+R�@^X)5+T;�VJ�� +�䅕R��B�yaeԱ�"u +ą�B����+efa�h��J�YX�ځ��2�XX�:��J�YX�ځ��RjV�v /������+�>V���RjV�v /������+�fa�j��ʨcaE��+�fa�j��J�YX�ځ��RjV�v .������� �[X���V�g�_X�������a<_pa�=�����cL��m>�u����~�yO���~����m�7�����������_���o?��ϧ�?$<>ٓ���7��{������_�~����{T;�[�JM���ֽQG��)�[�JM���ֽRӺG��u�Դ�Q�@n�u��I��u�̵u���0l�+pkݣXqܺWfZ��v ���h݃:r�^�iݣځܺWjZ��v ��=�ȭ{���=�S ��=�ȭ{��u�jr�^�iݣځܺ7�hݓ:r�^�iݣځܺWjZ��v ��=���{��uOf�a�^�[�Ɋ�ֽ2ӺG��u�Դ�Q�@n�u��I��u�Դ�Q�@n�+5�{T;�[�JM���ֽQG��)�[�JM���ֽRӺG��u�Դ�Q�@n�u��I��u�Դ�Q�@n�+5�{T;[� +�Z�hV�� ��=�ǭ{e�u�hr�^�iݣځܺWjZ��v ��:Z��N�ܺWjZ��v ��=�ȭ{��u�jr�ި�uO�ȭ{��u�jr�^�iݣځܺWjZ��v ���h݃:r�^�iݣځܺWjZ��v �����Ѭ8n�s�� ��u�Դ�Q�@n�+5�{T;�[�JM���ֽQG��)�[�JM���ֽRӺG��u�Դ�Q�@n�u��I��u�Դ�Q�@n�+5�{T;�[�JM���ֽQG��)�[�JM���ֽB��=�ǭ{e�u�hr�ި�uO�ȭ{��u�jr�^�iݣځܺWjZ��v ��:Z��N�ܺWjZ��v ��=�ȭ{��u�jr�ި�uO�ȭ{��u�jr�^�iݣځܺWjZ��v ��:Z��N�غW�ֺG��u�̴��@n�+5�{T;�[�F�{R�@n�+5�{T;�[�JM���ֽRӺG��u/�G��9�[�JM���ֽRӺG��u�Դ�Q�@n�u��I��u�Դ�Q�@n�+5�{T;�[�JM���ֽAӺ'��u�_w�{�[�������GY~z_~��Ѻ_��z{��=�^����vz[~��#]/���=�G>>џ���۷�������Oz�~�f�7��u���������������C�?�O���|;}y�<� O����w���eyީ�j����roR]�=P;�zY���T�gY�w��k��+9������._��_�)u}�@��u��V]�=P;�z]�����3��,�S��z=����R�g��Q�ۛU�g��Q�N��R]�=P;�z;�nw�nϲ:��� �'�>z`V��|/gi�����.��ͪ�j>W_���*�mϲ:�˷p�?�g��Q���l����w��k�"�m���\��O�w�cn{��)pG���ެ�>{�v��z?]_��Gl�����-���1�={�v�su����E�۳�N�;��5�䏹���w��k��8۳j���p����ځ�շ�k��7�>�f���wp�?p�g��Q����U�g��Q�N�������ځ������&�lϲ:����U�g��Q��]��۞=P;pG]���g{�@���K�/��psj�Eu�Q���z����ځ;��5\^��>{�v���| g�����\=/_��c.ϲ:�����]��j����ͪ�j�o�������➓�����~��YF��u��V]�=P;pG]����T�g��Q�o�v����ځ����5\��=����._��&����w����N]�=P;pG]��/V]�=P;p�E�ۛÍ:^EN�ȯ"Wj^E�j�ȕ�W��ځ�*r��U�v ��ܨ�U�N��*r��U�v ��\�۫�Ѭ8~�2�*rD;�_En��*rR�@~�R�*rT;�_E�Լ���W�+5�"G��U�F�"'u +�W�+5G�P�@>���EC��(�Rs ��hFG�H��(�Rs ��hJ�Q4T;���)5G�P�@>�f�q��)���)s=����0<����(��Gє��h�v E��(�s ESj���ځ|M�9��j�Q4��(��Gь:���:�Q4��(��Gє��h�v ESj���ځ|ͨ�(�S ESj���ځ|M�9��j�Q4��(��G���hdvES�v Ɋ�h��Q4D;���)5G�P�@>�f�q��)���)5G�P�@>���EC��(�Rs ��hFG�H��(�Rs ��hJ�Q4T;���)5G�P�@>�f�q��)���)5G�P�@>���EC��(�B��hhVE3d���q|M�9��h�Q4��(��Gє��h�v E3�8�F��Gє��h�v ESj���ځ|M�9��j�Q4���h�N�|M�9��j�Q4��(��Gє��h�v E��(�s ESj���ځ|M�9��j�Q4�nG�Ь8>�f�q��)���)5G�P�@>���EC��(�Rs ��hFG�H��(�Rs ��hJ�Q4T;���)5G�P�@>�f�q��)���)5G�P�@>���EC��(�Rs ��hFG�H��(�Rs �ģh ݎ��Yq|M�9��h�Q4���h�N�|M�9��j�Q4��(��Gє��h�v E3�8�F��Gє��h�v ESj���ځ|M�9��j�Q4���h�N�|M�9��j�Q4��(��Gє��h�v E3�8�F��G��EC���(�2s ��hJ�Q4T;���uE#u -�hJ�Q4T;���)5G�P�@>���EC��(�PG�@��(�Rs ��hJ�Q4T;���)5G�P�@>�f�q��)���)5G�P�@>���EC��(�Rs �ģh�Q42;����rG��clGѾ|����{m��<��]_��_�����O���G�~�H��¶'>?�~�y�=rB�[�Tendstream +�hJ�Q4T;���)5G�P�@>���EC��(�PG�@��(�Rs ��hJ�Q4T;���)5G�P�@>�f�q��)���)5G�P�@>���EC��(�Rs �ģh�Q42;����rG��clG�>}����{m��<��]�ܗ_�����No���G�~�Ho��Oa��?�����9��NI0�endstream endobj 1688 0 obj << /Type /Page @@ -5123,14 +5109,14 @@ endobj /Border[0 0 0]/H/I/C[1 0 0] /Rect [95.641 667.333 312.018 676.244] /Subtype /Link -/A << /S /GoTo /D (3195) >> +/A << /S /GoTo /D (3189) >> >> endobj 1698 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [528.02 667.333 537.983 676.244] /Subtype /Link -/A << /S /GoTo /D (3195) >> +/A << /S /GoTo /D (3189) >> >> endobj 1699 0 obj << /Type /Annot @@ -5142,7 +5128,7 @@ endobj 1700 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [523.039 654.381 537.983 663.293] +/Rect [528.02 654.381 537.983 663.293] /Subtype /Link /A << /S /GoTo /D (trbl-index) >> >> endobj @@ -5156,7 +5142,7 @@ endobj 1702 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [523.039 641.43 537.983 650.341] +/Rect [528.02 641.43 537.983 650.341] /Subtype /Link /A << /S /GoTo /D (trbl-passwd-encryption) >> >> endobj @@ -5359,14 +5345,14 @@ endobj 1731 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [95.641 434.75 209.653 441.723] +/Rect [95.641 434.869 209.653 441.723] /Subtype /Link /A << /S /GoTo /D (gfdl-6) >> >> endobj 1732 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [523.039 434.75 537.983 441.723] +/Rect [523.039 434.869 537.983 441.723] /Subtype /Link /A << /S /GoTo /D (gfdl-6) >> >> endobj @@ -5387,14 +5373,14 @@ endobj 1735 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [95.641 408.966 150.635 415.821] +/Rect [95.641 408.847 150.635 415.821] /Subtype /Link /A << /S /GoTo /D (gfdl-8) >> >> endobj 1736 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [523.039 408.966 537.983 415.821] +/Rect [523.039 408.847 537.983 415.821] /Subtype /Link /A << /S /GoTo /D (gfdl-8) >> >> endobj @@ -5415,14 +5401,14 @@ endobj 1739 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [95.641 383.064 239.291 389.918] +/Rect [95.641 382.944 239.291 389.918] /Subtype /Link /A << /S /GoTo /D (gfdl-10) >> >> endobj 1740 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [523.039 383.064 537.983 389.918] +/Rect [523.039 382.944 537.983 389.918] /Subtype /Link /A << /S /GoTo /D (gfdl-10) >> >> endobj @@ -5467,10 +5453,9 @@ endobj >> stream xڭ�M��}��;?�����y9�!��a����� -Z���]����]���dm�S����b�zP�fr�7�����i�N���r����������|L柿�ˉ��8-��x�O�_���ry�������e�f�M�������O����?���?<<~�~9��>������㗧��w��ÿ|���(��t�.���/G�ߜ��pz��㸿y�8������u���������>|������ҷw��o�|��çO����o�|l�t���u>ѣ��r��P.�yZ+��8t�:���O/��� j>;P5����Q����U;�y:ͮ��T �V�t ������6�u?/S�g�v��4�]5���Q�����zt`J�6���|�=��e� ������T ���WuO�g�v�t����U��}�������6�5]�r0�|v�j`GM�0����T ��v���T �Vos�,�M`G�O��|�)g�v��;�j>;P5������*\�T �V�t ���Sβ�v�t W�g�v�t ��|t`J\�Lw�7�p������1��b��,�M`GMw0�os��@����na���@���z��m������v������,�M`G�O����U;�Λos��@�����a5���ف����9]��T�YV�����ao�͕�U;j���|�+g�v�t ���U��K����6Wβ�v�t ��rr ކu�urɚ�D���i6��������~���'�&�v���?�j>;P5���[X����T ��S�g�n�s�������6�5]ò�j>;P5���k�����T ��v���T �V��t�xopq��&�����`���@����N����U;�yZ�S�g�n��t ��L�(��!��?W��)q2]�a6�|v�j`GM�7�m�ف������_֘j9�j�Q�-��{\9;P5���k0"�T ��i��j>;P5p[]w��l��)gYm;�~��/��@����Nǣ��U;j���|�+g�n��t �ݦ�e� ������T ���=����Q�5�_�с)q��)݁�~��2�q2]��5����u���[�T ��iwv�|v�j�z�M��|�+gYm;�~��w�rv�j`GMװ�j>;P5���k8��q��@��m���ao��,�M`GMװ��q��@������>j>;P5���kعj>;P5pS=�v�����YT����L�����@����N����U;�i2S���M��̷�8�h�Q�����T �����U;j��vg�n�K���T�YV�����a>�j>;P5���k0k'qv�j`G=M狫�U���nڟ���8�j�Q��l�N��@����N����U;j���|�+g�n��t f�$β�v�t {W�g�v�t 旦|t`J\�Lw`�N�����muMw0�j9�j�Q����8;P5����b�N��@���z�NgW�g�n��ݴ���8�j�Q��d�N��@�����au�|v�j`GM�`�N��@��m�������YV�����aq�|v�j`GM�`�N��@���������ف����y7��`"β�v�e:��ףS�:�:�f�$�P 쨧�xr�|v�j�zIw`�O�,�M`GM�`�O��@���������@������,��ف����K�`��8�j�Q�5̮��T ����I���QO�j�>S����λig&�,�M`G]��,��ف��u�vGW�g�v�t �`"�T �V�t �O�|�M���&��耔��.�\K����5]�v��:%~�-��*{9O�_ܕ32�>�z�2��u����6&��t�eص=��w?������~9��z��/G^��P7�������_>�����2����!��/��������s��C��?>�?�T��_��w����n}|���>�qZ^~��j��ԇ�L�V��֊��K�W�_?T�Im��o�Q�GU��o�Q�GU��o�Q�GU��卑�OjH��oð�o��⏢�q��2�⏨r��P�P�@��[jT�Q�@��[jT�Q�@��[jT�Q�@��;j����r��R�⏪r��R�⏪r��R�⏪r��Qkş�&�+��T5�+��T5�+��T5+�25+�Y*�HJW�-3*��j W�-5*��j W��V�Im��o�Q�GU��o�Q�GU��o�Q�GU��卑�Oj�K��?��K��?��K��?��G�R�@��[jT�Q�@��[jT�Q�@��[h���)qX�wȨ��q\�̨�#��\�Ԩ����\�Ԩ����\�w�Z�'� 䊿�F�U 䊿�F�U 䊿�F�U 䊿�֊?�M W�-5*��j W�-5*��j W�-5*��j W� �Z�� 䊿�F�U 䊿�F�U Ċ����?��ǬB�@��[jT�Q�@��[jT�Q�@��[jT�Q�@��;j����r��R�⏪r��R�⏪r��R�⏪r��Qkş�&�+��T5�+��T5�+��T5�+��Z+��6�\�Ԩ����X��R�GS��o�Q�GT��卑�Oj�K��?��K��?��K��?��G�R�@��[jT�Q�@��[jT�Q�@��[jT�Q�@��;j����r��R�⏪r��R�⏪r��R�⏪r��Qkş�&+�Z*�hJW�-3*��j W�-5*��j W��V�Im��o�Q�GU��o�Q�GU��o�Q�GU��o�?�m W�-5*��j W�-5*��j W�-5*��j W��V�Im��o�Q�GU��o�Q�GU��o�Q�GU���Q�'S��o��⏤�q��2�⏨rſ_�*�����w�t+�P��π{_~+��yڟ�X�/Gr)��?<���Ӱ��n~���/_?����/�M��5.����S�O>���^پ~�����7/����>���&�?��R��/P�@��K�Ͽ@U��/,5>�U �Ͽp����6���������_Xj|��ȟa�1�AUy�uCj��K�q���K�q���K�q���G��R�@�XfǠx��,�%��1��D5��1�zǀ��8�Rc���8�Rc���8�Rc���8�Q�8��&��1��T5��1��T5��1��T5��1�Z�1�6�<���Ǡ��<���Ǡ��<���Ǡ��8�q�ǐ�q8���2�AR�xc�1�ATyc�1�AUy�uCj��K�q���K�q���K�q���G��R�@�Xj�cP�@�Xj�cP�@�Xj�cP�@�8jǐ��8�Rc���8�Rc���8�B�8M��q�C�8�H��q�e�8Q �q���8U �q���8U �q���q�M �c,5�1�j �c,5�1�j �c,5�1�j �c��cHmyc�1�AUyc�1�AUyc�1�AUyc��q�m �c,5�1�j �c,5�1�j �c,��cД8�8f���8�Rc���8�Rc���8�Rc���8�Q�8��&��1��T5��1��T5��1��T5��1�Z�1�6�<���Ǡ��<���Ǡ��<���Ǡ��<�q�:�!� �q���8U �q���q���ˌq���G��R�@�Xj�cP�@�Xj�cP�@�Xj�cP�@�8jǐ��8�Rc���8�Rc���8�Rc���8�Q�8��&��1��T5��1��T5��1��T5��1�Z�1�6�8���2�AS�xc�1�ATyc�1�AUy�uCj��K�q���K�q���K�q���C��c@myc�1�AUyc�1�AUyc�1�AUy�uCj��K�q���K�q���K�q����q����,�$%��1��D5��1�ن5������-J���4�Y_*��u�8&��q�~{�o����K��~��/��å�e�v�rH_�on���N���X�����ġ�W�&�~؏� x�A6�|v�jය��yo��,�M`G�O��`���@�����!�{j>;P5����~����U���<�.GO-gYm;�~Z����U;�qڝ\5���Q��z<�j>;P5p[]�5�7`K-gYm;j�����U;j��D>:0%�C�Ţg� $��HK� $�M N =�L Y�@�@zj�@���8���2�dUqi�1�D� � ��� $��HO-HV5'��Z&��j N -5&��6�8���2�dUq�eɪ��S��U � ����&&���u��mM =0O Y�8�@zf�@2��8�t�:�$� � ��� $��HO-HV5'��Z&��j N -5&��6�8���2�dUq�eɪ��S��U � ����&'��Z&��j N =�L Y�@�@zj�@���4���2�DS�h�yɤ���3��Q � ��� $��HK� $�M N =�L Y�@�@zj�@���8���2�dUqi�1�D� � ��� $��HO-HV5'��Z&��j N -5&��6�8���2�dUq�eɪ��C��M�� �E� $��H�,HF5'��Z&��j N =�L Y�@�@ZjL Qmq�eɪ��S��U � ��� $��HK� $�M N =�L Y�@�@zj�@���8���2�dUq�uIj�HO-HV5'��Z&��j M =4O ٔ8�@ZfL mq�eɪ��S��U � ��� $��HK� $�M N =�L Y�@�@zj�@���8���2�dUqi�1�D� � ��� $��HO-HV5'��Z&��j N -5&��6�8���2�dUi�yɦ���3��Q � ����&'��Z&��j N =�L Y�@�@zj�@���8��Ԙ@����S��U � ��� $��HO-HV5'��HT�@�@zj�@���8���2�dUq�eɪ��Rc�jHH�H6%'��Y&��j N =�L Y�@�@ZjL Qmq�eɪ��S��U � ��� $��HG�HR�@�@zj�@���8���2�dUq�eɪ��Rc�j�HO-HV5'��Z&��j N =�L Y�@�@Zh�@��q4���<�dR�p�eɨ�{�����Yv'���r� ���w�q�O�� ����ǧu��헏���|Z�c�����_�|�C��>�t��|���`-=���m�y^���KoY�z��S�z����z -��)q��s��)q<�3Ⱥ�R�x��1�#R�x�琱�#R�x��1�#R�x�g�u����.�!c�G���(��&���0^�9`�H�8��d]��q��sȘ�)q<�s���)q��s��)q<�3Ⱥ�R�x�1�#R�x|琱�#R�xy�1�#R�xvg�uu�����!crG�����!coG�����!clG����� ��H�����q7Q8�s���#�6�v;%��uc��Mo�2�uDJ�2vuDJ��2FuDJO��.��8��9d�鈔8�9dl鈔8^�9d鈔8��d]��q��sȘ�)q<�s���)q��s��)q8�3�X�(a��s�2�#�6�Gs�9%�s�9"%��rY�r@jo�2�rDJ�2vrDJ��2FrDJO��.��8��9d�㈔8�9dl㈔8^�9d㈔8��d]��q��sȘ�)q<�s���)q��s�2�#�6�p�K8�$�wp38%�Gp8"%�p8"%��oY�o@jo�2�oDJ�2voDJ��2FoDJO��.ހ�89d�݈�8�9dl݈�8^�9d݈�8�����ʭO6q�qsȘ�)q<ps�ط)q�ns�2n#�6��mX�m j��2fmDJ��26mDJ/�2mDJ����ـ�89dLو�8�9d�؈�8^�9d�؈�8��d]��q�_sȘ�)q<^s�خ)q�\s��)q<[3ȺZR�x��1Y#R�p��e�F�m��0�j$JO��.Հ�8ީ9d�Ԉ�8�9dlԈ�8^�9dԈ�8��d]��q�MsȘ�)q<Ls�إ)q�Js��)q<I3ȺHR�x��1G#R�x�搱E#R�x��1D#R�x�f�u���������0�9`��H�8^�9d�ψ�8��d]��q�;sȘ�)q<:s�)q�8s��)q<7�Y�l�xk�15#R�xh搱3#R�xe�12#R�xbf�ua����!c^F����!c[F����!cXF����cU�����ʤ���0�9`��H�8^������C�-��ֹ;%�>�o�0��+�u����yy�o��eK��_�~����s���������Ow�������n~����_�>���ԯwO��O���{�c�O��~������1���[M���q}���Ko��p-��k�핛ݯ��~诠���`�Ԩ����\bq��b!� ���F�U �*��F�U �6��F�U �B���F�M wZ,5J-�j �Z,5z-�j 6[,�T[Д8,�8d�[��8�Xf\�@��Xjt\P�@n�Xj�\P�@.�8jm���r��R�삪r��R�r��R��r��Qk��&�{/��T5��/��T5��/��T5�0�zm���r�R���r �R���b�BKM��2�c�6�M �a,5 -1�j Wb,5:1�j �b,5j1�j c�6cHm�c�Q�AU�c�яAU�!c�Q�AU�$㨵%Cj�=K����UK����mK���ȅG��R�@��Xj�fP�@��Xh�͠)qܜ�̨� ��\�q�ڞ!� ����F�U � -��F�U ���F�U �"���& �M wi,5�4�j �i,5�4�j 7j,5*5�j �j��jHm�Wc�Q�AU�Zc�ѭAU�]c�Q�AU�`㨵aCj�-%4%�k6�=D5��6�UT5��6�Z�6�6�ܷ��(ܠ��\����ܠ��ܺ�Ԩݠ��\�1�k��6��7��T5��7��T5�8�T5�K8�Z[8�6��ñ�(⠪�\ű��⠪��ƱԨ㠪�X�q�h䐩q�ɱ�R�AR⸖c���AT��C����ϑ�97�q��w������;χ˴�?�\��v��h��������Ç��{���t�z*/o��go_���6��N��k����~萠���!��萠���!��萠���!q��!!� ���F�U ���F�U ���� ���� ��ˌ ��K� ��K� ��G�R�@�XjtHP�@�XjtHP�@�XjtHP�@�8j퐐�r��R�C��r��R�C��r��R�C��r��P�P�@�XjtHP�@�XjtHP�@�Xh鐠)q�!q��!!� ���F�U ���F�U ���F�U ���� �M wH,5:$�j wH,5:$�j wH,5:$�j wH�vHHm�Cb��!AU�Cb��!AU�Cb��!AU�C⨵CBj�K� ��-4%�;$�D5�;$�Z;$�6��!��萠���!��萠���!��萠���!q��!!� ���F�U ���F�U ���F�U ���� �M wH,5:$�j wH,5:$�j wH,5:$�j wH�vHHm�Cb��C���q��2�C��r��R�C��r��Qk���&�;$�T5�;$�T5�;$�T5�;$�z퐀�r��R�C��r��R�C��r��R�C��r��Qk���&�;$�T5�;$�T5�;$�T5;$25;$Y:$HJwH,3:$�j wH���C�ϑ;$7���s\;$/_oO+vH��<_�'��]~\���*�yy��}xx�=�5)���O�endstream +Z���]����]���dm�S����b�zP�fr�7�����i�N���r����������|L柿�ˉ��8-��x�O�_���ry�������e�f�M�������O����?���?<<~�~9��>������㗧��w��ÿ|���(��t�.���/G�ߜ��pz��㸿y�8������u���������>|������ҷw��o�|��çO����o�|l�t���u>ѣ��r��P.�yZ+��8t�:���O/��� j>;P5����Q����U;�y:ͮ��T �V�t ������6�u?/S�g�v��4�]5���Q�����zt`J�6���|�=��e� ������T ���WuO�g�v�t����U��}�������6�5]�r0�|v�j`GM�0����T ��v���T �Vos�,�M`G�O��|�)g�v��;�j>;P5������*\�T �V�t ���Sβ�v�t W�g�v�t ��|t`J\�Lw�7�p������1��b��,�M`GMw0�os��@����na���@���z��m������v������,�M`G�O����U;�Λos��@�����a5���ف����9]��T�YV�����ao�͕�U;j���|�+g�v�t ���U��K����6Wβ�v�t ��rr ކu�urɚ�D���i6��������~���'�&�v���?�j>;P5���[X����T ��S�g�n�s�������6�5]ò�j>;P5���k�����T ��v���T �V��t�xopq��&�����`���@����N����U;�yZ�S�g�n��t ��L�(��!��?W��)q2]�a6�|v�j`GM�7�m�ف������_֘j9�j�Q�-��{\9;P5���k0"�T ��i��j>;P5p[]w��l��)gYm;�~��/��@����Nǣ��U;j���|�+g�n��t �ݦ�e� ������T ���=����Q�5�_�с)q��)݁�~��2�q2]��5����u���[�T ��iwv�|v�j�z�M��|�+gYm;�~��w�rv�j`GMװ�j>;P5���k8��q��@��m���ao��,�M`GMװ��q��@������>j>;P5���kعj>;P5pS=�v�����YT����L�����@����N����U;�i2S���M��̷�8�h�Q�����T �����U;j��vg�n�K���T�YV�����a>�j>;P5���k0k'qv�j`G=M狫�U���nڟ���8�j�Q��l�N��@����N����U;j���|�+g�n��t f�$β�v�t {W�g�v�t 旦|t`J\�Lw`�N�����muMw0�j9�j�Q����8;P5����b�N��@���z�NgW�g�n��ݴ���8�j�Q��d�N��@�����au�|v�j`GM�`�N��@��m�������YV�����aq�|v�j`GM�`�N��@���������ف����y7��`"β�v�e:��ףS�:�:�f�$�P 쨧�xr�|v�j�zIw`�O�,�M`GM�`�O��@���������@������,��ف����K�`��8�j�Q�5̮��T ����I���QO�j�>S����λig&�,�M`G]��,��ف��u�vGW�g�v�t �`"�T �V�t �O�|�M���&��耔��.�\K����5]�v��:%~�-��*{9O�_ܕ32�>�z�2��u����6&��t�eص=��w?������~9��z��/G^��P7�������_>�����2����!��/��������s��C��?>�?�T��_��w����n}|���>�qZ^~��j��ԇ�L�V��֊��K�W�_?T�Im��o�Q�GU��o�Q�GU��o�Q�GU��卑�OjH��oð�o��⏢�q��2�⏨r��P�P�@��[jT�Q�@��[jT�Q�@��[jT�Q�@��;j����r��R�⏪r��R�⏪r��R�⏪r��Qkş�&�+��T5�+��T5�+��T5+�25+�Y*�HJW�-3*��j W�-5*��j W��V�Im��o�Q�GU��o�Q�GU��o�Q�GU��卑�Oj�K��?��K��?��K��?��G�R�@��[jT�Q�@��[jT�Q�@��[h���)qX�wȨ��q\�̨�#��\�Ԩ����\�Ԩ����\�w�Z�'� 䊿�F�U 䊿�F�U 䊿�F�U 䊿�֊?�M W�-5*��j W�-5*��j W�-5*��j W� �Z�� 䊿�F�U 䊿�F�U Ċ����?��ǬB�@��[jT�Q�@��[jT�Q�@��[jT�Q�@��;j����r��R�⏪r��R�⏪r��R�⏪r��Qkş�&�+��T5�+��T5�+��T5�+��Z+��6�\�Ԩ����X��R�GS��o�Q�GT��卑�Oj�K��?��K��?��K��?��G�R�@��[jT�Q�@��[jT�Q�@��[jT�Q�@��;j����r��R�⏪r��R�⏪r��R�⏪r��Qkş�&+�Z*�hJW�-3*��j W�-5*��j W��V�Im��o�Q�GU��o�Q�GU��o�Q�GU��o�?�m W�-5*��j W�-5*��j W�-5*��j W��V�Im��o�Q�GU��o�Q�GU��o�Q�GU���Q�'S��o��⏤�q��2�⏨rſ_�*�����w?w+�P��π{_~+��yڟ�X�/Gr)��?<���Ӱ��n~���/_?����/�M��5.����S�O>���^پ~�����7/����>���&�?��R��/P�@��K�Ͽ@U��/,5>�U �Ͽp����6���������_Xj|��ȟa�1�AUy�uCj��K�q���K�q���K�q���G��R�@�XfǠx��,�%��1��D5��1�zǀ��8�Rc���8�Rc���8�Rc���8�Q�8��&��1��T5��1��T5��1��T5��1�Z�1�6�<���Ǡ��<���Ǡ��<���Ǡ��8�q�ǐ�q8���2�AR�xc�1�ATyc�1�AUy�uCj��K�q���K�q���K�q���G��R�@�Xj�cP�@�Xj�cP�@�Xj�cP�@�8jǐ��8�Rc���8�Rc���8�B�8M��q�C�8�H��q�e�8Q �q���8U �q���8U �q���q�M �c,5�1�j �c,5�1�j �c,5�1�j �c��cHmyc�1�AUyc�1�AUyc�1�AUyc��q�m �c,5�1�j �c,5�1�j �c,��cД8�8f���8�Rc���8�Rc���8�Rc���8�Q�8��&��1��T5��1��T5��1��T5��1�Z�1�6�<���Ǡ��<���Ǡ��<���Ǡ��<�q�:�!� �q���8U �q���q���ˌq���G��R�@�Xj�cP�@�Xj�cP�@�Xj�cP�@�8jǐ��8�Rc���8�Rc���8�Rc���8�Q�8��&��1��T5��1��T5��1��T5��1�Z�1�6�8���2�AS�xc�1�ATyc�1�AUy�uCj��K�q���K�q���K�q���C��c@myc�1�AUyc�1�AUyc�1�AUy�uCj��K�q���K�q���K�q����q����,�$%��1��D5��1�ن5������-J���4�Y_*��u�8&��q�~{�o����K��~��/��å�e�v�rH_�on���N���X�����ġ�W�&�~؏� x�A6�|v�jය��yo��,�M`G�O��`���@�����!�{j>;P5����~����U���<�.GO-gYm;�~Z����U;�qڝ\5���Q��z<�j>;P5p[]�5�7`K-gYm;j�����U;j��D>:0%�C�Ţg� $��HK� $�M N =�L Y�@�@zj�@���8���2�dUqi�1�D� � ��� $��HO-HV5'��Z&��j N -5&��6�8���2�dUq�eɪ��S��U � ����&&���u��mM =0O Y�8�@zf�@2��8�t�:�$� � ��� $��HO-HV5'��Z&��j N -5&��6�8���2�dUq�eɪ��S��U � ����&'��Z&��j N =�L Y�@�@zj�@���4���2�DS�h�yɤ���3��Q � ��� $��HK� $�M N =�L Y�@�@zj�@���8���2�dUqi�1�D� � ��� $��HO-HV5'��Z&��j N -5&��6�8���2�dUq�eɪ��C��M�� �E� $��H�,HF5'��Z&��j N =�L Y�@�@ZjL Qmq�eɪ��S��U � ��� $��HK� $�M N =�L Y�@�@zj�@���8���2�dUq�uIj�HO-HV5'��Z&��j M =4O ٔ8�@ZfL mq�eɪ��S��U � ��� $��HK� $�M N =�L Y�@�@zj�@���8���2�dUqi�1�D� � ��� $��HO-HV5'��Z&��j N -5&��6�8���2�dUi�yɦ���3��Q � ����&'��Z&��j N =�L Y�@�@zj�@���8��Ԙ@����S��U � ��� $��HO-HV5'��HT�@�@zj�@���8���2�dUq�eɪ��Rc�jHH�H6%'��Y&��j N =�L Y�@�@ZjL Qmq�eɪ��S��U � ��� $��HG�HR�@�@zj�@���8���2�dUq�eɪ��Rc�j�HO-HV5'��Z&��j N =�L Y�@�@Zh�@��q4���<�dR�p�eɨ�{�����Yv'���r� ���w�q�O�� ����ǧu��헏���|Z�c�����_�|�C��>�t��|���`-=���m�y^���KoY�z��S�z����z +��)q��s��)q<�3Ⱥ�R�x��1�#R�x�琱�#R�x��1�#R�x�g�u����.�!c�G���(��&���0^�9`�H�8��d]��q��sȘ�)q<�s���)q��s��)q<�3Ⱥ�R�x�1�#R�x|琱�#R�xy�1�#R�xvg�uu�����!crG�����!coG�����!clG����� ��H�����q7Q8�s���#�6�v;%��uc��Mo�2�uDJ�2vuDJ��2FuDJO��.��8��9d�鈔8�9dl鈔8^�9d鈔8��d]��q��sȘ�)q<�s���)q��s��)q8�3�X�(a��s�2�#�6�Gs�9%�s�9"%��rY�r@jo�2�rDJ�2vrDJ��2FrDJO��.��8��9d�㈔8�9dl㈔8^�9d㈔8��d]��q��sȘ�)q<�s���)q��s�2�#�6�p�K8�$�wp38%�Gp8"%�p8"%��oY�o@jo�2�oDJ�2voDJ��2FoDJO��.ހ�89d�݈�8�9dl݈�8^�9d݈�8�����ʭO6q�qsȘ�)q<ps�ط)q�ns�2n#�6��mX�m j��2fmDJ��26mDJ/�2mDJ����ـ�89dLو�8�9d�؈�8^�9d�؈�8��d]��q�_sȘ�)q<^s�خ)q�\s��)q<[3ȺZR�x��1Y#R�p��e�F�m��0�j$JO��.Հ�8ީ9d�Ԉ�8�9dlԈ�8^�9dԈ�8��d]��q�MsȘ�)q<Ls�إ)q�Js��)q<I3ȺHR�x��1G#R�x�搱E#R�x��1D#R�x�f�u���������0�9`��H�8^�9d�ψ�8��d]��q�;sȘ�)q<:s�)q�8s��)q<7�Y�l�xk�15#R�xh搱3#R�xe�12#R�xbf�ua����!c^F����!c[F����!cXF����cU�����ʤ���0�9`��H�8^������C�-���]wJ�}���az�W +�|�)Y9��<߾�˖컿������2�1���ӟ���������/���}�)��_������<�t�T�h�?~�������c�k���*/����̯/`��"�/�Z^��\�+7/�__y� �_AU��b�QaAU��⨵�Bj�=K�"��UK�.��mK�:�ȅG��R�@�Xj�ZP�@��Xj�ZP�@l�Xh���)qXnq�h��q�o��(� ��\q��踠���r�Ԩ����\tq��t!� 䮋�F�U 事�F�U �Ƌ�F�U �ҋ����M �^,5�/�j W_,5�/�j �_,5�/�j `�ڀ� ���F U ���FU �&���*��eǬmB�@��XjbP�@��XjtbP�@n�Xj�bP�@.�8jmƐ�r7�R���r=�R���rC�R�"��rI�QkK��&�{2�ET5��2�]T5��2�uT5�3�Z3�6�ܙ��(͠��X���қAS�9c�Q�AT�<㨵=Cj��K� ��K� ��-K� ��EG�MR�@��Xj�iP�@��Xj�iP�@n�XjTjP�@.�8jmՐ�r��R�X��r��R�[��r��R�^��r��QkÆ�&;6ZJ6hJ�l,3z6�j 7m,5�6�j �m��mHm�oc�Q�AU�rc�ѹAU�uc�Q�AU�xc��� �m wo,5�7�j �o,5�7�j 7p,5*8�j �p��pHm��c�Q�AU��c���AU��c�Q�AU�����!S㰓c������q-�2����r3��!F5�#wsn����<����w��i=������Ή�����秇����tߩ�l�T^�2�����/l:-��!��^;$7/��!y� �!AU�Cb��!AU�Cb��!AU�C⨵CBj�K� ��K� ��-4%;$"5�;$�D5�;$�T5�;$�T5�;$�Z;$�6��!��萠���!��萠���!��萠���!q��!!� ���F�U ���F�U ���F�U ���^;$����!��萠���!��萠���!���!AS�C☵CBh�K� ��K� ��K� ��G�R�@�XjtHP�@�XjtHP�@�XjtHP�@�8j퐐�r��R�C��r��R�C��r��R�C��r��Qk���&�;$�T5;$Z:$hJwH,3:$�j wH�vHHm�Cb��!AU�Cb��!AU�Cb��!AU�C⨵CBj�K� ��K� ��K� ��G�R�@�XjtHP�@�XjtHP�@�XjtHP�@�8j퐐�b��BK�M���eF�Q ���F�U ���� �M wH,5:$�j wH,5:$�j wH,5:$�j wH��!� ���F�U ���F�U ���F�U ���� �M wH,5:$�j wH,5:$�j wH,5:$�j vH4:$djvH,�tH��8�XftH�@��{V��#wHn:$��vH^�ޞV���y�>O�ջ��,��?T|=��<�����{�kR`���endstream endobj 1774 0 obj << /Type /Page @@ -5592,22 +5577,26 @@ endobj /ProcSet [ /PDF /Text ] >> endobj 1800 0 obj << -/Length 2508 +/Length 2446 /Filter /FlateDecode >> stream -xڭYK�۸��WL퉪�(>E�{��뉳�+�8�Jr�H���$����ק EjdǛ�\e�Fw�����&��M�E -?�>Lv�Mս�n��r�"��n&y�+��<-�}��lf^߽ؾMқ$ -w����~��a��n��oqrҬ6IQqȿ�zp<�k�����j�����Ih\�I����'aT$/G!o�i���Q��{�߯�(ЦN��+n��~�zYI�h-���(�u5t�w<�j�����(��U��1S�(�6�_�����F���*�a������_�mŨ�wF���i�y�F;�����@%h���v1�4����I>LZ��ш�ɚ�N��x��.��W+{6H2���6<�t��5,}�@� }-���e�:Ϭ�/�n���o�����8]$�]��W��J�V���~|Z�qH��F -�e�v#A����1 �_�L;W�8�x�� ��~_*��E^�g��{@? -#��- -��2�G&>(���]����?X�(+�f�snj�+�+�x�Q�?��nޔHyt$'�[��bC`�{�����U1��$&dګep��t���gP��ڡ��8ó���nJ3p�p��&/�p��_�D#�f�ęh���K�N'��ꑕ�|�;�3H^�7u�<��})u��S�&��0� -�IH�iJ|�ЍY<�y�D�^:���9HKP�5CWu\!�j������(]�T9��D�)n`͇\䐯 d����~#[�1�VU�v� -L�����{�6x�S+ňL��r`��LH��mх_)��������Г�P��?��e �*��.�p�t6(h.�2�����?�>��+�3� � �JBu�C�r�h[� �Y���yy���J#�T^��*�8�),�g�Q�s��;����=̌��A'(�%|%�g�)�p���'@T=d0�R�/�F\��E'����J��'�d�fr%��G�88 �z�ٝf" f�c=�>?^L�;hK�-YJV@���Y9n�&�z%�Ŏ���Tf����Fy�T�v�����X:�� Z��l:���/)�<Bf�`t%����8��S�C��t�sNy/:Jَ���TU -�� ş�g �LІ�5ԖǶ�C[�C#B���y$<;$[��DDaB�����E�ÀJ��H��+^w�N��a�����E)��yUb�1tQ�l��b�ӼU<��H�ք:���cjyv�P�D.�N:*{ -��-�(H�N� A���6n�����$ H�T���e̎�M�b�^R`fl�Z��e)Gr� A��^No�t{ M�Z08�5�y��=gh$C���D�O�1D~Hۼ�A�I|F�#z�~�F�guTĦ�M�0њ�O�-��2N�V�n&��v�<O�.Y{F�V���Y iΗȿ�.��gc4��+l4�8-�.b��J7LNJV��ǺQ�Z�Rpk����� �~��}D֔�^x�y?qCMK��`i����Vp ��Y�K�`�(����a�\��.8���'���[�k���0�L�E ����T ��k��Mf������`�ŋ� -�i��jwS�+q�Ws�F���H{���p�H p��9�54��v������uزC�tS���C���Dx�i�� R,�_k�v�gs ���{/� �G��e��],܍���L�o�!���y=^��,�UA��I�⯚�)Y�n3�"��&��,���C19�J<<{���� ı9^�xm��J!4��Z~���^>�<�Wbk��Z�&��H�����)����| -�������*��s���;x�{|��0�4Ν^n���!�)���%�nh͜;�������c�_�yϯ�ͧ��M��Z/��[i�)F R�p��]�{�������N/��V_lظ��o@�iٛ�pJ�ħ ُ44�B�rz6.�}��uk�t~u@*t�v�<Jc��V� �R�p���)���w�p0�a�fzr�`�2y��8D�TrpA��Fa��Z%:�ŝ.��"ٺ��-q���'�<� �����H�qv�q�q���� k�I���sD=.+�����b�����F��^cϿ�m(��;a���V�z�Rk_2�.��2���`�@~�BU�_�I��1*�[D�5/�Kwi�ke�]� �g��̕8���i��0]�J���~������'nP^��xD��ѳCBf�k� g�v���h?w��G�E��q�NY1�)��W���%���X��ͼ>zy���ӕ ��V��N������r���6n8b!����{���j�kF��r�xf��MBa�w���V�B�[j�{�o��7�}?���8�<��w�a����,�_V�0�ȋ���\�y2��g�����c9�ؘa��>�����?�(i(������1���z��aW�z�͙��~Bv�jP��W�I -u����?&=��o�HB>endstream +xڭYK�۸��WL퉪�(>E�{�gw&�n\�x�T*�"1"b�P�КɯO?@��Ȏ7I����F��8�M��"�~�m�l�{��s�*��f&y�+�U��LoV3 o^���&��M��yx�v��0I77�_��F�4�UR�A�eyt?�Z.���{Ra�4�ݓ0* +����[}X�y�lԾ������$ +��S��ʊ�m�ݤ^W�9Z���yԺ:�;��� +w�N;��oQU�c�$Q�� Ow���Ƀ/�$�Qz�Z������3j�fN/sl��PQ� ���p� �O����|��t�Z<�*-�0i{#z'k&:Ϳ� �<X�\��� �b�����ӵz|fYװ��q6��4��� 輰~��ݿ����+�.�.�c挫_U%{+��d� >-�8��c#p��2@�� zBOZ���$���*z&�]�l��B�_Ɨ +�;�%[q�Q?�#�Qɂw�T����xT��Q�y�~��"��(+\f�siPj�+�+��ո�?��aޔHyr�'�[��bC`�{�����U5���&dڛ���^��[���R}��������S����C�7y�����j&eV3!�D���T�^zs8ȾVO��ϗ{gqɫ��ޣ�7��T�{�/S�*��0� +�IH�iJr�ЍY<�y�D�f�p��T�g���S��=q�"��%O��,q��<��x>� �|M!�U��^�+����b�#�+0�r�on����#R0��]�i�2!2�E~�XDP|r_,_,~R�BO�Bu���P�cX�%�X�T�z�����0���p|�d +b��?��+�3y'� �JBu�C�r�h[� �Ȣ~��yy���J#�T^��[�pSXI�d����ph��{����NP�K�Jh�-�X�E +�O��z8�`D��g�F\��E'����J��g�d�dr%��G�88�z�ŝf" �,.x�r�}~����ӖP[����"%���r\�M.~%�Ŋ���Tf΄�+7���90�Z����~y�ڷz'Z^�l:��0ۗ�E�!}0��ү�Y��S�����ܧ��^t� +� #ѩ�Z�*�0�5��2A�A�P[�Fm��E�ebJ��HxqH����� +�$6��I����^���ʝ�����W�O?��R�����Gc�Zـ?!��g�y�x� �� u$�v~��7R�E���PC��<8���S@�o�EA�ub7M���q�eݕ��i@�rH�.cvn*�돒3c˨�֒��"�z$7 +�����6K�����u��=\c�gށ��S�F2����I���C����� ��g�9��{�a��pVQGEb�)�T��D�2�/��jE�f"�woǝ穃��w�(#<�^^�����|9���[}6F�Z�a+���i�u��T�arP����F�k�K���¯f�>�q��kg�#���@�����jbq"�`95O5��v��V���^QT�㳇Mr�pt�O:���0�Bbeܙ&g%��S��I�@�4��������̋� +�i��jwS�+q�Ws�F���H{���pg�$@�P�S�)kh����5�1,ܣ���e�`/�$����R��'�y�i�{�Xj/��m.����Ԩ%a����V����|~�1L���3���c�z�����_5���̔��7M���z�K�IA[�ߋ�8>;W�mHS����ў>eАz>@&r�<{��zħ"+~�ƹ����x<��<�)�-t��=,Y�F;5��\P{��X�%�@����ŪL +zݖI V��'6�X��Gq��o +�L��ȅ��>3s]}�a㺖����^�SP!�OA4�ihA`<=����s}�;�uk�;t�ґ +��]�Du�߫�TQjvP�~y��cO̒���K�'Ƭ�G�I@�L%���.(sl�y��wF���E�u�;;(8��?�Ya�|�_E�@r҈3 +�%�W�K,l�*L2t�#ꑭ��G�|���+���j��`Ͽ�m(�m8a���VГs��d_3�.��8π8�$H���J��a/���Fd^kvށ����5�p�/q���x�<<�f���iL,�b�W xI���D��!����oFn��,�'�F�쐐E������ppV�^qM�Eۨ�O���{���սf�[ o���r3��^��x<�t%� ���$�ӻ�<g�P���,����X���v���Ϸ�}o��\u�2܀g�RX���!�U��Z����(�Mv?��. N%EO~�pX�kg:����W�"��7��L/�Y���2zp��X[�̰��d�S�E���4���^�S��1���ʰ�������$B_!�L5(O�+अ��ˍ�?����ߵ~ �endstream endobj 1799 0 obj << /Type /Page @@ -5673,49 +5662,49 @@ endobj /D [1799 0 R /XYZ 71.731 296.406 null] >> endobj 1810 0 obj << -/D [1799 0 R /XYZ 71.731 263.58 null] +/D [1799 0 R /XYZ 71.731 276.531 null] >> endobj 1811 0 obj << -/D [1799 0 R /XYZ 345.258 252.785 null] +/D [1799 0 R /XYZ 345.258 265.737 null] >> endobj 1812 0 obj << -/D [1799 0 R /XYZ 184.718 239.834 null] +/D [1799 0 R /XYZ 184.718 252.785 null] >> endobj 1813 0 obj << -/D [1799 0 R /XYZ 71.731 226.882 null] +/D [1799 0 R /XYZ 71.731 239.834 null] >> endobj 1814 0 obj << -/D [1799 0 R /XYZ 71.731 206.793 null] +/D [1799 0 R /XYZ 71.731 219.744 null] >> endobj 1815 0 obj << -/D [1799 0 R /XYZ 505.893 195.998 null] +/D [1799 0 R /XYZ 505.893 208.95 null] >> endobj 1816 0 obj << -/D [1799 0 R /XYZ 71.731 175.909 null] +/D [1799 0 R /XYZ 71.731 188.86 null] >> endobj 1817 0 obj << -/D [1799 0 R /XYZ 221.814 152.162 null] +/D [1799 0 R /XYZ 221.814 165.114 null] >> endobj 1818 0 obj << -/D [1799 0 R /XYZ 452.571 152.162 null] +/D [1799 0 R /XYZ 452.571 165.114 null] >> endobj 1819 0 obj << -/D [1799 0 R /XYZ 266.128 139.211 null] +/D [1799 0 R /XYZ 266.128 152.162 null] >> endobj 1820 0 obj << -/D [1799 0 R /XYZ 510.317 139.211 null] +/D [1799 0 R /XYZ 510.317 152.162 null] >> endobj 1821 0 obj << -/D [1799 0 R /XYZ 264.587 126.26 null] +/D [1799 0 R /XYZ 264.587 139.211 null] >> endobj 1822 0 obj << -/D [1799 0 R /XYZ 509.011 126.26 null] +/D [1799 0 R /XYZ 509.011 139.211 null] >> endobj 1823 0 obj << -/D [1799 0 R /XYZ 258.45 113.308 null] +/D [1799 0 R /XYZ 258.45 126.26 null] >> endobj 1824 0 obj << -/D [1799 0 R /XYZ 506.431 113.308 null] +/D [1799 0 R /XYZ 506.431 126.26 null] >> endobj 1798 0 obj << /Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F33 1210 0 R >> @@ -6241,7 +6230,7 @@ endobj /ProcSet [ /PDF /Text ] >> endobj 1953 0 obj << -/Length 3073 +/Length 3031 /Filter /FlateDecode >> stream @@ -6252,14 +6241,14 @@ t .-��S<x��]�X9iVQ�S��}9�僣���1��|@�`E���NC!�X�AJ��dIv�[b䄘ܘ�������.�K��`�������o����;�]���G}�ߵlH�+s���gv�'(�IB�Pn�/V���� ��P9?�����{�����E�)P��І����JA�p*��k,)P>�́A��M]}�}�Z�e��qd���x: U:���i��Yywy�(RI����!�2�z�ߗS�<�p[�,�g�*HcPЙ��S�f��p���"�d�(1�@NE|SQ��R��K�����ī��V�����9 �<�x�j퍉���&!�yJ����1��$e�Ru�v�y��_,��Q)aDxo4dc%�;'�e�����ۜ����ۆ��ꋒA؞�v�$&�'��2\l�;{;�|�l?4����:B� mG�{��k`D���[�F��1=h�� JjJv��9(< � ��p�Z"�Z�0xٶ�ѻz;��F �B�����A�Q��b$$o4���:�(~X]ΟnKQ<��V兲M�&�}�� -����� �|��n��@��"���؟��`�\���?���'Fv�1��y�N���"���t'� `0&Q�>�.?�h��CAQ�����S��w�yq<��s$L���. �<��5������n�T����V�-��v��v�ru���$���`\�Wu�fE�j��e�'��梺x'XYJ�G�ݶ>�&�T��1�����ѬfD1���#�ZnX���i�R��On.4Oo~ƈ����@�(������^�Qk��TC+P�R�CdEz#��Z��0J\�.�RS:� Y�j�W��_K �ʻA�;�C��ֺ�:2F"3���DT2pm܌vI��_��%ϐ!����SeҤ6Z椌��oX|�v4�� -�OZ:����2��z~�V1�c��(+l�V�)Vs^�2 �W -�����N�m� ����q9ʢ�:s�N�Q �+i��f��n^2B��L:�Q_�]H��*'��H�RoX�܆T�R�K���C�������M:B�WTV�螛_NMKv��]~8^>�Α����VbRW�/<p2�����};�㤑�y ̶28�R�tsF�f����]]� �P#��� �O���s�}�V���$E�j���}��U������Ǝ-ٜq� 0�I'�6�IlJ'B}<��)�5ƖK�@CE^g]�[�f{wV�q�������V�P�b�O�|]�e���������ζbH�e�[�#ϱ�eNc�5�ek��ٝ����%L���ef���a����[A����{wJ�dQI�)[��u֞��0 ���P�&����jFt�����Q��f�[/ri�CS�O -�h��� - �H�=\[' !@�$91.��vظǥ4��� G�0�D����AwQ_�Z{;��[���q��r�U6@�m� ۍ �X�/@�{� � v]��ܴ4�&�C���wg4�֓:*K��x�;�W�K�y$�F����<��9��Z:Iի���9a7�\���^ߡ�l�����R����/�ʏ�/Ͼ���ג�[�����N&��/��� -1g�3�؊��������y�H$��n��8���o(^k�ϝ�=�m�6��K�n?�h��΅q�6��Ħ�G�;�//% -T�������/��vl�g/����w�b��մd���AF������P�L���҇��Ŋ�����勗Π^5r�w��#���n8qܻ)��6F^f�[��hY2j���+�� �)����C�ɏ�ڣb�]� y_���hc\���C�(�|��e劜8h��%�&?6����}���]�9 ?z1L��8c���}����}r�M�) g���8=pg<������x������G^�� �;���L��"7��,i���<�m��������o��� ��&�;|Q�� 熀(6Te�Ǎ{x��Deq��A�U���IS�w�δZ���V¸,�-�HrT+��,b'��'�u�]��8������ބ�|���*���w�����̩�A�=��`}-'=��`ˆ�tu)ztO��W��0l��v��]�|:��Ie�G��� -�d%�vvƀ��OYi��0;���N{�/�E�Ύ���By�'�"7|������_|4ϡ�/Ǘ} ��M�� �F��b��Ҝ߮�t�<�`�B�+�5�4����q��_ �>e~#�}��+�"oĢDL�!���<t'�:�8x� N7��?Ah[�C(�٪n�E%ؼ�W�^xp& )NI� ]��;�9q��=� �C-y�������G�Ǎc�d��~��cY��Q�9�v8Ȧ���o~�43EH�7�����÷��������+F���ڱ)��LU�-Wk˼���To^��T'O����4D�QIfTi�k�p���o�'endstream +����� �|��n��@��"���؟��`�\���?���'Fv�1��y�N���"���t'� `0&Q�>�.?�h��CAQ�����S��w�yq<��s$L���. �<��5������n�T����V�-��v��vb�d�с��!�U,���z}.$��E�;cCi����s�s�!�������>cĶFV�u�"�y4�����K�-��j5T�uQa@,DV�4"��Ձ� +��E����!C��K|t�����^1�-5f� �ȡ�-ϴ�U�P苈��1 ��gm%���i�f�����2�-y�����g#[�&�V�9��'g��C��������rD�?] /pccݬ���UU�j��� +���q +�����Ȩ�ߕ���H'�)�w��!.�OYt�`]gN��<8 }%]O�,���KFH���Ig8�뽋l0��d��H�Sjъ�ې�A�8Ir�yds�;����3�@G��*�s�˩iɎ������A�9���SS�HL�j�%�Ω�w��oGq�4�4/��V�V��n��,�^v��ˣKߢ +5�a�0�����p�ߜ?G��luX1N2%���j[�/\��e��Đ7vl���1���L:��X�AL�`�^:��,N1�1�\*���:�z������ڋQ�h,x��b�"+}�G��/�o�W����fw�C�f��,y�m-s�/[������g�$r�_�-3�|/+�~W�� +�e��ݻS�� �J�?�����<����t�,� Ujҫ��ѬfD���i�v���"�F>�F~�����I�����õu���$I��j��{�I#�_�p�s�Ad+i3t�%)�����r�e��'�,g\%aD����� �%�4��j�b�<!��MKOg28�y��uF�k��#���i ���}uQ-A�@}jgG�����j�$U�B|���ݐr)K�{}�~G���t#��K�z�g��*?ڿ<��2C_K�o).$.O$�sE�\����z*Ĝ���cG���c���8��1#�� +V�����+��x�!>w��L0�Iڨ�/���ģYo9ƥ��z�����(Pq����8��#���۱�=PR�ߺw�=f�)WӒI�cH�n��B%2�Գ�@Bd��+~�/��OP��ȩ�2H�P�ۺ��ip��r�y A�n�2��aɨY66�X��e�n`@ϒ��Fl�Q1��/��Ls�1�f�ҡ[]�w{��rE�������T���`�WibWt�.�Z$�'��~gL��_�s�b���7�s�$�Ń������xr:��3.���V��"y 6(R2A�ڊ��>��ֲ���S���X>�ރJ�7��fL����0���E=����P�#72�Deq��A�U_d�IS�w�δZ���V¸,�-�HrT+��,b'��'�u�]��8<���� ݄�|������w�����̩�A�==��`}-'=��`ˆ�tu)ztO��W��0l��v��]�|:O�Ie�G��� +�d%�vvƀ��/Ji��0;���N{�vE�Ύ��By4'�"7|�������?4ϡ�/�v ��M�� �F��b��Ҝ���t�<�`�B�+�5�4����q��_ �>e~#�}��+�"oĢDL�!���<t'�:�8x� N7��?Ah[�{$�٪n�E%ؼ���^xp& )NI� ]��;�9q�6� �C-y�������G�Ǎc�d��~��cY��Q�9�v8Ȧ���o~�43EH�7�����÷��������+F���ڱ)��LU�-Wk˼���To^��T'O��şD�QIfTi�k.p����r�endstream endobj 1952 0 obj << /Type /Page @@ -6267,23 +6256,23 @@ endobj /Resources 1951 0 R /MediaBox [0 0 609.714 789.041] /Parent 1949 0 R -/Annots [ 1967 0 R 1976 0 R 1977 0 R ] +/Annots [ 1966 0 R 1975 0 R 1976 0 R ] >> endobj -1967 0 obj << +1966 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [241.065 466.808 285.896 475.719] +/Rect [146.43 466.808 191.262 475.719] /Subtype /Link /A << /S /GoTo /D (configuration) >> >> endobj -1976 0 obj << +1975 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [446.147 316.671 505.908 325.582] /Subtype /Link /A << /S /GoTo /D (win32-perl-modules) >> >> endobj -1977 0 obj << +1976 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.731 290.768 120.707 299.679] @@ -6335,68 +6324,65 @@ endobj 1965 0 obj << /D [1952 0 R /XYZ 303.371 494.867 null] >> endobj -1966 0 obj << -/D [1952 0 R /XYZ 102.166 468.965 null] +1967 0 obj << +/D [1952 0 R /XYZ 71.731 461.826 null] >> endobj 1968 0 obj << -/D [1952 0 R /XYZ 71.731 461.826 null] +/D [1952 0 R /XYZ 179.188 451.032 null] >> endobj 1969 0 obj << -/D [1952 0 R /XYZ 179.188 451.032 null] +/D [1952 0 R /XYZ 71.731 425.961 null] >> endobj 1970 0 obj << /D [1952 0 R /XYZ 71.731 425.961 null] >> endobj 1971 0 obj << -/D [1952 0 R /XYZ 71.731 425.961 null] +/D [1952 0 R /XYZ 71.731 405.091 null] >> endobj 1972 0 obj << /D [1952 0 R /XYZ 71.731 405.091 null] >> endobj 1973 0 obj << -/D [1952 0 R /XYZ 71.731 405.091 null] ->> endobj -1974 0 obj << /D [1952 0 R /XYZ 71.731 362.564 null] >> endobj -1975 0 obj << +1974 0 obj << /D [1952 0 R /XYZ 71.731 329.622 null] >> endobj -1978 0 obj << +1977 0 obj << /D [1952 0 R /XYZ 71.731 280.805 null] >> endobj -1979 0 obj << +1978 0 obj << /D [1952 0 R /XYZ 71.731 280.805 null] >> endobj -1980 0 obj << +1979 0 obj << /D [1952 0 R /XYZ 71.731 259.935 null] >> endobj -1981 0 obj << +1980 0 obj << /D [1952 0 R /XYZ 125.419 235.44 null] >> endobj -1982 0 obj << +1981 0 obj << /D [1952 0 R /XYZ 71.731 233.283 null] >> endobj -1983 0 obj << +1982 0 obj << /D [1952 0 R /XYZ 71.731 218.339 null] >> endobj -1984 0 obj << +1983 0 obj << /D [1952 0 R /XYZ 204.375 197.184 null] >> endobj -1985 0 obj << +1984 0 obj << /D [1952 0 R /XYZ 465.976 173.871 null] >> endobj -1986 0 obj << +1985 0 obj << /D [1952 0 R /XYZ 76.712 145.577 null] >> endobj -1987 0 obj << +1986 0 obj << /D [1952 0 R /XYZ 71.731 125.652 null] >> endobj 1951 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F48 1896 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1990 0 obj << +1989 0 obj << /Length 2086 /Filter /FlateDecode >> @@ -6407,226 +6393,226 @@ xڭZm �� ,M&;z\�&d���Q�T��q��1�l��nC�ou�0<��ڗ�(faB�;0�49y�r���4>�̣6C�z���7���4Vd����\�*>�;�E�t�u۾����.QO����\}��n|��)�"��p��&�Aȳ�\�'��adެ�?~~G0,1�d���QƔJ��o`��[�`�rpXE:s��`_�)eJhI�R�c�$�x�j�)�g�y��p��Gwdx�8�R�I;'�§ò��>9��Z7X��@L�n��wy1�Hh�����⳯Gݠ��A�+S��fۑntc+]�2��@ @v>Ƞ��H�G��4e>�\ۖ=�4h��/ o64���8pG�x�`o��E|lʽ<vBc O�A��Tl���d�m֎ek��"?ݻ�`&�z�[��=>i��j�A��`��[8�\���ECO�q[C�<j�v�V+�D&x��NO��=�2&<1��F����Ƶu�m�. cxQk<�q�j���Z��Sn�`h�*��{gf;ޚ��7��c����QW��bnpX��=�l�So�����,�t���vk[n��AUn��AzR������Z�q ���y�^��ݝ�[u��F��]Y��v&a;Ӵ'۷y��'��K�(e�Hȿ��!�?�P�d1<p3���<c���Ԥ�endstream endobj -1989 0 obj << +1988 0 obj << /Type /Page -/Contents 1990 0 R -/Resources 1988 0 R +/Contents 1989 0 R +/Resources 1987 0 R /MediaBox [0 0 609.714 789.041] /Parent 1949 0 R -/Annots [ 2007 0 R 2016 0 R 2026 0 R 2029 0 R 2032 0 R 2035 0 R 2038 0 R 2041 0 R 2044 0 R ] +/Annots [ 2006 0 R 2015 0 R 2025 0 R 2028 0 R 2031 0 R 2034 0 R 2037 0 R 2040 0 R 2043 0 R ] >> endobj -2007 0 obj << +2006 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [89.664 505.24 140.592 514.152] /Subtype /Link /A << /S /GoTo /D (install-modules-dbd-mysql) >> >> endobj -2016 0 obj << +2015 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [89.664 433.509 126.595 442.421] /Subtype /Link /A << /S /GoTo /D (install-modules-template) >> >> endobj -2026 0 obj << +2025 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [89.664 333.883 104.05 342.794] /Subtype /Link /A << /S /GoTo /D (install-modules-gd) >> >> endobj -2029 0 obj << +2028 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [89.664 315.95 136.707 324.862] /Subtype /Link /A << /S /GoTo /D (install-modules-chart-base) >> >> endobj -2032 0 obj << +2031 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [89.664 298.018 134.485 306.929] /Subtype /Link /A << /S /GoTo /D (install-modules-gd-graph) >> >> endobj -2035 0 obj << +2034 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [89.664 280.085 155.237 288.996] /Subtype /Link /A << /S /GoTo /D (install-modules-gd-text-align) >> >> endobj -2038 0 obj << +2037 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [89.664 262.152 142.087 271.063] /Subtype /Link /A << /S /GoTo /D (install-modules-xml-parser) >> >> endobj -2041 0 obj << +2040 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [89.664 244.219 139.865 253.131] /Subtype /Link /A << /S /GoTo /D (install-modules-patchreader) >> >> endobj -2044 0 obj << +2043 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [89.664 226.287 147.068 235.198] /Subtype /Link /A << /S /GoTo /D (install-modules-mime-parser) >> >> endobj +1990 0 obj << +/D [1988 0 R /XYZ 140.002 696.687 null] +>> endobj 1991 0 obj << -/D [1989 0 R /XYZ 140.002 696.687 null] +/D [1988 0 R /XYZ 71.731 668.792 null] >> endobj 1992 0 obj << -/D [1989 0 R /XYZ 71.731 668.792 null] +/D [1988 0 R /XYZ 71.731 637.808 null] >> endobj 1993 0 obj << -/D [1989 0 R /XYZ 71.731 637.808 null] +/D [1988 0 R /XYZ 170.798 624.956 null] >> endobj 1994 0 obj << -/D [1989 0 R /XYZ 170.798 624.956 null] +/D [1988 0 R /XYZ 71.731 617.818 null] >> endobj 1995 0 obj << -/D [1989 0 R /XYZ 71.731 617.818 null] +/D [1988 0 R /XYZ 89.664 597.061 null] >> endobj 1996 0 obj << -/D [1989 0 R /XYZ 89.664 597.061 null] +/D [1988 0 R /XYZ 71.731 594.904 null] >> endobj 1997 0 obj << -/D [1989 0 R /XYZ 71.731 594.904 null] +/D [1988 0 R /XYZ 89.664 579.128 null] >> endobj 1998 0 obj << -/D [1989 0 R /XYZ 89.664 579.128 null] +/D [1988 0 R /XYZ 71.731 577.345 null] >> endobj 1999 0 obj << -/D [1989 0 R /XYZ 71.731 577.345 null] +/D [1988 0 R /XYZ 89.664 561.196 null] >> endobj 2000 0 obj << -/D [1989 0 R /XYZ 89.664 561.196 null] +/D [1988 0 R /XYZ 71.731 559.039 null] >> endobj 2001 0 obj << -/D [1989 0 R /XYZ 71.731 559.039 null] +/D [1988 0 R /XYZ 89.664 543.263 null] >> endobj 2002 0 obj << -/D [1989 0 R /XYZ 89.664 543.263 null] +/D [1988 0 R /XYZ 71.731 541.48 null] >> endobj 2003 0 obj << -/D [1989 0 R /XYZ 71.731 541.48 null] +/D [1988 0 R /XYZ 89.664 525.33 null] >> endobj 2004 0 obj << -/D [1989 0 R /XYZ 89.664 525.33 null] +/D [1988 0 R /XYZ 71.731 523.547 null] >> endobj 2005 0 obj << -/D [1989 0 R /XYZ 71.731 523.547 null] +/D [1988 0 R /XYZ 89.664 507.397 null] >> endobj -2006 0 obj << -/D [1989 0 R /XYZ 89.664 507.397 null] +2007 0 obj << +/D [1988 0 R /XYZ 71.731 505.24 null] >> endobj 2008 0 obj << -/D [1989 0 R /XYZ 71.731 505.24 null] +/D [1988 0 R /XYZ 89.664 489.465 null] >> endobj 2009 0 obj << -/D [1989 0 R /XYZ 89.664 489.465 null] +/D [1988 0 R /XYZ 71.731 487.308 null] >> endobj 2010 0 obj << -/D [1989 0 R /XYZ 71.731 487.308 null] +/D [1988 0 R /XYZ 89.664 471.532 null] >> endobj 2011 0 obj << -/D [1989 0 R /XYZ 89.664 471.532 null] +/D [1988 0 R /XYZ 71.731 469.375 null] >> endobj 2012 0 obj << -/D [1989 0 R /XYZ 71.731 469.375 null] +/D [1988 0 R /XYZ 89.664 453.599 null] >> endobj 2013 0 obj << -/D [1989 0 R /XYZ 89.664 453.599 null] +/D [1988 0 R /XYZ 71.731 451.442 null] >> endobj 2014 0 obj << -/D [1989 0 R /XYZ 71.731 451.442 null] +/D [1988 0 R /XYZ 89.664 435.666 null] >> endobj -2015 0 obj << -/D [1989 0 R /XYZ 89.664 435.666 null] +2016 0 obj << +/D [1988 0 R /XYZ 71.731 433.509 null] >> endobj 2017 0 obj << -/D [1989 0 R /XYZ 71.731 433.509 null] +/D [1988 0 R /XYZ 89.664 417.734 null] >> endobj 2018 0 obj << -/D [1989 0 R /XYZ 89.664 417.734 null] +/D [1988 0 R /XYZ 71.731 415.577 null] >> endobj 2019 0 obj << -/D [1989 0 R /XYZ 71.731 415.577 null] +/D [1988 0 R /XYZ 89.664 399.801 null] >> endobj 2020 0 obj << -/D [1989 0 R /XYZ 89.664 399.801 null] +/D [1988 0 R /XYZ 71.731 398.018 null] >> endobj 2021 0 obj << -/D [1989 0 R /XYZ 71.731 398.018 null] +/D [1988 0 R /XYZ 89.664 381.868 null] >> endobj 2022 0 obj << -/D [1989 0 R /XYZ 89.664 381.868 null] +/D [1988 0 R /XYZ 169.145 363.935 null] >> endobj 2023 0 obj << -/D [1989 0 R /XYZ 169.145 363.935 null] +/D [1988 0 R /XYZ 71.731 356.797 null] >> endobj 2024 0 obj << -/D [1989 0 R /XYZ 71.731 356.797 null] +/D [1988 0 R /XYZ 89.664 336.04 null] >> endobj -2025 0 obj << -/D [1989 0 R /XYZ 89.664 336.04 null] +2026 0 obj << +/D [1988 0 R /XYZ 71.731 333.883 null] >> endobj 2027 0 obj << -/D [1989 0 R /XYZ 71.731 333.883 null] +/D [1988 0 R /XYZ 89.664 318.107 null] >> endobj -2028 0 obj << -/D [1989 0 R /XYZ 89.664 318.107 null] +2029 0 obj << +/D [1988 0 R /XYZ 71.731 315.95 null] >> endobj 2030 0 obj << -/D [1989 0 R /XYZ 71.731 315.95 null] +/D [1988 0 R /XYZ 89.664 300.174 null] >> endobj -2031 0 obj << -/D [1989 0 R /XYZ 89.664 300.174 null] +2032 0 obj << +/D [1988 0 R /XYZ 71.731 298.018 null] >> endobj 2033 0 obj << -/D [1989 0 R /XYZ 71.731 298.018 null] +/D [1988 0 R /XYZ 89.664 282.242 null] >> endobj -2034 0 obj << -/D [1989 0 R /XYZ 89.664 282.242 null] +2035 0 obj << +/D [1988 0 R /XYZ 71.731 280.085 null] >> endobj 2036 0 obj << -/D [1989 0 R /XYZ 71.731 280.085 null] +/D [1988 0 R /XYZ 89.664 264.309 null] >> endobj -2037 0 obj << -/D [1989 0 R /XYZ 89.664 264.309 null] +2038 0 obj << +/D [1988 0 R /XYZ 71.731 262.152 null] >> endobj 2039 0 obj << -/D [1989 0 R /XYZ 71.731 262.152 null] +/D [1988 0 R /XYZ 89.664 246.376 null] >> endobj -2040 0 obj << -/D [1989 0 R /XYZ 89.664 246.376 null] +2041 0 obj << +/D [1988 0 R /XYZ 71.731 244.219 null] >> endobj 2042 0 obj << -/D [1989 0 R /XYZ 71.731 244.219 null] ->> endobj -2043 0 obj << -/D [1989 0 R /XYZ 89.664 228.443 null] +/D [1988 0 R /XYZ 89.664 228.443 null] >> endobj 1226 0 obj << -/D [1989 0 R /XYZ 76.712 210.511 null] +/D [1988 0 R /XYZ 76.712 210.511 null] >> endobj 78 0 obj << -/D [1989 0 R /XYZ 182.984 176.04 null] +/D [1988 0 R /XYZ 182.984 176.04 null] >> endobj -2045 0 obj << -/D [1989 0 R /XYZ 71.731 167.588 null] +2044 0 obj << +/D [1988 0 R /XYZ 71.731 167.588 null] >> endobj -1988 0 obj << +1987 0 obj << /Font << /F33 1210 0 R /F44 1884 0 R /F35 1437 0 R /F27 1112 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2048 0 obj << +2047 0 obj << /Length 1778 /Filter /FlateDecode >> @@ -6639,1411 +6625,1400 @@ CY }G�|�y;��*+��wmeC��a�jq�F~��3?�]�U[�U�V��ؘ��⎥1<J�F��@��c��c�Q�� �� �y��[�wT�O�gU����Δ�`����1�;**�lV�Y�� ��^"�^���՛Py�]�M_� �-�J��h2��,��i����\4/$��гB���"�yiB�a�Jb��OVCx�,#y��"y� ����fwYL�C�}��4po��I�v&Ќ�hi��?�`����|�5��QT�r��L9zW�Y�����`��5��6 ������r���;��&r������Vۖ����|��S�j`x֖�bޖ�:�%�����)�k��[uUI ���Lj�ड़��H�|�_<3wM<�9��G4 ^��O3��&q��v{�5 �|bl߽��������,��8V��<G�M�T5���;��͗�p�٨���P��R�i�|T������#�m�s/@@�4m�/.H�zys��d�����?5?�C����%�W*�f�j�hf6Вـe��� ;�/���b�w�(�j��� l[Ƌg ��FQ�'��Hȳ�?+��. NR_��%5yW��Ϭ7g~x��"����4�����J����f��3�{plЙ�'6�;0|��'ڏ���c��Y�*�0j�@N�p���"��!�E I֏���:���U��6V��'9z�?gn�}��1��q����&$dp悦?�������p�Mm�S����QU�Uq:�?��u����*y�ﺚ���Ad�ׁ�m-�{���H.�����������?Q����~��endstream endobj -2047 0 obj << +2046 0 obj << /Type /Page -/Contents 2048 0 R -/Resources 2046 0 R +/Contents 2047 0 R +/Resources 2045 0 R /MediaBox [0 0 609.714 789.041] /Parent 1949 0 R >> endobj 1234 0 obj << -/D [2047 0 R /XYZ 71.731 741.22 null] +/D [2046 0 R /XYZ 71.731 741.22 null] >> endobj -2049 0 obj << -/D [2047 0 R /XYZ 71.731 718.306 null] +2048 0 obj << +/D [2046 0 R /XYZ 71.731 718.306 null] >> endobj 1227 0 obj << -/D [2047 0 R /XYZ 71.731 688.254 null] +/D [2046 0 R /XYZ 71.731 688.254 null] >> endobj 82 0 obj << -/D [2047 0 R /XYZ 242.807 654.944 null] +/D [2046 0 R /XYZ 242.807 654.944 null] >> endobj -2050 0 obj << -/D [2047 0 R /XYZ 71.731 646.492 null] +2049 0 obj << +/D [2046 0 R /XYZ 71.731 646.492 null] >> endobj 1228 0 obj << -/D [2047 0 R /XYZ 71.731 602.974 null] +/D [2046 0 R /XYZ 71.731 602.974 null] >> endobj 86 0 obj << -/D [2047 0 R /XYZ 167.419 569.664 null] +/D [2046 0 R /XYZ 167.419 569.664 null] +>> endobj +2050 0 obj << +/D [2046 0 R /XYZ 71.731 561.212 null] >> endobj 2051 0 obj << -/D [2047 0 R /XYZ 71.731 561.212 null] +/D [2046 0 R /XYZ 71.731 548.578 null] >> endobj 2052 0 obj << -/D [2047 0 R /XYZ 71.731 548.578 null] +/D [2046 0 R /XYZ 71.731 533.634 null] >> endobj 2053 0 obj << -/D [2047 0 R /XYZ 71.731 533.634 null] +/D [2046 0 R /XYZ 91.656 512.478 null] >> endobj 2054 0 obj << -/D [2047 0 R /XYZ 91.656 512.478 null] +/D [2046 0 R /XYZ 142.208 512.478 null] >> endobj 2055 0 obj << -/D [2047 0 R /XYZ 142.208 512.478 null] +/D [2046 0 R /XYZ 76.712 484.184 null] >> endobj 2056 0 obj << -/D [2047 0 R /XYZ 76.712 484.184 null] +/D [2046 0 R /XYZ 71.731 464.259 null] >> endobj 2057 0 obj << -/D [2047 0 R /XYZ 71.731 464.259 null] +/D [2046 0 R /XYZ 373.496 452.603 null] >> endobj 2058 0 obj << -/D [2047 0 R /XYZ 373.496 452.603 null] ->> endobj -2059 0 obj << -/D [2047 0 R /XYZ 193.02 440.946 null] +/D [2046 0 R /XYZ 193.02 440.946 null] >> endobj 1229 0 obj << -/D [2047 0 R /XYZ 71.731 413.051 null] +/D [2046 0 R /XYZ 71.731 413.051 null] >> endobj 90 0 obj << -/D [2047 0 R /XYZ 210.827 377.584 null] +/D [2046 0 R /XYZ 210.827 377.584 null] >> endobj -2060 0 obj << -/D [2047 0 R /XYZ 71.731 369.132 null] +2059 0 obj << +/D [2046 0 R /XYZ 71.731 369.132 null] >> endobj 1230 0 obj << -/D [2047 0 R /XYZ 71.731 338.565 null] +/D [2046 0 R /XYZ 71.731 338.565 null] >> endobj 94 0 obj << -/D [2047 0 R /XYZ 207.683 305.255 null] +/D [2046 0 R /XYZ 207.683 305.255 null] >> endobj -2061 0 obj << -/D [2047 0 R /XYZ 71.731 296.803 null] +2060 0 obj << +/D [2046 0 R /XYZ 71.731 296.803 null] >> endobj 1231 0 obj << -/D [2047 0 R /XYZ 71.731 279.188 null] +/D [2046 0 R /XYZ 71.731 279.188 null] >> endobj 98 0 obj << -/D [2047 0 R /XYZ 234.008 245.878 null] +/D [2046 0 R /XYZ 234.008 245.878 null] >> endobj -2062 0 obj << -/D [2047 0 R /XYZ 71.731 237.24 null] +2061 0 obj << +/D [2046 0 R /XYZ 71.731 237.24 null] >> endobj 1232 0 obj << -/D [2047 0 R /XYZ 71.731 219.811 null] +/D [2046 0 R /XYZ 71.731 219.811 null] >> endobj 102 0 obj << -/D [2047 0 R /XYZ 216.458 186.501 null] +/D [2046 0 R /XYZ 216.458 186.501 null] +>> endobj +2062 0 obj << +/D [2046 0 R /XYZ 71.731 178.048 null] >> endobj 2063 0 obj << -/D [2047 0 R /XYZ 71.731 178.048 null] +/D [2046 0 R /XYZ 416.404 167.572 null] >> endobj 2064 0 obj << -/D [2047 0 R /XYZ 416.404 167.572 null] ->> endobj -2065 0 obj << -/D [2047 0 R /XYZ 193.324 141.669 null] +/D [2046 0 R /XYZ 193.324 141.669 null] >> endobj 1233 0 obj << -/D [2047 0 R /XYZ 71.731 134.531 null] +/D [2046 0 R /XYZ 71.731 134.531 null] >> endobj -2046 0 obj << +2045 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2068 0 obj << -/Length 2283 +2067 0 obj << +/Length 2395 /Filter /FlateDecode >> stream -xڝXݏ�6߿��=T֪�o�- r�]4��8�}�e��E�Q�����o8CY^;{A��rH 9���E�?�Ȕ�E���dQ��_�q�c%(���ǻ��E��/�h�]�*��l�E��'��q��f_�/Wax����e�������)�>�x��q"�D�_�ы|9�+��h��_$ q�r?�c�Y�+?�sb)˽�wo���2 -��_��3�i|�#H��]���P�8<;K,V$wX�c���r'⬲7N�n36�Q/�g��扡^�^oe��S72pZ*p�<:G#G��>�u#g�0����k�U�]�����%���$_�Cyi9I��k��^_�!|��TC�?-���wn�UV1����bf�B,¶*b|�O]n� ��9��cC��(,N��\��` -h�Y�P�<�5�̬���F�Ɯ&O]�P�^��wq��)�l��a����f���<���|?ZEy{-B��P��E�+��-^x�k�=�7���ҹk��_� �)��{�]��6F`����N6M]��Kz\�8�l�uKg�WH4��C?<.��{�US��0��f�#A$�6��ۍvӵ�@����LJ�w�n�A"���+e�^�c�<�A&E��L�(K�B�Ps�Վz�n���'�P��Ɵ��K���Qy?����a0{��HJ<�����������C�����V�V�=.���A,�ʫ��:���ʐ���?� ��IU8zߙ��;?&BĬ�!8���Rn�iI.�A4���<��ؐg�"Y�F�HH�4}`��S��ܒ��h�v�����zW��|�W[�u9�������xo.�2�x�4��av�ɖT�C�:,?�oI:Oo9֊�;LV ��;���ȗ^��8�3ک��>Y����0���}ƥ���l��L�@��{�WM��/�fa�2�G�rmֶ���f��?�f/IH'�ρI�����l@*w*a< pRK��7��3� cI�)/�38�3띄^(ICM����o"\^ҿ�A�pv,�������7���㔽�ƔAd��� 8�*aAk"�9�9�n��Mך���B% ��q�0!�����9ꪶ��.�Є���w��g�H��x��+��\�<)+�X�E6-�-�u -Ȋļ�١wđ}��˃�o�۾���O -C\���{�Flyr�`a�i�&'�]���U/�N�{�,K��N&�Eǣ�!���r�x��9��iM!ruS�"y�<sD�뾑��]��̥�̫�9��8��p�����<�Ҝr�̀���*eldщB�K��6���������n��e{S��8�薅Y��=]�S}|�խ�z��J cU�vM���l�0]OP� -M��|G��c��N*G�U��ƪ�Yl�mu5ͤW�1�K�<���D\�e~���R�IE.%Y(ٛg����R*�,^DA��Bc����?��]؏��������p�-P�Ѣ�݇�_���~��y���W�X9fV!�(/������GI�sH���Q�]�-ej�4�Ss�^�j��Q�~ev��%eL�DF�1i?K�����D`*�E��<�^ڟkM�+��سϨUʊp>�?�hy;6� �S��ږ�#JQ��5�� ��W���Q�'"&]�yj%ӤY������� eqF9k����b7��%��0@�픐Z-(��3�� ���;`jj�X#-�li��5�(�3��g�z��M)�'�m�v�t�������'B�f(�l�5��4�5���KVm.�ϩ)�<��0���H0���棅�Y͐�3�]��A��)�_��#?��I�ˤ�aT\�>�Mw� ;vN=�q{�5���hH���O��b�1A�Q� ���l5O5 �,n�yRRn� �2��i��l\��z����T�<�:ͷS�O=��^?� eF^g���h�0�csM5�8t��nIMo;�;�e�>�m�8\\oW(DV(9u��<��i�\���S0 cP����� �i9�?)2h a��-g]��߮��̝P���G+AGyh���Ȋ�"+��5 ��J�o�q�H�s����M�ʽ��DX*�7N��wzzDcD��B��4�kF ���k� B��F�I����H��#�5Ll�&��U]Ԍ�[ũ���'�s��j�ʲsC�*H�"s~��c[߈���U�|D�'���ֵ��ͳ�n����ۙ}���4Ϟ]��v<����.��Ε�U�D�~�����(WO�I�A0�Br_{���?�"endstream +xڥ�r��Ŝ* B�ͽ�n��uY��+'����0�c� -M�>�ɑfU��T`��otCz�ÏޤZ�!A��$ޔ퍿9����h�� �n�����/߅�&Wyn���Hg*O7i�,6��/��cqͰ����Ǐ�������M���MSl������|h�*��W�r8/�*�c�� �g*�"�,PZ�*C��̻�x��͛O����a�c����W?��n��@�<�t����P� '��G�B9�@��SA�WS#�V{���k� ��T��=��~b�q���n����8Y!9��M[ԍ����{�W�צ/��b����$_o@�$A����D '�W��8�/��JǂT����m{Jp���E�:�WQ��,��E�c��2E�6�hџ7Gzl��\H��l �kˣ� 0h�YQ�<�5�XYfd ��3y��m�6� �����n�C��4ۛb�sI�{�γ�������Ő.й&]��⅏恁������<�p�:�P�{��ЮLA`%��&:�m��c��~�Ţ��ΰo!���)����������나�Z��Ȫ��t�q�w�@�r"�TpW<�M=J$�{�l1�%��َ��!G�vGY*&8�k�ڝ^tճ�=� 8�w�hv�C r��� Q�ۿ��y�x��f���h��GE�A��{]?2� +��6tx\���ɠ�*��Q���So-n���Cg��=�e���ScƙjU�b���܄�,���[���X�%�q1�����ۑܓ�!���;��&�YS���8`p�~@>�}���~@��R 7������$/��Z���QO�&+ft��،LjC�r6�I��C]����i7;�n�Y!�hSX��v@V�p�P)��]y̱�#FLy��a NJ~�kmQ��0I�OM���B`<#C�����+��Z����{�6�x��n<};Q�D�$�=x�<��D'�Bf6 �K�� +�5� V�S*�IQ���<�f +haF�s�A\I����l1`��Cn��5�Ù�oP�i+��3*�5㱯�a���"`�%F����(�}@�%����k���٭��2Z'��P�Ϧ\�*���<��>~�p�y��g��p�2�C��* +�X�"��?(���u7=���35�?|��B�� '��X�ŕzx���[��#i�0�{��q +w8%�>4}��èvڣ1y�F]y��O����̿��Ar�އ��e��ŝ��3�⧢��JW{��#�Ւ����녥��W+<�e��z@d�uW�矻�I1�[�q�Qu����U%�AMak��R)V���?@#Ylfvj��̕J�],�@b2����`NM����Wr���ͺ�)E(�`'h\������j�O;*��MK�IS����qUs��0B�,Ѫ)�Si�W�`�Gc���]�46�]!�G*E�k���p��җާ!�j�2V��e*e��T��A��@�%=��������g��N�z䱝�@�\���0Ls�&���IVp9gQAͮ�i�2αwM����N R�8:����H��P[�'S��<_�J��@y�{k.h�E��;/�X\v@C�.)Y�6�(�a�CA�!@$�´�$��0��o�/��J*�%�����^�����.r�dy�HAL ɋ�[�r���f����r|� -*�`4`�a�g�<W��QA�s/Td[DB���7'34ҐB����?w��s-�;�P��7��zXi�-�p:67�ПIՓ �*$��a��/�$h���~�1�����8�(#�+����e@J�������� +�kn}���H�'�x/�bv ��-n���;����Ҙ���,v�! 꺹Y��]c���A@?��MU�c���L��@Z��Ϝ�Y��u��4�~��P�|���7SA��=��~o7 +��F�<7���o>��8���e�k4x/�e/I�3;&*H����vC#��8��L+?cy��o��I'pY|�t��/��Oؼ�=���y� +b�~{w��?��`"�2������FWXG<�G�nu���py���.TD�O��J��Єs�Zw� �\�JC� /)ǂ�ę�r`ٚrb5ȃ@J�9�.�q�fI�4�a�1!uFP�!�i����}~��u��+�V"�x�H]�Z���M ?_<�;Ӗ� �x0�^]��Έ��@)g��,�F�㝴,��%�Z��}��A�� "(���R+�W���[!����|H�ӣGg��`�G��Gg �Q~q�~��پu���^���K�A��'��)�_��Nݬ��LQ�0C��/�?����"�Y��8x���Q�2�^�7@����FPP��מ�2��s�N�endstream endobj -2067 0 obj << +2066 0 obj << /Type /Page -/Contents 2068 0 R -/Resources 2066 0 R +/Contents 2067 0 R +/Resources 2065 0 R /MediaBox [0 0 609.714 789.041] /Parent 1949 0 R -/Annots [ 2081 0 R ] +/Annots [ 2077 0 R 2084 0 R ] >> endobj -2081 0 obj << +2077 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [350.297 462.551 395.155 471.033] +/Subtype /Link +/A << /S /GoTo /D (parameters) >> +>> endobj +2084 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [244.495 240.371 283.866 248.853] +/Rect [244.495 139.25 283.866 147.732] /Subtype /Link /A << /S /GoTo /D (security) >> >> endobj -2069 0 obj << -/D [2067 0 R /XYZ 71.731 729.265 null] +2068 0 obj << +/D [2066 0 R /XYZ 71.731 729.265 null] >> endobj -2070 0 obj << -/D [2067 0 R /XYZ 71.731 741.22 null] +2069 0 obj << +/D [2066 0 R /XYZ 71.731 741.22 null] >> endobj 106 0 obj << -/D [2067 0 R /XYZ 222.436 708.344 null] +/D [2066 0 R /XYZ 222.436 708.344 null] >> endobj -2071 0 obj << -/D [2067 0 R /XYZ 71.731 699.891 null] +2070 0 obj << +/D [2066 0 R /XYZ 71.731 699.891 null] >> endobj -2072 0 obj << -/D [2067 0 R /XYZ 453.495 689.415 null] +2071 0 obj << +/D [2066 0 R /XYZ 453.495 689.415 null] >> endobj 110 0 obj << -/D [2067 0 R /XYZ 225.412 648.966 null] +/D [2066 0 R /XYZ 225.412 648.966 null] >> endobj -2073 0 obj << -/D [2067 0 R /XYZ 71.731 640.514 null] +2072 0 obj << +/D [2066 0 R /XYZ 71.731 640.514 null] >> endobj 1235 0 obj << -/D [2067 0 R /XYZ 71.731 599.985 null] +/D [2066 0 R /XYZ 71.731 599.985 null] >> endobj 114 0 obj << -/D [2067 0 R /XYZ 287.71 562.77 null] +/D [2066 0 R /XYZ 287.71 562.77 null] +>> endobj +2073 0 obj << +/D [2066 0 R /XYZ 71.731 552.405 null] >> endobj 2074 0 obj << -/D [2067 0 R /XYZ 71.731 552.405 null] +/D [2066 0 R /XYZ 71.731 540.488 null] >> endobj 2075 0 obj << -/D [2067 0 R /XYZ 71.731 535.507 null] +/D [2066 0 R /XYZ 71.731 525.544 null] >> endobj 2076 0 obj << -/D [2067 0 R /XYZ 71.731 478.72 null] ->> endobj -2077 0 obj << -/D [2067 0 R /XYZ 71.731 447.836 null] +/D [2066 0 R /XYZ 71.731 474.207 null] >> endobj 2078 0 obj << -/D [2067 0 R /XYZ 71.731 393.106 null] ->> endobj -1236 0 obj << -/D [2067 0 R /XYZ 71.731 363.153 null] ->> endobj -118 0 obj << -/D [2067 0 R /XYZ 218.078 320.056 null] +/D [2066 0 R /XYZ 71.731 436.543 null] >> endobj 2079 0 obj << -/D [2067 0 R /XYZ 71.731 316.226 null] +/D [2066 0 R /XYZ 71.731 379.656 null] >> endobj 2080 0 obj << -/D [2067 0 R /XYZ 118.555 274.035 null] +/D [2066 0 R /XYZ 71.731 346.715 null] >> endobj -1237 0 obj << -/D [2067 0 R /XYZ 71.731 230.408 null] +2081 0 obj << +/D [2066 0 R /XYZ 71.731 291.985 null] >> endobj -122 0 obj << -/D [2067 0 R /XYZ 187.345 197.904 null] +1236 0 obj << +/D [2066 0 R /XYZ 71.731 262.032 null] +>> endobj +118 0 obj << +/D [2066 0 R /XYZ 218.078 218.935 null] >> endobj 2082 0 obj << -/D [2067 0 R /XYZ 71.731 187.539 null] +/D [2066 0 R /XYZ 71.731 215.105 null] >> endobj 2083 0 obj << -/D [2067 0 R /XYZ 154.51 177.78 null] ->> endobj -2084 0 obj << -/D [2067 0 R /XYZ 338.14 177.78 null] ->> endobj -2085 0 obj << -/D [2067 0 R /XYZ 71.731 165.66 null] ->> endobj -2086 0 obj << -/D [2067 0 R /XYZ 71.731 165.66 null] ->> endobj -2087 0 obj << -/D [2067 0 R /XYZ 71.731 144.791 null] ->> endobj -2088 0 obj << -/D [2067 0 R /XYZ 113.898 133.247 null] +/D [2066 0 R /XYZ 118.555 172.914 null] >> endobj -2089 0 obj << -/D [2067 0 R /XYZ 177.702 120.295 null] +1237 0 obj << +/D [2066 0 R /XYZ 71.731 129.287 null] >> endobj -2066 0 obj << +2065 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2092 0 obj << -/Length 2232 +2087 0 obj << +/Length 2553 /Filter /FlateDecode >> stream -x��]�ܶ��~��8mq�EI�G -?�n�:�����1���U���D������Z��Hڗ`���r��=�^?�e�e1Q��Txe{z;X�� ��E 8/�o���c�`E{�[/�9+2/�#��Ȼ���/��հ "���u7j�4u�����K�4r��������DE��"����pV�Eى1w�0gq��~�e�����z$�0�Ep��x직 Uպ6B��&����#A�7��e3�y3��\J��XX`�蔪g�p�Y�Z��a�^v;ǝ������A�㝻�]ǹ� �~������4��ĦA�ؠ�VȘD<fB/�+�^�(v���z�}� G�h�_u���$ �z�tX< ��0�K(���nM]���I�G�����~j쮮��e�ii4g�w;�M�?M�V�\�� K0��q��]E��I/)%>���A -`p1I�, �~RE������aK7ҷaPP�d�7IS�s��()����� \a[���� �Ŝ 5ū("T��ԪHkU���q�]�,�� M�G�@@,��v����-�m����(�}������w{ `���!1P,����<����3x���۟$pTz:�|D6&�[y$��O�q����6ȴ��f�v��MX-�z�_����C�ZF�8�sl.�� G+E�2a9�Rp���)�#@���<1���l�H�aά!a�C�����g@����BP�Ԥ>�;�Z��� -���'6R�?��(���k��X���Qq�,h���ڙ���y�R��& �_�*� ��D�(tm���8��YsJeTuksDf���`��^��h�ZU��z{A���S�v�8+ �:?*���h��'|�8��w3 2�$�������z��[L�)m "�CY7���j��r��1��Y,��"�?TV��Mj_��-�N��w8$ -�� T&c�`FU�D[)0ak�'"Jz7 6A��\pljs��,�|�}09�ӱ.�3�|9 � -ˤ�D9���"e�H�L�'X ����A(���ۓd���<gi(�3`q�3Pp�Ev�����*����s8W�]��0�l��8M�\��]2U`; �$�?ɓE 8+�x�Yʋ�#�mB���n�C����A�'P��9���dK��u -�%�s�Y�t�n!s�n� -.�=����DN�\����"��mo���<��$"P��3h��[8n��!�/��t�8�Yl�%�������WP��a,�y����B"� ���̫� �rp��&YO����{��L�GTS"��z4l;�eUN�7��c0;�)^"p|�VN�@2X^��3�E6���B�dꢫ�-�u��4��$n2�V�������"���`�;V�5���e��DT�:��cT� -��g`�� u.�S(����>�<�Ao+R�dl���&q��<�������T����$��%>�t���5��#}6r��dh�-˽)b�̇���Vp�0���;0�'�\�&�%p�� �A�������\��6h�Ԁ0���b����/�9�ذD��3�tzyFrYv#�tM3R�����n���A�xw"�.�N5��CϪ춯����Ӱ.�0��������Jp��ڗ4u���҃j�������2�\j��v��f�B�q~DX� �{���ئz=լ����o�����܅�k�㧦z?��45K_o��-�@�c��6�#JG�Q���9������CT��Nx�߬8�@�<��⡪D�T����H��y�d�����z�Y5����'?���e�< - R�A��g$ �6Ѣv4�Xf#t� :��[���%$|�XD�~Nk�C���^(�֖@��oF7oR5�7�g�N��M䢌^G�`B�#��_�-C N�P�S��ojV/\�7)����M۽~�JY���A��og=w%=R�E�Ŝ���\�N�psr����^�]0��b"����%��40�J=y\ -:���DV�S�շ�-,��.{�,�^Y��@nM�КK;����n`�71D>�YfM�,�P�����\ -������Ik0cZ"\�Ǐa����@���,s٩�y��{��D���^D9����ʙ���m�U�"�ZxC�s ���A�x ��y6;���V����x�x�Jr�F�r�]}�>����4�P;Y�!�{M��X�endstream +x��َ���}�b���l�I6�y��ؑc!1�/�,�d�c#���U]����`�`��XU]w��U�r�J�F�s&jU4w�j;��I���_�|�{�M�r�'��q��e&�t�F��T�z,�y�vz?�~�*�BA���0꺮�-�����Tu���������TE�ȳ�Y�Ε`a�����%sR���J�PH(ͼ�+t]t�AnQ +�<=�+X�a d���YKx�D��n�K��n*�@/���H�@-��#E��@ ;S�4�qڋ}}�5 E:\�]+OW�w��P����������\ �a ���[��+���2d��Y��p(vbA4Hɏ�\(0�J���"?�a��50��ܡċ�����0���G�tt٣?\����I��:���9S"mS���e:�#-i�7�E��� �ݳB����"�7�C�*G���}����5f��I�'0�=�ʗ�����(rj"���W#������5�V�J���Pv~��cS݈��:����[���sw�\��"JO5 +��k���x��?����'�Q��E�o{���@�k*QB��G�d,���N����@���W-=��=A��F�E){JXx�1n��G�>a��d�Y��4)s�\��Z�p�T�$�\�1vD���v�c��T>}��axpG�}\;�V��OIj\�L��ObZ�=��F����'�Rg�F����'��Rc���F�ʿ��'���ƾ�Y6��|&%,��`&=T;��j<��=�b5�V���x�=�}�n�5�8u6���!�^� �O�2���q�)���|)8s�S-��5�Q��M����vvmgm�,��|�+*���2��<��>�٢����X����$���`Նȓ�:���Fzk�<�{e�i!�T+�]�ڳ��kȰ����AA;�j�u�X�yƮC=����XɢP�Ea���g 7���%N� �@�Vx�n��p8��{��6f1`���֬�#`s1�l;�~XJ�̃N�ߺ�������������̮q +��4�ό�vz �H��w��y�( ��*��0���7=F��;�(������2醑,�-�njGt��s����&%�ԫ�R�+ߌ�z����f"�9��f�ۺKA��3EV۶��^q�6o�= +[�oT����w�\���j�ɛ�l'ӎ6�c͚�Bׅ8f-I�?^vf`���5t�)�E����BU%ǃ�b&LB�ۏU�m�wK)� �:q� ���S�h���1��p� ��+�ƴ�z��KOǙw�3:�W��-��H��%n��q�����}��@Ѵ1��v��������Ei�ևv�-u�=ϛ���g����W>�ܭ7�d�jر�:nN\uŶ�u��Mכ�c�Cg%��y�hB0ў�W;��9"U,Y�@=:Zbye��H�Xl�����=dL� |��������mt{�kN�wF�,:_�k=B�n�)�k���lt����Yb�s��U��F1��A#��8��q`k=쒟�Ph:�{�������R��`uÃg�o˘6w�?F�oAѦ�+�T��@�?�s�� ��<�����t�0����T�g���78�u9ik8���},~�u9H\D*��ߐ�߯�tb�FooQg@ �o�g�(f��gVmi�� đ� 7\O.�'�]����ة#�w���W/ɺJ-���cX�icy��I]�I���HDp�[7 �_ �M�B��Po��'��+�L$В=+��</@.4�g`�zyudv�x���y��%�偹d'���8)!�*�I�k�"��L��/p�D�]38�����`c]���6�`� �r� +Y�lb�r!���Zr!��9(�WQ,�"�>{�J8�w��_�?�!r��� +XB�ޛ�����3%$����hз�wE�w��!�M�o�"�[��U�Й���+=9���&�O�̗Y'Â+�(�Ȥ ��ޟ�XY�������Nns3DҤ��&vʀ�LK��M1����ʎ���S�8��-�_ Y,uI�,dQ���S#����Y��<s�Y2��]c�v]�tbK9����t�9Q�=����u��Gh���1����w������P7�(�Π����Jy8n� ����# �Z����8 +D�% ����a���D�29� [4�t�*E�y��p����&|��-�C{�1��g�؛%qѻ��&&�ŕ��8���X��|ok8��G�a쥂>�c�ݰm <���O�c��X�_���dž-�_�����4���EOǴ���̡���ӝnT '6���M�r�h7]Ym��7��[#�W�ưf,^4GQ���L�̗��$=��o�N,��`X�/��z�������4��b��Ep>��Ͷ �mõ�y��ֹ�w8�%���u�~V�)P�X� D!z�@����>�O�*>%��77�4�����Q��|s�� w�i�,�h�i��tcwoM��c���������3D��L����uB���KAk�1P6��/Zל~���'endstream endobj -2091 0 obj << +2086 0 obj << /Type /Page -/Contents 2092 0 R -/Resources 2090 0 R +/Contents 2087 0 R +/Resources 2085 0 R /MediaBox [0 0 609.714 789.041] /Parent 1949 0 R -/Annots [ 2099 0 R 2100 0 R 2101 0 R 2104 0 R ] +/Annots [ 2107 0 R 2108 0 R 2109 0 R 2112 0 R ] >> endobj -2099 0 obj << +2107 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [428.768 554.037 488.605 562.949] +/Rect [428.768 401.206 488.605 410.117] /Subtype /Link /A << /S /GoTo /D (mysql) >> >> endobj -2100 0 obj << +2108 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [508.095 554.037 537.983 562.949] +/Rect [508.095 401.206 537.983 410.117] /Subtype /Link /A << /S /GoTo /D (postgresql) >> >> endobj -2101 0 obj << +2109 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.731 543.143 99.128 549.997] +/Rect [71.731 390.312 99.128 397.166] /Subtype /Link /A << /S /GoTo /D (postgresql) >> >> endobj -2104 0 obj << +2112 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [308.275 456.278 353.582 464.868] +/Rect [308.275 303.446 353.582 312.036] /Subtype /Link /A << /S /GoTo /D (security-mysql) >> >> endobj +2088 0 obj << +/D [2086 0 R /XYZ 71.731 729.265 null] +>> endobj +2089 0 obj << +/D [2086 0 R /XYZ 71.731 741.22 null] +>> endobj +122 0 obj << +/D [2086 0 R /XYZ 187.345 707.841 null] +>> endobj +2090 0 obj << +/D [2086 0 R /XYZ 71.731 697.476 null] +>> endobj +2091 0 obj << +/D [2086 0 R /XYZ 154.51 687.716 null] +>> endobj +2092 0 obj << +/D [2086 0 R /XYZ 338.14 687.716 null] +>> endobj 2093 0 obj << -/D [2091 0 R /XYZ 71.731 729.265 null] +/D [2086 0 R /XYZ 71.731 654.727 null] >> endobj 2094 0 obj << -/D [2091 0 R /XYZ 71.731 718.306 null] +/D [2086 0 R /XYZ 113.898 643.183 null] >> endobj 2095 0 obj << -/D [2091 0 R /XYZ 263.826 708.344 null] +/D [2086 0 R /XYZ 177.702 630.232 null] >> endobj 2096 0 obj << -/D [2091 0 R /XYZ 71.731 657.37 null] +/D [2086 0 R /XYZ 71.731 623.094 null] >> endobj 2097 0 obj << -/D [2091 0 R /XYZ 450.823 633.624 null] ->> endobj -1238 0 obj << -/D [2091 0 R /XYZ 71.731 613.534 null] ->> endobj -126 0 obj << -/D [2091 0 R /XYZ 224.186 576.319 null] +/D [2086 0 R /XYZ 263.826 612.299 null] >> endobj 2098 0 obj << -/D [2091 0 R /XYZ 71.731 568.966 null] +/D [2086 0 R /XYZ 71.731 592.21 null] >> endobj -1239 0 obj << -/D [2091 0 R /XYZ 71.731 543.143 null] +2099 0 obj << +/D [2086 0 R /XYZ 229.324 581.415 null] >> endobj -130 0 obj << -/D [2091 0 R /XYZ 156.121 508.772 null] +2100 0 obj << +/D [2086 0 R /XYZ 444.938 555.512 null] +>> endobj +2101 0 obj << +/D [2086 0 R /XYZ 178.998 542.561 null] >> endobj 2102 0 obj << -/D [2091 0 R /XYZ 71.731 506.297 null] +/D [2086 0 R /XYZ 71.731 535.422 null] >> endobj 2103 0 obj << -/D [2091 0 R /XYZ 118.555 469.75 null] +/D [2086 0 R /XYZ 169.98 524.628 null] +>> endobj +2104 0 obj << +/D [2086 0 R /XYZ 71.731 504.538 null] >> endobj 2105 0 obj << -/D [2091 0 R /XYZ 71.731 434.766 null] +/D [2086 0 R /XYZ 450.823 480.792 null] >> endobj -134 0 obj << -/D [2091 0 R /XYZ 221.647 407.743 null] +1238 0 obj << +/D [2086 0 R /XYZ 71.731 460.703 null] >> endobj -2106 0 obj << -/D [2091 0 R /XYZ 71.731 400.545 null] +126 0 obj << +/D [2086 0 R /XYZ 224.186 423.487 null] >> endobj -2107 0 obj << -/D [2091 0 R /XYZ 173.289 376.859 null] +2106 0 obj << +/D [2086 0 R /XYZ 71.731 416.135 null] >> endobj -2108 0 obj << -/D [2091 0 R /XYZ 71.731 369.721 null] +1239 0 obj << +/D [2086 0 R /XYZ 71.731 390.312 null] >> endobj -2109 0 obj << -/D [2091 0 R /XYZ 71.731 346.806 null] +130 0 obj << +/D [2086 0 R /XYZ 156.121 355.94 null] >> endobj 2110 0 obj << -/D [2091 0 R /XYZ 71.731 302.624 null] +/D [2086 0 R /XYZ 71.731 353.466 null] >> endobj 2111 0 obj << -/D [2091 0 R /XYZ 71.731 278.961 null] ->> endobj -2112 0 obj << -/D [2091 0 R /XYZ 71.731 234.779 null] +/D [2086 0 R /XYZ 118.555 316.918 null] >> endobj 2113 0 obj << -/D [2091 0 R /XYZ 282.227 210.283 null] +/D [2086 0 R /XYZ 71.731 281.935 null] +>> endobj +134 0 obj << +/D [2086 0 R /XYZ 221.647 254.911 null] >> endobj 2114 0 obj << -/D [2091 0 R /XYZ 71.731 195.175 null] +/D [2086 0 R /XYZ 71.731 247.713 null] >> endobj 2115 0 obj << -/D [2091 0 R /XYZ 71.731 180.231 null] +/D [2086 0 R /XYZ 173.289 224.027 null] >> endobj 2116 0 obj << -/D [2091 0 R /XYZ 71.731 131.18 null] +/D [2086 0 R /XYZ 71.731 216.889 null] >> endobj -2090 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R /F48 1896 0 R >> -/ProcSet [ /PDF /Text ] +2117 0 obj << +/D [2086 0 R /XYZ 71.731 193.975 null] +>> endobj +2118 0 obj << +/D [2086 0 R /XYZ 71.731 149.792 null] >> endobj 2119 0 obj << -/Length 2251 +/D [2086 0 R /XYZ 71.731 126.129 null] +>> endobj +2085 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F48 1896 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2122 0 obj << +/Length 1911 /Filter /FlateDecode >> stream -xڭX{o�F�?����c�-��ɮ��]6�%�k�"P��-T�4����%�Y~4�.<�A���3�Ȇg4s�̃Ɲ7FI��������#&<d2s�|3���\�Co��F���l4�\�h��d�[�%��� l���U���"�V�}ݭ~ˋ"�����Ųx31��W�2cN�bfv$<����u�E�UQ�c'���ٖ� �۱c[�g5iK���6�b��س�O�t��?��Mo��^{4q@c0jq��i�o�2C)qW�K�T �e�*�^$�126]Y�5D%븉0<O����J�y D�4U�л�|��r��9�>��(���]�qX-��*�׆����R� �r�ki��b8�,Iܵ�%爩)jED�9��j7����m�M�5� |�A��m���L/�#���K{��H�����5�R�uM~!z��� &{L<{[��@y�QW�� -���%2Q)l��!��ny�`z���TJ�K�yp��KX?��ʹg8q�ۀG��R�ye^�eǽm���Ԟ�q�C�����[�`�G�)m���u�����N�lן� F�-a���D��A-�R%�r'�*; ��a��8I@����^�&H��Ҩ ��"$8�קz��P���̵���]��"���t���b< m[͖H$�dH$1.C�1�D�T~�홅������ߺ���8����)�C��(_ƮmuyA6�;G�JLri ^x���ĭvi ��t&])+�ܰ��*���Z�����v���%��DR�S�>����`���F����qF�U��Ve!x����0���CA&{���#�|�w�@�����Ԏ�0��=)쀐Ҩ]JJq���"��q&�65t��i��c��9�!�_}��k����O�- S�ć(�#���{��<�i��\J�✡b�����amU�}�� �Ѐv��k�iN���x'���_Ks�I������u��,�k��A -���9�ژP����R�(��`YZӳk���@s%����+�rz�eS0@�7"z!�]�dI�u�KW����vɚ�*c ra�A�L����N�s�,0�SSV���Ҁp��.��k�%�Ǯza=���0�:9`��<���%$� Tt,?)r2�0m�U�f���L;s��j��j(���r��=�%_�/���˫�����ٿq��^8;�̫�>?~������v������0>/i�W?‧�.v|sRC_A4��B��@��������Xh$�?Y��ݱgW+�� -�Y��|X�MN �4��:��r/s?����3ʱ(Y2�͎���� c�2hwTU��(�I9���O�yk��TB��!г�����+RS�L)S;lײ��p8��f�N��j�'�l��K��Z2U�b�L�� _�+"nr�<����:6k�/6ȭ�uɨ��$�d��2���X��b��p�m��iiƂ���|fv�͍)M{U�����\=Lo��3v0�vTV�ns��̈��z�>��5�*����@A�G;�����2�S��a�<�yc'��LX31Я���X��E�R4p��AI8Dy�:!dF�:�xb�m��Qf� ��O8�Tg����E���V2�ړ�����^2# (��A��]�.sy4��8�2<4�? ��g��R;�Ò��c�f�ԛ&��$�a��] �X�a�>@��V�L_�7`�3���X�!�N<�8��ϝ@��M��+��4&��R�'���\� ��>��1�� �d2�s��{� ���`p"<� ������-�⩐��.�\��A~� - -�&�9����(�/�cg�܁)���n�����"��a�C�kDž6id��D��u=�\����ӧ P9g�$������T5y���B�ᚸ c]�H��[61B/cB���2�i�9������$���EQ����X�%��@�5Y�Z�&�]��Nׂ.è�C*J��5u���0C�<A��Ώ�j$�^���~"�6<'�;�=d��`&X����5��l��S�������6����莖�d���{G������F��js����0��#�i��-b������e>eh�$�{/M���7/�Y�S��R�iq�x�����i�����<:��������Ǿ�������ŏ���Z0��q��u�ݻ�O�� ȯ�>@�3{�1}?��-=p�@�YUw�?z?��; "�endstream +xڭ�n�F�=_!������V +��8=��M��@kr%塒K���wfgx(r�-x���;����"N���/ +i��]�`���6��3��͓Ս�/��:���"�����9I�-6�{��\�j�������c�iY�E����~��(K�����ɋ��4�cg��_�k�9,\�4Q��%��A?7q� 0�uJ���-�]��v��%-�|�ᚥ-���n�2�K�K��[�x�-\'���9kA�nr��}~�[E��gɲk#i��VVKa)cCZ�:�LA���SKj-ӼR��O�)}pC7Sۥp-ٗ��/iO��K���N�s��AS�)�ς���+T�lP�jL���p4��}Pr���;8B:�u5IN�R�K�X;c���j��<�<�o��@� +��=��9q�0)7>��²Qf��r���v�<7-l��QY�ʘ�� Ҽ8`k���ޢ�M���U�����{��:���*����B`9���M��s�������>���1Ҽ8��F1D�� �ۥJc4���.v�%�����nB���¨F��Mk�B~xkѪT�G�45��_��J�f; ����Ljy';��� +2�h��-���Q�c�� ����&���"��%I�X}GE@杀�Q �P6�p� ���#�Y�l�ۂd^�oԃ���s�O8���=W��ĭ���M&���f,5�'��}Y�Z����ѷ�jw� ��P!�P�k�KX� +�0ĕX�g�w� ��J�.���M���P�R�7�z��S0Q|L7�<�6`�㺌7�̡�����۫�rt�VGx� +&��Ǯ�ܘ1J�T��I�SZ�!M�Λ����p��\�K 5� |�f�_]��g�Q�i�gcûH����KRs�������� &{ؾ�j��A45 +���m2�(��u�7�ian;� +�Qq�����CQ��n��G]��x�*��y+,AhjߥT<w��;����?��I�.Ƞ K�V�Ɋ�qt�>�<*N���R:]UG'����AM���5��n& �e�/���M���r�M�xP�l؈�a�:v����dX�]|C#֚�\g<�-�Ԍ\1�!Bg�Au'S�Eǣ����ު��%�(�&�����g KH�j�� +\������6�K��ŀ�U3��r`͵�?_���2 +-�X�I�j�W�^݀�Zr{c�[ُģ�k���uU�����غ� �=ɪ��s�ۚ��.4�~��L��f}v�F�j x�Y�+/v���Z�Y�.��柴5��گx��{�rnR���!�Qr\�X(Ya���P�v���@w�M͚/����Y���:�?� �kب̄[p��M�6��M����|�!�K@p-�I�?��Vuf,Ƴ +���D|�d�g�W�%(�Ƣc�ƨ�0������Ӝ[ +3T�e�C�2�OZ���1�N�f��J֩�w��SL��^����Ra}��0�����5�}L�ZA�����Ӳ ��;��2��nl�9�h�4�4�!K�w�8�/��ի͋�T7Wׯ^8�QwH?�Oj���/o������o^n~��ǘy� ���W"��K7�}��F������R�>T�;�4���(��Oƀo�v܁�Վ��p��~D! (ϥ��5���{r�i9�NV�W,�R&�Y +��##L��z�� �g��r���@���Zt���vw�:�Ws��M_f�\�'�F ��!W�x����A�'X&�Fuz|�f������Ϻdx�%�.�o~�%�=�ϟt���K�I���z<=���I��.�t��I��nj6�jz҅�\���IA�$"���M���M��� ��̈́��OH�����{endstream endobj -2118 0 obj << +2121 0 obj << /Type /Page -/Contents 2119 0 R -/Resources 2117 0 R +/Contents 2122 0 R +/Resources 2120 0 R /MediaBox [0 0 609.714 789.041] -/Parent 2157 0 R -/Annots [ 2145 0 R ] ->> endobj -2145 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [446.952 215.427 499.255 224.339] -/Subtype /Link -/A << /S /GoTo /D (localconfig) >> ->> endobj -2120 0 obj << -/D [2118 0 R /XYZ 71.731 729.265 null] ->> endobj -138 0 obj << -/D [2118 0 R /XYZ 276.55 708.344 null] ->> endobj -2121 0 obj << -/D [2118 0 R /XYZ 71.731 703.248 null] ->> endobj -2122 0 obj << -/D [2118 0 R /XYZ 71.731 670.321 null] +/Parent 2145 0 R >> endobj 2123 0 obj << -/D [2118 0 R /XYZ 277.08 646.575 null] +/D [2121 0 R /XYZ 71.731 729.265 null] >> endobj 2124 0 obj << -/D [2118 0 R /XYZ 71.731 634.456 null] +/D [2121 0 R /XYZ 71.731 657.37 null] >> endobj 2125 0 obj << -/D [2118 0 R /XYZ 71.731 590.632 null] +/D [2121 0 R /XYZ 71.731 642.426 null] >> endobj 2126 0 obj << -/D [2118 0 R /XYZ 357.781 578.73 null] +/D [2121 0 R /XYZ 71.731 593.375 null] +>> endobj +138 0 obj << +/D [2121 0 R /XYZ 276.55 560.498 null] >> endobj 2127 0 obj << -/D [2118 0 R /XYZ 71.731 563.622 null] +/D [2121 0 R /XYZ 71.731 555.402 null] >> endobj 2128 0 obj << -/D [2118 0 R /XYZ 71.731 548.678 null] +/D [2121 0 R /XYZ 71.731 522.476 null] >> endobj 2129 0 obj << -/D [2118 0 R /XYZ 71.731 511.283 null] ->> endobj -142 0 obj << -/D [2118 0 R /XYZ 318.721 478.406 null] +/D [2121 0 R /XYZ 277.08 498.73 null] >> endobj 2130 0 obj << -/D [2118 0 R /XYZ 71.731 471.208 null] +/D [2121 0 R /XYZ 71.731 486.61 null] >> endobj 2131 0 obj << -/D [2118 0 R /XYZ 71.731 440.384 null] +/D [2121 0 R /XYZ 71.731 442.787 null] >> endobj 2132 0 obj << -/D [2118 0 R /XYZ 105.494 429.589 null] +/D [2121 0 R /XYZ 357.781 430.884 null] >> endobj 2133 0 obj << -/D [2118 0 R /XYZ 71.731 418.219 null] +/D [2121 0 R /XYZ 71.731 415.776 null] >> endobj 2134 0 obj << -/D [2118 0 R /XYZ 82.491 407.97 null] +/D [2121 0 R /XYZ 71.731 400.832 null] >> endobj 2135 0 obj << -/D [2118 0 R /XYZ 71.731 374.695 null] +/D [2121 0 R /XYZ 71.731 363.437 null] +>> endobj +142 0 obj << +/D [2121 0 R /XYZ 318.721 330.56 null] >> endobj 2136 0 obj << -/D [2118 0 R /XYZ 71.731 346.635 null] +/D [2121 0 R /XYZ 71.731 323.362 null] >> endobj 2137 0 obj << -/D [2118 0 R /XYZ 71.731 331.691 null] +/D [2121 0 R /XYZ 71.731 292.538 null] >> endobj 2138 0 obj << -/D [2118 0 R /XYZ 71.731 294.296 null] ->> endobj -146 0 obj << -/D [2118 0 R /XYZ 211.285 261.42 null] +/D [2121 0 R /XYZ 105.494 281.743 null] >> endobj 2139 0 obj << -/D [2118 0 R /XYZ 71.731 254.341 null] +/D [2121 0 R /XYZ 71.731 270.373 null] >> endobj 2140 0 obj << -/D [2118 0 R /XYZ 271.067 230.536 null] +/D [2121 0 R /XYZ 82.491 260.125 null] >> endobj 2141 0 obj << -/D [2118 0 R /XYZ 243.475 217.584 null] +/D [2121 0 R /XYZ 71.731 226.849 null] +>> endobj +2142 0 obj << +/D [2121 0 R /XYZ 71.731 198.79 null] +>> endobj +2143 0 obj << +/D [2121 0 R /XYZ 71.731 183.846 null] >> endobj 2144 0 obj << -/D [2118 0 R /XYZ 375.041 217.584 null] +/D [2121 0 R /XYZ 71.731 146.451 null] >> endobj -2146 0 obj << -/D [2118 0 R /XYZ 71.731 210.446 null] +2120 0 obj << +/Font << /F33 1210 0 R /F35 1437 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F48 1896 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +2148 0 obj << +/Length 2210 +/Filter /FlateDecode +>> +stream +x��Y[�� ~�_�X���X���.Pt.�m�ٙ4���A�(<��u��� ���Dʷxg���ED�IQ�G��#~|�s�;Ј� O�V�w�h_>��4cBS&�97�w?�;�(d�猖����#�,�b�\�ź�E�*.�!mK0lgYYEi�d[����L�4�u��w�e-T:>�M�̜3�ܠQ�����Z1�ԏ3W����z�D�ͱ�ZU���#���������o�ۣ -����c�m+?�7��8^#U��Fk�̌��֫� z�4�j�Q��&2���ҞU��RZ%1�+$�����+w�X��?�\Z��LvD��+r�;Z�r�~�*pe m�BɵM�z�g�V�4��������Rp�⸪�<+q0*���Tf�:ތ���1�JI2< G���<O�C�8h�$��*JWy�I��'C���f~$���OV�(��CԺ�e|՛Ag�>����u�9�Z}��|�$w�BxQV�~ek���P�"��8=�=i��i��^�ppV�!$�K�T��N�������/;��,b3�����*���>�e\!1tgB���Ǚ�4Y��u=m �s���A�0s&�I��r�����X;��&��3��IBʷ�Ӝ���)�}�>��� �O���2p� +)M ^�N 䈖)%<sr��ss;ls3���q�]18ID�_�p^N�%����4@ItN���%%-LKbW�p��UE�*����ՊH+?�E���0!P�Q��覭�m(�`�:���H�M�8_�o�}�W8�F�"�� �*����:�9�IF�e�L������0�R��6��t�cU�_m۩��}+��w<КM���$�5$��ؒzu�% Ψ���� ��h�e9 F%���2���3��:ʗQ��1��R)������S�Kz�ם�볓��r�&�]&�a\:��4���+*b�umՀt���~� �tm� +�Ah\|h���5�ڰ!@x�56�����]�:�s_'� Qb�0�]^ag��<]@G�;����9�-=�����z9��w�����O�E���tA��bڬzx��R�뛇��U}�J��I�^@����O�����"%F-D-Os"���b�x;}���#�/p�د;rp;˧f�o�C��*9����lz�c7���:�5I���ǻ�)��k�z���<��L�NGϋ�������P��b���������{OB�yv�$������>9���qZ u@�oy��TէL�(1��o�H;�����a�`�CvXVA�9G�q�0��wΥp�174L 쓲�P��� ��ӆ�%t:�����2�o��FI����V�ӉkJ]�����2%�s���@a4���V�U��4)�2��2�DG�V&�m>��X%�[m4�%�����>2^����90|I����>p�@ɜ�2 ހ7`�2� �� ��S�!D�¡h�o�n�*r�9�Eܼ`�6�P@�����W1���2����j�x��IT{RN���h�R��"�c���wj���Z��kRE^��L���j��K6 3E�/��U) +�� $�<���F��݇s��u��v�ɦ��>C}��� 3J�T@u��J�ɨ�k ;D�j�����[���9x�v�9Z���ŗ��ŀ�/�c8�������]�}M��Au����=}��뢆c�NJhj���&��hmFx�@��;���U\���9����@��,1������gG�$!Z% a��@�Jz�PD��QIB��`���MIB�B%��*N/ޔ$��S�)���}h�Pza%b����H��V��%���t�:å��3iM:/�]X��>s}�x����V%� $�]���'Rj�C�6����}I� �\�f�u��<�������)z1O�a`ޢ�����5ﳺ���F?&���N��"v�:��U�(��'�p3�;�0zݔ���y���U�}my�B�ћ�ySK&�.����:���&�ҳ�N�&��y��]f���UR^�]�pfT���Ǧ W4T`���c@��M���Hb�@�j5���%B���� +�~�b�|��v`���lbMo��yЭ~5���R�2���$M�Sϱԫ��-SP+{7�ug�[r���7���KK�`�a�i�s��7��j���%%��0L������L��K<�|endstream +endobj 2147 0 obj << -/D [2118 0 R /XYZ 137.593 199.651 null] +/Type /Page +/Contents 2148 0 R +/Resources 2146 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2145 0 R +/Annots [ 2156 0 R 2184 0 R ] >> endobj -2148 0 obj << -/D [2118 0 R /XYZ 262.973 199.651 null] +2156 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [446.952 662.351 499.255 671.263] +/Subtype /Link +/A << /S /GoTo /D (localconfig) >> +>> endobj +2184 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [405.169 221.006 457.472 229.918] +/Subtype /Link +/A << /S /GoTo /D (localconfig) >> >> endobj 2149 0 obj << -/D [2118 0 R /XYZ 403.449 199.651 null] +/D [2147 0 R /XYZ 71.731 729.265 null] +>> endobj +146 0 obj << +/D [2147 0 R /XYZ 211.285 708.344 null] >> endobj 2150 0 obj << -/D [2118 0 R /XYZ 134.388 186.7 null] +/D [2147 0 R /XYZ 71.731 701.265 null] >> endobj 2151 0 obj << -/D [2118 0 R /XYZ 344.012 186.7 null] +/D [2147 0 R /XYZ 271.067 677.46 null] >> endobj 2152 0 obj << -/D [2118 0 R /XYZ 71.731 166.61 null] ->> endobj -2153 0 obj << -/D [2118 0 R /XYZ 105.494 155.816 null] ->> endobj -2154 0 obj << -/D [2118 0 R /XYZ 71.731 149.427 null] +/D [2147 0 R /XYZ 243.475 664.508 null] >> endobj 2155 0 obj << -/D [2118 0 R /XYZ 71.731 125.763 null] +/D [2147 0 R /XYZ 375.041 664.508 null] >> endobj -2156 0 obj << -/D [2118 0 R /XYZ 82.491 116.264 null] +2157 0 obj << +/D [2147 0 R /XYZ 71.731 657.37 null] >> endobj -2117 0 obj << -/Font << /F33 1210 0 R /F48 1896 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R /F53 2143 0 R /F32 1119 0 R >> -/ProcSet [ /PDF /Text ] +2158 0 obj << +/D [2147 0 R /XYZ 137.593 646.575 null] >> endobj -2160 0 obj << -/Length 2190 -/Filter /FlateDecode ->> -stream -xڭYmo�� �������'I��Z4/��m.qo�C�Xȶl'[^K����r$�r�Y�X,��(�Crrٱ����R�,v(lOuf�Vg o>~�,1`�AC�f����q:�=�3Yt\�����-ew&��voW�Lv�����-hn�2βt������4����&�M*���E8o�edڎ�x�y�t,ZaǷ�.y6��'Qo�YVw�<z_���뛇�@v��>1��O#&��}4�o�gz~z�u�_�O��k ���L�j��f�,�VyQox�����~��@]���il���r\0���O?o� ��v]GXN�b?5,�l��w�OO˭ŗ�/me�+\G����O�#�F�ῆ��� �~] ��,�PR��ȶ�w� ����* � �˳��`}�I�MvE��w�����?��*i;-CW��^?<����,d��'EX6���h�t��w�Nۊ�=�F�6٭��Uо^����%���SR�O1X���{�Q�U7N�x��t��[�z���3~4�u���xΉ���k�0�Z~���M׀��P��+�i�1��Q��H�'zy����K -��w����j7�Q�:����)��U�x�%| -*W����� ��9z�n'|�����0��(�N��d���|X=��`����a����8�&0Ё���-����6rE�p��AH�������?#��u�RG��>��-����;�V±�%�����VP*��!���� ���J�V��(�8V�M���!j�F-$���yғV���|���D�;ZW�r��}b�yٜ1��@S���>5F��gFL�����~w�5zwu5b__V�lE0��nֻ>�[�gD�I\���ɘ�: -��O�@��"�p��`2�,X�Qj%'�z>'"��SQ�Ct3Њ{t�<���P�ғ���(%��H��ϙ �`���>4�Gu���En��fҺ�f�,.)M E�O ^�Pv6K -����y\��)@� ΄Z��j�0���ז���~V2��~�M� �<Y`@�}V��sH��S��i�o鲝 -�fɟX�V��A-u_Ҿ��Q��.�:�u������}n1��0���P -Y���] -%�z���\Z>� D����g� �4;;��,���4!C�t�c�c�HJ"�>��V�{�c��A�T5�k�RB�{'9@�s�4��|ݴs��='3*s���d��+_����y�y���"4/(�N���J��J�;�֭T��P�ɺ�s�sZg�vC..`pj�Zc@�$�g+��g��(�~el��$�ښ�{����+�M�'�����"V?��jU�*�=5�-[�̙�@��������:V��U\�����q����5�c6:����u2E �!�t=� �ףz{_\�M �Cy��p�fp�����4!�ϬM��<!��0q��I�Oиj!ڀe�p ���U��I���;� �&fc��9�}` -��1`ׇ�>R+��e� -�i���ᤰ�VS�vQl����j�ٜ�aZ�͒�U���0��hҎ/�=f���7�Z����ݸq@�wL9�������s>{�m�,>{@����d���r��]�jZ�ϫi,0�g���,�ʼn�T �L�ف�X/%�`�R\'sX/�ƻ�,�^n�p˸��]��a[4�Wu���ul�u8�,9���h�jC��_�)��6�Ӳ��}�|V\�7����c�*4Ҕ���pЗIJ����O��\}�p&:D��:�qFt,�}qIL�/�;�]GD�j)��U�P��E�db�Uzl��3��0����2��$�8��F��(Y9�p!�G�Fc�գ�S������U��u��!�t������j�G�BO�A��"�ˆ5�xj9� �n���tu� -N0��tSD�[>_u��9� g�#}��fדp�[��d��ʉM��bgN�� -�)��?q{��8+rb����9�@��cN�i�_�WP(p�T���&�ׅ#a�C�K:={�l3������j��'�V`\[Џ��{��%�Ɗ�P�h:T ?t��7�:�� ��a?axTz?p��m��\��F�?Ӳ��&�c=��� D�5���j�֟� ��m��/�~��mK��HDendstream -endobj 2159 0 obj << -/Type /Page -/Contents 2160 0 R -/Resources 2158 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2157 0 R -/Annots [ 2179 0 R ] +/D [2147 0 R /XYZ 262.973 646.575 null] >> endobj -2179 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [405.169 389.475 457.472 398.386] -/Subtype /Link -/A << /S /GoTo /D (localconfig) >> +2160 0 obj << +/D [2147 0 R /XYZ 403.449 646.575 null] >> endobj 2161 0 obj << -/D [2159 0 R /XYZ 71.731 729.265 null] +/D [2147 0 R /XYZ 134.388 633.624 null] >> endobj 2162 0 obj << -/D [2159 0 R /XYZ 71.731 741.22 null] +/D [2147 0 R /XYZ 344.012 633.624 null] >> endobj 2163 0 obj << -/D [2159 0 R /XYZ 308.443 696.687 null] +/D [2147 0 R /XYZ 71.731 613.534 null] >> endobj 2164 0 obj << -/D [2159 0 R /XYZ 130.909 685.031 null] +/D [2147 0 R /XYZ 105.494 602.74 null] >> endobj 2165 0 obj << -/D [2159 0 R /XYZ 71.731 673.802 null] +/D [2147 0 R /XYZ 71.731 596.351 null] >> endobj 2166 0 obj << -/D [2159 0 R /XYZ 266.554 662.117 null] +/D [2147 0 R /XYZ 71.731 572.688 null] >> endobj 2167 0 obj << -/D [2159 0 R /XYZ 345.631 662.117 null] +/D [2147 0 R /XYZ 82.491 563.188 null] >> endobj 2168 0 obj << -/D [2159 0 R /XYZ 71.731 637.046 null] +/D [2147 0 R /XYZ 308.443 528.219 null] >> endobj 2169 0 obj << -/D [2159 0 R /XYZ 82.491 627.547 null] +/D [2147 0 R /XYZ 130.909 516.563 null] >> endobj 2170 0 obj << -/D [2159 0 R /XYZ 136.289 592.578 null] +/D [2147 0 R /XYZ 71.731 505.333 null] >> endobj 2171 0 obj << -/D [2159 0 R /XYZ 130.909 580.922 null] ->> endobj -1240 0 obj << -/D [2159 0 R /XYZ 71.731 559.729 null] ->> endobj -150 0 obj << -/D [2159 0 R /XYZ 183.546 525.529 null] +/D [2147 0 R /XYZ 266.554 493.649 null] >> endobj 2172 0 obj << -/D [2159 0 R /XYZ 71.731 522.869 null] +/D [2147 0 R /XYZ 345.631 493.649 null] >> endobj 2173 0 obj << -/D [2159 0 R /XYZ 71.731 506.929 null] +/D [2147 0 R /XYZ 71.731 468.578 null] >> endobj 2174 0 obj << -/D [2159 0 R /XYZ 76.712 468.344 null] ->> endobj -154 0 obj << -/D [2159 0 R /XYZ 233.392 435.467 null] +/D [2147 0 R /XYZ 82.491 459.078 null] >> endobj 2175 0 obj << -/D [2159 0 R /XYZ 71.731 428.269 null] +/D [2147 0 R /XYZ 136.289 424.11 null] >> endobj 2176 0 obj << -/D [2159 0 R /XYZ 250.633 404.583 null] +/D [2147 0 R /XYZ 130.909 412.453 null] +>> endobj +1240 0 obj << +/D [2147 0 R /XYZ 71.731 391.261 null] +>> endobj +150 0 obj << +/D [2147 0 R /XYZ 183.546 357.061 null] >> endobj 2177 0 obj << -/D [2159 0 R /XYZ 201.693 391.631 null] +/D [2147 0 R /XYZ 71.731 354.401 null] >> endobj 2178 0 obj << -/D [2159 0 R /XYZ 333.258 391.631 null] +/D [2147 0 R /XYZ 71.731 338.461 null] +>> endobj +2179 0 obj << +/D [2147 0 R /XYZ 76.712 299.875 null] +>> endobj +154 0 obj << +/D [2147 0 R /XYZ 233.392 266.999 null] >> endobj 2180 0 obj << -/D [2159 0 R /XYZ 71.731 384.493 null] +/D [2147 0 R /XYZ 71.731 259.801 null] >> endobj 2181 0 obj << -/D [2159 0 R /XYZ 71.731 361.579 null] +/D [2147 0 R /XYZ 250.633 236.115 null] >> endobj 2182 0 obj << -/D [2159 0 R /XYZ 77.111 352.08 null] +/D [2147 0 R /XYZ 201.693 223.163 null] >> endobj 2183 0 obj << -/D [2159 0 R /XYZ 71.731 340.709 null] ->> endobj -2184 0 obj << -/D [2159 0 R /XYZ 71.731 317.046 null] +/D [2147 0 R /XYZ 333.258 223.163 null] >> endobj 2185 0 obj << -/D [2159 0 R /XYZ 77.111 307.547 null] +/D [2147 0 R /XYZ 71.731 216.025 null] >> endobj 2186 0 obj << -/D [2159 0 R /XYZ 71.731 296.176 null] +/D [2147 0 R /XYZ 71.731 193.111 null] >> endobj 2187 0 obj << -/D [2159 0 R /XYZ 363.851 284.633 null] +/D [2147 0 R /XYZ 77.111 183.611 null] >> endobj 2188 0 obj << -/D [2159 0 R /XYZ 425.741 284.633 null] +/D [2147 0 R /XYZ 71.731 172.241 null] >> endobj 2189 0 obj << -/D [2159 0 R /XYZ 71.731 264.543 null] ->> endobj -158 0 obj << -/D [2159 0 R /XYZ 215.669 233.823 null] +/D [2147 0 R /XYZ 71.731 148.578 null] >> endobj 2190 0 obj << -/D [2159 0 R /XYZ 71.731 226.625 null] +/D [2147 0 R /XYZ 77.111 139.078 null] >> endobj 2191 0 obj << -/D [2159 0 R /XYZ 178.553 215.89 null] +/D [2147 0 R /XYZ 71.731 127.708 null] >> endobj 2192 0 obj << -/D [2159 0 R /XYZ 347.94 215.89 null] +/D [2147 0 R /XYZ 363.851 116.164 null] >> endobj 2193 0 obj << -/D [2159 0 R /XYZ 71.731 197.858 null] +/D [2147 0 R /XYZ 425.741 116.164 null] >> endobj -2194 0 obj << -/D [2159 0 R /XYZ 71.731 197.858 null] +2146 0 obj << +/Font << /F33 1210 0 R /F48 1896 0 R /F27 1112 0 R /F35 1437 0 R /F54 2154 0 R /F32 1119 0 R /F23 1105 0 R /F44 1884 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +2196 0 obj << +/Length 2704 +/Filter /FlateDecode +>> +stream +xڕY{�� �?E��(�l���-���k�X��)��W,�XI���~���ӗ)?gf��%Z&)���T���*�D��C&B��աx�N��O�<^��%�ɚO�?��*��_=W��$ZE�q(WO鿜�gUw�Yod�:R��l;��Yy������,����Oy��� 4�#����z�5W��ݟ?�bR�?�!���U����S�h"<�A��]{NwZ{����� 5�� �����x����X�e�<�w�sl|�y�zH�vH�R�F]E�t�u��W`��Y{�N�R�d]�>��J��x���X�V>��Ùd- ���Bļ:��T�NV. �D�0��W�l�l��O��m�:��V�? �#H�CI2�3��;h�\/�X�6~�� ��R$�g����4���R&(z���n&�Vz�lK�Q� q�U��9��]o~~�窅�w.|�LJ�}ji��H���x�G$�b�O�" �r�'c"��Ъġ���TG�c���������?�����ӣ�9J}貪l�i��[��d}ql��^���xwD@���V���U�Yժ䕃�-���|]{�#<Rwv�$�ΙO�n���6��y�<��Z�t� +D��3e�XO�a�e����4���̃cE����0��ʎg�p�M�)b�������{�$��8���ek��9>���N`��1�b�{}�ê�L� "��"�#��j��Vy[�b +GSn@������h�n�P/��Z�&�� �����F\2�������K���=�x�����[���R{�F�?�:SO3Fj,��S�/�<F�@o8��~gU���d� �j7/��$ ���7ݡ���mu���~O�#�U��)]�����5����n�0�À-#�`� +8P���&��R�̂��{��,�cO"ڮ��H���,B���"i��Uc��F����-j��6�f�?���Lje_A���6�gyֽ����N�S���C�v������������Ta�E^�M��3&H���=�@"0��C&^����հ�Q��t��A4qc+�2��1H��!t����m���6�W�CvB�����ƪ����p`�[w� ҔA�xBI��=�Dž-y���Ŭ��� +Þ̠V��4�(�M���]�BJ�Y5����ₚx�ʕ���uv �c8�Sr}ͪ���c@�<g9x ?�Sm}������� V�_y����d�(ju����q�ĉ/���E�/B�ǓT������P���n���#{F�� +��O�]`��Y�j&��% +�02U�L�P�*�s�M��0p�+L���G\�e +��y��,���V���=h� ��m�NO�0���a���@�(�F�dD�� �Z����G<4e�NAoXΡ*�,��hG0��tQ�Ь`9K�M�������fC�M������X�����h�x�~�j\:�,g�e�F1<��L2�ƈ[#�Fg�R1� @Ɓ�FT'鸁��/-Q�FR�;��Lńe֕4Wial��dO�$ڬ�z��@��>� +`��]V�z�ݲn� �"���`U9`ǁ�\8ڢ�n^:�D 7�+ �;DԚ�D"���2x�Rߙ2�H��;~_R�Ha�0#q��%M!�[�W��l��}���>�\f~�R���Q� +}o٥<���b����3���;�я�[���IH�cE�]��� .���X���7�ړ;D�a�L�����YJ�l��x��F�����7b����?$���?�>x��&R`�Ո�U!ݘM/�|W2����<#;$�*7�c�5T���c.'$d%8U?����g�D�uS�Pu�ʰx�밗~��=���v�%�"j�Q|��=Ȼ���ù��f@�&� �a���yZC=�UA�0��.M���}���m�}�o&��Xߥ9�]�q�l��igmAh��`�m�aN9��gj���/�Ņ����W�U���,벑�����]F���FU�m�̘��l�����ZU�fX\���P�M�1���'�W��������5ޭ�D�E���v�f��\����Fh����H6ė���P����y���/QA7<��&�8�0�W?��Ļ���G�)��]W��]4�����i� V��A +q)B�͐dPŔ����)ƿX��s��r$�.�`�����|��A�H����5W&�`�f�ĥ�.6X�u�d�'��N���`&�S���#!Hwg s�7�m�L���^\�'�r5�lz�%?�j�Ee������6W}����{{R +������ +�zO!�o���[��fg�o�H��2��Ug��t^Bau��e����gH�x&����� ���ք��cI���="�C����,��=�L�s5�|.LV�_IJ�95*+��3�[��5�Zz�>M�L�(�@�wx5��V)� ��p���Ja�͜��3I�9����7�ߙ�mҕCd���j莕mC.:�4n�5^��\��Y���*B9S������D�!.R1�H��c����d�� �1���P^F#�RЮ�+���6�k&-k[�ֲ[¡P��?��~~~��-���X~�O//�c�Lwo�o��F���;.���7��p�eb�ܿ�3��Y�Jendstream +endobj 2195 0 obj << -/D [2159 0 R /XYZ 71.731 178.617 null] +/Type /Page +/Contents 2196 0 R +/Resources 2194 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2145 0 R +/Annots [ 2227 0 R ] >> endobj -2196 0 obj << -/D [2159 0 R /XYZ 71.731 146.984 null] +2227 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [431.986 222.56 484.289 231.472] +/Subtype /Link +/A << /S /GoTo /D (security-webserver-access) >> >> endobj 2197 0 obj << -/D [2159 0 R /XYZ 140.901 136.189 null] +/D [2195 0 R /XYZ 71.731 729.265 null] >> endobj 2198 0 obj << -/D [2159 0 R /XYZ 431.826 136.189 null] +/D [2195 0 R /XYZ 71.731 718.306 null] +>> endobj +158 0 obj << +/D [2195 0 R /XYZ 215.669 708.344 null] >> endobj 2199 0 obj << -/D [2159 0 R /XYZ 153.643 123.238 null] +/D [2195 0 R /XYZ 71.731 701.146 null] >> endobj 2200 0 obj << -/D [2159 0 R /XYZ 71.731 116.1 null] +/D [2195 0 R /XYZ 178.553 690.411 null] >> endobj 2201 0 obj << -/D [2159 0 R /XYZ 71.731 116.1 null] +/D [2195 0 R /XYZ 347.94 690.411 null] >> endobj -2158 0 obj << -/Font << /F33 1210 0 R /F35 1437 0 R /F53 2143 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F48 1896 0 R /F32 1119 0 R >> -/ProcSet [ /PDF /Text ] +2202 0 obj << +/D [2195 0 R /XYZ 71.731 672.379 null] >> endobj -2204 0 obj << -/Length 2524 -/Filter /FlateDecode ->> -stream -xڍYY�#�~�_���+!#N߇�Xo���؉'�80�nJb��4��N~}�X�V�YcTdY�:�*r�E��"E�OT�(KU�&X����oB�X3�z�������xQ�2���E��y�"�������r�j\��4XF�~:ce��nG�o��馑�?��͇�Ih�,�W��<W�E�I1��q�8�l��@�tJg��u���G5��W�WOʮ�Y,�@?v<(Z<�q��/�*J��U�.���Y�|�D�DuJ�@�j�fF�- ~�ݍ��~�-6�(X����=4�3�0�hRv�5�e�����i�K�3�H§�3Ɏ����mQ�U����hg�H�i���\���A'� '��7Fot��3M�[�4�@�yo9-� -�%F�����U�m��T"�%nA۾ۺu�y��v��^"�E`�]�S�H�+�"W��jm��_GI)� c�Q�4}%T_���"�>�FR. ���)�r敤4����]����'8ݵ�LDEȌ�0���Q�9EO��b�$R[}�Ce!��;�G -c%3L�;ǟ���4� -�e?2��nDE�<�f��uע�T��?�˚���$�E�1�S�Z��@�zB�\��xTh�O�?�>���p����ן���@�tL������r�🇩,Q^:}"��5/���W�����܄*0O�U -���E%��{<�0hR�4�>�@�+�g@��)�p�뷇��x[C3�*�M: +�̴}}h3ʑg��Fu^a - ���JM�*�)$�b�Y�����l�9<� -~���V�5� �_��C�E���K4;��`�;�#2��D�����&+��NЗ�S���/�N��xB�C#�2w���Te�iY-��Hã��� �h��H�s�K5gg�r�_̧�F%��}r����:_Y+\���XL[�����ev�3�t��N��Jwb:�Zs���E#�S��n�����̶g�ZY��ł��:˺u���B��%�)����o-M.c>��ѡ�zh�lw���ek�D��q�U�F���k�ʴ�˧<Zb�D����i���!�]M34E ��2���~�"�mip�v/���MRȥ@��H�Kд�!� �{����^%�U��k�o��R��!�������L܈vsЖ+ݼ-%T�ű�R����#�D ���ry�͞��B�i��g"^��0�D��� ��Tq@�r #��XݲA��"��N�� -E�ׅ��x*T ��b�� ���nv#��=C�C7"��8��G���:7c�����c��p���`��0�tAVy��� |�4�|A�VR[`hZ�l�)?���J��i�ò��P�H�� 2�"4Y>��W�%>,�m�:��0~7H��4�7W�w+����.弃�|�K�iϮ0�!���Y#�);VsO �x%'-|U�9�U����PP䍶���a8�Jt�O0�C@5gTmoU�̘���nN�y��Z?�qb��yj���[(�:kW��x�.o�I4[ĐpA�ys�<�����r#4��|$�K�W����u���������tKS�� �-M�-� g r�c�Q{J㽵C}� HQs��*��&��r�a�{�m�$+���МE-_���p�ɣ�ݟ#>�#u۾i(�!B���:�2��D�ǯ���x^z��,h�P\�*B��&�d]�N�yɫ��H�ir&�c/��A�f � �����6�/�����P��t9� ��w��Gy��!d-������;|���X@m�9>l���){q� -x�/���V��d���%�`�_0���0�� -�A9�R$\ �r �,�̋�`�bq�%��x`������O�x���7���e̜�c�a<V˘�4�hn]A��֩�n��s�+����y�V-�뻺�i*�0s���������%�:�G�g��Ja.�\�����V\P t|ӛ�%����є�Y�I� \�����ol�6����\�;�7z��G�������$�-""��1���,���(Ͳ�D����S�����$K�MU�y��{笳vOk�"+���[���@� -F���x<!c��~�,M��/�����i6�܋G�8�ECm3���EH�+�\���R�B~"Oqȶ���h����r�[T;�6ը\�o�&'{���-�q��y~������q����pc夶[DK4��K��A��~|Ե�%uK��x}�o�_Kx��K�\������7o���k�OOB{�+{Ήs#PG�;��J�oh�#=�cuwu'��3|�����}���Xy�ϔ��#|�ѽ�G�8���~|eB�� ���,qMU��=uQ]���d��ᦦo����ﰳE�>��'��SX���D�Ρa�ȅ�f$߀��3���/��:��q�-��(x-E�-��ׇ D9=���=��z���BgwM��|��r�f�b���vR�`���}b��7X"��&��_��ֵ���%�endstream -endobj 2203 0 obj << -/Type /Page -/Contents 2204 0 R -/Resources 2202 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2157 0 R -/Annots [ 2220 0 R ] +/D [2195 0 R /XYZ 71.731 672.379 null] >> endobj -2220 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [431.986 369.011 484.289 377.923] -/Subtype /Link -/A << /S /GoTo /D (security-webserver-access) >> +2204 0 obj << +/D [2195 0 R /XYZ 71.731 653.138 null] >> endobj 2205 0 obj << -/D [2203 0 R /XYZ 71.731 729.265 null] +/D [2195 0 R /XYZ 71.731 621.504 null] >> endobj 2206 0 obj << -/D [2203 0 R /XYZ 71.731 718.306 null] +/D [2195 0 R /XYZ 140.901 610.71 null] >> endobj 2207 0 obj << -/D [2203 0 R /XYZ 71.731 684.022 null] +/D [2195 0 R /XYZ 431.826 610.71 null] >> endobj 2208 0 obj << -/D [2203 0 R /XYZ 240.44 659.527 null] +/D [2195 0 R /XYZ 153.643 597.758 null] >> endobj 2209 0 obj << -/D [2203 0 R /XYZ 71.731 646.575 null] +/D [2195 0 R /XYZ 71.731 590.62 null] >> endobj 2210 0 obj << -/D [2203 0 R /XYZ 181.256 646.575 null] +/D [2195 0 R /XYZ 71.731 590.62 null] >> endobj 2211 0 obj << -/D [2203 0 R /XYZ 336.036 646.575 null] +/D [2195 0 R /XYZ 71.731 573.437 null] >> endobj 2212 0 obj << -/D [2203 0 R /XYZ 470.054 646.575 null] ->> endobj -1241 0 obj << -/D [2203 0 R /XYZ 71.731 606.56 null] ->> endobj -162 0 obj << -/D [2203 0 R /XYZ 206.856 569.345 null] +/D [2195 0 R /XYZ 71.731 556.812 null] >> endobj 2213 0 obj << -/D [2203 0 R /XYZ 71.731 559.202 null] +/D [2195 0 R /XYZ 71.731 556.812 null] >> endobj 2214 0 obj << -/D [2203 0 R /XYZ 120.303 549.22 null] +/D [2195 0 R /XYZ 71.731 537.571 null] >> endobj 2215 0 obj << -/D [2203 0 R /XYZ 71.731 516.179 null] +/D [2195 0 R /XYZ 240.44 513.076 null] >> endobj 2216 0 obj << -/D [2203 0 R /XYZ 71.731 472.344 null] +/D [2195 0 R /XYZ 71.731 500.125 null] >> endobj 2217 0 obj << -/D [2203 0 R /XYZ 71.731 472.344 null] +/D [2195 0 R /XYZ 181.256 500.125 null] >> endobj 2218 0 obj << -/D [2203 0 R /XYZ 270.634 461.549 null] ->> endobj -1242 0 obj << -/D [2203 0 R /XYZ 71.731 454.411 null] ->> endobj -166 0 obj << -/D [2203 0 R /XYZ 188.593 417.196 null] +/D [2195 0 R /XYZ 336.036 500.125 null] >> endobj 2219 0 obj << -/D [2203 0 R /XYZ 71.731 409.843 null] +/D [2195 0 R /XYZ 470.054 500.125 null] >> endobj -1243 0 obj << -/D [2203 0 R /XYZ 71.731 369.011 null] +1241 0 obj << +/D [2195 0 R /XYZ 71.731 460.11 null] >> endobj -170 0 obj << -/D [2203 0 R /XYZ 191.198 336.697 null] +162 0 obj << +/D [2195 0 R /XYZ 206.856 422.894 null] +>> endobj +2220 0 obj << +/D [2195 0 R /XYZ 71.731 412.751 null] >> endobj 2221 0 obj << -/D [2203 0 R /XYZ 71.731 328.245 null] +/D [2195 0 R /XYZ 120.303 402.77 null] >> endobj 2222 0 obj << -/D [2203 0 R /XYZ 71.731 315.612 null] +/D [2195 0 R /XYZ 71.731 369.729 null] >> endobj 2223 0 obj << -/D [2203 0 R /XYZ 71.731 305.649 null] +/D [2195 0 R /XYZ 71.731 325.893 null] >> endobj 2224 0 obj << -/D [2203 0 R /XYZ 115.118 289.873 null] +/D [2195 0 R /XYZ 71.731 325.893 null] >> endobj 2225 0 obj << -/D [2203 0 R /XYZ 429.318 289.873 null] +/D [2195 0 R /XYZ 270.634 315.098 null] +>> endobj +1242 0 obj << +/D [2195 0 R /XYZ 71.731 307.96 null] +>> endobj +166 0 obj << +/D [2195 0 R /XYZ 188.593 270.745 null] >> endobj 2226 0 obj << -/D [2203 0 R /XYZ 71.731 287.716 null] +/D [2195 0 R /XYZ 71.731 263.392 null] >> endobj -2227 0 obj << -/D [2203 0 R /XYZ 147.188 271.94 null] +1243 0 obj << +/D [2195 0 R /XYZ 71.731 222.56 null] +>> endobj +170 0 obj << +/D [2195 0 R /XYZ 191.198 190.247 null] >> endobj 2228 0 obj << -/D [2203 0 R /XYZ 314.747 246.037 null] +/D [2195 0 R /XYZ 71.731 181.794 null] >> endobj 2229 0 obj << -/D [2203 0 R /XYZ 71.731 238.899 null] +/D [2195 0 R /XYZ 71.731 169.161 null] >> endobj 2230 0 obj << -/D [2203 0 R /XYZ 71.731 154.481 null] +/D [2195 0 R /XYZ 71.731 159.198 null] >> endobj 2231 0 obj << -/D [2203 0 R /XYZ 155.056 128.578 null] +/D [2195 0 R /XYZ 115.118 143.422 null] >> endobj 2232 0 obj << -/D [2203 0 R /XYZ 89.664 115.626 null] +/D [2195 0 R /XYZ 429.318 143.422 null] >> endobj 2233 0 obj << -/D [2203 0 R /XYZ 71.731 113.47 null] +/D [2195 0 R /XYZ 71.731 141.265 null] >> endobj -2202 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R >> +2234 0 obj << +/D [2195 0 R /XYZ 147.188 125.489 null] +>> endobj +2235 0 obj << +/D [2195 0 R /XYZ 314.747 99.587 null] +>> endobj +2194 0 obj << +/Font << /F33 1210 0 R /F48 1896 0 R /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2236 0 obj << -/Length 3047 +2238 0 obj << +/Length 3063 /Filter /FlateDecode >> stream -xڝko���{~�"�Z�;�Fo�5E�.ɹ�k��נh�A+�w�h%A���/_��Z(x9��pH9�\��V��b~t�t���w��/�^xB��͌����o}��4�W�w��KT�b_�$ԫ����O��L����u������*��w�-�*[����/��NBC?Vi�?���Y(��hE���*L�U�&�����`�P��[�L�:T��o������߶��r�֮S� �j�}F���M/`��ꝑ������מ�:�k�SN0�Eٙ|(��uh��M=t�X�r\���Yg�aD��#�v��n<OEaL��䆮Y{��v�M�`7&�x����?���&�E\~ɺ������p�._-�選$Id:�� ��sn�|���D0�_�N3V���oj[�����R�L�#�t�hj�D(��8���,^+�j�KD���l��8 �sX#�F��ޅ�5ZQ� ��C[e9;A���0zҀ>��/�P�� �n�n���5-�\f�!�\עS�ˤ<�A@]�Ϋ�@_B�'+���:N��62G� ��uko�� -���Lh:���̟�W^Jq�0R�����Y=p���A�<�f9��g<I$��"HL�N��o3N#�1�=a�v��0b����w�-S�)%�R�t����&�ܛalU[q�h�A,��gh�H;@��P���u0hMw(�xN��=��1�1�#�>������`�F^i��w�����s�������}&v]3��F5}5� �f*2���* =ZOo�/��`� -݈j#���:uޖ����1�Y��������_��w��DBY�0��^���Ǧ��0���l}���*N-�3��pԕԧ8ɪQ�w�8[Nw��t���8��HA�Q�{��L�;�؍&��ؙ�o֢+�-Efx~�A���ڲj�µ��3�O��V��u�:�x�}�<?�����G��V��A��JS�l"��|-X|-����D���S�>��� l�� -��#��Ndzc�ECQ x:E���H��!M���/�W��`:OKNJ��" �H������� -���4ح1·<l��̭���3&sSH�����'�Ga ���Ȩژ�!:��7+ -&��BUg >H&��|��RWű������W��4M ��ND@Z��K�SYq ->�e֫3.�ij�]�D\'D���,;p��`ت> -���ص�%�i�8�m\2�{� -ɶA!, ����BB壀HE>�Sz�f��y<� -�|�~���H�)��1����X����F�kpOʝ@�^�WL�����yT�b,�a~S�8P�c�`�Į��Eu1����c�b�Q<�.�B�`ٓ�����m��c}̺�!�sS�,ɗ�d�� -�8�ԃ�z�M誀�"J�z0��~+�#��;��k�j3���{w���y��-D�m��H\���M�<�1�t�?`5G N�I�_���8���k�`8�7M/��:�;Z��V6-�����lm����X��?����j�J<�l���ͬ �~ ��C�����s��ߠ�B%� �x�2� ��I +_����]�)ƴ=�(������c�H"xklD�( ���u9Lq�EjthR|�uุ�憐4M]�=:�x�t5m�&eae��L�1�ʺ�ּ̡�B�C�1�a�uuyُm�t�:X�P}.sG��ՠ��}�K��ş?o�Gs՛3�8�߳Ln %M�OZ���_�!>2�v�%��+�4�aW�D�q�����Û���Mޕ�|��T���� �r/ -'hb �0h� %+�2�ca�n�+,�Ɠ���ݛ3HA����� �h�Kӄa�<�����������(��҈�,�����2�e��]�,w��^R'DpeS,���2 hd��.�9 NB�Mm���(@��%,�7��9M7�yFh b���. 9/i�)�>0�rK:�T�3���3x!@��Q_�>��E~���3��R��S3�Q��)F|�r/���d�?�qv��l.^d#j�N�k<2�ܙ�7A-�����m[N��SJ�Э�B�)�Nݨ��ܭO2�Ft��.6#v˰����PI1��0���`j��͒�?q�x�1[-ɖ٣��Oi���j�*p��h.y�$�}<,�����<����r-�CF�\C���ҲG���Ӎ0*���5�F:����ka~���v�-x\$t�n�PA�C��%�+��5Qe�=$`� :�\�|=xM���V�GS'N����$��k0�=��|� -Xl{���&���T�Jdc�G�uq(��F�O��Me!��!=���ȥ���^f��}�v���P0zi����X��X�".����V%F�`9g�T#�s�1XV�M�U3G���b�G���������T2�_0���#hjC��o�=���6��h����[�y��^���p>RYuL�=]Y�[����ն��r��焤���]cF? -rSI�ܼ�6�7��I� �Y���?�c����`oL�a� ���X\�N��.� -�������|3�nvtgܠ���Ѥ�n ujY� P���QM陗[���JB:V�T0q�]6����b���50�;�+�{S�iH�T�鬶�^����;�ﴡ�l � -<@���"�!c{6���L�BV!���tC��L� L� >�_?܍��L�fX� �*�"e�<��'��(( ��o��P��2����/����ǻB���Z�9p=ܬd��2�\X~e���mY���j�p;(3M�s�ΟAg�6PPh�����a�۟[[ ���:n������e��3,ǧ���*p�B>s� -�21����#�oȏk8h�Z��N��e�U��r8����o���7��V������-��-1�c��rD]�@���<����4{~\�W#6m2���M�mۙ��>����N��Jb[�ٷ��O��c��p4> u������/w�<�y��7�Q�F����㚪;�r�=b�;T�k��AB�z�]JI��N��-��|�A})�x_�endstream +xڝk�۸�{~�q(P��E꽹^�K��ۻ&��5(z� K�-D�I�f��;/�������ᐜ�I�ziy�1�2a�Ȏ/��fвb%KV�5?ݿX���E���[����U-"Ϩ80������C�E�\��u�����z��N���U�.�s��o�G���$���ˮ�,@�0D��D�����Xy�O���+������u���[?<<��q��N�ފT?�X��(H+�UDD�U����y��Cپ\�YW��`�$�wekH[߷C��=��~S�ŗ�|��E������Ql��[J���������ʼ�-���r���+'�a=��ӯߚ�|�@t� ��?=5�r�Cw��h���kn�&pp�;i�fY=4��NK���h�w�5�ѻ�T�(�CY&�;ۥqkD4�[�_^��?����2щP �v�O�2�JM��5��3�I�Â2��q��56��0P^b��۲7u������vݎ��ͱhj����#C�c��!d=Ȃ�l�8�ӣL�5���۵ێ���R΄j&��ru��z��A���C�E�ձh��_�4ˊ��rXW%n"�=_7���6x3r=l���W��#�-�c ��=ڜ&�D(��>Xl�����-/�P0.4���'�l�{= V��m�ݴf;�q��'D[,���!����g���4�� �Ȍ&��V�5��3��k�k$b"br�c�L���4���<��� ���w7pԯګɅ�iD+O�����e��q�O ��8�L�I�sw��U��e�4�*�QZ��@mK� (��cހ�yzfT�R�p�oF�h?R�5zy��V����3�D8���� +jԢ``��D[���<��`�(Mӥ'�@�� �n�n����5-,�L�C^��E���MYڃ��ᙲΪS��4M�!�R��9�G�,�+��b�0�̘��o*k�b.�8��� +�+��_!�T3��;��_Z\*��@�|/�8���R���Q:�k&k�|�F�'dPOތWJL�k��~Ge�{Ua +��oȠ٧�N�j�y\�� +�H/KQ�!d�b``(��:P�D�9\� ��O�=��a:�d������`�2�f���z�$8|8�2��S+rQJ��b�b8st�}���S�N(6Bi�`�mIIPHr���������L��4tl�0D݂�A�1#GU� s�ahs�zw%�y*J��&H��,+�O~�V'�K�#K��$�'�9i?�rC�?�>QkE��~ؕ������Y��L����k��}DV�U����_9}�t49=�y�u���� +�Xi�V߰� �2�j ���N��5_ �Y�_ s^���N�J�%o�"� +km:�:M�"b��E�fÉ�BC��� +f��;# �xZ2R�5!gX:�V��E��́�<`�E!t��㶩��rѻ>a0��eF�7�����|lN@2�2�.��!�C�M�IH ��ld\�_�:��(�ՠm�f6��$�aI7;a!e9����W��M�Y�u�� +��� �R%�8 2������`�OZ� )�ci�.N=z_ڏn����V�l'�8s��@���Ά/2��-������\���xˤ����A���P��FR� 4;0�P7t^IK�k�*� �����Z �*�95Lo,��b�o�,���S���B��e�:�.�z��Jɖ�Kh+j?��k[!����H�-��(��ԄE�ʇ���� +\J��_�\���:t٦ovR�mj(�b�h�;�h���Än��D�\{��÷ȁ(�3b��$��1jvA\�)�_6�:?WH��k'g8;4M/�H=�=Y��N6V-���nr6@���X,G��E�cp�R��)����n����rh/�( Q78u +��TV��[&"!�[ !�b��?uVtX�c�)ڞG�Ȱ� +�/`����^R����������c�(�P�C'��{*��b2�-����;�hu5^�&uaU�{��S��vC�A�y�C��c��Z�v��Om�t�:Z�P~�y�#�OՠҾ���>+�?}ھDuի+ҟ����pIb�wc���/Aq�Ա������(��0-� �a�Eh�|x�_��'B���,�6�;|��0��H +b���ABZ��3U�c6s<�`�X����vd���K&'��{�=�-��F3L�����Q�4MϬ.4��Q�8x����+���`����&�%v�W6ƒ�� /��#�s@�����4�pm|�����! +�I��#����.��F6��� � ?��#q$�#M<5����*HlI�?�ɺ_�2�s�a��8�Xd7��a9[0%�44��b����� +����-��N�o�@� ���5��cq-i�S(>�J�q�ۃ�bc{��,e<hWY�)�������m."�At��:_��]�e�>�H���1h��^B�0��S�F���5l�<�o>];-(�0R��_xs�7&��a�<@�?��]NB�H5o�)�3�����Ѡo��B��\�z#[�b�5S?��:�miK C��<�ڐ'} ~e��;�Gn�>Ġ ?��<��<�N��p�rã����#C�f�S�����:=d@~k,���d!�a���v�N%�1�#�*?�u U��'�����KOd��2t�1ٳ��|�`kܘ� +F�Y}|�c�B,X�7W��[˷*�3�1��2�I���Zt�3T͜�F�n�?�;�@tN.��g��I��]>���� +|���,O}�h�ƪ�{�i��V�����De�9���f=�6w�>lն���z�'$�~���~N +�Ty��"��A��M���Ol쟴 CaWq=�a�� v�u�����ױb\�;� +��ˏ����ﶣ�Ffgs�*m�d�&��K�S�Z����>��Ӕ�y~���]@Iȿ &b��{n�����ؘL�Ӵ�RQ�/*̆K�Lj;k�1�j�!�#|�w�±��`�/R����W�� +��8�֧24�_{݊�}��ǭq�������5�ʢ��� ?��?2x�endstream endobj -2235 0 obj << +2237 0 obj << /Type /Page -/Contents 2236 0 R -/Resources 2234 0 R +/Contents 2238 0 R +/Resources 2236 0 R /MediaBox [0 0 609.714 789.041] -/Parent 2157 0 R ->> endobj -2237 0 obj << -/D [2235 0 R /XYZ 71.731 729.265 null] ->> endobj -2238 0 obj << -/D [2235 0 R /XYZ 71.731 741.22 null] +/Parent 2145 0 R >> endobj 2239 0 obj << -/D [2235 0 R /XYZ 71.731 718.306 null] +/D [2237 0 R /XYZ 71.731 729.265 null] >> endobj 2240 0 obj << -/D [2235 0 R /XYZ 130.903 696.687 null] +/D [2237 0 R /XYZ 71.731 718.306 null] >> endobj 2241 0 obj << -/D [2235 0 R /XYZ 74.222 655.442 null] +/D [2237 0 R /XYZ 71.731 633.425 null] >> endobj 2242 0 obj << -/D [2235 0 R /XYZ 92.274 632.528 null] +/D [2237 0 R /XYZ 155.056 607.522 null] >> endobj 2243 0 obj << -/D [2235 0 R /XYZ 188.676 619.577 null] +/D [2237 0 R /XYZ 89.664 594.57 null] >> endobj 2244 0 obj << -/D [2235 0 R /XYZ 248.13 619.577 null] +/D [2237 0 R /XYZ 71.731 592.414 null] >> endobj 2245 0 obj << -/D [2235 0 R /XYZ 448.319 619.577 null] +/D [2237 0 R /XYZ 71.731 577.47 null] >> endobj 2246 0 obj << -/D [2235 0 R /XYZ 134.236 606.625 null] +/D [2237 0 R /XYZ 130.903 556.314 null] >> endobj 2247 0 obj << -/D [2235 0 R /XYZ 241.553 606.625 null] +/D [2237 0 R /XYZ 74.222 515.069 null] >> endobj 2248 0 obj << -/D [2235 0 R /XYZ 71.731 605.186 null] +/D [2237 0 R /XYZ 92.274 492.154 null] >> endobj 2249 0 obj << -/D [2235 0 R /XYZ 280.437 575.741 null] +/D [2237 0 R /XYZ 188.676 479.203 null] >> endobj 2250 0 obj << -/D [2235 0 R /XYZ 400.465 575.741 null] +/D [2237 0 R /XYZ 248.13 479.203 null] >> endobj 2251 0 obj << -/D [2235 0 R /XYZ 71.731 555.651 null] +/D [2237 0 R /XYZ 448.319 479.203 null] >> endobj 2252 0 obj << -/D [2235 0 R /XYZ 71.731 529.514 null] ->> endobj -1244 0 obj << -/D [2235 0 R /XYZ 71.731 486.511 null] ->> endobj -174 0 obj << -/D [2235 0 R /XYZ 337.12 453.201 null] +/D [2237 0 R /XYZ 134.236 466.252 null] >> endobj 2253 0 obj << -/D [2235 0 R /XYZ 71.731 447.074 null] +/D [2237 0 R /XYZ 241.553 466.252 null] >> endobj 2254 0 obj << -/D [2235 0 R /XYZ 353.774 434.271 null] +/D [2237 0 R /XYZ 71.731 464.812 null] >> endobj 2255 0 obj << -/D [2235 0 R /XYZ 483.407 434.271 null] +/D [2237 0 R /XYZ 280.437 435.367 null] >> endobj 2256 0 obj << -/D [2235 0 R /XYZ 285.361 408.369 null] +/D [2237 0 R /XYZ 400.465 435.367 null] >> endobj 2257 0 obj << -/D [2235 0 R /XYZ 119.533 395.417 null] +/D [2237 0 R /XYZ 71.731 415.278 null] >> endobj 2258 0 obj << -/D [2235 0 R /XYZ 437.069 395.417 null] +/D [2237 0 R /XYZ 71.731 389.141 null] +>> endobj +1244 0 obj << +/D [2237 0 R /XYZ 71.731 346.137 null] +>> endobj +174 0 obj << +/D [2237 0 R /XYZ 337.12 312.827 null] >> endobj 2259 0 obj << -/D [2235 0 R /XYZ 117.159 382.466 null] +/D [2237 0 R /XYZ 71.731 306.7 null] >> endobj 2260 0 obj << -/D [2235 0 R /XYZ 419.102 382.466 null] +/D [2237 0 R /XYZ 353.774 293.898 null] >> endobj 2261 0 obj << -/D [2235 0 R /XYZ 355.405 369.514 null] +/D [2237 0 R /XYZ 483.407 293.898 null] >> endobj 2262 0 obj << -/D [2235 0 R /XYZ 71.731 362.75 null] +/D [2237 0 R /XYZ 285.361 267.995 null] >> endobj 2263 0 obj << -/D [2235 0 R /XYZ 115.56 338.63 null] +/D [2237 0 R /XYZ 119.533 255.044 null] >> endobj 2264 0 obj << -/D [2235 0 R /XYZ 153.506 325.679 null] +/D [2237 0 R /XYZ 437.069 255.044 null] >> endobj 2265 0 obj << -/D [2235 0 R /XYZ 343.016 325.679 null] +/D [2237 0 R /XYZ 117.159 242.092 null] >> endobj 2266 0 obj << -/D [2235 0 R /XYZ 71.731 312.727 null] +/D [2237 0 R /XYZ 419.102 242.092 null] >> endobj 2267 0 obj << -/D [2235 0 R /XYZ 163.765 286.824 null] +/D [2237 0 R /XYZ 355.405 229.141 null] >> endobj 2268 0 obj << -/D [2235 0 R /XYZ 71.731 279.686 null] +/D [2237 0 R /XYZ 71.731 222.376 null] >> endobj 2269 0 obj << -/D [2235 0 R /XYZ 71.731 230.869 null] +/D [2237 0 R /XYZ 115.56 198.257 null] >> endobj 2270 0 obj << -/D [2235 0 R /XYZ 71.731 199.751 null] +/D [2237 0 R /XYZ 153.506 185.305 null] >> endobj 2271 0 obj << -/D [2235 0 R /XYZ 71.731 174.68 null] +/D [2237 0 R /XYZ 343.016 185.305 null] >> endobj 2272 0 obj << -/D [2235 0 R /XYZ 71.731 153.524 null] +/D [2237 0 R /XYZ 71.731 172.354 null] >> endobj 2273 0 obj << -/D [2235 0 R /XYZ 71.731 133.599 null] +/D [2237 0 R /XYZ 163.765 146.451 null] >> endobj 2274 0 obj << -/D [2235 0 R /XYZ 458.479 121.943 null] ->> endobj -2275 0 obj << -/D [2235 0 R /XYZ 207.921 110.286 null] +/D [2237 0 R /XYZ 71.731 139.313 null] >> endobj -2234 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R /F27 1112 0 R /F53 2143 0 R /F48 1896 0 R >> +2236 0 obj << +/Font << /F33 1210 0 R /F35 1437 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F54 2154 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2278 0 obj << -/Length 2385 +2277 0 obj << +/Length 2378 /Filter /FlateDecode >> stream -xڵ��۶���W���gZ���Ð4M��bŐ� C[�D[jdI���9C���Gʲ� ��E<�xw�o�|��?��9�|��Q���w�b+���XY������������X<n�',��X���{�B�� �������UUe�#��a���*���G���Y��g�r83���,�>JB&�����=����q�z�Zr�o��� ah���n�A�i}(�`�M�������?Y�+i�/�C�ӎ�E:�G\��K8��.��Ce��Mv��z`~W_�L�7vݒԆ��Yv�� -�Z��*�? ����" /;� Mw"��VwC��{�ީ9ЊU��r�r;q��fΈ8���q�R<����a{��X��= ǹ�:V|�}�̟�?}qn>97x\#딗���Y���muOж�����S�e�Jٕ�J�֨�(��i�/�L_9�*�`�F��Kv��Co�T�':YٷN�g�!! -����o��@��s��8���A�J����}�-�~^s���^}D9�C�Ye����A�{��V��,. 5Dc�DL��Fi�&SU���rG�Ӹ� �Hi1�À��9Y����Aͩ!��;qv#hG���\2Fn����[[��o��+7n�����"&d�HXi�V�r8� �,{]B�ރ�eSo��������γ� !{f�+���B�[q��'�C�Ā�A��{����ݷ���z���V��`ڀ���xRxo;U�ިJ���(�~��p詾���2�-����CG� -�hd��&�{P��Yj�g�3.j�Ry���ժ3{����ҕ�#���R�F�έ��1�n�;��2 �t4E� G�Z�K�f���6�Q�a�#_�bt��w�`�H�F'L$��{Y��i�4\2]û��������83~�H��?��v�:��n+ Aν�ZzS�F -M*qUBQҚ�X��[4�.�sY�Li�2�L�rZh�M�]��ɽ:�=�:���7A_i\!;ת[��Zgʔ��G`#_T&PDZ�A1��<��$ˊAQH�<�����V�{���ˍ�\��<������R4�u����z�E��LB[z�c�j�4ok��ď_};� +L���Y���jd�g�~䡌���%�`��k2Q1 -���Y��gQ(.�A�T�~�[���vX��{�mYA�����!GS�@�8�)N��S)&`�>�l�F��l�F#�mSa�N�nR;�Bp��:�Y�Ꝿqt'�4�����7<4bA��� c,�h<��j��[e��$�L���n��06��x��7D�!��A�`�X�:�+{P�2�r��,��: �x��# �g��Xf�|�u}�����?���������d�$�ǿ�>���S���ʛc��ܼ�]^�<�߯�A�[p{��@0�))��3�㙉��X�{��i�!B�\��j�����˚��KG�/n��á�/�i�+�3~��nZ�X.��0����w���/r����O�w�Cd) �����T,:�����H ��S���s4h/�s+'�*�v>�����S�t��9ab��8H̱��ͻ�j̽&e�I&�5�����%b����Y�\�h�`�Nv����@�}Bs���] -(p��vD�����h�Q��0bnT�������� .��)��+d���W�6��iHof�7{#E*q�����T��N>a��w�\J��{��^elև6�i��Wo�S]��c�e �=+ j��5�%Ƶ�#�z����n���κ5����"��,�d���0�/�k���N���M�[C�Ǟ���b��П���D���!F�%�6t�5�g����|/ -}~�*9��*ks+c��NjNt��Л��ٯ7e�6�@(�=<J�^LB�7Ś>4r��`�~{�O����&Q;�EJj����7���˹�� ��D$���T��G�k4���&o��]��Q�{��f�ςA+�Z��s/�>� �Ԇ��1��J��g�_G�����h��v�F�ps�#�V'�j7�����~|��G}�c�}&��}����0|!=��[�=B�,,8}�Z���V�jg�����̱{�T_c���qz�� ����G�E�F�K?8�cX��9���D�Ҥ�s?K��%��t�+?��$Z���2�=�C��T~��A��EF�Gh#�1�D# �QO&��;,d�M���-�D2��N�"8u���[�/�p�u�x?#!Y��#�]��M���~j���u>#Q#�j�h�U{39Đ� -�\mFL2ȹ#߈�2��zy%���}o���62a ���=�2������ Ô���~b�s�N��endstream +xڅY���6��S��@Ĉ��R���i�E�)��b��L��/�^����;�ʲ�8��x��s�F��~r��b�CBe�<��{���d��I� �O��~��E!�,^�w�D�X-V�y�������ԛv�4 +������u]W͞�? ��Uu���Y��Ż�(4�W���zy��b���2T̟/�E�$N�wC]/�,����4�-�������|�q2]���������0��8}�}�-}��a_��V�E�0ND��N�_�2 ,[���>�j�^�^TRd�p/������T��������jtO��"Q��*]�I,T�rb�a{��x�T�H�TD��PE�-���R�����+r���Q/�(8��A/U������-o�0�͖wz���]x쐟�'p��V?E��MG���{V�W��X���v�;Jſ�[/%����woY�`�'����5�&���Bg%\NJVz��<��2��h��<��Da�4;�[o�6�\�̜Ǔm[s��%d���& P�U�ԚzO�a ^�kd\��4����tվ1���i�`i�fhh����E��՛����-*!��U"����D��%�VY<W�g��b)Ѳn��Yƚ��(����q�y%�fK�&�}EK��&�Gw��3dF�������P3�-�#�����Jf���̦�����ٝ�&r�D�Rv��s�m�A�4�V�){۞izj-�}_�-���h��#gx�-/�^sgD�ruF\�30���:o��}���K�kG}&*p0x'��_;7���'�k}p���3�=97��ΧT��7بj�;�"�ѤY���jJsS�B���[�5?,%�#m�AV��Y��W��xH�cPL�o��ݪ�Ҁ��Q�G8E��gn�u�� ��?0��~rǴCk<[�|�`'��� +t�z��L$cR�m���6�j?���$!N:�0p��mo�L�ս�s��*s/w��Nі�%Ld"�4c�!ҙ�����te[m�r����e��ER"S�]��i� ��S�o�JA��6$;������,)��4��2B�b,�`�8�(�&�(d� +�$*�D*���]�"!��-%8^2�E|$�%���%#���W p���OP��-K���ǀ3�\*v�Cߟ^�z�#zW�aM�a]6�gӾy5�[f��=���Qf�Ѵ3�e�驜��i$�X]yݮ�> a:�藣�(��nL^c�[/�,h����<Xۏp�#�y9�B��@*�8��/LN���r�����4����[�1愈��4e�2������r!zB��7��z������8�����&��'N\vUXK�b���jG�3�Rt�q�ե`ػx=mb��uM�n���a*ҹl�����qc몤Eh��hNv�&���&���k)zs1��zԬtN���2� +X����a�ucc��'�x�-�8Y���Ǫ���i{�,���H�5X�dFqP뮿S� >e�kGy0�Sg��`wv�UpSz`=4�8��F}v����J�Xto�v�!' �t�$�ꣁ�5E� +BQ�y�n[���':��&g��OQQ�� y����0���IԒ�&�`|}�UhyI��#�� �J ���,=˃n(��Ͽ@���[�C���i��Gz��T��{�����E��R����4�h^�o��"�W�!s�\>�i +�e���Fb���/��0����������)�� + ���/�K�r*?A� '�m�`B�Q���ݙ9�X�4�|�P`�����k�Rn5M�J6�T$���a�S")�f��O�q�g懄�0BI{�^b����"�6�*�vO�w�3����p� cŌ��!������!p����co�#�A_�p�'L ��s�a���9Z*�HF�|���X��U�40��I��� ^�ѵ0��g� Ш�l[Q��u�;-n��;�k=q�:8պ����є�v��0N�sכ��)��`;Ry�e2�k�9x��in���= �W�Q�K��M�2�ڎ�����S_k��ܩ]�HG����w�|U1�䨋8)s�ӳ�����6�����0]]�o�� �"^1/�������V�� 3�� �~���f�/�6�/����3Ҿ��;����~{^��`L�g����ӄ�Yz�e4k攈g_���We3�C�7ln�8�2u,IV����Ü�����tc�����P�d���۸��av/�ϛ��~���?P4��i����ǙnjY߱��a�S��~�I�KQKgL�7����2�$���*C.W�����IU."噠ud���5������endstream endobj -2277 0 obj << +2276 0 obj << /Type /Page -/Contents 2278 0 R -/Resources 2276 0 R +/Contents 2277 0 R +/Resources 2275 0 R /MediaBox [0 0 609.714 789.041] -/Parent 2157 0 R -/Annots [ 2283 0 R 2286 0 R 2289 0 R ] +/Parent 2145 0 R +/Annots [ 2291 0 R 2294 0 R 2299 0 R 2308 0 R ] >> endobj -2283 0 obj << +2291 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [166.345 628.543 218.649 635.397] +/Rect [166.345 499.527 218.649 506.381] /Subtype /Link /A << /S /GoTo /D (security-webserver-access) >> >> endobj -2286 0 obj << +2294 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [263.538 536.224 281.201 545.136] +/Rect [291.365 410.077 339.793 418.989] /Subtype /Link -/A << /S /GoTo /D (gloss-cgi) >> +/A << /S /GoTo /D (troubleshooting) >> >> endobj -2289 0 obj << +2299 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [194.362 305.071 239.281 314.092] +/Subtype /Link +/A << /S /GoTo /D (parameters) >> +>> endobj +2308 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [400.843 505.34 418.596 514.251] +/Rect [474.039 230.351 518.87 239.263] /Subtype /Link -/A << /S /GoTo /D (gloss-tcl) >> +/A << /S /GoTo /D (extraconfig) >> +>> endobj +2278 0 obj << +/D [2276 0 R /XYZ 71.731 729.265 null] >> endobj 2279 0 obj << -/D [2277 0 R /XYZ 71.731 729.265 null] +/D [2276 0 R /XYZ 71.731 741.22 null] >> endobj 2280 0 obj << -/D [2277 0 R /XYZ 71.731 652.389 null] +/D [2276 0 R /XYZ 71.731 718.306 null] >> endobj 2281 0 obj << -/D [2277 0 R /XYZ 358.177 641.594 null] +/D [2276 0 R /XYZ 71.731 686.725 null] >> endobj 2282 0 obj << -/D [2277 0 R /XYZ 461.001 641.594 null] ->> endobj -1245 0 obj << -/D [2277 0 R /XYZ 71.731 623.562 null] +/D [2276 0 R /XYZ 71.731 661.654 null] >> endobj -178 0 obj << -/D [2277 0 R /XYZ 180.354 588.194 null] +2283 0 obj << +/D [2276 0 R /XYZ 71.731 640.498 null] >> endobj 2284 0 obj << -/D [2277 0 R /XYZ 71.731 582.067 null] +/D [2276 0 R /XYZ 71.731 620.573 null] >> endobj 2285 0 obj << -/D [2277 0 R /XYZ 71.731 551.233 null] +/D [2276 0 R /XYZ 458.479 608.917 null] +>> endobj +2286 0 obj << +/D [2276 0 R /XYZ 207.921 597.26 null] >> endobj 2287 0 obj << -/D [2277 0 R /XYZ 71.731 520.349 null] +/D [2276 0 R /XYZ 71.731 569.365 null] >> endobj 2288 0 obj << -/D [2277 0 R /XYZ 228.687 507.497 null] +/D [2276 0 R /XYZ 71.731 523.372 null] +>> endobj +2289 0 obj << +/D [2276 0 R /XYZ 358.177 512.578 null] >> endobj 2290 0 obj << -/D [2277 0 R /XYZ 71.731 494.545 null] +/D [2276 0 R /XYZ 461.001 512.578 null] >> endobj -2291 0 obj << -/D [2277 0 R /XYZ 71.731 481.594 null] +1245 0 obj << +/D [2276 0 R /XYZ 71.731 484.583 null] +>> endobj +178 0 obj << +/D [2276 0 R /XYZ 166.615 445.31 null] >> endobj 2292 0 obj << -/D [2277 0 R /XYZ 71.731 469.475 null] +/D [2276 0 R /XYZ 71.731 434.945 null] >> endobj 2293 0 obj << -/D [2277 0 R /XYZ 71.731 320.1 null] ->> endobj -2294 0 obj << -/D [2277 0 R /XYZ 118.555 276.554 null] +/D [2276 0 R /XYZ 258.543 425.186 null] >> endobj 2295 0 obj << -/D [2277 0 R /XYZ 311.315 256.434 null] +/D [2276 0 R /XYZ 71.731 410.077 null] >> endobj 2296 0 obj << -/D [2277 0 R /XYZ 515.483 256.434 null] +/D [2276 0 R /XYZ 71.731 395.133 null] >> endobj 2297 0 obj << -/D [2277 0 R /XYZ 434.466 244.777 null] +/D [2276 0 R /XYZ 71.731 346.082 null] >> endobj 2298 0 obj << -/D [2277 0 R /XYZ 71.731 221.271 null] ->> endobj -2299 0 obj << -/D [2277 0 R /XYZ 71.731 201.346 null] +/D [2276 0 R /XYZ 321.927 333.131 null] >> endobj 2300 0 obj << -/D [2277 0 R /XYZ 440.06 194.751 null] +/D [2276 0 R /XYZ 349.018 307.228 null] >> endobj 2301 0 obj << -/D [2277 0 R /XYZ 218.914 183.095 null] +/D [2276 0 R /XYZ 415.603 307.228 null] >> endobj 2302 0 obj << -/D [2277 0 R /XYZ 71.731 176.226 null] +/D [2276 0 R /XYZ 91.925 294.276 null] >> endobj 2303 0 obj << -/D [2277 0 R /XYZ 247.393 166.457 null] +/D [2276 0 R /XYZ 151.7 294.276 null] >> endobj 2304 0 obj << -/D [2277 0 R /XYZ 122.052 154.801 null] +/D [2276 0 R /XYZ 71.731 287.273 null] >> endobj 2305 0 obj << -/D [2277 0 R /XYZ 151.246 154.801 null] +/D [2276 0 R /XYZ 264.224 276.344 null] >> endobj 2306 0 obj << -/D [2277 0 R /XYZ 180.441 154.801 null] +/D [2276 0 R /XYZ 95.243 250.441 null] >> endobj 2307 0 obj << -/D [2277 0 R /XYZ 227.083 154.801 null] ->> endobj -2308 0 obj << -/D [2277 0 R /XYZ 278.209 154.801 null] +/D [2276 0 R /XYZ 71.731 243.303 null] >> endobj 1246 0 obj << -/D [2277 0 R /XYZ 71.731 116.943 null] +/D [2276 0 R /XYZ 71.731 215.407 null] >> endobj -2276 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R >> +182 0 obj << +/D [2276 0 R /XYZ 381.468 172.31 null] +>> endobj +2309 0 obj << +/D [2276 0 R /XYZ 71.731 159.872 null] +>> endobj +1247 0 obj << +/D [2276 0 R /XYZ 71.731 148.594 null] +>> endobj +2275 0 obj << +/Font << /F33 1210 0 R /F35 1437 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F48 1896 0 R /F32 1119 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2312 0 obj << -/Length 2467 +/Length 2038 /Filter /FlateDecode >> stream -xڅۮ۸�=_a�G."F�K�X �n[,�E��E��,іpd��8��w�3�e�ǁ8$�3C�]�7��M�4�!�E�ě����`�7>c����p~x~��/a��E�����&�3���4D���?�Ǻ8 �ߺA�9����NE�6݁�?���M���>��͏��8LE���8+��p�G"���^�KE�F�@"F���F�8�^��m��~�3��������c0�]���h�S� v�4�IB8o�p����,���5�7�z�����pG��0�{��0vw���[�wd�Y�߿[��'��,������Z�tC-��7�=��������t�^u��T����N o *U�ǖ1�>���0qz5�Z ��a2-ˡQ�ۥ�/B�l�F"}�,�;C"3�=ʒ����$�������H��!o�������A� /�'S_<J�N����5���ĥ�:6]���TO{EY�u��oD���t��%ɄB�-��6Bx�� �PY��E�a<�S���4�+��ۏ� ��a���;�9(+��ay�S���������(!��yF��<s~����~���Sܢ����{d�0�`�BP���;{�Q��O��7�I������Lp�r\hBN���5S4�uё7����S��]<~ -���c`h8ǙS�r<�n@���ma�~1l/ =��]��8�ie�KB(�o���;�ʱ�'�����<d�$�̿#����SЃ�R�C�t�߫�E̮�ˆ)��!�9��" ���}�i%�E�1����rM'�E[:��A���Ib�2I��plL��&�Ep�6���[n%+�zi䩀X��$D�̆u��D��6l�̑�Zu 㻥C,s�>�>��Y8|���0�8�R�)=B�e� - ����N��C An4� -\@w_��<��8�*�rھ9�o��CCX'L����cQ�{��鱗�s1��H١��R�L�o�!���ꛡ��-g���7��tC��"�a;����?j��|����Lb�1N�ErB2�0�J3H���dfW�8Z�s-�6�~�@`����6��M?I����G&�}��ds'w�"��o�.�q�1n�E{��A��f`�cV17�Y)�u�mI3SB�Ң:aTD���́Ϝ리 �1w��@���+4�ÈJSaׄkp��**���N�SQf�i.�� �*^�o�8�w?<[w�� -�KB�܀�A������҇��!��)�P����͍�T�x��a�B����Ic-�>T��Pe��>�j�~#��=d.<�F�zc,��р���hX�!ge4M*�˾�Y۪������Ħ�L�;�+v�������� -��7L����kSE�O}q���z����W�w����QV�����F��袿�ʯ��g:�jl��/+��hD����Y;2�*�Д�^c��%�f?\-��̍�,.y�����j����5v�"��h��V�ۂ]z�{�dp� (��,[yz-z���t5���\�W68��a[ _�� �/ǎ��3(����B�l�����j�Թ��(qz�M�~P-�n �B�Ķ\���e��@cL����SƼ6�O)�M�5�zx���V}1)ţ�����qjݱg�����^�C^�'��h�yM�F���T����� -���K���l�ev�6s~&������ {n��zu\��'yR��� l,�U[P�����#�� Z/VD�[S�V��j�J��Ά| -]��w�Y��;��������6�4�DJ�v��:�[� -�B�A��1|�s����S�d���ېm���DQC;�܈��N03�cr�g^���&��p��� �(f�W.��[7�\xU�V[� �QT`�TF2�O#�� ����V���P��ȟ�w�����oY��y���Ӷ�����;l��%ךF;�f�S͟%~đ]�f�7�X�A1Ã��>��z�s������������aE��Օ1���KSk#�YZ�&���O�p��BMY�3g�MSG,��L{ٚ�C�͉����c��l�&�=�����Ska� m�RÓ�����'S� -��ϛ�H�e�.�^Y�P|^�A��t�;`����gl#�A�:y ڱ 7� WT'�<���M�����#�(��e�B��LJ4�Ry2�;�YU�2ȟl{�+�E�D�x-lj7y�{A��8�ۇ䬎༃�ٔ�6M�����6ѡ#}���d8%�F��2�gC<S�����j����cB���S�87�!:��Sy#�0��r�mӮ��Wԛ�" �ڽ���\Ơp�n����o�ZłF���N������O��%����Ŏ�j���2؎c���6us�0�-fꙟ�����#��;*�g"h� �=��銲��)R؛�K^�Gi����Sߥendstream +xڍk�۸�{~���\�����Z��r�EQ$��C{8�m +��$�q~}g8#Y�כ���!9������"�" `�3���"o�x��#�ew������OA��D��v�Td�" |�F�b]���[����V�y�/h���U�U�����ת�����?[OL� Y�*s#�,d(�0F�F�D�����"JR����ڗ=���f���=!���yKr�́�R�|������i�"uAӡ��V�_I�W݉V�������v/i�%�v� ��ak�����p�9[�]�����v��R9���Qc)b�Y�7�/�@8Q8Yl� +&��p'�L;��ʍ=�q��]Fw}_d2���e�2g�ӗ�Po:R �ÞF��� N��y~��)K�r���Q�Zx*��:�b�v����W�s��wp04v�vf-�D�"J���tK/���)�@�`H�.TU3o5�ᑅ���1�$X,��U�)���h�]9�����}9ţ��/ yA��h>w� !'nQu���N!��h��Tӻ���Y��&64)ԩ��G{��caJHg�'kN� ��M���D?Wz�GΑ��a7y���i�R�ޛn�G�;m�u�Pj�ޡ.�J����@��x��)�h���dc��gN�@��y�Z�a�֫��p�i5h��I���L�P�� "���_6@ݠ'K¶���GR-/aH����ך�;G�l����i8�)a � ����HQ�<��p|�6�_(S�F�{�m�R�r;��Ȩ���98�q}�1 �]P�RK�_f�l�0��H�r��OU[XwmP%Na,��f `�~��?u�X���M1<�N5L��{�9��* [����y����9L�XVyI�� +�mW���W�a�^5̤8�hTc�Y�;M勭07��4ݴ�� A�"]��� +! O�jLݏ6o���� S9Pq��4V J��u%�O��VK���ۖ/�1��aؿ}|<��jm� 4<<bv�)2���+��Aw�� 4!��`��`����-t�c�b �5B���l8�PX/u��>/!���h�����`m!��rqfYƈ�i�?�Y3�MN����� ��`g�+�aVba�l'� � �N�У��/�=1G����8�Q�� +�'97Td�c�0�R�/*��IiX.�PF���'�r�DgF��ٜƃ�wy�`�E/�(+$��f�� K�2�mY���WL����V�����*��������$�'��J�����:��3j�g!vE�Sl�y�����%^��ě�������q�[&x�@��{O��;��j( ��.�rD���`2�N)�1"�y���g{��`�W_Gn��;��ꫀJgw���N+����4_s�(e�9�)&o�ۨ6ѧ{�c�'���=��u/�PE���[^�v�+��Ȏ������Xa���_xf����{���S��=eK-��U�FY:�m\7�F5��3'�O��d��n�V��0����3�]�0 +'��[^�v�+������U�|Uz��WT=7��Ƽ�Y���H��/�A$�8��vY�h�C�0��Vfu�Id���;ͻT�'<��6Rp�6�g��M��Ǖ���$� t|��h����AG�p��j�@���/I/��J�뎮�o�� +{�� ŭ]���Y����BA��z�0y�ؘ���(���J�t["�D�h�;���B��<�`�B�������zt�����{�GG���LU�-q�6�0BG���A����Y�iM��aSc���Jx|����ʅ��8;�L`;J1��oz�=�|8\/��Y��`{������F�1~{����a�I X�w!r��d��upa�D)�.1*��R�L�jKg���4��~��}�纷 �|� x�����8~9��(�?�~�ُ0K�=�h�7��uB�H�y�.u����Tq���J�{cP�������&�ܚ�* !n�-�������g��ϟ����D�6T�o�����Grendstream endobj 2311 0 obj << /Type /Page /Contents 2312 0 R /Resources 2310 0 R /MediaBox [0 0 609.714 789.041] -/Parent 2157 0 R -/Annots [ 2316 0 R 2319 0 R 2328 0 R ] ->> endobj -2316 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [291.365 672.608 339.793 681.519] -/Subtype /Link -/A << /S /GoTo /D (troubleshooting) >> ->> endobj -2319 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [194.362 628.772 239.281 637.793] -/Subtype /Link -/A << /S /GoTo /D (parameters) >> ->> endobj -2328 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [474.039 554.053 518.87 562.964] -/Subtype /Link -/A << /S /GoTo /D (extraconfig) >> +/Parent 2145 0 R >> endobj 2313 0 obj << /D [2311 0 R /XYZ 71.731 729.265 null] >> endobj -182 0 obj << -/D [2311 0 R /XYZ 166.615 707.841 null] +186 0 obj << +/D [2311 0 R /XYZ 193.715 707.841 null] >> endobj 2314 0 obj << /D [2311 0 R /XYZ 71.731 697.476 null] >> endobj 2315 0 obj << -/D [2311 0 R /XYZ 258.543 687.716 null] ->> endobj -2317 0 obj << -/D [2311 0 R /XYZ 71.731 667.627 null] +/D [2311 0 R /XYZ 101.32 666.097 null] >> endobj 2318 0 obj << -/D [2311 0 R /XYZ 321.927 656.832 null] +/D [2311 0 R /XYZ 71.731 655.955 null] +>> endobj +2319 0 obj << +/D [2311 0 R /XYZ 416.305 643.183 null] >> endobj 2320 0 obj << -/D [2311 0 R /XYZ 349.018 630.929 null] +/D [2311 0 R /XYZ 71.731 618.112 null] >> endobj 2321 0 obj << -/D [2311 0 R /XYZ 415.603 630.929 null] +/D [2311 0 R /XYZ 71.731 597.243 null] >> endobj 2322 0 obj << -/D [2311 0 R /XYZ 91.925 617.978 null] +/D [2311 0 R /XYZ 71.731 578.561 null] >> endobj 2323 0 obj << -/D [2311 0 R /XYZ 151.7 617.978 null] +/D [2311 0 R /XYZ 71.731 544.752 null] >> endobj 2324 0 obj << -/D [2311 0 R /XYZ 71.731 610.974 null] +/D [2311 0 R /XYZ 114.77 533.196 null] >> endobj 2325 0 obj << -/D [2311 0 R /XYZ 264.224 600.045 null] +/D [2311 0 R /XYZ 114.77 521.539 null] >> endobj 2326 0 obj << -/D [2311 0 R /XYZ 95.243 574.142 null] +/D [2311 0 R /XYZ 114.77 509.883 null] >> endobj 2327 0 obj << -/D [2311 0 R /XYZ 71.731 567.004 null] +/D [2311 0 R /XYZ 114.77 498.227 null] >> endobj -1247 0 obj << -/D [2311 0 R /XYZ 71.731 539.109 null] ->> endobj -186 0 obj << -/D [2311 0 R /XYZ 381.468 496.011 null] +2328 0 obj << +/D [2311 0 R /XYZ 71.731 486.571 null] >> endobj 2329 0 obj << -/D [2311 0 R /XYZ 71.731 483.573 null] +/D [2311 0 R /XYZ 71.731 466.645 null] +>> endobj +2330 0 obj << +/D [2311 0 R /XYZ 369.099 443.333 null] >> endobj 1248 0 obj << -/D [2311 0 R /XYZ 71.731 472.295 null] +/D [2311 0 R /XYZ 71.731 415.437 null] >> endobj 190 0 obj << -/D [2311 0 R /XYZ 193.715 435.08 null] ->> endobj -2330 0 obj << -/D [2311 0 R /XYZ 71.731 424.715 null] +/D [2311 0 R /XYZ 246.48 376.065 null] >> endobj 2331 0 obj << -/D [2311 0 R /XYZ 71.731 402.836 null] +/D [2311 0 R /XYZ 71.731 365.922 null] >> endobj 2332 0 obj << -/D [2311 0 R /XYZ 71.731 402.836 null] +/D [2311 0 R /XYZ 71.731 324.957 null] >> endobj 2333 0 obj << -/D [2311 0 R /XYZ 101.32 393.336 null] +/D [2311 0 R /XYZ 71.731 324.957 null] +>> endobj +2334 0 obj << +/D [2311 0 R /XYZ 71.731 319.975 null] +>> endobj +2335 0 obj << +/D [2311 0 R /XYZ 89.664 297.161 null] >> endobj 2336 0 obj << -/D [2311 0 R /XYZ 71.731 383.194 null] +/D [2311 0 R /XYZ 290.096 297.161 null] >> endobj 2337 0 obj << -/D [2311 0 R /XYZ 416.305 370.422 null] +/D [2311 0 R /XYZ 71.731 282.053 null] >> endobj 2338 0 obj << -/D [2311 0 R /XYZ 71.731 345.351 null] +/D [2311 0 R /XYZ 89.664 266.277 null] >> endobj 2339 0 obj << -/D [2311 0 R /XYZ 71.731 324.481 null] +/D [2311 0 R /XYZ 71.731 264.12 null] >> endobj 2340 0 obj << -/D [2311 0 R /XYZ 71.731 310.781 null] +/D [2311 0 R /XYZ 89.664 248.344 null] >> endobj 2341 0 obj << -/D [2311 0 R /XYZ 71.731 295.837 null] +/D [2311 0 R /XYZ 71.731 225.43 null] >> endobj 2342 0 obj << -/D [2311 0 R /XYZ 369.099 274.681 null] ->> endobj -1249 0 obj << -/D [2311 0 R /XYZ 71.731 246.786 null] ->> endobj -194 0 obj << -/D [2311 0 R /XYZ 246.48 207.413 null] +/D [2311 0 R /XYZ 255.817 212.478 null] >> endobj 2343 0 obj << -/D [2311 0 R /XYZ 71.731 197.271 null] +/D [2311 0 R /XYZ 511.98 212.478 null] >> endobj 2344 0 obj << -/D [2311 0 R /XYZ 71.731 156.305 null] ->> endobj -2345 0 obj << -/D [2311 0 R /XYZ 71.731 156.305 null] ->> endobj -2346 0 obj << -/D [2311 0 R /XYZ 71.731 151.324 null] ->> endobj -2347 0 obj << -/D [2311 0 R /XYZ 89.664 128.509 null] ->> endobj -2348 0 obj << -/D [2311 0 R /XYZ 290.096 128.509 null] ->> endobj -2349 0 obj << -/D [2311 0 R /XYZ 71.731 113.401 null] ->> endobj -2350 0 obj << -/D [2311 0 R /XYZ 89.664 97.625 null] +/D [2311 0 R /XYZ 482.926 173.624 null] >> endobj -2351 0 obj << -/D [2311 0 R /XYZ 71.731 95.468 null] +1249 0 obj << +/D [2311 0 R /XYZ 71.731 153.654 null] >> endobj 2310 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R /F57 2335 0 R /F44 1884 0 R >> +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F57 2317 0 R /F44 1884 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2354 0 obj << -/Length 2137 +2347 0 obj << +/Length 2144 /Filter /FlateDecode >> stream -x��]��6�=���CW.V\Q�>�;\�i�i���qyhZ�ma%R�G\��w�3�e�fs/}�a�p8��MY.���T�4�!\�0�y�*X�a��+�>��3�כWw�G�b-�I���+��u�H�Pdq���y�T��v�q����M�*͞毇�Dz���?��^=l�C�(�,zQ�U��0~�u(��}-��� �j5��gٙf$A�#q-P�I�Z���g]��ټ�ų�������m��#��a�j�4=��*�Nm+D��^�m -m�[�@��:_�R�j~�,I�i�l�땧UWꮧ�q)O�p{�%�^�j(��m�=A�=%ٛ&oP�/��+?�� }�|}ww<�I� '���Rf��h� �w4��@@a����o����T�,����@�X�����T8lx~W���nP��c�VMG�����x�B�F�=�]ؼ��m���Lq�� -/�| ���m��� b��K�8�S�P-�D�.�����p�qCsq/�Bkh(�-lO�쪫�q�mi:M@`�~)��6_nh�� -n^�/2�����8g �7.8z��l���n�b"!�[5JըV�,�-5�ֲ��C���AF��SC[��Ŭ�*�I�(�q��vV @Iط��D��FФ����B ��B�ܠW�sT�H�rG�TH؎Fk���<� -WR�Gh,J�@����X�w.ԯ�����T�CQ���A����5e��t�B��N�,�t�����d�dؼ���7��-��L�TX݁��cv���������\A"LPj0� -&q�E�/�(g!�ri�&ߺȵ�Y͒l�J���u@���A���O�;��i�ޘT�7��l�1�'�Bm��B�AW A�zD:=1�oG��8���c�2S�����F�9�Sok�Ի�m�m�陴w�z'Z�Ҙۺ���O0m�;���u��>��@`�*��L��-�ʙ�>�'�2��?�����;�A�L;��`���R��^*�;R���4ɼܩ��������FU�`����8#� ʸz�)k�>>B1cUV�1o��Ֆ&����a^���:U3��K"3�� �p���� �v�Ԟ1��^b�tܗ�����.�o��h���+��8V��t�������\;�x�'A�4|�ܐ4����Aa�c����9d�ӿ��4�;�A�Uo��M5e�I - I��ޏ��3Jgo�lw�=t\e�P��#ߗ�p:=�{���P�Q�p`���3��}sK�� -+e?��>��c"�"aIu��-B1TXX�b�~��8���V��W�Gv,`V=tzx;��tK~�|(IL"�FH��r�)E1˶�/}�"����V�H�$C.吃�b����Qz���w�o �w˔��Fcp���|���7�}|Z^��5�^�TdVⲶ|��p�BEQ��YGl(���@�w˴N'H�[�{��U�+��QA8�.&�C�ZL*�s�9L�j B�w$�`�E;!�4=6'�1ѱX[����r�x�5�mv�UR�p�&(5G�a�P0 -�j�{;BPވ�\�=���zZ�\Ûu I��{4:r7�adz�Y�y�<v�0�7T0>b�d��+^��M�Ŵ�y6����t_���h�4�ْt��=���;B���r��ii�_�!��0'E� -�'}�Y;��3�'o�kF(�;H�%��=9=KE��^>�i^>���~K�Ni�⊓�DO��zX8wɈU4�M;A�ņy�CǛ1��x�ѹF��YLq擱�\�;��E�\��߽����B�߾-Ɛ1�ui���g����d�B��\��%���o���; ��N#X��1�.��u!���|(B�@A�����b@�\m�(�@ F����x����x�?�n K/���<k؈�����;�UY���-Ww�%D�ս_= -xy�@��o�.��H���ϩ�u)MuK��:��)��Z�EaB��[=�R��:&m�|T .1 -�%��Q -�/-0�K�.zA���'7 -j�g�LЀ���8lɇ���P:�Y^6N��fI�pmQ@����{ OO`�~n�k5�B�? ^�2��3��������+����+2���#����oq���&.�+�~���ӣ���T�endstream +x��Ɏ#��>_!�2%Cb�T�� A�n�a2�qT%]�P�5���m,�[�n_r��@���6������g�VYC�VQ�̊�]8����i�X +����û���x�V�4�=lg+��u6��H�I4{(�|�7��v�e��A�x���SU����ø���*3������?LL�8S�<~U.�s%X��Jū%� +���W�$�T @�{���kX,�|�ͣ0h�egE��2 +����yo����mK�Lg� �q���my��N���9��Q�VȘ�i�:N �_y�a��(�mu`�6��g'�����f/{N툀����V�B���"����M�+x�fb'�CGj��Y�S?�����X���2��F��`I�v=����3XY��� �d���:q���������3���t��O���8���};�LC��n�K4��t?gG�Y�yP�)�X˶hs�є%�%`�VU;�����`��4��FW Ţk��lxb��;��$X��5�X��h7��� ���X�$ڴ�.ֿ>�m�� x���a�K����w#��ox��%I��K2����>�J��DH��2 � ���[CQ��g��n���;��t�-��;��Q�ă�l�{�ա�Џ�RhH��X�$����7��Z�1�DE:�)G��$�I�Ţ82��`/n����{<�������&R�K�%&2H >����.��+p����/$\���>��ZxLű�X9D��0�ێ�f)VXj8�$%[pn�k*JO��ry0�jqw�ն�z�@����$�`{�\����(=�[ �!�������$`l���a�������x����Y�l��xZM�q�1K�i�(���J=�-/V�m��y�nq\��#�F* +�ޝ��M�h�_�0ڍhb��t7ǎbr7V�ä�;��#�TKB�#���[�9�k�����Q�X� �H���{}��2 +�' �7�ȩ9;׀R��`�����qP�n�����kd��!�Jv��#ǠY?V��s͊�_��XO}^�?>b�d.�|�J���i��<tm}#���g��Y� aijOb��K��۠�p��mT'��Vi��K��Fy���Q���J�3�Q����S��+�y��U�:w�y��3B�}�|���v��D�x$��G��{�U��'�U�B�{ٌY�gZ25^Ĕd>���R��͟���"�o-��Uka�̰;I���X������N'�4�� ,A�s��~��NC��i���wH�zw�C�|ɇb<(�_��b\��v;��rI6pC�QE��5��0\c���=��W��˕g �25�ǃ-�VhUm�#����(a��(|��&�����@[p��M 5Z�����C�ॾ%H�)�����0������R2L�g���`� ��d �%��q ++��J�-��كm$��^s&B���F�V�0�s��t�,�lȮ͒������|w���tn���}0�.t ة�]�Z����������?�1�P`Ȉ��8�ߣ��z���x�6�Q���9*G�_X��)�B�$�X����"�F���i�z(t'�PaW +�J�e�f��kͩ���wGy �Qљ�zѼ��J����[�՚T��hQ�Vp���*~�M����k�����ˍ#�M��C�m\��N'O#��@�6�t�Y�ɈO�VN����x5]1�H��=Ɲ���m�؆vWma�p�z{�� ?~��@��F-���=��k��"���O�;� |Mݫbw���ln���'��⥛c|<w�)i��~@u����KG�kFI�,��;:[)HTo9O�~�{Rr�Z�����f�<�{r�'ǠN�6�$Rz�$����FU�R�{���8�ɲe��t�t�|Ù��f W��iw�o��� Nd���[<�-�r6��^�c�|����kk^��Z�H(գj�pWۻ=�{T������8&R�k�]�?p�|�ﮙ�00=�R�»�~q#��c2>�ƿ�^�;<{��8�;rs~��>�U��X��{* �u7�K���Y~��My�~#�`y���3��/ $�4�� #�����5��i5�'endstream endobj -2353 0 obj << +2346 0 obj << /Type /Page -/Contents 2354 0 R -/Resources 2352 0 R +/Contents 2347 0 R +/Resources 2345 0 R /MediaBox [0 0 609.714 789.041] /Parent 2376 0 R -/Annots [ 2368 0 R ] +/Annots [ 2357 0 R ] >> endobj -2368 0 obj << +2357 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [235.966 332.05 287.048 340.961] +/Rect [235.966 463.572 287.048 472.483] /Subtype /Link /A << /S /GoTo /D (whining) >> >> endobj -2355 0 obj << -/D [2353 0 R /XYZ 71.731 729.265 null] +2348 0 obj << +/D [2346 0 R /XYZ 71.731 729.265 null] >> endobj -2356 0 obj << -/D [2353 0 R /XYZ 89.664 708.344 null] +2349 0 obj << +/D [2346 0 R /XYZ 71.731 741.22 null] >> endobj -2357 0 obj << -/D [2353 0 R /XYZ 71.731 685.43 null] +194 0 obj << +/D [2346 0 R /XYZ 234.86 707.841 null] >> endobj -2358 0 obj << -/D [2353 0 R /XYZ 255.817 672.478 null] +2350 0 obj << +/D [2346 0 R /XYZ 71.731 697.476 null] >> endobj -2359 0 obj << -/D [2353 0 R /XYZ 511.98 672.478 null] +2351 0 obj << +/D [2346 0 R /XYZ 71.731 667.627 null] >> endobj -2360 0 obj << -/D [2353 0 R /XYZ 482.926 633.624 null] +2352 0 obj << +/D [2346 0 R /XYZ 71.731 631.761 null] +>> endobj +2353 0 obj << +/D [2346 0 R /XYZ 71.731 620.854 null] +>> endobj +2354 0 obj << +/D [2346 0 R /XYZ 71.731 600.929 null] +>> endobj +2355 0 obj << +/D [2346 0 R /XYZ 369.099 579.024 null] >> endobj 1250 0 obj << -/D [2353 0 R /XYZ 71.731 613.654 null] +/D [2346 0 R /XYZ 71.731 551.129 null] >> endobj 198 0 obj << -/D [2353 0 R /XYZ 234.86 576.319 null] +/D [2346 0 R /XYZ 168.193 511.756 null] +>> endobj +2356 0 obj << +/D [2346 0 R /XYZ 71.731 501.391 null] +>> endobj +2358 0 obj << +/D [2346 0 R /XYZ 71.731 447.696 null] +>> endobj +2359 0 obj << +/D [2346 0 R /XYZ 71.731 409.774 null] +>> endobj +2360 0 obj << +/D [2346 0 R /XYZ 71.731 398.867 null] >> endobj 2361 0 obj << -/D [2353 0 R /XYZ 71.731 565.954 null] +/D [2346 0 R /XYZ 71.731 378.941 null] >> endobj 2362 0 obj << -/D [2353 0 R /XYZ 71.731 536.105 null] +/D [2346 0 R /XYZ 76.712 328.742 null] >> endobj 2363 0 obj << -/D [2353 0 R /XYZ 71.731 500.239 null] +/D [2346 0 R /XYZ 71.731 308.817 null] >> endobj 2364 0 obj << -/D [2353 0 R /XYZ 71.731 489.332 null] ->> endobj -2365 0 obj << -/D [2353 0 R /XYZ 71.731 469.407 null] ->> endobj -2366 0 obj << -/D [2353 0 R /XYZ 369.099 447.502 null] +/D [2346 0 R /XYZ 369.099 285.505 null] >> endobj 1251 0 obj << -/D [2353 0 R /XYZ 71.731 419.606 null] +/D [2346 0 R /XYZ 71.731 257.609 null] >> endobj 202 0 obj << -/D [2353 0 R /XYZ 168.193 380.234 null] +/D [2346 0 R /XYZ 200.128 218.237 null] +>> endobj +2365 0 obj << +/D [2346 0 R /XYZ 71.731 210.885 null] +>> endobj +2366 0 obj << +/D [2346 0 R /XYZ 99.155 185.161 null] >> endobj 2367 0 obj << -/D [2353 0 R /XYZ 71.731 369.869 null] +/D [2346 0 R /XYZ 121.261 185.161 null] +>> endobj +2368 0 obj << +/D [2346 0 R /XYZ 158.738 185.161 null] >> endobj 2369 0 obj << -/D [2353 0 R /XYZ 71.731 316.174 null] +/D [2346 0 R /XYZ 71.731 172.209 null] >> endobj 2370 0 obj << -/D [2353 0 R /XYZ 71.731 278.252 null] +/D [2346 0 R /XYZ 71.731 165.82 null] >> endobj 2371 0 obj << -/D [2353 0 R /XYZ 71.731 267.345 null] +/D [2346 0 R /XYZ 245.988 154.277 null] >> endobj 2372 0 obj << -/D [2353 0 R /XYZ 71.731 247.419 null] +/D [2346 0 R /XYZ 268.387 154.277 null] >> endobj 2373 0 obj << -/D [2353 0 R /XYZ 76.712 197.22 null] +/D [2346 0 R /XYZ 311.83 154.277 null] >> endobj 2374 0 obj << -/D [2353 0 R /XYZ 71.731 177.295 null] +/D [2346 0 R /XYZ 225.31 141.325 null] >> endobj 2375 0 obj << -/D [2353 0 R /XYZ 369.099 153.983 null] +/D [2346 0 R /XYZ 215.062 128.374 null] >> endobj 1252 0 obj << -/D [2353 0 R /XYZ 71.731 126.087 null] +/D [2346 0 R /XYZ 71.731 121.236 null] >> endobj -2352 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R /F44 1884 0 R >> +2345 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2379 0 obj << -/Length 2863 +/Length 2658 /Filter /FlateDecode >> stream -xڭko��{~��_��6#�z.P��ȡh������p`$�VW�������w^��GR�-�@�p8��e��O/��)G�|,����-kAY�p><�����E���.7�P�*K�5*����e�ǝ�Ʋ�]�(X�߇f]]W͖��Uu�n}�������&*K�|y�ƌ]�P�0Fμ�A��PgFY!CI��tk���[,w��*ou�|ށ+ ��k(m""� �`3l�&Y�|K�lx3������A�l�F�O�j -{M��6���iۻnW��iQ ]�^x�n����P됓rP<�ǭ�ڃ`�F�iF�H��g�3�\�;O��n��P(�6*�X}tr��H� -��cR�IThB����R�:V�#�. D4�����+Й�u$�wAB�U�F0��fp�%�$�dƶ����^Hua�ܹ[,����I����O/��Vx��Ȯ�nhw��n����G꽜�/�n�;E2�?t�bs)3\�Q H�7�O�,��s��*�^�A)�с��^l J̬�0s|�f0W-����u M]�0���$ �ڎNBe��?��^�����fsI�Dʤ�֓*=>��:��(=Q�����k~�(�X��X�OɬDpЦh��߫a�E���v��d�MN.ux�r��������}lJ�ݐ��o�4:��Y�����q�������Sٗ�Ք��X��: ����w�<9A�u}�E��ˑM;�z�L[x��CCw�+n� ��m�9��@g��HV`��1zj��Jth��ڻ�S�M��r���I:g��QQ�-�!��p --����|� ���'��c�9���X�Kx=�0��~ǝ�eETǟ}��Z��i�� �Cº�����I�>�Uc���l5��K�=��K�ф�����k�ȴ/y��B��iv��z.Hu漢��(�r��.�g�뫽�_x�����aS��ax�p���0�'���l&�3Cg��r -�R���b@tΉO�b,E�%��dqW� ��67%�O�-�� a ��$ �>��� -J�e �VmN�`M�{�v����x��+O�k��}J*��:���IH�9�U]<o>����o1L�#��� d);N��Ɲ�K�4L�Q���y���)�֣6L����-9o;�۲�jo�^�٤`pfK�a�>��LU0+�U�����e�M��))�;��/y��l��秥>��a�^���@�B��'��V@��#)a6{�����o���骎����Y -1J.��C3��{yqL��3�Ф�KW��d�S�H�/��F��N�r! -������dGdT�8�w�T�P1��D�W�B��M+,z�p�;����f-����$���Cv5D|4e�S�����`@�$��t�N%,�����O���U��^���D� �8S,����F�a�k��g~�;)n� -�읈�3λ�y�y{L�ٱ��\���;!1�S6fB�|��aas Fa��b��� ��sj�+^w~_� -�9kkH�DӀ0�ዜ�}a "�'���=�����qZ5��au��9ӂ�}�0x�%�����tx&!��($G N��9���V<�z({��y���v�Pf�˩��_k(ϓpbZ,����k�(n�ŏ��O��A��Bd���.�r�����O%�S�85o�གwAb�������.� � -�ha�L�A� ��)��y���*B�p�e�e��U�Vr�&gZ��H��x�ls84���X��ܹ�_;Q��X �4z;�9h�W�4$1-���9//hG�8�VqKν��i�"���|�-�!=b\��+�r��Ѿt�Q<8�wB��L� -?D~����?G�/� ~�Zm3�\���+���6�A:Ԉ -����D���5x=� -ID5�:$�a�������N�!^�����p8`YN�`�Y��� ��F����kA\z�@$u�h���`\�Q8$]��Y�$R��n��5�V�^�\�O�V��@%����:2���hh��t�L�v.l!�W��g=C�gى�s:\�7c_=�i�X�,}�H�sq�\j���KO��9 ��p���Q ���ZL.O����f����wʰ*.�'&�A�q/Ag�=�]�j��>~o���m��v�6�o�J�?T��>Z���������k��<��i|����̕(������=1�� Qa2k�J�)�����b!}�v -~�!̝����w#�"��c�8b���L�k�hT��x�t�=��Ce�����.����x.�)�K���)�ǡ.xL��$�rbd���v������Q켳�tj�� T"�Z��ԓ�����s����Tx��zH�7e��}��#��u)>���Fp1�I�I�[p�R�hї�[]��V%�e� �r*����'�u����8�͌�0�Po�(�:���]n�K�F?q��d�{�����H��_�d�T=ڄ�� ��E+� ��p�=��*�-7"j��u]����Ċ!B̗���M=Y�]spܗ���/{�6 -a�{̅���/�16* -���LdI|֘�R�w4��+?qh?�-(�Uf��l֧ A�����O�Sp���y���<�G�y -��x -=��δ(�I�Wjx{�n�F)�.���t�'�]��o(R�Y��̰e�<�=~d�F���;:���J-o��<b�+� -�nY�de��g�þ�^5���6e��e�A���f�X���wu4̼T��;�'bw ��\�@�O�A�k�[��C_1�0U�N�����r�3qd 3�J���~��<���t�endstream +xڭko�8�{~��/k1+�zX���!��>����Ebl]e���R߯�yQ�";,� 93��_y��_%>A��8Z�o���������������?�^e*����i��ʒU��F������>?��l��[���M?�u]5;��w���:�|z��懇�i����U�,�B�@��P�0Fɬ�^���'��U�%��_6�����gw���ao��*�j(&gU��6�DD������zY�ϡ���r� O��nn��6Q��-�z�U�u�yW�������p>XE�<쁋N������k�dx�.�!V_����:Ʌ��h6����!�j�eٙ^V��`V�cW��īco����[�ߔ�S�����dah'���9Z�=�8�l���R�����X�� ��jأ�qL��z�+.�MgxxjG��S2�oir!���4���kx�gԎ��[�k8`M�=nعL�bu23�ً����Z5 |9u��}���=3۪.{��ڣ���I`�J��Uny��@�c�`!��4;L�A���Y ���\��[��0-`�<�mp���ق�A�7�A�٥`���έ3�O8��YYuT-�k���֝75B�`��-{0(�`w�a�-%A��뺶5��5��O���pF�h�%̜�}y��{�Ld짣:���{�{�yQ�c3�ͻ<8�ĎUhRw&/O<��,R�K0��iƎ'g��?��9� +���犢F�T)�b�"pT�9�D�W����iED�N8a�6Ӑ�l%"T�@�����v(���ɕ?�;�$H�&��� ㎡:Ȗ��!�`�(�a��os?�{#���X ���6<Zf-9���ߔUA}� �써�1Λ�yce:P���2\J]�!�!wB�p�� +a"|���<݃��4�����8E���+����-��v_� +)9�h���bi@���p�Q| nLK[Y3z�~<1�=nC���Nw��M;�=/lʒ�����yj���<�+��rQH�@���Jy6�ny�e4��غ���+�d9��@�}��$\EQ��K�/7?y�������|��!Ԅ:�V��2�����淛_'B`�4Vq�F�� +ނ�� +� �x��+A�i5��ʿ �"�f���pUlL�[? U����N��)r +�PKi��sL�l�����t�8��f�� ���bD�t�`s�U�Au��>��z��~χ�e�}�R���&_�UŤ'�� �F�|��3�C�_� B�a\��+��5�����z���;��a!`����2$9+o�=����z'��f�!��4ۙF|rOX��c���P�Y�� f�[^��!Q`H*"���!I���o y�vN�"�'��X�xD8�`p����3�@[P���T.��?�8n ��ad+D��"pa/�>�9�G9�?�2?���P����}�SI��^��̶:�ˤt��z*H�|$��p����b�fq��iNR���r�!w��K�ڋ������8�����~.��% ��p�`,�w�=Z�-���}[sJa����q�� +,�J�I��^���n�̇D�g'�^��㻷oe�ۡ�o����{��?C;���oU�=�G_$�(�`���5�b��t�܄��o7�k �4�N.=}��R��_P����t���|�K�Q�ٶ +ob��f��ݬ�xg�H��4�2c���}[���Ȥ�H�Qv�f8v�^~�o.� +����Lna��}Ģp�OE_���[�d�Kc� �ډ�\��A�my�PR�������懶�Nd�>�g*gb��Is �9�=�158����2���h��=;.��{�!�T��D�b�4אӥ���^l�0�JY�(O�̩E�6��<�v�l$s ��8+.�}Bo����&��OKd<���pD(�=䏵�Rp;�����"��G�0>�!�]�Қ ���D����u�:�f�>?M��)�[�1�z H^Tt*����7#�'�����ͦ�(�a&^V�C���/�1T��)� ��G�'\��Í�Y�@���}A�|���|+��~8{��?��Lw-S@e�G�7�grW3��8�,�f +�3,Q���h��m���G�-8�k���x�C�q�l�Үtp�gO���x�?�s6#���wĽ��J/�W4E���)oee������ȍ�rF��ǡM%�m#5�1#���l����_��u��RE{8�B_�`�Ʌ�n� Z]��Nqj3��CO�a<��Ǫ)K��>�,���GA�~+�t�]�H��"���Sdx�y��)|Q'�&�#���lS�L�}�o˶;�#m��YQH$a|I�^�X<�^�B��ꀑ�N;����9Y���Ai�.�;��}_������f�Vg�n0��� �쉤3���Q֝w!d��j P��\���B���������2���(���)���o��� ���'3�G��+~�J�oV�9���E�~�q��U�6t��+7����||C�~p�L�Pw��:c,zj +�J��=��0s�6rp|��w�.e��]��ƪo�vfͬ�y$)�M�e�ƥ�mqJ�dD�~���r�gS��ɫ?|�Q�{F4��%�����2����L��endstream endobj 2378 0 obj << /Type /Page @@ -8051,12 +8026,12 @@ endobj /Resources 2377 0 R /MediaBox [0 0 609.714 789.041] /Parent 2376 0 R -/Annots [ 2397 0 R ] +/Annots [ 2385 0 R ] >> endobj -2397 0 obj << +2385 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [272.104 345.806 306.198 354.396] +/Rect [272.104 480.023 306.198 488.613] /Subtype /Link /A << /S /GoTo /D (gloss-contrib) >> >> endobj @@ -8064,722 +8039,747 @@ endobj /D [2378 0 R /XYZ 71.731 729.265 null] >> endobj 206 0 obj << -/D [2378 0 R /XYZ 200.128 707.841 null] +/D [2378 0 R /XYZ 254.069 707.841 null] >> endobj 2381 0 obj << /D [2378 0 R /XYZ 71.731 700.488 null] >> endobj 2382 0 obj << -/D [2378 0 R /XYZ 99.155 674.765 null] +/D [2378 0 R /XYZ 71.731 564.015 null] >> endobj 2383 0 obj << -/D [2378 0 R /XYZ 121.261 674.765 null] +/D [2378 0 R /XYZ 118.555 528.464 null] >> endobj 2384 0 obj << -/D [2378 0 R /XYZ 158.738 674.765 null] ->> endobj -2385 0 obj << -/D [2378 0 R /XYZ 71.731 661.813 null] +/D [2378 0 R /XYZ 118.555 482.018 null] >> endobj 2386 0 obj << -/D [2378 0 R /XYZ 71.731 655.424 null] +/D [2378 0 R /XYZ 492.354 482.018 null] >> endobj 2387 0 obj << -/D [2378 0 R /XYZ 245.988 643.881 null] +/D [2378 0 R /XYZ 71.731 448.441 null] >> endobj 2388 0 obj << -/D [2378 0 R /XYZ 268.387 643.881 null] +/D [2378 0 R /XYZ 71.731 439.53 null] >> endobj 2389 0 obj << -/D [2378 0 R /XYZ 311.83 643.881 null] +/D [2378 0 R /XYZ 71.731 424.586 null] >> endobj 2390 0 obj << -/D [2378 0 R /XYZ 225.31 630.929 null] +/D [2378 0 R /XYZ 71.731 411.635 null] >> endobj 2391 0 obj << -/D [2378 0 R /XYZ 215.062 617.978 null] ->> endobj -1253 0 obj << -/D [2378 0 R /XYZ 71.731 610.84 null] ->> endobj -210 0 obj << -/D [2378 0 R /XYZ 254.069 573.624 null] +/D [2378 0 R /XYZ 91.656 395.859 null] >> endobj 2392 0 obj << -/D [2378 0 R /XYZ 71.731 566.272 null] +/D [2378 0 R /XYZ 220.329 395.859 null] >> endobj 2393 0 obj << -/D [2378 0 R /XYZ 71.731 546.361 null] +/D [2378 0 R /XYZ 257.513 395.859 null] >> endobj 2394 0 obj << -/D [2378 0 R /XYZ 71.731 429.799 null] +/D [2378 0 R /XYZ 162.267 382.907 null] >> endobj 2395 0 obj << -/D [2378 0 R /XYZ 118.555 394.247 null] +/D [2378 0 R /XYZ 446.625 369.956 null] >> endobj 2396 0 obj << -/D [2378 0 R /XYZ 118.555 347.801 null] +/D [2378 0 R /XYZ 154.759 357.004 null] +>> endobj +2397 0 obj << +/D [2378 0 R /XYZ 71.731 344.885 null] >> endobj 2398 0 obj << -/D [2378 0 R /XYZ 492.354 347.801 null] +/D [2378 0 R /XYZ 71.731 333.991 null] >> endobj 2399 0 obj << -/D [2378 0 R /XYZ 71.731 314.225 null] +/D [2378 0 R /XYZ 91.656 316.158 null] >> endobj 2400 0 obj << -/D [2378 0 R /XYZ 71.731 305.313 null] +/D [2378 0 R /XYZ 71.731 296.068 null] >> endobj 2401 0 obj << -/D [2378 0 R /XYZ 71.731 290.369 null] +/D [2378 0 R /XYZ 107.706 285.273 null] >> endobj 2402 0 obj << -/D [2378 0 R /XYZ 71.731 277.418 null] +/D [2378 0 R /XYZ 204.851 285.273 null] >> endobj 2403 0 obj << -/D [2378 0 R /XYZ 91.656 261.642 null] +/D [2378 0 R /XYZ 71.731 257.378 null] >> endobj 2404 0 obj << -/D [2378 0 R /XYZ 220.329 261.642 null] +/D [2378 0 R /XYZ 71.731 242.27 null] >> endobj 2405 0 obj << -/D [2378 0 R /XYZ 257.513 261.642 null] +/D [2378 0 R /XYZ 91.656 226.494 null] >> endobj 2406 0 obj << -/D [2378 0 R /XYZ 162.267 248.691 null] +/D [2378 0 R /XYZ 71.731 193.453 null] >> endobj 2407 0 obj << -/D [2378 0 R /XYZ 446.625 235.739 null] +/D [2378 0 R /XYZ 107.706 182.658 null] >> endobj 2408 0 obj << -/D [2378 0 R /XYZ 154.759 222.788 null] +/D [2378 0 R /XYZ 71.731 154.763 null] >> endobj 2409 0 obj << -/D [2378 0 R /XYZ 71.731 210.668 null] +/D [2378 0 R /XYZ 71.731 141.712 null] >> endobj 2410 0 obj << -/D [2378 0 R /XYZ 71.731 199.774 null] ->> endobj -2411 0 obj << -/D [2378 0 R /XYZ 91.656 181.941 null] ->> endobj -2412 0 obj << -/D [2378 0 R /XYZ 71.731 161.851 null] ->> endobj -2413 0 obj << -/D [2378 0 R /XYZ 107.706 151.057 null] ->> endobj -2414 0 obj << -/D [2378 0 R /XYZ 204.851 151.057 null] +/D [2378 0 R /XYZ 91.656 123.879 null] >> endobj 2377 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F53 2143 0 R >> +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R /F35 1437 0 R /F54 2154 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2418 0 obj << -/Length 1614 +2414 0 obj << +/Length 1718 /Filter /FlateDecode >> stream -xڭXKs�6��W�Q;�2��$�q�<ܱ�L�餓�@K�]5ZQ�$?������� �ȏ���ć�`�, a�9�I<)�O��V�> ��̶̚l^Ο<}����I8�/&Q��<��!gY�'���j%�^��Ǿ���M���%�_����ӯ�ߞ���A�0ey>��������>?ca`W������TMY6���m_�F�_��XI�(��,�Q�Z�7g1��d����r�$Nƈ��Z��,L�<�:9 <}; bO�twp�$5�'N\My���i�F��և�����3��^�B+�[Ye�e�+�0Mb����,�]e��q�Y�N:��u����G48�c��B5_|�/-�nࢲmQH�n���$e'{L\=�cXl�kI�D[E�vO� �[E�������j+���h�Z -�U���폢W�w��=��FS�4<,4}}o��âyQ��4�=1��L�Vt��.(]�ed<���'��gY����%\���'xg)K��g�|��)�;�87w<��jt�@��W��2��v'qs�8�O�ժpDueGC���v���9=y ��{�]W�P!w����B�#d�kQ�tǢ,��:��;�{�6Ui���@��<�4տ�(�.��ǃ`�����YI�`%��e?d�^�����z�J�[A>A�t�n�]���n�����<c��I��rw�x�dC�0=�V���#�@��LJ�I6L��y?p�zw���+�A�����}����//H6�FKb���`8�|/QZ��J jG-�D�K��VkG��RϠ��[�Z�7;\윗��lƽr 5�~s46�Y�n��6;�(wA��de-0�$��\ -w�C����Cԅ�"J��Fݍ��Ե&#u��y�Y��.Nw�(6��j��7"�f;KG<#�Wd����&���~Jtd~���K6c7Y5�>#Y�J5m�E����ލ�7�����N���O~$J��w������=ͼxK�y �a� L�(�}Gj~P��)�t�\�$^_^�����`�X�_�}����0ηZ��b);W/�8i�gf5�wF3�4�P�������Ee����W����E�}U���H�ѢZHx,��RC };�{�("� ̈́e�"�>}�"��& �j���P�4�����H@%�3�S'�Nj��� ��oB��j���F��/!h@e��y�fOB�MV�#�B�������+� -L��N.�x��54R ��Z��<�H�by`v���MGct����ق�*ܥi�` .�tˠ��Dm���+/����8#�y+���^Ρ���T���\�d� �{G������p��L��*�K�|V�����0���˹�S��sh-��|Rn�?�K�d`2~�{?k�ȃ�*Z����V�u�������T�㐅��z�W��A��T��z�+R�EY�~�Q���s�nT�=ZP���4��',H��z~�~!��@K�H�u(�����Azv$�u4��O���rn^Q�CKѶuEM��[x%[�g�C����&C��WN%�Qg�Dg�-�\��2���Y٘�c%��s�����?K#��K�endstream +xڭXmo�6��_�O��ŌD��C��k�-C� �;X���i��,j������e'v�}�A��x��|�ʼn'�œ"E�2�&��I4���wOb֘���H��Փ�WI2Y�e�LV�I/IJ���LNV�ߦ/*�:���2��R���靪k�li�����Ե���������4K +�\$��tN����l�<�'E�I�z`/?1��R&vx���m�/�vתfg�=,��i2����&�4���^_��h������s����h:8��|qy�Y��;���GK��gH��r2?2��i� +�]UN�����|ڪN�4�(���5�o�@�g����Y��'&��]eJ�QѬ��S������㷠}}Ec����i�u���u"x)�Y��q&����9x�N$�����zM�Mgw4r��i�у�����I�[���rW�fܫw�)�����uU��tG��o�}�nD� k����fq4��Z���C�����?1w�L�_��e`��"�h�1ڒ�HZ������G��i`m�f��P悩4i �uo�e$oE���ۤ�_�;����{JNO߇��͘!M�3��#���G/���0�n�'O��_9�0)�ړI�B*���G��R�E��J�������H����7�GL_�n�\O�;�*� `Йm�hxs}�W��f0G��HĀQ������B�Y����a���(�I��K6��fpu4t$z?�s�ۮ�a����ׂ��M��9S�ꐑl�Qm|��{0�a�%x=��\;xy�|"� =�� �ȧ����(��C���եQ5�o`nG@��)wAs� v][������ͮ��vv�F���^�Ә&���r����^��6��N]BﺡtC�껛�! +����e�X��=})�w�e�G����<���$ƼJUO�ݐ,T9�-���[jMk��&����:|����Y�!UP��Ue��;�9��� �^��8���B�ߓB �r��f�$^�`��4�u����2���$�P_J�@������#����d<��|m�N9c����>o���G��$�@ט�T$�D$k�z���ܠ��m�>�v�)���D���ޏ8C<2({��y"sٽ0}ze:�e��H9��|y � ��!u�_��̆�� �����z�(���h�ڔ��/?��x�; +p�i�����Ig�S����n��6G���P4 +!��"q,�\�\,~z3���P���}ŗ��R�M�����m�pi#�����ςyL�;����Q��es�!���K��Am��0�)%���F0;ڷ�FNcP��~�;�S\��d���&�1�8F߈3A��Ι���������/(�`��<Ҫ7>�`�|5_����v��6���Q�� ����]DU89;��$/B_K�`���V�4���C)�KP���,/Bt=(x@�)�7�������GH��p��8^�?Nh�C�}躝����X5���������P}���/?˦�Z�k��%�M�M�%f7$g$TY�>I{աŴ����6A�i��x~�r�N������ +?xU�x�B뀍��ft>S��j�re�a���n�ό]@�\���%�4��(^L�`��7���(��(�k���_����6��,��m������/�t!q���kTN���Ʌ�d0�g��������?�6��endstream endobj -2417 0 obj << +2413 0 obj << /Type /Page -/Contents 2418 0 R -/Resources 2416 0 R +/Contents 2414 0 R +/Resources 2412 0 R /MediaBox [0 0 609.714 789.041] /Parent 2376 0 R >> endobj +2415 0 obj << +/D [2413 0 R /XYZ 71.731 729.265 null] +>> endobj +2416 0 obj << +/D [2413 0 R /XYZ 71.731 718.306 null] +>> endobj +2417 0 obj << +/D [2413 0 R /XYZ 107.706 708.344 null] +>> endobj +2418 0 obj << +/D [2413 0 R /XYZ 71.731 680.448 null] +>> endobj 2419 0 obj << -/D [2417 0 R /XYZ 71.731 729.265 null] +/D [2413 0 R /XYZ 71.731 667.397 null] >> endobj 2420 0 obj << -/D [2417 0 R /XYZ 71.731 718.306 null] +/D [2413 0 R /XYZ 91.656 649.564 null] >> endobj 2421 0 obj << -/D [2417 0 R /XYZ 71.731 706.187 null] +/D [2413 0 R /XYZ 71.731 629.475 null] >> endobj 2422 0 obj << -/D [2417 0 R /XYZ 91.656 690.411 null] +/D [2413 0 R /XYZ 107.706 618.68 null] >> endobj 2423 0 obj << -/D [2417 0 R /XYZ 71.731 657.37 null] +/D [2413 0 R /XYZ 71.731 590.785 null] >> endobj 2424 0 obj << -/D [2417 0 R /XYZ 107.706 646.575 null] +/D [2413 0 R /XYZ 71.731 577.734 null] >> endobj 2425 0 obj << -/D [2417 0 R /XYZ 71.731 618.68 null] +/D [2413 0 R /XYZ 91.656 559.9 null] >> endobj 2426 0 obj << -/D [2417 0 R /XYZ 71.731 605.629 null] +/D [2413 0 R /XYZ 71.731 539.811 null] >> endobj 2427 0 obj << -/D [2417 0 R /XYZ 91.656 587.796 null] +/D [2413 0 R /XYZ 107.706 529.016 null] +>> endobj +1253 0 obj << +/D [2413 0 R /XYZ 71.731 506.102 null] +>> endobj +210 0 obj << +/D [2413 0 R /XYZ 460.106 466.73 null] >> endobj 2428 0 obj << -/D [2417 0 R /XYZ 71.731 567.706 null] +/D [2413 0 R /XYZ 71.731 456.365 null] >> endobj 2429 0 obj << -/D [2417 0 R /XYZ 107.706 556.912 null] +/D [2413 0 R /XYZ 344.279 446.605 null] >> endobj 2430 0 obj << -/D [2417 0 R /XYZ 71.731 529.016 null] +/D [2413 0 R /XYZ 197.388 433.654 null] >> endobj 2431 0 obj << -/D [2417 0 R /XYZ 71.731 515.965 null] +/D [2413 0 R /XYZ 438.35 433.654 null] >> endobj 2432 0 obj << -/D [2417 0 R /XYZ 91.656 498.132 null] +/D [2413 0 R /XYZ 474.766 433.654 null] >> endobj 2433 0 obj << -/D [2417 0 R /XYZ 71.731 478.042 null] +/D [2413 0 R /XYZ 114.062 420.702 null] >> endobj 2434 0 obj << -/D [2417 0 R /XYZ 107.706 467.248 null] +/D [2413 0 R /XYZ 71.731 413.564 null] >> endobj 2435 0 obj << -/D [2417 0 R /XYZ 71.731 439.352 null] +/D [2413 0 R /XYZ 428.182 402.77 null] >> endobj 2436 0 obj << -/D [2417 0 R /XYZ 71.731 426.301 null] +/D [2413 0 R /XYZ 325.052 389.818 null] >> endobj 2437 0 obj << -/D [2417 0 R /XYZ 91.656 408.468 null] +/D [2413 0 R /XYZ 71.731 376.867 null] >> endobj 2438 0 obj << -/D [2417 0 R /XYZ 71.731 388.379 null] +/D [2413 0 R /XYZ 71.731 369.729 null] >> endobj 2439 0 obj << -/D [2417 0 R /XYZ 107.706 377.584 null] +/D [2413 0 R /XYZ 71.731 359.766 null] >> endobj 1254 0 obj << -/D [2417 0 R /XYZ 71.731 354.67 null] +/D [2413 0 R /XYZ 71.731 300.752 null] >> endobj 214 0 obj << -/D [2417 0 R /XYZ 460.106 315.298 null] +/D [2413 0 R /XYZ 350.135 255.498 null] >> endobj 2440 0 obj << -/D [2417 0 R /XYZ 71.731 304.933 null] +/D [2413 0 R /XYZ 71.731 243.327 null] >> endobj 2441 0 obj << -/D [2417 0 R /XYZ 344.279 295.173 null] +/D [2413 0 R /XYZ 71.731 200.898 null] >> endobj 2442 0 obj << -/D [2417 0 R /XYZ 197.388 282.222 null] +/D [2413 0 R /XYZ 440.415 190.103 null] >> endobj -2443 0 obj << -/D [2417 0 R /XYZ 438.35 282.222 null] +1255 0 obj << +/D [2413 0 R /XYZ 71.731 174.995 null] >> endobj -2444 0 obj << -/D [2417 0 R /XYZ 474.766 282.222 null] ->> endobj -2445 0 obj << -/D [2417 0 R /XYZ 114.062 269.27 null] ->> endobj -2446 0 obj << -/D [2417 0 R /XYZ 71.731 262.132 null] ->> endobj -2447 0 obj << -/D [2417 0 R /XYZ 428.182 251.337 null] ->> endobj -2448 0 obj << -/D [2417 0 R /XYZ 325.052 238.386 null] ->> endobj -2449 0 obj << -/D [2417 0 R /XYZ 71.731 225.435 null] ->> endobj -2450 0 obj << -/D [2417 0 R /XYZ 71.731 218.296 null] ->> endobj -2451 0 obj << -/D [2417 0 R /XYZ 71.731 208.334 null] ->> endobj -1255 0 obj << -/D [2417 0 R /XYZ 71.731 149.32 null] ->> endobj -2416 0 obj << +2412 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2454 0 obj << -/Length 2233 +2445 0 obj << +/Length 2305 /Filter /FlateDecode >> stream -xڅX���~�?ue`M�-�Ф�\zi��u�u�"�J�ͮ,:�����������>��A�f8T���Y���0Wa�,��;����±�Ռ�����(Z�*O��v����ʳE�j���m�/��A���]����B�폍�t]�f�����M]�忷����4�2�o�7�x��E��0Hв�A?QY�!�B�9�������T����B��0��*���lr�_��@%IN2?�f$��r���H����*�NӴ9S��nx�A��2L���J�<��nx��Q�=U-��=F)��uՑ��m/:ֺ�:�4�D�X�(�� B�����cՙ#��*L3bƖ,� Y���.�Wig ��M�llnE�Ѷ�Z���;����8^�`#��EٓA�Ip���t�a[�>�6�g��՝��y`���s����(C���t�m��aMЁa��G|��t8�A�#����Qb��Lm&ez���h�6�~���<�����2�=��s�V6?I��0!x �ѵхh؛(���];��@!���˒ �嶡p���@#X�m�?Pp�J�����*o��T�bnh=���hs/֙��)Ԑ�{[�Ǫ�4�A�v}�_��?t���z-i�:Zn��`��A�U��¥���˩�e_t�Z�T���6��͠OU��@IR�t�(N%�D���h�T��ϦhQ�uv�1�Ӕ�UO��'_a,�����dS0(4�2�}���_�1 5�ހ�sL7�J���|L�ZdG�)��U�?7�Ō��5�˒u-��6���$&�����öc(TNש��lI{�rK����2� ��Rx�b�/��q�×��?��'�a�ek�W0t͎�s�������P��f �єhF˓��k>.w��Y1�ɘ�k���H"gd�D;K�a�c���z�!���hL4�*�<x���w���� ��"�K�y@o*�:� uL�k:t %���N��=�ŭ=r�\$��S�}���'fi���i�B��g�Ȯ�kkfZ��e���Y�;ؾ.綤ސ�S���.�1��q���L͐�"�4�}�~�1�BO�����x2���ݗ���c ��ե[��n�Z��-a����s���x7N,q2�J��\x\Ǣn�{�����p�&j�������Y�ѽ���W��T�.`��rwM7�ڏA�`9��B�(�����m�[o�JF\���NJI'�{��d���t�\�Q�+����(_,��Ռ���[���ңb�a�!�^r�~�0��V/<o����+�;u�Fl�KgBS���.�R�f'��[E����9{��ܫ<�[8[D��> �jb�z��v��RS���q�����R�|�("�(�+��ty;�y�}�"�%@rJ��*���o�a���Q����$ٴ �(x�����N�USߟ�8�3�P�ο������"a���#��!qq�پ-�J�;��wn@�ݦ�L0�;�RsA� ����*�H��������2������\�c�S��~!����?��� �%��6�y����ė�ohyb���.�^&��d��,](��7�du�����34�g<�c2;5�W�̀��U0I�a��m�_�P(���=*�"aB�ļ��k\̌�3LT��D��29���Q��JG��1'��#� �0��bٍ��n�&�Z�u�r�w��g�_�,��k�?t�3S y������ ⛡'$ �`x���_�*M���x4� ��B�ˏ����ɟ� �Ib\ WK�ny�L���\8b�G\ʿl�8��x3���GXd��8�ƉB�^�c���[�ɾ���/�©��r�P�)���O�T_#( � -���FZR/C����h1"6�.g|7�:��3yBg�X�r�ڙ�92�(ܚ�!�I������`f%�ܢK�?>�(4��� _�x~���x�����o_�<�� ���5�c�p�X�q�%79V���<�y����G�����N"����ٍy��i�����.��rN�dP!UP.�tAq�x�����@��0��������WD0����rF�2��Z:s�Q�����T Ob>��ɇ�w�H83��1��d6pD���oy�UհD:�g����Z�.��`�ٛ��'���* 7�A�����kM���Yendstream +xڥY_�� �O��q��b[��W0��^��09�nQ(�2qDZR����ӗilj3��bL1IQ?��&�����@�>a.�$����~��C�Y�d~Z}X~�r��<���v���Y*C���l����i��n�0��P���ڶ������?u/�-�J����ۇ����LE�ɛ~�2�B9"!�=��"��Y("�Ci�})�f���f����ޘy{o�}�i��l�"c��z���)/ex��x���y������<�=g!�Qij�/��7�&jSnQ���uUK�v�X�~0�xe{��ou�]��g\�i]<��ʚ��d�������f�?t���`$�P�1�tcȓ(� _G;��VVoX�h[�g�+v<�����ߖ��u�\��EYUn(9�G�c��]$T�3Z�hf�s����a�y<�����ޟ-��N��o,�j��3_�*tG3w���8Đ�!+��ߝm��n�`��3e$�t�]�4�`���b�5̝�'�� 8�q�QK�¡�����nUY�Barc�D=m��!��s�ZM?|�c�������<�=��d1P\�Ԗ �V�>�ٵ;�U��/���S�ĥM�R�&b����ʊz�V�i��B��V�P_x|r����q�g�X��j��.�c��^ +ҽr������V �d��TS[���n�8g�B�MSQ5���"��-���LD�-}.��m�;��|E������f�U����@��<��)#e(������l4�\n��U{M����}� +lM�A~Y_V )}�l�RP�U�^f1� +4Z֥"\ܳv�K�C�^<1�I��m�,s���"4/����X\s���u��+9\�;伍v��������rUy $�@ �«�b��Hf�m\�q��ӗKc8FoY�e&��!��He~fST��y}z�����9#��9qm�"���*a �� ����@F�iB��&D��� +�t�������Y�U"4� �j@��ӤZ��1U�v���i[��隂�� + ��rӤ&����><I��RYR���Cc�pl/� ����<����g���Fc�,�U]9��~U�kAU�aE����\���}**X~�� �`_�Ozh|Pūz�}0�l�+����v�q����=+ñs� ++p�m�e��S5��A�9n�4/K�4��!>�"��".CI�x4�f7��$�B�#��V�����.l���t�'���T<l���{o���#����I�N��7%�W�ˢ�|ٵՑ8p�m��Uծ������Iht��z�l ��/��2��ia� Zj4���W��Y�m��>�I���Έ�g��Gw��h@�#R�=�Tlf�s�c�ն�2*�?�P����v�f�x��C��J�Q4���_h�]=���qI\\ +�iw�v��;�C5EP +?d�)nJ�mq�T�{j�� 0"2o�3��~�ݨ˰�1����,�1<#C��Uy��З�i�+@0�I0��t�ֻ���ȤO��q�/^IZ�����������h�����-���� c�:���4�o`R���}�l�4x��K��x@�C�,9���^v� �q��������*�B[�L�p�pg.�,���%I��R� +?�d��u�z�""���쯏 @�#�l��s�=��~rQlQ9S}�;5��|������$�b�Ԝ���6p@�����w�u?���sc�nXzr�1_��z"�L�Q{.�=�d6��rW��x1��^�"��v����b� L$7� +C��A$��HK71�е��[")F@��w����(����Z;���O%;��Z�l��K�^m�[��y�xt�(燅��ʴ����ze�u��F��=c����+oz�����f���<�ER����p˷L�M1��m�ӿ��I�g�Ij*��H?�G(3j�P��bI�������3���o*���$��VJ�.� 鞄�%�Cq�[��W����%e~��e�������U�3��͠�ѳ�F�ԣ���4�Ps:04H�s �\'�D�3��{��f�k�j��AمQ;0�N����k��34|ܩN/���E&���E�ׯO,� M�O��.�h;��)���K^h�i�en��P�`4���O%pԛf8�c�뿅��L�@���?�.Jz���?¼?�<Ǖ_�|F��?:\�y�f����en.�R�$�p6�h��� ���^��KE�k�2��{���<�D&Oq�a������g������Z�endstream endobj -2453 0 obj << +2444 0 obj << /Type /Page -/Contents 2454 0 R -/Resources 2452 0 R +/Contents 2445 0 R +/Resources 2443 0 R /MediaBox [0 0 609.714 789.041] /Parent 2376 0 R -/Annots [ 2464 0 R 2465 0 R ] +/Annots [ 2453 0 R 2454 0 R 2467 0 R 2468 0 R ] >> endobj -2464 0 obj << +2453 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [330.238 401.165 383.277 410.076] +/Rect [330.238 520.977 383.277 529.888] /Subtype /Link /A << /S /GoTo /D (install-perlmodules) >> >> endobj -2465 0 obj << +2454 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [91.377 390.271 112.249 397.125] +/Rect [91.377 510.082 112.249 516.937] /Subtype /Link /A << /S /GoTo /D (gloss-ppm) >> >> endobj -2455 0 obj << -/D [2453 0 R /XYZ 71.731 729.265 null] +2467 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [139.526 98.66 191.829 107.572] +/Subtype /Link +/A << /S /GoTo /D (security-webserver-access) >> >> endobj -218 0 obj << -/D [2453 0 R /XYZ 350.135 705.748 null] +2468 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [478.054 98.66 530.357 107.572] +/Subtype /Link +/A << /S /GoTo /D (http) >> >> endobj -2456 0 obj << -/D [2453 0 R /XYZ 71.731 693.577 null] +2446 0 obj << +/D [2444 0 R /XYZ 71.731 729.265 null] >> endobj -2457 0 obj << -/D [2453 0 R /XYZ 71.731 651.148 null] +2447 0 obj << +/D [2444 0 R /XYZ 71.731 741.22 null] >> endobj -2458 0 obj << -/D [2453 0 R /XYZ 440.415 640.353 null] +218 0 obj << +/D [2444 0 R /XYZ 242.621 707.841 null] +>> endobj +2448 0 obj << +/D [2444 0 R /XYZ 71.731 700.488 null] >> endobj 1354 0 obj << -/D [2453 0 R /XYZ 71.731 625.245 null] +/D [2444 0 R /XYZ 71.731 659.657 null] >> endobj 222 0 obj << -/D [2453 0 R /XYZ 242.621 588.029 null] +/D [2444 0 R /XYZ 175.703 627.343 null] >> endobj -2459 0 obj << -/D [2453 0 R /XYZ 71.731 580.677 null] +2449 0 obj << +/D [2444 0 R /XYZ 71.731 621.216 null] +>> endobj +2450 0 obj << +/D [2444 0 R /XYZ 231.715 608.414 null] +>> endobj +2451 0 obj << +/D [2444 0 R /XYZ 131.551 595.462 null] >> endobj 1355 0 obj << -/D [2453 0 R /XYZ 71.731 539.845 null] +/D [2444 0 R /XYZ 71.731 575.373 null] >> endobj 226 0 obj << -/D [2453 0 R /XYZ 175.703 507.531 null] +/D [2444 0 R /XYZ 245.449 542.062 null] >> endobj -2460 0 obj << -/D [2453 0 R /XYZ 71.731 501.404 null] +2452 0 obj << +/D [2444 0 R /XYZ 71.731 535.936 null] >> endobj -2461 0 obj << -/D [2453 0 R /XYZ 231.715 488.602 null] +2455 0 obj << +/D [2444 0 R /XYZ 71.731 500.12 null] >> endobj -2462 0 obj << -/D [2453 0 R /XYZ 131.551 475.651 null] +2456 0 obj << +/D [2444 0 R /XYZ 120.149 488.563 null] >> endobj -1356 0 obj << -/D [2453 0 R /XYZ 71.731 455.561 null] +2457 0 obj << +/D [2444 0 R /XYZ 71.731 466.944 null] >> endobj -230 0 obj << -/D [2453 0 R /XYZ 245.449 422.251 null] +2458 0 obj << +/D [2444 0 R /XYZ 71.731 428.922 null] >> endobj -2463 0 obj << -/D [2453 0 R /XYZ 71.731 416.124 null] +2459 0 obj << +/D [2444 0 R /XYZ 71.731 428.922 null] >> endobj -2466 0 obj << -/D [2453 0 R /XYZ 71.731 380.308 null] +2460 0 obj << +/D [2444 0 R /XYZ 71.731 407.766 null] >> endobj -2467 0 obj << -/D [2453 0 R /XYZ 120.149 368.751 null] +2461 0 obj << +/D [2444 0 R /XYZ 71.731 387.841 null] >> endobj -2468 0 obj << -/D [2453 0 R /XYZ 71.731 347.133 null] +2462 0 obj << +/D [2444 0 R /XYZ 91.656 352.872 null] >> endobj -2469 0 obj << -/D [2453 0 R /XYZ 71.731 309.11 null] +2463 0 obj << +/D [2444 0 R /XYZ 76.712 336.234 null] >> endobj -2470 0 obj << -/D [2453 0 R /XYZ 71.731 309.11 null] +2464 0 obj << +/D [2444 0 R /XYZ 71.731 316.309 null] >> endobj -2471 0 obj << -/D [2453 0 R /XYZ 71.731 287.954 null] +1356 0 obj << +/D [2444 0 R /XYZ 71.731 253.445 null] >> endobj -2472 0 obj << -/D [2453 0 R /XYZ 71.731 268.029 null] +230 0 obj << +/D [2444 0 R /XYZ 341.46 217.978 null] >> endobj -2473 0 obj << -/D [2453 0 R /XYZ 91.656 233.06 null] +2465 0 obj << +/D [2444 0 R /XYZ 71.731 209.34 null] >> endobj -2474 0 obj << -/D [2453 0 R /XYZ 76.712 216.423 null] +1357 0 obj << +/D [2444 0 R /XYZ 71.731 178.959 null] >> endobj -2475 0 obj << -/D [2453 0 R /XYZ 71.731 196.497 null] +234 0 obj << +/D [2444 0 R /XYZ 244.612 145.649 null] >> endobj -1357 0 obj << -/D [2453 0 R /XYZ 71.731 133.633 null] +2466 0 obj << +/D [2444 0 R /XYZ 71.731 137.012 null] >> endobj -2452 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F57 2335 0 R /F44 1884 0 R >> +2469 0 obj << +/D [2444 0 R /XYZ 71.731 98.66 null] +>> endobj +2443 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F57 2317 0 R /F44 1884 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2479 0 obj << -/Length 1813 +2473 0 obj << +/Length 2476 /Filter /FlateDecode >> stream -xڕXm��6�~�"h�.�_c�E��n�.�>�±u����,����#E�q.�܆�%Q)�"){#~�(�D@�/�?�FYy��0�ۅ�Sf�x^//f��h!�`���^"�(|�D�h���٤���d�G��j�Wڤ�mQ����]/��t�����w�^h�b�g��xN��E�f��Dah5�E(<�Jq�Q�$*�x��IQ7 ���F���̩g����]Q>n��ø�)��_X��v�~0����RK��Ri��#;��'�S��X%`D��n�5I�J}{ց�P#˴���V�n�PX��H���v�6�]��u��D/'��0S�~E�ɓ%1,LX�V����P�9v�F5_�1 �I��9 ]����n䶕��=`C'\$��V!�Ƙ��l�,�A.�Y�ʚ[�f�%�z�7j�G��3�l]�R��-�x�M�\c���d^����Jmh�n"�S�y��v=��M��n'^d �O�@|���ӫ�O��$�-Q��i��W�ͱ.�]А���Z�7�_wG���h�3�=�|JnD#���������#7V����W�>�����`���:�~�Z�������L�*GD�|�u�IK�n�Gd|���a �"��Aj4�R�B��7i5楨 -Q�o�?zf1��"�R7E�K;��g���==)A� - �z�a���f�Viy���P�"��%�O�Y��0{�Ov���[�����-�\yN�&pK�(��*��h�'<�[�G��G,�ڎ.-s~���D�ȦQ ;�V�z�����N��#j�sEu�y�Vp�f��gL}�C��C=��:�>��4�<��iU�}g�}%�N�R<d�#{��5}��Vrg�jp<������b�3UU2���9���H\�~���`��/а��x�a���,U���oP���;� ���1j�hU�Oy�Ԥ�}��eûO��.�����'�}��5~��1�L ���p��ܷ��C���H���L�<�^� Q]F�g8�pr����D�p��Qg�<o���Ak�7��/�sV��8�l}ZIW -��8LB��H-����ӝ* @CW�a2(�B.ЮP-ȴ�� ,�6\��䊈:�\�n�a��V�����D�!C3eK��\�hds9�z��,�%�@��=�i�4B��c��a��-�_��tE�8d? ��̷<�%�g�¥���ʥKb�0(1a�rcm�]�S�ic�o,���������Wu�!*һ���$�h⤚j�\�GEm����l��h$zӀ������6 -r�%�]�t�6L�Pc�eU�IP"�q��CN�Uˬml�G_��ڹ'������Q�����g:`������W�ŅY/�D�� x�Y��s^� �o���kD�[ph�N]�a�v�5X ���G��eV�xF}�yw��lW���X���v����8n��t�sv�w�Nl�1�oNW�[Ή�xΊ�D6�^_�M� ���\P��.��7�U{N����P�s(m<D���H���Gen#�N��%����w ;�t�И��0�9W���)j��R��3�C�� -�T��/lr��6��]�Y�2=���1L�pg��g:#.٘r�X�C�~$Z�h��<�H�Zj�to1@I�|��n� ��! f:ߦ8����"'F~�YkX!ʩ����؆�"d�D䰯����&CHZr�,����?���*���9���3גP��v�9Iǚ� P��qc�v~��~g�v�����D=��9�Y�o�-� -&"��_�,'�"��������ѩ�x�<endstream +xڅ]o�8���>DjZ�>��=����E� /�����u�%�Dm���o�3ԇe����p8��7s�ϛŞ�}�J�(�e�7�l;��x��`����������Vb���vx�Xųؗ" �l����a������4ޕ�N�"/w4����E:����7��Џ�*�_���L����"l�(�f��?�`_+��!��'X�0e"�XiĹ��a9mcDE���f{EpU�����j��K�����i.]�ji����(M�&*��v�X~�w��9F]��k�c��3���^�����HI8-�z��TY��;�|���7��m�p��j�̪�����������uì=d��F�l�Ze:�s.CG�R^⸲�i�* +w����rG;��1E|C��7���5��u�����k{�$�F�27w�Α�s/(�D����D���r�D�)�'��pvL�~�|TD��8�ˆ�5��e��g�J��d(��c�[�M�|��%P*�6I��9� +�k�k��P=\r�$�~ < +�Q�r?�|<�9��q�ͨI�)W��z���@;�L� +Ep�f����k���o��u��H���|t����O�O5`^�eI���|�j��M�'^�e����`�v���_ +;֒@��R#'+�d�� ��m"Ve/�B�Cܧ�=����CHWx24�o�Gs`�A�A��4y�톷IW�|����N�-��ƌ"�02��]��eb�Ԧ��s����'�����N�{���I��>i�_sϣ�h--;7���vG���� +BSԁ���Q�X����-�/�<c/5���燼Hkˍ�2�m���Lz���|%�ۯ#��|� �Z�(����Ӱl�����篿��Z���U�J�K�c���@���Y�F��Ձ N��Q���)Q*�����Yb�,���7�4��~�� �<3�x�Bԯ��W�+��L��K�}~+3KGߠ�4=U�v�W�����a@��IZ�a��AMG�7@�jD�����9��!����FN��3�� �=��EJ��+��th�w�~$�[�|m��zB#G�����S�hO&���n��*���w��h��t�d0�"�ϙ���-9iʁC���(���6g������l?~ �\���nn���aJ2<�_�7��C���2D��Y��"��z��8�ҤN='d +U�u}��i���u��3a:4,���Ɉ��f�}؆���A:k�'�ζ!Y�tu���j� d_�=i;d'���B ]�� [�*%G��� +mS�-2)��j�_0���"$�O5�q��E�uC&��ި-ʑ��~K���(�b���T�|������ �K�C]+�u���J���e�2U#���e�j&f\�ҁ�^�%l���a$up�.���+İp���I�JKExl>���qX�tc������}�p �Iq؋��wA]�+�Lzu-��De>Xf`�+`B&� �fB*��k�eT���}7�T]�H�`X\_�Ђ$��t��u��~W�ɾ����S`�a^ݷ�>��=l��q���i�ܰu�`�X��=6�Q3�<H�v�Rv��"�[�G�m�k�&�LK(5��ΙƁ��觶�d�u9�x +5�'�F]W$���hL�&�`o��>�Y��ʹP����O��:Z�E�$\�o��n���@[�W��hY��}��Ejk0�z����EMLE������6�K��8|�����EhX�l<��8�{�",�@�Rp ,he�a�K���2�:6C�6gb���ȟ11�f�-��}SC�����rX�,��oin�G2�J5� �̠+�[�1�aYC/�,��R��r0�Ƶ������i�@��/ܿu��}y�m�����UWj��+�٤Loq0!�:�?Z��l�Z26�<���/"�u�w-�?<`�c`uST�3N�������H�X����=9弰Hà4�>}V�*��/��������������F�{������D�o?����փA��E���g~~c��7������U��y���]� ��O�S}�.V����v�c��ڛ��N>2�`-���`$���x�9dv~"���c&��9�#�ß�ʢ2�>᠉@�2����A�k��3�l���&��^Y\���%Gcm<=ӊe�h^�2 +�6gg����N���N�#u�����yd +;\[[�'����fBj�ۺ<�06����%��:��eʇ���s������ p���E�̈�J�б\�v���Ȅ�Sr������U[lt���;RW�p��#~�A4�Ԃ�t���A� g��o�Ӫ9"�,�xr��R��3�`5�������<�06g`��2��y�?�L�mK�g�����U�6XL���$HD��z�I�O�1�E�k?�M9���̲endstream endobj -2478 0 obj << +2472 0 obj << /Type /Page -/Contents 2479 0 R -/Resources 2477 0 R +/Contents 2473 0 R +/Resources 2471 0 R /MediaBox [0 0 609.714 789.041] /Parent 2376 0 R -/Annots [ 2488 0 R 2489 0 R ] +/Annots [ 2483 0 R ] >> endobj -2488 0 obj << +2483 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [139.526 252.588 191.829 261.499] +/Rect [244.482 435.527 269.647 442.401] /Subtype /Link -/A << /S /GoTo /D (security-webserver-access) >> +/A << /S /GoTo /D (gloss-cpan) >> >> endobj -2489 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [478.054 252.588 530.357 261.499] -/Subtype /Link -/A << /S /GoTo /D (http) >> +2474 0 obj << +/D [2472 0 R /XYZ 71.731 729.265 null] >> endobj -2480 0 obj << -/D [2478 0 R /XYZ 71.731 729.265 null] +2475 0 obj << +/D [2472 0 R /XYZ 317.417 685.031 null] >> endobj -234 0 obj << -/D [2478 0 R /XYZ 339.476 708.344 null] +1358 0 obj << +/D [2472 0 R /XYZ 71.731 657.136 null] +>> endobj +238 0 obj << +/D [2472 0 R /XYZ 197.318 621.669 null] +>> endobj +2476 0 obj << +/D [2472 0 R /XYZ 71.731 613.031 null] +>> endobj +1359 0 obj << +/D [2472 0 R /XYZ 71.731 573.405 null] +>> endobj +242 0 obj << +/D [2472 0 R /XYZ 177.791 535.472 null] +>> endobj +2477 0 obj << +/D [2472 0 R /XYZ 71.731 528.12 null] +>> endobj +2478 0 obj << +/D [2472 0 R /XYZ 71.731 508.209 null] +>> endobj +2479 0 obj << +/D [2472 0 R /XYZ 220.441 484.463 null] +>> endobj +2480 0 obj << +/D [2472 0 R /XYZ 71.731 477.325 null] >> endobj 2481 0 obj << -/D [2478 0 R /XYZ 71.731 699.706 null] +/D [2472 0 R /XYZ 455.258 466.531 null] >> endobj 2482 0 obj << -/D [2478 0 R /XYZ 161.668 676.463 null] ->> endobj -2483 0 obj << -/D [2478 0 R /XYZ 71.731 651.392 null] +/D [2472 0 R /XYZ 71.731 459.392 null] >> endobj 2484 0 obj << -/D [2478 0 R /XYZ 71.731 573.649 null] +/D [2472 0 R /XYZ 71.731 435.527 null] >> endobj 2485 0 obj << -/D [2478 0 R /XYZ 71.731 550.635 null] +/D [2472 0 R /XYZ 71.731 420.583 null] >> endobj 2486 0 obj << -/D [2478 0 R /XYZ 71.731 365.928 null] +/D [2472 0 R /XYZ 121.379 397.39 null] >> endobj -1358 0 obj << -/D [2478 0 R /XYZ 71.731 334.944 null] +2487 0 obj << +/D [2472 0 R /XYZ 101.884 385.734 null] >> endobj -238 0 obj << -/D [2478 0 R /XYZ 244.612 299.577 null] +2488 0 obj << +/D [2472 0 R /XYZ 156.232 385.734 null] >> endobj -2487 0 obj << -/D [2478 0 R /XYZ 71.731 290.939 null] +2489 0 obj << +/D [2472 0 R /XYZ 254.126 385.734 null] >> endobj 2490 0 obj << -/D [2478 0 R /XYZ 71.731 252.588 null] +/D [2472 0 R /XYZ 313.316 385.734 null] >> endobj 2491 0 obj << -/D [2478 0 R /XYZ 71.731 237.644 null] +/D [2472 0 R /XYZ 138.317 374.077 null] >> endobj 2492 0 obj << -/D [2478 0 R /XYZ 322.74 228.145 null] +/D [2472 0 R /XYZ 239.635 374.077 null] >> endobj 2493 0 obj << -/D [2478 0 R /XYZ 317.417 204.832 null] ->> endobj -1359 0 obj << -/D [2478 0 R /XYZ 71.731 166.974 null] +/D [2472 0 R /XYZ 71.731 346.182 null] >> endobj -2477 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R >> -/ProcSet [ /PDF /Text ] +2494 0 obj << +/D [2472 0 R /XYZ 175.156 333.23 null] >> endobj -2496 0 obj << -/Length 2515 -/Filter /FlateDecode ->> -stream -xڵYKo�F�ϯ��%�j�Mj{��ff�'VAf��M�D�)Ra7�Q~}����%�E��_��ꪯ[�́�;�]���V�Y���v0���3�<e9��n�����Vb���v��Xų��Dz���?��yzвY,�Й{��w��iYՎ�����EY��_�?��~� �X��E�윉b�?s�jf tb�����0 -���>͈��_�������7Ι-=G�^hV��$�7ņ���DUV��9��`5/��&m���\�(��|���)7�r.�����Dž��[v�I�Z�s�֠.�ʧ����u�yݒ�YZQ��pCӷU�U@��j~hj�����`��ДE�tM�s^d9�R�Už(��J�o�궑D뚿9w�X����瑂R�3g1d�&U`�s�V�QѺ�������?��Z]��.�b�����������yZ��0}��m�=Q�և�77�n�L⦸�|'E%� x�2����x���xO|�͇��벬Q��I���M�颮Nw �Zw�=�F�=?V�壯a8W=W�w��>���Ä��'6Ҋ�� -P3� ��^{s��p�!2��O|��r�ѻ�7=l�H�� �4{J���a���ƣX�-|@�H����=b�#a��D��ռj10eC�zK�y��FVY!aX]Ө>$�_��M�!"/X���d�*�v�0+,ae��=�N�Üs�K;��|���n����6���lʀ���Bz��'I�$�,r�瓲��L�T�SF�\�Yw� -�V" -◅��a`y1������K�ۧm�>Ȇ���|֖���t��t�L�"��k-��� �gz����c|�p!�`ȸ�\��k$=ߍ�Y#S:�8%�+�#~ ���������g�(i#i��SMc\����V4`R��ܢi[�k�KY�(��H^h^]��犗 $<s搥9�l��uE�{t#QHԠ\�+��8i%b�&��<u#��n�s.ff�$�k����~s�K���]f(���4A]kS� o�VLыP��t�9���锣����t#��Dԣ�ClG��{�]�#</��u��'.�!2�g�6���h��� �0�S��9`nw��=��"I˵U�y�`Z���i�\V/�c�C�f?���;��@��N���)��x[�06oG�T�[h���Iqt���g���!�0����g`C"�Fp�ns&]D`�ݴ�D�E?�^M!� �S�q "7z5V|��zN -5`b�����0��ȼ-j�c���p�oEJ���*�(�މ��[-�lȏ2z��=Ff�[�s�i�+H%�Eݚ�s>v��`=��8��� �Q ��4pi���^�����۷�e�l(l\��pu�� ���A���z֜�,�YWܗ��A -$i�&��T��f ���j���F�4��4BG:� -b��k�k@�� ӿ���������1�)�)�,E�K��U�F��B]���J� -M��y ����x�U0n'{�As)s�؛n`8���a$��r��26~�����Q ����C˫����a�Ÿ���F� '@9E�Q��]o*yi' ��D���In@4����/X�nן��=ܮ��w�!�������nd���~ND�A��z�(���Dy<`��������̈́/r N�'��q"�8z�d0ǠO��6v��ILb�����o�/�h0̖ `�(i�6g<q�v~�AX㍙"یG`Ά@U֦�'�4��J&,����0�2&L\s����9蒋m�K+��l���l��Iϴd�0��F!_u�&k��o��tu�;R�,T=."�om�=�����k�)���m��c��ѠA�ҚbWT)/2��Kᆨo�n�����S�Gf$m%B����v1�x�D��PH�o����u[n��fC'�}�[)�u������)�i%���A� [���ގ��: ���|r������`"�ހZL��MS7����x9����9 0��̟<m�ʼ�,�l\5���]�>�����Y�>-�*�A����槢B+�o�{pIc/����Il`i����7K��#���S�i'��[xx+��Z����8�#��Do�Ay -�e���k�����:�G��垻ՙd��k��C\�*Ce����"t-m�e�/��Q��1ӳ�M+(�n;z�����$ B��C�=8ؙ�?B �B�l�`�ɾr3z�;o_��O,_xA2�uq��2{R���PN�"�V��{9�y(Ӣ��Pu�i�f��ǺB�����{�7~�2��(��rc�-��뽜`Mտ��[�܈� jɖ ��c���h&\�{���r�N��������r�5C�g�gy��W����n�)~W�u]�j -��8���V'�d��?j�p��咀��P�]�5��"=�s�H�)C���3�^-ҧ�����o��Or��{�����k�o�D$n��k�)��Ѓ��,SۼKN%�y�N�endstream -endobj 2495 0 obj << -/Type /Page -/Contents 2496 0 R -/Resources 2494 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2376 0 R -/Annots [ 2504 0 R ] ->> endobj -2504 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [244.482 607.896 269.647 614.77] -/Subtype /Link -/A << /S /GoTo /D (gloss-cpan) >> ->> endobj -2497 0 obj << -/D [2495 0 R /XYZ 71.731 729.265 null] ->> endobj -242 0 obj << -/D [2495 0 R /XYZ 177.791 707.841 null] +/D [2472 0 R /XYZ 71.731 295.208 null] >> endobj 2498 0 obj << -/D [2495 0 R /XYZ 71.731 700.488 null] +/D [2472 0 R /XYZ 71.731 239.083 null] >> endobj 2499 0 obj << -/D [2495 0 R /XYZ 71.731 680.578 null] +/D [2472 0 R /XYZ 71.731 229.121 null] >> endobj 2500 0 obj << -/D [2495 0 R /XYZ 220.441 656.832 null] +/D [2472 0 R /XYZ 71.731 191.098 null] >> endobj 2501 0 obj << -/D [2495 0 R /XYZ 71.731 649.694 null] +/D [2472 0 R /XYZ 390.582 175.323 null] >> endobj -2502 0 obj << -/D [2495 0 R /XYZ 455.258 638.899 null] +1360 0 obj << +/D [2472 0 R /XYZ 71.731 155.233 null] >> endobj -2503 0 obj << -/D [2495 0 R /XYZ 71.731 631.761 null] +2471 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R /F27 1112 0 R /F60 2497 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 2505 0 obj << -/D [2495 0 R /XYZ 71.731 607.896 null] +/Length 2161 +/Filter /FlateDecode +>> +stream +xڵk�ܶ��������'�z~L�&p��}E[�����+���Z������p��>��@l�KΛ�yQr�_�ʤ��D���dU����0?�I��0����ǻ��Z�H��q��e.�l��H�I�z�>?��0�a���0�����۶�v��~���i[�������g���D��W��47�Ej%c��-�3���Y ��AY��tk����l��ma�r�p��B!�ĉօ ���ʔc�E4]�N��6�( ~[�$0É�ejS�N�e��?�M��vm�4 ��m���}�T<ֆ�F��ؑ�G�M3�����``m��xj<��D�����7ʂɺ{SQ��-�I�Hd��4 ���on�וA�0�ش�xZ�I H͛-�8��}�����B��~`�i�,y`�~j+�z��y�^\�X���!&��6�m@{o����`�+�9��2A<��)����8��I��!�tL��i�<�b���S?1Bwx�m�`vc�].n�ξ��%� �Qkf��`tśKo!��{^�[���%�(�P2�`w$+H��y�O���HeAѤm��L2�,Ҕ�"ɋ9x0p6id�v�?�/��t��H����,���0�i�w՟&��n�Ǿo-���'�L$*f�OJF/X5QB�$3�o1C4��f�WSk�u�ڛąU�js9�q5�2�Ǖ��]hC���]�.ډ�F�yr�H��B�������ç�h0�v�1)���ZS&"��x�,��'�,r�M w��{�oZ} +���̀���#�%a��jly�.��6]BeѬE +/c$��T���_m{X�#)�XF�ZC�a�:�=%�������hK{w"8�=�MUe T5�D�Vhu�LW�P|Yk ��9�'BԽ-ˤ{B�x�k���ְ�P�pA�ΔӀ�}�Ǯo�"44 ˂c���Y��b����Y�p'��wqs>@BW�v*k�h��A�7#����`4]���)��H(� G�g��O������S(�b���+S��֓l�������`J�����$2}M�'yMs�p�_h���`]}�$Yrѝ��@����R)�+É�wsߛ���;l}����,-�`�}�q陝�Q���q,[3��do�A3[����6 +�/f|�D�qƿ=}���?J�Y!�xVH���(�����B�.���\�����v]�SB|������C�cN�H�#� +��J~�����rf�aY��x�恫_�y�����s�#���8��9@s�x0ُZ���rq4W��.�vl&K��&{͵#�YF��2��q�pR´��+�?��dӗ����U��3��/�;�!q�:�+) +�����}��u���a��kB����x{ s��_yͩPBH�0�(�tU�Z�\�qA��9<ICrR����vL��T��V�&ب9�#z,��0��Z��D3�{�8���$�Q�.X���'�2����Q�3�O�{�xk����짶���=��}絳2����als=N�{B����j�8 �qDL!���B�X�" +ǣ�1fe�QhJʝ_%�$�F_93uS"�9h�>tɀ���쁈�F�������/Q�3��i@P��cGXrݻ 0}�J��Ӓ��F^#�_��;M�С��t;p�."L�"�����pt��|O{J�f�>���/h�L�fd��a���=_��;80k<���tC`��'��Cs1�<��I�J!�2�>���W�`MB���,PJ��g�J= ?�I���ձ;Gk�CiI/���ζ�1�j2l��� +3\S�c��~wʵ�0�ԕV��d@w;�y�pb�# ���` 1q���1d��՝ߚ~�D������X��>7�n����#� +���+p���~k�U�/�~{C9�p�Et��)IΞ�2S"��2������=�-c +���o�n���0���0�R�\�� ?Lvt���f;6w���({kƺ�^��� �>�����a�2H��#Y�m�:"<$�8&��5�%���2�N˧���ߛ�m�_��7 >f�ɴ���,뇠�����?g_8�Ë�>�'���W>Ĺ�e�������3�UF^����k_�o5�"��@endstream +endobj +2504 0 obj << +/Type /Page +/Contents 2505 0 R +/Resources 2503 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2376 0 R +/Annots [ 2524 0 R ] +>> endobj +2524 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [474.611 414.233 519.716 423.144] +/Subtype /Link +/A << /S /GoTo /D (installation) >> >> endobj 2506 0 obj << -/D [2495 0 R /XYZ 71.731 592.952 null] +/D [2504 0 R /XYZ 71.731 729.265 null] +>> endobj +246 0 obj << +/D [2504 0 R /XYZ 245.404 707.841 null] >> endobj 2507 0 obj << -/D [2495 0 R /XYZ 121.379 569.759 null] +/D [2504 0 R /XYZ 71.731 700.488 null] >> endobj 2508 0 obj << -/D [2495 0 R /XYZ 101.884 558.102 null] +/D [2504 0 R /XYZ 125.246 674.765 null] >> endobj 2509 0 obj << -/D [2495 0 R /XYZ 156.232 558.102 null] +/D [2504 0 R /XYZ 71.731 661.813 null] >> endobj 2510 0 obj << -/D [2495 0 R /XYZ 254.126 558.102 null] +/D [2504 0 R /XYZ 71.731 649.694 null] >> endobj 2511 0 obj << -/D [2495 0 R /XYZ 313.316 558.102 null] +/D [2504 0 R /XYZ 71.731 649.694 null] >> endobj 2512 0 obj << -/D [2495 0 R /XYZ 138.317 546.446 null] +/D [2504 0 R /XYZ 101.32 640.195 null] >> endobj 2513 0 obj << -/D [2495 0 R /XYZ 239.635 546.446 null] +/D [2504 0 R /XYZ 71.731 638.98 null] >> endobj 2514 0 obj << -/D [2495 0 R /XYZ 71.731 518.551 null] +/D [2504 0 R /XYZ 101.32 628.538 null] >> endobj 2515 0 obj << -/D [2495 0 R /XYZ 175.156 505.599 null] +/D [2504 0 R /XYZ 71.731 627.323 null] >> endobj 2516 0 obj << -/D [2495 0 R /XYZ 71.731 467.577 null] +/D [2504 0 R /XYZ 101.32 616.882 null] +>> endobj +2517 0 obj << +/D [2504 0 R /XYZ 71.731 615.667 null] +>> endobj +2518 0 obj << +/D [2504 0 R /XYZ 101.32 605.226 null] >> endobj 2519 0 obj << -/D [2495 0 R /XYZ 71.731 411.452 null] +/D [2504 0 R /XYZ 71.731 604.011 null] >> endobj 2520 0 obj << -/D [2495 0 R /XYZ 71.731 401.49 null] +/D [2504 0 R /XYZ 101.32 593.569 null] >> endobj 2521 0 obj << -/D [2495 0 R /XYZ 71.731 363.467 null] +/D [2504 0 R /XYZ 71.731 581.913 null] >> endobj 2522 0 obj << -/D [2495 0 R /XYZ 390.582 347.691 null] +/D [2504 0 R /XYZ 71.731 571.95 null] >> endobj -1360 0 obj << -/D [2495 0 R /XYZ 71.731 327.602 null] +1361 0 obj << +/D [2504 0 R /XYZ 71.731 531.936 null] >> endobj -246 0 obj << -/D [2495 0 R /XYZ 245.404 290.386 null] +250 0 obj << +/D [2504 0 R /XYZ 381.295 488.838 null] +>> endobj +1362 0 obj << +/D [2504 0 R /XYZ 71.731 485.275 null] +>> endobj +254 0 obj << +/D [2504 0 R /XYZ 195.006 449.466 null] >> endobj 2523 0 obj << -/D [2495 0 R /XYZ 71.731 283.034 null] +/D [2504 0 R /XYZ 71.731 442.113 null] >> endobj -2524 0 obj << -/D [2495 0 R /XYZ 125.246 257.31 null] +1363 0 obj << +/D [2504 0 R /XYZ 71.731 396.3 null] +>> endobj +258 0 obj << +/D [2504 0 R /XYZ 161.035 359.085 null] >> endobj 2525 0 obj << -/D [2495 0 R /XYZ 71.731 244.359 null] +/D [2504 0 R /XYZ 71.731 348.942 null] >> endobj 2526 0 obj << -/D [2495 0 R /XYZ 71.731 232.239 null] +/D [2504 0 R /XYZ 71.731 323.852 null] >> endobj 2527 0 obj << -/D [2495 0 R /XYZ 71.731 232.239 null] +/D [2504 0 R /XYZ 118.555 285.288 null] >> endobj 2528 0 obj << -/D [2495 0 R /XYZ 101.32 222.74 null] +/D [2504 0 R /XYZ 281.083 276.823 null] >> endobj 2529 0 obj << -/D [2495 0 R /XYZ 71.731 221.525 null] +/D [2504 0 R /XYZ 252.403 241.855 null] >> endobj 2530 0 obj << -/D [2495 0 R /XYZ 101.32 211.084 null] +/D [2504 0 R /XYZ 118.555 234.878 null] >> endobj -2531 0 obj << -/D [2495 0 R /XYZ 71.731 209.869 null] ->> endobj -2532 0 obj << -/D [2495 0 R /XYZ 101.32 199.427 null] ->> endobj -2533 0 obj << -/D [2495 0 R /XYZ 71.731 198.212 null] ->> endobj -2534 0 obj << -/D [2495 0 R /XYZ 101.32 187.771 null] +1364 0 obj << +/D [2504 0 R /XYZ 71.731 201.711 null] >> endobj -2535 0 obj << -/D [2495 0 R /XYZ 71.731 186.556 null] +262 0 obj << +/D [2504 0 R /XYZ 282.307 173.064 null] >> endobj -2536 0 obj << -/D [2495 0 R /XYZ 101.32 176.115 null] +2531 0 obj << +/D [2504 0 R /XYZ 71.731 170.404 null] >> endobj -2537 0 obj << -/D [2495 0 R /XYZ 71.731 164.459 null] +266 0 obj << +/D [2504 0 R /XYZ 268.211 142.678 null] >> endobj -2538 0 obj << -/D [2495 0 R /XYZ 71.731 154.496 null] +2532 0 obj << +/D [2504 0 R /XYZ 71.731 135.48 null] >> endobj -1361 0 obj << -/D [2495 0 R /XYZ 71.731 114.481 null] +2533 0 obj << +/D [2504 0 R /XYZ 71.731 112.626 null] >> endobj -2494 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F60 2518 0 R /F32 1119 0 R /F57 2335 0 R >> +2503 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F57 2317 0 R /F60 2497 0 R /F44 1884 0 R /F48 1896 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2542 0 obj << -/Length 1799 +2536 0 obj << +/Length 1357 /Filter /FlateDecode >> stream -xڥX�o�6�_����bY�|�C[�E��C����c��^|�ղ{���#E���k�m-�$%~�?����/�T�T�#�E��^�� -�5p^^I�X���H�������\��nW^$3��^�B�šw[}���v��bƁ -z���X�mӭ��ٴ��i�b��������X�"�ԣv9���ʓ�e��9�X�Qf-E�椙�˛W���c]�-�E�}?»$�\�M��M?j���H�(AU��T�P���H����j*�9�9=����ad��Z�>)�}?�"��Ae�����T�}O^����D)�[���k"�f������ı'B[��D�W||Yjc�����;bԽ ���>|!c��b�����?<m8|��ih�=;��Þ��` d(rN��nЀ4�w�&�J�E���a��a=bC7F/s�Y���7SY�`�������XN���~��]�+VT#�肬L13�~Z�D�x��v�F"��K�a�_Lm'�<��>J��0^�u��4��p%s���Q�N�Q�q�(;U�1�����Q�4�˔t�=�~�GZ=�J�Ꙃq#�2�����rП�f��L��Z��Y��%�ݲ҃�J�qV�C��:+ -�t=���&�E�G�G3�C��O��o��_H@�M�$�7Şu��� --M�i��a� ���D�Z�� C�[X���>R��i��;�#�n�������J�5o"ʑux�������~�;���O*���z_�fN�A_3L��u�r�D��,��0�ӚS���S��ɜ�:����`šk�N3��瘓R�8��2�Ȃ����ç���{���O��]�p�S��'E�+o��������$\�x��c��f'�����g�����o�I� )�A��$�[�m@6��ȃ��� K�A���D$*s�Qn+Bn/� ^Ԝߡ�odo��^P�7�d�k.q�MX�P��&J@�8@Ζ�0f�-�����7��UL*�liN�7�1Pe�vVfU1w���N��Y{��PC�d�n�A�nHG��X�b)�T�,ĻI�X�ʺ���$��U�sIBk$�Y0; ��m1�Vd�NX��n�"����ٞ�m_����� -T=`ב�\�r����5k�%m����F�)��m�M3��à�<|��^D�E���9��������� �#m8�8�샗�Pt㩂���7����a}��/��:w5zX�gv�Q8���αөu����Q��hXP)���s�쮺�E -�t�Թ�C_@t�,�6 -T�dp�%t� -���q8gk�AiI�����̶f�j2�p�"� �c��b��IJm���D����p�v�����Nl~D�>m[@�#x�PS���Q�����! ;�v.�Pİ%��^�I7fv�X(,�W� ��Q���<RP�3���GC9�J$Ax�`S|� �2�`��)�}��J�Ø�)k�S�|��C ���B�����ۚ�|2�m���6�����Oz���������O��G�A�� l�$6�EXv+7� 5�I��`�-��3(�~|�����Y���Y�e+��t�jB���ږ�q�o�#�T|�1�����������V�.�X,�`�٤��|`���/��x&nk��� ��X����$2�x�[J�G�}�T����e�H��j�E�������&i���n���S��_��eۯ/����TS-WM�O7⾽�"��a��)�G��sy��R������_gj��P�#endstream +xڵWmo�6��_a� -��^�C�E�5�Z���"�1QItE:���w䑲{݀a��<<>''���E���V$�٢�/��=켾H�F�T�#��������T9]�,)IU, +�����U�1���[��0JY��7��u��W�������v������тT%�f\^�40��h����KB���ֺn��|��=_��\��~FI��t&0% �Ya��l>s�D]�/�Ro�ٟ������2.��RB��#�������3������3�w���*�ټ��h=��w��z�?Y�9�|�Nޟ�$E`�\R��֢�����sp�*+�VXF� +�����$Ė`Q� G�z���Q� +�`':���\o�3�3� �Ŵ�$�ΔI�� +8��p�v��ןQ��q��F)���ƁX��ޛ9<����EIK��W�[�G�7(�{��՛�PQq�bN��2Fʲ��LN�H�z�CP�$���%��#�PG���愕9����%x�#���f���i��4;]�u\]���F���0כ�d�Xz�z�NA��9=��+r�Mp�1�K�q +>q"�3�$��<;��:�(� ��A�o� W>r�R9��9%0��c����7c�,l#.��a�(U8b���^i��E�"H�"l���3�,x.q�\걽8����j19sFܭ�B�k��w(�CB�{8�p�!r��C(Y9{�Խ��x2� �)|E�� G���� +�?��멑lNB�s���~�����*��ؓ +3��z���'�0gi�5.`E���0l��ᗳ��8�Ƽ�Т��W�L7f����.X����KrT�qa;&b/���������w�mjzs��x|rO�S{w +j�Mӌ�vd�r�c�~Rim�{_a���{���N +��8��W��2�<��!l�S�S�6x��rJZ���mh�L�a��ז8 +7� �g�m<sk��T4=D��ɨc���_ܬN3��I_M���c/����= ��~'(�b�������Fӂ�=��*'��{ M#w��ljO���s�'*������'��]��P ��B�iN�c�����X&;h������{>Ms�Ĵ#a{6��j��nb5����pP���:B"�<wc?-��^��k�yn¹udoU̧R�-(=�^��8��n�)�~ڲ���>~��*9�o���\�g�W�G�Se���Q�J8�FBޛy���فe���x���֩�|�� o�ю!� ���������l>S�.;�65�[��w��������֯���ɏ)���ވ�m��~ �z�Φ�endstream endobj -2541 0 obj << +2535 0 obj << /Type /Page -/Contents 2542 0 R -/Resources 2540 0 R +/Contents 2536 0 R +/Resources 2534 0 R /MediaBox [0 0 609.714 789.041] /Parent 2556 0 R -/Annots [ 2545 0 R ] >> endobj -2545 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [474.611 631.143 519.716 640.054] -/Subtype /Link -/A << /S /GoTo /D (installation) >> +2537 0 obj << +/D [2535 0 R /XYZ 71.731 729.265 null] >> endobj -2543 0 obj << -/D [2541 0 R /XYZ 71.731 729.265 null] +2538 0 obj << +/D [2535 0 R /XYZ 71.731 523.537 null] >> endobj -250 0 obj << -/D [2541 0 R /XYZ 381.295 705.748 null] +270 0 obj << +/D [2535 0 R /XYZ 228.441 490.66 null] >> endobj -1362 0 obj << -/D [2541 0 R /XYZ 71.731 702.184 null] +2539 0 obj << +/D [2535 0 R /XYZ 71.731 485.475 null] >> endobj -254 0 obj << -/D [2541 0 R /XYZ 195.006 666.375 null] +2540 0 obj << +/D [2535 0 R /XYZ 427.619 472.727 null] >> endobj -2544 0 obj << -/D [2541 0 R /XYZ 71.731 659.023 null] +2541 0 obj << +/D [2535 0 R /XYZ 387.295 459.776 null] >> endobj -1363 0 obj << -/D [2541 0 R /XYZ 71.731 613.21 null] +2542 0 obj << +/D [2535 0 R /XYZ 71.731 428.792 null] >> endobj -258 0 obj << -/D [2541 0 R /XYZ 161.035 575.994 null] +274 0 obj << +/D [2535 0 R /XYZ 199.549 396.015 null] +>> endobj +2543 0 obj << +/D [2535 0 R /XYZ 71.731 388.817 null] +>> endobj +2544 0 obj << +/D [2535 0 R /XYZ 71.731 365.963 null] +>> endobj +2545 0 obj << +/D [2535 0 R /XYZ 147.048 356.463 null] >> endobj 2546 0 obj << -/D [2541 0 R /XYZ 71.731 565.852 null] +/D [2535 0 R /XYZ 147.048 344.807 null] >> endobj 2547 0 obj << -/D [2541 0 R /XYZ 71.731 540.761 null] +/D [2535 0 R /XYZ 71.731 323.188 null] >> endobj 2548 0 obj << -/D [2541 0 R /XYZ 118.555 502.197 null] +/D [2535 0 R /XYZ 71.731 300.174 null] >> endobj 2549 0 obj << -/D [2541 0 R /XYZ 281.083 493.733 null] +/D [2535 0 R /XYZ 147.048 288.618 null] >> endobj 2550 0 obj << -/D [2541 0 R /XYZ 252.403 458.764 null] +/D [2535 0 R /XYZ 147.048 276.961 null] >> endobj 2551 0 obj << -/D [2541 0 R /XYZ 118.555 451.788 null] ->> endobj -1364 0 obj << -/D [2541 0 R /XYZ 71.731 418.62 null] ->> endobj -262 0 obj << -/D [2541 0 R /XYZ 282.307 389.974 null] +/D [2535 0 R /XYZ 71.731 255.343 null] >> endobj 2552 0 obj << -/D [2541 0 R /XYZ 71.731 387.314 null] ->> endobj -266 0 obj << -/D [2541 0 R /XYZ 268.211 359.588 null] +/D [2535 0 R /XYZ 361.161 242.391 null] >> endobj 2553 0 obj << -/D [2541 0 R /XYZ 71.731 352.39 null] +/D [2535 0 R /XYZ 71.731 227.283 null] >> endobj 2554 0 obj << -/D [2541 0 R /XYZ 71.731 329.536 null] +/D [2535 0 R /XYZ 71.731 212.339 null] >> endobj 2555 0 obj << -/D [2541 0 R /XYZ 71.731 123.573 null] +/D [2535 0 R /XYZ 76.712 162.889 null] >> endobj -2540 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R /F48 1896 0 R /F35 1437 0 R >> +2534 0 obj << +/Font << /F33 1210 0 R /F35 1437 0 R /F48 1896 0 R /F27 1112 0 R /F57 2317 0 R /F32 1119 0 R /F23 1105 0 R /F44 1884 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2559 0 obj << -/Length 1895 +/Length 1744 /Filter /FlateDecode >> stream -xڭ�nܶ��_�E�-�\R�5o��)Z�m8�-Y˵�J�V���|}g8�.^�� p8��s�� -��?�%�%� cAyEs��;8y}!,�ڒ�g4/��WRz�b�m�^(R�%^"�F�����_��aP�jD��o�~��j�h��x����|���ۋ����H&,K�G�r4g���$�ӏ�L��,`�`F�$���"����!��J�Ǫh��J�C!7��d�ν��!���+!����M*�"o ���������w?|G`�ە�V�N���ܯ��>9��,�R;�͈�lq�@�C5�����՛�a��)�$#�Ǩ��"��)�:mJݨ�^�Ms���M�rg������c��oʘEi� -X C{�ԚLSM��W+�����q�ok�_�aPE�?Q��~(s�"L�}������` 4������������]>������M�>a�(�6��0:��� ���~È��Q�Uu�^�[�� g0J�£t �(�M`���u��m;�ni%m�S?��!�"+��N��VA�?��t�N������N�a���,�5"� ���!࠻�N&1�~�-�ASY� #;ϓh�&�Q��si��ݐ�yB��L���H�ZNr�U���|?V60��L�f����f�R�������a����;ц5�U��h����\Ǚ�P煺\��2�Ȫ����"F�a�����{}�V�f!�SB#&E��b�����"��)7�H@ņ���M����s��k�(!C5���w��(�v�j\����o ��{��J�:����S�.� t�'�l 1]P�N��\���h���9����P,t۪�QkZ+�7�ϱo|nq�mU2��Ҍ�Җ��?>�ޞk(�IB%��ꚪ�!���ծ -�Ӱ�S*���V��WP*L�A,ZT�ѕc�>�nS�(����2w���0�cEs��U*������ivO1g�Vy9Ń�3 k3 -�k=�g�Ȅ]���]���� 9�� D�!��~�>��"@!���%*J��� -�#��3Y �*r�y�ے����zC�ZCuo�*�CgZ堻���n7�GƙV�E�8晘�w<�.8��vIXs#�tSf�.E�[(J�Q�@������<4�:{M�᫃%3� �Rh�߈�s\*�bN�Gv��S��0���4��v��+��Zz2N��8��~��/���<�-�� -H��,��,ˤ�)o��⇑\<�ď�o �,�N�,���qb�<!�4�p��Ce��SU�� -�Jg����X��~���ܑ�}�������7���h4=n0.��VD��)W�rT-Q�(l�6H�g>ܘRkb�" -��X��s�|]D�I�8U>{��ߌ��4����f�0�\c4A -5�[����G�Ut��+�����������uN��hO�Y��Ύ)~�/�榥Sn���M$��6yu�>�L'������@{=m���`����J$o�3��gL�G�� զ< 2�i�t�اe �<GN7nޠAUW?9K� h6��[t ����} �j>��3��â�[�2�^@���w��j%R����AO�ܠD�T/�Mɵ+|Y^.�����G�M��� �;"�NAO;�\����~��^�5�:ƞ_要��A�l�}�������3f.ƅ�ܾq�X S�n�v�e�Wf��v8Gs>;B!������`����ó��h���y�E�z�wŦ7�b ��}8�|����kZ^����=A��DT�1���Q����i��yR[� �ս�;[��G��"�m��(G_L�����7Sf��gU�W*��a�R ��Oe��/eQ����)�������?��_endstream +xڭ]o�F�ݿB�F�N� +��6݆h�a���A�ΖV}��s�a�}䑒�8m���#�x<~��t<��N"E��g#g��<g'��$S,�d1�yq3[�N&�8pn�N(S�%N�"�|�x�^���(=_������Wmo�� �/v��U]��7�g�ތ�FA"�4��\���˜��EI��4{��s +�} �����C�+H2G�,������#+�Yĩ���k<�.ӝ�XH�( �S� +/���������xRQ�� +���kzn�[4 +�a�[:`��^X�(���X�Ajo���0�ܫ�x�邥e��Z:*r�tmOH���3�Ҵ�#��]�RUKT�#���õ�ʔ�����||��yc/�jc���~�����{�:ɋ�j����t�'T!�����t���� +�pK;����� ��m��lk[{Ե���|n%��-�Z�类�Mյ|iM�}��v���jjZ:Y�� x��s�i���M�*+��OR� \��jU���k&�i����( ��IH~gt��D�� ����T��IB�O� ל(IE�E�:��D H�k4��5募 +X����C{�-:�K]�{W���V���t��%�pU�u�����hq<.��l.����q���5JdI��wSr�\��:?� +���G�N���[<�UuA�#�C�G 9"�z-����H��/a�]wu�aNߏUx�5 �LOX�l +B7����o)8����+���^k �*�wm^F��m�1��h��p9��������72����}�3Fɡt'�#�<�4f{�\� ��͗��ϱ�]-{�Z�2��&�b����c��x��;p�g?�=� ��oѪ ƨ�"���|#�� \����X�{�tu�������h[q�c�)��zZW���S�(��g��O*�%���u��i�jQ�˭V� +%|�eYv�Z���:�GX��?�CϞ�z�1�7'g(�sF�֦��A%Pr��\8�~����l�m��PN�E�� +��v��[��B�������3ɱ�5��v��j"��C��Q�3��u�%9��nXck���v۞hm!�s,d�d�K�� �����?��]2��ĵP&�ƺ#�t�qt(5����F Vxڈ ,B@�p�A��d�7]����!M�_;C�<"p����9Ѱ0���]���J3NE<VTLyp��2ׅ�[K�k������:r���ڀ���,�s���)�5��5��Z�D�iL�E��}��@���pGۊq�j�Um���68�⾂D]�I[�]��9aX�p�4� �����`��E�i��E0wtיA4Jj�w�t���c/��1c�fV�f�z9�u�#m���D���6�8�x���O��(s�r[����HP��Wv���F�/3W0C�4�Ȩ�_���{ _=X5�/�y�0�T� D9�r^�ݐ� !�\��s3�*��nӫ��<�����8،nk�C�?2YǏcĚ�v��0�Fg-�0�d�伧A +�WGъ5����籟M1/��堽ф�k��V����QX����-�>� ������kZ1Dω�z�&�Ӿ5���C��w�Ki�z�<s;0<5r��N����ch�eα@�av����y�ϯ�U����|{�=�'c���AI.��|p<q`�D�����o`��b��3+���� D�������j/���|ץ0]}�W��ɏ6�F�&6��/�s�ҿǕ�hendstream endobj 2558 0 obj << /Type /Page @@ -8791,3443 +8791,3363 @@ endobj 2560 0 obj << /D [2558 0 R /XYZ 71.731 729.265 null] >> endobj -270 0 obj << -/D [2558 0 R /XYZ 228.441 708.344 null] ->> endobj 2561 0 obj << -/D [2558 0 R /XYZ 71.731 703.158 null] +/D [2558 0 R /XYZ 118.555 684.724 null] +>> endobj +1365 0 obj << +/D [2558 0 R /XYZ 71.731 611.209 null] +>> endobj +278 0 obj << +/D [2558 0 R /XYZ 138.296 578.705 null] >> endobj 2562 0 obj << -/D [2558 0 R /XYZ 427.619 690.411 null] +/D [2558 0 R /XYZ 71.731 571.353 null] >> endobj 2563 0 obj << -/D [2558 0 R /XYZ 387.295 677.46 null] +/D [2558 0 R /XYZ 71.731 533.51 null] >> endobj 2564 0 obj << -/D [2558 0 R /XYZ 71.731 646.476 null] ->> endobj -274 0 obj << -/D [2558 0 R /XYZ 199.549 613.699 null] +/D [2558 0 R /XYZ 114.77 524.01 null] >> endobj 2565 0 obj << -/D [2558 0 R /XYZ 71.731 606.501 null] +/D [2558 0 R /XYZ 114.77 512.354 null] >> endobj 2566 0 obj << -/D [2558 0 R /XYZ 71.731 583.646 null] +/D [2558 0 R /XYZ 114.77 500.698 null] >> endobj 2567 0 obj << -/D [2558 0 R /XYZ 147.048 574.147 null] +/D [2558 0 R /XYZ 114.77 489.041 null] >> endobj 2568 0 obj << -/D [2558 0 R /XYZ 147.048 562.491 null] +/D [2558 0 R /XYZ 114.77 477.385 null] >> endobj 2569 0 obj << -/D [2558 0 R /XYZ 71.731 540.872 null] +/D [2558 0 R /XYZ 114.77 465.729 null] >> endobj 2570 0 obj << -/D [2558 0 R /XYZ 71.731 517.858 null] +/D [2558 0 R /XYZ 114.77 454.072 null] >> endobj 2571 0 obj << -/D [2558 0 R /XYZ 147.048 506.301 null] +/D [2558 0 R /XYZ 114.77 442.416 null] >> endobj 2572 0 obj << -/D [2558 0 R /XYZ 147.048 494.645 null] +/D [2558 0 R /XYZ 114.77 430.76 null] >> endobj 2573 0 obj << -/D [2558 0 R /XYZ 71.731 473.026 null] +/D [2558 0 R /XYZ 114.77 419.104 null] >> endobj 2574 0 obj << -/D [2558 0 R /XYZ 361.161 460.075 null] +/D [2558 0 R /XYZ 71.731 397.485 null] >> endobj 2575 0 obj << -/D [2558 0 R /XYZ 71.731 444.966 null] +/D [2558 0 R /XYZ 307.022 384.533 null] +>> endobj +1366 0 obj << +/D [2558 0 R /XYZ 71.731 364.444 null] +>> endobj +282 0 obj << +/D [2558 0 R /XYZ 200.472 327.228 null] >> endobj 2576 0 obj << -/D [2558 0 R /XYZ 71.731 430.023 null] +/D [2558 0 R /XYZ 71.731 319.876 null] >> endobj -2577 0 obj << -/D [2558 0 R /XYZ 76.712 380.573 null] +1367 0 obj << +/D [2558 0 R /XYZ 71.731 266.093 null] >> endobj -2578 0 obj << -/D [2558 0 R /XYZ 118.555 337.028 null] +286 0 obj << +/D [2558 0 R /XYZ 256.412 233.779 null] >> endobj -1365 0 obj << -/D [2558 0 R /XYZ 71.731 263.513 null] +2577 0 obj << +/D [2558 0 R /XYZ 71.731 225.326 null] >> endobj -278 0 obj << -/D [2558 0 R /XYZ 138.296 231.009 null] +2578 0 obj << +/D [2558 0 R /XYZ 71.731 194.76 null] >> endobj 2579 0 obj << -/D [2558 0 R /XYZ 71.731 223.657 null] +/D [2558 0 R /XYZ 71.731 184.797 null] >> endobj 2580 0 obj << -/D [2558 0 R /XYZ 71.731 185.814 null] +/D [2558 0 R /XYZ 136.289 175.298 null] >> endobj 2581 0 obj << -/D [2558 0 R /XYZ 114.77 176.314 null] +/D [2558 0 R /XYZ 136.289 163.642 null] >> endobj 2582 0 obj << -/D [2558 0 R /XYZ 114.77 164.658 null] +/D [2558 0 R /XYZ 71.731 124.09 null] >> endobj 2583 0 obj << -/D [2558 0 R /XYZ 114.77 153.002 null] ->> endobj -2584 0 obj << -/D [2558 0 R /XYZ 114.77 141.345 null] ->> endobj -2585 0 obj << -/D [2558 0 R /XYZ 114.77 129.689 null] ->> endobj -2586 0 obj << -/D [2558 0 R /XYZ 114.77 118.033 null] ->> endobj -2587 0 obj << -/D [2558 0 R /XYZ 114.77 106.376 null] +/D [2558 0 R /XYZ 71.731 106.058 null] >> endobj 2557 0 obj << -/Font << /F33 1210 0 R /F48 1896 0 R /F27 1112 0 R /F35 1437 0 R /F57 2335 0 R /F32 1119 0 R /F23 1105 0 R /F44 1884 0 R >> +/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R /F35 1437 0 R /F57 2317 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2590 0 obj << -/Length 1578 +2586 0 obj << +/Length 1602 /Filter /FlateDecode >> stream -xڍWmo�6��_!C+1C�]�!I�!C�e��aX����H�,z"����߾;eIqR��#y�7>w< ��Ox�`iC�� �����{���ӉpKDz��\�N�ކ���< ��ƋD���KÀeq���J�L�-�A����x�j#��n�i~���W7�\�������Ai�,�¯�5��X�$h�K�0��0��a�Z,��+�n���+i�,�ͮ+7�b)�ϯ�*�-�6J��ʮA3�����so)K@#J�����x�6L�e�ʏN�˗4�+���h q�5��T��e2��2��3�v ��,���'������"��V�ߢSvω.�ajQ�8��+�Fu{Z��c��ԝ�k�ÉIt��A� �C����� �S␥y�A�8=��j!��4Ϲ0ع�d{�<6�#���V�&^Վ�`�����&�;��uW�>%�>T��"��4��5E -f�^��n5�h��{'�K�=�c ��`�Vi�ba�����O�U�M��C�D[�� -�BƱ�b\�:Iv"���V��N�'��B��%�j�9^�L~%�������Qj3���(}]j�haU��ۓa�M�z�bS���l��2��JP2��R�>�P%��*k��5p�4�',�mQ�ʶ� �.8��P��1���D�-�����Lu4��je3�ӽ���C4��v���)e�(����?�Ip�t�� -��7�^`4�\�2���[�0m��@� ���h���MI�$)w��k+j��(�����;L��8�N*�Q�2Jt�;��8M8��������k2�^*P�Q�cҍ�~�U�D� -8٧�@�Å��V� Ey���[�c����k�ѱ)�k��$������b���%�ʚ���X(�O��|y��J��<��� ��C��J��κ�����Ka(�>�v�<&L&)�L3�Z� ���S���K�ju f8���E=�jջ�D�j��p/]��G�]"��Z���X��(�pu�����J�8�.��)p6�i( -���mq~�$��T�%\|{�0�9�Dۀ�u(7W�h��]k������`0#�qzm.���W�u�-�z'��7��fМ˾-����<k��6��XDp�6�����h�j���-�m -Ϛ����CM8 �z����~��`�`h]o�$Ó��]�1��Ա!�g�)�����vd����&���ae���}���v�\K���em�,8.,gQ�M -K��`��M�o.+o�Nt#��dM[ZY�c�����j�q� -�3l�9��u#��UR��YAJ�^4�}F��"��� -���4�/Ч�J�Z�3�p9�PN?��=]�u_���|�3�}�Ad�5%����*��cpJd����d<4K+� -�i�5Ve�a�0�l�~����:� d�������5�a����f�V�z�^� -��V������������I,������k�������%�{��l��%���h�#'6`�Hf���頋w�n.ދ7��(�J� -��H̼�����/����(c�H��=�}?���`b8~��X���!�endstream +xڍko�6�{~�a�Č��2tC�%k�$�oðm1�PI4�H� �o���_i7���_<�?>I8K����h��O�� +N�;�cfPf;8��'gWA0�X���$�)˒I�,���<��yS�u/[w�G��3�^7]/��lV�~=��,�J��Ͽ?���B� aY|Q/�s�X4I���^<���f��KY�Z��Z4_����(�,�՛�8g1l!RI����C-����礭;�i|v�'[��EQ +��,���7���/��4u���ʜZ��r�����ʇJ�-�R5��DMo�h�� �W�0}*��~W+��}Jg����72 o��(?�<r�����S�f5֝�5�-ECKЕ;�P���L�e�^�M(܍D��zZur�62��`�Ϣ�#�X����B�s(I����m���#s�D���qA] �~�y]�mףY�f�Dڻ��i^p�+��Y�=�_ ���7`��w��c��� �����(�%�P�$�yقT�q��atJ&��Y�s�&�s�F��#wbc$���QU�r���l7T�:���&*�n���7]:ۂ�ck��qH|�ᚊB��m0�h!�N ,�G8�G�%�++A��t�w��m�a��SX|�[�h�|�"���8�ܯ���NUC:��U�������`dw +�R���t��τ{,��4�NB�<y4������a3��~��^�sVo���*t���a�3��{ ���a~qss{qǿ�~�����P������`���s���*ȏ$�#ߋ��f!:h��]#�a%>��1�茭��u�~t4h�Ȧ?��(~����9t�fu�=D�P]����)�.U +�d56�D���1��5Ϣ��C��}1K�<��j�Ѳ'4\��X�tMnM�,/iU�f��=�����qe��^�)y*�>�Jn��ʅ)U�V���ƒ,�!���8�N�H�D��������?�^���ep>��d�J��������n"d���yoO>؋�n?�z����+����!E�߁����&n_��@͟��LhD�-�����b+��Ov{!GӍ���D+���V�g��� ���� +�8nX"`f��H�<h��/�.[)zI��eB�+J/�m�e�6㞽��P�63:�Ψ � +z8�#�',N|�NeH�#�y�xhN�9��Zz,�g��3�f{�%��Å,k�cv /����2���>v�k��R�z<�ä0Þ ���� {K ���JO.�����O�m �9� u1�jь��"V�Q�s�zܢ��4��$� �B�L�m����{� 7� _y�Ү��IT��p#��"hͦ�Rk�Pϸ�2�fx�F?����I؞�em��8�ۡQ�l�A96��>Na�>+�r3��R0=vY2x��</Ǘ����J�����;s$ޠbŸ;��{�>a������=����4�}s�R4lz��e����VA��uour��bAl�@fV�Cm,��F;:�Ă��P���7�35Tf� ��)�������&�D�c� 㺑hM��vڡ1j��V ��K/��Z9?|��x���'_|�oQ�����-���>��>��/!M5�endstream endobj -2589 0 obj << +2585 0 obj << /Type /Page -/Contents 2590 0 R -/Resources 2588 0 R +/Contents 2586 0 R +/Resources 2584 0 R /MediaBox [0 0 609.714 789.041] /Parent 2556 0 R >> endobj +2587 0 obj << +/D [2585 0 R /XYZ 71.731 729.265 null] +>> endobj +2588 0 obj << +/D [2585 0 R /XYZ 71.731 718.306 null] +>> endobj +2589 0 obj << +/D [2585 0 R /XYZ 136.289 708.344 null] +>> endobj +2590 0 obj << +/D [2585 0 R /XYZ 136.289 696.687 null] +>> endobj 2591 0 obj << -/D [2589 0 R /XYZ 71.731 729.265 null] +/D [2585 0 R /XYZ 71.731 657.136 null] +>> endobj +1368 0 obj << +/D [2585 0 R /XYZ 71.731 626.152 null] +>> endobj +290 0 obj << +/D [2585 0 R /XYZ 219.101 590.785 null] >> endobj 2592 0 obj << -/D [2589 0 R /XYZ 114.77 708.344 null] +/D [2585 0 R /XYZ 71.731 584.658 null] >> endobj 2593 0 obj << -/D [2589 0 R /XYZ 114.77 696.687 null] +/D [2585 0 R /XYZ 71.731 553.823 null] >> endobj 2594 0 obj << -/D [2589 0 R /XYZ 114.77 685.031 null] +/D [2585 0 R /XYZ 71.731 543.861 null] >> endobj 2595 0 obj << -/D [2589 0 R /XYZ 71.731 663.412 null] +/D [2585 0 R /XYZ 71.731 294.595 null] >> endobj 2596 0 obj << -/D [2589 0 R /XYZ 307.022 650.461 null] ->> endobj -1366 0 obj << -/D [2589 0 R /XYZ 71.731 630.371 null] ->> endobj -282 0 obj << -/D [2589 0 R /XYZ 200.472 593.156 null] +/D [2585 0 R /XYZ 389.403 281.644 null] >> endobj 2597 0 obj << -/D [2589 0 R /XYZ 71.731 585.803 null] ->> endobj -1367 0 obj << -/D [2589 0 R /XYZ 71.731 532.02 null] ->> endobj -286 0 obj << -/D [2589 0 R /XYZ 256.412 499.706 null] +/D [2585 0 R /XYZ 410.125 281.644 null] >> endobj 2598 0 obj << -/D [2589 0 R /XYZ 71.731 491.254 null] +/D [2585 0 R /XYZ 430.846 281.644 null] >> endobj 2599 0 obj << -/D [2589 0 R /XYZ 71.731 460.688 null] +/D [2585 0 R /XYZ 494.944 281.644 null] >> endobj 2600 0 obj << -/D [2589 0 R /XYZ 71.731 450.725 null] +/D [2585 0 R /XYZ 71.731 235.651 null] >> endobj 2601 0 obj << -/D [2589 0 R /XYZ 136.289 441.225 null] +/D [2585 0 R /XYZ 71.731 217.719 null] >> endobj 2602 0 obj << -/D [2589 0 R /XYZ 136.289 429.569 null] +/D [2585 0 R /XYZ 71.731 207.756 null] >> endobj 2603 0 obj << -/D [2589 0 R /XYZ 71.731 390.017 null] +/D [2585 0 R /XYZ 136.289 198.257 null] >> endobj 2604 0 obj << -/D [2589 0 R /XYZ 71.731 371.985 null] +/D [2585 0 R /XYZ 136.289 186.6 null] >> endobj 2605 0 obj << -/D [2589 0 R /XYZ 71.731 362.023 null] +/D [2585 0 R /XYZ 71.731 147.049 null] >> endobj 2606 0 obj << -/D [2589 0 R /XYZ 136.289 350.466 null] ->> endobj -2607 0 obj << -/D [2589 0 R /XYZ 136.289 338.809 null] +/D [2585 0 R /XYZ 71.731 116.065 null] >> endobj -2608 0 obj << -/D [2589 0 R /XYZ 71.731 299.258 null] ->> endobj -1368 0 obj << -/D [2589 0 R /XYZ 71.731 268.274 null] ->> endobj -290 0 obj << -/D [2589 0 R /XYZ 219.101 232.907 null] ->> endobj -2609 0 obj << -/D [2589 0 R /XYZ 71.731 226.78 null] ->> endobj -2610 0 obj << -/D [2589 0 R /XYZ 71.731 195.945 null] ->> endobj -2611 0 obj << -/D [2589 0 R /XYZ 71.731 185.983 null] ->> endobj -2588 0 obj << -/Font << /F33 1210 0 R /F57 2335 0 R /F35 1437 0 R /F27 1112 0 R /F23 1105 0 R >> +2584 0 obj << +/Font << /F33 1210 0 R /F35 1437 0 R /F57 2317 0 R /F27 1112 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2614 0 obj << -/Length 1713 +2609 0 obj << +/Length 1902 /Filter /FlateDecode >> stream -xڍko�6�{~�t��Ō��:l@��m�&�Q��@۴%T]JN� �oߑw�e;m����x<��N�#��(�, a r$�h^����9�D1!�ɀ�|zt�:G9˓p4]�"��<�a��8Mz�XwR�'A�{���i;QUe����f�wYUb������i�h�,��/��h�G M����(�3F���DƓ����Ǚh�W����I]Q��I�����{�A�h��G�PW�-B�4��*gk�k�Ȧ�mU�;��NJ��fy�X�'�ʮ8$uP]��1�8���tO��IL��b���wZ?���i��s$]Aw��nnϦoq#��R���5�7�]�Y�4lN���N�G���{���ZiQ�);�P9�8gI�Z�*�>"I�8!{�+s�����l��=�+�j�0�1����d�j�V:O���/.o~����ח��#�=>TΎ��L&C.,J�8rϐ����� �wW石&Y�)Ǟ5 -X�>��G��Td���iO�[:߸�� -�������ݔ\#�169:�r[l_h�C�d�:���Oh"=�� -�YmO_鶨L�b��&�ϲ�N�{N, �!n�F�1��1�aֹ���\0��(��wJ?�֘(�s -P�)T-�I��#DK"H'���cH�ϰ�<eI�Km(C����#"89��8s�M�>y?̟��d<?���pA� j��8��>��B8��������AKil�eh}X1�,w����d�.H���C��w6�{�b���qo��c�lB�d4�!� �L�2<�X�{�k%�+ɮ�[W���-��ʪ��J9��fu�������;W@�{w�T�R�tin���Jv�;�6�'��˨F�x`64� ">�~��Г���j�`ߘ��F[�������]����\VJ-*R0P��נ��Tߖ��`�}���M[��P"p1 -�X@2�����L ��JJ �ٷ��/��KӮ�$�h�w���ŭy��T�^�浗OD�{/X�ccx��� L��چW�R$�1���-�Ъk.@�C��<�@@��/1.�#�c�ES�u�!�$4A�0L�y!��l����I�� �ћ��,��ZmV�Aj�-�r�|-��栝q�|�,*�p�4�G˯;�Z��I�)�D$7�� |����Kz���\�-��hl��M�/^p�V�J� ���G�-�pm d�xDL!Ɓ��2�ؚ�އrU��Ǒ��� -B��\��'����˝{�>�-T�6�(x���0����1Z���t��}d�[�l[ݐko���w�hDQC�jb���f�"fu�y9�� ����{I��Nj����W��$`C�!�H�uY�;��"��+IQ�)f赂�l���d���T1B8O�k�u�p���Z.�^���O���6�!��҄ܒX�>s�<K�ٹ�}"�8�B���ъn�"L @��h�π�����!VK~���eh��C$JS�w�y�!j$]�<zJm%��X�v������\��Hz��E�Z������c�D��|٪�&(s�!�]��������-���@r��m�$�]Jϗ���h�_�Tտ\L�_J�`�},���y�Y��=L^�o����`P4b��wԏ����cA���D�ԡ�q��<�� |;<C�������ﮩz��-臒(cO��Sʖ����8H��b���<r���p��`endstream +xڝk��6�{E�s���w��0����6��0(�g[�%�����"�8�k� �(���&�p�_�X��:�%��(KE�(X���G!S��d5�y�}��e/r?���v�H���8�7i�ؖz�*�9,WQx�O�M��h��;���x�\7�X����ы��h��|U.Gs)X����� +�̏6�bl�8I�`E/�����/�5P�Y���b�~($�I��*Pʮl��5I�\�I��e�>�`�%~�n@��O�زy��M��S{\�T��V-C����Ԫ��� +�5�J�MIŸV)S5�e�z>�R�(��$���S��]8���Zq$L%�Q��t�U����F���w���]�O�=� ����z����U��J�q�OƑ�1�����`��)Bx퍨�ex�cb�k��9b�"OR��Y��fŨ�?��"������ {�w7kM�RI�}�7�� ���-kR�I80��,���$`C52���B�}��l���` ��@t%�J��C�.S�={��#��B��\��Ƨ���1�R�R6�ս��8tL��c���� n�co=[X�' ���$�:E�+�5I(m��$J��~�?��և><���3 +t�P+:��GH���r��uLM�{�GwsI��$�>F��i{sq��t,=H� ��eI��-8Xj�B�N�l}�J��s�i�y��w����j(@ & )�8% l8%��{�4T4�������ͪ�+pQ�gA�-�4#��h�J�Y]�:?~S-�cbƍ$$y��,jw*���o�$?� ���&���M�*���R�4��9*z���+����/��������`�7 -��;���_~q}�N�EN�a���\9���[��/�[�7ޫ��A����O���A�(��(�nJ �ۦ���'���5�:)K�NJw����M2� +�;@�d�-c�;�@�ѐS�Ñ�eQۘ�ܝ܁\?%��PcgK(P?aQesh�*�`�X6&f���mp�aT����X�bw����e ���P����-�G��R�Z��jWwW��f9�R:�o���A���>酷 +�VPT�����{@,,`z,*���˗Mӯ�Ě�`#gu��*�4"lc���T�ʀ+|5s*e��J���!��rPƉ��gArX����'�(�P�9�����Fu��r�;N�Q~��a_<�Qh�W<� 7�������Ĩ�ƽ�v#ϟSK��`�H���&&� `��Z���9av +#�4;&^D O����if���O��!��M�#=ڢ2�� c��zi;�c�|6�bج�$�2σ�T�A�*������EPcG��PlU��C��W�3��ᵁ }�v�ni[���H;ǔUB����o;9'����"\'Z�0����~�N}�����xLh`��t���^)�7��C���F�[e�9� �v�@g�w(Z{�4�×XL]�%����aQ'�)���G`2�:���N%i��k ��#3�����da�p<��?�eY�`�g�Z���N2���-�$m�@�-a�*5���V1�P1n�=�*���8���c�yם�8]��9pG�qqe�$� �� +�ٙA5,�~"����H;j���B<v�m�ȧ�S�DuUv=BHlh�v��W�(#y���.J� ���Ū*fe.��"�W��rĆ�6�(�l�Gn�X&AS-��2�S���ظE@�49",��9~���*D��·c[wPn�P�Υe9��NG������lb��3�ƞ0�0��F�_־+���-���� �A$� +�G��� �nP���N�uA��g2�r�d���%>������̏�:j�g��"8M��g�Y.K��oG�{U��7����h�H.~�J�5�M\��}�W�˧��. 0endstream endobj -2613 0 obj << +2608 0 obj << /Type /Page -/Contents 2614 0 R -/Resources 2612 0 R +/Contents 2609 0 R +/Resources 2607 0 R /MediaBox [0 0 609.714 789.041] /Parent 2556 0 R >> endobj +2610 0 obj << +/D [2608 0 R /XYZ 71.731 729.265 null] +>> endobj +2611 0 obj << +/D [2608 0 R /XYZ 71.731 718.306 null] +>> endobj +2612 0 obj << +/D [2608 0 R /XYZ 136.289 708.344 null] +>> endobj +2613 0 obj << +/D [2608 0 R /XYZ 136.289 696.687 null] +>> endobj +2614 0 obj << +/D [2608 0 R /XYZ 71.731 657.136 null] +>> endobj 2615 0 obj << -/D [2613 0 R /XYZ 71.731 729.265 null] +/D [2608 0 R /XYZ 71.731 585.24 null] >> endobj 2616 0 obj << -/D [2613 0 R /XYZ 71.731 552.229 null] +/D [2608 0 R /XYZ 71.731 575.278 null] >> endobj 2617 0 obj << -/D [2613 0 R /XYZ 389.403 539.278 null] +/D [2608 0 R /XYZ 136.289 565.778 null] >> endobj 2618 0 obj << -/D [2613 0 R /XYZ 410.125 539.278 null] +/D [2608 0 R /XYZ 136.289 554.122 null] >> endobj 2619 0 obj << -/D [2613 0 R /XYZ 430.846 539.278 null] +/D [2608 0 R /XYZ 71.731 514.57 null] >> endobj 2620 0 obj << -/D [2613 0 R /XYZ 494.944 539.278 null] +/D [2608 0 R /XYZ 71.731 489.499 null] >> endobj 2621 0 obj << -/D [2613 0 R /XYZ 71.731 493.285 null] +/D [2608 0 R /XYZ 125.529 480 null] >> endobj 2622 0 obj << -/D [2613 0 R /XYZ 71.731 475.353 null] +/D [2608 0 R /XYZ 125.529 468.344 null] >> endobj 2623 0 obj << -/D [2613 0 R /XYZ 71.731 465.39 null] +/D [2608 0 R /XYZ 125.529 456.687 null] >> endobj 2624 0 obj << -/D [2613 0 R /XYZ 136.289 455.89 null] +/D [2608 0 R /XYZ 125.529 445.031 null] >> endobj 2625 0 obj << -/D [2613 0 R /XYZ 136.289 444.234 null] +/D [2608 0 R /XYZ 125.529 433.375 null] >> endobj 2626 0 obj << -/D [2613 0 R /XYZ 71.731 404.682 null] +/D [2608 0 R /XYZ 125.529 421.719 null] +>> endobj +1369 0 obj << +/D [2608 0 R /XYZ 71.731 390.137 null] +>> endobj +294 0 obj << +/D [2608 0 R /XYZ 197.861 350.765 null] >> endobj 2627 0 obj << -/D [2613 0 R /XYZ 71.731 373.699 null] +/D [2608 0 R /XYZ 71.731 343.412 null] +>> endobj +1370 0 obj << +/D [2608 0 R /XYZ 71.731 302.58 null] +>> endobj +298 0 obj << +/D [2608 0 R /XYZ 284.184 270.267 null] >> endobj 2628 0 obj << -/D [2613 0 R /XYZ 71.731 363.736 null] +/D [2608 0 R /XYZ 71.731 261.629 null] >> endobj 2629 0 obj << -/D [2613 0 R /XYZ 136.289 352.179 null] +/D [2608 0 R /XYZ 481.532 251.338 null] >> endobj 2630 0 obj << -/D [2613 0 R /XYZ 136.289 340.523 null] +/D [2608 0 R /XYZ 71.731 218.297 null] >> endobj 2631 0 obj << -/D [2613 0 R /XYZ 71.731 300.971 null] +/D [2608 0 R /XYZ 71.731 181.499 null] >> endobj 2632 0 obj << -/D [2613 0 R /XYZ 71.731 229.076 null] +/D [2608 0 R /XYZ 71.731 166.556 null] >> endobj 2633 0 obj << -/D [2613 0 R /XYZ 71.731 219.113 null] ->> endobj -2634 0 obj << -/D [2613 0 R /XYZ 136.289 209.614 null] ->> endobj -2635 0 obj << -/D [2613 0 R /XYZ 136.289 197.958 null] ->> endobj -2636 0 obj << -/D [2613 0 R /XYZ 71.731 158.406 null] ->> endobj -2637 0 obj << -/D [2613 0 R /XYZ 71.731 133.335 null] ->> endobj -2638 0 obj << -/D [2613 0 R /XYZ 125.529 123.836 null] ->> endobj -2639 0 obj << -/D [2613 0 R /XYZ 125.529 112.179 null] +/D [2608 0 R /XYZ 76.712 115.049 null] >> endobj -2640 0 obj << -/D [2613 0 R /XYZ 125.529 100.523 null] ->> endobj -2612 0 obj << -/Font << /F33 1210 0 R /F35 1437 0 R /F27 1112 0 R /F57 2335 0 R >> +2607 0 obj << +/Font << /F33 1210 0 R /F35 1437 0 R /F57 2317 0 R /F27 1112 0 R /F23 1105 0 R /F32 1119 0 R /F44 1884 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2643 0 obj << -/Length 2156 +2636 0 obj << +/Length 1805 /Filter /FlateDecode >> stream -xڝێܶ�}��=/�;Z��um��'��$�ES[��ƶ\˓���)Rϥy(��Po�H�t��/��Pd~�BDi�U�M�=��7!S��d��y�ps�RJ�E*�����(2/��ȓ�{��ەä��:J?���7SٶM�H���ǿ��-W�?�x��ì4��(r�Y�ͅaI�5i���Q"��� 2��e �Z�A�f������(4���w�!s��P� ٪��&��G�^����O��߿-G~�������p�9 EB�E�Ege��߇���G?���i��}D�#�V���J���؟v�A(���h��JՆ�5mn����eɼ��c��Q��0������eU5eK�'�|Z��?�U���� �oٔV۸Xh�vj����*�ga�{8���A�Gy -�m�*J�'Z�(���zK��D���!�V��O���)qI?���4�-#�[��O+���p�Y�-?���\�UUʰR{%�@�S��W��$��W;�5N������M�hH8���-!zO���}[lc!.�G�c��_&�j5@�t -oq���&�2q.�:�~7_�,�� -=eo��,��Z��ws��� $5��u�=D�U�v��c0(�����R��\�Z8���<��8�ܬ���O�K��A���PK)��L3/S5�n���� -ɴQ,|�%��;�t\��u7(D`ID_�i��| g���w22/����*0n�q���8�:�� ���6�"bۈ���H�u�ؔ��W2;h 2FN��e�����P>�p;F��WK2�qڨ[��e�Z�%����R��VY�3������Y-٩Q���P&��XN��h��'��j~�1��1�?Pt�]�:�%��u�uG0��[�)���G`v�:��Vǚ�4z�5D��t�2�fTդ��)�F>��n&�`��_v�?3 �ep3�ڶB����R����+���k��{;�∸E���0R�^r_�|��t74�����ęJ�o�2����+ ��ج ��4�M��d�3�yi�f�]J�#.�@o���$�e���@bG ���Hb~�'uO���̔��P8W3c��2J]�De!t �❯�@<1��8�u�:�Z�P�Y�j�+��Чjl�"��l�K��T�=��}NC�� -�h��I��V�u=���[���-�,������A�]KX�~I�S�p���"հ"rEv�{�f�ud6ᛁ��yP�NU菏$#�n�f�G�������}Y�I��iGW���Z�w�a(E���Z�"Rl���������������$���Y���_HoT������fI�.�E��� ^���v�@���0�s��L� 2�=C"����)[��ٸ�h"`X `~!{dn9^� �p��]�����hkv=.0.�DSH#�( -�OM�UOT���Y�����hc�P^̾�l��s�r]D�Ny�*_\��s�$)�] Ʀ@��>�!�@�= �P�!�}B�n����r�9�� ���ן�N˴%�"�a�c�ߙS��kiǖ�l%��W��A���i~��v�m���"��L�� -��Pc ��-B�_F7��d)�k��}�-����z��0�\d�ܛ���/���CfBC斦2za*ە��49���|�F�:]�!�qԜ̌�Ɔܵ�EB����q���<�Ҟy�����ѬD������CDhG���e�$��U�h>��\����t�fa7������r�)�5�6l�2��䋉��U�xG�6���Z��=�]�?�=/�P�en]W2M�� T;�J��8���Z�ȶ#Z����C�~����ek�`���zh����dq��K�-jH�������:Eby� Bλm�!�7�s����V�;��6-�$~y��<�_����6C^��#x5���/&0��2�D���\&�ڝ1�� -c�y /��iRBbKn�.m���i������N�{���+�7�@�X⌀;2�4�SC�����W���Qo`8d^���7)�5�� �<�� �E�����t����dLϡ�)xjk����</g��.�KiՃ��?~9=�\|8M�g�br�O_C/U�v��endstream +xڭ˒�6�_�����ER��Ҧm�䐤���t�d�����%�nܯ/@P~n�i�������$h��ǃ��\�G�LdiPw7q���_n��<Kt����f�Lʠde&��e����y�K��Twͻ��u���E"�C�����cն�_�t��K�m5�p���绽�T�,��s%"aI\�L9��q��C4���?��� r'p.��ge)���͛����� � +&yM��|""�%K�$%�s�w��O�L2���9�id%8 +��z;K�2=:�0�$x3s"^�g,�X&��a%2_�w��<��p��RS�n�-!�!�a\+C$��|�Ե��z��8f" �mz\ۑ��q,Pkh=���vt�E|7 v�UG+U��^���8 �`�B�1��,�����f��*�� &qeA��Y���t��[�4j�N萅��{���C[�z���%�� �;��)ױkie9�A�媟��v���U�Z��D^�h��a��5�^=!��}�?�ē2J$$Rp��_��3&������Ԏ�$�C��9iQ�,��,e#c�����<*b�E��<���2 w�ke���(�@M �����P74�� y*KĊ�B����H���8r����<l(d��ܔZ�E+�x�#&rʑi���7��4E���\�L8K��^S?�\U.Ճ��t�|A~M�Ix�o*��J�!cyXC�keo���@c� �{�:��$Y�n��ѣ�z]�+E�t5lm�ft�S㸿hFP=�Ճ1�7Bڡ������H������rN���9�ٝk���8����rf@)Ʋ�O����5�^���=��w�Dl�~����V/�ů��S��0��sXtd���v�M��'�f��u�6�3@C�꯴g����PD�C��,�h�Q@�x2���I�r�;�˳_ +�1�5���LJWن �i��j ��!�Lev�` +���Y���ȿ�8�֊X]�^�բ�{���4����Qy�^�D�6h��L-E�ӗ���=d�j�o�FA��>5;�-�BR��<�����Df�P�%I�۵�Or_p��((��㴄�Jx�y�V�=��v� C."��,= ʭ��FE0�v���������ذԫG�C�&�s�Ѫ[�G���P��xP��瘝@WA�}C|ڎ2��2��e_7"8-�����[ߍ`4�c~�f#/�EU��4� @j���U�s%Q��"���=��� .�Н������/���nio ]��VժQ�^��Z�{=p�g'Q �d"�54��DΏ\C��Z��Ք���4$В +8���N����2�H��2)��ﲔ�_��fz��G/|�!��n �#�!Xq���"u�.����<L� �ӫ�H���ꉂmi��Q)8���x�8�'v� �⍀�r��t�,�\m���P�g��C�m��M�;&\���'w�rۺF�e�0���E����{���w)$W�]���k��u0��B�<�[}�g�**�<�A~���*M��f08�����#�S�K.�7��>�l7�m�'v | +��^�o0� ����|'L���{�����̎��� �E��Ւ�5�pF�?��dk?.�F9����):��h��-=���#�G�=#�_�atS�/��/����a@��1s=я��9���O�;=� ��r�G����; ��aۏ��`\^B�X��;�|�[��ް[�]�\P����'�<�߁.��3A�3/��������{��{��& ���qY\�m ���i)9č��=���^t�3��Q��endstream endobj -2642 0 obj << +2635 0 obj << /Type /Page -/Contents 2643 0 R -/Resources 2641 0 R +/Contents 2636 0 R +/Resources 2634 0 R /MediaBox [0 0 609.714 789.041] /Parent 2556 0 R -/Annots [ 2657 0 R ] +/Annots [ 2640 0 R ] >> endobj -2657 0 obj << +2640 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [288.837 216.479 341.583 225.39] +/Rect [288.837 566.386 341.583 575.298] /Subtype /Link /A << /S /GoTo /D (install-perlmodules-nonroot) >> >> endobj +2637 0 obj << +/D [2635 0 R /XYZ 71.731 729.265 null] +>> endobj +2638 0 obj << +/D [2635 0 R /XYZ 118.555 684.724 null] +>> endobj +1371 0 obj << +/D [2635 0 R /XYZ 71.731 621.171 null] +>> endobj +302 0 obj << +/D [2635 0 R /XYZ 166.615 588.668 null] +>> endobj +2639 0 obj << +/D [2635 0 R /XYZ 71.731 578.303 null] +>> endobj +2641 0 obj << +/D [2635 0 R /XYZ 71.731 548.454 null] +>> endobj +2642 0 obj << +/D [2635 0 R /XYZ 71.731 538.491 null] +>> endobj +2643 0 obj << +/D [2635 0 R /XYZ 105.494 482.765 null] +>> endobj 2644 0 obj << -/D [2642 0 R /XYZ 71.731 729.265 null] +/D [2635 0 R /XYZ 71.731 462.675 null] >> endobj 2645 0 obj << -/D [2642 0 R /XYZ 125.529 708.344 null] +/D [2635 0 R /XYZ 131.133 451.881 null] >> endobj 2646 0 obj << -/D [2642 0 R /XYZ 125.529 696.687 null] +/D [2635 0 R /XYZ 247.791 451.881 null] >> endobj 2647 0 obj << -/D [2642 0 R /XYZ 125.529 685.031 null] ->> endobj -1369 0 obj << -/D [2642 0 R /XYZ 71.731 653.45 null] ->> endobj -294 0 obj << -/D [2642 0 R /XYZ 197.861 614.077 null] +/D [2635 0 R /XYZ 431.073 438.929 null] >> endobj 2648 0 obj << -/D [2642 0 R /XYZ 71.731 606.725 null] ->> endobj -1370 0 obj << -/D [2642 0 R /XYZ 71.731 565.893 null] ->> endobj -298 0 obj << -/D [2642 0 R /XYZ 284.184 533.579 null] +/D [2635 0 R /XYZ 71.731 423.821 null] >> endobj 2649 0 obj << -/D [2642 0 R /XYZ 71.731 524.942 null] +/D [2635 0 R /XYZ 118.555 385.257 null] >> endobj 2650 0 obj << -/D [2642 0 R /XYZ 481.532 514.65 null] +/D [2635 0 R /XYZ 189.395 376.793 null] >> endobj 2651 0 obj << -/D [2642 0 R /XYZ 71.731 481.609 null] ->> endobj -2652 0 obj << -/D [2642 0 R /XYZ 71.731 444.812 null] +/D [2635 0 R /XYZ 194.423 365.136 null] >> endobj -2653 0 obj << -/D [2642 0 R /XYZ 71.731 429.868 null] +2634 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 2654 0 obj << -/D [2642 0 R /XYZ 76.712 378.361 null] +/Length 2385 +/Filter /FlateDecode +>> +stream +xڭM����~��N^`W+Q�%��$-��@���遖h�}��'J�:���EI��sZ,���|�N61�%�"��>���.�ԧO��3��E��E*W�ߘ|��"��t����˧�U�Qq�˫��a�%N#��6/Ϳ�߷�<���I�6����9��z���Ȩ���{H��~���߉qRD*ɑq�(. +�FI�^Kh����cu�=Z��bSE�.6*�rجW��z��m=31 ��/��[�Y`���A�[=X7y�>�A���?2��k�}�r܉��5L���Ǝ�fDg��Le�7ː�(�����7Ϸ������:�����i�����w'A�c�1"�>$��<$���3�T��g��h�V���h"F��!n��Z7u �S��ơ�^g.V����#x�{Y��8�x���σ;V��1���k(R��������dz�ge�"*��hO��#�3�O?���/~��@��n���*y;�s,Y���^�q(�<�J �v�(��?.�r¸+� +C���2�0��c�n�ܒ�8?�g�@41�@vv���N���VV+m�[BD�K\�,l��[.���,���77����б�!D�g�V�#���[S��vS?�O (Z�`}�#�H�i��ڛ{��3H?ɇ�~aw��B�:���%"i��U��A5���D��£oh �N���ﰊz�~5{�~�t�;뱕�/nV��M��o�H�ҡ~D��QIUq���>�;��{�/�T�d��o�.rB�E��~�oJ����� ˲��q�v�y~~}}��E�;=�'��dK���mT�u�� �8O���Ij-g��M�4xS����.-����=^G*S*�(0�{C��1������8*c�;�oVH�������8������dQ��+v��?������#d~��\^� ��(��im �(Q�0,�CX�S���!!�R�P�m�$�xc�q��.�9���ԍw��i�� 5/��iY(Ci����u�@�&[���%EŊ������ԫ�ā3X��'���=�0Rb�hn�L1��z�����ۣ4�Q����zlId���-^�P���N�0��D�]���0B�?2Q������5«���cEaD�����d5a�?$�E:r�F�\��r7��s�kܺ���10�|Z�zQ$��<��%/w ,��䅑87�Y��\Np����.;�N��vn�m,a�X���j�N�;ӊr�y���6�#h�#Z������a����N~E}�Mc(v �������K��r�����K���� ;��tm$���غ�Nʀ�@T�֕���K�dI�i�l�w�+B����Ϧ�\H~��Ċ3җ��{H��bF���|�kR�t�v]��@[I7�$\}�~�T-��36(�}�MM��h@XI�o8��/p���T��AI|������P�K4p���I��Cͷ+�[{M 8��������B ~��8b�יϲ��E�0,aو��B�-��͍<�WI_|�ή��dITU��i���qK3D(��m�=qYȚC���?���|V*�� +��ܻ�� �k�p��v�t&�~�Üs8�q�&}������ �!���paw7��\��*����r��ܢg[�`��(�0���N<:��ͽ ]�lr�Āk��eD����'�RS�[a+� � .�GNkv�S=�����_~b +?��no%w.� +�pD?�ֻ��0�:Xj���\���C%y�2�8�g����hC��a���| K���w�@��Zh&Ќ�w"AB���(�mxl!�m�-��Ѐ<����2@�2�.9{U.����FC~�*�>x����?��x���jt�;l�ڣ��a�ƿ۾X�F��.W[_'�8�N�M�r >7�Ap��9���)�D��:šd�\z`��u t��'/`�.��p���� v�C��k4�X����;�[S��d�t��4p|d���X5��������U�Xq��~��3Ұ�T�٧��)P#^ZY+{�D�4uQB��ں�aW�~�-�)j p A�2��P4�7O� C~&`��p��'^ +J~d�t�b����0��g�%��x9�"�^{n�`lB4�W +�'�}�g$�x\����Wy2^�����������T���.�DO4������N�Ac�=�����z3��?:���0�M@�=�Q�p�kk;C.c��?1aooVЛ�a�5�E��i��Nr�!Hiz5cOd{��dX��P�&�SoOg4v�ר�\��� �'�6�]���k"B+�a�����/^���g�2*���*OB�P7��0w�*�Xm�8ʲ������n�w�?����endstream +endobj +2653 0 obj << +/Type /Page +/Contents 2654 0 R +/Resources 2652 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2556 0 R >> endobj 2655 0 obj << -/D [2642 0 R /XYZ 118.555 334.816 null] +/D [2653 0 R /XYZ 71.731 729.265 null] >> endobj -1371 0 obj << -/D [2642 0 R /XYZ 71.731 271.264 null] +1372 0 obj << +/D [2653 0 R /XYZ 71.731 718.306 null] >> endobj -302 0 obj << -/D [2642 0 R /XYZ 166.615 238.76 null] +306 0 obj << +/D [2653 0 R /XYZ 402.325 703.236 null] +>> endobj +1373 0 obj << +/D [2653 0 R /XYZ 71.731 692.184 null] +>> endobj +310 0 obj << +/D [2653 0 R /XYZ 288.867 651.159 null] >> endobj 2656 0 obj << -/D [2642 0 R /XYZ 71.731 228.395 null] +/D [2653 0 R /XYZ 71.731 638.721 null] +>> endobj +2657 0 obj << +/D [2653 0 R /XYZ 71.731 601.54 null] >> endobj 2658 0 obj << -/D [2642 0 R /XYZ 71.731 198.546 null] +/D [2653 0 R /XYZ 71.731 601.54 null] >> endobj 2659 0 obj << -/D [2642 0 R /XYZ 71.731 188.583 null] +/D [2653 0 R /XYZ 71.731 586.596 null] >> endobj 2660 0 obj << -/D [2642 0 R /XYZ 105.494 132.857 null] +/D [2653 0 R /XYZ 71.731 575.702 null] >> endobj -2641 0 obj << -/Font << /F33 1210 0 R /F57 2335 0 R /F35 1437 0 R /F23 1105 0 R /F27 1112 0 R /F32 1119 0 R /F44 1884 0 R >> -/ProcSet [ /PDF /Text ] +2661 0 obj << +/D [2653 0 R /XYZ 91.656 557.869 null] >> endobj -2663 0 obj << -/Length 1040 -/Filter /FlateDecode ->> -stream -xڝVI��6��W�V ����Z�M��ɡMQ=�9�m3�EW�����;���s��a�3���Eb �K*F*o/e�4�w%�(�_ɼZ-� -�4�)E��$�IS%�ख<Y����8�1˹�)'x�����-ү��7mL�}^}X�Y��JQ��/�u���W��N�њ�����Sx/����x��G�9�lHA9��J�۩n��4�Ѡ���R 1��d�n7�vRx�v*�� �U��#�Q�خ5�6z�������PʍZ�a=��@��h7]���G5��uz�}���(��I��zG�z���рvx�sP���0�9Ԡ�P�I���k�u����i�=�z;����� ��1���.�0�I��������5<��wp;�U��)�9xUFM�{W�gp_.'�������� �)8����v�ɴ�y�� "�")K�S��V�w��3Mz�����Dž.`�D�$�4�9�J6���-Q���4�~��F�;�)�\6��]&K$���5ʈ�uR ��\����r�������հ(L,+I)��� -*y�49b��]WբU�hJ��G��v'a"Y%�2�Mw�z��݄�]���q�F��Ѯ=Ϩ�CΣ�v1�șNA?f��j����N�����z����LȔ /�7Au��K��]��˱�/�Ɨ��Q���<���z���SHO6�7����.��z��t[}]k~nsI���X����$kǵ�{5Y�v�D���'�W�a�/?>*�~�Q�:"�����|��O�0�F(];�O�q�e����٣��XĦ�*"p�wE�?6xvY�|��?ƃ�C��휴�s�N!�u�iO^;�%���"��%C����-D�� �����_ZmT���R4Qa��p�7�}�SP�� ������d�y���%����q.�Y�f�֫>KX�ĖH�����1���Fƥ<��><3t�Ne!���������&����ϯ�`��`�ɂ�������Ԭ��0�<��z�����������rp�endstream -endobj 2662 0 obj << -/Type /Page -/Contents 2663 0 R -/Resources 2661 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2556 0 R +/D [2653 0 R /XYZ 71.731 532.798 null] +>> endobj +2663 0 obj << +/D [2653 0 R /XYZ 71.731 521.904 null] >> endobj 2664 0 obj << -/D [2662 0 R /XYZ 71.731 729.265 null] +/D [2653 0 R /XYZ 91.656 504.071 null] >> endobj 2665 0 obj << -/D [2662 0 R /XYZ 71.731 718.306 null] +/D [2653 0 R /XYZ 71.731 496.933 null] >> endobj 2666 0 obj << -/D [2662 0 R /XYZ 131.133 708.344 null] +/D [2653 0 R /XYZ 263.545 486.138 null] >> endobj 2667 0 obj << -/D [2662 0 R /XYZ 247.791 708.344 null] +/D [2653 0 R /XYZ 500.364 486.138 null] >> endobj 2668 0 obj << -/D [2662 0 R /XYZ 431.073 695.392 null] +/D [2653 0 R /XYZ 101.898 473.187 null] >> endobj 2669 0 obj << -/D [2662 0 R /XYZ 71.731 680.284 null] +/D [2653 0 R /XYZ 71.731 445.291 null] >> endobj 2670 0 obj << -/D [2662 0 R /XYZ 118.555 641.72 null] +/D [2653 0 R /XYZ 71.731 430.183 null] >> endobj 2671 0 obj << -/D [2662 0 R /XYZ 189.395 633.256 null] +/D [2653 0 R /XYZ 91.656 414.407 null] >> endobj 2672 0 obj << -/D [2662 0 R /XYZ 194.423 621.599 null] +/D [2653 0 R /XYZ 71.731 402.288 null] >> endobj -2661 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R >> -/ProcSet [ /PDF /Text ] +2673 0 obj << +/D [2653 0 R /XYZ 71.731 389.336 null] >> endobj -2675 0 obj << -/Length 2352 -/Filter /FlateDecode ->> -stream -xڭ]����~��'��I�dI}�I�"-Pt��H�@K�Ş$�D)[߯�|ђ��<�Ù�|S�lb��l�$*R�QU�����?ě���C"�~�\�`�9O��*�����/>��ҍ��}^m^�W)q�t�yi~�����d�ݳ*�m�罹�����ÉQ�ϧ���%�N�~�;1N�H%92�A�EA<�(�֧��~p�oq�N�'��Sl��ڧ�F%Q�����*�Z��j[_���w��[=�Xa��c����=o���{w�OL���x�G�34�� ��������1���g����1�= tt`0����m���+&*���73i�%�)j�]/(wd1F��]o�.ɷjb<���D;�z -D'1�?�8�Y$�n��灑�C��^�Xዮ�����7�U�^.r>��<Z=�N��G8�Z� ���v��:�Z_}~5�*��ʉ��v��?3����5�%����գQQV%������KE)� �v�J�H�ȩ�U"��B������.�Kb�P,%� ����f������O��"]�0������.G7�j�f%A,2�X� -uaPF> -Q��fQ���A�M��#!�>�������mn]-������<'`h���A�$#=�;ho�s}�A�I���v�^H�FV�d$-��j0>�Flt���^x�e� a�i�Ѓb_�6� ۯ���7�X����Z������qen,����FҔ.�rƈJ�����t��c�YBR��=��f�0��y.�i�)��{�g.,� -���v�������5::ծ�x�!��-��Hl��d���<F�&U�����7��M �2����*S7�v�W8�T��T߯�0��@��1���!��8*c���oVH�������4���߉�,ɢ,.�U��ؽ���6�[OP�e��y @7�)�X� �}�5D�dD=�°�;0ia�OIܳ���Zi�Be�������BRsD�빛ޱsZ�\��y������vJ�pe��gD�Z�SXl�.0�R0[t�[��`#b�;ޔQe�q�����*� ���1�w@m�hN��&��&�d�{�P��n]da#�)Չ�.1�a`�b��I 7�k��`'�;Ɗ��'9���ij�@#qH��t��蹄%j��?�N�(����1pe��p�bH\Q{�_ּ܃�xk�V<�,d��s;A1WH�7D��H�{��8��1����l<~wh/���kŸ�I�<����HV��s ���q�ǥ��濳�BŘv���{�i{�����Z��q�|DX߿_0|�eFn� ��2�fs��{e"���ː��{�c��L�m����I��=�dϻ��f7�04�n������Sˈ�b��OǛ4�8D���O2<^O���t�-8�˿��3S��|v��(���(�I���(z� ���.`���pQ��TPUhFUq���<#��D��|���0��@��7�l&Ќ�����lIR?�f^w����E��C^��|�ˎ�1�Ȳ���U�P;xD�����.�?8�M�VD��l0^������]w�#:���a��ƿ_,�S��˕�{7��!uJ��C��q��FS���=���.�����tJ@�i'C.ބ.�� ���,`�9"-�aE1(��l�}!�'�F3�ʽ;}��`9Kcz�2��>4zl ��9��)V�c� O]\���5T����Ն_h�t<�<6���jt�<2;f�٣��"c!�0��l�kk���__wT����-Vn{��B�Re[�& � �S|ߥ���5��`�'Ƶb�ſ�.��aW�ϨK���8�"�^�$�> )�ʳ��bc��a -������]���`�y��}Y����*h�Y�%z���jT�%����x{h��O -��a�����N�f$�/��D ���,�`ƄM -�`�,*�gE(Eή)�T;q�)� ��Վ���� ��<<�͆)���gtv�s�^f;�n��Y� `Cn����GQ�� zJ������ӣ��jZ��3����@��*�ĞA���q��t��=#� ��QF2Ԉ��ތj�|9��f&ā� ��Pj{�~�A���:R������y3���A�!��<C���C�G_�����D�QB0϶!�����2�w��E�� 6Z(�� c8�;N>hI�=1݁�?�r6�� ����X���6y�BjD�|�-K�џ��>��)��Gv��X}���Π3������8Id��ſ)JЯѫ���k��)�oeT&?Q<��BB�.8�:�檌b��)T�VP�+Ƚ����endstream -endobj 2674 0 obj << -/Type /Page -/Contents 2675 0 R -/Resources 2673 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2704 0 R ->> endobj -2676 0 obj << -/D [2674 0 R /XYZ 71.731 729.265 null] ->> endobj -1372 0 obj << -/D [2674 0 R /XYZ 71.731 718.306 null] ->> endobj -306 0 obj << -/D [2674 0 R /XYZ 402.325 703.236 null] +/D [2653 0 R /XYZ 91.656 373.56 null] >> endobj -1373 0 obj << -/D [2674 0 R /XYZ 71.731 692.184 null] +2675 0 obj << +/D [2653 0 R /XYZ 250.874 360.609 null] >> endobj -310 0 obj << -/D [2674 0 R /XYZ 288.867 651.159 null] +2676 0 obj << +/D [2653 0 R /XYZ 71.731 322.587 null] >> endobj 2677 0 obj << -/D [2674 0 R /XYZ 71.731 638.721 null] +/D [2653 0 R /XYZ 71.731 309.635 null] >> endobj 2678 0 obj << -/D [2674 0 R /XYZ 71.731 601.54 null] +/D [2653 0 R /XYZ 91.656 293.859 null] >> endobj 2679 0 obj << -/D [2674 0 R /XYZ 71.731 601.54 null] +/D [2653 0 R /XYZ 133.648 267.956 null] >> endobj 2680 0 obj << -/D [2674 0 R /XYZ 71.731 586.596 null] +/D [2653 0 R /XYZ 71.731 255.837 null] >> endobj 2681 0 obj << -/D [2674 0 R /XYZ 71.731 575.702 null] +/D [2653 0 R /XYZ 71.731 244.943 null] >> endobj 2682 0 obj << -/D [2674 0 R /XYZ 91.656 557.869 null] +/D [2653 0 R /XYZ 91.656 227.109 null] >> endobj 2683 0 obj << -/D [2674 0 R /XYZ 71.731 532.798 null] +/D [2653 0 R /XYZ 71.731 142.263 null] >> endobj 2684 0 obj << -/D [2674 0 R /XYZ 71.731 521.904 null] +/D [2653 0 R /XYZ 110.407 131.468 null] >> endobj 2685 0 obj << -/D [2674 0 R /XYZ 91.656 504.071 null] +/D [2653 0 R /XYZ 71.731 48.817 null] >> endobj -2686 0 obj << -/D [2674 0 R /XYZ 71.731 496.933 null] ->> endobj -2687 0 obj << -/D [2674 0 R /XYZ 263.545 486.138 null] +2652 0 obj << +/Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F33 1210 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 2688 0 obj << -/D [2674 0 R /XYZ 500.364 486.138 null] +/Length 2396 +/Filter /FlateDecode +>> +stream +xڭٮ���~����������v�&]�Es��h�@K�EDJ����w6Z�v�.� r8g:�D��7E)|�*L�lS�?D����C,;A٭p�~���wi���*O7���>��"�6E��e�l^��ߴj����, +Ґ�����pӟ�����������������,-ªL?ɞǹ�/)��8̳|SDe��������J�FM�Fͳ��!�7` G������/<W�ڪ�n�,x{D�V��Ơ}��\o���#����Z3̜�<�mg�>�~ⅷV�(*�.N�J�a�%k{�j����`�{gPkNpZ���:� ~�����e���i/'��S>�#r_�$��N�iHD�³�m�x0���Z嚷m��=gK��m�281ށ�?m3��Z7d=8�9IR�ɢ����=/��h4��D���nu#�;;���(��T�F��N#P3���Be�N� ԝ��5��6b� +u������ �=�V<x�j��6ςk����k&�1���n�)đ�S+�A9u���o4�AO��������hq-WB�d?�!2�?��E3v2$�j�!��n�m�( ��+��$�;���M�(8:{���c��,�6�C����a0���3���,�r$�����cSpL`��u! ;�0A�1�����<��y6�dhd��~���'�Tv��@��Ѡ�U�z��|��#�I���kC$M��n��>g��$j������nIY�e�> +�I��p�Z��.Ih&I�~!�,�{d�oh�i������R1�4�{� �Wn +k��;�DI2sh�(��cvBݒ� u=���Y�fD�3��e��t>��,�����Bm�6�м +̑�p�/��n�v����Y,�=^ Gll8:��C}�)T�y`�$�[��Ѳ�����Eh8û���f ��"���ca�t��dC��A�|���N�_* q�L�3~Z�5e�d_�%��},���0���]��x�[k:�;`r�ƴ���ȋ�X�M ƚ���G�p���v�b<�P.xI�.N���Z;��8�<@O��i�c����V�:��L��!�S��) +�Y����"��\*������J����%X�>͐�KQ�m�(�f��J���/F�U<��Q�U�9{G懓��CP-{���C��=dR<$�AgG +����H��,�;�,h�\C������bK��*$0�f�;J��/<; �1`��Y���/[�e[�zN3�sT�9dajg5Cy3qz +듹��" +��� t2R >�>�C���~���<`IU��f��q/�~�/���kѸ@���!/�ٮN`1yO�(�<L<! ��/�q#�*��ve��i�PJ�D��8�1P�h]�K��(�d���k=p53pv���b�[�Pes_0t7j�0;�*�@-�a�s B�<3gȚOraZ%a�>S.\�{�= +2��#�@El(3ed�-�j�:�,�՞� L(������U�0���ld�����uz��8��L3z�$��#u<D��i|,����\q�v,�>S,%:P0��Z��G�������cC�O�"p��}髌�ڱ+_b_���_� ���q��`�s���+fm�N��[kG}��|�v���biG��V���?�Φ�E���@>������O���AȢ����-��+aG3�G�(����ٔ�c|�I�q�|.\�{���2#��$A�aJ��+J��=�t9G���I���b�-}W����X�aؤ1@Oo��5Whr��q��U�Z��\3�-:�{�� +;��\�.��D����(��xv��@,by�) +��ڭ)eRg �Ya$� y��N��B�ۡ%�J�L�2LJI�g��>���Cw��$L�J0=_�p��ْe�%�岺*�� �S��鶎�[jP�:��7h�s-�KI]i&_g��D�����U�&UO�|!I�4�|���{����re��M�q˿J\�/}5%Z5���͓����Nc0�z����E��>#~x���s�fe��F�Ŋ�l�0��DM��J�G������[�mؑ����k;��ùԌo�p�%�J�����ߦy��~�u�#��*����2��gF�Q�FP\�<A����8��A䗴Z���eq�P�x���m����(����i�L�"�;i�@��6�|�C��Fަr��������~r�{ز���/d�������/ڢ9g��[$B��]�ԭ@~��J��j�������.��DI4���[U�B-G�9��t�Q+W�"���H��Q��D*�.�+o"+K�����7j�n}ك�tݬ����'&�/�2.>��Ƃr��F�@��x"x��z�7��I��"�Tendstream +endobj +2687 0 obj << +/Type /Page +/Contents 2688 0 R +/Resources 2686 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2711 0 R >> endobj 2689 0 obj << -/D [2674 0 R /XYZ 101.898 473.187 null] +/D [2687 0 R /XYZ 71.731 729.265 null] >> endobj 2690 0 obj << -/D [2674 0 R /XYZ 71.731 445.291 null] +/D [2687 0 R /XYZ 71.731 657.37 null] >> endobj 2691 0 obj << -/D [2674 0 R /XYZ 71.731 430.183 null] +/D [2687 0 R /XYZ 71.731 592.777 null] >> endobj 2692 0 obj << -/D [2674 0 R /XYZ 91.656 414.407 null] +/D [2687 0 R /XYZ 71.731 579.726 null] >> endobj 2693 0 obj << -/D [2674 0 R /XYZ 71.731 402.288 null] +/D [2687 0 R /XYZ 91.656 561.893 null] >> endobj 2694 0 obj << -/D [2674 0 R /XYZ 71.731 389.336 null] +/D [2687 0 R /XYZ 71.731 533.833 null] >> endobj 2695 0 obj << -/D [2674 0 R /XYZ 91.656 373.56 null] +/D [2687 0 R /XYZ 71.731 518.889 null] >> endobj 2696 0 obj << -/D [2674 0 R /XYZ 250.874 360.609 null] +/D [2687 0 R /XYZ 126.726 486.077 null] >> endobj 2697 0 obj << -/D [2674 0 R /XYZ 71.731 322.587 null] +/D [2687 0 R /XYZ 71.731 423.611 null] >> endobj 2698 0 obj << -/D [2674 0 R /XYZ 71.731 311.692 null] +/D [2687 0 R /XYZ 71.731 408.503 null] >> endobj 2699 0 obj << -/D [2674 0 R /XYZ 91.656 293.859 null] +/D [2687 0 R /XYZ 91.656 392.727 null] >> endobj 2700 0 obj << -/D [2674 0 R /XYZ 71.731 209.012 null] +/D [2687 0 R /XYZ 71.731 372.638 null] >> endobj 2701 0 obj << -/D [2674 0 R /XYZ 110.407 198.218 null] +/D [2687 0 R /XYZ 71.731 320.996 null] >> endobj 2702 0 obj << -/D [2674 0 R /XYZ 71.731 152.225 null] +/D [2687 0 R /XYZ 71.731 305.888 null] >> endobj 2703 0 obj << -/D [2674 0 R /XYZ 376.313 141.431 null] +/D [2687 0 R /XYZ 91.656 290.112 null] >> endobj -2673 0 obj << -/Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F33 1210 0 R >> -/ProcSet [ /PDF /Text ] +2704 0 obj << +/D [2687 0 R /XYZ 409.936 277.161 null] +>> endobj +2705 0 obj << +/D [2687 0 R /XYZ 71.731 252.807 null] >> endobj -2707 0 obj << -/Length 2384 -/Filter /FlateDecode ->> -stream -xڭɮ�6��_a�%2�h��[w�2�� ��`�́�h�IT����6��֧�"��b����U��p��~�'��Q����M�:���ބ������˛�������f��e�J��σ�*�#�H��K����Qu��כ( ���ﻪ1��n���O��;��ԵZ���o�_��8��E�Y�� Q~�o�Y�����$!�^���C��:J=UO4 <�g�x@�z�h� �+�{D�xutdZ@�K!���QUze�n�t�jT;H����u��g� &�j] qːA�W�� � -rg�eۄ�� ��Ԁ7�o�ۆGL*��ܩ�~�!����0�:���6��my���d��G|�A; -��u�z$] 0Xǂ�I�-L�Z�G�aw(ȶ�O7醍�{ۯ����ֶ�T�<���p�����vtW�� -rc{��Gej�ބ`mQ��$�_$9�8����86��}�keQ�gYxϼ#?��x�t�=;j�GQ��,�=r��L��5Q8��,#�/ރ��m�~��5���d��D���h�(�'��lI�Hݒ� u=���F���]#' �i�jƣPjv�����;�PZ� G���3{� �Z��iZ�?��t��i(�-^ Gll8�ٿ|�k���G�l"����{�e�#1 �t��.�-멢�� �pf��G�.��l�?�w|�2CW��m�mp$2��\QVJ��M�` e�k+$�8Dk�W�$��z4��ȍ0 9J�jWkt8�"0�xU��fh��Q� -����2쨿a<��3^��I����]=�t@�(2=��T����.��Rujgj3�p�3S��) -�5Y����"��\*t�����J�?�ʠ�k�\}�T_ ��0�ۄPT�:�ȕ6!�+^��k�{]R(Q���C' �����!���;�8y��FqPہ�*l,-Ri[ ��)�3W��A�u�c�%@>*$�u�j� �`�'�Z0�>�l�=j�s������!�CP;�YWf���sky�'�� t2R >y��!pL����XR[�7��0�X ��{��=A\d]À��?������]��br��#PbӍ<! ��/�q#�b�%�(RB7K��P� -��J��N �+^��/�J��v���,5�i��.pYqk�l�g]�/̎��2�xe ��~.ir�4�5��$M �e_*.�=ʅ�|�b�$- _QfJ)�"��xϣ�.Kp�e �N��$���y���L�!-پ�0�b��`6L�a4ㄞ)I�n���T�Y9���iWp.8fk�y�)ܑT� �K�I����ڟ)@� ���ފ�%��y��}���(V��8�^��[�/�SN�8�O���9���b��3��]-ǔGk}��4X;|̝���x��Z �?N��C��+��\��S��8���qn�`�?��tQk�Λv0�~\�6�̦�������K9���#��Ɍ�U��L�)�Om%�9X�'-��q���찮�MW����X4aء1@���ruVho��p"~�U������-wڶ[���:. ���k�����q�Be<��f V�<���_p�/)�Rd *Xa$��y�S��0S�^�g%w�a�G����~�;���o}������b���l�d�q9��^�ݐ�D�Vk?��T��}�r��TJ�RRT���W��!�� �?H`T���"H�a��ڲ�G��P�P,�x� -�.h�'�9��WS�ePU��y�w�Rzi��P��Vs�:�3�qZI0�TVD��]�=�m�-6Rs���qD���SKg�s}�$6lG��k�K�-j�D -j�-\�a%�}V��o�4@a?ꝅ���ġC~�RFp&��ei�ų� -P��c��D6��\t�ca���v��g�`�. �"?��z�ތؙ�"�k�@��4j��q��#gS�S��p~m��������W���U1Pf~$=1�׳�hΙ�p��r;[�_����r������M�rA�D�}�<�Q��)��r4�CL}�Z��Q$�og�ݦ�9���T!��+"Kvu�K�Wj�V�����S�hl���Z]�ӣ� �?-��,�=r���}�W�dn��ug%�R15;r�D -l�хh�KTT���*5P,� ��,���|؇�_y`�ğ�������D#W HP���Y����CL����<F -֬��4@������f�e����GSzڃ/�=�/�j2�LD�Rpfs#)!�x6���OKzř���"��1�|��?o����������.�XZ���rJ�~���A -�`�������Ql� ���[0��u����s�{�{-�"�?�7���_�4*� rDPq��/�ۓ�Ҷ�endstream -endobj 2706 0 obj << -/Type /Page -/Contents 2707 0 R -/Resources 2705 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2704 0 R +/D [2687 0 R /XYZ 71.731 239.138 null] +>> endobj +2707 0 obj << +/D [2687 0 R /XYZ 91.656 223.362 null] >> endobj 2708 0 obj << -/D [2706 0 R /XYZ 71.731 729.265 null] +/D [2687 0 R /XYZ 71.731 198.292 null] >> endobj 2709 0 obj << -/D [2706 0 R /XYZ 71.731 718.306 null] +/D [2687 0 R /XYZ 71.731 187.397 null] >> endobj 2710 0 obj << -/D [2706 0 R /XYZ 71.731 654.545 null] ->> endobj -2711 0 obj << -/D [2706 0 R /XYZ 71.731 641.494 null] ->> endobj -2712 0 obj << -/D [2706 0 R /XYZ 91.656 623.661 null] +/D [2687 0 R /XYZ 91.656 169.564 null] >> endobj -2713 0 obj << -/D [2706 0 R /XYZ 71.731 595.602 null] +2686 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 2714 0 obj << -/D [2706 0 R /XYZ 71.731 580.658 null] +/Length 2294 +/Filter /FlateDecode +>> +stream +xڭ˒۸��PtY*5bH�)9��q�{�S��r�� ���W�ر���(j$���F���OM��/\���j�����x�Uo��v��&����g4������M��i����O��"����j���{4�`��ZŁ�}��ͫ�.z���Q��U��W��Y���7�O�ݱN��FW<Gs%�J��95������{9��ͩ}��&�����֝ʏ�϶^�|��b=cw%�6��8�nD�~�X'�zñ��xC�0��z�vd_�l��#�:5#o����3��'\J�`��V*�ƃ�:�vQ˥�O�_h��>~���ǟ�f����Ή����O ��6mi��`�u��m���5a은,�xG�2��˘��1;ڜ��]���S����=Y�rT)!Yі�f����{�G� �ޚa�����j�Ӝ��̯����"���XyXd]S�$�7�p��ϺbG:BX�����A2ć��1CD��D���D�I�� 63�(�Hw�.�%_�8`ò�� �>ɼ�mU�X+�<�Pʚ���B���Œ�~���X:��KB��-KP%�w���k([�=�����ԹN*��ĿS|T�Wf�Ev4�� +��� +���z)�c3:b�Ӄ\Z�a���^h_���_0�D���Vk�(���p]�ނȗc��˜3�V>�?�[?0�H����t�0(А���.!|� w�Q�O�T�-Y���I�����[¥7��d�m�6��bH�y@�^�S3�Wx�Q�˱@.�kL�_�O +J�����dm��^?���):Fuր�{��� ,��|����������HWM/P�$,EY�M%Q%���ʭ�0�Q�𧫡rB��։<�����K�iZ4^A*�^���`HO/ +h�����W۔E� >�=��?�Y8~�|)zˈ"�F�jxo2"�Ӑ �r�5C쐷�7⇒/����P�J�*+ֻ,�fx��%Y�xU��iI/6��LK�5Ț���(������!��T�kHd�|$���B*�:wů��^RA�~�a�1���t�N�� +� �r���&���#3�Ġ� '��M�S�J����n��Ed�2�"��{��h�1i��sE��!�u�\�}�!�,ܑ�����L/�\* +CI$� +��< O�L��3�V��w}�80�7��XB�����QS2��qIG�;�Yi��\��j\1p�E2תo��<M��q���L��w�����ى�%�͟�ڋ�*�Zo���2�h?��ڏm�t��4hݽv:�~A�ɏjf�����|ZE�k'͘R�P*t�bZi��;��'^EF���������qa�{�N��*S���9���.�+��UL����6ltQ���I����4�{to;�x����8�* )r-�9A�^�0��W?������`���u��ls�����_�7�fh��a�v��.�1��s8�~�h�a~����*S�hH7i��ԋ�Q�VSn{d-�}UJ��(y:�"�DH'hSSL!+���fĎ߹�ܸ�.�l*��ތe�ԅ;Q�R^`wk��<ٍ������ +��lz.�M�EqW6�3�r?�u��$�T���uGB�N!�U4��V�5��m�ِC9��n(�xfV�p��8�2����_8#=����N�.��3f1l��܂ys[g�/|F}&_r<��W.��.�)��5#�� 6���Kg����D)K{(�D�̮�Tv�s�C\$����r�Kd�5���/�nsrz���xסM���=ۙq�l��M�� +}ev�8�f�Ѿ�$��y���i�;1�|Q�Puԩ�X���=t��4UL5�g�7c9�.����S~�8�H/��4������(ې��g�vc�%��^Z�2���� 2��|{ +a(�P��.���_�ef��:{^���<l�Stq+_���S�VZK֊�jN�4�����+��-�)!u5�¥�x�ah~��Ik��k�ܖv�����\$�Yh�ɞح�9�ـu�����oD��hv+2����4=�'L�#�{7��晙�F@������'�l>y*�� ���֍'��R�FZ 0��1�~�@Z{B��p�X��8��<\�_*�8� +��.yq@�����:`\�`n�� '�l���غ�����nu�yn _M��q!�?�A��P��a2h��a�I/稞��4N��#��;cLk� ��8 ���δ[�k]0��Pc����R�^���7a��'�I�����(DŽ2jp�_�7���{0endstream +endobj +2713 0 obj << +/Type /Page +/Contents 2714 0 R +/Resources 2712 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2711 0 R >> endobj 2715 0 obj << -/D [2706 0 R /XYZ 126.726 547.846 null] +/D [2713 0 R /XYZ 71.731 729.265 null] >> endobj 2716 0 obj << -/D [2706 0 R /XYZ 71.731 485.38 null] +/D [2713 0 R /XYZ 71.731 718.306 null] >> endobj 2717 0 obj << -/D [2706 0 R /XYZ 71.731 470.272 null] +/D [2713 0 R /XYZ 71.731 706.187 null] >> endobj 2718 0 obj << -/D [2706 0 R /XYZ 91.656 454.496 null] +/D [2713 0 R /XYZ 91.656 690.411 null] >> endobj 2719 0 obj << -/D [2706 0 R /XYZ 71.731 434.406 null] +/D [2713 0 R /XYZ 71.731 652.762 null] >> endobj 2720 0 obj << -/D [2706 0 R /XYZ 71.731 382.765 null] +/D [2713 0 R /XYZ 71.731 641.494 null] >> endobj 2721 0 obj << -/D [2706 0 R /XYZ 71.731 367.656 null] +/D [2713 0 R /XYZ 91.656 623.661 null] >> endobj 2722 0 obj << -/D [2706 0 R /XYZ 91.656 351.88 null] +/D [2713 0 R /XYZ 71.731 577.669 null] >> endobj 2723 0 obj << -/D [2706 0 R /XYZ 409.936 338.929 null] +/D [2713 0 R /XYZ 71.731 551.766 null] >> endobj 2724 0 obj << -/D [2706 0 R /XYZ 71.731 314.575 null] +/D [2713 0 R /XYZ 71.731 536.822 null] >> endobj 2725 0 obj << -/D [2706 0 R /XYZ 71.731 300.907 null] +/D [2713 0 R /XYZ 71.731 453.201 null] >> endobj 2726 0 obj << -/D [2706 0 R /XYZ 91.656 285.131 null] +/D [2713 0 R /XYZ 71.731 438.092 null] >> endobj 2727 0 obj << -/D [2706 0 R /XYZ 71.731 260.06 null] +/D [2713 0 R /XYZ 91.656 422.316 null] >> endobj 2728 0 obj << -/D [2706 0 R /XYZ 71.731 249.166 null] +/D [2713 0 R /XYZ 233.106 396.413 null] >> endobj 2729 0 obj << -/D [2706 0 R /XYZ 91.656 231.333 null] +/D [2713 0 R /XYZ 71.731 373.4 null] >> endobj 2730 0 obj << -/D [2706 0 R /XYZ 71.731 193.31 null] +/D [2713 0 R /XYZ 71.731 358.391 null] >> endobj 2731 0 obj << -/D [2706 0 R /XYZ 71.731 180.359 null] +/D [2713 0 R /XYZ 91.656 342.615 null] >> endobj -2732 0 obj << -/D [2706 0 R /XYZ 91.656 164.583 null] +1374 0 obj << +/D [2713 0 R /XYZ 71.731 309.574 null] >> endobj -2705 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +314 0 obj << +/D [2713 0 R /XYZ 269.758 266.477 null] >> endobj -2735 0 obj << -/Length 2024 -/Filter /FlateDecode ->> -stream -xڭ˒��_���TjĐ��Gr�]{S�C|��Uv��! ��U�>�E�4{r��F��ot7�.���Mo4|�.V�|Q4��v��.����f4����]�[���~�%I�Iv��V�6W������t��˕ʓH��}_6U[ ����>��4:���k���ӏ�~x�d�z��������_03��:�H��5�m�k��Z��wI���=�*�v϶^/��b��b5cw��.���z��꽯kp�f��,��'��u9��Ե[�<:���F9��[V�7^����d�yQM{�¦0-�u��э����(B�20��#��8��,U��L�H�+&�i��*U�.g;��k�+�Vh(i��~p-#OG���\2�61��{�>2�Hr�ƻ~:!�����q��Ƌ>*�I�f�5�rE�MU��#k�xe_S�#�l�gt�xđ�g4�5���?C�F Ɨc�A/��L_��gF�|���7���F�<36(���[��w�+EX;Q�l�������]�G�1�7䀛T1�µk� ���#|-z�kW���ʵ�$�;��3(��z-�y�0���q:�"q q=;�)�����34T^xu�� -T�\�Q�۟=oV�/O�`Q�ֈR��&!2��\���ѶqB�s��$�5��:��t}@�Ί�B��*�E!(�<\��̫�yr0�%��BYZcYJ�@��b���:ae���;SB�(Uk(e �|����Gj�#L�4j! �o�����eϴ��s����4�ePƕO��u��`��e|&.e�:���)�rU�Z�c�>!w�d'���� ��Y�����6��8�p -E�mr9s��ɔ�#�Yo�� �B1JSQI�� -��r O�\��7�V��Ⱦ\��M�l"_���QS9AbN)O;�[i璜�C�9Cs������"O3|��B33� ����9�����(!k��SI�Yo]��$Ј�:ެ9����\�O���8�Ż3d�]�@��IC���[C@ A=���ڷ��JE���$�˅��#c��@�$��c�^��-l���� H({���Aƞ�S"!��T5��ys)m(��s{�SŽ/�-;]��4 �2D�����۞�C����������,��_Ѕ)�9�g^�ư��� -K,��;�悙E�f���-�7%��0��n�y4x�:��cџ~.p������d�`�]�2J�j�m��lE�ߕ�l0�@��L<Q2(�Z�S�Jl���q��wn.�n3�GӸ������.�� -�%��N��Lf��� ��噗Z2Uc�R9Te8��l>�4M�b[|�]�|�';����v�/��BBw���V�t���a|l���5����7T���u=ܸWF��>����LP����z�'a-p�� �-]Zpoi��Ę�(�����\@�1�0��f�ޖR9~ �,L�T��d��[+�\K)�Թ)!���p��� �/2�f�W��9%=ȿr�mz�'gn��n���e,��W�9����y+ͭB�*���Q��_�C�߉Q�`��z�&�0�3���SO����X����~<U������byx��Բ{~1�p<�6�������]�(���jyK� :�ч��3x -a(�P���'�_�2s�U�=�^�ilP<Ol��誾W���:��RZK֊^�\�[��֡���C ���>Č��ud�G���x�#l! K[[ow�s�^C#��� -�!��������c�,R�z�2�%���W���X�G����"�4s5=�V�]��%�z�<Uݝ -nֻ�@�����C���pG�x�A������P�,<9Va -�=�Ő<�W��� -F��^��>��Ly���m���!P���"AN��s?� -���ɋּt��o&]�-��p��;)�����]���@��.��9�q��cZ�o�x)��Iȧ��~�����7�%� �]�9���t���A/$7��j'*0������此�}��endstream -endobj -2734 0 obj << -/Type /Page -/Contents 2735 0 R -/Resources 2733 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2704 0 R +1375 0 obj << +/D [2713 0 R /XYZ 71.731 266.262 null] >> endobj -2736 0 obj << -/D [2734 0 R /XYZ 71.731 729.265 null] +318 0 obj << +/D [2713 0 R /XYZ 283.793 227.104 null] >> endobj -2737 0 obj << -/D [2734 0 R /XYZ 71.731 718.306 null] +2732 0 obj << +/D [2713 0 R /XYZ 71.731 216.739 null] >> endobj -2738 0 obj << -/D [2734 0 R /XYZ 71.731 708.244 null] +2733 0 obj << +/D [2713 0 R /XYZ 71.731 178.92 null] >> endobj -2739 0 obj << -/D [2734 0 R /XYZ 91.656 690.411 null] +2734 0 obj << +/D [2713 0 R /XYZ 71.731 163.976 null] >> endobj -2740 0 obj << -/D [2734 0 R /XYZ 71.731 644.419 null] +1376 0 obj << +/D [2713 0 R /XYZ 71.731 103.269 null] +>> endobj +2712 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2737 0 obj << +/Length 2825 +/Filter /FlateDecode +>> +stream +xڍْ��}�B5/��$���y�u�8){w+і+��G�$f)R�3�ק/��(� ���n4�B�[���������L�q��߸�=���'kAYOp�o�|�S,2���b�[���7[$����_l�ߝ����r�G�(�W˺��^�{�����_YU��?���qcyGA��4xQ<�3��^��0F�9�D��G�ʇȐ�ίy�/=�ٳT���Hv~�`�EN��1]OeQ�t��:U�LIzB�V�%Xk��ē�d2�(z����(�{�X���x�G�:n�Z�F��.�Y�����(�n�����YhT��+�*Tx��A���<�����쯶=6}�E���|{��)��7r��`��tA��A��P$ j)}?t�V��-���q9U����ʚay��9�tN@]uZHT��⼌#G{��fe�ac�2m���������97ݕ�����@k�$�'��P5��<����ؕʎ]���u��E�A��٫kJ2pKo�{�ap۽e=�a����ɛ�J3��-^����ly��Y��ng� +���$e���3�(q��F���=�N�_��^���2�K�.�1���C�d�ׅū/�3��]!�9��zr�h*��.J}�奛Q�]�`���{�6g�굽���(2� ��t�+�=�J[����I��1�t��t�[S�x>U���e�����e������X���w�1�N�G��������-���G*�RP �fQ�=n������t=���2p1�!���I��T%�Әv��s�^�\/�]!�k���yY1��wȰ!�v�VL��##���l��>f'?j�� 8R}��ٴ�����PV��^�0�a���X�@y7�h��X�p��y3�=��G��8FS�aaU���F�>JL68�C�W�I�*�����J)����q/$*���-ڊAf��kB6�.���E��i4�45"�0����C���R�c^Z�e5�����,��/��oHb�z\���'��X�v@���VJ���d�����.E)�`��K��Z�@�nj�j� +�h��".`D��;��ypNn@�2k��Ԝ�J�c��x ��V�1@&.��u}]�`�Ϋ�a\x�;_���p"��lo����@y~ҹ3�+�5ԫ)��u�)?�&u�-F�D����?[+n�)p�MA�@� �� b�ޖ��-���R�Ў�%��b$�YY#@Y 826<6�<@~m�r+*���\�?�X�%���f���^1���(��:9@�'�� ���QGل�b����WeQ�)�7\wr�D��K��ma6�A�F�Kd���c�3��wk�P������3��qx �8� y��5.<���gœ;B1:2�Q�m�N�!�麃��OpCo�����͋-��+�L���a��.��$�(���<�a�ljA�l����{������\���e�0�o�:=w��|*6�Pd0$W0�͊�M�0�I]tFp�.��S�v;�;�wU���W4����|��~������~`��z��#�Rx��x���;� r܀�X��� �OUd�#W � _Uz��Os�F� +�d�1�o�rG/�y�{�fr̦�yz4=�c�AD�R����u�?�Sm�1'_>�� ��`��3=�M�m����:�U���6��N�*~��7�I8og�;w�,Pq��Y���BΘL� �7�1U��dv���-3�S���)�_铰�@럙L�թ'&�1M/5@���P~f�h�}�%[^�*�� +���W�Q�|t���r�Xb$��HLQF�m��!��vEy��g^�D�g�C�H�+��L8t��c7?���C���9$�����0�0���a��F��"foޏ�;���2��5jfI����8k|����$d)�7��5�o��X�ōb/εg\��τ�H/�̈s�g�5��3{�g���� ��\�]������W��j���!f��5P�Zz���~�������������l5��^:J��E��Xݻ;H���|w#ν����n�����b~��&�?a� e�SCHq��HUh����j�I!�HRA��?s�O���|D�C�+�x��]��j>� �1�c)��^5Zg|�s�f�b����$�39�4�q+tl�R+K�Vc���=5;�1u-����U��r���]�X�6������_���%�*[0S���H�PH��;��z� ���wĹg����Ι�n�W�oYUK�S*��2�s��sU�f3�xQ�O���|b�ᎩQ�[�p���cpeֶ�PH�� ���u�|�W��p��9R�P5�I����G�#�|�"x/ٴ�r����Wi�D���Vj���D����x���y }�AyC µ�4�R��ō��y��/<b@ +�Z�ih���0(E�&���YA䅂"a��cXKM�^OWx���,�;���m�{w����J"で*/�w�K���Զ�2�n��8��:�oB!os��� Ϙ<>�.w�0�5u_փ�?�1%n��5L��9�'���w˿���b7�شSC���kJ��"ZĴ^:i��wŭ�,`���yqktk�f�<�I�`�A��/�~Ŗ7K�W��91�'��uf>~`�i+CǛ V�tXR�@D�|�2Ѳ|���[�c^H��c_`x7+[[έ�50�Z�R�?^��~\*k#��),m| +T�M��.�~��+�>��nL��*�f�Ķ�{I �)<�_�I#�,+D��w}C�����sN�(�endstream +endobj +2736 0 obj << +/Type /Page +/Contents 2737 0 R +/Resources 2735 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2711 0 R +>> endobj +2738 0 obj << +/D [2736 0 R /XYZ 71.731 729.265 null] +>> endobj +322 0 obj << +/D [2736 0 R /XYZ 264.312 707.841 null] +>> endobj +1377 0 obj << +/D [2736 0 R /XYZ 71.731 704.649 null] +>> endobj +326 0 obj << +/D [2736 0 R /XYZ 224.863 673.37 null] +>> endobj +2739 0 obj << +/D [2736 0 R /XYZ 71.731 664.733 null] +>> endobj +2740 0 obj << +/D [2736 0 R /XYZ 71.731 626.381 null] >> endobj 2741 0 obj << -/D [2734 0 R /XYZ 71.731 618.516 null] +/D [2736 0 R /XYZ 71.731 621.4 null] >> endobj 2742 0 obj << -/D [2734 0 R /XYZ 71.731 603.572 null] +/D [2736 0 R /XYZ 89.664 600.643 null] >> endobj 2743 0 obj << -/D [2734 0 R /XYZ 71.731 519.95 null] +/D [2736 0 R /XYZ 71.731 598.486 null] >> endobj 2744 0 obj << -/D [2734 0 R /XYZ 71.731 504.842 null] +/D [2736 0 R /XYZ 89.664 582.71 null] >> endobj 2745 0 obj << -/D [2734 0 R /XYZ 91.656 489.066 null] +/D [2736 0 R /XYZ 71.731 580.553 null] >> endobj 2746 0 obj << -/D [2734 0 R /XYZ 233.106 463.163 null] +/D [2736 0 R /XYZ 71.731 565.609 null] >> endobj 2747 0 obj << -/D [2734 0 R /XYZ 71.731 440.15 null] +/D [2736 0 R /XYZ 244.012 556.11 null] >> endobj 2748 0 obj << -/D [2734 0 R /XYZ 71.731 425.141 null] ->> endobj -2749 0 obj << -/D [2734 0 R /XYZ 91.656 409.365 null] ->> endobj -1374 0 obj << -/D [2734 0 R /XYZ 71.731 376.324 null] +/D [2736 0 R /XYZ 441.891 532.797 null] >> endobj -314 0 obj << -/D [2734 0 R /XYZ 269.758 333.226 null] +1378 0 obj << +/D [2736 0 R /XYZ 71.731 463.657 null] >> endobj -1375 0 obj << -/D [2734 0 R /XYZ 71.731 333.011 null] +330 0 obj << +/D [2736 0 R /XYZ 207.755 428.19 null] >> endobj -318 0 obj << -/D [2734 0 R /XYZ 283.793 293.854 null] +2749 0 obj << +/D [2736 0 R /XYZ 71.731 419.552 null] >> endobj 2750 0 obj << -/D [2734 0 R /XYZ 71.731 283.489 null] +/D [2736 0 R /XYZ 71.731 391.228 null] >> endobj 2751 0 obj << -/D [2734 0 R /XYZ 71.731 245.67 null] +/D [2736 0 R /XYZ 260.836 365.425 null] >> endobj 2752 0 obj << -/D [2734 0 R /XYZ 71.731 230.726 null] +/D [2736 0 R /XYZ 300.296 352.473 null] >> endobj -1376 0 obj << -/D [2734 0 R /XYZ 71.731 170.018 null] +2753 0 obj << +/D [2736 0 R /XYZ 71.731 332.384 null] >> endobj -2733 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R >> -/ProcSet [ /PDF /Text ] +2754 0 obj << +/D [2736 0 R /XYZ 71.731 319.432 null] >> endobj 2755 0 obj << -/Length 2825 -/Filter /FlateDecode ->> -stream -xڍْ��}�B5/��$���y�u�8){w+і+��G�$f)R�3�ק/��(� ���n4�B�[���������L�q��߸�=���'kAYOp�o�|�S,2���b�[���7[$����_l�ߝ����r�G�(�W˺��^�{�����_YU��?���qcyGA��4xQ<�3��^��0F�9�D��G�ʇȐ�ίy�/=�ٳT���Hv~�`�EN��1]OeQ�t��:U�LIzB�V�%Xk��ē�d2�(z����(�{�X���x�G�:n�Z�F��.�Y�����(�n�����YhT��+�*Tx��A���<�����쯶=6}�E���|{��)��7r��`��tA��A��P$ j)}?t�V��-���q9U����ʚay��9�tN@]uZHT��⼌#G{��fe�ac�2m���������97ݕ�����@k�$�'��P5��<����ؕʎ]���u��E�A��٫kJ2pKo�{�ap۽e=�a����ɛ�J3��-^����ly��Y��ng� -���$e���3�(q��F���=�N�_��^���2�K�.�1���C�d�ׅū/�3��]!�9��zr�h*��.J}�奛Q�]�`���{�6g�굽���(2� ��t�+�=�J[����I��1�t��t�[S�x>U���e�����e������X���w�1�N�G��������-���G*�RP �fQ�=n������t=���2p1�!���I��T%�Әv��s�^�\/�]!�k���yY1��wȰ!�v�VL��##���l��>f'?j�� 8R}��ٴ�����PV��^�0�a���X�@y7�h��X�p��y3�=��G��8FS�aaU���F�>JL68�C�W�I�*�����J)����q/$*���-ڊAf��kB6�.���E��i4�45"�0����C���R�c^Z�e5�����,��/��oHb�z\���'��X�v@���VJ���d�����.E)�`��K��Z�@�nj�j� -�h��".`D��;��ypNn@�2k��Ԝ�J�c��x ��V�1@&.��u}]�`�Ϋ�a\x�;_���p"��lo����@y~ҹ3�+�5ԫ)��u�)?�&u�-F�D����?[+n�)p�MA�@� �� b�ޖ��-���R�Ў�%��b$�YY#@Y 826<6�<@~m�r+*���\�?�X�%���f���^1���(��:9@�'�� ���QGل�b����WeQ�)�7\wr�D��K��ma6�A�F�Kd���c�3��wk�P������3��qx �8� y��5.<���gœ;B1:2�Q�m�N�!�麃��OpCo�����͋-��+�L���a��.��$�(���<�a�ljA�l����{������\���e�0�o�:=w��|*6�Pd0$W0�͊�M�0�I]tFp�.��S�v;�;�wU���W4����|��~������~`��z��#�Rx��x���;� r܀�X��� �OUd�#W � _Uz��Os�F� -�d�1�o�rG/�y�{�fr̦�yz4=�c�AD�R����u�?�Sm�1'_>�� ��`��3=�M�m����:�U���6��N�*~��7�I8og�;w�,Pq��Y���BΘL� �7�1U��dv���-3�S���)�_铰�@럙L�թ'&�1M/5@���P~f�h�}�%[^�*�� -���W�Q�|t���r�Xb$��HLQF�m��!��vEy��g^�D�g�C�H�+��L8t��c7?���C���9$�����0�0���a��F��"foޏ�;���2��5jfI����8k|����$d)�7��5�o��X�ōb/εg\��τ�H/�̈s�g�5��3{�g���� ��\�]������W��j���!f��5P�Zz���~�������������l5��^:J��E��Xݻ;H���|w#ν����n�����b~��&�?a� e�SCHq��HUh����j�I!�HRA��?s�O���|D�C�+�x��]��j>� �1�c)��^5Zg|�s�f�b����$�39�4�q+tl�R+K�Vc���=5;�1u-����U��r���]�X�6������_���%�*[0S���H�PH��;��z� ���wĹg����Ι�n�W�oYUK�S*��2�s��sU�f3�xQ�O���|b�ᎩQ�[�p���cpeֶ�PH�� ���u�|�W��p��9R�P5�I����G�#�|�"x/ٴ�r����Wi�D���Vj���D����x���y }�AyC µ�4�R��ō��y��/<b@ -�Z�ih���0(E�&���YA䅂"a��cXKM�^OWx���,�;���m�{w����J"で*/�w�K���Զ�2�n��8��:�oB!os��� Ϙ<>�.w�0�5u_փ�?�1%n��5L��9�'���w˿���b7�شSC���kJ��"ZĴ^:i��wŭ�,`���yqktk�f�<�I�`�A��/�~Ŗ7K�W��91�'��uf>~`�i+CǛ V�tXR�@D�|�2Ѳ|���[�c^H��c_`x7+[[έ�50�Z�R�?^��~\*k#��),m| -T�M��.�~��+�>��nL��*�f�Ķ�{I �)<�_�I#�,+D��w}C�������sN�(�endstream -endobj -2754 0 obj << -/Type /Page -/Contents 2755 0 R -/Resources 2753 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2704 0 R +/D [2736 0 R /XYZ 71.731 314.451 null] >> endobj 2756 0 obj << -/D [2754 0 R /XYZ 71.731 729.265 null] ->> endobj -322 0 obj << -/D [2754 0 R /XYZ 264.312 707.841 null] ->> endobj -1377 0 obj << -/D [2754 0 R /XYZ 71.731 704.649 null] ->> endobj -326 0 obj << -/D [2754 0 R /XYZ 224.863 673.37 null] +/D [2736 0 R /XYZ 81.694 293.694 null] >> endobj 2757 0 obj << -/D [2754 0 R /XYZ 71.731 664.733 null] +/D [2736 0 R /XYZ 81.694 293.694 null] >> endobj 2758 0 obj << -/D [2754 0 R /XYZ 71.731 626.381 null] +/D [2736 0 R /XYZ 71.731 266.008 null] >> endobj 2759 0 obj << -/D [2754 0 R /XYZ 71.731 621.4 null] +/D [2736 0 R /XYZ 81.694 249.858 null] >> endobj 2760 0 obj << -/D [2754 0 R /XYZ 89.664 600.643 null] +/D [2736 0 R /XYZ 81.694 249.858 null] >> endobj 2761 0 obj << -/D [2754 0 R /XYZ 71.731 598.486 null] +/D [2736 0 R /XYZ 71.731 247.701 null] >> endobj 2762 0 obj << -/D [2754 0 R /XYZ 89.664 582.71 null] +/D [2736 0 R /XYZ 81.694 231.926 null] >> endobj 2763 0 obj << -/D [2754 0 R /XYZ 71.731 580.553 null] +/D [2736 0 R /XYZ 81.694 231.926 null] >> endobj 2764 0 obj << -/D [2754 0 R /XYZ 71.731 565.609 null] +/D [2736 0 R /XYZ 71.731 216.817 null] >> endobj 2765 0 obj << -/D [2754 0 R /XYZ 244.012 556.11 null] +/D [2736 0 R /XYZ 81.694 201.041 null] >> endobj 2766 0 obj << -/D [2754 0 R /XYZ 441.891 532.797 null] ->> endobj -1378 0 obj << -/D [2754 0 R /XYZ 71.731 463.657 null] ->> endobj -330 0 obj << -/D [2754 0 R /XYZ 207.755 428.19 null] +/D [2736 0 R /XYZ 81.694 201.041 null] >> endobj 2767 0 obj << -/D [2754 0 R /XYZ 71.731 419.552 null] +/D [2736 0 R /XYZ 71.731 168 null] >> endobj 2768 0 obj << -/D [2754 0 R /XYZ 71.731 391.228 null] +/D [2736 0 R /XYZ 362.548 131.303 null] >> endobj 2769 0 obj << -/D [2754 0 R /XYZ 260.836 365.425 null] +/D [2736 0 R /XYZ 71.731 129.146 null] >> endobj -2770 0 obj << -/D [2754 0 R /XYZ 300.296 352.473 null] +2735 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R /F48 1896 0 R /F32 1119 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +2772 0 obj << +/Length 2955 +/Filter /FlateDecode +>> +stream +xڥZ[��6~?���ʀ��~ ���d��f�'�C�����$W����~g8C��dh��C9�ͅ�q6�s�#">n"�0Xl�{���=8̱a��������w��HDz���·m��"�\��)��z{HO��W7�-O��uV�e��=/�Dzӭk�g~<��ߞ~zx|�e^$�ػ�<�3Y��-bX_��slG��ώ���j}�V�B�߿J���"�`jdy��rK��P϶�F� 5χ���L�۪+[�8�+hQ����M���G�e�b��XM�'Z�=y�c��������疛"�y�>m%��WN`�+���۶�ԝ��[�z,���hp�@E,6���� +"��'%+�YО��:�C�3Vjl�?6H�e�N��" +]�x�BKSc@ء��fir��̙�M��ڼ*"U;�����6���s\O��a;Q�������EP� ������w\���I�-j��=���~&{��=��ѭ9h���Sl�j6!Zf����JU���E��"�b���+�X��V�n��҇o(B��X�ߵ� �DH�l�V[?e��SV�jh��c���8��/��wlᇨ�s��}6�#b;�!V�vnź v�븃��E���d́�����"_��f���i�D�hc���I�a_�����S��d}Xp?&��;�Y��pNh�G�p"��q� ̱ˡ��m-��3�T��5k�D�b/��T���/�,���Wnȳ-��p*i�� �_��?TwC�g��Л�N2�yaR�8Pۊ(�� +�bo|G$��6I��ܢ��7�2j����Ԩ8Gղ�p=��W\Pﮮ +�D��I��D ���Ʒ�6�\�s܃�T�}�]���!�ն*�ض[S�A4�]g��#Gu�����1#2}�F��� Y +j�C%+�&;B�0�f��@Y�)LAc� �ْ��ڮ4����4u��z�;��H��� �ּiK��}��'��x �.P��<#�з�t���Y��pІ���lt�W��A*�18a�]l�U���́���������B�� ��z�EF64g=��ȉy62 *cDc�8a�Am�]h�>:�VK�����L%��LB��0Ǿ���y�f�����vE�8��5�\�sܳ�T�}{]���!]fy�{��FPh�l��Te�P[�̡6�)��dIh=S� 9N�k�)�A_�y148`+�J��a �Gh@�l��an괖�( ��|_J&�iz�Z���VA_��� �H!�Q�b��Cs��4����A�W��֓��4}f1��* +I�!�Z+����7t���5x��Vs�쌰���>XS:B4q���b���d=��gSL�^�'jL�/%2�[�b���i������ʺm��|h�1,o�33�Y�QMJQe��e4�*�?ޓ�?�K7L�Њ.29��}�A�}���9���!?�t���|���'o�~��`nfS�իh�BC��+s�$�ߔ���g�E״�}9M��l"-��vP��21k��1���tZ��9�wr�P�b��5,+���F"Jn����2�=�� +����<�KO]f�+U"d�%AlfI���@��l�����w�"�(LglVuFw1(�G8F���\]�|c�'.���+�adK���<�"�Pz����;5a=�n��=;�^��,;To����R����4N�JdQ�x/����G� +�6�˾���4��� �s�$O�B(�F�ȉ�|��q +o�CZ�/��B��G��q$�ry���ɷoh �+�9�x܌��w)|��L��q��﹪.q�U]�+oh�����7}t���r����r��_�+��9���TP�����~�l4G-ŷ��/�*@W=�T���Z9 +�+�u�1�<CD��)���:����oS�铫U��)u��7x@=�NaM��r��B1���e���S��������iY4�Hi��Q������ʲ���vt;�<�����?v����oHo�2�zJku�^������nt����)ͨ�0N�C���5SCb���j=5���=��N +<��v���'5Pl��t;Q ��bf�� � �w��Wf�5C3�=CO��7��9C�8���qW�g�@�y� {S��J��aa$���_ʳ;��y�mNr��vE��1�8 9�i�|4 ;��/r����u �����g�I�N:���8f/���V��2��K#X�F���ʓ�����jM6��p"�:�z-!�l"[8!-��3���5N�j���������3A�J�$�4(�����T�q��7�j��\����k +V�^�/A�x��K%���BMQ�X5ʼnR6��trĉdߪ�[�S �)[�3=n��;f4i�.fO'���d@�c �<�w��o:���ZO���x�`�=�H����C����<W��z�b.��Nվ�2>@���q��b�uO>�'���g��*��\�̲�Op]��Ã�Lm��PV�j���l�Ewl����U�oռ�,�}D���F)�Nz{אD>�b��s��r=�%�P���G�>/�-@H��-��ʳ=��������.��ṡ!����|��Tw�iJf��h0�f�@������Q��F��t��kq��7Z���f����A(�5<]Ha3�>s�p��5�H4�3J0�赩�~��F?k�{�������&1�zp$%�k�*���[(;��KE��Ӈ������~��|�a�j������g�C��� �4w�N���%+��$V'"��y�6=�$^���uM_P�D��?�r���7���D��ȣ�wDK�y��*�L�'8*k��HB����rM!́ks�id*�JnOz����x��'�c^~����m����u�,�s�Һg�$������IT��^���*;xendstream +endobj 2771 0 obj << -/D [2754 0 R /XYZ 71.731 332.384 null] +/Type /Page +/Contents 2772 0 R +/Resources 2770 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2711 0 R +/Annots [ 2808 0 R ] >> endobj -2772 0 obj << -/D [2754 0 R /XYZ 71.731 319.432 null] +2808 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [71.731 228.31 111.126 237.222] +/Subtype /Link +/A << /S /GoTo /D (gloss-product) >> >> endobj 2773 0 obj << -/D [2754 0 R /XYZ 71.731 314.451 null] +/D [2771 0 R /XYZ 71.731 729.265 null] >> endobj 2774 0 obj << -/D [2754 0 R /XYZ 81.694 293.694 null] +/D [2771 0 R /XYZ 71.731 741.22 null] >> endobj 2775 0 obj << -/D [2754 0 R /XYZ 81.694 293.694 null] +/D [2771 0 R /XYZ 71.731 718.306 null] >> endobj 2776 0 obj << -/D [2754 0 R /XYZ 71.731 266.008 null] +/D [2771 0 R /XYZ 210.667 696.687 null] >> endobj 2777 0 obj << -/D [2754 0 R /XYZ 81.694 249.858 null] +/D [2771 0 R /XYZ 76.712 680.05 null] >> endobj 2778 0 obj << -/D [2754 0 R /XYZ 81.694 249.858 null] +/D [2771 0 R /XYZ 128.518 636.504 null] >> endobj 2779 0 obj << -/D [2754 0 R /XYZ 71.731 247.701 null] +/D [2771 0 R /XYZ 76.712 600.145 null] >> endobj 2780 0 obj << -/D [2754 0 R /XYZ 81.694 231.926 null] +/D [2771 0 R /XYZ 81.694 582.212 null] >> endobj 2781 0 obj << -/D [2754 0 R /XYZ 81.694 231.926 null] +/D [2771 0 R /XYZ 81.694 582.212 null] >> endobj 2782 0 obj << -/D [2754 0 R /XYZ 71.731 216.817 null] +/D [2771 0 R /XYZ 71.731 567.104 null] >> endobj 2783 0 obj << -/D [2754 0 R /XYZ 81.694 201.041 null] +/D [2771 0 R /XYZ 81.694 551.328 null] >> endobj 2784 0 obj << -/D [2754 0 R /XYZ 81.694 201.041 null] +/D [2771 0 R /XYZ 81.694 551.328 null] >> endobj 2785 0 obj << -/D [2754 0 R /XYZ 71.731 168 null] +/D [2771 0 R /XYZ 71.731 536.219 null] >> endobj 2786 0 obj << -/D [2754 0 R /XYZ 362.548 131.303 null] +/D [2771 0 R /XYZ 81.694 520.444 null] >> endobj 2787 0 obj << -/D [2754 0 R /XYZ 71.731 129.146 null] +/D [2771 0 R /XYZ 81.694 520.444 null] >> endobj -2753 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R /F48 1896 0 R /F32 1119 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +2788 0 obj << +/D [2771 0 R /XYZ 71.731 518.287 null] >> endobj -2790 0 obj << -/Length 2955 -/Filter /FlateDecode ->> -stream -xڥZ[��6~?���ʀ��~ ���d��f�'�C�����$W����~g8C��dh��C9�ͅ�q6�s�#">n"�0Xl�{���=8̱a��������w��HDz���·m��"�\��)��z{HO��W7�-O��uV�e��=/�Dzӭk�g~<��ߞ~zx|�e^$�ػ�<�3Y��-bX_��slG��ώ���j}�V�B�߿J���"�`jdy��rK��P϶�F� 5χ���L�۪+[�8�+hQ����M���G�e�b��XM�'Z�=y�c��������疛"�y�>m%��WN`�+���۶�ԝ��[�z,���hp�@E,6���� -"��'%+�YО��:�C�3Vjl�?6H�e�N��" -]�x�BKSc@ء��fir��̙�M��ڼ*"U;�����6���s\O��a;Q�������EP� ������w\���I�-j��=���~&{��=��ѭ9h���Sl�j6!Zf����JU���E��"�b���+�X��V�n��҇o(B��X�ߵ� �DH�l�V[?e��SV�jh��c���8��/��wlᇨ�s��}6�#b;�!V�vnź v�븃��E���d́�����"_��f���i�D�hc���I�a_�����S��d}Xp?&��;�Y��pNh�G�p"��q� ̱ˡ��m-��3�T��5k�D�b/��T���/�,���Wnȳ-��p*i�� �_��?TwC�g��Л�N2�yaR�8Pۊ(�� -�bo|G$��6I��ܢ��7�2j����Ԩ8Gղ�p=��W\Pﮮ -�D��I��D ���Ʒ�6�\�s܃�T�}�]���!�ն*�ض[S�A4�]g��#Gu�����1#2}�F��� Y -j�C%+�&;B�0�f��@Y�)LAc� �ْ��ڮ4����4u��z�;��H��� �ּiK��}��'��x �.P��<#�з�t���Y��pІ���lt�W��A*�18a�]l�U���́���������B�� ��z�EF64g=��ȉy62 *cDc�8a�Am�]h�>:�VK�����L%��LB��0Ǿ���y�f�����vE�8��5�\�sܳ�T�}{]���!]fy�{��FPh�l��Te�P[�̡6�)��dIh=S� 9N�k�)�A_�y148`+�J��a �Gh@�l��an괖�( ��|_J&�iz�Z���VA_��� �H!�Q�b��Cs��4����A�W��֓��4}f1��* -I�!�Z+����7t���5x��Vs�쌰���>XS:B4q���b���d=��gSL�^�'jL�/%2�[�b���i������ʺm��|h�1,o�33�Y�QMJQe��e4�*�?ޓ�?�K7L�Њ.29��}�A�}���9���!?�t���|���'o�~��`nfS�իh�BC��+s�$�ߔ���g�E״�}9M��l"-��vP��21k��1���tZ��9�wr�P�b��5,+���F"Jn����2�=�� -����<�KO]f�+U"d�%AlfI���@��l�����w�"�(LglVuFw1(�G8F���\]�|c�'.���+�adK���<�"�Pz����;5a=�n��=;�^��,;To����R����4N�JdQ�x/����G� -�6�˾���4��� �s�$O�B(�F�ȉ�|��q -o�CZ�/��B��G��q$�ry���ɷoh �+�9�x܌��w)|��L��q��﹪.q�U]�+oh�����7}t���r����r��_�+��9���TP�����~�l4G-ŷ��/�*@W=�T���Z9 -�+�u�1�<CD��)���:����oS�铫U��)u��7x@=�NaM��r��B1���e���S��������iY4�Hi��Q������ʲ���vt;�<�����?v����oHo�2�zJku�^������nt����)ͨ�0N�C���5SCb���j=5���=��N -<��v���'5Pl��t;Q ��bf�� � �w��Wf�5C3�=CO��7��9C�8���qW�g�@�y� {S��J��aa$���_ʳ;��y�mNr��vE��1�8 9�i�|4 ;��/r����u �����g�I�N:���8f/���V��2��K#X�F���ʓ�����jM6��p"�:�z-!�l"[8!-��3���5N�j���������3A�J�$�4(�����T�q��7�j��\����k -V�^�/A�x��K%���BMQ�X5ʼnR6��trĉdߪ�[�S �)[�3=n��;f4i�.fO'���d@�c �<�w��o:���ZO���x�`�=�H����C����<W��z�b.��Nվ�2>@���q��b�uO>�'���g��*��\�̲�Op]��Ã�Lm��PV�j���l�Ewl����U�oռ�,�}D���F)�Nz{אD>�b��s��r=�%�P���G�>/�-@H��-��ʳ=��������.��ṡ!����|��Tw�iJf��h0�f�@������Q��F��t��kq��7Z���f����A(�5<]Ha3�>s�p��5�H4�3J0�赩�~��F?k�{�������&1�zp$%�k�*���[(;��KE��Ӈ������~��|�a�j������g�C��� �4w�N���%+��$V'"��y�6=�$^���uM_P�D��?�r���7���D��ȣ�wDK�y��*�L�'8*k��HB����rM!́ks�id*�JnOz����x��'�c^~����m����u�,�s�Һg�$������IT��]���U;yendstream -endobj 2789 0 obj << -/Type /Page -/Contents 2790 0 R -/Resources 2788 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2704 0 R -/Annots [ 2826 0 R ] +/D [2771 0 R /XYZ 81.694 502.511 null] >> endobj -2826 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [71.731 228.31 111.126 237.222] -/Subtype /Link -/A << /S /GoTo /D (gloss-product) >> +2790 0 obj << +/D [2771 0 R /XYZ 81.694 502.511 null] >> endobj 2791 0 obj << -/D [2789 0 R /XYZ 71.731 729.265 null] +/D [2771 0 R /XYZ 71.731 487.403 null] >> endobj 2792 0 obj << -/D [2789 0 R /XYZ 71.731 741.22 null] +/D [2771 0 R /XYZ 81.694 471.627 null] >> endobj 2793 0 obj << -/D [2789 0 R /XYZ 71.731 718.306 null] +/D [2771 0 R /XYZ 81.694 471.627 null] >> endobj 2794 0 obj << -/D [2789 0 R /XYZ 210.667 696.687 null] +/D [2771 0 R /XYZ 71.731 443.567 null] >> endobj 2795 0 obj << -/D [2789 0 R /XYZ 76.712 680.05 null] +/D [2771 0 R /XYZ 81.694 427.791 null] >> endobj 2796 0 obj << -/D [2789 0 R /XYZ 128.518 636.504 null] +/D [2771 0 R /XYZ 81.694 427.791 null] >> endobj 2797 0 obj << -/D [2789 0 R /XYZ 76.712 600.145 null] +/D [2771 0 R /XYZ 71.731 399.731 null] >> endobj 2798 0 obj << -/D [2789 0 R /XYZ 81.694 582.212 null] +/D [2771 0 R /XYZ 81.694 383.955 null] >> endobj 2799 0 obj << -/D [2789 0 R /XYZ 81.694 582.212 null] +/D [2771 0 R /XYZ 81.694 383.955 null] >> endobj 2800 0 obj << -/D [2789 0 R /XYZ 71.731 567.104 null] +/D [2771 0 R /XYZ 71.731 368.847 null] >> endobj 2801 0 obj << -/D [2789 0 R /XYZ 81.694 551.328 null] +/D [2771 0 R /XYZ 81.694 353.071 null] >> endobj 2802 0 obj << -/D [2789 0 R /XYZ 81.694 551.328 null] +/D [2771 0 R /XYZ 81.694 353.071 null] >> endobj 2803 0 obj << -/D [2789 0 R /XYZ 71.731 536.219 null] +/D [2771 0 R /XYZ 374.742 353.071 null] >> endobj 2804 0 obj << -/D [2789 0 R /XYZ 81.694 520.444 null] +/D [2771 0 R /XYZ 71.731 350.914 null] >> endobj 2805 0 obj << -/D [2789 0 R /XYZ 81.694 520.444 null] +/D [2771 0 R /XYZ 81.694 335.138 null] >> endobj 2806 0 obj << -/D [2789 0 R /XYZ 71.731 518.287 null] +/D [2771 0 R /XYZ 81.694 335.138 null] >> endobj -2807 0 obj << -/D [2789 0 R /XYZ 81.694 502.511 null] +1379 0 obj << +/D [2771 0 R /XYZ 71.731 295.124 null] >> endobj -2808 0 obj << -/D [2789 0 R /XYZ 81.694 502.511 null] +334 0 obj << +/D [2771 0 R /XYZ 179.498 252.026 null] +>> endobj +2807 0 obj << +/D [2771 0 R /XYZ 71.731 243.203 null] >> endobj 2809 0 obj << -/D [2789 0 R /XYZ 71.731 487.403 null] +/D [2771 0 R /XYZ 71.731 197.426 null] >> endobj 2810 0 obj << -/D [2789 0 R /XYZ 81.694 471.627 null] +/D [2771 0 R /XYZ 71.731 155.648 null] >> endobj 2811 0 obj << -/D [2789 0 R /XYZ 81.694 471.627 null] +/D [2771 0 R /XYZ 71.731 140.639 null] >> endobj 2812 0 obj << -/D [2789 0 R /XYZ 71.731 443.567 null] +/D [2771 0 R /XYZ 71.731 135.658 null] >> endobj 2813 0 obj << -/D [2789 0 R /XYZ 81.694 427.791 null] +/D [2771 0 R /XYZ 89.664 114.9 null] >> endobj 2814 0 obj << -/D [2789 0 R /XYZ 81.694 427.791 null] +/D [2771 0 R /XYZ 71.731 112.744 null] >> endobj 2815 0 obj << -/D [2789 0 R /XYZ 71.731 399.731 null] +/D [2771 0 R /XYZ 89.664 96.968 null] >> endobj 2816 0 obj << -/D [2789 0 R /XYZ 81.694 383.955 null] ->> endobj -2817 0 obj << -/D [2789 0 R /XYZ 81.694 383.955 null] ->> endobj -2818 0 obj << -/D [2789 0 R /XYZ 71.731 368.847 null] +/D [2771 0 R /XYZ 71.731 94.811 null] >> endobj -2819 0 obj << -/D [2789 0 R /XYZ 81.694 353.071 null] +2770 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F48 1896 0 R /F27 1112 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 2820 0 obj << -/D [2789 0 R /XYZ 81.694 353.071 null] +/Length 2307 +/Filter /FlateDecode +>> +stream +xڝْ��}�¥���ڊN[�<�������dǻ�T6�M۬��ұ3��@�:lI����E� ��8io���x�&���8�:Z�w��+y�1ƊQV=���wz�E�$�`�=.B�u6n���G�b{���p�Z�˕�v������\U�W��@��g����T,�����Ӷ�'��Y��(v��_�|�I|o� H�_7v�0l��o�#0�A���Wʼn�^��������-����"識�]}�4�Eƣ�x�t)�C�E�4���9�j_�K���obk�>vK��u}���L��`_�P���X�����XypK` ��?����8��m��e�i�m�+^�D����<��X���[��ݜ*�|���E|WY��oK�O� +]H�"���/j�g���&�E�$��fE[,����$���+����F|������vZ2��k�/K�E��l���֚`}V��Y_yM�\�CE�u�T���D��"M_ t��N�d#]~���/ϟ~yyz$@U�U8C���㭙Yp(����,6RmSM^e͆��e��h�G�HSc^K/E����� hh쎭�(�>Yh��aT�������E�W l�:~�fwQ�Ml?٥�qo��"��='� +b��}[�(Q�U����V�&aAДoǡٓsrh� �=Pn��|Z�1e��Z4L�Dä1x�:�5���g�fB�ci����ձ҇�c�|�l���?J��0��� �wby��M�,��sڜT^M�K�?Өo�D�{_���u@�h�GYA�<�h��j�N3�3�+�A�؟pO��W˜@���֨=V*�kӃ�N�:(d��:0|`����džs�����(tk=bd��Eݔ"��ت`][,��n�کTկ��Ma�:���b/���di�-����_�kԋ��E�'���/��`p�}�MZ3�BK��g�`��n�#��a���uЇ���:���Qߤ\D >>S-�n ���i��)�;�n��Q!��@9Gb��ht�=;I_��\�2�SNL���sA̠ߵWL�B9�Tn(��F���o /},��h2/ݘ@ߔ��h�`Y�ݔr�K���z���z�F9S��P`����3c߳!�є���`R�6��E^��b"�Xh�Oy@2*�ճ�]�m6��Fʭ�5����sbJXF�L��a]���7����ڳ���,�d+|D��z�w��84Ґ5�n_��.�*�,tF8g ���Fg�A��N�Y����������R_)���x�c��7L�C[����U�(�N�`0�fW� &�LU���J�e-�,=IE["_ +�ף����K�T%W�|�~��byR���j��~���?_7 +�M�N�ğmJz8SM�AA����d�כM��+����L�I%m�a=Tݥrp�h;��U[Yd�{���y�E��N�у�nV�-ʤF �O*�����f<$:�����FsƦ�xL�]Q�F��:�kgJY�� Ƭ�:�Iu1�lW<��m���"���uJ��:��t.�Zo����f��!w�5o�u�c1�{��L�f�:j30�+d������J%�F�M�2��(�6��Ta��$8q���sG�.5�npж������ �� �>B8</ ����5��,�HJM������B�T�%��着��I�L_.D-v��c�]��0��"��~["�YPE�F��oa1UlL�1�����}Ï1}ew4�]H#5�`=�k�Mdz�FW��,P����Rc�پ��ĵ��)|>mQL-/j&6rW��ZU������>���6+5Q�[�M�����Y�E8)�TɊ���k_���ΰ���u��t9ŏ51��ܼ[�6�n*��a����T0e��d~���P:�xHT��!C��gi�����6 hM)Џכ�G=�I2�l����gx_�E���3��a3�a�}t5r�80]^l�~`���r[�.&����ռ���i�`5�a���l������+ަ���\`�P�WX���6h$S�^�q<���L]�A�-8Fx�y�s��������zO�&0���ޛN)������dE���|�E#C����O�kN�/*���ƛ��� \Γ0�j|��/������a�^}`pI�79���G�| +��e ��SMh?� +5�_)�LC�A�.��D0��J7G��,p�2i��0n��5p\��!pB%�a��M�m�1Va�e�z�����Ό�Fln��~��67� +���^�r��^��7D_�n9�>��endstream +endobj +2819 0 obj << +/Type /Page +/Contents 2820 0 R +/Resources 2818 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2711 0 R >> endobj 2821 0 obj << -/D [2789 0 R /XYZ 374.742 353.071 null] +/D [2819 0 R /XYZ 71.731 729.265 null] >> endobj 2822 0 obj << -/D [2789 0 R /XYZ 71.731 350.914 null] +/D [2819 0 R /XYZ 89.664 708.344 null] >> endobj -2823 0 obj << -/D [2789 0 R /XYZ 81.694 335.138 null] +1380 0 obj << +/D [2819 0 R /XYZ 71.731 657.37 null] >> endobj -2824 0 obj << -/D [2789 0 R /XYZ 81.694 335.138 null] +338 0 obj << +/D [2819 0 R /XYZ 210.434 614.272 null] >> endobj -1379 0 obj << -/D [2789 0 R /XYZ 71.731 295.124 null] +2823 0 obj << +/D [2819 0 R /XYZ 71.731 602.101 null] >> endobj -334 0 obj << -/D [2789 0 R /XYZ 179.498 252.026 null] +2824 0 obj << +/D [2819 0 R /XYZ 71.731 546.721 null] >> endobj 2825 0 obj << -/D [2789 0 R /XYZ 71.731 243.203 null] +/D [2819 0 R /XYZ 510.307 497.072 null] +>> endobj +2826 0 obj << +/D [2819 0 R /XYZ 71.731 476.982 null] >> endobj 2827 0 obj << -/D [2789 0 R /XYZ 71.731 197.426 null] +/D [2819 0 R /XYZ 71.731 464.031 null] >> endobj 2828 0 obj << -/D [2789 0 R /XYZ 71.731 155.648 null] +/D [2819 0 R /XYZ 71.731 459.05 null] >> endobj 2829 0 obj << -/D [2789 0 R /XYZ 71.731 140.639 null] +/D [2819 0 R /XYZ 89.664 438.292 null] >> endobj 2830 0 obj << -/D [2789 0 R /XYZ 71.731 135.658 null] +/D [2819 0 R /XYZ 71.731 436.136 null] >> endobj 2831 0 obj << -/D [2789 0 R /XYZ 89.664 114.9 null] +/D [2819 0 R /XYZ 89.664 420.36 null] >> endobj 2832 0 obj << -/D [2789 0 R /XYZ 71.731 112.744 null] +/D [2819 0 R /XYZ 71.731 418.203 null] >> endobj 2833 0 obj << -/D [2789 0 R /XYZ 89.664 96.968 null] +/D [2819 0 R /XYZ 89.664 402.427 null] +>> endobj +1381 0 obj << +/D [2819 0 R /XYZ 71.731 369.386 null] +>> endobj +342 0 obj << +/D [2819 0 R /XYZ 176.83 326.288 null] >> endobj 2834 0 obj << -/D [2789 0 R /XYZ 71.731 94.811 null] +/D [2819 0 R /XYZ 71.731 317.466 null] >> endobj -2788 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F48 1896 0 R /F27 1112 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +2835 0 obj << +/D [2819 0 R /XYZ 71.731 284.64 null] +>> endobj +2836 0 obj << +/D [2819 0 R /XYZ 71.731 273.746 null] >> endobj -2838 0 obj << -/Length 2307 -/Filter /FlateDecode ->> -stream -xڝْ��}�¥���ڊN[�<�������dǻ�T6�M۬��ұ3��@�:lI����E� ��8io���x�&���8�:Z�w��+y�1ƊQV=���wz�E�$�`�=.B�u6n���G�b{���p�Z�˕�v������\U�W��@��g����T,�����Ӷ�'��Y��(v��_�|�I|o� H�_7v�0l��o�#0�A���Wʼn�^��������-����"識�]}�4�Eƣ�x�t)�C�E�4���9�j_�K���obk�>vK��u}���L��`_�P���X�����XypK` ��?����8��m��e�i�m�+^�D����<��X���[��ݜ*�|���E|WY��oK�O� +]H�"���/j�g���&�E�$��fE[,����$���+����F|������vZ2��k�/K�E��l���֚`}V��Y_yM�\�CE�u�T���D��"M_ t��N�d#]~���/ϟ~yyz$@U�U8C���㭙Yp(����,6RmSM^e͆��e��h�G�HSc^K/E����� hh쎭�(�>Yh��aT�������E�W l�:~�fwQ�Ml?٥�qo��"��='� -b��}[�(Q�U����V�&aAДoǡٓsrh� �=Pn��|Z�1e��Z4L�Dä1x�:�5���g�fB�ci����ձ҇�c�|�l���?J��0��� �wby��M�,��sڜT^M�K�?Өo�D�{_���u@�h�GYA�<�h��j�N3�3�+�A�؟pO��W˜@���֨=V*�kӃ�N�:(d��:0|`����džs�����(tk=bd��Eݔ"��ت`][,��n�کTկ��Ma�:���b/���di�-����_�kԋ��E�'���/��`p�}�MZ3�BK��g�`��n�#��a���uЇ���:���Qߤ\D >>S-�n ���i��)�;�n��Q!��@9Gb��ht�=;I_��\�2�SNL���sA̠ߵWL�B9�Tn(��F���o /},��h2/ݘ@ߔ��h�`Y�ݔr�K���z���z�F9S��P`����3c߳!�є���`R�6��E^��b"�Xh�Oy@2*�ճ�]�m6��Fʭ�5����sbJXF�L��a]���7����ڳ���,�d+|D��z�w��84Ґ5�n_��.�*�,tF8g ���Fg�A��N�Y����������R_)���x�c��7L�C[����U�(�N�`0�fW� &�LU���J�e-�,=IE["_ -�ף����K�T%W�|�~��byR���j��~���?_7 -�M�N�ğmJz8SM�AA����d�כM��+����L�I%m�a=Tݥrp�h;��U[Yd�{���y�E��N�у�nV�-ʤF �O*�����f<$:�����FsƦ�xL�]Q�F��:�kgJY�� Ƭ�:�Iu1�lW<��m���"���uJ��:��t.�Zo����f��!w�5o�u�c1�{��L�f�:j30�+d������J%�F�M�2��(�6��Ta��$8q���sG�.5�npж������ �� �>B8</ ����5��,�HJM������B�T�%��着��I�L_.D-v��c�]��0��"��~["�YPE�F��oa1UlL�1�����}Ï1}ew4�]H#5�`=�k�Mdz�FW��,P����Rc�پ��ĵ��)|>mQL-/j&6rW��ZU������>���6+5Q�[�M�����Y�E8)�TɊ���k_���ΰ���u��t9ŏ51��ܼ[�6�n*��a����T0e��d~���P:�xHT��!C��gi�����6 hM)Џכ�G=�I2�l����gx_�E���3��a3�a�}t5r�80]^l�~`���r[�.&����ռ���i�`5�a���l������+ަ���\`�P�WX���6h$S�^�q<���L]�A�-8Fx�y�s��������zO�&0���ޛN)������dE���|�E#C����O�kN�/*���ƛ��� \Γ0�j|��/������a�^}`pI�79���G�| -��e ��SMh?� -5�_)�LC�A�.��D0��J7G��,p�2i��0n��5p\��!pB%�a��M�m�1Va�e�z�����Ό�Fln��~��67� -���^�r��^��7D�©_�n9�?�endstream -endobj 2837 0 obj << -/Type /Page -/Contents 2838 0 R -/Resources 2836 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2704 0 R +/D [2819 0 R /XYZ 71.731 268.764 null] +>> endobj +2838 0 obj << +/D [2819 0 R /XYZ 89.664 245.95 null] >> endobj 2839 0 obj << -/D [2837 0 R /XYZ 71.731 729.265 null] +/D [2819 0 R /XYZ 71.731 243.793 null] >> endobj 2840 0 obj << -/D [2837 0 R /XYZ 89.664 708.344 null] ->> endobj -1380 0 obj << -/D [2837 0 R /XYZ 71.731 657.37 null] ->> endobj -338 0 obj << -/D [2837 0 R /XYZ 210.434 614.272 null] +/D [2819 0 R /XYZ 89.664 228.017 null] >> endobj 2841 0 obj << -/D [2837 0 R /XYZ 71.731 602.101 null] +/D [2819 0 R /XYZ 71.731 212.909 null] >> endobj 2842 0 obj << -/D [2837 0 R /XYZ 71.731 546.721 null] +/D [2819 0 R /XYZ 89.664 197.133 null] +>> endobj +1382 0 obj << +/D [2819 0 R /XYZ 71.731 189.995 null] +>> endobj +346 0 obj << +/D [2819 0 R /XYZ 194.2 146.897 null] >> endobj 2843 0 obj << -/D [2837 0 R /XYZ 510.307 497.072 null] +/D [2819 0 R /XYZ 71.731 138.074 null] >> endobj 2844 0 obj << -/D [2837 0 R /XYZ 71.731 476.982 null] ->> endobj -2845 0 obj << -/D [2837 0 R /XYZ 71.731 464.031 null] +/D [2819 0 R /XYZ 71.731 110.23 null] >> endobj -2846 0 obj << -/D [2837 0 R /XYZ 71.731 459.05 null] +2818 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 2847 0 obj << -/D [2837 0 R /XYZ 89.664 438.292 null] +/Length 2311 +/Filter /FlateDecode +>> +stream +xڅYK��6�ϯp�ɮ��zX���&��l展��vr�%�ֶ,j%:��$@=,K��j� � ��݅�"rY���K�����Ya�\��˦�������/���bwXl�EN��|�Ł��e�]�p��j���g�����2o���G$}Y���yQ���~��ku~Ē؟]�����1�/��K\�"rb�o�fy�H%>j��o@i9����Dk���B4J�W*+�˲���m��eqC�*�iLJ�3jd�H�W-�K���p���Du1ӗ��Hg�\�D�x�4B��(�ٮ����z���3�����J�z���n\m���w A�!5Zt/���dh./�~�B�����mh��V1���<�H7�vv�Nk�f��F��i�.f �BMp�2���Y����~�x�NQN�.B<f;��Ȳ��3��|'Fo�e��℅�����o������u��>��k��w�38Ԓ���L�B�$W��Q�)�s\o�|Ϥ��Eo��4�X�s���;2ߧ,{�EN�V{��1 ��Ώ'��ʺ��%!x�,�� ��ǜx�x˔�C/ߟ2�X�S��( +Պ?��~H6�e ��$y�����n#(��K�|��h���q<Qd���r]J襼D&�e���@BL�nd��5��ӹ����z���� ~9�T��U�돕�4�����Jp�� ָ2��`��̀�dY^�{A�_����^��Wy4)�A��'��� ma仞D-pDyIOIՒ�[�U�^ +^#A���Y����;��,s�i[v͖�"�����`_�(��I��R�X��H�ܠ�/�A5�_� bz�V������k���] Y���`DBsO��eE��A���]��b#��~��ğ��g2��E��NF�X��P��}'V�~�ܐ�2Р�����Z����;7��Ѩ� +ۂ��/�16.���h�3ز��c/�����<���uF"��p�A�O�yp�m�p5Af^c�M��:�_����ȸP�n�y~@�1��ޠvp96� + �{.�4��1��M(�pt�j*��2�10���2=֦i��!Er�����n���uqy9"���VmD���8 r0 ~�<�o�o;���MfH���m0S����$�^s;�&��x�'��D���:�R�b�&��tH������\5�8�q�7K�,ub �$Ǟwl�"��$V�i^����TT���X���Zja��k&�*wwI�`��<�|`s=�S�߰}�k)v~<�ܰ*b��ISW7د��/|o%���p6)���xMs��Fb���:S�Ox�w� ��� ��)��I�����S��8�adR�S��k3��W��-��M����Ρ�:ڡ�®nsFX�p�)������"�K�� ?_�B�3f�� �0�C\��#LJ�輦��oS�n"f������Dމp���K��Z���H�����od ��|��M=���@G����&X��%�jM���;)��<V���ԃ���?�L�c�����-���=�t�/��������a�S�P�ݴuJ+S��Y{{��Sji���u� +|.r{1m��#M�"�$`l�&��K�D��#��e`�~o�c��n�ߦn�P���V3=��jƲ�ވ�zZ���k �����;������/�u�10�*����g=�B�����-:T���?�p��>�p�|����B}{3��՞hU[� +�F|Q�G.�mc�>��,Dk�bLm�mN�:��^>&ac��� �����&3!�5������r ք9|sŰ���Q����#�@w�x^��`-��V��Omn���JQ�i*��uw��z�M�ߦ��f��.x^^�$�:���#��7���،�;���{��(�6s��C��ē�sb���Ϥ�e��䁮疛�}'v`9���^�g/�aA�&�,��t/���,tAcB�}�SL� �_��Bc���a��V-�� ��Uw�����D�4èw����̀#^ 7�w�7T0i���o^*y'��1CǖK�=��4A�����Y��TQek�Z�Z}m�9��16�ʜ����w�u�-��5E���@ށߤ�`�'ED�g�K�E�:������2��N,�>�i2�e.���Zg�!ި�~=I$�KK�MS��ڢZw��.���zL�_�&E�Bd4]��=�aQo���:ev��� +x�=C�g����N��Y�F��$v,�/f�g���N�*8�����endstream +endobj +2846 0 obj << +/Type /Page +/Contents 2847 0 R +/Resources 2845 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2711 0 R >> endobj 2848 0 obj << -/D [2837 0 R /XYZ 71.731 436.136 null] +/D [2846 0 R /XYZ 71.731 729.265 null] >> endobj 2849 0 obj << -/D [2837 0 R /XYZ 89.664 420.36 null] +/D [2846 0 R /XYZ 71.731 741.22 null] >> endobj 2850 0 obj << -/D [2837 0 R /XYZ 71.731 418.203 null] +/D [2846 0 R /XYZ 71.731 718.306 null] >> endobj 2851 0 obj << -/D [2837 0 R /XYZ 89.664 402.427 null] ->> endobj -1381 0 obj << -/D [2837 0 R /XYZ 71.731 369.386 null] ->> endobj -342 0 obj << -/D [2837 0 R /XYZ 176.83 326.288 null] +/D [2846 0 R /XYZ 71.731 668.792 null] >> endobj 2852 0 obj << -/D [2837 0 R /XYZ 71.731 317.466 null] +/D [2846 0 R /XYZ 71.731 654.401 null] >> endobj 2853 0 obj << -/D [2837 0 R /XYZ 71.731 284.64 null] +/D [2846 0 R /XYZ 71.731 649.42 null] >> endobj 2854 0 obj << -/D [2837 0 R /XYZ 71.731 273.746 null] +/D [2846 0 R /XYZ 89.664 627.945 null] >> endobj 2855 0 obj << -/D [2837 0 R /XYZ 71.731 268.764 null] +/D [2846 0 R /XYZ 71.731 625.788 null] >> endobj 2856 0 obj << -/D [2837 0 R /XYZ 89.664 245.95 null] +/D [2846 0 R /XYZ 89.664 610.012 null] >> endobj 2857 0 obj << -/D [2837 0 R /XYZ 71.731 243.793 null] +/D [2846 0 R /XYZ 71.731 607.856 null] >> endobj 2858 0 obj << -/D [2837 0 R /XYZ 89.664 228.017 null] +/D [2846 0 R /XYZ 89.664 592.08 null] >> endobj 2859 0 obj << -/D [2837 0 R /XYZ 71.731 212.909 null] +/D [2846 0 R /XYZ 71.731 553.126 null] >> endobj 2860 0 obj << -/D [2837 0 R /XYZ 89.664 197.133 null] +/D [2846 0 R /XYZ 89.664 535.293 null] >> endobj -1382 0 obj << -/D [2837 0 R /XYZ 71.731 189.995 null] +1383 0 obj << +/D [2846 0 R /XYZ 71.731 515.203 null] >> endobj -346 0 obj << -/D [2837 0 R /XYZ 194.2 146.897 null] +350 0 obj << +/D [2846 0 R /XYZ 150.026 472.106 null] >> endobj 2861 0 obj << -/D [2837 0 R /XYZ 71.731 138.074 null] +/D [2846 0 R /XYZ 71.731 459.668 null] >> endobj 2862 0 obj << -/D [2837 0 R /XYZ 71.731 110.23 null] +/D [2846 0 R /XYZ 366.767 450.546 null] >> endobj -2836 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> -/ProcSet [ /PDF /Text ] +2863 0 obj << +/D [2846 0 R /XYZ 395.819 450.546 null] >> endobj -2865 0 obj << -/Length 2311 -/Filter /FlateDecode ->> -stream -xڅYK��6�ϯp�ɮ��zX���&��l展��vr�%�ֶ,j%:��$@=,K��j� � ��݅�"rY���K�����Ya�\��˦�������/���bwXl�EN��|�Ł��e�]�p��j���g�����2o���G$}Y���yQ���~��ku~Ē؟]�����1�/��K\�"rb�o�fy�H%>j��o@i9����Dk���B4J�W*+�˲���m��eqC�*�iLJ�3jd�H�W-�K���p���Du1ӗ��Hg�\�D�x�4B��(�ٮ����z���3�����J�z���n\m���w A�!5Zt/���dh./�~�B�����mh��V1���<�H7�vv�Nk�f��F��i�.f �BMp�2���Y����~�x�NQN�.B<f;��Ȳ��3��|'Fo�e��℅�����o������u��>��k��w�38Ԓ���L�B�$W��Q�)�s\o�|Ϥ��Eo��4�X�s���;2ߧ,{�EN�V{��1 ��Ώ'��ʺ��%!x�,�� ��ǜx�x˔�C/ߟ2�X�S��( -Պ?��~H6�e ��$y�����n#(��K�|��h���q<Qd���r]J襼D&�e���@BL�nd��5��ӹ����z���� ~9�T��U�돕�4�����Jp�� ָ2��`��̀�dY^�{A�_����^��Wy4)�A��'��� ma仞D-pDyIOIՒ�[�U�^ -^#A���Y����;��,s�i[v͖�"�����`_�(��I��R�X��H�ܠ�/�A5�_� bz�V������k���] Y���`DBsO��eE��A���]��b#��~��ğ��g2��E��NF�X��P��}'V�~�ܐ�2Р�����Z����;7��Ѩ� -ۂ��/�16.���h�3ز��c/�����<���uF"��p�A�O�yp�m�p5Af^c�M��:�_����ȸP�n�y~@�1��ޠvp96� - �{.�4��1��M(�pt�j*��2�10���2=֦i��!Er�����n���uqy9"���VmD���8 r0 ~�<�o�o;���MfH���m0S����$�^s;�&��x�'��D���:�R�b�&��tH������\5�8�q�7K�,ub �$Ǟwl�"��$V�i^����TT���X���Zja��k&�*wwI�`��<�|`s=�S�߰}�k)v~<�ܰ*b��ISW7د��/|o%���p6)���xMs��Fb���:S�Ox�w� ��� ��)��I�����S��8�adR�S��k3��W��-��M����Ρ�:ڡ�®nsFX�p�)������"�K�� ?_�B�3f�� �0�C\��#LJ�輦��oS�n"f������Dމp���K��Z���H�����od ��|��M=���@G����&X��%�jM���;)��<V���ԃ���?�L�c�����-���=�t�/��������a�S�P�ݴuJ+S��Y{{��Sji���u� -|.r{1m��#M�"�$`l�&��K�D��#��e`�~o�c��n�ߦn�P���V3=��jƲ�ވ�zZ���k �����;������/�u�10�*����g=�B�����-:T���?�p��>�p�|����B}{3��՞hU[� -�F|Q�G.�mc�>��,Dk�bLm�mN�:��^>&ac��� �����&3!�5������r ք9|sŰ���Q����#�@w�x^��`-��V��Omn���JQ�i*��uw��z�M�ߦ��f��.x^^�$�:���#��7���،�;���{��(�6s��C��ē�sb���Ϥ�e��䁮疛�}'v`9���^�g/�aA�&�,��t/���,tAcB�}�SL� �_��Bc���a��V-�� ��Uw�����D�4èw����̀#^ 7�w�7T0i���o^*y'��1CǖK�=��4A�����Y��TQek�Z�Z}m�9��16�ʜ����w�u�-��5E���@ށߤ�`�'ED�g�K�E�:������2��N,�>�i2�e.���Zg�!ި�~=I$�KK�MS��ڢZw��.���zL�_�&E�Bd4]��=�aQo���:ev��� -x�=C�g����N��Y�F��$v,�/f�g���~k���endstream -endobj 2864 0 obj << -/Type /Page -/Contents 2865 0 R -/Resources 2863 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2910 0 R +/D [2846 0 R /XYZ 396.191 424.644 null] >> endobj -2866 0 obj << -/D [2864 0 R /XYZ 71.731 729.265 null] +1384 0 obj << +/D [2846 0 R /XYZ 71.731 409.535 null] +>> endobj +354 0 obj << +/D [2846 0 R /XYZ 235.992 372.32 null] +>> endobj +2865 0 obj << +/D [2846 0 R /XYZ 71.731 362.177 null] +>> endobj +2866 0 obj << +/D [2846 0 R /XYZ 260.965 352.195 null] >> endobj 2867 0 obj << -/D [2864 0 R /XYZ 71.731 741.22 null] +/D [2846 0 R /XYZ 154.091 339.244 null] >> endobj 2868 0 obj << -/D [2864 0 R /XYZ 71.731 718.306 null] +/D [2846 0 R /XYZ 71.731 332.106 null] >> endobj 2869 0 obj << -/D [2864 0 R /XYZ 71.731 668.792 null] +/D [2846 0 R /XYZ 220.591 321.311 null] >> endobj 2870 0 obj << -/D [2864 0 R /XYZ 71.731 654.401 null] +/D [2846 0 R /XYZ 71.731 314.173 null] >> endobj 2871 0 obj << -/D [2864 0 R /XYZ 71.731 649.42 null] +/D [2846 0 R /XYZ 89.664 293.416 null] >> endobj 2872 0 obj << -/D [2864 0 R /XYZ 89.664 627.945 null] +/D [2846 0 R /XYZ 299.943 293.416 null] >> endobj 2873 0 obj << -/D [2864 0 R /XYZ 71.731 625.788 null] +/D [2846 0 R /XYZ 71.731 286.278 null] >> endobj 2874 0 obj << -/D [2864 0 R /XYZ 89.664 610.012 null] +/D [2846 0 R /XYZ 164.608 275.483 null] >> endobj 2875 0 obj << -/D [2864 0 R /XYZ 71.731 607.856 null] +/D [2846 0 R /XYZ 287.74 275.483 null] >> endobj 2876 0 obj << -/D [2864 0 R /XYZ 89.664 592.08 null] +/D [2846 0 R /XYZ 258.748 262.531 null] >> endobj 2877 0 obj << -/D [2864 0 R /XYZ 71.731 553.126 null] +/D [2846 0 R /XYZ 276.999 262.531 null] >> endobj 2878 0 obj << -/D [2864 0 R /XYZ 89.664 535.293 null] ->> endobj -1383 0 obj << -/D [2864 0 R /XYZ 71.731 515.203 null] ->> endobj -350 0 obj << -/D [2864 0 R /XYZ 150.026 472.106 null] +/D [2846 0 R /XYZ 311.022 262.531 null] >> endobj 2879 0 obj << -/D [2864 0 R /XYZ 71.731 459.668 null] +/D [2846 0 R /XYZ 76.712 244.599 null] >> endobj 2880 0 obj << -/D [2864 0 R /XYZ 366.767 450.546 null] +/D [2846 0 R /XYZ 89.664 226.666 null] >> endobj 2881 0 obj << -/D [2864 0 R /XYZ 395.819 450.546 null] +/D [2846 0 R /XYZ 208.796 226.666 null] >> endobj 2882 0 obj << -/D [2864 0 R /XYZ 396.191 424.644 null] ->> endobj -1384 0 obj << -/D [2864 0 R /XYZ 71.731 409.535 null] ->> endobj -354 0 obj << -/D [2864 0 R /XYZ 235.992 372.32 null] +/D [2846 0 R /XYZ 71.731 224.509 null] >> endobj 2883 0 obj << -/D [2864 0 R /XYZ 71.731 362.177 null] +/D [2846 0 R /XYZ 89.664 208.733 null] >> endobj 2884 0 obj << -/D [2864 0 R /XYZ 260.965 352.195 null] +/D [2846 0 R /XYZ 178.191 208.733 null] >> endobj 2885 0 obj << -/D [2864 0 R /XYZ 154.091 339.244 null] +/D [2846 0 R /XYZ 284.412 208.733 null] >> endobj 2886 0 obj << -/D [2864 0 R /XYZ 71.731 332.106 null] +/D [2846 0 R /XYZ 71.731 206.576 null] >> endobj 2887 0 obj << -/D [2864 0 R /XYZ 220.591 321.311 null] +/D [2846 0 R /XYZ 89.664 190.8 null] >> endobj 2888 0 obj << -/D [2864 0 R /XYZ 71.731 314.173 null] +/D [2846 0 R /XYZ 89.664 177.849 null] >> endobj 2889 0 obj << -/D [2864 0 R /XYZ 89.664 293.416 null] +/D [2846 0 R /XYZ 202.639 177.849 null] >> endobj 2890 0 obj << -/D [2864 0 R /XYZ 299.943 293.416 null] +/D [2846 0 R /XYZ 71.731 176.41 null] >> endobj 2891 0 obj << -/D [2864 0 R /XYZ 71.731 286.278 null] +/D [2846 0 R /XYZ 89.664 159.916 null] >> endobj -2892 0 obj << -/D [2864 0 R /XYZ 164.608 275.483 null] +1385 0 obj << +/D [2846 0 R /XYZ 71.731 124.051 null] >> endobj -2893 0 obj << -/D [2864 0 R /XYZ 287.74 275.483 null] +2845 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 2894 0 obj << -/D [2864 0 R /XYZ 258.748 262.531 null] +/Length 1860 +/Filter /FlateDecode +>> +stream +xڭXK��6���-�d͈��R/��tڙ��^�h��V#��%g���P��H�Nfg�� ��A�Er��b���J��l�;�ŋ'X��N2NJYVϻ�ݛ�I�(E�'���"�c����:Q���bS�}���`�˕��(4>T���{����ޝ�2z��n��}�������,Y��H>����O%��$�QAϸ2-�~�X�j���akOM߃2��zT��HQfJ��$�:�/Y¯�<�ts2~�z�l��(��pw��ni��KG��2�Q������Re$���d��,[�(��o�-���c0��j@%�����8A!J��*G�.[J�g�x"j�@�8� 5��h��[ #��h�i�pF4������x�g�f_���>�^o|�*�q����5�����7�+�好W�t�Z)%J����nX=��"^_�ꁸ[V�,��foF#����Φ�I�� ������F�1eԼ,�,���\3�����T�W����?��}}˼* +Ưe�I�M�2��2og�횳]��Q_L?��d�$E�q�N��s$.!�@Ϋe�E= +<�?��q��|�?3�q��'��<��yC�Պ�A�S�@5�DKE���w|T��x�sO���F=Wn�hx���;#h������4;�-�䂦�t��ȏ�������.�ꎦu}��0A�N��dz����c[v�iz����!h�/i�˓K�.k�`4���֨�0���`ZH�c�� �<�9����/=�@�:ǺHߜ���5�(L|D;Kr� +�!ɮ8!�2��Z4r{��X��1���Y���!�����9G؛P� �r��i�r}��)#A$����������,*�3�#L�G=E�ࣝo�QFamH����{��S�x�w�~5���k>�e����zP�5�[���8�G�>�r�o��v���\ҙ]��;�P�qkg0�(t>��E�>C�|]g������>gh�Io��_�p����`�Kw��2_Km/L5 a���V0s����!��i�w5 O�����1�&�@��@�� ��ղ�]3_k����p��f����������V�b��:'̃/-'dr{3%.�;��s&ӵ�rZL�"����R +� ���p��d&�u�^������3���]uuk!xaឨpm�Z����<�W�g�f'≄�� <��!I,m��G�7�k�Td2�A�7�^�z�"8W�(��+O���k�EL��g�+�1�Y�s��]Q��e! ז意c��(9�Q���z%,�z]_��_��a���C�p{��1�����52b7�6lWn��>�t,�)�� �&��^:�8��\r�z�8_{t>�y� �(��]�<8�����y���y��V=�o�״���(��) ^�g�����ь��j��9���><h���4���M�h��L��[�*�\�Z���i��¨Q���',��LA�$�RƤ@�z�e�0 �z|�5�� B2�Α�j7<S��^ �aO��}_�� +�����е\+3t�Ȣ��찥/R�vGR� +�lf�hd��^E�-Jp�:�%A�>�>?���G���� +9)-#�Z�"�����ɶ�H=L���.�s�����EvӢ�H{��� ) �z~��}�me�P�bgWj ?��)-�߅�ፎN�l�oS�GS��$�tn ��]��O羡Ϲu��$%H���00�m�*�x[�uG��?��,S����kA�9Ƈ���ql��/Ri����ݵ��_�������/i! +x�}��։���V�1+/�����/��'����Bendstream +endobj +2893 0 obj << +/Type /Page +/Contents 2894 0 R +/Resources 2892 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2932 0 R >> endobj 2895 0 obj << -/D [2864 0 R /XYZ 276.999 262.531 null] +/D [2893 0 R /XYZ 71.731 729.265 null] +>> endobj +358 0 obj << +/D [2893 0 R /XYZ 194.361 708.149 null] +>> endobj +1386 0 obj << +/D [2893 0 R /XYZ 71.731 704.957 null] +>> endobj +362 0 obj << +/D [2893 0 R /XYZ 152.762 673.679 null] >> endobj 2896 0 obj << -/D [2864 0 R /XYZ 311.022 262.531 null] +/D [2893 0 R /XYZ 71.731 667.552 null] >> endobj 2897 0 obj << -/D [2864 0 R /XYZ 76.712 244.599 null] +/D [2893 0 R /XYZ 188.442 654.75 null] >> endobj 2898 0 obj << -/D [2864 0 R /XYZ 89.664 226.666 null] +/D [2893 0 R /XYZ 71.731 636.653 null] >> endobj 2899 0 obj << -/D [2864 0 R /XYZ 208.796 226.666 null] +/D [2893 0 R /XYZ 71.731 636.653 null] >> endobj 2900 0 obj << -/D [2864 0 R /XYZ 71.731 224.509 null] +/D [2893 0 R /XYZ 71.731 625.67 null] >> endobj 2901 0 obj << -/D [2864 0 R /XYZ 89.664 208.733 null] +/D [2893 0 R /XYZ 91.656 607.925 null] >> endobj 2902 0 obj << -/D [2864 0 R /XYZ 178.191 208.733 null] +/D [2893 0 R /XYZ 71.731 585.011 null] >> endobj 2903 0 obj << -/D [2864 0 R /XYZ 284.412 208.733 null] +/D [2893 0 R /XYZ 91.656 567.078 null] >> endobj 2904 0 obj << -/D [2864 0 R /XYZ 71.731 206.576 null] +/D [2893 0 R /XYZ 365.427 567.078 null] >> endobj 2905 0 obj << -/D [2864 0 R /XYZ 89.664 190.8 null] +/D [2893 0 R /XYZ 71.731 554.959 null] >> endobj 2906 0 obj << -/D [2864 0 R /XYZ 89.664 177.849 null] +/D [2893 0 R /XYZ 71.731 554.959 null] >> endobj 2907 0 obj << -/D [2864 0 R /XYZ 202.639 177.849 null] +/D [2893 0 R /XYZ 71.731 544.164 null] >> endobj 2908 0 obj << -/D [2864 0 R /XYZ 71.731 176.41 null] +/D [2893 0 R /XYZ 91.656 526.231 null] >> endobj 2909 0 obj << -/D [2864 0 R /XYZ 89.664 159.916 null] +/D [2893 0 R /XYZ 363.424 526.231 null] >> endobj -1385 0 obj << -/D [2864 0 R /XYZ 71.731 124.051 null] +2910 0 obj << +/D [2893 0 R /XYZ 71.731 503.317 null] >> endobj -2863 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +2911 0 obj << +/D [2893 0 R /XYZ 273.602 490.366 null] >> endobj -2913 0 obj << -/Length 1860 -/Filter /FlateDecode ->> -stream -xڭXK��6���-�d�H��R/��tڙ��^�h��V#��%g������H�Nfg�� ��A'����:�Y Y���.^<��w s��e��ܽy���JTE��<.�8�Z�S)�\.6�o�w{Տ��\�<�RA�C}h�f�z�=��i�DO7m���o~��~���ӵ�����9��d�H2�f*���"�*�_*�B�Z�2zؚ�H���FGO*CRQ�9J��4�:؟��_�E���ݾ�dؖ���t.����w���^-e}Z&y��2���2'�ߐ�4_���`ٲeE6{nA�w���UJ�U8��� -��R.V�82up�*E^�Q���iphh��G�'�j�P�j���a��xb�-[d�#��C�Ǜ}�}�O��81���@Ǚn��V{ �����WD'��^%���JJQ%������b-�u�����euǂZm���[p���u�I�N#������A�1��}Yy43��f�+�U7<룮y��ig������ye!$�_˼����e��e�� ڵ`�~U���af�ɐi.ʂ�p7�TK��/Wi\Aā�W�<�$�xH4�㸧��?3�q��'��<��yC�Պ�A�S�@5�DKe��ov|7x��@���F5Wn�*x��W;-h�����4�4;h�-�䂦�t��ɏ�ٚ����6��z��]�6=0A�M�3dz���7m:v�n����!�/i�˓M�6ke`4����`�n�$H_�|����L,����@)�ֱ��7'��uM�"��?>��r��]qB�Y��Avh*�v�E_Զկ��Y�Q�%����Gr��ס2���>i1���3������nvj�n�9���0Q����v�-��$��k@��G��/�˧�s�~ ���k>�e���=�������7����Q������v3�Kz�kpy�Z�6v��Y#��ȇ����g�!���:Ҽ�1�� �4�~u˜�N�hf�t�AY�!�u���T�����p��3~n��k���x[�,@,L���n�dg -d���^�zP �ufl_k� hf{*���L�|���`�+v`ˠ�����jB&g�7S�b�w�Z8G`:!0[[+g��I !��_)�H��P�/3Z��t�3������:���c[]�Z^X�'*\�Ev���dq3���ىx"�9�~48H��C�(����b�Lc�"y�Π��/��z�28ך(��-O���k�EL��glj�1�Y�u��mQ��e�� � %�tWS���N9�R)�JJX(���N7��%��l94����`�c��� ���k��݈۰]�Q�3��3_�3.�|M>�!& ��Xq�Ӻ��c�fq���|2�P�Q�+xpRw1�;n����ĵ�j��3��$��{N?�xTǥ�/^6xa?���+�Gퟣ�<)r&��}xЄ��i3�|�g��g[�,�\�Z�� -�i��¨P���',��LA�$�R|R�e5Ҳm�q�w��1����s����3�WAz�S��"\k��v��Ķ��#t-� -�]9-�h��;l��̾ݑ�t�&�'��C�s��쩖dH��O�'��Q�成���Z!'�e$Q�X�9��X ����I�څ|n��W�~��oZ�i���$壆]�o�f�� �N���J���8��e��"r�5��ҩ�-܍c���aj���έ1�����5��Γ��d�in[�MY��u�Zw4����0����2���Ȯ^����F��F߆�_��8���/f�k�ýNys�/���_.�R���ܯ��ŏ��\Ú�b�gq��ˣ��Y�zendstream -endobj -2912 0 obj << -/Type /Page -/Contents 2913 0 R -/Resources 2911 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2910 0 R +1387 0 obj << +/D [2893 0 R /XYZ 71.731 460.314 null] >> endobj -2914 0 obj << -/D [2912 0 R /XYZ 71.731 729.265 null] +366 0 obj << +/D [2893 0 R /XYZ 244.6 423.098 null] >> endobj -358 0 obj << -/D [2912 0 R /XYZ 194.361 708.149 null] +2912 0 obj << +/D [2893 0 R /XYZ 71.731 412.733 null] >> endobj -1386 0 obj << -/D [2912 0 R /XYZ 71.731 704.957 null] +2913 0 obj << +/D [2893 0 R /XYZ 419.444 402.974 null] >> endobj -362 0 obj << -/D [2912 0 R /XYZ 152.762 673.679 null] +2914 0 obj << +/D [2893 0 R /XYZ 129.275 390.022 null] >> endobj 2915 0 obj << -/D [2912 0 R /XYZ 71.731 667.552 null] +/D [2893 0 R /XYZ 390.741 390.022 null] >> endobj 2916 0 obj << -/D [2912 0 R /XYZ 188.442 654.75 null] +/D [2893 0 R /XYZ 418.487 390.022 null] >> endobj 2917 0 obj << -/D [2912 0 R /XYZ 71.731 636.653 null] +/D [2893 0 R /XYZ 71.731 382.884 null] >> endobj 2918 0 obj << -/D [2912 0 R /XYZ 71.731 636.653 null] +/D [2893 0 R /XYZ 299.936 359.138 null] >> endobj 2919 0 obj << -/D [2912 0 R /XYZ 71.731 625.67 null] +/D [2893 0 R /XYZ 71.731 339.049 null] >> endobj 2920 0 obj << -/D [2912 0 R /XYZ 91.656 607.925 null] +/D [2893 0 R /XYZ 120.869 328.254 null] >> endobj 2921 0 obj << -/D [2912 0 R /XYZ 71.731 585.011 null] +/D [2893 0 R /XYZ 319.55 315.302 null] >> endobj 2922 0 obj << -/D [2912 0 R /XYZ 91.656 567.078 null] +/D [2893 0 R /XYZ 448.374 315.302 null] +>> endobj +1388 0 obj << +/D [2893 0 R /XYZ 71.731 295.213 null] +>> endobj +370 0 obj << +/D [2893 0 R /XYZ 242.592 257.997 null] >> endobj 2923 0 obj << -/D [2912 0 R /XYZ 365.427 567.078 null] +/D [2893 0 R /XYZ 71.731 247.632 null] +>> endobj +1389 0 obj << +/D [2893 0 R /XYZ 71.731 235.716 null] +>> endobj +374 0 obj << +/D [2893 0 R /XYZ 215 203.402 null] >> endobj 2924 0 obj << -/D [2912 0 R /XYZ 71.731 554.959 null] +/D [2893 0 R /XYZ 71.731 194.765 null] >> endobj 2925 0 obj << -/D [2912 0 R /XYZ 71.731 554.959 null] +/D [2893 0 R /XYZ 71.731 177.335 null] >> endobj 2926 0 obj << -/D [2912 0 R /XYZ 71.731 544.164 null] +/D [2893 0 R /XYZ 361.806 166.54 null] >> endobj 2927 0 obj << -/D [2912 0 R /XYZ 91.656 526.231 null] +/D [2893 0 R /XYZ 490.942 153.589 null] >> endobj 2928 0 obj << -/D [2912 0 R /XYZ 363.424 526.231 null] +/D [2893 0 R /XYZ 71.731 140.637 null] >> endobj 2929 0 obj << -/D [2912 0 R /XYZ 71.731 503.317 null] +/D [2893 0 R /XYZ 71.731 120.548 null] >> endobj 2930 0 obj << -/D [2912 0 R /XYZ 273.602 490.366 null] ->> endobj -1387 0 obj << -/D [2912 0 R /XYZ 71.731 460.314 null] ->> endobj -366 0 obj << -/D [2912 0 R /XYZ 244.6 423.098 null] +/D [2893 0 R /XYZ 315.724 109.753 null] >> endobj 2931 0 obj << -/D [2912 0 R /XYZ 71.731 412.733 null] ->> endobj -2932 0 obj << -/D [2912 0 R /XYZ 419.444 402.974 null] ->> endobj -2933 0 obj << -/D [2912 0 R /XYZ 129.275 390.022 null] +/D [2893 0 R /XYZ 71.731 102.615 null] >> endobj -2934 0 obj << -/D [2912 0 R /XYZ 390.741 390.022 null] +2892 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 2935 0 obj << -/D [2912 0 R /XYZ 418.487 390.022 null] +/Length 2239 +/Filter /FlateDecode +>> +stream +xڍYY��~�_�7Ke �}lR��k��ʓJ���EbDf)��a�����H��̸�@��ht}@�n�s7��b>^��(���7��+?�q�� ,����7�|���T���yx���b'�ľ����<��~(�v�������W�}W����^5'&�w���ߪ��ݿ~z���tv��*M���Dy��9x�J=��R��N�� ������Dz� \�V(IU��{��;�-[^<{%��[���C�q�ok���#S�a��煪���m�<����p{��� �/�y�u��'325�DL��J�|�:8Nv� t����N7�>1�7��SoEd��l�9�?�Q�A {"@a@�����R��`+���k���A��ϝ�u��ı7q��RepP�y̺�ь徎\��CgZ���F�]��XR��=� ���� �/T��� >�8VA�"�g��@.hY�9���*�_8�Z(����;.#�w��wE50Bq)kxe���j��>F��a2vkYb���6��TCyg�`\a����^��x�e�3�z���<?��Β�{�(�+� ���Au)u'�y����.�+���9<Dc3�L�Io�q]P<D7\HȐ��t�ĥ�� +|�<��8�Ã�!��A ���"�d��~���a�ѥy<�/._��(��ǡ\4�N�o)ۏ�.>�7��~T��H�@��kf�T��XŪ�x� (�ȳ@��,���}t��a����E\?](pX-����Suk�0Un��)�F� +�xXq� �)��# '�S��cUW�z�͌_M�$ +�Z�ɞ89g�����E��<W����8���-��J�}uj����-�t��\#TJ�<�n������`���$�?PI�^����P��ekuw�@W�,"&�BN���4���OJ���W#����#�]ߓ��י ��>�/��sk���6�`�x���Ik��2�R���� ���F|Tǣ*�k�~4�[ń5,V�g�� df�_�U�-�5�����Z:�{�!� ������]Ëx#^}�%�u[mm���V��#$����P��1$ ��Y��p�n��Ȩ�Z����.T2��m�Y���ݩ8�ʦҰJ��Q��ς�����g�+g�ζϿ�U^��R^�k9�&*e �{������MMQ����^λ�p!��{��$Q�P�l}5M���5��~�OW��|���:D_�m��xqj�n�P�C�p�Xԥ����S>-���N��٣��� +d!���#%�at��m�{p2�Ub��hOLP�Y1�Gn3`D�An���t���x�.z� �}���E��5oلAreB�f]y���g��}��ȴ�U��_9=�6��F�hI�%�œY�XFGa,����'~9��_�b����T\��@O'jc$���_F�cL=���v��ܦ>��{��+|cg�LÔ]KVW�x�{Sa�i +m�7�|��w�Û?�r�������pZ�P_���d[���ij����I%\C`�l:mw YU+��xY��g�0at�@*3�s�c�_�������u�8�- +���gE�V��D�p3����$XXrn}�~ ��k���}R�'�t���V�X\��G��q|��r�Y��L������~�N��n����G� +C�Z�-u]�M͐(O5>H{ Z�j�4c |��X��$�CJ�����d������`�� �Ѷ����l[�����m;S���GS�� +R�l���K��r�%WykƧO��֟>�]��*K �x~��@���<G��b w��ck�[i���#�@�����ȷ�$2�{<ATW�.xӵ��v�w�����i(X��ЕG/ ����&�%�i?��d����=;g�*���qHj��LY�X��gd,XP��N��FD�tW��R���u�s�W}M��3�UN���ڂ��|Yq�1?4�Ś����Z�WșS֣��m9��\C��m��I0��8�r�;!n�s�.~��v�d�2�������L{(8q� �_�?���߲xLݛg� w@aw�]�m|�n�}n��h�����2��o��һ��1�9�t=��P�/�=9�˚�;�27{�(JBW�́�3L +(��vz���"��`>��o���J����?f���)�d~w�B z�?�G�ҘZ�endstream +endobj +2934 0 obj << +/Type /Page +/Contents 2935 0 R +/Resources 2933 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2932 0 R >> endobj 2936 0 obj << -/D [2912 0 R /XYZ 71.731 382.884 null] +/D [2934 0 R /XYZ 71.731 729.265 null] >> endobj 2937 0 obj << -/D [2912 0 R /XYZ 299.936 359.138 null] +/D [2934 0 R /XYZ 71.731 741.22 null] >> endobj 2938 0 obj << -/D [2912 0 R /XYZ 71.731 339.049 null] +/D [2934 0 R /XYZ 89.664 708.344 null] >> endobj 2939 0 obj << -/D [2912 0 R /XYZ 120.869 328.254 null] +/D [2934 0 R /XYZ 219.624 708.344 null] >> endobj 2940 0 obj << -/D [2912 0 R /XYZ 319.55 315.302 null] +/D [2934 0 R /XYZ 71.731 693.235 null] >> endobj 2941 0 obj << -/D [2912 0 R /XYZ 448.374 315.302 null] ->> endobj -1388 0 obj << -/D [2912 0 R /XYZ 71.731 295.213 null] ->> endobj -370 0 obj << -/D [2912 0 R /XYZ 242.592 257.997 null] +/D [2934 0 R /XYZ 89.664 677.46 null] >> endobj 2942 0 obj << -/D [2912 0 R /XYZ 71.731 247.632 null] +/D [2934 0 R /XYZ 134.39 677.46 null] >> endobj -1389 0 obj << -/D [2912 0 R /XYZ 71.731 235.716 null] +2943 0 obj << +/D [2934 0 R /XYZ 109.868 664.508 null] >> endobj -374 0 obj << -/D [2912 0 R /XYZ 215 203.402 null] +1390 0 obj << +/D [2934 0 R /XYZ 71.731 641.594 null] >> endobj -2943 0 obj << -/D [2912 0 R /XYZ 71.731 194.765 null] +378 0 obj << +/D [2934 0 R /XYZ 172.607 606.127 null] >> endobj 2944 0 obj << -/D [2912 0 R /XYZ 71.731 177.335 null] +/D [2934 0 R /XYZ 71.731 597.49 null] >> endobj 2945 0 obj << -/D [2912 0 R /XYZ 361.806 166.54 null] +/D [2934 0 R /XYZ 389.137 587.198 null] >> endobj 2946 0 obj << -/D [2912 0 R /XYZ 490.942 153.589 null] +/D [2934 0 R /XYZ 472.996 587.198 null] >> endobj 2947 0 obj << -/D [2912 0 R /XYZ 71.731 140.637 null] +/D [2934 0 R /XYZ 71.731 580.06 null] >> endobj 2948 0 obj << -/D [2912 0 R /XYZ 71.731 120.548 null] +/D [2934 0 R /XYZ 106.6 556.314 null] +>> endobj +1391 0 obj << +/D [2934 0 R /XYZ 71.731 539.213 null] +>> endobj +382 0 obj << +/D [2934 0 R /XYZ 249.377 501.997 null] >> endobj 2949 0 obj << -/D [2912 0 R /XYZ 315.724 109.753 null] +/D [2934 0 R /XYZ 71.731 491.632 null] >> endobj 2950 0 obj << -/D [2912 0 R /XYZ 71.731 102.615 null] +/D [2934 0 R /XYZ 133.174 481.873 null] >> endobj -2911 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +2951 0 obj << +/D [2934 0 R /XYZ 311.772 481.873 null] >> endobj -2953 0 obj << -/Length 2239 -/Filter /FlateDecode ->> -stream -xڍYY��~�_�7Ke �}lR��k��ʓJ���EbDf)��a�����H��̸�@��ht}@�n�s7��b>^��(���7��+?�q�� ,����7�|���T���yx���b'�ľ����<��~(�v�������W�}W����^5'&�w���ߪ��ݿ~z���tv��*M���Dy��9x�J=��R��N�� ������Dz� \�V(IU��{��;�-[^<{%��[���C�q�ok���#S�a��煪���m�<����p{��� �/�y�u��'325�DL��J�|�:8Nv� t����N7�>1�7��SoEd��l�9�?�Q�A {"@a@�����R��`+���k���A��ϝ�u��ı7q��RepP�y̺�ь徎\��CgZ���F�]��XR��=� ���� �/T��� >�8VA�"�g��@.hY�9���*�_8�Z(����;.#�w��wE50Bq)kxe���j��>F��a2vkYb���6��TCyg�`\a����^��x�e�3�z���<?��Β�{�(�+� ���Au)u'�y����.�+���9<Dc3�L�Io�q]P<D7\HȐ��t�ĥ�� -|�<��8�Ã�!��A ���"�d��~���a�ѥy<�/._��(��ǡ\4�N�o)ۏ�.>�7��~T��H�@��kf�T��XŪ�x� (�ȳ@��,���}t��a����E\?](pX-����Suk�0Un��)�F� -�xXq� �)��# '�S��cUW�z�͌_M�$ -�Z�ɞ89g�����E��<W����8���-��J�}uj����-�t��\#TJ�<�n������`���$�?PI�^����P��ekuw�@W�,"&�BN���4���OJ���W#����#�]ߓ��י ��>�/��sk���6�`�x���Ik��2�R���� ���F|Tǣ*�k�~4�[ń5,V�g�� df�_�U�-�5�����Z:�{�!� ������]Ëx#^}�%�u[mm���V��#$����P��1$ ��Y��p�n��Ȩ�Z����.T2��m�Y���ݩ8�ʦҰJ��Q��ς�����g�+g�ζϿ�U^��R^�k9�&*e �{������MMQ����^λ�p!��{��$Q�P�l}5M���5��~�OW��|���:D_�m��xqj�n�P�C�p�Xԥ����S>-���N��٣��� -d!���#%�at��m�{p2�Ub��hOLP�Y1�Gn3`D�An���t���x�.z� �}���E��5oلAreB�f]y���g��}��ȴ�U��_9=�6��F�hI�%�œY�XFGa,����'~9��_�b����T\��@O'jc$���_F�cL=���v��ܦ>��{��+|cg�LÔ]KVW�x�{Sa�i -m�7�|��w�Û?�r�������pZ�P_���d[���ij����I%\C`�l:mw YU+��xY��g�0at�@*3�s�c�_�������u�8�- -���gE�V��D�p3����$XXrn}�~ ��k���}R�'�t���V�X\��G��q|��r�Y��L������~�N��n����G� -C�Z�-u]�M͐(O5>H{ Z�j�4c |��X��$�CJ�����d������`�� �Ѷ����l[�����m;S���GS�� -R�l���K��r�%WykƧO��֟>�]��*K �x~��@���<G��b w��ck�[i���#�@�����ȷ�$2�{<ATW�.xӵ��v�w�����i(X��ЕG/ ����&�%�i?��d����=;g�*���qHj��LY�X��gd,XP��N��FD�tW��R���u�s�W}M��3�UN���ڂ��|Yq�1?4�Ś����Z�WșS֣��m9��\C��m��I0��8�r�;!n�s�.~��v�d�2�������L{(8q� �_�?���߲xLݛg� w@aw�]�m|�n�}n��h�����2��o��һ��1�9�t=��P�/�=9�˚�;�27{�(JBW�́�3L -(��vz���"��`>��o���J����?f���)�^��p�B ~�?�G��5Z�endstream -endobj 2952 0 obj << -/Type /Page -/Contents 2953 0 R -/Resources 2951 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2910 0 R +/D [2934 0 R /XYZ 175.111 468.922 null] +>> endobj +2953 0 obj << +/D [2934 0 R /XYZ 71.731 448.832 null] +>> endobj +1392 0 obj << +/D [2934 0 R /XYZ 71.731 435.881 null] +>> endobj +386 0 obj << +/D [2934 0 R /XYZ 201.18 403.567 null] >> endobj 2954 0 obj << -/D [2952 0 R /XYZ 71.731 729.265 null] +/D [2934 0 R /XYZ 71.731 394.929 null] >> endobj 2955 0 obj << -/D [2952 0 R /XYZ 71.731 741.22 null] +/D [2934 0 R /XYZ 165.864 384.638 null] >> endobj 2956 0 obj << -/D [2952 0 R /XYZ 89.664 708.344 null] +/D [2934 0 R /XYZ 71.731 371.587 null] +>> endobj +390 0 obj << +/D [2934 0 R /XYZ 142.614 341.3 null] >> endobj 2957 0 obj << -/D [2952 0 R /XYZ 219.624 708.344 null] +/D [2934 0 R /XYZ 71.731 336.115 null] >> endobj 2958 0 obj << -/D [2952 0 R /XYZ 71.731 693.235 null] +/D [2934 0 R /XYZ 71.731 303.278 null] +>> endobj +394 0 obj << +/D [2934 0 R /XYZ 166.016 272.558 null] >> endobj 2959 0 obj << -/D [2952 0 R /XYZ 89.664 677.46 null] +/D [2934 0 R /XYZ 71.731 265.48 null] >> endobj 2960 0 obj << -/D [2952 0 R /XYZ 134.39 677.46 null] ->> endobj -2961 0 obj << -/D [2952 0 R /XYZ 109.868 664.508 null] +/D [2934 0 R /XYZ 71.731 234.536 null] >> endobj -1390 0 obj << -/D [2952 0 R /XYZ 71.731 641.594 null] +398 0 obj << +/D [2934 0 R /XYZ 156.761 203.816 null] >> endobj -378 0 obj << -/D [2952 0 R /XYZ 172.607 606.127 null] +2961 0 obj << +/D [2934 0 R /XYZ 71.731 196.618 null] >> endobj 2962 0 obj << -/D [2952 0 R /XYZ 71.731 597.49 null] +/D [2934 0 R /XYZ 71.731 172.931 null] >> endobj 2963 0 obj << -/D [2952 0 R /XYZ 389.137 587.198 null] +/D [2934 0 R /XYZ 266.731 172.931 null] >> endobj 2964 0 obj << -/D [2952 0 R /XYZ 472.996 587.198 null] +/D [2934 0 R /XYZ 71.731 147.029 null] >> endobj 2965 0 obj << -/D [2952 0 R /XYZ 71.731 580.06 null] +/D [2934 0 R /XYZ 71.731 139.89 null] >> endobj 2966 0 obj << -/D [2952 0 R /XYZ 106.6 556.314 null] ->> endobj -1391 0 obj << -/D [2952 0 R /XYZ 71.731 539.213 null] ->> endobj -382 0 obj << -/D [2952 0 R /XYZ 249.377 501.997 null] +/D [2934 0 R /XYZ 244.236 116.144 null] >> endobj 2967 0 obj << -/D [2952 0 R /XYZ 71.731 491.632 null] ->> endobj -2968 0 obj << -/D [2952 0 R /XYZ 133.174 481.873 null] +/D [2934 0 R /XYZ 397.391 116.144 null] >> endobj -2969 0 obj << -/D [2952 0 R /XYZ 311.772 481.873 null] +2933 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R /F48 1896 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 2970 0 obj << -/D [2952 0 R /XYZ 175.111 468.922 null] +/Length 2588 +/Filter /FlateDecode +>> +stream +xڥY[oܶ~ϯ�[w�]Ewis��I�=iи888-��� +ѭ�6�ϯ��(Q+;uQ���3���!p�ϻH<' ���?�.��{q#߿��c+,[��������b������p������$�4�/n������t����� +��ɫ�.z��-�.Okou���,����^��eGA�������~~2�g��N���G]�l`-|o����>���^�z�� �!�����953_5U�Ժd����̙�Ҫ�5UYr'3szY�f��hO +iY���� *�y�#J7FB�r�� �g��m��z��O��uV�r��m��ι�М�KX��+X��"����<vWЦ������wj�K[�/o �=�.�����Fcf�`3�+n��3n��vn�)�Xo��n�uZ �۪��{���~�j���4CQ���8ګJ�K�dfY�?lPOȇ�����y״ۜ-#:�N7O�ݷW.0��G��Y�H���_�6|0���8����a'C��ؠ&z�l���0����i����\�(����V@������;�uG��ԕ��ޭG�]�W""��8�7��R1P��2(����%vR�Xl����8��b/vҝ0dm�%,��f�zM)���ۊq�9$���3���tj��j[�L�m#H��D�yƖh��mD�ݱȎL>P�p6����ͻMSg��(da����� +J<?q�N�9� ���O�Nj"��l�{�K+���qY�,��5�>4�( ��Ũ���5�@�hK\�5�nt����\��@F��j!/v4�Q}�� �`b"���~��f���{�D�W<uZN���EctuE� &gi��ȱs�k�AH `��z�F8����b86'a�3u� �ۈ<�ʆ��k�Y�0�^�e ;�W�kX�d����f�,�B��]�R����5qa�I��F�K2�c�@f�Rl��š���ˆ�a��r���sS�p����0�z��d��`�)�r��ȎY�;^�!���#e:�;U��T��]���s)�4�L-<t�Mt^HXy��B�t�şl^d��+���I�y=��^Um�_-�<��$�~��7�)T*�����')4�4M)�p�51�<�4�T�.��Z�>��֒�0]�BK��Ԝz�)���� ��{p��i.�a(�wo�ܗz!,���>W�gJ�]J�vao0�b�'*ea�W'����&2@ȗJ郄Z������u���j�,Lc�Z-�����`U��A,��L�KY����AD�;�v]�7��(e��&������.Nf!����c ��7�d�c�Ɛ�CQ6��cX�����5l2]�Z���[齮)a�\$��jm +.��(m#����I�LڼR��� S%o�����$1�e�UO>6�2��*��lm����_-�fgWT�K���j�!��0��T�i���'q"�s�LNAs���%�B��uH�*,�gSߕ�*�������y��]?R?�R?�4�Q��Pd�dJ�a�������>���j�w�����P�@���t�*ʬĂa��)*�Yy +TZ�^%���ZW��R]�"�h�$�VT�bvQ�9L6�&��)y�f���$�mud*��UJ��}�tLD�S��p)yZ�-�=TKcI����g��.�O1�w��|7.�~%�ƙ�O�s�p*I��0�*�/�E��A�ݸ�:�#O���G#��m%��n���}�J�+�7m�xc&䱲�$N��h-��� +�OS�c��Hy���&VgI����0�<�.Vl�|�<�YӮ��8k�o�/V.yؾ9�^��Ze���{)��{�!��%���^Ym2�q<��/��'q�/F� +ҥ�=������Y�����>�2��� +�'���ݢ>�q��z<���ːQ�a��!W��CQ M�c==C!���ȯUH��GO Ow]1E��,����Q;|����R��u�y3���t����>s�H����To0�VOC�O1��I�pĦ`Ħxv��r��r�ƁA�`��5�qK��9� �� +[�w�n�o��x�d�e�SGp�����)�x���9w��qb#��Z�;�l�Qշf��+�KE��!˓v��s��w�e�#f�1S�ٷs�{3������0�:�ԃ.嚗�x�BWbT�;܉]o_�a����Y�7>�Dr�E�yo.z2(�gCC,�����{�0�_�%>�-ESlbL��֞���5?���A1:#�4O�8��%�>2W� ��鍩Ӹ+Y�3�$�5��4�� V�(�Ә@6'~;M�(�Vr5��_���U������ׂ��N-���A�w|Ƙ��MġWW���臿�&ӱonP#���?2� ���1�|��0�"�W/�-�~C�dJA%��4�nX@-di���I�@�M���<72�"�lr6�}4r�W�N!!�7��#��u�:�d�T��eo�Ð�T!�B�y��u�x��f�E&w���F�y��p<1`��L������(?����z�WޜX�nF~��Ѹ +�X��o�KQ���_endstream +endobj +2969 0 obj << +/Type /Page +/Contents 2970 0 R +/Resources 2968 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2932 0 R >> endobj 2971 0 obj << -/D [2952 0 R /XYZ 71.731 448.832 null] ->> endobj -1392 0 obj << -/D [2952 0 R /XYZ 71.731 435.881 null] ->> endobj -386 0 obj << -/D [2952 0 R /XYZ 201.18 403.567 null] +/D [2969 0 R /XYZ 71.731 729.265 null] >> endobj 2972 0 obj << -/D [2952 0 R /XYZ 71.731 394.929 null] +/D [2969 0 R /XYZ 111.017 708.344 null] >> endobj 2973 0 obj << -/D [2952 0 R /XYZ 165.864 384.638 null] +/D [2969 0 R /XYZ 279.62 708.344 null] >> endobj 2974 0 obj << -/D [2952 0 R /XYZ 71.731 371.587 null] ->> endobj -390 0 obj << -/D [2952 0 R /XYZ 142.614 341.3 null] +/D [2969 0 R /XYZ 71.731 695.392 null] >> endobj 2975 0 obj << -/D [2952 0 R /XYZ 71.731 336.115 null] +/D [2969 0 R /XYZ 345.153 695.392 null] >> endobj 2976 0 obj << -/D [2952 0 R /XYZ 71.731 303.278 null] ->> endobj -394 0 obj << -/D [2952 0 R /XYZ 166.016 272.558 null] +/D [2969 0 R /XYZ 485.41 664.508 null] >> endobj 2977 0 obj << -/D [2952 0 R /XYZ 71.731 265.48 null] +/D [2969 0 R /XYZ 71.731 644.419 null] >> endobj 2978 0 obj << -/D [2952 0 R /XYZ 71.731 234.536 null] ->> endobj -398 0 obj << -/D [2952 0 R /XYZ 156.761 203.816 null] +/D [2969 0 R /XYZ 109.396 633.624 null] >> endobj 2979 0 obj << -/D [2952 0 R /XYZ 71.731 196.618 null] +/D [2969 0 R /XYZ 143.754 633.624 null] >> endobj 2980 0 obj << -/D [2952 0 R /XYZ 71.731 172.931 null] +/D [2969 0 R /XYZ 388.886 633.624 null] >> endobj 2981 0 obj << -/D [2952 0 R /XYZ 266.731 172.931 null] +/D [2969 0 R /XYZ 134.644 620.672 null] >> endobj 2982 0 obj << -/D [2952 0 R /XYZ 71.731 147.029 null] +/D [2969 0 R /XYZ 226.941 620.672 null] >> endobj 2983 0 obj << -/D [2952 0 R /XYZ 71.731 139.89 null] +/D [2969 0 R /XYZ 71.731 607.721 null] >> endobj 2984 0 obj << -/D [2952 0 R /XYZ 244.236 116.144 null] +/D [2969 0 R /XYZ 146.719 607.721 null] >> endobj 2985 0 obj << -/D [2952 0 R /XYZ 397.391 116.144 null] +/D [2969 0 R /XYZ 71.731 602.62 null] >> endobj -2951 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R /F48 1896 0 R >> -/ProcSet [ /PDF /Text ] +2986 0 obj << +/D [2969 0 R /XYZ 71.731 556.747 null] >> endobj -2988 0 obj << -/Length 2588 -/Filter /FlateDecode ->> -stream -xڥY[oܶ~ϯ�[w�]Ewis��I�=iи888-��� -ѭ�6�ϯ��(Q+;uQ���3���!p�ϻH<' ���?�.��{q#߿��c+,[��������b������p������$�4�/n������t����� -��ɫ�.z��-�.Okou���,����^��eGA�������~~2�g��N���G]�l`-|o����>���^�z�� �!�����953_5U�Ժd����̙�Ҫ�5UYr'3szY�f��hO -iY���� *�y�#J7FB�r�� �g��m��z��O��uV�r��m��ι�М�KX��+X��"����<vWЦ������wj�K[�/o �=�.�����Fcf�`3�+n��3n��vn�)�Xo��n�uZ �۪��{���~�j���4CQ���8ګJ�K�dfY�?lPOȇ�����y״ۜ-#:�N7O�ݷW.0��G��Y�H���_�6|0���8����a'C��ؠ&z�l���0����i����\�(����V@������;�uG��ԕ��ޭG�]�W""��8�7��R1P��2(����%vR�Xl����8��b/vҝ0dm�%,��f�zM)���ۊq�9$���3���tj��j[�L�m#H��D�yƖh��mD�ݱȎL>P�p6����ͻMSg��(da����� -J<?q�N�9� ���O�Nj"��l�{�K+���qY�,��5�>4�( ��Ũ���5�@�hK\�5�nt����\��@F��j!/v4�Q}�� �`b"���~��f���{�D�W<uZN���EctuE� &gi��ȱs�k�AH `��z�F8����b86'a�3u� �ۈ<�ʆ��k�Y�0�^�e ;�W�kX�d����f�,�B��]�R����5qa�I��F�K2�c�@f�Rl��š���ˆ�a��r���sS�p����0�z��d��`�)�r��ȎY�;^�!���#e:�;U��T��]���s)�4�L-<t�Mt^HXy��B�t�şl^d��+���I�y=��^Um�_-�<��$�~��7�)T*�����')4�4M)�p�51�<�4�T�.��Z�>��֒�0]�BK��Ԝz�)���� ��{p��i.�a(�wo�ܗz!,���>W�gJ�]J�vao0�b�'*ea�W'����&2@ȗJ郄Z������u���j�,Lc�Z-�����`U��A,��L�KY����AD�;�v]�7��(e��&������.Nf!����c ��7�d�c�Ɛ�CQ6��cX�����5l2]�Z���[齮)a�\$��jm -.��(m#����I�LڼR��� S%o�����$1�e�UO>6�2��*��lm����_-�fgWT�K���j�!��0��T�i���'q"�s�LNAs���%�B��uH�*,�gSߕ�*�������y��]?R?�R?�4�Q��Pd�dJ�a�������>���j�w�����P�@���t�*ʬĂa��)*�Yy -TZ�^%���ZW��R]�"�h�$�VT�bvQ�9L6�&��)y�f���$�mud*��UJ��}�tLD�S��p)yZ�-�=TKcI����g��.�O1�w��|7.�~%�ƙ�O�s�p*I��0�*�/�E��A�ݸ�:�#O���G#��m%��n���}�J�+�7m�xc&䱲�$N��h-��� -�OS�c��Hy���&VgI����0�<�.Vl�|�<�YӮ��8k�o�/V.yؾ9�^��Ze���{)��{�!��%���^Ym2�q<��/��'q�/F� -ҥ�=������Y�����>�2��� -�'���ݢ>�q��z<���ːQ�a��!W��CQ M�c==C!���ȯUH��GO Ow]1E��,����Q;|����R��u�y3���t����>s�H����To0�VOC�O1��I�pĦ`Ħxv��r��r�ƁA�`��5�qK��9� �� +[�w�n�o��x�d�e�SGp�����)�x���9w��qb#��Z�;�l�Qշf��+�KE��!˓v��s��w�e�#f�1S�ٷs�{3������0�:�ԃ.嚗�x�BWbT�;܉]o_�a����Y�7>�Dr�E�yo.z2(�gCC,�����{�0�_�%>�-ESlbL��֞���5?���A1:#�4O�8��%�>2W� ��鍩Ӹ+Y�3�$�5��4�� V�(�Ә@6'~;M�(�Vr5��_���U������ׂ��N-���A�w|Ƙ��MġWW���臿�&ӱonP#���?2� ���1�|��0�"�W/�-�~C�dJA%��4�nX@-di���I�@�M���<72�"�lr6�}4r�W�N!!�7��#��u�:�d�T��eo�Ð�T!�B�y��u�x��f�E&w���F�y��p<1`��L������(?����z�WޜX�nF~긾Y�",}�ʥ�?�h�'endstream -endobj 2987 0 obj << -/Type /Page -/Contents 2988 0 R -/Resources 2986 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2910 0 R +/D [2969 0 R /XYZ 71.731 556.747 null] +>> endobj +2988 0 obj << +/D [2969 0 R /XYZ 257.935 545.953 null] >> endobj 2989 0 obj << -/D [2987 0 R /XYZ 71.731 729.265 null] +/D [2969 0 R /XYZ 439.391 533.001 null] >> endobj 2990 0 obj << -/D [2987 0 R /XYZ 111.017 708.344 null] +/D [2969 0 R /XYZ 146.138 520.05 null] >> endobj 2991 0 obj << -/D [2987 0 R /XYZ 279.62 708.344 null] +/D [2969 0 R /XYZ 222.467 520.05 null] >> endobj 2992 0 obj << -/D [2987 0 R /XYZ 71.731 695.392 null] +/D [2969 0 R /XYZ 281.244 507.098 null] >> endobj 2993 0 obj << -/D [2987 0 R /XYZ 345.153 695.392 null] +/D [2969 0 R /XYZ 435.614 507.098 null] >> endobj 2994 0 obj << -/D [2987 0 R /XYZ 485.41 664.508 null] +/D [2969 0 R /XYZ 71.731 499.96 null] +>> endobj +402 0 obj << +/D [2969 0 R /XYZ 154.051 469.24 null] >> endobj 2995 0 obj << -/D [2987 0 R /XYZ 71.731 644.419 null] +/D [2969 0 R /XYZ 71.731 462.162 null] >> endobj 2996 0 obj << -/D [2987 0 R /XYZ 109.396 633.624 null] +/D [2969 0 R /XYZ 71.731 405.315 null] >> endobj 2997 0 obj << -/D [2987 0 R /XYZ 143.754 633.624 null] +/D [2969 0 R /XYZ 71.731 405.315 null] >> endobj 2998 0 obj << -/D [2987 0 R /XYZ 388.886 633.624 null] +/D [2969 0 R /XYZ 71.731 374.431 null] +>> endobj +406 0 obj << +/D [2969 0 R /XYZ 142.923 343.711 null] >> endobj 2999 0 obj << -/D [2987 0 R /XYZ 134.644 620.672 null] +/D [2969 0 R /XYZ 71.731 338.526 null] >> endobj 3000 0 obj << -/D [2987 0 R /XYZ 226.941 620.672 null] +/D [2969 0 R /XYZ 224.195 312.827 null] >> endobj 3001 0 obj << -/D [2987 0 R /XYZ 71.731 607.721 null] +/D [2969 0 R /XYZ 71.731 279.786 null] +>> endobj +410 0 obj << +/D [2969 0 R /XYZ 171.774 249.066 null] >> endobj 3002 0 obj << -/D [2987 0 R /XYZ 146.719 607.721 null] +/D [2969 0 R /XYZ 71.731 241.988 null] >> endobj 3003 0 obj << -/D [2987 0 R /XYZ 71.731 602.62 null] +/D [2969 0 R /XYZ 181.465 231.133 null] >> endobj 3004 0 obj << -/D [2987 0 R /XYZ 71.731 556.747 null] +/D [2969 0 R /XYZ 380.939 231.133 null] >> endobj 3005 0 obj << -/D [2987 0 R /XYZ 71.731 556.747 null] +/D [2969 0 R /XYZ 473.597 231.133 null] >> endobj 3006 0 obj << -/D [2987 0 R /XYZ 257.935 545.953 null] +/D [2969 0 R /XYZ 509.52 231.133 null] >> endobj 3007 0 obj << -/D [2987 0 R /XYZ 439.391 533.001 null] +/D [2969 0 R /XYZ 191.511 218.182 null] >> endobj 3008 0 obj << -/D [2987 0 R /XYZ 146.138 520.05 null] +/D [2969 0 R /XYZ 71.731 211.044 null] +>> endobj +414 0 obj << +/D [2969 0 R /XYZ 148.701 180.324 null] >> endobj 3009 0 obj << -/D [2987 0 R /XYZ 222.467 520.05 null] +/D [2969 0 R /XYZ 71.731 175.138 null] >> endobj 3010 0 obj << -/D [2987 0 R /XYZ 281.244 507.098 null] ->> endobj -3011 0 obj << -/D [2987 0 R /XYZ 435.614 507.098 null] ->> endobj -3012 0 obj << -/D [2987 0 R /XYZ 71.731 499.96 null] +/D [2969 0 R /XYZ 71.731 142.301 null] >> endobj -402 0 obj << -/D [2987 0 R /XYZ 154.051 469.24 null] +2968 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F48 1896 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 3013 0 obj << -/D [2987 0 R /XYZ 71.731 462.162 null] +/Length 2335 +/Filter /FlateDecode +>> +stream +xڥ�r�F���`�b�Jjh��Iv䩤�Ό�ć8�&�$ca�в���m ���T�T���oo�_x��/_%A��8Z������ο�|����Ϋ���o�^d*���a�=O%^�Ht��(X<�-_��~���6���V��+�){��͖A�+��oYUf���OW���H'*K�7�s8g��餟;��*���V����R�,I��6/?y^���zb�{��y��`֫�[V5|�&H&���� ���P�$[v��9T�Ro9�ʞ���W9@���gĶ6m��]��6����jk2!37���mm�x�6�}Άw:���3=� #��1Dզ(Q�/eq0�_� +-A�T�t�_: +{6��̸�3q�|,����������:���:�0h��C�O�>�����6�t�N?��C$&��V�fԠq�ў�=q�6��֖ke +{dN�OA�QI|4h0BS(� �ޙ��I��j6h�e�oGn�IA|��QgL�_[< +�ը���۴�cs�V�텋H5��"�h�� +���yX�u�8�ˆ��dX �����ɋ<�{��#���5����U�l]u1��5�����W����zB�H���"dR�B�����n��5h@��gA�v�x��,�"�vp��wT?H5�ƚ0 ����0^��<0C9laA�:�S������Ͷɭb�݆�7��s)��md��7L���h5�&k���Z<��Բ�����jtn��T�;><��!�}Q��E%�Ţ#cw�v�ζ��ˡlS!��-��ް}P-�w�6������:�=���0vk��<��9�k�d�,k�Kp���a�2.�"O\ ������i��c��}i����6xXɕ@/|ȇ(�X�<��,YI�le ��4��h����i��,Ȉ�G*�:��i����3e�J`�i�`��2�� +��Q/6���Bx��"�E�֖������Ԇ#U�*�+ꓰ����H馸H"�y@�M�'��Yf�u�/t4��-n�"�u�����3�G�9�i��aE-��5�KuLf��[�1������ZEI��HE�������woQ������W������-Ӌ�.6W��3r;��łI�����Vg��d1�C� +cL��JC;�-x���*w4mq �1@�������*�H�3�El��H. +� ]�5�A����ُ�j���lj����m��s]��4�M��G:t�K��b=�x��p���� ���7�\g&w�D�94�P�v��5%)$�#�K��[_�*/�_T��XD�,ù��(h7�R +�@r�K���,�D\�����44� �� +�I:[�7����9�~V�qs��#��i�%�@�(��O�$nD�_':��2�21Yf��+�붐k + ��4��_p`�x`H�C��"��)a�Zy?t�u�0�a�k븉 4Jv��eR�P���s��}Q +�a@]���(�ڋY������t�E-�?�м�xʟ�5��\6����-���O�����d�,!&�`+�Xa�cȾk��J��F�q�^���!���BF�W�R< +i�<kH��&t8jy�\�b���`��"����x���> +�Z=oJkl��x�ם5�8�N]���{����ݜ��w�P�Q��!�!��U�vq���WQľ�u�C�dT�f�J�[����m>�&� �����8���f�};�.���B�j���qW�;ޑ��kr�L�䆺��Y��A���u�!�#�=�~���ݪ?F ����3�r��騗@~�Kqxb��=٢�x8���TP=X��F�Uciԃq ن��ș�P��9���B��4�91 +),��W����� Y� ���s�k(vu4]�\�t4wl�CN�G�ڀ��!@'�Y�����y���wo~|���8�5C��w��ox-�8W�S +r0~�`2�R���V��ޕ����+ۮ���$r�!�u�x������l>��q/]����З���ߔ��a�s�-�xw����l��`� �u[���(��B�/�w��.�T��ĬS��y�;,���p����� ��?�i��8�$��9��o�>a������\�n+gk` ��8���k1]�N<7R��Ѕ�[}+�wǢ�'��<���*�7m>�<ksA�s���\�_��D���� [���|-�C=����uY�S�9oR���8��"�|��u(��*ت86��'�Ñ����|�X���B25��J�����P����DŽ�r��?�%���Leendstream +endobj +3012 0 obj << +/Type /Page +/Contents 3013 0 R +/Resources 3011 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2932 0 R >> endobj 3014 0 obj << -/D [2987 0 R /XYZ 71.731 405.315 null] +/D [3012 0 R /XYZ 71.731 729.265 null] +>> endobj +418 0 obj << +/D [3012 0 R /XYZ 224.367 708.344 null] >> endobj 3015 0 obj << -/D [2987 0 R /XYZ 71.731 405.315 null] +/D [3012 0 R /XYZ 71.731 701.265 null] >> endobj 3016 0 obj << -/D [2987 0 R /XYZ 71.731 374.431 null] ->> endobj -406 0 obj << -/D [2987 0 R /XYZ 142.923 343.711 null] +/D [3012 0 R /XYZ 71.731 664.508 null] >> endobj 3017 0 obj << -/D [2987 0 R /XYZ 71.731 338.526 null] +/D [3012 0 R /XYZ 71.731 644.419 null] +>> endobj +422 0 obj << +/D [3012 0 R /XYZ 170.649 613.699 null] >> endobj 3018 0 obj << -/D [2987 0 R /XYZ 224.195 312.827 null] +/D [3012 0 R /XYZ 71.731 606.62 null] >> endobj 3019 0 obj << -/D [2987 0 R /XYZ 71.731 279.786 null] ->> endobj -410 0 obj << -/D [2987 0 R /XYZ 171.774 249.066 null] +/D [3012 0 R /XYZ 129.576 595.766 null] >> endobj 3020 0 obj << -/D [2987 0 R /XYZ 71.731 241.988 null] +/D [3012 0 R /XYZ 279.855 582.814 null] >> endobj 3021 0 obj << -/D [2987 0 R /XYZ 181.465 231.133 null] +/D [3012 0 R /XYZ 349.928 582.814 null] >> endobj -3022 0 obj << -/D [2987 0 R /XYZ 380.939 231.133 null] +1393 0 obj << +/D [3012 0 R /XYZ 71.731 552.762 null] +>> endobj +426 0 obj << +/D [3012 0 R /XYZ 199.853 519.452 null] +>> endobj +3022 0 obj << +/D [3012 0 R /XYZ 71.731 510.815 null] >> endobj 3023 0 obj << -/D [2987 0 R /XYZ 473.597 231.133 null] +/D [3012 0 R /XYZ 159.666 500.523 null] >> endobj 3024 0 obj << -/D [2987 0 R /XYZ 509.52 231.133 null] +/D [3012 0 R /XYZ 71.731 480.433 null] >> endobj 3025 0 obj << -/D [2987 0 R /XYZ 191.511 218.182 null] +/D [3012 0 R /XYZ 186.589 469.639 null] >> endobj 3026 0 obj << -/D [2987 0 R /XYZ 71.731 211.044 null] ->> endobj -414 0 obj << -/D [2987 0 R /XYZ 148.701 180.324 null] +/D [3012 0 R /XYZ 71.731 467.482 null] >> endobj 3027 0 obj << -/D [2987 0 R /XYZ 71.731 175.138 null] +/D [3012 0 R /XYZ 118.555 428.918 null] >> endobj 3028 0 obj << -/D [2987 0 R /XYZ 71.731 142.301 null] +/D [3012 0 R /XYZ 232.228 420.454 null] >> endobj -2986 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F48 1896 0 R >> -/ProcSet [ /PDF /Text ] +3029 0 obj << +/D [3012 0 R /XYZ 378.496 397.141 null] +>> endobj +1394 0 obj << +/D [3012 0 R /XYZ 71.731 375.221 null] +>> endobj +430 0 obj << +/D [3012 0 R /XYZ 193.206 346.574 null] >> endobj -3031 0 obj << -/Length 2335 -/Filter /FlateDecode ->> -stream -xڥ�r�F���`�b�Jjh��Iv䩤�Ό�ć8�&�$ca�в���m ���T�T���oo�_x��/_%A��8Z������ο�|����Ϋ���o�^d*���a�=O%^�Ht��(X<�-_��~���6���V��+�){��͖A�+��oYUf���OW���H'*K�7�s8g��餟;��*���V����R�,I��6/?y^���zb�{��y��`֫�[V5|�&H&���� ���P�$[v��9T�Ro9�ʞ���W9@���gĶ6m��]��6����jk2!37���mm�x�6�}Άw:���3=� #��1Dզ(Q�/eq0�_� --A�T�t�_: -{6��̸�3q�|,����������:���:�0h��C�O�>�����6�t�N?��C$&��V�fԠq�ў�=q�6��֖ke -{dN�OA�QI|4h0BS(� �ޙ��I��j6h�e�oGn�IA|��QgL�_[< -�ը���۴�cs�V�텋H5��"�h�� -���yX�u�8�ˆ��dX �����ɋ<�{��#���5����U�l]u1��5�����W����zB�H���"dR�B�����n��5h@��gA�v�x��,�"�vp��wT?H5�ƚ0 ����0^��<0C9laA�:�S������Ͷɭb�݆�7��s)��md��7L���h5�&k���Z<��Բ�����jtn��T�;><��!�}Q��E%�Ţ#cw�v�ζ��ˡlS!��-��ް}P-�w�6������:�=���0vk��<��9�k�d�,k�Kp���a�2.�"O\ ������i��c��}i����6xXɕ@/|ȇ(�X�<��,YI�le ��4��h����i��,Ȉ�G*�:��i����3e�J`�i�`��2�� -��Q/6���Bx��"�E�֖������Ԇ#U�*�+ꓰ����H馸H"�y@�M�'��Yf�u�/t4��-n�"�u�����3�G�9�i��aE-��5�KuLf��[�1������ZEI��HE�������woQ������W������-Ӌ�.6W��3r;��łI�����Vg��d1�C� -cL��JC;�-x���*w4mq �1@�������*�H�3�El��H. -� ]�5�A����ُ�j���lj����m��s]��4�M��G:t�K��b=�x��p���� ���7�\g&w�D�94�P�v��5%)$�#�K��[_�*/�_T��XD�,ù��(h7�R -�@r�K���,�D\�����44� �� -�I:[�7����9�~V�qs��#��i�%�@�(��O�$nD�_':��2�21Yf��+�붐k - ��4��_p`�x`H�C��"��)a�Zy?t�u�0�a�k븉 4Jv��eR�P���s��}Q -�a@]���(�ڋY������t�E-�?�м�xʟ�5��\6����-���O�����d�,!&�`+�Xa�cȾk��J��F�q�^���!���BF�W�R< -i�<kH��&t8jy�\�b���`��"����x���> -�Z=oJkl��x�ם5�8�N]���{����ݜ��w�P�Q��!�!��U�vq���WQľ�u�C�dT�f�J�[����m>�&� �����8���f�};�.���B�j���qW�;ޑ��kr�L�䆺��Y��A���u�!�#�=�~���ݪ?F ����3�r��騗@~�Kqxb��=٢�x8���TP=X��F�Uciԃq ن��ș�P��9���B��4�91 -),��W����� Y� ���s�k(vu4]�\�t4wl�CN�G�ڀ��!@'�Y�����y���wo~|���8�5C��w��ox-�8W�S -r0~�`2�R���V��ޕ����+ۮ���$r�!�u�x������l>��q/]����З���ߔ��a�s�-�xw����l��`� �u[���(��B�/�w��.�T��ĬS��y�;,���p����� ��?�i��8�$��9��o�>a������\�n+gk` ��8���k1]�N<7R��Ѕ�[}+�wǢ�'��<���*�7m>�<ksA�s���\�_��D���� [���|-�C=����uY�S�9oR���8��"�|��u(��*ت86��'�Ñ����|�X���B25��J�����P����DŽ�r��?�%���Lfendstream -endobj 3030 0 obj << -/Type /Page -/Contents 3031 0 R -/Resources 3029 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2910 0 R +/D [3012 0 R /XYZ 71.731 337.937 null] +>> endobj +3031 0 obj << +/D [3012 0 R /XYZ 247.76 327.645 null] >> endobj 3032 0 obj << -/D [3030 0 R /XYZ 71.731 729.265 null] +/D [3012 0 R /XYZ 159.162 314.694 null] >> endobj -418 0 obj << -/D [3030 0 R /XYZ 224.367 708.344 null] +1395 0 obj << +/D [3012 0 R /XYZ 71.731 287.63 null] +>> endobj +434 0 obj << +/D [3012 0 R /XYZ 157.239 244.533 null] >> endobj 3033 0 obj << -/D [3030 0 R /XYZ 71.731 701.265 null] +/D [3012 0 R /XYZ 71.731 232.095 null] >> endobj 3034 0 obj << -/D [3030 0 R /XYZ 71.731 664.508 null] +/D [3012 0 R /XYZ 71.731 176.981 null] >> endobj 3035 0 obj << -/D [3030 0 R /XYZ 71.731 644.419 null] ->> endobj -422 0 obj << -/D [3030 0 R /XYZ 170.649 613.699 null] +/D [3012 0 R /XYZ 71.731 164.03 null] >> endobj 3036 0 obj << -/D [3030 0 R /XYZ 71.731 606.62 null] +/D [3012 0 R /XYZ 71.731 159.048 null] >> endobj 3037 0 obj << -/D [3030 0 R /XYZ 129.576 595.766 null] +/D [3012 0 R /XYZ 89.664 138.291 null] >> endobj 3038 0 obj << -/D [3030 0 R /XYZ 279.855 582.814 null] +/D [3012 0 R /XYZ 71.731 136.134 null] >> endobj 3039 0 obj << -/D [3030 0 R /XYZ 349.928 582.814 null] ->> endobj -1393 0 obj << -/D [3030 0 R /XYZ 71.731 552.762 null] ->> endobj -426 0 obj << -/D [3030 0 R /XYZ 199.853 519.452 null] +/D [3012 0 R /XYZ 89.664 120.359 null] >> endobj 3040 0 obj << -/D [3030 0 R /XYZ 71.731 510.815 null] +/D [3012 0 R /XYZ 89.664 120.359 null] >> endobj 3041 0 obj << -/D [3030 0 R /XYZ 159.666 500.523 null] ->> endobj -3042 0 obj << -/D [3030 0 R /XYZ 71.731 480.433 null] +/D [3012 0 R /XYZ 71.731 118.202 null] >> endobj -3043 0 obj << -/D [3030 0 R /XYZ 186.589 469.639 null] +3011 0 obj << +/Font << /F33 1210 0 R /F48 1896 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 3044 0 obj << -/D [3030 0 R /XYZ 71.731 467.482 null] +/Length 3030 +/Filter /FlateDecode +>> +stream +xڕ˒�6��P�%TՈK�!�ٓ�8�l9Nm2N�=@F"��x��� R���r�4��~�ШE��b��MCZ��X���b;?�P������Ë|�e�*�����q�'I�I��&K�H��D��4�~�J�$�b_���3�ոT��/�4z�߇�x��.�M\���ˋ2N�t�J��J�m*�Ǥ��<"�����QP`�������|1��Ϻ������S�]�ųҟ�q<���4�m�����8\�H3��UI亖��ix�;�JoϷ�4��=J8W���X7 ��-c�(ݡ�=��Vo�g�'t]w�Y;�d�m�eZDO�L���Y�}�%�+��J�q%�9%�k������p�껮�f��y.�ș����:��$�!9�1�.�c�}���lؾ:�g��-��m�2}�O�fv�q���Q@#^i��]�"z&=$��E +p�u��'�q���")�������G������������g�������l��{���2\Xi��¶<��7%8�2/�n7�o���)�Cwԃ�uC����&�I7sF�ia���k���w����Oo�c��`��UVm���k���a�@�&���S�]b&q#�,Lv��U$��6��uF�1�ءw}�����Q)$���3�q"���wo~_Vi�Y�̲x��_v�3�gRPP�g����;�ξ �g��֢��n��A�ʦ�Ի����vf����v3u����SoMo��{ԍ�?��ߟv�Uw��U�P�8U�i�iU$q��%sU1;�G{r���%UqQT��H�4�D�G��2rG� w? �q4Ρ,{�����( �k�o�cO:A�N�9���y���{���a�qc3��w^��j���PlV���w�f3��uX��m�Q-Gb"�Lm���A��b���`���_%��D�O0��!7�4�L֝�lv����Q��]w�ɫ1��K�_�z'C.*���0#u]#I&�M��R��i��*k��P����+�;����k�����<";�w�H��V��0-�?o�(�s���yҽ>,'�"���A���-\��Mt��:�� +@�ˈ7�[t�=�O���HV�}��_�ܞQA�@��svw�!0kd?�)��M.b�<cU3xr<q��g�E#�ɛh�I9#J@�$�|�-:�#�] +Hl��(<a����u�3dtP�0�`��1S~�ȍۣ~�hY���7.�����v�?���T�z=tR�a� �3��DJ;P�.��b�䳭n�P.��C��0J-������߇�$ �Ad�Ӕ4�#�T� j�g��<��k�|$Ϫ�p�C� `I��������a~�O��0j$(���`d�bH��������g����YRM6�~�y��p�Ȍ�8������ѧQ��l�雞�4i�����:�1l�����[^���-O�H�r.��O|�b�H�n��%%�0���t�O<E)����r���<�T������n�MV�W�do͒����%��V��Eyf�ๆ�OK�A���S�4;��t�0�e*~3�G ��;�a�;�������5 ;r��z�(�OzobF}�BxO�0*Xf�$�&��Ym����]�?�"���V;Y=YOs{���o�w�&��/Q��T� ���P���d4�i^�S�b ��!cˑ&��%��^^D<�VwB�k�c�>{���5,�e&�t ��>�� �b�� �e���[/�&˵8LX� +E�zVJ�#��su��U�����t-W����م����3�s鐝�6!b@�� b�����E�9t�k��R�<�2`�vC�g�l�$/���I� H#W��{�{�_�83���'�m\��� �/��#�!05N�v��l\w������Z�W�q�jl+=OK�z��Lr�D��t�Z��akB�y�D���'TO�?�ִ\F�Ռ+}>�V�\4_*��뇞�Ɠ�F��O7x������_k�~�vP�<���yכ�L�`��ʺ�у�M�}XyT���V�<Q�څ�?�mIGH��^��%��Nm�A��q2ݩ1ҽ=F��jQ�[{뚘� S{��P,���n��u$���Б5q(�p�d���!�i�&�� x��ǣ\H��K�@��s�0��]i}�(w'��pa�]���J}�P��\<k�V��?�^s� �i��̟OJ��bޢ�� ���5&���j0o�^2K' +���7�X���nm��Bb� W�k�u��37{�w��|=L����;r�a�:����>��� �>҅���y�8y���&8-U�Q��b�r���I���S_�����sVm{?Ӱ�v��p�`�=�zִ��M�_���og�4($��3�_���7�gQY6q���O&oi+)�����������&i ���Yʫ&02 iԙ��b[<i�)&V&��l��<�ܿ�����<N��*#U3mL���s���S��:H!F~!s�_0n�.�xv��M��r�1�n}�wk�,��8_K�}�3s ���6��i)̱��!,|˘y~�L�\��+ +��Z��%�Amuϐ 7J�Xk(s��(�"% T�K;{$x�g{e�9�1r���9oF��g[�8�����_��*�ۛ=^��*r���c�T�.6��r��&�SS�@*Vs�G�N�L� :�7<��0��rn����?�lA4�@�l|͉��ߠ��I���#��: �4�{� �%v��+2+nOz>�;�����@v���RѣB's�$�UP�)�Y�5��]�{~ǀm�W8r�Z���L�v�����ۂ�A�.oI�����yϏ|���E(s���~�6R�nMC +zZ��(��.�c�®�� ?~yEP�V�'^�����l��Fc�Q +����� ;�Iao�=�P���s���C^ƥ�|�"�(W�ji ���Π��_8\��7��Tendstream +endobj +3043 0 obj << +/Type /Page +/Contents 3044 0 R +/Resources 3042 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2932 0 R >> endobj 3045 0 obj << -/D [3030 0 R /XYZ 118.555 428.918 null] +/D [3043 0 R /XYZ 71.731 729.265 null] >> endobj 3046 0 obj << -/D [3030 0 R /XYZ 232.228 420.454 null] +/D [3043 0 R /XYZ 89.664 708.344 null] >> endobj 3047 0 obj << -/D [3030 0 R /XYZ 378.496 397.141 null] ->> endobj -1394 0 obj << -/D [3030 0 R /XYZ 71.731 375.221 null] ->> endobj -430 0 obj << -/D [3030 0 R /XYZ 193.206 346.574 null] +/D [3043 0 R /XYZ 89.664 708.344 null] >> endobj 3048 0 obj << -/D [3030 0 R /XYZ 71.731 337.937 null] +/D [3043 0 R /XYZ 71.731 682.341 null] >> endobj 3049 0 obj << -/D [3030 0 R /XYZ 247.76 327.645 null] +/D [3043 0 R /XYZ 89.664 664.508 null] >> endobj 3050 0 obj << -/D [3030 0 R /XYZ 159.162 314.694 null] ->> endobj -1395 0 obj << -/D [3030 0 R /XYZ 71.731 287.63 null] ->> endobj -434 0 obj << -/D [3030 0 R /XYZ 157.239 244.533 null] +/D [3043 0 R /XYZ 89.664 664.508 null] >> endobj 3051 0 obj << -/D [3030 0 R /XYZ 71.731 232.095 null] +/D [3043 0 R /XYZ 71.731 649.4 null] >> endobj 3052 0 obj << -/D [3030 0 R /XYZ 71.731 176.981 null] +/D [3043 0 R /XYZ 89.664 633.624 null] +>> endobj +1396 0 obj << +/D [3043 0 R /XYZ 71.731 626.486 null] +>> endobj +438 0 obj << +/D [3043 0 R /XYZ 154.02 583.388 null] >> endobj 3053 0 obj << -/D [3030 0 R /XYZ 71.731 164.03 null] +/D [3043 0 R /XYZ 71.731 571.217 null] >> endobj 3054 0 obj << -/D [3030 0 R /XYZ 71.731 159.048 null] +/D [3043 0 R /XYZ 71.731 528.788 null] >> endobj 3055 0 obj << -/D [3030 0 R /XYZ 89.664 138.291 null] +/D [3043 0 R /XYZ 181.725 517.994 null] >> endobj 3056 0 obj << -/D [3030 0 R /XYZ 71.731 136.134 null] +/D [3043 0 R /XYZ 71.731 484.953 null] >> endobj 3057 0 obj << -/D [3030 0 R /XYZ 89.664 120.359 null] +/D [3043 0 R /XYZ 71.731 415.214 null] >> endobj 3058 0 obj << -/D [3030 0 R /XYZ 89.664 120.359 null] +/D [3043 0 R /XYZ 71.731 371.378 null] +>> endobj +1397 0 obj << +/D [3043 0 R /XYZ 71.731 353.446 null] +>> endobj +442 0 obj << +/D [3043 0 R /XYZ 339.876 310.348 null] >> endobj 3059 0 obj << -/D [3030 0 R /XYZ 71.731 118.202 null] +/D [3043 0 R /XYZ 71.731 298.177 null] >> endobj -3029 0 obj << -/Font << /F33 1210 0 R /F48 1896 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R >> -/ProcSet [ /PDF /Text ] +3060 0 obj << +/D [3043 0 R /XYZ 376.087 275.838 null] >> endobj -3062 0 obj << -/Length 3031 -/Filter /FlateDecode ->> -stream -xڕ˒�6��P�%TՈK�!�ٓ�8�l9Nm2N�=@F"��x��� R���r�4��~�ШE��b��MCZ��X���b;?�P������Ë|�e�*�����q�'I�I��&K�H��D��4�~�J�$�b_���3�ոT��/�4z�߇�x��.�M\���ˋ2N�t�J��J�m*�Ǥ��<"�����QP`�������|1��Ϻ������S�]�ųҟ�q<���4�m�����8\�H3��UI亖��ix�;�JoϷ�4��=J8W���X7 ��-c�(ݡ�=��Vo�g�'t]w�Y;�d�m�eZDO�L���Y�}�%�+��J�q%�9%�k������p�껮�f��y.�ș����:��$�!9�1�.�c�}���lؾ:�g��-��m�2}�O�fv�q���Q@#^i��]�"z&=$��E -p�u��'�q���")�������G������������g�������l��{���2\Xi��¶<��7%8�2/�n7�o���)�Cwԃ�uC����&�I7sF�ia���k���w����Oo�c��`��UVm���k���a�@�&���S�]b&q#�,Lv��U$��6��uF�1�ءw}�����Q)$���3�q"���wo~_Vi�Y�̲x��_v�3�gRPP�g����;�ξ �g��֢��n��A�ʦ�Ի����vf����v3u����SoMo��{ԍ�?��ߟv�Uw��U�P�8U�i�iU$q��%sU1;�G{r���%UqQT��H�4�D�G��2rG� w? �q4Ρ,{�����( �k�o�cO:A�N�9���y���{���a�qc3��w^��j���PlV���w�f3��uX��m�Q-Gb"�Lm���A��b���`���_%��D�O0��!7�4�L֝�lv����Q��]w�ɫ1��K�_�z'C.*���0#u]#I&�M��R��i��*k��P����+�;����k�����<";�w�H��V��0-�?o�(�s���yҽ>,'�"���A���-\��Mt��:�� -@�ˈ7�[t�=�O���HV�}��_�ܞQA�@��svw�!0kd?�)��M.b�<cU3xr<q��g�E#�ɛh�I9#J@�$�|�-:�#�] -Hl��(<a����u�3dtP�0�`��1S~�ȍۣ~�hY���7.�����v�?���T�z=tR�a� �3��DJ;P�.��b�䳭n�P.��C��0J-������߇�$ �Ad�Ӕ4�#�T� j�g��<��k�|$Ϫ�p�C� `I��������a~�O��0j$(���`d�bH��������g����YRM6�~�y��p�Ȍ�8������ѧQ��l�雞�4i�����:�1l�����[^���-O�H�r.��O|�b�H�n��%%�0���t�O<E)����r���<�T������n�MV�W�do͒����%��V��Eyf�ๆ�OK�A���S�4;��t�0�e*~3�G ��;�a�;�������5 ;r��z�(�OzobF}�BxO�0*Xf�$�&��Ym����]�?�"���V;Y=YOs{���o�w�&��/Q��T� ���P���d4�i^�S�b ��!cˑ&��%��^^D<�VwB�k�c�>{���5,�e&�t ��>�� �b�� �e���[/�&˵8LX� -E�zVJ�#��su��U�����t-W����م����3�s鐝�6!b@�� b�����E�9t�k��R�<�2`�vC�g�l�$/���I� H#W��{�{�_�83���'�m\��� �/��#�!05N�v��l\w������Z�W�q�jl+=OK�z��Lr�D��t�Z��akB�y�D���'TO�?�ִ\F�Ռ+}>�V�\4_*��뇞�Ɠ�F��O7x������_k�~�vP�<���yכ�L�`��ʺ�у�M�}XyT���V�<Q�څ�?�mIGH��^��%��Nm�A��q2ݩ1ҽ=F��jQ�[{뚘� S{��P,���n��u$���Б5q(�p�d���!�i�&�� x��ǣ\H��K�@��s�0��]i}�(w'��pa�]���J}�P��\<k�V��?�^s� �i��̟OJ��bޢ�� ���5&���j0o�^2K' -���7�X���nm��Bb� W�k�u��37{�w��|=L����;r�a�:����>��� �>҅���y�8y���&8-U�Q��b�r���I���S_�����sVm{?Ӱ�v��p�`�=�zִ��M�_���og�4($��3�_���7�gQY6q���O&oi+)�����������&i ���Yʫ&02 iԙ��b[<i�)&V&��l��<�ܿ�����<N��*#U3mL���s���S��:H!F~!s�_0n�.�xv��M��r�1�n}�wk�,��8_K�}�3s ���6��i)̱��!,|˘y~�L�\��+ -��Z��%�Amuϐ 7J�Xk(s��(�"% T�K;{$x�g{e�9�1r���9oF��g[�8�����_��*�ۛ=^��*r���c�T�.6��r��&�SS�@*Vs�G�N�L� :�7<��0��rn����?�lA4�@�l|͉��ߠ��I���#��: �4�{� �%v��+2+nOz>�;�����@v���RѣB's�$�UP�)�Y�5��]�{~ǀm�W8r�Z���L�v�����ۂ�A�.oI�����yϏ|���E(s���~�6R�nMC -zZ��(��.�c�®�� ?~yEP�V�'^�����l��Fc�Q -����� ;�Iao�=�P���s���C^ƥ�|�"�(W�ji ���T������I���Lendstream -endobj 3061 0 obj << -/Type /Page -/Contents 3062 0 R -/Resources 3060 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 2910 0 R +/D [3043 0 R /XYZ 71.731 268.699 null] +>> endobj +3062 0 obj << +/D [3043 0 R /XYZ 71.731 237.815 null] >> endobj 3063 0 obj << -/D [3061 0 R /XYZ 71.731 729.265 null] +/D [3043 0 R /XYZ 353.441 227.021 null] >> endobj 3064 0 obj << -/D [3061 0 R /XYZ 89.664 708.344 null] +/D [3043 0 R /XYZ 280.021 214.069 null] >> endobj 3065 0 obj << -/D [3061 0 R /XYZ 89.664 708.344 null] +/D [3043 0 R /XYZ 175.77 201.118 null] >> endobj 3066 0 obj << -/D [3061 0 R /XYZ 71.731 682.341 null] +/D [3043 0 R /XYZ 397.028 201.118 null] >> endobj 3067 0 obj << -/D [3061 0 R /XYZ 89.664 664.508 null] +/D [3043 0 R /XYZ 71.731 198.961 null] >> endobj 3068 0 obj << -/D [3061 0 R /XYZ 89.664 664.508 null] +/D [3043 0 R /XYZ 71.731 184.017 null] >> endobj 3069 0 obj << -/D [3061 0 R /XYZ 71.731 649.4 null] ->> endobj -3070 0 obj << -/D [3061 0 R /XYZ 89.664 633.624 null] +/D [3043 0 R /XYZ 462.474 151.205 null] >> endobj -1396 0 obj << -/D [3061 0 R /XYZ 71.731 626.486 null] ->> endobj -438 0 obj << -/D [3061 0 R /XYZ 154.02 583.388 null] +1398 0 obj << +/D [3043 0 R /XYZ 76.712 121.616 null] >> endobj -3071 0 obj << -/D [3061 0 R /XYZ 71.731 571.217 null] +3042 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 3072 0 obj << -/D [3061 0 R /XYZ 71.731 528.788 null] +/Length 2219 +/Filter /FlateDecode +>> +stream +xڝَ��}�BX50͈EI~��Y/b�1b�a�4�[YcO�>U,Rg�fa,fţX�E6w<�ǝ��(���0_�NV�y�v>�qq4 ��W�w�&��%2pO��<y�>�C�y�q���ϽjG?�܀��}^u��zQ�i��������L�=~{��q�K�`�=���.X $2h��"���G�����UiO,��c{�=��;�PE���s��j$���I�q(l���k����&,��uu�qC��xX�AF@��8aR�k��ߑ�9�K{�i��J��$x1���������E��FE _�L০Ag C��R��,��}�M07�f@�q��Ҷ��V����s�O�F)}��R�զq���U��i���V�]�Y_4uG+M}��;�d��V��s�C�B\^���<��ZZ�����%a�o� ����-�mi�m��+�H��V �/ I���ШVPE�fh���@��3�j�.�Ԁ���| �?���?�~��|0�*�},�|_:�ym�nc�}SA����M�P���rS��ZltH�j��b��4�Ȣ}��(�25���lU��[�ں�x�V�q��Lbj�ϣ��40�����@:�Q�(4�?P�de�}Z81j��BB���B�dd8��)�*-J�y��+T�(مf�?Z�Ȍp>� �#!ҕ!`��`�T�4�ԜVt�jS6��� +��]1$�.�)�`��f�aAk q�͠������͵�.�e��Nq�k2��2z�%���A ������`?�1buڼ���k�)}�KZ��OmS��g\���Z��y�A��8Q���������Un(����<���>�:A`�C��3�>.0f�1���F�#�L������R�CI�1�� H�P/9����7�G\V *�E��,�@���քVO�!����ڧfL僡@�`�E�.qm��9���1QҔdm0/rT��*%͖���@�dD�7f�� +%��fOf���_�Y���XN��k�ת�Mば��5-��+,jK6ojeV07��*�|d+��^W��O�:����ؿ�aeb��nt��VPe�NE��CnI�ypu�#N�v4Tt3B�PQsIȟ�T�R����<�,�"GD1<K��w���99��o����r��A"Yȡ�gI8�rNw?��{�T%��:k�6(���N�����C�q8;"���|�1��Xs���\d�_&��� �;�UV�^u��y��qMK��`c��Z��}�u��绡5��t{����.}��/3Nb�v�=����K�i�"�ǜ��B��@��Қ�Q��fx�1]����+��5:3>C��Wk��I����ƈ��mA�������4�L�5�D֒n=i��8��'qI�:ӰZ�������j�a�#�#��hp�%de��@tJ��Ep���&bB�t�3���$����H`=�!\d< c}��k���M[��-&n��3<�����^������Bb+ PMmj�%Sl������D8B�E�b���[��) qǝ�p�̑�� ��w�}7�>a���zGO&t�#���G�s�>!l{�;�8MWؚ��Y��>��T���1� 3Ŭm��d:�����G�B$�-.�Є����2���7<p����oz�����C{�i�?ѓ����ؕ�+--Mw#X֚{��������f��t����kilc{>��|V�h8�� �X�h��۲�Y��A�]���i��ڵr�DƷ!�E���:�^�W{ �;�HN�&}�TE�[�"�ڧ�m�Je�f�\� �\u���j35�> WH�bzp�M=yչ_�-jE��*��)��y�A`6��qI7�t#�7�ik��b|Bסku��pѵ��>�'�nD�`nE��}ܼB�͈ܣ�BKΙ7l���W�q%8L�m�z�����Y��ӽLJQ����٠{n��n\2�v�1��4��}4�B�mc��^�]c���u%�1-���>`���Rl^1&#ݵ��y��Iļ`��`n�ڂ�>q^�����h��N���T�����&Ƿ0�XSH>>Iҟ\��Io�&�-�DN�[0�E8A�W��(��������T��K���qQ�H^��2�e�n�N?) �y�������,�ch�-��z�~�R�?R4�Yendstream +endobj +3071 0 obj << +/Type /Page +/Contents 3072 0 R +/Resources 3070 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 2932 0 R >> endobj 3073 0 obj << -/D [3061 0 R /XYZ 181.725 517.994 null] +/D [3071 0 R /XYZ 71.731 729.265 null] >> endobj 3074 0 obj << -/D [3061 0 R /XYZ 71.731 484.953 null] +/D [3071 0 R /XYZ 71.731 741.22 null] +>> endobj +446 0 obj << +/D [3071 0 R /XYZ 232.492 707.841 null] >> endobj 3075 0 obj << -/D [3061 0 R /XYZ 71.731 415.214 null] +/D [3071 0 R /XYZ 71.731 697.476 null] >> endobj 3076 0 obj << -/D [3061 0 R /XYZ 71.731 371.378 null] ->> endobj -1397 0 obj << -/D [3061 0 R /XYZ 71.731 353.446 null] ->> endobj -442 0 obj << -/D [3061 0 R /XYZ 339.876 310.348 null] +/D [3071 0 R /XYZ 71.731 685.559 null] >> endobj 3077 0 obj << -/D [3061 0 R /XYZ 71.731 298.177 null] +/D [3071 0 R /XYZ 71.731 680.578 null] >> endobj 3078 0 obj << -/D [3061 0 R /XYZ 376.087 275.838 null] +/D [3071 0 R /XYZ 89.664 659.821 null] >> endobj 3079 0 obj << -/D [3061 0 R /XYZ 71.731 268.699 null] +/D [3071 0 R /XYZ 131.167 659.821 null] >> endobj 3080 0 obj << -/D [3061 0 R /XYZ 71.731 237.815 null] +/D [3071 0 R /XYZ 71.731 657.664 null] >> endobj 3081 0 obj << -/D [3061 0 R /XYZ 353.441 227.021 null] +/D [3071 0 R /XYZ 89.664 641.888 null] >> endobj 3082 0 obj << -/D [3061 0 R /XYZ 280.021 214.069 null] +/D [3071 0 R /XYZ 300.451 641.888 null] >> endobj 3083 0 obj << -/D [3061 0 R /XYZ 175.77 201.118 null] +/D [3071 0 R /XYZ 450.128 641.888 null] >> endobj 3084 0 obj << -/D [3061 0 R /XYZ 397.028 201.118 null] +/D [3071 0 R /XYZ 71.731 639.731 null] >> endobj 3085 0 obj << -/D [3061 0 R /XYZ 71.731 198.961 null] +/D [3071 0 R /XYZ 89.664 623.955 null] >> endobj 3086 0 obj << -/D [3061 0 R /XYZ 71.731 184.017 null] +/D [3071 0 R /XYZ 135.13 623.955 null] >> endobj 3087 0 obj << -/D [3061 0 R /XYZ 462.474 151.205 null] +/D [3071 0 R /XYZ 174.159 623.955 null] >> endobj -1398 0 obj << -/D [3061 0 R /XYZ 76.712 121.616 null] +3088 0 obj << +/D [3071 0 R /XYZ 250.842 623.955 null] >> endobj -3060 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R >> -/ProcSet [ /PDF /Text ] +3089 0 obj << +/D [3071 0 R /XYZ 341.239 623.955 null] >> endobj 3090 0 obj << -/Length 2429 -/Filter /FlateDecode ->> -stream -xڥ]�����~�`���$��y���F�д�A��a%�N�)�\���3;�䒔xF���pvfv�w�o<��o_$A&�8�/w���|��c�({织�?}�r��,����&�<�x�&��H�`���}VO�nv� �R��]~)��xQ=�~�o�S�������݇��w$��rU<���/�?2�Q@{N/i����=�\I�}�hՑH�����Z�H%�Q��>�}Ad�<�R@�������w;?P����Me" ���&���C�qd��AA� 3^i&�8��k�x�U�3���G]�cG�ά�_�@>-�*$XYT_hUT���T��,Q����"M�u��87��((xpSiK^�+m�����9������E�K}ѕ�&�V_�i;U�3�U�5��+�%H]]1ć��\�M҂���~�û[4)��5���s��Ժ7�H�EѺ�F���c��[�[�z�x+�gd��G�Vp� �$�* -"V@PE�f��#���A���j�nɤ��5����;?�>~���1</���2o���QeY�����Kݳ�5������/��Thz���t�pn�te�� \���줧�D-��3,��K����lt��[�ʺ����Fpz1��k�O���i`qV��G>�QA(4g��S����e�Ĩ%1�T4<�g>���l���������s^3�Ea���F�â�c����F�HHtf���E_�H�i�Ǩ�i0NY�J���bH�]�)��09ÂVC��6���#���5���Hwr\��TnR�+S�}�0(�� ��oP�%�0��{�bĚ�y.@�0�[�T�8�U��i}j���Ǵz>�?�q�h�_�Nz�y���N�̱�p�M���� 6=��ق `� -S:�aϧ�����Ĝ��{.ЌQL�1J� �9�^4���h`;?��#)/5*�wM��dD$҉�i$k^ِɰ%���Ƨ��9�30�d�%��t ����`usIF�aV7�Ԋ4[�x�{���`yau��mGo�β@���,���B�%' kȥ=S�������l"��C,������ɡ�|����;D�Y,":R�er�����ǻ�@q*d�Ѡ��� ����C)���a ��(݄I*����]��T軋���q(��"��ᯐ�2/ݶO�X�^����G��!���d�F���?a��N� x�F(0��o���_�����-���Ύ$��1q1����<�IP(@`v@A!n������F�����Lkt||���)�k�O�2���2�{ä�3 �� E�̾)p�I!��x{P9䔶�F��%H�m��8��P��-��Č�t���:��'�����M<S<��풑=�7o �$7`��]DL�σ��q����e -�h�-�?"oAK��@057Uf��l�A�(h��V�����u������ ��C -clꠔW�bL _��!6�XM��&�h�ʋ�w&u�6M]6�d�u����������i�B�%ꛁ��$zg��8@xl��B�«�n?��'�m&} !,M�onVڮp:Yh\i}�Gշ����f -��}���c��z� Y"�vr��v�Է�H2��-ׯH�Md<}t���^���3���݉�?ab�0��r�4�|����Zӕ5��@n:�����d����O 1?�{�$ �0JA���(�%��T{��2'�A_�7��ܙr�(ڥoT�� -l�mC�:����&=�\���,lK��| ��ގ���t9��rU��I{3��R�Ggדw��=V����G�V�Ӫ��#�ϣ�C�A`֗٘�4�t�3w���b�g����Q�ϦV���"�V�ʔnD����:�[2z5WO�ҥ��j'�MF_+�U�q���Lw�-v�h�s����R�@frOMm����4I�n��!eu�w���X�=#;1����EU��Le�o��|.7���E{-dVf�ġ�uU�87U�(�c�+�^W� -��QձO*���<'�9�bM�Ð#&���N�-':�o�El �X�r���k�Ĥ�ؙ�a���lVf�ȸ������!�ea����p���z~9�p��������w���[����piK��0'�F�r)G��1����L�MC(����K>��S�aPK������8@�3u��P��4�B�d�*m��0�� ��[qτ��@Vi8�,]��� -���4���#� m2�/�F/�>0�z���Q!�r}2E�/;�P���a���a��>k�9;n���;�h3D�d���2�Ʉ��ed��/�������8~�\R�����}UR�ߨc�]S�?����^wmb��@m�j���O+�����j+������QD=�i{�����[6<���N�~�p����yG��o�Q����1\���KN�G0�Vendstream -endobj -3089 0 obj << -/Type /Page -/Contents 3090 0 R -/Resources 3088 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 3129 0 R +/D [3071 0 R /XYZ 467.454 611.004 null] >> endobj 3091 0 obj << -/D [3089 0 R /XYZ 71.731 729.265 null] ->> endobj -446 0 obj << -/D [3089 0 R /XYZ 232.492 707.841 null] +/D [3071 0 R /XYZ 71.731 603.866 null] >> endobj 3092 0 obj << -/D [3089 0 R /XYZ 71.731 697.476 null] +/D [3071 0 R /XYZ 71.731 577.963 null] >> endobj 3093 0 obj << -/D [3089 0 R /XYZ 71.731 685.559 null] +/D [3071 0 R /XYZ 71.731 563.019 null] >> endobj 3094 0 obj << -/D [3089 0 R /XYZ 71.731 680.578 null] +/D [3071 0 R /XYZ 76.712 490.257 null] >> endobj 3095 0 obj << -/D [3089 0 R /XYZ 89.664 659.821 null] +/D [3071 0 R /XYZ 136.488 446.711 null] >> endobj 3096 0 obj << -/D [3089 0 R /XYZ 131.167 659.821 null] +/D [3071 0 R /XYZ 76.712 387.039 null] >> endobj 3097 0 obj << -/D [3089 0 R /XYZ 71.731 657.664 null] +/D [3071 0 R /XYZ 89.664 369.106 null] >> endobj 3098 0 obj << -/D [3089 0 R /XYZ 89.664 641.888 null] +/D [3071 0 R /XYZ 71.731 353.998 null] >> endobj 3099 0 obj << -/D [3089 0 R /XYZ 300.451 641.888 null] +/D [3071 0 R /XYZ 89.664 338.222 null] +>> endobj +1399 0 obj << +/D [3071 0 R /XYZ 71.731 318.133 null] +>> endobj +450 0 obj << +/D [3071 0 R /XYZ 304.825 280.917 null] >> endobj 3100 0 obj << -/D [3089 0 R /XYZ 450.128 641.888 null] +/D [3071 0 R /XYZ 71.731 270.552 null] >> endobj 3101 0 obj << -/D [3089 0 R /XYZ 71.731 639.731 null] +/D [3071 0 R /XYZ 71.731 258.636 null] >> endobj 3102 0 obj << -/D [3089 0 R /XYZ 89.664 623.955 null] +/D [3071 0 R /XYZ 71.731 253.654 null] >> endobj 3103 0 obj << -/D [3089 0 R /XYZ 135.13 623.955 null] +/D [3071 0 R /XYZ 89.664 232.897 null] >> endobj 3104 0 obj << -/D [3089 0 R /XYZ 174.159 623.955 null] +/D [3071 0 R /XYZ 71.731 230.74 null] >> endobj 3105 0 obj << -/D [3089 0 R /XYZ 250.842 623.955 null] +/D [3071 0 R /XYZ 89.664 214.964 null] >> endobj 3106 0 obj << -/D [3089 0 R /XYZ 341.239 623.955 null] +/D [3071 0 R /XYZ 71.731 212.808 null] >> endobj 3107 0 obj << -/D [3089 0 R /XYZ 467.454 611.004 null] +/D [3071 0 R /XYZ 89.664 197.032 null] >> endobj -3108 0 obj << -/D [3089 0 R /XYZ 71.731 603.866 null] +1400 0 obj << +/D [3071 0 R /XYZ 71.731 176.942 null] >> endobj -3109 0 obj << -/D [3089 0 R /XYZ 71.731 577.963 null] +3070 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 3110 0 obj << -/D [3089 0 R /XYZ 71.731 563.019 null] +/Length 1920 +/Filter /FlateDecode +>> +stream +xڥXݏ�6��"�\T�+������ �h3ź'Qc�������)R�'�[���HS$E�G�rG~�(rE���K�7 G���m��Í��X2w���|��d���Q ��d2�|Oġ7���t��V�x���=g�}�g�|C��f�:��n�����~�v���H$��=#3���Gn �`��u�Hā���+��+��YUe��|�{�)���E^gW�.���ثfYW�=������ē��Bm�Cs|��U8H�C�'W�����"�n��R�HV+%�X����a���y�CI+�y%� +`�Ye_+9%�9ߒ��Iw�b���Ǣ�_�7)�Mc�ݒ<�#�z" )�h*� ��R��ZUDh��ԋ���Pz9,��H�G/X:=v�2]�t��R�+�����I�χQZ%�HY������R��wK +%*���Bj/��� �x�ӿ�/E�3��TDe9�n�5����FI ��HD��դ� ��;UU' +L��xU�ٲΊ��Ғ�� +M����O����S0�U��Zjo�i�-c��`�� i�]�2[������/TYm�����z�V !N�E�@ rGS7�zp����Ē�Raa�D ��؊1��l�>[�<���h�T�4Yi2gm�����8���텘�I,d�_��%s)&F��.�䌭gcr���Z��X@J�~h!�h�0��UG\9��P>���3��{˳Y�MR�,hC���D�q�6�x6���a�.��Qɚ�o�D�����3��Z�g.�9�Ƌ#���]��[J�{�1�yVQ^��,���7� +u��/6�B�Q�٥&�4��*]��^ƛ�W�9�Zbv�4�;��/e��ણe��K���[���9t�R� �@xnt_��E|��N.�kh�y|]�}���W���z��H���'\��Nvx��Nxa<T�"���0x ���h������f�A�?��0d�6�M�dm�fmr|�J�����3���ngt���g�p ע/�/�o��!���< Q@x�����d�2�\J��ЧM0����ߵ�C*c�[t�A�O[��l��'9�F��h�����'���!$���%@��.�yh�Y8_1�W:<@�ZW�+Ӛ N�����;W�+Ig��8ltܩ���%��4ߨ�j���{ƶ� �uYu�/wͪm��~��J=�xS)���#,�b�U&����"J} hZ�:�$"�Z��B'������2�B��]$��vwH�1G�=��,�%������C�H<S�`�j]�Z��W9u���p��Չ�k����!3n_������>�;B�6LV���jXqJ����1k�eĸ����l@���ɛO7`fX��M̛��f�M����G��~��E ��A��F�)��I�fǘ���f� Q�IoS|I6MWU�&g��w�}Zf?����p�b�Ô�"|_xu�_Ɠ���������4~?{|3���u<q��-�o�g�o��6g�ٗ+���$ֽJ ���~�w(�c�ӄ�:#�ꞹni�%C��@QϜ�T��tG�V��rI1��d��F�ղ)��x�Ź�B�%TF�1���2r����1d�i/�R�oG���z�����նWCzb(g����x��q�2�W4���[U�hE�mQ]�Ј�<K�7��z��.�&�T~4�����̅-�d*�J��������?#�Sx��FC��?�p��a$d<���������b�F��y,�.a�o%�L�H����c�Y��cI{Z���Ji ����:u���h���D���b�|[;�n����u40�(r�M�W��X�rM^S].ɽ�\B59���=[j�c�>��/U]�}���.P�ބ�xn� +q�.����Xė�R���D����%��^��Z���:�endstream +endobj +3109 0 obj << +/Type /Page +/Contents 3110 0 R +/Resources 3108 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 3130 0 R >> endobj 3111 0 obj << -/D [3089 0 R /XYZ 76.712 513.569 null] +/D [3109 0 R /XYZ 71.731 729.265 null] +>> endobj +454 0 obj << +/D [3109 0 R /XYZ 381.763 707.841 null] >> endobj 3112 0 obj << -/D [3089 0 R /XYZ 136.488 470.024 null] +/D [3109 0 R /XYZ 71.731 697.476 null] >> endobj 3113 0 obj << -/D [3089 0 R /XYZ 76.712 410.352 null] +/D [3109 0 R /XYZ 275.93 687.716 null] >> endobj 3114 0 obj << -/D [3089 0 R /XYZ 89.664 392.419 null] +/D [3109 0 R /XYZ 71.731 641.724 null] >> endobj 3115 0 obj << -/D [3089 0 R /XYZ 71.731 377.311 null] +/D [3109 0 R /XYZ 71.731 636.743 null] >> endobj 3116 0 obj << -/D [3089 0 R /XYZ 89.664 361.535 null] ->> endobj -1399 0 obj << -/D [3089 0 R /XYZ 71.731 341.445 null] ->> endobj -450 0 obj << -/D [3089 0 R /XYZ 304.825 304.23 null] +/D [3109 0 R /XYZ 89.664 615.985 null] >> endobj 3117 0 obj << -/D [3089 0 R /XYZ 71.731 293.865 null] +/D [3109 0 R /XYZ 71.731 613.828 null] >> endobj 3118 0 obj << -/D [3089 0 R /XYZ 71.731 281.948 null] +/D [3109 0 R /XYZ 89.664 598.053 null] >> endobj 3119 0 obj << -/D [3089 0 R /XYZ 71.731 276.967 null] +/D [3109 0 R /XYZ 71.731 569.993 null] >> endobj 3120 0 obj << -/D [3089 0 R /XYZ 89.664 256.21 null] +/D [3109 0 R /XYZ 89.664 554.217 null] >> endobj 3121 0 obj << -/D [3089 0 R /XYZ 71.731 254.053 null] +/D [3109 0 R /XYZ 71.731 513.206 null] >> endobj 3122 0 obj << -/D [3089 0 R /XYZ 89.664 238.277 null] +/D [3109 0 R /XYZ 89.664 497.43 null] >> endobj 3123 0 obj << -/D [3089 0 R /XYZ 71.731 236.12 null] +/D [3109 0 R /XYZ 193.314 497.43 null] >> endobj 3124 0 obj << -/D [3089 0 R /XYZ 89.664 220.344 null] ->> endobj -1400 0 obj << -/D [3089 0 R /XYZ 71.731 200.255 null] ->> endobj -454 0 obj << -/D [3089 0 R /XYZ 381.763 163.039 null] +/D [3109 0 R /XYZ 332.302 497.43 null] >> endobj 3125 0 obj << -/D [3089 0 R /XYZ 71.731 152.674 null] +/D [3109 0 R /XYZ 71.731 490.292 null] >> endobj 3126 0 obj << -/D [3089 0 R /XYZ 275.93 142.915 null] +/D [3109 0 R /XYZ 71.731 441.475 null] +>> endobj +1497 0 obj << +/D [3109 0 R /XYZ 71.731 398.7 null] +>> endobj +458 0 obj << +/D [3109 0 R /XYZ 398.777 359.328 null] +>> endobj +1498 0 obj << +/D [3109 0 R /XYZ 71.731 356.358 null] +>> endobj +462 0 obj << +/D [3109 0 R /XYZ 359.858 324.857 null] >> endobj 3127 0 obj << -/D [3089 0 R /XYZ 71.731 109.874 null] +/D [3109 0 R /XYZ 71.731 316.405 null] >> endobj 3128 0 obj << -/D [3089 0 R /XYZ 71.731 96.922 null] +/D [3109 0 R /XYZ 71.731 280.857 null] >> endobj -3088 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R >> +1499 0 obj << +/D [3109 0 R /XYZ 71.731 179.801 null] +>> endobj +466 0 obj << +/D [3109 0 R /XYZ 381.114 144.334 null] +>> endobj +3129 0 obj << +/D [3109 0 R /XYZ 71.731 135.882 null] +>> endobj +3108 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3132 0 obj << -/Length 1655 +3133 0 obj << +/Length 1380 /Filter /FlateDecode >> stream -xڥXY��6~�_a�I� -uK}�I[4� qMd�^���������%ْ�M�V�h8�}Ñ홀?{�V��É-'�g��J����+�5�2��,�^�r�YlŁ;[ng�V(�Y�:V�;���o�v��Y�s��k�s���"�A��$�iM�x��fYb�����~����Њ#�bx�YN��掰bǞN!���)"���.'�S`����i@Ql�7�ѾN��o^r���Y�]��ڴ�ڣm���2a��s�h�����i��L˳/��@�ܞh��9�'�~�'�|��E�ec�]�7��>K��*�4oJ~�ҚF��ܴ���Ń��F�5�f�����D%�J�MZ$P[>P�e��,*���~��v�>K��V�dK��$-�Ё5n.���v�ا��|ؕ��Og�D!u���ȭi#i���G ��7�`̋rqZ8Ŵp�J����$�P� '4�� ��Ц�D��>��.V��t�D�4�*'yRl���+�� 2��b -��u8Ěf�^I1�h��ó���,?�/��9�/V�4ݳ���1�.�>1��˷���;��@�,�ă�^(��&H�����C�������X]9큊"�?���CY9�!�ڈQk -L�6�PO�B����_4�?Bw����!�";�g_4f_|̾qc�yb������N�� =��i�n�l�G�S.�}�Z��:��,e�iXX���O�H�m�6�:BDd������?��>�"����蜣�V��s����CJ_�}bv�F�WVݘ鲙'�"$�z���µ���^RHc���(Yc�K�GyR��Ww'|;�e�6�N�u�n��q]�9�@�5�h��� �KX�d��,�֩�j�%����@>��*])� ���h�! ��uI MuJj���y�G�m� -� ���� -]�b$�.y0|�-���1�eA}x�Q����ڒbCR�<��0I�4�Ƅ���%��� �ђ�]5�t�*6�d-o�\�ĥ��";Ш���xK�+�q�h����(7i��(��k��_M�WUHAw��MU�|�ۑ,TOi-54ی9WKy������%��|�˦�65f����<��o��+�-`Y�ןE�����{ẖj/`+~3�������k�Y<�-�o�6���������K��;�=�TѶ�lqls�bCÎ_{ad�C�=��x�$Q����L�P� O%��ޝ '��T<������,d�d4��h�|�ײf��R8<5� �m�6��(F��[��TF�������r�!�0!J;^@��!�L�xPa��!<e�ޱY]<h�/�d��d�p�x�i�4?Vݮ:�fW�g"�� �R[�W�a�k���E R��N�[�ĕ+'T:5�#���o?=�T�������S���4x�+��뇖��!|�_��b -����m���p���u^w8�%0S8tǀ� 0��A&O��L�urO�:�a��w�mU�,�p�w��g����te��m��FN@�+��0�.W^�EW�a0l�x�c�U��(��㕰=���5]ɼ�������ѯ1 �m��4��r�O�Ɛ����[��_��b5��;�Y�^�%�W���;�%mDu�ι_Ǟ��lG�endstream +x��XKo�6��W�(1#Q�kov�)Z�H�X,�=(m�EC�M�_�iɒ�t=�� ?�p�vF6�9��a� ���Q���Gk�����-2i�̗Ww�;�X代�j4�m��(p9=>Z�Xכx_�b<�m���Y����,_�Լ;���l���.��]�=7`Q�5�����F!��}z~�3?�y�2��j<�m�zI]d�cm���a��+�R}�ŋ(�����n�y<q�_�W��7����W\}u��,�<�A�0;$].sl6e�� +�ܶ�%8q_�m\e2�ᗬ�P�Z�vf�#���.hN-�m�H�-�!���ȷ���e�������+�����5�$�8IDY깍��3�P�����S,�����A� Ae9�r�U�yJ_�z�YYT���@�C�Wū1�������'�?�js���u���idŅ��\�T�]' "p}�U?d� ��LZ2�E��Q��;��F���CX��������E�'���@;��yg��k'v�t���4�n4K%��C>;E�g3��ikdNҦE�t~��>������E��� m&<I��c��x=j�T��&��M�rΓ������62' �"tg�"���>�g�;jB�?K�� ��� �6Ӣ y"�K1|Q ��(R�Ͷy.������+[˩��� +���8�w� +Q����q��;�C�r�~r� g��UQ�v�|�zI}��0�aF;�mG8�.N�9���%5wʴ��=��x�}���\��v�4��Md�M�(Fq�b%R�BR��_Ǝmi�&��(�)md�[�^4h�Į�#p�x?s���mVB�w��m� +�����yE��'���0�@7˩�I$�rSfN�C�(5�X��\�Nd���cdz�d.h^�U���hѝ�H`�CM-_���9ՎA�0�� +�"��A�*U)�����j1������|��'Q�9lձƶU�U��v=[���/��8`�15q� +MM��z��~]�)� `��5h����q ���=��yt�m]����P�L��*%���6Z�[��$Ta��c8��[���� �%ۉc����g��*p�E��#��\��V*�.DI#YК}��Ќ�D�8��̀�(���<_(t0��ү�O�`��8�"��4��E�ZW��>��C�ۋ<5 XiL�J�4��I%��ԭZ�e�L�,�ܳЖ�� G�����]���A�`'��d�)[ P���}�*�ۄ|Go���p��5{��>�2�8�9R��Y^��*:N��}��<��S,��{$���縇ܣ��>�ݝ�D4��$�ꜱ��(��{v�ҏ:Z�S}�Ę`�dL��Q��"t�� �ڈ�~7�x�ln�ඦ�ԏ }��Ho]�endstream endobj -3131 0 obj << +3132 0 obj << /Type /Page -/Contents 3132 0 R -/Resources 3130 0 R +/Contents 3133 0 R +/Resources 3131 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3129 0 R ->> endobj -3133 0 obj << -/D [3131 0 R /XYZ 71.731 729.265 null] +/Parent 3130 0 R >> endobj 3134 0 obj << -/D [3131 0 R /XYZ 71.731 718.306 null] +/D [3132 0 R /XYZ 71.731 729.265 null] >> endobj 3135 0 obj << -/D [3131 0 R /XYZ 89.664 708.344 null] +/D [3132 0 R /XYZ 71.731 718.306 null] +>> endobj +1500 0 obj << +/D [3132 0 R /XYZ 71.731 663.412 null] +>> endobj +470 0 obj << +/D [3132 0 R /XYZ 342.285 627.945 null] >> endobj 3136 0 obj << -/D [3131 0 R /XYZ 71.731 706.187 null] +/D [3132 0 R /XYZ 71.731 619.493 null] >> endobj 3137 0 obj << -/D [3131 0 R /XYZ 89.664 690.411 null] +/D [3132 0 R /XYZ 71.731 593.908 null] >> endobj 3138 0 obj << -/D [3131 0 R /XYZ 71.731 662.351 null] +/D [3132 0 R /XYZ 71.731 588.927 null] >> endobj 3139 0 obj << -/D [3131 0 R /XYZ 89.664 646.575 null] +/D [3132 0 R /XYZ 89.664 568.169 null] >> endobj 3140 0 obj << -/D [3131 0 R /XYZ 71.731 605.564 null] +/D [3132 0 R /XYZ 71.731 566.013 null] >> endobj 3141 0 obj << -/D [3131 0 R /XYZ 89.664 589.788 null] +/D [3132 0 R /XYZ 89.664 550.237 null] >> endobj 3142 0 obj << -/D [3131 0 R /XYZ 193.314 589.788 null] +/D [3132 0 R /XYZ 71.731 548.08 null] >> endobj 3143 0 obj << -/D [3131 0 R /XYZ 332.302 589.788 null] +/D [3132 0 R /XYZ 89.664 532.304 null] >> endobj 3144 0 obj << -/D [3131 0 R /XYZ 71.731 582.65 null] +/D [3132 0 R /XYZ 71.731 525.166 null] >> endobj 3145 0 obj << -/D [3131 0 R /XYZ 71.731 533.833 null] ->> endobj -1497 0 obj << -/D [3131 0 R /XYZ 71.731 491.059 null] ->> endobj -458 0 obj << -/D [3131 0 R /XYZ 398.777 451.686 null] ->> endobj -1498 0 obj << -/D [3131 0 R /XYZ 71.731 448.717 null] ->> endobj -462 0 obj << -/D [3131 0 R /XYZ 359.858 417.215 null] +/D [3132 0 R /XYZ 71.731 502.252 null] >> endobj 3146 0 obj << -/D [3131 0 R /XYZ 71.731 408.763 null] +/D [3132 0 R /XYZ 71.731 436.164 null] >> endobj 3147 0 obj << -/D [3131 0 R /XYZ 71.731 373.216 null] +/D [3132 0 R /XYZ 71.731 385.191 null] >> endobj -1499 0 obj << -/D [3131 0 R /XYZ 71.731 272.159 null] +1501 0 obj << +/D [3132 0 R /XYZ 71.731 252.553 null] >> endobj -466 0 obj << -/D [3131 0 R /XYZ 381.114 236.692 null] +474 0 obj << +/D [3132 0 R /XYZ 341.27 207.299 null] >> endobj 3148 0 obj << -/D [3131 0 R /XYZ 71.731 228.24 null] +/D [3132 0 R /XYZ 71.731 194.861 null] >> endobj 3149 0 obj << -/D [3131 0 R /XYZ 71.731 192.693 null] +/D [3132 0 R /XYZ 71.731 170.631 null] >> endobj -1500 0 obj << -/D [3131 0 R /XYZ 71.731 138.262 null] +3150 0 obj << +/D [3132 0 R /XYZ 71.731 165.65 null] >> endobj -3130 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R >> -/ProcSet [ /PDF /Text ] +3151 0 obj << +/D [3132 0 R /XYZ 81.694 144.893 null] >> endobj 3152 0 obj << -/Length 1679 +/D [3132 0 R /XYZ 71.731 142.736 null] +>> endobj +3153 0 obj << +/D [3132 0 R /XYZ 81.694 126.96 null] +>> endobj +1502 0 obj << +/D [3132 0 R /XYZ 71.731 124.803 null] +>> endobj +3131 0 obj << +/Font << /F33 1210 0 R /F35 1437 0 R /F23 1105 0 R /F27 1112 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3156 0 obj << +/Length 3151 /Filter /FlateDecode >> stream -x��XYs�6~��Л����x�O�ĝ��$J2���Il(B�#��뻋]���&��g`��]~���� �"�a���`�:s�yy&�c�,�������$" ��t>����d���o0��p���Q�p���'�*/��y� �e;����(�����n�݁�$�O�gy������" 4�~�<6��B�b,�eQ켭���謝5D��u�6�.i�)o�4�ҫ����S�M�Q��;�X$^b�M�1���$t֪Z� ��ZU5N#G�y��V�bBC��'��T]3m�hr�6�3׀gE�mQ�N��� �> �E�eF�u�^���`���G�M:z�3��7 -`�|��u��`��aQ��;N��RD,��T��.QN(�8Avfb�x�Yz�#-�bWW��0ҵ;ntwĢ���)�����J�M���J���2mq]2J5��_��wE��a�x���,h�w�}]O�vB��X�=1^59����CRZ�<��q�>�����< -(�~�z��x��,������i@O���z���^� ��9 �C���lxS���x�' -�bE����W*0*��Q��ս�4���U���YZrn�a������>�>9�{R����[�A�S :`�"�ю�"����������]�'Jg����gf��-ᾞ�]=�� ������EI��5�Ǵ(�a��,�㲄�M��Ëәn����IT��M�*�:���L]��U^R����?u�W�Ըݖ����~�/]��E^C�˨o�*@b���Ҳ!�1F��CkL�ƔXf�O`�,i��#f��,ߨK��.�m=�PΣ.�u��y���tW�5s| -���/�`�Z��m�L�)*��' -�Z��z����������9���<lնľU�7/&Ъߧ�M�w5�����r@Cg O|Qq(�$�M����zQ���4��w -�������C��?Hl_V"���~߬r�YzN�1T�d>�yP�a�'�L��:T��4��H��|��y�rA�{ޢ�cx�(�[�x~`�*m�Jմ��Y糯D1EQ7�9�h�ϨS�fm�7�:W��a�J[���L�%�R�s1B��6��,m6en���V`Ҕ���I��g����{m��</�A'߂=�:@��z/-ˁ_�{ʠ�x��[��!�]���������e�o�͐�7��"��U��s|mxt�ų%p��gMt�ٍ�ħq�x���OἯ�i������Ӿ��+�G�*�,-�r,�r�j�����mG�$is�b�����F�V|��\���):#�o�'�.�ٔ�q��U��z1��v$��Bz��A/sE�����H�k�1;��} -vuK;ԗ��9���9��5Ql+ ӕ��]�__l��L��r�3�Rh��h�`7�7r�]��'$ԁsZ���ߑ%�f�9�x`ralȉ���Z�^B�����([x��'b��&�o�"�ic��+�u���5>����U��i+�� ���ȗ�h�iTiM \j�p#��o�l�`g�ix]�-��)�4:З%z�7x��XM[R|�i��Dc�#gy[�0q1�F��������U2��;|OE�*v�����f�2�=�#G��8��N���e����<0�A��~���%#�endstream +xڅM�����·'Om�(Y_�i��N:���}Im�D[�J�F}���(ɒ�3>�A��,v��.n@㧮�������0��1��r\�|���㟃`��i�^/��繱����w��߽��v�/d;�n�C� \j?�uٔ=���J��ƽp���U%��}��_'�a�i<��l��8��)B�>��MN���B����=H��K�����r�H���x�;��+�А�n�=����˾����� +E��!�Y'�G���"�ؓf6���%��]�[�~��V^U�"[i������@J�TZ!X�k5�&�/{�������Hw� ܼ��4$]"J�e�1�@�p�?��4~��^�����0h���`�ו � RO{0�9�e�`I�,#�1���5l�NDrmI4z PV���d�pn��ˠ+j� ��%e��2�Ar��> +��"GVt:8Ө�Z@Q|K��np��]�4%ܯ�W�(b�L�sR&�NI���d���0�9��E�,V�t��֕�0!�<��a�0�Ϫ�'�41Q�L���_����S�1���O`�9B����y��6�M�_���<D�6��F����2���~��l;Y-9�9Z�'�u�i�e�neS���s�Q[�YA���iC���Sj��lp缪lH(~���9�Fcz���s����\���)�Jj:�²/�B,5K�� zJ8b��:�b-�}��9��]3�F~�?�o, �n +��C b:Th3YU*_a��E��%ٗ���&��T�d��z㧁u�~EvM��N��IPh���KO�K�K��!��j�����q���7��0�@�<h�x�&S������5��"����י6K��\)�/I���#�ڶ�Q�Q:�q�Y9�Ma���,�-%�YI�|�%Py���D(�[H�Ң����@+���ٽ�<��p����$��:�1P�(�Wf� 96��g�� n��T���Br�8+�0$T��1��7ŽE���K�� +A|%k�]T�A��݈��kA���W�k�?�����ﱈ�H!��`����\�~B-1 �;gF�0�):-/���sxvq���B2�z��4��0�b�e�'֛i��~��}V�|�Է4���h���=Y��l@����xy�.fN���ږ �6�`��+G�C�n�oΆ{f&/S������ȹj+���MA +�^��|"���`�M�#�`�v�SQ��������=�s��e�uZ-=3@�Ӽ��s�c�ފlvs|k���� +� ����<ܯyn���'�;#$$����2V ����DR�KF �Nj��eD�?Ԥ��4i3_#�Ye,�7�j��cwE|�C����?��˱�c-��_ �GNkvӕ�d��&��US���~>@J[��W\���l��.eA +��1;��G�)� �s.�%yg>�;#T!�����@ yk|VrX]�t�x�h�x��b�oix�A�50�2�9��I�ho�@0�4#^\�#o����a�}SaP�C�K�O=!I��n���[���VD�)�&�[SX�2G"N��d���"��S +yJ�g��6�%�5Oex���/t#��ozP���4���� �P:�s%e�A�gqK�l��3A�G�U������8�, +<��`�hegc�AF 7b# d�2袭@J&<�y���z�rZ�e奞��fj���Zl�P4>��B�QH��7v���F}%�Ʈ���ЍF�@D3��Z��˚{tU�s���K#�'��E�`C2���@�#�:g�ɱgҜc���� �(V,�H�\��H%�� p���l�ٓ+0]��NG�C�S�X�A�{�@J}<�i{������� �S�.N]j���=��S�b+8HDS���J��On=��[�����e��H7#q�͕��N�@� +���2��G�M���s �h=;K����s���Y ��9ls�L�t��A�թ�kc'���<kN��Nq7//h(�)�\Q�Q����K�����y�LR�*#Ʃ{bx��w���r\�Pq��ܘ��JR7�N�x�ۉ7/y�{Ey��O����L4��D�$ B<�=�<�`E%�����E�$�f�{����S���kB��wN�O7J�����y�- +ŨwN��?<�g�Wd����j���.��Y:��Β�T����s�<S��y*��{&�o$�����s �+Bd����s��P�5 ���=l��9����(2�Զ�m�.$PH�k���� Y�����M�-�O=ѐEy&��{l�ǐ%�S����=��5�Ií��'�ҔeEB/�N/���j�-��?m���!0OPa`��Q"��=�i�+��@S�� ?���U���Ym�LS��6���� �ȩ-En��%�/D�'V%�L`/T�Z�x�>����J�7�ijߊ���� +:����w^�;���.7� �vw<�%�l���u��m�@Yb����o�Юc�I�����Rw�<��i�""����y�{Ǟfj�S�|H���6�t�)�A���gi"�W���l���������Z�I�%�!Y�3��6�&�1f�����)"��qf��g���l>t�6������3��)�5!d���nx +�5� ����9�8W�| �H���uK=c��1)�A�(�"��&��%���n��ZwL�\��i��-�W6@3O*_����2��������w5.g +�EØӃ:�Ҷz�?�{ +����N�4�R��&���`���pc�~����T�`�ʲ���X��Jp��3E�@���6Y�dM�A���f�Cq[߿�~����3��,1�:h�pf�|�x�Ga��%�&CǸ�:�p#���TO6���u{/\|�Z�G�g���9����@�K�Zf�T�Bp5���������Ӆ������8@r�ˠ�hB�r'K�a@Th��������}�� �F�ɲ��,�eW�ײƚ�p�-�F�ý��Ȓ��l�aq<��#��Φ���W�z��)�[���A�t��=\W_�������o����S�&"~���e��O\ϷDP �ཿ�l9�~i0�endstream endobj -3151 0 obj << +3155 0 obj << /Type /Page -/Contents 3152 0 R -/Resources 3150 0 R +/Contents 3156 0 R +/Resources 3154 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3129 0 R +/Parent 3130 0 R +/Annots [ 3169 0 R 3172 0 R 3175 0 R 3177 0 R ] >> endobj -3153 0 obj << -/D [3151 0 R /XYZ 71.731 729.265 null] +3169 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [141.14 304.469 205.897 313.38] +/Subtype /Link +/A << /S /GoTo /D (upgrade-cvs) >> >> endobj -3154 0 obj << -/D [3151 0 R /XYZ 71.731 741.22 null] +3172 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [203.157 286.536 267.914 295.447] +/Subtype /Link +/A << /S /GoTo /D (upgrade-tarball) >> >> endobj -470 0 obj << -/D [3151 0 R /XYZ 342.285 708.344 null] +3175 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [214.225 268.603 278.982 277.514] +/Subtype /Link +/A << /S /GoTo /D (upgrade-patches) >> >> endobj -3155 0 obj << -/D [3151 0 R /XYZ 71.731 699.891 null] ->> endobj -3156 0 obj << -/D [3151 0 R /XYZ 71.731 674.306 null] +3177 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [81.972 212.19 134.276 220.727] +/Subtype /Link +/A << /S /GoTo /D (template-method) >> >> endobj 3157 0 obj << -/D [3151 0 R /XYZ 71.731 669.325 null] +/D [3155 0 R /XYZ 71.731 729.265 null] >> endobj 3158 0 obj << -/D [3151 0 R /XYZ 89.664 648.568 null] +/D [3155 0 R /XYZ 71.731 741.22 null] +>> endobj +478 0 obj << +/D [3155 0 R /XYZ 249.392 707.841 null] >> endobj 3159 0 obj << -/D [3151 0 R /XYZ 71.731 646.411 null] +/D [3155 0 R /XYZ 71.731 700.488 null] >> endobj 3160 0 obj << -/D [3151 0 R /XYZ 89.664 630.635 null] +/D [3155 0 R /XYZ 71.731 628.772 null] >> endobj 3161 0 obj << -/D [3151 0 R /XYZ 71.731 628.478 null] +/D [3155 0 R /XYZ 71.731 546.083 null] >> endobj 3162 0 obj << -/D [3151 0 R /XYZ 89.664 612.702 null] +/D [3155 0 R /XYZ 71.731 481.325 null] >> endobj 3163 0 obj << -/D [3151 0 R /XYZ 71.731 605.564 null] +/D [3155 0 R /XYZ 71.731 466.381 null] >> endobj 3164 0 obj << -/D [3151 0 R /XYZ 71.731 582.65 null] +/D [3155 0 R /XYZ 108.889 445.226 null] >> endobj -3165 0 obj << -/D [3151 0 R /XYZ 71.731 516.563 null] +1503 0 obj << +/D [3155 0 R /XYZ 71.731 394.018 null] >> endobj -3166 0 obj << -/D [3151 0 R /XYZ 71.731 465.589 null] +482 0 obj << +/D [3155 0 R /XYZ 367.202 354.645 null] >> endobj -1501 0 obj << -/D [3151 0 R /XYZ 71.731 332.951 null] +3165 0 obj << +/D [3155 0 R /XYZ 71.731 344.28 null] >> endobj -474 0 obj << -/D [3151 0 R /XYZ 341.27 287.697 null] +3166 0 obj << +/D [3155 0 R /XYZ 71.731 332.364 null] >> endobj 3167 0 obj << -/D [3151 0 R /XYZ 71.731 275.259 null] +/D [3155 0 R /XYZ 71.731 327.383 null] >> endobj 3168 0 obj << -/D [3151 0 R /XYZ 71.731 251.03 null] ->> endobj -3169 0 obj << -/D [3151 0 R /XYZ 71.731 246.048 null] +/D [3155 0 R /XYZ 89.664 306.625 null] >> endobj 3170 0 obj << -/D [3151 0 R /XYZ 81.694 225.291 null] +/D [3155 0 R /XYZ 71.731 304.469 null] >> endobj 3171 0 obj << -/D [3151 0 R /XYZ 71.731 223.134 null] +/D [3155 0 R /XYZ 89.664 288.693 null] >> endobj -3172 0 obj << -/D [3151 0 R /XYZ 81.694 207.358 null] +3173 0 obj << +/D [3155 0 R /XYZ 71.731 286.536 null] >> endobj -1502 0 obj << -/D [3151 0 R /XYZ 71.731 205.202 null] +3174 0 obj << +/D [3155 0 R /XYZ 89.664 270.76 null] >> endobj -478 0 obj << -/D [3151 0 R /XYZ 249.392 167.986 null] +3176 0 obj << +/D [3155 0 R /XYZ 71.731 263.622 null] >> endobj -3173 0 obj << -/D [3151 0 R /XYZ 71.731 160.634 null] +3178 0 obj << +/D [3155 0 R /XYZ 71.731 207.208 null] >> endobj -3150 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R >> +3179 0 obj << +/D [3155 0 R /XYZ 71.731 142.078 null] +>> endobj +3154 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R /F48 1896 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3176 0 obj << -/Length 3201 +3182 0 obj << +/Length 2475 /Filter /FlateDecode >> stream -xڥَ�6���Ty,�N�f�����1� IT���_�#ݝ�_R�|Uu ��F�E�ERUb����E<�����.���F�� ��(�·��w��]b'��{:�|DZ#'�E�kǁ�{�~���e;�nt��l��Ϫ�.z���@ƽ�.e)��=������;�";�����+��h��,Ӊm���xE���jj�$���������\1Ɛ+jT�s�Q���,��ESӌ���4��Ee<���g��/jMx��/.uq~��\�~u7�5O�nL����Ϫ����['���k'�'2M���uA:�镾��:����!}?1�Oָr�U�$h�'�ñ�f�4�!58��^:������c6���p���}Va�C^0�V^��7�:��� -���Z���y�ի���C����Ihk��`כ�=}SY�*�`?�%7ݒ��z�p���T�d��|90U�����*�Aw�4��nl���9���6� ����M��5}I�z�1��v�ak!m����@�k�@]h�s3����M5���'��T��i��� O���b/��s^�A0��҅^z����d���1rF�f��Y"�[J�����BK��i+����4�cM#���he?0;�6��A0os}V���WWǓ���7�\��<���o��� n�KU���\r�8)�0$�j@&�ĸ)�}9<��Nf� ���Ϊ��֮Ei�KN��k.hת�ol��s� ��L�A��z����QK�p��ʙ��1Lw�N��t{߱xt^.N�%��Y@�K�#�[T�c����8ا���R}K�t�@y�;ۖ�T -���v`j3'ۂHmlK�Rv��\+G�CzS� �|\��L���ǁ��3Ֆ �*�����A�Ӿ�; `m���������0��QO���=�s��a�2����!�iܵ�9�1tn!��e��[�]�X��<��MMC.�Ǎ�eڨ�n�3vŀ�1.cY�ɞ�ZQB$U��4������Gt�Au��ߞ���\i1�,�`�9A��P#�n�+���=:�7��I�_�m�1�B������rZ����<��ʜ��16-�B�h��b��M�ݟq�:�)����Ie�����=jM���s�ɕ���P�ܻ~ ��i�0Y-�p���æ�G(�zp���Z��&�7�]������eƈ�a���zA�t�����|�`H����'$���E�H<� ��vH�g�����)lD�#'~S2YTp���B� �t`�d��Ő̇��H��`^h���͠�!<H�'<w��CJ��c����\��.N �qu:H�(ԁ�j�9S�u��O&: Z�i�hsD�V�+��2Y4�V %�c=rb�d�f,3��e䥖>�fj=p/�V�=����p��H��#�w]�4�W��kd�p�#}��p�Q��C{-��e�-:*]�9iQԦ�W�E�`C��t�@�#��'�ʱgҜcs�g��$���+�HŬ:ϳ=�922Hf}[`� -�� -�ڧB�]��-�4��ڸ���4��!&,b�1���)_ONl�>�f���U�<��7"���}S�$�j��'���s����~�=�ɈA�G3%K"��bȩ�7��= -OZ��~-|��k�:���Xs�@�k���r�~��_Ր7�m�����Ҥ�tu��-*�6ױ��T��Ysw��YqFC9�N�䊢�+�7.��ym�n�*C^!��l�QbG��y!��ݮ��q�s]�X����+^qb�����;��)wyo�"���r�ݿ>Q +��D���g��lȠ�T:����$��]'��$�����`K�S��n�1\L���=㼹یB1�ݾ���ݾ�{Cy���Tu�ȫ�Μ����$�Ju�\����=��Rn �e���ߗ�q�K�!�5��8$��&1�i�B��-����u���{Cy�o��u�.'P6Hw+���� i�W���e�Y��qOO箰[BoY�w%A�P�ޗ�q�K�!��4o8��iO�~/u�V�t��t�APk���d��b`�&A!��q:,a�}�2�sje rx�cQ���4D�1��Bo���T��Yh��LSA�e���b�S��)K����V){��x�p� -��j���L�:�q���s^h}B������Η�V:�CS�,�P�O}�3[��[ٻ����j����B��7fk���@C��?aٻR7�UYу4\![����� ��cO#�,Mn$���c�[ڂH�� ��h�36�'LU*u�f٤�a�Fg�� yH���θ̱�nW�K�I��x��~b���:B��\�|`��@x)��.s�s�����g�];��������`�p������x\0Á�c�RK�06t���: -��uJ�V��GFa7�v�tL��]��4b��@h�z�KsE�dsJ���3 Nr�]��˘�nhs�Q�^�V�~�F�k�k�Ꚋ:\�t���[�ܷ�MӍ���t� ��,ꒊz��~6�q\�P�� ��+ZdA��E49���`�U\�ę��|�Ɩ^?�D���˛3#��z`�Yf�<�8 ��N`-��:u|� -0�#��w��sւ/]p��@�\�!#��K�r{PU�U'����P��3.I���Dq�dt�A�n��/�S�[�\�ݼ��[mk�1.���e�Y ��ޗ������ -.�Fuͽ��Ȓ��\��b{��#��Ʀ�K��[,�x#���.�Ṣ�3���K���{Y��|�U�)�g�� -��)���ߜ]��������{�tE�Bu��:�;?|z��D �z���h�\ƻ"q4Ҁ>C�[�g�Z���❈�Vɵ��q�eW���kcG�v�x����+pKe�&Su$G�z��.X�j#Xf|% �J�[�k%����Ds�Ra�5{4�/cK�W]��]CL8��ޡ�O����3����Qtp06\�d��5ݭڐ�_)@x�-�Jʬ&���"�J��ϙBC�n]zkf��Bk�w�U��Whԙ~�@�dO��@n#^X�e��K� �Tm|� �w�p�ћ^:z�{�O���o_|Lk�0����}�ax1d'����w���K�� G��c!���"��[���m��1*������L�p�/�:endstream +xڭ]�۸�}� +Dִ$��yj������Z�w���i[YTDi����g(K��&M�`#r8�瓎!��y$r �x#�,]���pq��o"�X1�j����f������drq�_$a(�p��e,�4^��~�U��n���0����v���,���@���2 +���Z-��������w*s�)��%q"`��b�I#��x���b�?�ߟ�w�A����f��F.:����r�T�Xe���Ѡ��wEbER�y�R)�4��E��d�.FB��"�����,�0P]�z5�H�E�uVQ� %2������=,�0��?�s��iT�I�hj�:/��2�v���"X������ڣ��lU��������gf�s�z�UVӚjxS9t�nz���ziG��7��g��(��4�o"�D��9U��S���<菚�Lڟ�(��������\�#S0�v��~�*(��#0�"0N���f��V�!��&�A�</eMsK��U�4:*��Q��B2��N�U���"�w�D#�2�rg|Ǐ+�`Z���~��'2��@<����7����\<'���E��ENwxEqZ��?�S[k��MP5��{���k��=s��ln�����U`u �(���p�����{��=��#4&�ޣ��X���-am����;�_]�f�Q��n��Ic�r�1o�U'uN1�%xg����������aS���7U�59 ��I`U��Q�kM����N�څ�&m+����=0͘i�m�܅}�>���{Ɵfʈ�'OL3E���A������#;�.�]�XB<⅋�%�+��t�k V�f��� �S���%z� 7]��(��^u����>��z�.�on����]�8a`#�U�R���q��%!R��<��a{ +�Y���:�,զ�G��3�tD��R���M�q���%�x�ھ�^?bɧu��}��Ȃ�!v^�q�J�Z�b }B�HS�ܼ�����@���W� +v� q:�q���\k�.*�8Z߳��.��z�x%�z�ACޅP+=�X���qE����gj�B�٫�A���G��-��k��Ƒ��DCw�X��b�[ �� �ZWqpr�(*�֔�f����G�SO�����;'�#�-�]N K����B<i���xg@�&���f�����ΦU��w�@ߡ�s)�(Ґ�3�֔J����W;�h��,����f~P����v���!BʒB5��{�:U]��I���?Ө���p[�1�8 #��|��~ax��^a�!� �^&bZH�{�*�Z[cm���g;�{s�����P��8m�� +�[��X���c��f�p��ztF�D��}�:Kǩ���/Ac��x|�.�H�����}y]hZ&}�vUd:�"aR*W�Ͳ<�9��Й�/0�m����V�����؞F-�?Jϸ�!��nii�4G�Z��q�ˊ>�af��rfPS��3O+��Ԏ���LBQ$���<����eO��%�����+�P���4����h�s~=� +1)^OJ����|r�f��r_�\�-onv3*�C[��f��P� +�p|.���ފ��1�3����/�M͈%q%1Y[ �da�T}��5�S.+�0m���%f�9T͗�M�5���R܇��x%�}ق��c����1�������5�Z����Nа��e��8Bʭ��l�;k:q�<2��H��i�b���vc<���BWs���^�A��U�hDO(��L������H_o�Ƃ��������}�j����#��}�}�#���V�C+�� �z4pOhy�9�l�C<���+�ϝ)�ʙ��I��������w�kݬwz��o�ή��X�� +4xџ�����$�u_ +_�������E&��{���W�DŽ�LW�t��s�AЇg�"�C�)H�o��b�SoA�H��S��TR��/�)�q@?�/���o��D4�tp�)�\D2�1nd�' ��턽�"xTaG�3 \a�6eB�)ozsM4�����x���Q!��N��u����+jM�^ +�����>�]ȹDC'���u�SW[��4�P1r:�4�?[@��%�D���T<{h���9 8���1|&w����/k���I(�X�>3Ap�5��5�ͧm[꜇ʴ4�. ŀh�'��R5�N���1J��Ɗ+[��[�9=m�)����{�aj�-��x������0� xi4s�'嗩�rE�}i�žtT2ti�E�B�����ķ�o#g�5��k��\������|9[\�'pa�!�SG�K7@�2���< +l��5˛�:TU56j,=M;*�y|��R��1I؞Y#n��գZl|W���̦6���w�gc���Ǿo_���B�,����{�R�wRk�v%�=�&v֪\��|(���R�b�D�܌_9�SR�J��~���\�,��pcO��$����������endstream endobj -3175 0 obj << +3181 0 obj << /Type /Page -/Contents 3176 0 R -/Resources 3174 0 R +/Contents 3182 0 R +/Resources 3180 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3129 0 R -/Annots [ 3186 0 R 3189 0 R 3192 0 R 3194 0 R ] ->> endobj -3186 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [141.14 363.95 205.897 372.862] -/Subtype /Link -/A << /S /GoTo /D (upgrade-cvs) >> ->> endobj -3189 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [203.157 346.018 267.914 354.929] -/Subtype /Link -/A << /S /GoTo /D (upgrade-tarball) >> ->> endobj -3192 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [214.225 328.085 278.982 336.996] -/Subtype /Link -/A << /S /GoTo /D (upgrade-patches) >> ->> endobj -3194 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [81.972 271.671 134.276 280.209] -/Subtype /Link -/A << /S /GoTo /D (template-method) >> ->> endobj -3177 0 obj << -/D [3175 0 R /XYZ 71.731 729.265 null] ->> endobj -3178 0 obj << -/D [3175 0 R /XYZ 71.731 605.564 null] ->> endobj -3179 0 obj << -/D [3175 0 R /XYZ 71.731 540.807 null] ->> endobj -3180 0 obj << -/D [3175 0 R /XYZ 71.731 525.863 null] ->> endobj -3181 0 obj << -/D [3175 0 R /XYZ 108.889 504.707 null] ->> endobj -1503 0 obj << -/D [3175 0 R /XYZ 71.731 453.499 null] ->> endobj -482 0 obj << -/D [3175 0 R /XYZ 367.202 414.127 null] ->> endobj -3182 0 obj << -/D [3175 0 R /XYZ 71.731 403.762 null] +/Parent 3130 0 R >> endobj 3183 0 obj << -/D [3175 0 R /XYZ 71.731 391.846 null] +/D [3181 0 R /XYZ 71.731 729.265 null] >> endobj 3184 0 obj << -/D [3175 0 R /XYZ 71.731 386.864 null] +/D [3181 0 R /XYZ 118.555 689.705 null] +>> endobj +1504 0 obj << +/D [3181 0 R /XYZ 71.731 588.35 null] +>> endobj +486 0 obj << +/D [3181 0 R /XYZ 244.469 556.036 null] >> endobj 3185 0 obj << -/D [3175 0 R /XYZ 89.664 366.107 null] +/D [3181 0 R /XYZ 71.731 547.398 null] +>> endobj +3186 0 obj << +/D [3181 0 R /XYZ 71.731 496.096 null] >> endobj 3187 0 obj << -/D [3175 0 R /XYZ 71.731 363.95 null] +/D [3181 0 R /XYZ 71.731 481.152 null] >> endobj 3188 0 obj << -/D [3175 0 R /XYZ 89.664 348.174 null] +/D [3181 0 R /XYZ 71.731 432.101 null] +>> endobj +3189 0 obj << +/D [3181 0 R /XYZ 71.731 396.135 null] >> endobj 3190 0 obj << -/D [3175 0 R /XYZ 71.731 346.018 null] +/D [3181 0 R /XYZ 104.01 384.579 null] >> endobj 3191 0 obj << -/D [3175 0 R /XYZ 89.664 330.242 null] +/D [3181 0 R /XYZ 104.01 372.922 null] +>> endobj +3192 0 obj << +/D [3181 0 R /XYZ 147.048 349.61 null] >> endobj 3193 0 obj << -/D [3175 0 R /XYZ 71.731 323.103 null] +/D [3181 0 R /XYZ 104.01 337.954 null] +>> endobj +3194 0 obj << +/D [3181 0 R /XYZ 71.731 278.264 null] >> endobj 3195 0 obj << -/D [3175 0 R /XYZ 71.731 266.69 null] +/D [3181 0 R /XYZ 71.731 256.36 null] >> endobj 3196 0 obj << -/D [3175 0 R /XYZ 71.731 201.559 null] +/D [3181 0 R /XYZ 118.555 215.827 null] >> endobj 3197 0 obj << -/D [3175 0 R /XYZ 118.555 162.995 null] +/D [3181 0 R /XYZ 225.689 204.35 null] >> endobj -3174 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F48 1896 0 R >> -/ProcSet [ /PDF /Text ] +3198 0 obj << +/D [3181 0 R /XYZ 332.317 204.35 null] +>> endobj +1505 0 obj << +/D [3181 0 R /XYZ 71.731 159.117 null] +>> endobj +490 0 obj << +/D [3181 0 R /XYZ 277.022 130.47 null] +>> endobj +3199 0 obj << +/D [3181 0 R /XYZ 71.731 121.833 null] >> endobj 3200 0 obj << -/Length 2498 +/D [3181 0 R /XYZ 86.396 98.59 null] +>> endobj +3180 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R /F35 1437 0 R /F57 2317 0 R /F54 2154 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3203 0 obj << +/Length 2339 /Filter /FlateDecode >> stream -xڵY����~�>��V|������ ��A.�$0(jObBqiry���ovf)�t~�Ea���ٙ�y�*��βPe1>�VE�tV�n��;�݄���������q<۪�:���ϒ PY��eq�6i4���2s����2J�y���j*��zYx�u��?˪����p���@;�3��ğe��\�e��5����ıww�D30��OM�;Z��˚w��7UeQ:?��y�[��c���s[Z�k��;�����v�w,���t��s;���W�A�v �� -7*�e��" -�}��i!TS�%��Z��ڊb�}�n��w�A�t�I�Z'��"���#枷�G�C�,�r���M0s7�n�S��,y�1emy�Օ�;�duWB3���}����͝�>���s�5��a�NB��s�_U�!�nb6������x�t�b��s�x=���YV�F���{��{^�-1�JgX횬6��������]����ў�ծ�����CG���bJ��{�s+\ ��q�g�$U -����S��#6��U��_ 3g�>����w�A���q+轒i��:[���'���4���wn�����5Ӗ��BY01��$h>NT���A���'���������{�.L�n���O�B&#�����������b�������s y"�X�ʭr��x�������oG��i��A����+)���E�4Ӌ����ȅ�c.�w���ߖ��$����.4Ϧa PFD��cO�����&!�#�r�8/B��ׄ[�J�91�Q��+��!i� ��0cϡ�u�E�W�� Y=Y�u�a9����3�X܋$��n�?�G_r�Ƃ��G��6 v��9�JQp�Ƹx薧�ma+M�d��)L������ۘV�DI -/�c��� L9�bL� v� Ab���}�*�Z�u宬J+vv�3>�PH�@�g�袄!z�<�N w�X���;�ñ��,��"o� gi%S��T�%f!8��G�WRk.��%�!T��ֱ�k��"�'�Ѥ�)�œ$O�hh�L�d`�`�˝�eh��B�Lgy� �qv�#'���孱��k�6�5�=�wΟ�s���fPq��;/F�)�8���!�똹��L��(�U���K�xJ7)QB�^z�^Iu��#�9��z/���{��C�����Rp�6�s�/�\���R���[9\�'X�cSy%\�N��%�p|.�M����u�|y��Wvyw���Ev�m�� -������P"��,�.�zZ�̡����m�9�J�n��J�����?P�/��ԏ'�w�D�Q�:��дr<@�F�`B��an�;�v/Κ�|:KUfr�_�4x1P~q˧)����h���[��A�EdiW���>#�3f�?���ݺ5a������{����W��}�y -�������G]��i�7�����{��s�l?x���+� ͽ)�ʙ��$�S���4>�Q��+]���>�߬�]��X}�˦Sd�ʞ��T�S��km��5n5�0Vi�@��7u�n~�-���r�����w�!�Ҍ!Mԕ�x�����O7?�@sMx�9|V�P,=7�� -����E=���e� b�㍶�,�7y�B�U�B����P#���%Qű�q�RG���t���mC=&�ݷ��L�2��؆���;i� i��iD9�"��t�q+�ܡ���T��F� �D�};ܠft\G�Z�`]�nt����f`�E캛��>�]й<�X��йzL]i�J˔�`�l�y� ~:46��%Eo���s&��iF�m�2�-|"w�G�ɰ05��^�+���}I�B���B�7m�����97)���9��L�֩��[�鴯��#���J7?����h���Ar����%1l`6r����v�Y�6���� 0�`8)�t��CG*�RQ�U �֨/��ؗRF��Z�/4�� `��6"�mD�첒��5�+JRh�v�brk�8�@ -#��-�/��{��@�9\ -�'�Z'��:4/+jԄ��.�"��'�u*R�"%�� -�H�M|�zR� � -�p�YW&�.�s���'������ -� d�J:�IK�ڏP�Dbԕ�����I�ry�z���ڮK9J��fh��p�Lm�XJj'����������wT+o�I��M��ĉ0me�(�,�ȋsa��y2KJ,�=�Co�š9J�#n -+9jeu?U���(���q�S��ҺQ4ߣ�.�k��ι-�m�C�Z�75�1�gɐ���IqF�P��V� -]�cn4',]27%~�^�#ă�D�T��^��*zO��i=E�fwq��C_!T����" 2�_��蟑�{�@�^zuK�X�K��:��՛��|���ݰ�j��K��Ù�����q����kП���{;�of(QSC�j��j��`�֘�^w�� - z�B���>M}�A��ڄ�g���\�|�F(�"���O�O�sM��x��endstream +x��M������D�i}Kn{�K�Nri;٤�4Y�m&��H��������}���dvv� � �r�Y?Ѭ�T��'^�8�fu�ζ0�ׇH(B�8�y����K��Vj�'���, CU��Y�Ī���S�c�ծ�;=�q���Mgz3��[F�;̣`���m5���ۇ??M���P�2��z��F��8���*ISR�igFP`U������Ќ��ֶ몾!�"wvg�QVɈ�2�V;A섗��ﰮږǛ�v$��hM���s��W�jG��ގ�Y��� �ae��V��thL0�"��J\�$b����t��ƛ���z�T�A� K��Y(��fÔ/����zQ�c���~��<��y��J��a܊RΞ&a?u٬����<�Fl7�|����x\�\�2�E$*NJ�����K�B;���H�[�a��,F�"�����O���=r� i�F��h;�vs���nG #���y ����8a-x��QVm��h4���۷Zݚ�!�T�h;�j������ܮ*.Vb�����y�/d�"�Y���tdP�����\�_�Y��(Pv�.���Rp4�`tֶ�r}༱�U�ԥ����� R��,H8��o�?� +��r�=���{U������5.i��Ҥ��U����$�~�e�v�������\��5㥬k�������Gߕ��2V���,@�)�������d����^(�.���p+���d�6zS���v<��K�\���m��S��|(x$ʻ�EDQ��"��e�r` ¯?���&��ߟ�����)HL�$R�U2�l����?&N�Y��U�1�V�nX,�6�4�}��_IfQ +� �<�T���4�\��9O�\=2Uz�ޢZ���$C��G�&�(�BA�t��VP�,��(I���RF�����x��=(>�z����4�OF�+��"�k���2��0��U�c\�]e�G!��m+B��0�4uY�6P�q1��љ�r��\ߓP�ey��-�T*Jn� +߮P�A�r0�>����������q�ۦ |v�e@�����a#@��}����Z+������Y+]B׳�U�y�}��()�4��n����1�3��k�nu�3h��U~%�:@���\D>K�0V��I�4��w���+Z��؟+�����Z!��J��D�����_�#����`G +�5�������Pg���Q}4 (D���|�,i�q����4_����LǤd��ϑ��,+�w�g�L��O��n�e�4��~߾L�;�]�ܹl�Ζ����d���T��m��&6p�K8�����$�?o�o��ѡC��3R����fjD����n*X�f�HwB���-����e�gqA=��2h6L)7�RLm�^�<�u$�7�AFB��;'�P � +9��à�hC{����w����d��3�8]V�Kma#��[�~����h��wc��qj�5�RWps�/ U�r=J�@R�&�'ͦ�y'p_�=����M�I3�;�;�DB� +��p�%~)�?|,�m��A��}p�X� !3>2;���/���0���V�����D��+2��i�p^©�V�4��VN���Wo�iN��T�C<k� +��T��yGP��%DLc��u$���5&6+��#��� �Ht�1�J���"* �����`܆��Q�j�y^ҵc��7R<�J\�/������g�%^I��ŜX�<_�Q4 $����i�u+hHw���G�)���k}�p��w�, �Ӽ��^uw���;:�Mւ�k\B6�o�SLWi�J�������m[hQ���F#��-"8[F�`,�> +=��� 苌{a4�^�H�rx�n�z}I ���IY���y)M��)�g� Ĩ�ӻ|9K�4���۪�X&֖��t��gS -m�aD<���l��nvb��`�f��6\��� -d��t�<��ac[�Y�r}n���r�����oI��9��{�à�?)'�~>���b ya�Z���@Ȟ#E��Q��Kk�Xf:��5q��.�g�p�b��5�3h�+��;��C�.\r���/Xf����@��-�8k�\���{ #�g�n<���d�;T�8���@İ�����9��g�"�����O�Jw���C���J�t�9Q7L`���m�־���%�g���9e������&������d�pV�+Tc6������0�{�*!*���oaaIK� +��G�?]k�����<5H3r���ʱ�F6�l������_qKUF�G�'v"���X�0�LP�4{��[��� �endstream endobj -3199 0 obj << +3202 0 obj << /Type /Page -/Contents 3200 0 R -/Resources 3198 0 R +/Contents 3203 0 R +/Resources 3201 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3129 0 R ->> endobj -3201 0 obj << -/D [3199 0 R /XYZ 71.731 729.265 null] ->> endobj -3202 0 obj << -/D [3199 0 R /XYZ 71.731 718.306 null] ->> endobj -3203 0 obj << -/D [3199 0 R /XYZ 364.919 682.441 null] ->> endobj -1504 0 obj << -/D [3199 0 R /XYZ 71.731 667.333 null] ->> endobj -486 0 obj << -/D [3199 0 R /XYZ 244.469 635.019 null] +/Parent 3130 0 R >> endobj 3204 0 obj << -/D [3199 0 R /XYZ 71.731 626.381 null] +/D [3202 0 R /XYZ 71.731 729.265 null] >> endobj 3205 0 obj << -/D [3199 0 R /XYZ 71.731 575.079 null] +/D [3202 0 R /XYZ 71.731 718.306 null] >> endobj 3206 0 obj << -/D [3199 0 R /XYZ 71.731 560.135 null] +/D [3202 0 R /XYZ 401.148 695.392 null] >> endobj 3207 0 obj << -/D [3199 0 R /XYZ 71.731 511.083 null] +/D [3202 0 R /XYZ 71.731 670.321 null] >> endobj 3208 0 obj << -/D [3199 0 R /XYZ 71.731 475.118 null] +/D [3202 0 R /XYZ 104.01 660.822 null] >> endobj 3209 0 obj << -/D [3199 0 R /XYZ 104.01 463.562 null] +/D [3202 0 R /XYZ 104.01 649.166 null] >> endobj 3210 0 obj << -/D [3199 0 R /XYZ 104.01 451.905 null] +/D [3202 0 R /XYZ 71.731 647.951 null] >> endobj 3211 0 obj << -/D [3199 0 R /XYZ 147.048 428.593 null] +/D [3202 0 R /XYZ 104.01 625.853 null] >> endobj 3212 0 obj << -/D [3199 0 R /XYZ 104.01 416.937 null] +/D [3202 0 R /XYZ 71.731 589.477 null] >> endobj 3213 0 obj << -/D [3199 0 R /XYZ 71.731 357.247 null] +/D [3202 0 R /XYZ 104.01 567.572 null] >> endobj 3214 0 obj << -/D [3199 0 R /XYZ 71.731 335.343 null] +/D [3202 0 R /XYZ 104.01 555.915 null] >> endobj 3215 0 obj << -/D [3199 0 R /XYZ 118.555 294.81 null] +/D [3202 0 R /XYZ 104.01 544.259 null] >> endobj 3216 0 obj << -/D [3199 0 R /XYZ 225.689 283.333 null] +/D [3202 0 R /XYZ 104.01 532.603 null] >> endobj 3217 0 obj << -/D [3199 0 R /XYZ 332.317 283.333 null] ->> endobj -1505 0 obj << -/D [3199 0 R /XYZ 71.731 238.1 null] ->> endobj -490 0 obj << -/D [3199 0 R /XYZ 277.022 209.453 null] +/D [3202 0 R /XYZ 104.01 520.946 null] >> endobj 3218 0 obj << -/D [3199 0 R /XYZ 71.731 200.816 null] +/D [3202 0 R /XYZ 104.01 509.29 null] >> endobj 3219 0 obj << -/D [3199 0 R /XYZ 86.396 177.573 null] +/D [3202 0 R /XYZ 71.731 497.634 null] >> endobj 3220 0 obj << -/D [3199 0 R /XYZ 71.731 170.435 null] +/D [3202 0 R /XYZ 118.555 454.089 null] >> endobj 3221 0 obj << -/D [3199 0 R /XYZ 401.148 146.689 null] +/D [3202 0 R /XYZ 136.092 445.624 null] >> endobj 3222 0 obj << -/D [3199 0 R /XYZ 71.731 121.618 null] +/D [3202 0 R /XYZ 71.731 412.048 null] >> endobj 3223 0 obj << -/D [3199 0 R /XYZ 104.01 112.118 null] +/D [3202 0 R /XYZ 71.731 372.252 null] +>> endobj +1506 0 obj << +/D [3202 0 R /XYZ 71.731 341.368 null] +>> endobj +494 0 obj << +/D [3202 0 R /XYZ 264.948 308.058 null] >> endobj 3224 0 obj << -/D [3199 0 R /XYZ 104.01 100.462 null] +/D [3202 0 R /XYZ 71.731 299.42 null] >> endobj -3198 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R /F57 2335 0 R /F53 2143 0 R >> -/ProcSet [ /PDF /Text ] +3225 0 obj << +/D [3202 0 R /XYZ 496.727 276.177 null] >> endobj -3227 0 obj << -/Length 2119 -/Filter /FlateDecode ->> -stream -xڵɒ���_�C�L�Z���\<v��/I�m�`�����$j������Z���d\S=ކ�r�?�ȥ�c�D���tQu�b'{�c�PV8����E)�,^<mI�<,y�"�O�O�7{5�f\��4b�߯�N�z��wzwX�`���V-y���/O��4�EY�U����Ƌ��P?Ͱq��z?�i���v���00����,Q �_z�+)E��D�Q���� ��%�"�U#�}�������\EB˕��&v/�W���X�%��k��5��"��I�PVo�� �;�[w��CVxm@;�J}҄ٛMX�w�&���b�e�[S��2d�����a|Jh��BW��ZY�P�i��oF�yv��� 2_[�~�|(x ʻ[A��E�'�4�D*c,�y��pQC%��~���"' 1�R�e�������͜ ~�GV�������k�J�R��kU/d��oJ�T�X�%���$��c�$SA;[UPvC��$��O��1�����zy��V2i*=��:����86��y��5/�ڃ,�2 ���ǽ��0 -��L�V|�����i�081Hw���Ӫ�2�n����Cp@۴�bᒴ���d v��Ӻ���զ�REXW�[뱩�9�����ˌ`QƱ!�`s\Jh|�߸����U_Kb0��" -�ǀJ�"q��E�/�?��24sQD�94�s�wm4�3!#fd�"�nTuÛ��{�QRH�r @���۟�`0�w2FR���F����d��4[F{�`��A@a'�bR]Ç,i���t��W��7 D0���W�4 ��a�So��>������_-%D - �Y�'��|W���`s� ��iyW&��( -/S�p�FE'��ah�ti�?2x�r��H�K�q���g�;ʼ���7M})#`x�m��=���nNw̱WT"`�#��8,��h�Qä��4r�Lbf�̖���7�8�����mo,%��V��t_5��=�s{77,��(w��_���+קe������%�1�x���J#~��Hk��Z��FB���C�.��Bp�0��,�S���.n�>L΄��3�侽Øs2)]N>� (�T�vl\� }ׯO�ٸ㩱�+�Ʊ�V̽Jj��n�KB�$)8�$�L�@��U�0��A� -=�o&����1�YE%�x!�]�BA���a�_�������=C�8���W+�r0�JO������wK�c20��ڪ�Q��n�n"��+4��ePs]£ -fװ4��vN�Tӝ�ڎr/�(�3���x����"�u̗���achU����n�$���"�f0e8©*��D'������NT|k�G��Pս��'j�v��e���[;�i�>���¹�͞#��ݺv|�����ŜX�,+�(p�<`Q�ց��鏀sE�ݷõf�hX@��e���;�|�.x��`��PM}�ۮśb�J${(�y -/G��V�maD!#�pj��j �C9sP���?�v �EڞL�o�H�r�N�^������6�q�;/ ̗�� ax�YFW9�gc��>���_��pL�!C�z�ebm�x.�|���҅�"���N<���j��ivf��A��^*���,�B+w�xN#\�h�i��O+�_�ϵ?�%�nI>�%�-�}?�%��Ĥ! �8矕s�~=��q�v��~�ߑ�B��(b��N�t' ���]�Z��7��3�p���{W��w�->w̃�����T�a��4���@X��� -!�� 6�"�H�S��^u9�`r�;� W\AAi<���`1{�9�.O�1>nuO� p���Mwx�T����wY���}<3��J�G |{5ʡ���<�����T�&q�)(�^���7����H���� =5��/��p�Ai[���茫��l[����hl6֘vZ_>P v!5�B�z����._����;?P����=�������ve�^�����ך���ަ��4#GjjߡK{d%T{1�w�D?H�}sBZ����:�(��5�[�����������������^�B�}�?�ܼا�̗3��dz��_��9�endstream -endobj 3226 0 obj << -/Type /Page -/Contents 3227 0 R -/Resources 3225 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 3129 0 R +/D [3202 0 R /XYZ 415.635 263.226 null] +>> endobj +3227 0 obj << +/D [3202 0 R /XYZ 71.731 204.282 null] >> endobj 3228 0 obj << -/D [3226 0 R /XYZ 71.731 729.265 null] +/D [3202 0 R /XYZ 71.731 170.474 null] >> endobj 3229 0 obj << -/D [3226 0 R /XYZ 71.731 718.306 null] +/D [3202 0 R /XYZ 104.01 158.917 null] >> endobj 3230 0 obj << -/D [3226 0 R /XYZ 104.01 696.687 null] +/D [3202 0 R /XYZ 104.01 147.261 null] >> endobj 3231 0 obj << -/D [3226 0 R /XYZ 71.731 660.311 null] +/D [3202 0 R /XYZ 71.731 146.046 null] >> endobj 3232 0 obj << -/D [3226 0 R /XYZ 104.01 638.406 null] +/D [3202 0 R /XYZ 104.01 123.948 null] >> endobj 3233 0 obj << -/D [3226 0 R /XYZ 104.01 626.75 null] +/D [3202 0 R /XYZ 104.01 112.292 null] >> endobj -3234 0 obj << -/D [3226 0 R /XYZ 104.01 615.093 null] +3201 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F57 2317 0 R /F54 2154 0 R /F23 1105 0 R /F44 1884 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +3236 0 obj << +/Length 1446 +/Filter /FlateDecode +>> +stream +xڭWY��6~�������C�ѷn� Ї6n�"Ƀ,ɖITt�����ph[ko�6)� ��p.~sHx� /,V�Ȕ�H{y���N^���X;����~��{����4R�f煜���^�$K��6���*�r�Rs_1Z�-ں�G��ݞH�s ��_u�d��ͫ���n�b�&�yG�k����}�wt�'L��5�Ϧ��FD����)i���)�i��id}�f���,������l�fdx�.��ِ���Jy�5/���*.}B1�^ J�����;��W��'�V�B�U�z�����ۭ^�~> �:bQ�oɠ���J��h��X��,�'B��uNq��N�H%�se]�=�� ��F#\Dc-�p�hV��q��*�@r� �-)��*��p�������ea v�i��-�LJ����o9���_�r$jg�Լʺ�I��+� @f�ğ�uG,h��r���Ÿ���D������֎����5��T@b�jS�����MA�6{��K�˵)����jt(NcC��ޡ��ܸ����8��{)��E���z R ��D^�S��O�cY/x,r�������Ԧ#Պ�o�]�R����#�M.����vf$`����`W%+T �[��g�\�8S8����_&��2��N^W"u�YH�k�n7���}SN'X�aQ��?�����\�����Gr& (��}�9]4����7;ZUm3UK��@pz[N�)h�`f��1c���O���ue�X��0w.U��@�`t������ߏ�4��X���D�E<r��rG Fv ������#_(]Ô��E�T+�h4����-j˹�H�tA(�fc���3�ВI���Ԝ���>��v���o$?��zX�TQ�eM�ɡE�cF9�y +-5���� ��s��`s�}�z��/�颖l�}�u�����<$�YW8$�E������ +�����K{�z�`�k{�>��u�BTJd��Q��6;c�z���SEp��|�GEP�/E0�0T�����j h�����=TQ�Q��+;�|�:V�Qa:��hi0N�kvGB�5�mMQ�F�a{�c=���}�,��V��b%C +V2��0�ͽ�m�<�3b�0"�T��0�5�:�j`�G���L7�?���䋵���3+N*�s|���[��<ݺ�z<��!c��:$����a©�9Z�Y[�+'�*���=HsD3;!�iKww(���S#�e�u|����fzт�1;?A���/c@���� (J��*�D�v6�tj i[�Ue�l����H �F +%� ���{�h�B]փ�Pg�#��� ��/ ��D5�tc�L�ψ�%v��x�mJ5M�7ww��!��0zvj+J<���0�R�K��+��6_a|ldp�z����b��D�7?L�,WߥZ�pv��N�ѧ�2�U� �(��endstream +endobj 3235 0 obj << -/D [3226 0 R /XYZ 104.01 603.437 null] +/Type /Page +/Contents 3236 0 R +/Resources 3234 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 3130 0 R +/Annots [ 3242 0 R ] >> endobj -3236 0 obj << -/D [3226 0 R /XYZ 104.01 591.781 null] +3242 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [271.86 607.714 336.659 616.304] +/Subtype /Link +/A << /S /GoTo /D (upgrade-cvs) >> >> endobj 3237 0 obj << -/D [3226 0 R /XYZ 104.01 580.125 null] +/D [3235 0 R /XYZ 71.731 729.265 null] >> endobj 3238 0 obj << -/D [3226 0 R /XYZ 71.731 568.468 null] +/D [3235 0 R /XYZ 71.731 695.28 null] >> endobj 3239 0 obj << -/D [3226 0 R /XYZ 118.555 524.923 null] +/D [3235 0 R /XYZ 71.731 673.375 null] >> endobj 3240 0 obj << -/D [3226 0 R /XYZ 136.092 516.459 null] +/D [3235 0 R /XYZ 118.555 629.829 null] >> endobj 3241 0 obj << -/D [3226 0 R /XYZ 71.731 482.882 null] +/D [3235 0 R /XYZ 421.576 621.365 null] >> endobj -3242 0 obj << -/D [3226 0 R /XYZ 71.731 443.086 null] ->> endobj -1506 0 obj << -/D [3226 0 R /XYZ 71.731 412.202 null] +1507 0 obj << +/D [3235 0 R /XYZ 71.731 577.826 null] >> endobj -494 0 obj << -/D [3226 0 R /XYZ 264.948 378.892 null] +498 0 obj << +/D [3235 0 R /XYZ 295.902 545.43 null] >> endobj 3243 0 obj << -/D [3226 0 R /XYZ 71.731 370.255 null] +/D [3235 0 R /XYZ 71.731 535.065 null] >> endobj 3244 0 obj << -/D [3226 0 R /XYZ 496.727 347.012 null] +/D [3235 0 R /XYZ 355.306 525.305 null] >> endobj 3245 0 obj << -/D [3226 0 R /XYZ 415.635 334.06 null] +/D [3235 0 R /XYZ 71.731 500.234 null] >> endobj 3246 0 obj << -/D [3226 0 R /XYZ 71.731 275.116 null] +/D [3235 0 R /XYZ 104.01 490.735 null] >> endobj 3247 0 obj << -/D [3226 0 R /XYZ 71.731 241.308 null] +/D [3235 0 R /XYZ 104.01 479.079 null] >> endobj 3248 0 obj << -/D [3226 0 R /XYZ 104.01 229.751 null] +/D [3235 0 R /XYZ 71.731 467.422 null] >> endobj 3249 0 obj << -/D [3226 0 R /XYZ 104.01 218.095 null] +/D [3235 0 R /XYZ 118.555 423.877 null] >> endobj 3250 0 obj << -/D [3226 0 R /XYZ 71.731 216.88 null] +/D [3235 0 R /XYZ 297.118 415.413 null] >> endobj 3251 0 obj << -/D [3226 0 R /XYZ 104.01 194.782 null] +/D [3235 0 R /XYZ 71.731 393.492 null] >> endobj 3252 0 obj << -/D [3226 0 R /XYZ 104.01 183.126 null] ->> endobj -3253 0 obj << -/D [3226 0 R /XYZ 71.731 146.75 null] +/D [3235 0 R /XYZ 462.063 360.835 null] >> endobj -3254 0 obj << -/D [3226 0 R /XYZ 71.731 124.845 null] ->> endobj -3225 0 obj << -/Font << /F33 1210 0 R /F53 2143 0 R /F35 1437 0 R /F57 2335 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R >> +3234 0 obj << +/Font << /F33 1210 0 R /F35 1437 0 R /F54 2154 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R /F32 1119 0 R /F57 2317 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3257 0 obj << -/Length 1387 -/Filter /FlateDecode ->> -stream -xڭWێ�6}�Wh�H@L�"�ҷn� Ї6n�"Ƀ֢-5���c�����^�w�I�����r�̐�?��� -2g2���]���;/W�k���z�s�]m^(�,OT��1�,�y�*�2-�m�&��*���Zj*F�o˶���uw �����W�4E�n�j����[��噺^,c�뵐,�u>��A ����'|�+Ԏ!:��`y��������gS<X�%��f���z�L��PL�q�Nt���ђ*1Sq�p).��Y���W�:�~�bC����qd��{a-2�� -�Ye���,,"��c$4��Di8U�D�s��W�:(�۞�v�>Z���v}}˹l��Қ����VwU�ξ���&�6�Q�~���a�v(1�!1��q��9����q�^����,�Q� -�CF��U��ٹ)I��ѳA��Z (I�`��d�֘P -��A���c��[���C$��<������-�����(K�$�Ye|��^e��q�Y�qa3x �Զ#An��K�J!��U�'��\� _A�kQ�y�X�{�۱���O>��břB�PO~A�/�7e�L�n^?yJ��q�����μ���������#:�8�P?�3!�3��C�aS����Z�vO�cU�V�y9Aޚ��%���L�]e�h���Yz��K�����:( s�{U�(3��Ԋl�����h��g}�8�DC�}k��a�@nn`��~�?ȅ�5Ι��y���S�,�sGp�.����p�r!c�5)�t�h�$p���P��v�?��\{���7���k� '�i�J���5�pF�cKy�+�C�T�O�8KX����so{����/��b�ܚC�u��r���*�EWz*���fL+ϥ�������x��q~�;^pƵ=�?��Tt>BtJ~�I�b����4��Scp�g���T����Ԣ����C0����~�r�$��V�b�瘡��v~UУA�P��O�]�в�e�N�Ϸ�9)����x�w�" i5� N2��$s�\ܸކ��� �Q -w��&6 -ƹ�yB�U �#}�����" f�F0�>�p[)p��1�Q�'��t@X��y��`)�q��ȧ���!��*�yN�����և�ۨLӓ�k^hgod������/wmD��D�x���*Z2����O���%D�����tCQ��� ��yZ9�i���n�VU��s{G��mI '�C --�+ *5u���셻��,��.&/O�'T�Z_��A7�tcaJ��H�%�^ui�(=�RMS��fs<#���ӱ�`�@����F��)/}D^���� -�q��5�����9�b�2�^� w�����p��g+�D�~���cW��w�endstream -endobj -3256 0 obj << -/Type /Page -/Contents 3257 0 R -/Resources 3255 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 3272 0 R -/Annots [ 3261 0 R ] ->> endobj -3261 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [271.86 662.608 336.659 671.198] -/Subtype /Link -/A << /S /GoTo /D (upgrade-cvs) >> ->> endobj -3258 0 obj << -/D [3256 0 R /XYZ 71.731 729.265 null] ->> endobj -3259 0 obj << -/D [3256 0 R /XYZ 118.555 684.724 null] ->> endobj -3260 0 obj << -/D [3256 0 R /XYZ 421.576 676.259 null] ->> endobj -1507 0 obj << -/D [3256 0 R /XYZ 71.731 632.72 null] ->> endobj -498 0 obj << -/D [3256 0 R /XYZ 295.902 600.324 null] ->> endobj -3262 0 obj << -/D [3256 0 R /XYZ 71.731 589.959 null] ->> endobj -3263 0 obj << -/D [3256 0 R /XYZ 355.306 580.199 null] ->> endobj -3264 0 obj << -/D [3256 0 R /XYZ 71.731 555.129 null] ->> endobj -3265 0 obj << -/D [3256 0 R /XYZ 104.01 545.629 null] ->> endobj -3266 0 obj << -/D [3256 0 R /XYZ 104.01 533.973 null] ->> endobj -3267 0 obj << -/D [3256 0 R /XYZ 71.731 522.317 null] ->> endobj -3268 0 obj << -/D [3256 0 R /XYZ 118.555 478.771 null] ->> endobj -3269 0 obj << -/D [3256 0 R /XYZ 297.118 470.307 null] ->> endobj -3270 0 obj << -/D [3256 0 R /XYZ 71.731 448.387 null] ->> endobj -3271 0 obj << -/D [3256 0 R /XYZ 462.063 415.729 null] ->> endobj 3255 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R /F27 1112 0 R /F32 1119 0 R /F57 2335 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -3275 0 obj << -/Length 2509 +/Length 2508 /Filter /FlateDecode >> stream -x�}Y[��6~ϯ��N�cFw���tڝt�m�9�N�����H�+J9����@����f� �q��U�_��C���D;e��^�f��*�$�T�F��Ln�8W�"^m�<�z�C��@e�n�������l�X����X�F=l�Q^���7��Mۖ<���ih��濏?�a�ک]�`���\X�vlZ�ن�pm�&\w20{��G��ͨ;˸�g�xlS� Ѡdɠ�rԵ02~��p�C96����l!��.Gq�E�0���c���~�H��9��� '3�Hʠ���*t~k���&x�QN��kj�v���;���3����S����e�zf���`}̨+>:��fx�.�R1���̂�ioFA�����>aZ��2�i�G�c�6�(]ބ)��j�SS��$c~�Z�An����ӗ��=��Q�����~��A߲'9gA��?5�)d%'����t?6���#�˔������d�f����$_�ɉ�ˊ&���l���#�"�T�D�~�@g�f4^ �x�,��hz�x�x�<��N�g%D��h}0�fK�;�|8H�� �#��plz&Y -�7u� -l�W�N�f��� �/ I��94A���q�����s�o��Z� �K� � m\��C�uz��p����{ā��b��g!�m�&t8�N|��>���]�2�L�<��V���_U�d63�Z�!��t�x����(N8>���ًI��M��]�o�G8k' -]��r�GA��x�@!����П�K ьG/��fka�?x�mSֳ��T]I4���cUi+�?�Q���}{�N����`L_ q�����n"�Ǘȓ��yj��Wp�(L%�%)Rk�&*�$��%��,�Ie^��8�d}�Sq��=���~������3L��e��@�Q기�مE��{��r�y��� ���������A0�dX�ŵ�q���db;L�|K�9��=aHb����g���-���Z�"�ů/D��g7ΌP��x')]��4�1��=�x?�Lez��a�ky�D](���v噱��;�^ -�!���7!]��g��L�0.��-���G��j])Q��$��z;_���]ϘB8��/M�H0�k��<C�9MRl���k*[^p"�0DG�uO�|�v�f��k+[h�a��=3��ʂN��H�q�!�R'4v.���%�n�����/|� ��5�J@"�\)��d}�v��B�3�+�' ���\�pX.0�}�q� w�:��pI��m��LJ�E|�ԋ���_�/¿�*3�_������^}�8��\%�bg����n� $��k���� I�K��m��0 b��$z����]3"��e&�+��t`�r?�$]`唞g��'.*��x�oՉ�%�c�q1l] ��E��F*�CY՝�_��8H��H�0��q�H9�cŃ1#��$Ł�i�7O�>Ӝ�I�����.u���dn9��qCU�U�ť���ot!�����e����Kg�n;�? W(4�r�(-�&�8�5p'�9���.�n|��G���č�]�h�*Thn��t�U�PgC:l)j!�|�������:N�\�87�.�v���E�J����ж ��*g���,��1� .�#��%+=����l��u�(�:Y33�y�$�/g�`�g�]�ǻ���Kw�9�x pm�c�e��N\����Mi��52Yʁ;Y7�L}xO�~x�E&B� וa�ear�Y�I)�JI�&Rx:��:h.JS�2�ղ���� ������;Őą0���0��<v������5R��Z���I72ŏ/N�.-�]�9Bi�ݤ�{���_Z��$*0q�m�?���A�o��ǽ.L�`�tF����V�0➢XF�S���o3jiP��B�(�}�F=�H=�#�5���H)D8~I`�QG��A�Rc����|�O��pjɛ 䁊� s=ʜa�k�q���g����qs���k��<���o�;=�>P�w�q��&�SL���4�`�?��b%�����eRx���\��T�* ��Pe)��+�:��в����شכz��]}����:�w��� _��v)\�������5n��rX�3*���"�]�%�V8q走E�:�-_#��I�n�z��P3�O��V��n+?W��Y��f�6�b.�c� z�J�݃0r�!�Mz����)�0O5�Տe��!0�N Zv�o)�����( ���1jƇ���P�(`�{d�_8�{����3 �!1eo����7'|�ۂ+���"���eŕ���HB�J�T���W�'$�1����&z�X5�'j����c�2��&q����!�� �4���L����'�ɘ��4C��t�ǽ���=�k��ο5R0����@5*^�v'�̽�3�>��J�#�!���o�( �� -��S;�%��M5�#���gZR�����]wpY�[l��+<�#)P��w�;��^HnJ�4BT�<w1�kA�O�[I��Y�&endstream +x�}Y[��6~ϯ��N�cFw���tڝt�m�9�N��Y�m5��RN��~?�,_��@H�ą~�"U�mU����},��P(�,SQ~0�N�\m7�b=�������x*K����$%�Ug����w��4�~����2Q�}3�W7M����z8����#拭�f1�k�˅�oǺѫu� �֬�e+���pt�`Y����;F �Z0�� �^���)] #�y '�C�o�x�r'Y��c� 9V�L�7ߊԛ�cj<�p2��:�-�B�f?��w��ƺ�mG9o��=8��~{O<�15h�[4�g&*�� +������lƞg�b(#���,��vfD7论����"�?�iO�>�3�^E���*LA4WC��p�'���:r{�觺�<1���(�Z�����d��9���֥H!+9)�����P�NW���X.SN�v~����0�I�ܓ�%M�����E��]mrE�(������t�`��%��3X4QwZ����y��HOJ�D���`L�$��%w�!�p�^#�G���80XwL8������o&�RM_��#@_"@�*Msh�4�+��┳�ss�x;�Gĵ,��2j"�A�,� ����muo�N��Aw� �Ů��B��M�pN���@}����eX��y(1-K8w7���lf��pC;�N�m `�� N8>���ًI� �4�y���p֎��� +������B�r���?����^~��*�,�i�� �MY�j��kRu)ь�~�e����,F�n���:=+��1}%��ÃB�ڑ���'cm�k��p�(L%�%)Rk�&*�$��%��,�IeZ��8�d}�UqM�=���~������3L��e��@�Q기�مE��{�ߢ�x��� ����������OA0�dX�ŵ�q���db;L��|K�9��=aHb����g������tZW"�ů/D��g7ΌP��x+)]��4�j1��=�x7�Li:��a�ky�D](�4öř���;�����𢡄.��3�h�FcU���#K����(�d\/m���gL!g��&$͵MS�!��& )����-W��<��iݎ�!�߬�tie�5�?"�4g�]�@Y�J����#:�����E����� 7_����7�y"@ H�� +"%y��/q�N�BVH~�V`ὓ�qj�ҕA��s1HЧ � r����8�4�q|H0�ŗH]��j}�mY���Z�`N�@������*�nq��<OvB��Ѹfa��oؐĪ�-ݦ�a"�~M���9?�-#��$Yft�2�rH�+G�S�K������Lm�����0��{u�uI�Xh\L[W������8�� +�PV�g�W�5�[!�#��柝@�R��Eqòo"I�gj����Tg�S<)�T�٥�1��-8n�6��&��R���7�po�|�2�r�h�¥3�|�ş�+�V�8F�n�&�8�5p'9��Yψ�|��G���ĝ�m�h�*Th�^��*�\��!���u>�����wb�N�U ���Ec;���؉�H%Qxe8�m����Y'E�ܑ�?�fĥx��d���>� ���EQ+k&��w��rf~֟ѵ{�;X^�+Ϲ�K�k;k-�4���0��N�o +[����R�ɲv�`��{"������$\W�!����f '�|*%I�H����e蠹(M�/�[�hV�BW�J��d"���C�LB.�lH:�؝S���Hqh�^B�$��?�8���v1p��Uv���)�W~i1L�(��n�E��֟�q��P�0E���r�KZ��p�{�b�N��ӿ͠�AM�]��4���\"�\�@W��J"���$�1A�,�K���S��E�(���Ԓw�%�A�z�9Ô���Lő�H��������=�4Uy ��4wz`}�����UD�����i���~I� +JzKaˤ�0Ϲ��i�$D�C���~�L�LC�^c�^o�5�w� �O��<P\�R'�:���e�j/� ��䶟.qì�����QYu�Y��-����C/�-"�qj�j!�L�t�T���ؑb�J���\Փg�b����6S��;W�/���{�n�{Ly�L�y�ɭ~,���y�j�yg����&��#���x�"F��4�J�Km�9��guσ��S���9$Ơ�,�n�� ����c�~>�Ǽ�JU��HB�J�� /wo㞐8�TZ|:�R����j�N�Ӄ��y^EM�2$a�C(ri�}i�Di]�O�1�i���i��{-���zJ��k�"`.l9i�jP����A��z#1f*}0����G�C��'�0Q(<lo�f�K[�r�G�i������ե��<���V�Vx�/F�A��?��b}!�+)�(G울����J���܋�?<��^endstream endobj -3274 0 obj << +3254 0 obj << /Type /Page -/Contents 3275 0 R -/Resources 3273 0 R +/Contents 3255 0 R +/Resources 3253 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3272 0 R -/Annots [ 3282 0 R 3287 0 R ] +/Parent 3281 0 R +/Annots [ 3262 0 R 3267 0 R ] >> endobj -3282 0 obj << +3262 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [97.498 367.618 132.915 376.529] /Subtype /Link /A << /S /GoTo /D (gloss-daemon) >> >> endobj -3287 0 obj << +3267 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [258.734 354.666 290.823 363.578] /Subtype /Link /A << /S /GoTo /D (gloss-service) >> >> endobj -3276 0 obj << -/D [3274 0 R /XYZ 71.731 729.265 null] +3256 0 obj << +/D [3254 0 R /XYZ 71.731 729.265 null] >> endobj 1508 0 obj << -/D [3274 0 R /XYZ 71.731 718.306 null] +/D [3254 0 R /XYZ 71.731 718.306 null] >> endobj 502 0 obj << -/D [3274 0 R /XYZ 344.957 703.236 null] +/D [3254 0 R /XYZ 344.957 703.236 null] >> endobj -3277 0 obj << -/D [3274 0 R /XYZ 71.731 681.855 null] +3257 0 obj << +/D [3254 0 R /XYZ 71.731 681.855 null] >> endobj -3278 0 obj << -/D [3274 0 R /XYZ 522.288 634.645 null] +3258 0 obj << +/D [3254 0 R /XYZ 522.288 634.645 null] >> endobj -3279 0 obj << -/D [3274 0 R /XYZ 71.731 616.593 null] +3259 0 obj << +/D [3254 0 R /XYZ 71.731 616.593 null] >> endobj 1509 0 obj << -/D [3274 0 R /XYZ 71.731 575.701 null] +/D [3254 0 R /XYZ 71.731 575.701 null] >> endobj 506 0 obj << -/D [3274 0 R /XYZ 252.56 532.604 null] +/D [3254 0 R /XYZ 252.56 532.604 null] >> endobj 1510 0 obj << -/D [3274 0 R /XYZ 71.731 528.774 null] +/D [3254 0 R /XYZ 71.731 528.774 null] >> endobj 510 0 obj << -/D [3274 0 R /XYZ 198.219 493.231 null] +/D [3254 0 R /XYZ 198.219 493.231 null] >> endobj -3280 0 obj << -/D [3274 0 R /XYZ 71.731 485.879 null] +3260 0 obj << +/D [3254 0 R /XYZ 71.731 485.879 null] >> endobj 1511 0 obj << -/D [3274 0 R /XYZ 71.731 427.115 null] +/D [3254 0 R /XYZ 71.731 427.115 null] >> endobj 514 0 obj << -/D [3274 0 R /XYZ 267.87 389.899 null] +/D [3254 0 R /XYZ 267.87 389.899 null] >> endobj -3281 0 obj << -/D [3274 0 R /XYZ 71.731 379.756 null] +3261 0 obj << +/D [3254 0 R /XYZ 71.731 379.756 null] >> endobj -3283 0 obj << -/D [3274 0 R /XYZ 209.73 369.774 null] +3263 0 obj << +/D [3254 0 R /XYZ 209.73 369.774 null] >> endobj -3284 0 obj << -/D [3274 0 R /XYZ 291.334 369.774 null] +3264 0 obj << +/D [3254 0 R /XYZ 291.334 369.774 null] >> endobj -3285 0 obj << -/D [3274 0 R /XYZ 381.061 369.774 null] +3265 0 obj << +/D [3254 0 R /XYZ 381.061 369.774 null] >> endobj -3286 0 obj << -/D [3274 0 R /XYZ 419.603 369.774 null] +3266 0 obj << +/D [3254 0 R /XYZ 419.603 369.774 null] >> endobj -3288 0 obj << -/D [3274 0 R /XYZ 322.387 356.823 null] +3268 0 obj << +/D [3254 0 R /XYZ 322.387 356.823 null] >> endobj -3289 0 obj << -/D [3274 0 R /XYZ 449.982 356.823 null] +3269 0 obj << +/D [3254 0 R /XYZ 449.982 356.823 null] >> endobj -3290 0 obj << -/D [3274 0 R /XYZ 489.834 356.823 null] +3270 0 obj << +/D [3254 0 R /XYZ 489.834 356.823 null] >> endobj -3291 0 obj << -/D [3274 0 R /XYZ 436.781 343.872 null] +3271 0 obj << +/D [3254 0 R /XYZ 436.781 343.872 null] >> endobj -3292 0 obj << -/D [3274 0 R /XYZ 260.699 330.92 null] +3272 0 obj << +/D [3254 0 R /XYZ 260.699 330.92 null] >> endobj -3293 0 obj << -/D [3274 0 R /XYZ 171.642 317.969 null] +3273 0 obj << +/D [3254 0 R /XYZ 171.642 317.969 null] >> endobj -3294 0 obj << -/D [3274 0 R /XYZ 71.731 304.918 null] +3274 0 obj << +/D [3254 0 R /XYZ 71.731 304.918 null] >> endobj -3295 0 obj << -/D [3274 0 R /XYZ 71.731 289.974 null] +3275 0 obj << +/D [3254 0 R /XYZ 71.731 289.974 null] >> endobj -3296 0 obj << -/D [3274 0 R /XYZ 210.778 278.417 null] +3276 0 obj << +/D [3254 0 R /XYZ 210.778 278.417 null] >> endobj -3297 0 obj << -/D [3274 0 R /XYZ 317.348 278.417 null] +3277 0 obj << +/D [3254 0 R /XYZ 317.348 278.417 null] >> endobj -3298 0 obj << -/D [3274 0 R /XYZ 129.377 266.761 null] +3278 0 obj << +/D [3254 0 R /XYZ 129.377 266.761 null] >> endobj 1512 0 obj << -/D [3274 0 R /XYZ 71.731 238.865 null] +/D [3254 0 R /XYZ 71.731 238.865 null] >> endobj 518 0 obj << -/D [3274 0 R /XYZ 215.507 199.493 null] +/D [3254 0 R /XYZ 215.507 199.493 null] >> endobj -3299 0 obj << -/D [3274 0 R /XYZ 71.731 192.062 null] +3279 0 obj << +/D [3254 0 R /XYZ 71.731 192.062 null] >> endobj -3300 0 obj << -/D [3274 0 R /XYZ 401.912 179.368 null] +3280 0 obj << +/D [3254 0 R /XYZ 401.912 179.368 null] >> endobj 1513 0 obj << -/D [3274 0 R /XYZ 71.731 136.365 null] +/D [3254 0 R /XYZ 71.731 136.365 null] >> endobj -3273 0 obj << -/Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R /F35 1437 0 R /F44 1884 0 R /F57 2335 0 R >> +3253 0 obj << +/Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R /F35 1437 0 R /F44 1884 0 R /F57 2317 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3305 0 obj << -/Length 1625 +3286 0 obj << +/Length 1626 /Filter /FlateDecode >> stream -xڭXmo�6��_a`b+�zm����-k��C;���Bd��K3���w�e�qW`���=��s��rd�O�|)| � -����b}f�����d �U��������G�==�=��W�#_+�j4�?�ZE�:)'�r��#��j���YQ�.Y4eZo'�~>��:LW�"�I�Z��_J��/�tѱv}�+|'0~9B�3~0~�����i�#���${d�Ph_w��g�VI��U��I�\,�&�٦��T���1&/+P�z�N�:-�$�n�B���<�ʕG��X=% -D��z�Gt�v`�j�B��< �:��!��&� �!1��u�X�*��T6<q�#j�b"ǹ�)Ӊr�_�d"��2����� �4P�uǂ�W<\5%KuA��ȫ&�wNBl`��@�D�<o�>�Ţ�=�8�0Tp�2��N��j��:!�)�W$m��mT-�@~h �yU�͢���J�w�gu�ϟ���D��E �C�Q�>G9��u�T;�{�-D�z���q�j;����q�0��8�8_�����N*�`�Qc|�����f�@y�E�#������(c��;��w냅���a8��}���xƿ9�AE��L�}�܅P��sjaĜ� B�)�Ҕ:��⨎.X�l!�1�� J]�<g�%%�3a"����{h�y�s]��1m�퇀2f���*�gI̜�j�/�B����h��x�cI�L.�*]�i�<H�^F�e�#3��W���ѭ�ao��; -����H��gU��{:�g�."7Au���s6�<�f�Ф��p���v�~Z֎p�d����/gS2MG�n:#���G�q�p���2�d��9a���a�06H�<��N��9"�>���AI��~x���H��W��ǖ�������;2~��������ݫ!�,������1J)��kCɯR -����r����P�q�͎P��L*��������IKu$�G��c�4�����m9�6l�4E�U��ݯ�7Ӗ�o>����M��b�G�n����<��E��K�@�,�{:�D���Hz`��{{hHu��ݡӔz�~B�y��l�V\��5���9%s1s��|�*$� t��L�xۙ�̫��pmZ�>��d([���94t���P���ip�9 ~`��Uet�)(&=x�x�lj��엤~2uX�ؽ.����� ��Y(�&���LEJO������2(�R[�θ�i��(T�FEi-ViΝ�������G�Z@i�U�P5�h���(�Q�en�m'�Uذ�����+}����2�c5�����}�4���0�\��w6��b�L*��?|��6W�f�:8N1ֱzJC���6��wW�@�S��I�CC�k��%�(.�$��X����~�)�kx�Ƚ�p�S,ETfRǰ���K��H�2��YZ��R��*Ýo-.��J�$��H�nl�xZ��$���R@�5$y����<責���ig�T; -ߠn�wԋ�^�Xo<W�.@��v�/��,�U4>h=��V~��1���������o�2�k���I�`�`e��}Lilw[q`�zL7����\�@Po��[w*��\��j��c6|�/�!ҿ�q��endstream +xڭXmo�6��_a`b+��^Zl@��m�t�g���l)�Yr�����;�N/�w��:�s<>G�'6����̓Ј� WMV�3{��/o�8iX�b�t�g/�H9 X����a��)L<)���d}��� wU\�,��ð����$ib�.^�ER�g.~>�/ZL%=��[���/!'�c�+�X�>[1��_�ϟ����v��q�ä��I�Ē��l�9�Xl��T#���*ޢ|�Z�uV�M��6��1&/KP�r���*ɳ8�n� ���y�q�P�h ������ i/ ��X��>�OÓ�i��! ��� )MHA��x�8Vn�:��5 ���,��if�d&��Kϸ��� �,�\J]%��2�^�pY$U9��<+�꜄��j9�ɇV��x�� |��U��4���PN ��t�c:�&�PZ�����ڠ��k�Q6L��1�deUԫ +"�Kv��tT�gq�ϟ���L��y���au��\��6��N�^�"_>�e\���,)�i?̸= !�8B~H�`�q��-��[���W3o��L���]X�O2/"��Z��냅���b8��| �2ƿ%�Aդ��.H��z1�ΰ�s^�hX���+HS�@��*� M�� �D�`L��&�K�_c��u��@H�Q2��� 2s���!�N[�l@�!��Yǣ��ig�8�����2�;��R��X�.�˲L�Y��)��H$3�{d�������"�54�R��^�g.\qfa�����&��"R~��Zg�/?�3˵m�&-R�3����&�8�,�HN��o__.�h�����{@>ջ�G~�(�O���C9f�� Y��W3a�밀{�z9B��n�a���kr��:�96�@x�=on��ޡ��_�����^��d�,} +*)�QJ�^J~�R���~ ��W�X5�:n4���7�H�ڽ]�<X�C�>I.����(�̛gU�_���/����흦���7����fް�͇_���R��)�w�����VW��W�H�S��'K螎)�`�Z���w��M�EC�:N���g?`���/6IIUI��� ��)Y���*8櫶PA�8���&�EF��d^GõI�����ltN�fh��2��>Q�ip�9 >0���Uex� (&]x����DRq�K\=�:�xl_q�������@5G��&���2Zz���@�M4��u!�%Sj������P��Q�� W�$�N���@��@�d9��� /ʜ�*��:��(�Q���8��\Uظ�����+}�����2.�c�����~�ipA�in.�<��dƃ'�z�T�C���l.�̰��b�c���:|��~͍�8��@�S���I����5g⒦�M��p�W�zH?��5�I�Aex��)r�B,3�cX@i��N3M�"\&iR5�RB�*Ýo-.��J�$#�$���q|��%�Bk������yХi�+�ξ��Gw�~�*��q�z��3x�>�]�:M��/Ǧ,�U�~к̥���c�9��ͯ����n�"�k��N�:��SGW&:}u_��n��X,��E&�_���|�7Oݭ����)%��s�����4F��h��endstream endobj -3304 0 obj << +3285 0 obj << /Type /Page -/Contents 3305 0 R -/Resources 3303 0 R +/Contents 3286 0 R +/Resources 3284 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3272 0 R -/Annots [ 3308 0 R 3326 0 R 3328 0 R ] +/Parent 3281 0 R +/Annots [ 3289 0 R 3307 0 R 3309 0 R ] >> endobj -3308 0 obj << +3289 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [139.577 644.094 191.711 653.005] /Subtype /Link /A << /S /GoTo /D (security-os-accounts) >> >> endobj -3326 0 obj << +3307 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [318.972 337.225 370.159 346.435] /Subtype /Link /A << /S /GoTo /D (security-mysql-account-root) >> >> endobj -3328 0 obj << +3309 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [392.313 236.881 445.082 245.792] /Subtype /Link /A << /S /GoTo /D (security-os-ports) >> >> endobj -3306 0 obj << -/D [3304 0 R /XYZ 71.731 729.265 null] +3287 0 obj << +/D [3285 0 R /XYZ 71.731 729.265 null] >> endobj 522 0 obj << -/D [3304 0 R /XYZ 164.538 705.748 null] +/D [3285 0 R /XYZ 164.538 705.748 null] >> endobj 1514 0 obj << -/D [3304 0 R /XYZ 71.731 702.184 null] +/D [3285 0 R /XYZ 71.731 702.184 null] >> endobj 526 0 obj << -/D [3304 0 R /XYZ 306.92 666.375 null] +/D [3285 0 R /XYZ 306.92 666.375 null] >> endobj -3307 0 obj << -/D [3304 0 R /XYZ 71.731 656.233 null] +3288 0 obj << +/D [3285 0 R /XYZ 71.731 656.233 null] >> endobj 1515 0 obj << -/D [3304 0 R /XYZ 71.731 626.161 null] +/D [3285 0 R /XYZ 71.731 626.161 null] >> endobj 530 0 obj << -/D [3304 0 R /XYZ 408.16 588.946 null] +/D [3285 0 R /XYZ 408.16 588.946 null] >> endobj -3309 0 obj << -/D [3304 0 R /XYZ 71.731 578.803 null] +3290 0 obj << +/D [3285 0 R /XYZ 71.731 578.803 null] >> endobj -3310 0 obj << -/D [3304 0 R /XYZ 213.741 568.821 null] +3291 0 obj << +/D [3285 0 R /XYZ 213.741 568.821 null] >> endobj -3311 0 obj << -/D [3304 0 R /XYZ 387.602 568.821 null] +3292 0 obj << +/D [3285 0 R /XYZ 387.602 568.821 null] >> endobj -3312 0 obj << -/D [3304 0 R /XYZ 249.294 555.87 null] +3293 0 obj << +/D [3285 0 R /XYZ 249.294 555.87 null] >> endobj 1792 0 obj << -/D [3304 0 R /XYZ 71.731 542.819 null] +/D [3285 0 R /XYZ 71.731 542.819 null] >> endobj -3313 0 obj << -/D [3304 0 R /XYZ 71.731 503.038 null] +3294 0 obj << +/D [3285 0 R /XYZ 71.731 503.038 null] >> endobj -3314 0 obj << -/D [3304 0 R /XYZ 71.731 503.038 null] +3295 0 obj << +/D [3285 0 R /XYZ 71.731 503.038 null] >> endobj -3315 0 obj << -/D [3304 0 R /XYZ 71.731 491.996 null] +3296 0 obj << +/D [3285 0 R /XYZ 71.731 491.996 null] >> endobj -3316 0 obj << -/D [3304 0 R /XYZ 305.215 481.748 null] +3297 0 obj << +/D [3285 0 R /XYZ 305.215 481.748 null] >> endobj -3317 0 obj << -/D [3304 0 R /XYZ 71.731 480.34 null] +3298 0 obj << +/D [3285 0 R /XYZ 71.731 480.34 null] >> endobj 1793 0 obj << -/D [3304 0 R /XYZ 71.731 458.435 null] +/D [3285 0 R /XYZ 71.731 458.435 null] >> endobj -3318 0 obj << -/D [3304 0 R /XYZ 71.731 413.573 null] +3299 0 obj << +/D [3285 0 R /XYZ 71.731 413.573 null] >> endobj -3319 0 obj << -/D [3304 0 R /XYZ 71.731 413.573 null] +3300 0 obj << +/D [3285 0 R /XYZ 71.731 413.573 null] >> endobj -3320 0 obj << -/D [3304 0 R /XYZ 71.731 402.532 null] +3301 0 obj << +/D [3285 0 R /XYZ 71.731 402.532 null] >> endobj -3321 0 obj << -/D [3304 0 R /XYZ 149.738 392.283 null] +3302 0 obj << +/D [3285 0 R /XYZ 149.738 392.283 null] >> endobj -3322 0 obj << -/D [3304 0 R /XYZ 71.731 390.876 null] +3303 0 obj << +/D [3285 0 R /XYZ 71.731 390.876 null] >> endobj -3323 0 obj << -/D [3304 0 R /XYZ 71.731 379.36 null] +3304 0 obj << +/D [3285 0 R /XYZ 71.731 379.36 null] >> endobj -3324 0 obj << -/D [3304 0 R /XYZ 71.731 357.314 null] +3305 0 obj << +/D [3285 0 R /XYZ 71.731 357.314 null] >> endobj -3325 0 obj << -/D [3304 0 R /XYZ 71.731 357.314 null] +3306 0 obj << +/D [3285 0 R /XYZ 71.731 357.314 null] >> endobj 1516 0 obj << -/D [3304 0 R /XYZ 71.731 311.486 null] +/D [3285 0 R /XYZ 71.731 311.486 null] >> endobj 534 0 obj << -/D [3304 0 R /XYZ 222.149 272.114 null] +/D [3285 0 R /XYZ 222.149 272.114 null] >> endobj -3327 0 obj << -/D [3304 0 R /XYZ 71.731 264.762 null] +3308 0 obj << +/D [3285 0 R /XYZ 71.731 264.762 null] >> endobj 1794 0 obj << -/D [3304 0 R /XYZ 71.731 223.93 null] +/D [3285 0 R /XYZ 71.731 223.93 null] >> endobj -3329 0 obj << -/D [3304 0 R /XYZ 71.731 186.206 null] +3310 0 obj << +/D [3285 0 R /XYZ 71.731 186.206 null] >> endobj -3330 0 obj << -/D [3304 0 R /XYZ 191.311 175.277 null] +3311 0 obj << +/D [3285 0 R /XYZ 191.311 175.277 null] >> endobj -3331 0 obj << -/D [3304 0 R /XYZ 71.731 168.139 null] +3312 0 obj << +/D [3285 0 R /XYZ 71.731 168.139 null] >> endobj -3303 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F53 2143 0 R /F60 2518 0 R >> +3284 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F54 2154 0 R /F60 2497 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3334 0 obj << +3315 0 obj << /Length 1926 /Filter /FlateDecode >> stream -xڥYM��6��W�V9��")�#@Q�M�^ -4����,˶Y2,9��wȡ$ڔ��>�����7��L>��"�$�pa a�Xd�W�bO~}E5b�!+�����=狄$!_<n���"�Ă-7{����O���>�wߊ�L��c��OE{Y���۫_{N�#��|֬c����F�Q! ��燄�X�.��b�%^�n���������r�� ��S=��I�KX����u�c�>���v[��X>ܽ��O��v�S�u���2o���a0���2��x��'� ��K�z��ZR�]�[N,'R��}�^�#�X�Y���E�}�^?�f.���ʎMqʳ�>]�Y�ۙ�}}.��U�;ם���ԶnO��3����2�="�.WKIU�}ȳ��H\y�V^c=OKJ��7��%�h�Tvʫ��`w�^���I}n�`g?_Y4�5�.Z x�['ܦ�f����6�_���0s��-P�^J1�}/�Dz��6���K�/��5���j�V��=����Ҋ����\��� �₡�$5\��48�i_d{|��l��W����M���80�Fۀ���A��cZ9�i��%�]Ň�or[M�T�F ���LƘ9�W8<Sk���-��� =������ܧ�n b>�{�d�w��M�"��O���m{|{w��J��P�>�����;p�rܿH�]�S��QM �P̖�Z'�C-�X�� -:j�I��b�*uQ��0V,$!����aAp �!��b� ���Cb��ű�ۧ��cK��'��uQ���5vf� �du1B!�0V�y,�w��RY]�u����vi6ٷ��[RN�`�i��HM/qp��+�^��)h����.��,��h�W���r\ >��q�dr/��Y�W��G��֊��PۊR -�a�$_$����RZ�~�%sL���e��\��=�ܦ��nd@��!��o�Ƭ���ۉ� ->���2d���PkSeG�x]&�b�$���\i$ �8J�h�EdB�:c�֢�6����@�C����~;�W�*}�*�E5V\������\(�7�}�������v%e�� Y��m4��\C��T�l�~�C��{�%&�CYg_t���A� �C���kr,���&�[�����e�@��Y]m���)߆ ��`fҷ�������n��`8����qt��M����r7��h��td��fk���`�������?O��M���kB+�5��^=��w�ܤm���d�Ce��̤5�%D��-D���������d�XO�V�9�ʉ�D�N0�N��l6�lv� ��G���L�qH���� 20��!�4B���۠2ٟXwp��iΊ/���ǎ���4Ag�e`���A�asJk��VZ&���M���Jkx9u@��]��F~ҧG(�-wuLP��qoi�j�Xκ�d�W ��a4B5�*=b���������]��3=���x�f��r������n;���S�H&���]W��Fi��˺��2�N�}1�,�ME+�ރh�,30�Ѫ!�h����j�[�j��.�'=M�K��������Q�q��2��ߦB�% $_>+Y3%����S�#�dM��.���g.3� qy�fs{�f��`�?������&rC'�=;�]�}����q��8�lj�� a<_+���A)b�͙"F�oS��~����M���Nݿj'3C����cb�LƄ��b�fsDŽ�nDŽA�]�A��4�$��'O3Q4wG�<B�,�G�o�f��Y4�ߠ�����)�}����� -���6g�������"�����I��L�F#\���ܢ��-��NѴ��X�^"��ټh̤h4�%��-������1�i4����X��u�H�?�������Ruendstream +xڥYߏ�6~߿"o%����<��v��j�R��jzUEI�#rQ���c�������|�73� ]�𣋐��Åń�"=ܹ�<���*�JAV�����狘�_<o�O�E��|�x�����'�&;-W�w������E�w��|ʛ�����~y�8}�8�f��.�4$��°v}n@(��]�0r�Zr��ֵ0���W��!8��@��.V<&<d�`������z ���a�١j2l?�iV��n*�jˇ��U��u��|J��*��C^d��#�=f0�P�K3��� h<7tl�!)��w��-&�G�>inСs,�4���ľf� +3��AKE�&?eiS���,�p�z_�5aY��uk��E�.���Su���K�^z�C���j)#�O�j�49��N��H ��eI��\�w���5���NY�W�.��\:<���[���+��"�U�W�u�mRnF�q��X+�q�9� ӗ�����u��p,�4i� ����ْ��fy��u��jQ=��5�JXQ\��K[��W\04.B���K��.�<��nOE�*� +}e��v��ǁ!���>���SʡL��?,)�*>�~۪� �J7r����g"������\��oA�`d�h���&3�>UUC�1S��%s��o</�������i����^ +�*�V'���q���WI���7?ʩa��r[�dz�D�V^B�A�?�rW9C�. +�Ɗ$����!��na<��e�u�c�tH��>?�x{ɛ=���x]����[ag +��� ��� +��"��Dzz�Yi ��}a� +{���ɾA�I9�I��H[�A�{����ݰv�F�A��g�v�EH�Y�Z�K�j|�,F����'�c� {Y#V͂��L�<�6�V�����(%��;��ċsv�UH+S�\�d�I�W�4Q�kՁ�g��Ԙ�F��[�~����0+ d�t8�X��,�_��0�jl*���p��^�q�X. ��=W�x1 +�"\@qjD���Θ?�(����0�lx��q�y�֏`gc����З(�A��cŕ�H/2�������v� W�RFP���xQ�����F��d�o�A5�6�75d���[���?U�Ee?��57�*��!�¬�@m��E�[s + +Q���4I�V�6߽��m�(��}�c&}� 6ߚlvߚ�o5��s���j�G{q�ݤy�|)wC�pλ���u�l��T�������5�o �qKhļb|*��SHiQ+�M�$�N9T����L +QAlB4��B4� !j�2�Q��NƊ�t�jߚcN���q8�3��9�d�;�d7���4n��Q��d�(� " 3H-�L#dր!�������#�NsF|�1�d�/�OtVZfJZ-�"�6��F؇��ٟ��"B˥��rj?�@[����N�P�j������R�U1�u;ɔ�b('�p�j�Uj�u�)�7d[���2Qk�� ��y��I(��&��&����LE#����wm6mP��..�R|ʸ9w����7�pz����L�LF��آ�d�G��nD������t��L���-ze%��_������e��M�,�cH�|V�fJ�-�"�6�dG� ���� \�94��\f� +b��f���nzA�y ��G'�� r�/=;�]�}����q��8$lj�|��|��a�RD���6k�a���A~�� ���"{�*��Lf�A���D��� �ń�f� � ���2�*wi�IL�O�f�hn��y��Z4���f��Z4wߠ�����)�\����� +�b �6k���Lg�h|����IK�L�F!l�1��1� �h�V�4��X�^#��ټhz̤h�&��.������x�h8������,".k'��t�S�ʛL���R~endstream endobj -3333 0 obj << +3314 0 obj << /Type /Page -/Contents 3334 0 R -/Resources 3332 0 R +/Contents 3315 0 R +/Resources 3313 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3272 0 R -/Annots [ 3340 0 R 3341 0 R ] +/Parent 3281 0 R +/Annots [ 3321 0 R 3322 0 R ] >> endobj -3340 0 obj << +3321 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [272.131 566.22 315.707 574.81] /Subtype /Link /A << /S /GoTo /D (gloss-htaccess) >> >> endobj -3341 0 obj << +3322 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [262.114 554.671 321.927 563.154] /Subtype /Link /A << /S /GoTo /D (http-apache) >> >> endobj -3335 0 obj << -/D [3333 0 R /XYZ 71.731 729.265 null] +3316 0 obj << +/D [3314 0 R /XYZ 71.731 729.265 null] >> endobj 1517 0 obj << -/D [3333 0 R /XYZ 71.731 718.306 null] +/D [3314 0 R /XYZ 71.731 718.306 null] >> endobj 538 0 obj << -/D [3333 0 R /XYZ 192.823 706.118 null] +/D [3314 0 R /XYZ 192.823 706.118 null] >> endobj 1518 0 obj << -/D [3333 0 R /XYZ 71.731 705.903 null] +/D [3314 0 R /XYZ 71.731 705.903 null] >> endobj 542 0 obj << -/D [3333 0 R /XYZ 498.095 666.746 null] +/D [3314 0 R /XYZ 498.095 666.746 null] +>> endobj +3317 0 obj << +/D [3314 0 R /XYZ 71.731 656.381 null] +>> endobj +3318 0 obj << +/D [3314 0 R /XYZ 494.232 607.767 null] +>> endobj +3319 0 obj << +/D [3314 0 R /XYZ 71.731 592.658 null] +>> endobj +3320 0 obj << +/D [3314 0 R /XYZ 71.731 577.715 null] +>> endobj +3323 0 obj << +/D [3314 0 R /XYZ 76.712 538.626 null] +>> endobj +3324 0 obj << +/D [3314 0 R /XYZ 71.731 528.663 null] +>> endobj +3325 0 obj << +/D [3314 0 R /XYZ 81.694 495.787 null] +>> endobj +3326 0 obj << +/D [3314 0 R /XYZ 71.731 493.63 null] +>> endobj +3327 0 obj << +/D [3314 0 R /XYZ 71.731 493.63 null] +>> endobj +3328 0 obj << +/D [3314 0 R /XYZ 91.656 482.835 null] +>> endobj +3329 0 obj << +/D [3314 0 R /XYZ 120.717 482.835 null] +>> endobj +3330 0 obj << +/D [3314 0 R /XYZ 120.717 482.835 null] +>> endobj +3331 0 obj << +/D [3314 0 R /XYZ 147.218 482.835 null] +>> endobj +3332 0 obj << +/D [3314 0 R /XYZ 147.218 482.835 null] +>> endobj +3333 0 obj << +/D [3314 0 R /XYZ 71.731 481.396 null] +>> endobj +3334 0 obj << +/D [3314 0 R /XYZ 91.656 469.884 null] +>> endobj +3335 0 obj << +/D [3314 0 R /XYZ 135.691 469.884 null] >> endobj 3336 0 obj << -/D [3333 0 R /XYZ 71.731 656.381 null] +/D [3314 0 R /XYZ 135.691 469.884 null] >> endobj 3337 0 obj << -/D [3333 0 R /XYZ 494.232 607.767 null] +/D [3314 0 R /XYZ 215.989 469.884 null] >> endobj 3338 0 obj << -/D [3333 0 R /XYZ 71.731 592.658 null] +/D [3314 0 R /XYZ 215.989 469.884 null] >> endobj 3339 0 obj << -/D [3333 0 R /XYZ 71.731 577.715 null] +/D [3314 0 R /XYZ 76.712 451.951 null] +>> endobj +3340 0 obj << +/D [3314 0 R /XYZ 81.694 439 null] +>> endobj +3341 0 obj << +/D [3314 0 R /XYZ 92.483 439 null] >> endobj 3342 0 obj << -/D [3333 0 R /XYZ 76.712 538.626 null] +/D [3314 0 R /XYZ 71.731 438.811 null] >> endobj 3343 0 obj << -/D [3333 0 R /XYZ 71.731 528.663 null] +/D [3314 0 R /XYZ 71.731 438.811 null] >> endobj 3344 0 obj << -/D [3333 0 R /XYZ 81.694 495.787 null] +/D [3314 0 R /XYZ 91.656 426.048 null] >> endobj 3345 0 obj << -/D [3333 0 R /XYZ 71.731 493.63 null] +/D [3314 0 R /XYZ 71.731 423.891 null] >> endobj 3346 0 obj << -/D [3333 0 R /XYZ 71.731 493.63 null] +/D [3314 0 R /XYZ 91.656 413.097 null] >> endobj 3347 0 obj << -/D [3333 0 R /XYZ 91.656 482.835 null] +/D [3314 0 R /XYZ 135.691 413.097 null] >> endobj 3348 0 obj << -/D [3333 0 R /XYZ 120.717 482.835 null] +/D [3314 0 R /XYZ 135.691 413.097 null] >> endobj 3349 0 obj << -/D [3333 0 R /XYZ 120.717 482.835 null] +/D [3314 0 R /XYZ 76.712 395.164 null] >> endobj 3350 0 obj << -/D [3333 0 R /XYZ 147.218 482.835 null] +/D [3314 0 R /XYZ 81.694 382.213 null] >> endobj 3351 0 obj << -/D [3333 0 R /XYZ 147.218 482.835 null] +/D [3314 0 R /XYZ 92.483 382.213 null] >> endobj 3352 0 obj << -/D [3333 0 R /XYZ 71.731 481.396 null] +/D [3314 0 R /XYZ 71.731 381.504 null] >> endobj 3353 0 obj << -/D [3333 0 R /XYZ 91.656 469.884 null] +/D [3314 0 R /XYZ 71.731 381.504 null] >> endobj 3354 0 obj << -/D [3333 0 R /XYZ 135.691 469.884 null] +/D [3314 0 R /XYZ 91.656 369.261 null] >> endobj 3355 0 obj << -/D [3333 0 R /XYZ 135.691 469.884 null] +/D [3314 0 R /XYZ 71.731 367.104 null] >> endobj 3356 0 obj << -/D [3333 0 R /XYZ 215.989 469.884 null] +/D [3314 0 R /XYZ 71.731 367.104 null] >> endobj 3357 0 obj << -/D [3333 0 R /XYZ 215.989 469.884 null] +/D [3314 0 R /XYZ 101.619 356.31 null] >> endobj 3358 0 obj << -/D [3333 0 R /XYZ 76.712 451.951 null] +/D [3314 0 R /XYZ 71.731 354.153 null] >> endobj 3359 0 obj << -/D [3333 0 R /XYZ 81.694 439 null] +/D [3314 0 R /XYZ 101.619 343.358 null] >> endobj 3360 0 obj << -/D [3333 0 R /XYZ 92.483 439 null] +/D [3314 0 R /XYZ 142.884 343.358 null] >> endobj 3361 0 obj << -/D [3333 0 R /XYZ 71.731 438.811 null] +/D [3314 0 R /XYZ 142.884 343.358 null] >> endobj 3362 0 obj << -/D [3333 0 R /XYZ 71.731 438.811 null] +/D [3314 0 R /XYZ 76.712 325.426 null] >> endobj 3363 0 obj << -/D [3333 0 R /XYZ 91.656 426.048 null] +/D [3314 0 R /XYZ 91.656 312.474 null] >> endobj 3364 0 obj << -/D [3333 0 R /XYZ 71.731 423.891 null] +/D [3314 0 R /XYZ 71.731 310.317 null] >> endobj 3365 0 obj << -/D [3333 0 R /XYZ 91.656 413.097 null] +/D [3314 0 R /XYZ 71.731 310.317 null] >> endobj 3366 0 obj << -/D [3333 0 R /XYZ 135.691 413.097 null] +/D [3314 0 R /XYZ 101.619 299.523 null] >> endobj 3367 0 obj << -/D [3333 0 R /XYZ 135.691 413.097 null] +/D [3314 0 R /XYZ 71.731 297.366 null] >> endobj 3368 0 obj << -/D [3333 0 R /XYZ 76.712 395.164 null] +/D [3314 0 R /XYZ 101.619 286.571 null] >> endobj 3369 0 obj << -/D [3333 0 R /XYZ 81.694 382.213 null] +/D [3314 0 R /XYZ 145.653 286.571 null] >> endobj 3370 0 obj << -/D [3333 0 R /XYZ 92.483 382.213 null] +/D [3314 0 R /XYZ 145.653 286.571 null] >> endobj 3371 0 obj << -/D [3333 0 R /XYZ 71.731 381.504 null] +/D [3314 0 R /XYZ 177.534 286.571 null] >> endobj 3372 0 obj << -/D [3333 0 R /XYZ 71.731 381.504 null] +/D [3314 0 R /XYZ 177.534 286.571 null] >> endobj 3373 0 obj << -/D [3333 0 R /XYZ 91.656 369.261 null] +/D [3314 0 R /XYZ 209.414 286.571 null] >> endobj 3374 0 obj << -/D [3333 0 R /XYZ 71.731 367.104 null] +/D [3314 0 R /XYZ 209.414 286.571 null] >> endobj 3375 0 obj << -/D [3333 0 R /XYZ 71.731 367.104 null] +/D [3314 0 R /XYZ 241.294 286.571 null] >> endobj 3376 0 obj << -/D [3333 0 R /XYZ 101.619 356.31 null] +/D [3314 0 R /XYZ 241.294 286.571 null] >> endobj 3377 0 obj << -/D [3333 0 R /XYZ 71.731 354.153 null] +/D [3314 0 R /XYZ 76.712 268.638 null] >> endobj 3378 0 obj << -/D [3333 0 R /XYZ 101.619 343.358 null] +/D [3314 0 R /XYZ 91.656 255.687 null] >> endobj 3379 0 obj << -/D [3333 0 R /XYZ 142.884 343.358 null] +/D [3314 0 R /XYZ 71.731 253.53 null] >> endobj 3380 0 obj << -/D [3333 0 R /XYZ 142.884 343.358 null] +/D [3314 0 R /XYZ 71.731 253.53 null] >> endobj 3381 0 obj << -/D [3333 0 R /XYZ 76.712 325.426 null] +/D [3314 0 R /XYZ 101.619 242.736 null] >> endobj 3382 0 obj << -/D [3333 0 R /XYZ 91.656 312.474 null] +/D [3314 0 R /XYZ 76.712 206.87 null] >> endobj 3383 0 obj << -/D [3333 0 R /XYZ 71.731 310.317 null] +/D [3314 0 R /XYZ 81.694 193.919 null] >> endobj 3384 0 obj << -/D [3333 0 R /XYZ 71.731 310.317 null] +/D [3314 0 R /XYZ 92.483 193.919 null] >> endobj 3385 0 obj << -/D [3333 0 R /XYZ 101.619 299.523 null] +/D [3314 0 R /XYZ 71.731 192.511 null] >> endobj 3386 0 obj << -/D [3333 0 R /XYZ 71.731 297.366 null] +/D [3314 0 R /XYZ 71.731 192.511 null] >> endobj 3387 0 obj << -/D [3333 0 R /XYZ 101.619 286.571 null] +/D [3314 0 R /XYZ 91.656 180.967 null] >> endobj 3388 0 obj << -/D [3333 0 R /XYZ 145.653 286.571 null] +/D [3314 0 R /XYZ 76.712 163.034 null] >> endobj 3389 0 obj << -/D [3333 0 R /XYZ 145.653 286.571 null] +/D [3314 0 R /XYZ 81.694 150.083 null] >> endobj 3390 0 obj << -/D [3333 0 R /XYZ 177.534 286.571 null] +/D [3314 0 R /XYZ 92.483 150.083 null] >> endobj 3391 0 obj << -/D [3333 0 R /XYZ 177.534 286.571 null] +/D [3314 0 R /XYZ 71.731 148.675 null] >> endobj 3392 0 obj << -/D [3333 0 R /XYZ 209.414 286.571 null] +/D [3314 0 R /XYZ 71.731 148.675 null] >> endobj 3393 0 obj << -/D [3333 0 R /XYZ 209.414 286.571 null] ->> endobj -3394 0 obj << -/D [3333 0 R /XYZ 241.294 286.571 null] ->> endobj -3395 0 obj << -/D [3333 0 R /XYZ 241.294 286.571 null] ->> endobj -3396 0 obj << -/D [3333 0 R /XYZ 76.712 268.638 null] ->> endobj -3397 0 obj << -/D [3333 0 R /XYZ 91.656 255.687 null] ->> endobj -3398 0 obj << -/D [3333 0 R /XYZ 71.731 253.53 null] ->> endobj -3399 0 obj << -/D [3333 0 R /XYZ 71.731 253.53 null] ->> endobj -3400 0 obj << -/D [3333 0 R /XYZ 101.619 242.736 null] ->> endobj -3401 0 obj << -/D [3333 0 R /XYZ 76.712 206.87 null] ->> endobj -3402 0 obj << -/D [3333 0 R /XYZ 81.694 193.919 null] ->> endobj -3403 0 obj << -/D [3333 0 R /XYZ 92.483 193.919 null] ->> endobj -3404 0 obj << -/D [3333 0 R /XYZ 71.731 192.511 null] ->> endobj -3405 0 obj << -/D [3333 0 R /XYZ 71.731 192.511 null] ->> endobj -3406 0 obj << -/D [3333 0 R /XYZ 91.656 180.967 null] ->> endobj -3407 0 obj << -/D [3333 0 R /XYZ 76.712 163.034 null] ->> endobj -3408 0 obj << -/D [3333 0 R /XYZ 81.694 150.083 null] ->> endobj -3409 0 obj << -/D [3333 0 R /XYZ 92.483 150.083 null] ->> endobj -3410 0 obj << -/D [3333 0 R /XYZ 71.731 148.675 null] ->> endobj -3411 0 obj << -/D [3333 0 R /XYZ 71.731 148.675 null] ->> endobj -3412 0 obj << -/D [3333 0 R /XYZ 91.656 137.132 null] +/D [3314 0 R /XYZ 91.656 137.132 null] >> endobj -3332 0 obj << -/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R /F53 2143 0 R /F35 1437 0 R >> +3313 0 obj << +/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R /F54 2154 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3416 0 obj << +3397 0 obj << /Length 2406 /Filter /FlateDecode >> @@ -12242,132 +12162,132 @@ x ��������k�%a� �K�L납1����]�������&�����߰����]k�� ���,M�f�?V3�2��NJ��c���Fz� G���k�n;Au[�W��` 7���)�+�tĠ�T��r�E��S�!I7B�����e����iz"7�нA��8�F�'�\�}GU[�Siyp�h�rg&������В���?��g��� �����;�����Sk����A�n��'Ԕ�`���Mu�V�e)hUhA�����q���} �3��y����\���<B����ǵ�o�_��7�7�-��w�>�p�ͫ����l��O��z"���S�ㄯ!���x���,��YY��%�*����������fuBtU�/�*>�S�����%_���,����,��S���cE�2Wnth�(����C��R��S9&�Te��a��u5?�~B�l[n$���F�0K(����ID�)��7s^�<?u�:o�<=�����P4g���#@G��@$#ܽ��^�͵� �ܫ��fWh�4ވ�����<�z������>Ѝ��yȓء�BQ -;-�c6YwC��2v����֟V�k�K$8uA�(S��/=�I���n;��� q�_��dmT�endstream +;-�c6YwC��2v����֟V�k�K$8uA�(S��/=�I���n;��� ����_��dBT�endstream endobj -3415 0 obj << +3396 0 obj << /Type /Page -/Contents 3416 0 R -/Resources 3414 0 R +/Contents 3397 0 R +/Resources 3395 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3272 0 R -/Annots [ 3427 0 R 3431 0 R 3438 0 R ] +/Parent 3281 0 R +/Annots [ 3408 0 R 3412 0 R 3419 0 R ] >> endobj -3427 0 obj << +3408 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [179.678 602.148 232.014 610.63] /Subtype /Link /A << /S /GoTo /D (http) >> >> endobj -3431 0 obj << +3412 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [349.173 440.364 368.62 449.275] /Subtype /Link /A << /S /GoTo /D (gloss-dos) >> >> endobj -3438 0 obj << +3419 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [486.332 230.009 537.983 238.92] /Subtype /Link /A << /S /GoTo /D (security-bugzilla-charset-ex) >> >> endobj -3417 0 obj << -/D [3415 0 R /XYZ 71.731 729.265 null] +3398 0 obj << +/D [3396 0 R /XYZ 71.731 729.265 null] >> endobj -3418 0 obj << -/D [3415 0 R /XYZ 71.731 718.306 null] +3399 0 obj << +/D [3396 0 R /XYZ 71.731 718.306 null] >> endobj -3419 0 obj << -/D [3415 0 R /XYZ 152.136 669.489 null] +3400 0 obj << +/D [3396 0 R /XYZ 152.136 669.489 null] >> endobj -3420 0 obj << -/D [3415 0 R /XYZ 457.305 669.489 null] +3401 0 obj << +/D [3396 0 R /XYZ 457.305 669.489 null] >> endobj -3421 0 obj << -/D [3415 0 R /XYZ 281.996 643.587 null] +3402 0 obj << +/D [3396 0 R /XYZ 281.996 643.587 null] >> endobj -3422 0 obj << -/D [3415 0 R /XYZ 518.615 643.587 null] +3403 0 obj << +/D [3396 0 R /XYZ 518.615 643.587 null] >> endobj -3423 0 obj << -/D [3415 0 R /XYZ 523.039 643.587 null] +3404 0 obj << +/D [3396 0 R /XYZ 523.039 643.587 null] >> endobj -3424 0 obj << -/D [3415 0 R /XYZ 71.731 630.635 null] +3405 0 obj << +/D [3396 0 R /XYZ 71.731 630.635 null] >> endobj -3425 0 obj << -/D [3415 0 R /XYZ 71.731 630.536 null] +3406 0 obj << +/D [3396 0 R /XYZ 71.731 630.536 null] >> endobj -3426 0 obj << -/D [3415 0 R /XYZ 71.731 615.592 null] +3407 0 obj << +/D [3396 0 R /XYZ 71.731 615.592 null] >> endobj 1519 0 obj << -/D [3415 0 R /XYZ 71.731 576.139 null] +/D [3396 0 R /XYZ 71.731 576.139 null] >> endobj 546 0 obj << -/D [3415 0 R /XYZ 369.383 536.767 null] +/D [3396 0 R /XYZ 369.383 536.767 null] >> endobj -3428 0 obj << -/D [3415 0 R /XYZ 71.731 533.575 null] +3409 0 obj << +/D [3396 0 R /XYZ 71.731 533.575 null] >> endobj -3429 0 obj << -/D [3415 0 R /XYZ 71.731 516.439 null] +3410 0 obj << +/D [3396 0 R /XYZ 71.731 516.439 null] >> endobj -3430 0 obj << -/D [3415 0 R /XYZ 71.731 468.423 null] +3411 0 obj << +/D [3396 0 R /XYZ 71.731 468.423 null] >> endobj -3432 0 obj << -/D [3415 0 R /XYZ 348.289 429.569 null] +3413 0 obj << +/D [3396 0 R /XYZ 348.289 429.569 null] >> endobj -3433 0 obj << -/D [3415 0 R /XYZ 301.416 416.618 null] +3414 0 obj << +/D [3396 0 R /XYZ 301.416 416.618 null] >> endobj -3434 0 obj << -/D [3415 0 R /XYZ 370.113 403.666 null] +3415 0 obj << +/D [3396 0 R /XYZ 370.113 403.666 null] >> endobj -3435 0 obj << -/D [3415 0 R /XYZ 478.765 403.666 null] +3416 0 obj << +/D [3396 0 R /XYZ 478.765 403.666 null] >> endobj 1520 0 obj << -/D [3415 0 R /XYZ 71.731 373.614 null] +/D [3396 0 R /XYZ 71.731 373.614 null] >> endobj 550 0 obj << -/D [3415 0 R /XYZ 171.235 330.517 null] +/D [3396 0 R /XYZ 171.235 330.517 null] >> endobj 1521 0 obj << -/D [3415 0 R /XYZ 71.731 326.686 null] +/D [3396 0 R /XYZ 71.731 326.686 null] >> endobj 554 0 obj << -/D [3415 0 R /XYZ 413.668 291.144 null] +/D [3396 0 R /XYZ 413.668 291.144 null] >> endobj -3436 0 obj << -/D [3415 0 R /XYZ 71.731 280.779 null] +3417 0 obj << +/D [3396 0 R /XYZ 71.731 280.779 null] >> endobj -3437 0 obj << -/D [3415 0 R /XYZ 452.81 245.117 null] +3418 0 obj << +/D [3396 0 R /XYZ 452.81 245.117 null] >> endobj 1795 0 obj << -/D [3415 0 R /XYZ 71.731 217.057 null] +/D [3396 0 R /XYZ 71.731 217.057 null] >> endobj -3439 0 obj << -/D [3415 0 R /XYZ 71.731 179.334 null] +3420 0 obj << +/D [3396 0 R /XYZ 71.731 179.334 null] >> endobj -3440 0 obj << -/D [3415 0 R /XYZ 184.656 168.404 null] +3421 0 obj << +/D [3396 0 R /XYZ 184.656 168.404 null] >> endobj -3441 0 obj << -/D [3415 0 R /XYZ 71.731 161.266 null] +3422 0 obj << +/D [3396 0 R /XYZ 71.731 161.266 null] >> endobj -3442 0 obj << -/D [3415 0 R /XYZ 71.731 136.659 null] +3423 0 obj << +/D [3396 0 R /XYZ 71.731 136.659 null] >> endobj -3414 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F57 2335 0 R /F35 1437 0 R /F32 1119 0 R >> +3395 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F57 2317 0 R /F35 1437 0 R /F32 1119 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3446 0 obj << +3427 0 obj << /Length 2482 /Filter /FlateDecode >> @@ -12381,127 +12301,127 @@ U ދ��{;/�.AyF���yALel��mLn�Z��6m��W��8^�?ʴ�B�D%�FT ���x6����)�.&�銱x����4�Je1)xD�ֿA�9�� �]�X�J�@�E� ��m�Wyc!9�~�R)�i@097�|0��=�>H���o $��Ң��g��5��Zz�j�$,���g������@j�ߒJrY�$=4�9�>���*�4D��������j6P܄S{1����,�\K�����n�#�GaH@��� )L[t��Ja,��$�Ny��@��E�H�o��/+aбsxrs�}�@^�J�ĵ' �g�7�Sz����BZ�]�ٷElƀ�:�eߎ��� ��j�$T6��K�����^�D"�TCgV�����t\܄�r�`��d���W:8�N(��{�鉼�ڴ�l��M����J�96N� G�~�Pb�Q�����k�)�*����~�|�U�\�p��V3M��Np<)��)��i"]2�}f�!(�xP�纫�� ��.<eK�ޟ�`(�Y���1�^6��Ae����̂�� 3���Z$0Oǒ����.�x��^5�W�����/��1^d��~/����6P�=V��ذ�;J�>��W�xy�X@�c9=��E,��u)c�N����L{���& �ґ���&��z{.�d���ȕν{���r��\�"�.|Y?����0����K�+��Ew��3*Üm9^Jt�JP�����7~{Y�_���`�L� v��.���ڷ�l �5Z�Z~��U�[,��h�҉g�z�Y�LXD�<I����ү�2!o�FR]8iqh��j/�����BWw�A��T/�Z�4J��N���͍��K�m)E�3L��\�2 |��$�������������r�yXMR����v9�M���?��eW�IW��� g)��/�^|�AW\�k0L`�P����zD�a�8.�-L��b!9��#�����i��Bϯ���\��f��=s�P[L�*���4(]��IΈ�t��b��7��-?���g���3�h�(���� -�0��9M����{��r��}& ���z��=n�_�+�J|��<Q�IԌm�~��� �U�e�mJ��mDD����(%R8,G�%$2���G%������t\-5G�}dM�)R_!�j>�́�Z���t����%���H?�(�*��M�У��|�bB�=®�zՖD���p�VP�T��s�ͭ����.�B����`�d�T�=u �z�k(��J1�J1�f��=�]� �v����s���-K�^��g6�ՠB�P���Z�?����K��endstream +�0��9M����{��r��}& ���z��=n�_�+�J|��<Q�IԌm�~��� �U�e�mJ��mDD����(%R8,G�%$2���G%������t\-5G�}dM�)R_!�j>�́�Z���t����%���H?�(�*��M�У��|�bB�=®�zՖD���p�VP�T��s�ͭ����.�B����`�d�T�=u �z�k(��J1�J1�f��=�]� �v����s���-K�^��g6�ՠB�P�ݵ"�L�'�K��endstream endobj -3445 0 obj << +3426 0 obj << /Type /Page -/Contents 3446 0 R -/Resources 3444 0 R +/Contents 3427 0 R +/Resources 3425 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3272 0 R -/Annots [ 3450 0 R ] +/Parent 3281 0 R +/Annots [ 3431 0 R ] >> endobj -3450 0 obj << +3431 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [390.612 583.608 442.915 592.519] /Subtype /Link /A << /S /GoTo /D (template-http-accept) >> >> endobj -3447 0 obj << -/D [3445 0 R /XYZ 71.731 729.265 null] +3428 0 obj << +/D [3426 0 R /XYZ 71.731 729.265 null] >> endobj 1522 0 obj << -/D [3445 0 R /XYZ 71.731 718.306 null] +/D [3426 0 R /XYZ 71.731 718.306 null] >> endobj 558 0 obj << -/D [3445 0 R /XYZ 388.547 703.236 null] +/D [3426 0 R /XYZ 388.547 703.236 null] >> endobj 1523 0 obj << -/D [3445 0 R /XYZ 71.731 692.184 null] +/D [3426 0 R /XYZ 71.731 692.184 null] >> endobj 562 0 obj << -/D [3445 0 R /XYZ 303.155 651.159 null] +/D [3426 0 R /XYZ 303.155 651.159 null] >> endobj -3448 0 obj << -/D [3445 0 R /XYZ 71.731 638.988 null] +3429 0 obj << +/D [3426 0 R /XYZ 71.731 638.988 null] >> endobj -3449 0 obj << -/D [3445 0 R /XYZ 71.731 609.511 null] +3430 0 obj << +/D [3426 0 R /XYZ 71.731 609.511 null] >> endobj 1524 0 obj << -/D [3445 0 R /XYZ 71.731 583.608 null] +/D [3426 0 R /XYZ 71.731 583.608 null] >> endobj 566 0 obj << -/D [3445 0 R /XYZ 308.598 546.392 null] +/D [3426 0 R /XYZ 308.598 546.392 null] >> endobj -3451 0 obj << -/D [3445 0 R /XYZ 71.731 536.249 null] +3432 0 obj << +/D [3426 0 R /XYZ 71.731 536.249 null] >> endobj -3452 0 obj << -/D [3445 0 R /XYZ 363.706 526.268 null] +3433 0 obj << +/D [3426 0 R /XYZ 363.706 526.268 null] >> endobj -3453 0 obj << -/D [3445 0 R /XYZ 219.335 500.365 null] +3434 0 obj << +/D [3426 0 R /XYZ 219.335 500.365 null] >> endobj -3454 0 obj << -/D [3445 0 R /XYZ 320.961 500.365 null] +3435 0 obj << +/D [3426 0 R /XYZ 320.961 500.365 null] >> endobj -3455 0 obj << -/D [3445 0 R /XYZ 71.731 487.413 null] +3436 0 obj << +/D [3426 0 R /XYZ 71.731 487.413 null] >> endobj -3456 0 obj << -/D [3445 0 R /XYZ 157.2 487.413 null] +3437 0 obj << +/D [3426 0 R /XYZ 157.2 487.413 null] >> endobj -3457 0 obj << -/D [3445 0 R /XYZ 71.731 485.256 null] +3438 0 obj << +/D [3426 0 R /XYZ 71.731 485.256 null] >> endobj -3458 0 obj << -/D [3445 0 R /XYZ 118.555 446.692 null] +3439 0 obj << +/D [3426 0 R /XYZ 118.555 446.692 null] >> endobj -3459 0 obj << -/D [3445 0 R /XYZ 165.524 438.228 null] +3440 0 obj << +/D [3426 0 R /XYZ 165.524 438.228 null] >> endobj -3460 0 obj << -/D [3445 0 R /XYZ 341.284 426.572 null] +3441 0 obj << +/D [3426 0 R /XYZ 341.284 426.572 null] >> endobj 1525 0 obj << -/D [3445 0 R /XYZ 71.731 392.995 null] +/D [3426 0 R /XYZ 71.731 392.995 null] >> endobj 570 0 obj << -/D [3445 0 R /XYZ 347.534 360.599 null] +/D [3426 0 R /XYZ 347.534 360.599 null] >> endobj -3461 0 obj << -/D [3445 0 R /XYZ 71.731 350.234 null] +3442 0 obj << +/D [3426 0 R /XYZ 71.731 350.234 null] >> endobj -3462 0 obj << -/D [3445 0 R /XYZ 71.731 307.434 null] +3443 0 obj << +/D [3426 0 R /XYZ 71.731 307.434 null] >> endobj -3463 0 obj << -/D [3445 0 R /XYZ 412.638 296.639 null] +3444 0 obj << +/D [3426 0 R /XYZ 412.638 296.639 null] >> endobj -3464 0 obj << -/D [3445 0 R /XYZ 111.263 270.736 null] +3445 0 obj << +/D [3426 0 R /XYZ 111.263 270.736 null] >> endobj -3465 0 obj << -/D [3445 0 R /XYZ 71.731 268.579 null] +3446 0 obj << +/D [3426 0 R /XYZ 71.731 268.579 null] >> endobj -3466 0 obj << -/D [3445 0 R /XYZ 71.731 253.635 null] +3447 0 obj << +/D [3426 0 R /XYZ 71.731 253.635 null] >> endobj -3467 0 obj << -/D [3445 0 R /XYZ 71.731 204.584 null] +3448 0 obj << +/D [3426 0 R /XYZ 71.731 204.584 null] >> endobj -3468 0 obj << -/D [3445 0 R /XYZ 71.731 178.681 null] +3449 0 obj << +/D [3426 0 R /XYZ 71.731 178.681 null] >> endobj -3469 0 obj << -/D [3445 0 R /XYZ 213.956 165.73 null] +3450 0 obj << +/D [3426 0 R /XYZ 213.956 165.73 null] >> endobj -3470 0 obj << -/D [3445 0 R /XYZ 71.731 163.573 null] +3451 0 obj << +/D [3426 0 R /XYZ 71.731 163.573 null] >> endobj -3471 0 obj << -/D [3445 0 R /XYZ 71.731 148.629 null] +3452 0 obj << +/D [3426 0 R /XYZ 71.731 148.629 null] >> endobj -3472 0 obj << -/D [3445 0 R /XYZ 134.999 139.13 null] +3453 0 obj << +/D [3426 0 R /XYZ 134.999 139.13 null] >> endobj -3444 0 obj << +3425 0 obj << /Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F48 1896 0 R /F32 1119 0 R /F33 1210 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3475 0 obj << +3456 0 obj << /Length 2964 /Filter /FlateDecode >> @@ -12519,98 +12439,98 @@ R [�:o�B&at1W4�e:��Ҵ�ʄ5M�e���uQA�)�S�R��U�K���j�����SGR�u�qiN���@KK��z��*npG˹�=��p�×$=�{Kp��0?6�4:��6C]t2�h��*k�V@.m��@�F�ʧ#��K�ѷ�?|/��kɘ��-�B���6�qB��ۀ��k+�G�h�{O���zB�P{�*�^�I0F�D"B�c�m�����*��fSqC��rH��]��)u��Zh� ���^���Y�h"���m��.H1��q.=&=K�@�ネ��y2����t�*���-y��NV�'Y�N�Tk�g����,�@�3&�i,v���^|6"��M8�ZH�~�m�9��)�_u�^ߏ_m/^���M�Ty1ɯ0����Rv��u~�q������}e���7]uD��N�VX[l�����o�H�.�_HR_���Ae�+$��{���S��p��oe�i���=$����sz�j�|Mm?��,v��оPVN���+]�pRqⱥӒ���_]���� ����`$K�s+V��)sWۄ�JNH(���d�@���*��b)����9Gy"��z�����7-i�|�"|v���N$#������n��8��#�uy<���4��F��i��N�� �h��A�s�� -����*Z��-��1l�؝S��jv�3w�z�u8���}{ýۆ2ݽs6T����<�)Q�[ҽP��I���������={a��^5uM7c��^����i���ʿ�P3\��j*�%+'�Z�a��B>�V��b�O2�'����q'#]�&�c˥vB?�4�4�^R!���bOP_���R���3�*�V�RJ�([pG�2� ϧ���۾�TK��V"�y���n�&��d~��$�s���*��(���mg�r���\�X�_ s�O'�X����RVٗC���J�s�������=R� :��z���vI�3�ޱ���¥�h�!��4�����t{����ڸl���u���iT������i�R���9�K�wyu���.�i'?�P��j�]��{y�}�w�3���� Zc?tL��>�+��N�T3-endstream +����*Z��-��1l�؝S��jv�3w�z�u8���}{ýۆ2ݽs6T����<�)Q�[ҽP��I���������={a��^5uM7c��^����i���ʿ�P3\��j*�%+'�Z�a��B>�V��b�O2�'����q'#]�&�c˥vB?�4�4�^R!���bOP_���R���3�*�V�RJ�([pG�2� ϧ���۾�TK��V"�y���n�&��d~��$�s���*��(���mg�r���\�X�_ s�O'�X����RVٗC���J�s�������=R� :��z���vI�3�ޱ���¥�h�!��4�����t{����ڸl���u���iT������i�R���9�K�wyu���.�i'?�P��j�]��{y�}�w�3���� Zc?tL�?�+��N�T,endstream endobj -3474 0 obj << +3455 0 obj << /Type /Page -/Contents 3475 0 R -/Resources 3473 0 R +/Contents 3456 0 R +/Resources 3454 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3499 0 R +/Parent 3281 0 R >> endobj -3476 0 obj << -/D [3474 0 R /XYZ 71.731 729.265 null] +3457 0 obj << +/D [3455 0 R /XYZ 71.731 729.265 null] >> endobj -3477 0 obj << -/D [3474 0 R /XYZ 71.731 718.306 null] +3458 0 obj << +/D [3455 0 R /XYZ 71.731 718.306 null] >> endobj -3478 0 obj << -/D [3474 0 R /XYZ 71.731 649.4 null] +3459 0 obj << +/D [3455 0 R /XYZ 71.731 649.4 null] >> endobj -3479 0 obj << -/D [3474 0 R /XYZ 71.731 597.594 null] +3460 0 obj << +/D [3455 0 R /XYZ 71.731 597.594 null] >> endobj -3480 0 obj << -/D [3474 0 R /XYZ 71.731 582.65 null] +3461 0 obj << +/D [3455 0 R /XYZ 71.731 582.65 null] >> endobj -3481 0 obj << -/D [3474 0 R /XYZ 417.328 573.151 null] +3462 0 obj << +/D [3455 0 R /XYZ 417.328 573.151 null] >> endobj -3482 0 obj << -/D [3474 0 R /XYZ 218.704 561.494 null] +3463 0 obj << +/D [3455 0 R /XYZ 218.704 561.494 null] >> endobj -3483 0 obj << -/D [3474 0 R /XYZ 508.932 561.494 null] +3464 0 obj << +/D [3455 0 R /XYZ 508.932 561.494 null] >> endobj -3484 0 obj << -/D [3474 0 R /XYZ 76.712 533.201 null] +3465 0 obj << +/D [3455 0 R /XYZ 76.712 533.201 null] >> endobj -3485 0 obj << -/D [3474 0 R /XYZ 118.555 489.655 null] +3466 0 obj << +/D [3455 0 R /XYZ 118.555 489.655 null] >> endobj -3486 0 obj << -/D [3474 0 R /XYZ 135.395 481.191 null] +3467 0 obj << +/D [3455 0 R /XYZ 135.395 481.191 null] >> endobj -3487 0 obj << -/D [3474 0 R /XYZ 222.231 481.191 null] +3468 0 obj << +/D [3455 0 R /XYZ 222.231 481.191 null] >> endobj -3488 0 obj << -/D [3474 0 R /XYZ 433.177 481.191 null] +3469 0 obj << +/D [3455 0 R /XYZ 433.177 481.191 null] >> endobj 1526 0 obj << -/D [3474 0 R /XYZ 71.731 447.614 null] +/D [3455 0 R /XYZ 71.731 447.614 null] >> endobj 574 0 obj << -/D [3474 0 R /XYZ 267.224 415.218 null] +/D [3455 0 R /XYZ 267.224 415.218 null] >> endobj -3489 0 obj << -/D [3474 0 R /XYZ 71.731 412.249 null] +3470 0 obj << +/D [3455 0 R /XYZ 71.731 412.249 null] >> endobj -3490 0 obj << -/D [3474 0 R /XYZ 71.731 395.113 null] +3471 0 obj << +/D [3455 0 R /XYZ 71.731 395.113 null] >> endobj -3491 0 obj << -/D [3474 0 R /XYZ 266.919 374.77 null] +3472 0 obj << +/D [3455 0 R /XYZ 266.919 374.77 null] >> endobj -3492 0 obj << -/D [3474 0 R /XYZ 71.731 346.874 null] +3473 0 obj << +/D [3455 0 R /XYZ 71.731 346.874 null] >> endobj -3493 0 obj << -/D [3474 0 R /XYZ 419.408 320.972 null] +3474 0 obj << +/D [3455 0 R /XYZ 419.408 320.972 null] >> endobj -3494 0 obj << -/D [3474 0 R /XYZ 71.731 300.882 null] +3475 0 obj << +/D [3455 0 R /XYZ 71.731 300.882 null] >> endobj -3495 0 obj << -/D [3474 0 R /XYZ 71.731 244.095 null] +3476 0 obj << +/D [3455 0 R /XYZ 71.731 244.095 null] >> endobj -3496 0 obj << -/D [3474 0 R /XYZ 71.731 187.308 null] +3477 0 obj << +/D [3455 0 R /XYZ 71.731 187.308 null] >> endobj -3497 0 obj << -/D [3474 0 R /XYZ 253.921 176.513 null] +3478 0 obj << +/D [3455 0 R /XYZ 253.921 176.513 null] >> endobj -3498 0 obj << -/D [3474 0 R /XYZ 311.687 163.562 null] +3479 0 obj << +/D [3455 0 R /XYZ 311.687 163.562 null] >> endobj 1527 0 obj << -/D [3474 0 R /XYZ 71.731 143.472 null] +/D [3455 0 R /XYZ 71.731 143.472 null] >> endobj -3473 0 obj << +3454 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R /F48 1896 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3502 0 obj << +3482 0 obj << /Length 3159 /Filter /FlateDecode >> @@ -12628,137 +12548,137 @@ i �I�0��S/�E��T�g���V���~����-˚��'Z�]0�f��q�<�v���/v� �Ђ8��g��:x���, J=�]=��1<�Ƅ8�+v/�.K��1� �Y���/!R�A�:&�Z�1��%���V�Mk�F`���E�z��|��1�O�B�g2N��/��p��<�߹S(�����������2G�j���O���{�R�Zn�������,��}q홆�H\�h�怎�H�Q�[] ��W<8ҕl#o0�19mcc���;�>��SB�Ƕ�R�t�i�e� 96$�*7W7&������+��+�ۋ���t��u�/�m�s��r� �rg�ٙ)0��A�nj6�[ |s}+89!E���qt�H��7{��PL$-.s=Gx��?��3� ��hd����N �w�/ы�Dc��_��T��Y��RI.�ܶk��b,��vMeD,�������(�E��,�� �|HP�O�JPc�,�'�T< H �= �a,l,&>[����}P�[ԝ&�>@��O��M�HZ?d����h< ,β�q�e���� -�W�<^ è������$�]-��@@#�T�����ۼ1W<Ww7�d��e9��ӗ+����DS�(�?�<���S��O��4���.4�V�C��n�`���ͻ�Ls�Ïb����y�&�E��q�[\����\���mYɧ�`GQ�F#�Gg��Ջ�˩����iyZT� F������P$� ��t����c�):�ṉ��^5c�c�_ �j՞x�h��B���ƙ�f�����1�\����B����{�_4�%7���=� 5������v�����endstream +�W�<^ è������$�]-��@@#�T�����ۼ1W<Ww7�d��e9��ӗ+����DS�(�?�<���S��O��4���.4�V�C��n�`���ͻ�Ls�Ïb����y�&�E��q�[\����\���mYɧ�`GQ�F#�Gg��Ջ�˩����iyZT� F������P$� ��t����c�):�ṉ��^5c�c�_ �j՞x�h��B���ƙ�f�����1�\����B����{�_4�%7���=� 5������v�����endstream endobj -3501 0 obj << +3481 0 obj << /Type /Page -/Contents 3502 0 R -/Resources 3500 0 R +/Contents 3482 0 R +/Resources 3480 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3499 0 R +/Parent 3519 0 R >> endobj -3503 0 obj << -/D [3501 0 R /XYZ 71.731 729.265 null] +3483 0 obj << +/D [3481 0 R /XYZ 71.731 729.265 null] >> endobj 578 0 obj << -/D [3501 0 R /XYZ 308.397 708.149 null] +/D [3481 0 R /XYZ 308.397 708.149 null] >> endobj -3504 0 obj << -/D [3501 0 R /XYZ 71.731 698.007 null] +3484 0 obj << +/D [3481 0 R /XYZ 71.731 698.007 null] >> endobj -3505 0 obj << -/D [3501 0 R /XYZ 366.772 688.025 null] +3485 0 obj << +/D [3481 0 R /XYZ 366.772 688.025 null] >> endobj -3506 0 obj << -/D [3501 0 R /XYZ 71.731 667.935 null] +3486 0 obj << +/D [3481 0 R /XYZ 71.731 667.935 null] >> endobj -3507 0 obj << -/D [3501 0 R /XYZ 386.497 644.189 null] +3487 0 obj << +/D [3481 0 R /XYZ 386.497 644.189 null] >> endobj -3508 0 obj << -/D [3501 0 R /XYZ 71.731 624.1 null] +3488 0 obj << +/D [3481 0 R /XYZ 71.731 624.1 null] >> endobj -3509 0 obj << -/D [3501 0 R /XYZ 380.728 613.305 null] +3489 0 obj << +/D [3481 0 R /XYZ 380.728 613.305 null] >> endobj -3510 0 obj << -/D [3501 0 R /XYZ 71.731 593.215 null] +3490 0 obj << +/D [3481 0 R /XYZ 71.731 593.215 null] >> endobj -3511 0 obj << -/D [3501 0 R /XYZ 71.731 549.38 null] +3491 0 obj << +/D [3481 0 R /XYZ 71.731 549.38 null] >> endobj -3512 0 obj << -/D [3501 0 R /XYZ 71.731 531.447 null] +3492 0 obj << +/D [3481 0 R /XYZ 71.731 531.447 null] >> endobj -3513 0 obj << -/D [3501 0 R /XYZ 71.731 507.701 null] +3493 0 obj << +/D [3481 0 R /XYZ 71.731 507.701 null] >> endobj -3514 0 obj << -/D [3501 0 R /XYZ 228.316 507.701 null] +3494 0 obj << +/D [3481 0 R /XYZ 228.316 507.701 null] >> endobj -3515 0 obj << -/D [3501 0 R /XYZ 71.731 492.593 null] +3495 0 obj << +/D [3481 0 R /XYZ 71.731 492.593 null] >> endobj -3516 0 obj << -/D [3501 0 R /XYZ 71.731 477.649 null] +3496 0 obj << +/D [3481 0 R /XYZ 71.731 477.649 null] >> endobj -3517 0 obj << -/D [3501 0 R /XYZ 351.57 468.149 null] +3497 0 obj << +/D [3481 0 R /XYZ 351.57 468.149 null] >> endobj -3518 0 obj << -/D [3501 0 R /XYZ 71.731 416.941 null] +3498 0 obj << +/D [3481 0 R /XYZ 71.731 416.941 null] >> endobj -3519 0 obj << -/D [3501 0 R /XYZ 154.754 403.99 null] +3499 0 obj << +/D [3481 0 R /XYZ 154.754 403.99 null] >> endobj -3520 0 obj << -/D [3501 0 R /XYZ 102.167 391.038 null] +3500 0 obj << +/D [3481 0 R /XYZ 102.167 391.038 null] >> endobj 1528 0 obj << -/D [3501 0 R /XYZ 71.731 384.649 null] +/D [3481 0 R /XYZ 71.731 384.649 null] >> endobj 582 0 obj << -/D [3501 0 R /XYZ 251.73 346.685 null] +/D [3481 0 R /XYZ 251.73 346.685 null] >> endobj -3521 0 obj << -/D [3501 0 R /XYZ 71.731 336.542 null] +3501 0 obj << +/D [3481 0 R /XYZ 71.731 336.542 null] >> endobj -3522 0 obj << -/D [3501 0 R /XYZ 71.731 319.422 null] +3502 0 obj << +/D [3481 0 R /XYZ 71.731 319.422 null] >> endobj -3523 0 obj << -/D [3501 0 R /XYZ 71.731 319.422 null] +3503 0 obj << +/D [3481 0 R /XYZ 71.731 319.422 null] >> endobj -3524 0 obj << -/D [3501 0 R /XYZ 71.731 301.489 null] +3504 0 obj << +/D [3481 0 R /XYZ 71.731 301.489 null] >> endobj -3525 0 obj << -/D [3501 0 R /XYZ 71.731 301.489 null] +3505 0 obj << +/D [3481 0 R /XYZ 71.731 301.489 null] >> endobj -3526 0 obj << -/D [3501 0 R /XYZ 71.731 257.654 null] +3506 0 obj << +/D [3481 0 R /XYZ 71.731 257.654 null] >> endobj -3527 0 obj << -/D [3501 0 R /XYZ 71.731 257.654 null] +3507 0 obj << +/D [3481 0 R /XYZ 71.731 257.654 null] >> endobj -3528 0 obj << -/D [3501 0 R /XYZ 253.534 246.859 null] +3508 0 obj << +/D [3481 0 R /XYZ 253.534 246.859 null] >> endobj -3529 0 obj << -/D [3501 0 R /XYZ 71.731 200.867 null] +3509 0 obj << +/D [3481 0 R /XYZ 71.731 200.867 null] >> endobj -3530 0 obj << -/D [3501 0 R /XYZ 71.731 200.867 null] +3510 0 obj << +/D [3481 0 R /XYZ 71.731 200.867 null] >> endobj -3531 0 obj << -/D [3501 0 R /XYZ 71.731 169.983 null] +3511 0 obj << +/D [3481 0 R /XYZ 71.731 169.983 null] >> endobj -3532 0 obj << -/D [3501 0 R /XYZ 71.731 169.983 null] +3512 0 obj << +/D [3481 0 R /XYZ 71.731 169.983 null] >> endobj -3533 0 obj << -/D [3501 0 R /XYZ 439.225 159.188 null] +3513 0 obj << +/D [3481 0 R /XYZ 439.225 159.188 null] >> endobj -3534 0 obj << -/D [3501 0 R /XYZ 191.147 146.236 null] +3514 0 obj << +/D [3481 0 R /XYZ 191.147 146.236 null] >> endobj -3535 0 obj << -/D [3501 0 R /XYZ 307.056 146.236 null] +3515 0 obj << +/D [3481 0 R /XYZ 307.056 146.236 null] >> endobj -3536 0 obj << -/D [3501 0 R /XYZ 71.731 133.285 null] +3516 0 obj << +/D [3481 0 R /XYZ 71.731 133.285 null] >> endobj -3537 0 obj << -/D [3501 0 R /XYZ 71.731 126.147 null] +3517 0 obj << +/D [3481 0 R /XYZ 71.731 126.147 null] >> endobj -3538 0 obj << -/D [3501 0 R /XYZ 71.731 126.147 null] +3518 0 obj << +/D [3481 0 R /XYZ 71.731 126.147 null] >> endobj -3500 0 obj << +3480 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F32 1119 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3541 0 obj << +3522 0 obj << /Length 2707 /Filter /FlateDecode >> @@ -12774,102 +12694,102 @@ NZ}nZ �p�Ee�R݂�g��<�+j�8�w��cx���N�Uo0|)�V�G���C�P/�CJ˼*^HII��oM}�A� 2{9�w�lJ��J��V�2��,F�G��_�����;�i��:MiP&bS��q9o��n��,�I:�/�bq�r!3F�UCI�k(�y��2p��� �U�4g�F릓��7��%DRq�����q����-S1�Gph������� �����_�:QY|�7�?�"�1�XW��~��,���B�"%�X.B�n���b���^=�\�g[��rf��fe>�.7\�5&�1,��c���b��>Z��0�DT�"h����{\����2 ���bk������ɢ��:�4�%W���+*H����Q�\�ʋ�z��X��1ii��)aiR,�����g|_�ou��� m�� � �k��b�Z�wI����*�� �����a�z%�FB�.�� כ�LNms��E��4,�z��ve ;/��,��=ޮ�5� �[*�8� �Dj���I��1��sC|�~�i�{�H���8�Z;��@H�v�����"im}@�3iI�u�+I�U��+Z��ƢV�:%��fL�>u��C�t#]\�h(!��OX���ác���$��sޠ�=_u�P�S,��t®6Y� 99� �-��A��b���K��e�jH��N��8#�[9-,�����7����,��2d`��}_^���d|�D��hd�\>q=�0�O��.g�։UN� -KNP����������z�/7�W�%����~Dž2�=`��«��~��� ^$O����P 7iɴ����,+���"\��\��0��8� jkUN�,�Lsu�Uy�N=?ʮ�=��'Ֆ��yE�����h(�J*�/��8۸�l�B�_Ҿ�UNj��~��fa����ܓS1�$�Z���"��/�֭����=�$S�zg�����v<�'F+�w��}��7�~�}�� 34�i��~_��9�#wW�k/Ǽ�����ȏ�E��O���Ŝh�Lot�X�m��o�����ͼ����;�,�:�!b@���j��O����S��endstream +KNP����������z�/7�W�%����~Dž2�=`��«��~��� ^$O����P 7iɴ����,+���"\��\��0��8� jkUN�,�Lsu�Uy�N=?ʮ�=��'Ֆ��yE�����h(�J*�/��8۸�l�B�_Ҿ�UNj��~��fa����ܓS1�$�Z���"��/�֭����=�$S�zg�����v<�'F+�w��}��7�~�}�� 34�i��~_��9�#wW�k/Ǽ�����ȏ�E��O���Ŝh�Lot�X�m��o�����ͼ����;�,�:�!b@���j�}��%��R���endstream endobj -3540 0 obj << +3521 0 obj << /Type /Page -/Contents 3541 0 R -/Resources 3539 0 R +/Contents 3522 0 R +/Resources 3520 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3499 0 R +/Parent 3519 0 R >> endobj -3542 0 obj << -/D [3540 0 R /XYZ 71.731 729.265 null] +3523 0 obj << +/D [3521 0 R /XYZ 71.731 729.265 null] >> endobj -3543 0 obj << -/D [3540 0 R /XYZ 71.731 688.254 null] +3524 0 obj << +/D [3521 0 R /XYZ 71.731 688.254 null] >> endobj -3544 0 obj << -/D [3540 0 R /XYZ 71.731 688.254 null] +3525 0 obj << +/D [3521 0 R /XYZ 71.731 688.254 null] >> endobj -3545 0 obj << -/D [3540 0 R /XYZ 71.731 657.37 null] +3526 0 obj << +/D [3521 0 R /XYZ 71.731 657.37 null] >> endobj -3546 0 obj << -/D [3540 0 R /XYZ 71.731 657.37 null] +3527 0 obj << +/D [3521 0 R /XYZ 71.731 657.37 null] >> endobj -3547 0 obj << -/D [3540 0 R /XYZ 71.731 587.631 null] +3528 0 obj << +/D [3521 0 R /XYZ 71.731 587.631 null] >> endobj -3548 0 obj << -/D [3540 0 R /XYZ 71.731 587.631 null] +3529 0 obj << +/D [3521 0 R /XYZ 71.731 587.631 null] >> endobj -3549 0 obj << -/D [3540 0 R /XYZ 210.674 576.837 null] +3530 0 obj << +/D [3521 0 R /XYZ 210.674 576.837 null] >> endobj -3550 0 obj << -/D [3540 0 R /XYZ 137.035 499.128 null] +3531 0 obj << +/D [3521 0 R /XYZ 137.035 499.128 null] >> endobj -3551 0 obj << -/D [3540 0 R /XYZ 71.731 487.726 null] +3532 0 obj << +/D [3521 0 R /XYZ 71.731 487.726 null] >> endobj -3552 0 obj << -/D [3540 0 R /XYZ 71.731 449.514 null] +3533 0 obj << +/D [3521 0 R /XYZ 71.731 449.514 null] >> endobj -3553 0 obj << -/D [3540 0 R /XYZ 258.006 436.663 null] +3534 0 obj << +/D [3521 0 R /XYZ 258.006 436.663 null] >> endobj -3554 0 obj << -/D [3540 0 R /XYZ 394.451 410.76 null] +3535 0 obj << +/D [3521 0 R /XYZ 394.451 410.76 null] >> endobj -3555 0 obj << -/D [3540 0 R /XYZ 71.731 397.808 null] +3536 0 obj << +/D [3521 0 R /XYZ 71.731 397.808 null] >> endobj -3556 0 obj << -/D [3540 0 R /XYZ 71.731 391.419 null] +3537 0 obj << +/D [3521 0 R /XYZ 71.731 391.419 null] >> endobj -3557 0 obj << -/D [3540 0 R /XYZ 288.129 379.875 null] +3538 0 obj << +/D [3521 0 R /XYZ 288.129 379.875 null] >> endobj -3558 0 obj << -/D [3540 0 R /XYZ 111.088 366.924 null] +3539 0 obj << +/D [3521 0 R /XYZ 111.088 366.924 null] >> endobj -3559 0 obj << -/D [3540 0 R /XYZ 325.619 366.924 null] +3540 0 obj << +/D [3521 0 R /XYZ 325.619 366.924 null] >> endobj -3560 0 obj << -/D [3540 0 R /XYZ 71.731 346.834 null] +3541 0 obj << +/D [3521 0 R /XYZ 71.731 346.834 null] >> endobj -3561 0 obj << -/D [3540 0 R /XYZ 263.437 336.04 null] +3542 0 obj << +/D [3521 0 R /XYZ 263.437 336.04 null] >> endobj -3562 0 obj << -/D [3540 0 R /XYZ 71.731 323.088 null] +3543 0 obj << +/D [3521 0 R /XYZ 71.731 323.088 null] >> endobj -3563 0 obj << -/D [3540 0 R /XYZ 100.413 310.137 null] +3544 0 obj << +/D [3521 0 R /XYZ 100.413 310.137 null] >> endobj -3564 0 obj << -/D [3540 0 R /XYZ 71.731 290.047 null] +3545 0 obj << +/D [3521 0 R /XYZ 71.731 290.047 null] >> endobj -3565 0 obj << -/D [3540 0 R /XYZ 71.731 267.133 null] +3546 0 obj << +/D [3521 0 R /XYZ 71.731 267.133 null] >> endobj -3566 0 obj << -/D [3540 0 R /XYZ 71.731 222.6 null] +3547 0 obj << +/D [3521 0 R /XYZ 71.731 222.6 null] >> endobj -3567 0 obj << -/D [3540 0 R /XYZ 71.731 178.067 null] +3548 0 obj << +/D [3521 0 R /XYZ 71.731 178.067 null] >> endobj 1529 0 obj << -/D [3540 0 R /XYZ 71.731 138.516 null] +/D [3521 0 R /XYZ 71.731 138.516 null] >> endobj -3539 0 obj << +3520 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3570 0 obj << -/Length 3029 +3551 0 obj << +/Length 3030 /Filter /FlateDecode >> stream @@ -12889,113 +12809,113 @@ xڝk 'Dsq���S��P��`� 𤳆7�V�oL��BLt�t��9����7�Vd%{�u��³�1��L�3����R�p�����;}�(����Y�G��܄�Sȑ=�y�8�<�.��G��Ǯ�|�ӲX�c�n�B{-U,�b��S��8x�Y�\KQ�g�n_��|��Ѭ���G��z�t�g����C�g�P+g�_������\}�ؽm"�g�%:G0[;)�a�8� �$�����yh�_�j^GR��v�M��a]r�Ymx+n*�6�-�K-<J�nƠ��|2`�u���^���V��*/� �=���t�e��te�j�P�ap<ٳ�m�[zR�xXp�a��=$!uΓ�ʲ���� #�b�ؖlj�ck�FNyh�_{i$7��=C���Y5&5>D6Lj*�%wq�i��V$�]o��8��ͅ�軓ͮ�P1q���(����<"�3��#�(� �r��0^6��u>��bm �6� �d)�<�����v��~�������/n���~w���H��ۜaww���~}�y������S̙�PZ������� �E9�aoZE���3>qnt����O�`������ڍ��'���'��&Fe�F���F�������M$�V�t?�n�M$� ��3+֟ss�� -?���>��W�?a;����ģ��snJ�Ѭ��t�ǡkfp�ԍ �"��uKE��ev��fcp�T���^�|��'k�3��Lr�W�e���E@��2&�)��Z������A7��i�n�B�m�#vR�����V��|'d�mX�yS���z���ǗO�?���wu���C���I_�*^��?SSYs�5�����;@��72��yc�V���Xcs��J/Yܺ��⨡��~-��6�?�"��'�� O����c?�[ӑi^�3!�:˅�lB���oDdF�֬mr���%��$Y��� � ��o���^�<���endstream +?���>��W�?a;����ģ��snJ�Ѭ��t�ǡkfp�ԍ �"��uKE��ev��fcp�T���^�|��'k�3��Lr�W�e���E@��2&�)��Z������A7��i�n�B�m�#vR�����V��|'d�mX�yS���z���ǗO�?���wu���C���I_�*^��?SSYs�5�����;@��72��yc�V���Xcs��J/Yܺ��⨡��~-��6�?�"��'�� O����c?�[ӑi^�3!�:˅�lB���oDdF�֬mr���%��$Y������v�)"����'�8��endstream endobj -3569 0 obj << +3550 0 obj << /Type /Page -/Contents 3570 0 R -/Resources 3568 0 R +/Contents 3551 0 R +/Resources 3549 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3499 0 R +/Parent 3519 0 R >> endobj -3571 0 obj << -/D [3569 0 R /XYZ 71.731 729.265 null] +3552 0 obj << +/D [3550 0 R /XYZ 71.731 729.265 null] >> endobj 586 0 obj << -/D [3569 0 R /XYZ 461.484 707.841 null] +/D [3550 0 R /XYZ 461.484 707.841 null] >> endobj -3572 0 obj << -/D [3569 0 R /XYZ 71.731 697.476 null] +3553 0 obj << +/D [3550 0 R /XYZ 71.731 697.476 null] >> endobj -3573 0 obj << -/D [3569 0 R /XYZ 71.731 661.813 null] +3554 0 obj << +/D [3550 0 R /XYZ 71.731 661.813 null] >> endobj -3574 0 obj << -/D [3569 0 R /XYZ 71.731 643.781 null] +3555 0 obj << +/D [3550 0 R /XYZ 71.731 643.781 null] >> endobj -3575 0 obj << -/D [3569 0 R /XYZ 335.135 630.929 null] +3556 0 obj << +/D [3550 0 R /XYZ 335.135 630.929 null] >> endobj -3576 0 obj << -/D [3569 0 R /XYZ 117.651 617.978 null] +3557 0 obj << +/D [3550 0 R /XYZ 117.651 617.978 null] >> endobj -3577 0 obj << -/D [3569 0 R /XYZ 71.731 605.026 null] +3558 0 obj << +/D [3550 0 R /XYZ 71.731 605.026 null] >> endobj -3578 0 obj << -/D [3569 0 R /XYZ 294.096 605.026 null] +3559 0 obj << +/D [3550 0 R /XYZ 294.096 605.026 null] >> endobj 1530 0 obj << -/D [3569 0 R /XYZ 71.731 587.926 null] +/D [3550 0 R /XYZ 71.731 587.926 null] >> endobj 590 0 obj << -/D [3569 0 R /XYZ 237.169 544.828 null] +/D [3550 0 R /XYZ 237.169 544.828 null] >> endobj -3579 0 obj << -/D [3569 0 R /XYZ 71.731 541.265 null] +3560 0 obj << +/D [3550 0 R /XYZ 71.731 541.265 null] >> endobj -3580 0 obj << -/D [3569 0 R /XYZ 118.555 499.074 null] +3561 0 obj << +/D [3550 0 R /XYZ 118.555 499.074 null] >> endobj -3581 0 obj << -/D [3569 0 R /XYZ 526.195 490.61 null] +3562 0 obj << +/D [3550 0 R /XYZ 526.195 490.61 null] >> endobj -3582 0 obj << -/D [3569 0 R /XYZ 71.731 457.033 null] +3563 0 obj << +/D [3550 0 R /XYZ 71.731 457.033 null] >> endobj -3583 0 obj << -/D [3569 0 R /XYZ 71.731 393.392 null] +3564 0 obj << +/D [3550 0 R /XYZ 71.731 393.392 null] >> endobj -3584 0 obj << -/D [3569 0 R /XYZ 71.731 321.596 null] +3565 0 obj << +/D [3550 0 R /XYZ 71.731 321.596 null] >> endobj -3585 0 obj << -/D [3569 0 R /XYZ 527.223 297.85 null] +3566 0 obj << +/D [3550 0 R /XYZ 527.223 297.85 null] >> endobj -3586 0 obj << -/D [3569 0 R /XYZ 147.048 284.899 null] +3567 0 obj << +/D [3550 0 R /XYZ 147.048 284.899 null] >> endobj -3587 0 obj << -/D [3569 0 R /XYZ 225.125 284.899 null] +3568 0 obj << +/D [3550 0 R /XYZ 225.125 284.899 null] >> endobj -3588 0 obj << -/D [3569 0 R /XYZ 71.731 277.761 null] +3569 0 obj << +/D [3550 0 R /XYZ 71.731 277.761 null] >> endobj -3589 0 obj << -/D [3569 0 R /XYZ 179.885 254.015 null] +3570 0 obj << +/D [3550 0 R /XYZ 179.885 254.015 null] >> endobj -3590 0 obj << -/D [3569 0 R /XYZ 415.118 254.015 null] +3571 0 obj << +/D [3550 0 R /XYZ 415.118 254.015 null] >> endobj -3591 0 obj << -/D [3569 0 R /XYZ 138.304 241.063 null] +3572 0 obj << +/D [3550 0 R /XYZ 138.304 241.063 null] >> endobj -3592 0 obj << -/D [3569 0 R /XYZ 71.731 220.974 null] +3573 0 obj << +/D [3550 0 R /XYZ 71.731 220.974 null] >> endobj -3593 0 obj << -/D [3569 0 R /XYZ 71.731 220.974 null] +3574 0 obj << +/D [3550 0 R /XYZ 71.731 220.974 null] >> endobj -3594 0 obj << -/D [3569 0 R /XYZ 71.731 203.79 null] +3575 0 obj << +/D [3550 0 R /XYZ 71.731 203.79 null] >> endobj -3595 0 obj << -/D [3569 0 R /XYZ 440.089 192.246 null] +3576 0 obj << +/D [3550 0 R /XYZ 440.089 192.246 null] >> endobj -3596 0 obj << -/D [3569 0 R /XYZ 71.731 161.362 null] +3577 0 obj << +/D [3550 0 R /XYZ 71.731 161.362 null] >> endobj -3597 0 obj << -/D [3569 0 R /XYZ 71.731 161.362 null] +3578 0 obj << +/D [3550 0 R /XYZ 71.731 161.362 null] >> endobj -3598 0 obj << -/D [3569 0 R /XYZ 71.731 111.888 null] +3579 0 obj << +/D [3550 0 R /XYZ 71.731 111.888 null] >> endobj -3568 0 obj << +3549 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F32 1119 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3601 0 obj << +3582 0 obj << /Length 2776 /Filter /FlateDecode >> @@ -13011,536 +12931,539 @@ xڕm �8�ǜ0ox��9;���jd����_�]��2��{l9��cC��!�����m��>�Fbg�s��QNh��c���p���M��a]���S���!+O��% �|�%1=�Q'-�3/K��u>�B/��q���:O��$�D���A����z~�A�YG.�K���Q�Ϧ >�Xu�4R���9*B��Z,/�r #�:Zhj3%Џ�^���`�rP�~m���v�QA��!��:O�+E� �9�O�@A�(��+���c�+�Y���&4\_���_�4v]C�>Z�'0�\D���_ף�5��f� \9P�y�:�0��/��#Y;]WBK�D��Ts�Cc4�J��Q�Q�,�ツ:4�����3��@q!�] ��XM /�yɔ��xo �_�:S�$e�=���c�=҅������.L8��wJ ����19%Q�5�p�!,|w�/����/�� �l��~�KR����s���L.��'�`��\��tc���n�iۄ����Ue�ȓ����}��n9h��J�?�;4�T(���¾��¯ԑ��^J2q�F����^W� � j%���q�o� �:�F�u���Xizn��2$+Q�i�\��k�jߜ���E�8��{R��?آu�c�T<�讫F�����%��g�����&*~.%�S�U% -���ۄLd]����/�9�n|�z��"(���=1q�%�V����J~|�э-�����q�NA��{^�'8O�њ�Țl���2V�� �B���0��.��������z/Mm��(T�4��QV���\�(%�����UeS��k���N�(q����PZs��q2�y�w�a��u4Y�s0�[�)w��h����_��y�z���xp������g���/=�M*#O���Ba7�D,�`���lp�R�}��i�<j�(��ɍ���S������r�h�p�I���wE�� �J���7?�S_�_��]�7�R�67�t��n��������#�:$��ې�O�S�Ш& ���@����m�̈́�Z�� ����v��1L�}�z�4���-p������w;�����1�V�\P�8��?����&/�3endstream +���ۄLd]����/�9�n|�z��"(���=1q�%�V����J~|�э-�����q�NA��{^�'8O�њ�Țl���2V�� �B���0��.��������z/Mm��(T�4��QV���\�(%�����UeS��k���N�(q����PZs��q2�y�w�a��u4Y�s0�[�)w��h����_��y�z���xp������g���/=�M*#O���Ba7�D,�`���lp�R�}��i�<j�(��ɍ���S������r�h�p�I���wE�� �J���7?�S_�_��]�7�R�67�t��n��������#�:$��ې�O�S�Ш& ���@����m�̈́�Z�� ����v��1L�}�z�4���-p������w;�����1�V�\P�8��?����%��0endstream endobj -3600 0 obj << +3581 0 obj << /Type /Page -/Contents 3601 0 R -/Resources 3599 0 R +/Contents 3582 0 R +/Resources 3580 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3499 0 R +/Parent 3519 0 R +>> endobj +3583 0 obj << +/D [3581 0 R /XYZ 71.731 729.265 null] +>> endobj +3584 0 obj << +/D [3581 0 R /XYZ 71.731 695.392 null] +>> endobj +3585 0 obj << +/D [3581 0 R /XYZ 71.731 689.003 null] +>> endobj +3586 0 obj << +/D [3581 0 R /XYZ 71.731 618.516 null] +>> endobj +3587 0 obj << +/D [3581 0 R /XYZ 71.731 587.631 null] +>> endobj +3588 0 obj << +/D [3581 0 R /XYZ 71.731 556.747 null] +>> endobj +3589 0 obj << +/D [3581 0 R /XYZ 235.228 533.001 null] +>> endobj +3590 0 obj << +/D [3581 0 R /XYZ 71.731 512.912 null] +>> endobj +3591 0 obj << +/D [3581 0 R /XYZ 282.395 502.117 null] +>> endobj +3592 0 obj << +/D [3581 0 R /XYZ 500.324 502.117 null] +>> endobj +3593 0 obj << +/D [3581 0 R /XYZ 300.306 489.166 null] +>> endobj +3594 0 obj << +/D [3581 0 R /XYZ 71.731 476.214 null] +>> endobj +3595 0 obj << +/D [3581 0 R /XYZ 71.731 453.201 null] +>> endobj +3596 0 obj << +/D [3581 0 R /XYZ 71.731 384.868 null] +>> endobj +3597 0 obj << +/D [3581 0 R /XYZ 246.016 372.105 null] +>> endobj +3598 0 obj << +/D [3581 0 R /XYZ 71.731 364.966 null] +>> endobj +3599 0 obj << +/D [3581 0 R /XYZ 178.27 354.172 null] +>> endobj +3600 0 obj << +/D [3581 0 R /XYZ 71.731 342.052 null] +>> endobj +3601 0 obj << +/D [3581 0 R /XYZ 71.731 321.183 null] >> endobj 3602 0 obj << -/D [3600 0 R /XYZ 71.731 729.265 null] +/D [3581 0 R /XYZ 462.665 309.639 null] >> endobj 3603 0 obj << -/D [3600 0 R /XYZ 71.731 695.392 null] +/D [3581 0 R /XYZ 71.731 289.549 null] >> endobj 3604 0 obj << -/D [3600 0 R /XYZ 71.731 689.003 null] +/D [3581 0 R /XYZ 71.731 278.655 null] >> endobj 3605 0 obj << -/D [3600 0 R /XYZ 71.731 618.516 null] +/D [3581 0 R /XYZ 71.731 273.674 null] >> endobj 3606 0 obj << -/D [3600 0 R /XYZ 71.731 587.631 null] +/D [3581 0 R /XYZ 81.694 250.859 null] >> endobj 3607 0 obj << -/D [3600 0 R /XYZ 71.731 556.747 null] +/D [3581 0 R /XYZ 81.694 237.908 null] >> endobj 3608 0 obj << -/D [3600 0 R /XYZ 235.228 533.001 null] +/D [3581 0 R /XYZ 71.731 235.751 null] >> endobj 3609 0 obj << -/D [3600 0 R /XYZ 71.731 512.912 null] +/D [3581 0 R /XYZ 81.694 219.975 null] >> endobj 3610 0 obj << -/D [3600 0 R /XYZ 282.395 502.117 null] +/D [3581 0 R /XYZ 344.309 207.024 null] >> endobj 3611 0 obj << -/D [3600 0 R /XYZ 500.324 502.117 null] +/D [3581 0 R /XYZ 140.643 194.072 null] >> endobj 3612 0 obj << -/D [3600 0 R /XYZ 300.306 489.166 null] +/D [3581 0 R /XYZ 270.568 194.072 null] >> endobj 3613 0 obj << -/D [3600 0 R /XYZ 71.731 476.214 null] +/D [3581 0 R /XYZ 333.642 194.072 null] >> endobj 3614 0 obj << -/D [3600 0 R /XYZ 71.731 453.201 null] +/D [3581 0 R /XYZ 71.731 173.983 null] >> endobj 3615 0 obj << -/D [3600 0 R /XYZ 71.731 384.868 null] +/D [3581 0 R /XYZ 309.019 163.188 null] >> endobj 3616 0 obj << -/D [3600 0 R /XYZ 246.016 372.105 null] +/D [3581 0 R /XYZ 179.902 150.237 null] >> endobj 3617 0 obj << -/D [3600 0 R /XYZ 71.731 364.966 null] ->> endobj -3618 0 obj << -/D [3600 0 R /XYZ 178.27 354.172 null] +/D [3581 0 R /XYZ 494.944 150.237 null] >> endobj -3619 0 obj << -/D [3600 0 R /XYZ 71.731 342.052 null] +3580 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 3620 0 obj << -/D [3600 0 R /XYZ 71.731 321.183 null] +/Length 2832 +/Filter /FlateDecode +>> +stream +xڝk��6��� +W 2��J�^�~8$��HQ4�t�(d��f#��(�q��o^����"؈��g�"�ϊ8,|�e���l���fO���M,AYLp^=�ܽVj����=<�ҨU�� +��e��ꟃ�M��u7_$Yd!��ۭq�}b����y����<|w���xs��pY�/�q.�K�#ue�K .*�H$��k ���~S�8�;���w�Ow���D�p}��UW��7�M���;?��uƶWq��<�78�8�A�:�tD��"ڞX��<��Ah�g��>��(�g������@60س��p)¨��V�5��^hL� ��ʲ d�K�_��$X��x<>�V�4;��ۭnk�"aܱ1r��Ю��A:�BU�v0�:�o�W�Sl��p6�=yY�/[9��&LP�V��sUw����3�e��<̊/���k�Z� +uv +��!I����0K�^v�=^�[�]~����ߜ�5͗"3���*Ya�Q/*$��wԻ���'�6BA��#�n��('�Q��6���F�5XPP��^.���vnP�M%�x�R�(���qm���YP�2�Dc�<� �^o;����CZ�)����Y�y����xΫ|��7����wo�>ܑF�������s�|�'M���=i��I�� 6��kt�3 �x�n�J�T�{=�������쩝^%^�E�|�vbE ����g�O@i���|L�L'D�8$ׄ�=*I�O#T�����qs�#�e���?3I�P�'�����Pv�*�%��u��Q��z�MB$�S߮ȁ;8rq�}O�[ �E�F�'�],����{@lt���@��Y[�x�t��&����_��e���6����|�Ri��A[ r0�y��>ƙv5��]��%�8���spp�Q �cP@��0B�W�m�����Ȧ�͈CAGal����̶�H�5q��n� a1).!d�D8l�wd�ƕF�B�ǻ����Hfg� �r�GC65K��g�v���0�K�3��ҧ6�M�x����ѷĔ��2 +��,j�`�Y���nS ��O7?��j���o�A��-U,gq�\�Y�g�7?��8����-�/��{�∅�f��pT~�H���)rQ*�C���4+² Ƽ���5�V�אy�.m��(F�Jp̹bV>�)�ҹBQ�C�nc���ŕ�@����E\��;L�@� �" ۯy�L7�`�]�0�B�D�0�w%�|$X�z2�j����,��L�[b��"v����$i)�c2K�n% ������kt�IZ�"�2pd�1�n��J�TH��N@b�02���L�B*�D�έ� Xi����;�i�<b��n��"9�p��cC��K��V:��Ђ����;��A�!���+�Ƃ� ����Vʒ�2QN0���a���[Kn:})L ���E�Z�H�˙T���&v�'M2UPK�������Ը�p����$���+�t��nwUKW��`{��`c,@���x��R��Ƭ��Ȗ����5yw���,m�\7�sǛ����tC)����� +�f����1D��Ր&�Or����DK)��De��z�+���H4N8BW@%FI���k�g��h����<��$Ԍ��K��[pf랁�JN"��=������7��#�_+d��`Z���Yʱ!�W)\E���$kg��ݎ�☞�M<��z&;������1����d,?�k��Z��j��F�F�N��+$���&C���5`��|�?H^�w�"t����Q1�e��l�-O0�\ne,�s�3���� ,�8��3t��P�p����+����F����+ �2��ۚ�L,\��J7���q����BL�;��3NO�)ɼY�1e$s�) �)�b�"m�(4�z���� +y��`��Z����#��R���,�T�´����F�?B�Fi�~mtS��|���*FV�l��(b��T�*���"z��oz\+qG���u[����� �2Jx�/�yĶ`4I��c�,���y�p���t�9ܥJPy�F�5l����t���3I�V<9��9�˰<����I�ގ9��WL�pNF/Y����y:U�$U���ѩ���~8���bP���q6�ě�9���4x��������t+��Tqum���RQLm��6��<<����3�^A���D'n�ȧ�Q!9X`<�Cߏq&[�����AN�}���<W���J3����+7��2�}�G0Pwv̀��ѡ>��O ਓN�7��\�މ3&ڑE�<�a�F���`�6�hKx���Z��q3!�FJ������S�z��8���l�����`�% +^�N�y(}HBEi��ҳ���0��=��i�Ao��ݷ�35C�'�~EnJ��<!��C'!��I��i(�ZƉ�����/��b|3H/����~o(:J�M盿��i��"��a���~N���_� ۏI�L��T��`K9��,|�[NHDZ�cK�o<}�-P�4���f���U�Z���n�Z.���9�|��NKa9��C�i��vW��4�M�ˬ����hl�m�n�u�Fd\�az`��Q%�G�J�D&Ɩ1�����̊��� +E�fA�.�v�y�nNj��Zz5��SOK�j^N���֘d{�, ���"�T����T�i��)�1��n�<=6Xq&�+ �i�t�T-$�!gV�N8 +��kS5<��ӆ� �����s�/;n�<��|}�3�3��Q�6��s�Jl����N���Io��i���NS=r"{�'��KH�������,)���Pg�x��˫�����endstream +endobj +3619 0 obj << +/Type /Page +/Contents 3620 0 R +/Resources 3618 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 3519 0 R >> endobj 3621 0 obj << -/D [3600 0 R /XYZ 462.665 309.639 null] +/D [3619 0 R /XYZ 71.731 729.265 null] >> endobj 3622 0 obj << -/D [3600 0 R /XYZ 71.731 289.549 null] +/D [3619 0 R /XYZ 71.731 741.22 null] >> endobj 3623 0 obj << -/D [3600 0 R /XYZ 71.731 278.655 null] +/D [3619 0 R /XYZ 71.731 718.306 null] >> endobj 3624 0 obj << -/D [3600 0 R /XYZ 71.731 273.674 null] +/D [3619 0 R /XYZ 76.712 664.508 null] >> endobj 3625 0 obj << -/D [3600 0 R /XYZ 81.694 250.859 null] +/D [3619 0 R /XYZ 81.694 646.575 null] >> endobj 3626 0 obj << -/D [3600 0 R /XYZ 81.694 237.908 null] +/D [3619 0 R /XYZ 198.595 633.624 null] >> endobj 3627 0 obj << -/D [3600 0 R /XYZ 71.731 235.751 null] +/D [3619 0 R /XYZ 95.463 620.672 null] >> endobj 3628 0 obj << -/D [3600 0 R /XYZ 81.694 219.975 null] +/D [3619 0 R /XYZ 71.731 600.583 null] +>> endobj +1531 0 obj << +/D [3619 0 R /XYZ 71.731 540.971 null] +>> endobj +594 0 obj << +/D [3619 0 R /XYZ 402.85 495.717 null] >> endobj 3629 0 obj << -/D [3600 0 R /XYZ 344.309 207.024 null] +/D [3619 0 R /XYZ 71.731 491.887 null] >> endobj 3630 0 obj << -/D [3600 0 R /XYZ 140.643 194.072 null] +/D [3619 0 R /XYZ 118.555 449.696 null] >> endobj 3631 0 obj << -/D [3600 0 R /XYZ 270.568 194.072 null] +/D [3619 0 R /XYZ 71.731 395.999 null] >> endobj 3632 0 obj << -/D [3600 0 R /XYZ 333.642 194.072 null] +/D [3619 0 R /XYZ 71.731 345.309 null] >> endobj 3633 0 obj << -/D [3600 0 R /XYZ 71.731 173.983 null] +/D [3619 0 R /XYZ 395.22 319.506 null] >> endobj 3634 0 obj << -/D [3600 0 R /XYZ 309.019 163.188 null] +/D [3619 0 R /XYZ 108.148 306.555 null] >> endobj 3635 0 obj << -/D [3600 0 R /XYZ 179.902 150.237 null] +/D [3619 0 R /XYZ 441.752 306.555 null] >> endobj 3636 0 obj << -/D [3600 0 R /XYZ 494.944 150.237 null] +/D [3619 0 R /XYZ 71.731 286.465 null] >> endobj -3599 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +3637 0 obj << +/D [3619 0 R /XYZ 403.654 262.719 null] +>> endobj +3638 0 obj << +/D [3619 0 R /XYZ 71.731 237.648 null] >> endobj 3639 0 obj << -/Length 2832 +/D [3619 0 R /XYZ 71.731 163.128 null] +>> endobj +3640 0 obj << +/D [3619 0 R /XYZ 477.684 139.382 null] +>> endobj +3618 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3643 0 obj << +/Length 2133 /Filter /FlateDecode >> stream -xڝk��6��� -W 2��J�^�~8$��HQ4�t�(d��f#��(�q��o^����"؈��g�"�ϊ8,|�e���l���fO���M,AYLp^=�ܽVj����=<�ҨU�� -��e��ꟃ�M��u7_$Yd!��ۭq�}b����y����<|w���xs��pY�/�q.�K�#ue�K .*�H$��k ���~S�8�;���w�Ow���D�p}��UW��7�M���;?��uƶWq��<�78�8�A�:�tD��"ڞX��<��Ah�g��>��(�g������@60س��p)¨��V�5��^hL� ��ʲ d�K�_��$X��x<>�V�4;��ۭnk�"aܱ1r��Ю��A:�BU�v0�:�o�W�Sl��p6�=yY�/[9��&LP�V��sUw����3�e��<̊/���k�Z� -uv -��!I����0K�^v�=^�[�]~����ߜ�5͗"3���*Ya�Q/*$��wԻ���'�6BA��#�n��('�Q��6���F�5XPP��^.���vnP�M%�x�R�(���qm���YP�2�Dc�<� �^o;����CZ�)����Y�y����xΫ|��7����wo�>ܑF�������s�|�'M���=i��I�� 6��kt�3 �x�n�J�T�{=�������쩝^%^�E�|�vbE ����g�O@i���|L�L'D�8$ׄ�=*I�O#T�����qs�#�e���?3I�P�'�����Pv�*�%��u��Q��z�MB$�S߮ȁ;8rq�}O�[ �E�F�'�],����{@lt���@��Y[�x�t��&����_��e���6����|�Ri��A[ r0�y��>ƙv5��]��%�8���spp�Q �cP@��0B�W�m�����Ȧ�͈CAGal����̶�H�5q��n� a1).!d�D8l�wd�ƕF�B�ǻ����Hfg� �r�GC65K��g�v���0�K�3��ҧ6�M�x����ѷĔ��2 -��,j�`�Y���nS ��O7?��j���o�A��-U,gq�\�Y�g�7?��8����-�/��{�∅�f��pT~�H���)rQ*�C���4+² Ƽ���5�V�אy�.m��(F�Jp̹bV>�)�ҹBQ�C�nc���ŕ�@����E\��;L�@� �" ۯy�L7�`�]�0�B�D�0�w%�|$X�z2�j����,��L�[b��"v����$i)�c2K�n% ������kt�IZ�"�2pd�1�n��J�TH��N@b�02���L�B*�D�έ� Xi����;�i�<b��n��"9�p��cC��K��V:��Ђ����;��A�!���+�Ƃ� ����Vʒ�2QN0���a���[Kn:})L ���E�Z�H�˙T���&v�'M2UPK�������Ը�p����$���+�t��nwUKW��`{��`c,@���x��R��Ƭ��Ȗ����5yw���,m�\7�sǛ����tC)����� -�f����1D��Ր&�Or����DK)��De��z�+���H4N8BW@%FI���k�g��h����<��$Ԍ��K��[pf랁�JN"��=������7��#�_+d��`Z���Yʱ!�W)\E���$kg��ݎ�☞�M<��z&;������1����d,?�k��Z��j��F�F�N��+$���&C���5`��|�?H^�w�"t����Q1�e��l�-O0�\ne,�s�3���� ,�8��3t��P�p����+����F����+ �2��ۚ�L,\��J7���q����BL�;��3NO�)ɼY�1e$s�) �)�b�"m�(4�z���� -y��`��Z����#��R���,�T�´����F�?B�Fi�~mtS��|���*FV�l��(b��T�*���"z��oz\+qG���u[����� �2Jx�/�yĶ`4I��c�,���y�p���t�9ܥJPy�F�5l����t���3I�V<9��9�˰<����I�ގ9��WL�pNF/Y����y:U�$U���ѩ���~8���bP���q6�ě�9���4x��������t+��Tqum���RQLm��6��<<����3�^A���D'n�ȧ�Q!9X`<�Cߏq&[�����AN�}���<W���J3����+7��2�}�G0Pwv̀��ѡ>��O ਓN�7��\�މ3&ڑE�<�a�F���`�6�hKx���Z��q3!�FJ������S�z��8���l�����`�% -^�N�y(}HBEi��ҳ���0��=��i�Ao��ݷ�35C�'�~EnJ��<!��C'!��I��i(�ZƉ�����/��b|3H/����~o(:J�M盿��i��"��a���~N���_� ۏI�L��T��`K9��,|�[NHDZ�cK�o<}�-P�4���f���U�Z���n�Z.���9�|��NKa9��C�i��vW��4�M�ˬ����hl�m�n�u�Fd\�az`��Q%�G�J�D&Ɩ1�����̊��� -E�fA�.�v�y�nNj��Zz5��SOK�j^N���֘d{�, ���"�T����T�i��)�1��n�<=6Xq&�+ �i�t�T-$�!gV�N8 -��kS5<��ӆ� �����s�/;n�<��|}�3�3��Q�6��s�Jl����N���Io��i���NS=r"{�'��KH�������,)�(�Pc�|���˛���yendstream +xڭXm��6���B��>،(��J�"M��-��zY�P4ł�h[]It���{h��pF��r��A�XpH�f��g�3���K�HA*�8��������J2ǒY�'<ϯ��|����4V����D�0��Ux��ϳ;��L3_�?��/���U��������rV����r�����Qs���ԃ� <��h�pH�D㾷��t��j_���f������ +[�����vDT}�#j���E3A�u[d�,�8�-h�`{���@���fm;��Y�4v;V���ۗ:3`��u����B��-e R����H�؆�j���σY�uiZZb�W�ٓYϷk;=|� +�ƛkcj�Z�S����.h%���s zi����-�O[4�6M�r7v0��.�ў�_������g^����V�R!��\wz�[p���4�ҟ��q��S� ��A�EW�m�Gܧx���v���t}�����p)t<��r�aI��t��d��8 �әѰʮ� k����P;�o�p��fc@f#�f#9���0uf��w��a]����Rl�ST y"�V�1Fb E$So c#���}� {�)L��ܼ���; G�/��:�� +���;J�t 0�'1�`jY~ѷ�Y~�m�b�l���w�.��p�۶ot�'�� +4�Dy���g�ky�������5S��/H��������y +���r�����l���n�B([Cs���]�A6����>�y��*]��������K~l�wL�����gφFM�P�=f:x�����}�({ �M�����),b�����O&��[��GS颤�>GY�D��T�3��� i���'#<'7O��b�-����ͽ��S>�;��\@~��!?���@���F��C�o �́���q��������t���+`@��<oL۞+~F����� >l��!$].v���h4���A�-���ͽ�C�R��ps�#�;������jN�.._�n��Ns�2��\�F7�A�@I֜�U�~�(�Qz*�����:���Ͽ�^E�w��+��]!sE�JRO�4U^c��՛�GI��XA-<$��e����` Tz��O�R���P�y�/��V�R�S���C�ZS#���`S�R�����ܕ����}�-ƶ�� }��lPI���͋�a������T�P%`/ +�76�ݬ!�f�b�:��Y27>(\���T�!����ܼ��/� �pt�3.N0ٱ�@n����H(�Wֶ�s��OJ`���}�:�_�p�����͋o�|��%V�}V��������6�0�1��ñ#+��,�YL�C����|Rܰ��� + �{��{i����J=�\�J�*����"ǒ�[������Ɣ�Q���}$�C@�ZŠ��}|P�F�q<Ԩ1HI(U����@�z;fe�v��IW�o�]h��,mպ2�6���U@�@(~�Ƕ��{�|�2 U��iICp/�o��8��A�F�&�$eϞ>-��&�e_A�=Q�DB�!\��vC +\��� ��e.O���ߙ�k�;x��*�z^��{������� 9dB�ڇ��dNۺ��W'���M�E���\��@Fx<�w��܃fF"��}?�/7����i5�W_��ޛCۙj�9�j� +��C�ҙ�w��t�tla�� mlK�����U {.�^:��<��nڂ����R �q;���� Qa d:\�À�!�$�QP�i���;̟�����S����vl���#'�1����m��!=e��u�s3�B,R���bGɆ�".����)3��-�MC3M�P�!�y"����3�7uIs<Q��&��q���3,�G1\ƴ�&M�HJ@��mXe/hu�m� +�A���m��u��<�P���MLvqx1�AAWg6{����zBA5B�H��@�#U�A��:Ɵ4*������Wb����q:x�h�?Ŝ�� u�N��k�sz���|��x�P1�T�^� =K���f��$A�ƘrW�Y�� l�I�{�s��;���#b?y����[����b�,��b�� +�`���C��N5���endstream endobj -3638 0 obj << +3642 0 obj << /Type /Page -/Contents 3639 0 R -/Resources 3637 0 R +/Contents 3643 0 R +/Resources 3641 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3499 0 R ->> endobj -3640 0 obj << -/D [3638 0 R /XYZ 71.731 729.265 null] ->> endobj -3641 0 obj << -/D [3638 0 R /XYZ 71.731 741.22 null] ->> endobj -3642 0 obj << -/D [3638 0 R /XYZ 71.731 718.306 null] ->> endobj -3643 0 obj << -/D [3638 0 R /XYZ 76.712 664.508 null] +/Parent 3519 0 R >> endobj 3644 0 obj << -/D [3638 0 R /XYZ 81.694 646.575 null] +/D [3642 0 R /XYZ 71.731 729.265 null] +>> endobj +1533 0 obj << +/D [3642 0 R /XYZ 71.731 741.22 null] >> endobj 3645 0 obj << -/D [3638 0 R /XYZ 198.595 633.624 null] +/D [3642 0 R /XYZ 71.731 718.306 null] >> endobj 3646 0 obj << -/D [3638 0 R /XYZ 95.463 620.672 null] +/D [3642 0 R /XYZ 71.731 536.224 null] >> endobj 3647 0 obj << -/D [3638 0 R /XYZ 71.731 600.583 null] ->> endobj -1531 0 obj << -/D [3638 0 R /XYZ 71.731 540.971 null] ->> endobj -594 0 obj << -/D [3638 0 R /XYZ 402.85 495.717 null] +/D [3642 0 R /XYZ 71.731 513.31 null] >> endobj 3648 0 obj << -/D [3638 0 R /XYZ 71.731 491.887 null] +/D [3642 0 R /XYZ 71.731 360.882 null] >> endobj 3649 0 obj << -/D [3638 0 R /XYZ 118.555 449.696 null] +/D [3642 0 R /XYZ 118.555 322.318 null] >> endobj 3650 0 obj << -/D [3638 0 R /XYZ 71.731 395.999 null] +/D [3642 0 R /XYZ 211.992 313.853 null] >> endobj 3651 0 obj << -/D [3638 0 R /XYZ 71.731 345.309 null] +/D [3642 0 R /XYZ 71.731 268.728 null] >> endobj 3652 0 obj << -/D [3638 0 R /XYZ 395.22 319.506 null] +/D [3642 0 R /XYZ 242.937 261.974 null] >> endobj 3653 0 obj << -/D [3638 0 R /XYZ 108.148 306.555 null] +/D [3642 0 R /XYZ 410.176 261.974 null] +>> endobj +1532 0 obj << +/D [3642 0 R /XYZ 71.731 241.884 null] +>> endobj +598 0 obj << +/D [3642 0 R /XYZ 369.417 198.787 null] >> endobj 3654 0 obj << -/D [3638 0 R /XYZ 441.752 306.555 null] +/D [3642 0 R /XYZ 71.731 186.349 null] >> endobj 3655 0 obj << -/D [3638 0 R /XYZ 71.731 286.465 null] +/D [3642 0 R /XYZ 413.928 177.227 null] >> endobj 3656 0 obj << -/D [3638 0 R /XYZ 403.654 262.719 null] +/D [3642 0 R /XYZ 86.396 164.276 null] >> endobj 3657 0 obj << -/D [3638 0 R /XYZ 71.731 237.648 null] +/D [3642 0 R /XYZ 71.731 157.138 null] >> endobj 3658 0 obj << -/D [3638 0 R /XYZ 71.731 163.128 null] +/D [3642 0 R /XYZ 492.055 146.343 null] >> endobj 3659 0 obj << -/D [3638 0 R /XYZ 477.684 139.382 null] +/D [3642 0 R /XYZ 119.931 133.392 null] >> endobj -3637 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R >> +3660 0 obj << +/D [3642 0 R /XYZ 525.26 133.392 null] +>> endobj +3641 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R /F32 1119 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3662 0 obj << -/Length 2133 +3663 0 obj << +/Length 3285 /Filter /FlateDecode >> stream -xڭXm��6���B��>،(��J�"M��-��zY�P4ł�h[]It���{h��pF��r��A�XpH�f��g�3���K�HA*�8��������J2ǒY�'<ϯ��|����4V����D�0��Ux��ϳ;��L3_�?��/���U��������rV����r�����Qs���ԃ� <��h�pH�D㾷��t��j_���f������ -[�����vDT}�#j���E3A�u[d�,�8�-h�`{���@���fm;��Y�4v;V���ۗ:3`��u����B��-e R����H�؆�j���σY�uiZZb�W�ٓYϷk;=|� -�ƛkcj�Z�S����.h%���s zi����-�O[4�6M�r7v0��.�ў�_������g^����V�R!��\wz�[p���4�ҟ��q��S� ��A�EW�m�Gܧx���v���t}�����p)t<��r�aI��t��d��8 �әѰʮ� k����P;�o�p��fc@f#�f#9���0uf��w��a]����Rl�ST y"�V�1Fb E$So c#���}� {�)L��ܼ���; G�/��:�� -���;J�t 0�'1�`jY~ѷ�Y~�m�b�l���w�.��p�۶ot�'�� -4�Dy���g�ky�������5S��/H��������y -���r�����l���n�B([Cs���]�A6����>�y��*]��������K~l�wL�����gφFM�P�=f:x�����}�({ �M�����),b�����O&��[��GS颤�>GY�D��T�3��� i���'#<'7O��b�-����ͽ��S>�;��\@~��!?���@���F��C�o �́���q��������t���+`@��<oL۞+~F����� >l��!$].v���h4���A�-���ͽ�C�R��ps�#�;������jN�.._�n��Ns�2��\�F7�A�@I֜�U�~�(�Qz*�����:���Ͽ�^E�w��+��]!sE�JRO�4U^c��՛�GI��XA-<$��e����` Tz��O�R���P�y�/��V�R�S���C�ZS#���`S�R�����ܕ����}�-ƶ�� }��lPI���͋�a������T�P%`/ -�76�ݬ!�f�b�:��Y27>(\���T�!����ܼ��/� �pt�3.N0ٱ�@n����H(�Wֶ�s��OJ`���}�:�_�p�����͋o�|��%V�}V��������6�0�1��ñ#+��,�YL�C����|Rܰ��� - �{��{i����J=�\�J�*����"ǒ�[������Ɣ�Q���}$�C@�ZŠ��}|P�F�q<Ԩ1HI(U����@�z;fe�v��IW�o�]h��,mպ2�6���U@�@(~�Ƕ��{�|�2 U��iICp/�o��8��A�F�&�$eϞ>-��&�e_A�=Q�DB�!\��vC -\��� ��e.O���ߙ�k�;x��*�z^��{������� 9dB�ڇ��dNۺ��W'���M�E���\��@Fx<�w��܃fF"��}?�/7����i5�W_��ޛCۙj�9�j� -��C�ҙ�w��t�tla�� mlK�����U {.�^:��<��nڂ����R �q;���� Qa d:\�À�!�$�QP�i���;̟�����S����vl���#'�1����m��!=e��u�s3�B,R���bGɆ�".����)3��-�MC3M�P�!�y"����3�7uIs<Q��&��q���3,�G1\ƴ�&M�HJ@��mXe/hu�m� -�A���m��u��<�P���MLvqx1�AAWg6{����zBA5B�H��@�#U�A��:Ɵ4*������Wb����q:x�h�?Ŝ�� u�N��k�sz���|��x�P1�T�^� =K���f��$A�ƘrW�Y�� l�I�{�s��;���#b?y����[����b�,��b�� -�`�i��_V����J�endstream +xڅْ��}�bv^���p�[J\���]ޔ'I��y�HH��$�$�c���H�X���F�j4�������" +�>�&���lެ����7��x�!�1��o���$w�p�'wϻ�tU�I��I�����O��A��q� +���� ����M�g���c�����?���y�9K�p�N��8?暺�n ��H�?�jMD"q_t�ۖ�<h���q1'��l�{�нv=кJ�N/�ڭ��#��RΔ��s�'ƾ`�"/8���X��-�,�������{��̱u�d���E��x'���A՞��utʻ9�C���owQ{�sc{�q��wKA.�U08n�#���� 0���hgq~ �:�_!����ҭ�t�yZ�Y {�2��.�)�]ا{�K70 +D��N����(�K]����O��$��:�����bp�Yh}PNmU���ԺOo��t :�R�Q������#�"L��J�!Di-}��3�[��65'��f�C���1���(�#si�V�lt�(�ܘΆ-�-�u�_dpK�ON5�[[]��7�h%��![㎦|�{C�Wp����w�sK��y$�M�3�l�(|�0-鴶��N���r� �A��j��U��Q�c�=I�4��� � +t�uE�d����j�w��[�|E��۠ v>���B� X��}�l�V�f�(�١�x䗱uȸ'٦ʗ~ɸI�r�)���.i.J+"�W��xԭl%��-e�="6�h$6g�����Qg\a��-�����Ҫ�`������+HR�p�l;x��W���Y�����X@)�d~���퀚�ů�2m��X�R"䛾^MB^�ߋ�6��^�m�q{����Zp�Q���H�z=���A'�>��,i}C�><�惬�y��x�����G���/���g* h��l���&3����i+�N���s�Q�d�.*�V��y> d���%w��îF� Kd��nE�+�Y2��_�}ɤ�q��[� cI����/�Tor�Ц;��t$���bQNFa*a�]�Ė�ɺ"��7�{E\:�NA�k��:X5��xu�MC��kC�� `r�F�V#��m- �%��*��#�+Y�����&<v?�n`��ۆ��� �8�3!��,����Z�S/o��8���^�� +�������)v Ӵ#��۰N��L��W�u�!��K�Pb���کigp���ݿ �� �fc'�A�L&<<H,�&��7����jC�X%KA�юs0q�J���� Tʹ���F�>�Ҫ��݀�]������wD���UJ^��F���̶>ʛ1a�K��#�����rk�q-웂��(1H����N��!t,3Ŝ������K��pupI��=7�A@� +'n��~ˠߋ[�b]�4����L*�o��nKi�Ly�dA�àn;�:? + ���u��L<ci��%i��G7[�%�ɋ�:�}"��P\�~����!w�N �������B��J�eg��L8t�f�N�r�ӱ����3�Dd ��9�q2n��Ir�e�[Q!ļ���n������%��E[r����kх��B{l�#�(d���;k�`���<*�Q���j��y�lT�@S���Ynu���A���i/1�-b�n7�ܔث����I��}&M^�h��8�<O����$fA7D�G��(�{Scb�s�' &��q�D�E$�G9hF��Z)�`�����t���aYCwN1S����7��#�IMÓ(�������)��q�~�Oqs�7�e��D�!JҮH��JaV����Z��"���q��� �##���M���A�M��D�-u�.�5�%H���?X�^_9���#٭FQ���ܫ���0�R��1���[3��I$�.��qS�4��_2x��=<6�,�Yی"�\����ѡJ��@�!j�slZ +�p��*��5�>mP�k1��P2��H��f.H����V[�@��&��l��un_�?�eҞi|m1���D�}i��q�����=�=P�p��S;t?��)ƛ/$>�������=�_�E&����)+n������}��e#�ô�r��^jOI�1p~q�Oe�~Tm��r�Ə�rL��I�:�E$Xj)�h8A�i�%�d\��N��h!G"j*�}A��*����n�wX���JuI.�xԶZ���� #��� 0��(�F � �)pCSw.<�9vT]�5X��pp\3��Lpt�0l���������w���,N����t��1Ip��a�Y�[Y��b���� S��G�0l\�1��/���*y\@F����E�B���cD����DY&EF9��{@�pz�S���C����x��I�+6BO<r.cqAa��� E���ղ��1Ǹ��K��6�Op�Q�|�{q;����z�C��.{�.{ɰ�u9�Z���z#~S�-g�ɴ�� +4��C��Bd�Զ5{�iN`ȍ'�4Z��_�����+���;+�JUڊMk�զo=7���|���G/+�A����R��i`�z'8b����)�!c[����bq��~�S�Z@�eє����+x���y"�7$C���p�o�A�uB)��W�-���Ё%�9j�e����+��*�CJl�j��'��$:�s���2Up [����ν�B������y�_�H�G�$��ʚy���&mMU�|z[��-��"1P"aX���>@��N-��vh0�� ��c��"�Q!�qA�S�����/Y�C_㟖*�N�Xk��<3>�����!j���@'�������( �4�g�d&E<�E��.zT�)�ۏD�0��� ��\�o���SP���9ڃ%��z"�sl�-qC���d����2�U_Y��- �.[U���BU���T��N#��M��6;����+Bb�-�/e����E9#M1zc�O|j���V�g�iz���Hч�����3!� �b��p��'D��j��:�rT�Oq��Q��ʒl���1q����ި���BI&�`�~�O�K�4�nÿ�&f;z�����B�2V����_%��zp�����__��ͩ�\���� +��l�{�l��G��g:�UoL˶�篹ᡁ8+��t#��i!e�����M���2��3�Y�wQ�zzɂ`�����? +�ׂt���O�>1 ���D��U�!+��ڟ!�w��Q��endstream endobj -3661 0 obj << +3662 0 obj << /Type /Page -/Contents 3662 0 R -/Resources 3660 0 R +/Contents 3663 0 R +/Resources 3661 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3680 0 R ->> endobj -3663 0 obj << -/D [3661 0 R /XYZ 71.731 729.265 null] ->> endobj -1533 0 obj << -/D [3661 0 R /XYZ 71.731 741.22 null] +/Parent 3683 0 R >> endobj 3664 0 obj << -/D [3661 0 R /XYZ 71.731 718.306 null] +/D [3662 0 R /XYZ 71.731 729.265 null] >> endobj 3665 0 obj << -/D [3661 0 R /XYZ 71.731 536.224 null] +/D [3662 0 R /XYZ 71.731 741.22 null] >> endobj 3666 0 obj << -/D [3661 0 R /XYZ 71.731 513.31 null] +/D [3662 0 R /XYZ 71.731 718.306 null] >> endobj 3667 0 obj << -/D [3661 0 R /XYZ 71.731 360.882 null] +/D [3662 0 R /XYZ 71.731 718.306 null] +>> endobj +602 0 obj << +/D [3662 0 R /XYZ 421.51 645.157 null] >> endobj 3668 0 obj << -/D [3661 0 R /XYZ 118.555 322.318 null] +/D [3662 0 R /XYZ 71.731 632.719 null] >> endobj 3669 0 obj << -/D [3661 0 R /XYZ 211.992 313.853 null] +/D [3662 0 R /XYZ 71.731 579.662 null] >> endobj 3670 0 obj << -/D [3661 0 R /XYZ 71.731 268.728 null] +/D [3662 0 R /XYZ 71.731 507.867 null] >> endobj 3671 0 obj << -/D [3661 0 R /XYZ 242.937 261.974 null] +/D [3662 0 R /XYZ 71.731 476.982 null] >> endobj 3672 0 obj << -/D [3661 0 R /XYZ 410.176 261.974 null] ->> endobj -1532 0 obj << -/D [3661 0 R /XYZ 71.731 241.884 null] ->> endobj -598 0 obj << -/D [3661 0 R /XYZ 369.417 198.787 null] +/D [3662 0 R /XYZ 71.731 409.301 null] >> endobj 3673 0 obj << -/D [3661 0 R /XYZ 71.731 186.349 null] +/D [3662 0 R /XYZ 71.731 377.077 null] >> endobj 3674 0 obj << -/D [3661 0 R /XYZ 413.928 177.227 null] +/D [3662 0 R /XYZ 71.731 307.339 null] >> endobj 3675 0 obj << -/D [3661 0 R /XYZ 86.396 164.276 null] +/D [3662 0 R /XYZ 71.731 249.834 null] +>> endobj +1534 0 obj << +/D [3662 0 R /XYZ 71.731 223.931 null] +>> endobj +606 0 obj << +/D [3662 0 R /XYZ 284.626 186.716 null] >> endobj 3676 0 obj << -/D [3661 0 R /XYZ 71.731 157.138 null] +/D [3662 0 R /XYZ 71.731 176.351 null] >> endobj 3677 0 obj << -/D [3661 0 R /XYZ 492.055 146.343 null] +/D [3662 0 R /XYZ 445.066 153.64 null] >> endobj 3678 0 obj << -/D [3661 0 R /XYZ 119.931 133.392 null] +/D [3662 0 R /XYZ 503.263 153.64 null] >> endobj 3679 0 obj << -/D [3661 0 R /XYZ 525.26 133.392 null] +/D [3662 0 R /XYZ 270.523 140.688 null] >> endobj -3660 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R /F32 1119 0 R >> +3680 0 obj << +/D [3662 0 R /XYZ 71.731 120.599 null] +>> endobj +3681 0 obj << +/D [3662 0 R /XYZ 71.731 120.599 null] +>> endobj +3682 0 obj << +/D [3662 0 R /XYZ 71.731 115.618 null] +>> endobj +3661 0 obj << +/Font << /F33 1210 0 R /F35 1437 0 R /F27 1112 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3683 0 obj << -/Length 3286 +3686 0 obj << +/Length 1456 /Filter /FlateDecode >> stream -xڅْ��}�bv^���p�[J\���]ޔ'I��y�HH��$�$�c���H�X���F�j4�������" -�>�&���lެ����7��x�!�1��o���$w�p�'wϻ�tU�I��I�����O��A��q� -���� ����M�g���c�����?���y�9K�p�N��8?暺�n ��H�?�jMD"q_t�ۖ�<h���q1'��l�{�нv=кJ�N/�ڭ��#��RΔ��s�'ƾ`�"/8���X��-�,�������{��̱u�d���E��x'���A՞��utʻ9�C���owQ{�sc{�q��wKA.�U08n�#���� 0���hgq~ �:�_!����ҭ�t�yZ�Y {�2��.�)�]ا{�K70 -D��N����(�K]����O��$��:�����bp�Yh}PNmU���ԺOo��t :�R�Q������#�"L��J�!Di-}��3�[��65'��f�C���1���(�#si�V�lt�(�ܘΆ-�-�u�_dpK�ON5�[[]��7�h%��![㎦|�{C�Wp����w�sK��y$�M�3�l�(|�0-鴶��N���r� �A��j��U��Q�c�=I�4��� � -t�uE�d����j�w��[�|E��۠ v>���B� X��}�l�V�f�(�١�x䗱uȸ'٦ʗ~ɸI�r�)���.i.J+"�W��xԭl%��-e�="6�h$6g�����Qg\a��-�����Ҫ�`������+HR�p�l;x��W���Y�����X@)�d~���퀚�ů�2m��X�R"䛾^MB^�ߋ�6��^�m�q{����Zp�Q���H�z=���A'�>��,i}C�><�惬�y��x�����G���/���g* h��l���&3����i+�N���s�Q�d�.*�V��y> d���%w��îF� Kd��nE�+�Y2��_�}ɤ�q��[� cI����/�Tor�Ц;��t$���bQNFa*a�]�Ė�ɺ"��7�{E\:�NA�k��:X5��xu�MC��kC�� `r�F�V#��m- �%��*��#�+Y�����&<v?�n`��ۆ��� �8�3!��,����Z�S/o��8���^�� -�������)v Ӵ#��۰N��L��W�u�!��K�Pb���کigp���ݿ �� �fc'�A�L&<<H,�&��7����jC�X%KA�юs0q�J���� Tʹ���F�>�Ҫ��݀�]������wD���UJ^��F���̶>ʛ1a�K��#�����rk�q-웂��(1H����N��!t,3Ŝ������K��pupI��=7�A@� -'n��~ˠߋ[�b]�4����L*�o��nKi�Ly�dA�àn;�:? - ���u��L<ci��%i��G7[�%�ɋ�:�}"��P\�~����!w�N �������B��J�eg��L8t�f�N�r�ӱ����3�Dd ��9�q2n��Ir�e�[Q!ļ���n������%��E[r����kх��B{l�#�(d���;k�`���<*�Q���j��y�lT�@S���Ynu���A���i/1�-b�n7�ܔث����I��}&M^�h��8�<O����$fA7D�G��(�{Scb�s�' &��q�D�E$�G9hF��Z)�`�����t���aYCwN1S����7��#�IMÓ(�������)��q�~�Oqs�7�e��D�!JҮH��JaV����Z��"���q��� �##���M���A�M��D�-u�.�5�%H���?X�^_9���#٭FQ���ܫ���0�R��1���[3��I$�.��qS�4��_2x��=<6�,�Yی"�\����ѡJ��@�!j�slZ -�p��*��5�>mP�k1��P2��H��f.H����V[�@��&��l��un_�?�eҞi|m1���D�}i��q�����=�=P�p��S;t?��)ƛ/$>�������=�_�E&����)+n������}��e#�ô�r��^jOI�1p~q�Oe�~Tm��r�Ə�rL��I�:�E$Xj)�h8A�i�%�d\��N��h!G"j*�}A��*����n�wX���JuI.�xԶZ���� #��� 0��(�F � �)pCSw.<�9vT]�5X��pp\3��Lpt�0l���������w���,N����t��1Ip��a�Y�[Y��b���� S��G�0l\�1��/���*y\@F����E�B���cD����DY&EF9��{@�pz�S���C����x��I�+6BO<r.cqAa��� E���ղ��1Ǹ��K��6�Op�Q�|�{q;����z�C��.{�.{ɰ�u9�Z���z#~S�-g�ɴ�� -4��C��Bd�Զ5{�iN`ȍ'�4Z��_�����+���;+�JUڊMk�զo=7���|���G/+�A����R��i`�z'8b����)�!c[����bq��~�S�Z@�eє����+x���y"�7$C���p�o�A�uB)��W�-���Ё%�9j�e����+��*�CJl�j��'��$:�s���2Up [����ν�B������y�_�H�G�$��ʚy���&mMU�|z[��-��"1P"aX���>@��N-��vh0�� ��c��"�Q!�qA�S�����/Y�C_㟖*�N�Xk��<3>�����!j���@'�������( �4�g�d&E<�E��.zT�)�ۏD�0��� ��\�o���SP���9ڃ%��z"�sl�-qC���d����2�U_Y��- �.[U���BU���T��N#��M��6;����+Bb�-�/e����E9#M1zc�O|j���V�g�iz���Hч�����3!� �b��p��'D��j��:�rT�Oq��Q��ʒl���1q����ި���BI&�`�~�O�K�4�nÿ�&f;z�����B�2V����_%��zp�����__��ͩ�\���� -��l�{�l��G��g:�UoL˶�篹ᡁ8+��t#��i!e�����M���2��3�Y�wQ�zzɂ`�����? -�ׂt���O�>1 ���D��U�A櫯��z������endstream +xڥXێ�6}߯PӇHȚ+R�.)�"��H� ◢[�D[�J�#Rk���w(R�d{��<H��3gng�Ǝ��c� )"u���w6���l%Vd1�y����N��(p�k'�c��%�8��o�]����ނPߥ�<�uR���e�1o�Ϳv˪b�?��n~Y��i�4 .�i�HB��QJ�yR���'=���2��Ə�1�$EQ:=����h��h�H�����&B�h�)�Pvs/:ٜ)�b���h!+�I@q���C!QZ'�[!r�� R�"�^~�� '"��Ff�y����VeD��,�)���k@�*J�߈��0��>H�aW�Bt�,�|0�r��\��~5�LJ�$��>M��!�~b˂���A� v�����w��_�V:sL�*7_ +��}�0u��Jd�G#��YזjoV��uwJU�C�1ňB��@�qE�@�e#�FQe��i�LoH��D0�m��-d^&��*cVɽ��ʹbeeu V�c&'Z�>�0:���L?���� |<k�~����F��{ߺm��W�l��e����ݽٹ���5y�2 �� ���o�f_: [����V�t�z�Xmx�[V������U������7p��� +����)��捂<�7��7�R��Pj���n��yuQ�{(�ݶ�¹��5�����������c ���6���K�k�� ]YN�i�b��K�8�y� �<E�gl]��K���jۓ"�;�S�f����,q2�ض���L�B:���=�ס �B�] Vr`͟N�dN�o/�ʭY�k�'$0Ź��گ��M�[Cjtht=) +!�^_��� |�C���2t7�`Ȭ�ͩ��AEe F�M"�߶�s s��o�M��#�x��$zjXu��C�~��c�4�+a�`Q�"�0���q2E ���U?��JDdp6��I͜�٦l�qX����V��U��!x�"��,��J�@�&?ʼ���K'��7��ʰ�2��C�����# Z��k�����@J�՛ƴ!��B��P��V���ZY��Q�O���a�M-��}��#XU|~����c�P0��g��QN��4)�6լn<�|<o���J>��ߣ9�d���'=]�0�[��订���=���Fn��H�*��W���FwA�ƽ�7s�\���w/�\A�5M��������� +=�AiH�P�mj:95K}a0���C�_V�e�"����@��\6��-��O���\Ѽ.y��| �4�,�iE���J��~�o��LH�3�&��V84��{�_�h69��y�fj�3�ߞ ?ܙZM��β�50�s��?�9�\�C�_D;HN*� + +%x�=�V�?�axJC��k�TV\{�UgwU�#C����8��� +AI��Zc%����G�SK� tO�endstream endobj -3682 0 obj << +3685 0 obj << /Type /Page -/Contents 3683 0 R -/Resources 3681 0 R +/Contents 3686 0 R +/Resources 3684 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3680 0 R ->> endobj -3684 0 obj << -/D [3682 0 R /XYZ 71.731 729.265 null] ->> endobj -3685 0 obj << -/D [3682 0 R /XYZ 71.731 741.22 null] ->> endobj -3686 0 obj << -/D [3682 0 R /XYZ 71.731 718.306 null] +/Parent 3683 0 R >> endobj 3687 0 obj << -/D [3682 0 R /XYZ 71.731 718.306 null] ->> endobj -602 0 obj << -/D [3682 0 R /XYZ 421.51 645.157 null] +/D [3685 0 R /XYZ 71.731 729.265 null] >> endobj 3688 0 obj << -/D [3682 0 R /XYZ 71.731 632.719 null] +/D [3685 0 R /XYZ 71.731 741.22 null] >> endobj 3689 0 obj << -/D [3682 0 R /XYZ 71.731 579.662 null] +/D [3685 0 R /XYZ 89.664 708.344 null] >> endobj 3690 0 obj << -/D [3682 0 R /XYZ 71.731 507.867 null] +/D [3685 0 R /XYZ 119.054 690.411 null] >> endobj 3691 0 obj << -/D [3682 0 R /XYZ 71.731 476.982 null] +/D [3685 0 R /XYZ 147.008 690.411 null] >> endobj 3692 0 obj << -/D [3682 0 R /XYZ 71.731 409.301 null] +/D [3685 0 R /XYZ 71.731 683.407 null] >> endobj 3693 0 obj << -/D [3682 0 R /XYZ 71.731 377.077 null] +/D [3685 0 R /XYZ 284.172 672.478 null] >> endobj 3694 0 obj << -/D [3682 0 R /XYZ 71.731 307.339 null] +/D [3685 0 R /XYZ 399.456 646.575 null] >> endobj 3695 0 obj << -/D [3682 0 R /XYZ 71.731 249.834 null] ->> endobj -1534 0 obj << -/D [3682 0 R /XYZ 71.731 223.931 null] ->> endobj -606 0 obj << -/D [3682 0 R /XYZ 284.626 186.716 null] +/D [3685 0 R /XYZ 76.712 615.691 null] >> endobj 3696 0 obj << -/D [3682 0 R /XYZ 71.731 176.351 null] +/D [3685 0 R /XYZ 89.664 597.758 null] >> endobj 3697 0 obj << -/D [3682 0 R /XYZ 445.066 153.64 null] +/D [3685 0 R /XYZ 71.731 590.62 null] >> endobj 3698 0 obj << -/D [3682 0 R /XYZ 503.263 153.64 null] +/D [3685 0 R /XYZ 71.731 590.62 null] >> endobj 3699 0 obj << -/D [3682 0 R /XYZ 270.523 140.688 null] +/D [3685 0 R /XYZ 71.731 573.437 null] >> endobj 3700 0 obj << -/D [3682 0 R /XYZ 71.731 120.599 null] +/D [3685 0 R /XYZ 159.123 561.893 null] >> endobj 3701 0 obj << -/D [3682 0 R /XYZ 71.731 120.599 null] +/D [3685 0 R /XYZ 304.466 561.893 null] >> endobj 3702 0 obj << -/D [3682 0 R /XYZ 71.731 115.618 null] +/D [3685 0 R /XYZ 71.731 554.755 null] >> endobj -3681 0 obj << -/Font << /F33 1210 0 R /F35 1437 0 R /F27 1112 0 R /F23 1105 0 R >> -/ProcSet [ /PDF /Text ] +3703 0 obj << +/D [3685 0 R /XYZ 71.731 554.755 null] >> endobj -3705 0 obj << -/Length 1455 -/Filter /FlateDecode ->> -stream -xڥXێ�6}߯PӇHȚ+R�.)�"��H� ◢[�D[�J�#Rk���w(R�d{��<H��3gng�Ǝ��c� )"u���w6���l%Vd1�y����N��(p�k'�c��%�8��o�]����ނPߥ�<�uR���e�1o�Ϳv˪b�?��n~Y��i�4 .�i�HB��QJ�yR���'=���2��Ə�1�$EQ:=����h��h�H�����&B�h�)�Pvs/:ٜ)�b���h!+�I@q���C!QZ'�[!r�� R�"�^~���d��Z�E�-"�w[!��������?�i��(�~#����^� ͇]� -�)�`��ȁ�fs-Z��|�2)�����4��Q?��e�jn����;@��p�;s�/k+�9&f��/��>z��Vy%�����Z�kK�7�\x��;�*�!�ʘbD!{L 渇� -m �ݲ��A������]�7��Q��6x�2/g`�1����Ic�\����+�1�-q@�u�p����U��>��z����C��G#�S�o�6�ѫ�P6q�F�R�������g}���|��f�/��E��N+V:w@Ef=I�6��-�JUrk���*�c�����8�]�f[U��YW�FA��q�I��](�}}w��������=���n[l��]͚�UV�πP���?�RG��[Px�E��v���,��4F1��%j��<E����O���3��R�%�Gj��I�� L�Xq�d�8�yl[Qo{�I!���J�����Ў�n��.+9��O�|2��7�| -��,ʵy����Hx�Wn�&��!5:4����v�/Yk�>�!J|b���U0d���ԇC��#�&��o�܇����Q���Ԃ� -c<��d=5����!^?X���1t핇0�`0 -��?HE���8���������l��28�a���f��lS6�8,Y�cb�RΪS��[r�r�˂s%m Y�e���楇W�@ {eXk֎ڡW��V���T�����Dj ���Mc���!��q(��v���i��[텨�'wz�0�����>[��*>�@IΏ��o(��A�(�[t��C�jV7�h>�7�� �s�@%���ќ �@������.z�K�-�s�xtW�_��p��v#7�F$@�t«��W�� G�^J.m�����~� 皦����d�L��S�e�ʠ4$O(�65�������0ˏ��!�/+�2o�FWd` �ƂL.�����ŧ�z��h^���s�Q^ݴ�ۂ\|%J|��۷Qz&��a��j+�A�=˯J4����_35ܙ�oφ��L����kg���9����H�ˡ�/�$'v��yF�y+͟�0< -���W��c*+.�=٪�����!LP��?CDN~��$Ap���v���Q�����O�endstream -endobj 3704 0 obj << -/Type /Page -/Contents 3705 0 R -/Resources 3703 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 3680 0 R +/D [3685 0 R /XYZ 119.054 543.96 null] +>> endobj +1535 0 obj << +/D [3685 0 R /XYZ 76.712 508.095 null] +>> endobj +610 0 obj << +/D [3685 0 R /XYZ 257.368 473.624 null] +>> endobj +3705 0 obj << +/D [3685 0 R /XYZ 71.731 464.986 null] >> endobj 3706 0 obj << -/D [3704 0 R /XYZ 71.731 729.265 null] +/D [3685 0 R /XYZ 71.731 447.557 null] >> endobj 3707 0 obj << -/D [3704 0 R /XYZ 71.731 741.22 null] +/D [3685 0 R /XYZ 71.731 447.557 null] >> endobj 3708 0 obj << -/D [3704 0 R /XYZ 89.664 708.344 null] +/D [3685 0 R /XYZ 106.501 436.762 null] >> endobj 3709 0 obj << -/D [3704 0 R /XYZ 119.054 690.411 null] +/D [3685 0 R /XYZ 71.731 429.758 null] >> endobj 3710 0 obj << -/D [3704 0 R /XYZ 147.008 690.411 null] +/D [3685 0 R /XYZ 234.877 418.829 null] >> endobj 3711 0 obj << -/D [3704 0 R /XYZ 71.731 683.407 null] +/D [3685 0 R /XYZ 71.731 411.691 null] >> endobj 3712 0 obj << -/D [3704 0 R /XYZ 284.172 672.478 null] +/D [3685 0 R /XYZ 71.731 388.777 null] >> endobj -3713 0 obj << -/D [3704 0 R /XYZ 399.456 646.575 null] ->> endobj -3714 0 obj << -/D [3704 0 R /XYZ 76.712 615.691 null] +3684 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R /F54 2154 0 R /F23 1105 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 3715 0 obj << -/D [3704 0 R /XYZ 89.664 597.758 null] +/Length 1685 +/Filter /FlateDecode +>> +stream +xڥXm��4�~E�/kQohڦ/CmClZ'��Mn�6�楳�]ʯ�89�q��I�mj?�9�yq�����Ml����u4�����|�{\ro�y�����r9���r�?�V�M�\�F��"�F��>�m�s���~�'Q�~>Ԫ*s�Dqj��OOÉ�26�c���w{sr�����&8Z3@��t�6�`.F�m�� ���ϦQ4Q- +V���4�&��\~|��&O�˱�|JY���Y��U��;d����\��oJ���2��O��B�=e��1hFF�+�\ ��M���8WBĥ����М=N�y�d��|z�Ϙ����֚`>(�����ũ�xBYWd���<�X�#x��-ˬ��Ü�zޮܧB <V��Rp�!�k{�A3T���ׄ�������$� �a0crn''NajP�p��Bs'^p��mF���ЍG[���_ +���cV+������" ���I4�<c=����K�o�ȴ'��hn�E��ĥ���ⲑ����������s��d��'��k)�ʛc)sp��b#GfT�0�O�J���믘�;C6s��:�'���US ���7'��,����2�M��o\�e��i�4SK����8qW=9K�?�<�?����Q ��ְObq<����e���)��[y�� ���5�WSͻc�EbHP�ՙ�I={k/u���ph +x�XB�Ԩ�l�$y[V�+�(�L����WO�P{����&���^����H:Gc�l�BE�T�.�����������k_Fks"� ��*)��,E�HfHP����q�e�E���0.�sYx{��u�a �$�͠�P]$3]E&�����+k�0`��Yߣ����#��0�8�+b�Uz�{����(k���&3��1�5�`Ӿ��)=��ı�<��X~���YD#�%�0U�|�W�$ Q4��t5�x� +���H�06�'�T+y��@�~Es �1�Y��0��"��B{g�Ko����n�*��%Rjl��Sr��8%�H��F�a��1��p�� ��n�|y�A��D�*-Fj��g�������7l]�݁��pH��aY��k�B)q*x��n���yfMh'eV�WIV���(�&Mġi�47D�+�#�a��CE`L��bj�sy��O�`�dY�)�N��ʙzT��v�Eoi?w1�E���P2�y5�Z�ћ�\la\�T�hq��[�Q��l�� �D���� �g��`Bd*�⌡&H�V%=B��,��/�V ���/z:���a���"� S,9�ɤ�������!�}���c+�P��^^uQO=��>���*�a��\�z���Τy�u��PH��=P���/����J�O���;%}��V�C�B�f +:�p��̐�h��23�*^<��T��K��!��Dhfn����w����t��\�[���(�v�X��� +ծ�N�iN��Ѵ�>�m��Ø��/�s-�ͺԖ��Y��13V~��_{uԬ��N�x����6��}u��_�a��=�N�����q\�[�C��k����}�͋�dO�[�f� z.ZM�.0+5�KiOC߶]T�.��1�n����$Pn�iמ�i�{_�+RwW�h +��G�j��SLZf�̺��N�Z��*��]m�m���[2x�-�\�q�f`^{�;<�����endstream +endobj +3714 0 obj << +/Type /Page +/Contents 3715 0 R +/Resources 3713 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 3683 0 R >> endobj 3716 0 obj << -/D [3704 0 R /XYZ 71.731 590.62 null] +/D [3714 0 R /XYZ 71.731 729.265 null] >> endobj -3717 0 obj << -/D [3704 0 R /XYZ 71.731 590.62 null] ->> endobj -3718 0 obj << -/D [3704 0 R /XYZ 71.731 573.437 null] +3713 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 3719 0 obj << -/D [3704 0 R /XYZ 159.123 561.893 null] ->> endobj -3720 0 obj << -/D [3704 0 R /XYZ 304.466 561.893 null] ->> endobj -3721 0 obj << -/D [3704 0 R /XYZ 71.731 554.755 null] ->> endobj -3722 0 obj << -/D [3704 0 R /XYZ 71.731 554.755 null] ->> endobj -3723 0 obj << -/D [3704 0 R /XYZ 119.054 543.96 null] ->> endobj -1535 0 obj << -/D [3704 0 R /XYZ 76.712 508.095 null] ->> endobj -610 0 obj << -/D [3704 0 R /XYZ 257.368 473.624 null] ->> endobj -3724 0 obj << -/D [3704 0 R /XYZ 71.731 464.986 null] ->> endobj -3725 0 obj << -/D [3704 0 R /XYZ 71.731 447.557 null] ->> endobj -3726 0 obj << -/D [3704 0 R /XYZ 71.731 447.557 null] ->> endobj -3727 0 obj << -/D [3704 0 R /XYZ 106.501 436.762 null] ->> endobj -3728 0 obj << -/D [3704 0 R /XYZ 71.731 429.758 null] ->> endobj -3729 0 obj << -/D [3704 0 R /XYZ 234.877 418.829 null] ->> endobj -3730 0 obj << -/D [3704 0 R /XYZ 71.731 411.691 null] ->> endobj -3731 0 obj << -/D [3704 0 R /XYZ 71.731 388.777 null] ->> endobj -3703 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R /F53 2143 0 R /F23 1105 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -3734 0 obj << -/Length 1686 -/Filter /FlateDecode ->> -stream -xڥXm��D�~�"ʗ&(gb'NrE��"Z 5�@�������K�k���Y{f�^o�T��8���<���:�,�_8ن�v�]m�IR�,''����W��[k���͗�V��]p�YM���z� V��d���]M��o����k.�Q���A�yߨ�*��{�9�=g"������7�����j��VO��5#tѶG���0�lvq�^��~��?���Lu(X�}V�0�}��q�I�y��c��������$����v�y�-��Bo�T -'U�%�&ʑ�~{���1hF&�k�\ ���M�J�8�Bĥ��� Ђ=��e�d}7����1!����5�r|Pu��/�ѩ�xB��d���<�X�x�-;�Y]��/k��[�τy�4�$�,G���!��f�9˯ /Sw%q�I�[�`��<��N��ԢZ�^ ��N��ڜX˘��:v�1&��ہ'�Q�'6�X��" ���I��<g���vK�o��t'��xi�E��$����ⲕ��������s��d��'��H)�ʛc%p��b#GfT�0�������믄�{C6s��:&���SS���7'��,����2 -�M��o\�e��i�4RSK�ڔd�<qW=K�?�<�?f��P ��ְObI2����e�Q�)��[{�� ���5�WS��c�EbHP�ՙ�I={� u��ph -x�ZB�Ԩ�l�$y[ռ/�(�\��<�WO�X{����&���^����I:Gc���BE�T�.�����������_Fks"]���*)��,E�HfHP��Ќ�q�U�E���0��sUz{��u�a �$+̠�R]$3}E&����Ijk�8`���У����#��0�8�9+�Wz�{��������g��)�5�`Ӿ��)���ı�<��X~���YD#�%�0U|�W�$R Q���|��y� -���H�0��g�T+y��@�~Es)�1�Y��0��2��B{g�Ko����~����Rjl��Sr��8��H��F�q��1��r��$��n�~y�A��D�j-Fj��g����j�6l]�݁uн�pH��ay�k�B)q*y������yfMh'UV�WKV���(�&Mġi74�D�+��#�a��CM`L��bj�sy��O�`�d՜)�N��.�zP��n��`�0w1�eS��P2vy5�Z�ћ�\la\�T��p���D���a�2�#ʉ � ��G�L���Ԧ�Cm�t�J�\Y8]�_��RH_�"t�M#�a���"� S"9�ɤ�������1�C���c+�P���^^uQO=�Ҍ�>����h`��\�����dE�w��PH��=P���/����J6L���;%}��N�c�B�g +:�p��̐�j��23�*^<��L�K��1�ӘDhfn�����ΝO����������_F����J�N�U�veM�M{��������mC��L�X�x��khnѧ����X�Ⱥ�������s��ګ�v��tr�4������+�:C�>�v��?�����J"���е�0�l^L%{l�Z�m0p�j�tY�Y�]^I{���Bwy5��uˠ�W�'�rSO���L���rX����ES��<�U+�|X<1�dUNȬ���~�u^��[��.�'���KF�}�h�uWh6ѵ��������endstream -endobj -3733 0 obj << -/Type /Page -/Contents 3734 0 R -/Resources 3732 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 3680 0 R ->> endobj -3735 0 obj << -/D [3733 0 R /XYZ 71.731 729.265 null] ->> endobj -3732 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -3738 0 obj << /Length 1554 /Filter /FlateDecode >> @@ -13554,48 +13477,47 @@ aI"\ _�aNm�?rh�p˕`h�I`Ӿ_>��|�%.r�%G�Q���r^�e�����B�R��U��ٞN����43�8G���}���F��h��D7�g� M1(,\;~l������E��;8�k���/Ė�aA�^{&��(.�`2Tҫ����z���;T�d6_$(e������m�w㞳��rB�"z"B1���U�/��0�� k�`R�A���4�K?'��r����a�e������1�� g���_�65M�?{&L�|��4i� Nj�2-q#�9ӳ��|@7^��< ��pj�Y� -� h�vG@ �k�r�ʣ/��̶����mP���C7@�}��~������Rd�D9�SQ�Z�Y^ �V�̊�mE��p��w�(�B|鋟�s�Z�a?溄 E=�b3�Z�-K �BS^j�`>�'Rh��������D=�iFQ�7w#���C?���)�'\�:�< �N�^P��d���h(sQr��e�"����6ϐ&�RS�ͅ߄�&����]{�43�Z�8/F�ɕi�L]0d������A=9�¶�bZ��1�u��7}#�ф��h�����NNJ]���+���� �z�~�-�) �µMG�$J��/�����9�_�؋qa����:�M��U^N7��"yr��=�D�Bֽ.L���n���0b���k�t�yd�D�e��&�d����ׯ=i���`6��an���ǟ�l����ǙXH�/~��̾?e�&�S���t�|�s���[{�endstream +� h�vG@ �k�r�ʣ/��̶����mP���C7@�}��~������Rd�D9�SQ�Z�Y^ �V�̊�mE��p��w�(�B|鋟�s�Z�a?溄 E=�b3�Z�-K �BS^j�`>�'Rh��������D=�iFQ�7w#���C?���)�'\�:�< �N�^P��d���h(sQr��e�"����6ϐ&�RS�ͅ߄�&����]{�43�Z�8/F�ɕi�L]0d������A=9�¶�bZ��1�u��7}#�ф��h�����NNJ]���+���� �z�~�-�) �µMG�$J��/�����9�_�؋qa����:�M��U^N7��"yr��=�D�Bֽ.L���n���0b���k�t�yd�D�e��&�d����ׯ=i���`6��an���ǟ�l����ǙXH�/~��̾?e�&�S���t�>�9in�?[P�endstream endobj -3737 0 obj << +3718 0 obj << /Type /Page -/Contents 3738 0 R -/Resources 3736 0 R +/Contents 3719 0 R +/Resources 3717 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3680 0 R +/Parent 3683 0 R >> endobj -3739 0 obj << -/D [3737 0 R /XYZ 71.731 729.265 null] +3720 0 obj << +/D [3718 0 R /XYZ 71.731 729.265 null] >> endobj -3736 0 obj << +3717 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3742 0 obj << +3723 0 obj << /Length 1561 /Filter /FlateDecode >> stream -xڵXmo�F��_��%P���9�*_껦�%�$�Sի�5��6��r����Κ��Չtj)`Xf�yf����?���l�`�'�A�y�{�����#\2��ys{����x�p'���f0�f�x2�Ɓ;����7�,&[IsgL={�dzB�,a����7��?�o3Ή����G�[��t<s������`V����3?̼�����a @d�q��sZ�~t|��҈���oƀ���"<>2���t�� �,K�d�9����������쥬�*� �>���@N�������y�l�Ѐ/OB�|a� ��E�]��'��0�B��/�T�'p!."kNk�*����8ē��$$������SM�U�m�-)I�,۴n�0����!�,�����L݅7��|��g5��o�k4��;��������*m�� \d�q��WD�by�x�t|���i#syJ9 1��v<Ę�p4��d���Q�#b.�;Ǽ[LQR�٪�,Ŝ�$��'$IC:lQe�����{aub�n��i�%&��!j�7�<��i�-�c% -:fk|N0�BJ#��p��idE*o���(D��F9�e߇U�d��y&���܉�唦n'��s �Y�ڒ1Qm� yڐ��ۜIٗ����C͑b��Ye9~�N(��϶� -B�/�GN�̙���p�(&/�؞��*qkP��,YR�"����jS;iX�����(:\������ -�.���<�u�Ƀ*B�Nt�|��$[�p5h1Պ*�,*B��n��ID�"i7��Ҩ�aL���ij�.����x���YM��B/�J(�5ĴGlV�{o�G�R���!�!�w�&�~�SÝ)A�Dv��U�ҵ�Y&�kzkDSf�&��fMٻb��4���2N��9���wH��4�Z�"�Lh��2���Z���>^�t֕9<oL��}nK-�A ���[�_�e�d!�n*��V�����ˀN���ÁT�-�?����os�����,�" �W��t��vk�ڼHC�� ��(�:�J����m�� D/ҴH�㏗gW�o�����Տ�Cg��Ǘ�Ox���9win\��>��?o�. ��}g�݁�����ss����~(�OO�?^��6z:��o�\`�9_�SEg)�QU�GT�.���:�wV=�&����KQݐ:k��߭��=����r��:,8#9����Q@�x3�����_5uk&Ku�u�ɐ撘z���t�\s��K������ ��á �9Z�YƑ�(~��{$T���� �B�TY��E ����٦ YUz��J���-���L��V��z(=^~�p�L<�J����@9�)�e��yr_С关���u���9c���Z^�[5n�$�^S��_꾍^W�(��j�z>rm���s-!��څ����n����JKe�I6���³�̪T*O -�_�p�|Jk ��J��d�kQ�Q#��k��2�S�#M}�m kF�uխ���0�T�a4a�J���;�?��8j�|IW�L�����"]T7��-��6��s��ǶjI�[�4�����Byp29�鬻ӿX�&�endstream +xڵXmo�F��_��%P���9�*_껦�%�$�Sի�5��6���r����Κ��Չtj)`Xf�yf����?���l�`�'�A�y�{�����#\2��ys{����x�p'���f0�f�x2�Ɓ;����7�,&[IsgL={�dzBH�2������ǷY���۟�V�f��x�.��g��5t��B7;qg~0�y�=Hn�����qNjc�9-?:�g�,����'�Ǜ1`&�C����L�x'Fc,��<%��@�����������g/e�P1M�5���r���_I�j��t+�|y���N0/��2�?�w����8�I�fB?�qY'���!N�S�Lh;iJ����ٛz�1�[�!߶p������u���8��D��f6�O5�`�.�q��kL���k���Ѱ�;��joT3��㫴iG�$���%IZ~ED*�'��H��Z<�62琧4�!�ێ��C�F.�i�>"�2�s̻5�4`%�����4$��>!I�a�*k��]����t+��L�,1QO�Q����y�M�l�+Q�1[�s��R��U�-L#+2ɒv��<��~�(������ +$�%a΅0��;�����3x.a���$DLT�a�@�6���v¤��Y�H١�H�v@����B'���g[I! ��#�B�L�JM8_��KlO^M �8�5��c��ֺ������N��`9�W@hG6��ço�©*�1Omt�P���*��&�V'\ ZL��ʜGE�8ԍ5�Q�톒Q5"�Iv0M ������>{^@#�i�"[��U E���u�(�ͪs� &��'gn�y��ݬIF�_��pgJ�1�]8eyU�tm&�S�kzkDS�\��q���]1�gz| M� m�`U�;$Q[�'Z�"�Lh��2���Z���>^�t֕9<oL��}nK-�A ��ܭد�2�x��I$�U0:�6��2�nm�p��Uo�O-0���\�((a)K>�HC��y�p݆a�ݚ�6/���iC��4J�ΡR~rF��t�?`����4+R��������s0{�~���Йy�����-on��]����ϛ��gߙkw`ju}���\9���� +�����%���͟�4����1��t�KXF{�D�8�ժwtA��� ŝU�I���1�RT7��v�wk�|xw7�\������]}Ψ?�Z���v[�د���5�3�u�a2��$�^��h6](�\��R=b~�f�sCq�ph�n��!� ��Sz���y:"�=W�a�)���(��w2�5۴!�J�PVI����1��I����]������g_�wqU(:�Y{!^��thy�,�vu�y}h��g?A����V��( ��Ծ�ׇ�o��%J>�Z����\[ �\K���E�v�&#p�m��u��RYo� �{���'�*�ʓ"I^�p�|�j ��J��d�kQ�Q#��k�u�����>Ƕ�5#����tcl�o*ݰ�2P�v�Ý�I +�8j�|IW�L�����"]T7��-��6��s��ǶjI�[�4�����Byp2>�鬻ӿX�&�endstream endobj -3741 0 obj << +3722 0 obj << /Type /Page -/Contents 3742 0 R -/Resources 3740 0 R +/Contents 3723 0 R +/Resources 3721 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3680 0 R +/Parent 3683 0 R >> endobj -3743 0 obj << -/D [3741 0 R /XYZ 71.731 729.265 null] +3724 0 obj << +/D [3722 0 R /XYZ 71.731 729.265 null] >> endobj -3740 0 obj << +3721 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3746 0 obj << +3727 0 obj << /Length 2060 /Filter /FlateDecode >> @@ -13610,171 +13532,162 @@ L ��P���"��*짓ɮ87 K��J��N��DzO����tȣ�t�? _����"r�.���Q�������w���.j0����|����q��B ���D�٤�I ��W��w��/�-����2��H��G�6/�B�^�܃yj��BQ��N(�`�]�8x.�7�i� � '�b����.[�����'�7�6z>���\�a3.3�,��;P�y -c >~�)mW�U�R�[���Ge{mѿ�_ -�������{���,v;�e뷿���W�R���y�*�=�x�ڲc�8�/0�H(N�h���E2G"G{2�ìi��)�K� �������+2(��m�]]<{z2���>Ar�⇖��aZ�~�غ.��F�j�b��{b���4�μ��F��oe�n�����δ��o���߆�7G��,~F��"+U�I��Uty��yendstream +�������{���,v;�e뷿���W�R���y�*�=�x�ڲc�8�/0�H(N�h���E2G"G{2�ìi��)�K� �������+2(��m�]]<{z2���>Ar�⇖��aZ�~�غ.��F�j�b��{b���4�μ��F��oe�n�����δ��o���߆�7G��,~F��"+U�I��Uty��xendstream endobj -3745 0 obj << +3726 0 obj << /Type /Page -/Contents 3746 0 R -/Resources 3744 0 R +/Contents 3727 0 R +/Resources 3725 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3760 0 R -/Annots [ 3749 0 R 3750 0 R 3751 0 R ] +/Parent 3683 0 R +/Annots [ 3730 0 R 3731 0 R 3732 0 R ] >> endobj -3749 0 obj << +3730 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [244.528 377.276 410.209 386.188] /Subtype /Link /A << /S /GoTo /D (cvs) >> >> endobj -3750 0 obj << +3731 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [494.336 351.373 537.983 360.285] /Subtype /Link /A << /S /GoTo /D (tinderbox) >> >> endobj -3751 0 obj << +3732 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.731 338.422 267.724 347.333] /Subtype /Link /A << /S /GoTo /D (tinderbox) >> >> endobj -3747 0 obj << -/D [3745 0 R /XYZ 71.731 729.265 null] +3728 0 obj << +/D [3726 0 R /XYZ 71.731 729.265 null] >> endobj 1536 0 obj << -/D [3745 0 R /XYZ 71.731 484.184 null] +/D [3726 0 R /XYZ 71.731 484.184 null] >> endobj 614 0 obj << -/D [3745 0 R /XYZ 449.605 438.93 null] +/D [3726 0 R /XYZ 449.605 438.93 null] >> endobj 1537 0 obj << -/D [3745 0 R /XYZ 71.731 435.1 null] +/D [3726 0 R /XYZ 71.731 435.1 null] >> endobj 618 0 obj << -/D [3745 0 R /XYZ 159.442 399.558 null] +/D [3726 0 R /XYZ 159.442 399.558 null] >> endobj -3748 0 obj << -/D [3745 0 R /XYZ 71.731 392.205 null] +3729 0 obj << +/D [3726 0 R /XYZ 71.731 392.205 null] >> endobj 1538 0 obj << -/D [3745 0 R /XYZ 71.731 333.441 null] +/D [3726 0 R /XYZ 71.731 333.441 null] >> endobj 622 0 obj << -/D [3745 0 R /XYZ 141.108 296.225 null] +/D [3726 0 R /XYZ 141.108 296.225 null] >> endobj -3752 0 obj << -/D [3745 0 R /XYZ 71.731 288.873 null] +3733 0 obj << +/D [3726 0 R /XYZ 71.731 288.873 null] >> endobj -3753 0 obj << -/D [3745 0 R /XYZ 71.731 268.962 null] +3734 0 obj << +/D [3726 0 R /XYZ 71.731 268.962 null] >> endobj -3754 0 obj << -/D [3745 0 R /XYZ 331.48 245.216 null] +3735 0 obj << +/D [3726 0 R /XYZ 331.48 245.216 null] >> endobj -3755 0 obj << -/D [3745 0 R /XYZ 86.396 219.314 null] +3736 0 obj << +/D [3726 0 R /XYZ 86.396 219.314 null] >> endobj -3756 0 obj << -/D [3745 0 R /XYZ 71.731 212.175 null] +3737 0 obj << +/D [3726 0 R /XYZ 71.731 212.175 null] >> endobj -3757 0 obj << -/D [3745 0 R /XYZ 225.881 188.429 null] +3738 0 obj << +/D [3726 0 R /XYZ 225.881 188.429 null] >> endobj -3758 0 obj << -/D [3745 0 R /XYZ 71.731 181.291 null] +3739 0 obj << +/D [3726 0 R /XYZ 71.731 181.291 null] >> endobj -3759 0 obj << -/D [3745 0 R /XYZ 373.626 157.545 null] +3740 0 obj << +/D [3726 0 R /XYZ 373.626 157.545 null] >> endobj 1539 0 obj << -/D [3745 0 R /XYZ 71.731 150.407 null] +/D [3726 0 R /XYZ 71.731 150.407 null] >> endobj -3744 0 obj << +3725 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3763 0 obj << -/Length 1277 +3743 0 obj << +/Length 1276 /Filter /FlateDecode >> stream -xڍVmo�6��_�'H��Kr��`(���a��Q�lː�K�_?R���ͮC�J�(�z��V:K�/�U)�8ٚee1�ۻdv��_��`�&�+������gk�.�l{��I�x��*��U�Ͷ�?��I�N�x�IT07�u�UVuGR���4RM#⿶�����N.x��+���F�w�e|��S�፷�(Wy�+X�8U����'�4�8K"m�-i�q��w���l�%,� -��8Ma�/Ҕ���e�S�d�>��Iuo�߲vAߋ��M&���D�E۸�@E댨���\�zt�:'㴈�F8��`��I�I,���w��[��ɹ��ry>�㲈��w�(�����u�� ���c��.�/Vá�����iY��JY��t�љ�*���W�8n�Z�C�k������Сp0�%����5��@R�/H�� B����ON>]�D�a�5��y��~��v�H�o�>�8���a���>8$ܼn��%�:৺�O�3;��!?l�8�)��ަ����5P{V�D��Os2��h�W��%AI��%�sR��l�w����:�H�R_��:Xm'���"��8N -lU�d3$����v��% ��R���D��:��K���8���#9� NWĦ%A-bB� $+�ҙ�2|ɾ -�R�(�{c= -�xKI�9�|���:�4����M@7R �-�H�Ȫc��� -�i��B�C�T��q��wo��t-�c윴�np� -h"��G�p,e��t=`J �� -����P]���C���JQw�|S�XP�����T�4":e ��N���`�E���B��@9�>y�<�G�����A��SLc��T78 -Fʥ�e��z���i!��gtC�}�N�s�rJ:H>�0^Ab�N&ϐ,a�B�j���g4�����fSsAZ�� ��zN+�90>OWT��p� -��; -���V퐠( �&�>�6T���a��{����(;i�[�C�5��C -p���[���?�a��": 'Ҟ���%�� ���=+�C���Fxn|?�1����q��𥥗�]����������g�@AY?/_I�G<�Ƽ�gxB��.�'�T)���� ݂"T�>��������S�ׂ�3y�J��=�~z�2Bq��R~��i��ʠa���N�#��r1^���𲂊�F�X��g�z�Ĝ��������c��脏e�;�$�%�������e��]���{7_�UZ��Q1y��/2x-����,�����3�W�endstream +xڍV�o�6~�_ܓ $�-�qr��~`(���a݃�(�v�eH��_?R���ͮC�J�(����V>��/�U9�|������M6;�ʯ7y�XD�Ņ���f��� ۬�lw�Y�DQ�*�ٺ����d{��W6]�2KJF�vp���H����O�'�id������w�ɥ��f-~�h�.:.fy1�0����Ct%[1�AU��.Y��!�Yb,����o�`T�:_6�-x�r^G�yۆt��B$��'Yƻ}T����ޚ�U����G�8�L��-��'���@e뭬���;��zt�;�ҼL�Vzm�h���Y_콆I-���w���mJ���}�y�|zzJWe¬D8��G�=Zc��ڴ��B��=���2]�r�0��sA�q^�J;��L��䉔*���W�%8n�ZpC��՞����Сp��%����5��@R./H� B���yHN>��D�nxlt �b���z�?�>�.NCq&=��>�e}tH�ݲ�KFu�Ow���gv�mC~�=p\P���M�Xq��K*��I��F>���t�I/}}R�i�˾o���I���5�9v�,�`K}��`��R��JB�8%�MTE �*cZ@ص��$�/.+Y�� �H�����V��V�K V�ȉ`p� 6-IZhjO 9�i��,ΐ�J�U���E��[P@�[JR����:�e��7�H5\v4"U��*��1� +Y���}��=��u�yhеЏus҆��I+���ϑ�㱔�.�3��)�c+�ZC�1���N]+E�9�M bA9�g,S�h�)kP�t"�.�pA?�����(@(��)(��~<�������?�bS����Q�p�J-M���3��N�FA�xk܋�WS�A +I��u2y�dI���ht�}@$*�a�~�g4���B.�05�s^Qρ���E��z �sU���Q`�s� ��@o��nc5�I!� �7[���Oێ�S�u8�]��:���[���ͭ��q��H�/�r"�I�._2�� ���9�#�2�:�L�nd@����Nm��:_Zz9����.�����~f,�����?��.ew<�b%�Ba�O����n��-(B��ɘ� <�t}��ZR{&�iS�q�8L/^F(.�N���2� [4��1���aDԟ/&Vkj*bUA�A#li�3[�FbNk���x���ݱ�D}t��1����F���A~�o�2���._��[��:�~��?��{ӗ|�2>:�pV�=�ߟ�/� W�endstream endobj -3762 0 obj << +3742 0 obj << /Type /Page -/Contents 3763 0 R -/Resources 3761 0 R +/Contents 3743 0 R +/Resources 3741 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3760 0 R +/Parent 3755 0 R >> endobj -3764 0 obj << -/D [3762 0 R /XYZ 71.731 729.265 null] +3744 0 obj << +/D [3742 0 R /XYZ 71.731 729.265 null] >> endobj 626 0 obj << -/D [3762 0 R /XYZ 204.675 707.841 null] +/D [3742 0 R /XYZ 204.675 707.841 null] >> endobj -3765 0 obj << -/D [3762 0 R /XYZ 71.731 700.488 null] +3745 0 obj << +/D [3742 0 R /XYZ 71.731 700.488 null] >> endobj -3766 0 obj << -/D [3762 0 R /XYZ 71.731 674.765 null] +3746 0 obj << +/D [3742 0 R /XYZ 71.731 674.765 null] >> endobj -3767 0 obj << -/D [3762 0 R /XYZ 249.701 674.765 null] +3747 0 obj << +/D [3742 0 R /XYZ 249.701 674.765 null] >> endobj -3768 0 obj << -/D [3762 0 R /XYZ 273.821 661.813 null] +3748 0 obj << +/D [3742 0 R /XYZ 273.821 661.813 null] >> endobj -3769 0 obj << -/D [3762 0 R /XYZ 71.731 654.675 null] +3749 0 obj << +/D [3742 0 R /XYZ 71.731 654.675 null] >> endobj 1540 0 obj << -/D [3762 0 R /XYZ 71.731 597.888 null] +/D [3742 0 R /XYZ 71.731 597.888 null] >> endobj 630 0 obj << -/D [3762 0 R /XYZ 189.239 560.673 null] +/D [3742 0 R /XYZ 189.239 560.673 null] >> endobj -3770 0 obj << -/D [3762 0 R /XYZ 71.731 553.32 null] +3750 0 obj << +/D [3742 0 R /XYZ 71.731 553.32 null] >> endobj -3771 0 obj << -/D [3762 0 R /XYZ 350.294 514.645 null] +3751 0 obj << +/D [3742 0 R /XYZ 350.294 514.645 null] >> endobj 1541 0 obj << -/D [3762 0 R /XYZ 71.731 507.507 null] +/D [3742 0 R /XYZ 71.731 507.507 null] >> endobj 634 0 obj << -/D [3762 0 R /XYZ 261.414 470.292 null] +/D [3742 0 R /XYZ 261.414 470.292 null] >> endobj -3772 0 obj << -/D [3762 0 R /XYZ 71.731 462.939 null] +3752 0 obj << +/D [3742 0 R /XYZ 71.731 462.939 null] >> endobj -3773 0 obj << -/D [3762 0 R /XYZ 71.731 437.216 null] +3753 0 obj << +/D [3742 0 R /XYZ 71.731 437.216 null] >> endobj -3774 0 obj << -/D [3762 0 R /XYZ 365.641 437.216 null] +3754 0 obj << +/D [3742 0 R /XYZ 365.641 437.216 null] >> endobj -3761 0 obj << +3741 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3777 0 obj << -/Length 2396 +3758 0 obj << +/Length 2395 /Filter /FlateDecode >> stream @@ -13787,347 +13700,352 @@ K ���/��sɭ�Vi�N��$�r�z�M1рt� �z`y�E ��Q|'Հ���Jij�0f~�W���RPrc��<H��HN��σ��Ӫ��!x,�q�H �ꪯX=�������R'/խ��A����'��6�V�,r�<x�xG}�T�s�Wf�NW��)^P_k�Si�ci��� �8M��<��߾0�ba�j"&�'��J���[��U����̌H!��j�2�*��X�?�G��r@�7�� { �o��Ѩ�� 2 �n�C�ם -U�S�����7�ѹ#�*�B$�zؑ���X�?\Hjf�6S��g@�����ߗ��B,Y,�l��3 x��x�Z@s6�E�0�!��P�z�7_��~9��"I��ؖ!�6lUa!o�w��|9�ӭ�-�(��� ��ɑ�|�F�U_0� yy� 2�n��Ԯ��{S;nTP��N���(�v�O���t}(�N.C��VL��7�n���eXm�2����7���+������4_ƣ`�o�hk��q���͌�7��T6�i���1�g;8�P�M�7G�&���)��᎗�ݬp w1��Ŵ��=�/z~���U�K��Ы2�����Xk�R�F&�ݬ�elj�n�|@�1��% nt[-�e�V�f�^�| �s����]�<W�P���`�v�Ǫb�Y�;>��y�~�m�%��f�e�{A.��w���$I�xߟP.bE�B{����/�Z��U�a��� �#��]5�Z���x�T�q�ˠ��J�e���� �N;>a|jv�������I�x��C7W�����JQ�)��nE��n�E�T�o�W鷀q4��0H�8u�Bwm Y����)���Q�t?��YM�����wǫ��O��^OΜ���v�^���VuE��+�;h�g��%����3JF���W��8=����ݽ�P�AEq%�e�ZL���_�/����Q3 �,M����Up���V�\��j#����k���PA|�-����jV�&�� ���|瀞�'�'!@��eA�_���� ��z�+V�%%1�2��\�oϦ��/m��~;Mendstream +U�S�����7�ѹ#�*�B$�zؑ���X�?\Hjf�6S��g@�����ߗ��B,Y,�l��3 x��x�Z@s6�E�0�!��P�z�7_��~9��"I��ؖ!�6lUa!o�w��|9�ӭ�-�(��� ��ɑ�|�F�U_0� yy� 2�n��Ԯ��{S;nTP��N���(�v�O���t}(�N.C��VL��7�n���eXm�2����7���+������4_ƣ`�o�hk��q���͌�7��T6�i���1�g;8�P�M�7G�&���)��᎗�ݬp w1��Ŵ��=�/z~���U�K��Ы2�����Xk�R�F&�ݬ�elj�n�|@�1��% nt[-�e�V�f�^�| �s����]�<W�P���`�v�Ǫb�Y�;>��y�~�m�%��f�e�{A.��w���$I�xߟP.bE�B{����/�Z��U�a��� �#��]5�Z���x�T�q�ˠ��J�e���� �N;>a|jv�������I�x��C7W�����JQ�)��nE��n�E�T�o�W鷀q4��0H�8u�Bwm Y����)���Q�t?��YM�����wǫ��O��^OΜ���v�^���VuE��+�;h�g��%����3JF���W��8=����ݽ�P�AEq%�e�ZL���_�/����Q3 �,M����Up���V�\��j#����k���PA|�-����jV�&�� ���|瀞�'�'!@��eA�_���� ��z�+V�%%1�2��P߾�Jr��]��{;Jendstream endobj -3776 0 obj << +3757 0 obj << /Type /Page -/Contents 3777 0 R -/Resources 3775 0 R +/Contents 3758 0 R +/Resources 3756 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3760 0 R +/Parent 3755 0 R >> endobj -3778 0 obj << -/D [3776 0 R /XYZ 71.731 729.265 null] +3759 0 obj << +/D [3757 0 R /XYZ 71.731 729.265 null] >> endobj 1640 0 obj << -/D [3776 0 R /XYZ 71.731 718.306 null] +/D [3757 0 R /XYZ 71.731 718.306 null] >> endobj 638 0 obj << -/D [3776 0 R /XYZ 320.829 703.236 null] +/D [3757 0 R /XYZ 320.829 703.236 null] >> endobj 1641 0 obj << -/D [3776 0 R /XYZ 71.731 692.184 null] +/D [3757 0 R /XYZ 71.731 692.184 null] >> endobj 642 0 obj << -/D [3776 0 R /XYZ 205.304 651.159 null] +/D [3757 0 R /XYZ 205.304 651.159 null] >> endobj -3779 0 obj << -/D [3776 0 R /XYZ 71.731 642.336 null] +3760 0 obj << +/D [3757 0 R /XYZ 71.731 642.336 null] >> endobj -3780 0 obj << -/D [3776 0 R /XYZ 506.431 629.6 null] +3761 0 obj << +/D [3757 0 R /XYZ 506.431 629.6 null] >> endobj 1642 0 obj << -/D [3776 0 R /XYZ 71.731 583.608 null] +/D [3757 0 R /XYZ 71.731 583.608 null] >> endobj 646 0 obj << -/D [3776 0 R /XYZ 317.599 540.51 null] +/D [3757 0 R /XYZ 317.599 540.51 null] >> endobj -3781 0 obj << -/D [3776 0 R /XYZ 71.731 528.072 null] +3762 0 obj << +/D [3757 0 R /XYZ 71.731 528.072 null] >> endobj -3782 0 obj << -/D [3776 0 R /XYZ 71.731 493.048 null] +3763 0 obj << +/D [3757 0 R /XYZ 71.731 493.048 null] >> endobj -3783 0 obj << -/D [3776 0 R /XYZ 71.731 490.891 null] +3764 0 obj << +/D [3757 0 R /XYZ 71.731 490.891 null] >> endobj -3784 0 obj << -/D [3776 0 R /XYZ 71.731 485.91 null] +3765 0 obj << +/D [3757 0 R /XYZ 71.731 485.91 null] >> endobj -3785 0 obj << -/D [3776 0 R /XYZ 89.664 465.153 null] +3766 0 obj << +/D [3757 0 R /XYZ 89.664 465.153 null] >> endobj -3786 0 obj << -/D [3776 0 R /XYZ 128.486 465.153 null] +3767 0 obj << +/D [3757 0 R /XYZ 128.486 465.153 null] >> endobj -3787 0 obj << -/D [3776 0 R /XYZ 171.417 452.201 null] +3768 0 obj << +/D [3757 0 R /XYZ 171.417 452.201 null] >> endobj -3788 0 obj << -/D [3776 0 R /XYZ 71.731 450.045 null] +3769 0 obj << +/D [3757 0 R /XYZ 71.731 450.045 null] >> endobj -3789 0 obj << -/D [3776 0 R /XYZ 89.664 434.269 null] +3770 0 obj << +/D [3757 0 R /XYZ 89.664 434.269 null] >> endobj -3790 0 obj << -/D [3776 0 R /XYZ 71.731 406.209 null] +3771 0 obj << +/D [3757 0 R /XYZ 71.731 406.209 null] >> endobj -3791 0 obj << -/D [3776 0 R /XYZ 89.664 390.433 null] +3772 0 obj << +/D [3757 0 R /XYZ 89.664 390.433 null] >> endobj -3792 0 obj << -/D [3776 0 R /XYZ 130.164 390.433 null] +3773 0 obj << +/D [3757 0 R /XYZ 130.164 390.433 null] >> endobj -3793 0 obj << -/D [3776 0 R /XYZ 269.817 377.482 null] +3774 0 obj << +/D [3757 0 R /XYZ 269.817 377.482 null] >> endobj -3794 0 obj << -/D [3776 0 R /XYZ 71.731 370.343 null] +3775 0 obj << +/D [3757 0 R /XYZ 71.731 370.343 null] >> endobj 1643 0 obj << -/D [3776 0 R /XYZ 71.731 339.459 null] +/D [3757 0 R /XYZ 71.731 339.459 null] >> endobj 650 0 obj << -/D [3776 0 R /XYZ 252.009 296.362 null] +/D [3757 0 R /XYZ 252.009 296.362 null] >> endobj -3795 0 obj << -/D [3776 0 R /XYZ 71.731 283.924 null] +3776 0 obj << +/D [3757 0 R /XYZ 71.731 283.924 null] >> endobj -3796 0 obj << -/D [3776 0 R /XYZ 71.731 261.851 null] +3777 0 obj << +/D [3757 0 R /XYZ 71.731 261.851 null] >> endobj -3797 0 obj << -/D [3776 0 R /XYZ 71.731 233.791 null] +3778 0 obj << +/D [3757 0 R /XYZ 71.731 233.791 null] >> endobj -3798 0 obj << -/D [3776 0 R /XYZ 71.731 228.81 null] +3779 0 obj << +/D [3757 0 R /XYZ 71.731 228.81 null] >> endobj -3799 0 obj << -/D [3776 0 R /XYZ 89.664 208.053 null] +3780 0 obj << +/D [3757 0 R /XYZ 89.664 208.053 null] >> endobj -3800 0 obj << -/D [3776 0 R /XYZ 89.664 208.053 null] +3781 0 obj << +/D [3757 0 R /XYZ 89.664 208.053 null] >> endobj -3801 0 obj << -/D [3776 0 R /XYZ 89.664 177.169 null] +3782 0 obj << +/D [3757 0 R /XYZ 89.664 177.169 null] >> endobj -3802 0 obj << -/D [3776 0 R /XYZ 71.731 177.169 null] +3783 0 obj << +/D [3757 0 R /XYZ 71.731 177.169 null] >> endobj -3775 0 obj << +3756 0 obj << /Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3806 0 obj << +3787 0 obj << /Length 3459 /Filter /FlateDecode >> stream -xڍ˒��_1��H[#�HP|�6^g�M��;���s�P�ȬD����ק� !��R:����7ܭ��%�H$�����]~|����̟��b����ӛ�R�e"�����.�R�8�Kd(�Mx�����}�N�n��p�^Ă�2e�������pP��<����z���,�Wir0W��6"�`�u*dY�~ԧ�i����6�A��dX�F" -$ ��mۓ���:��>z'Y8���|2V��*DJ��O�1�1��j�q$�4c:�e�Y��EO�z����GU��0A��EhƔ��v����r�Y��N�1'���2�,�"j�7�Y-�5mi��N7�6�������5�����=)c^��zQ7[q��@Y�n�)�2���ш�+�����{��e�_s�u`��t�Q�q{rښ���e���-&x�hG�x: �O_��n˜��e�YW�����ו:��+��p��ݶ'�m��\��ӧ�}<T��8����d"Ywq��:�VYy0V�|V��A����L�q4�k����%�}m��?���_�u�P� ����0�8<!Y$d��8<�h�`�Y��J�.��7���W�~)TK-Xʊ�=��t{ꔆfˊ�+�#m� +8��c�gm/��B������Qi�q���V|�U�� s[4u�G�M��G�C��o�~À��"ރg����+����rL�G4F�kT�[CCOn�m����t�����SmL�|@F_BH-���j��&:a�֞{�'��ۻ��'Up��u�k*\:#4\n�uw`�������t���F��hIJڕѕ)}�6EN��5 l��a�t��*k� �+��3�������z�붲�pO)���nz_9v>-�pQO��F�4��spS�mNu�b�sgdAZK���XWfY��D(��`fY� Hz4��K\�Y=�=�j���~�~��B��>��8�G�"���T������s�#{�gZK1�2�,�8�IcF�*�=�9;<�f���nrx�{��>����� &GRD29gr]i4��\t`h=Ow#�=55��q��1ĺIt���,;i�g�y��6;G�����~�[w8�����Z5K >c:n�}��_����!�zt��+��.,f�b���EQ�!/�0$8p7��Ľ�ޜ�����=��ZDQp�*�٫d�I2{���n_���Uz���u)�J�/5��T�K0���L$��XV�i���P�04J"?@��/m��{�� -�y)ʼ�&�}Z˛H�٩���3pm���!�žnJ�whh͊��K�-��Fa|*?&�TS�keᇦ�/d[.�`��<�7<y(y��.e���5D.�E!ͬ���lnX�fV������%��r6�=%g� �5=�x����H!et�SL�-�m�#���2?�#���:j�Z��N`�AWB��x;{1�@�� [>��^���ً��u�bF��.����e�z��L�`2�(:��h�x�V⪷4��14ǎͫ�3�qؼ�v4O[�� -��6���ѿ�?p���;�\@��J4�mb�F�\��S5"�h��5|H���#��9�6&� >d�=�$DU{V��R�!p�rW�TsH\U�v���,��t)����>J�b.�����R`�-�/�zN^/���� i�0�Д`�۩@N&�P版�'1fƔ��@-����F9�/v(.�p%iixaMQGycs���~l�ҝ��B�������b����Ŧ�-�1Ɓ@J��E���)*�.�ݗݓ�O��EDf��22�� CX) f���m1ធ�g�c��9a��:�Vk��Wx��E���3^��4F�$����»�h��H0�|�s -�`��:��Ֆ7pA�u��(��-�8J�l�nQbU��°� �ͯ,M�%����9���ݩ��r0u_<u6�4C��]��c��ۢ�uOز�~1N]X�̃�n���6��m��l���r;���-CX��-�N��-�#�Sr�!g-�K����39K'2*���e���2H{����T����X���fv]�Yq�!ϭ�$�q���@����PB�Q+�0h�2�W�4�A8�I;����s�͖�w�p\_���@(?q�`�����1���v�l�4� ���P�knJA��J�v��^o��0a=�hN�����Uw|�w[�R/LO�EW}t���� -�DV�ث=�u�]� -.�ݢ��Q'oD ��dF��U��"����4�=�N>rzW��T�'a��V�|)���\��v��X% I�*�9>2���l�r�m>�pO��C���Knͤ=�"I��"������xkM����>����Sp4+����Wy?���!,�gk��n�~�{���ǶU9jx�.q�6�� -Ş3w0C��4H�lh�e����"�#\�:�6�<�Kt\�� ?��;��t;q�l����>�Ȟ�_僸P���6tT��g� ��[F��ZA�� (�w���93�Um���4H�=��Q P�\��nW7Ͱ��p�����b�oK�A�ŇҾ��� ��o������l4�|u�v�|�E��f�x�@o_���g�-h��Ҵe�3pg>>0r��|������%!��L}�itԘ���Khy�3� !���]�@ft�AXݞ-�O����c���#��>�j���ԓ��ĶVD�m��,�l"�L1o�<2�Q9z5Ƽ��զ��E���*U�"���v��m-�}V��p�g�3dJ���X�wDV�����p�r��$�����X�Qr��VH���o.���f�A�5'x0l��� s��V�f���n����y��Q��E��y R���S�!�;s�}e�,.�� �|���J�rt���(CX���'P����G=��mI a 0����� Ɉ�K ��_G!�d�C-=60 Yk;�C*E^j�����PN��(��4e߃a��a�)a -��}P��z������t�g>Й ��Ψ�� �@��`c?�f\�W�Pn�U3��D���ܹw�͑�wmH ����;_r\J~$S&v��- ������}ek��OE]n��!p0A��Cp�{A����/�J�&����5v�l��Z U�5-�C���>��<���@�"��}8���s�B�m�Qʽ͟��x\ ����*^���6ۈ,M|��u�*+��g�* -#��N`ߨ�C��EXǗzW=��v�� �Еcˆ�x�`>�h����R���%8�c�;�0�Z�^��dD���2e��!�v[*��H��ݫ h�x�� ���p����A#�p�ߎ�S����/\���t㾇��T~QQm{������J��W���É�1���U�~�7����G|�S;�d9JE$W?j@.l�&L�:t�X���}�|��Tyendstream +xڍ˒��_1��H[#�H�!�6^g�M��;���s�P�ȬD����ק� !��R:����7ܭ�ܥ�H%�����.?�Y��a�Oo�X1�ʃ�����)�2�%��iwI)d�ܥ2�8�{��{�P�V7�U�����LY���m���<��?Oy�ǧa,S�m�U��U��X��E����nZ ����o�Ç0�m"�?��In�rC�]S��,�F�v>+�o"���'���uW�f��$�&c:�e/^ۢ'F=�]Kͣ��~�����I�"4c��B;`��a�>�I7��\���+��|���2\�Ж�~�tSjsO��� +0\c��|���ؓ2�e�u�u�z?����6��.s������ ܩ\O�W�D�5W�QFiL���'�����Q�x)�b���vD�����9��y�_��ݽtp��ԡl_a&�]��U~�=n�\�ҟ�>}������~���4�:�K�D�כi�'��c5�g�hdhx�k��$��p��{ܼ��/��m��V� �+�N��b#�7�&X��'�!���R��BMl�/�uXi�E�������J�/�j�e�+CYQ��g�nO���lYQE��8a���u����#T^WHQs�[>�;*�3�{<�݊�� +B��an����(����y�#�!���^�a���[�A��3rp������Y9��##�5�ʭ!��'�ٶ��yw���B�Щ6�|>���������� 5�]��`kϽ�l����œ*���5��.7m��;��{�N���t:�WV#�~�$%���ʔ� e��'��6n��0@ �kf�5E��וu��UVA��Ye��u[YG������7��;��Y��'�3�b�z�9�)w[�6��B�ю��3� �% +�~tY�+��^G"��uV0��f$=�e�%�۬�b����O?~?�Z��ugp��#{p�u^�^�}��9�= �3���e�ċ9ǛD�Ѻ�af��O�qx�M�qOp����;U�:��H�H��L�+�&�Օ���i��n$����>β3�X7���s��e'� ��,;/q�f��;=��z�G�����\�f)�gL�����1�R�Pb�z;V�.�zE��l�Y�1�=�(j;c�%���Fڛ��Q�_�'��"���W9��^%� O�٫��u�*G�������K�P��}����X� �g�e*��Dz*Mۨ���r��Q��h�^�k�V��KQ�5���Z�Db�N �$��kc�6��I,�uS:h�CCkV4�\�m!�6 +�S�1ɧ��_+?4�!�r)��Y0���C�Ӝt)S�$�!r�/if�,�D߰�̬�1m3+g��n�����y�����8���>O�Z*���y�O1ݶ��=�쎧��Z�� 4�03l��]j�R@;d0��] ����Ŭ��7l��3{1�g�f/���ឺ�?�A`�p~3���D�Qt��Q�x�V⪷4��14ǎͫ�3�qؼ�v4O[�� +��6���ѿ�?p���;�\@��J4�mb�F�\��S5"�h��5|H���#��9�6&� >d�=�$DU{V��R�!p�rW�TsH\U�v���,��t)����>J�b.�����R`�-�/�zN^/���� i�0�Д`�۩@N��P版�'1fƔ��@-����F9�/v(.�p%iixaMQGycs���~l�ҝ��B�������b����Ŧ�-�1Ɓ@J��E���)*�.�ݗݓ�O��EDf���22�� CX) f���m1ធ�g�c��9a��:�Vk�M��-�+/4g��O�i��I��k�݅w[�ב`��P�44���[u:�-o��늝Q��[ +�q� ��PݢĪh� �a�:�_Y��Kڝ9�r0a�SU 6�`�x�lRi��]�:���6S�E_랰e��b��*�����_;mfM�z#������2'�a�v�D:��pOɭ���-�P.�����8�l3�Q� \<-7�-��bo�\ ��p<��=�̮k;+�0�5�Ē!N8�HyJ�0jE���B�J��f8G:i'9<8�a��r����K���' 8L��<�6F���N�͚�Bl�i,᚛RP+���t��ۂ�7�@X*�Sa&�b�x��;�����e�U_id����3�#�j�e�{W�pa�o�h�f�I&��U7��̨����4[Ĝ@uS�Ƹ'��GN�*�"�k�˗����n�(�Q +�$��q���#CX>�V('P����=����L�#)�4</�!�ylL!Ɉ��D�[iy�S1��k!0G�2���ip������~�v9��6�G��x�!l[����'k3(�P�9sW� S0T�KA�$φ&�}�Q�)0m�(2N9���js�ùD����#^���iN�Sg!m���,��C����U>��%Io�`CG�]�}�RL�e�}��{�Ѐ"��z͑3S\�֍�M��ۓA}��U���{�vp�+�g����ȏ(���t��P�W5s?��� �Zܖ��O���ێ�/����l���Tv��C�M�Z��̀Qb����`F�x���~vP���D"����<��3}v`~ -�zF�A D��jW=��vV�g��n����n���}�O���*/��&���f[�:�=��5S�8���aT�^�1�ei��d{��r�Jղ�.�}�"+C[Kx���(��Y����y7���@�Ut>���)ܽ��� I6�2=%�w��{@����ہK.�ٺm�l� q�]�dN�� +�l��m��<�;*��Ȕ?�ƹ��nH���q_?�K�"H=j���ҫ@�8����� T�9:�=�Q��v[�GBX�8�3H2���_�*��Q�/Y4��B�PK� H�ڎ��J����(���3���$��=M��`zu�GuJ�B{m���.�ţ-�+��tf�9�3jxg.�;�0��'b�̀�� +ʘ_5#Jlߗ;�����9�v� )�_�x�K.�K A��!������me����k~@n`_�Z�|���SQ����_L�����@�.��`������ɻ?�Aw��B5ۼ��BUmM���#�|�� 6ϒ�.��M�>�j��P��6Ȩ����HK� +.g�rp/A\E��"ۤ>Z�:G��q�b���}'�o� �![��"���K�����{;�pF�ʱe�h�rA0w4N��x)M�?Вֱ��wv-�j��^2"�Ul�����^�-P�����4@<�����D8�����z8�oǃ�)b�`�.�ك�?�q�C}W*�(����=}����b%Y�+�yQS��D�����*e?�@�O��#�����}�m�&H�~�<�\��8LE��X���}�|����endstream endobj -3805 0 obj << +3786 0 obj << /Type /Page -/Contents 3806 0 R -/Resources 3804 0 R +/Contents 3787 0 R +/Resources 3785 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3760 0 R -/Annots [ 3860 0 R ] +/Parent 3755 0 R +/Annots [ 3841 0 R ] >> endobj -3860 0 obj << +3841 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [447.961 136.764 491.62 145.675] /Subtype /Link /A << /S /GoTo /D (lifecycle-image) >> >> endobj -3807 0 obj << -/D [3805 0 R /XYZ 71.731 729.265 null] +3788 0 obj << +/D [3786 0 R /XYZ 71.731 729.265 null] >> endobj 1645 0 obj << -/D [3805 0 R /XYZ 71.731 741.22 null] +/D [3786 0 R /XYZ 71.731 741.22 null] +>> endobj +3789 0 obj << +/D [3786 0 R /XYZ 71.731 683.941 null] +>> endobj +3790 0 obj << +/D [3786 0 R /XYZ 89.664 666.008 null] +>> endobj +3791 0 obj << +/D [3786 0 R /XYZ 89.664 666.008 null] +>> endobj +3792 0 obj << +/D [3786 0 R /XYZ 71.731 637.948 null] +>> endobj +3793 0 obj << +/D [3786 0 R /XYZ 89.664 622.172 null] +>> endobj +3794 0 obj << +/D [3786 0 R /XYZ 89.664 622.172 null] +>> endobj +3795 0 obj << +/D [3786 0 R /XYZ 71.731 620.015 null] +>> endobj +3796 0 obj << +/D [3786 0 R /XYZ 89.664 604.239 null] +>> endobj +3797 0 obj << +/D [3786 0 R /XYZ 89.664 604.239 null] +>> endobj +3798 0 obj << +/D [3786 0 R /XYZ 71.731 602.083 null] +>> endobj +3799 0 obj << +/D [3786 0 R /XYZ 89.664 586.307 null] +>> endobj +3800 0 obj << +/D [3786 0 R /XYZ 89.664 586.307 null] +>> endobj +3801 0 obj << +/D [3786 0 R /XYZ 71.731 584.15 null] +>> endobj +3802 0 obj << +/D [3786 0 R /XYZ 89.664 568.374 null] +>> endobj +3803 0 obj << +/D [3786 0 R /XYZ 89.664 568.374 null] +>> endobj +3804 0 obj << +/D [3786 0 R /XYZ 71.731 566.217 null] +>> endobj +3805 0 obj << +/D [3786 0 R /XYZ 89.664 550.441 null] +>> endobj +3806 0 obj << +/D [3786 0 R /XYZ 89.664 550.441 null] +>> endobj +3807 0 obj << +/D [3786 0 R /XYZ 71.731 535.333 null] >> endobj 3808 0 obj << -/D [3805 0 R /XYZ 71.731 683.941 null] +/D [3786 0 R /XYZ 89.664 519.557 null] >> endobj 3809 0 obj << -/D [3805 0 R /XYZ 89.664 666.008 null] +/D [3786 0 R /XYZ 89.664 519.557 null] >> endobj 3810 0 obj << -/D [3805 0 R /XYZ 89.664 666.008 null] +/D [3786 0 R /XYZ 71.731 517.4 null] >> endobj 3811 0 obj << -/D [3805 0 R /XYZ 71.731 637.948 null] +/D [3786 0 R /XYZ 89.664 501.624 null] >> endobj 3812 0 obj << -/D [3805 0 R /XYZ 89.664 622.172 null] +/D [3786 0 R /XYZ 89.664 501.624 null] >> endobj 3813 0 obj << -/D [3805 0 R /XYZ 89.664 622.172 null] +/D [3786 0 R /XYZ 71.731 486.516 null] >> endobj 3814 0 obj << -/D [3805 0 R /XYZ 71.731 620.015 null] +/D [3786 0 R /XYZ 89.664 470.74 null] >> endobj 3815 0 obj << -/D [3805 0 R /XYZ 89.664 604.239 null] +/D [3786 0 R /XYZ 89.664 470.74 null] >> endobj 3816 0 obj << -/D [3805 0 R /XYZ 89.664 604.239 null] +/D [3786 0 R /XYZ 71.731 455.632 null] >> endobj 3817 0 obj << -/D [3805 0 R /XYZ 71.731 602.083 null] +/D [3786 0 R /XYZ 89.664 439.856 null] >> endobj 3818 0 obj << -/D [3805 0 R /XYZ 89.664 586.307 null] +/D [3786 0 R /XYZ 89.664 439.856 null] >> endobj 3819 0 obj << -/D [3805 0 R /XYZ 89.664 586.307 null] +/D [3786 0 R /XYZ 71.731 424.748 null] >> endobj 3820 0 obj << -/D [3805 0 R /XYZ 71.731 584.15 null] +/D [3786 0 R /XYZ 89.664 408.972 null] >> endobj 3821 0 obj << -/D [3805 0 R /XYZ 89.664 568.374 null] +/D [3786 0 R /XYZ 89.664 408.972 null] >> endobj 3822 0 obj << -/D [3805 0 R /XYZ 89.664 568.374 null] +/D [3786 0 R /XYZ 71.731 380.912 null] >> endobj 3823 0 obj << -/D [3805 0 R /XYZ 71.731 566.217 null] +/D [3786 0 R /XYZ 89.664 365.136 null] >> endobj 3824 0 obj << -/D [3805 0 R /XYZ 89.664 550.441 null] +/D [3786 0 R /XYZ 89.664 365.136 null] >> endobj 3825 0 obj << -/D [3805 0 R /XYZ 89.664 550.441 null] +/D [3786 0 R /XYZ 71.731 362.979 null] >> endobj 3826 0 obj << -/D [3805 0 R /XYZ 71.731 535.333 null] +/D [3786 0 R /XYZ 89.664 347.203 null] >> endobj 3827 0 obj << -/D [3805 0 R /XYZ 89.664 519.557 null] +/D [3786 0 R /XYZ 89.664 347.203 null] >> endobj 3828 0 obj << -/D [3805 0 R /XYZ 89.664 519.557 null] +/D [3786 0 R /XYZ 71.731 345.046 null] >> endobj 3829 0 obj << -/D [3805 0 R /XYZ 71.731 517.4 null] +/D [3786 0 R /XYZ 89.664 329.271 null] >> endobj 3830 0 obj << -/D [3805 0 R /XYZ 89.664 501.624 null] +/D [3786 0 R /XYZ 89.664 329.271 null] >> endobj 3831 0 obj << -/D [3805 0 R /XYZ 89.664 501.624 null] +/D [3786 0 R /XYZ 71.731 290.317 null] >> endobj 3832 0 obj << -/D [3805 0 R /XYZ 71.731 486.516 null] +/D [3786 0 R /XYZ 89.664 272.483 null] >> endobj 3833 0 obj << -/D [3805 0 R /XYZ 89.664 470.74 null] +/D [3786 0 R /XYZ 89.664 272.483 null] >> endobj 3834 0 obj << -/D [3805 0 R /XYZ 89.664 470.74 null] +/D [3786 0 R /XYZ 71.731 257.375 null] >> endobj 3835 0 obj << -/D [3805 0 R /XYZ 71.731 455.632 null] +/D [3786 0 R /XYZ 89.664 241.599 null] >> endobj 3836 0 obj << -/D [3805 0 R /XYZ 89.664 439.856 null] +/D [3786 0 R /XYZ 89.664 241.599 null] >> endobj 3837 0 obj << -/D [3805 0 R /XYZ 89.664 439.856 null] +/D [3786 0 R /XYZ 71.731 239.442 null] >> endobj 3838 0 obj << -/D [3805 0 R /XYZ 71.731 424.748 null] +/D [3786 0 R /XYZ 89.664 223.667 null] >> endobj 3839 0 obj << -/D [3805 0 R /XYZ 89.664 408.972 null] +/D [3786 0 R /XYZ 89.664 223.667 null] >> endobj -3840 0 obj << -/D [3805 0 R /XYZ 89.664 408.972 null] +1644 0 obj << +/D [3786 0 R /XYZ 71.731 203.577 null] >> endobj -3841 0 obj << -/D [3805 0 R /XYZ 71.731 380.912 null] +654 0 obj << +/D [3786 0 R /XYZ 259.687 160.48 null] +>> endobj +3840 0 obj << +/D [3786 0 R /XYZ 71.731 148.042 null] >> endobj 3842 0 obj << -/D [3805 0 R /XYZ 89.664 365.136 null] +/D [3786 0 R /XYZ 460.835 125.969 null] >> endobj 3843 0 obj << -/D [3805 0 R /XYZ 89.664 365.136 null] +/D [3786 0 R /XYZ 220.262 113.017 null] >> endobj -3844 0 obj << -/D [3805 0 R /XYZ 71.731 362.979 null] +1791 0 obj << +/D [3786 0 R /XYZ 71.731 110.861 null] >> endobj -3845 0 obj << -/D [3805 0 R /XYZ 89.664 347.203 null] +3785 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 3846 0 obj << -/D [3805 0 R /XYZ 89.664 347.203 null] ->> endobj -3847 0 obj << -/D [3805 0 R /XYZ 71.731 345.046 null] ->> endobj -3848 0 obj << -/D [3805 0 R /XYZ 89.664 329.271 null] ->> endobj -3849 0 obj << -/D [3805 0 R /XYZ 89.664 329.271 null] ->> endobj -3850 0 obj << -/D [3805 0 R /XYZ 71.731 290.317 null] ->> endobj -3851 0 obj << -/D [3805 0 R /XYZ 89.664 272.483 null] ->> endobj -3852 0 obj << -/D [3805 0 R /XYZ 89.664 272.483 null] ->> endobj -3853 0 obj << -/D [3805 0 R /XYZ 71.731 257.375 null] ->> endobj -3854 0 obj << -/D [3805 0 R /XYZ 89.664 241.599 null] ->> endobj -3855 0 obj << -/D [3805 0 R /XYZ 89.664 241.599 null] +/Length 959 +/Filter /FlateDecode +>> +stream +x�}VKo�6��W�V �i�2��cڦ�E�������A�hK�,)"����;Ce%�,bD���ă�x�q�%����*���c��bC&����~��O��`E��C�K��i�%��R��k�kS�FM�F�8L�{~�mt����_�ue�������|�L2V��O1y�[P� +���,��,���x�"���`m8��=��Ru��Yz� ��7]�Ā(IQ������pr�$ϫ]!YQ��Jd��^�}8��a��*����,.�iI�3&�\�A��ya�2�qgy���)qXE<WP6L��`5F~�kz�`#8��y�7��$�ײ[�U�4cy$�V�����sm�r@eE��FMD^��sX���|�c����1O�c�'5�Y;M5�N��F�&ci<��<M`�]<$ga�#��s� +�m��@�!�Eu�f�q�!#g!#1�1G�ȼ��qTk���@�1���+���:FQ��`{��] +7�������K�ʐUǖa^``�J�,�k��� RM�Q ������k�4ԪS��FIú�V��Aa��נu�ԑ��.; e}e�\�z+ 0������b� + j:���AgB)X;�c����� 9tƀm��)���ncݣ�˳P'�(��z�$�s��H�#���� ē5�)S5s�R�f����9O�}�I��ԓg +�8<�2���h�9��^��s���� ��ƀ{�O�]�����b���|�Ap����g'�^�U�z�ٿ���z�L�/n ��p{jo�Q���Wt��/�5�Np��ܿ����z>�AP�E��X���\�W������K�V� +�q o�惆��0جO��A��;o���sR�$���S6���;��xg�nji}|l�MGy.kWg�(d���j�%�La>/^�3`�����.g9�~�ar5��.�"g��Nl*���7no��~K�endstream +endobj +3845 0 obj << +/Type /Page +/Contents 3846 0 R +/Resources 3844 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 3755 0 R >> endobj -3856 0 obj << -/D [3805 0 R /XYZ 71.731 239.442 null] ->> endobj -3857 0 obj << -/D [3805 0 R /XYZ 89.664 223.667 null] ->> endobj -3858 0 obj << -/D [3805 0 R /XYZ 89.664 223.667 null] ->> endobj -1644 0 obj << -/D [3805 0 R /XYZ 71.731 203.577 null] ->> endobj -654 0 obj << -/D [3805 0 R /XYZ 259.687 160.48 null] ->> endobj -3859 0 obj << -/D [3805 0 R /XYZ 71.731 148.042 null] ->> endobj -3861 0 obj << -/D [3805 0 R /XYZ 460.835 125.969 null] ->> endobj -3862 0 obj << -/D [3805 0 R /XYZ 220.262 113.017 null] ->> endobj -1791 0 obj << -/D [3805 0 R /XYZ 71.731 110.861 null] ->> endobj -3804 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -3865 0 obj << -/Length 968 -/Filter /FlateDecode ->> -stream -x�}VKo�F��W�V �ǚ���cڦMQ�(���dil *K�����#+�f#"9$��S�^�K�H#x�\�$���*�Np��J�ƆU6���j�E^.�$��GoE"J/���b������uqulT����_�iOD>L��L��?��V?���(y}�ӹ�n�\la&���bz4��d�k����ws��l��;ҳpX�3\�=n�. -Q� "��d�g��Έ%/�]�<ϔ��iL�����Yz?u�?W����fq�M��<� -%�ET���mc�i�?�T藁����#ʺ�v�h�ozKo�m�qL�5d`�ʺ��#��~M�8��Hb�����4GDS��t^k�{��D�eђ�K��"!�d�_�9`P)���Kk���g�:%x#�T2�r�{�i�� )$�J䱴������è��Z�!j�,j$.�,)2�f��2#=k���x���6E[a�M#80{��lG��K�f4�}�t ���Ɉ7L��\7�&T��h*Ru1Qv��w sGj��t�ˑ�&�+��G��c_�0�C����q��8i�+�V��i)���mGLF�cרP���eCR���s�+=��9���S����N����xSQ�_�xb�e�?tgM�����&�yj � ��mx�S��8X�2] ?��Xw�v&�&�ɲ����Է왃e�6�1tE�Bd�O{�"� s���b,knA7Tv5��v$9Į���4����'6ig'fX��j=�l�yw�;Ec�/� -� �p{bo�V��іl����c'����7��ñ� n@�(�Kn��፫�"���Z��WAq�� �����!��u6�}à�7��{ ��(Q���/y�?t]�m.��76�;�����T���9� 繨�ΐQ�n��E�J\u�.�<->f� �q�\w��d��ϔ���WJ�2*�Ħ"��������N�endstream -endobj -3864 0 obj << -/Type /Page -/Contents 3865 0 R -/Resources 3863 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 3760 0 R ->> endobj -3803 0 obj << +3784 0 obj << /Type /XObject /Subtype /Image /Width 496 @@ -14303,176 +14221,175 @@ ooo �Ç�����s�>}�-[����ob*"77������`ǎ��5��^^^���k��$��oݺ�jժ��`???���.J>lll�7o~��y����Aw���ݓ��$ 444|��U�7wZZ�������:nܸ�]�����(QB�{F�dɒ������СC�?f]��Ag���H� d:�e|�:�25ܡC-p�ÇѠ�눈���烱���۶m[�v���9�V2�~U�V�U�V���ٳ�n� ��ݻw��00�����P�8?������aaa���PΓ��$���ׯ���YYY��>�?SSS_�~��ѣ7n�Q���={��]Y y�̙����������֭��V�^=GGG��%��J�Y�&^>|8۶m���/_��=#��{4S���+A��U��u����ؠbA� RKKKr,)6H]�_@ �*��Z�� E�:H�;�j�������5j��\E>ǰEZ������c��"E�`T������wrrrvvnР�/��ҡC??���5jҤI�g�^�lF���h5�Qrr2�X������ɓŋ��=�����͋��JHH`D�$.\��g�0m@@@�ʕ���'�x��ÇЍ��ӳ�������M���ׁ�����Gc�C��jժ�� C����x�Pjendstream endobj -3866 0 obj << -/D [3864 0 R /XYZ 71.731 729.265 null] +3847 0 obj << +/D [3845 0 R /XYZ 71.731 729.265 null] >> endobj -3867 0 obj << -/D [3864 0 R /XYZ 71.731 696.359 null] +3848 0 obj << +/D [3845 0 R /XYZ 71.731 696.359 null] >> endobj 658 0 obj << -/D [3864 0 R /XYZ 263.164 254.019 null] +/D [3845 0 R /XYZ 263.164 254.019 null] >> endobj -3868 0 obj << -/D [3864 0 R /XYZ 71.731 241.581 null] +3849 0 obj << +/D [3845 0 R /XYZ 71.731 241.581 null] >> endobj -3869 0 obj << -/D [3864 0 R /XYZ 245.796 219.509 null] +3850 0 obj << +/D [3845 0 R /XYZ 245.796 219.509 null] >> endobj -3870 0 obj << -/D [3864 0 R /XYZ 71.731 212.371 null] +3851 0 obj << +/D [3845 0 R /XYZ 71.731 212.371 null] >> endobj -3871 0 obj << -/D [3864 0 R /XYZ 71.731 168.535 null] +3852 0 obj << +/D [3845 0 R /XYZ 71.731 168.535 null] >> endobj 1646 0 obj << -/D [3864 0 R /XYZ 71.731 155.583 null] +/D [3845 0 R /XYZ 71.731 155.583 null] >> endobj 662 0 obj << -/D [3864 0 R /XYZ 217.917 118.368 null] +/D [3845 0 R /XYZ 217.917 118.368 null] >> endobj -3872 0 obj << -/D [3864 0 R /XYZ 71.731 111.016 null] +3853 0 obj << +/D [3845 0 R /XYZ 71.731 111.016 null] >> endobj -3863 0 obj << +3844 0 obj << /Font << /F33 1210 0 R /F32 1119 0 R /F23 1105 0 R /F27 1112 0 R >> -/XObject << /Im1 3803 0 R >> +/XObject << /Im1 3784 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -3875 0 obj << -/Length 2003 +3856 0 obj << +/Length 2006 /Filter /FlateDecode >> stream -xڽXK��6������8����S����A��Āce����ח)۱=��@ �(J$?Q$%o���[Ğ�����7�"=�rG����kfYx��^}�],�l����@��"|����.�;�K���ڏ\g#��s��Gj�i��E!W�~|����H���:Y��R~�+ems�"C���V� �օ�%uғ��ہsh���T����*O�l��Z1E:���E|�4mU��e=�W��c����&r�|�+�<���:�,���U+Y����/��]�=�ܽ��T]"�����E�{� -�וlmA�����M�˚(h��@V�'E�@�=���9u~���:P�*|R5�N����"�LE���%��� �Vs]�'gyM��*Tڠ�r��|�z_{iE���F�*2b�����O��7��(��"+�9-�����8��8�6�B�ԓ���Bp� ��`"$�݉Z���&�S~�u�JscP6V����I�B!b*�߈ ��ۓ -Bg�|]f�K".�U�:�+���d�^�fV�y��������M.x�KeY]�CY���/`P=B���65�Bc�~��i�ff�L��lFҟ�[0g�F*Y��]��9�(r��#ҟ<��Gތ=����8�8U�'m�9U�����5J�'2��+?r>_k'Y�v��I��qr�F��9`�c�-����0'�������NS&>���& ��� -#'�z���Q�{��z�^u��'{�h�8�<�ڀ��,�3��{���Ԇ��1h��}'�QP�k͎����9�6���zOb��<�s<��T��a6�����0X�j��@�0#� �� �t�5}?�rs�����)s��v�Dσ ��5�I���c�� ~09�:?U�t�ے�}��M�5���[[�� ��Ϫ���n�b�gë��J��Tc�ߩ{5�7�0���K���ikU}��"�&��o����ukP.ɣ��EWP�y�q�h�MIs�W��=^x�#�5㤮�*�A��S��U=�=jI�hf�x0� ����(��ن��QB�x���6 -���ʑ�*+�����rN{@[���,�%�X�%�p��0v;SQ���ڣ���ɉ�,o*�X���Y�Z*��u$��z*�n>J� i�d��2��`K��&�.�����RlMs����I�M�m�R���2�}��M�6�����t)�meoh��#�cʾbLК;��p�K^o���h"�Gܬ�g�C��^��+( -/�*��@d�X���nֱ�EYkLeAN�l�䚇�-�J������Ʋ�n�@*؞�.�.��W=�>b&��+�0�;���;u�/ m��^��V~�B����4�p\a��uWa�3n��8k�L� _~�˾�lN�UYg�aP��>p��H˵@L���d�AjY�糬����h=B���2�^bظ�"�fi�SNW4�Qm� �~�Ґ0=.g�ʹbM!�X!ƀg�_�=�B��6b?P���.�C��ŐY/����?��Y�g���[�hv�EFAN���� ��=�CC���5�[G�l��Pe��ww�[P�gO;0�M� -{~ܡ��ȵǢח �O �Qh�R�(tQ|:�^�����i*�z�3�n�&^j���@�E55� �=�I�|��y!����9ۚ殈��N���y&o�c�ihʹ�����y��J@��r10ly�P�>�������=Tf�i<���� -J<�8�<ɕ!�����Mb��L�X���8\���}��/���M�}�������K.S�r�ޞe����p��i|~�otڞaԘf�yq��yx6��5 M5����+m^�@�t���;a�H&φ��Wcq7�_��ಪ�����17C��k��O�K]�g�l� 8���M�;ɺ�UI�Bl��{ -�b��O��{��-9����"ho�>��?��7� K;endstream +xڽX[�� ~�_8����&q�:s��n�,f�ۇn[I8VƗ�=��K����>��E�X�(��D�����`� �6�O��p�,��;q�����c�,k����ݟ���E*�M��q�h�Yl�P�p����=��U�j&�����)�5?t��e)W���������$ڊt����(n��m�NDqltڟ�jE�wкT��Nv�u�`;�]ݞW���c�VM[YK����(��c�ו�H���+���'�J�|�T���$���?�JO��)%j5q5J��uf5u͋�B��N<� +UW,��B��Rt-[E[��ˡ�d[�! +�cFj�U��I�/�G��c^S\�% D�T3� +�UC��D=����3SQ���tū����&Hh��BW�)X^۫�J��h9�\�#(ߢ^% xgƠ��~�ʜ�\� R��)s!��6�]eM��cwpw�u�MD��oP'�$��D��tò4��vw��|�\��}*�w^sUYaʧ"�j?�2�ʲS(DL%���p{RA�b���~I��c��}�ve�[�<'��J�̚:z���<p<��m��y�</�{(K5��bDj@�#��ff]hد�*+��l��ї�H�xO���H%KX�R4ea��9"����p����h�s�����T3����\+n��6��(��ɜZ����v��dEzءC'I�.�ɍ��/���dž[0c�D[�aNX&a1�Ya�� ��L��>��&�o��������ۣd�����=��O�j�n+���E��gP���6#�U���gPs�?:1h�8}'�QP,͎����9�6���z/b6�<�s���T�똍��a�H�y�:5�j�v����Gքb:횾�΅9�n�yʜ�b�}F"��" H&({�e���o,�-�͍HD�?���y?��t�����C�m�5���[;�� ��/�-.��bN`ë�TJ��Tcbث{3c0�0T�,*�o��U�i�$^C����/~�7�A �$�~RW]CE�� ��}3%�yX��xU��.������T\�6^�UV�-�!P{H��fF�:s �-x����<�8��� J�O�t�FAC�:�j$�� +�*n����Ж�K'�fI#�s )`:���T�$%������srx˻��m���� +�b f�� +��/�xB�2�'��$���Ē({�� �km�:��|��P������f�tSa������3uӯ������.�0] +B[����蘲o3�ᎹA�(������os?�H�7+� �P4xP#���k���u:��"���ulbQ�SY��)ۭ���BG˸R�-�+����l�sH �s�Uއ�������A�D=� �E�N�9�}T'�������m�w*e�Y�+� ���B�����Z���e��������|[��v���K5(GZ���`ژ���%{R˦�\d����@�bx��N�������5KsN9]��Fue����!a\�h�kŚB��B���Z���m ��Ae�����^=�!��j����h�_/�<���@��y'�3o2 +r��~O�]�yt }�94��n�=�.C���*?<�oAy��d�c��8��2���ɵǢ N��Qh�Ҁ(tQ|:�^�����i*�T��s�n�&^j���@�E55�(r�vg�:��KQʺ�o�.g�p��Q�!���I1z:"O����͈�`L2�M9Wrb4�ԾB8o�Y ��rc."��([��g��z�>~��<�@5}RA�@���'�1_�|bC��I�����C8����@��~����<�wYk�s����]sPv�e*P?ٳS3.�!��/�κ���:o�6�a��Y�T;z���������dN���n���d���������uX�U�<lw���s�G�o��b_�j=��%Np��+Z��w�M_�8I�Bl�ɟ{�wbl_��,�[r��EL�>��?���`KCendstream endobj -3874 0 obj << +3855 0 obj << /Type /Page -/Contents 3875 0 R -/Resources 3873 0 R +/Contents 3856 0 R +/Resources 3854 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3760 0 R +/Parent 3755 0 R >> endobj -3876 0 obj << -/D [3874 0 R /XYZ 71.731 729.265 null] +3857 0 obj << +/D [3855 0 R /XYZ 71.731 729.265 null] >> endobj -3877 0 obj << -/D [3874 0 R /XYZ 71.731 718.306 null] +3858 0 obj << +/D [3855 0 R /XYZ 71.731 718.306 null] >> endobj -3878 0 obj << -/D [3874 0 R /XYZ 71.731 690.311 null] +3859 0 obj << +/D [3855 0 R /XYZ 71.731 690.311 null] >> endobj -3879 0 obj << -/D [3874 0 R /XYZ 427.586 677.46 null] +3860 0 obj << +/D [3855 0 R /XYZ 427.586 677.46 null] >> endobj -3880 0 obj << -/D [3874 0 R /XYZ 113.491 664.508 null] +3861 0 obj << +/D [3855 0 R /XYZ 113.491 664.508 null] >> endobj -3881 0 obj << -/D [3874 0 R /XYZ 205.945 664.508 null] +3862 0 obj << +/D [3855 0 R /XYZ 205.945 664.508 null] >> endobj -3882 0 obj << -/D [3874 0 R /XYZ 71.731 644.419 null] +3863 0 obj << +/D [3855 0 R /XYZ 71.731 644.419 null] >> endobj -3883 0 obj << -/D [3874 0 R /XYZ 71.731 633.524 null] +3864 0 obj << +/D [3855 0 R /XYZ 71.731 633.524 null] >> endobj -3884 0 obj << -/D [3874 0 R /XYZ 71.731 628.543 null] +3865 0 obj << +/D [3855 0 R /XYZ 71.731 628.543 null] >> endobj -3885 0 obj << -/D [3874 0 R /XYZ 81.694 605.729 null] +3866 0 obj << +/D [3855 0 R /XYZ 81.694 605.729 null] >> endobj -3886 0 obj << -/D [3874 0 R /XYZ 81.694 605.729 null] +3867 0 obj << +/D [3855 0 R /XYZ 81.694 605.729 null] >> endobj -3887 0 obj << -/D [3874 0 R /XYZ 71.731 603.572 null] +3868 0 obj << +/D [3855 0 R /XYZ 71.731 603.572 null] >> endobj -3888 0 obj << -/D [3874 0 R /XYZ 81.694 587.796 null] +3869 0 obj << +/D [3855 0 R /XYZ 81.694 587.796 null] >> endobj -3889 0 obj << -/D [3874 0 R /XYZ 81.694 587.796 null] +3870 0 obj << +/D [3855 0 R /XYZ 81.694 587.796 null] >> endobj -3890 0 obj << -/D [3874 0 R /XYZ 71.731 585.639 null] +3871 0 obj << +/D [3855 0 R /XYZ 71.731 585.639 null] >> endobj -3891 0 obj << -/D [3874 0 R /XYZ 81.694 569.863 null] +3872 0 obj << +/D [3855 0 R /XYZ 81.694 569.863 null] >> endobj -3892 0 obj << -/D [3874 0 R /XYZ 81.694 569.863 null] +3873 0 obj << +/D [3855 0 R /XYZ 81.694 569.863 null] >> endobj 1647 0 obj << -/D [3874 0 R /XYZ 71.731 567.706 null] +/D [3855 0 R /XYZ 71.731 567.706 null] >> endobj 666 0 obj << -/D [3874 0 R /XYZ 236.902 535.392 null] +/D [3855 0 R /XYZ 236.902 535.392 null] >> endobj -3893 0 obj << -/D [3874 0 R /XYZ 71.731 529.265 null] +3874 0 obj << +/D [3855 0 R /XYZ 71.731 529.265 null] >> endobj 1648 0 obj << -/D [3874 0 R /XYZ 71.731 457.519 null] +/D [3855 0 R /XYZ 71.731 457.519 null] >> endobj 670 0 obj << -/D [3874 0 R /XYZ 166.08 424.209 null] +/D [3855 0 R /XYZ 166.08 424.209 null] >> endobj -3894 0 obj << -/D [3874 0 R /XYZ 71.731 415.572 null] +3875 0 obj << +/D [3855 0 R /XYZ 71.731 415.572 null] >> endobj -3895 0 obj << -/D [3874 0 R /XYZ 344.894 405.28 null] +3876 0 obj << +/D [3855 0 R /XYZ 344.894 405.28 null] >> endobj -3896 0 obj << -/D [3874 0 R /XYZ 71.731 391.168 null] +3877 0 obj << +/D [3855 0 R /XYZ 71.731 391.168 null] >> endobj -3897 0 obj << -/D [3874 0 R /XYZ 155.277 368.717 null] +3878 0 obj << +/D [3855 0 R /XYZ 155.277 368.717 null] >> endobj -3898 0 obj << -/D [3874 0 R /XYZ 71.731 358.655 null] +3879 0 obj << +/D [3855 0 R /XYZ 71.731 358.655 null] >> endobj -3899 0 obj << -/D [3874 0 R /XYZ 154.779 334.147 null] +3880 0 obj << +/D [3855 0 R /XYZ 154.779 334.147 null] >> endobj -3900 0 obj << -/D [3874 0 R /XYZ 71.731 322.745 null] +3881 0 obj << +/D [3855 0 R /XYZ 71.731 322.745 null] >> endobj -3901 0 obj << -/D [3874 0 R /XYZ 426.159 299.577 null] +3882 0 obj << +/D [3855 0 R /XYZ 426.159 299.577 null] >> endobj -3902 0 obj << -/D [3874 0 R /XYZ 71.731 287.457 null] +3883 0 obj << +/D [3855 0 R /XYZ 71.731 287.457 null] >> endobj -3903 0 obj << -/D [3874 0 R /XYZ 103.272 239.103 null] +3884 0 obj << +/D [3855 0 R /XYZ 103.272 239.103 null] >> endobj -3904 0 obj << -/D [3874 0 R /XYZ 71.731 229.041 null] +3885 0 obj << +/D [3855 0 R /XYZ 71.731 229.041 null] >> endobj -3905 0 obj << -/D [3874 0 R /XYZ 425.163 204.533 null] +3886 0 obj << +/D [3855 0 R /XYZ 425.163 204.533 null] >> endobj -3906 0 obj << -/D [3874 0 R /XYZ 71.731 192.414 null] +3887 0 obj << +/D [3855 0 R /XYZ 71.731 192.414 null] >> endobj 1649 0 obj << -/D [3874 0 R /XYZ 71.731 162.824 null] +/D [3855 0 R /XYZ 71.731 162.824 null] >> endobj -3873 0 obj << +3854 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3909 0 obj << +3890 0 obj << /Length 2792 /Filter /FlateDecode >> @@ -14483,86 +14400,86 @@ xڭY[ "ٰ�v�d?�W���v����,�{�|�Y�>����L@�Y�[#s���$���\\�r&��g����0_Sٰ���R�;�j˝m��)�3t�M$y~f���NKSJZ���/�wS fp�A,o�BTyZ����`ך����̤����b�Nޜ�~K[8Ԣr'��Z���.��`S8�X>Jf�5������V�T�[�ܚL�'��j �e�e�����M@P��J#\�#�^?����H5�����S@�$�� 0fN��&GUebB� ��(������b����zT��5Edk�A���M��_~1��釞�!Mˮ@�l�l�)���?���T$Z�e�am��#���Z�o�<�l������e*��C�0�)�A�ő�)���D�ik�aFF+g���ԗ��Jӯ��6Pn�� �xv���BϏ�1��5G^}�U�s��}�9t99M��ۢ9/�>�����a�/��E4ֶ��2��[aK,���j���Swځ��t]:_���ˤ��5x��d���I�GkA]B�w��P5g�R�]Q�b�e��M�A}$J�%��ùśB������9L�~f��(���a���R��_�R��FוM��.�u84�.'�����3C��B���Z��t=�=,�a��r.�Ft����ۘ&���u�m]���'rW LN+�t���5�:q`�섽��0�צ[��i�p3T�4?��5��&y�d�jߘX�n[���a�ؗ�cm�c�\�F��2���=��63��ID,�����P*��'�����(h�5O'���/-�:��0�R�=x�'$=��:��q��n��'��=�E�����9�8�;�s�������iV�{O'[��́�IZ�4��抆�^{�_�$�_��9�M2���F״�Փg�d�{��_�e>ԉ����p�)���{X�n�a�?l��ͲǤ֖ ���}��6����D��I<���TuT�X�S�CG������z���'�� 1?��І�T��-�g&|6���t��w�5�����k����(�k�_{��e6���_z}��k��2Z��`��q�#���*>��{5�v�4n0�(�k�<.�p �"�pj�+�A��j��e��R��L����3�N6t���~��h'+�'��<6����M�3�I�r�{� �__4�t�!���2�l�ؔy��~;J�����D���Z�6�%se�)P&��tC�01aP�|=q��X9��|H �*�oo���mޱ�d*\��FK�m&wT���-r4�.W���� r�J��φNC��z���<6W�g�P`���A�JJ[Ǝcx���oa���4z���+�IiH��������:�/"�Y f?�fy'�m��f�q�}Ҧ��W������.ߎ -��F��4��Lwg#���b5,T�E#i���4���(E��ն���vu� �I������w���ne���;���^^��/��L�N9���NP�/4���+H��EA�Sa������ko�>�!��2��k�-�g\��>��_A`qBendstream +��F��4��Lwg#���b5,T�E#i���4���(E��ն���vu� �I������w���ne���;���^^��/��L�N9���NP�/4���+H��EA�Sa������ko�>�!��2��k�-�g�_��>��_A5qAendstream endobj -3908 0 obj << +3889 0 obj << /Type /Page -/Contents 3909 0 R -/Resources 3907 0 R +/Contents 3890 0 R +/Resources 3888 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3927 0 R +/Parent 3755 0 R >> endobj -3910 0 obj << -/D [3908 0 R /XYZ 71.731 729.265 null] +3891 0 obj << +/D [3889 0 R /XYZ 71.731 729.265 null] >> endobj 674 0 obj << -/D [3908 0 R /XYZ 201.526 708.344 null] +/D [3889 0 R /XYZ 201.526 708.344 null] >> endobj -3911 0 obj << -/D [3908 0 R /XYZ 71.731 699.891 null] +3892 0 obj << +/D [3889 0 R /XYZ 71.731 699.891 null] >> endobj -3912 0 obj << -/D [3908 0 R /XYZ 463.469 676.463 null] +3893 0 obj << +/D [3889 0 R /XYZ 463.469 676.463 null] >> endobj -3913 0 obj << -/D [3908 0 R /XYZ 71.731 662.351 null] +3894 0 obj << +/D [3889 0 R /XYZ 71.731 662.351 null] >> endobj -3914 0 obj << -/D [3908 0 R /XYZ 514.935 626.949 null] +3895 0 obj << +/D [3889 0 R /XYZ 514.935 626.949 null] >> endobj -3915 0 obj << -/D [3908 0 R /XYZ 71.731 614.829 null] +3896 0 obj << +/D [3889 0 R /XYZ 71.731 614.829 null] >> endobj -3916 0 obj << -/D [3908 0 R /XYZ 71.731 598.408 null] +3897 0 obj << +/D [3889 0 R /XYZ 71.731 598.408 null] >> endobj 1650 0 obj << -/D [3908 0 R /XYZ 71.731 548.678 null] +/D [3889 0 R /XYZ 71.731 548.678 null] >> endobj 678 0 obj << -/D [3908 0 R /XYZ 183.664 505.58 null] +/D [3889 0 R /XYZ 183.664 505.58 null] >> endobj -3917 0 obj << -/D [3908 0 R /XYZ 71.731 493.142 null] +3898 0 obj << +/D [3889 0 R /XYZ 71.731 493.142 null] >> endobj -3918 0 obj << -/D [3908 0 R /XYZ 71.731 476.883 null] +3899 0 obj << +/D [3889 0 R /XYZ 71.731 476.883 null] >> endobj -3919 0 obj << -/D [3908 0 R /XYZ 71.731 435.204 null] +3900 0 obj << +/D [3889 0 R /XYZ 71.731 435.204 null] >> endobj -3920 0 obj << -/D [3908 0 R /XYZ 71.731 435.204 null] +3901 0 obj << +/D [3889 0 R /XYZ 71.731 435.204 null] >> endobj -3921 0 obj << -/D [3908 0 R /XYZ 71.731 330.114 null] +3902 0 obj << +/D [3889 0 R /XYZ 71.731 330.114 null] >> endobj 1651 0 obj << -/D [3908 0 R /XYZ 71.731 258.219 null] +/D [3889 0 R /XYZ 71.731 258.219 null] >> endobj 682 0 obj << -/D [3908 0 R /XYZ 198.969 215.121 null] ->> endobj -3922 0 obj << -/D [3908 0 R /XYZ 71.731 202.683 null] +/D [3889 0 R /XYZ 198.969 215.121 null] >> endobj -3923 0 obj << -/D [3908 0 R /XYZ 434.226 193.562 null] +3903 0 obj << +/D [3889 0 R /XYZ 71.731 202.683 null] >> endobj -3924 0 obj << -/D [3908 0 R /XYZ 71.731 134.618 null] +3904 0 obj << +/D [3889 0 R /XYZ 434.226 193.562 null] >> endobj -3925 0 obj << -/D [3908 0 R /XYZ 71.731 121.667 null] +3905 0 obj << +/D [3889 0 R /XYZ 71.731 134.618 null] >> endobj -3926 0 obj << -/D [3908 0 R /XYZ 71.731 116.686 null] +3906 0 obj << +/D [3889 0 R /XYZ 71.731 121.667 null] >> endobj 3907 0 obj << +/D [3889 0 R /XYZ 71.731 116.686 null] +>> endobj +3888 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3930 0 obj << +3910 0 obj << /Length 2276 /Filter /FlateDecode >> @@ -14575,98 +14492,98 @@ xڝY[ ���tQ�<Lj�����;�9_[�P|��o�NN?}�r��� �,��(K������r�˦�B'�D?w�V{g�Rw�ltlSU!���e� 9V��a� ��,M}��V��$�/�7`��n��P��d�F �]r���pU��yS�i�\jl��#s�YS���<�Z^�fl@qSM���ܧFNp@�N�Ѣ Cml�!N��kE6�&�`{싎cmd+Q�5������[�\�p�qb�f]=և"f̤��q����W���(�!�i��dd4���V� A�����J^�u�B����'p��#�r���lc�����1�j�}Go�V�W��|�t�^�+u����!yˋ>�u;�c�调�Cy'��e]��q�&�L��Æ_ ��bt�ݢ��_��_f����8Bb���*�ȞE�;< �1.ai��`H�|�8m�?���P�hĕ�s�=�_S�c�������j�}D�q�N,�ֱk }"�Zb�ٙ���]�/2��݁��AU�*�( ���[�c��:�^��`��'� ���і�,x`B$�E�����D��{�M����$`R��@V�`ù&���tĘ�����D��T��� Wy����<0��m_Ps}=^��"���K���[ɰ�aD$��j_�վ�Q6��������>���jУ$}zL�6�aW����j�����[�� ]�G)L@�Bg��#wH��k��+<����/'��:\9�=����] �%$Z��1�˫\+Kq�����WxK���@��va������W>�4=hں��_->�a� -$}�+ƍOW5�q��wB�O�/Q��i���?R���o�U��A���7ѭ��.%�J��endstream +$}�+ƍOW5�q��wB�O�/Q��i���?R���o�U��A���7�.%���endstream endobj -3929 0 obj << +3909 0 obj << /Type /Page -/Contents 3930 0 R -/Resources 3928 0 R +/Contents 3910 0 R +/Resources 3908 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3927 0 R +/Parent 3930 0 R >> endobj -3931 0 obj << -/D [3929 0 R /XYZ 71.731 729.265 null] +3911 0 obj << +/D [3909 0 R /XYZ 71.731 729.265 null] >> endobj -3932 0 obj << -/D [3929 0 R /XYZ 89.664 708.344 null] +3912 0 obj << +/D [3909 0 R /XYZ 89.664 708.344 null] >> endobj -3933 0 obj << -/D [3929 0 R /XYZ 118.177 708.344 null] +3913 0 obj << +/D [3909 0 R /XYZ 118.177 708.344 null] >> endobj -3934 0 obj << -/D [3929 0 R /XYZ 435.626 708.344 null] +3914 0 obj << +/D [3909 0 R /XYZ 435.626 708.344 null] >> endobj -3935 0 obj << -/D [3929 0 R /XYZ 71.731 693.235 null] +3915 0 obj << +/D [3909 0 R /XYZ 71.731 693.235 null] >> endobj -3936 0 obj << -/D [3929 0 R /XYZ 89.664 677.46 null] +3916 0 obj << +/D [3909 0 R /XYZ 89.664 677.46 null] >> endobj -3937 0 obj << -/D [3929 0 R /XYZ 71.731 675.303 null] +3917 0 obj << +/D [3909 0 R /XYZ 71.731 675.303 null] >> endobj -3938 0 obj << -/D [3929 0 R /XYZ 89.664 659.527 null] +3918 0 obj << +/D [3909 0 R /XYZ 89.664 659.527 null] >> endobj -3939 0 obj << -/D [3929 0 R /XYZ 71.731 644.419 null] +3919 0 obj << +/D [3909 0 R /XYZ 71.731 644.419 null] >> endobj -3940 0 obj << -/D [3929 0 R /XYZ 89.664 628.643 null] +3920 0 obj << +/D [3909 0 R /XYZ 89.664 628.643 null] >> endobj -3941 0 obj << -/D [3929 0 R /XYZ 71.731 621.504 null] +3921 0 obj << +/D [3909 0 R /XYZ 71.731 621.504 null] >> endobj -3942 0 obj << -/D [3929 0 R /XYZ 71.731 590.62 null] +3922 0 obj << +/D [3909 0 R /XYZ 71.731 590.62 null] >> endobj -3943 0 obj << -/D [3929 0 R /XYZ 71.731 561.793 null] +3923 0 obj << +/D [3909 0 R /XYZ 71.731 561.793 null] >> endobj 1652 0 obj << -/D [3929 0 R /XYZ 71.731 528.852 null] +/D [3909 0 R /XYZ 71.731 528.852 null] >> endobj 686 0 obj << -/D [3929 0 R /XYZ 211.45 485.754 null] +/D [3909 0 R /XYZ 211.45 485.754 null] >> endobj -3944 0 obj << -/D [3929 0 R /XYZ 71.731 476.932 null] +3924 0 obj << +/D [3909 0 R /XYZ 71.731 476.932 null] >> endobj -3945 0 obj << -/D [3929 0 R /XYZ 71.731 431.154 null] +3925 0 obj << +/D [3909 0 R /XYZ 71.731 431.154 null] >> endobj -3946 0 obj << -/D [3929 0 R /XYZ 71.731 402.427 null] +3926 0 obj << +/D [3909 0 R /XYZ 71.731 402.427 null] >> endobj -3947 0 obj << -/D [3929 0 R /XYZ 71.731 402.427 null] +3927 0 obj << +/D [3909 0 R /XYZ 71.731 402.427 null] >> endobj 1653 0 obj << -/D [3929 0 R /XYZ 71.731 324.565 null] +/D [3909 0 R /XYZ 71.731 324.565 null] >> endobj 690 0 obj << -/D [3929 0 R /XYZ 333.287 285.192 null] +/D [3909 0 R /XYZ 333.287 285.192 null] >> endobj -3948 0 obj << -/D [3929 0 R /XYZ 71.731 274.827 null] +3928 0 obj << +/D [3909 0 R /XYZ 71.731 274.827 null] >> endobj 1654 0 obj << -/D [3929 0 R /XYZ 71.731 234.084 null] +/D [3909 0 R /XYZ 71.731 234.084 null] >> endobj 694 0 obj << -/D [3929 0 R /XYZ 411.1 194.811 null] +/D [3909 0 R /XYZ 411.1 194.811 null] >> endobj -3949 0 obj << -/D [3929 0 R /XYZ 71.731 184.446 null] +3929 0 obj << +/D [3909 0 R /XYZ 71.731 184.446 null] >> endobj 1655 0 obj << -/D [3929 0 R /XYZ 71.731 141.646 null] +/D [3909 0 R /XYZ 71.731 141.646 null] >> endobj -3928 0 obj << +3908 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3952 0 obj << +3933 0 obj << /Length 1979 /Filter /FlateDecode >> @@ -14677,86 +14594,86 @@ l H�! ӕ���_�/�M��=�#@�̕���s�1a�^u[���)��|������;���������c��ǜ˷).��4�����R܂�D���7����B[����\ۀX{�{67��� 1&w���3�hwBv�۾�1[6����&����@���Dd���hEe�X�����6U��ҋWkO���z���#�_j���b!m������,};�}3m;a�7I� �PWm�����N�yY;Y_�ㅭ��y;�6�>�rN;(&@�$^2`4�c��ێ��b��"?fc\ �3WM��Ç��~�3l#+��rn!�p���6 $�`65f/뛪��f�3��_�t�J)u�$��ڞWV �SY,�ɀF����Rd3�s+�J �j���b�LS[)c���a�n�(�����i�P��$j/��_�nX��ʄ��Y�y�䍱5��� ���$���S�h{�@ 힐֓|Q}���z|.���_t&�!��DS9#hW�u&Z�j� �3�l�����m94S�N�`���H�C<��ځ&�εL �SR;E��%0�м<V)���S����<k[��hh�kUw��xռ��'�����`����s�ӝ�,P10FE����&��7aN�vq_5��eO�;Q��͟qo9��0J�(Tb��^g�õx��^��i��X�+���j����^֡٣�m4��"���j@��<�9k0�ڙu�6<�E�ӊ��[�N,�� �/�r���4��!^Ҝ�w5Y��E��7���$�~:�"ll -g���:��O�w�ȶ��K#�P����~dX>��ӹ��[a�I���dj�P��(7Q�`3s��3��A�.��ᠯPʨ~�X/���L{��c��b��CT�@�����H��'mZ����ؓ��dvG4�K]�cQ� ����x�|#٢춌��ĵ2vL��A����D����G��:���U�ga�՟^G��_^U��Ad��}��K���J�/'7�;endstream +g���:��O�w�ȶ��K#�P����~dX>��ӹ��[a�I���dj�P��(7Q�`3s��3��A�.��ᠯPʨ~�X/���L{��c��b��CT�@�����H��'mZ����ؓ��dvG4�K]�cQ� ����x�|#٢춌��ĵ2vL��A����D����G��:���U�ga�՟^G��_^U��Ad��}��K���J�/'�:endstream endobj -3951 0 obj << +3932 0 obj << /Type /Page -/Contents 3952 0 R -/Resources 3950 0 R +/Contents 3933 0 R +/Resources 3931 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3927 0 R +/Parent 3930 0 R >> endobj -3953 0 obj << -/D [3951 0 R /XYZ 71.731 729.265 null] +3934 0 obj << +/D [3932 0 R /XYZ 71.731 729.265 null] >> endobj 698 0 obj << -/D [3951 0 R /XYZ 328.439 707.841 null] +/D [3932 0 R /XYZ 328.439 707.841 null] >> endobj -3954 0 obj << -/D [3951 0 R /XYZ 71.731 697.476 null] +3935 0 obj << +/D [3932 0 R /XYZ 71.731 697.476 null] >> endobj 1656 0 obj << -/D [3951 0 R /XYZ 71.731 641.724 null] +/D [3932 0 R /XYZ 71.731 641.724 null] >> endobj 702 0 obj << -/D [3951 0 R /XYZ 427.527 604.508 null] +/D [3932 0 R /XYZ 427.527 604.508 null] >> endobj -3955 0 obj << -/D [3951 0 R /XYZ 71.731 594.143 null] +3936 0 obj << +/D [3932 0 R /XYZ 71.731 594.143 null] >> endobj 1657 0 obj << -/D [3951 0 R /XYZ 71.731 551.343 null] +/D [3932 0 R /XYZ 71.731 551.343 null] >> endobj 706 0 obj << -/D [3951 0 R /XYZ 319.902 514.127 null] +/D [3932 0 R /XYZ 319.902 514.127 null] >> endobj -3956 0 obj << -/D [3951 0 R /XYZ 71.731 503.762 null] +3937 0 obj << +/D [3932 0 R /XYZ 71.731 503.762 null] >> endobj 1658 0 obj << -/D [3951 0 R /XYZ 71.731 460.962 null] +/D [3932 0 R /XYZ 71.731 460.962 null] >> endobj 710 0 obj << -/D [3951 0 R /XYZ 284.583 423.746 null] +/D [3932 0 R /XYZ 284.583 423.746 null] >> endobj -3957 0 obj << -/D [3951 0 R /XYZ 71.731 413.381 null] +3938 0 obj << +/D [3932 0 R /XYZ 71.731 413.381 null] >> endobj -3958 0 obj << -/D [3951 0 R /XYZ 71.731 372.638 null] +3939 0 obj << +/D [3932 0 R /XYZ 71.731 372.638 null] >> endobj 1659 0 obj << -/D [3951 0 R /XYZ 71.731 339.696 null] +/D [3932 0 R /XYZ 71.731 339.696 null] >> endobj 714 0 obj << -/D [3951 0 R /XYZ 262.26 302.481 null] +/D [3932 0 R /XYZ 262.26 302.481 null] >> endobj -3959 0 obj << -/D [3951 0 R /XYZ 71.731 292.116 null] +3940 0 obj << +/D [3932 0 R /XYZ 71.731 292.116 null] >> endobj 1660 0 obj << -/D [3951 0 R /XYZ 71.731 252.304 null] +/D [3932 0 R /XYZ 71.731 252.304 null] >> endobj 718 0 obj << -/D [3951 0 R /XYZ 223.845 209.207 null] +/D [3932 0 R /XYZ 223.845 209.207 null] >> endobj -3960 0 obj << -/D [3951 0 R /XYZ 71.731 197.035 null] +3941 0 obj << +/D [3932 0 R /XYZ 71.731 197.035 null] >> endobj 1661 0 obj << -/D [3951 0 R /XYZ 71.731 185.491 null] +/D [3932 0 R /XYZ 71.731 185.491 null] >> endobj 722 0 obj << -/D [3951 0 R /XYZ 223.569 148.275 null] +/D [3932 0 R /XYZ 223.569 148.275 null] >> endobj -3961 0 obj << -/D [3951 0 R /XYZ 71.731 140.923 null] +3942 0 obj << +/D [3932 0 R /XYZ 71.731 140.923 null] >> endobj -3950 0 obj << +3931 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3964 0 obj << +3945 0 obj << /Length 2378 /Filter /FlateDecode >> @@ -14766,89 +14683,89 @@ xڍXm %��niK)[�� �dN�<�ސ�m|Y���Q,e��� ;7b�<���8�X�_��6[�����l9(f�.�8�g!ڣ9u��\���ƶ�i�JD���Sad]lW,S��Fˌ7����S7�"Va�{a���Pb1 ��E/V3���B�Yb��V�l\lj���xґW�[c�"������v ��\���v���,8���Sn�7u�����V@7W���g.e��4$��mݞ��Q�|�9�b�:(��3�Y+��X�r �a+#���{]���fj=5�cağk2�~ځb�p�=|��&��|x����@U�ti�rw�[C����� �K������ ��%�^���G���7a�Ǖ5�����կ���>"Uі|c�5Ou[��C���Y�I�A�9h�A�2|+���C߬�����c��@[m{uBN'�<I "Tro���Z�Q�=Ѷ�r)���`��P�����8���\���N|���ݻp��{���Ɨ�����Q�����1���.D�{~���y�G>jI�"E!Z6fc�zcR7���������mI��}W�FH�ѿ:X��f,ܶݘQy��KDV�(��Ů�qp��g�r6�ӛ�v7De�,�Ekζ,�$N�s��g�lۇ41+VIm%^�3�G�����i�Wy���iٓN��^��B$9���C��pB ��/����UXO�Chq����VV�G�<jʃ��W���I�wi�ɵ ������R���+�=W�ݓ"�d�|zJ F��=�Df�%ݜ��gv� �W���k�E����my�n�۪���$!���c FZC�������XT��>�O��r��n���j�_�Y"���?��p�CMxW��4�QwDЪV���>����<j)ؒUN�v"�:"lA)Bb�B�حm>⇗"���"k�VI)��N�����~�:)���zO���,��!�F�ڙ�k>���V���y�>��W�d���ѫ�+��ϗ�p�wҷ&�I"�U]�<p��N����4� -҂��I~��+���0�w��wᆣ��i]H6�lօnQ��L�<��HP��R�D��P7^f��[�:���C��}&k�Y,˼�?� [��K��͈p=�Q�~@^J����B�^�h4�!��:�Q}|���WW��7�����?v���i��8Iq+Or���/?o�W��2^&�_��~���>O��4 Jh���K�ѯw�??�Oendstream +҂��I~��+���0�w��wᆣ��i]H6�lօnQ��L�<��HP��R�D��P7^f��[�:���C��}&k�Y,˼�?� [��K��͈p=�Q�~@^J����B�^�h4�!��:�Q}|���WW��7�����?v���i��8Iq+Or���/?o�W��2^&�_��~���>O��4 Jh�E�����;�?`Oendstream endobj -3963 0 obj << +3944 0 obj << /Type /Page -/Contents 3964 0 R -/Resources 3962 0 R +/Contents 3945 0 R +/Resources 3943 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3927 0 R +/Parent 3930 0 R >> endobj -3965 0 obj << -/D [3963 0 R /XYZ 71.731 729.265 null] +3946 0 obj << +/D [3944 0 R /XYZ 71.731 729.265 null] >> endobj -3966 0 obj << -/D [3963 0 R /XYZ 282.496 708.344 null] +3947 0 obj << +/D [3944 0 R /XYZ 282.496 708.344 null] >> endobj -3967 0 obj << -/D [3963 0 R /XYZ 71.731 675.268 null] +3948 0 obj << +/D [3944 0 R /XYZ 71.731 675.268 null] >> endobj -3968 0 obj << -/D [3963 0 R /XYZ 71.731 675.268 null] +3949 0 obj << +/D [3944 0 R /XYZ 71.731 675.268 null] >> endobj -3969 0 obj << -/D [3963 0 R /XYZ 71.731 587.473 null] +3950 0 obj << +/D [3944 0 R /XYZ 71.731 587.473 null] >> endobj 1662 0 obj << -/D [3963 0 R /XYZ 71.731 556.489 null] +/D [3944 0 R /XYZ 71.731 556.489 null] >> endobj 726 0 obj << -/D [3963 0 R /XYZ 197.015 517.216 null] +/D [3944 0 R /XYZ 197.015 517.216 null] >> endobj -3970 0 obj << -/D [3963 0 R /XYZ 71.731 509.297 null] +3951 0 obj << +/D [3944 0 R /XYZ 71.731 509.297 null] >> endobj -3971 0 obj << -/D [3963 0 R /XYZ 103.934 484.14 null] +3952 0 obj << +/D [3944 0 R /XYZ 103.934 484.14 null] >> endobj -3972 0 obj << -/D [3963 0 R /XYZ 105.405 471.189 null] +3953 0 obj << +/D [3944 0 R /XYZ 105.405 471.189 null] >> endobj -3973 0 obj << -/D [3963 0 R /XYZ 71.731 464.051 null] +3954 0 obj << +/D [3944 0 R /XYZ 71.731 464.051 null] >> endobj -3974 0 obj << -/D [3963 0 R /XYZ 352.773 453.256 null] +3955 0 obj << +/D [3944 0 R /XYZ 352.773 453.256 null] >> endobj 1663 0 obj << -/D [3963 0 R /XYZ 71.731 435.224 null] +/D [3944 0 R /XYZ 71.731 435.224 null] >> endobj 730 0 obj << -/D [3963 0 R /XYZ 185.739 395.951 null] +/D [3944 0 R /XYZ 185.739 395.951 null] >> endobj -3975 0 obj << -/D [3963 0 R /XYZ 71.731 388.599 null] +3956 0 obj << +/D [3944 0 R /XYZ 71.731 388.599 null] >> endobj -3976 0 obj << -/D [3963 0 R /XYZ 71.731 316.883 null] +3957 0 obj << +/D [3944 0 R /XYZ 71.731 316.883 null] >> endobj 1664 0 obj << -/D [3963 0 R /XYZ 71.731 288.056 null] +/D [3944 0 R /XYZ 71.731 288.056 null] >> endobj 734 0 obj << -/D [3963 0 R /XYZ 198.349 248.783 null] +/D [3944 0 R /XYZ 198.349 248.783 null] >> endobj -3977 0 obj << -/D [3963 0 R /XYZ 71.731 241.431 null] +3958 0 obj << +/D [3944 0 R /XYZ 71.731 241.431 null] >> endobj -3978 0 obj << -/D [3963 0 R /XYZ 71.731 197.675 null] ->> endobj -3979 0 obj << -/D [3963 0 R /XYZ 71.731 177.685 null] +3959 0 obj << +/D [3944 0 R /XYZ 71.731 197.675 null] >> endobj -3980 0 obj << -/D [3963 0 R /XYZ 71.731 133.849 null] +3960 0 obj << +/D [3944 0 R /XYZ 71.731 177.685 null] >> endobj -3981 0 obj << -/D [3963 0 R /XYZ 71.731 97.152 null] +3961 0 obj << +/D [3944 0 R /XYZ 71.731 133.849 null] >> endobj 3962 0 obj << +/D [3944 0 R /XYZ 71.731 97.152 null] +>> endobj +3943 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -3984 0 obj << +3965 0 obj << /Length 2505 /Filter /FlateDecode >> @@ -14862,102 +14779,102 @@ xڝYK �~�`�ִ\o iJ�j���W�,���)����s#��1n.7�Eݝ��, �Y��8�B�E�G�һ�.AsӝG��� ��j'3��<ep��7�*3?��8O9�����k5#����my��l����Kw��o @@bc���rQ|�"y�pv�#� ̊��Y���9Po�3Ƕ9>��H���[Y��qQ�F>�L2�G�P�Ƙb�D�|~q�y��!�x�R����t�^Z�n�m����^��xܿ5�ϋ:/?͇�����?0a������3I�:���#��*�H��L��T�"K`sS\�݂�;�Q��W����oZ�`�Z+~�)l�N��a����pܨ���2�pr��w���oܓa�,�Z-����qH�_�?5;��t��!�:=0u� H9�.8-�884=�@��IF�x-�@��'�^]����/ ��ASk���Zhާ����F���n���`�R�b�N0.�z�3�"�Ԡ�5ۆ+G1��X���#SWq��B����rڲp���f���_~~˄�J�D�n��Y�a�>6�Ͻ��nD���~hi0���O��評�Nc��)�abFz�c�TN�"���3��8�f�$W 5^)�� ��&ˆ�F�z�>f\�?vق)���E ����y�G����`��Z�[��^U�����������;h�:_!B@R�����N���/گu������n��)r�M5$ȋZ�!S�I -$L;u�De�Z��*�5��{�����Rw]��w�����8����#���>���_��d��I��V&^ X����������endstream +$L;u�De�Z��*�5��{�����Rw]��w�����8����#���>���_��d��I��V&^ Xf�������endstream endobj -3983 0 obj << +3964 0 obj << /Type /Page -/Contents 3984 0 R -/Resources 3982 0 R +/Contents 3965 0 R +/Resources 3963 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3927 0 R +/Parent 3930 0 R >> endobj -3985 0 obj << -/D [3983 0 R /XYZ 71.731 729.265 null] +3966 0 obj << +/D [3964 0 R /XYZ 71.731 729.265 null] >> endobj -3986 0 obj << -/D [3983 0 R /XYZ 71.731 718.306 null] +3967 0 obj << +/D [3964 0 R /XYZ 71.731 718.306 null] >> endobj 1665 0 obj << -/D [3983 0 R /XYZ 71.731 652.389 null] +/D [3964 0 R /XYZ 71.731 652.389 null] >> endobj 738 0 obj << -/D [3983 0 R /XYZ 256.243 609.291 null] +/D [3964 0 R /XYZ 256.243 609.291 null] >> endobj -3987 0 obj << -/D [3983 0 R /XYZ 71.731 600.468 null] +3968 0 obj << +/D [3964 0 R /XYZ 71.731 600.468 null] >> endobj 1666 0 obj << -/D [3983 0 R /XYZ 71.731 572.624 null] +/D [3964 0 R /XYZ 71.731 572.624 null] >> endobj 742 0 obj << -/D [3983 0 R /XYZ 237.557 535.408 null] +/D [3964 0 R /XYZ 237.557 535.408 null] >> endobj -3988 0 obj << -/D [3983 0 R /XYZ 71.731 525.043 null] +3969 0 obj << +/D [3964 0 R /XYZ 71.731 525.043 null] >> endobj -3989 0 obj << -/D [3983 0 R /XYZ 406.408 502.332 null] +3970 0 obj << +/D [3964 0 R /XYZ 406.408 502.332 null] >> endobj -3990 0 obj << -/D [3983 0 R /XYZ 512.678 502.332 null] +3971 0 obj << +/D [3964 0 R /XYZ 512.678 502.332 null] >> endobj 1667 0 obj << -/D [3983 0 R /XYZ 71.731 469.291 null] +/D [3964 0 R /XYZ 71.731 469.291 null] >> endobj 746 0 obj << -/D [3983 0 R /XYZ 218.447 432.076 null] +/D [3964 0 R /XYZ 218.447 432.076 null] >> endobj -3991 0 obj << -/D [3983 0 R /XYZ 71.731 421.711 null] +3972 0 obj << +/D [3964 0 R /XYZ 71.731 421.711 null] >> endobj -3992 0 obj << -/D [3983 0 R /XYZ 71.731 404.813 null] +3973 0 obj << +/D [3964 0 R /XYZ 71.731 404.813 null] >> endobj -3993 0 obj << -/D [3983 0 R /XYZ 219.242 394.018 null] +3974 0 obj << +/D [3964 0 R /XYZ 219.242 394.018 null] >> endobj -3994 0 obj << -/D [3983 0 R /XYZ 71.731 353.007 null] +3975 0 obj << +/D [3964 0 R /XYZ 71.731 353.007 null] >> endobj -3995 0 obj << -/D [3983 0 R /XYZ 71.731 338.063 null] +3976 0 obj << +/D [3964 0 R /XYZ 71.731 338.063 null] >> endobj -3996 0 obj << -/D [3983 0 R /XYZ 71.731 289.012 null] +3977 0 obj << +/D [3964 0 R /XYZ 71.731 289.012 null] >> endobj -3997 0 obj << -/D [3983 0 R /XYZ 317.393 263.109 null] +3978 0 obj << +/D [3964 0 R /XYZ 317.393 263.109 null] >> endobj -3998 0 obj << -/D [3983 0 R /XYZ 232.347 250.158 null] +3979 0 obj << +/D [3964 0 R /XYZ 232.347 250.158 null] >> endobj -3999 0 obj << -/D [3983 0 R /XYZ 71.731 248.001 null] +3980 0 obj << +/D [3964 0 R /XYZ 71.731 248.001 null] >> endobj -4000 0 obj << -/D [3983 0 R /XYZ 71.731 233.057 null] +3981 0 obj << +/D [3964 0 R /XYZ 71.731 233.057 null] >> endobj -4001 0 obj << -/D [3983 0 R /XYZ 91.656 211.901 null] +3982 0 obj << +/D [3964 0 R /XYZ 91.656 211.901 null] >> endobj -4002 0 obj << -/D [3983 0 R /XYZ 71.731 172.35 null] +3983 0 obj << +/D [3964 0 R /XYZ 71.731 172.35 null] >> endobj -4003 0 obj << -/D [3983 0 R /XYZ 475.448 159.398 null] +3984 0 obj << +/D [3964 0 R /XYZ 475.448 159.398 null] >> endobj -4004 0 obj << -/D [3983 0 R /XYZ 71.731 118.387 null] +3985 0 obj << +/D [3964 0 R /XYZ 71.731 118.387 null] >> endobj -4005 0 obj << -/D [3983 0 R /XYZ 71.731 113.406 null] +3986 0 obj << +/D [3964 0 R /XYZ 71.731 113.406 null] >> endobj -3982 0 obj << +3963 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4008 0 obj << -/Length 2658 +3989 0 obj << +/Length 2659 /Filter /FlateDecode >> stream @@ -14971,132 +14888,132 @@ E �vv؋n��� 2g�0���5���$姊�?�����$ݝ �8t�EX��0⽒|��3��)�^FȦϲԀg��n[��:jF�6�{�}+�����f�:��\�铈�����$P3�ق#�|�������K�V�^bʱk�K<�G:C�<Bl�y��}f�L{��V������l�s��l �7�(X�:��`l�C/!z�F��c��T엁����>�K�7G�0�cZYu��O�R���2����s�59.�q��M��grni��DC����S��Py CFK��-��2�9Gbl92L��5�tSHg��H�B~���uX������z�҇*��~���tZ�(YJ�j���S�:(Σ+����H��� �l�F]��0v�饦b+�ݶ�Ɩ�{O� -�~3�Jv�"��"��(����ڜ�O®�'�_�����3��O�4�am���������;��endstream +�~3�Jv�"��"��(����ڜ�O®�'�_�����3��O�4*� �D�_�����������endstream endobj -4007 0 obj << +3988 0 obj << /Type /Page -/Contents 4008 0 R -/Resources 4006 0 R +/Contents 3989 0 R +/Resources 3987 0 R /MediaBox [0 0 609.714 789.041] -/Parent 3927 0 R +/Parent 3930 0 R >> endobj -4009 0 obj << -/D [4007 0 R /XYZ 71.731 729.265 null] +3990 0 obj << +/D [3988 0 R /XYZ 71.731 729.265 null] >> endobj -4010 0 obj << -/D [4007 0 R /XYZ 71.731 741.22 null] +3991 0 obj << +/D [3988 0 R /XYZ 71.731 741.22 null] >> endobj -4011 0 obj << -/D [4007 0 R /XYZ 81.694 708.344 null] +3992 0 obj << +/D [3988 0 R /XYZ 81.694 708.344 null] >> endobj -4012 0 obj << -/D [4007 0 R /XYZ 491.507 708.344 null] +3993 0 obj << +/D [3988 0 R /XYZ 491.507 708.344 null] >> endobj -4013 0 obj << -/D [4007 0 R /XYZ 71.731 695.293 null] +3994 0 obj << +/D [3988 0 R /XYZ 71.731 695.293 null] >> endobj -4014 0 obj << -/D [4007 0 R /XYZ 81.694 682.441 null] +3995 0 obj << +/D [3988 0 R /XYZ 81.694 682.441 null] >> endobj -4015 0 obj << -/D [4007 0 R /XYZ 139.516 669.489 null] +3996 0 obj << +/D [3988 0 R /XYZ 139.516 669.489 null] >> endobj -4016 0 obj << -/D [4007 0 R /XYZ 71.731 667.333 null] +3997 0 obj << +/D [3988 0 R /XYZ 71.731 667.333 null] >> endobj -4017 0 obj << -/D [4007 0 R /XYZ 81.694 656.538 null] +3998 0 obj << +/D [3988 0 R /XYZ 81.694 656.538 null] >> endobj -4018 0 obj << -/D [4007 0 R /XYZ 478.291 656.538 null] +3999 0 obj << +/D [3988 0 R /XYZ 478.291 656.538 null] >> endobj -4019 0 obj << -/D [4007 0 R /XYZ 71.731 641.43 null] +4000 0 obj << +/D [3988 0 R /XYZ 71.731 641.43 null] >> endobj -4020 0 obj << -/D [4007 0 R /XYZ 81.694 630.635 null] +4001 0 obj << +/D [3988 0 R /XYZ 81.694 630.635 null] >> endobj -4021 0 obj << -/D [4007 0 R /XYZ 373.716 630.635 null] +4002 0 obj << +/D [3988 0 R /XYZ 373.716 630.635 null] >> endobj -4022 0 obj << -/D [4007 0 R /XYZ 71.731 628.478 null] +4003 0 obj << +/D [3988 0 R /XYZ 71.731 628.478 null] >> endobj -4023 0 obj << -/D [4007 0 R /XYZ 81.694 617.684 null] +4004 0 obj << +/D [3988 0 R /XYZ 81.694 617.684 null] >> endobj -4024 0 obj << -/D [4007 0 R /XYZ 511.114 617.684 null] +4005 0 obj << +/D [3988 0 R /XYZ 511.114 617.684 null] >> endobj -4025 0 obj << -/D [4007 0 R /XYZ 71.731 602.575 null] +4006 0 obj << +/D [3988 0 R /XYZ 71.731 602.575 null] >> endobj -4026 0 obj << -/D [4007 0 R /XYZ 71.731 587.631 null] +4007 0 obj << +/D [3988 0 R /XYZ 71.731 587.631 null] >> endobj -4027 0 obj << -/D [4007 0 R /XYZ 71.731 550.237 null] +4008 0 obj << +/D [3988 0 R /XYZ 71.731 550.237 null] >> endobj -4028 0 obj << -/D [4007 0 R /XYZ 339.03 498.431 null] +4009 0 obj << +/D [3988 0 R /XYZ 339.03 498.431 null] >> endobj -4029 0 obj << -/D [4007 0 R /XYZ 96.637 472.528 null] +4010 0 obj << +/D [3988 0 R /XYZ 96.637 472.528 null] >> endobj -4030 0 obj << -/D [4007 0 R /XYZ 276.322 472.528 null] +4011 0 obj << +/D [3988 0 R /XYZ 276.322 472.528 null] >> endobj -4031 0 obj << -/D [4007 0 R /XYZ 71.731 470.371 null] +4012 0 obj << +/D [3988 0 R /XYZ 71.731 470.371 null] >> endobj -4032 0 obj << -/D [4007 0 R /XYZ 71.731 455.427 null] +4013 0 obj << +/D [3988 0 R /XYZ 71.731 455.427 null] >> endobj -4033 0 obj << -/D [4007 0 R /XYZ 187.678 445.928 null] +4014 0 obj << +/D [3988 0 R /XYZ 187.678 445.928 null] >> endobj -4034 0 obj << -/D [4007 0 R /XYZ 71.731 394.72 null] +4015 0 obj << +/D [3988 0 R /XYZ 71.731 394.72 null] >> endobj -4035 0 obj << -/D [4007 0 R /XYZ 180.774 381.768 null] +4016 0 obj << +/D [3988 0 R /XYZ 180.774 381.768 null] >> endobj -4036 0 obj << -/D [4007 0 R /XYZ 391.53 381.768 null] +4017 0 obj << +/D [3988 0 R /XYZ 391.53 381.768 null] >> endobj -4037 0 obj << -/D [4007 0 R /XYZ 71.731 348.727 null] +4018 0 obj << +/D [3988 0 R /XYZ 71.731 348.727 null] >> endobj -4038 0 obj << -/D [4007 0 R /XYZ 104 312.03 null] +4019 0 obj << +/D [3988 0 R /XYZ 104 312.03 null] >> endobj 1668 0 obj << -/D [4007 0 R /XYZ 71.731 304.892 null] +/D [3988 0 R /XYZ 71.731 304.892 null] >> endobj 750 0 obj << -/D [4007 0 R /XYZ 204.474 267.676 null] +/D [3988 0 R /XYZ 204.474 267.676 null] >> endobj -4039 0 obj << -/D [4007 0 R /XYZ 71.731 260.324 null] +4020 0 obj << +/D [3988 0 R /XYZ 71.731 260.324 null] >> endobj 1669 0 obj << -/D [4007 0 R /XYZ 71.731 217.499 null] +/D [3988 0 R /XYZ 71.731 217.499 null] >> endobj 754 0 obj << -/D [4007 0 R /XYZ 275.232 174.402 null] +/D [3988 0 R /XYZ 275.232 174.402 null] >> endobj -4040 0 obj << -/D [4007 0 R /XYZ 71.731 162.231 null] +4021 0 obj << +/D [3988 0 R /XYZ 71.731 162.231 null] >> endobj 1670 0 obj << -/D [4007 0 R /XYZ 71.731 125.157 null] +/D [3988 0 R /XYZ 71.731 125.157 null] >> endobj -4006 0 obj << +3987 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4043 0 obj << -/Length 2640 +4024 0 obj << +/Length 2639 /Filter /FlateDecode >> stream @@ -15107,155 +15024,155 @@ xڝ˒۸ �L������?�/#)�@��a���P�Xf�*OUS����i ��MB�p��=�������SS��K��-�@.�7�����^��,��e�"�Ek��d+j��c*�����}�E��³��5C ��jy������⍟������^VT:V�@I��\�����m��θ$�#��p� u��пϰ�$��id]g����>�UbK"�q��9�-�E�y��f�� ~I!P�L���U�$J��Yhc�}���U�R }{RT -Q��?#� ��:�6�$xey��n���$�jZx3s������:�f5�s� v �K67�3����.��_a���"�h� �ě���s��./e8ei��LJ����l�d���9��t�K�o�����o�/�v���aW�S��)���ܱWP��sS*����gm&��K9�3]��]��!n�Dw7(��y��k0,:-��z�k1y�gF8#�sd�h�-�1�"w�0if���P͚g�P�;T&���I�S�x2�^����*[M�|�ܩ�!��r'�m;жKp7v6�w�幂ϧ!��&��l0�w��1��8&�CO�y��2��R����C�'E}>s���)�8=�~+��L�5��ۗ�50@݄�촓����_��=@&R�G����1`[�w����� �� �o;Ѱ��D"�$��NJ��W�b�M]�(�n�Ŧ�ba����i̭4����"2�2U�y]�<x�6����DZ2�2�g��fK�z�3�x9��ō܍] Ɵ���6,���:��bl��tma�c�b[ ���e�2�Ԧb ^S�t/�Z��MM7��(}�m2�J ��Ob�*x��$t3���7J�3G�%�~a����-%}�����z���I�C�8�p�r偗x��>�����ܿ]1���~zw�v�������J�����=`�l�o��V3��V�j�[oj[��'2��uNKez���6�\S�%r��27�ɟdq�gA����$���K��`������c��V�"E�Aendstream +Q��?#� ��:�6�$xey��n���$�jZx3s������:�f5�s� v �K67�3����.��_a���"�h� �ě���s��./e8ei��LJ����l�d���9��t�K�o�����o�/�v���aW�S��)���ܱWP��sS*����gm&��K9�3]��]��!n�Dw7(��y��k0,:-��z�k1y�gF8#�sd�h�-�1�"w�0if���P͚g�P�;T&���I�S�x2�^����*[M�|�ܩ�!��r'�m;жKp7v6�w�幂ϧ!��&��l0�w��1��8&�CO�y��2��R����C�'E}>s���)�8=�~+��L�5��ۗ�50@݄�촓����_��=@&R�G����1`[�w����� �� �o;Ѱ��D"�$��NJ��W�b�M]�(�n�Ŧ�ba����i̭4����"2�2U�y]�<x�6����DZ2�2�g��fK�z�3�x9��ō܍] Ɵ���6,���:��bl��tma�c�b[ ���e�2�Ԧb ^S�t/�Z��MM7��(}�m2�J ��Ob�*x��$t3���7J�3G�%�~a����-%}�����z���I�C�8�p�r偗x��>�����ܿ]1���~zw�v�������J�����=`�l�o��V3��V�j�[oj[��'2��uNKez���6�\S�%r��27�ɟdq�gA����$���K�p�*!�~�[�!��>endstream endobj -4042 0 obj << +4023 0 obj << /Type /Page -/Contents 4043 0 R -/Resources 4041 0 R +/Contents 4024 0 R +/Resources 4022 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4057 0 R +/Parent 3930 0 R >> endobj -4044 0 obj << -/D [4042 0 R /XYZ 71.731 729.265 null] +4025 0 obj << +/D [4023 0 R /XYZ 71.731 729.265 null] >> endobj -4045 0 obj << -/D [4042 0 R /XYZ 71.731 741.22 null] +4026 0 obj << +/D [4023 0 R /XYZ 71.731 741.22 null] >> endobj 758 0 obj << -/D [4042 0 R /XYZ 174.075 708.149 null] +/D [4023 0 R /XYZ 174.075 708.149 null] >> endobj -4046 0 obj << -/D [4042 0 R /XYZ 71.731 698.007 null] +4027 0 obj << +/D [4023 0 R /XYZ 71.731 698.007 null] >> endobj -4047 0 obj << -/D [4042 0 R /XYZ 71.731 639.108 null] +4028 0 obj << +/D [4023 0 R /XYZ 71.731 639.108 null] >> endobj -4048 0 obj << -/D [4042 0 R /XYZ 71.731 593.215 null] +4029 0 obj << +/D [4023 0 R /XYZ 71.731 593.215 null] >> endobj -4049 0 obj << -/D [4042 0 R /XYZ 71.731 562.331 null] +4030 0 obj << +/D [4023 0 R /XYZ 71.731 562.331 null] >> endobj 1671 0 obj << -/D [4042 0 R /XYZ 71.731 507.601 null] +/D [4023 0 R /XYZ 71.731 507.601 null] >> endobj 762 0 obj << -/D [4042 0 R /XYZ 165.31 468.329 null] +/D [4023 0 R /XYZ 165.31 468.329 null] >> endobj -4050 0 obj << -/D [4042 0 R /XYZ 71.731 460.976 null] +4031 0 obj << +/D [4023 0 R /XYZ 71.731 460.976 null] >> endobj -4051 0 obj << -/D [4042 0 R /XYZ 71.731 441.066 null] +4032 0 obj << +/D [4023 0 R /XYZ 71.731 441.066 null] >> endobj -4052 0 obj << -/D [4042 0 R /XYZ 71.731 391.318 null] +4033 0 obj << +/D [4023 0 R /XYZ 71.731 391.318 null] >> endobj -4053 0 obj << -/D [4042 0 R /XYZ 71.731 376.374 null] +4034 0 obj << +/D [4023 0 R /XYZ 71.731 376.374 null] >> endobj -4054 0 obj << -/D [4042 0 R /XYZ 71.731 325.265 null] +4035 0 obj << +/D [4023 0 R /XYZ 71.731 325.265 null] >> endobj -4055 0 obj << -/D [4042 0 R /XYZ 71.731 279.273 null] +4036 0 obj << +/D [4023 0 R /XYZ 71.731 279.273 null] >> endobj 1672 0 obj << -/D [4042 0 R /XYZ 71.731 229.524 null] +/D [4023 0 R /XYZ 71.731 229.524 null] >> endobj 766 0 obj << -/D [4042 0 R /XYZ 211.497 195.153 null] +/D [4023 0 R /XYZ 211.497 195.153 null] >> endobj -4056 0 obj << -/D [4042 0 R /XYZ 71.731 186.516 null] +4037 0 obj << +/D [4023 0 R /XYZ 71.731 186.516 null] >> endobj -4041 0 obj << +4022 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4060 0 obj << -/Length 2418 +4040 0 obj << +/Length 2630 /Filter /FlateDecode >> stream -xڝYK��6�ϯ0|��i+�d�K�L2��.��{X$9�2m-K�D����ԋ�Ú�E���b�X��W%:X�����O"x��ƇU~{�[]`�w�pl�e;����ݗ�h��Y��ϫ}�Q��(��C�z>��}����v� ;/������.<����Y��������݆�(�4zS'��T�Jٳ�R?��I�Og�;��{��~�O#-�t�֕����3�:��&�N�Ə�2��;m�dj&��fBYt扇J(u.��<{1�xU~��˱��ɪ�}��_��/}�Qa����V����� 6�[��m����9�*�Ia��<���N��#!�hY?oҝWU���,��՛��L���L���Ѫ����O�cm`��q�M�}~�9> �ZW_l�����`s�N�� -�@ڌ-�ډ19$�=�T?yC�u_��ui���*|��{ '��G�N�\HTΊ��W{7u�*��G���;�%e@k���JY1R�"@�F���Ex��A���RXc�Z�����e+:]���&I��*�Z�e�~���xt�Fk nC8U)���=�G�i01Ȥ3��O'���� -] -OF�����lxzY��I� �6�`�'�r�D�-��1`�J��ʢMi�另d���/�C�8��QL A�0���0�d�ɳ� R P8$�� W�ᇰ�/�n�u{M�sn���f/0e���R���S����]Cؕ҆��T��NQ�3 -�k ��g�j�MC���vP$ έ���Un�s����'�r�-�}�"�A�jH ����.v\���*�T�[Q��[e`l0��p��eAPKĠ�&>xr([`��5|��k!��N#��z�9.$e�vF� ���x�j����g�Z��L?X����W0x����_��̀ѿ!3D�(�S?�9&;A�dg0���qE���/�� g �(_2_+ZQ��ƥK���V�d�gb���X���X�@F�`^L��0��5�>��\����h�7�4� �_0 -t�*�k�w��6�n˂�y�� =�T*s��J��6�:��e�+�G��!X�=��X��9]h�+��,ߘ�9�@��&���}���.6��|�r�bb��KݎS����i�$K%�1��/�t{}��K�[�h'-K��˛p�7q���(�������G@�'&��@�)�Z$3^����p��?Bh�,:,R[}�sYg��8�a%��g'^�"u�]mA����\�{(v��j�Eh*�%��\Y3�Z�n�O����ā�'�M!A�e{��?{�a~���2*�H{)(0`��%�:�L/L�0��ɼ�6-3��@��YIu�1z��ފ�E��T�;�$o�<�/gR2)�N}�=N�固 ?f�LK#�=wlX�*�CN��9�*�3#x��iK&#�K�i:����0c�����B;1pTx��Lt���a�6��t~$�\����=҉_?X�''��rl}�W��W�d�q"$î@>+3�& -�z�|c>���Ա�*R�"Z��nzf���v\����������gg�j�i�w��e:o��[��]b�*f�J�! |��� ]��H_�_3�����-~Y"I�1�Nm�lO.@q��Ɋ�T���R�6��@;�gb-� ���a]�?�ȗNԒ�Z�}�.}�ߴ����g�HEH������gC�(jkt^PY�7�5�^V��ڌr����⨅�p�]ȢS ���h�:OL㼔��x}-����#�>ȡ�/@�6�TFE!>�q��|pb��~rQ^3�����@ %.%@EG �"�3���1#<e:e�u��O��#�����kQ��ɑ -3Sb�� -���"0K�W���Vg�\��[���\̕~+/)�+��ji�!�P�!�M��ڤ߲i==V�*����-V`�Gӯ,"��F�b�9d:&�-����>�Y�����w��i�ݩ��z��� ���>@��p0��ňRc#�Q���G ,���t��*��a� ����Na ��)�&S�D�MK���,�E�l�Y$c.>mODܭn���[s7�k�j�9��k&�W��{�J����~<��{� �,���gk��(�Z�z��kl�����M`S���+@i���~�f|k� ,_�C�?��|G�@����iti��}�FD������g#�lV�N�)����^ĉ�힁$�Ir�k�DZ6�bӉ'��^�S���MŦ������Bc0�0 -�\D��m[`� �h �x��~�Ϲ�Ɂ�z7�bTԁ�E'R��=x�]��X�F�� ��pt�l؊�J)�ZJ����kVԚ�%!*�׀��o(��h��i���������!L�]h���I����w�),5Qendstream +xڝYK��6�ϯh��6��X�-Y��l&� ���a��@˴-�,*����o�H=��,>�,��b=�*���~�Ci�(�d��_�m�0�ݻPf�e�z0��w_|��,Ȓ������� N��4���.zx>���pQ���j�6�$��/mQ���Mw�OQ�j�����}���4���2�9wBEi/�;�f��-���{'��f�����*�-5Ң�nSiӵ�'��Q���Qz�9*�x~�-��a��h&�Ek���"�R�2��o'j��/:9����*�7/���i?�A�Y���U�r�8��W��45z[�Q��q�EU0g�憜Zp�'n a�]��@�y��,�U��e��Κ��E�JR!��Z�����/�ca��q��n~�1> �j��U�_ +��U��y�E+�j�i�I�H��d�����!4hӕG�έU�S��� �D�Ux�s!tP��Bb��dyU7n��5��/ƴ�?N�ˀV��r�T���a����;``��<�'�I���� �])S�4�v�m���.Jda���bj�_����B�@ܛ����������Vzlş�j5�xҙ�B���gfMݛ�[�ؓ�����*��^�~+8Y�V��L�-��)�e�|�:����E8�(�_u���6�p�q8��4��?��Y�0�`�ʷ� P�$�b#W2�a�;�nN����M�snS��O/0d���b���Ե.�x�v����>"���L�B�:��Y�uՐnD���Mq�S���t����f�,H��'��Cz��@�7BC`�4��~�j���%��ZT��FYX�� Xu���1�JvK9��Є\�X>���� ��j=q��0�;�0��0y�h�M��f$Z�H?X��P����#���;��Ȁ���x����� ��)�A�t�0u��vE������#�[�)�� +���q���u�"���:�@c1@��n���?��2v��h��Vg��f�&��z�n�A���q/�j�˺,x6��ljRe.ҼB��CV0�p�N��l�J�Qhwf�NF)��z�Y���L��DP pAp����}FPg�}<�9rjQ1x��4Ði��:G{�!�R hD�1�+�V���\jǒ%�H�o"��*��Mj�rD%�����^���#����i�\�3-�/7���;�`������F�\���$�'X�S�ɳW"�)��-�Q3ʥnۻd�S�f_���i�OȕS3�uk��Q��)�a:|r��<���' +�ݎ��k���!YF i�`/90�역U��I��В�ɖ-Ӵ�7���β��nc-�FW��ciD��X�;Í$n<?t�/&\2I0��w��7U @��6<��B�[��0�U@��fCslU�g�@yӥLF\�pbe�Na�L���Ӆn�W� ���������(ٻ8N��#�B�$4ܑ��U�a��<n�ȉ�u"V�oWy�����Vf\;�� +t}�y^H]�C�D�PE�����D�w����x��w���t�j��Wz5��t������Λ�Y�%�x�:�J��^cH����8����&GX����I���ؘz}��c�7V\��V����d��4a���T�����c��|nE,����������Uŕ�6�@Jr@��WeG%�6�+D#\��Z���az�����*0|e� �(�ۼ)Z&�Yt4p5�@��ybǥ����ඬn�3�K�]�!��@��\T�!y!~�rÐlpd��]9)/�JV���B�����!S���I��T����2�"�j[��'�ˁRd���(���H��� �z�.� {}����^`�u'3_)9���/S�ߊK���G�z��%��� +4��Q2�X�[.���*U%���� +rbk|�"�o��q�!��xC�e���W���'t kg&��Íi|1�~��j� ��p�|mE@(�-@=�#�H���F�zC(�p��̌��-U�� ÝcN_W<v��H���j4�A��tn1g^,ϲDD�z�Eb���1����D4�ѵi��`��&`t�O 4�}��eȺW�4�����B��ā�q��d��^L�7�ڮ�(�:���� �`]rH��`���o0�W��`�I��~���8��O�7Tzg���n��,�W�����q�$sQ�*!/�W~_�W=I��d_H ���ڳݏ,�s��\8�H!A�ޘ��^�A�wк�)�і�|�lBa4<4A5���t�9�B�Q-�J��*|�DJ�����Pб�ˎEb�/���Y�['��y�˨>�"��0Q��[}�܊J|$D���o��_,�7�T�%������&�N6>s����`Ar�E\e�BᓢTQ���0�/H~����]�G�s�a�������ݑF'��ό��.����8CZ����_Z�\�M�=nǩ�ɍ�-@?n�'g&h&� �̱˭�b�f�����'4~��ד����r�E�^�?�R�h�ˬ�KR���@�N��0ɣX��n3w_A%dV� ������Q�Ks��a�濵���?kwQ$;�u�����~���v��endstream endobj -4059 0 obj << +4039 0 obj << /Type /Page -/Contents 4060 0 R -/Resources 4058 0 R +/Contents 4040 0 R +/Resources 4038 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4057 0 R +/Parent 4055 0 R >> endobj -4061 0 obj << -/D [4059 0 R /XYZ 71.731 729.265 null] +4041 0 obj << +/D [4039 0 R /XYZ 71.731 729.265 null] >> endobj -4062 0 obj << -/D [4059 0 R /XYZ 71.731 718.306 null] +4042 0 obj << +/D [4039 0 R /XYZ 71.731 718.306 null] >> endobj -4063 0 obj << -/D [4059 0 R /XYZ 71.731 644.419 null] +4043 0 obj << +/D [4039 0 R /XYZ 71.731 644.419 null] >> endobj -4064 0 obj << -/D [4059 0 R /XYZ 71.731 613.534 null] +4044 0 obj << +/D [4039 0 R /XYZ 71.731 613.534 null] >> endobj 1673 0 obj << -/D [4059 0 R /XYZ 71.731 595.602 null] +/D [4039 0 R /XYZ 71.731 595.602 null] >> endobj 770 0 obj << -/D [4059 0 R /XYZ 255.599 562.291 null] +/D [4039 0 R /XYZ 255.599 562.291 null] >> endobj -4065 0 obj << -/D [4059 0 R /XYZ 71.731 553.654 null] +4045 0 obj << +/D [4039 0 R /XYZ 71.731 553.654 null] >> endobj -4066 0 obj << -/D [4059 0 R /XYZ 71.731 510.321 null] +4046 0 obj << +/D [4039 0 R /XYZ 71.731 510.321 null] >> endobj 1674 0 obj << -/D [4059 0 R /XYZ 71.731 459.512 null] +/D [4039 0 R /XYZ 71.731 459.512 null] >> endobj 774 0 obj << -/D [4059 0 R /XYZ 159.597 416.414 null] +/D [4039 0 R /XYZ 159.597 416.414 null] >> endobj -4067 0 obj << -/D [4059 0 R /XYZ 71.731 403.976 null] +4047 0 obj << +/D [4039 0 R /XYZ 71.731 403.976 null] >> endobj -4068 0 obj << -/D [4059 0 R /XYZ 71.731 374.766 null] +4048 0 obj << +/D [4039 0 R /XYZ 71.731 374.766 null] >> endobj -4069 0 obj << -/D [4059 0 R /XYZ 71.731 343.882 null] +4049 0 obj << +/D [4039 0 R /XYZ 71.731 343.882 null] >> endobj -4070 0 obj << -/D [4059 0 R /XYZ 71.731 287.094 null] +4050 0 obj << +/D [4039 0 R /XYZ 71.731 287.094 null] >> endobj -4071 0 obj << -/D [4059 0 R /XYZ 71.731 269.162 null] +4051 0 obj << +/D [4039 0 R /XYZ 71.731 269.162 null] >> endobj -4072 0 obj << -/D [4059 0 R /XYZ 71.731 238.278 null] +4052 0 obj << +/D [4039 0 R /XYZ 71.731 238.278 null] >> endobj -4073 0 obj << -/D [4059 0 R /XYZ 71.731 207.393 null] +4053 0 obj << +/D [4039 0 R /XYZ 71.731 207.393 null] +>> endobj +4054 0 obj << +/D [4039 0 R /XYZ 71.731 163.558 null] >> endobj 1675 0 obj << -/D [4059 0 R /XYZ 71.731 163.558 null] +/D [4039 0 R /XYZ 71.731 119.722 null] >> endobj -4058 0 obj << +4038 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4076 0 obj << +4058 0 obj << /Length 2596 /Filter /FlateDecode >> @@ -15270,98 +15187,98 @@ Y [S+��ӳ��O.�2u@���sd�����s2eJ� >K\��)��[���x� V(Ч�N�!U�+�l#�B�<cE4���Q_���A$`��m�wnAހ��QaDu��&UlU���/���Ip��~�zi=�EG�K-�$��� r<`����1�B!J^.�1�"�/5㲢(%w��,Xn8Br��P��\�tb����Pr�*4�����AǾ��t�U ��W��@b�İ���y5��Db@�A���] �=j5l�.;�[R࣭��R��H� ����Y]��P���P�6�c��lSŤյG�c5>�1���s���L��ڦ;G�!uԣ�pq��5S��]���W�m-h��q����d!Y�-~ʏ�*�qg�dNT�t_�����$���(�4梮m�#���H�d�L4��p�L���b��ˈ��PA:K�Ar� M�ʺ��K��������jۆi($C��Ĥ���w�q�L�"� HA:wܬ)7���` ��`ѼDf���kK�m�PP�T6���1"��(���o��.X��1�.�r���.�;���l|8P:�jA��2^��;*��R��2�5*����-_�ع�`���u���Zí�� -�����w ƺ�w)zZ6���㞇������i�g��u�i�8zg��X@��Oɓ����8�B7&z��FhzAA�D-�!,����c3`�E�^�ؕ�����Pއ�f+�P�O p�b�>+e����h�!0�b-uܴ_�ݪ�U��T3��r|��Vd��W侮v.�>�P��8��>�4���g""Ǎ��&�t����"��A��N$W?�0Q~蘠q����%�KP�endstream +�����w ƺ�w)zZ6���㞇������i�g��u�i�8zg��X@��Oɓ����8�B7&z��FhzAA�D-�!,����c3`�E�^�ؕ�����Pއ�f+�P�O p�b�>+e����h�!0�b-uܴ_�ݪ�U��T3��r|��Vd��W侮v.�>�P��8��>�4���g""Ǎ��&�t����"��A��N$W?�0Q~蘠q���%� P�endstream endobj -4075 0 obj << +4057 0 obj << /Type /Page -/Contents 4076 0 R -/Resources 4074 0 R +/Contents 4058 0 R +/Resources 4056 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4057 0 R -/Annots [ 4085 0 R 4088 0 R ] +/Parent 4055 0 R +/Annots [ 4067 0 R 4070 0 R ] >> endobj -4085 0 obj << +4067 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [138.415 482.569 190.751 489.347] /Subtype /Link /A << /S /GoTo /D (installation-whining) >> >> endobj -4088 0 obj << +4070 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [364.929 432.646 418.584 441.128] /Subtype /Link /A << /S /GoTo /D (installation-whining-cron) >> >> endobj -4077 0 obj << -/D [4075 0 R /XYZ 71.731 729.265 null] +4059 0 obj << +/D [4057 0 R /XYZ 71.731 729.265 null] >> endobj -4078 0 obj << -/D [4075 0 R /XYZ 71.731 741.22 null] +4060 0 obj << +/D [4057 0 R /XYZ 71.731 741.22 null] >> endobj 778 0 obj << -/D [4075 0 R /XYZ 182.7 705.748 null] +/D [4057 0 R /XYZ 182.7 705.748 null] >> endobj -4079 0 obj << -/D [4075 0 R /XYZ 71.731 693.31 null] +4061 0 obj << +/D [4057 0 R /XYZ 71.731 693.31 null] >> endobj -4080 0 obj << -/D [4075 0 R /XYZ 71.731 643.177 null] +4062 0 obj << +/D [4057 0 R /XYZ 71.731 643.177 null] >> endobj -4081 0 obj << -/D [4075 0 R /XYZ 118.555 604.613 null] +4063 0 obj << +/D [4057 0 R /XYZ 118.555 604.613 null] >> endobj -4082 0 obj << -/D [4075 0 R /XYZ 118.555 565.86 null] +4064 0 obj << +/D [4057 0 R /XYZ 118.555 565.86 null] >> endobj -4083 0 obj << -/D [4075 0 R /XYZ 71.731 520.929 null] +4065 0 obj << +/D [4057 0 R /XYZ 71.731 520.929 null] >> endobj -4084 0 obj << -/D [4075 0 R /XYZ 71.731 501.003 null] +4066 0 obj << +/D [4057 0 R /XYZ 71.731 501.003 null] >> endobj -4086 0 obj << -/D [4075 0 R /XYZ 76.712 466.115 null] +4068 0 obj << +/D [4057 0 R /XYZ 76.712 466.115 null] >> endobj -4087 0 obj << -/D [4075 0 R /XYZ 71.731 446.189 null] +4069 0 obj << +/D [4057 0 R /XYZ 71.731 446.189 null] >> endobj 1676 0 obj << -/D [4075 0 R /XYZ 76.712 404.944 null] +/D [4057 0 R /XYZ 76.712 404.944 null] >> endobj 782 0 obj << -/D [4075 0 R /XYZ 188.149 365.572 null] +/D [4057 0 R /XYZ 188.149 365.572 null] >> endobj -4089 0 obj << -/D [4075 0 R /XYZ 71.731 358.219 null] +4071 0 obj << +/D [4057 0 R /XYZ 71.731 358.219 null] >> endobj -4090 0 obj << -/D [4075 0 R /XYZ 71.731 325.358 null] +4072 0 obj << +/D [4057 0 R /XYZ 71.731 325.358 null] >> endobj -4091 0 obj << -/D [4075 0 R /XYZ 71.731 268.571 null] +4073 0 obj << +/D [4057 0 R /XYZ 71.731 268.571 null] >> endobj 1677 0 obj << -/D [4075 0 R /XYZ 71.731 238.06 null] +/D [4057 0 R /XYZ 71.731 238.06 null] >> endobj 786 0 obj << -/D [4075 0 R /XYZ 243.797 200.471 null] +/D [4057 0 R /XYZ 243.797 200.471 null] >> endobj -4092 0 obj << -/D [4075 0 R /XYZ 71.731 190.106 null] +4074 0 obj << +/D [4057 0 R /XYZ 71.731 190.106 null] >> endobj -4093 0 obj << -/D [4075 0 R /XYZ 71.731 147.305 null] +4075 0 obj << +/D [4057 0 R /XYZ 71.731 147.305 null] >> endobj -4094 0 obj << -/D [4075 0 R /XYZ 71.731 108.451 null] +4076 0 obj << +/D [4057 0 R /XYZ 71.731 108.451 null] >> endobj -4074 0 obj << +4056 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4097 0 obj << +4079 0 obj << /Length 2907 /Filter /FlateDecode >> @@ -15375,73 +15292,73 @@ xڥk ���h<X�Ѯ,���g����2�[�@��1��FX��r��G�z#�Xѕ;���GD< �D/��S�;7�"����Ak�C��Y(1A�Oi*��R6���UVtDQ�}��b��0�poIJ��c�$���I�v0������>�|���E��m��܌�^B�L���x!��z`�z��`4�:�/}k� ��mFMJ�h7l1 ;&�1^�l����$��e��Q�D#�`J9v�2I�?q�L4�+b�є��\^akRA��Vf�-�WN��D��1�7q>v�r5�{�+q_�xr��y)�A��Ϻ���9eu�o�U��q��u�|���+7�>��s'�!�������@� .�cr�:��;c��71{XOV����5�_?���;��LG��Ck�����43��>��kb���Se����6f'�LF�yS�ϰ.�Hð*�����#-�ƕ("�Afr�����0j%[�����K�2s���&��9��Ha�P�������"F ��P�e��Bkv��Ǿ;�h%�����<y��Ut�d�"^�2?�znɉD2��h���~���G��q$淰p~�R�(��L��z�)tg��c� ���٪1>Q���VQ�����m�D5B_����R S� �� X�I��p���F��uBB��GQ����ÕiA5��a2Nh9���⾸f]r�]6�� -h�?`^�-�-#f�E �߿���[�$�`Tl��C��5��|�����u妧 |��Ճ�^��A�<p�0���fqr�˄��ψn&P���|.Ia�F�c����yu�5#1#�N]�������+�?�k!��W���"n�`��Đ �|����r^�W�O<�W��X~���='�祫'q�r��'�����خb�f��Q��<��a�0n29��l�\,f_!����<��6�����#%���<�z�����Q��U���[ ���לf��ăR��BUPQ`��O���nl�yn���� 5~��xxJ����&�Mo�&D�@�t���Af�M�繞��.װy\��!ސC����vN=6�e��`4'``�;���lg���;~X�)���)�=��Gmv-���j�!f��?���0!�q�L^`�:.Ϗ���0N�͏+X`�~�q��j�b��vwt��-\o�L� �y���U�âD8`<������~|���3�ܾ�����oLm���Xiu���O��;�=�.�΅f1��3�q�''�@���ނ��*By� r����۵����|���/��������7��#Y��E��������8�\/0Lp����w�ە��#{W�endstream +h�?`^�-�-#f�E �߿���[�$�`Tl��C��5��|�����u妧 |��Ճ�^��A�<p�0���fqr�˄��ψn&P���|.Ia�F�c����yu�5#1#�N]�������+�?�k!��W���"n�`��Đ �|����r^�W�O<�W��X~���='�祫'q�r��'�����خb�f��Q��<��a�0n29��l�\,f_!����<��6�����#%���<�z�����Q��U���[ ���לf��ăR��BUPQ`��O���nl�yn���� 5~��xxJ����&�Mo�&D�@�t���Af�M�繞��.װy\��!ސC����vN=6�e��`4'``�;���lg���;~X�)���)�=��Gmv-���j�!f��?���0!�q�L^`�:.Ϗ���0N�͏+X`�~�q��j�b��vwt��-\o�L� �y���U�âD8`<������~|���3�ܾ�����oLm���Xiu���O��;�=�.�΅f1��3�q�''�@���ނ��*By� r����۵����|���/��������7��#Y��E��������8�\/0Lp�4��w�ە��$�W�endstream endobj -4096 0 obj << +4078 0 obj << /Type /Page -/Contents 4097 0 R -/Resources 4095 0 R +/Contents 4079 0 R +/Resources 4077 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4057 0 R -/Annots [ 4106 0 R ] +/Parent 4055 0 R +/Annots [ 4088 0 R ] >> endobj -4106 0 obj << +4088 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [192.636 269.699 237.468 278.61] /Subtype /Link /A << /S /GoTo /D (list) >> >> endobj -4098 0 obj << -/D [4096 0 R /XYZ 71.731 729.265 null] +4080 0 obj << +/D [4078 0 R /XYZ 71.731 729.265 null] >> endobj -4099 0 obj << -/D [4096 0 R /XYZ 118.555 689.705 null] +4081 0 obj << +/D [4078 0 R /XYZ 118.555 689.705 null] >> endobj -4100 0 obj << -/D [4096 0 R /XYZ 71.731 596.992 null] +4082 0 obj << +/D [4078 0 R /XYZ 71.731 596.992 null] >> endobj -4101 0 obj << -/D [4096 0 R /XYZ 71.731 545.186 null] +4083 0 obj << +/D [4078 0 R /XYZ 71.731 545.186 null] >> endobj -4102 0 obj << -/D [4096 0 R /XYZ 71.731 530.242 null] +4084 0 obj << +/D [4078 0 R /XYZ 71.731 530.242 null] >> endobj 1678 0 obj << -/D [4096 0 R /XYZ 71.731 457.878 null] +/D [4078 0 R /XYZ 71.731 457.878 null] >> endobj 790 0 obj << -/D [4096 0 R /XYZ 233.582 418.506 null] +/D [4078 0 R /XYZ 233.582 418.506 null] >> endobj -4103 0 obj << -/D [4096 0 R /XYZ 71.731 408.141 null] +4085 0 obj << +/D [4078 0 R /XYZ 71.731 408.141 null] >> endobj -4104 0 obj << -/D [4096 0 R /XYZ 71.731 365.34 null] +4086 0 obj << +/D [4078 0 R /XYZ 71.731 365.34 null] >> endobj -4105 0 obj << -/D [4096 0 R /XYZ 71.731 334.456 null] +4087 0 obj << +/D [4078 0 R /XYZ 71.731 334.456 null] >> endobj -4107 0 obj << -/D [4096 0 R /XYZ 71.731 269.699 null] +4089 0 obj << +/D [4078 0 R /XYZ 71.731 269.699 null] >> endobj -4108 0 obj << -/D [4096 0 R /XYZ 71.731 254.755 null] +4090 0 obj << +/D [4078 0 R /XYZ 71.731 254.755 null] >> endobj -4109 0 obj << -/D [4096 0 R /XYZ 71.731 205.704 null] +4091 0 obj << +/D [4078 0 R /XYZ 71.731 205.704 null] >> endobj -4110 0 obj << -/D [4096 0 R /XYZ 71.731 159.711 null] +4092 0 obj << +/D [4078 0 R /XYZ 71.731 159.711 null] >> endobj -4111 0 obj << -/D [4096 0 R /XYZ 71.731 135.866 null] +4093 0 obj << +/D [4078 0 R /XYZ 71.731 135.866 null] >> endobj -4095 0 obj << +4077 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4114 0 obj << +4096 0 obj << /Length 953 /Filter /FlateDecode >> @@ -15450,41 +15367,41 @@ xڝVK �I�-ـ����,B���jq�RJR��H�Z%%�Ɛ\ ZhAV������&�O3�Yb(�oǦ����a�_Ӷ6��z��[�j�Ӳ�OƤ����$ゖ�{������Ԁ}���e�� B�yI8-KI���o�M1�ix �O���we"�\R�+���a��"! WT*�s$�RĔ9-�"��T���{�H��K�HI 2^@6����F���j���i&�H*�w�C�Q��֩dɰwQ�uU*Xr2�O�mT-_�qq��(�|��)�YFi�v)J�q=z�p����Nъ���!Xc����Nѧ� ��t<2�v_ Ω�����5@D^$��r����9/|6�n�*�<�B'���ɕU�٦�b��P2��/�CIFea�q��L��L@P��i��p ݃,3n*��}c}�� A~�r�s�G��k8K�B��"��9�H0ʅv_��ϯ��1��ʹ��"�ET��c�w5���:;Nx4�:-�C�n�sd�O�;�����l�=]G��ow5X�}1t]3-)���F�6�x�Sy��a�1w����~B]�����O(J�I����P��i��6"�C4�t����Y^t��c�Q�f�i��� ���dFF��arϮ���TÎ��iQ�Y;�9x�1�0�A�s-Jms��ѵk݄����f����3W���B= bP>�g�a�y��o� �ǧ&����e��4�x�鿲�w0�25��ʝ��̇Q�I�0Ҕ -�ï�V[���5�V*�G�*��ƶ�Y~��8���1j""$�1��Y��Z�I;�Pv��2�A��������b��#�3+"�n��ɕ��C�~;4��Q-x����r�-�EA�8��G�מ�ǭ%�endstream +�ï�V[���5�V*�G�*��ƶ�Y~��8���1j""$�1��Y��Z�I;�Pv��2�A��������b��#�3+"�n��ɕ��C�~;4��Q-x����r�-�EA�8��G�מ�ǂ%�endstream endobj -4113 0 obj << +4095 0 obj << /Type /Page -/Contents 4114 0 R -/Resources 4112 0 R +/Contents 4096 0 R +/Resources 4094 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4057 0 R +/Parent 4055 0 R >> endobj -4115 0 obj << -/D [4113 0 R /XYZ 71.731 729.265 null] +4097 0 obj << +/D [4095 0 R /XYZ 71.731 729.265 null] >> endobj -4116 0 obj << -/D [4113 0 R /XYZ 118.555 689.705 null] +4098 0 obj << +/D [4095 0 R /XYZ 118.555 689.705 null] >> endobj 1679 0 obj << -/D [4113 0 R /XYZ 71.731 647.664 null] +/D [4095 0 R /XYZ 71.731 647.664 null] >> endobj 794 0 obj << -/D [4113 0 R /XYZ 266.363 615.268 null] +/D [4095 0 R /XYZ 266.363 615.268 null] >> endobj -4117 0 obj << -/D [4113 0 R /XYZ 71.731 604.903 null] +4099 0 obj << +/D [4095 0 R /XYZ 71.731 604.903 null] >> endobj -4118 0 obj << -/D [4113 0 R /XYZ 71.731 580.035 null] +4100 0 obj << +/D [4095 0 R /XYZ 71.731 580.035 null] >> endobj -4119 0 obj << -/D [4113 0 R /XYZ 71.731 565.091 null] +4101 0 obj << +/D [4095 0 R /XYZ 71.731 565.091 null] >> endobj -4112 0 obj << +4094 0 obj << /Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4122 0 obj << +4104 0 obj << /Length 2433 /Filter /FlateDecode >> @@ -15504,1540 +15421,1551 @@ AFnT W��T���g� ~7W���xL��a��"�0*b�P� ���_7%����t���t�cy,)���r 0z;����5���B���8��l�=P�i��Q�fW}%��7dx\�i.t)��)r(i��������� ���������!#�m���Chٺ��$��؟_�j�#GE��Z`z!( �4���������o�a�0�Rx&.̯����[�~��P!Ol�<�P�)ūK,��~��[��\�Ρ��V����I�m}&�n���B@o{\@C��u-%qe/_�r��w�nI���bS -cۍ��� ��}�8�4#��$+.'������f�X�F+?����*�^��t������endstream +cۍ��� ��}�8�4#��$+.'������f�X�F+?����*�^��t������endstream endobj -4121 0 obj << +4103 0 obj << /Type /Page -/Contents 4122 0 R -/Resources 4120 0 R +/Contents 4104 0 R +/Resources 4102 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4057 0 R +/Parent 4055 0 R >> endobj -4123 0 obj << -/D [4121 0 R /XYZ 71.731 729.265 null] +4105 0 obj << +/D [4103 0 R /XYZ 71.731 729.265 null] >> endobj 1680 0 obj << -/D [4121 0 R /XYZ 71.731 718.306 null] +/D [4103 0 R /XYZ 71.731 718.306 null] >> endobj 798 0 obj << -/D [4121 0 R /XYZ 366.546 703.236 null] +/D [4103 0 R /XYZ 366.546 703.236 null] +>> endobj +4106 0 obj << +/D [4103 0 R /XYZ 71.731 681.855 null] +>> endobj +4107 0 obj << +/D [4103 0 R /XYZ 71.731 671.343 null] +>> endobj +4108 0 obj << +/D [4103 0 R /XYZ 71.731 666.361 null] +>> endobj +4109 0 obj << +/D [4103 0 R /XYZ 71.731 661.38 null] +>> endobj +4110 0 obj << +/D [4103 0 R /XYZ 71.731 638.889 null] +>> endobj +4111 0 obj << +/D [4103 0 R /XYZ 71.731 615.552 null] +>> endobj +4112 0 obj << +/D [4103 0 R /XYZ 354.338 599.776 null] +>> endobj +4113 0 obj << +/D [4103 0 R /XYZ 71.731 597.619 null] +>> endobj +4114 0 obj << +/D [4103 0 R /XYZ 71.731 574.705 null] +>> endobj +4115 0 obj << +/D [4103 0 R /XYZ 71.731 569.724 null] +>> endobj +4116 0 obj << +/D [4103 0 R /XYZ 71.731 538.84 null] +>> endobj +4117 0 obj << +/D [4103 0 R /XYZ 74.222 497.161 null] +>> endobj +4118 0 obj << +/D [4103 0 R /XYZ 71.731 472.09 null] +>> endobj +4119 0 obj << +/D [4103 0 R /XYZ 138.434 456.314 null] +>> endobj +4120 0 obj << +/D [4103 0 R /XYZ 288.63 443.363 null] +>> endobj +4121 0 obj << +/D [4103 0 R /XYZ 95.641 417.46 null] +>> endobj +4122 0 obj << +/D [4103 0 R /XYZ 71.731 416.052 null] +>> endobj +4123 0 obj << +/D [4103 0 R /XYZ 71.731 392.389 null] >> endobj 4124 0 obj << -/D [4121 0 R /XYZ 71.731 681.855 null] +/D [4103 0 R /XYZ 105.325 376.613 null] >> endobj 4125 0 obj << -/D [4121 0 R /XYZ 71.731 671.343 null] +/D [4103 0 R /XYZ 71.731 374.456 null] >> endobj 4126 0 obj << -/D [4121 0 R /XYZ 71.731 666.361 null] +/D [4103 0 R /XYZ 71.731 351.542 null] >> endobj 4127 0 obj << -/D [4121 0 R /XYZ 71.731 661.38 null] +/D [4103 0 R /XYZ 71.731 276.822 null] >> endobj 4128 0 obj << -/D [4121 0 R /XYZ 71.731 638.889 null] +/D [4103 0 R /XYZ 296.767 253.076 null] >> endobj 4129 0 obj << -/D [4121 0 R /XYZ 71.731 615.552 null] +/D [4103 0 R /XYZ 74.222 222.192 null] >> endobj 4130 0 obj << -/D [4121 0 R /XYZ 354.338 599.776 null] +/D [4103 0 R /XYZ 71.731 197.121 null] >> endobj 4131 0 obj << -/D [4121 0 R /XYZ 71.731 597.619 null] +/D [4103 0 R /XYZ 71.731 148.304 null] >> endobj 4132 0 obj << -/D [4121 0 R /XYZ 71.731 574.705 null] +/D [4103 0 R /XYZ 378.741 137.509 null] >> endobj -4133 0 obj << -/D [4121 0 R /XYZ 71.731 569.724 null] ->> endobj -4134 0 obj << -/D [4121 0 R /XYZ 71.731 538.84 null] +4102 0 obj << +/Font << /F23 1105 0 R /F27 1112 0 R /F32 1119 0 R /F33 1210 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 4135 0 obj << -/D [4121 0 R /XYZ 74.222 497.161 null] +/Length 3235 +/Filter /FlateDecode +>> +stream +xڝk�۶��e��̉�CI{:��������t:���)B����w_�C����s�X��žu������w�>A���j��]�`��G�P̅d>�y~�h�2�R7]�W�۫�� �nW��?�g���r��lD�����}�x�����2��˙�Gγ��s~����/�n�{�0v�$�*���� �L#w�&�� �Kb�rq=�"�^��13`�������dd�k�i��nx��=�hڬ�d�Q[��n��ک\�����8c� �����iG{����j��֥���C��J��,J�l�;U�p�Z)j�n*�C}�Y���v8�ED��������<������9o�ܿ�����w[�o�^�JvRe#P�5<��rA�y�X��2�ŋ<S3EV�M� +��H���Q�>w�Ҭ����fr7���`����_��$@kQ�}V»����-07�����{u��3�N߹��a��rQރ�U��Dzd�ZE?�j�BiCj������3��<W��� +�, ou�:Y��#R��]�mة�Ŀt��̠�� �E�2��T�3��{��Zk�'�q'���f,;>J����T�=P1P��ZZU��QOz�Z�2�Ο���S�n��pPu{���C��o�2�[����'���� +�ƔJ�5�th�.��O������;u�a�a�%���0�Dc��n'B�1�C�ry�;9^^ �r�♇QL�nl���y�m>уE�B���f���A��+������ +UEG+j�+8@d��@����������=���T7��ڭ3ٮ�`����t��ض���f�nE|#�F����l2]��A'����j� 5�6�jk���� 4����!u�C�ÑuF48�Z� �6݉N���bM��y@������L�����N�B�.�h�����x<�V��K'�\p�`En6���.����-�}�~�'+���Ĝ�\�Ԍ��'��WD�2,>��d�2v�`s�`N���s�eL�@�➛�P���h�&l����O��2|w�g�\;���p��(�34Mg�NH�|�Ad�� +�_|xX�r,���m�Y�n>���`���\�~b L�1h��p���o +�P��x�6YG��+��BmEtUV��F� +����yv��'�E�6e���D��R4ǽ +�Y���Z0o >m��%BiW�����8uk�z)@�s� b�&~7]]���In` �3Q�_�m�6�,�,-�7���l#���D��7�O3[;m9֕nu���N/�I���n8���[28�É��!p����:�K��N?���h7��K�f����I��t�V(� �� +p��{��+�YirHuh�-c��0�aU۱�#�=V�ia�����������;����|�]ޚ�{�ma��K�)��"���`k5�p�a\�l,�,|�kH�[M���JΖ�vd�y�D�T�>��V�x������i\��f����kljr�y�����p%བ1�>U��ЕK�U-O���9`�C���`�@~�@�=��2������vu��O d�Sy��蟍ax�a�A�d��$ߵ�>�e�d2X���3�h��ҙ�k5��{θ�i`��0����P�;���ހ��]V���� ��@���#�X� �C:���P�ψA��*"�p�����>�T�AO6��:�ۭ��n�����/z.p���o^��¿nN�),X�1�`�N\��[�5ޓ����L������ƜQ�E�MF���a~�����ď��L�1�����L�{CPE��7�GP8ۙ'��N��I�=��/��5IX� v����Y7P ��-ҠB6 +�Űy&��h�� �${ǚ�0,m�@ڽ�Mb�yn$M!��d!��(p�I}�Ź}��m�E0�i+P��/%��#-����N�m���k��0��!�T��삾o������!���By�J����Jw�~dz˝z@e�ƚ4X�/t�4<+����1�����Eׄl$�8F���<@��*YF}�,@t�#��l����5E��@�>\I��'��mA�݉*� ��$u�0NV��"���&��ZQ�V�r�;cr���,�6��Bb�cU�+xL�M�J��9B�ǔ�����#�_�fS�]���z�S�Tf�iu�S�M����lr�QK��ZSݍ��]��]�_��v�U�+� �k���TM�[c�f���J�9��c¥�L��RO%��:)���G�r�۔M:4S��(��EK�85�7�Zg�``P�ʢ1V�g�����+��/��H� e��IK^ɟ�ұ�$;�!ۋA�jJ�Rt�^PS>�R�WSG� +R�Զ��]'��Ĺ��YK�F�;&dA���4i���;o`�w�2�#w�$�SH��Q]l�p����?���Ē�P[.S����P�V1~(�a +L��������md��+�9�z2Z�f[�LjjS<M�Fچ<�{j� �~���>S���`"ù�2+�BۃD/�r-��9�� �Q_��MI�C���<7����2B^1u6�[��4��=��P>1����t;�-��qL|!56-I��㷮�~W�>�Fd�}�D$��)פ�H"mr���0w6C�<O�Đ{K�i�W�*L��a�s��FvM��r���W8����k.�Z����.��˻E���(���=�ɾp��8�_��O/x��sW�ծ������$�1�g�`���J'+7&a��_�kߋ\/^��_c���BЁn��_���5|��.Q��kq2���Qp6��_Q��k�m����B�KG6�N5��l@��:���Ο^(���Y0*`Y��f>�`_g{��x�8�զ#�z�Qg8k����xJl���������2e� ֏���'7LlzQV�`.L\R"ޙ6��B��.WQ��G��M"�Pw[)��iՃ�&�#́#�8T&��]/z�5e�.��-̭��H`���� n$���I<R�D(� ��� Y��T3c�O0akEV]X�Qx��~�'i�m{���9L}�ʨW�+4vbґ>S����o[�������b1fC�u�/�dmh'����+q�x����h�+?�뱰W�W-���u����@��͢��l�<z��~�k���!���P������2��-��_g$g���v�J|�o,�O�/@��endstream +endobj +4134 0 obj << +/Type /Page +/Contents 4135 0 R +/Resources 4133 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4055 0 R >> endobj 4136 0 obj << -/D [4121 0 R /XYZ 71.731 472.09 null] +/D [4134 0 R /XYZ 71.731 729.265 null] >> endobj 4137 0 obj << -/D [4121 0 R /XYZ 138.434 456.314 null] +/D [4134 0 R /XYZ 71.731 741.22 null] >> endobj 4138 0 obj << -/D [4121 0 R /XYZ 288.63 443.363 null] +/D [4134 0 R /XYZ 71.731 675.303 null] >> endobj 4139 0 obj << -/D [4121 0 R /XYZ 95.641 417.46 null] +/D [4134 0 R /XYZ 429.028 651.557 null] >> endobj 4140 0 obj << -/D [4121 0 R /XYZ 71.731 416.052 null] +/D [4134 0 R /XYZ 153.769 612.702 null] >> endobj 4141 0 obj << -/D [4121 0 R /XYZ 71.731 392.389 null] +/D [4134 0 R /XYZ 453.126 612.702 null] >> endobj 4142 0 obj << -/D [4121 0 R /XYZ 105.325 376.613 null] +/D [4134 0 R /XYZ 74.222 581.818 null] >> endobj 4143 0 obj << -/D [4121 0 R /XYZ 71.731 374.456 null] +/D [4134 0 R /XYZ 71.731 556.747 null] >> endobj 4144 0 obj << -/D [4121 0 R /XYZ 71.731 351.542 null] +/D [4134 0 R /XYZ 71.731 522.939 null] >> endobj 4145 0 obj << -/D [4121 0 R /XYZ 71.731 276.822 null] +/D [4134 0 R /XYZ 105.883 497.136 null] >> endobj 4146 0 obj << -/D [4121 0 R /XYZ 296.767 253.076 null] +/D [4134 0 R /XYZ 71.731 489.998 null] >> endobj 4147 0 obj << -/D [4121 0 R /XYZ 74.222 222.192 null] +/D [4134 0 R /XYZ 132.174 427.397 null] >> endobj 4148 0 obj << -/D [4121 0 R /XYZ 71.731 197.121 null] +/D [4134 0 R /XYZ 71.731 420.259 null] >> endobj 4149 0 obj << -/D [4121 0 R /XYZ 71.731 148.304 null] +/D [4134 0 R /XYZ 71.731 350.894 null] >> endobj 4150 0 obj << -/D [4121 0 R /XYZ 378.741 137.509 null] +/D [4134 0 R /XYZ 71.731 350.894 null] >> endobj -4120 0 obj << -/Font << /F23 1105 0 R /F27 1112 0 R /F32 1119 0 R /F33 1210 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +4151 0 obj << +/D [4134 0 R /XYZ 74.222 308.842 null] >> endobj -4153 0 obj << -/Length 3235 -/Filter /FlateDecode ->> -stream -xڝk�۶��e��̉�CI{:��������t:���)B����w_�C����s�X��žu������w�>A���j��]�`��G�P̅d>�y~�h�2�R7]�W�۫�� �nW��?�g���r��lD�����}�x�����2��˙�Gγ��s~����/�n�{�0v�$�*���� �L#w�&�� �Kb�rq=�"�^��13`�������dd�k�i��nx��=�hڬ�d�Q[��n��ک\�����8c� �����iG{����j��֥���C��J��,J�l�;U�p�Z)j�n*�C}�Y���v8�ED��������<������9o�ܿ�����w[�o�^�JvRe#P�5<��rA�y�X��2�ŋ<S3EV�M� -��H���Q�>w�Ҭ����fr7���`����_��$@kQ�}V»����-07�����{u��3�N߹��a��rQރ�U��Dzd�ZE?�j�BiCj������3��<W��� -�, ou�:Y��#R��]�mة�Ŀt��̠�� �E�2��T�3��{��Zk�'�q'���f,;>J����T�=P1P��ZZU��QOz�Z�2�Ο���S�n��pPu{���C��o�2�[����'���� -�ƔJ�5�th�.��O������;u�a�a�%���0�Dc��n'B�1�C�ry�;9^^ �r�♇QL�nl���y�m>уE�B���f���A��+������ -UEG+j�+8@d��@����������=���T7��ڭ3ٮ�`����t��ض���f�nE|#�F����l2]��A'����j� 5�6�jk���� 4����!u�C�ÑuF48�Z� �6݉N���bM��y@������L�����N�B�.�h�����x<�V��K'�\p�`En6���.����-�}�~�'+���Ĝ�\�Ԍ��'��WD�2,>��d�2v�`s�`N���s�eL�@�➛�P���h�&l����O��2|w�g�\;���p��(�34Mg�NH�|�Ad�� -�_|xX�r,���m�Y�n>���`���\�~b L�1h��p���o -�P��x�6YG��+��BmEtUV��F� -����yv��'�E�6e���D��R4ǽ -�Y���Z0o >m��%BiW�����8uk�z)@�s� b�&~7]]���In` �3Q�_�m�6�,�,-�7���l#���D��7�O3[;m9֕nu���N/�I���n8���[28�É��!p����:�K��N?���h7��K�f����I��t�V(� �� -p��{��+�YirHuh�-c��0�aU۱�#�=V�ia�����������;����|�]ޚ�{�ma��K�)��"���`k5�p�a\�l,�,|�kH�[M���JΖ�vd�y�D�T�>��V�x������i\��f����kljr�y�����p%བ1�>U��ЕK�U-O���9`�C���`�@~�@�=��2������vu��O d�Sy��蟍ax�a�A�d��$ߵ�>�e�d2X���3�h��ҙ�k5��{θ�i`��0����P�;���ހ��]V���� ��@���#�X� �C:���P�ψA��*"�p�����>�T�AO6��:�ۭ��n�����/z.p���o^��¿nN�),X�1�`�N\��[�5ޓ����L������ƜQ�E�MF���a~�����ď��L�1�����L�{CPE��7�GP8ۙ'��N��I�=��/��5IX� v����Y7P ��-ҠB6 -�Űy&��h�� �${ǚ�0,m�@ڽ�Mb�yn$M!��d!��(p�I}�Ź}��m�E0�i+P��/%��#-����N�m���k��0��!�T��삾o������!���By�J����Jw�~dz˝z@e�ƚ4X�/t�4<+����1�����Eׄl$�8F���<@��*YF}�,@t�#��l����5E��@�>\I��'��mA�݉*� ��$u�0NV��"���&��ZQ�V�r�;cr���,�6��Bb�cU�+xL�M�J��9B�ǔ�����#�_�fS�]���z�S�Tf�iu�S�M����lr�QK��ZSݍ��]��]�_��v�U�+� �k���TM�[c�f���J�9��c¥�L��RO%��:)���G�r�۔M:4S��(��EK�85�7�Zg�``P�ʢ1V�g�����+��/��H� e��IK^ɟ�ұ�$;�!ۋA�jJ�Rt�^PS>�R�WSG� -R�Զ��]'��Ĺ��YK�F�;&dA���4i���;o`�w�2�#w�$�SH��Q]l�p����?���Ē�P[.S����P�V1~(�a -L��������md��+�9�z2Z�f[�LjjS<M�Fچ<�{j� �~���>S���`"ù�2+�BۃD/�r-��9�� �Q_��MI�C���<7����2B^1u6�[��4��=��P>1����t;�-��qL|!56-I��㷮�~W�>�Fd�}�D$��)פ�H"mr���0w6C�<O�Đ{K�i�W�*L��a�s��FvM��r���W8����k.�Z����.��˻E���(���=�ɾp��8�_��O/x��sW�ծ������$�1�g�`���J'+7&a��_�kߋ\/^��_c���BЁn��_���5|��.Q��kq2���Qp6��_Q��k�m����B�KG6�N5��l@��:���Ο^(���Y0*`Y��f>�`_g{��x�8�զ#�z�Qg8k����xJl���������2e� ֏���'7LlzQV�`.L\R"ޙ6��B��.WQ��G��M"�Pw[)��iՃ�&�#́#�8T&��]/z�5e�.��-̭��H`���� n$���I<R�D(� ��� Y��T3c�O0akEV]X�Qx��~�'i�m{���9L}�ʨW�+4vbґ>S����o[�������b1fC�u�/�dmh'����+q�x����h�+?�뱰W�W-���u����@��͢��l�<z��~�k���!���P������2��-��_g$g���v�J~�o,�O�/@��endstream -endobj 4152 0 obj << -/Type /Page -/Contents 4153 0 R -/Resources 4151 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4180 0 R +/D [4134 0 R /XYZ 148.772 285.928 null] +>> endobj +4153 0 obj << +/D [4134 0 R /XYZ 71.731 284.52 null] >> endobj 4154 0 obj << -/D [4152 0 R /XYZ 71.731 729.265 null] +/D [4134 0 R /XYZ 368.158 267.995 null] >> endobj 4155 0 obj << -/D [4152 0 R /XYZ 71.731 741.22 null] +/D [4134 0 R /XYZ 95.641 229.141 null] >> endobj 4156 0 obj << -/D [4152 0 R /XYZ 71.731 675.303 null] +/D [4134 0 R /XYZ 71.731 201.081 null] >> endobj 4157 0 obj << -/D [4152 0 R /XYZ 429.028 651.557 null] +/D [4134 0 R /XYZ 202.524 180.324 null] >> endobj 4158 0 obj << -/D [4152 0 R /XYZ 153.769 612.702 null] +/D [4134 0 R /XYZ 340.43 180.324 null] >> endobj 4159 0 obj << -/D [4152 0 R /XYZ 453.126 612.702 null] +/D [4134 0 R /XYZ 71.731 167.273 null] >> endobj 4160 0 obj << -/D [4152 0 R /XYZ 74.222 581.818 null] +/D [4134 0 R /XYZ 385.027 149.44 null] >> endobj 4161 0 obj << -/D [4152 0 R /XYZ 71.731 556.747 null] ->> endobj -4162 0 obj << -/D [4152 0 R /XYZ 71.731 522.939 null] +/D [4134 0 R /XYZ 71.731 111.417 null] >> endobj -4163 0 obj << -/D [4152 0 R /XYZ 105.883 497.136 null] +4133 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 4164 0 obj << -/D [4152 0 R /XYZ 71.731 489.998 null] +/Length 2321 +/Filter /FlateDecode +>> +stream +xڅk����� +7)�r����|h���{m��r�A�+�D��ɢ#J�s}g8#[~�&9�=C���~�h�iC4Q���ͳ`���7�B����xz6yǣ��e��i9J�T�H'�D�F���?��v��R�Qx��Ƨ��ɋn�?]U�V��a�z��$�ޏ�����WO�x*fy�U&{�.���Y*�$ey*���8�e�g�wlD���Y8� +��Ⱥ�+]+�ۍ��3��8̽���|"S��BץG�����Օ�<ߛ�0ee ��r��ǠE{��Nׂ��-�����%����q����@+�\�E;ݮQ��#?�Č-�:_�Z6{���T��`�訲,a��X���m%E�C�Ʊ�f)c�ֺX��k���ƶw����9_��r��!��q��@d�̑{x�!�����^��ơaV�,�o��ˤ���&[�T� 8@0F��������w�Xi}'�K9A�(� H玱�V�Ir��Z{\��i�{{4��Zc�X�R����o�L=B, Y��*�YE+�����C�u���r�-Ue�Ivslj\8�g�")��"7�JYF�K�4CS;Sg!��Bi�t��x���jA����E�5�h:T���-�%hI\�0�C�$y2u����q:�h�������ۘR�\����B�mP��{�G��x�ꉴ�F$��3l�.}<�1Kf��v7��)Qk���/OD4�zle[�IZ�@�|l��Z���8KE��!ſ�"�=�V���tx<��j���d\��B��4�rf�$�/��`����~��5��4ؘ�j]CR[�f#[��a��<�M:��ӭ���NVJZF*֪����H��'��P/�����6f�h�b��B0���@/�5)��%��ݫ2 ����7�.� +�n����d��a��{.�¸亚����r���q +�k���T�:3��@3�G�����b���䥩U�5:5N��>�ɤO��֪jy%A'�ٙ�%M �8�����WLZ�g�,��R7�\�������j�5~%�t�2��[C�.�R5�b����8h:�8>����Y�|�i,���p<+����;n�҇���tIHmOk�6O�����bO@�ږ�`����7/�mA�ͶQ�?��E�����á� r�p~J��9) ���̺;���� ��J�n00���p4������Ҷm�7�AC�h��/au�����4�Б�)ǵ^��� ��A���&���14=�����.�ܟ�{ԥj��t� d@��'�iD�8���(����կ~���_�?��.���?a#�M�s`c�*ף���Y<�y��u�@*�@�(J`�֚B�A�S�G-�عi��ڐ��(pq��+�V� +ڸj#�G� ��B�"�j�HV��垠DVS����ZE{�c�LT-��ʮb +٪�fI`��ߖձ��'�p5! �?�?��%V�0���?]��b��+f%��]Nz蝃+� +��}�hɪ�x}���s�ΐ��d��ҍG��1՝�� +c>iީ�F�Q�c�"D�g�Q��2F� +��Y���d|�\�=95�uu Q}Qnf���� A��x����<84,f�e"J�93t����4vr:�/�t�^���OEo�'�:��p�?C84Ԩ �ڔqoU�6S�On �YP����2�_!���q��f�|�(�8%��b�&uz�U�O��C��)�u`���U��N�g %I����v���A&D�5�u� m�{�@[�{���=�&A���e�v�4Ks�4��L��1����6�H����]C�;kJm��Zj�\$�}X�V��JD�Q��a�:�#����J���'y�A�������G�i��FS/�l�1���:�vj�/��-1�E3j���n]W���/ �ښ�;�ToU�ګ��f�R.j��5��l^%�/�m�C�m��q��o g&tXp6�����M��ǾW��:8���7R��v�4�E"�f�@dy~��� p%+����ץBŸ6<����w�&\xt�SC�Ԋ��,�X _���/���ɞ}G�݇,xܷ��l�j6��9�JB I�8�G%p3ͱ�]��J{�xz�Qq�Q�����@�X]�Sڲ(��u$�}3`�4���c��-F^}����9&.��(���0�6�`-0��]�+�M�U M�pC�!�Ⴓ����=i���(�&��%~�9p�?TOS��,7l���Yo�F�G5�h숛������V�ޛ�"�_�"|D�� �F�������]�����endstream +endobj +4163 0 obj << +/Type /Page +/Contents 4164 0 R +/Resources 4162 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4192 0 R >> endobj 4165 0 obj << -/D [4152 0 R /XYZ 132.174 427.397 null] +/D [4163 0 R /XYZ 71.731 729.265 null] >> endobj 4166 0 obj << -/D [4152 0 R /XYZ 71.731 420.259 null] +/D [4163 0 R /XYZ 71.731 660.359 null] >> endobj 4167 0 obj << -/D [4152 0 R /XYZ 71.731 350.894 null] +/D [4163 0 R /XYZ 71.731 639.203 null] >> endobj 4168 0 obj << -/D [4152 0 R /XYZ 71.731 350.894 null] +/D [4163 0 R /XYZ 71.731 619.278 null] >> endobj 4169 0 obj << -/D [4152 0 R /XYZ 74.222 308.842 null] +/D [4163 0 R /XYZ 115.567 595.965 null] >> endobj 4170 0 obj << -/D [4152 0 R /XYZ 148.772 285.928 null] +/D [4163 0 R /XYZ 71.731 568.07 null] >> endobj 4171 0 obj << -/D [4152 0 R /XYZ 71.731 284.52 null] +/D [4163 0 R /XYZ 376.59 555.118 null] >> endobj 4172 0 obj << -/D [4152 0 R /XYZ 368.158 267.995 null] +/D [4163 0 R /XYZ 216.969 542.167 null] >> endobj 4173 0 obj << -/D [4152 0 R /XYZ 95.641 229.141 null] +/D [4163 0 R /XYZ 200.218 529.215 null] >> endobj 4174 0 obj << -/D [4152 0 R /XYZ 71.731 201.081 null] +/D [4163 0 R /XYZ 71.731 504.862 null] >> endobj 4175 0 obj << -/D [4152 0 R /XYZ 202.524 180.324 null] +/D [4163 0 R /XYZ 71.731 452.937 null] >> endobj 4176 0 obj << -/D [4152 0 R /XYZ 340.43 180.324 null] +/D [4163 0 R /XYZ 439.725 442.142 null] >> endobj 4177 0 obj << -/D [4152 0 R /XYZ 71.731 167.273 null] +/D [4163 0 R /XYZ 95.641 403.288 null] >> endobj 4178 0 obj << -/D [4152 0 R /XYZ 385.027 149.44 null] +/D [4163 0 R /XYZ 336.678 390.336 null] >> endobj 4179 0 obj << -/D [4152 0 R /XYZ 71.731 111.417 null] +/D [4163 0 R /XYZ 455.543 390.336 null] >> endobj -4151 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +4180 0 obj << +/D [4163 0 R /XYZ 74.222 359.452 null] +>> endobj +4181 0 obj << +/D [4163 0 R /XYZ 71.731 334.381 null] >> endobj -4183 0 obj << -/Length 2321 -/Filter /FlateDecode ->> -stream -xڅk����� -7)�r����|h���{m��r�A�+�D��ɢ#J�s}g8#[~�&9�=C���~�h�iC4Q���ͳ`���7�B����xz6yǣ��e��i9J�T�H'�D�F���?��v��R�Qx��Ƨ��ɋn�?]U�V��a�z��$�ޏ�����WO�x*fy�U&{�.���Y*�$ey*���8�e�g�wlD���Y8� -��Ⱥ�+]+�ۍ��3��8̽���|"S��BץG�����Օ�<ߛ�0ee ��r��ǠE{��Nׂ��-�����%����q����@+�\�E;ݮQ��#?�Č-�:_�Z6{���T��`�訲,a��X���m%E�C�Ʊ�f)c�ֺX��k���ƶw����9_��r��!��q��@d�̑{x�!�����^��ơaV�,�o��ˤ���&[�T� 8@0F��������w�Xi}'�K9A�(� H玱�V�Ir��Z{\��i�{{4��Zc�X�R����o�L=B, Y��*�YE+�����C�u���r�-Ue�Ivslj\8�g�")��"7�JYF�K�4CS;Sg!��Bi�t��x���jA����E�5�h:T���-�%hI\�0�C�$y2u����q:�h�������ۘR�\����B�mP��{�G��x�ꉴ�F$��3l�.}<�1Kf��v7��)Qk���/OD4�zle[�IZ�@�|l��Z���8KE��!ſ�"�=�V���tx<��j���d\��B��4�rf�$�/��`����~��5��4ؘ�j]CR[�f#[��a��<�M:��ӭ���NVJZF*֪����H��'��P/�����6f�h�b��B0���@/�5)��%��ݫ2 ����7�.� -�n����d��a��{.�¸亚����r���q -�k���T�:3��@3�G�����b���䥩U�5:5N��>�ɤO��֪jy%A'�ٙ�%M �8�����WLZ�g�,��R7�\�������j�5~%�t�2��[C�.�R5�b����8h:�8>����Y�|�i,���p<+����;n�҇���tIHmOk�6O�����bO@�ږ�`����7/�mA�ͶQ�?��E�����á� r�p~J��9) ���̺;���� ��J�n00���p4������Ҷm�7�AC�h��/au�����4�Б�)ǵ^��� ��A���&���14=�����.�ܟ�{ԥj��t� d@��'�iD�8���(����կ~���_�?��.���?a#�M�s`c�*ף���Y<�y��u�@*�@�(J`�֚B�A�S�G-�عi��ڐ��(pq��+�V� -ڸj#�G� ��B�"�j�HV��垠DVS����ZE{�c�LT-��ʮb -٪�fI`��ߖձ��'�p5! �?�?��%V�0���?]��b��+f%��]Nz蝃+� -��}�hɪ�x}���s�ΐ��d��ҍG��1՝�� -c>iީ�F�Q�c�"D�g�Q��2F� -��Y���d|�\�=95�uu Q}Qnf���� A��x����<84,f�e"J�93t����4vr:�/�t�^���OEo�'�:��p�?C84Ԩ �ڔqoU�6S�On �YP����2�_!���q��f�|�(�8%��b�&uz�U�O��C��)�u`���U��N�g %I����v���A&D�5�u� m�{�@[�{���=�&A���e�v�4Ks�4��L��1����6�H����]C�;kJm��Zj�\$�}X�V��JD�Q��a�:�#����J���'y�A�������G�i��FS/�l�1���:�vj�/��-1�E3j���n]W���/ �ښ�;�ToU�ګ��f�R.j��5��l^%�/�m�C�m��q��o g&tXp6�����M��ǾW��:8���7R��v�4�E"�f�@dy~��� p%+����ץBŸ6<����w�&\xt�SC�Ԋ��,�X _���/���ɞ}G�݇,xܷ��l�j6��9�JB I�8�G%p3ͱ�]��J{�xz�Qq�Q�����@�X]�Sڲ(��u$�}3`�4���c��-F^}����9&.��(���0�6�`-0��]�+�M�U M�pC�!�Ⴓ����=i���(�&��%~�9p�?TOS��,7l���Yo�F�G5�h숛������V�ޛ�"�_�"|D�� �F�����'�]�����endstream -endobj 4182 0 obj << -/Type /Page -/Contents 4183 0 R -/Resources 4181 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4180 0 R +/D [4163 0 R /XYZ 71.731 316.448 null] +>> endobj +4183 0 obj << +/D [4163 0 R /XYZ 218.849 295.691 null] >> endobj 4184 0 obj << -/D [4182 0 R /XYZ 71.731 729.265 null] +/D [4163 0 R /XYZ 71.731 293.534 null] >> endobj 4185 0 obj << -/D [4182 0 R /XYZ 71.731 660.359 null] +/D [4163 0 R /XYZ 486.265 264.807 null] >> endobj 4186 0 obj << -/D [4182 0 R /XYZ 71.731 639.203 null] +/D [4163 0 R /XYZ 71.731 239.736 null] >> endobj 4187 0 obj << -/D [4182 0 R /XYZ 71.731 619.278 null] +/D [4163 0 R /XYZ 71.731 239.736 null] >> endobj 4188 0 obj << -/D [4182 0 R /XYZ 115.567 595.965 null] +/D [4163 0 R /XYZ 71.731 216.956 null] >> endobj 4189 0 obj << -/D [4182 0 R /XYZ 71.731 568.07 null] +/D [4163 0 R /XYZ 71.731 183.014 null] >> endobj 4190 0 obj << -/D [4182 0 R /XYZ 376.59 555.118 null] +/D [4163 0 R /XYZ 71.731 165.081 null] >> endobj 4191 0 obj << -/D [4182 0 R /XYZ 216.969 542.167 null] ->> endobj -4192 0 obj << -/D [4182 0 R /XYZ 200.218 529.215 null] +/D [4163 0 R /XYZ 71.731 127.158 null] >> endobj -4193 0 obj << -/D [4182 0 R /XYZ 71.731 504.862 null] +4162 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +4195 0 obj << +/Length 2713 +/Filter /FlateDecode +>> +stream +xڅi�۸�{~�|*d`���,Xrn�ȶh2�Mp$�FR&�_�wQ�؛�?�||$�}��j?u�W�>�O��A_�����V~~�c+(�Λ�/?��U�gIxuw��T�xN�i\���^w�i���f�;�����������4�>l���כh��}���x7Q�{?K��pΨ�3�Y�'�K�0��H ���]敖�M�ߟ�����y���l�0V;��n�j���2`�m3_�e��pr�em|���y�ȳ\7j7A�=�08�����j�ȡ������qb�a��7���(V�V~&*��.ܳ����i�W/_ +>q��-s�<ĠR��Ҟ��������,~����7�}����h�ў� ��g��v��ZTDy�`)H��gS@(�oea�r��Nv^o��HM�&�Z��/s�)�����̐�0xV��E{�:����3BU ���e:����f�lI[����[}4�U�DU>l�~�?f�¯5F\蕓1i�<O�w��Tx[����$����sO�e�Vyٿʀ9]w҅P���'w6[>�J3�,E˸��JB�n +��B��l�e�a�*ӳ�6Q`z(ۆA��k� ���<�)��~�\% +��bHq(��,�<;��l��W��� Mx������1x5� $�Y�_��-i+��ЬU�9ݤ���K� E�c֔]mN��@u#����N����ɫ�0�V��<���}� �z(��R��Zk��JHZ�����Gc�_���m�����=�:�\��r<�c~��~�?��"�'� {,�G;���woފ��xC'!0}��� ̀���5� �' +��� +=�A��r'�Q�`_Bo���:��(�8�^�}��ap��Fy>����mk��&�rx��%�}���atA����d#�q�!��B:�1�7�d�m��!�S��eBu��,O<�k����a�G�O��.����x����)m��� +���|]�g +FA"��v&Ƒ`j] +���%$bT� �o��^��O(���������6t���ƅ�s-�i�����ak�;Z� �-���^�����u�O�|9�}���5Y)��>��/%D�c]���r�.ogOgL��<o�n��j48����*��Z*(�� <��h���������n�Ϊj]�˖�!*K��Ȓމ�Q�r�I�&O[ �+�80Yj +me>VZR��4v����O�'aJ���n���T�b��n6$��p�L�u�$Mz8E�l�P���E\��k38�W)8Yx���_���b<h&� MM.��w����!J���R\���`�u��aȲ��*B�����'��`������M�t�jy��~Aq��`Q�n�K�$o��7�)���Y\�2�[��$fa�t���R ̶y�*���!�yu� Nj�<�1�C�>|s=J��cdc�K��ؖBSR�K�ޗ Q��+kH>=ԅd�c:c�" H�-y�W�l^p���+ �)`V]��a���������XZˑeP%�^���5��µ��c�r��?���Q.�G��,Ew�j٢�\�F�%Ӭ����'}(�s�N��/�b"��|�U FB����Ȍ�,���~��'�wrE��܈(��)��Pcu!�N�(����$�&��i��>�ɑ������Dj�{)R�4��C��m�8��� �n�@���Ij;cب������.�*�\9%��,]���y����>��;VA�-΄�`��o��iގ����]��v�.�36�BHα�C�(>�`�X���x���b��q���Xf'�eY��r����M��R�����\�,��"��X)������ڥ#�Vl��O��Ъ/�M�d�)t#i4tj����:���F��У�w*������~�����ӻh>���U�<0��0��Bb(v�(#�:�-�w��h υOVJ0q�`��f�� ��L�X>����K }8py����%vt��8�)_G�F�W��^yH�~p]�E;�l�'���Z�Gֿ��;�;�����4<+I1����5/�VBÕR0���oc���7��� �0-4^7{?�G��c%�S_�#h��Q���B^������GXm��`I�=7t ���e��\j�Q���a����⛍��(MI!�WB��=`�)x.^��@@*C(ڈG�"|iL/�MD � �倢+nc3�Ϧ�{9��H�5�K�M�[i�2Vpm�ew.l�V�G���(���Hy�ˆ�;����/3����HS8�հ�+��pQ!�綔�~)1������:��$i8krET$�Q<��:�9���n ��:����7?�+G���OH Z���#L��_�@"�"Q�8\`=��,u����>~��7����%��R�W��F�i1��Z�:)b@1�V^�z��I,�rݗU��� ��J��E�h��ʉb�c��DZw1�͏zT�=p��Z�Nf���3��(�U�2|������b?���ZW Ll�2 +y��]�s���&v���qhΗ����$IVJa5N��q] a��R�A�`w� c7�]˚f-��AS�����֍}�Z��j�L-�E������Q�������d<�~�����ŏnendstream +endobj 4194 0 obj << -/D [4182 0 R /XYZ 71.731 452.937 null] +/Type /Page +/Contents 4195 0 R +/Resources 4193 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4192 0 R +/Annots [ 4202 0 R ] >> endobj -4195 0 obj << -/D [4182 0 R /XYZ 439.725 442.142 null] +4202 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [240.776 608.553 290.588 617.464] +/Subtype /Link +/A << /S /GoTo /D (reporting) >> >> endobj 4196 0 obj << -/D [4182 0 R /XYZ 95.641 403.288 null] +/D [4194 0 R /XYZ 71.731 729.265 null] >> endobj 4197 0 obj << -/D [4182 0 R /XYZ 336.678 390.336 null] +/D [4194 0 R /XYZ 71.731 718.306 null] >> endobj 4198 0 obj << -/D [4182 0 R /XYZ 455.543 390.336 null] +/D [4194 0 R /XYZ 523.238 708.344 null] >> endobj 4199 0 obj << -/D [4182 0 R /XYZ 74.222 359.452 null] +/D [4194 0 R /XYZ 74.222 677.46 null] >> endobj 4200 0 obj << -/D [4182 0 R /XYZ 71.731 334.381 null] +/D [4194 0 R /XYZ 71.731 639.437 null] >> endobj 4201 0 obj << -/D [4182 0 R /XYZ 71.731 316.448 null] ->> endobj -4202 0 obj << -/D [4182 0 R /XYZ 218.849 295.691 null] +/D [4194 0 R /XYZ 146.578 623.661 null] >> endobj 4203 0 obj << -/D [4182 0 R /XYZ 71.731 293.534 null] +/D [4194 0 R /XYZ 71.731 603.572 null] >> endobj 4204 0 obj << -/D [4182 0 R /XYZ 486.265 264.807 null] +/D [4194 0 R /XYZ 74.222 535.99 null] >> endobj 4205 0 obj << -/D [4182 0 R /XYZ 71.731 239.736 null] +/D [4194 0 R /XYZ 71.731 510.919 null] >> endobj 4206 0 obj << -/D [4182 0 R /XYZ 71.731 239.736 null] +/D [4194 0 R /XYZ 71.731 480.035 null] >> endobj 4207 0 obj << -/D [4182 0 R /XYZ 71.731 216.956 null] +/D [4194 0 R /XYZ 71.731 457.121 null] >> endobj 4208 0 obj << -/D [4182 0 R /XYZ 71.731 183.014 null] +/D [4194 0 R /XYZ 428.12 442.64 null] >> endobj 4209 0 obj << -/D [4182 0 R /XYZ 71.731 165.081 null] +/D [4194 0 R /XYZ 71.731 425.539 null] >> endobj 4210 0 obj << -/D [4182 0 R /XYZ 71.731 127.158 null] +/D [4194 0 R /XYZ 450.21 404.384 null] >> endobj -4181 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R >> -/ProcSet [ /PDF /Text ] +4211 0 obj << +/D [4194 0 R /XYZ 71.731 353.176 null] >> endobj -4213 0 obj << -/Length 2713 -/Filter /FlateDecode ->> -stream -xڅi�۸�{~�|*d`���,Xrn�ȶh2�Mp$�FR&�_�wQ�؛�?�||$�}��j?u�W�>�O��A_�����V~~�c+(�Λ�/?��U�gIxuw��T�xN�i\���^w�i���f�;�����������4�>l���כh��}���x7Q�{?K��pΨ�3�Y�'�K�0��H ���]敖�M�ߟ�����y���l�0V;��n�j���2`�m3_�e��pr�em|���y�ȳ\7j7A�=�08�����j�ȡ������qb�a��7���(V�V~&*��.ܳ����i�W/_ ->q��-s�<ĠR��Ҟ��������,~����7�}����h�ў� ��g��v��ZTDy�`)H��gS@(�oea�r��Nv^o��HM�&�Z��/s�)�����̐�0xV��E{�:����3BU ���e:����f�lI[����[}4�U�DU>l�~�?f�¯5F\蕓1i�<O�w��Tx[����$����sO�e�Vyٿʀ9]w҅P���'w6[>�J3�,E˸��JB�n -��B��l�e�a�*ӳ�6Q`z(ۆA��k� ���<�)��~�\% -��bHq(��,�<;��l��W��� Mx������1x5� $�Y�_��-i+��ЬU�9ݤ���K� E�c֔]mN��@u#����N����ɫ�0�V��<���}� �z(��R��Zk��JHZ�����Gc�_���m�����=�:�\��r<�c~��~�?��"�'� {,�G;���woފ��xC'!0}��� ̀���5� �' -��� -=�A��r'�Q�`_Bo���:��(�8�^�}��ap��Fy>����mk��&�rx��%�}���atA����d#�q�!��B:�1�7�d�m��!�S��eBu��,O<�k����a�G�O��.����x����)m��� -���|]�g -FA"��v&Ƒ`j] -���%$bT� �o��^��O(���������6t���ƅ�s-�i�����ak�;Z� �-���^�����u�O�|9�}���5Y)��>��/%D�c]���r�.ogOgL��<o�n��j48����*��Z*(�� <��h���������n�Ϊj]�˖�!*K��Ȓމ�Q�r�I�&O[ �+�80Yj -me>VZR��4v����O�'aJ���n���T�b��n6$��p�L�u�$Mz8E�l�P���E\��k38�W)8Yx���_���b<h&� MM.��w����!J���R\���`�u��aȲ��*B�����'��`������M�t�jy��~Aq��`Q�n�K�$o��7�)���Y\�2�[��$fa�t���R ̶y�*���!�yu� Nj�<�1�C�>|s=J��cdc�K��ؖBSR�K�ޗ Q��+kH>=ԅd�c:c�" H�-y�W�l^p���+ �)`V]��a���������XZˑeP%�^���5��µ��c�r��?���Q.�G��,Ew�j٢�\�F�%Ӭ����'}(�s�N��/�b"��|�U FB����Ȍ�,���~��'�wrE��܈(��)��Pcu!�N�(����$�&��i��>�ɑ������Dj�{)R�4��C��m�8��� �n�@���Ij;cب������.�*�\9%��,]���y����>��;VA�-΄�`��o��iގ����]��v�.�36�BHα�C�(>�`�X���x���b��q���Xf'�eY��r����M��R�����\�,��"��X)������ڥ#�Vl��O��Ъ/�M�d�)t#i4tj����:���F��У�w*������~�����ӻh>���U�<0��0��Bb(v�(#�:�-�w��h υOVJ0q�`��f�� ��L�X>����K }8py����%vt��8�)_G�F�W��^yH�~p]�E;�l�'���Z�Gֿ��;�;�����4<+I1����5/�VBÕR0���oc���7��� �0-4^7{?�G��c%�S_�#h��Q���B^������GXm��`I�=7t ���e��\j�Q���a����⛍��(MI!�WB��=`�)x.^��@@*C(ڈG�"|iL/�MD � �倢+nc3�Ϧ�{9��H�5�K�M�[i�2Vpm�ew.l�V�G���(���Hy�ˆ�;����/3����HS8�հ�+��pQ!�綔�~)1������:��$i8krET$�Q<��:�9���n ��:����7?�+G���OH Z���#L��_�@"�"Q�8\`=��,u����>~��7����%��R�W��F�i1��Z�:)b@1�V^�z��I,�rݗU��� ��J��E�h��ʉb�c��DZw1�͏zT�=p��Z�Nf���3��(�U�2|������b?���ZW Ll�2 -y��]�s���&v���qhΗ����$IVJa5N��q] a��R�A�`w� c7�]˚f-��AS�����֍}�Z��j�L-�E������Q�������d<��������oendstream -endobj 4212 0 obj << -/Type /Page -/Contents 4213 0 R -/Resources 4211 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4180 0 R -/Annots [ 4220 0 R ] +/D [4194 0 R /XYZ 325.465 317.31 null] >> endobj -4220 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [240.776 608.553 290.588 617.464] -/Subtype /Link -/A << /S /GoTo /D (reporting) >> +4213 0 obj << +/D [4194 0 R /XYZ 71.731 302.202 null] >> endobj 4214 0 obj << -/D [4212 0 R /XYZ 71.731 729.265 null] +/D [4194 0 R /XYZ 71.731 253.385 null] >> endobj 4215 0 obj << -/D [4212 0 R /XYZ 71.731 718.306 null] +/D [4194 0 R /XYZ 353.315 242.59 null] >> endobj 4216 0 obj << -/D [4212 0 R /XYZ 523.238 708.344 null] +/D [4194 0 R /XYZ 71.731 211.607 null] >> endobj 4217 0 obj << -/D [4212 0 R /XYZ 74.222 677.46 null] +/D [4194 0 R /XYZ 378.982 198.755 null] >> endobj 4218 0 obj << -/D [4212 0 R /XYZ 71.731 639.437 null] +/D [4194 0 R /XYZ 340.628 185.803 null] >> endobj 4219 0 obj << -/D [4212 0 R /XYZ 146.578 623.661 null] +/D [4194 0 R /XYZ 71.731 165.714 null] +>> endobj +4220 0 obj << +/D [4194 0 R /XYZ 244.777 154.919 null] >> endobj 4221 0 obj << -/D [4212 0 R /XYZ 71.731 603.572 null] +/D [4194 0 R /XYZ 74.222 124.035 null] >> endobj -4222 0 obj << -/D [4212 0 R /XYZ 74.222 535.99 null] +4193 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +4224 0 obj << +/Length 2756 +/Filter /FlateDecode +>> +stream +xڍk�۸�{~�-��zX�T�Xl�\/E[4�EE�(d��ٕD�(�q~}�E=־\�����I�w�»m�oc�D�m���~�`��oB�X �jB�����q|���&�{�߭��O�O�i�=���O'Ք��b%�������x�?|�U�3��"�q��O��<��͇�A�$��YSHGs-e4J�%�f B���$d�o}����h;�0�6�I~�-˘7��b9Aa��3bU۩rz�E蹳uƭ7�Q�Tys�����N��o�V+���G�Ow�]g^e���_�]��lw+9�*%���T�Z�A�)�f��k4@�V�ڴJ��ٛ��;m�ST}�����"B-D��� +w|�捭rV!T}Br��K<���t��%!Iw�������b�x�w�A�0����-�Me�]^�Ǯ�~�Ύ��ق4�L�d��5iǺ�T�=xy�� �r���vJ53ٿ�4�+�/����$ؓ +P���DB�T@���c��b���F�y��A``;Ђ��G�":#|?4�Jۣ0m�����ʚ對c_�"�α���=i,���<�(�aP�֪�pz��KUTp��g�I�B�3a���HцAԮ���j3w{d���P��A?��O�n�!�_ے�1$�O�7��d�i*��,]I+���%��!�]8� +b¥ {;wC���<u2m��~��z��4��<���H!����Nx}�R�j�����72px��Z�e���,��?�m�@�Z�;������3�[rk^��'�T�U艼�� �g]�����M�vy��W���y;ʼ�w�wY)2#@�W0p�N�U�^j>�n5�0ſ��y��Lez� +2~�aDn7�#_8he_IP*HAd�X��:�*��fA-�R�g�_�CPޘ�����SCZ.������e��0oܰo��4��t���0��I��C�{L��j�5}K�AJ�8h�*1Q��v����]�G���d��e��a +R$�s(!�����>�T��:P�8�.ٯ�T�lz>�f7r�(ٲ�ƾ�S˸�p|m\@m��j-Uf��3ʴaV�P���>2��� +�f�$ܼy�ٹh�;�DM�W"�yAnZ ����ߵ�u�:J���G��c�;�,���P+�m_�Z�J���H?��u�2�2�v����2�e`o�3_���n�~(t�1�~$�َ���ܐJ'838Y۪��.L�oM���m��i�N7��+^���)�Ma��� +$ҍ��1A*Y0;!+��Ͱ�� �ugp+��Ε�I�uK3�M]���(JG��_ل�"Қ}Gn�� pN�q dGc;�h��C?⪀��$�K��F`�Q���̛��aw��6Y�BaH� ܵ2*]��R��Í�x &G&پꤻ�!L��M5���HHy�3�ƫU��D�3t�Pr"ր=�22O>i�^e�h�$��֭l�7��j1���v��JǴ�t�q?�����& +g?��$��طy-Cv�8�0De̋��s�)��,��}BaΆq�bL���X��P��O�r�M&�8eѤ �ng��1.�|șN�K��<�~<��v�/�T��<By���(���"�T��h�\�p��pd�|�x�����Y�a�1��I�Y��v����R� +9�<*��4wٽ����4���Z3*�] +�������Gw��ٍ�& BYMSXE�6�ꊇ[9�f[npP*|߰�� /�JUw\}e���)պ�U����;*�8�W��,�K��r�5z_�8ZQj� 'l�<�n��XLH~4ھing-�! ��k16���rF��qK�H + �ّ`Rڂ�A�4 cz,PԞ!�����{��H*����W;Lz�S���v��80D!���耩�C �G����y�H���֥ �ޙ��킋�Fsa�=p?�J�z�Pm%0�c�d����p٬u�s8х�J��[��9Q���3��b;U߰2��P��� +��V����x���#^�d�Ș�~6�)��z��OY � `!��3f�&?(��%#����ڏk&�����*DA�Jn�<��Q�?I#�L����P�`8^5�X�>�s{%D�����< �9a�w���rZK��q�d�I�y2ׇ����\�"��"���/�\��pS�p�%J��!��Нf���Y.�Y���lv�r�%ψD�����1��������T/��'��%�焒�o���� �H���H �Z�U�d��4��U�X�$ +�`HL��+���uT���9�7�5B5ܷJ�����V��+F�/ +�[0�.�ct�\K����t� �_��,O�8=��2�24B��9�rj�}�z>�����q[��祿RA"Bl����O'c5Mȯ���O�Fg@�����8bq�=q��H�`�:R�G��ٚ���(�Wzp!|�S{ն�E���W���#�$;�����.���f���8<Љx��~��z��^���$�N�.y��>H� +S9�V. +����H��A��ՠt(�%��ӽ� �_&=R;_|:��@�R���n�>G��{���r?��s��~Z�����qW1� �����ߋKmq�zT;y�A�_^���Nb���0 �u������YM��O����f�ZxR�(k�~r��Z�)���3�7��3��oD�j��v�͂-S<��1�z7�V�<��Or+�G�W�����O��7��I���L��"��J�_���z��`��endstream +endobj 4223 0 obj << -/D [4212 0 R /XYZ 71.731 510.919 null] +/Type /Page +/Contents 4224 0 R +/Resources 4222 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4192 0 R +/Annots [ 4244 0 R ] >> endobj -4224 0 obj << -/D [4212 0 R /XYZ 71.731 480.035 null] +4244 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [453.197 148.279 505.5 157.19] +/Subtype /Link +/A << /S /GoTo /D (template-specific) >> >> endobj 4225 0 obj << -/D [4212 0 R /XYZ 71.731 457.121 null] +/D [4223 0 R /XYZ 71.731 729.265 null] >> endobj 4226 0 obj << -/D [4212 0 R /XYZ 428.12 442.64 null] +/D [4223 0 R /XYZ 71.731 706.187 null] >> endobj 4227 0 obj << -/D [4212 0 R /XYZ 71.731 425.539 null] +/D [4223 0 R /XYZ 95.641 677.46 null] >> endobj 4228 0 obj << -/D [4212 0 R /XYZ 450.21 404.384 null] +/D [4223 0 R /XYZ 273.207 651.557 null] >> endobj 4229 0 obj << -/D [4212 0 R /XYZ 71.731 353.176 null] +/D [4223 0 R /XYZ 71.731 638.506 null] >> endobj 4230 0 obj << -/D [4212 0 R /XYZ 325.465 317.31 null] +/D [4223 0 R /XYZ 71.731 613.534 null] >> endobj 4231 0 obj << -/D [4212 0 R /XYZ 71.731 302.202 null] +/D [4223 0 R /XYZ 71.731 595.602 null] >> endobj 4232 0 obj << -/D [4212 0 R /XYZ 71.731 253.385 null] +/D [4223 0 R /XYZ 71.731 572.688 null] >> endobj 4233 0 obj << -/D [4212 0 R /XYZ 353.315 242.59 null] +/D [4223 0 R /XYZ 196.632 543.96 null] >> endobj 4234 0 obj << -/D [4212 0 R /XYZ 71.731 211.607 null] +/D [4223 0 R /XYZ 71.731 541.803 null] >> endobj 4235 0 obj << -/D [4212 0 R /XYZ 378.982 198.755 null] +/D [4223 0 R /XYZ 417.183 495.143 null] >> endobj 4236 0 obj << -/D [4212 0 R /XYZ 340.628 185.803 null] +/D [4223 0 R /XYZ 71.731 492.986 null] >> endobj 4237 0 obj << -/D [4212 0 R /XYZ 71.731 165.714 null] +/D [4223 0 R /XYZ 71.731 457.121 null] >> endobj 4238 0 obj << -/D [4212 0 R /XYZ 244.777 154.919 null] +/D [4223 0 R /XYZ 74.222 402.491 null] >> endobj 4239 0 obj << -/D [4212 0 R /XYZ 74.222 124.035 null] +/D [4223 0 R /XYZ 71.731 351.517 null] >> endobj -4211 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +4240 0 obj << +/D [4223 0 R /XYZ 71.731 283.836 null] >> endobj -4242 0 obj << -/Length 2755 -/Filter /FlateDecode ->> -stream -xڍk�۸�{~�-��zX�T�Xl�\/E[4�EE�(d��ٕD�(�q~}�E=־\�����I�w�»m�oc�D�m���~�`��oB�X �jB�����q|���&�{�߭��O�O�i�=���O'Ք��b%�������x�?|�U�3��"�q��O��<��͇�A�$��YSHGs-e4J�%�f B���$d�o}����h;�0�6�I~�-˘7��b9Aa��3bU۩rz�E蹳uƭ7�Q�Tys�����N��o�V+���G�Ow�]g^e���_�]��lw+9�*%���T�Z�A�)�f��k4@�V�ڴJ��ٛ��;m�ST}�����"B-D��� -w|�捭rV!T}Br��K<���t��%!Iw�������b�x�w�A�0����-�Me�]^�Ǯ�~�Ύ��ق4�L�d��5iǺ�T�=xy�� �r���vJ53ٿ�4�+�/����$ؓ -P���DB�T@���c��b���F�y��A``;Ђ��G�":#|?4�Jۣ0m�����ʚ對c_�"�α���=i,���<�(�aP�֪�pz��KUTp��g�I�B�3a���HцAԮ���j3w{d���P��A?��O�n�!�_ے�1$�O�7��d�i*��,]I+���%��!�]8� -b¥ {;wC���<u2m��~��z��4��<���H!����Nx}�R�j�����72px��Z�e���,��?�m�@�Z�;������3�[rk^��'�T�U艼�� �g]�����M�vy��W���y;ʼ�w�wY)2#@�W0p�N�U�^j>�n5�0ſ��y��Lez� -2~�aDn7�#_8he_IP*HAd�X��:�*��fA-�R�g�_�CPޘ�����SCZ.������e��0oܰo��4��t���0��I��C�{L��j�5}K�AJ�8h�*1Q��v����]�G���d��e��a -R$�s(!�����>�T��:P�8�.ٯ�T�lz>�f7r�(ٲ�ƾ�S˸�p|m\@m��j-Uf��3ʴaV�P���>2��� -�f�$ܼy�ٹh�;�DM�W"�yAnZ ����ߵ�u�:J���G��c�;�,���P+�m_�Z�J���H?��u�2�2�v����2�e`o�3_���n�~(t�1�~$�َ���ܐJ'838Y۪��.L�oM���m��i�N7��+^���)�Ma��� -$ҍ��1A*Y0;!+��Ͱ�� �ugp+��Ε�I�uK3�M]���(JG��_ل�"Қ}Gn�� pN�q dGc;�h��C?⪀��$�K��F`�Q���̛��aw��6Y�BaH� ܵ2*]��R��Í�x &G&پꤻ�!L��M5���HHy�3�ƫU��D�3t�Pr"ր=�22O>i�^e�h�$��֭l�7��j1���v��JǴ�t�q?�����& -g?��$��طy-Cv�8�0De̋��s�)��,��}BaΆq�bL���X��P��O�r�M&�8eѤ �ng��1.�|șN�K��<�~<��v�/�T��<By���(���"�T��h�\�p��pd�|�x�����Y�a�1��I�Y��v����R� -9�<*��4wٽ����4���Z3*�] -�������Gw��ٍ�& BYMSXE�6�ꊇ[9�f[npP*|߰�� /�JUw\}e���)պ�U����;*�8�W��,�K��r�5z_�8ZQj� 'l�<�n��XLH~4ھing-�! ��k16���rF��qK�H - �ّ`Rڂ�A�4 cz,PԞ!�����{��H*����W;Lz�S���v��80D!���耩�C �G����y�H���֥ �ޙ��킋�Fsa�=p?�J�z�Pm%0�c�d����p٬u�s8х�J��[��9Q���3��b;U߰2��P��� -��V����x���#^�d�Ș�~6�)��z��OY � `!��3f�&?(��%#����ڏk&�����*DA�Jn�<��Q�?I#�L����P�`8^5�X�>�s{%D�����< �9a�w���rZK��q�d�I�y2ׇ����\�"��"���/�\��pS�p�%J��!��Нf���Y.�Y���lv�r�%ψD�����1��������T/��'��%�焒�o���� �H���H �Z�U�d��4��U�X�$ -�`HL��+���uT���9�7�5B5ܷJ�����V��+F�/ -�[0�.�ct�\K����t� �_��,O�8=��2�24B��9�rj�}�z>�����q[��祿RA"Bl����O'c5Mȯ���O�Fg@�����8bq�=q��H�`�:R�G��ٚ���(�Wzp!|�S{ն�E���W���#�$;�����.���f���8<Љx��~��z��^���$�N�.y��>H� -S9�V. -����H��A��ՠt(�%��ӽ� �_&=R;_|:��@�R���n�>G��{���r?��s��~Z�����qW1� �����ߋKmq�zT;y�A�_^���Nb���0 �u������YM��O����f�ZxR�(k�~r��Z�)���3�7��3��oD�j��v�͂-S<��1�z7�V�<��Or+�G�W�����O��7��I���L�-� \P�t�k>^o�'��;endstream -endobj 4241 0 obj << -/Type /Page -/Contents 4242 0 R -/Resources 4240 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4180 0 R -/Annots [ 4262 0 R ] +/D [4223 0 R /XYZ 71.731 247.97 null] >> endobj -4262 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [453.197 148.279 505.5 157.19] -/Subtype /Link -/A << /S /GoTo /D (template-specific) >> +4242 0 obj << +/D [4223 0 R /XYZ 71.731 202.077 null] >> endobj 4243 0 obj << -/D [4241 0 R /XYZ 71.731 729.265 null] ->> endobj -4244 0 obj << -/D [4241 0 R /XYZ 71.731 706.187 null] +/D [4223 0 R /XYZ 71.731 179.163 null] >> endobj 4245 0 obj << -/D [4241 0 R /XYZ 95.641 677.46 null] +/D [4223 0 R /XYZ 71.731 138.316 null] >> endobj 4246 0 obj << -/D [4241 0 R /XYZ 273.207 651.557 null] +/D [4223 0 R /XYZ 71.731 138.316 null] >> endobj 4247 0 obj << -/D [4241 0 R /XYZ 71.731 638.506 null] +/D [4223 0 R /XYZ 71.731 115.826 null] >> endobj -4248 0 obj << -/D [4241 0 R /XYZ 71.731 613.534 null] +4222 0 obj << +/Font << /F33 1210 0 R /F32 1119 0 R /F27 1112 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +4250 0 obj << +/Length 3031 +/Filter /FlateDecode +>> +stream +xڝZY��F~�_����F���5q��l��&�dk7I�(�GbL�2O�_�h��4r6�r���h\ �����YD�y�q� �E���[�|s��ZP��/o�x�y��JBo���������Zq�.��������� ��ſ�;Ń/��EY�<{�r�`y������_�y��� A�EV{W�48�R���I`�>��c��}-�g9�����NbA�ʄ�U�Z�9S�=wyh�d�T�+g�֨�nr�.��CQmy�S�t;�(B�-�}٥������,S�Ȟ����iӽ�ج\{�o_����T��HUNg\��\kǵ���jں�Kت�r)U��\W�K;3����O�,�B�o�n�wW��`�,5��#�_l�U�+-� Qq��:�g��Qy�H�<�{h-�=��xcJt���i��$�˲hVx�Ne]a��^3�yWd;٭�J�*���ʡ��i�9�x%�Őe�ה���X������&4Z�yE&��E����Ј����H�4W��2��ӂaғ�ao�3�9�'��'X����$��d��dβ�ɒ�gu�YA���@j��G�o�ҒGr���ɹ!(�.><uv�q��1~�^��� ��_���6"��q5���N���a�:q�M�}�b3ǀnն��$��=-�`6�R�Z���Y��S:2_k V�k�yڥ���پ'C��l�����+��fl-�k`�^�q�ka��-M�1�����Pdi�f�#�S��ѷ{���^豱р�����"Z4�R�g%4*�ݣ&C?>��;:���'^>�}ãQg4+�P�6+'FP4~ �x�OE�j� �Z6��fWT��~Zv��Ҏ���`������=[@,[�Eq0I[ƚ\4f�:��49�Ct�>Q�4�a���{��ը4_ו���t�4 �4�b���� �-�Ok2���������箳��s��&Xm�)̝�;��9��4e����9_�i�ɍcW��|�<�6X������y�؞:�f\Dz��bcp�$]Ŝ�iF���E� ;dz�ȿ�n�;��=������/��9�&����Ԝ��>M# t\ SuusZ�RL�y��`�[yCQ�nN�>C��qF���LL���겊��.����:1v�wݐRd"��P?N 8��J<7`�L�)[�s<�g����N� K��-y�H/��~�Q�]ߌ7M�$9��J�x�t�_Na�c��i ��-���T�ŦP������ ��tF�XGXZިvXl���6�x^�>� 1��7���U�\��@��͖���@XG��� j������c퇻&3�mD>��)�9�V;V.�G�'�H%F���#\5+��y O�Tm65��\ĩ�ۖB��R�C�r��z� ����}1�]`��v����,�M5�J�F\��0J}Ө��c��?_R�Z���<0AzY���Y�E%���J��~F���ت�؈�6�#?����Z�_g̻���uc��W�O����;������I6��Iy�Aq���si=�J�&.��A�J��=E�oޑ߿��B,�B+p¿v��c��V`�'��=�L?�3 +ʡ���� +���B���e@0�[bV�<�E�U�/��i&@�� ���zA^g����G�[TҰQ�f���/I����÷�ޯ/< �ߜ�`�H����N` *�#1�\����с��-�ؘIE���u_�������;K��-O��`�̩W�s{(+�XGz�F�,�p� ~�q<��O�"��5���ٗ��`��Mz��=Pi�,���F�x��vi#C�m,�'� +��ާ��$��E��س�slT��� +X��B>5ʣp��3����ϐv�v&�������� +�:�u���Os&��&Ԧ�ߧU/�Y����n�=����m+r����b�78��ŀ����U�3º����*ġh[����p��Ua���â�.S�,Q����Tzp��U�U~'l���\�۔�bS9��T��U]��yp��<�~.�e�xcY��56$.;V:{YZ���z��d�����0�}V�2�v|mRө�{B�>��=��A���4k��1�� +W�$��T��B��>������aP���������=?�B�l�JoѨ������J�k�����གwFbm�A������-���eJF`�-���r{�ߔ��f��_�0�a�����^3�z���]�S`��\ +<�z���V��(?���x�o��S:,�=��ӕ�/©�w+�x>kr<��i������F(���ЄʘW\�:kwx���/g��mZ�J��(.�ghΠ���iX�O����%�%��@K�i ��V(gE��{��J��P,pb�<��i/0+��5��7݉�a���P)�\ؐÁ�2����gnYTm��٤^TsE�6���P��Bc=���uJ�Ś|�@������+BI|���\�~J��ga��o�p�51�#y���WsϼxLڞ�� +y��g�b�A�1��$<���߽��ݛ��~����Ү���\�p3�'�|g�1���(b�)��\�sϭ�f�9�!-o�K�K�w +]�jo�6��%}��SBJG�������-^0�Ӝ�Ԯ�}*�b��cp=��T^t���a���m�/�X��>�[�ܱ�1�����f�;��J� ؠ��db���d�&�K/I�`���T���#�/X���<צ �����l2��Q�����7q6��4�gI����>�B!��O����K��E8���6%Nt�`1lbq�hxŦ��H��=(GcrK�^���/��\��\^��p���<����%�_i��������3�L�#&Okf����A���O7Ԍ��Y46�3)��i��?�͔�/Pڮ��)�_�Db� +���x���b���m�GAϫ~oj�њ��� +���� �A��7�K�ݭ}{�q�=�c'��� #�ٟ�n��� +9_���sV� +¬9endstream +endobj 4249 0 obj << -/D [4241 0 R /XYZ 71.731 595.602 null] +/Type /Page +/Contents 4250 0 R +/Resources 4248 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4192 0 R +/Annots [ 4275 0 R ] >> endobj -4250 0 obj << -/D [4241 0 R /XYZ 71.731 572.688 null] +4275 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [204.95 216.02 269.707 222.874] +/Subtype /Link +/A << /S /GoTo /D (upgrade-cvs) >> >> endobj 4251 0 obj << -/D [4241 0 R /XYZ 196.632 543.96 null] +/D [4249 0 R /XYZ 71.731 729.265 null] >> endobj 4252 0 obj << -/D [4241 0 R /XYZ 71.731 541.803 null] +/D [4249 0 R /XYZ 71.731 693.235 null] >> endobj 4253 0 obj << -/D [4241 0 R /XYZ 417.183 495.143 null] +/D [4249 0 R /XYZ 71.731 649.4 null] >> endobj 4254 0 obj << -/D [4241 0 R /XYZ 71.731 492.986 null] +/D [4249 0 R /XYZ 71.731 626.486 null] >> endobj 4255 0 obj << -/D [4241 0 R /XYZ 71.731 457.121 null] +/D [4249 0 R /XYZ 71.731 569.699 null] >> endobj 4256 0 obj << -/D [4241 0 R /XYZ 74.222 402.491 null] +/D [4249 0 R /XYZ 71.731 546.785 null] >> endobj 4257 0 obj << -/D [4241 0 R /XYZ 71.731 351.517 null] +/D [4249 0 R /XYZ 71.731 541.803 null] >> endobj 4258 0 obj << -/D [4241 0 R /XYZ 71.731 283.836 null] +/D [4249 0 R /XYZ 71.731 539.313 null] >> endobj 4259 0 obj << -/D [4241 0 R /XYZ 71.731 247.97 null] +/D [4249 0 R /XYZ 113.574 521.046 null] >> endobj 4260 0 obj << -/D [4241 0 R /XYZ 71.731 202.077 null] +/D [4249 0 R /XYZ 149.15 508.095 null] >> endobj 4261 0 obj << -/D [4241 0 R /XYZ 71.731 179.163 null] +/D [4249 0 R /XYZ 71.731 480.035 null] +>> endobj +4262 0 obj << +/D [4249 0 R /XYZ 113.574 464.259 null] >> endobj 4263 0 obj << -/D [4241 0 R /XYZ 71.731 138.316 null] +/D [4249 0 R /XYZ 71.731 462.102 null] >> endobj 4264 0 obj << -/D [4241 0 R /XYZ 71.731 138.316 null] +/D [4249 0 R /XYZ 113.574 446.326 null] >> endobj 4265 0 obj << -/D [4241 0 R /XYZ 71.731 115.826 null] +/D [4249 0 R /XYZ 131.461 446.326 null] >> endobj -4240 0 obj << -/Font << /F33 1210 0 R /F32 1119 0 R /F27 1112 0 R >> -/ProcSet [ /PDF /Text ] +4266 0 obj << +/D [4249 0 R /XYZ 349.56 446.326 null] >> endobj -4268 0 obj << -/Length 3031 -/Filter /FlateDecode ->> -stream -xڝZYs�F~��Л�*��}<M9�L�[��&�dk7I�(�-1C��(�~?4�$Eɚl��b7��h\ �Y��s�cEnb�a���7�b�7��8������Ǜ/�x�"���[<>-|'�b��V�������ᠪ��c�v{yo��q�x�e���(˔goV�,�W���~���?o�~$��Jb敖�\Jw�2 �Ї�vly����,�"~_�q��I� @�P��U!=g*��.M��̟�|�,���M��e�}(�-O�w�b�n���B�ž/��Ru�2R�e`�7��f�n'|�t/46+�^��W<3��$ R��k���q�DN頚������JUwE&����Ό$�1������[��~��,��A�FbP�qd��m�*��!*��cQ��,s�*�bi�G|�ųy?����/�uZ4<��,ڂ�SYW���~��NV��B�� -���rh�A�fCFa�9 �E1d��5�(b��n�㡶 �VAe^� �s���d%4���<2�>��7G�-�`��d{��������F�����bg��P2{��dIӽ:z� �Vr 5ˁ�ᙫ��ljj}�o���O�|\�q�����<qC����h��H�1F\�ǶS{6}�C�Ng�f����1`��F����%I�sO����T�V} n��Δ������e�v�&me����e-�c!���r�KK����j\�ZX�r�Ag����|aw<YZ������Ts�`��hرzll4`=�<i`�E��M���Y � -|G���Ç�W}G��x��į�u��h�� -!T��ʉ��"�S���Zu½��u���`熟��j��#E��h1#���c�˖NQGLҖ�&�Y�%4MNt�w�O�9 hX<5��G)c5*��u�*&�5 )����p�dr����L�/�n�����oŹ묽�\p� V[t�s���}���1�@���q�C·qcr��� �����f_���ռ�ql� -T3�c�~x��18� ��bN�4#D[�"愝�YA�_b7��e�u�3������n�y���1�a>r�����#�G�i$��d��n�B�S�)}@"Oq�w�!o(��� �g�v;ΨR������=^rW]V���!�٢@'�β�R�L�X�� ���@����:��3e�W���5z�5� d�Լ%/�s��7J��� �$�G�Ԍ��L7a��8����0���h��O%Yl -��J�.����Og4�u�����[��t@���;��NgB��Ͳ�h�1W"$�n�r���Ā�>֑��:��a717���E���Ɍy�wEepJ`N���΅7 �#�I�#w�K����Q����r�6��?D.�T�mK!�z)���o�Ar=�M�^a����.��|��~Fx¦�?��N�Bb%��iT�ͱBʟ/)�-��L� ��D��,�����%^c?#L�l�ylDeǑ����]QO�?���.������w�ĕ����?�Τ�"�6y�́a`R^`P� B蹴�o%�_��y\%��"�7�ȋ��~}!�{�8�_�IʱՋ\+�ݓ��T�����T�rm��e!cqz�2 ��-1+K��"���Iee� ���E�Mz�ޤ~!�3�R~��:��4,B��An��%���7�}�����������i�x� ,�M�m$暋QU���1�pQ�r���T^�pZ�e�Ѝ,..��ĭ���=�ʜJq�;�����u�_\��e.�:����IW���.�}��fZ�ФW��ك��܁�베BW������.md(���� �B���tE4 nw��a4�,d�=+����O��(ܲ�Li.u�3������5���q����@$��ӜI�����)��i��mV7����i�<�b��|ۊ\�z�� �� )�1�_`���������>u� -q����'.$obUxwz���a�H����I^Q����Tzp��U�U~'l���\�۔�bS9��T��U]��yp��<�~.�e�xcY��56$.;V:{YZ���z��d�����0�}V�2�v�mRө�{B�>��=��A���4k��1�� -W�$��T��B��>������aP������!dϏ�9۱��[4j�t�������<r�k4x����Xi1�9��zǷ<���z7���^�7e�����1�@/X;��$��Lh�^�W|W���8���O�^�zc<#���lc�agw��O��S:,�=��ӕ�7©���'�Ϛ�tr�<�6pǴ���/4�2�U��ۢΚ��(����ިa�V��h���u���3�k-r^�'M�xl� ʒ��K��ܴ��u+�����=RK��v\(�8��S��ߴ�a������0H�b��M.l��@�^�FR��3�,��k�l��/��"\ei`(^J!��Q��:%�bM>o���E�r�x���$��\P�r?%�������ηl8����\k����gn�&mO�v�\�ڳk���� -bh���߽͛��ݛ��~����Ү���\�p3�'�|g�1���(� S�Ϲ��[���sBC.Z�җ8�z��:��2�!mP�K�F�����0���W��[��TNs�R���h�(g�����Sy��:��V�-.��b�M���nuLs�^,�,vb�w&���A�L�+�$`��2t����.��G��/�$%��V8cP�z��o�t�W���6�̴��f�����G�����T��\Kb���� -������\��X@7���Ŷ)q���a�E��(65@*���D9�[z�p�m/}!О�o���O�����F�7<��抷��;0jϬ�2d��\��-�sI6�?�P3V&楱�IY5M�����o�\}��v��N���'�UP�w�3d�{�d�o�? -�^�{SÍ�L�LU���n��]�n�۳�+��@�����AF����n�*c�B[���~�q��_�<endstream -endobj 4267 0 obj << -/Type /Page -/Contents 4268 0 R -/Resources 4266 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4180 0 R -/Annots [ 4293 0 R ] +/D [4249 0 R /XYZ 71.731 413.659 null] >> endobj -4293 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [204.95 216.02 269.707 222.874] -/Subtype /Link -/A << /S /GoTo /D (upgrade-cvs) >> +4268 0 obj << +/D [4249 0 R /XYZ 100.623 358.655 null] >> endobj 4269 0 obj << -/D [4267 0 R /XYZ 71.731 729.265 null] +/D [4249 0 R /XYZ 113.574 340.722 null] >> endobj 4270 0 obj << -/D [4267 0 R /XYZ 71.731 693.235 null] +/D [4249 0 R /XYZ 419.902 340.722 null] >> endobj 4271 0 obj << -/D [4267 0 R /XYZ 71.731 649.4 null] +/D [4249 0 R /XYZ 71.731 325.614 null] >> endobj 4272 0 obj << -/D [4267 0 R /XYZ 71.731 626.486 null] +/D [4249 0 R /XYZ 164.384 287.05 null] >> endobj 4273 0 obj << -/D [4267 0 R /XYZ 71.731 569.699 null] +/D [4249 0 R /XYZ 222.306 266.929 null] >> endobj 4274 0 obj << -/D [4267 0 R /XYZ 71.731 546.785 null] ->> endobj -4275 0 obj << -/D [4267 0 R /XYZ 71.731 541.803 null] +/D [4249 0 R /XYZ 71.731 229.071 null] >> endobj 4276 0 obj << -/D [4267 0 R /XYZ 71.731 539.313 null] +/D [4249 0 R /XYZ 74.222 198.187 null] >> endobj 4277 0 obj << -/D [4267 0 R /XYZ 113.574 521.046 null] +/D [4249 0 R /XYZ 71.731 173.116 null] >> endobj 4278 0 obj << -/D [4267 0 R /XYZ 149.15 508.095 null] +/D [4249 0 R /XYZ 421.753 157.34 null] >> endobj 4279 0 obj << -/D [4267 0 R /XYZ 71.731 480.035 null] +/D [4249 0 R /XYZ 95.641 144.389 null] >> endobj 4280 0 obj << -/D [4267 0 R /XYZ 113.574 464.259 null] +/D [4249 0 R /XYZ 252.683 144.389 null] >> endobj 4281 0 obj << -/D [4267 0 R /XYZ 71.731 462.102 null] +/D [4249 0 R /XYZ 185.773 105.535 null] >> endobj -4282 0 obj << -/D [4267 0 R /XYZ 113.574 446.326 null] +4248 0 obj << +/Font << /F33 1210 0 R /F32 1119 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +4284 0 obj << +/Length 2389 +/Filter /FlateDecode +>> +stream +xڝ]��6�}��V�\I�d)@�H���.A�-��Y�m]dQ�G6ۇ��7_���v +��p8��V>���6P[ C��0�W���_`�W�Pl�d3�������֫Le�^��WQ���P�q��+?y���4e�m� c�{�x�;�Vu����:b��:���w?_���4��Ve�~VIG��2ܞ��b�D���*E�$�ӁB��e^��z����l�E�;S5Y*m���p��c[O���~}��{�����Q��!���'A���{�c��:-�_�A`�� T��ͻ�dӭ7����u�8���Tk`�&5]_٦�U����^�� ں�(��q�e�英G>�ʛ��������=xܡ��'A�����v���ah�����t�<��;ܢ�#��!Tš��*_2s�(��>�O�E�J�-��*��G�� �"�On�营��-'�6b�2&ʍ+�t� 9 2"��"�!vyq��dQyc���wd���� ��!�P�_�16ڇ��?�rQ��1ȃV�/��\)g�./��B�.:/�E6i��2�]�ŋ�Or��f�l��ԛalox����=��sH��p�����/l���v�6:V�9�x���%r�a�� ��oǾ��Uͭ����� D�7��Ahu �����o]9�o�)x�#!�D��7l]5|����H�� �J�O�̛�����4����)J HJ� +I�)�P�Eo���[�xG��Aޔ!8�NԨ@������n{J�|�����9~Q�%�D�w����o� �Ƀ;� +��A?8y�|S�wU3(���PP�4Z�!�`t�\}��J(?����Bb�±��*PY�W�Y��>^}�8�5�TEI���.�l�>���fE ��D>��@iP%�3��a!̻ JN�jr�M�*�B��hv� U[:�4�cK���?]���=�Tc�$`F���^�7����`�R6�2i��8�<wf6�8!����>;#�u���$k@4@�� �P����ؐ�h�ƽ��Lc�Ñi�#�(�r��Z����-d}����em���ޞ�v�H�81��E������ ��$iۧ,���y3�$��ʶ|������`��� 1/��c�q���)����g5�S��m�+��Ψ|�)�5���|+$�J����f���- +�m�X��[H��h�K�E��L��̑+��^@�-!��{Y[X��%�Їd��Ӕ`?O~ +�-�%Չ�+0/O|"�#�C0t�� +҇|:l�Smr��+�X��t�<v�O�^?�r!�&9����Ǝb. +�9�~�ه98s��j���n��i��; "���|��� +|�ˁ�c�}��G�S��3�1��S������U�,@O8tc1p�K{;�i�5��4�&E���8�͌h��njpG?�. (;\��>:��{N��</:�v����m�\NTpHh�]��V��q����N\�H�����l��S�=g�0�����!Vp��`6��a������(���I.R(�IN�k����b��82y+��."�yH�>P�\AIT�����Y?K�{H�%z����e]Q}|���b"�5OCdS]ӳ�Ӳ�1�a2N�����j�H��Ur<�9��M;wQ��F�J>rD�5�֣r��������ވ6�kɱ��6�ЊB*^�v!���R��nK��'H���i�\ZDS�����4B;0�}=\0U�UC��k��"�Nh�ja/RC����ĉ��е�Tx%��u�Xف����qױ$�g��N��fy� +��S��-�%��갼�%��%�uQ�K�_��2������%�0RA8���#O�r'�|%����6���:�H���e lR�=nfU3Mp7����K�B�=�I��7����]-l�&7���1�P|Nק 7Xj�S�ǂ.��;;��#����Q+�jבGt��8�m���|��)O;#�V��������_���S�fEV�c�L�TPN~!��FN;=��P�����{M>��f��R���R� ��y�9�7y���u��6�$/wXi��Ur}��rF���-��b��c�ǁ6o� ;�7����ۧ��ٛ�{h�Ѻ�C8Jk�W=�.�$Y�Ps!��aH-�WN���#s���0{��ˇRm|w�B���)<�y��B['��2�uc�|�b�ݺPM��T[/�MA�B;�E�E#�s$�sL���B��&���l�ܘ��}�=H��h凵���������0��a��M�U1����#�ԣ�GS�]5<<n����4�>��&Y���[JO\P�t�W/�KQ�1 Jendstream +endobj 4283 0 obj << -/D [4267 0 R /XYZ 131.461 446.326 null] +/Type /Page +/Contents 4284 0 R +/Resources 4282 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4192 0 R +/Annots [ 4298 0 R ] >> endobj -4284 0 obj << -/D [4267 0 R /XYZ 349.56 446.326 null] +4298 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [312.894 353.147 351.505 362.058] +/Subtype /Link +/A << /S /GoTo /D (installing-bugzilla) >> >> endobj 4285 0 obj << -/D [4267 0 R /XYZ 71.731 413.659 null] +/D [4283 0 R /XYZ 71.731 729.265 null] >> endobj 4286 0 obj << -/D [4267 0 R /XYZ 100.623 358.655 null] +/D [4283 0 R /XYZ 71.731 718.306 null] >> endobj 4287 0 obj << -/D [4267 0 R /XYZ 113.574 340.722 null] +/D [4283 0 R /XYZ 485.041 695.392 null] >> endobj 4288 0 obj << -/D [4267 0 R /XYZ 419.902 340.722 null] +/D [4283 0 R /XYZ 74.222 664.508 null] >> endobj 4289 0 obj << -/D [4267 0 R /XYZ 71.731 325.614 null] +/D [4283 0 R /XYZ 71.731 639.437 null] >> endobj 4290 0 obj << -/D [4267 0 R /XYZ 164.384 287.05 null] +/D [4283 0 R /XYZ 71.731 600.648 null] >> endobj 4291 0 obj << -/D [4267 0 R /XYZ 222.306 266.929 null] +/D [4283 0 R /XYZ 128.474 554.521 null] >> endobj 4292 0 obj << -/D [4267 0 R /XYZ 71.731 229.071 null] +/D [4283 0 R /XYZ 71.731 539.412 null] +>> endobj +4293 0 obj << +/D [4283 0 R /XYZ 142.466 500.848 null] >> endobj 4294 0 obj << -/D [4267 0 R /XYZ 74.222 198.187 null] +/D [4283 0 R /XYZ 142.466 469.071 null] >> endobj 4295 0 obj << -/D [4267 0 R /XYZ 71.731 173.116 null] +/D [4283 0 R /XYZ 180.841 457.415 null] >> endobj 4296 0 obj << -/D [4267 0 R /XYZ 421.753 157.34 null] +/D [4283 0 R /XYZ 142.466 446.185 null] >> endobj 4297 0 obj << -/D [4267 0 R /XYZ 95.641 144.389 null] ->> endobj -4298 0 obj << -/D [4267 0 R /XYZ 252.683 144.389 null] +/D [4283 0 R /XYZ 71.731 362.058 null] >> endobj 4299 0 obj << -/D [4267 0 R /XYZ 185.773 105.535 null] ->> endobj -4266 0 obj << -/Font << /F33 1210 0 R /F32 1119 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +/D [4283 0 R /XYZ 264.01 303.498 null] >> endobj -4302 0 obj << -/Length 2389 -/Filter /FlateDecode ->> -stream -xڝ]��6�}��V�\I�d)@�H���.A�-��Y�m]dQ�G6ۇ��7_���v -��p8��V>���6P[ C��0�W���_`�W�Pl�d3�������֫Le�^��WQ���P�q��+?y���4e�m� c�{�x�;�Vu����:b��:���w?_���4��Ve�~VIG��2ܞ��b�D���*E�$�ӁB��e^��z����l�E�;S5Y*m���p��c[O���~}��{�����Q��!���'A���{�c��:-�_�A`�� T��ͻ�dӭ7����u�8���Tk`�&5]_٦�U����^�� ں�(��q�e�英G>�ʛ��������=xܡ��'A�����v���ah�����t�<��;ܢ�#��!Tš��*_2s�(��>�O�E�J�-��*��G�� �"�On�营��-'�6b�2&ʍ+�t� 9 2"��"�!vyq��dQyc���wd���� ��!�P�_�16ڇ��?�rQ��1ȃV�/��\)g�./��B�.:/�E6i��2�]�ŋ�Or��f�l��ԛalox����=��sH��p�����/l���v�6:V�9�x���%r�a�� ��oǾ��Uͭ����� D�7��Ahu �����o]9�o�)x�#!�D��7l]5|����H�� �J�O�̛�����4����)J HJ� -I�)�P�Eo���[�xG��Aޔ!8�NԨ@������n{J�|�����9~Q�%�D�w����o� �Ƀ;� -��A?8y�|S�wU3(���PP�4Z�!�`t�\}��J(?����Bb�±��*PY�W�Y��>^}�8�5�TEI���.�l�>���fE ��D>��@iP%�3��a!̻ JN�jr�M�*�B��hv� U[:�4�cK���?]���=�Tc�$`F���^�7����`�R6�2i��8�<wf6�8!����>;#�u���$k@4@�� �P����ؐ�h�ƽ��Lc�Ñi�#�(�r��Z����-d}����em���ޞ�v�H�81��E������ ��$iۧ,���y3�$��ʶ|������`��� 1/��c�q���)����g5�S��m�+��Ψ|�)�5���|+$�J����f���- -�m�X��[H��h�K�E��L��̑+��^@�-!��{Y[X��%�Їd��Ӕ`?O~ -�-�%Չ�+0/O|"�#�C0t�� -҇|:l�Smr��+�X��t�<v�O�^?�r!�&9����Ǝb. -�9�~�ه98s��j���n��i��; "���|��� -|�ˁ�c�}��G�S��3�1��S������U�,@O8tc1p�K{;�i�5��4�&E���8�͌h��njpG?�. (;\��>:��{N��</:�v����m�\NTpHh�]��V��q����N\�H�����l��S�=g�0�����!Vp��`6��a������(���I.R(�IN�k����b��82y+��."�yH�>P�\AIT�����Y?K�{H�%z����e]Q}|���b"�5OCdS]ӳ�Ӳ�1�a2N�����j�H��Ur<�9��M;wQ��F�J>rD�5�֣r��������ވ6�kɱ��6�ЊB*^�v!���R��nK��'H���i�\ZDS�����4B;0�}=\0U�UC��k��"�Nh�ja/RC����ĉ��е�Tx%��u�Xف����qױ$�g��N��fy� -��S��-�%��갼�%��%�uQ�K�_��2������%�0RA8���#O�r'�|%����6���:�H���e lR�=nfU3Mp7����K�B�=�I��7����]-l�&7���1�P|Nק 7Xj�S�ǂ.��;;��#����Q+�jבGt��8�m���|��)O;#�V��������_���S�fEV�c�L�TPN~!��FN;=��P�����{M>��f��R���R� ��y�9�7y���u��6�$/wXi��Ur}��rF���-��b��c�ǁ6o� ;�7����ۧ��ٛ�{h�Ѻ�C8Jk�W=�.�$Y�Ps!��aH-�WN���#s���0{��ˇRm|w�B���)<�y��B['��2�uc�|�b�ݺPM��T[/�MA�B;�E�E#�s$�sL���B��&���l�ܘ��}�=H��h凵���������0��a��M�U1����#�ԣ�GS�]5<<n����4�>��&Y���!\�B��Hӿz�_J�?�I�endstream -endobj -4301 0 obj << -/Type /Page -/Contents 4302 0 R -/Resources 4300 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4180 0 R -/Annots [ 4316 0 R ] +4300 0 obj << +/D [4283 0 R /XYZ 375.655 303.498 null] >> endobj -4316 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [312.894 353.147 351.505 362.058] -/Subtype /Link -/A << /S /GoTo /D (installing-bugzilla) >> +4301 0 obj << +/D [4283 0 R /XYZ 71.731 288.39 null] +>> endobj +4302 0 obj << +/D [4283 0 R /XYZ 71.731 273.446 null] >> endobj 4303 0 obj << -/D [4301 0 R /XYZ 71.731 729.265 null] +/D [4283 0 R /XYZ 71.731 224.395 null] >> endobj 4304 0 obj << -/D [4301 0 R /XYZ 71.731 718.306 null] +/D [4283 0 R /XYZ 111.412 198.492 null] >> endobj 4305 0 obj << -/D [4301 0 R /XYZ 485.041 695.392 null] +/D [4283 0 R /XYZ 71.731 170.596 null] >> endobj 4306 0 obj << -/D [4301 0 R /XYZ 74.222 664.508 null] +/D [4283 0 R /XYZ 71.731 170.596 null] >> endobj 4307 0 obj << -/D [4301 0 R /XYZ 71.731 639.437 null] +/D [4283 0 R /XYZ 71.731 145.66 null] >> endobj -4308 0 obj << -/D [4301 0 R /XYZ 71.731 600.648 null] +4282 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +4310 0 obj << +/Length 2390 +/Filter /FlateDecode +>> +stream +xڥY[��6~�_�#cF�DYj� ��$M�Y4�Y�C[�E����Jt&��~��CZ�ef�.��ȣ�s��r⟜-�X�xD��R5[77�l�7�n��X8������Wo�x��<�g�Y"�ȈN�LE����~��mY}�/"���;͋���Tu]���\J�ϓ0�8��7G T�y�(�ǹ�2�̕Hf"N+d"� ~��F�1 +E�mB���G*x���2(;~��Ǻk�2������aTC��5o><}��7^z}�+�*۸���+��V��K�ny�8J���fx��_C�ǹ0�2��Y�4�tu�����Ν����v �g��BF"w&�Z���F�S�D�5�MG*$9�!�CUj!䓖M0M��q�I�+12O���<�!�@/�Էl���\�X�E��ᏺd��b�\�۾h��������1�#w\�ɟk]�e�u�����q"L|<�A9�1!7�?0��b*(���<^����bOffc䑈�c���F���Jwf�_�0�~b<ݱMיL�w3EYޯ +��� +������Pl4k��x�.q�іd�,U�P2�`�����Y��� ���� !�Y"��fR�y<��ls�����CI��/�����K�Py&ry�(�������P�r��Paf/�_�m��uFx�9R���*YN&IE����_����Y��B|�a���n��v'���s���O��Ǫp'@�;�]�r���Cm�͑D�H��)�p�DW��YL��-M�>'D::<�HDt�<]�0�^f�p^f�r�2�3�5�`8f�(�<���*�i���,| +Ʋ�ևF�Ƨ3�6����f���n=t���$Eϕ PH����N�'�7�"�p���4 �2-_*�J!�,��FW���*J]����1��e�ҽ<�/o��j����ŀ���N��k6���E"vQfkV2m�[w��� +[,Up�����K8F�j�:��ӵ�O�|c5��8 �CY�;��.��a��(J�����$�����A��%� �u�~�}튺��c^7E�"u�(� T�t]���ߖ��������z����KJ7�%ˮ��/�u7خ�6�H~-��.��{�7�0�v������W��[֓V��D-9�<[I|rV�N�f���M��w O��������;.��ESt.��r�-���i���j��ɺ�P�5�$9>�T9<��ؒ����K��Tvzho�u ���o�qh�5]�^��1��t�k��]nz[��QO�/�v���8N��t{TN&d˪�ޖ�vN ��}I�0����I�7�k��.#̩�2�qhb���4L���ԃ ��76+<��^�8έ!t_�E����oJ���D�7�-��#�o�#�%<�r�bK��m��c�pM,2�s� �ʽn +���A���Eam��[����\�&4~��pB��ު��}�葟��Zn�"�?��gRE�^B��^����Զ�%�%��2�k�Щ9�&ͭg�t�Uc 1����^ea�Wm�c�4�SD��Oh�#җ��ew���^O�,�E�~O�K2Qҡ��F�^<V�;ۑ۸��S�ʌ*���6���R�z� �]�����r̒c5e��jO*���VڧO�+��az�9 +`�^I��Y��5���� ������+�ñe3)����\�����p��O2�`C!�8���.�����.@���#$��ҝ~�����<#c3�1��Pw^T3���f2��*N�Ne��~o���7�6������}�����.�(��X���\V�D��$*Ę��5]���N7$�N������G�cen�}���ҟ`�W#���.�������늚�k��F7�T�K�*Q��h-��~^�e"��h��3�w�N���:�*�r�����n�H�t�5-��wF{9�F��њ�ܻI��'���zW���`k� +�̌iP�NT��|��srJT��I�A�P7v�¬�o8:�t]�1ą4!����'��/��c�"��zh;����#�h�*�1Ws��k˛��S�ڌ8���Rl��l$�ȁ�6k$�$�ٙ`H�~IY�^rV&Hw0�WT�-d�8����U����O(@�%�rg+�#,�C��eDŽ���U+��;Q��\|���R���ѧF�������JM�0�x��V���|��9l�v�@1�}�O��Zs��B(�dy��Ϛ�c�؎E�b�� ؋O�PF�19��D�6~p�a�}��N����K\e��L�������5�JS�/Q���ݢFa��DN�X��9��E1��kHe���{Ë����i���>�~;�T�~BH�,._��aD���AE�a�'B�e�s?\r�/W7V�endstream +endobj 4309 0 obj << -/D [4301 0 R /XYZ 128.474 554.521 null] +/Type /Page +/Contents 4310 0 R +/Resources 4308 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4192 0 R +/Annots [ 4317 0 R ] >> endobj -4310 0 obj << -/D [4301 0 R /XYZ 71.731 539.412 null] +4317 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [422.465 613.447 467.048 622.037] +/Subtype /Link +/A << /S /GoTo /D (security-mysql) >> >> endobj 4311 0 obj << -/D [4301 0 R /XYZ 142.466 500.848 null] +/D [4309 0 R /XYZ 71.731 729.265 null] >> endobj 4312 0 obj << -/D [4301 0 R /XYZ 142.466 469.071 null] +/D [4309 0 R /XYZ 71.731 693.235 null] >> endobj 4313 0 obj << -/D [4301 0 R /XYZ 180.841 457.415 null] +/D [4309 0 R /XYZ 184.704 677.46 null] >> endobj 4314 0 obj << -/D [4301 0 R /XYZ 142.466 446.185 null] +/D [4309 0 R /XYZ 387.861 677.46 null] >> endobj 4315 0 obj << -/D [4301 0 R /XYZ 71.731 362.058 null] +/D [4309 0 R /XYZ 71.731 662.471 null] >> endobj -4317 0 obj << -/D [4301 0 R /XYZ 264.01 303.498 null] +4316 0 obj << +/D [4309 0 R /XYZ 142.466 623.907 null] >> endobj 4318 0 obj << -/D [4301 0 R /XYZ 375.655 303.498 null] +/D [4309 0 R /XYZ 74.222 575.891 null] >> endobj 4319 0 obj << -/D [4301 0 R /XYZ 71.731 288.39 null] +/D [4309 0 R /XYZ 71.731 550.82 null] >> endobj 4320 0 obj << -/D [4301 0 R /XYZ 71.731 273.446 null] +/D [4309 0 R /XYZ 71.731 497.021 null] >> endobj 4321 0 obj << -/D [4301 0 R /XYZ 71.731 224.395 null] +/D [4309 0 R /XYZ 71.731 497.021 null] >> endobj 4322 0 obj << -/D [4301 0 R /XYZ 111.412 198.492 null] +/D [4309 0 R /XYZ 71.731 474.242 null] >> endobj 4323 0 obj << -/D [4301 0 R /XYZ 71.731 170.596 null] +/D [4309 0 R /XYZ 71.731 440.299 null] >> endobj 4324 0 obj << -/D [4301 0 R /XYZ 71.731 170.596 null] +/D [4309 0 R /XYZ 204.252 396.563 null] >> endobj 4325 0 obj << -/D [4301 0 R /XYZ 71.731 145.66 null] +/D [4309 0 R /XYZ 71.731 381.455 null] >> endobj -4300 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R >> -/ProcSet [ /PDF /Text ] +4326 0 obj << +/D [4309 0 R /XYZ 71.731 358.541 null] >> endobj -4328 0 obj << -/Length 2326 -/Filter /FlateDecode ->> -stream -xڭXQ��6~�_��q��ֲ-�n�[L���)n��9�C�%V��Vj+����G�T�$3s@qX�F�(�ɏ��,�r��b��OR�$W�M{�v���F2ǒY���nO�Y)�<�=lg�T��s�D*�=T�Dw�����b��8����74����O�4�f�R��n��ѧ�o?ݼ{8I�ҕ(��U!ϵ��(e�D���q!�,�BfB -����d52&��s<Y~��DE� g��*K������BF��8�<1G=�uch�����p0�c_;�aۖ�n�P*h���?�nG�O:�Nm��4�5V�=싣?�p�)���iHZS�����\ܸ�v*<[��K���MVwd ���4 ��'U�J���ue� ����p�&��q���T�ad�GM�e!cT�o�"S���aDi��ߛ�����K}X�zݹ�×��)AǸLx���?7F�d�Mkڵ�ڱ/%�����[M�t�I1i��_���/t�hf2F��$93G�72��*��:��qjm?��n �c���9]�ǖ�k���"S��m��s�5����w�ˈ�mY��r%s��o~�-�U�?�߿�����"J3)�2��f���|��t���"�_=��2��� �R��(�)��t&3�����R� G����h������=`�{��T�(J4I.�v<��g���;�� ���<���w{AK?X��lB8�Q�~֚wB�i�\��NA�wi�,ID�� -gY�,@��ɿ�T�˃P�ϧ�!2�\]��D��_�<�_�rO/'������4�Ū,�B�*����W ð��ck:�H�E -���dm�3<ls$6���L(��X�F�����P�K���4 �dZ����Y�8 &�$A �$g���� |�Pw�.O����|�́�E�������[2"�BI"�(�9+��0�؊�{퓥��`m��_Hp��2�c;�Oa�5ͦ�8�����-����8��I-��z�99����~�;0��$ H�f?���r���N�@G -i�� ��0>����#<��j�0 -�7� �r�p������i�i���<�nk|$$L�����O@W��=����WOJ��3��$�|& E�E�:�|m�6>��qGé�4y�~����a���K��RRɧ�s�ku�x�xV��"QX�<�T�圎K�%Ox�["U��]��ѻ��9f�W3��DC8[�3�x%�p��̞�z -Z�Y/����"�,�e�Sm��ZV��q�"������=+��q :�c�%�Q"��@����l&|�)��Kp�&k&���l���N�2د�!�[���"ѻ��/��v��x��2מ� e��r���N�ԗ�wxc�QNZ"dqˉ �5/���P��j�P0�j�*� ]����&gj���pjB`�Ϋ� ���C?=:g;*ՙӟ�:�ۙ\!�����F� -\���M���r^F�L8v,�`�����P��� -�М�2�^�v�MgCl�`��� ���c[�c�����A��}Q&|At*�p�nx�E�ah�!eF��0L8 '6蛳�<��&H����!�V#J�ٔn�Qw�|��6>=V�(�=��[@��g�0�@���������n����3����H -�JQ{�Ve'O!N�q�q�(,r�S���<��0���L�OŻ�ϧ�{��Xhl�?�Q�6��F�]91>5�{��~c� -1�A���:�e��Bt��<��gBSc-�\a��p���C{}��ER��R1B҅!ᛞ!B�R���U&��[C��=���&�����\G�?_)iw:���HA'HP��w�̷[ D �n,���4��u�;�^�xE����2��l���f��T9h� Mm}�-����# -{>2Cޅǯ�����Av�I��U���}�-m>�����<�z!�>�Ѥn���t#O�4�� ��~��88ɸ �b�C`E"x�"�R�� a���-��d�DwV?�g��Y<+}2����#}SJc.��s��A�W�,�9\��Q�-�p�C+;5���l����v#F6l1 ���*F���;k�|�9��ԝ�GV�Ra��"[]a�E�z��݈��'$ />��mFp�M��ƅ�>�5��9�����U톰�&�Tjx��*,)�2�aW7�Z�;��/6U�.��%IJ��qR� ���`!����p��g���Ҟ�����o�#�էx���%�Ԭ(_��~}��u�endstream -endobj 4327 0 obj << -/Type /Page -/Contents 4328 0 R -/Resources 4326 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4357 0 R -/Annots [ 4335 0 R ] +/D [4309 0 R /XYZ 194.459 342.765 null] >> endobj -4335 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [422.465 613.447 467.048 622.037] -/Subtype /Link -/A << /S /GoTo /D (security-mysql) >> +4328 0 obj << +/D [4309 0 R /XYZ 357.109 342.765 null] >> endobj 4329 0 obj << -/D [4327 0 R /XYZ 71.731 729.265 null] +/D [4309 0 R /XYZ 71.731 330.645 null] >> endobj 4330 0 obj << -/D [4327 0 R /XYZ 71.731 693.235 null] +/D [4309 0 R /XYZ 197.727 298.232 null] >> endobj 4331 0 obj << -/D [4327 0 R /XYZ 184.704 677.46 null] +/D [4309 0 R /XYZ 328.437 298.232 null] >> endobj 4332 0 obj << -/D [4327 0 R /XYZ 387.861 677.46 null] +/D [4309 0 R /XYZ 71.731 296.075 null] >> endobj 4333 0 obj << -/D [4327 0 R /XYZ 71.731 662.471 null] +/D [4309 0 R /XYZ 71.731 281.131 null] >> endobj 4334 0 obj << -/D [4327 0 R /XYZ 142.466 623.907 null] +/D [4309 0 R /XYZ 71.731 259.674 null] +>> endobj +4335 0 obj << +/D [4309 0 R /XYZ 115.567 206.247 null] >> endobj 4336 0 obj << -/D [4327 0 R /XYZ 74.222 575.891 null] +/D [4309 0 R /XYZ 71.731 178.351 null] >> endobj 4337 0 obj << -/D [4327 0 R /XYZ 71.731 550.82 null] +/D [4309 0 R /XYZ 71.731 153.281 null] >> endobj 4338 0 obj << -/D [4327 0 R /XYZ 71.731 497.021 null] +/D [4309 0 R /XYZ 187.785 120.867 null] >> endobj 4339 0 obj << -/D [4327 0 R /XYZ 71.731 497.021 null] +/D [4309 0 R /XYZ 71.731 118.71 null] >> endobj 4340 0 obj << -/D [4327 0 R /XYZ 71.731 474.242 null] +/D [4309 0 R /XYZ 71.731 113.729 null] >> endobj -4341 0 obj << -/D [4327 0 R /XYZ 71.731 440.299 null] +4308 0 obj << +/Font << /F33 1210 0 R /F32 1119 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R /F48 1896 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +4343 0 obj << +/Length 2690 +/Filter /FlateDecode +>> +stream +xڝk�۸�{~�{@Xs%R�;��\�i�4 ��}�)٦mu���Tr�_��P�-��� ��!9��Y��p��"UI<[�/��f~�"d�%�,G4?ܽ�~��,y�fw�Y�"C>J�,����?��lʟK�W��w{M���?eU4z��x�j�?/�u��7w� b��<SO2��P��-e r^��c�Dx� �h��Lg�A��`O���$e|~�<�:��6;�7�%�6��}�l�U�f��Y��"����F��Z��q���[]T�p������䁈§�5�yDX��a]��Ya]�|"���a�^?-(�S�|��I!�RDi����4� �)��t��4�|*����6�B11*B����=�}�Y�EY}F!m6�6�^L���ɒ�e�,J��P�ON�L��H�$��Ѿlta����������H��U������틆 f�A�[R�G�����p��};Z��D�?��T���%�m��@�i�0��hjͣ/8�;S��A�miƇ�+B�_�YiB�ZVP>8Y���WE���v�����"��f�]�ivKG��!� +c��~E+`V�]��9����� +������w�T�H�4�$iN�OA�=|{}���n������I�� +.��]�}�� 26� �j�&ޠy���,_�dv�u��Á�7��"� �!�D��ѷ��uZA���Q{��!�O��3/g5!��X��Ə�M����ta��� +~GFl���Y>A��O��;�rG������v�:� c��>wh�Ɗa�� ^9P���)�s43*�|f�~�_j���@�с>�n�&D뮮�S5�����|Q���P%H�g7�&���x��#��t�t���+��#�h}AFGCϓy��A���N�]�ԉX:�E���*O� +��vE�$f�������m���V�E���-}�f��wo8����ij�q</����,EDϥ�i��/`�y���C=g���� ���n���LL��K{�O���@�/e1by)�+w�@� +^��Icv'�>�t�OQ �;�no^��p#��0����p�k�f�d�6�+Wׄޔ�^۶{�a�0s4�]Gnp1E�r(�ۅI`N����[�n�]���g]�� +��$�X��s +�9��TV�ۏ�7��)rq��5���l����_,�>_�,��ꢎ�t�]�ŻTltI<�:�o{_h�J����A�q�x���K��9�����ai6x�+Z�J�tS�*�"�Ƴ��8i���1�˯oگS�&�ȡ%J�kg��!�Mi!����:�BEzn��9�7��EW���� b������T���$���`�}��$�ݗz$y7�J����J;tu�8g\Y����Z7l��]>z�_��%'�8r=�(�d��U�@�s�X�M�xc����r)>D�l�%@N'�RV��zC�#մ��KD���ӏ�ռ�E���f_@d"�T ��@�-�r%7�&�g�ycΠ:��=d,E6ܣ�p�@�����*�g��z oTUl`y(��ND�oо��-,eNL�thhg����U�9:���G�V�Ɇ�������Y:S������y��h�s����n�0�=e&$��'�d�ɞc��3��Qصe1�L�eC�@{�$`0�,����ہ���|������D"N2^g2R;���F����'�EQr�������b|ITU��$s�d�n;�ל��n(�-� +����N���T7��zZ��I��c��rȌ�f�e.�ua�O�o���%����_lD){�����D�0e��:��]8ǖ(�=��x�x1z��ޢ��\k���u۠+w5��'J���5�-\��([���/��l#��1$�Ҕ�A�|��\��ǖ���<���� ��F��N�hph�`�e�v�\�_��GW��ĭ����7����s��Jc9=t}G��VA�E�K�W� :�/�'��2��w�&�E����h�k�K�r^�X�)v�������les���|sݛ����7�(nӦr: ��B��r �Vu���<ԕ�[(rn|�����HZ��ɗ���rHK�kš�>�<�!�rt)�YM�r�D�忰4UyĔ��!�55���J�}q�����S�#�A��X6-q<^�Ug�6�إ�28���>6���7�-V�!Ӑ +�vX �M�������=[.P6�7a����bVڇ����f����E�x�?[��aU�f����f���5ߛ��ۣ�(*�����{����z�r�h5̹��bƗ�&���r�Y���U�țC@���W�:J���|���P'�� ��a���B�_�;(�۞'� D�%I +�<U'I�k;��K���r�+�~T�Ł��/��"��k��azs������{A���)�:�i3<� �j�V&k�>��/�C���j(�p�atB���5��R��x`�;2?"�0d\�I*�E�e�(��'%qG|��s�Y��u�M&��$Kp�Õ ���i>?l9ƽm���N6���D�o���F��}�[/:������SUlj�v�E:���^��~���#ɤ)��`�� +4���u��Pt�endstream +endobj 4342 0 obj << -/D [4327 0 R /XYZ 204.252 396.563 null] +/Type /Page +/Contents 4343 0 R +/Resources 4341 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4392 0 R +/Annots [ 4373 0 R ] >> endobj -4343 0 obj << -/D [4327 0 R /XYZ 71.731 381.455 null] +4373 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [208.787 359.487 228.214 368.398] +/Subtype /Link +/A << /S /GoTo /D (gloss-mta) >> >> endobj 4344 0 obj << -/D [4327 0 R /XYZ 71.731 358.541 null] +/D [4342 0 R /XYZ 71.731 729.265 null] >> endobj 4345 0 obj << -/D [4327 0 R /XYZ 71.731 331.363 null] +/D [4342 0 R /XYZ 105.604 708.344 null] >> endobj 4346 0 obj << -/D [4327 0 R /XYZ 197.727 298.232 null] +/D [4342 0 R /XYZ 140.184 708.344 null] >> endobj 4347 0 obj << -/D [4327 0 R /XYZ 328.437 298.232 null] +/D [4342 0 R /XYZ 184.766 708.344 null] >> endobj 4348 0 obj << -/D [4327 0 R /XYZ 71.731 296.075 null] +/D [4342 0 R /XYZ 71.731 706.187 null] >> endobj 4349 0 obj << -/D [4327 0 R /XYZ 71.731 281.131 null] +/D [4342 0 R /XYZ 105.604 690.411 null] >> endobj 4350 0 obj << -/D [4327 0 R /XYZ 71.731 259.674 null] +/D [4342 0 R /XYZ 140.184 690.411 null] >> endobj 4351 0 obj << -/D [4327 0 R /XYZ 115.567 206.247 null] +/D [4342 0 R /XYZ 185.563 690.411 null] >> endobj 4352 0 obj << -/D [4327 0 R /XYZ 71.731 178.351 null] +/D [4342 0 R /XYZ 71.731 688.254 null] >> endobj 4353 0 obj << -/D [4327 0 R /XYZ 71.731 153.281 null] +/D [4342 0 R /XYZ 105.604 672.478 null] >> endobj 4354 0 obj << -/D [4327 0 R /XYZ 187.785 120.867 null] +/D [4342 0 R /XYZ 132.164 672.478 null] >> endobj 4355 0 obj << -/D [4327 0 R /XYZ 71.731 118.71 null] +/D [4342 0 R /XYZ 74.222 654.545 null] >> endobj 4356 0 obj << -/D [4327 0 R /XYZ 71.731 113.729 null] +/D [4342 0 R /XYZ 71.731 629.475 null] >> endobj -4326 0 obj << -/Font << /F33 1210 0 R /F32 1119 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R /F48 1896 0 R >> -/ProcSet [ /PDF /Text ] +4357 0 obj << +/D [4342 0 R /XYZ 433.301 613.699 null] +>> endobj +4358 0 obj << +/D [4342 0 R /XYZ 159.09 600.747 null] >> endobj -4360 0 obj << -/Length 2690 -/Filter /FlateDecode ->> -stream -xڝks۸�{~�z3�H3L��io|9�M�4S�}M��P"$�����뻋]P�(�?h�X,�^�_x��/_$��L�8Zl�W�b;�y�3ŚI���_]� �E&�8X�����R��\��X�t�j���ZF��F���A�ð�OYU9�ޮ|?ZެBo���?����~� -����B��A(k�L�i�H�!>�K�6"�\��;��Q�3>I�K��"�d�����ӑK��Z�=��O��S]�oYg Kp�J�e�-�!!���p����N���_������3������&4O(�Q��������ϔ5�~��7��z��o�<��D�0I�Wґ�)%1�KJ�_����ϕ4���(H�̩���|���gU�e��T����NM��xɚ�u�4L���H��Az$y�FY� Icxu(��F�d���EW#�I�|J��2��Ӳ5��C��,�`�*�UIJ�j���r�kNU�m'G -� ̜�T���5�m��J��Ӣe�~�l�� -ū/��z]��F��hǥ�+B�_珄�(B�Y6/P?��w]�H��U�3﷽*M�������.7���H��: ܃^��Wtv��ՃWJ�q��Z �L� V��*�)���8��ɋ��1ݷ��La�.�~A0?]���,���{�ݗߗů�����Ck����v�ш$�Ӵ��e��/��"=�%�X���oi��Z�? G��j��=m��T|�̈́�s���ItF��R�V�V�*�;���b���|�� 2,>�e��eEp��V��憶�:� m�ތ1ec�x�7�������jF�S�N=lk����$8ؓ�&aB���m,wC�5��W�y$T ��bPX��� �Y�,B>:HoN/���RH�;�Rttt�,^�i�e�������]�رr���[�m��dY�R�|Ш�+�$5��H^��"h�֦]�].x� �6/w�K>������5�n���4b^'���T"� ~9k��K�\l�b�A�Q�� -�WL���Ks��H٫� -@�/e>ay)�VοC� -Q��I"'�>y���O��;�,�no~�p+��U0����p�g�e�d�6�/7ׄ.�^mM�?ҲeX� ���%�x�2���m�$0'�U��/�f7����3��-���%0�C6x���o��s �M�����_n�&�Zܫ|˲�,ʮo�K��z�굫�֮6�^���_|K�NGK��zp�ƾ�=�J�d�v�wh�4`��۠`Д4S�!M�/�����@5��B*�h�HA[��V�������:Wl�ZP���v��Q�3�*J�/�5V�9�::�q$���X��*/N�Ĵ��'[�^,ғ�6�����"�P����>6(%�˖�G�바���꼱��������Z5��].{���'�8 =�(��xY�*$SN��G,�&K|�M������cq5�ǖ ke�����s;����i���B������ӟJ�����dZ�V_@�� ��@�-7�r-7�&�s`�us�h:���;d$E:����O$�{��ʵc��~ _TU�`�/d����i�ܠ� 16[�ʜ�������I�1:����@8��o�l��N�? �&���6>��0�{�f=!�}�9g�"~�_��ٝ2r�w2��Ω]�9�8��m1���tC�@�N���W�����y��K���|��]}�sB�)��3��%�@��@�G,9MQ_�p�|c�`qѮ%�*7S�;@�ڶ=�k.Sm?6T����?�=�7�\F���oڶ��1:-���JI퐞N͜�Ȝ��Z=]l�O�@���'�]�&-�N�Qtz��C�tA�Q�w��&�0vj�0u�ڡ���*;��M�`(�5����v�j��v¶�-���/4��L1et��R�Sz�* �q��}��Ż�?O�a|�ɫN�à��V�ƅ��`[�ۇ˗�E�ͯ��[��<�N��͋��4�;�|Ba�=G��x\����5Oe��s�;����p�GM�/KG�6�4⦟P`��E�E*���";W���qꒈ�։��]�vx��A����.|#�ⶱ�n��ӌQM�F-;��g��4��Ǻ� �����L~Q�'�tӿt���c�B\C(�I�p ��� 'ϑ���<]g�H��g��A2�m}�oM�&ܼQ�^F\���:��N쑸li�,��8�cۈ�k�K��:��8 ӓ7��s�orM�!���44>İ����?x>p�Υp� M��ڳQ������y�b8X�e���3��b��Tz6�M�E�t=�0j��,�YI��p�k[*(��S�q�v�[9Z�xY.�����8Q���9u�D���jC���j��p�/h��_d~�4N\��Km�e=v;�&���&Maǖ%�I5��^c� -l�|��e�_?i�"OH�u�]� -a�@�z��<H!���� �$u�R'`>�ǯ9����M�U�����R(f5�R��1;!P�T���c�y�G�U=�@���c5�f���w�M���@���k2���g�J.��:�&��m����� ���i?�~�Ӯ�8�\tŧ���v���EID��_�{�����G��*/jj���;�W6��\���m�$�i!�NZ:&���{꿯��|��Jendstream -endobj 4359 0 obj << -/Type /Page -/Contents 4360 0 R -/Resources 4358 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4357 0 R -/Annots [ 4390 0 R ] +/D [4342 0 R /XYZ 71.731 567.706 null] >> endobj -4390 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [208.787 359.487 228.214 368.398] -/Subtype /Link -/A << /S /GoTo /D (gloss-mta) >> +4360 0 obj << +/D [4342 0 R /XYZ 95.641 543.96 null] >> endobj 4361 0 obj << -/D [4359 0 R /XYZ 71.731 729.265 null] +/D [4342 0 R /XYZ 74.222 513.076 null] >> endobj 4362 0 obj << -/D [4359 0 R /XYZ 105.604 708.344 null] +/D [4342 0 R /XYZ 71.731 488.005 null] >> endobj 4363 0 obj << -/D [4359 0 R /XYZ 140.184 708.344 null] +/D [4342 0 R /XYZ 71.731 457.121 null] >> endobj 4364 0 obj << -/D [4359 0 R /XYZ 184.766 708.344 null] +/D [4342 0 R /XYZ 71.731 434.207 null] >> endobj 4365 0 obj << -/D [4359 0 R /XYZ 71.731 706.187 null] +/D [4342 0 R /XYZ 162.252 418.431 null] >> endobj 4366 0 obj << -/D [4359 0 R /XYZ 105.604 690.411 null] +/D [4342 0 R /XYZ 254.556 418.431 null] >> endobj 4367 0 obj << -/D [4359 0 R /XYZ 140.184 690.411 null] +/D [4342 0 R /XYZ 327.124 418.431 null] >> endobj 4368 0 obj << -/D [4359 0 R /XYZ 185.563 690.411 null] +/D [4342 0 R /XYZ 499.517 418.431 null] >> endobj 4369 0 obj << -/D [4359 0 R /XYZ 71.731 688.254 null] +/D [4342 0 R /XYZ 207.161 392.528 null] >> endobj 4370 0 obj << -/D [4359 0 R /XYZ 105.604 672.478 null] +/D [4342 0 R /XYZ 270.687 392.528 null] >> endobj 4371 0 obj << -/D [4359 0 R /XYZ 132.164 672.478 null] +/D [4342 0 R /XYZ 476.12 392.528 null] >> endobj 4372 0 obj << -/D [4359 0 R /XYZ 74.222 654.545 null] ->> endobj -4373 0 obj << -/D [4359 0 R /XYZ 71.731 629.475 null] +/D [4342 0 R /XYZ 71.731 372.438 null] >> endobj 4374 0 obj << -/D [4359 0 R /XYZ 433.301 613.699 null] +/D [4342 0 R /XYZ 356.244 361.644 null] >> endobj 4375 0 obj << -/D [4359 0 R /XYZ 159.09 600.747 null] +/D [4342 0 R /XYZ 122.471 348.692 null] >> endobj 4376 0 obj << -/D [4359 0 R /XYZ 71.731 567.706 null] +/D [4342 0 R /XYZ 74.222 330.76 null] >> endobj 4377 0 obj << -/D [4359 0 R /XYZ 95.641 543.96 null] +/D [4342 0 R /XYZ 71.731 305.689 null] >> endobj 4378 0 obj << -/D [4359 0 R /XYZ 74.222 513.076 null] +/D [4342 0 R /XYZ 179.919 276.961 null] >> endobj 4379 0 obj << -/D [4359 0 R /XYZ 71.731 488.005 null] +/D [4342 0 R /XYZ 417.149 276.961 null] >> endobj 4380 0 obj << -/D [4359 0 R /XYZ 71.731 457.121 null] +/D [4342 0 R /XYZ 71.731 256.872 null] >> endobj 4381 0 obj << -/D [4359 0 R /XYZ 71.731 434.207 null] +/D [4342 0 R /XYZ 71.731 225.988 null] >> endobj 4382 0 obj << -/D [4359 0 R /XYZ 162.252 418.431 null] +/D [4342 0 R /XYZ 236.948 215.193 null] >> endobj 4383 0 obj << -/D [4359 0 R /XYZ 254.556 418.431 null] +/D [4342 0 R /XYZ 289.53 215.193 null] >> endobj 4384 0 obj << -/D [4359 0 R /XYZ 327.124 418.431 null] +/D [4342 0 R /XYZ 434.503 215.193 null] >> endobj 4385 0 obj << -/D [4359 0 R /XYZ 499.517 418.431 null] +/D [4342 0 R /XYZ 71.731 187.298 null] >> endobj 4386 0 obj << -/D [4359 0 R /XYZ 207.161 392.528 null] +/D [4342 0 R /XYZ 71.731 187.298 null] >> endobj 4387 0 obj << -/D [4359 0 R /XYZ 270.687 392.528 null] +/D [4342 0 R /XYZ 71.731 162.361 null] >> endobj 4388 0 obj << -/D [4359 0 R /XYZ 476.12 392.528 null] +/D [4342 0 R /XYZ 71.731 139.313 null] >> endobj 4389 0 obj << -/D [4359 0 R /XYZ 71.731 372.438 null] ->> endobj -4391 0 obj << -/D [4359 0 R /XYZ 356.244 361.644 null] ->> endobj -4392 0 obj << -/D [4359 0 R /XYZ 122.471 348.692 null] +/D [4342 0 R /XYZ 131.018 123.537 null] >> endobj -4393 0 obj << -/D [4359 0 R /XYZ 74.222 330.76 null] +4390 0 obj << +/D [4342 0 R /XYZ 223.917 123.537 null] >> endobj -4394 0 obj << -/D [4359 0 R /XYZ 71.731 305.689 null] +4391 0 obj << +/D [4342 0 R /XYZ 145.843 110.585 null] >> endobj -4395 0 obj << -/D [4359 0 R /XYZ 179.627 276.961 null] +4341 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 4396 0 obj << -/D [4359 0 R /XYZ 416.129 276.961 null] +/Length 2715 +/Filter /FlateDecode +>> +stream +xڝ]s�6�=��o��bF߲���v��^��z��}��f���H�*R�u��رw{����@�I'��%�*UCZ��,VM�������)6L�9������,[բ.���n�'��"�,�"]=��Do�Q�V\o�"���������$;['I�Y�q���ׇo�}X$(�J���B�)��EʺeB�[����^�֮7Y�G�D�A��8��DR���:�u���4�;(�~^'q$�4q��U�y�q����N>J�M�I�/�栚�[f߹�0���㑥�8�~�I������$���� +*.�p�F�&-�E�k��x?�Le���H�f�y�����GI��-�䴛3� ��Q9eMyk�fB���h�&�t�.&���� �ݜ3���f�vGR�r�z�v�6�&�F��P^z��]���A�X��-Q�0@E�mi�LJ:<���� ���t=n��\u`E����Aۤc��8 ���yWm�\��C���I�[�?�u)�K�J�2ͩ�$��%�"�=��+�5FK��5�4S���v�é�mܤ���6��x.+��T��W��d���gtR�!�Py���ǝ���R��x�����xmˣ;h+�w_��"�Mdg�d�������[�����rr3��k�h�2|0_��m�K�)��]����y����� A� d�#���@ͦut�[h�M�&�la���n ��t�����8�V:ui`i A8۲��G�{wiaiy%�p&��6�}v|�~���F�����(�uU�E�`�U��cT%Eh3���ջ#�v*,��}0�a�C: ,�7 +�pJg ѧa��|��{"n: >aY�o��eD�O���������E��^Y^���#^�NL�J�ɉ �����#0�?�E|pn������s����胴0��E�LP��=������>t<�sB���Wv�"�� �s����yl��M���A��K���=�z��Nj̇��<Z��tN�R�C�n�$�����tI�q0L��'T�b=�&��"{�l��H��(�h�f����r�H�`ѐv + ܯT�B4>9��,����.!�*5B�c)܄խ�m���]�4y���k;���P�U ӽ�R�B���N7�1��pj$@'^�@<��2��b�Ä��$���S�E�"��o��b�W�ܲ�3������tq[�e����Ǝ�0�}X���a����\G��fw���z��x�\r�12�+��l�a�фi6��� "�� r��4��,i�����+���\��n6�I�����GJ{E�I&@�rA+���ٟ�G��:NpCI��a��%#�n9��� �F���EWg���KRRj���)*��>�!8�d�� ����(e�_ �^ +�^�e�Ӕ��Ȓ�s6y4B�^�ʼ*��m��t��mX���8�=����z5ƺ��7�r0��υ� TH��� �6�j�����ǩ �P� +vV��`)%Z +t`"��vC#;��N�Z$�v��W�a�_��Wy^�,:��o~�5^��&����� g�\@����V�Z�n����p�B����s<h-�]��i6t�y~҈f�N����Dd H�nE��'���%'��hhQmm�db[���������ݫjqw(�54I&����\`z��l ��5��14V53�7U�� A��1��tL��d�vyF�����(���xU���\*.��-[�j���GG�aA�ѐ/�!7B�LXߚ��L�a��}2A��J�B�U#��*�X������=d[�%�lO��Բ2���/1��G�עLjN�����B���>�y�Ms���P�y,�f(�}�m;fo�Z�s?wN���B��Am����i�����z�F��lj���ԙ�p./ |�]�WH����g����^˫D�a�3�<���h'����L��|Jd���h��R���vÛ�8;"��yi�������<˺&��J�Wࢄ_5��PvM�*4wr +�#l�{H9�~4Q�q�uG^�H�����t���R�T �%�K\�.��;�祃 ��t��s�$TXT,��¿��<AsH�%~z�h�Y�rȔW�������0PU�^}��� %IȺ���j�8�7�[��i�g o�P�3F�0�q�/<g�A���m� +G�6��O*v�����̿�;>��h���e�¯��������(*�`:l5����J.�K� ��P��e�j�_���W`r +OQ�Y�)�O���R�_����xO2�2����i�c��>�f�#� [/���s�i��Ss�����'�D��58��H�~���6Y�7���H_��<����~)*�}j�a49��:����4%�D�=^B?�GF�ۿ����.�;����������-Y�eݓ���'m揂��ه ��,�E��K�F��o�Z^�^E���`���?�)�2��x�-=��q��-zO���I.�o +��Ħ +�!��R��Zpӊ�`}�I������� +�~�h��� *��"ٲ��0ŕpHmU:3��e���t$����?�!)�\���n��C��A+�E����Y=Z�PtY��H- }������)�~�"�x'�a�5$��G8�}ԡ ^W���Z%}R}�G����� +��40AE��~:���Q\�endstream +endobj +4395 0 obj << +/Type /Page +/Contents 4396 0 R +/Resources 4394 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4392 0 R >> endobj 4397 0 obj << -/D [4359 0 R /XYZ 71.731 256.872 null] +/D [4395 0 R /XYZ 71.731 729.265 null] >> endobj 4398 0 obj << -/D [4359 0 R /XYZ 71.731 225.988 null] +/D [4395 0 R /XYZ 71.731 741.22 null] >> endobj 4399 0 obj << -/D [4359 0 R /XYZ 236.948 215.193 null] +/D [4395 0 R /XYZ 71.731 667.333 null] >> endobj 4400 0 obj << -/D [4359 0 R /XYZ 289.53 215.193 null] +/D [4395 0 R /XYZ 71.731 644.419 null] >> endobj 4401 0 obj << -/D [4359 0 R /XYZ 434.503 215.193 null] +/D [4395 0 R /XYZ 394.879 615.691 null] >> endobj 4402 0 obj << -/D [4359 0 R /XYZ 71.731 187.298 null] +/D [4395 0 R /XYZ 236.4 589.788 null] >> endobj 4403 0 obj << -/D [4359 0 R /XYZ 71.731 187.298 null] +/D [4395 0 R /XYZ 441.444 589.788 null] >> endobj 4404 0 obj << -/D [4359 0 R /XYZ 71.731 162.361 null] +/D [4395 0 R /XYZ 71.731 569.699 null] >> endobj 4405 0 obj << -/D [4359 0 R /XYZ 71.731 139.313 null] +/D [4395 0 R /XYZ 217.135 545.953 null] >> endobj 4406 0 obj << -/D [4359 0 R /XYZ 131.018 123.537 null] +/D [4395 0 R /XYZ 74.222 528.02 null] >> endobj 4407 0 obj << -/D [4359 0 R /XYZ 223.917 123.537 null] +/D [4395 0 R /XYZ 71.731 502.949 null] >> endobj 4408 0 obj << -/D [4359 0 R /XYZ 145.843 110.585 null] +/D [4395 0 R /XYZ 248.221 487.173 null] >> endobj -4358 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +4409 0 obj << +/D [4395 0 R /XYZ 439.947 461.27 null] +>> endobj +4410 0 obj << +/D [4395 0 R /XYZ 71.731 459.113 null] >> endobj -4412 0 obj << -/Length 2715 -/Filter /FlateDecode ->> -stream -xڝ]s�6�=��o��bF߲���v��^��z��}��f���H�*R�u��رw{����@�I'��%�*UCZ��,VM�������)6L�9������,[բ.���n�'��"�,�"]=��Do�Q�V\o�"���������$;['I�Y�q���ׇo�}X$(�J���B�)��EʺeB�[����^�֮7Y�G�D�A��8��DR���:�u���4�;(�~^'q$�4q��U�y�q����N>J�M�I�/�栚�[f߹�0���㑥�8�~�I������$���� -*.�p�F�&-�E�k��x?�Le���H�f�y�����GI��-�䴛3� ��Q9eMyk�fB���h�&�t�.&���� �ݜ3���f�vGR�r�z�v�6�&�F��P^z��]���A�X��-Q�0@E�mi�LJ:<���� ���t=n��\u`E����Aۤc��8 ���yWm�\��C���I�[�?�u)�K�J�2ͩ�$��%�"�=��+�5FK��5�4S���v�é�mܤ���6��x.+��T��W��d���gtR�!�Py���ǝ���R��x�����xmˣ;h+�w_��"�Mdg�d�������[�����rr3��k�h�2|0_��m�K�)��]����y����� A� d�#���@ͦut�[h�M�&�la���n ��t�����8�V:ui`i A8۲��G�{wiaiy%�p&��6�}v|�~���F�����(�uU�E�`�U��cT%Eh3���ջ#�v*,��}0�a�C: ,�7 -�pJg ѧa��|��{"n: >aY�o��eD�O���������E��^Y^���#^�NL�J�ɉ �����#0�?�E|pn������s����胴0��E�LP��=������>t<�sB���Wv�"�� �s����yl��M���A��K���=�z��Nj̇��<Z��tN�R�C�n�$�����tI�q0L��'T�b=�&��"{�l��H��(�h�f����r�H�`ѐv - ܯT�B4>9��,����.!�*5B�c)܄խ�m���]�4y���k;���P�U ӽ�R�B���N7�1��pj$@'^�@<��2��b�Ä��$���S�E�"��o��b�W�ܲ�3������tq[�e����Ǝ�0�}X���a����\G��fw���z��x�\r�12�+��l�a�фi6��� "�� r��4��,i�����+���\��n6�I�����GJ{E�I&@�rA+���ٟ�G��:NpCI��a��%#�n9��� �F���EWg���KRRj���)*��>�!8�d�� ����(e�_ �^ -�^�e�Ӕ��Ȓ�s6y4B�^�ʼ*��m��t��mX���8�=����z5ƺ��7�r0��υ� TH��� �6�j�����ǩ �P� -vV��`)%Z -t`"��vC#;��N�Z$�v��W�a�_��Wy^�,:��o~�5^��&����� g�\@����V�Z�n����p�B����s<h-�]��i6t�y~҈f�N����Dd H�nE��'���%'��hhQmm�db[���������ݫjqw(�54I&����\`z��l ��5��14V53�7U�� A��1��tL��d�vyF�����(���xU���\*.��-[�j���GG�aA�ѐ/�!7B�LXߚ��L�a��}2A��J�B�U#��*�X������=d[�%�lO��Բ2���/1��G�עLjN�����B���>�y�Ms���P�y,�f(�}�m;fo�Z�s?wN���B��Am����i�����z�F��lj���ԙ�p./ |�]�WH����g����^˫D�a�3�<���h'����L��|Jd���h��R���vÛ�8;"��yi�������<˺&��J�Wࢄ_5��PvM�*4wr -�#l�{H9�~4Q�q�uG^�H�����t���R�T �%�K\�.��;�祃 ��t��s�$TXT,��¿��<AsH�%~z�h�Y�rȔW�������0PU�^}��� %IȺ���j�8�7�[��i�g o�P�3F�0�q�/<g�A���m� -G�6��O*v�����̿�;>��h���e�¯��������(*�`:l5����J.�K� ��P��e�j�_���W`r -OQ�Y�)�O���R�_����xO2�2����i�c��>�f�#� [/���s�i��Ss�����'�D��58��H�~���6Y�7���H_��<����~)*�}j�a49��:����4%�D�=^B?�GF�ۿ����.�;����������-Y�eݓ���'m揂��ه ��,�E��K�F��o�Z^�^E���`���?�)�2��x�-=��q��-zO���I.�o -��Ħ -�!��R��Zpӊ�`}�I������� -�~�h��� *��"ٲ��0ŕpHmU:3��e���t$����?�!)�\���n��C��A+�E����Y=Z�PtY��H- }������)�~�"�x'�a�5$��G8�}ԡ ^W���Z%}R}�G����� -��40AE�ɧ~:���Q3\�endstream -endobj 4411 0 obj << -/Type /Page -/Contents 4412 0 R -/Resources 4410 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4357 0 R +/D [4395 0 R /XYZ 142.466 420.549 null] +>> endobj +4412 0 obj << +/D [4395 0 R /XYZ 74.222 372.533 null] >> endobj 4413 0 obj << -/D [4411 0 R /XYZ 71.731 729.265 null] +/D [4395 0 R /XYZ 71.731 347.462 null] >> endobj 4414 0 obj << -/D [4411 0 R /XYZ 71.731 741.22 null] +/D [4395 0 R /XYZ 71.731 311.597 null] >> endobj 4415 0 obj << -/D [4411 0 R /XYZ 71.731 667.333 null] +/D [4395 0 R /XYZ 71.731 269.819 null] >> endobj 4416 0 obj << -/D [4411 0 R /XYZ 71.731 644.419 null] +/D [4395 0 R /XYZ 411.009 256.967 null] >> endobj 4417 0 obj << -/D [4411 0 R /XYZ 394.879 615.691 null] +/D [4395 0 R /XYZ 71.731 216.12 null] >> endobj 4418 0 obj << -/D [4411 0 R /XYZ 236.4 589.788 null] +/D [4395 0 R /XYZ 71.731 216.12 null] >> endobj 4419 0 obj << -/D [4411 0 R /XYZ 441.444 589.788 null] +/D [4395 0 R /XYZ 71.731 191.183 null] >> endobj 4420 0 obj << -/D [4411 0 R /XYZ 71.731 569.699 null] +/D [4395 0 R /XYZ 71.731 168.135 null] >> endobj 4421 0 obj << -/D [4411 0 R /XYZ 217.135 545.953 null] +/D [4395 0 R /XYZ 71.731 145.221 null] >> endobj -4422 0 obj << -/D [4411 0 R /XYZ 74.222 528.02 null] +4394 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R >> +/ProcSet [ /PDF /Text ] >> endobj +4424 0 obj << +/Length 2512 +/Filter /FlateDecode +>> +stream +xڕ�oۺ�����ȃ͘���`xC��}~@�I� �~P$��W��z��xGY��� B�t�;�7iy5�?yJz0�K�.���x3����o$c�e��y�����]-�r�]=��|��x����)��s�۩2�~Nfn0w��O[E�w��Y�Ǵz?�2p�&�����?O����S'A��by/ +iqN�tã��@,|r ����_�cV��� ��a��I���<e����h,��!i���_�s7i��6.iV�k8��S5ۉtTM�]7kXWu!rǢ�3@o_�ĺ�AyMV�S�dij�TE�G5�rf�K6 Ր�UK�$�պ��-�2exU�rՠ��ۺ�s��kʾ4GH�&�26���0����-ݳf�8�҉YDŽ�*9J� +_�1{����[�ُ !{a�?��+i&�9=��e��6/p�*+74�����뉌������F�hL�*�FӪ�ߌG������R����<W%#o�,UG�~8wVd�N�^�"��ƏYRW�Z3�q�����y0�6����f��O�#�'��a�Ox�V�����s٣Ķ)r Ɏ�:k�F}f�|w����J��<�����#�?�|��ܣ�@X."?4��ӷ�����TDY���k��a��k�4W��Fs���}R��5���lR5MX���W�f���On +��m]KT&���h�U%d�+�6A �A\g����[�[F���a��i�O�qЍ*4�^�Z +�2��_�����l����|S���S�Y?�h����G6��<�%��3V�~"�+%r�o��v�+3����~���g��^�}X]OPS�αF�q�q��PJ?���z�T�fh"�d|&VV�`�Q��+b����3�cO`�?ֵ)7(0̗���9�����)��QH^�JJ��gZhUs"4�70!����@k:��n�@��L4b<��i-%�C�I`�7�h4�3k�H17[�a�־���J'u�k��q�*y\=Nif������f��p�SR$�Y��mP4��&����ɐ 0������_���T����<��V�X ��io{Қ�1!�K8�6f��D��������8&m ��!������*�mn��´o&�f������hj�|��(bT�tPq�@+�D.��Ǐ�{�M����$�>���a�C��ל�\ש��ӗ����j��� h$��i"��\��h!WS�R����6[.�tx�߮g8����#r'�ph�U�w��YJ����4.!Z��s������c5�����7�,���T�Q�džꍷp d�\�W�ѣ��Sε��Y�k]A�!IS�q@��գHsfoz��*�p���Y�x��ڹE�/�ˍ��/��@%^��|M@v��,�8�L ��|/�����#�~X"��\&h�*G��yJ+�:��� � �2k*�gN�'�g��Y0���5�qBF�5�� +]k`���&��ޗ������#?���!�d5�\&M}. ���j�t� +�\אt�σ�;�wɭ��8>g�1��d��2߷�4�ʹ�˴L[p���|���h�����ׅ���w}OSW��mڎMi +Î�C��T���mh�f�Yu�㎰�'���6���jC����v����D���>#R��$��Ҙ�W@����8�v��k���>o�r�AU�Kq ���m���zH'��1!<�'�'��?�n<��ُ#�����Yjt�9Y�{*+���a�69����C��_Q����v/+��P�K�G�M���"�bv��Cpsq��}�.�qP �>N��}��~D����|�BsWW��K��������tY�����uq����%�#���i�v�|�w������h�~���{H�oq�p��gؽ~�1{/��ad������z��P��#�����N�g�Ag����J6�X�ޠ�n��w�o��(im2yV�{j#]��K�z�5�����ޛ�y]�h3�?���a&4��>�J�4b�o���4�w��Agv�� +�M�|�7��U�+�������K7��>=���mV�5��9��m�X���K$��b�Y������!y�|�M�����rRaG�}���\�[m_����V|���Rq��oZ+��O�Y9�����'e�%m��rA� ���Ǝ�=��Ȕ$Uk:^���pX���'b�?�j��SQeB�����5@��ڡX�^P�iqcJ�>Wƥa�J0�,ɛ`�7u��8J��;\���l������D�֜����@n~�(�-6�t/1����g_{�C�� ���%�p��$h(�I��ADOӢ�d���C��+S��Mid +��Cr"A��m�'a�����F��� +5Dj*���8�U� mJ�z�m�v��ϰ�����w3��QTZ�v�T���"�5��=�@�+��H�/��yD9�3�+�ܵDP����k�)��Zn_�endstream +endobj 4423 0 obj << -/D [4411 0 R /XYZ 71.731 502.949 null] +/Type /Page +/Contents 4424 0 R +/Resources 4422 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4392 0 R +/Annots [ 4426 0 R ] >> endobj -4424 0 obj << -/D [4411 0 R /XYZ 248.221 487.173 null] +4426 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [380.968 693.235 433.271 702.147] +/Subtype /Link +/A << /S /GoTo /D (os-win32) >> >> endobj 4425 0 obj << -/D [4411 0 R /XYZ 439.947 461.27 null] ->> endobj -4426 0 obj << -/D [4411 0 R /XYZ 71.731 459.113 null] +/D [4423 0 R /XYZ 71.731 729.265 null] >> endobj 4427 0 obj << -/D [4411 0 R /XYZ 142.466 420.549 null] +/D [4423 0 R /XYZ 74.222 646.575 null] >> endobj 4428 0 obj << -/D [4411 0 R /XYZ 74.222 372.533 null] +/D [4423 0 R /XYZ 71.731 621.504 null] >> endobj 4429 0 obj << -/D [4411 0 R /XYZ 71.731 347.462 null] +/D [4423 0 R /XYZ 71.731 590.62 null] >> endobj 4430 0 obj << -/D [4411 0 R /XYZ 71.731 311.597 null] +/D [4423 0 R /XYZ 212.034 569.863 null] >> endobj 4431 0 obj << -/D [4411 0 R /XYZ 71.731 269.819 null] +/D [4423 0 R /XYZ 71.731 567.706 null] >> endobj 4432 0 obj << -/D [4411 0 R /XYZ 411.009 256.967 null] +/D [4423 0 R /XYZ 71.731 520.947 null] >> endobj 4433 0 obj << -/D [4411 0 R /XYZ 71.731 216.12 null] +/D [4423 0 R /XYZ 297.791 508.095 null] >> endobj 4434 0 obj << -/D [4411 0 R /XYZ 71.731 216.12 null] +/D [4423 0 R /XYZ 71.731 496.692 null] >> endobj 4435 0 obj << -/D [4411 0 R /XYZ 71.731 191.183 null] +/D [4423 0 R /XYZ 71.731 496.692 null] >> endobj 4436 0 obj << -/D [4411 0 R /XYZ 71.731 168.135 null] +/D [4423 0 R /XYZ 422.619 439.851 null] >> endobj 4437 0 obj << -/D [4411 0 R /XYZ 71.731 145.221 null] +/D [4423 0 R /XYZ 74.222 421.918 null] >> endobj -4410 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F23 1105 0 R /F44 1884 0 R >> -/ProcSet [ /PDF /Text ] +4438 0 obj << +/D [4423 0 R /XYZ 71.731 396.847 null] >> endobj -4440 0 obj << -/Length 2512 -/Filter /FlateDecode ->> -stream -xڕ�oۺ�����ȃ͘���`xC��}~@�I� �~P$��W��z��xGY��� B�t�;�7iy5�?yJz0�K�.���x3����o$c�e��y�����]-�r�]=��|��x����)��s�۩2�~Nfn0w��O[E�w��Y�Ǵz?�2p�&�����?O����S'A��by/ -iqN�tã��@,|r ����_�cV��� ��a��I���<e����h,��!i���_�s7i��6.iV�k8��S5ۉtTM�]7kXWu!rǢ�3@o_�ĺ�AyMV�S�dij�TE�G5�rf�K6 Ր�UK�$�պ��-�2exU�rՠ��ۺ�s��kʾ4GH�&�26���0����-ݳf�8�҉YDŽ�*9J� -_�1{����[�ُ !{a�?��+i&�9=��e��6/p�*+74�����뉌������F�hL�*�FӪ�ߌG������R����<W%#o�,UG�~8wVd�N�^�"��ƏYRW�Z3�q�����y0�6����f��O�#�'��a�Ox�V�����s٣Ķ)r Ɏ�:k�F}f�|w����J��<�����#�?�|��ܣ�@X."?4��ӷ�����TDY���k��a��k�4W��Fs���}R��5���lR5MX���W�f���On -��m]KT&���h�U%d�+�6A �A\g����[�[F���a��i�O�qЍ*4�^�Z -�2��_�����l����|S���S�Y?�h����G6��<�%��3V�~"�+%r�o��v�+3����~���g��^�}X]OPS�αF�q�q��PJ?���z�T�fh"�d|&VV�`�Q��+b����3�cO`�?ֵ)7(0̗���9�����)��QH^�JJ��gZhUs"4�70!����@k:��n�@��L4b<��i-%�C�I`�7�h4�3k�H17[�a�־���J'u�k��q�*y\=Nif������f��p�SR$�Y��mP4��&����ɐ 0������_���T����<��V�X ��io{Қ�1!�K8�6f��D��������8&m ��!������*�mn��´o&�f������hj�|��(bT�tPq�@+�D.��Ǐ�{�M����$�>���a�C��ל�\ש��ӗ����j��� h$��i"��\��h!WS�R����6[.�tx�߮g8����#r'�ph�U�w��YJ����4.!Z��s������c5�����7�,���T�Q�džꍷp d�\�W�ѣ��Sε��Y�k]A�!IS�q@��գHsfoz��*�p���Y�x��ڹE�/�ˍ��/��@%^��|M@v��,�8�L ��|/�����#�~X"��\&h�*G��yJ+�:��� � �2k*�gN�'�g��Y0���5�qBF�5�� -]k`���&��ޗ������#?���!�d5�\&M}. ���j�t� -�\אt�σ�;�wɭ��8>g�1��d��2߷�4�ʹ�˴L[p���|���h�����ׅ���w}OSW��mڎMi -Î�C��T���mh�f�Yu�㎰�'���6���jC����v����D���>#R��$��Ҙ�W@����8�v��k���>o�r�AU�Kq ���m���zH'��1!<�'�'��?�n<��ُ#�����Yjt�9Y�{*+���a�69����C��_Q����v/+��P�K�G�M���"�bv��Cpsq��}�.�qP �>N��}��~D����|�BsWW��K��������tY�����uq����%�#���i�v�|�w������h�~���{H�oq�p��gؽ~�1{/��ad������z��P��#�����N�g�Ag����J6�X�ޠ�n��w�o��(im2yV�{j#]��K�z�5�����ޛ�y]�h3�?���a&4��>�J�4b�o���4�w��Agv�� -�M�|�7��U�+�������K7��>=���mV�5��9��m�X���K$��b�Y������!y�|�M�����rRaG�}���\�[m_����V|���Rq��oZ+��O�Y9�����'e�%m��rA� ���Ǝ�=��Ȕ$Uk:^���pX���'b�?�j��SQeB�����5@��ڡX�^P�iqcJ�>Wƥa�J0�,ɛ`�7u��8J��;\���l������D�֜����@n~�(�-6�t/1����g_{�C�� ���%�p��$h(�I��ADOӢ�d���C��+S��Mid -��Cr"A��m�'a�����F��� -5Dj*���8�U� mJ�z�m�v��ϰ�����w3��QTZ�v�T���"�5��=�@�+��H�/��yD9�3�+�ܵDP��{���SN�Z�_�endstream -endobj 4439 0 obj << -/Type /Page -/Contents 4440 0 R -/Resources 4438 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4357 0 R -/Annots [ 4442 0 R ] +/D [4423 0 R /XYZ 300.601 381.071 null] >> endobj -4442 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [380.968 693.235 433.271 702.147] -/Subtype /Link -/A << /S /GoTo /D (os-win32) >> +4440 0 obj << +/D [4423 0 R /XYZ 71.731 376.424 null] >> endobj 4441 0 obj << -/D [4439 0 R /XYZ 71.731 729.265 null] +/D [4423 0 R /XYZ 113.574 358.157 null] +>> endobj +4442 0 obj << +/D [4423 0 R /XYZ 71.731 356 null] >> endobj 4443 0 obj << -/D [4439 0 R /XYZ 74.222 646.575 null] +/D [4423 0 R /XYZ 113.574 340.224 null] >> endobj 4444 0 obj << -/D [4439 0 R /XYZ 71.731 621.504 null] +/D [4423 0 R /XYZ 71.731 340.125 null] >> endobj 4445 0 obj << -/D [4439 0 R /XYZ 71.731 590.62 null] +/D [4423 0 R /XYZ 113.574 322.291 null] >> endobj 4446 0 obj << -/D [4439 0 R /XYZ 212.034 569.863 null] +/D [4423 0 R /XYZ 71.731 320.135 null] >> endobj 4447 0 obj << -/D [4439 0 R /XYZ 71.731 567.706 null] +/D [4423 0 R /XYZ 113.574 304.359 null] >> endobj 4448 0 obj << -/D [4439 0 R /XYZ 71.731 520.947 null] +/D [4423 0 R /XYZ 71.731 302.202 null] >> endobj 4449 0 obj << -/D [4439 0 R /XYZ 297.791 508.095 null] +/D [4423 0 R /XYZ 113.574 286.426 null] >> endobj 4450 0 obj << -/D [4439 0 R /XYZ 71.731 496.692 null] +/D [4423 0 R /XYZ 113.574 286.426 null] >> endobj 4451 0 obj << -/D [4439 0 R /XYZ 71.731 496.692 null] +/D [4423 0 R /XYZ 137.584 286.426 null] >> endobj 4452 0 obj << -/D [4439 0 R /XYZ 422.619 439.851 null] +/D [4423 0 R /XYZ 214.923 255.542 null] >> endobj 4453 0 obj << -/D [4439 0 R /XYZ 74.222 421.918 null] +/D [4423 0 R /XYZ 71.731 243.422 null] >> endobj 4454 0 obj << -/D [4439 0 R /XYZ 71.731 396.847 null] +/D [4423 0 R /XYZ 71.731 243.422 null] >> endobj 4455 0 obj << -/D [4439 0 R /XYZ 300.601 381.071 null] +/D [4423 0 R /XYZ 71.731 220.643 null] >> endobj 4456 0 obj << -/D [4439 0 R /XYZ 71.731 376.424 null] +/D [4423 0 R /XYZ 71.731 197.594 null] >> endobj 4457 0 obj << -/D [4439 0 R /XYZ 113.574 358.157 null] +/D [4423 0 R /XYZ 71.731 168.767 null] >> endobj 4458 0 obj << -/D [4439 0 R /XYZ 71.731 356 null] ->> endobj -4459 0 obj << -/D [4439 0 R /XYZ 113.574 340.224 null] +/D [4423 0 R /XYZ 71.731 143.796 null] >> endobj -4460 0 obj << -/D [4439 0 R /XYZ 71.731 340.125 null] +4422 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 4461 0 obj << -/D [4439 0 R /XYZ 113.574 322.291 null] +/Length 3090 +/Filter /FlateDecode +>> +stream +xڭ]sܶ�ݿBo�����>ҞN�N�V��n#5y�;���0"������b����<t�@`,�{{ +��������~��We�*�:��__��c�[v�=��^���W�_d����U�~�x����������t�m��nvQx�|��% ���U]�}܄a��$�����~|��n� ��~���$����2�OT��%@d��q���f�����"?̷2G�mBO�L�FQ���<���&M�^5�p�ewM�^��<Z����&J=�jq_K���3�n�|��'�A�[�����I*:w�iD�ޫU�ؿ���Q���Jd�#�`M�Z1�#Q�=�^hd�#��;��{��5-q0x�]�Q�C��ޝ4^��R�^[H��t�U�g�:rc�̧�ݑ�E>��"����I��sD%���&������ +2��Ik� �xE�PЧ���ہ�O��RV��j�E��%��+E��T�H �x�t5��a-c�0CO��Ahp�mY�^V[ڡ;Z���;B����ր�0��6B��z���04��G�Vպ �p�Mw8�2�P�Q����(��� xwT=���-)VZ�;���vh�=_3m(�^7 0�p����+J�3R:i���1G�Z��F�^�e�z���3����㐅eGr�ܓ2dz �vW��_7G�ۭ���X���}���G!��W9���X-ʮvQ�g��h#��>k�(��=FH�����}JJ�'|�H�hN�3AXO0�6��;4�k:�\�s' ���[�*��LZ����ٵ�Vw=��V�;�f�~��-O�Z�V]��|8ZQH�{�����ݎ�rs\�|F=�WЧ�ȏ�v��:�z��.���= ���3�V(�fg�,�ҭ��,u�ғ��R��A� �^��A��֏J��lX�d#�{���l܅�dSv=�N;m� �5q��]�"R�2C���2-��;�z�HZv���A��#E�'6c�CUz��]�ˋJRNj<�|+.=�nDkӓ���:�O}y�x0�C��t�D%1@�g~� +HuH�8�N��8�t�Vɨ�6Y�?��;_��n��T�>uE��g�%�����P�'���7튨F(Ky2�C�Ik�ƠA�ܚnM�o�ډf��:H�� ��q�zLQ�%F��z�� +���{u8G���:?�?�a�[��V�e�5d�� +E(]�>�ʡ�MfY�"��k�����- x�H���7��p8=�N�������'�����0K��$�&zw=%X-H�z-/���-�c�,>g�\b{/�Z�r�/O�4�p�R?�!6'~.(��8 �t�1�7�_/E�)o!��=�o��/�;U��b�<����9��U�tS4j���z@ �I��r�|˷,���%�q��o8�ܸ/)�gI�2�1��V-�*�f�Q�B��AT����-�F�Y�Z��7%b�$I{�Lݩ�jE]?�$�d�b���ȹ|���)�:/T�\��}t���-��K`A�!y�����"�}��l�����L|��������<4�%u���*����-��!)���f�j�K}�Elz��/����ML�%FșM��d�R��m�m�c���FCU������\XqMG&Sc3pl�}�������(�������G$i�P���svÖM/��6t-,��Ն��� އt6�*�A1��î +�k�ǐ��0*([�ؼ]lf+��0��BhS������Ƚ��~�AG�w9��jŏ�B�A����JY���N� ;�z���.;#�c�`騵�>J�a˦��1j[���P@�=Ͼ(qfm�0���[Vc��rv8��:� +EC���ӑ��N�����V����$.\Y��Z���g�X�١mA�WЇ���uE��nl������nq�m6�ݡZ�Ԁ��b!�j��������??��m��毘�tu;�o� �w�"DS�Z�,��{n����SNs� +T����A�����l�?2ۿ�νX�-�1�Fȱ�b{W9S&���n�_���F�����d��/̚-RV���2������B�ZxBw��|�a-�������9�u��1��~�è�����`�g����| �kE#v�q�H����,�!�OI5�w,q6 + �Rq��E8���^Tl �E���7��&��0��lO�h�y��)�֗e0�y��wtկN�+f ����ugd����22;���]>t����3����� �1i��4}?�L���/[��˫6_�O�{{�6��ވ1PR�*i�-jG�ظu���Z�����gF�����/0Q�ʂ4}+id�7]@=t[�����x;ʲ��L�H�t[3%��W\��<!v�Z�麧ڠf�Gn�me:3،Df�Ξ%��v�_��,���ԅ�+3 ���D�*'v}d�}�9֘n�-��x&]]���;��t�"��d��L-�eW�`�^��v���p�Ffi{�"|:jj8T�y��{��.)<+:�Vs���, �ՆQ +�E�cl)�u���t?�Yx��az. ax��:�(���S�}�\v3ݦ���{8�ު1�M�w�/b��w�株۞��o������N���A[���К�����7(���Di�:8�+���--1[���x�T�2��I�� �Ft�<j�(�e�<�b���������[�_2�4kd�N�:2%�B"� +��X�0!uIN���R��`?���(8�~��-k^����7o�� ~Z=��=���ՕP��z}%�O��{��ddr�1�"M1�j�C���fRLr�c��+W�\��x6{m-�ni��?Jj) KPj��m����`��0�_q��v����t�{K[dԑ�Uf��m\�%��@ӊ5 &�ƒ�x�FOf�m2��3y97�My�5 +jtq_�F� ��s�Bq�H(��{����`b}%�����F����A�I �V˳�,qT?����2�j�2x�q���� @�\A/�م�P��?�G�O�$��p����\��F�~9$x���7�-���endstream +endobj +4460 0 obj << +/Type /Page +/Contents 4461 0 R +/Resources 4459 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4392 0 R >> endobj 4462 0 obj << -/D [4439 0 R /XYZ 71.731 320.135 null] +/D [4460 0 R /XYZ 71.731 729.265 null] >> endobj 4463 0 obj << -/D [4439 0 R /XYZ 113.574 304.359 null] +/D [4460 0 R /XYZ 71.731 741.22 null] >> endobj 4464 0 obj << -/D [4439 0 R /XYZ 71.731 302.202 null] +/D [4460 0 R /XYZ 71.731 718.306 null] >> endobj 4465 0 obj << -/D [4439 0 R /XYZ 113.574 286.426 null] +/D [4460 0 R /XYZ 493.42 708.344 null] >> endobj 4466 0 obj << -/D [4439 0 R /XYZ 113.574 286.426 null] +/D [4460 0 R /XYZ 429.405 695.392 null] >> endobj 4467 0 obj << -/D [4439 0 R /XYZ 137.584 286.426 null] +/D [4460 0 R /XYZ 71.731 654.381 null] >> endobj 4468 0 obj << -/D [4439 0 R /XYZ 214.923 255.542 null] +/D [4460 0 R /XYZ 71.731 639.437 null] >> endobj 4469 0 obj << -/D [4439 0 R /XYZ 71.731 243.422 null] +/D [4460 0 R /XYZ 71.731 590.386 null] >> endobj 4470 0 obj << -/D [4439 0 R /XYZ 71.731 243.422 null] +/D [4460 0 R /XYZ 74.222 546.55 null] >> endobj 4471 0 obj << -/D [4439 0 R /XYZ 71.731 220.643 null] +/D [4460 0 R /XYZ 259.97 523.636 null] >> endobj 4472 0 obj << -/D [4439 0 R /XYZ 71.731 197.594 null] +/D [4460 0 R /XYZ 71.731 508.528 null] >> endobj 4473 0 obj << -/D [4439 0 R /XYZ 71.731 168.767 null] +/D [4460 0 R /XYZ 95.641 464.359 null] >> endobj 4474 0 obj << -/D [4439 0 R /XYZ 71.731 143.796 null] +/D [4460 0 R /XYZ 71.731 464.359 null] >> endobj -4438 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R >> -/ProcSet [ /PDF /Text ] +4475 0 obj << +/D [4460 0 R /XYZ 71.731 414.053 null] >> endobj -4477 0 obj << -/Length 3083 -/Filter /FlateDecode ->> -stream -xڭ]sܶ�ݿBo����������؉�*��m�&u'��F$qC���_��������,��~�bO�����Mn���0γ��y�����__E�c%[V�=��^���$W�p�'WwWi���I��⫻�?���A����X��:x��n�y�~��n�Z���"����"]�Z����W�F -�dn��D�=gTƛ��m�)�.�$M��~�J�"���qK���Q�yfd��{�Z���z�eAoX8Ժ�fh�UW��Z����"�eju_���s���r���0A�_����A��:�i���MP������8yW��m�+�.�l��V4uK�ac -G�8x��ȩGD�w�Q�l[�q0x�]�1�Q�@��^,^��R�^�� �h��j�3o9�1r��n/�"M[1X����K�y��K��9M �G|Fħ��$M��Y��Cşf��` ->�t��xE�V�1eA�Z�f�G �Cg��tk[�z~^gk�,k��j�;lǫ���aG$`�B{A��u`��8���(語!n�����Q�մ~�)�G�v%�JU+8���i���w{�3�+�H!��Cwr����4�{��P6��6 0$pRB]��J�3R:톮�D���G�^��z���sZ����P�E#}�ܓq�� ��W��_7ʕ{-��iqЂ`HGxr~��C4�Ec�Ua,�0A@��U��9����w��ڸ/��d���}$`���7�\�;�S�����,���ᚏ5���YC=���A� -80��&i���]�:�ꯇ����nVQ�نx:Ԫ$um -��nO��1�Tx� -�����"����y��Om��vݭ:�z��_<�R�z4���gl]�l��z]:c[��Y�Zy���HY�SM�Q0���GH���>�c -ذ��F7��c���P܅�dSw=��;)���5q��]�#2�q��V�[ -���;��z�H9^����C�.G0�6�'�1ġ*{��]NˋJsNj<�n�V\z�݈��M@~��'E_٣��P%�d8�:Ui��0������Rݵ'3�I�M�I�k�*5�&���ޗo��)���p��_�s��x �iW�5BY��J'ɮ�C��9�nO�o�f��`�ۄ�u�����#j{��bEP�W��ٝ��~E�/���+hD�dC4�uC�!�v�/(�tEl,�uP]�)��[�\^�/�0F,�N$� &��1l,�0p�� a�����[�Л���`�^�=H�L0 -v�zN�0:"J�Ky�����/Y�g�9��qI��[S��|yP��0�Q¹�´���z��L�h�M��w�����Ǣw$��o���B�&o�~��#AU�(t�c-������4.VO<����~=�?����ę�ܕ'���"�Y�wN�L�t�ո��;�@��x��;U��� aX��[���D̓$y��i;�3���g�D�I���� L��{���e��Q��_d ny��?��ƚ�4O�RcYw���W>zQL&'�ɣ��cވi��ފ:*>��J�� �! j���e��sE�-bs��/��䰻E��I�Pҙ=`���r����M�ۏe�G?8��)'���Oz2�NO�!�;QF����L. <.����i�6�����:`؊��\�F���%xε�1��#=����fAe:(߀9�r 2q>��eu�1Z�[�ͬ�B�$�� �|$�);��B�=�^Δ�AA�w]͕z�=^��`�i�h�����MG��7����[)oF*�b�設��<J`+vb�1V/c� [�^f_�:15L�c����1�L{ �߁�a����H�Sg��۱j���J�x*9��/pT�1t�� -K:R� ��?�d��+�wc�������~˸.����bo<����; G���P�"��~��[�c-�`�?�����Q�5H�G����U�vfa\�K+ 6��;bpn�P2U>+1�KK�M��'�6�#��������2��b�Xю9�w�7e���������(�]�B�m�����]�E�e7xQ�Ցs��\��U5��Gs�e�+�% $D\��Q\�*��v<"/|�Z@R�n!3���7�˗��V5�c�C��Χ��ya�p|<���C�Q�c�A@��p���bK,�H��s�������^��=SA�%Ϲ��9� -���]��������&L��ĺ�?���-w���c��]>t�9)(��|▴#!@�c�Kh�~�"3��_��[�W)_�O�{s��6^� PR)y,n@���u���>��á��gA�����a���,+�t�7]�]s*�j�`�x�e�/y�f��U���_��\�;;��Z�ٺ�QP��^�:c#���������Y��ٯEQ���M*�E|}AI�Y �+��[�L�U9����E���ð�����tsƂy��(�=�����k(d��Q�ø�K����*���䷾�(,-O��O{�-�-WA����/ -��δ���,���j'(�ߢ�1�O��[��t?�Yx��a~+ ax��:�87�W'�_���~����=~o͘⦎��b��w���jjH��'qxj�a����A[���к�q!����R��t�*S%�sp -W��K^���!&Ɇhd�I^�-�Fu�2jg8���<�b�J�������K�_ޓ�4k]�N�z2���"̷���SB�҂�ߵ���~�p��'P�:����le�?�|�a(�&�i����P�=-|s+�!��J���X)���tdr�1�bM P~\�C���fRL�c��+/����l��:��c��q�PKY�SS"͊t���%�+b���~�#y�K7�?�dG��d !�4���`0�<l��,�0G�+d@BŒ�d�@Og�m:��yy7�ME4jtu_�F����ǟ>q�H8������`B�RHE���#߲�U# ߚ���t�9�y�#X�~^�<�y8���p(�F�Ky��l�������EZ�E���gL[��9#��p{$x�6y�,�o�ʩ��endstream -endobj 4476 0 obj << -/Type /Page -/Contents 4477 0 R -/Resources 4475 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4357 0 R +/D [4460 0 R /XYZ 309.199 393.295 null] +>> endobj +4477 0 obj << +/D [4460 0 R /XYZ 71.731 391.139 null] >> endobj 4478 0 obj << -/D [4476 0 R /XYZ 71.731 729.265 null] +/D [4460 0 R /XYZ 71.731 360.254 null] >> endobj 4479 0 obj << -/D [4476 0 R /XYZ 71.731 741.22 null] +/D [4460 0 R /XYZ 71.731 337.34 null] >> endobj 4480 0 obj << -/D [4476 0 R /XYZ 71.731 718.306 null] +/D [4460 0 R /XYZ 336.008 308.613 null] >> endobj 4481 0 obj << -/D [4476 0 R /XYZ 493.42 708.344 null] +/D [4460 0 R /XYZ 71.731 306.456 null] >> endobj 4482 0 obj << -/D [4476 0 R /XYZ 429.405 695.392 null] +/D [4460 0 R /XYZ 246.006 285.699 null] >> endobj 4483 0 obj << -/D [4476 0 R /XYZ 71.731 654.381 null] +/D [4460 0 R /XYZ 71.731 283.542 null] >> endobj 4484 0 obj << -/D [4476 0 R /XYZ 71.731 639.437 null] +/D [4460 0 R /XYZ 71.731 260.628 null] >> endobj 4485 0 obj << -/D [4476 0 R /XYZ 71.731 590.386 null] +/D [4460 0 R /XYZ 279.615 236.882 null] >> endobj 4486 0 obj << -/D [4476 0 R /XYZ 74.222 546.55 null] +/D [4460 0 R /XYZ 521.375 223.93 null] >> endobj 4487 0 obj << -/D [4476 0 R /XYZ 259.97 523.636 null] +/D [4460 0 R /XYZ 71.731 203.841 null] >> endobj 4488 0 obj << -/D [4476 0 R /XYZ 71.731 508.528 null] ->> endobj -4489 0 obj << -/D [4476 0 R /XYZ 95.641 464.359 null] +/D [4460 0 R /XYZ 71.731 160.005 null] >> endobj -4490 0 obj << -/D [4476 0 R /XYZ 71.731 464.359 null] +4459 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F32 1119 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 4491 0 obj << -/D [4476 0 R /XYZ 71.731 414.053 null] +/Length 2116 +/Filter /FlateDecode +>> +stream +xڕXms�6��_���5g�$H�T���rܛ&�%�un�N"a� E��[���/�EJ������b�]�b�]ț��ϛD���sG��I�}�N�0����%l-bd~Z>;����ܙ����vx��>�p�PL���eU�"�]����r����[��\��j�y�u9 \�_�?��|�X��~��c�Q#�̱�bo�9�;~��s�5�2��k4d"|g +�`Q��xN�_�h�����5(��F���2U��iw��A�)�\O��`nu���-k&Z��r�f_�,.�([k�=86u�V��õ$�<���3s�n�VM�\�<a7�L��JU�g<s��f��J���z��1)S��T ��0�,��nTVk�T�֝��Y�Ό�=�9F��k�^��uCn�ڞp�G��5�<�\K{��d��?����ϙysZ��V��^0�h�����_���,���O��\'���+Y?��ջ���W�<���K���B��N����h��8�Ǻ������#�����M쑆���ɍ��۟�R�{`J�q&a� �g(�aߍ,�7%S�J�������h��@*�������O��߽��a��-��\�Lgm&s�jZB+�j���p +R����Q@ +a�����_G7�Q_s��]Q�D5��w̸�d��t�_y�l^x�+����*J2V��G�A�VhՎG9�Y��%��M�U5� +Beg��Qa��4��VA������ +��Ϛ���x�aI�4���J˚�D�;vΪ4�a#��:5,=b�����*����$QU+W���l��U�0N.�8���fj�09p�80u@|{XaP����6Z���E�����`}��S?�����7't���G7t7m[}~�� M��V2 �Ƌ����!�N��.��S�ʶk^�]����u �|���뷋���/��,�_�e�%�KsF0�;�hx�/%���bQ�t�)���oŭa��uSY$jۯ�g�!�\cw��C�2���Q8�ہ����$�<&=HG���:��*��87U=�'"S���[����U�i�����P��?����'�^p&�� +��*?��U#4� +�2�Iޥ��al���h�(�0>@��K|���{�!fS浒�eWJL}t]qOb)3��H6*����t�^����99VEC_S4]N �6>��FY ��.y� !�z� �p�����,��QDM$���"��@���Yް��+��Pn�lq�0hʮ��r"��Q��Op�P�oT=)դ�q��ɞ��1'�>:'����ߞFN�4r�Q���?��2�S��c�lr=Ќ�@���/9� \�:*Î�E���)�<�/�K杺��+<EY�@r����X ��^�-f���m�� ����^�P��\wq���nF��ͬ;��vZ&b�J�d���8FV0�g��cD��F��OZ��)K_�nHP�oy�m�5�w�gڎ���0�����݅�D�E4 _@�4���9pȞ���K�h���QC�C+ҹQ�X3����Pl�_A�4X@���6YAI �7�ꌅke����3VR�6��*���N�Q����t�y�a�2�aԭ�?�Q �>͚�Ԙ��k��v��"�x:�T�������'��Þ��O�J�N�^~���1�/���+~�b�L.��5]4�[�u�قۛ�۰u�� +_���8� y>h���Dx��J���v���/F��/�#l�'�F�<� ������^�^����Q����76%r������=���z �u:���z���>^���̩����8����`4�C����=M-�J���<V� �|L��ƨ�� +^�x��9�! `@��$��S9�aWd��)sͣ�')V\��@rZ�v([v�����P]���^ Ƌ�/�" +8���6S?�w6.����9�"߉ba��@�=�z ��i����Xl�~�B�K.�������p�����v�M�7�:��VKI^8�Q��L6X��]��R�,t��k��DnE�'R������xuԲ�UdCz�[`�9���g� D�� x/r�p(b�f{��r�5�����endstream +endobj +4490 0 obj << +/Type /Page +/Contents 4491 0 R +/Resources 4489 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4392 0 R >> endobj 4492 0 obj << -/D [4476 0 R /XYZ 309.199 393.295 null] +/D [4490 0 R /XYZ 71.731 729.265 null] >> endobj 4493 0 obj << -/D [4476 0 R /XYZ 71.731 391.139 null] +/D [4490 0 R /XYZ 71.731 718.306 null] >> endobj 4494 0 obj << -/D [4476 0 R /XYZ 71.731 360.254 null] +/D [4490 0 R /XYZ 71.731 696.359 null] >> endobj 4495 0 obj << -/D [4476 0 R /XYZ 71.731 337.34 null] +/D [4490 0 R /XYZ 71.731 673.31 null] >> endobj 4496 0 obj << -/D [4476 0 R /XYZ 336.008 308.613 null] +/D [4490 0 R /XYZ 71.731 634.521 null] >> endobj 4497 0 obj << -/D [4476 0 R /XYZ 71.731 306.456 null] +/D [4490 0 R /XYZ 71.731 484.074 null] >> endobj 4498 0 obj << -/D [4476 0 R /XYZ 246.006 285.699 null] +/D [4490 0 R /XYZ 71.731 451.741 null] >> endobj 4499 0 obj << -/D [4476 0 R /XYZ 71.731 283.542 null] +/D [4490 0 R /XYZ 74.222 410.062 null] >> endobj 4500 0 obj << -/D [4476 0 R /XYZ 71.731 260.628 null] +/D [4490 0 R /XYZ 71.731 384.991 null] >> endobj 4501 0 obj << -/D [4476 0 R /XYZ 279.615 236.882 null] +/D [4490 0 R /XYZ 111.572 369.215 null] >> endobj 4502 0 obj << -/D [4476 0 R /XYZ 521.375 223.93 null] +/D [4490 0 R /XYZ 71.731 349.126 null] >> endobj 4503 0 obj << -/D [4476 0 R /XYZ 71.731 203.841 null] +/D [4490 0 R /XYZ 272.368 338.331 null] >> endobj 4504 0 obj << -/D [4476 0 R /XYZ 71.731 160.005 null] +/D [4490 0 R /XYZ 169.456 312.428 null] >> endobj -4475 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F32 1119 0 R >> -/ProcSet [ /PDF /Text ] +4505 0 obj << +/D [4490 0 R /XYZ 74.222 281.544 null] >> endobj -4507 0 obj << -/Length 2115 -/Filter /FlateDecode ->> -stream -xڕXms�6��_���5g�$H�T���rܛ&�%�un�N"a� E��[���/�EJ������b�]�b�]ț��ϛD���sG��I�}�N�0����%l-bd~Z>;����ܙ����vx��>�p�PL���eU�"�]����r����[��\��j�y�u9 \�_�?��|�X��~��c�Q#�̱�bo�9�;~��s�5�2��k4d"|g -�`Q��xN�_�h�����5(��F���2U��iw��A�)�\O��`nu���-k&Z��r�f_�,.�([k�=86u�V��õ$�<���3s�n�VM�\�<a7�L��JU�g<s��f��J���z��1)S��T ��0�,��nTVk�T�֝��Y�Ό�=�9F��k�^��uCn�ڞp�G��5�<�\K{��d��?����ϙysZ��V��^0�h�����_���,���O��\'���+Y?��ջ���W�<���K���B��N����h��8�Ǻ������#�����M쑆���ɍ��۟�R�{`J�q&a� �g(�aߍ,�7%S�J�������h��@*�������O��߽��a��-��\�Lgm&s�jZB+�j���p -R����Q@ -a�����_G7�Q_s��]Q�D5��w̸�d��t�_y�l^x�+����*J2V��G�A�VhՎG9�Y��%��M�U5� -Beg��Qa��4��VA������ -��Ϛ���x�aI�4���J˚�D�;vΪ4�a#��:5,=b�����*����$QU+W���l��U�0N.�8���fj�09p�80u@|{XaP����6Z���E�����`}��S?�����7't���G7t7m[}~�� M��V2 �Ƌ����!�N��.��S�ʶk^�]����u �|���뷋���/��,�_�e�%�KsF0�;�hx�/%���bQ�t�)���oŭa��uSY$jۯ�g�!�\cw��C�2���Q8�ہ����$�<&=HG��t!U:�qn�z"8OD��1z#�>o%���6��#e���<_}�Ox��Ln9�08�U~A�Fh��e*+��K)����L�::�1P�a|�t�� ��E�)�$C���k%�ˮ�*�����Rf04�lT҇�M%膽^���sr�� ���h��$m|0���jI]"&�4B���A�0www�Yh9���H���E|�HU+��a-�I�WJ�0���!��>1`Д] �D|����� �:ߨzR�I F� -���=5�cN�}8tN*Y绿=���i���P#�u|!�e§&ǐ��z�ӁH�-�_rA��3t:T�3ȋ )�Sty�_P��;u�3Wx$��� �䌇��m�@�Z��[���?۶��5�e�!�0��.����r-ut)�Yw*���L:�@��ɂ'q��`��Lj.< J����� !S����4�����6�Bk��0-δ�ߧahi�婻鉮�h�� -i��9�s��=�c�F�������V�s)���f*/���z��^i��<E{m����o$`��ʮ���kg���mT�UN������� :��þe|è[A�� -}:,�5G�1�Q���8EE 7�t��4k+Y�m�Q=N���=_�h���8F��� ��c�_���W�~�f�\��k�hX����/��7<ڷa�.K�<��/pj�|�t ��\��������_"��=�_"FG>�O�?*��y�F�)u�߽z��q���EAOolJ���W�{� ��=*�@?�t E�����}�@E=��SM%��qziQ��hb�̟��^��hjT*�決o��c�6F��U�2�{���]Ah�J& T���!�"#�L�k�<I���Ǩ��0�C�ز;�Ũg=��E���J0^~AQ��������q �7��=��N�t��vx�Y�!�O=��b��c'b\r�� ��܆���,���@ ��o�g��!��)��0�ZJ��ю�me�����B�ܐ�gy�[\�g$r+�>�����������"�3�k����?�1 z��O�{��_�C;�0����{������endstream -endobj 4506 0 obj << -/Type /Page -/Contents 4507 0 R -/Resources 4505 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4357 0 R +/D [4490 0 R /XYZ 488.744 258.63 null] +>> endobj +4507 0 obj << +/D [4490 0 R /XYZ 106.431 245.679 null] >> endobj 4508 0 obj << -/D [4506 0 R /XYZ 71.731 729.265 null] +/D [4490 0 R /XYZ 71.731 245.579 null] >> endobj 4509 0 obj << -/D [4506 0 R /XYZ 71.731 718.306 null] +/D [4490 0 R /XYZ 207.151 227.746 null] >> endobj 4510 0 obj << -/D [4506 0 R /XYZ 71.731 696.359 null] +/D [4490 0 R /XYZ 171.988 214.795 null] >> endobj 4511 0 obj << -/D [4506 0 R /XYZ 71.731 673.31 null] +/D [4490 0 R /XYZ 337.682 201.843 null] >> endobj 4512 0 obj << -/D [4506 0 R /XYZ 71.731 634.521 null] +/D [4490 0 R /XYZ 71.731 199.686 null] >> endobj 4513 0 obj << -/D [4506 0 R /XYZ 71.731 484.074 null] +/D [4490 0 R /XYZ 71.731 176.772 null] >> endobj 4514 0 obj << -/D [4506 0 R /XYZ 71.731 451.741 null] +/D [4490 0 R /XYZ 71.731 171.791 null] >> endobj 4515 0 obj << -/D [4506 0 R /XYZ 74.222 410.062 null] +/D [4490 0 R /XYZ 71.731 169.3 null] >> endobj 4516 0 obj << -/D [4506 0 R /XYZ 71.731 384.991 null] +/D [4490 0 R /XYZ 113.574 151.034 null] >> endobj 4517 0 obj << -/D [4506 0 R /XYZ 111.572 369.215 null] +/D [4490 0 R /XYZ 286.733 151.034 null] >> endobj 4518 0 obj << -/D [4506 0 R /XYZ 71.731 349.126 null] +/D [4490 0 R /XYZ 291.157 151.034 null] >> endobj 4519 0 obj << -/D [4506 0 R /XYZ 272.368 338.331 null] +/D [4490 0 R /XYZ 71.731 135.925 null] >> endobj 4520 0 obj << -/D [4506 0 R /XYZ 169.456 312.428 null] +/D [4490 0 R /XYZ 113.574 120.149 null] >> endobj 4521 0 obj << -/D [4506 0 R /XYZ 74.222 281.544 null] +/D [4490 0 R /XYZ 307.174 120.149 null] >> endobj 4522 0 obj << -/D [4506 0 R /XYZ 488.744 258.63 null] +/D [4490 0 R /XYZ 388.314 120.149 null] >> endobj 4523 0 obj << -/D [4506 0 R /XYZ 106.431 245.679 null] ->> endobj -4524 0 obj << -/D [4506 0 R /XYZ 71.731 245.579 null] ->> endobj -4525 0 obj << -/D [4506 0 R /XYZ 207.151 227.746 null] ->> endobj -4526 0 obj << -/D [4506 0 R /XYZ 171.988 214.795 null] ->> endobj -4527 0 obj << -/D [4506 0 R /XYZ 337.682 201.843 null] ->> endobj -4528 0 obj << -/D [4506 0 R /XYZ 71.731 199.686 null] ->> endobj -4529 0 obj << -/D [4506 0 R /XYZ 71.731 176.772 null] ->> endobj -4530 0 obj << -/D [4506 0 R /XYZ 71.731 171.791 null] ->> endobj -4531 0 obj << -/D [4506 0 R /XYZ 71.731 169.3 null] ->> endobj -4532 0 obj << -/D [4506 0 R /XYZ 113.574 151.034 null] ->> endobj -4533 0 obj << -/D [4506 0 R /XYZ 286.733 151.034 null] ->> endobj -4534 0 obj << -/D [4506 0 R /XYZ 291.157 151.034 null] ->> endobj -4535 0 obj << -/D [4506 0 R /XYZ 71.731 135.925 null] ->> endobj -4536 0 obj << -/D [4506 0 R /XYZ 113.574 120.149 null] ->> endobj -4537 0 obj << -/D [4506 0 R /XYZ 307.174 120.149 null] ->> endobj -4538 0 obj << -/D [4506 0 R /XYZ 388.314 120.149 null] ->> endobj -4539 0 obj << -/D [4506 0 R /XYZ 239.479 107.198 null] +/D [4490 0 R /XYZ 239.479 107.198 null] >> endobj -4505 0 obj << +4489 0 obj << /Font << /F33 1210 0 R /F32 1119 0 R /F27 1112 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4542 0 obj << +4526 0 obj << /Length 1024 /Filter /FlateDecode >> @@ -17047,44 +16975,44 @@ J Z�m�w>����3�j��[���#nَ�:QI����P�5��-�� �ۭ�- �nh��8@S�V,H�d�( �s���Ab�����Լ��&�|�%_$&�v5 .N��E�8�^��!r�l}����cIL�E�&;]�2o��mv����5�`p� fy. ���"� w���#�i����X�,oU%�8Aܢ�xbԎ? G�ըna�2�], Eֽ�$h=��l<������2S�Z?^�e��/c�e8��d���k�;�㩚��<��㷋D�� )��:QN�.e��o�/�w�'�U�`p��4��i�<ҬP�0;�ՠ����<p���̠�?�jD;�[�a�F,�:���z�N\��S��ً�J�qý���ʌ�?a��M�7���=' -��S2����~��"��旕���ջ����j�'%����nx��-��]endstream +��S2����~��"��旕���ջ����j�'%���d�nx��-^�\endstream endobj -4541 0 obj << +4525 0 obj << /Type /Page -/Contents 4542 0 R -/Resources 4540 0 R +/Contents 4526 0 R +/Resources 4524 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4551 0 R +/Parent 4392 0 R >> endobj -4543 0 obj << -/D [4541 0 R /XYZ 71.731 729.265 null] +4527 0 obj << +/D [4525 0 R /XYZ 71.731 729.265 null] >> endobj -4544 0 obj << -/D [4541 0 R /XYZ 186.062 695.392 null] +4528 0 obj << +/D [4525 0 R /XYZ 186.062 695.392 null] >> endobj -4545 0 obj << -/D [4541 0 R /XYZ 71.731 693.235 null] +4529 0 obj << +/D [4525 0 R /XYZ 71.731 693.235 null] >> endobj -4546 0 obj << -/D [4541 0 R /XYZ 113.574 677.46 null] +4530 0 obj << +/D [4525 0 R /XYZ 113.574 677.46 null] >> endobj -4547 0 obj << -/D [4541 0 R /XYZ 71.731 638.506 null] +4531 0 obj << +/D [4525 0 R /XYZ 71.731 638.506 null] >> endobj -4548 0 obj << -/D [4541 0 R /XYZ 113.574 620.672 null] +4532 0 obj << +/D [4525 0 R /XYZ 113.574 620.672 null] >> endobj -4549 0 obj << -/D [4541 0 R /XYZ 71.731 605.564 null] +4533 0 obj << +/D [4525 0 R /XYZ 71.731 605.564 null] >> endobj -4550 0 obj << -/D [4541 0 R /XYZ 113.574 589.788 null] +4534 0 obj << +/D [4525 0 R /XYZ 113.574 589.788 null] >> endobj -4540 0 obj << +4524 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4554 0 obj << +4537 0 obj << /Length 2470 /Filter /FlateDecode >> @@ -17096,129 +17024,129 @@ Eg �72�"-Ʌ���Щ�r�Y�Q*�����Jt&�OQa>*<.�zࡺ������,}KKK.M��.��'�����#a��Wۣ �O�a��9b� �����`ZO����My'��w2�E���f(�p�~{�s����7 ��?���RG"���p�'�חk!�1}��L�����L�ƹ?@�Ưԇ�O���|�#�օ7FY;fm��`L�)�SC$�P_�EY������DS��g�D��q- h�J��f��k�`oj��pzp���6�A�P��1�8�v0�aƔ�x���H�W� K'S��?��7w����_좎y%ʫ�%��`�ս%���Ўk#X8��f��t��r�$r�>I�����oKs���ҕDlQ�OEa�@��j8�q�"��m�W����X%`T7���Uz���+�ݭ���>�\l=B�����T��bt�8O��.\�d�K��*�}�L�E�o��}[��:���;�]?��)�Иj��#�ʼnn�@ԇt�&����-'����uhYu�rЭ�8���� ���@��Q��2`5�/a�����a�Cy����� R�E=b 0>�2���� �g̳���BvZ�����e�$�~�ݡ�NR,����?`��#�E%�d^�hb�#厄(T9E�gn�|���U "Up˄:?�cӖbij�D� �R͆TZ$�z�1�0��U9���V�����Æ���=f�{7�����M5@&{X�,gZn�t�t�@�� #V0��-�����g#��g׆�wf�3�4����P��1:��<��!�D���pH(RU�h �5��(��{�8���G�|�車�%�(t?�2;��!�s�D���@� ��(�%\b��9�<:��q}%���g\�*V��$��Y?��t�_B_z�g���]�(����`��,ݑP��?� �*��`]��<t=�b�'�m��������T���䬵F���d�S���T���Fѕ{,I4jN��TH�rz�8�l��Qx�W��Y+ԃ�I -��|��֢>,xK["X��[$�mPp5D�0{��vǭ�l���!��n$��Sz������o&�����q��Ư�UǶu���-=�+o��oK��=�E �ܓ[��Cp��<8W�0:�滻�qv�����������ɝ�\g�@���>z�!�I7�z�ͷ��boQ�m��7����T2�0�9}��CM��H�r����j���r��+)�ķ~���㈜��L�懓*�T�H�Ϋ�g����4��ȿ��ʞeX����<~7u�8��u�)��ιg��7Θԃye���'|�|����L��\�h'��w�rF��pnz�<�K^�L$It���;��-��^�E��\K�9���l�("��H�9����(@\��,�AZ�P#��Z�5��s�`��!0k����7��/�wIGݽ���/a��vʗ�w��zl��;�DrI���vM�{�������T��4�N��KKW�VF|uf�s��K���c�����ċ��,]��l��8�3���۬q�k}/��H��GW�M�u)��7��i֏���I�\6B�;)����4|�����4pJ�s~�rG�ALy��7���B�ˍc�����(ڹ{gɒ�������`3��endstream +��|��֢>,xK["X��[$�mPp5D�0{��vǭ�l���!��n$��Sz������o&�����q��Ư�UǶu���-=�+o��oK��=�E �ܓ[��Cp��<8W�0:�滻�qv�����������ɝ�\g�@���>z�!�I7�z�ͷ��boQ�m��7����T2�0�9}��CM��H�r����j���r��+)�ķ~���㈜��L�懓*�T�H�Ϋ�g����4��ȿ��ʞeX����<~7u�8��u�)��ιg��7Θԃye���'|�|����L��\�h'��w�rF��pnz�<�K^�L$It���;��-��^�E��\K�9���l�("��H�9����(@\��,�AZ�P#��Z�5��s�`��!0k����7��/�wIGݽ���/a��vʗ�w��zl��;�DrI���vM�{�������T��4�N��KKW�VF|uf�s��K���c�����ċ��,]��l��8�3���۬q�k}/��H��GW�M�u)��7��i֏���I�\6B�;)����4|�����4pJ�s~�rG�ALy��7���B�ˍc9X��PD��];�����C���vk�endstream endobj -4553 0 obj << +4536 0 obj << /Type /Page -/Contents 4554 0 R -/Resources 4552 0 R +/Contents 4537 0 R +/Resources 4535 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4551 0 R -/Annots [ 4561 0 R 4562 0 R ] +/Parent 4562 0 R +/Annots [ 4544 0 R 4545 0 R ] >> endobj -4561 0 obj << +4544 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [235.548 547.742 280.892 556.654] /Subtype /Link /A << /S /GoTo /D (installation) >> >> endobj -4562 0 obj << +4545 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [355.754 547.742 401.098 556.654] /Subtype /Link /A << /S /GoTo /D (configuration) >> >> endobj -4555 0 obj << -/D [4553 0 R /XYZ 71.731 729.265 null] +4538 0 obj << +/D [4536 0 R /XYZ 71.731 729.265 null] >> endobj 1681 0 obj << -/D [4553 0 R /XYZ 71.731 718.306 null] +/D [4536 0 R /XYZ 71.731 718.306 null] >> endobj 802 0 obj << -/D [4553 0 R /XYZ 358.696 703.236 null] +/D [4536 0 R /XYZ 358.696 703.236 null] >> endobj -4556 0 obj << -/D [4553 0 R /XYZ 71.731 681.855 null] +4539 0 obj << +/D [4536 0 R /XYZ 71.731 681.855 null] >> endobj 1682 0 obj << -/D [4553 0 R /XYZ 71.731 658.391 null] +/D [4536 0 R /XYZ 71.731 658.391 null] >> endobj 806 0 obj << -/D [4553 0 R /XYZ 233.175 615.294 null] +/D [4536 0 R /XYZ 233.175 615.294 null] >> endobj -4557 0 obj << -/D [4553 0 R /XYZ 71.731 606.471 null] +4540 0 obj << +/D [4536 0 R /XYZ 71.731 606.471 null] >> endobj -4558 0 obj << -/D [4553 0 R /XYZ 141.316 593.735 null] +4541 0 obj << +/D [4536 0 R /XYZ 141.316 593.735 null] >> endobj -4559 0 obj << -/D [4553 0 R /XYZ 405.441 580.783 null] +4542 0 obj << +/D [4536 0 R /XYZ 405.441 580.783 null] >> endobj -4560 0 obj << -/D [4553 0 R /XYZ 71.731 560.694 null] +4543 0 obj << +/D [4536 0 R /XYZ 71.731 560.694 null] >> endobj -4563 0 obj << -/D [4553 0 R /XYZ 82.138 523.996 null] +4546 0 obj << +/D [4536 0 R /XYZ 82.138 523.996 null] >> endobj -4564 0 obj << -/D [4553 0 R /XYZ 71.731 490.955 null] +4547 0 obj << +/D [4536 0 R /XYZ 71.731 490.955 null] >> endobj -4565 0 obj << -/D [4553 0 R /XYZ 430.969 467.209 null] +4548 0 obj << +/D [4536 0 R /XYZ 430.969 467.209 null] >> endobj -4566 0 obj << -/D [4553 0 R /XYZ 71.731 454.258 null] +4549 0 obj << +/D [4536 0 R /XYZ 71.731 454.258 null] >> endobj -4567 0 obj << -/D [4553 0 R /XYZ 468.549 428.355 null] +4550 0 obj << +/D [4536 0 R /XYZ 468.549 428.355 null] >> endobj 1683 0 obj << -/D [4553 0 R /XYZ 71.731 421.217 null] +/D [4536 0 R /XYZ 71.731 421.217 null] >> endobj 810 0 obj << -/D [4553 0 R /XYZ 537.833 378.119 null] +/D [4536 0 R /XYZ 537.833 378.119 null] >> endobj -4568 0 obj << -/D [4553 0 R /XYZ 71.731 365.681 null] +4551 0 obj << +/D [4536 0 R /XYZ 71.731 365.681 null] >> endobj -4569 0 obj << -/D [4553 0 R /XYZ 149.514 356.56 null] +4552 0 obj << +/D [4536 0 R /XYZ 149.514 356.56 null] >> endobj -4570 0 obj << -/D [4553 0 R /XYZ 252.264 356.56 null] +4553 0 obj << +/D [4536 0 R /XYZ 252.264 356.56 null] >> endobj -4571 0 obj << -/D [4553 0 R /XYZ 71.731 331.489 null] +4554 0 obj << +/D [4536 0 R /XYZ 71.731 331.489 null] >> endobj -4572 0 obj << -/D [4553 0 R /XYZ 71.731 331.489 null] +4555 0 obj << +/D [4536 0 R /XYZ 71.731 331.489 null] >> endobj 1684 0 obj << -/D [4553 0 R /XYZ 71.731 263.994 null] +/D [4536 0 R /XYZ 71.731 263.994 null] >> endobj 814 0 obj << -/D [4553 0 R /XYZ 207.49 197.767 null] +/D [4536 0 R /XYZ 207.49 197.767 null] >> endobj -4573 0 obj << -/D [4553 0 R /XYZ 71.731 188.945 null] +4556 0 obj << +/D [4536 0 R /XYZ 71.731 188.945 null] >> endobj -4574 0 obj << -/D [4553 0 R /XYZ 71.731 174.051 null] +4557 0 obj << +/D [4536 0 R /XYZ 71.731 174.051 null] >> endobj -4575 0 obj << -/D [4553 0 R /XYZ 71.731 169.07 null] +4558 0 obj << +/D [4536 0 R /XYZ 71.731 169.07 null] >> endobj -4576 0 obj << -/D [4553 0 R /XYZ 89.664 148.313 null] +4559 0 obj << +/D [4536 0 R /XYZ 89.664 148.313 null] >> endobj -4577 0 obj << -/D [4553 0 R /XYZ 89.664 122.41 null] +4560 0 obj << +/D [4536 0 R /XYZ 89.664 122.41 null] >> endobj -4578 0 obj << -/D [4553 0 R /XYZ 71.731 120.253 null] +4561 0 obj << +/D [4536 0 R /XYZ 71.731 120.253 null] >> endobj 1685 0 obj << -/D [4553 0 R /XYZ 71.731 48.817 null] +/D [4536 0 R /XYZ 71.731 48.817 null] >> endobj -4552 0 obj << -/Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R /F57 2335 0 R /F33 1210 0 R >> +4535 0 obj << +/Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R /F57 2317 0 R /F33 1210 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4581 0 obj << -/Length 1771 +4565 0 obj << +/Length 1772 /Filter /FlateDecode >> stream @@ -17229,168 +17157,168 @@ O`M(2 �Z,.NJ�撷� 0� C�<��!M^���lW:�4�3���N٦i4T��h(�{y��t=&�XU�� &�oYZ������1q�����{�vA�� llOT�Y) ��^]^��/k�W�(����h�ndm�.�Ban|�Lɮ����E a�z�Fc��%8Zl��$���`��g6����0�3�(����ہ��|�U�Ӂn�t���.�֔����J�i����.@�s� ���Kh�����!dv03¡m3;�G�|N�W���4�<��K*�{���n~�ys}{�$�@1�}u���\����B��}aб�X�Q����(�fl"c��'��Ϡ��q��l�5�e���k�ф���1�Pu��o^�=�sN���^�^p������w�_�`|���}��V��?�f1��.Kv)Ҟ��F��|��0�b?�6�M-�|��9��oR��բ5>E\�[u�[�(Cq%�G$��LJ�э��&>��B���@����8QVn �����Q��گO���;h���v�퇗Ux-���w��`a����(��:�� �턏�ɮ��<��#��E�I;Q����/�~μ�>�De�ށ��dֳ�rC+N���2u��I�%wD��;���;���?���!hK���.9���' ����A��WNN�ː�e��2�l��l����/��f!,�X�����k�a�|�zI�u'>:���頸�V�ߥ�[!�|�¸��t�^�Og���h��fW0L|�dk��$���$4'Qi���gY����۸۲�ڜf��#1�=�Ԫu�*�yz��HO�\����<T��Usml�F��Z -�[��*>��2����>H�t�Ŧ;O�1�=�}���!0��zs��i������5v���ųc9��'p#H�Q -��D����X��q��Bendstream +�[��*>��2����>H�t�Ŧ;O�1�=�}���!0��zs��i������5v���ųc9��'p�9�49 ?��ͱ��q[�?endstream endobj -4580 0 obj << +4564 0 obj << /Type /Page -/Contents 4581 0 R -/Resources 4579 0 R +/Contents 4565 0 R +/Resources 4563 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4551 0 R +/Parent 4562 0 R >> endobj -4582 0 obj << -/D [4580 0 R /XYZ 71.731 729.265 null] +4566 0 obj << +/D [4564 0 R /XYZ 71.731 729.265 null] >> endobj -4583 0 obj << -/D [4580 0 R /XYZ 89.664 708.344 null] +4567 0 obj << +/D [4564 0 R /XYZ 89.664 708.344 null] >> endobj 818 0 obj << -/D [4580 0 R /XYZ 505.555 645.157 null] +/D [4564 0 R /XYZ 505.555 645.157 null] >> endobj -4584 0 obj << -/D [4580 0 R /XYZ 71.731 632.719 null] +4568 0 obj << +/D [4564 0 R /XYZ 71.731 632.719 null] >> endobj -4585 0 obj << -/D [4580 0 R /XYZ 129.185 623.597 null] +4569 0 obj << +/D [4564 0 R /XYZ 129.185 623.597 null] >> endobj -4586 0 obj << -/D [4580 0 R /XYZ 71.731 616.459 null] +4570 0 obj << +/D [4564 0 R /XYZ 71.731 616.459 null] >> endobj 1686 0 obj << -/D [4580 0 R /XYZ 71.731 559.672 null] +/D [4564 0 R /XYZ 71.731 559.672 null] >> endobj 822 0 obj << -/D [4580 0 R /XYZ 370.33 516.575 null] +/D [4564 0 R /XYZ 370.33 516.575 null] >> endobj -4587 0 obj << -/D [4580 0 R /XYZ 71.731 504.137 null] +4571 0 obj << +/D [4564 0 R /XYZ 71.731 504.137 null] >> endobj -4588 0 obj << -/D [4580 0 R /XYZ 71.731 482.896 null] +4572 0 obj << +/D [4564 0 R /XYZ 71.731 482.896 null] >> endobj -4589 0 obj << -/D [4580 0 R /XYZ 71.731 427.416 null] +4573 0 obj << +/D [4564 0 R /XYZ 71.731 427.416 null] >> endobj -4590 0 obj << -/D [4580 0 R /XYZ 139.576 415.514 null] +4574 0 obj << +/D [4564 0 R /XYZ 139.576 415.514 null] >> endobj -4591 0 obj << -/D [4580 0 R /XYZ 71.731 403.394 null] +4575 0 obj << +/D [4564 0 R /XYZ 71.731 403.394 null] >> endobj -4592 0 obj << -/D [4580 0 R /XYZ 71.731 336.258 null] +4576 0 obj << +/D [4564 0 R /XYZ 71.731 336.258 null] >> endobj -4593 0 obj << -/D [4580 0 R /XYZ 71.731 314.293 null] +4577 0 obj << +/D [4564 0 R /XYZ 71.731 314.293 null] >> endobj -4594 0 obj << -/D [4580 0 R /XYZ 71.731 245.1 null] +4578 0 obj << +/D [4564 0 R /XYZ 71.731 245.1 null] >> endobj 1746 0 obj << -/D [4580 0 R /XYZ 71.731 226.433 null] +/D [4564 0 R /XYZ 71.731 226.433 null] >> endobj 826 0 obj << -/D [4580 0 R /XYZ 374.461 182.962 null] +/D [4564 0 R /XYZ 374.461 182.962 null] >> endobj -4595 0 obj << -/D [4580 0 R /XYZ 71.731 170.791 null] +4579 0 obj << +/D [4564 0 R /XYZ 71.731 170.791 null] >> endobj -4596 0 obj << -/D [4580 0 R /XYZ 402.991 161.403 null] +4580 0 obj << +/D [4564 0 R /XYZ 402.991 161.403 null] >> endobj -4597 0 obj << -/D [4580 0 R /XYZ 71.731 136.332 null] +4581 0 obj << +/D [4564 0 R /XYZ 71.731 136.332 null] >> endobj -4579 0 obj << +4563 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F32 1119 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4600 0 obj << -/Length 1560 +4584 0 obj << +/Length 1559 /Filter /FlateDecode >> stream -x��ko�6�{~�����4IY{�$K�lm2d�bY�-����R+��w�#k�v�� -,����x�e���/z�`��3�ty�{89?�b`I4�Ӄ����l���7���Ÿ��Ł�M�?���Ve���p��:����G�Wu�B��ju���9���t�Nj�Gl��*�hv4��Z3g ��?Ŧ�^��(�h���J�n��Pu �����Gp����,��I3\�UU�u�StaS�����g�Qi[5$"O�����*�«���\?����~`�ve>�Ʊ%d�qڏ��P[ }�����i��݈����h��`$ƣ�7!?� �6�:Z-A@1'��h}Ź��(9{uS͊��Ԓbj�b�NAIQT}xwv[�E�=��j�ve��f6UI�����I��R9IL@�L�}�=�Kn����H~�Ц�G�J�]wH�Bp���F{�B�e�o<�w�, ��Ie���A���Cs�E��(�^��9��P���M�"P���)[�2ڞ�e[�l����@J��F������叧��][�R� oԩ���!4��<���À���=]�� �[� լteO�����.�d2�J-kw+i-+:ӫ��$�U ۪q�ۜ�Z5�.h��qF����)��%y��J�� ��Iz��3�`}��_�i�y���e��)UԨ�jZ�Mv��< -��K�B�"���8&�`��\��#��A�yE�F������r����`��U3,�l,��J�F� n�ƏC�p -�a��.�\����e��|!��N~u��1I�/b����/W�G�/?dU�Y��}���!�M��n����B��UUcI)ھ��q9���-�z�$5|a l��8@�����&\5�[U]�,�K��'�$�j�/A]F�#Z -�A�AG����V9֛N�v�شX� �&u]<XTnk~^�1H -ݖ�i���w�N�m�I�r,ɫ؊t�� -�5q��#�#�sT�8�6�_CB�ffC��N�X�����F��`����Q�Y5�($�'2�p�:�������.��`�)���(�g��x y��^<D8"��Y<ou���@-h=9��LN���#����V�_/�����pqzs�P���������>��oGח�� &|��`�����^������t29~u� ���d�i����[�I�'3�n]��ɼ+SL1L�}vY���y��O�*�߶`5��&�Ǣ~٨E�/j��#j�F�v��6�A��ȾZc�j=��v-�3g�0�����{)�����l��S87��<XS��5�6��RTh�}���|�_r�vP������i�G����sT WT)�z%��V�k��q�A�4�R�h�&3���JYNi��럤�a�-�[� �M��.�]/��<<a�@��S����L�\(7��4�h�9��Y�M�<@��Q��^aIOa|U'�͂�b�YS-�p*ӭqĊ�����V'�g��x��aڲ�Z���bC&=��ǚd��@ƌK��2�?�Ʈ��E^t�endstream +x��ko�6�{~����T�HY/�di��M���V�C K�ET�4=�X���;۵�v@W`���{?(��|rz�������w����n(C�l����=o�8�F��h"8�y< +=�"_�f��Q]�2Sw�#|�:f��l߷{�[U?/d�WU�ʥ��짃�كT�Yy�*6��h&µf��nļ�D+6�Uk;�$�h ��L���������Q|��]��>�F㛤�uU��_��%]��U74��jd�U�=��#8���ʌ�j�G48��Us{��]����82��8��ȵ�k��'���>74LsP�n��O�~�Vp��a0r��G�Ov�mP� ����U��v]qgP::b[uS��[r�13G�u�����(*[�ٖ֭6��{���T��о,1���*iձ��*IsU�AI?W���i��7r�!�/\��^h�$�u�pY��#���hOX����O��<|H�"�F<d��ZYnj��]&�@�:f!z8��W6w]���(���:g(u���$���m��eW�ll�PP��y��uy}qy~�����l������:�k)�u�f�}O`2`@j�AbK���h�sC6��� T�>x� +9��l@�U=�J:�Lj�T�5�Dtd5nU�T��m|0���2�]����J�� �RIz�ۊ�b0>��/�4���<A}�2�̥, jd]5�̦�YF�8y���x��"���8:�`���B�#��A�yE�F��F�l��Bg� ���m3.�|,�q�:-��c��1�h<��zE� +]� h���1���ƪ��_\���eL��1iv��˫��W�*��Vy�_��ۜ��E��M�c!phᲪ��$m��v�9��p(Z����I2j�� �np�JsuIM���l�V]��K�H'�"�j�W�.��-� ��#Mt�ck�֛N�"T�n?�j`M꺸7������ Y(t[ҥ�S���*ͷ&E;�$�b+RE2/�d 4����@�څQ��w�bL�N�l�?��)g�?���4�HV5 +l��a�@�%� +�����;t�ۓ������mg�)���(�g������\<D8$��X�[��+"�KZO�Χӓ���)�41�������?��^_�#���������O����Յa����٣�!>����,�=��:�N�^\cC8z1�fJn跇�gR��\u[��~���Si�]�@�ԯ���`� +��-XGM먉�_6j��Z���Z���g����*4��ȼZOo�]s�̙�7�y���y�EV +�.��>�K��.t?��tx��f�x)�%��>U�k��_rm�� ��-�m�sC�|\�9��+ *�$Q��K�ꍒ�8s�M��N�d%;4q����x���SZ5��'�z�l8��wS2P�خ�}�������`P����L�\�a ����g�7�~�n ��ν� �����N��S�L��Z�7�d�:툖�K5̣A���8{�ă~Ӗ��ӂ�E`�2�_<�$;?x�"��}��n�����+��`uendstream endobj -4599 0 obj << +4583 0 obj << /Type /Page -/Contents 4600 0 R -/Resources 4598 0 R +/Contents 4584 0 R +/Resources 4582 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4551 0 R +/Parent 4562 0 R >> endobj -4601 0 obj << -/D [4599 0 R /XYZ 71.731 729.265 null] +4585 0 obj << +/D [4583 0 R /XYZ 71.731 729.265 null] >> endobj -4602 0 obj << -/D [4599 0 R /XYZ 71.731 718.306 null] +4586 0 obj << +/D [4583 0 R /XYZ 71.731 718.306 null] >> endobj -4603 0 obj << -/D [4599 0 R /XYZ 175.682 708.344 null] +4587 0 obj << +/D [4583 0 R /XYZ 175.682 708.344 null] >> endobj -4604 0 obj << -/D [4599 0 R /XYZ 395.942 708.344 null] +4588 0 obj << +/D [4583 0 R /XYZ 395.942 708.344 null] >> endobj -4605 0 obj << -/D [4599 0 R /XYZ 486.807 708.344 null] +4589 0 obj << +/D [4583 0 R /XYZ 486.807 708.344 null] >> endobj -4606 0 obj << -/D [4599 0 R /XYZ 71.731 695.392 null] +4590 0 obj << +/D [4583 0 R /XYZ 71.731 695.392 null] >> endobj -4607 0 obj << -/D [4599 0 R /XYZ 71.731 682.441 null] +4591 0 obj << +/D [4583 0 R /XYZ 71.731 682.441 null] >> endobj -4608 0 obj << -/D [4599 0 R /XYZ 107.048 682.441 null] +4592 0 obj << +/D [4583 0 R /XYZ 107.048 682.441 null] >> endobj 1747 0 obj << -/D [4599 0 R /XYZ 71.731 675.303 null] +/D [4583 0 R /XYZ 71.731 675.303 null] >> endobj 830 0 obj << -/D [4599 0 R /XYZ 189.38 609.825 null] +/D [4583 0 R /XYZ 189.38 609.825 null] >> endobj -4609 0 obj << -/D [4599 0 R /XYZ 71.731 599.152 null] +4593 0 obj << +/D [4583 0 R /XYZ 71.731 599.152 null] >> endobj -4610 0 obj << -/D [4599 0 R /XYZ 236.591 588.266 null] +4594 0 obj << +/D [4583 0 R /XYZ 236.591 588.266 null] >> endobj -4611 0 obj << -/D [4599 0 R /XYZ 71.731 563.195 null] +4595 0 obj << +/D [4583 0 R /XYZ 71.731 563.195 null] >> endobj -4612 0 obj << -/D [4599 0 R /XYZ 71.731 460.731 null] +4596 0 obj << +/D [4583 0 R /XYZ 71.731 460.731 null] >> endobj -4613 0 obj << -/D [4599 0 R /XYZ 321.183 436.236 null] +4597 0 obj << +/D [4583 0 R /XYZ 321.183 436.236 null] >> endobj -4614 0 obj << -/D [4599 0 R /XYZ 71.731 424.117 null] +4598 0 obj << +/D [4583 0 R /XYZ 71.731 424.117 null] >> endobj 1748 0 obj << -/D [4599 0 R /XYZ 71.731 205.449 null] +/D [4583 0 R /XYZ 71.731 205.449 null] >> endobj 834 0 obj << -/D [4599 0 R /XYZ 496.414 161.243 null] +/D [4583 0 R /XYZ 496.414 161.243 null] >> endobj -4615 0 obj << -/D [4599 0 R /XYZ 71.731 148.805 null] +4599 0 obj << +/D [4583 0 R /XYZ 71.731 148.805 null] >> endobj -4616 0 obj << -/D [4599 0 R /XYZ 206.804 139.684 null] +4600 0 obj << +/D [4583 0 R /XYZ 206.804 139.684 null] >> endobj -4598 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R /F57 2335 0 R /F23 1105 0 R >> +4582 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R /F57 2317 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4619 0 obj << +4603 0 obj << /Length 2158 /Filter /FlateDecode >> @@ -17405,90 +17333,90 @@ GC NnT�|dr� q��,B�Qvӻƶq�� mzN��]"���D��_Q��p>����s!X���ם��i�&���D\{f�s����D�I�q�#��vr� 1v�w��@I~�O�D+%�H�bƶ?a�q�}�;)����c<Զ��=��R� �6�Yw�e�\�{� �D� Y�4�<tRjj��B���u �Żp�gd���T��YER� ���G�RT����T��n���?K{6�A}5��h���n�5�cDǥ�߭����NXYnA5��y=En�ɚ[�� �q&Q�C���eVẂ�+��!,L�r����t���;J���t�pk�T�xo�S������N������x�{pZ�0��#�vE�q�S��@8A_��3s�-� �֘�8@�%|!�Jd����M����x�v@gt�7�gx�U��і���v�v�S�Rh$�a��/aCe���<���\����dO��2�PS��ɩ�X�!,YP %��[+�����q�B��=�G�-R�'[a߯ >cN}�I�y����.�d<�����o�L��Ǡ�}Z�o�Z�`#�Rr�w����-6� �y�W�i0��r�Ô���\���ya�]�������x&�Ǡ�h��(ʱ)�2ֈc��:��c�5��5���Vɴ'Ҡ� -��yZN8�s�(�������)���@��f�&��ϰ��Ty�`F��'��L����.���!.�>���~Hcy�Nks�#�%I�KI�� u-="a���z�W:�U%lT͢�]j* Ib#�<��\JE���O}xHRr2����d�\C:�f������0m�/U_��.��{�o/e�t�<�0�'8h��}eU�&����0Gt��/�����4[r��Q0*K�<�ɻ�'*� ՁF����/��]�`�Ga��d�/�w�3�RoXG��]��m�6x���-�P�N�q��'�谲��]z5&{%��ף�IN��7ϥ��8vT�<2�Y�+z.UV�h#��`&�>�U��Q�u��Xq�l�$dX��+/U�=��`��Q���N?����Z.�Y�����WnUQ�����_J���Pf���IgӂƍvG=�L���0�m%�F:[I=�eruT`g=H3��r���w<$�O��Q?x%M��|$M��T����3ǝϞy���S陃���yp��^��AB�zw�~�ew���rHYv�yT����:�����>�G��~����}���}���ԗ�}����_�|�endstream +��yZN8�s�(�������)���@��f�&��ϰ��Ty�`F��'��L����.���!.�>���~Hcy�Nks�#�%I�KI�� u-="a���z�W:�U%lT͢�]j* Ib#�<��\JE���O}xHRr2����d�\C:�f������0m�/U_��.��{�o/e�t�<�0�'8h��}eU�&����0Gt��/�����4[r��Q0*K�<�ɻ�'*� ՁF����/��]�`�Ga��d�/�w�3�RoXG��]��m�6x���-�P�N�q��'�谲��]z5&{%��ף�IN��7ϥ��8vT�<2�Y�+z.UV�h#��`&�>�U��Q�u��Xq�l�$dX��+/U�=��`��Q���N?����Z.�Y�����WnUQ�����_J���Pf���IgӂƍvG=�L���0�m%�F:[I=�eruT`g=H3��r���w<$�O��Q?x%M��|$M��T����3ǝϞy���S陃���yp��^��AB�zw�~�ew���rHYv�yT����:�����>�G��~����}���}���ԗ�?����}|�endstream endobj -4618 0 obj << +4602 0 obj << /Type /Page -/Contents 4619 0 R -/Resources 4617 0 R +/Contents 4603 0 R +/Resources 4601 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4551 0 R +/Parent 4562 0 R >> endobj -4620 0 obj << -/D [4618 0 R /XYZ 71.731 729.265 null] +4604 0 obj << +/D [4602 0 R /XYZ 71.731 729.265 null] >> endobj -4621 0 obj << -/D [4618 0 R /XYZ 71.731 718.306 null] +4605 0 obj << +/D [4602 0 R /XYZ 71.731 718.306 null] >> endobj -4622 0 obj << -/D [4618 0 R /XYZ 508.292 708.344 null] +4606 0 obj << +/D [4602 0 R /XYZ 508.292 708.344 null] >> endobj -4623 0 obj << -/D [4618 0 R /XYZ 71.731 649.4 null] +4607 0 obj << +/D [4602 0 R /XYZ 71.731 649.4 null] >> endobj -4624 0 obj << -/D [4618 0 R /XYZ 71.731 631.467 null] +4608 0 obj << +/D [4602 0 R /XYZ 71.731 631.467 null] >> endobj 1796 0 obj << -/D [4618 0 R /XYZ 71.731 579.661 null] +/D [4602 0 R /XYZ 71.731 579.661 null] >> endobj -4625 0 obj << -/D [4618 0 R /XYZ 71.731 546.919 null] +4609 0 obj << +/D [4602 0 R /XYZ 71.731 546.919 null] >> endobj -4626 0 obj << -/D [4618 0 R /XYZ 71.731 536.956 null] +4610 0 obj << +/D [4602 0 R /XYZ 71.731 536.956 null] >> endobj -4627 0 obj << -/D [4618 0 R /XYZ 135.985 527.323 null] +4611 0 obj << +/D [4602 0 R /XYZ 135.985 527.323 null] >> endobj -4628 0 obj << -/D [4618 0 R /XYZ 135.985 492.354 null] +4612 0 obj << +/D [4602 0 R /XYZ 135.985 492.354 null] >> endobj -4629 0 obj << -/D [4618 0 R /XYZ 71.731 435.766 null] +4613 0 obj << +/D [4602 0 R /XYZ 71.731 435.766 null] >> endobj 1797 0 obj << -/D [4618 0 R /XYZ 71.731 396.812 null] +/D [4602 0 R /XYZ 71.731 396.812 null] >> endobj -4630 0 obj << -/D [4618 0 R /XYZ 71.731 362.013 null] +4614 0 obj << +/D [4602 0 R /XYZ 71.731 362.013 null] >> endobj -4631 0 obj << -/D [4618 0 R /XYZ 71.731 352.05 null] +4615 0 obj << +/D [4602 0 R /XYZ 71.731 352.05 null] >> endobj -4632 0 obj << -/D [4618 0 R /XYZ 135.985 342.416 null] +4616 0 obj << +/D [4602 0 R /XYZ 135.985 342.416 null] >> endobj -4633 0 obj << -/D [4618 0 R /XYZ 135.985 307.447 null] +4617 0 obj << +/D [4602 0 R /XYZ 135.985 307.447 null] >> endobj -4634 0 obj << -/D [4618 0 R /XYZ 71.731 274.172 null] +4618 0 obj << +/D [4602 0 R /XYZ 71.731 274.172 null] >> endobj -4635 0 obj << -/D [4618 0 R /XYZ 181.691 261.22 null] +4619 0 obj << +/D [4602 0 R /XYZ 181.691 261.22 null] >> endobj -4636 0 obj << -/D [4618 0 R /XYZ 485.889 261.22 null] +4620 0 obj << +/D [4602 0 R /XYZ 485.889 261.22 null] >> endobj 1749 0 obj << -/D [4618 0 R /XYZ 71.731 228.179 null] +/D [4602 0 R /XYZ 71.731 228.179 null] >> endobj 838 0 obj << -/D [4618 0 R /XYZ 517.296 185.082 null] +/D [4602 0 R /XYZ 517.296 185.082 null] >> endobj -4637 0 obj << -/D [4618 0 R /XYZ 71.731 172.644 null] +4621 0 obj << +/D [4602 0 R /XYZ 71.731 172.644 null] >> endobj -4638 0 obj << -/D [4618 0 R /XYZ 71.731 157.102 null] +4622 0 obj << +/D [4602 0 R /XYZ 71.731 157.102 null] >> endobj -4617 0 obj << +4601 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4641 0 obj << -/Length 1812 +4625 0 obj << +/Length 1810 /Filter /FlateDecode >> stream @@ -17504,80 +17432,79 @@ J �-�@�U���& <Ȗ���N�B.���iΔ\�Gi���oc���T\CS�l쭝+0�����=`}�j�������4��`�-�>>��#m!�.�zkj� ���u<$��y}�;t��3i��LIΪ��G8��2�o�E���a�����z>7�ek�m�ÉpG��+p��@+AG�����N=%4��q<W- s�@��O�S�ǮCT�ˣB��@� ���۬ڢ5�K��]���C��vՏ-��m�ŅoFdž�#\�qtp�x�-xz�6��|���z���Sk���Kq�`�Ű�~���4�a�����$�KL���O��z��yL�:���[ ��t̓P��`��s>�p�b�Cӌ/�Ǯ�Zg�m�^��ʶ�̈�m��%�0��4�� ��P���t0|�$��� -���D��A���ӕ�\���n��Q���z�|Lqq�+Z;4�C�P�Q_�H��[�[#�g��&_ٲ������WW��G�*�;�u_���^�D����Ou�W����������R,�������_6��D� -J.���a�y�K��*endstream +���D��A���ӕ�\���n��Q���z�|Lqq�+Z;4�C�P�Q_�H��[�[#�g��&_ٲ������WW��G�*�;�u_���^�D����Ou�W����������R,�������_6��D�<<�_��ӿޅ��endstream endobj -4640 0 obj << +4624 0 obj << /Type /Page -/Contents 4641 0 R -/Resources 4639 0 R +/Contents 4625 0 R +/Resources 4623 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4551 0 R -/Annots [ 4650 0 R ] +/Parent 4562 0 R +/Annots [ 4634 0 R ] >> endobj -4650 0 obj << +4634 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [81.972 518.428 141.748 525.282] /Subtype /Link /A << /S /GoTo /D (http-apache) >> >> endobj -4642 0 obj << -/D [4640 0 R /XYZ 71.731 729.265 null] +4626 0 obj << +/D [4624 0 R /XYZ 71.731 729.265 null] >> endobj -4643 0 obj << -/D [4640 0 R /XYZ 71.731 718.306 null] +4627 0 obj << +/D [4624 0 R /XYZ 71.731 718.306 null] >> endobj -4644 0 obj << -/D [4640 0 R /XYZ 310.001 708.344 null] +4628 0 obj << +/D [4624 0 R /XYZ 310.001 708.344 null] >> endobj -4645 0 obj << -/D [4640 0 R /XYZ 278.636 682.441 null] +4629 0 obj << +/D [4624 0 R /XYZ 278.636 682.441 null] >> endobj 1750 0 obj << -/D [4640 0 R /XYZ 71.731 636.448 null] +/D [4624 0 R /XYZ 71.731 636.448 null] >> endobj 842 0 obj << -/D [4640 0 R /XYZ 107.109 570.971 null] +/D [4624 0 R /XYZ 107.109 570.971 null] >> endobj -4646 0 obj << -/D [4640 0 R /XYZ 71.731 562.148 null] +4630 0 obj << +/D [4624 0 R /XYZ 71.731 562.148 null] >> endobj -4647 0 obj << -/D [4640 0 R /XYZ 71.731 542.274 null] +4631 0 obj << +/D [4624 0 R /XYZ 71.731 542.274 null] >> endobj -4648 0 obj << -/D [4640 0 R /XYZ 274.373 531.479 null] +4632 0 obj << +/D [4624 0 R /XYZ 274.373 531.479 null] >> endobj -4649 0 obj << -/D [4640 0 R /XYZ 390.766 531.479 null] +4633 0 obj << +/D [4624 0 R /XYZ 390.766 531.479 null] >> endobj 1751 0 obj << -/D [4640 0 R /XYZ 71.731 513.447 null] +/D [4624 0 R /XYZ 71.731 513.447 null] >> endobj 846 0 obj << -/D [4640 0 R /XYZ 452.394 445.912 null] ->> endobj -4651 0 obj << -/D [4640 0 R /XYZ 71.731 433.741 null] +/D [4624 0 R /XYZ 452.394 445.912 null] >> endobj -4652 0 obj << -/D [4640 0 R /XYZ 71.731 411.401 null] +4635 0 obj << +/D [4624 0 R /XYZ 71.731 433.741 null] >> endobj -4653 0 obj << -/D [4640 0 R /XYZ 437.99 411.401 null] +4636 0 obj << +/D [4624 0 R /XYZ 71.731 411.401 null] >> endobj -4654 0 obj << -/D [4640 0 R /XYZ 71.731 391.312 null] +4637 0 obj << +/D [4624 0 R /XYZ 437.99 411.401 null] >> endobj -4655 0 obj << -/D [4640 0 R /XYZ 130.401 354.614 null] +4638 0 obj << +/D [4624 0 R /XYZ 71.731 391.312 null] >> endobj 4639 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F57 2335 0 R /F35 1437 0 R >> +/D [4624 0 R /XYZ 130.401 354.614 null] +>> endobj +4623 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F57 2317 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4658 0 obj << +4642 0 obj << /Length 3017 /Filter /FlateDecode >> @@ -17592,651 +17519,651 @@ xڝk �(ZwcߵL�E�mh ���T�F���3�Ħ�o�j�m�fOqC�P��$���,y��m�4oG�'G:�-���.�&g�ѦL��NۨA��V�mo�N��m):�7 �k< ��V�}���l��������U�:��{A�t.�#'[���@���SCT���nʡ� 9�\�#_8ɔ�X��Y���R�ć�5����ĝ�g�_2G�9���2i2��<P��=ù�r'UXS�[jj�X�y��W��e�z��2Ɔ�2�en��!�wy�lFm��C{=�yB�z4o��%��H���������R��w�N�\���ːY����|�NU�{������ľ��.��wO�т���%郹�O���-۠g��IcQ�i~����VŶ��~5�L���(�����M>��q�)_z��b;*��Hx u߁ 6�m�2������M�:2?�ںx�` [�C�>���2<�s��\����/�n0֪�ʅʟHz�%"�V�(��)��V�ЬeP��K�3�[p(5�z��Am���ؔZ4`�|�K�Z�1flBN�Y5��T�ah��ܓ9[���G/��������2�'���J�@������U�;� ���I);Y�yhs��25%���*��K%��܌r��NS]��m�AG��3�h��N�Y��A�=�-;=������ ���-^�)��G�(���p�٩,�GqZ�-ʉI�Gj:������'a�df�}t"0�e�f�: �P��5���-�؉�otܹ��3�L�����;L3�J�6��U����z[!���N�rz���dV �lX�f�o�A�$"��k4SlO$�?���×��r�S -W,~�����{�.�(3endstream +�]�<�?k/��.�(2endstream endobj -4657 0 obj << +4641 0 obj << /Type /Page -/Contents 4658 0 R -/Resources 4656 0 R +/Contents 4642 0 R +/Resources 4640 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4700 0 R +/Parent 4562 0 R >> endobj -4659 0 obj << -/D [4657 0 R /XYZ 71.731 729.265 null] +4643 0 obj << +/D [4641 0 R /XYZ 71.731 729.265 null] >> endobj 1752 0 obj << -/D [4657 0 R /XYZ 71.731 718.306 null] +/D [4641 0 R /XYZ 71.731 718.306 null] >> endobj 850 0 obj << -/D [4657 0 R /XYZ 271.435 703.236 null] +/D [4641 0 R /XYZ 271.435 703.236 null] >> endobj -4660 0 obj << -/D [4657 0 R /XYZ 71.731 682.175 null] +4644 0 obj << +/D [4641 0 R /XYZ 71.731 682.175 null] >> endobj -4661 0 obj << -/D [4657 0 R /XYZ 297.998 673.5 null] +4645 0 obj << +/D [4641 0 R /XYZ 297.998 673.5 null] >> endobj 1753 0 obj << -/D [4657 0 R /XYZ 71.731 660.449 null] +/D [4641 0 R /XYZ 71.731 660.449 null] >> endobj 854 0 obj << -/D [4657 0 R /XYZ 365.87 615.294 null] +/D [4641 0 R /XYZ 365.87 615.294 null] +>> endobj +4646 0 obj << +/D [4641 0 R /XYZ 71.731 606.471 null] +>> endobj +4647 0 obj << +/D [4641 0 R /XYZ 457.285 593.735 null] +>> endobj +4648 0 obj << +/D [4641 0 R /XYZ 199.72 580.783 null] +>> endobj +4649 0 obj << +/D [4641 0 R /XYZ 258.499 580.783 null] +>> endobj +4650 0 obj << +/D [4641 0 R /XYZ 315.525 580.783 null] +>> endobj +4651 0 obj << +/D [4641 0 R /XYZ 71.731 578.626 null] +>> endobj +4652 0 obj << +/D [4641 0 R /XYZ 118.555 540.062 null] +>> endobj +4653 0 obj << +/D [4641 0 R /XYZ 71.731 509.785 null] +>> endobj +4654 0 obj << +/D [4641 0 R /XYZ 71.731 509.785 null] +>> endobj +4655 0 obj << +/D [4641 0 R /XYZ 71.731 490.079 null] +>> endobj +4656 0 obj << +/D [4641 0 R /XYZ 165.11 477.128 null] +>> endobj +4657 0 obj << +/D [4641 0 R /XYZ 71.731 469.99 null] +>> endobj +4658 0 obj << +/D [4641 0 R /XYZ 71.731 469.99 null] +>> endobj +4659 0 obj << +/D [4641 0 R /XYZ 164.065 446.244 null] +>> endobj +4660 0 obj << +/D [4641 0 R /XYZ 210.352 446.244 null] +>> endobj +4661 0 obj << +/D [4641 0 R /XYZ 352.569 446.244 null] >> endobj 4662 0 obj << -/D [4657 0 R /XYZ 71.731 606.471 null] +/D [4641 0 R /XYZ 442.661 446.244 null] >> endobj 4663 0 obj << -/D [4657 0 R /XYZ 457.285 593.735 null] +/D [4641 0 R /XYZ 203.715 433.292 null] >> endobj 4664 0 obj << -/D [4657 0 R /XYZ 199.72 580.783 null] +/D [4641 0 R /XYZ 372.061 433.292 null] >> endobj 4665 0 obj << -/D [4657 0 R /XYZ 258.499 580.783 null] +/D [4641 0 R /XYZ 71.731 426.154 null] >> endobj 4666 0 obj << -/D [4657 0 R /XYZ 315.525 580.783 null] +/D [4641 0 R /XYZ 460.217 415.36 null] >> endobj 4667 0 obj << -/D [4657 0 R /XYZ 71.731 578.626 null] +/D [4641 0 R /XYZ 71.731 382.318 null] >> endobj 4668 0 obj << -/D [4657 0 R /XYZ 118.555 540.062 null] +/D [4641 0 R /XYZ 71.731 382.318 null] >> endobj 4669 0 obj << -/D [4657 0 R /XYZ 71.731 509.785 null] +/D [4641 0 R /XYZ 237.451 371.524 null] >> endobj 4670 0 obj << -/D [4657 0 R /XYZ 71.731 509.785 null] +/D [4641 0 R /XYZ 71.731 358.572 null] >> endobj 4671 0 obj << -/D [4657 0 R /XYZ 71.731 490.079 null] +/D [4641 0 R /XYZ 220.87 345.621 null] >> endobj 4672 0 obj << -/D [4657 0 R /XYZ 165.11 477.128 null] +/D [4641 0 R /XYZ 71.731 338.483 null] >> endobj 4673 0 obj << -/D [4657 0 R /XYZ 71.731 469.99 null] +/D [4641 0 R /XYZ 257.124 327.688 null] >> endobj 4674 0 obj << -/D [4657 0 R /XYZ 71.731 469.99 null] +/D [4641 0 R /XYZ 358.713 327.688 null] +>> endobj +1754 0 obj << +/D [4641 0 R /XYZ 71.731 320.55 null] +>> endobj +858 0 obj << +/D [4641 0 R /XYZ 462 277.453 null] >> endobj 4675 0 obj << -/D [4657 0 R /XYZ 164.065 446.244 null] +/D [4641 0 R /XYZ 71.731 265.015 null] >> endobj 4676 0 obj << -/D [4657 0 R /XYZ 210.352 446.244 null] +/D [4641 0 R /XYZ 117.29 255.893 null] >> endobj 4677 0 obj << -/D [4657 0 R /XYZ 352.569 446.244 null] +/D [4641 0 R /XYZ 427.895 255.893 null] >> endobj 4678 0 obj << -/D [4657 0 R /XYZ 442.661 446.244 null] +/D [4641 0 R /XYZ 71.731 224.91 null] >> endobj 4679 0 obj << -/D [4657 0 R /XYZ 203.715 433.292 null] +/D [4641 0 R /XYZ 171.098 212.058 null] >> endobj 4680 0 obj << -/D [4657 0 R /XYZ 372.061 433.292 null] +/D [4641 0 R /XYZ 413.216 212.058 null] >> endobj 4681 0 obj << -/D [4657 0 R /XYZ 71.731 426.154 null] +/D [4641 0 R /XYZ 71.731 166.065 null] >> endobj 4682 0 obj << -/D [4657 0 R /XYZ 460.217 415.36 null] +/D [4641 0 R /XYZ 71.731 122.23 null] >> endobj 4683 0 obj << -/D [4657 0 R /XYZ 71.731 382.318 null] ->> endobj -4684 0 obj << -/D [4657 0 R /XYZ 71.731 382.318 null] +/D [4641 0 R /XYZ 71.731 122.23 null] >> endobj -4685 0 obj << -/D [4657 0 R /XYZ 237.451 371.524 null] +4640 0 obj << +/Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F32 1119 0 R /F33 1210 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 4686 0 obj << -/D [4657 0 R /XYZ 71.731 358.572 null] +/Length 1514 +/Filter /FlateDecode +>> +stream +xڵَ�6�}��@"!+�H�A`�m�-��� �ざh[�L�:��C��3ʖw�HR���p.�%��㋌�,�EL�ɢܟ��-��t�E��L$�g�$�X�G�`������G-D�ҤX�6)a�D�.V���e�*]��~ �ܻ��c�H���eC�k��i�P���3:Y�-�5����A�@�,O�����F�xbu�<A]�.,�2KG�9;���%MW�E��4r7g �7�Q��{f$@+U4\�W��\���;�h#5X�<�i�j�:��Oϑ�/�6�0?��V��+�ҍ��vj.�౯�֩9�7��DжF&�>O<��@}�v~�����~��$�ze}wN;�+�v��S��=m�r[�ֺ�z�s>��3fxE�%��pz��ѫ�e��nFQ�)�@h&y�H3���0��Ϸ�'�f���ul�����q 8���zyeu*�1nm@!��Im�F��/pϾ��x~3U-3����`;eڔ���`i/�8����}o��(�g��G��| ���3]�:1�#�y�ٷ5f"{3v��KS9h�A��c�+�ir�����e7w5V�4ޱE�(TX�v�HZ^�����Ui��j�"�$��z�(͡��F}|�"�"1yx⌉��"�'��vֲۺ�z��� ��n�3��t�k�ۚ�Go_�$�^b~ �Z�:��}��eO��tG6> +* e�+��B�D6`�$�z�I���+!^@�NJ +������t穣��V Y7r���)��̞�!���$��.}ė������rG �E@��`Y=TA���QA�֥�`'�� #�ʖw���/3�q�lM����'s�\�X�UC�맡�P��9�i勂��ɁBv��텰�� +\�T�q������rt�����cµNzm�:�!Xb� ��7�*�@Dw|����k�۶&{���uߏ�c�tɽ F�i�g�`��v=W:�)�Q�H��1dԉ�TN;�ʭ�`4��¡gyE�a(5�I8�lY����)�V�(���N<1Um,i��z9�|����E�T��)<#��f��O�Z�xq�U���PSKĦ��^���^?3�Yƒ�K&0���M���j�+¼3��Op���0ˉ�1dBd_�)Ϝ���Z�7ƺ�f�~��-ig4��5��{�D�5iV��ō+n�T�>���OҙPНwW;Zw�vGI� +�c��2�'�BU�锬\1w�3N�c��~ ?N�q���t���U�+�4�����]4����jI�6S���ST���P��1�W��tZ5<��� �3̔����0����'1��8��W��Y���r�%�0��z^W���9`�(��mw�о���M<%�r��Vj����+/.�|�� ��#�h�����3s9��Y-ށSO5�`�ߗʦ|��E)��@� +m���RӔ�^�����h"�yd�?r}��&���:�x�?J(D9D�s��"8����(:�s""F��9�sk�cQ�/�SY��2�3endstream +endobj +4685 0 obj << +/Type /Page +/Contents 4686 0 R +/Resources 4684 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4712 0 R >> endobj 4687 0 obj << -/D [4657 0 R /XYZ 220.87 345.621 null] +/D [4685 0 R /XYZ 71.731 729.265 null] +>> endobj +1755 0 obj << +/D [4685 0 R /XYZ 71.731 718.306 null] +>> endobj +862 0 obj << +/D [4685 0 R /XYZ 155.521 676.38 null] +>> endobj +1756 0 obj << +/D [4685 0 R /XYZ 71.731 669.666 null] +>> endobj +866 0 obj << +/D [4685 0 R /XYZ 206.096 624.303 null] >> endobj 4688 0 obj << -/D [4657 0 R /XYZ 71.731 338.483 null] +/D [4685 0 R /XYZ 71.731 615.48 null] >> endobj 4689 0 obj << -/D [4657 0 R /XYZ 257.124 327.688 null] +/D [4685 0 R /XYZ 71.731 582.654 null] >> endobj 4690 0 obj << -/D [4657 0 R /XYZ 358.713 327.688 null] ->> endobj -1754 0 obj << -/D [4657 0 R /XYZ 71.731 320.55 null] ->> endobj -858 0 obj << -/D [4657 0 R /XYZ 462 277.453 null] +/D [4685 0 R /XYZ 71.731 572.692 null] >> endobj 4691 0 obj << -/D [4657 0 R /XYZ 71.731 265.015 null] +/D [4685 0 R /XYZ 71.731 572.692 null] >> endobj 4692 0 obj << -/D [4657 0 R /XYZ 117.29 255.893 null] +/D [4685 0 R /XYZ 71.731 561.784 null] >> endobj 4693 0 obj << -/D [4657 0 R /XYZ 427.895 255.893 null] +/D [4685 0 R /XYZ 71.731 551.348 null] >> endobj 4694 0 obj << -/D [4657 0 R /XYZ 71.731 224.91 null] +/D [4685 0 R /XYZ 71.731 538.472 null] >> endobj 4695 0 obj << -/D [4657 0 R /XYZ 171.098 212.058 null] +/D [4685 0 R /XYZ 71.731 528.035 null] >> endobj 4696 0 obj << -/D [4657 0 R /XYZ 413.216 212.058 null] +/D [4685 0 R /XYZ 71.731 516.379 null] >> endobj 4697 0 obj << -/D [4657 0 R /XYZ 71.731 166.065 null] +/D [4685 0 R /XYZ 76.712 483.292 null] >> endobj 4698 0 obj << -/D [4657 0 R /XYZ 71.731 122.23 null] +/D [4685 0 R /XYZ 71.731 468.348 null] >> endobj 4699 0 obj << -/D [4657 0 R /XYZ 71.731 122.23 null] +/D [4685 0 R /XYZ 486.228 456.692 null] >> endobj -4656 0 obj << -/Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F32 1119 0 R /F33 1210 0 R >> -/ProcSet [ /PDF /Text ] +4700 0 obj << +/D [4685 0 R /XYZ 451.424 445.035 null] >> endobj -4703 0 obj << -/Length 1514 -/Filter /FlateDecode ->> -stream -xڵَ�6�}��@"!+�H�A`�m�-��� �ざh[�L�:��C��3ʖw�HR���p.�%��㋌�,�EL�ɢܟ��-��t�E��L$�g�$�X�G�`������G-D�ҤX�6)a�D�.V���e�*]��~ �ܻ��c�H���eC�k��i�P���3:Y�-�5����A�@�,O�����F�xbu�<A]�.,�2KG�9;���%MW�E��4r7g �7�Q��{f$@+U4\�W��\���;�h#5X�<�i�j�:��Oϑ�/�6�0?��V��+�ҍ��vj.�౯�֩9�7��DжF&�>O<��@}�v~�����~��$�ze}wN;�+�v��S��=m�r[�ֺ�z�s>��3fxE�%��pz��ѫ�e��nFQ�)�@h&y�H3���0��Ϸ�'�f���ul�����q 8���zyeu*�1nm@!��Im�F��/pϾ��x~3U-3����`;eڔ���`i/�8����}o��(�g��G��| ���3]�:1�#�y�ٷ5f"{3v��KS9h�A��c�+�ir�����e7w5V�4ޱE�(TX�v�HZ^�����Ui��j�"�$��z�(͡��F}|�"�"1yx⌉��"�'��vֲۺ�z��� ��n�3��t�k�ۚ�Go_�$�^b~ �Z�:��}��eO��tG6> -* e�+��B�D6`�$�z�I���+!^@�NJ -������t穣��V Y7r���)��̞�!���$��.}ė������rG �E@��`Y=TA���QA�֥�`'�� #�ʖw���/3�q�lM����'s�\�X�UC�맡�P��9�i勂��ɁBv��텰�� -\�T�q������rt�����cµNzm�:�!Xb� ��7�*�@Dw|����k�۶&{���uߏ�c�tɽ F�i�g�`��v=W:�)�Q�H��1dԉ�TN;�ʭ�`4��¡gyE�a(5�I8�lY����)�V�(���N<1Um,i��z9�|����E�T��)<#��f��O�Z�xq�U���PSKĦ��^���^?3�Yƒ�K&0���M���j�+¼3��Op���0ˉ�1dBd_�)Ϝ���Z�7ƺ�f�~��-ig4��5��{�D�5iV��ō+n�T�>���OҙPНwW;Zw�vGI� -�c��2�'�BU�锬\1w�3N�c��~ ?N�q���t���U�+�4�����]4����jI�6S���ST���P��1�W��tZ5<��� �3̔����0����'1��8��W��Y���r�%�0��z^W���9`�(��mw�о���M<%�r��Vj����+/.�|�� ��#�h�����3s9��Y-ށSO5�`�ߗʦ|��E)��@� -m���RӔ�^�����h"�yd�?r}��&���:�x�?J(D9D�s��"8����(:�s""F��9�sk�cQ�/�SY��]�4endstream -endobj -4702 0 obj << -/Type /Page -/Contents 4703 0 R -/Resources 4701 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4700 0 R +4701 0 obj << +/D [4685 0 R /XYZ 71.731 403.09 null] >> endobj -4704 0 obj << -/D [4702 0 R /XYZ 71.731 729.265 null] +4702 0 obj << +/D [4685 0 R /XYZ 71.731 393.127 null] >> endobj -1755 0 obj << -/D [4702 0 R /XYZ 71.731 718.306 null] +4703 0 obj << +/D [4685 0 R /XYZ 140.075 384.632 null] >> endobj -862 0 obj << -/D [4702 0 R /XYZ 155.521 676.38 null] +1757 0 obj << +/D [4685 0 R /XYZ 71.731 324.627 null] >> endobj -1756 0 obj << -/D [4702 0 R /XYZ 71.731 669.666 null] +870 0 obj << +/D [4685 0 R /XYZ 275.663 279.373 null] >> endobj -866 0 obj << -/D [4702 0 R /XYZ 206.096 624.303 null] +4704 0 obj << +/D [4685 0 R /XYZ 71.731 279.157 null] >> endobj 4705 0 obj << -/D [4702 0 R /XYZ 71.731 615.48 null] +/D [4685 0 R /XYZ 71.731 260.587 null] >> endobj 4706 0 obj << -/D [4702 0 R /XYZ 71.731 582.654 null] +/D [4685 0 R /XYZ 71.731 209.594 null] >> endobj 4707 0 obj << -/D [4702 0 R /XYZ 71.731 572.692 null] +/D [4685 0 R /XYZ 71.731 184.523 null] >> endobj 4708 0 obj << -/D [4702 0 R /XYZ 71.731 572.692 null] +/D [4685 0 R /XYZ 188.024 173.729 null] >> endobj 4709 0 obj << -/D [4702 0 R /XYZ 71.731 561.784 null] +/D [4685 0 R /XYZ 181.907 160.777 null] >> endobj 4710 0 obj << -/D [4702 0 R /XYZ 71.731 551.348 null] +/D [4685 0 R /XYZ 158.345 147.826 null] >> endobj 4711 0 obj << -/D [4702 0 R /XYZ 71.731 538.472 null] ->> endobj -4712 0 obj << -/D [4702 0 R /XYZ 71.731 528.035 null] ->> endobj -4713 0 obj << -/D [4702 0 R /XYZ 71.731 516.379 null] +/D [4685 0 R /XYZ 71.731 48.817 null] >> endobj -4714 0 obj << -/D [4702 0 R /XYZ 76.712 483.292 null] +4684 0 obj << +/Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F33 1210 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 4715 0 obj << -/D [4702 0 R /XYZ 71.731 468.348 null] +/Length 647 +/Filter /FlateDecode +>> +stream +xڽ��r�0��~ +�b�������d܉;�)�NӅ�a*.<n��W�K�x�^<,@���������E,�@���!�p+�G�Z���1� q�bf��0f�П0+z��C��\F�ǩ%_����"�~�����/D���M+�mV����c߳�=���-�d-���}����q�B�cg�b����.���A6wɿ���gE��P +}b���O���Vڔ�M!K���* ��S�VB�M@*�� ƕ(`Y��+�dM� V9��r�b���k������o &ƚҾ�9u�`S��ox�#,,�u�mW���7��=��V���Iø�Q�jġ1��C'��e7�38�t}��V8�:W��p��{w�:F�;�`>�Di�.�^� �BB 2/�֘���L!^d����h�j�be�Y�o�wX (P7ZAY��h��WG�"�q��i�2Q�� r�%��+4��^{ǀ�P�"�ǘJ ���~fjk�B+�>����������K�{���t�̢�]s�R�k٭P���<d�&�K��tƿ0��滼����1�|ӿ�L<��������f�,D��|�ɤ�c>Ui|E�5����������V�����v�\d�3cz�={�ۅ��8e3EgM0}�v�� �l�5endstream +endobj +4714 0 obj << +/Type /Page +/Contents 4715 0 R +/Resources 4713 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4712 0 R >> endobj 4716 0 obj << -/D [4702 0 R /XYZ 486.228 456.692 null] +/D [4714 0 R /XYZ 71.731 729.265 null] >> endobj 4717 0 obj << -/D [4702 0 R /XYZ 451.424 445.035 null] +/D [4714 0 R /XYZ 71.731 741.22 null] >> endobj 4718 0 obj << -/D [4702 0 R /XYZ 71.731 403.09 null] +/D [4714 0 R /XYZ 71.731 718.306 null] >> endobj 4719 0 obj << -/D [4702 0 R /XYZ 71.731 393.127 null] +/D [4714 0 R /XYZ 158.345 659.527 null] >> endobj 4720 0 obj << -/D [4702 0 R /XYZ 140.075 384.632 null] ->> endobj -1757 0 obj << -/D [4702 0 R /XYZ 71.731 324.627 null] ->> endobj -870 0 obj << -/D [4702 0 R /XYZ 275.663 279.373 null] +/D [4714 0 R /XYZ 71.731 618.68 null] >> endobj 4721 0 obj << -/D [4702 0 R /XYZ 71.731 279.157 null] +/D [4714 0 R /XYZ 71.731 593.609 null] >> endobj 4722 0 obj << -/D [4702 0 R /XYZ 71.731 260.587 null] +/D [4714 0 R /XYZ 188.024 582.814 null] >> endobj 4723 0 obj << -/D [4702 0 R /XYZ 71.731 209.594 null] +/D [4714 0 R /XYZ 158.345 556.912 null] >> endobj 4724 0 obj << -/D [4702 0 R /XYZ 71.731 184.523 null] +/D [4714 0 R /XYZ 71.731 516.065 null] >> endobj 4725 0 obj << -/D [4702 0 R /XYZ 188.024 173.729 null] +/D [4714 0 R /XYZ 71.731 490.994 null] >> endobj 4726 0 obj << -/D [4702 0 R /XYZ 181.907 160.777 null] +/D [4714 0 R /XYZ 188.024 480.199 null] >> endobj 4727 0 obj << -/D [4702 0 R /XYZ 158.345 147.826 null] +/D [4714 0 R /XYZ 181.907 467.248 null] >> endobj 4728 0 obj << -/D [4702 0 R /XYZ 71.731 48.817 null] +/D [4714 0 R /XYZ 158.345 454.296 null] >> endobj -4701 0 obj << -/Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F44 1884 0 R /F33 1210 0 R >> -/ProcSet [ /PDF /Text ] +4729 0 obj << +/D [4714 0 R /XYZ 71.731 413.45 null] >> endobj -4731 0 obj << -/Length 647 -/Filter /FlateDecode ->> -stream -xڽ��r�0��~ -�b�������d܉;�)�NӅ�a*.<n��W�K�x�^<,@���������E,�@���!�p+�G�Z���1� q�bf��0f�П0+z��C��\F�ǩ%_����"�~�����/D���M+�mV����c߳�=���-�d-���}����q�B�cg�b����.���A6wɿ���gE��P -}b���O���Vڔ�M!K���* ��S�VB�M@*�� ƕ(`Y��+�dM� V9��r�b���k������o &ƚҾ�9u�`S��ox�#,,�u�mW���7��=��V���Iø�Q�jġ1��C'��e7�38�t}��V8�:W��p��{w�:F�;�`>�Di�.�^� �BB 2/�֘���L!^d����h�j�be�Y�o�wX (P7ZAY��h��WG�"�q��i�2Q�� r�%��+4��^{ǀ�P�"�ǘJ ���~fjk�B+�>����������K�{���t�̢�]s�R�k٭P���<d�&�K��tƿ0��滼����1�|ӿ�L<��������f�,D��|�ɤ�c>Ui|E�5����������V�����v�\d�3cz�={�ۅ��8e3EgM0{�v�� ���6endstream -endobj 4730 0 obj << -/Type /Page -/Contents 4731 0 R -/Resources 4729 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4700 0 R +/D [4714 0 R /XYZ 71.731 390.436 null] +>> endobj +4731 0 obj << +/D [4714 0 R /XYZ 188.024 377.584 null] >> endobj 4732 0 obj << -/D [4730 0 R /XYZ 71.731 729.265 null] +/D [4714 0 R /XYZ 181.907 364.633 null] >> endobj 4733 0 obj << -/D [4730 0 R /XYZ 71.731 741.22 null] +/D [4714 0 R /XYZ 158.345 351.681 null] >> endobj 4734 0 obj << -/D [4730 0 R /XYZ 71.731 718.306 null] +/D [4714 0 R /XYZ 71.731 310.834 null] >> endobj 4735 0 obj << -/D [4730 0 R /XYZ 158.345 659.527 null] +/D [4714 0 R /XYZ 71.731 285.763 null] >> endobj 4736 0 obj << -/D [4730 0 R /XYZ 71.731 618.68 null] +/D [4714 0 R /XYZ 188.024 274.969 null] >> endobj 4737 0 obj << -/D [4730 0 R /XYZ 71.731 593.609 null] +/D [4714 0 R /XYZ 181.907 262.017 null] >> endobj 4738 0 obj << -/D [4730 0 R /XYZ 188.024 582.814 null] +/D [4714 0 R /XYZ 158.345 249.066 null] >> endobj 4739 0 obj << -/D [4730 0 R /XYZ 158.345 556.912 null] +/D [4714 0 R /XYZ 71.731 208.219 null] >> endobj 4740 0 obj << -/D [4730 0 R /XYZ 71.731 516.065 null] +/D [4714 0 R /XYZ 71.731 183.148 null] >> endobj 4741 0 obj << -/D [4730 0 R /XYZ 71.731 490.994 null] +/D [4714 0 R /XYZ 188.024 172.354 null] >> endobj 4742 0 obj << -/D [4730 0 R /XYZ 188.024 480.199 null] ->> endobj -4743 0 obj << -/D [4730 0 R /XYZ 181.907 467.248 null] +/D [4714 0 R /XYZ 158.345 146.451 null] >> endobj -4744 0 obj << -/D [4730 0 R /XYZ 158.345 454.296 null] +4713 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 4745 0 obj << -/D [4730 0 R /XYZ 71.731 413.45 null] +/Length 685 +/Filter /FlateDecode +>> +stream +xڽVMo�@��+|\����?nIhh��E���6`e�-{Q}w���$-�`��7���"�C-�������F�b-��ɀ�N��b�g|˹�?��la�!�߹��'�5�����H�8}�&C��M(���J�R�*�3���G��y3�=�������L*������lW��.�?[|sT=s��w"�pX��$f���X��������� ���>CW_Z����f2�(\&A�\)UW6EIXF+��0������8N+� �����XՐ�����_�5�R5�N�����Y�2}�A���p�G�u��ڦC"��� E�S�2�#��5.�s< X�5#�1��Z����\߫��(�F�y.S����?����2g���f���2ԨY��&%4�/���w��$>E�:s�a�&Tm��<�NY��,12>� ���%��ވ>T�L����S���T��a���dL��}2�T�O�G}�Gy+����Q���l��W�Bmm���L:z��u��c���%�ٜ ��r=��0���W�������2 +B4Sr���a�\Ч�mg���_�U����CUF���ս="h6��6���K���TE�87�DO��cR#�Ѐ7�J ��߿ ���u�^��!Gw8�8�wY J��K�1�/�$�Hendstream +endobj +4744 0 obj << +/Type /Page +/Contents 4745 0 R +/Resources 4743 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4712 0 R >> endobj 4746 0 obj << -/D [4730 0 R /XYZ 71.731 390.436 null] +/D [4744 0 R /XYZ 71.731 729.265 null] >> endobj 4747 0 obj << -/D [4730 0 R /XYZ 188.024 377.584 null] +/D [4744 0 R /XYZ 71.731 718.306 null] >> endobj 4748 0 obj << -/D [4730 0 R /XYZ 181.907 364.633 null] +/D [4744 0 R /XYZ 158.345 659.527 null] >> endobj 4749 0 obj << -/D [4730 0 R /XYZ 158.345 351.681 null] +/D [4744 0 R /XYZ 71.731 618.68 null] >> endobj 4750 0 obj << -/D [4730 0 R /XYZ 71.731 310.834 null] +/D [4744 0 R /XYZ 71.731 593.609 null] >> endobj 4751 0 obj << -/D [4730 0 R /XYZ 71.731 285.763 null] +/D [4744 0 R /XYZ 188.024 582.814 null] >> endobj 4752 0 obj << -/D [4730 0 R /XYZ 188.024 274.969 null] +/D [4744 0 R /XYZ 181.907 569.863 null] >> endobj 4753 0 obj << -/D [4730 0 R /XYZ 181.907 262.017 null] +/D [4744 0 R /XYZ 158.345 556.912 null] >> endobj 4754 0 obj << -/D [4730 0 R /XYZ 158.345 249.066 null] +/D [4744 0 R /XYZ 71.731 516.065 null] >> endobj 4755 0 obj << -/D [4730 0 R /XYZ 71.731 208.219 null] +/D [4744 0 R /XYZ 71.731 490.994 null] >> endobj 4756 0 obj << -/D [4730 0 R /XYZ 71.731 183.148 null] +/D [4744 0 R /XYZ 188.024 480.199 null] >> endobj 4757 0 obj << -/D [4730 0 R /XYZ 188.024 172.354 null] +/D [4744 0 R /XYZ 158.345 454.296 null] >> endobj 4758 0 obj << -/D [4730 0 R /XYZ 158.345 146.451 null] +/D [4744 0 R /XYZ 71.731 413.45 null] >> endobj -4729 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R >> -/ProcSet [ /PDF /Text ] +4759 0 obj << +/D [4744 0 R /XYZ 71.731 390.436 null] >> endobj -4761 0 obj << -/Length 686 -/Filter /FlateDecode ->> -stream -xڽVMo�@��+|\����?nIhh��E���6`e�-{Q}w���$-�`��7���"�C-�������F�b-��ɀ�N��b�g|˹�?��la�!�߹��'�5�����H�8}�&C��M(���J�R�*�3���G��y3�=�������L*������lW��.�?[|sT=s��w"�pX��$f���X��������� ���>CW_Z����f2�(\&A�\)UW6EIXF+��0������8N+� �����XՐ�����_�5�R5�N�����Y�2}�A���p�G�u��ڦC"��� E�S�2�#��5.�s< X�5#�1��Z����\߫��(�F�y.S����?����2g���f���2ԨY��&%4�/���w��$>E�:s�a�&Tm��<�NY��,12>� ���%��ވ>T�L����S���T��a���dL��}2�T�O�G}�Gy+����Q���l��W�Bmm���L:z��u��c���%�ٜ ��r=��0���W�������2 -B4Sr���a�\Ч�mg���_�U����CUF���ս="h6��6���K���TE�87�DO��cR#�Ѐ7�J ��߿ ���u�^��!Gw8�8�wY J��.]�X���O�Iendstream -endobj 4760 0 obj << -/Type /Page -/Contents 4761 0 R -/Resources 4759 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4700 0 R +/D [4744 0 R /XYZ 188.024 377.584 null] +>> endobj +4761 0 obj << +/D [4744 0 R /XYZ 181.907 364.633 null] >> endobj 4762 0 obj << -/D [4760 0 R /XYZ 71.731 729.265 null] +/D [4744 0 R /XYZ 158.345 351.681 null] +>> endobj +1758 0 obj << +/D [4744 0 R /XYZ 71.731 310.834 null] +>> endobj +874 0 obj << +/D [4744 0 R /XYZ 252.009 265.58 null] >> endobj 4763 0 obj << -/D [4760 0 R /XYZ 71.731 718.306 null] +/D [4744 0 R /XYZ 71.731 253.409 null] >> endobj 4764 0 obj << -/D [4760 0 R /XYZ 158.345 659.527 null] +/D [4744 0 R /XYZ 71.731 233.959 null] >> endobj 4765 0 obj << -/D [4760 0 R /XYZ 71.731 618.68 null] +/D [4744 0 R /XYZ 188.024 221.107 null] >> endobj 4766 0 obj << -/D [4760 0 R /XYZ 71.731 593.609 null] +/D [4744 0 R /XYZ 182.306 208.155 null] >> endobj 4767 0 obj << -/D [4760 0 R /XYZ 188.024 582.814 null] +/D [4744 0 R /XYZ 158.345 195.204 null] >> endobj 4768 0 obj << -/D [4760 0 R /XYZ 181.907 569.863 null] +/D [4744 0 R /XYZ 71.731 154.357 null] >> endobj 4769 0 obj << -/D [4760 0 R /XYZ 158.345 556.912 null] +/D [4744 0 R /XYZ 71.731 129.286 null] >> endobj 4770 0 obj << -/D [4760 0 R /XYZ 71.731 516.065 null] +/D [4744 0 R /XYZ 188.024 118.492 null] >> endobj 4771 0 obj << -/D [4760 0 R /XYZ 71.731 490.994 null] ->> endobj -4772 0 obj << -/D [4760 0 R /XYZ 188.024 480.199 null] +/D [4744 0 R /XYZ 181.907 105.54 null] >> endobj -4773 0 obj << -/D [4760 0 R /XYZ 158.345 454.296 null] +4743 0 obj << +/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 4774 0 obj << -/D [4760 0 R /XYZ 71.731 413.45 null] +/Length 715 +/Filter /FlateDecode +>> +stream +xڽ�]o�0���+��llp���,j�LQ�}H�4�@�F�,Y��F�l٤*R����{�k����BB_]p�X�j�Yug2@�w�vb^����[1���5�������D[��}Q�y����b��#`�SZ�)7�ˢ��s*�(�H���ܙ9�g��.n*�5�k���j0�?)#~��?)��9P�ý��!Z�?���H��Z[bd,�,�V���%HKZ�Q9(�0c���Ѥ���P�ɖ� �F�X�?%�� U�"�V&�g�n=╴����D=����>H�U8J4�abdy=sbl_�۹ L�M���J���"��HM��s�Jh@ �T��K���f��*f��z��9سG����,WG�,�#�����P�t����t�$&ǪΫS��X%c�J!x��66: ��� ��(��kV<$��c)s �T�&�G#(W��A*VP�e4�Jf YY�h�u�ӌg�+ +�~rd�"3Ⱥ��% @���V�����N)8��]�1���ᑆ~�^w�~A�݃�|w���ř +��r�ix3^5����X��f��26�T<�^�j0H�]��/�R����7�2]��4{��ӵ\� +^�_����x�,��y�`k���`k�w����Aj�cm�VB���o��g�\'���iޝ�D(<y�؇*�����,M6��;�~��c�endstream +endobj +4773 0 obj << +/Type /Page +/Contents 4774 0 R +/Resources 4772 0 R +/MediaBox [0 0 609.714 789.041] +/Parent 4712 0 R >> endobj 4775 0 obj << -/D [4760 0 R /XYZ 71.731 390.436 null] +/D [4773 0 R /XYZ 71.731 729.265 null] >> endobj 4776 0 obj << -/D [4760 0 R /XYZ 188.024 377.584 null] +/D [4773 0 R /XYZ 158.345 708.344 null] >> endobj 4777 0 obj << -/D [4760 0 R /XYZ 181.907 364.633 null] +/D [4773 0 R /XYZ 71.731 667.497 null] >> endobj 4778 0 obj << -/D [4760 0 R /XYZ 158.345 351.681 null] ->> endobj -1758 0 obj << -/D [4760 0 R /XYZ 71.731 310.834 null] ->> endobj -874 0 obj << -/D [4760 0 R /XYZ 252.009 265.58 null] +/D [4773 0 R /XYZ 71.731 642.426 null] >> endobj 4779 0 obj << -/D [4760 0 R /XYZ 71.731 253.409 null] +/D [4773 0 R /XYZ 188.024 631.631 null] >> endobj 4780 0 obj << -/D [4760 0 R /XYZ 71.731 233.959 null] +/D [4773 0 R /XYZ 182.306 618.68 null] >> endobj 4781 0 obj << -/D [4760 0 R /XYZ 188.024 221.107 null] +/D [4773 0 R /XYZ 158.345 605.729 null] >> endobj 4782 0 obj << -/D [4760 0 R /XYZ 182.306 208.155 null] ->> endobj -4783 0 obj << -/D [4760 0 R /XYZ 158.345 195.204 null] ->> endobj -4784 0 obj << -/D [4760 0 R /XYZ 71.731 154.357 null] ->> endobj -4785 0 obj << -/D [4760 0 R /XYZ 71.731 129.286 null] ->> endobj -4786 0 obj << -/D [4760 0 R /XYZ 188.024 118.492 null] +/D [4773 0 R /XYZ 71.731 564.882 null] >> endobj -4787 0 obj << -/D [4760 0 R /XYZ 181.907 105.54 null] ->> endobj -4759 0 obj << -/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -4790 0 obj << -/Length 714 -/Filter /FlateDecode ->> -stream -xڽ�]o�0���+���wݒE�)�i�&h���Ȓ���ءa$͖M�"�����[H��`x�B"@��JVd-ԝ���"�]�ۉy5�7�gE z����|<u/�)�����(�<�[�%�#`�S���0�˼����2W#~d�{sg����]�T�k�U����`<RF��D�wR|s��{�C:������L֫,�����X�uCXe�Ll/AR�������)�j8MJV,��Ū�l�X�mĀ ����Qϝ@%�`jo�8�|��-��`emzmM�#��{�Cͅ -DZ&� B@�M"�gND�w;�C��Ʌdi[i5[d��I�x�] ����H%��k�l6=)�b��-BDp�d��\-�'|Q���AQ�G����u��锳���8�M�e���,U�J�ح�����4`c�� $���kF�y��接�Q4���7�?A�z��$r�\Fc�dV��[�8�EZ�2?�'��6�S��::] -|�P�j�]��<�B�;݅)��j���u���P��=�̷p����_��T�23��Wr�US\����l6ΰ)c�M)R��EQ�6C�u�U:��/�x��&�N�7K_��l]/e �ގ/ߏo`O<R����]��5K��m�5�B�e��`����?+��{ܷ���<Ӊ�<�~�wg?!N�*�!� -J<������#��)�����c�endstream -endobj -4789 0 obj << -/Type /Page -/Contents 4790 0 R -/Resources 4788 0 R -/MediaBox [0 0 609.714 789.041] -/Parent 4700 0 R ->> endobj -4791 0 obj << -/D [4789 0 R /XYZ 71.731 729.265 null] ->> endobj -4792 0 obj << -/D [4789 0 R /XYZ 158.345 708.344 null] ->> endobj -4793 0 obj << -/D [4789 0 R /XYZ 71.731 667.497 null] ->> endobj -4794 0 obj << -/D [4789 0 R /XYZ 71.731 642.426 null] ->> endobj -4795 0 obj << -/D [4789 0 R /XYZ 188.024 631.631 null] ->> endobj -4796 0 obj << -/D [4789 0 R /XYZ 182.306 618.68 null] ->> endobj -4797 0 obj << -/D [4789 0 R /XYZ 158.345 605.729 null] ->> endobj -4798 0 obj << -/D [4789 0 R /XYZ 71.731 564.882 null] ->> endobj -4799 0 obj << -/D [4789 0 R /XYZ 71.731 539.811 null] +4783 0 obj << +/D [4773 0 R /XYZ 71.731 539.811 null] >> endobj -4800 0 obj << -/D [4789 0 R /XYZ 188.024 529.016 null] +4784 0 obj << +/D [4773 0 R /XYZ 188.024 529.016 null] >> endobj -4801 0 obj << -/D [4789 0 R /XYZ 175.332 516.065 null] +4785 0 obj << +/D [4773 0 R /XYZ 175.332 516.065 null] >> endobj -4802 0 obj << -/D [4789 0 R /XYZ 158.345 503.113 null] +4786 0 obj << +/D [4773 0 R /XYZ 158.345 503.113 null] >> endobj -4803 0 obj << -/D [4789 0 R /XYZ 71.731 462.267 null] +4787 0 obj << +/D [4773 0 R /XYZ 71.731 462.267 null] >> endobj -4804 0 obj << -/D [4789 0 R /XYZ 71.731 439.253 null] +4788 0 obj << +/D [4773 0 R /XYZ 71.731 439.253 null] >> endobj -4805 0 obj << -/D [4789 0 R /XYZ 188.024 426.401 null] +4789 0 obj << +/D [4773 0 R /XYZ 188.024 426.401 null] >> endobj -4806 0 obj << -/D [4789 0 R /XYZ 158.345 400.498 null] +4790 0 obj << +/D [4773 0 R /XYZ 158.345 400.498 null] >> endobj -4807 0 obj << -/D [4789 0 R /XYZ 71.731 359.651 null] +4791 0 obj << +/D [4773 0 R /XYZ 71.731 359.651 null] >> endobj -4808 0 obj << -/D [4789 0 R /XYZ 71.731 336.638 null] +4792 0 obj << +/D [4773 0 R /XYZ 71.731 336.638 null] >> endobj -4809 0 obj << -/D [4789 0 R /XYZ 188.024 323.786 null] +4793 0 obj << +/D [4773 0 R /XYZ 188.024 323.786 null] >> endobj -4810 0 obj << -/D [4789 0 R /XYZ 181.907 310.834 null] +4794 0 obj << +/D [4773 0 R /XYZ 181.907 310.834 null] >> endobj -4811 0 obj << -/D [4789 0 R /XYZ 158.345 297.883 null] +4795 0 obj << +/D [4773 0 R /XYZ 158.345 297.883 null] >> endobj -4788 0 obj << +4772 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4814 0 obj << +4798 0 obj << /Length 2688 /Filter /FlateDecode >> stream -xڭˎ�8�0|�5z�={J�� ��"@��v�@Kt�=QN��~�EJ�V'�E-��X,�Iǫ��U�e -�d&E���7��0����"+�0�/ wyZ���t��qx����I�J��������%J�$-V������j��f��w�������w|��������n�āM�1�7S�����{��}�/R�*Z�@�Rv�c�q���(��xˣ�j�N<L�(��U����.��"����yG�u0���Y�g�G��_�S�D#9�������� ���8�KWӉ���U��" �=C6e���Ȳ/���P�_�(�4��������-�t��Ө������� ��õ���a��K:�Y�G]��ƞ���g�tm�8��&�� 0����m�b�8�<���d��3S��9�.�N�{4�#ό@���j�~�����C��t�a�x�;��,c��ܑ��A���gm^��8�s6��I���p�-ج����?`�-����͂V}� �٪�0ҨԿ�C��2�d��e�4t�Qw<w����6��Ŧsj�I:'<����o�v��{xv�=�e��U~kf��=}D�QW��E{�h.i�Y�l7"����_X@ ���x�iH =Lھ6�+[д��A9�`�iշ�*�q�i�7 -�I�=5u}爉�ȃ�1�������-C�&p�m'�A[=�Nt[�q�.p�>h���KF�����C�U��}�#*T�x� ^Z�K�����4����wK8�55�$P���=�uG�߈.��(J*���ȭ��� !��܆^6HDi*^H -��Ba����ӯ��#�oD��}5�8�����a��a�U'�Ǔy�J�7)0C� �NQv�W,7���%A1�0l/v�4���d�;�a�?��8E�!�`�V��A��!C?�;����u�pLɘ�Ӄjx�4����-c���a��b�\����ѵ��C�@[���˳�t�t����Q�L�48) �:�2�f�z�,ㄴXbD�ɉJ����x���,n�³���/aњ' :Fc'��i�R��q"�H;��AT�3ʗ�q!���p�}J d�x'{�-��Z[��M�c0�#��@�bȓ��bT�7S��S���K���e ��O�me���6��;�YFn,��X8 4����_ޢJ���m~�IP���.I��B,�PW�Fr�|�L�A��7�����Vd�� �]��l� -�e��wr��I�>�s�N�N\����,�p���IR�`<h�d�X��3��*s�dGt>O̓I��5T i/�R(��~�F_���0�tW�Bx�t9�n"�:�ƌWq�� ��d����Ujq9+�b��ᮌ�<�z��u ��O�4@�5:m J1��9*��Ί�`� ����<>\�r�V�6-�:�M�6�JjXc܆h��l)��[�m����Lr��t��F%$�X���!ùp���{�s�R�KńDd�2)�;���uw���ԍ�"bzm�AȐ��zX��������IΒ筇�id��A!���(��!�*#%������2�oi�֟�P���t�k��ؒ����4�]E�)�|�DD���������s��=�}q�D����5���z�zA���q{ -$I=+1ʻ���gG=p�F�V�_�|�7 �E=�WT�di�v��������R�ts�]�t�k�@���J>����I��z�*��D`�4tA0�^,s� zʳ0�5�l���T5;+P�^�(\_:��.�O�WW�]�W,��Z+�?��E��,��Pɉz ���ǃ�6 -�9�>s�e��%�<&�a��,=ݼ�9y�M��G3a7 !�舨�B�#�N��@)-&���OT]ެ_8Q�NNG�g#9ߨ��}���t+59@��g5F-(`���n�������>hM�&*�e����[���#�['�39�/#$S�g�O(oly>=���%��"y�3�Hdz�{2H������������{�g?��to��3��vnH'���I -���w"4S�� V`4�9A`gh�{�ç�0('����u��aJZ�5SuuS��Ɲ�W��]6��B0��m2�\kŢ����f�������W^�7F��f!��U#��fl�Ȃ�0ˤ�C%o#��ĸ�yP��kR���ݒK�I�.u<��|9F@%O P\Q���`~�,rϊ��|-�ʪ��Q_:�v)E��σ -��=����`�&]ή&�#��ZH��g�<��� 3>ܜd���ꏔ�~$��$�w����%��9�}��n`�+¦��wK��" -(�6�z E �b,y|7�,����T̋.�I��@T)F��jůk�~b*U4�MO��"V��1�.�U���Aڳ����?�,4o(Sx~A3�:`�C�W"a P=�W&�rA�e��������fJrK�c��f����b��|x�Ny��t$��(�0j��噠vdR&�E��J��3'�}D�R����"J�G71��W�{\�f�ɯ"�=C�H���$�����@p\�O^v^�0jl�r|��8�i��=1��R ��"�0���B50/ -�o><��W��.����_�b7��o��|��'Ix��j���V�gȗ{�����endstream +xڭˎ�8�0|�5zZ��S�MYL�g���Z����a�rz��^��D�\ �Ȫb�X�'���KWUW9|�C���UݽJV����U*�~ge��̫�p��v3o^��>�WY�����vI�8���������E���k�˪��]��_��;�[�y����v�7i�F3���Ժwz��^���9n��v I%���I�4����2��8��裲���Y�$����#+���x�����I��ٚ��K�E�gR&o�_�S�D#9��������MZFõo�D[~�k��>��C6U���ʲO���P�_�(�<O�fpc���5�t�K������x����y腓q��a +�.+:�E�Ό�nXW���Zt�3��1n��ɒ�JL�9�i����2�χ�0?��r��Tl@nN����M��3#PϦ��v�de���X�:_�U��%��N.�(��:w"6��j������e��p&���r�����ʜX���� 쁬�"��g�P����ꯪ� +#�J�k<��-�+{�g-�'k�qF���+�g�������&��H�����%�I 8��I����sW2tkT�����@� �']�f"d�5�����zfs�������j�\`�d�3�HCȀ`� �9=�M���6(gY��C�i[�Cm�|�����sPS?���(�e3�^�8�5�2�mG�&pr��i�:��oAā��IH����ckA��A��`��yP�Ǜm�Ђ�]8,q�gqɧ�i�W.w��-���4 ��@�� ��ם�~��?�$�):�#w����2s� �x!)�Hg +� 3�L?��о�����Ӹ�2N�i��V�0�j�Ep*1�l�jnȈ��r�R�A\O. ��awuc��n'��Q�������9z�sv��"���ad�)d�ί㘅cJ�4н��奟иjF�z����v�1s�2"�wD7ڙ� Ql},�������ksG�3���0$����l/���U�p��b��!'�82��hF������ +��Dk������[�=�Z���#��r@tQ��(�U���<���rJ �;;`l��� � �� 4�$jq�!O�&�Q�_L��}�%�#/��K��5dW�2<�Է�@�A���o @/d��l~cY�|p�(Z���py�*������fQ�ze�$a(���GU<�6����+U6�8���@�M���L!A�����˨�wr��Y�!�s��#�N|����,�p��=�IR�`l5e2N,�˙����P�#��������*�tx)�AN��c(�}~�����k�T��2�.�$��p�m@�QGӚ�A\=`��1��6�a}G�ZZ�ʷx{�+�ϩ^�`v�S: ��j �^[R�!{�����b4X:���6 ���~���o������:%��1~C�|b��cn�-ܶ(#hf�c!�a`�����A��"䎘�\8x��=̿�9j)ܥbB"�� w����� �ܕ�;�S`�VD1���(f��i=��xa�e���$I���C�42z롐雯(��!�+#%���p]/e8�����?J�ę3��v�LC�%I�i��S$�d���#3y��e��s,��8��P���T`˚RJ=a���y��� ���*1�����gO=Z8m�B+�o�T�i������ϊ<Z�J�������R�ts�]����@���J>���HOT��E}"pX� XH/V����=�Y�4�s6Pqf�۫���H/Z��:��-��gs����.�+�PM-��_�O@ hQ��&Tq�^B���v��ꃍr]Ȝ0�G/�gI� O� i+3GO7���R�<��Pߣ����j�DT@!ʼnj/Uc ���3��`�g�.o�/�h�OOG�g#9ߨ��}���t+59@��e�0_@�(Q���CP�&`��2D���-��n�ϯ���)��3H�'�7���Yn�Qr�<�d$2=�����"$��B��7P`w��Z|��'8��͛r�9�� �dwE5Iᶷ�^�v*[!� +�='��������$����.�?LCIkpf��n��и���n�˦Z��M�]V�k��XT�1�a���2��ڎ|�U~c4�l«P5"�hƖ�,�BZ:T�V0B� *���EP��$5��-��d�S�W@(��� �+ +��,,�E�Y1���U�|Yu�6J��.e_E���0~Of��+��IW�+� ��v��E9���_dƇ���l �PY���ۏ$���F՟�D���/���^� l~Eؔ��n)U� +�� �^BQ�K^��_9���Ad�ϋ.�I��@T )F�V���ab*U4���'Fn����A�)��� �E�\j��d�7�)<�����V� +��+�����+B���2�opL��ZE3%�%�1�~1Z��y1�y><����LBz�ktI����L�x2)�`��b��%�˙�>�]��� W{ %NܫH�=n`�*�W�^�Z�z�I,D[�r 8��'/;/o�F �N +9>A|��t������)onK�V� +y����W���_qߥ�⯇B��H�C�e��.�<N��BM}R~����۽��[��endstream endobj -4813 0 obj << +4797 0 obj << /Type /Page -/Contents 4814 0 R -/Resources 4812 0 R +/Contents 4798 0 R +/Resources 4796 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4700 0 R +/Parent 4712 0 R >> endobj -4815 0 obj << -/D [4813 0 R /XYZ 71.731 729.265 null] +4799 0 obj << +/D [4797 0 R /XYZ 71.731 729.265 null] >> endobj 1759 0 obj << -/D [4813 0 R /XYZ 71.731 718.306 null] +/D [4797 0 R /XYZ 71.731 718.306 null] >> endobj 878 0 obj << -/D [4813 0 R /XYZ 530.903 703.236 null] +/D [4797 0 R /XYZ 530.903 703.236 null] >> endobj -4816 0 obj << -/D [4813 0 R /XYZ 71.731 682.175 null] +4800 0 obj << +/D [4797 0 R /XYZ 71.731 682.175 null] >> endobj -4817 0 obj << -/D [4813 0 R /XYZ 71.731 672.06 null] +4801 0 obj << +/D [4797 0 R /XYZ 71.731 672.06 null] >> endobj -4818 0 obj << -/D [4813 0 R /XYZ 71.731 662.097 null] +4802 0 obj << +/D [4797 0 R /XYZ 71.731 662.097 null] >> endobj 1760 0 obj << -/D [4813 0 R /XYZ 71.731 638.283 null] +/D [4797 0 R /XYZ 71.731 638.283 null] >> endobj 882 0 obj << -/D [4813 0 R /XYZ 168.205 594.97 null] +/D [4797 0 R /XYZ 168.205 594.97 null] >> endobj -4819 0 obj << -/D [4813 0 R /XYZ 71.731 586.147 null] +4803 0 obj << +/D [4797 0 R /XYZ 71.731 586.147 null] >> endobj -4820 0 obj << -/D [4813 0 R /XYZ 71.731 527.418 null] +4804 0 obj << +/D [4797 0 R /XYZ 71.731 527.418 null] >> endobj -4821 0 obj << -/D [4813 0 R /XYZ 71.731 485.64 null] +4805 0 obj << +/D [4797 0 R /XYZ 71.731 485.64 null] >> endobj 1761 0 obj << -/D [4813 0 R /XYZ 71.731 415.902 null] +/D [4797 0 R /XYZ 71.731 415.902 null] >> endobj 886 0 obj << -/D [4813 0 R /XYZ 312.796 370.747 null] +/D [4797 0 R /XYZ 312.796 370.747 null] >> endobj -4822 0 obj << -/D [4813 0 R /XYZ 71.731 358.576 null] +4806 0 obj << +/D [4797 0 R /XYZ 71.731 358.576 null] >> endobj -4823 0 obj << -/D [4813 0 R /XYZ 71.731 316.147 null] +4807 0 obj << +/D [4797 0 R /XYZ 71.731 316.147 null] >> endobj -4824 0 obj << -/D [4813 0 R /XYZ 71.731 285.262 null] +4808 0 obj << +/D [4797 0 R /XYZ 71.731 285.262 null] >> endobj -4825 0 obj << -/D [4813 0 R /XYZ 71.731 202.573 null] +4809 0 obj << +/D [4797 0 R /XYZ 71.731 202.573 null] >> endobj -4826 0 obj << -/D [4813 0 R /XYZ 71.731 171.688 null] +4810 0 obj << +/D [4797 0 R /XYZ 71.731 171.688 null] >> endobj -4827 0 obj << -/D [4813 0 R /XYZ 71.731 140.804 null] +4811 0 obj << +/D [4797 0 R /XYZ 71.731 140.804 null] >> endobj -4812 0 obj << +4796 0 obj << /Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4830 0 obj << -/Length 3081 +4814 0 obj << +/Length 3082 /Filter /FlateDecode >> stream @@ -18252,190 +18179,189 @@ G& �1�g���+�dž1f^H z��v���D���hO��s����**n\�$Ł_Ô ��5֝Q��P]7F?�אѐ*�ī�`���r]�$8j�ߣ�̰wx��k���Τ��x6���+��1����\^�?���fFd��{�<8�٥k2�[;�6>T�=MZN���r���>˹'Qb�tZ��m3Ή�LB~2�EҌsTY��c��8yt焫��_�~�n�v���TI!C���n��vFb<�.ZflOj�����$N]J���.rZ�.�锤��I�X��2�I�熅��(e��r�����{B�"q�8RJS�7��cړ� ��-T�Rq�ո�F"�g$�n,�d���0�To-�H�L\$�1����ʉ)P���nb���fH��2��g��E�\I��E�8�G^ Fۥ��2�Ѿ'w-6���Kd�*����/�1I4�bVc����-�nl�If��f�ƞ�Piҟ����yJ̴820��+�P�Lu�EK1�G�Tִ h�k���'��4�8=,�b?�l�j}�d�;��dI���*$���`��H������.w@(�-�&�~[acA��1��c�Tl`wc{?��i���;º����6q��O8�閪�w-;�*�U��g�C|_q�K���jU���oq}<8�Ův�<�/Ǔqi�5���� $!,���f��YPWT~(���."��iu�,��6�(;V1U��Ɂ -�R�^p�y�|bw�U�9%݅�pw �N�����B��z��B�0k��K�̫�ci��<�^��j��j�~.��| �ȭ��p�ڨҵ ��|���Dx�t LM5�gWo@1(�n��p+'n���05Ճ0'o_�vy���ׇ�,�~)�V����9�:4��yD�2r_�~�2���x����L���h�Oo���\��6B�]eϞ%���$�a��H���D~X��b o������������幢d+�I�w"2�e�71\�.�+-���w�f����@U�SV�<���X&)�_3�*=V�u�&N�)���پj&�H�]D����k��/�`�+!�=����[;i&�-��'N���;�7�(t����9�)�V����h�ֳ���ς4������Z1m��gE����!A�p����_�?��3�endstream +�R�^p�y�|bw�U�9%݅�pw �N�����B��z��B�0k��K�̫�ci��<�^��j��j�~.��| �ȭ��p�ڨҵ ��|���Dx�t LM5�gWo@1(�n��p+'n���05Ճ0'o_�vy���ׇ�,�~)�V����9�:4��yD�2r_�~�2���x����L���h�Oo���\��6B�]eϞ%���$�a��H���D~X��b o������������幢d+�I�w"2�e�71\�.�+-���w�f����@U�SV�<���X&)�_3�*=V�u�&N�)���پj&�H�]D����k��/�`�+!�=����[;i&�-��'N���;�7�(t����9�)�V����h�ֳ���ς4������Z1m��gE��<>8,H^������X42endstream endobj -4829 0 obj << +4813 0 obj << /Type /Page -/Contents 4830 0 R -/Resources 4828 0 R +/Contents 4814 0 R +/Resources 4812 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4839 0 R +/Parent 4712 0 R >> endobj -4831 0 obj << -/D [4829 0 R /XYZ 71.731 729.265 null] +4815 0 obj << +/D [4813 0 R /XYZ 71.731 729.265 null] >> endobj -4832 0 obj << -/D [4829 0 R /XYZ 71.731 662.351 null] +4816 0 obj << +/D [4813 0 R /XYZ 71.731 662.351 null] >> endobj -4833 0 obj << -/D [4829 0 R /XYZ 71.731 592.613 null] +4817 0 obj << +/D [4813 0 R /XYZ 71.731 592.613 null] >> endobj 1762 0 obj << -/D [4829 0 R /XYZ 71.731 535.826 null] +/D [4813 0 R /XYZ 71.731 535.826 null] >> endobj 890 0 obj << -/D [4829 0 R /XYZ 237.066 492.728 null] +/D [4813 0 R /XYZ 237.066 492.728 null] >> endobj -4834 0 obj << -/D [4829 0 R /XYZ 71.731 480.29 null] +4818 0 obj << +/D [4813 0 R /XYZ 71.731 480.29 null] >> endobj -4835 0 obj << -/D [4829 0 R /XYZ 71.731 401.331 null] +4819 0 obj << +/D [4813 0 R /XYZ 71.731 401.331 null] >> endobj 1763 0 obj << -/D [4829 0 R /XYZ 71.731 381.341 null] +/D [4813 0 R /XYZ 71.731 381.341 null] >> endobj 894 0 obj << -/D [4829 0 R /XYZ 254.178 338.244 null] +/D [4813 0 R /XYZ 254.178 338.244 null] >> endobj -4836 0 obj << -/D [4829 0 R /XYZ 71.731 325.806 null] +4820 0 obj << +/D [4813 0 R /XYZ 71.731 325.806 null] >> endobj -4837 0 obj << -/D [4829 0 R /XYZ 71.731 231.838 null] +4821 0 obj << +/D [4813 0 R /XYZ 71.731 231.838 null] >> endobj -4838 0 obj << -/D [4829 0 R /XYZ 71.731 200.953 null] +4822 0 obj << +/D [4813 0 R /XYZ 71.731 200.953 null] >> endobj -4828 0 obj << +4812 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4842 0 obj << -/Length 3186 +4825 0 obj << +/Length 3184 /Filter /FlateDecode >> stream -xڍ]��6�}E�/u�ĵ,;���n��k�;=�p�O�L|u��v���Hْ���"K)Q���&�?�I��H� S?<ě��M�y��oC�do�|�����ܤ~z����FFG?��&�����S���MUy��vƁ�ާ���F��q�5[�xJQϻ�t� -着.늺�ޟ���Z���ӏo�?�ˊe�G��r3Yz�K7���"���v/��~��]���w�z��0��T���U4$����k}�Ʃ�:�`v���Fv�.u����h��L!�UYR��:2��횂�VT/��ڊ�{���7[q�^4?�K{�)Xu�>�������S}+T�����ߗb��_����z�V�zϻd�I��nM�S�*rЌ��碻P+�S���ND�i{�0��,���;�#������a�q�� ���E19z?�y�{�'-m-ϳD��zֿ�B�e<J��5C��2h��ԝU95��P�ѐ!��_�X���p�ة��~I�����H��^�xX�Ic�ڏ��U��7���r%��g:$��#%B��:E<�^�C#�!i�J��ʌs��9~;�=�)XCC_�F��V��*$��&�若!`��ѲԪb-_�jf�Z�l8��;���zy�8te���y���%�,!���3Ҋ���j�І�ou�*�g��3�/��ͩY(:6�Y���$l7������׃~ -�����vQ�4��|ۻ����'��M�ct��Z��`���E���?�uL��!��5��i�U�#�H��Vsb���x��{��Ρ��_�\���=�Rd��C�ԓ��M�#��L�����&<�B�-*�X�wn�!@�M���HZz��6wrm�:+r��Z~�Z�T�.@���?_�Ӆ��K}/����;aI� ��3���%b���y�,Z�9���QP�0X7�L��)���h��R��;8����}�13�A]��fW�E碕�)3�8v�96�4��Ӭ�⥨��1ܟa��q���}����o��-�L�(9��L6��~ �y�%��3�Y r��E���z��+�Gh��Oټ�m�e�l��O��;���;��og�0t��!���� ?��hNI����A֦���`=�]<�<�\�c�6��Kqc\���Nt�qO�����T*\3��f|ǰ���H��>�ZΠ#n"&'�Lk[OE�Sq�r�h`�&����i�ֳ,i��Of�7�3v�>�A� -V�����n�Mi��52�R_$ɪ�X0Kc@p��-i����F{�i����q����q���m�$X4`_a�\�����'�����H�B���X0K��A>�[<�)��g�B{�i� -D5v�G*b��D��D.,�����v%M�s����i�����K�� {fN�m4����l��z���#�:��s7��n�=�M�5`�D��9H���cln]GI+G���NdҬ|{p�]�A8*����M�v[�/��0[C�-��8H�/�o���x.Sj��e�����T��kO,�^q��I�%�Sѩ&�e�Ns��Ehh։ᬠ��ƈ2�)��T�����!��"�k�u�vD1PM�w���eL���<J��BUG<`�ױ�b"]�Nn�����^9P�Ը���$胪�;C?���1_2���Q�nX-�%�j@�)�$o��C�[�=B;cX�#1)HL��z�ý��ءq�Gd ��h������u�耱��'u����tP �tI_��)#u=m��V=# -�o'���k������r.����Ea���Ѓ,�A �%aB� ,v�ZhT�TTф'Ve�(&x�n���-_⍔�X�do�L��ѫ^dה�c~��v��)Nd$��šW�B%Ir����FY�c�B﨓G#,pQ���С#z a�c�ue�x[� z@T6yL`*#r�*kPOym�"cHh8��\ ���!o���!�Y�ƨ'�D����)�"����ӡ���!�jBKk�CC bN���?,��k���4���L`hN��a�RJ���?�'>l[��0CF'���n�ђ ����fl[�48��ޑ�ԓ+�2(�q�{��W��v1�a]bɾ5W��)�I,��˒ 7B���'�����G�Dv��M�9�Y�D�dj$ȉ��є�Cs�F�A:5F�h*������f�n�����H}G��� -pnGƒ��3va�t����M����t��=��>��r�dU{˚�uu�Z���!���Jw8���� �aE�g�Z;����)��շR�3f��ʰ��E,�qW qȭk\��ed����������X�����Eн6t�8�[��p?�O�c��a[���>}Y%a��%aݮ�TET�.���}q�p�qŰw�0V-gJ�\x�^L"�;�%��l��\B��V� ��Щ�!�N����~�U����l|��@��h�י�dz2k��01)T�mؐc���#C_r5�`�"N����͚�zl�Vh��R� r �M@G��_o�9�QQ�}/ -O�}KcZ����E`��(oh���[��ذ�׀����RW�-J$����a�b���b�b�ޟ����P۪ܔL�QYQe��B�q����B����x�������g��e�*��2�H��t�Lf�,�����X��Z�r���\�16gg�F�RZ<:�w��?l��&g��O�/���M������L�(��x%� -$�m��2P&{�;�c��&��L�J/O�|���ʾ��5CV�K�~%�i"��nANu0�KT���Fҭy�"��3�( n��E���z,Q+�Ghu��J� �5Y� K��B��"�r�����X�l�=+0�>��)�%$�Џ�p�Y0K�Ȁ �~Y<�)�ǧ�B{��b��e_p��F:��"��A8�6�-�1��n�0j��ũ��@�y����!��������|/?���ծ���b2I�G`0��a��"D������܀�_�Nש���Ƶ�ߌa�+��g0��=+��+��0l�����O�D�©�Eo�ы��|)#ЌN�UYI�aN@�H��1r��X/&��Xo)~&y�ڐ�/�����W~Y3pV�:�Ǖ-�X�C�v�|�@4��O$�/d���8�~ S�'��ң�)������endstream +xڍَ�6�}��Ȁ��:�}K2G&����b��E��#K�$���U��D��0E��bݤ�x�'6�p��~����hs���6�0��`�=�� ���|�!6������ �& |�����?�w�������ޏ<�K����Q�4� q���w���UV]�uE�?'Y�r�ߧ�����Օk����dX��wp�0T+��m�A8EK����.�N�;�������;Uu7@ Nw�xൾS�TWl0;uDR#�w��aj�y4�|A��Y���纑�x^�]S�Ҋ�1W[9��Q"�f+γ�'pi/|7���ףl���=շB�;��j�}.�~������`�Wh����KV��=���8�"��l�݅Z����g�p� JM�˄^�b�Ht\�q�����y���Q���K�x�R���<C4`�/�(V���(�Q�����A[���ʩa��$Ќ�4Yɠ��Bmv�;�N%�KB� %�@r��*�ò�N +C^�~,D�<���㏖�7�?�!)��,)��)�����kI�AHYʬ�z����{ع:X��M���5�T��|�xP!��6aG_,=s�����Rc�����3WBg�i����;/�T�cľ-=u�{l\ 1d ���pϟِR4dȥ���6~��V�?���A|hN�Bѱ���ڗ�$a��_�mG���S8mo$�%-��j��������?��?I��n�(v�a�k�ހ��~�rZ��!u�8��5��i�U�#�H��VsbN�<�iDp%���=��^�"l?o�z2ԹiwU�i��`���Z(�EE�s�M}�Ƚ �WIC/p��fO��^gE_�oQ+�J#���Xm��R�.�^�{���p� KB�]/܊z�G�y�,Z�9���QPǏ0X7�L��)���h��R��;8����}�13�A]��fW�E碔�)Ӿ8��s���i�M�\TY��G��e��q�Ch�-y��l�E� =J�$�H�'�y�%��3�Y r��E���z��+�Gh���ټ��6�2{cSi�S+�>��b��4���1$�|��p�)��|P�1deji��� ��ű���+��(�_��:����#�{*��%Z�Ra���6�;���eGr���LUr=9p1Y�f*X�z�(�`����cDK���,�N㰲�eIC��x2�Ƹ���S�� +V��\����w{m�HS쭑��ט0N]�$�c�,i��u���13�j��Z���;m��A��2p��� ������`р}E��������B��.D"!���Z$b�,E"��n�� +�Z��٘ ���9����Whb:~ە4���F���&7bI�do�̉����~��SZ�ٸB{�V�yng�� �'�)����^#i�\7}�ͭ�(i��ىL��o���b Ge�:����`K"r�d!�V{dz(�ˇ��s�eJ��U���T�s���)�W0 ��p**Մ���)�A�� �:1�t1�QF?%��jV�9d��P$re�N��(����1���Iú@>�G)"�U�j`�l�:�XL��֪��27�+����R-@�>�*�3�Q�����a ���ՀY2���qI�fh=��5�#�3��;��D��ށ�<����gq�AVV��N~!Q1^NJ���'e��l@� ��K�����2R��6�`���7���fP��1֪M�7[�)�B�a��!Z�(pc�.=Ȣ(��qQ&��2a�a�F%OH�@uxbTf�b�w��Z9݂p�8�A��Q#�� ��m4jՋ��z̯5�6�9� ����8��T�$I��������(|�>bA�u�h�.�Q�:TD� �tL��Lo+�A�����:��te`D�Uf �)���d g0+��BS;���1�:k��d��<���9�Z��;�z:�\�4�Z C(iMUh�@�g|���3y \ӝ&_f� ͩ�*� +���h���{�@�ƉO��) ̐��@b��� ����fl�48��ޑ�T�+R2(�:T������>�b���Ē}k.�SSI,��� ;B�i��'��.��G�Dv�{��9�Y�D�dj,$ȉ���є�Cs�F�B:5F�AWj>hq��f�n��HYS���OUy8��#cIA����0e�Uv��:x�vv:�j��Ws�(9k���eM�ĸ�:p-WQĐrF�L��cV�8/�ѐ +Z5[ ����N!�������1b*�Zh����m��!�b�pu���q�1k%�A-ŝ�4OI��{?l��q�;�2S�~N��)�CôjQo�\�2J�0�Kª]_��$��+l�a�,��L���6�.�a����ZΔ�����X�4�|��F��N} ��� +l%6�C'���:� +�9F5:�g�;�.F#�N�<��^݇�I�oÆK,&���VNf)�� ��.ڬ)��Fk��-E� �0�����qdp�����ӗ�R4�{�x��[Sz�0�d^p-�,DyC����B�چ��|�崖�z�lQBAXl��4���~��?K@m�r]2�FeE��.U,|����� +M6�+��o��;��a�k���6����d"�/��2��T&� �cI.gh=��5�#�s��H��q1Ji�����s��Aݛ� C?Ѽ��";��[>/�2��4��T+�(����@���/��4-M!�z�^�0�&�ݕ}/k����<�J$�D��݂�Z�;���=��FĞ�ּD�ހ�J����ˢDMi=���#�*J������݄%F�!���U�?[9~�����@6���『R�*����yʃ@|���wC�_�G̒?� ȩ_OiJ��)����XrĽF��湑N���|�� i�}����.����ԍ�g�n�H�u���U�PLtT�Z���A��\/�� �ł$������a�]�bG_ ��sNh�:U�F��/W�~3z���d��m�ȟ��,ί�ð��ʳ��?8e�N�aF/V��A�ѩ��"+�C�#� H��8�����$=���-e��$o�@��������"k�J^��e�q�N�������d����2y A' �Mx�қ�)��ӗ�endstream endobj -4841 0 obj << +4824 0 obj << /Type /Page -/Contents 4842 0 R -/Resources 4840 0 R +/Contents 4825 0 R +/Resources 4823 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4839 0 R +/Parent 4860 0 R >> endobj -4843 0 obj << -/D [4841 0 R /XYZ 71.731 729.265 null] +4826 0 obj << +/D [4824 0 R /XYZ 71.731 729.265 null] >> endobj -4844 0 obj << -/D [4841 0 R /XYZ 71.731 741.22 null] +4827 0 obj << +/D [4824 0 R /XYZ 71.731 741.22 null] >> endobj -4845 0 obj << -/D [4841 0 R /XYZ 71.731 718.306 null] +4828 0 obj << +/D [4824 0 R /XYZ 71.731 718.306 null] >> endobj 1764 0 obj << -/D [4841 0 R /XYZ 71.731 688.254 null] +/D [4824 0 R /XYZ 71.731 688.254 null] >> endobj 898 0 obj << -/D [4841 0 R /XYZ 201.827 645.157 null] +/D [4824 0 R /XYZ 201.827 645.157 null] >> endobj -4846 0 obj << -/D [4841 0 R /XYZ 71.731 636.334 null] +4829 0 obj << +/D [4824 0 R /XYZ 71.731 636.334 null] >> endobj -4847 0 obj << -/D [4841 0 R /XYZ 71.731 582.586 null] +4830 0 obj << +/D [4824 0 R /XYZ 71.731 582.586 null] >> endobj -4848 0 obj << -/D [4841 0 R /XYZ 71.731 577.605 null] +4831 0 obj << +/D [4824 0 R /XYZ 71.731 577.605 null] >> endobj -4849 0 obj << -/D [4841 0 R /XYZ 89.664 556.848 null] +4832 0 obj << +/D [4824 0 R /XYZ 89.664 556.848 null] >> endobj -4850 0 obj << -/D [4841 0 R /XYZ 71.731 528.788 null] +4833 0 obj << +/D [4824 0 R /XYZ 71.731 528.788 null] >> endobj -4851 0 obj << -/D [4841 0 R /XYZ 89.664 513.012 null] +4834 0 obj << +/D [4824 0 R /XYZ 89.664 513.012 null] >> endobj -4852 0 obj << -/D [4841 0 R /XYZ 71.731 485.326 null] +4835 0 obj << +/D [4824 0 R /XYZ 71.731 485.326 null] >> endobj -4853 0 obj << -/D [4841 0 R /XYZ 89.664 469.177 null] +4836 0 obj << +/D [4824 0 R /XYZ 89.664 469.177 null] >> endobj -4854 0 obj << -/D [4841 0 R /XYZ 71.731 467.02 null] +4837 0 obj << +/D [4824 0 R /XYZ 71.731 467.02 null] >> endobj -4855 0 obj << -/D [4841 0 R /XYZ 89.664 451.244 null] +4838 0 obj << +/D [4824 0 R /XYZ 89.664 451.244 null] >> endobj -4856 0 obj << -/D [4841 0 R /XYZ 71.731 449.087 null] +4839 0 obj << +/D [4824 0 R /XYZ 71.731 449.087 null] >> endobj -4857 0 obj << -/D [4841 0 R /XYZ 89.664 433.311 null] +4840 0 obj << +/D [4824 0 R /XYZ 89.664 433.311 null] >> endobj -4858 0 obj << -/D [4841 0 R /XYZ 71.731 431.154 null] +4841 0 obj << +/D [4824 0 R /XYZ 71.731 431.154 null] >> endobj -4859 0 obj << -/D [4841 0 R /XYZ 89.664 415.378 null] +4842 0 obj << +/D [4824 0 R /XYZ 89.664 415.378 null] >> endobj -4860 0 obj << -/D [4841 0 R /XYZ 71.731 400.987 null] +4843 0 obj << +/D [4824 0 R /XYZ 71.731 400.987 null] >> endobj -4861 0 obj << -/D [4841 0 R /XYZ 89.664 384.494 null] +4844 0 obj << +/D [4824 0 R /XYZ 89.664 384.494 null] >> endobj -4862 0 obj << -/D [4841 0 R /XYZ 71.731 371.443 null] +4845 0 obj << +/D [4824 0 R /XYZ 71.731 371.443 null] >> endobj -4863 0 obj << -/D [4841 0 R /XYZ 89.664 353.61 null] +4846 0 obj << +/D [4824 0 R /XYZ 89.664 353.61 null] >> endobj -4864 0 obj << -/D [4841 0 R /XYZ 71.731 351.453 null] +4847 0 obj << +/D [4824 0 R /XYZ 71.731 351.453 null] >> endobj -4865 0 obj << -/D [4841 0 R /XYZ 89.664 335.677 null] +4848 0 obj << +/D [4824 0 R /XYZ 89.664 335.677 null] >> endobj -4866 0 obj << -/D [4841 0 R /XYZ 71.731 294.666 null] +4849 0 obj << +/D [4824 0 R /XYZ 71.731 294.666 null] >> endobj -4867 0 obj << -/D [4841 0 R /XYZ 89.664 278.89 null] +4850 0 obj << +/D [4824 0 R /XYZ 89.664 278.89 null] >> endobj -4868 0 obj << -/D [4841 0 R /XYZ 71.731 237.879 null] +4851 0 obj << +/D [4824 0 R /XYZ 71.731 237.879 null] >> endobj -4869 0 obj << -/D [4841 0 R /XYZ 89.664 222.103 null] +4852 0 obj << +/D [4824 0 R /XYZ 89.664 222.103 null] >> endobj -4870 0 obj << -/D [4841 0 R /XYZ 71.731 206.995 null] +4853 0 obj << +/D [4824 0 R /XYZ 71.731 206.995 null] >> endobj -4871 0 obj << -/D [4841 0 R /XYZ 89.664 191.219 null] +4854 0 obj << +/D [4824 0 R /XYZ 89.664 191.219 null] >> endobj -4872 0 obj << -/D [4841 0 R /XYZ 71.731 176.111 null] +4855 0 obj << +/D [4824 0 R /XYZ 71.731 176.111 null] >> endobj -4873 0 obj << -/D [4841 0 R /XYZ 89.664 160.335 null] +4856 0 obj << +/D [4824 0 R /XYZ 89.664 160.335 null] >> endobj -4874 0 obj << -/D [4841 0 R /XYZ 71.731 158.178 null] +4857 0 obj << +/D [4824 0 R /XYZ 71.731 158.178 null] >> endobj -4875 0 obj << -/D [4841 0 R /XYZ 89.664 142.402 null] +4858 0 obj << +/D [4824 0 R /XYZ 89.664 142.402 null] >> endobj -4876 0 obj << -/D [4841 0 R /XYZ 71.731 135.264 null] +4859 0 obj << +/D [4824 0 R /XYZ 71.731 135.264 null] >> endobj -4840 0 obj << +4823 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4879 0 obj << +4863 0 obj << /Length 2664 /Filter /FlateDecode >> @@ -18449,66 +18375,66 @@ xڝYݏ۸ �� ���p`mF�"��P|Y���x(�P*w��Fw^2A�d��-��ʋa��b(�k�j���H.���n���5��-t³�l����hS��Fѷ����0��TAU�ұCc3mo�e}�~{\�$���;Ё��S��PXC�;&O����3H�<��>q��Re�L I�bg\X��j��uR��C�������78�^�=���KA�t�NB�0�v� ;������1L��ap�D���q��Eh{3E4��a�f��,ⷎ{ Dip����7.��.�F��) �:qW�0��uk`�C�A[1�s���s���/�)@%�g��Gh3��y.��9����3��n7Q��z�k��eo�{����7���M��Lˑ��@�S�{�|�䯶?3]A&�qc���U����ah*e'Q��f�Ȓ���~f�,0��d��� �D��^sZF�i@����D6�>t�#|�,���Y��������DL�w-Ԫ�yF���z�J���ꭄ���E�D��3�˝@�Z �zl�㡹HD�蝹���'�����k=��S��]�? ڡG�A�gAp�g9]�/m�TM0�K�7�X�Ds�H���1L!Re�%t-Q�(�+���Ls@#e h�3n�e�{�&CAQ;�p������'J ���=�J�!����Cƙ�q�Sm�?~�$}<r�����N�'͉�{��i<�n�A$!�:PE�^S^-�`*�0��EA �n��.�g������tɔ�3��0���A㡱�D�h�rRfEYe/�uF��.��y© [�8��x�w��z��a���" ����JZP ���{X����\J�b�P�wa�����MK��f-�:����J�S� �.{�*���ɟ�)4�$�Ie����R@2�%e��.�?��6��&�[�kV��R�f�n��<_��R$��ޛ�G��T=��~X��e��$�E��fܔҘ�1������0����G��� �� �����P#���coF ���S �H%��;�V"�P�:*|̑{ f�,�܊{� ��{q���k<��g@�oW���� M��<�z�i�6Wѩ1�YF7;O}��6��B�l�|u=��>��?�/��C|����,�O?U=ݐɐ����}+�[=�|F`���#Yc2F��1��#�*$�VX~"Į�q�����t �u�\,3����(�CļW;>��R��l�����x�@� +<4�C���+�ъ,�+�V�FN7$TY}c{v��������I��z/��n�e�we7p>���P�{I�*z��1�_)3���<Q���;)iCˇkL�qWF���ƴ���,ҕ���/�'�$/R� �s�1��%���:肞�;+������O�zz�Bm��kSZ�p@.��~�r��#W�<el�G�8��W�܋}^��zU�3�~�?��_�F��!Ʀ�˳q�t� ��f�U7����;���� �U�B�_��E��~,�*����7P��_��璘ߞP�3'��Q�p`�2�#���"��*#��j�~�����Uv!�BOt��#:�E"�& @,�K -�,�U_DY-F/����e/[�;Q*ޞe�dvbG�"�/�n��߽�c��s���˱��8�i���g����Qc��(��e-,-�������I�z��hxth��Ź�e�7{����3W�s6t�Mѵ^��*��&Ŧ����xb���8���6ީ4g��}�W�۽���B�endstream +�,�U_DY-F/����e/[�;Q*ޞe�dvbG�"�/�n��߽�c��s���˱��8�i���g����Qc��(��e-,-�������I�z��hxth��Ź�e�7{����3W�s6t�Mѵ^��*��&Ŧ����xb���8���6ީ4g�-�����^���B�endstream endobj -4878 0 obj << +4862 0 obj << /Type /Page -/Contents 4879 0 R -/Resources 4877 0 R +/Contents 4863 0 R +/Resources 4861 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4839 0 R +/Parent 4860 0 R >> endobj -4880 0 obj << -/D [4878 0 R /XYZ 71.731 729.265 null] +4864 0 obj << +/D [4862 0 R /XYZ 71.731 729.265 null] >> endobj -4881 0 obj << -/D [4878 0 R /XYZ 71.731 646.476 null] +4865 0 obj << +/D [4862 0 R /XYZ 71.731 646.476 null] >> endobj -4882 0 obj << -/D [4878 0 R /XYZ 71.731 561.729 null] +4866 0 obj << +/D [4862 0 R /XYZ 71.731 561.729 null] >> endobj 1765 0 obj << -/D [4878 0 R /XYZ 71.731 530.844 null] +/D [4862 0 R /XYZ 71.731 530.844 null] >> endobj 902 0 obj << -/D [4878 0 R /XYZ 279.296 487.747 null] +/D [4862 0 R /XYZ 279.296 487.747 null] >> endobj -4883 0 obj << -/D [4878 0 R /XYZ 71.731 475.309 null] +4867 0 obj << +/D [4862 0 R /XYZ 71.731 475.309 null] >> endobj -4884 0 obj << -/D [4878 0 R /XYZ 71.731 433.147 null] +4868 0 obj << +/D [4862 0 R /XYZ 71.731 433.147 null] >> endobj -4885 0 obj << -/D [4878 0 R /XYZ 71.731 365.466 null] +4869 0 obj << +/D [4862 0 R /XYZ 71.731 365.466 null] >> endobj 1766 0 obj << -/D [4878 0 R /XYZ 71.731 321.63 null] +/D [4862 0 R /XYZ 71.731 321.63 null] >> endobj 906 0 obj << -/D [4878 0 R /XYZ 303.224 276.475 null] +/D [4862 0 R /XYZ 303.224 276.475 null] >> endobj -4886 0 obj << -/D [4878 0 R /XYZ 71.731 267.652 null] +4870 0 obj << +/D [4862 0 R /XYZ 71.731 267.652 null] >> endobj -4887 0 obj << -/D [4878 0 R /XYZ 71.731 221.875 null] +4871 0 obj << +/D [4862 0 R /XYZ 71.731 221.875 null] >> endobj 1767 0 obj << -/D [4878 0 R /XYZ 71.731 178.039 null] +/D [4862 0 R /XYZ 71.731 178.039 null] >> endobj 910 0 obj << -/D [4878 0 R /XYZ 394.793 134.942 null] +/D [4862 0 R /XYZ 394.793 134.942 null] >> endobj -4888 0 obj << -/D [4878 0 R /XYZ 71.731 122.504 null] +4872 0 obj << +/D [4862 0 R /XYZ 71.731 122.504 null] >> endobj -4877 0 obj << +4861 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4891 0 obj << -/Length 2503 +4875 0 obj << +/Length 2502 /Filter /FlateDecode >> stream @@ -18518,74 +18444,74 @@ xڍY[ �Ɇ�c���3��жRϔ%�1���%���Uf�{���-\����� ��l�a ���9��������+�����^��l��e���^�^���EiD�Tn"8�<N�$��ã.���`h��D�ꩇ��M�τ�K�XÌZe�R����Qr��k̀A���H#�~�-z�1q��&o�H`]�J�Thz��2����� �ۧ���*��F�.��}eSU\ �b��#j��ˇ+�2�'n��i�i3=@�sPj[�l��\��N�f���X��y��U����u�@�%. �Y��I �i;�r+�)ZU�����6{`KG4�w�Z�%�bʅ{~B�n'���^�� O~�}�9��+�b����@�����fNt��e�{�{��i�hr�� ��[�E*�Z.���a:��)�J��C}�-�.�P \�]LO�s�^u�*~G=�U�[Rh��k5�&%�S#iyír'���,cJ�j5N��������^H�䀢��2�F<�c��<͑� -���TiH�\�p��cl����l�,?��Y-�G9����x�3c�0T��� ��O�օ�(3�������*���+�E���dp*;<><�]�'���$�h�%"���~�z�>�l�?}b�����?�o*0�q���[7��r� D����|�m���+���#0�Wu��t��3Pl��F�#t{D���8�ܦ�@�F�6-u�����/���N ���y`mw�]4�hY=�~��p[�7���\#P@_X`�/�C��W�G�m�ga�ſ�M,wtK��⽕B�}����{]��0�endstream +���TiH�\�p��cl����l�,?��Y-�G9����x�3c�0T��� ��O�օ�(3�������*���+�E���dp*;<><�]�'���$�h�%"���~�z�>�l�?}b�����?�o*0�q���[7��r� D����|�m���+���#0�Wu��t��3Pl��F�#t{D���8�ܦ�@�F�6-u�����/���N ���y`mw�]4�hY=�~��p[�7���\#P@_X`�/�C��W�G�m�ga�ſ�M,wtK��⽕�����?����ه�%endstream endobj -4890 0 obj << +4874 0 obj << /Type /Page -/Contents 4891 0 R -/Resources 4889 0 R +/Contents 4875 0 R +/Resources 4873 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4839 0 R +/Parent 4860 0 R >> endobj -4892 0 obj << -/D [4890 0 R /XYZ 71.731 729.265 null] +4876 0 obj << +/D [4874 0 R /XYZ 71.731 729.265 null] >> endobj -4893 0 obj << -/D [4890 0 R /XYZ 71.731 675.303 null] +4877 0 obj << +/D [4874 0 R /XYZ 71.731 675.303 null] >> endobj 1768 0 obj << -/D [4890 0 R /XYZ 71.731 631.467 null] +/D [4874 0 R /XYZ 71.731 631.467 null] >> endobj 914 0 obj << -/D [4890 0 R /XYZ 182.287 588.37 null] +/D [4874 0 R /XYZ 182.287 588.37 null] >> endobj -4894 0 obj << -/D [4890 0 R /XYZ 71.731 579.547 null] +4878 0 obj << +/D [4874 0 R /XYZ 71.731 579.547 null] >> endobj 1769 0 obj << -/D [4890 0 R /XYZ 71.731 494.915 null] +/D [4874 0 R /XYZ 71.731 494.915 null] >> endobj 918 0 obj << -/D [4890 0 R /XYZ 188.364 451.818 null] +/D [4874 0 R /XYZ 188.364 451.818 null] >> endobj -4895 0 obj << -/D [4890 0 R /XYZ 71.731 442.995 null] +4879 0 obj << +/D [4874 0 R /XYZ 71.731 442.995 null] >> endobj 1770 0 obj << -/D [4890 0 R /XYZ 71.731 384.266 null] +/D [4874 0 R /XYZ 71.731 384.266 null] >> endobj 922 0 obj << -/D [4890 0 R /XYZ 365.182 341.169 null] +/D [4874 0 R /XYZ 365.182 341.169 null] >> endobj -4896 0 obj << -/D [4890 0 R /XYZ 71.731 332.346 null] +4880 0 obj << +/D [4874 0 R /XYZ 71.731 332.346 null] >> endobj -4897 0 obj << -/D [4890 0 R /XYZ 179.356 293.707 null] +4881 0 obj << +/D [4874 0 R /XYZ 179.356 293.707 null] >> endobj -4898 0 obj << -/D [4890 0 R /XYZ 71.731 286.568 null] +4882 0 obj << +/D [4874 0 R /XYZ 71.731 286.568 null] >> endobj 1771 0 obj << -/D [4890 0 R /XYZ 71.731 216.83 null] +/D [4874 0 R /XYZ 71.731 216.83 null] >> endobj 926 0 obj << -/D [4890 0 R /XYZ 433.251 173.732 null] +/D [4874 0 R /XYZ 433.251 173.732 null] >> endobj -4899 0 obj << -/D [4890 0 R /XYZ 71.731 161.561 null] +4883 0 obj << +/D [4874 0 R /XYZ 71.731 161.561 null] >> endobj -4900 0 obj << -/D [4890 0 R /XYZ 71.731 137.065 null] +4884 0 obj << +/D [4874 0 R /XYZ 71.731 137.065 null] >> endobj -4901 0 obj << -/D [4890 0 R /XYZ 71.731 127.102 null] +4885 0 obj << +/D [4874 0 R /XYZ 71.731 127.102 null] >> endobj -4889 0 obj << +4873 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4904 0 obj << +4888 0 obj << /Length 789 /Filter /FlateDecode >> @@ -18594,29 +18520,29 @@ xڕUQo �C�!��ܐ��n@��� �{�z�����?j�)Um�KQS��N<���M֪��b��L�����D�%���m���j��8(�y� İ�XD�=�� GN���p<�n�1&l�/��><!zx���Fݣs%n�^�z��J�#m"���^;j���`�x�Q\CQ�KYo"���@�Bfr��D�X��g�Al���Ѯ���;#6�B��P��4Y� ��i#EGj��סs��Zp:��j+��q�F6gTٵ5 -��½�ᛰ�p� ��le�+"�^�{T^Is�#1q�jM���_��G�Z�Ҡ<�|��BZ�<*�kB��lT?S��su�]�$O��s���[�ݍp��Q��������Lc��8T��Q�v���|��endstream +��½�ᛰ�p� ��le�+"�^�{T^Is�#1q�jM���_��G�Z�Ҡ<�|��BZ�<*�kB��lT?S��su�]�$O��s���[�ݍp��Q��������Lc��8T��Q�v���Q��endstream endobj -4903 0 obj << +4887 0 obj << /Type /Page -/Contents 4904 0 R -/Resources 4902 0 R +/Contents 4888 0 R +/Resources 4886 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4839 0 R +/Parent 4860 0 R >> endobj -4905 0 obj << -/D [4903 0 R /XYZ 71.731 729.265 null] +4889 0 obj << +/D [4887 0 R /XYZ 71.731 729.265 null] >> endobj -4906 0 obj << -/D [4903 0 R /XYZ 71.731 689.765 null] +4890 0 obj << +/D [4887 0 R /XYZ 71.731 689.765 null] >> endobj -4907 0 obj << -/D [4903 0 R /XYZ 71.731 647.771 null] +4891 0 obj << +/D [4887 0 R /XYZ 71.731 647.771 null] >> endobj -4902 0 obj << +4886 0 obj << /Font << /F33 1210 0 R /F27 1112 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4910 0 obj << +4894 0 obj << /Length 1875 /Filter /FlateDecode >> @@ -18627,190 +18553,190 @@ gkx ��� ��n��Xwi�)�ǧ�^��V��A�l>�r�YpN�y����}Ae2������<��,�DGAz8I��oB�h"+�o�%�G�/����B�wp��렯��r�4]�W�rG�v \�*�ip�:�I��Hcb�I��:҈��w���TZ�ap�W���P;�=���� ��9xM��K�4�uӵ����~������3 W��t� zĵߩr{��*m/I05�bOj ��]X}�!cz?VT��V�. T�����8*�(n��c�zky�/����+,��S|�p9��r�cH��b��:���Y�O Y�c��O1@;h�,ɓg7�u�����1O���_� ��_\�i,*v�x�A -\ƥ��q�.�j<_�XzWyendstream +\ƥ���O��?5���?XOWxendstream endobj -4909 0 obj << +4893 0 obj << /Type /Page -/Contents 4910 0 R -/Resources 4908 0 R +/Contents 4894 0 R +/Resources 4892 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4839 0 R -/Annots [ 4956 0 R ] +/Parent 4860 0 R +/Annots [ 4940 0 R ] +>> endobj +4940 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [375.699 134.004 435.474 142.915] +/Subtype /Link +/A << /S /GoTo /D (http-apache) >> +>> endobj +4895 0 obj << +/D [4893 0 R /XYZ 71.731 729.265 null] +>> endobj +1772 0 obj << +/D [4893 0 R /XYZ 71.731 718.306 null] +>> endobj +930 0 obj << +/D [4893 0 R /XYZ 160.355 703.236 null] +>> endobj +4896 0 obj << +/D [4893 0 R /XYZ 71.731 692.504 null] +>> endobj +934 0 obj << +/D [4893 0 R /XYZ 208.364 644.101 null] +>> endobj +3394 0 obj << +/D [4893 0 R /XYZ 71.731 629.175 null] +>> endobj +938 0 obj << +/D [4893 0 R /XYZ 117.14 620.82 null] +>> endobj +4897 0 obj << +/D [4893 0 R /XYZ 71.731 615.714 null] +>> endobj +4898 0 obj << +/D [4893 0 R /XYZ 71.731 610.733 null] +>> endobj +4899 0 obj << +/D [4893 0 R /XYZ 118.328 584.955 null] +>> endobj +4900 0 obj << +/D [4893 0 R /XYZ 296.214 572.003 null] >> endobj -4956 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [375.699 134.004 435.474 142.915] -/Subtype /Link -/A << /S /GoTo /D (http-apache) >> +4901 0 obj << +/D [4893 0 R /XYZ 71.731 536.138 null] >> endobj -4911 0 obj << -/D [4909 0 R /XYZ 71.731 729.265 null] +942 0 obj << +/D [4893 0 R /XYZ 86.646 483.825 null] >> endobj -1772 0 obj << -/D [4909 0 R /XYZ 71.731 718.306 null] +4902 0 obj << +/D [4893 0 R /XYZ 71.731 473.496 null] >> endobj -930 0 obj << -/D [4909 0 R /XYZ 160.355 703.236 null] +946 0 obj << +/D [4893 0 R /XYZ 107.616 460.544 null] >> endobj -4912 0 obj << -/D [4909 0 R /XYZ 71.731 692.504 null] +4903 0 obj << +/D [4893 0 R /XYZ 71.731 453.501 null] >> endobj -934 0 obj << -/D [4909 0 R /XYZ 208.364 644.101 null] +4904 0 obj << +/D [4893 0 R /XYZ 71.731 448.519 null] >> endobj -3413 0 obj << -/D [4909 0 R /XYZ 71.731 629.175 null] +4905 0 obj << +/D [4893 0 R /XYZ 256.795 411.727 null] >> endobj -938 0 obj << -/D [4909 0 R /XYZ 117.14 620.82 null] +4906 0 obj << +/D [4893 0 R /XYZ 392.166 411.727 null] +>> endobj +4907 0 obj << +/D [4893 0 R /XYZ 71.731 409.57 null] +>> endobj +4908 0 obj << +/D [4893 0 R /XYZ 71.731 395.623 null] +>> endobj +950 0 obj << +/D [4893 0 R /XYZ 320.85 382.238 null] +>> endobj +4909 0 obj << +/D [4893 0 R /XYZ 71.731 369.615 null] +>> endobj +4910 0 obj << +/D [4893 0 R /XYZ 71.731 369.615 null] +>> endobj +4911 0 obj << +/D [4893 0 R /XYZ 71.731 369.615 null] +>> endobj +4912 0 obj << +/D [4893 0 R /XYZ 71.731 357.916 null] >> endobj 4913 0 obj << -/D [4909 0 R /XYZ 71.731 615.714 null] +/D [4893 0 R /XYZ 111.582 341.391 null] >> endobj 4914 0 obj << -/D [4909 0 R /XYZ 71.731 610.733 null] +/D [4893 0 R /XYZ 71.731 329.271 null] >> endobj 4915 0 obj << -/D [4909 0 R /XYZ 118.328 584.955 null] +/D [4893 0 R /XYZ 71.731 329.271 null] >> endobj 4916 0 obj << -/D [4909 0 R /XYZ 296.214 572.003 null] +/D [4893 0 R /XYZ 71.731 329.271 null] >> endobj 4917 0 obj << -/D [4909 0 R /XYZ 71.731 536.138 null] ->> endobj -942 0 obj << -/D [4909 0 R /XYZ 86.646 483.825 null] +/D [4893 0 R /XYZ 71.731 317.069 null] >> endobj 4918 0 obj << -/D [4909 0 R /XYZ 71.731 473.496 null] ->> endobj -946 0 obj << -/D [4909 0 R /XYZ 107.616 460.544 null] +/D [4893 0 R /XYZ 71.731 317.069 null] >> endobj 4919 0 obj << -/D [4909 0 R /XYZ 71.731 453.501 null] +/D [4893 0 R /XYZ 71.731 317.069 null] >> endobj 4920 0 obj << -/D [4909 0 R /XYZ 71.731 448.519 null] +/D [4893 0 R /XYZ 71.731 304.118 null] >> endobj 4921 0 obj << -/D [4909 0 R /XYZ 256.795 411.727 null] +/D [4893 0 R /XYZ 111.582 287.593 null] >> endobj 4922 0 obj << -/D [4909 0 R /XYZ 392.166 411.727 null] +/D [4893 0 R /XYZ 326.852 274.641 null] >> endobj 4923 0 obj << -/D [4909 0 R /XYZ 71.731 409.57 null] +/D [4893 0 R /XYZ 71.731 262.522 null] >> endobj 4924 0 obj << -/D [4909 0 R /XYZ 71.731 395.623 null] ->> endobj -950 0 obj << -/D [4909 0 R /XYZ 320.85 382.238 null] +/D [4893 0 R /XYZ 71.731 262.522 null] >> endobj 4925 0 obj << -/D [4909 0 R /XYZ 71.731 369.615 null] +/D [4893 0 R /XYZ 71.731 262.522 null] >> endobj 4926 0 obj << -/D [4909 0 R /XYZ 71.731 369.615 null] +/D [4893 0 R /XYZ 71.731 250.319 null] >> endobj 4927 0 obj << -/D [4909 0 R /XYZ 71.731 369.615 null] +/D [4893 0 R /XYZ 111.582 233.794 null] >> endobj 4928 0 obj << -/D [4909 0 R /XYZ 71.731 357.916 null] +/D [4893 0 R /XYZ 352.018 233.794 null] >> endobj 4929 0 obj << -/D [4909 0 R /XYZ 111.582 341.391 null] +/D [4893 0 R /XYZ 135.374 220.843 null] >> endobj 4930 0 obj << -/D [4909 0 R /XYZ 71.731 329.271 null] +/D [4893 0 R /XYZ 224.983 220.843 null] >> endobj 4931 0 obj << -/D [4909 0 R /XYZ 71.731 329.271 null] +/D [4893 0 R /XYZ 297.992 220.843 null] >> endobj 4932 0 obj << -/D [4909 0 R /XYZ 71.731 329.271 null] +/D [4893 0 R /XYZ 419.728 220.843 null] >> endobj 4933 0 obj << -/D [4909 0 R /XYZ 71.731 317.069 null] +/D [4893 0 R /XYZ 111.582 207.892 null] >> endobj 4934 0 obj << -/D [4909 0 R /XYZ 71.731 317.069 null] +/D [4893 0 R /XYZ 71.731 196.521 null] >> endobj 4935 0 obj << -/D [4909 0 R /XYZ 71.731 317.069 null] +/D [4893 0 R /XYZ 71.731 196.521 null] >> endobj 4936 0 obj << -/D [4909 0 R /XYZ 71.731 304.118 null] +/D [4893 0 R /XYZ 71.731 196.521 null] >> endobj 4937 0 obj << -/D [4909 0 R /XYZ 111.582 287.593 null] +/D [4893 0 R /XYZ 71.731 183.57 null] >> endobj 4938 0 obj << -/D [4909 0 R /XYZ 326.852 274.641 null] +/D [4893 0 R /XYZ 111.582 167.045 null] >> endobj 4939 0 obj << -/D [4909 0 R /XYZ 71.731 262.522 null] ->> endobj -4940 0 obj << -/D [4909 0 R /XYZ 71.731 262.522 null] +/D [4893 0 R /XYZ 71.731 146.955 null] >> endobj 4941 0 obj << -/D [4909 0 R /XYZ 71.731 262.522 null] ->> endobj -4942 0 obj << -/D [4909 0 R /XYZ 71.731 250.319 null] ->> endobj -4943 0 obj << -/D [4909 0 R /XYZ 111.582 233.794 null] ->> endobj -4944 0 obj << -/D [4909 0 R /XYZ 352.018 233.794 null] ->> endobj -4945 0 obj << -/D [4909 0 R /XYZ 135.374 220.843 null] ->> endobj -4946 0 obj << -/D [4909 0 R /XYZ 224.983 220.843 null] ->> endobj -4947 0 obj << -/D [4909 0 R /XYZ 297.992 220.843 null] ->> endobj -4948 0 obj << -/D [4909 0 R /XYZ 419.728 220.843 null] ->> endobj -4949 0 obj << -/D [4909 0 R /XYZ 111.582 207.892 null] ->> endobj -4950 0 obj << -/D [4909 0 R /XYZ 71.731 196.521 null] ->> endobj -4951 0 obj << -/D [4909 0 R /XYZ 71.731 196.521 null] ->> endobj -4952 0 obj << -/D [4909 0 R /XYZ 71.731 196.521 null] ->> endobj -4953 0 obj << -/D [4909 0 R /XYZ 71.731 183.57 null] ->> endobj -4954 0 obj << -/D [4909 0 R /XYZ 111.582 167.045 null] ->> endobj -4955 0 obj << -/D [4909 0 R /XYZ 71.731 146.955 null] ->> endobj -4957 0 obj << -/D [4909 0 R /XYZ 71.731 113.246 null] +/D [4893 0 R /XYZ 71.731 113.246 null] >> endobj -4908 0 obj << +4892 0 obj << /Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R /F33 1210 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4960 0 obj << +4944 0 obj << /Length 1473 /Filter /FlateDecode >> @@ -18820,146 +18746,146 @@ xڕWM :M/�*�I�<�2�㢈�g� �9��xP�S��{!/!PQ���F&�'�Cgy��F̳�" aT+ݰs�"hP�ɢ^��`�~�|B�Ϟ��6C�'v���^Yk��A]1�f�)h�U��Os�zA{6��4l,��1Ʋ6?�`s�4:��Q���4I�VR�H���8��ܽ 5c�P�--R`�-*v�h�Sއ����0˜����R���TI��ތ�p��>���E�����gݓ� �� �#�Ϭ�u��z�C�a���;�m������䋆�'�=>�����FFw_��p����܄�,�,\����e���IBfhxg��ٴ��B�~�WLB���w@��#Q�M���b5�Qh��X���%;�CK�d3�e��� -�kB�%v�d]�f����v�\��R'7��{JS����i�?��3a#MN�F���I��Gရ�[K�G�N�Z�!�2P�,��4�8��~A���bl��C��>#������<M��ɾ���Lxw��d�H���ɞ�?w�? ������*~���w��#������N��|�n��.qZ�a����JQ�Q�X�%�W��>���@� �_��NM�� �%%j���g���U����6��z�V@�ܞ�@ =.�Y�)6ޱ������33����،=+6�� ?"�f�0.l���v���o�N�X�� �ˋI����K)�96A$�Ȟ�?f_���a�eendstream +�kB�%v�d]�f����v�\��R'7��{JS����i�?��3a#MN�F���I��Gရ�[K�G�N�Z�!�2P�,��4�8��~A���bl��C��>#������<M��ɾ���Lxw��d�H���ɞ�?w�? ������*~���w��#������N��|�n��.qZ�a����JQ�Q�X�%�W��>���@� �_��NM�� �%%j���g���U����6��z�V@�ܞ�@ =.�Y�)6ޱ������33����،=+6�� ?"�f�0.l���v���o�N�X�� �ˋI����K)�96A$���C��/c��6�dendstream endobj -4959 0 obj << +4943 0 obj << /Type /Page -/Contents 4960 0 R -/Resources 4958 0 R +/Contents 4944 0 R +/Resources 4942 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4990 0 R +/Parent 4860 0 R >> endobj -4961 0 obj << -/D [4959 0 R /XYZ 71.731 729.265 null] +4945 0 obj << +/D [4943 0 R /XYZ 71.731 729.265 null] >> endobj 954 0 obj << -/D [4959 0 R /XYZ 86.646 703.68 null] +/D [4943 0 R /XYZ 86.646 703.68 null] >> endobj -4962 0 obj << -/D [4959 0 R /XYZ 71.731 693.351 null] +4946 0 obj << +/D [4943 0 R /XYZ 71.731 693.351 null] >> endobj 958 0 obj << -/D [4959 0 R /XYZ 91.098 680.4 null] +/D [4943 0 R /XYZ 91.098 680.4 null] >> endobj -4963 0 obj << -/D [4959 0 R /XYZ 71.731 673.202 null] +4947 0 obj << +/D [4943 0 R /XYZ 71.731 673.202 null] >> endobj -4964 0 obj << -/D [4959 0 R /XYZ 71.731 668.22 null] +4948 0 obj << +/D [4943 0 R /XYZ 71.731 668.22 null] >> endobj -4965 0 obj << -/D [4959 0 R /XYZ 101.865 657.485 null] +4949 0 obj << +/D [4943 0 R /XYZ 101.865 657.485 null] >> endobj -4966 0 obj << -/D [4959 0 R /XYZ 236.362 644.534 null] +4950 0 obj << +/D [4943 0 R /XYZ 236.362 644.534 null] >> endobj -4967 0 obj << -/D [4959 0 R /XYZ 284.401 644.534 null] +4951 0 obj << +/D [4943 0 R /XYZ 284.401 644.534 null] >> endobj -4968 0 obj << -/D [4959 0 R /XYZ 71.731 619.129 null] +4952 0 obj << +/D [4943 0 R /XYZ 71.731 619.129 null] >> endobj 962 0 obj << -/D [4959 0 R /XYZ 131.506 606.178 null] +/D [4943 0 R /XYZ 131.506 606.178 null] >> endobj -4969 0 obj << -/D [4959 0 R /XYZ 71.731 598.98 null] +4953 0 obj << +/D [4943 0 R /XYZ 71.731 598.98 null] >> endobj -4970 0 obj << -/D [4959 0 R /XYZ 71.731 593.999 null] +4954 0 obj << +/D [4943 0 R /XYZ 71.731 593.999 null] >> endobj 1888 0 obj << -/D [4959 0 R /XYZ 71.731 544.908 null] +/D [4943 0 R /XYZ 71.731 544.908 null] >> endobj 966 0 obj << -/D [4959 0 R /XYZ 109.927 531.956 null] +/D [4943 0 R /XYZ 109.927 531.956 null] >> endobj -4971 0 obj << -/D [4959 0 R /XYZ 71.731 524.758 null] +4955 0 obj << +/D [4943 0 R /XYZ 71.731 524.758 null] >> endobj -4972 0 obj << -/D [4959 0 R /XYZ 71.731 519.777 null] +4956 0 obj << +/D [4943 0 R /XYZ 71.731 519.777 null] >> endobj -4973 0 obj << -/D [4959 0 R /XYZ 71.731 486.128 null] +4957 0 obj << +/D [4943 0 R /XYZ 71.731 486.128 null] >> endobj 970 0 obj << -/D [4959 0 R /XYZ 86.646 433.815 null] +/D [4943 0 R /XYZ 86.646 433.815 null] >> endobj 1950 0 obj << -/D [4959 0 R /XYZ 71.731 423.228 null] +/D [4943 0 R /XYZ 71.731 423.228 null] >> endobj 974 0 obj << -/D [4959 0 R /XYZ 202.589 410.535 null] +/D [4943 0 R /XYZ 202.589 410.535 null] >> endobj -4974 0 obj << -/D [4959 0 R /XYZ 71.731 403.491 null] +4958 0 obj << +/D [4943 0 R /XYZ 71.731 403.491 null] >> endobj -4975 0 obj << -/D [4959 0 R /XYZ 71.731 398.51 null] +4959 0 obj << +/D [4943 0 R /XYZ 71.731 398.51 null] >> endobj -4976 0 obj << -/D [4959 0 R /XYZ 71.731 398.51 null] +4960 0 obj << +/D [4943 0 R /XYZ 71.731 398.51 null] >> endobj -4977 0 obj << -/D [4959 0 R /XYZ 257.363 374.669 null] +4961 0 obj << +/D [4943 0 R /XYZ 257.363 374.669 null] >> endobj -4978 0 obj << -/D [4959 0 R /XYZ 71.731 349.264 null] +4962 0 obj << +/D [4943 0 R /XYZ 71.731 349.264 null] >> endobj 978 0 obj << -/D [4959 0 R /XYZ 127.073 336.313 null] +/D [4943 0 R /XYZ 127.073 336.313 null] >> endobj -4979 0 obj << -/D [4959 0 R /XYZ 71.731 329.269 null] +4963 0 obj << +/D [4943 0 R /XYZ 71.731 329.269 null] >> endobj -4980 0 obj << -/D [4959 0 R /XYZ 71.731 324.288 null] +4964 0 obj << +/D [4943 0 R /XYZ 71.731 324.288 null] >> endobj -2539 0 obj << -/D [4959 0 R /XYZ 71.731 262.091 null] +2502 0 obj << +/D [4943 0 R /XYZ 71.731 262.091 null] >> endobj 982 0 obj << -/D [4959 0 R /XYZ 248.655 249.14 null] +/D [4943 0 R /XYZ 248.655 249.14 null] >> endobj -4981 0 obj << -/D [4959 0 R /XYZ 71.731 242.096 null] +4965 0 obj << +/D [4943 0 R /XYZ 71.731 242.096 null] >> endobj -4982 0 obj << -/D [4959 0 R /XYZ 71.731 237.115 null] +4966 0 obj << +/D [4943 0 R /XYZ 71.731 237.115 null] >> endobj -4983 0 obj << -/D [4959 0 R /XYZ 71.731 237.115 null] +4967 0 obj << +/D [4943 0 R /XYZ 71.731 237.115 null] >> endobj -4984 0 obj << -/D [4959 0 R /XYZ 180.012 226.226 null] +4968 0 obj << +/D [4943 0 R /XYZ 180.012 226.226 null] >> endobj -4985 0 obj << -/D [4959 0 R /XYZ 118.495 213.274 null] +4969 0 obj << +/D [4943 0 R /XYZ 118.495 213.274 null] >> endobj -2415 0 obj << -/D [4959 0 R /XYZ 71.731 187.87 null] +2411 0 obj << +/D [4943 0 R /XYZ 71.731 187.87 null] >> endobj -4986 0 obj << -/D [4959 0 R /XYZ 71.731 187.87 null] +4970 0 obj << +/D [4943 0 R /XYZ 71.731 187.87 null] >> endobj 986 0 obj << -/D [4959 0 R /XYZ 109.39 174.918 null] +/D [4943 0 R /XYZ 109.39 174.918 null] >> endobj -4987 0 obj << -/D [4959 0 R /XYZ 71.731 169.757 null] +4971 0 obj << +/D [4943 0 R /XYZ 71.731 169.757 null] >> endobj -4988 0 obj << -/D [4959 0 R /XYZ 71.731 164.776 null] +4972 0 obj << +/D [4943 0 R /XYZ 71.731 164.776 null] >> endobj -4989 0 obj << -/D [4959 0 R /XYZ 109.568 153.299 null] +4973 0 obj << +/D [4943 0 R /XYZ 109.568 153.299 null] >> endobj -4958 0 obj << -/Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R /F57 2335 0 R /F35 1437 0 R >> +4942 0 obj << +/Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R /F57 2317 0 R /F35 1437 0 R >> /ProcSet [ /PDF /Text ] >> endobj -4993 0 obj << +4976 0 obj << /Length 1535 /Filter /FlateDecode >> @@ -18968,287 +18894,288 @@ xڍWK YQx��.�ؿf�R� �z~�O,�$2�4����6Cw�&!��}D�n�M���8�����'1�>�U���ǬD���v�ף�S7XG��+`���b`�N��pP̽��1�1�_�P�PM��������h���;-�7�v��#��=|������nO�_�&U�9ˑ�����a�V�o�����BJN��h?���W���ꔙ�/|�������w=>c&�SA�3/&��E��LR��:��C���^���E�ise�<�+����3v)F3JC+��{�U"�*� ���%�;��q������F�{�����A�K����y �2���B[O,h,�/{�i�QD������`��� �C��A(��F[K��ĺ|xqs^^���Z9���^���M�c#�:�C��;b��7'�N��a�#�o;�,'�XU��Yl3'�rD2�i�7,�(n�k6���P� �l���̉؟��?O�:�6�"~���J�u�����]��g_Q��`5�ќ,J��oV�aA�DĀ�i��2Ko��gq�t5O�U�&�]�����29t��4�<�m��"4/��;��Â�I~A��ybqz�T2�wK4*�>�|�d2��T5H8��;g���|���h ͈�o;Ѻ�u��2������Jn�4�"�o������n��<,r�����r�)�u<�<�Ɯ',p������`�M���<��魻��z�9��K<�{�'��#��0�g���G����� ��G)����.#���g��3W<Ð=膱3�:�z���h@c� r8~��aYNFR��i4��50��Ѥ# -���7"{hU�=���xli��2�v�r�D���V���\�aK�$���)RX:��?��N�!�5��ƣ��B�$ѴcE'0�H5��\dY��ޚG�?�q7���LkP~�_5TH���^U�i�V�B\��� �77S6�E�.S���̫��V-�@�Y�b �� F��x�h�!�{����#H&�>��� N�x���'f�*)o�.s,�,u/#�Åcxf�$I��T�?zm��r�wendstream +���7"{hU�=���xli��2�v�r�D���V���\�aK�$���)RX:��?��N�!�5��ƣ��B�$ѴcE'0�H5��\dY��ޚG�?�q7���LkP~�_5TH���^U�i�V�B\��� �77S6�E�.S���̫��V-�@�Y�b �� F��x�h�!�{����#H&�>��� N�x���'f�*)o�.s,�,u/#�Åcxf�$I��T�?zm��G�vendstream endobj -4992 0 obj << +4975 0 obj << /Type /Page -/Contents 4993 0 R -/Resources 4991 0 R +/Contents 4976 0 R +/Resources 4974 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4990 0 R -/Annots [ 5007 0 R ] +/Parent 5002 0 R +/Annots [ 4990 0 R ] >> endobj -5007 0 obj << +4990 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [221.059 393.303 273.526 401.497] /Subtype /Link /A << /S /GoTo /D (security-webserver-mod-throttle) >> >> endobj -4994 0 obj << -/D [4992 0 R /XYZ 71.731 729.265 null] +4977 0 obj << +/D [4975 0 R /XYZ 71.731 729.265 null] >> endobj -4995 0 obj << -/D [4992 0 R /XYZ 71.731 741.22 null] +4978 0 obj << +/D [4975 0 R /XYZ 71.731 741.22 null] >> endobj -4996 0 obj << -/D [4992 0 R /XYZ 524.797 708.344 null] +4979 0 obj << +/D [4975 0 R /XYZ 524.797 708.344 null] >> endobj -4997 0 obj << -/D [4992 0 R /XYZ 71.731 691.243 null] +4980 0 obj << +/D [4975 0 R /XYZ 71.731 691.243 null] >> endobj -4998 0 obj << -/D [4992 0 R /XYZ 195.191 681.743 null] +4981 0 obj << +/D [4975 0 R /XYZ 195.191 681.743 null] >> endobj -4999 0 obj << -/D [4992 0 R /XYZ 71.731 606.326 null] +4982 0 obj << +/D [4975 0 R /XYZ 71.731 606.326 null] >> endobj 990 0 obj << -/D [4992 0 R /XYZ 86.646 554.013 null] +/D [4975 0 R /XYZ 86.646 554.013 null] >> endobj -3301 0 obj << -/D [4992 0 R /XYZ 71.731 543.684 null] +3282 0 obj << +/D [4975 0 R /XYZ 71.731 543.684 null] >> endobj 994 0 obj << -/D [4992 0 R /XYZ 109.927 530.733 null] +/D [4975 0 R /XYZ 109.927 530.733 null] >> endobj -5000 0 obj << -/D [4992 0 R /XYZ 71.731 525.627 null] +4983 0 obj << +/D [4975 0 R /XYZ 71.731 525.627 null] >> endobj -5001 0 obj << -/D [4992 0 R /XYZ 71.731 520.646 null] +4984 0 obj << +/D [4975 0 R /XYZ 71.731 520.646 null] >> endobj -5002 0 obj << -/D [4992 0 R /XYZ 408.876 494.867 null] +4985 0 obj << +/D [4975 0 R /XYZ 408.876 494.867 null] >> endobj -5003 0 obj << -/D [4992 0 R /XYZ 91.656 481.916 null] +4986 0 obj << +/D [4975 0 R /XYZ 91.656 481.916 null] >> endobj -3443 0 obj << -/D [4992 0 R /XYZ 71.731 456.511 null] +3424 0 obj << +/D [4975 0 R /XYZ 71.731 456.511 null] >> endobj 998 0 obj << -/D [4992 0 R /XYZ 126.336 443.56 null] +/D [4975 0 R /XYZ 126.336 443.56 null] >> endobj -5004 0 obj << -/D [4992 0 R /XYZ 71.731 438.454 null] +4987 0 obj << +/D [4975 0 R /XYZ 71.731 438.454 null] >> endobj -5005 0 obj << -/D [4992 0 R /XYZ 71.731 433.473 null] +4988 0 obj << +/D [4975 0 R /XYZ 71.731 433.473 null] >> endobj -5006 0 obj << -/D [4992 0 R /XYZ 91.656 394.743 null] +4989 0 obj << +/D [4975 0 R /XYZ 91.656 394.743 null] >> endobj -5008 0 obj << -/D [4992 0 R /XYZ 71.731 345.926 null] +4991 0 obj << +/D [4975 0 R /XYZ 71.731 345.926 null] >> endobj 1002 0 obj << -/D [4992 0 R /XYZ 87.803 293.613 null] +/D [4975 0 R /XYZ 87.803 293.613 null] >> endobj -5009 0 obj << -/D [4992 0 R /XYZ 71.731 283.026 null] +4992 0 obj << +/D [4975 0 R /XYZ 71.731 283.026 null] >> endobj 1006 0 obj << -/D [4992 0 R /XYZ 106.959 270.332 null] +/D [4975 0 R /XYZ 106.959 270.332 null] >> endobj -5010 0 obj << -/D [4992 0 R /XYZ 71.731 263.289 null] +4993 0 obj << +/D [4975 0 R /XYZ 71.731 263.289 null] >> endobj -5011 0 obj << -/D [4992 0 R /XYZ 71.731 258.307 null] +4994 0 obj << +/D [4975 0 R /XYZ 71.731 258.307 null] >> endobj -5012 0 obj << -/D [4992 0 R /XYZ 135.305 247.418 null] +4995 0 obj << +/D [4975 0 R /XYZ 135.305 247.418 null] >> endobj -5013 0 obj << -/D [4992 0 R /XYZ 477.105 234.467 null] +4996 0 obj << +/D [4975 0 R /XYZ 477.105 234.467 null] >> endobj -5014 0 obj << -/D [4992 0 R /XYZ 91.656 221.515 null] +4997 0 obj << +/D [4975 0 R /XYZ 91.656 221.515 null] >> endobj -5015 0 obj << -/D [4992 0 R /XYZ 71.731 198.601 null] +4998 0 obj << +/D [4975 0 R /XYZ 71.731 198.601 null] >> endobj 1010 0 obj << -/D [4992 0 R /XYZ 83.217 146.288 null] +/D [4975 0 R /XYZ 83.217 146.288 null] >> endobj -5016 0 obj << -/D [4992 0 R /XYZ 71.731 135.701 null] +4999 0 obj << +/D [4975 0 R /XYZ 71.731 135.701 null] >> endobj 1014 0 obj << -/D [4992 0 R /XYZ 121.773 123.008 null] +/D [4975 0 R /XYZ 121.773 123.008 null] >> endobj -5017 0 obj << -/D [4992 0 R /XYZ 71.731 115.964 null] +5000 0 obj << +/D [4975 0 R /XYZ 71.731 115.964 null] >> endobj -5018 0 obj << -/D [4992 0 R /XYZ 71.731 110.983 null] +5001 0 obj << +/D [4975 0 R /XYZ 71.731 110.983 null] >> endobj -4991 0 obj << +4974 0 obj << /Font << /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R /F35 1437 0 R /F33 1210 0 R >> /ProcSet [ /PDF /Text ] >> endobj -5021 0 obj << -/Length 1470 +5005 0 obj << +/Length 1556 /Filter /FlateDecode >> stream -xڭˎ�6�_�[% �ER�#�ݦ)Rt[�k����2-�DG�:��w�!����!0` ���{Hg��,�$��a9a���]4+a��;�(�$!L0�ol�OI��������n���H"��j�$��H�V뿃����/�*'y� Q4�3NXF�@��i���U8gi��, -:��;�& -��;�6��B��5� ��HNc��>�s�Y1pF� -�/`@�}�Z�A�#j���A�N�ۡӵCnb��"�C&�=n� ~U#�It�(�����!��(A�ж���gy����kݍ%)h -N3���]�<��p%m�a�zj/��}���xf�YPE���*��i�J�y��U]K\)s�O;U��eF�]#�|�����ʱv��������8!y��BF���w���jG�&����� ��8�L�Q\xM�Dh�X���*�9D�4�!"��=d�p�B�&��z��V�#��8V���`͇����xAʜ -^�V��&�$���Nv�qWr�z�驜��CN�&"���My��s�%�Ǚ ����ǯߔ�H9g���b4��� ���m�3����iu�>̰��"hJ���,P�f~Fd?S嚑�ߟo�&�����,��L$�����Yr!qck(�ӊ��g�* l-κk,/m�������t�����,o�ǚ�q�A��S~Q,��V����]m�X�Ƥm���]�Ya�ez�3e�^ſޜ�k]� �Z�n]"��q�۪tv�jM51Rd�^���R���Id�a�!���Mu6��.T��#d;4�-tWN�!� �c���1#qN/;���yLh�B:��D" -< 6�a��`h�Ԇ�Wm����?��T���� M���6I�\$��;���~��_�#XM�툧ߛ�G�jO�A��͞'v_���1��k���<�+������7iW,��Рpk�+G_�}*�����q��+�́�fZ9#,�/۔�4�s�,����?���WJw�'��o�*9�y� ��n����x�e��eg��2OcS`,\h���Z ��+G�u��n��Xo��,Uohz�Ze3�%���EM�M�`(:^0&l"<K ����pG��+F���4��9$6���0��{���|r���n����>LGu��Α�7 .�e�k��٨5!Γ��1 Z��xs������.�X.7�/�ljYvF ��o<�;a����o�A��\�nn�Nw��w�|��N��('i0��+\��fյ;ש]�`$l0'��"ӷ�v�*�%�^o;����t�5������x��xB�Hu�6���&�l6(=�/����?�f�[����~����/��h����ouq���,�Eef���� -FJ��3[8����{�_���7Wݩ���P ����#� �^�qF2��LgG1?�L�R���s1W�T\��O�����tendstream +xڭXKo�6��W�h1-�z�t��M�6z�#Ѷ��襤�_�嗼�=,X�p8��H�O�㓄�D�GdL��$�o��V~��#�c&"�+��H&,K�d~"���f�^ȉXe��ՠ%�8��s���q���+cY,�)�̅d"�Ġ�V�x0]���gs����YL�jڭ�@ ���=W3�@"��Q4���@�`����<NR��8A�2�w�~��MG�eK߾�-v�(�i:k*�tM��@����;Z0+��Z�`�g7 }}�}�����7i�m{Teuw��ڢ�.�@fН�Al�n{�X�Z�|��jD�����(�n��a���1U�@i/2��l[�>��2�.��p�LkS���%�nS��?��/e��("@`Z��� ��MAt��%j��3(��hp&DN�{�a���I��O��h��YQ�0�+m]�pG�`��l��R��Jװ���4-1���pU�]��ʋC��ƀ�I*�Uo�A,��Z��$�Z�}�x��^ +]��i��u�1ŕ�䜅�<�۳UV�O�l.!�.=@�, � ��s����EϜ#�a̲ �lV�K�r�at�Y��L����� �avV��S��(p��o�;@���$�lH�i�2`�`C�<����1LF1����߾2�s.�tX x8�{�U���dW.H�1t��������� b�]�ԁg~�� U�xr)�������Hc +�ok�<#��Q4>��Z',�#�O"���h.�@(�ʨ;�V�Դ�1l���b(�z�~�Xnj�L�(8.�j�� �������6�� +��QuY�ʖ_�3̐Ӷ�Zˮ�64���K�Q&��w�گnʵ��5eӵ�EY}7 �HX������O���Op{�3@��.t��-l�Օ��$CJb(�PBX��9�v~�_~吅Ш T�Qܨ��TTґ����������b�dp�O1*�GYu�U�zH76a|քl1��2߾G� �r�#�~��~+�2�C���x���j<t�CA���_�jz����f��}sNO� ���w'�TE Y��5�=˛�!���Z 7RH�i~��D��æ�3z��x�{����*>��!Q#1/���͔�S�K�Q��S�y\��ǁ�(t�W,G�K*�Į���7m�^������e +&��-��ϛ�\ +BO�t~40db��s��7�{���_:?��o���\���$b$�j��3b9��,��,>�L�3x8|?.UsJ��u)����m��"IU�%�S�v5 پZ��xwr����3n�o/���ŕ[ˠ��ֲ������~�Hx�,-mq��H����̢a���3vO<�����='��܊��-M�,w�ƙ�[��bع#�)^b��h��Թ>ښU�s'�V,}QV�wO�͕�<۴U��R��r�C5�1q>p�'SoM����s�����hvF�I��4(4�p�����q'�H�KgtZ:��J ��C�l��&0x��C��<��rm�P3e�A���lh�FS���j;{���et-���� R�$��KU�? ƺ�,�5�endstream endobj -5020 0 obj << +5004 0 obj << /Type /Page -/Contents 5021 0 R -/Resources 5019 0 R +/Contents 5005 0 R +/Resources 5003 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4990 0 R -/Annots [ 5032 0 R 5048 0 R ] +/Parent 5002 0 R +/Annots [ 5017 0 R 5033 0 R ] >> endobj -5032 0 obj << +5017 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [222.931 515.525 255.658 524.436] +/Rect [222.931 489.622 255.658 498.533] /Subtype /Link /A << /S /GoTo /D (gloss-rdbms) >> >> endobj -5048 0 obj << +5033 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [342.364 375.052 387.195 383.963] +/Rect [342.364 349.149 387.195 358.06] /Subtype /Link /A << /S /GoTo /D (security-mysql) >> >> endobj -5022 0 obj << -/D [5020 0 R /XYZ 71.731 729.265 null] +5006 0 obj << +/D [5004 0 R /XYZ 71.731 729.265 null] >> endobj 1018 0 obj << -/D [5020 0 R /XYZ 88.939 651.05 null] +/D [5004 0 R /XYZ 88.939 651.05 null] >> endobj -4409 0 obj << -/D [5020 0 R /XYZ 71.731 640.72 null] +4393 0 obj << +/D [5004 0 R /XYZ 71.731 640.72 null] >> endobj 1022 0 obj << -/D [5020 0 R /XYZ 193.573 627.769 null] +/D [5004 0 R /XYZ 193.573 627.769 null] >> endobj -5023 0 obj << -/D [5020 0 R /XYZ 71.731 620.571 null] +5007 0 obj << +/D [5004 0 R /XYZ 71.731 620.571 null] >> endobj -5024 0 obj << -/D [5020 0 R /XYZ 71.731 615.59 null] +5008 0 obj << +/D [5004 0 R /XYZ 71.731 615.59 null] >> endobj -5025 0 obj << -/D [5020 0 R /XYZ 91.656 591.903 null] +5009 0 obj << +/D [5004 0 R /XYZ 487.065 604.855 null] >> endobj -5026 0 obj << -/D [5020 0 R /XYZ 438.655 591.903 null] +5010 0 obj << +/D [5004 0 R /XYZ 91.656 566 null] >> endobj -5027 0 obj << -/D [5020 0 R /XYZ 322.568 578.952 null] +5011 0 obj << +/D [5004 0 R /XYZ 364.962 566 null] >> endobj -5028 0 obj << -/D [5020 0 R /XYZ 447.32 578.952 null] +5012 0 obj << +/D [5004 0 R /XYZ 478.805 566 null] >> endobj -5029 0 obj << -/D [5020 0 R /XYZ 71.731 553.547 null] +5013 0 obj << +/D [5004 0 R /XYZ 154.739 553.049 null] +>> endobj +5014 0 obj << +/D [5004 0 R /XYZ 71.731 527.644 null] >> endobj 1026 0 obj << -/D [5020 0 R /XYZ 106.052 540.596 null] +/D [5004 0 R /XYZ 106.052 514.693 null] >> endobj -5030 0 obj << -/D [5020 0 R /XYZ 71.731 533.552 null] +5015 0 obj << +/D [5004 0 R /XYZ 71.731 507.649 null] >> endobj -5031 0 obj << -/D [5020 0 R /XYZ 71.731 528.571 null] +5016 0 obj << +/D [5004 0 R /XYZ 71.731 502.668 null] >> endobj -5033 0 obj << -/D [5020 0 R /XYZ 444.255 517.682 null] +5018 0 obj << +/D [5004 0 R /XYZ 444.255 491.779 null] >> endobj -5034 0 obj << -/D [5020 0 R /XYZ 71.731 502.573 null] +5019 0 obj << +/D [5004 0 R /XYZ 71.731 476.671 null] >> endobj -5035 0 obj << -/D [5020 0 R /XYZ 71.731 487.629 null] +5020 0 obj << +/D [5004 0 R /XYZ 71.731 461.727 null] >> endobj -5036 0 obj << -/D [5020 0 R /XYZ 71.731 487.629 null] +5021 0 obj << +/D [5004 0 R /XYZ 71.731 461.727 null] >> endobj -5037 0 obj << -/D [5020 0 R /XYZ 71.731 474.678 null] +5022 0 obj << +/D [5004 0 R /XYZ 71.731 448.775 null] >> endobj -5038 0 obj << -/D [5020 0 R /XYZ 111.582 458.902 null] +5023 0 obj << +/D [5004 0 R /XYZ 111.582 432.999 null] >> endobj -5039 0 obj << -/D [5020 0 R /XYZ 71.731 446.783 null] +5024 0 obj << +/D [5004 0 R /XYZ 71.731 420.88 null] >> endobj -5040 0 obj << -/D [5020 0 R /XYZ 71.731 446.783 null] +5025 0 obj << +/D [5004 0 R /XYZ 71.731 420.88 null] >> endobj -5041 0 obj << -/D [5020 0 R /XYZ 71.731 433.831 null] +5026 0 obj << +/D [5004 0 R /XYZ 71.731 407.928 null] >> endobj -5042 0 obj << -/D [5020 0 R /XYZ 111.582 418.055 null] +5027 0 obj << +/D [5004 0 R /XYZ 111.582 392.152 null] >> endobj -5043 0 obj << -/D [5020 0 R /XYZ 315.276 418.055 null] +5028 0 obj << +/D [5004 0 R /XYZ 315.276 392.152 null] >> endobj -5044 0 obj << -/D [5020 0 R /XYZ 71.731 405.936 null] +5029 0 obj << +/D [5004 0 R /XYZ 71.731 380.033 null] >> endobj -5045 0 obj << -/D [5020 0 R /XYZ 71.731 405.936 null] +5030 0 obj << +/D [5004 0 R /XYZ 71.731 380.033 null] >> endobj -5046 0 obj << -/D [5020 0 R /XYZ 71.731 392.984 null] +5031 0 obj << +/D [5004 0 R /XYZ 71.731 367.082 null] >> endobj -5047 0 obj << -/D [5020 0 R /XYZ 111.582 377.208 null] +5032 0 obj << +/D [5004 0 R /XYZ 111.582 351.306 null] >> endobj -5049 0 obj << -/D [5020 0 R /XYZ 71.731 354.294 null] +5034 0 obj << +/D [5004 0 R /XYZ 71.731 328.392 null] >> endobj 1030 0 obj << -/D [5020 0 R /XYZ 85.51 301.982 null] +/D [5004 0 R /XYZ 85.51 276.079 null] >> endobj -2476 0 obj << -/D [5020 0 R /XYZ 71.731 291.652 null] +2470 0 obj << +/D [5004 0 R /XYZ 71.731 265.749 null] >> endobj 1034 0 obj << -/D [5020 0 R /XYZ 176.696 278.701 null] +/D [5004 0 R /XYZ 176.696 252.798 null] >> endobj -5050 0 obj << -/D [5020 0 R /XYZ 71.731 271.503 null] +5035 0 obj << +/D [5004 0 R /XYZ 71.731 245.6 null] >> endobj -5051 0 obj << -/D [5020 0 R /XYZ 71.731 266.522 null] +5036 0 obj << +/D [5004 0 R /XYZ 71.731 240.619 null] >> endobj -5052 0 obj << -/D [5020 0 R /XYZ 71.731 266.522 null] +5037 0 obj << +/D [5004 0 R /XYZ 71.731 240.619 null] >> endobj -2835 0 obj << -/D [5020 0 R /XYZ 71.731 230.382 null] +2817 0 obj << +/D [5004 0 R /XYZ 71.731 204.479 null] >> endobj 1038 0 obj << -/D [5020 0 R /XYZ 109.17 217.431 null] +/D [5004 0 R /XYZ 109.17 191.528 null] >> endobj -5053 0 obj << -/D [5020 0 R /XYZ 71.731 212.325 null] +5038 0 obj << +/D [5004 0 R /XYZ 71.731 186.422 null] >> endobj -5054 0 obj << -/D [5020 0 R /XYZ 71.731 207.344 null] +5039 0 obj << +/D [5004 0 R /XYZ 71.731 181.441 null] >> endobj -5019 0 obj << +5003 0 obj << /Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F33 1210 0 R >> /ProcSet [ /PDF /Text ] >> endobj -5058 0 obj << +5043 0 obj << /Length 1292 /Filter /FlateDecode >> @@ -19262,482 +19189,480 @@ $U7 �[M��/�"�kKLx-�P�� �� .'�Nk�t�D���j��"6�NV�H�7��r-��0�k:H�^'�V��mq��&AQ��$}]�Ԃ~����Z�>[�9�?aH���+%|h%�� ��&� �:y��|« -�w��o" 㜼�q�X����ӈ�P�iK�t��{RXFRwȇ�"�%�<9�Q 6;v��'=����F?ǰ� })I�|z��֏�����=��W+����}�X�D����}NJ���`DI�~ij������hR�endstream +�w��o" 㜼�q�X����ӈ�P�iK�t��{RXFRwȇ�"�%�<9�Q 6;v��'=����F?ǰ� })I�|z��֏�����=��W+����}�X�D����}�C�Y9i���$ij�������R�endstream endobj -5057 0 obj << +5042 0 obj << /Type /Page -/Contents 5058 0 R -/Resources 5056 0 R +/Contents 5043 0 R +/Resources 5041 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4990 0 R +/Parent 5002 0 R >> endobj -5059 0 obj << -/D [5057 0 R /XYZ 71.731 729.265 null] +5044 0 obj << +/D [5042 0 R /XYZ 71.731 729.265 null] >> endobj -5060 0 obj << -/D [5057 0 R /XYZ 71.731 718.306 null] +5045 0 obj << +/D [5042 0 R /XYZ 71.731 718.306 null] >> endobj 1042 0 obj << -/D [5057 0 R /XYZ 90.261 708.344 null] +/D [5042 0 R /XYZ 90.261 708.344 null] >> endobj -5061 0 obj << -/D [5057 0 R /XYZ 71.731 703.238 null] +5046 0 obj << +/D [5042 0 R /XYZ 71.731 703.238 null] >> endobj -5062 0 obj << -/D [5057 0 R /XYZ 71.731 698.257 null] +5047 0 obj << +/D [5042 0 R /XYZ 71.731 698.257 null] >> endobj -5063 0 obj << -/D [5057 0 R /XYZ 134.824 659.527 null] +5048 0 obj << +/D [5042 0 R /XYZ 134.824 659.527 null] >> endobj -5064 0 obj << -/D [5057 0 R /XYZ 71.731 636.613 null] +5049 0 obj << +/D [5042 0 R /XYZ 71.731 636.613 null] >> endobj 1046 0 obj << -/D [5057 0 R /XYZ 87.803 584.3 null] +/D [5042 0 R /XYZ 87.803 584.3 null] >> endobj -5065 0 obj << -/D [5057 0 R /XYZ 71.731 572.897 null] +5050 0 obj << +/D [5042 0 R /XYZ 71.731 572.897 null] >> endobj 1050 0 obj << -/D [5057 0 R /XYZ 86.675 561.019 null] +/D [5042 0 R /XYZ 86.675 561.019 null] >> endobj -5066 0 obj << -/D [5057 0 R /XYZ 71.731 555.52 null] +5051 0 obj << +/D [5042 0 R /XYZ 71.731 555.52 null] >> endobj -5067 0 obj << -/D [5057 0 R /XYZ 71.731 550.539 null] +5052 0 obj << +/D [5042 0 R /XYZ 71.731 550.539 null] >> endobj -5068 0 obj << -/D [5057 0 R /XYZ 71.731 550.539 null] +5053 0 obj << +/D [5042 0 R /XYZ 71.731 550.539 null] >> endobj -5069 0 obj << -/D [5057 0 R /XYZ 119.841 538.105 null] +5054 0 obj << +/D [5042 0 R /XYZ 119.841 538.105 null] >> endobj -5070 0 obj << -/D [5057 0 R /XYZ 167.644 538.105 null] +5055 0 obj << +/D [5042 0 R /XYZ 167.644 538.105 null] >> endobj -5071 0 obj << -/D [5057 0 R /XYZ 249.411 538.105 null] +5056 0 obj << +/D [5042 0 R /XYZ 249.411 538.105 null] >> endobj -5072 0 obj << -/D [5057 0 R /XYZ 442.122 512.202 null] +5057 0 obj << +/D [5042 0 R /XYZ 442.122 512.202 null] >> endobj -5073 0 obj << -/D [5057 0 R /XYZ 71.731 476.337 null] +5058 0 obj << +/D [5042 0 R /XYZ 71.731 476.337 null] >> endobj 1054 0 obj << -/D [5057 0 R /XYZ 86.646 424.024 null] +/D [5042 0 R /XYZ 86.646 424.024 null] >> endobj -5055 0 obj << -/D [5057 0 R /XYZ 71.731 413.695 null] +5040 0 obj << +/D [5042 0 R /XYZ 71.731 413.695 null] >> endobj 1058 0 obj << -/D [5057 0 R /XYZ 263.739 400.743 null] +/D [5042 0 R /XYZ 263.739 400.743 null] >> endobj -5074 0 obj << -/D [5057 0 R /XYZ 71.731 393.545 null] +5059 0 obj << +/D [5042 0 R /XYZ 71.731 393.545 null] >> endobj -5075 0 obj << -/D [5057 0 R /XYZ 71.731 388.564 null] +5060 0 obj << +/D [5042 0 R /XYZ 71.731 388.564 null] >> endobj -5076 0 obj << -/D [5057 0 R /XYZ 71.731 339.473 null] +5061 0 obj << +/D [5042 0 R /XYZ 71.731 339.473 null] >> endobj 1062 0 obj << -/D [5057 0 R /XYZ 165.299 326.522 null] +/D [5042 0 R /XYZ 165.299 326.522 null] >> endobj -5077 0 obj << -/D [5057 0 R /XYZ 71.731 319.324 null] +5062 0 obj << +/D [5042 0 R /XYZ 71.731 319.324 null] >> endobj -5078 0 obj << -/D [5057 0 R /XYZ 71.731 314.342 null] +5063 0 obj << +/D [5042 0 R /XYZ 71.731 314.342 null] >> endobj -5079 0 obj << -/D [5057 0 R /XYZ 476.554 303.607 null] +5064 0 obj << +/D [5042 0 R /XYZ 476.554 303.607 null] >> endobj -5080 0 obj << -/D [5057 0 R /XYZ 71.731 267.742 null] +5065 0 obj << +/D [5042 0 R /XYZ 71.731 267.742 null] >> endobj 1066 0 obj << -/D [5057 0 R /XYZ 85.51 215.429 null] +/D [5042 0 R /XYZ 85.51 215.429 null] >> endobj -3302 0 obj << -/D [5057 0 R /XYZ 71.731 204.842 null] +3283 0 obj << +/D [5042 0 R /XYZ 71.731 204.842 null] >> endobj 1070 0 obj << -/D [5057 0 R /XYZ 107.277 192.148 null] +/D [5042 0 R /XYZ 107.277 192.148 null] >> endobj -5081 0 obj << -/D [5057 0 R /XYZ 71.731 187.043 null] +5066 0 obj << +/D [5042 0 R /XYZ 71.731 187.043 null] >> endobj -5082 0 obj << -/D [5057 0 R /XYZ 71.731 182.061 null] +5067 0 obj << +/D [5042 0 R /XYZ 71.731 182.061 null] >> endobj -5083 0 obj << -/D [5057 0 R /XYZ 383.963 156.283 null] +5068 0 obj << +/D [5042 0 R /XYZ 383.963 156.283 null] >> endobj -5056 0 obj << +5041 0 obj << /Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R >> /ProcSet [ /PDF /Text ] >> endobj -5086 0 obj << -/Length 1982 +5071 0 obj << +/Length 1983 /Filter /FlateDecode >> stream -xڍ]��6�=���K����ӒڧK�\��P)��h�YYԉT7ί�g(˻.,����9^E���8,RX�*Lv��>��V'8y�*f�l��<���6O��*��v���|���*�v�j��De�f�j������������%�j�$a/���}c.�� �!Iҟ�@� a��^��S�%#��8 t�џ&q�p-���(����':�JB�U�^�y���&�0�u��� ߔ��deoԡ��"j�B`CT�,E��E=�Y�� -���������U�Qa���N�GֺNv�M� -d7V -��GZ�Q�ІPdQ�� -�I��X��2i��4v~o�J�T�ꌄi���,��a����n?�u�Or<N�t쉐� ]�K��a�����r/P�]�K�P��$���A.�>�NFt9;���[��G��?PV�������"�B+��A�l��|W�8���(��?)4QR�K&�e��乄D�G��x�]�D�b�s�F�'ڠI��iT�B\ɞ�{��!�K�+&@9��D��c/}/:ћ�э&�u�B@i%Q8�F/�PN3��u�v�u w�0 � -T�$ -wy����%���"E��ts���I&e��B��r�Wye�:�x��/*M�3epr/���C{vO�o��T3�I��B���{7��ڨ�i���=��9b�m��`ϚcJ��?h�<�>ڧu]Y@�J0ځ����\��ѭ���&� dH7Cќ9ik9X�`~�ix��A���'�F��Rq��C��q�9�3���~�53�;��Z�����"�^X���t/�r-��,M�7���:A��3Y��D2��$d��0������.^<)g��%F���8(���Vp�ؑ��E>jU�>c��x�X�Ow|��Q~8�0�>9�6�`����o8�5��<���C$�M�2�TMa�w�Һ��{��g�:�o�h}��/�ɷ��TTau����� l���Z��G5�+a��ߦx��:ND@�8U�~���}C��l����[mڍ��!��^}" 0,��;y.кπr1�9_�jFh ���LC�r�ީWTT�a%c�)E�%l�H��P��$J9��cT�����q@.��HIm͑zK�6����ŠG����|�v_�~����]Eդ��O��wjҗ`�x��5>N~��8i�m� ^N����f�Ņ#�,�\��7�p�����C$g;3=:�y��u��n<��'9^ֻ<��s��r�y��Թ�v�K({�����Ƞ���<5���[�s�����ŕR��0���f6| �ߡ���$wq�����Ek*b�JZ7�$��V�`� -Ð��Ax� �GF��6W���5�p�K��9Eg�n����(��[ª�a.#W�N�.� kE�+�1���;,µu���������0�u��k����a�n ":��ɴ���݊4��!���u�B�Ǟt��e�P��*C�<P�z�� -;kп�i��X��_�vr7]>�b�;��Q���e��^�X8� -��`��a�쒚����-cZ&1�쟠l$9̭@\��{��g6t�r������͊4������1l���O!�lh�sf��|/n�hc���J�-������X.[1~{��+0��i~�31�}~%ثϒ-���\��WW7��� AX������UH��{W���zS����<;� -�r7��*2"��$.����v�Nm8�_�iI?yh�V���U\����-��Q��sY�7t�?�Jj���j19�a��:k6�+zo�M-Xt��-#.�(�a^,�d�t��f%���%D��_����d��w\�5�͢�6;�p��ߛ<��n�8�}�����Asl��מ�i�EZl(n�WaR��;ų��G]�������~�� �ʰ�����1��J�~e[�l���+�#nT�����u/Y� G�G�endstream +xڍ]��6�=���K���Y�dI��%w �����m�@˴Ŭ,�D���w�3��] X�C����,6�,�$.RXD�m��ϯ6���{�0E���"��9\�iWe�X�^x�{���D���j�.vljɦ��,[��E?�{�a���{ ,�� @"_����dF�N�Ed���2:����H�9�Nuj����� �DZ�{?��4ʓ�kYL�o%]��ѹF"����e�G�����Y&y�>0�� +џ�� +UC�Pl� +����͆��,u�^&QG���dz�ӆQ{i����}@֦Nn�U�[�$Ә#���lxhE(�(�h$�]c�1|��G@Y7�7W%�8}F�4��CiI�f� �u+��f)��I DZ%��=S��pI�<N��!�_����[!�B[z��n{��z?8��t�mh�oY����@Y!���� �Z݀�f��������a��f�R��D�Ι ��P�����iw1#�ˁ�!��;�M��O�v�JuL�1?�N�^3�%�{�{�Z�^�on4��7�H+� +����B0 +�5�_W�`�[�p�g3r�@e�x�W�P2�<!(�n���di,ʄ ����`�d)�]�уn!�M���4Mϔ�ɿP&�,��=I���ƚ�N���ػ���F�O� ��x�阈ԫ�l�{�P*tx��X�i��=-�͕�.���Ukz�n�h�6xL"C�����K[����WL��d�?�?A6�u�����[��cǑ���@�������~��j�X�n�-���u�H�{Y����R�O�u�J���j,�� ����#!S��U�����p�B�I{{O�(1�`��^�Ԉ5���@Ŗ܆/��S���S~&��|���'Џ�k�y�������"vX\��᪺F��9Q���#�>Du�_����)����Bƴ�~o��LU����9�e9��W��* �^�-0�C��5�P+"���{v%lC_���X�tˉ�#���/3P�;P{�+�>@�t��fd8�s�?��ѽ<h�g@���/C5�7h ���LK��ޫWTT�a%c�)E�#l7K��P�jJ9��cT����q@Β�H"ެ͑zK�7����Eo����|��_�~����|E5��cN��wjҗ`�y��5�>�a���8�m�^^����f�Ň#��\�6�p�����C$g;3=z�y�tu��n<��G5\��<���w�H��r�y��ԩ��K({�����ZȠU��<5���s����ŕR��p39���d��EÓ�"��I�����Yk*�JZ7���kq��G� +��qL�� ����#��V�+HЏ��Z�ɥSN�����<"2Jcjg������K`�Z�� +j�����pm���&�fi��t0L�����eSD���B����D�~� A>$pE�"�/q��F��y���#�:~�;����(��_����Mt�qs7֠䗵�M�ύ�{�N��&����e���X8v��`��a�쒚����-c&����l$9�@\��{��g6��r� ����͊4������� l���O��lh��f��|��n�hc�ݲ��B{��F,���=��/0��qz:0��~ ��g�ÃVS.�pf�� ,��A|M�*����]_�)MsS���A���F�`�Shf�s�n�&�d�/ڴ��<��+Ci�?�*.�GC���VӨ�,'�+��t%����X��Ȱʎ�����7Ҧ�,:��N��2/�qЪ;����f%���%D��_����d��w\�5�Ϣ�6;�p��ߛ<�Nn�$��}��φ�Asl��ׁ�i�E9l(n�W�(nd����Y�{�������^�{7���?�ee\&���٘b}%��6�a +)E^�b�}�*�`��ן��G�endstream endobj -5085 0 obj << +5070 0 obj << /Type /Page -/Contents 5086 0 R -/Resources 5084 0 R +/Contents 5071 0 R +/Resources 5069 0 R /MediaBox [0 0 609.714 789.041] -/Parent 4990 0 R +/Parent 5002 0 R >> endobj -5087 0 obj << -/D [5085 0 R /XYZ 71.731 729.265 null] +5072 0 obj << +/D [5070 0 R /XYZ 71.731 729.265 null] >> endobj -5088 0 obj << -/D [5085 0 R /XYZ 71.731 718.306 null] +5073 0 obj << +/D [5070 0 R /XYZ 71.731 718.306 null] >> endobj -5089 0 obj << -/D [5085 0 R /XYZ 71.731 718.306 null] +5074 0 obj << +/D [5070 0 R /XYZ 71.731 718.306 null] >> endobj 1074 0 obj << -/D [5085 0 R /XYZ 103.282 708.344 null] +/D [5070 0 R /XYZ 103.282 708.344 null] >> endobj -5090 0 obj << -/D [5085 0 R /XYZ 71.731 703.238 null] +5075 0 obj << +/D [5070 0 R /XYZ 71.731 703.238 null] >> endobj -5091 0 obj << -/D [5085 0 R /XYZ 71.731 698.257 null] +5076 0 obj << +/D [5070 0 R /XYZ 71.731 698.257 null] >> endobj -5092 0 obj << -/D [5085 0 R /XYZ 71.731 698.257 null] +5077 0 obj << +/D [5070 0 R /XYZ 71.731 698.257 null] >> endobj -5093 0 obj << -/D [5085 0 R /XYZ 166.836 685.43 null] +5078 0 obj << +/D [5070 0 R /XYZ 166.836 685.43 null] >> endobj -5094 0 obj << -/D [5085 0 R /XYZ 408.475 672.478 null] +5079 0 obj << +/D [5070 0 R /XYZ 408.475 672.478 null] >> endobj -5095 0 obj << -/D [5085 0 R /XYZ 243.467 659.527 null] +5080 0 obj << +/D [5070 0 R /XYZ 243.467 659.527 null] >> endobj -5096 0 obj << -/D [5085 0 R /XYZ 246.801 659.527 null] +5081 0 obj << +/D [5070 0 R /XYZ 246.801 659.527 null] >> endobj -5097 0 obj << -/D [5085 0 R /XYZ 298.91 659.527 null] +5082 0 obj << +/D [5070 0 R /XYZ 298.91 659.527 null] >> endobj -5098 0 obj << -/D [5085 0 R /XYZ 448.559 659.527 null] +5083 0 obj << +/D [5070 0 R /XYZ 448.559 659.527 null] >> endobj -5099 0 obj << -/D [5085 0 R /XYZ 164.884 646.575 null] +5084 0 obj << +/D [5070 0 R /XYZ 164.884 646.575 null] >> endobj -5100 0 obj << -/D [5085 0 R /XYZ 481.157 646.575 null] +5085 0 obj << +/D [5070 0 R /XYZ 481.157 646.575 null] >> endobj -5101 0 obj << -/D [5085 0 R /XYZ 132.363 633.624 null] +5086 0 obj << +/D [5070 0 R /XYZ 132.363 633.624 null] >> endobj -5102 0 obj << -/D [5085 0 R /XYZ 71.731 610.71 null] +5087 0 obj << +/D [5070 0 R /XYZ 71.731 610.71 null] >> endobj 1078 0 obj << -/D [5085 0 R /XYZ 84.353 558.397 null] +/D [5070 0 R /XYZ 84.353 558.397 null] >> endobj -5103 0 obj << -/D [5085 0 R /XYZ 71.731 548.068 null] +5088 0 obj << +/D [5070 0 R /XYZ 71.731 548.068 null] >> endobj 1082 0 obj << -/D [5085 0 R /XYZ 150.047 535.116 null] +/D [5070 0 R /XYZ 150.047 535.116 null] >> endobj -5104 0 obj << -/D [5085 0 R /XYZ 71.731 527.918 null] +5089 0 obj << +/D [5070 0 R /XYZ 71.731 527.918 null] >> endobj -5105 0 obj << -/D [5085 0 R /XYZ 71.731 522.937 null] +5090 0 obj << +/D [5070 0 R /XYZ 71.731 522.937 null] >> endobj -5106 0 obj << -/D [5085 0 R /XYZ 192.963 499.251 null] +5091 0 obj << +/D [5070 0 R /XYZ 192.963 499.251 null] >> endobj -2309 0 obj << -/D [5085 0 R /XYZ 71.731 447.943 null] +5092 0 obj << +/D [5070 0 R /XYZ 71.731 447.943 null] >> endobj 1086 0 obj << -/D [5085 0 R /XYZ 193.264 434.992 null] +/D [5070 0 R /XYZ 193.264 434.992 null] >> endobj -5107 0 obj << -/D [5085 0 R /XYZ 71.731 427.794 null] +5093 0 obj << +/D [5070 0 R /XYZ 71.731 427.794 null] >> endobj -5108 0 obj << -/D [5085 0 R /XYZ 71.731 422.813 null] +5094 0 obj << +/D [5070 0 R /XYZ 71.731 422.813 null] >> endobj -5109 0 obj << -/D [5085 0 R /XYZ 71.731 363.261 null] +5095 0 obj << +/D [5070 0 R /XYZ 71.731 363.261 null] >> endobj 1090 0 obj << -/D [5085 0 R /XYZ 84.353 310.948 null] +/D [5070 0 R /XYZ 84.353 310.948 null] >> endobj -5110 0 obj << -/D [5085 0 R /XYZ 71.731 300.619 null] +5096 0 obj << +/D [5070 0 R /XYZ 71.731 300.619 null] >> endobj 1094 0 obj << -/D [5085 0 R /XYZ 163.964 287.667 null] +/D [5070 0 R /XYZ 163.964 287.667 null] >> endobj -5111 0 obj << -/D [5085 0 R /XYZ 71.731 280.469 null] +5097 0 obj << +/D [5070 0 R /XYZ 71.731 280.469 null] >> endobj -5112 0 obj << -/D [5085 0 R /XYZ 71.731 275.488 null] +5098 0 obj << +/D [5070 0 R /XYZ 71.731 275.488 null] >> endobj -5113 0 obj << -/D [5085 0 R /XYZ 71.731 249.645 null] +5099 0 obj << +/D [5070 0 R /XYZ 71.731 249.645 null] >> endobj -5114 0 obj << -/D [5085 0 R /XYZ 71.731 239.682 null] +5100 0 obj << +/D [5070 0 R /XYZ 71.731 239.682 null] >> endobj -5115 0 obj << -/D [5085 0 R /XYZ 71.731 176.635 null] +5101 0 obj << +/D [5070 0 R /XYZ 71.731 176.635 null] >> endobj -5116 0 obj << -/D [5085 0 R /XYZ 469.856 143.607 null] +5102 0 obj << +/D [5070 0 R /XYZ 469.856 143.607 null] >> endobj -5084 0 obj << +5069 0 obj << /Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R >> /ProcSet [ /PDF /Text ] >> endobj -2518 0 obj << +2497 0 obj << /Type /Font /Subtype /Type1 /BaseFont /ZapfDingbats >> endobj -5117 0 obj << +5103 0 obj << /Type /Encoding /Differences [ 0 /.notdef 1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 10/.notdef 11/breve/minus 13/.notdef 14/Zcaron/zcaron/caron/dotlessi/dotlessj/ff/ffi/ffl 22/.notdef 30/grave/quotesingle/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 127/.notdef 128/Euro 129/.notdef 130/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 141/.notdef 147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe 157/.notdef 159/Ydieresis 160/.notdef 161/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] >> endobj -2335 0 obj << +2317 0 obj << /Type /Font /Subtype /Type1 -/Encoding 5117 0 R +/Encoding 5103 0 R /BaseFont /Courier-Bold >> endobj -2143 0 obj << +2154 0 obj << /Type /Font /Subtype /Type1 -/Encoding 5117 0 R +/Encoding 5103 0 R /BaseFont /Courier-Oblique >> endobj 1896 0 obj << /Type /Font /Subtype /Type1 -/Encoding 5117 0 R +/Encoding 5103 0 R /BaseFont /Helvetica-Oblique >> endobj 1884 0 obj << /Type /Font /Subtype /Type1 -/Encoding 5117 0 R +/Encoding 5103 0 R /BaseFont /Helvetica >> endobj 1437 0 obj << /Type /Font /Subtype /Type1 -/Encoding 5117 0 R +/Encoding 5103 0 R /BaseFont /Courier >> endobj 1210 0 obj << /Type /Font /Subtype /Type1 -/Encoding 5117 0 R +/Encoding 5103 0 R /BaseFont /Times-Italic >> endobj 1119 0 obj << /Type /Font /Subtype /Type1 -/Encoding 5117 0 R +/Encoding 5103 0 R /BaseFont /Times-Bold >> endobj 1112 0 obj << /Type /Font /Subtype /Type1 -/Encoding 5117 0 R +/Encoding 5103 0 R /BaseFont /Times-Roman >> endobj 1105 0 obj << /Type /Font /Subtype /Type1 -/Encoding 5117 0 R +/Encoding 5103 0 R /BaseFont /Helvetica-Bold >> endobj 1106 0 obj << /Type /Pages /Count 6 -/Parent 5118 0 R +/Parent 5104 0 R /Kids [1098 0 R 1108 0 R 1114 0 R 1257 0 R 1402 0 R 1543 0 R] >> endobj 1745 0 obj << /Type /Pages /Count 6 -/Parent 5118 0 R +/Parent 5104 0 R /Kids [1688 0 R 1774 0 R 1799 0 R 1826 0 R 1880 0 R 1890 0 R] >> endobj 1949 0 obj << /Type /Pages /Count 6 -/Parent 5118 0 R -/Kids [1926 0 R 1952 0 R 1989 0 R 2047 0 R 2067 0 R 2091 0 R] +/Parent 5104 0 R +/Kids [1926 0 R 1952 0 R 1988 0 R 2046 0 R 2066 0 R 2086 0 R] >> endobj -2157 0 obj << +2145 0 obj << /Type /Pages /Count 6 -/Parent 5118 0 R -/Kids [2118 0 R 2159 0 R 2203 0 R 2235 0 R 2277 0 R 2311 0 R] +/Parent 5104 0 R +/Kids [2121 0 R 2147 0 R 2195 0 R 2237 0 R 2276 0 R 2311 0 R] >> endobj 2376 0 obj << /Type /Pages /Count 6 -/Parent 5118 0 R -/Kids [2353 0 R 2378 0 R 2417 0 R 2453 0 R 2478 0 R 2495 0 R] +/Parent 5104 0 R +/Kids [2346 0 R 2378 0 R 2413 0 R 2444 0 R 2472 0 R 2504 0 R] >> endobj 2556 0 obj << /Type /Pages /Count 6 -/Parent 5118 0 R -/Kids [2541 0 R 2558 0 R 2589 0 R 2613 0 R 2642 0 R 2662 0 R] +/Parent 5104 0 R +/Kids [2535 0 R 2558 0 R 2585 0 R 2608 0 R 2635 0 R 2653 0 R] >> endobj -2704 0 obj << +2711 0 obj << /Type /Pages /Count 6 -/Parent 5119 0 R -/Kids [2674 0 R 2706 0 R 2734 0 R 2754 0 R 2789 0 R 2837 0 R] +/Parent 5105 0 R +/Kids [2687 0 R 2713 0 R 2736 0 R 2771 0 R 2819 0 R 2846 0 R] >> endobj -2910 0 obj << +2932 0 obj << /Type /Pages /Count 6 -/Parent 5119 0 R -/Kids [2864 0 R 2912 0 R 2952 0 R 2987 0 R 3030 0 R 3061 0 R] +/Parent 5105 0 R +/Kids [2893 0 R 2934 0 R 2969 0 R 3012 0 R 3043 0 R 3071 0 R] >> endobj -3129 0 obj << +3130 0 obj << /Type /Pages /Count 6 -/Parent 5119 0 R -/Kids [3089 0 R 3131 0 R 3151 0 R 3175 0 R 3199 0 R 3226 0 R] +/Parent 5105 0 R +/Kids [3109 0 R 3132 0 R 3155 0 R 3181 0 R 3202 0 R 3235 0 R] >> endobj -3272 0 obj << +3281 0 obj << /Type /Pages /Count 6 -/Parent 5119 0 R -/Kids [3256 0 R 3274 0 R 3304 0 R 3333 0 R 3415 0 R 3445 0 R] +/Parent 5105 0 R +/Kids [3254 0 R 3285 0 R 3314 0 R 3396 0 R 3426 0 R 3455 0 R] >> endobj -3499 0 obj << +3519 0 obj << /Type /Pages /Count 6 -/Parent 5119 0 R -/Kids [3474 0 R 3501 0 R 3540 0 R 3569 0 R 3600 0 R 3638 0 R] +/Parent 5105 0 R +/Kids [3481 0 R 3521 0 R 3550 0 R 3581 0 R 3619 0 R 3642 0 R] >> endobj -3680 0 obj << +3683 0 obj << /Type /Pages /Count 6 -/Parent 5119 0 R -/Kids [3661 0 R 3682 0 R 3704 0 R 3733 0 R 3737 0 R 3741 0 R] +/Parent 5105 0 R +/Kids [3662 0 R 3685 0 R 3714 0 R 3718 0 R 3722 0 R 3726 0 R] >> endobj -3760 0 obj << +3755 0 obj << /Type /Pages /Count 6 -/Parent 5120 0 R -/Kids [3745 0 R 3762 0 R 3776 0 R 3805 0 R 3864 0 R 3874 0 R] +/Parent 5106 0 R +/Kids [3742 0 R 3757 0 R 3786 0 R 3845 0 R 3855 0 R 3889 0 R] >> endobj -3927 0 obj << +3930 0 obj << /Type /Pages /Count 6 -/Parent 5120 0 R -/Kids [3908 0 R 3929 0 R 3951 0 R 3963 0 R 3983 0 R 4007 0 R] +/Parent 5106 0 R +/Kids [3909 0 R 3932 0 R 3944 0 R 3964 0 R 3988 0 R 4023 0 R] >> endobj -4057 0 obj << +4055 0 obj << /Type /Pages /Count 6 -/Parent 5120 0 R -/Kids [4042 0 R 4059 0 R 4075 0 R 4096 0 R 4113 0 R 4121 0 R] +/Parent 5106 0 R +/Kids [4039 0 R 4057 0 R 4078 0 R 4095 0 R 4103 0 R 4134 0 R] >> endobj -4180 0 obj << +4192 0 obj << /Type /Pages /Count 6 -/Parent 5120 0 R -/Kids [4152 0 R 4182 0 R 4212 0 R 4241 0 R 4267 0 R 4301 0 R] +/Parent 5106 0 R +/Kids [4163 0 R 4194 0 R 4223 0 R 4249 0 R 4283 0 R 4309 0 R] >> endobj -4357 0 obj << +4392 0 obj << /Type /Pages /Count 6 -/Parent 5120 0 R -/Kids [4327 0 R 4359 0 R 4411 0 R 4439 0 R 4476 0 R 4506 0 R] +/Parent 5106 0 R +/Kids [4342 0 R 4395 0 R 4423 0 R 4460 0 R 4490 0 R 4525 0 R] >> endobj -4551 0 obj << +4562 0 obj << /Type /Pages /Count 6 -/Parent 5120 0 R -/Kids [4541 0 R 4553 0 R 4580 0 R 4599 0 R 4618 0 R 4640 0 R] +/Parent 5106 0 R +/Kids [4536 0 R 4564 0 R 4583 0 R 4602 0 R 4624 0 R 4641 0 R] >> endobj -4700 0 obj << +4712 0 obj << /Type /Pages /Count 6 -/Parent 5121 0 R -/Kids [4657 0 R 4702 0 R 4730 0 R 4760 0 R 4789 0 R 4813 0 R] +/Parent 5107 0 R +/Kids [4685 0 R 4714 0 R 4744 0 R 4773 0 R 4797 0 R 4813 0 R] >> endobj -4839 0 obj << +4860 0 obj << /Type /Pages /Count 6 -/Parent 5121 0 R -/Kids [4829 0 R 4841 0 R 4878 0 R 4890 0 R 4903 0 R 4909 0 R] +/Parent 5107 0 R +/Kids [4824 0 R 4862 0 R 4874 0 R 4887 0 R 4893 0 R 4943 0 R] >> endobj -4990 0 obj << +5002 0 obj << /Type /Pages -/Count 5 -/Parent 5121 0 R -/Kids [4959 0 R 4992 0 R 5020 0 R 5057 0 R 5085 0 R] +/Count 4 +/Parent 5107 0 R +/Kids [4975 0 R 5004 0 R 5042 0 R 5070 0 R] >> endobj -5118 0 obj << +5104 0 obj << /Type /Pages /Count 36 -/Parent 5122 0 R -/Kids [1106 0 R 1745 0 R 1949 0 R 2157 0 R 2376 0 R 2556 0 R] +/Parent 5108 0 R +/Kids [1106 0 R 1745 0 R 1949 0 R 2145 0 R 2376 0 R 2556 0 R] >> endobj -5119 0 obj << +5105 0 obj << /Type /Pages /Count 36 -/Parent 5122 0 R -/Kids [2704 0 R 2910 0 R 3129 0 R 3272 0 R 3499 0 R 3680 0 R] +/Parent 5108 0 R +/Kids [2711 0 R 2932 0 R 3130 0 R 3281 0 R 3519 0 R 3683 0 R] >> endobj -5120 0 obj << +5106 0 obj << /Type /Pages /Count 36 -/Parent 5122 0 R -/Kids [3760 0 R 3927 0 R 4057 0 R 4180 0 R 4357 0 R 4551 0 R] +/Parent 5108 0 R +/Kids [3755 0 R 3930 0 R 4055 0 R 4192 0 R 4392 0 R 4562 0 R] >> endobj -5121 0 obj << +5107 0 obj << /Type /Pages -/Count 17 -/Parent 5122 0 R -/Kids [4700 0 R 4839 0 R 4990 0 R] +/Count 16 +/Parent 5108 0 R +/Kids [4712 0 R 4860 0 R 5002 0 R] >> endobj -5122 0 obj << +5108 0 obj << /Type /Pages -/Count 125 -/Kids [5118 0 R 5119 0 R 5120 0 R 5121 0 R] +/Count 124 +/Kids [5104 0 R 5105 0 R 5106 0 R 5107 0 R] >> endobj -5123 0 obj << +5109 0 obj << /Type /Outlines /First 3 0 R /Last 1091 0 R @@ -19751,7 +19676,7 @@ endobj 1091 0 obj << /Title 1092 0 R /A 1089 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 1079 0 R /First 1095 0 R /Last 1095 0 R @@ -19773,7 +19698,7 @@ endobj 1079 0 obj << /Title 1080 0 R /A 1077 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 1067 0 R /Next 1091 0 R /First 1083 0 R @@ -19796,7 +19721,7 @@ endobj 1067 0 obj << /Title 1068 0 R /A 1065 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 1055 0 R /Next 1079 0 R /First 1071 0 R @@ -19819,7 +19744,7 @@ endobj 1055 0 obj << /Title 1056 0 R /A 1053 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 1047 0 R /Next 1067 0 R /First 1059 0 R @@ -19834,7 +19759,7 @@ endobj 1047 0 obj << /Title 1048 0 R /A 1045 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 1031 0 R /Next 1055 0 R /First 1051 0 R @@ -19864,7 +19789,7 @@ endobj 1031 0 obj << /Title 1032 0 R /A 1029 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 1019 0 R /Next 1047 0 R /First 1035 0 R @@ -19887,7 +19812,7 @@ endobj 1019 0 obj << /Title 1020 0 R /A 1017 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 1011 0 R /Next 1031 0 R /First 1023 0 R @@ -19902,7 +19827,7 @@ endobj 1011 0 obj << /Title 1012 0 R /A 1009 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 1003 0 R /Next 1019 0 R /First 1015 0 R @@ -19917,7 +19842,7 @@ endobj 1003 0 obj << /Title 1004 0 R /A 1001 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 991 0 R /Next 1011 0 R /First 1007 0 R @@ -19940,7 +19865,7 @@ endobj 991 0 obj << /Title 992 0 R /A 989 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 971 0 R /Next 1003 0 R /First 995 0 R @@ -19977,7 +19902,7 @@ endobj 971 0 obj << /Title 972 0 R /A 969 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 955 0 R /Next 991 0 R /First 975 0 R @@ -20007,7 +19932,7 @@ endobj 955 0 obj << /Title 956 0 R /A 953 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 943 0 R /Next 971 0 R /First 959 0 R @@ -20030,7 +19955,7 @@ endobj 943 0 obj << /Title 944 0 R /A 941 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 935 0 R /Next 955 0 R /First 947 0 R @@ -20045,7 +19970,7 @@ endobj 935 0 obj << /Title 936 0 R /A 933 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 931 0 R /Next 943 0 R /First 939 0 R @@ -20055,7 +19980,7 @@ endobj 931 0 obj << /Title 932 0 R /A 929 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 879 0 R /Next 935 0 R >> endobj @@ -20144,7 +20069,7 @@ endobj 879 0 obj << /Title 880 0 R /A 877 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 863 0 R /Next 931 0 R /First 883 0 R @@ -20173,7 +20098,7 @@ endobj 863 0 obj << /Title 864 0 R /A 861 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 851 0 R /Next 879 0 R /First 867 0 R @@ -20195,7 +20120,7 @@ endobj 851 0 obj << /Title 852 0 R /A 849 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 803 0 R /Next 863 0 R /First 855 0 R @@ -20280,7 +20205,7 @@ endobj 803 0 obj << /Title 804 0 R /A 801 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 799 0 R /Next 851 0 R /First 807 0 R @@ -20290,7 +20215,7 @@ endobj 799 0 obj << /Title 800 0 R /A 797 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 639 0 R /Next 803 0 R >> endobj @@ -20576,7 +20501,7 @@ endobj 639 0 obj << /Title 640 0 R /A 637 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 559 0 R /Next 799 0 R /First 643 0 R @@ -20721,7 +20646,7 @@ endobj 559 0 obj << /Title 560 0 R /A 557 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 503 0 R /Next 639 0 R /First 563 0 R @@ -20824,7 +20749,7 @@ endobj 503 0 obj << /Title 504 0 R /A 501 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 307 0 R /Next 559 0 R /First 507 0 R @@ -21179,7 +21104,7 @@ endobj 307 0 obj << /Title 308 0 R /A 305 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 43 0 R /Next 503 0 R /First 311 0 R @@ -21283,7 +21208,7 @@ endobj /Title 252 0 R /A 249 0 R /Parent 43 0 R -/Prev 219 0 R +/Prev 215 0 R /First 255 0 R /Last 303 0 R /Count -6 @@ -21291,136 +21216,136 @@ endobj 247 0 obj << /Title 248 0 R /A 245 0 R -/Parent 219 0 R +/Parent 215 0 R /Prev 243 0 R >> endobj 243 0 obj << /Title 244 0 R /A 241 0 R -/Parent 219 0 R -/Prev 223 0 R +/Parent 215 0 R +/Prev 219 0 R /Next 247 0 R >> endobj 239 0 obj << /Title 240 0 R /A 237 0 R -/Parent 223 0 R +/Parent 219 0 R /Prev 235 0 R >> endobj 235 0 obj << /Title 236 0 R /A 233 0 R -/Parent 223 0 R +/Parent 219 0 R /Prev 231 0 R /Next 239 0 R >> endobj 231 0 obj << /Title 232 0 R /A 229 0 R -/Parent 223 0 R +/Parent 219 0 R /Prev 227 0 R /Next 235 0 R >> endobj 227 0 obj << /Title 228 0 R /A 225 0 R -/Parent 223 0 R +/Parent 219 0 R +/Prev 223 0 R /Next 231 0 R >> endobj 223 0 obj << /Title 224 0 R /A 221 0 R /Parent 219 0 R -/Next 243 0 R -/First 227 0 R -/Last 239 0 R -/Count -4 +/Next 227 0 R >> endobj 219 0 obj << /Title 220 0 R /A 217 0 R -/Parent 43 0 R -/Prev 187 0 R -/Next 251 0 R +/Parent 215 0 R +/Next 243 0 R /First 223 0 R -/Last 247 0 R -/Count -3 +/Last 239 0 R +/Count -5 >> endobj 215 0 obj << /Title 216 0 R /A 213 0 R -/Parent 187 0 R -/Prev 211 0 R +/Parent 43 0 R +/Prev 183 0 R +/Next 251 0 R +/First 219 0 R +/Last 247 0 R +/Count -3 >> endobj 211 0 obj << /Title 212 0 R /A 209 0 R -/Parent 187 0 R +/Parent 183 0 R /Prev 207 0 R -/Next 215 0 R >> endobj 207 0 obj << /Title 208 0 R /A 205 0 R -/Parent 187 0 R +/Parent 183 0 R /Prev 203 0 R /Next 211 0 R >> endobj 203 0 obj << /Title 204 0 R /A 201 0 R -/Parent 187 0 R +/Parent 183 0 R /Prev 199 0 R /Next 207 0 R >> endobj 199 0 obj << /Title 200 0 R /A 197 0 R -/Parent 187 0 R +/Parent 183 0 R /Prev 195 0 R /Next 203 0 R >> endobj 195 0 obj << /Title 196 0 R /A 193 0 R -/Parent 187 0 R +/Parent 183 0 R /Prev 191 0 R /Next 199 0 R >> endobj 191 0 obj << /Title 192 0 R /A 189 0 R -/Parent 187 0 R +/Parent 183 0 R +/Prev 187 0 R /Next 195 0 R >> endobj 187 0 obj << /Title 188 0 R /A 185 0 R -/Parent 43 0 R -/Prev 119 0 R -/Next 219 0 R -/First 191 0 R -/Last 215 0 R -/Count -7 +/Parent 183 0 R +/Next 191 0 R >> endobj 183 0 obj << /Title 184 0 R /A 181 0 R -/Parent 119 0 R -/Prev 167 0 R +/Parent 43 0 R +/Prev 119 0 R +/Next 215 0 R +/First 187 0 R +/Last 211 0 R +/Count -7 >> endobj 179 0 obj << /Title 180 0 R /A 177 0 R -/Parent 167 0 R -/Prev 175 0 R +/Parent 119 0 R +/Prev 167 0 R >> endobj 175 0 obj << /Title 176 0 R /A 173 0 R /Parent 167 0 R /Prev 171 0 R -/Next 179 0 R >> endobj 171 0 obj << /Title 172 0 R @@ -21433,10 +21358,10 @@ endobj /A 165 0 R /Parent 119 0 R /Prev 163 0 R -/Next 183 0 R +/Next 179 0 R /First 171 0 R -/Last 179 0 R -/Count -3 +/Last 175 0 R +/Count -2 >> endobj 163 0 obj << /Title 164 0 R @@ -21522,9 +21447,9 @@ endobj /A 117 0 R /Parent 43 0 R /Prev 47 0 R -/Next 187 0 R +/Next 183 0 R /First 123 0 R -/Last 183 0 R +/Last 179 0 R /Count -5 >> endobj 115 0 obj << @@ -21658,7 +21583,7 @@ endobj 43 0 obj << /Title 44 0 R /A 41 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 19 0 R /Next 307 0 R /First 47 0 R @@ -21701,7 +21626,7 @@ endobj 19 0 obj << /Title 20 0 R /A 17 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 15 0 R /Next 43 0 R /First 23 0 R @@ -21711,5190 +21636,5176 @@ endobj 15 0 obj << /Title 16 0 R /A 13 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 11 0 R /Next 19 0 R >> endobj 11 0 obj << /Title 12 0 R /A 9 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 7 0 R /Next 15 0 R >> endobj 7 0 obj << /Title 8 0 R /A 5 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Prev 3 0 R /Next 11 0 R >> endobj 3 0 obj << /Title 4 0 R /A 1 0 R -/Parent 5123 0 R +/Parent 5109 0 R /Next 7 0 R >> endobj -5124 0 obj << -/Names [(1.0) 2 0 R (10.0) 638 0 R (10.32.1) 642 0 R (10.33.1) 646 0 R (10.34.1) 650 0 R (10.35.1) 654 0 R (10.36.1) 658 0 R (10.36.63.2) 662 0 R (10.36.63.40.3) 666 0 R (10.36.63.41.3) 670 0 R (10.36.63.42.3) 674 0 R (10.37.1) 678 0 R (10.38.1) 682 0 R (10.39.1) 686 0 R (10.39.64.2) 690 0 R (10.39.65.2) 694 0 R (10.39.66.2) 698 0 R (10.39.67.2) 702 0 R (10.39.68.2) 706 0 R (10.39.69.2) 710 0 R (10.39.70.2) 714 0 R (10.40.1) 718 0 R (10.40.71.2) 722 0 R (10.40.72.2) 726 0 R (10.40.73.2) 730 0 R (10.40.74.2) 734 0 R (10.41.1) 738 0 R (10.41.75.2) 742 0 R (10.41.76.2) 746 0 R (10.41.77.2) 750 0 R (10.42.1) 754 0 R (10.42.78.2) 758 0 R (10.42.79.2) 762 0 R (10.42.79.43.3) 766 0 R (10.42.79.44.3) 770 0 R (10.43.1) 774 0 R (10.44.1) 778 0 R (10.44.80.2) 782 0 R (10.44.81.2) 786 0 R (10.44.82.2) 790 0 R (10.44.83.2) 794 0 R (100) 1867 0 R (1000) 2672 0 R (1005) 2677 0 R (1006) 2678 0 R (1008) 2679 0 R (101) 1868 0 R (1010) 2680 0 R (1011) 2681 0 R (1012) 2682 0 R (1014) 2683 0 R (1015) 2684 0 R (1016) 2685 0 R (1017) 2686 0 R (1018) 2687 0 R (1019) 2688 0 R (102) 1869 0 R (1020) 2689 0 R (1022) 2690 0 R (1023) 2691 0 R (1024) 2692 0 R (1026) 2693 0 R (1027) 2694 0 R (1028) 2695 0 R (1029) 2696 0 R (103) 1870 0 R (1031) 2697 0 R (1032) 2698 0 R (1033) 2699 0 R (1034) 2700 0 R (1035) 2701 0 R (1036) 2702 0 R (1037) 2703 0 R (1038) 2709 0 R (104) 1871 0 R (1040) 2710 0 R (1041) 2711 0 R (1042) 2712 0 R (1043) 2713 0 R (1044) 2714 0 R (1045) 2715 0 R (1047) 2716 0 R (1048) 2717 0 R (1049) 2718 0 R (105) 1872 0 R (1050) 2719 0 R (1052) 2720 0 R (1053) 2721 0 R (1054) 2722 0 R (1055) 2723 0 R (1057) 2724 0 R (1058) 2725 0 R (1059) 2726 0 R (106) 1873 0 R (1061) 2727 0 R (1062) 2728 0 R (1063) 2729 0 R (1065) 2730 0 R (1066) 2731 0 R (1067) 2732 0 R (1069) 2737 0 R (107) 1874 0 R (1070) 2738 0 R (1071) 2739 0 R (1072) 2740 0 R (1073) 2741 0 R (1074) 2742 0 R (1076) 2743 0 R (1077) 2744 0 R (1078) 2745 0 R (1079) 2746 0 R (108) 1875 0 R (1081) 2747 0 R (1082) 2748 0 R (1083) 2749 0 R (1088) 2750 0 R (1089) 2751 0 R (1090) 2752 0 R (1095) 2757 0 R (1096) 2758 0 R (1097) 2759 0 R (1098) 2760 0 R (1099) 2761 0 R (11.0) 798 0 R (1100) 2762 0 R (1101) 2763 0 R (1102) 2764 0 R (1103) 2765 0 R (1104) 2766 0 R (1107) 2767 0 R (1108) 2768 0 R (1109) 2769 0 R (111) 1876 0 R (1110) 2770 0 R (1111) 2771 0 R (1112) 2772 0 R (1113) 2773 0 R (1114) 2774 0 R (1115) 2775 0 R (1116) 2776 0 R (1117) 2777 0 R (1118) 2778 0 R (1119) 2779 0 R (1120) 2780 0 R (1121) 2781 0 R (1122) 2782 0 R (1123) 2783 0 R (1124) 2784 0 R (1125) 2785 0 R (1126) 2786 0 R (1127) 2787 0 R (1128) 2793 0 R (1129) 2794 0 R (113) 1877 0 R (1130) 2795 0 R (1131) 2796 0 R (1132) 2797 0 R (1133) 2798 0 R (1134) 2799 0 R (1135) 2800 0 R (1136) 2801 0 R (1137) 2802 0 R (1138) 2803 0 R (1139) 2804 0 R (114) 1878 0 R (1140) 2805 0 R (1141) 2806 0 R (1142) 2807 0 R (1143) 2808 0 R (1144) 2809 0 R (1145) 2810 0 R (1146) 2811 0 R (1147) 2812 0 R (1148) 2813 0 R (1149) 2814 0 R (115) 1828 0 R (1150) 2815 0 R (1151) 2816 0 R (1152) 2817 0 R (1153) 2818 0 R (1154) 2819 0 R (1155) 2820 0 R (1156) 2821 0 R (1157) 2822 0 R (1158) 2823 0 R (1159) 2824 0 R (1162) 2825 0 R (1164) 2827 0 R (1165) 2828 0 R (1166) 2829 0 R (1167) 2830 0 R (1168) 2831 0 R (1169) 2832 0 R (1170) 2833 0 R (1171) 2834 0 R (1172) 2840 0 R (1173) 2792 0 R (1176) 2841 0 R (1177) 2842 0 R (1178) 2843 0 R (1179) 2844 0 R (1180) 2845 0 R (1181) 2846 0 R (1182) 2847 0 R (1183) 2848 0 R (1184) 2849 0 R (1185) 2850 0 R (1186) 2851 0 R (1189) 2852 0 R (1190) 2853 0 R (1191) 2854 0 R (1192) 2855 0 R (1193) 2856 0 R (1194) 2857 0 R (1195) 2858 0 R (1196) 2859 0 R (1197) 2860 0 R (12.0) 802 0 R (12.45.1) 806 0 R (12.46.1) 810 0 R (12.47.1) 814 0 R (12.48.1) 818 0 R (12.49.1) 822 0 R (12.50.1) 826 0 R (12.51.1) 830 0 R (12.52.1) 834 0 R (12.53.1) 838 0 R (12.54.1) 842 0 R (12.55.1) 846 0 R (1200) 2861 0 R (1201) 2862 0 R (1202) 2868 0 R (1203) 2869 0 R (1204) 2870 0 R (1205) 2871 0 R (1206) 2872 0 R (1207) 2873 0 R (1208) 2874 0 R (1209) 2875 0 R (1210) 2876 0 R (1211) 2877 0 R (1212) 2878 0 R (1215) 2879 0 R (1216) 2880 0 R (1217) 2881 0 R (1218) 2882 0 R (1221) 2883 0 R (1222) 2884 0 R (1223) 2885 0 R (1224) 2886 0 R (1225) 2887 0 R (1226) 2888 0 R (1227) 2889 0 R (1228) 2890 0 R (1229) 2891 0 R (1230) 2892 0 R (1231) 2893 0 R (1232) 2894 0 R (1233) 2895 0 R (1234) 2896 0 R (1235) 2897 0 R (1236) 2898 0 R (1237) 2899 0 R (1238) 2900 0 R (1239) 2901 0 R (1240) 2902 0 R (1241) 2903 0 R (1242) 2904 0 R (1243) 2905 0 R (1244) 2906 0 R (1245) 2907 0 R (1246) 2908 0 R (1247) 2909 0 R (1252) 2915 0 R (1253) 2916 0 R (1255) 2917 0 R (1256) 2918 0 R (1257) 2919 0 R (1258) 2920 0 R (1260) 2867 0 R (1262) 2921 0 R (1263) 2922 0 R (1264) 2923 0 R (1266) 2924 0 R (1267) 2925 0 R (1268) 2926 0 R (1269) 2927 0 R (1270) 2928 0 R (1271) 2929 0 R (1272) 2930 0 R (1275) 2931 0 R (1276) 2932 0 R (1277) 2933 0 R (1278) 2934 0 R (1279) 2935 0 R (1280) 2936 0 R (1281) 2937 0 R (1282) 2938 0 R (1283) 2939 0 R (1284) 2940 0 R (1285) 2941 0 R (1288) 2942 0 R (1291) 2943 0 R (1292) 2944 0 R (1293) 2945 0 R (1294) 2946 0 R (1295) 2947 0 R (1296) 2948 0 R (1297) 2949 0 R (1298) 2950 0 R (1299) 2956 0 R (13.0) 850 0 R (13.56.1) 854 0 R (13.57.1) 858 0 R (1300) 2957 0 R (1301) 2958 0 R (1302) 2959 0 R (1303) 2960 0 R (1304) 2961 0 R (1307) 2962 0 R (1308) 2963 0 R (1309) 2964 0 R (1310) 2965 0 R (1311) 2966 0 R (1314) 2967 0 R (1315) 2968 0 R (1316) 2969 0 R (1317) 2970 0 R (1318) 2971 0 R (1321) 2972 0 R (1322) 2973 0 R (1325) 2975 0 R (1328) 2977 0 R (1331) 2979 0 R (1332) 2980 0 R (1333) 2981 0 R (1334) 2982 0 R (1335) 2983 0 R (1336) 2984 0 R (1337) 2985 0 R (1338) 2990 0 R (1339) 2991 0 R (1340) 2992 0 R (1341) 2993 0 R (1342) 2955 0 R (1344) 2994 0 R (1345) 2995 0 R (1346) 2996 0 R (1347) 2997 0 R (1348) 2998 0 R (1349) 2999 0 R (1350) 3000 0 R (1351) 3001 0 R (1352) 3002 0 R (1353) 3003 0 R (1354) 3004 0 R (1355) 3005 0 R (1356) 3006 0 R (1357) 3007 0 R (1358) 3008 0 R (1359) 3009 0 R (1360) 3010 0 R (1361) 3011 0 R (1364) 3013 0 R (1365) 3014 0 R (1366) 3015 0 R (1369) 3017 0 R (1370) 3018 0 R (1373) 3020 0 R (1374) 3021 0 R (1375) 3022 0 R (1376) 3023 0 R (1377) 3024 0 R (1378) 3025 0 R (1381) 3027 0 R (1384) 3033 0 R (1385) 3034 0 R (1388) 3036 0 R (1389) 3037 0 R (1390) 3038 0 R (1391) 3039 0 R (1394) 3040 0 R (1395) 3041 0 R (1396) 3042 0 R (1397) 3043 0 R (1398) 3044 0 R (1399) 3045 0 R (14.0) 862 0 R (14.58.1) 866 0 R (14.59.1) 870 0 R (14.60.1) 874 0 R (1400) 3046 0 R (1401) 3047 0 R (1404) 3048 0 R (1405) 3049 0 R (1406) 3050 0 R (1409) 3051 0 R (1410) 3052 0 R (1411) 3053 0 R (1412) 3054 0 R (1413) 3055 0 R (1414) 3056 0 R (1415) 3057 0 R (1416) 3058 0 R (1417) 3059 0 R (1418) 3064 0 R (1419) 3065 0 R (1420) 3066 0 R (1421) 3067 0 R (1422) 3068 0 R (1423) 3069 0 R (1424) 3070 0 R (1427) 3071 0 R (1428) 3072 0 R (1429) 3073 0 R (1430) 3074 0 R (1431) 3075 0 R (1432) 3076 0 R (1435) 3077 0 R (1436) 3078 0 R (1437) 3079 0 R (1438) 3080 0 R (1439) 3081 0 R (1440) 3082 0 R (1441) 3083 0 R (1442) 3084 0 R (1443) 3085 0 R (1444) 3086 0 R (1445) 3087 0 R (1446) 1398 0 R (1448) 3092 0 R (1449) 3093 0 R (1450) 3094 0 R (1451) 3095 0 R (1452) 3096 0 R (1453) 3097 0 R (1454) 3098 0 R (1455) 3099 0 R (1456) 3100 0 R (1457) 3101 0 R (1458) 3102 0 R (1459) 3103 0 R (1460) 3104 0 R (1461) 3105 0 R (1462) 3106 0 R (1463) 3107 0 R (1464) 3108 0 R (1465) 3109 0 R (1466) 3110 0 R (1467) 3111 0 R (1468) 3112 0 R (1469) 3113 0 R (1470) 3114 0 R (1471) 3115 0 R (1472) 3116 0 R (1473) 1399 0 R (1475) 3117 0 R (1476) 3118 0 R (1477) 3119 0 R (1478) 3120 0 R (1479) 3121 0 R (1480) 3122 0 R (1481) 3123 0 R (1482) 3124 0 R (1483) 1400 0 R (1485) 3125 0 R (1486) 3126 0 R (1487) 3127 0 R (1488) 3128 0 R (1489) 3134 0 R (1490) 3135 0 R (1491) 3136 0 R (1492) 3137 0 R (1493) 3138 0 R (1494) 3139 0 R (1495) 3140 0 R (1496) 3141 0 R (1497) 3142 0 R (1498) 3143 0 R (1499) 3144 0 R (15.0) 878 0 R (15.61.1) 882 0 R (15.62.1) 886 0 R (15.63.1) 890 0 R (15.64.1) 894 0 R (15.65.1) 898 0 R (15.66.1) 902 0 R (15.67.1) 906 0 R (15.68.1) 910 0 R (15.69.1) 914 0 R (15.70.1) 918 0 R (15.71.1) 922 0 R (15.72.1) 926 0 R (1500) 3145 0 R (1501) 1497 0 R (1503) 1498 0 R (1505) 3146 0 R (1506) 3147 0 R (1507) 1499 0 R (1509) 3148 0 R (1510) 3149 0 R (1511) 1500 0 R (1513) 3155 0 R (1514) 3156 0 R (1515) 3157 0 R (1516) 3158 0 R (1517) 3159 0 R (1518) 3160 0 R (1519) 3161 0 R (1520) 3162 0 R (1521) 3163 0 R (1522) 3164 0 R (1523) 3165 0 R (1524) 3166 0 R (1527) 3167 0 R (1528) 3168 0 R (1529) 3169 0 R (1530) 3170 0 R (1531) 3171 0 R (1532) 3172 0 R (1535) 3173 0 R (1536) 3154 0 R (1537) 3178 0 R (1538) 3179 0 R (1539) 3180 0 R (1540) 3181 0 R (1543) 3182 0 R (1544) 3183 0 R (1545) 3184 0 R (1546) 3185 0 R (1548) 3187 0 R (1549) 3188 0 R (1551) 3190 0 R (1552) 3191 0 R (1554) 3193 0 R (1556) 3195 0 R (1557) 3196 0 R (1558) 3197 0 R (1559) 3202 0 R (1560) 3203 0 R (1563) 3204 0 R (1564) 3205 0 R (1565) 3206 0 R (1566) 3207 0 R (1567) 3208 0 R (1568) 3209 0 R (1569) 3210 0 R (1570) 3211 0 R (1571) 3212 0 R (1572) 3213 0 R (1573) 3214 0 R (1574) 3215 0 R (1575) 3216 0 R (1576) 3217 0 R (1579) 3218 0 R (1580) 3219 0 R (1581) 3220 0 R (1582) 3221 0 R (1583) 3222 0 R (1584) 3223 0 R (1585) 3224 0 R (1586) 3229 0 R (1587) 3230 0 R (1588) 3231 0 R (1589) 3232 0 R (1590) 3233 0 R (1591) 3234 0 R (1592) 3235 0 R (1593) 3236 0 R (1594) 3237 0 R (1595) 3238 0 R (1596) 3239 0 R (1597) 3240 0 R (1598) 3241 0 R (1599) 3242 0 R (16.0) 930 0 R (1602) 3243 0 R (1603) 3244 0 R (1604) 3245 0 R (1605) 3246 0 R (1606) 3247 0 R (1607) 3248 0 R (1608) 3249 0 R (1609) 3250 0 R (1610) 3251 0 R (1611) 3252 0 R (1612) 3253 0 R (1613) 3254 0 R (1614) 3259 0 R (1615) 3260 0 R (1619) 3262 0 R (1620) 3263 0 R (1621) 3264 0 R (1622) 3265 0 R (1623) 3266 0 R (1624) 3267 0 R (1625) 3268 0 R (1626) 3269 0 R (1627) 3270 0 R (1628) 3271 0 R (1631) 3277 0 R (1632) 3278 0 R (1633) 3279 0 R (1638) 3280 0 R (1641) 3281 0 R (1643) 3283 0 R (1644) 3284 0 R (1645) 3285 0 R (1646) 3286 0 R (1648) 3288 0 R (1649) 3289 0 R (1650) 3290 0 R (1651) 3291 0 R (1652) 3292 0 R (1653) 3293 0 R (1654) 3294 0 R (1655) 3295 0 R (1656) 3296 0 R (1657) 3297 0 R (1658) 3298 0 R (1662) 3299 0 R (1663) 3300 0 R (1668) 3307 0 R (1674) 3309 0 R (1675) 3310 0 R (1676) 3311 0 R (1677) 3312 0 R (1681) 3313 0 R (1682) 3314 0 R (1683) 3315 0 R (1684) 3316 0 R (1685) 3317 0 R (1689) 3318 0 R (1690) 3319 0 R (1692) 3320 0 R (1693) 3321 0 R (1694) 3322 0 R (1695) 3323 0 R (1696) 3324 0 R (1697) 3325 0 R (17.0) 934 0 R (17.72.84.2) 938 0 R (1702) 3327 0 R (1706) 3329 0 R (1707) 3330 0 R (1708) 3331 0 R (1713) 3336 0 R (1714) 3337 0 R (1715) 3338 0 R (1716) 3339 0 R (1720) 3342 0 R (1721) 3343 0 R (1722) 3344 0 R (1723) 3345 0 R (1724) 3346 0 R (1725) 3347 0 R (1727) 3348 0 R (1728) 3349 0 R (1729) 3350 0 R (1730) 3351 0 R (1731) 3352 0 R (1732) 3353 0 R (1734) 3354 0 R (1735) 3355 0 R (1736) 3356 0 R (1737) 3357 0 R (1738) 3358 0 R (1739) 3359 0 R (1740) 3360 0 R (1741) 3361 0 R (1742) 3362 0 R (1743) 3363 0 R (1744) 3364 0 R (1745) 3365 0 R (1747) 3366 0 R (1748) 3367 0 R (1749) 3368 0 R (1750) 3369 0 R (1751) 3370 0 R (1752) 3371 0 R (1753) 3372 0 R (1754) 3373 0 R (1755) 3374 0 R (1756) 3375 0 R (1757) 3376 0 R (1758) 3377 0 R (1759) 3378 0 R (176) 1886 0 R (1761) 3379 0 R (1762) 3380 0 R (1763) 3381 0 R (1764) 3382 0 R (1765) 3383 0 R (1766) 3384 0 R (1767) 3385 0 R (1768) 3386 0 R (1769) 3387 0 R (177) 1887 0 R (1771) 3388 0 R (1772) 3389 0 R (1773) 3390 0 R (1774) 3391 0 R (1775) 3392 0 R (1776) 3393 0 R (1777) 3394 0 R (1778) 3395 0 R (1779) 3396 0 R (1780) 3397 0 R (1781) 3398 0 R (1782) 3399 0 R (1783) 3400 0 R (1784) 3401 0 R (1785) 3402 0 R (1786) 3403 0 R (1787) 3404 0 R (1788) 3405 0 R (1789) 3406 0 R (1790) 3407 0 R (1791) 3408 0 R (1792) 3409 0 R (1793) 3410 0 R (1794) 3411 0 R (1795) 3412 0 R (1796) 3418 0 R (1797) 3419 0 R (1798) 3420 0 R (1799) 3421 0 R (18.0) 942 0 R (18.72.85.2) 946 0 R (18.72.85.45.3) 950 0 R (1800) 3422 0 R (1801) 3423 0 R (1802) 3424 0 R (1803) 3425 0 R (1804) 3426 0 R (1809) 3428 0 R (1810) 3429 0 R (1811) 3430 0 R (1813) 3432 0 R (1814) 3433 0 R (1815) 3434 0 R (1816) 3435 0 R (182) 1892 0 R (1821) 3436 0 R (1822) 3437 0 R (1826) 3439 0 R (1827) 3440 0 R (1828) 3441 0 R (1829) 3442 0 R (183) 1893 0 R (1834) 3448 0 R (1835) 3449 0 R (1839) 3451 0 R (184) 1894 0 R (1840) 3452 0 R (1841) 3453 0 R (1842) 3454 0 R (1843) 3455 0 R (1844) 3456 0 R (1845) 3457 0 R (1846) 3458 0 R (1847) 3459 0 R (1848) 3460 0 R (185) 1897 0 R (1851) 3461 0 R (1852) 3462 0 R (1853) 3463 0 R (1854) 3464 0 R (1855) 3465 0 R (1856) 3466 0 R (1857) 3467 0 R (1858) 3468 0 R (1859) 3469 0 R (1860) 3470 0 R (1861) 3471 0 R (1862) 3472 0 R (1863) 3477 0 R (1864) 3478 0 R (1865) 3479 0 R (1866) 3480 0 R (1867) 3481 0 R (1868) 3482 0 R (1869) 3483 0 R (187) 1900 0 R (1870) 3484 0 R (1871) 3485 0 R (1872) 3486 0 R (1873) 3487 0 R (1874) 3488 0 R (1877) 3489 0 R (1878) 3490 0 R (1879) 3491 0 R (188) 1901 0 R (1880) 3492 0 R (1881) 3493 0 R (1882) 3494 0 R (1883) 3495 0 R (1884) 3496 0 R (1885) 3497 0 R (1886) 3498 0 R (1889) 3504 0 R (189) 1902 0 R (1890) 3505 0 R (1891) 3506 0 R (1892) 3507 0 R (1893) 3508 0 R (1894) 3509 0 R (1895) 3510 0 R (1896) 3511 0 R (1897) 3512 0 R (1898) 3513 0 R (1899) 3514 0 R (19.0) 954 0 R (19.72.86.2) 958 0 R (19.72.87.2) 962 0 R (19.72.88.2) 966 0 R (190) 1903 0 R (1900) 3515 0 R (1901) 3516 0 R (1902) 3517 0 R (1903) 3518 0 R (1904) 3519 0 R (1905) 3520 0 R (1908) 3521 0 R (1909) 3522 0 R (191) 1904 0 R (1910) 3523 0 R (1911) 3524 0 R (1912) 3525 0 R (1913) 3526 0 R (1914) 3527 0 R (1915) 3528 0 R (1916) 3529 0 R (1917) 3530 0 R (1918) 3531 0 R (1919) 3532 0 R (192) 1905 0 R (1920) 3533 0 R (1921) 3534 0 R (1922) 3535 0 R (1923) 3536 0 R (1924) 3537 0 R (1925) 3538 0 R (1926) 3543 0 R (1927) 3544 0 R (1928) 3545 0 R (1929) 3546 0 R (193) 1906 0 R (1930) 3547 0 R (1931) 3548 0 R (1932) 3549 0 R (1933) 3550 0 R (1934) 3551 0 R (1935) 3552 0 R (1936) 3553 0 R (1937) 3554 0 R (1938) 3555 0 R (1939) 3556 0 R (194) 1907 0 R (1940) 3557 0 R (1941) 3558 0 R (1942) 3559 0 R (1943) 3560 0 R (1944) 3561 0 R (1945) 3562 0 R (1946) 3563 0 R (1947) 3564 0 R (1948) 3565 0 R (1949) 3566 0 R (195) 1908 0 R (1950) 3567 0 R (1953) 3572 0 R (1954) 3573 0 R (1955) 3574 0 R (1956) 3575 0 R (1957) 3576 0 R (1958) 3577 0 R (1959) 3578 0 R (1962) 3579 0 R (1963) 3580 0 R (1964) 3581 0 R (1965) 3582 0 R (1966) 3583 0 R (1967) 3584 0 R (1968) 3585 0 R (1969) 3586 0 R (1970) 3587 0 R (1971) 3588 0 R (1972) 3589 0 R (1973) 3590 0 R (1974) 3591 0 R (1975) 3592 0 R (1976) 3593 0 R (1977) 3594 0 R (1978) 3595 0 R (1979) 3596 0 R (198) 1910 0 R (1984) 3598 0 R (1985) 3603 0 R (1986) 3604 0 R (1987) 3605 0 R (1988) 3606 0 R (1989) 3607 0 R (1990) 3608 0 R (1991) 3609 0 R (1992) 3610 0 R (1993) 3611 0 R (1994) 3612 0 R (1995) 3613 0 R (1996) 3614 0 R (1997) 3615 0 R (1998) 3616 0 R (1999) 3617 0 R (2.0) 6 0 R (20.0) 970 0 R (20.72.89.2) 974 0 R (20.72.90.2) 978 0 R (20.72.91.2) 982 0 R (20.72.92.2) 986 0 R (2000) 3618 0 R (2001) 3619 0 R (2002) 3620 0 R (2003) 3621 0 R (2004) 3622 0 R (2005) 3623 0 R (2006) 3624 0 R (2007) 3625 0 R (2008) 3626 0 R (2009) 3627 0 R (201) 1912 0 R (2010) 3628 0 R (2011) 3629 0 R (2012) 3630 0 R (2013) 3631 0 R (2014) 3632 0 R (2015) 3633 0 R (2016) 3634 0 R (2017) 3635 0 R (2018) 3636 0 R (2019) 3642 0 R (2020) 3643 0 R (2021) 3644 0 R (2022) 3645 0 R (2023) 3646 0 R (2024) 3647 0 R (2027) 3648 0 R (2028) 3649 0 R (2029) 3650 0 R (2030) 3651 0 R (2031) 3652 0 R (2032) 3653 0 R (2033) 3654 0 R (2034) 3655 0 R (2035) 3656 0 R (2036) 3657 0 R (2037) 3658 0 R (2038) 3659 0 R (2039) 3664 0 R (204) 1914 0 R (2040) 3641 0 R (2041) 3665 0 R (2042) 3666 0 R (2043) 3667 0 R (2044) 3668 0 R (2045) 3669 0 R (2046) 3670 0 R (2047) 3671 0 R (2048) 3672 0 R (2051) 3673 0 R (2052) 3674 0 R (2053) 3675 0 R (2054) 3676 0 R (2055) 3677 0 R (2056) 3678 0 R (2057) 3679 0 R (2058) 3686 0 R (2059) 3687 0 R (2062) 3688 0 R (2063) 3689 0 R (2064) 3690 0 R (2065) 3691 0 R (2066) 3692 0 R (2067) 3693 0 R (2068) 3694 0 R (2069) 3695 0 R (207) 1916 0 R (2070) 1534 0 R (2072) 3696 0 R (2073) 3697 0 R (2074) 3698 0 R (2075) 3699 0 R (2076) 3700 0 R (2077) 3701 0 R (2078) 3702 0 R (2079) 3708 0 R (2080) 3685 0 R (2082) 3709 0 R (2083) 3710 0 R (2084) 3711 0 R (2085) 3712 0 R (2086) 3713 0 R (2087) 3714 0 R (2088) 3715 0 R (2089) 3716 0 R (2090) 3717 0 R (2091) 3718 0 R (2092) 3719 0 R (2093) 3720 0 R (2094) 3721 0 R (2095) 3722 0 R (2096) 3723 0 R (2097) 1535 0 R (2099) 3724 0 R (21.0) 990 0 R (21.72.93.2) 994 0 R (21.72.94.2) 998 0 R (210) 1918 0 R (2100) 3725 0 R (2101) 3726 0 R (2102) 3727 0 R (2103) 3728 0 R (2104) 3729 0 R (2105) 3730 0 R (2106) 3731 0 R (2107) 3707 0 R (2112) 3748 0 R (2117) 3752 0 R (2118) 3753 0 R (2119) 3754 0 R (2120) 3755 0 R (2121) 3756 0 R (2122) 3757 0 R (2123) 3758 0 R (2124) 3759 0 R (2127) 3765 0 R (2128) 3766 0 R (2129) 3767 0 R (213) 1920 0 R (2130) 3768 0 R (2131) 3769 0 R (2134) 3770 0 R (2135) 3771 0 R (2138) 3772 0 R (2139) 3773 0 R (2140) 3774 0 R (2145) 3779 0 R (2146) 3780 0 R (2149) 3781 0 R (2150) 3782 0 R (2151) 3783 0 R (2152) 3784 0 R (2153) 3785 0 R (2154) 3786 0 R (2155) 3787 0 R (2156) 3788 0 R (2157) 3789 0 R (2158) 3790 0 R (2159) 3791 0 R (2160) 3792 0 R (2161) 3793 0 R (2162) 3794 0 R (2165) 3795 0 R (2166) 3796 0 R (2167) 3797 0 R (2168) 3798 0 R (2169) 3799 0 R (217) 1921 0 R (2170) 3800 0 R (2171) 3801 0 R (218) 1922 0 R (219) 1923 0 R (2192) 3808 0 R (2193) 3809 0 R (2194) 3810 0 R (2195) 3811 0 R (2196) 3812 0 R (2197) 3813 0 R (2198) 3814 0 R (2199) 3815 0 R (22.0) 1002 0 R (22.72.95.2) 1006 0 R (220) 1924 0 R (2200) 3816 0 R (2201) 3817 0 R (2202) 3818 0 R (2203) 3819 0 R (2204) 3820 0 R (2205) 3821 0 R (2206) 3822 0 R (2207) 3823 0 R (2208) 3824 0 R (2209) 3825 0 R (2210) 3826 0 R (2211) 3827 0 R (2212) 3828 0 R (2213) 3829 0 R (2214) 3830 0 R (2215) 3831 0 R (2216) 3832 0 R (2217) 3833 0 R (2218) 3834 0 R (2219) 3835 0 R (2220) 3836 0 R (2221) 3837 0 R (2222) 3838 0 R (2223) 3839 0 R (2224) 3840 0 R (2225) 3841 0 R (2226) 3842 0 R (2227) 3843 0 R (2228) 3844 0 R (2229) 3845 0 R (223) 1928 0 R (2230) 3846 0 R (2231) 3847 0 R (2232) 3848 0 R (2233) 3849 0 R (2234) 3850 0 R (2235) 3851 0 R (2236) 3852 0 R (2237) 3853 0 R (2238) 3854 0 R (2239) 3855 0 R (2240) 3856 0 R (2241) 3857 0 R (2242) 3858 0 R (2245) 3859 0 R (2247) 3861 0 R (2248) 3862 0 R (2251) 3867 0 R (2256) 3868 0 R (2257) 3869 0 R (2258) 3870 0 R (2259) 3871 0 R (226) 1929 0 R (2262) 3872 0 R (2263) 3877 0 R (2264) 3878 0 R (2265) 3879 0 R (2266) 3880 0 R (2267) 3881 0 R (2268) 3882 0 R (2269) 3883 0 R (227) 1930 0 R (2270) 3884 0 R (2271) 3885 0 R (2272) 3886 0 R (2273) 3887 0 R (2274) 3888 0 R (2275) 3889 0 R (2276) 3890 0 R (2277) 3891 0 R (2278) 3892 0 R (228) 1931 0 R (2281) 3893 0 R (2284) 3894 0 R (2285) 3895 0 R (2286) 3896 0 R (2287) 3897 0 R (2288) 3898 0 R (2289) 3899 0 R (229) 1932 0 R (2290) 3900 0 R (2291) 3901 0 R (2292) 3902 0 R (2293) 3903 0 R (2294) 3904 0 R (2295) 3905 0 R (2296) 3906 0 R (2299) 3911 0 R (23.0) 1010 0 R (23.72.96.2) 1014 0 R (230) 1933 0 R (2300) 3912 0 R (2301) 3913 0 R (2302) 3914 0 R (2303) 3915 0 R (2304) 3916 0 R (2307) 3917 0 R (2308) 3918 0 R (2309) 3919 0 R (231) 1934 0 R (232) 1935 0 R (2328) 3921 0 R (233) 1936 0 R (2331) 3922 0 R (2332) 3923 0 R (2333) 3924 0 R (2334) 3925 0 R (2335) 3926 0 R (2336) 3932 0 R (2337) 3933 0 R (2338) 3934 0 R (2339) 3935 0 R (234) 1937 0 R (2340) 3936 0 R (2341) 3937 0 R (2342) 3938 0 R (2343) 3939 0 R (2344) 3940 0 R (2345) 3941 0 R (2346) 3942 0 R (2347) 3943 0 R (2350) 3944 0 R (2351) 3945 0 R (2352) 3946 0 R (2362) 3948 0 R (2365) 3949 0 R (2368) 3954 0 R (237) 1938 0 R (2371) 3955 0 R (2374) 3956 0 R (2377) 3957 0 R (2378) 3958 0 R (238) 1939 0 R (2381) 3959 0 R (2384) 3960 0 R (2385) 1661 0 R (2387) 3961 0 R (2388) 3966 0 R (2389) 3967 0 R (239) 1940 0 R (2398) 3969 0 R (24) 1801 0 R (24.0) 1018 0 R (24.72.97.2) 1022 0 R (24.72.98.2) 1026 0 R (240) 1941 0 R (2401) 3970 0 R (2402) 3971 0 R (2403) 3972 0 R (2404) 3973 0 R (2405) 3974 0 R (2408) 3975 0 R (2409) 3976 0 R (241) 1942 0 R (2412) 3977 0 R (2413) 3978 0 R (2414) 3979 0 R (2415) 3980 0 R (2416) 3981 0 R (2417) 3986 0 R (2420) 3987 0 R (2423) 3988 0 R (2424) 3989 0 R (2425) 3990 0 R (2428) 3991 0 R (2429) 3992 0 R (2430) 3993 0 R (2431) 3994 0 R (2432) 3995 0 R (2433) 3996 0 R (2434) 3997 0 R (2435) 3998 0 R (2436) 3999 0 R (2437) 4000 0 R (2438) 4001 0 R (2439) 4002 0 R (244) 1943 0 R (2440) 4003 0 R (2441) 4004 0 R (2442) 4005 0 R (2443) 4011 0 R (2444) 4012 0 R (2445) 4013 0 R (2446) 4014 0 R (2447) 4015 0 R (2448) 4016 0 R (2449) 4017 0 R (245) 1944 0 R (2450) 4018 0 R (2451) 4019 0 R (2452) 4020 0 R (2453) 4021 0 R (2454) 4022 0 R (2455) 4023 0 R (2456) 4024 0 R (2457) 4025 0 R (2458) 4026 0 R (2459) 4027 0 R (2460) 4028 0 R (2461) 4029 0 R (2462) 4030 0 R (2463) 4031 0 R (2464) 4032 0 R (2465) 4033 0 R (2466) 4034 0 R (2467) 4035 0 R (2468) 4036 0 R (2469) 4037 0 R (247) 1946 0 R (2470) 4038 0 R (2473) 4039 0 R (2476) 4040 0 R (2479) 4046 0 R (248) 1947 0 R (2480) 4010 0 R (2481) 4047 0 R (2482) 4048 0 R (2483) 4049 0 R (2486) 4050 0 R (2487) 4051 0 R (2488) 4052 0 R (2489) 4053 0 R (249) 1948 0 R (2490) 4054 0 R (2491) 4055 0 R (2492) 1672 0 R (2494) 4056 0 R (2495) 4062 0 R (2496) 4045 0 R (2497) 4063 0 R (2498) 4064 0 R (2499) 1673 0 R (25) 1802 0 R (25.0) 1030 0 R (25.72.100.2) 1038 0 R (25.72.101.2) 1042 0 R (25.72.99.2) 1034 0 R (2501) 4065 0 R (2502) 4066 0 R (2505) 4067 0 R (2506) 4068 0 R (2507) 4069 0 R (2508) 4070 0 R (2509) 4071 0 R (2510) 4072 0 R (2511) 4073 0 R (2514) 4079 0 R (2515) 4080 0 R (2516) 4081 0 R (2517) 4082 0 R (2518) 4083 0 R (2519) 4084 0 R (252) 1954 0 R (2521) 4086 0 R (2522) 4087 0 R (2526) 4089 0 R (2527) 4090 0 R (2528) 4091 0 R (253) 1955 0 R (2531) 4092 0 R (2532) 4093 0 R (2533) 4094 0 R (2534) 4099 0 R (2535) 4078 0 R (2536) 4100 0 R (2537) 4101 0 R (2538) 4102 0 R (254) 1956 0 R (2541) 4103 0 R (2542) 4104 0 R (2543) 4105 0 R (2545) 4107 0 R (2546) 4108 0 R (2547) 4109 0 R (2548) 4110 0 R (2549) 4111 0 R (255) 1957 0 R (2550) 4116 0 R (2551) 1679 0 R (2553) 4117 0 R (2554) 4118 0 R (2555) 4119 0 R (2558) 4124 0 R (2559) 4125 0 R (256) 1958 0 R (2561) 4127 0 R (2565) 4129 0 R (2567) 4130 0 R (257) 1959 0 R (2571) 4132 0 R (2573) 4133 0 R (2574) 4134 0 R (2578) 4136 0 R (258) 1960 0 R (2580) 4137 0 R (2581) 4138 0 R (2582) 4139 0 R (2586) 4141 0 R (2588) 4142 0 R (259) 1961 0 R (2592) 4144 0 R (2594) 4145 0 R (2595) 4146 0 R (2599) 4148 0 R (26) 1803 0 R (26.0) 1046 0 R (26.72.102.2) 1050 0 R (260) 1962 0 R (2601) 4149 0 R (2602) 4150 0 R (2603) 4156 0 R (2604) 4157 0 R (2605) 4158 0 R (2606) 4159 0 R (261) 1963 0 R (2610) 4161 0 R (2612) 4162 0 R (2613) 4163 0 R (2614) 4164 0 R (2615) 4165 0 R (2616) 4166 0 R (2617) 4167 0 R (2618) 4168 0 R (2622) 4170 0 R (2623) 4171 0 R (2625) 4172 0 R (2626) 4173 0 R (2630) 4175 0 R (2631) 4176 0 R (2632) 4177 0 R (2634) 4178 0 R (2635) 4179 0 R (2636) 4155 0 R (2638) 4185 0 R (2639) 4186 0 R (264) 1964 0 R (2640) 4187 0 R (2641) 4188 0 R (2642) 4189 0 R (2643) 4190 0 R (2644) 4191 0 R (2645) 4192 0 R (2646) 4193 0 R (2647) 4194 0 R (2648) 4195 0 R (2649) 4196 0 R (265) 1965 0 R (2650) 4197 0 R (2651) 4198 0 R (2655) 4200 0 R (266) 1966 0 R (2660) 4202 0 R (2661) 4203 0 R (2663) 4204 0 R (2665) 4206 0 R (2669) 4208 0 R (2674) 4210 0 R (2676) 4215 0 R (2677) 4216 0 R (268) 1968 0 R (2681) 4218 0 R (2683) 4219 0 R (2685) 4221 0 R (2689) 4223 0 R (269) 1969 0 R (2694) 4225 0 R (2696) 4226 0 R (2697) 4227 0 R (2698) 4228 0 R (27.0) 1054 0 R (27.72.103.2) 1058 0 R (27.72.104.2) 1062 0 R (270) 1970 0 R (2702) 4230 0 R (2703) 4231 0 R (2705) 4232 0 R (2706) 4233 0 R (2707) 4234 0 R (2708) 4235 0 R (2709) 4236 0 R (271) 1971 0 R (2710) 4237 0 R (2711) 4238 0 R (2715) 4244 0 R (2717) 4245 0 R (2718) 4246 0 R (272) 1972 0 R (2722) 4248 0 R (2727) 4250 0 R (2729) 4251 0 R (273) 1973 0 R (2733) 4253 0 R (2734) 4254 0 R (2736) 4255 0 R (274) 1974 0 R (2740) 4257 0 R (2745) 4259 0 R (275) 1975 0 R (2750) 4261 0 R (2754) 4264 0 R (2758) 4270 0 R (2763) 4272 0 R (2768) 4274 0 R (2770) 4275 0 R (2771) 4276 0 R (2772) 4277 0 R (2773) 4278 0 R (2774) 4279 0 R (2775) 4280 0 R (2776) 4281 0 R (2777) 4282 0 R (2778) 4283 0 R (2779) 4284 0 R (278) 1978 0 R (2780) 4285 0 R (2781) 4286 0 R (2782) 4287 0 R (2783) 4288 0 R (2784) 4289 0 R (2785) 4290 0 R (2786) 4291 0 R (2787) 4292 0 R (279) 1979 0 R (2792) 4295 0 R (2794) 4296 0 R (2795) 4297 0 R (2796) 4298 0 R (2797) 4299 0 R (2798) 4304 0 R (2799) 4305 0 R (28) 1805 0 R (28.0) 1066 0 R (28.72.105.2) 1070 0 R (28.72.106.2) 1074 0 R (280) 1980 0 R (2803) 4307 0 R (2805) 4308 0 R (2806) 4309 0 R (2807) 4310 0 R (2808) 4311 0 R (2809) 4312 0 R (281) 1981 0 R (2810) 4313 0 R (2811) 4314 0 R (2812) 4315 0 R (2814) 4317 0 R (2815) 4318 0 R (2816) 4319 0 R (2817) 4320 0 R (2818) 4321 0 R (2819) 4322 0 R (282) 1982 0 R (2821) 4324 0 R (2825) 4330 0 R (2827) 4331 0 R (2828) 4332 0 R (2829) 4333 0 R (283) 1983 0 R (2830) 4334 0 R (2835) 4337 0 R (2838) 4339 0 R (284) 1984 0 R (2842) 4341 0 R (2844) 4342 0 R (2848) 4344 0 R (285) 1985 0 R (2850) 4345 0 R (2851) 4346 0 R (2852) 4347 0 R (2853) 4348 0 R (2854) 4349 0 R (2855) 4350 0 R (2856) 4351 0 R (2857) 4352 0 R (2858) 4353 0 R (2859) 4354 0 R (286) 1986 0 R (2860) 4355 0 R (2861) 4356 0 R (2862) 4362 0 R (2863) 4363 0 R (2864) 4364 0 R (2865) 4365 0 R (2866) 4366 0 R (2867) 4367 0 R (2868) 4368 0 R (2869) 4369 0 R (287) 1987 0 R (2870) 4370 0 R (2871) 4371 0 R (2875) 4373 0 R (2877) 4374 0 R (2878) 4375 0 R (2879) 4376 0 R (288) 1991 0 R (2880) 4377 0 R (2884) 4379 0 R (2889) 4381 0 R (289) 1992 0 R (2891) 4382 0 R (2892) 4383 0 R (2893) 4384 0 R (2894) 4385 0 R (2895) 4386 0 R (2896) 4387 0 R (2897) 4388 0 R (2898) 4389 0 R (29.0) 1078 0 R (29.72.107.2) 1082 0 R (29.72.108.2) 1086 0 R (290) 1993 0 R (2900) 4391 0 R (2901) 4392 0 R (2905) 4394 0 R (2907) 4395 0 R (2908) 4396 0 R (2909) 4397 0 R (291) 1994 0 R (2910) 4398 0 R (2911) 4399 0 R (2912) 4400 0 R (2913) 4401 0 R (2915) 4403 0 R (2919) 4405 0 R (292) 1995 0 R (2921) 4406 0 R (2922) 4407 0 R (2923) 4408 0 R (2927) 4416 0 R (2929) 4417 0 R (293) 1996 0 R (2930) 4418 0 R (2931) 4419 0 R (2932) 4420 0 R (2933) 4421 0 R (2937) 4423 0 R (2939) 4424 0 R (294) 1997 0 R (2940) 4425 0 R (2941) 4426 0 R (2942) 4427 0 R (2946) 4429 0 R (2948) 4430 0 R (2949) 4431 0 R (295) 1998 0 R (2950) 4432 0 R (2952) 4434 0 R (2956) 4436 0 R (2958) 4437 0 R (296) 1999 0 R (2960) 4414 0 R (2965) 4444 0 R (297) 2000 0 R (2970) 4446 0 R (2971) 4447 0 R (2973) 4448 0 R (2974) 4449 0 R (2975) 4450 0 R (2976) 4451 0 R (2977) 4452 0 R (298) 2001 0 R (2981) 4454 0 R (2983) 4455 0 R (2984) 4456 0 R (2985) 4457 0 R (2986) 4458 0 R (2987) 4459 0 R (2988) 4460 0 R (2989) 4461 0 R (299) 2002 0 R (2990) 4462 0 R (2991) 4463 0 R (2992) 4464 0 R (2993) 4465 0 R (2994) 4466 0 R (2995) 4467 0 R (2996) 4468 0 R (2998) 4470 0 R (3.0) 10 0 R (30.0) 1090 0 R (30.72.109.2) 1094 0 R (300) 2003 0 R (3002) 4472 0 R (3007) 4474 0 R (3009) 4480 0 R (301) 2004 0 R (3010) 4481 0 R (3011) 4482 0 R (3012) 4483 0 R (3013) 4484 0 R (3014) 4485 0 R (3018) 4487 0 R (3019) 4488 0 R (302) 2005 0 R (3021) 4489 0 R (303) 2006 0 R (3032) 4492 0 R (3033) 4493 0 R (3038) 4495 0 R (3040) 4496 0 R (3044) 4498 0 R (3045) 4499 0 R (3047) 4500 0 R (3048) 4501 0 R (3049) 4502 0 R (305) 2008 0 R (3050) 4503 0 R (3051) 4504 0 R (3053) 4479 0 R (3057) 4511 0 R (3059) 4512 0 R (306) 2009 0 R (3060) 4513 0 R (3061) 4514 0 R (3065) 4516 0 R (3067) 4517 0 R (3068) 4518 0 R (3069) 4519 0 R (307) 2010 0 R (3070) 4520 0 R (3074) 4522 0 R (3075) 4523 0 R (3076) 4524 0 R (3078) 4525 0 R (3079) 4526 0 R (308) 2011 0 R (3080) 4527 0 R (3084) 4529 0 R (3086) 4530 0 R (3087) 4531 0 R (3088) 4532 0 R (3089) 4533 0 R (309) 2012 0 R (3090) 4534 0 R (3091) 4535 0 R (3092) 4536 0 R (3093) 4537 0 R (3094) 4538 0 R (3095) 4539 0 R (3096) 4544 0 R (3097) 4545 0 R (3098) 4546 0 R (3099) 4547 0 R (31) 1806 0 R (310) 2013 0 R (3100) 4548 0 R (3101) 4549 0 R (3102) 4550 0 R (3105) 4556 0 R (3108) 4557 0 R (3109) 4558 0 R (311) 2014 0 R (3110) 4559 0 R (3111) 4560 0 R (3114) 4563 0 R (3115) 4564 0 R (3116) 4565 0 R (3117) 4566 0 R (3118) 4567 0 R (312) 2015 0 R (3121) 4568 0 R (3122) 4569 0 R (3123) 4570 0 R (3124) 4571 0 R (3125) 4572 0 R (3129) 4573 0 R (3130) 4574 0 R (3131) 4575 0 R (3132) 4576 0 R (3133) 4577 0 R (3134) 4578 0 R (3135) 4583 0 R (3138) 4584 0 R (3139) 4585 0 R (314) 2017 0 R (3140) 4586 0 R (3143) 4587 0 R (3144) 4588 0 R (3145) 4589 0 R (3146) 4590 0 R (3147) 4591 0 R (3148) 4592 0 R (3149) 4593 0 R (315) 2018 0 R (3150) 4594 0 R (3153) 4595 0 R (3154) 4596 0 R (3155) 4597 0 R (3156) 4602 0 R (3157) 4603 0 R (3158) 4604 0 R (3159) 4605 0 R (316) 2019 0 R (3160) 4606 0 R (3161) 4607 0 R (3162) 4608 0 R (3165) 4609 0 R (3166) 4610 0 R (3167) 4611 0 R (3168) 4612 0 R (3169) 4613 0 R (317) 2020 0 R (3170) 4614 0 R (3173) 4615 0 R (3174) 4616 0 R (3175) 4621 0 R (3176) 4622 0 R (3177) 4623 0 R (3178) 4624 0 R (318) 2021 0 R (3181) 4625 0 R (3182) 4626 0 R (3183) 4627 0 R (3184) 4628 0 R (3185) 4629 0 R (3188) 4630 0 R (3189) 4631 0 R (319) 2022 0 R (3190) 4632 0 R (3191) 4633 0 R (3192) 4634 0 R (3193) 4635 0 R (3194) 4636 0 R (3195) 1749 0 R (3197) 4637 0 R (3198) 4638 0 R (3199) 4643 0 R (32) 1807 0 R (320) 2023 0 R (3200) 4644 0 R (3201) 4645 0 R (3205) 4646 0 R (3206) 4647 0 R (3207) 4648 0 R (3208) 4649 0 R (321) 2024 0 R (3212) 4651 0 R (3213) 4652 0 R (3214) 4653 0 R (3215) 4654 0 R (3216) 4655 0 R (3219) 4660 0 R (322) 2025 0 R (3220) 4661 0 R (3223) 4662 0 R (3224) 4663 0 R (3225) 4664 0 R (3226) 4665 0 R (3227) 4666 0 R (3228) 4667 0 R (3229) 4668 0 R (3230) 4669 0 R (3231) 4670 0 R (3232) 4671 0 R (3233) 4672 0 R (3234) 4673 0 R (3235) 4674 0 R (3236) 4675 0 R (3237) 4676 0 R (3238) 4677 0 R (3239) 4678 0 R (324) 2027 0 R (3240) 4679 0 R (3241) 4680 0 R (3242) 4681 0 R (3243) 4682 0 R (3244) 4683 0 R (3245) 4684 0 R (3246) 4685 0 R (3247) 4686 0 R (3248) 4687 0 R (3249) 4688 0 R (325) 2028 0 R (3250) 4689 0 R (3251) 4690 0 R (3254) 4691 0 R (3255) 4692 0 R (3256) 4693 0 R (3257) 4694 0 R (3258) 4695 0 R (3259) 4696 0 R (3260) 4697 0 R (3261) 4698 0 R (3262) 4699 0 R (3267) 4705 0 R (3268) 4706 0 R (3269) 4707 0 R (327) 2030 0 R (3270) 4708 0 R (3271) 4709 0 R (3272) 4710 0 R (3273) 4711 0 R (3274) 4712 0 R (3275) 4713 0 R (3276) 4714 0 R (3277) 4715 0 R (3278) 4716 0 R (3279) 4717 0 R (328) 2031 0 R (3280) 4718 0 R (3281) 4719 0 R (3282) 4720 0 R (3285) 4721 0 R (3286) 4722 0 R (3287) 4723 0 R (3288) 4724 0 R (3289) 4725 0 R (3290) 4726 0 R (3291) 4727 0 R (3292) 4734 0 R (3293) 4728 0 R (3295) 4735 0 R (3296) 4736 0 R (3297) 4737 0 R (3298) 4738 0 R (3299) 4739 0 R (33) 1808 0 R (330) 2033 0 R (3300) 4740 0 R (3301) 4741 0 R (3302) 4742 0 R (3303) 4743 0 R (3304) 4744 0 R (3305) 4745 0 R (3306) 4746 0 R (3307) 4747 0 R (3308) 4748 0 R (3309) 4749 0 R (331) 2034 0 R (3310) 4750 0 R (3311) 4751 0 R (3312) 4752 0 R (3313) 4753 0 R (3314) 4754 0 R (3315) 4755 0 R (3316) 4756 0 R (3317) 4757 0 R (3318) 4758 0 R (3319) 4763 0 R (3320) 4733 0 R (3322) 4764 0 R (3323) 4765 0 R (3324) 4766 0 R (3325) 4767 0 R (3326) 4768 0 R (3327) 4769 0 R (3328) 4770 0 R (3329) 4771 0 R (333) 2036 0 R (3330) 4772 0 R (3331) 4773 0 R (3332) 4774 0 R (3333) 4775 0 R (3334) 4776 0 R (3335) 4777 0 R (3336) 4778 0 R (3339) 4779 0 R (334) 2037 0 R (3340) 4780 0 R (3341) 4781 0 R (3342) 4782 0 R (3343) 4783 0 R (3344) 4784 0 R (3345) 4785 0 R (3346) 4786 0 R (3347) 4787 0 R (3348) 4792 0 R (3349) 4793 0 R (3350) 4794 0 R (3351) 4795 0 R (3352) 4796 0 R (3353) 4797 0 R (3354) 4798 0 R (3355) 4799 0 R (3356) 4800 0 R (3357) 4801 0 R (3358) 4802 0 R (3359) 4803 0 R (336) 2039 0 R (3360) 4804 0 R (3361) 4805 0 R (3362) 4806 0 R (3363) 4807 0 R (3364) 4808 0 R (3365) 4809 0 R (3366) 4810 0 R (3367) 4811 0 R (337) 2040 0 R (3370) 4816 0 R (3371) 4817 0 R (3372) 4818 0 R (3375) 4819 0 R (3376) 4820 0 R (3377) 4821 0 R (3380) 4822 0 R (3381) 4823 0 R (3382) 4824 0 R (3383) 4825 0 R (3384) 4826 0 R (3385) 4827 0 R (3386) 4832 0 R (3387) 4833 0 R (339) 2042 0 R (3390) 4834 0 R (3391) 4835 0 R (3394) 4836 0 R (3395) 4837 0 R (3396) 4838 0 R (3397) 4845 0 R (340) 2043 0 R (3400) 4846 0 R (3401) 4847 0 R (3402) 4848 0 R (3403) 4849 0 R (3404) 4850 0 R (3405) 4851 0 R (3406) 4852 0 R (3407) 4853 0 R (3408) 4854 0 R (3409) 4855 0 R (3410) 4856 0 R (3411) 4857 0 R (3412) 4858 0 R (3413) 4859 0 R (3414) 4860 0 R (3415) 4861 0 R (3416) 4862 0 R (3417) 4863 0 R (3418) 4864 0 R (3419) 4865 0 R (3420) 4866 0 R (3421) 4867 0 R (3422) 4868 0 R (3423) 4869 0 R (3424) 4870 0 R (3425) 4871 0 R (3426) 4872 0 R (3427) 4873 0 R (3428) 4874 0 R (3429) 4875 0 R (3430) 4876 0 R (3431) 4844 0 R (3432) 4881 0 R (3433) 4882 0 R (3436) 4883 0 R (3437) 4884 0 R (3438) 4885 0 R (344) 2045 0 R (3441) 4886 0 R (3442) 4887 0 R (3445) 4888 0 R (3446) 4893 0 R (3449) 4894 0 R (345) 2049 0 R (3452) 4895 0 R (3455) 4896 0 R (3456) 4897 0 R (3457) 4898 0 R (3460) 4899 0 R (3461) 4900 0 R (3462) 4901 0 R (3463) 4906 0 R (3464) 4907 0 R (3466) 4912 0 R (3470) 4913 0 R (3471) 4914 0 R (3472) 4915 0 R (3473) 4916 0 R (3478) 4919 0 R (3479) 4920 0 R (348) 2050 0 R (3480) 4921 0 R (3481) 4922 0 R (3482) 4923 0 R (3483) 4924 0 R (3485) 4925 0 R (3486) 4926 0 R (3487) 4927 0 R (3488) 4928 0 R (3489) 4929 0 R (3491) 4930 0 R (3492) 4931 0 R (3493) 4932 0 R (3494) 4933 0 R (3495) 4934 0 R (3496) 4935 0 R (3497) 4936 0 R (3498) 4937 0 R (3499) 4938 0 R (3501) 4939 0 R (3502) 4940 0 R (3503) 4941 0 R (3504) 4942 0 R (3505) 4943 0 R (3506) 4944 0 R (3507) 4945 0 R (3508) 4946 0 R (3509) 4947 0 R (351) 2051 0 R (3510) 4948 0 R (3511) 4949 0 R (3513) 4950 0 R (3514) 4951 0 R (3515) 4952 0 R (3516) 4953 0 R (3517) 4954 0 R (3518) 4955 0 R (352) 2052 0 R (3523) 4962 0 R (3524) 4963 0 R (3525) 4964 0 R (3526) 4965 0 R (3527) 4966 0 R (3528) 4967 0 R (353) 2053 0 R (3530) 4968 0 R (3531) 4969 0 R (3532) 4970 0 R (3535) 4971 0 R (3536) 4972 0 R (354) 2054 0 R (3542) 4974 0 R (3543) 4975 0 R (3544) 4976 0 R (3545) 4977 0 R (3548) 4979 0 R (3549) 4980 0 R (355) 2055 0 R (3553) 4981 0 R (3554) 4982 0 R (3555) 4983 0 R (3556) 4984 0 R (3557) 4985 0 R (356) 2056 0 R (3560) 4986 0 R (3561) 4987 0 R (3562) 4988 0 R (3563) 4989 0 R (3564) 4996 0 R (3565) 4997 0 R (3566) 4998 0 R (357) 2057 0 R (3571) 5000 0 R (3572) 5001 0 R (3573) 5002 0 R (3574) 5003 0 R (3577) 5004 0 R (3578) 5005 0 R (3579) 5006 0 R (358) 2058 0 R (3585) 5010 0 R (3586) 5011 0 R (3587) 5012 0 R (3588) 5013 0 R (3589) 5014 0 R (359) 2059 0 R (3594) 5017 0 R (3595) 5018 0 R (36) 1809 0 R (3601) 5023 0 R (3602) 5024 0 R (3603) 5025 0 R (3604) 5026 0 R (3605) 5027 0 R (3606) 5028 0 R (3609) 5030 0 R (3610) 5031 0 R (3612) 5033 0 R (3613) 5034 0 R (3615) 5035 0 R (3616) 5036 0 R (3617) 5037 0 R (3618) 5038 0 R (362) 2060 0 R (3620) 5039 0 R (3621) 5040 0 R (3622) 5041 0 R (3623) 5042 0 R (3624) 5043 0 R (3626) 5044 0 R (3627) 5045 0 R (3628) 5046 0 R (3629) 5047 0 R (3636) 5050 0 R (3637) 5051 0 R (3638) 5052 0 R (3641) 5053 0 R (3642) 5054 0 R (3644) 5060 0 R (3645) 5061 0 R (3646) 5062 0 R (3647) 5063 0 R (365) 2061 0 R (3651) 5065 0 R (3652) 5066 0 R (3653) 5067 0 R (3654) 5068 0 R (3655) 5069 0 R (3656) 5070 0 R (3657) 5071 0 R (3658) 5072 0 R (3664) 5074 0 R (3665) 5075 0 R (3669) 5077 0 R (3670) 5078 0 R (3671) 5079 0 R (3676) 5081 0 R (3677) 5082 0 R (3678) 5083 0 R (368) 2062 0 R (3680) 5088 0 R (3681) 5089 0 R (3682) 5090 0 R (3683) 5091 0 R (3684) 5092 0 R (3685) 5093 0 R (3686) 5094 0 R (3687) 5095 0 R (3688) 5096 0 R (3689) 5097 0 R (3690) 5098 0 R (3691) 5099 0 R (3692) 5100 0 R (3693) 5101 0 R (3698) 5104 0 R (3699) 5105 0 R (37) 1810 0 R (3700) 5106 0 R (3704) 5107 0 R (3705) 5108 0 R (371) 2063 0 R (3710) 5111 0 R (3711) 5112 0 R (3712) 5113 0 R (3713) 5116 0 R (3714) 5114 0 R (3715) 5115 0 R (372) 2064 0 R (373) 2065 0 R (376) 2071 0 R (377) 2072 0 R (38) 1811 0 R (380) 2073 0 R (383) 2074 0 R (384) 2075 0 R (385) 2076 0 R (386) 2077 0 R (387) 2078 0 R (39) 1812 0 R (390) 2079 0 R (391) 2080 0 R (395) 2082 0 R (396) 2083 0 R (397) 2084 0 R (398) 2085 0 R (399) 2086 0 R (4.0) 14 0 R (40) 1813 0 R (400) 2087 0 R (401) 2088 0 R (402) 2089 0 R (403) 2094 0 R (404) 2095 0 R (405) 2070 0 R (407) 2096 0 R (408) 2097 0 R (41) 1814 0 R (411) 2098 0 R (416) 2102 0 R (417) 2103 0 R (42) 1815 0 R (421) 2106 0 R (422) 2107 0 R (423) 2108 0 R (424) 2109 0 R (425) 2110 0 R (426) 2111 0 R (427) 2112 0 R (428) 2113 0 R (429) 2114 0 R (43) 1816 0 R (430) 2115 0 R (431) 2116 0 R (433) 2121 0 R (434) 2122 0 R (435) 2123 0 R (436) 2124 0 R (437) 2125 0 R (438) 2126 0 R (439) 2127 0 R (44) 1817 0 R (440) 2128 0 R (441) 2129 0 R (443) 2130 0 R (444) 2131 0 R (445) 2132 0 R (446) 2133 0 R (447) 2134 0 R (448) 2135 0 R (449) 2136 0 R (45) 1818 0 R (450) 2137 0 R (453) 2139 0 R (454) 2140 0 R (455) 2141 0 R (456) 2144 0 R (458) 2146 0 R (459) 2147 0 R (46) 1819 0 R (460) 2148 0 R (461) 2149 0 R (462) 2150 0 R (463) 2151 0 R (464) 2152 0 R (465) 2153 0 R (466) 2154 0 R (467) 2155 0 R (468) 2156 0 R (469) 2163 0 R (47) 1820 0 R (470) 2164 0 R (471) 2165 0 R (472) 2166 0 R (473) 2167 0 R (474) 2168 0 R (475) 2169 0 R (476) 2170 0 R (477) 2171 0 R (48) 1821 0 R (480) 2172 0 R (481) 2173 0 R (482) 2174 0 R (484) 2175 0 R (485) 2176 0 R (486) 2177 0 R (487) 2178 0 R (489) 2180 0 R (49) 1822 0 R (490) 2181 0 R (491) 2182 0 R (492) 2183 0 R (493) 2184 0 R (494) 2185 0 R (495) 2186 0 R (496) 2187 0 R (497) 2188 0 R (498) 2189 0 R (5.0) 18 0 R (5.1.1) 22 0 R (5.2.1) 26 0 R (5.3.1) 30 0 R (5.4.1) 34 0 R (5.5.1) 38 0 R (50) 1823 0 R (500) 2190 0 R (501) 2191 0 R (502) 2192 0 R (503) 2193 0 R (504) 2194 0 R (505) 2195 0 R (506) 2196 0 R (507) 2197 0 R (508) 2198 0 R (509) 2199 0 R (51) 1824 0 R (510) 2200 0 R (511) 2201 0 R (512) 2206 0 R (513) 2162 0 R (515) 2207 0 R (516) 2208 0 R (517) 2209 0 R (518) 2210 0 R (519) 2211 0 R (52) 1829 0 R (520) 2212 0 R (521) 1241 0 R (523) 2213 0 R (524) 2214 0 R (525) 2215 0 R (526) 2216 0 R (527) 2217 0 R (528) 2218 0 R (53) 1830 0 R (531) 2219 0 R (536) 2221 0 R (537) 2222 0 R (538) 2223 0 R (540) 2224 0 R (541) 2225 0 R (542) 2226 0 R (544) 2227 0 R (545) 2228 0 R (546) 2229 0 R (547) 2230 0 R (548) 2231 0 R (549) 2232 0 R (550) 2233 0 R (551) 2239 0 R (552) 2240 0 R (553) 2241 0 R (555) 2242 0 R (556) 2243 0 R (557) 2244 0 R (558) 2245 0 R (559) 2246 0 R (56) 1831 0 R (560) 2247 0 R (561) 2248 0 R (563) 2249 0 R (564) 2250 0 R (565) 2251 0 R (566) 2252 0 R (57) 1832 0 R (570) 2253 0 R (571) 2254 0 R (572) 2255 0 R (573) 2256 0 R (574) 2257 0 R (575) 2258 0 R (576) 2259 0 R (577) 2260 0 R (578) 2261 0 R (579) 2262 0 R (580) 2263 0 R (581) 2264 0 R (582) 2265 0 R (583) 2266 0 R (584) 2267 0 R (585) 2268 0 R (586) 2269 0 R (587) 2270 0 R (588) 2271 0 R (589) 2272 0 R (59) 1833 0 R (590) 2273 0 R (591) 2274 0 R (592) 2275 0 R (593) 2238 0 R (594) 2280 0 R (595) 2281 0 R (596) 2282 0 R (6.0) 42 0 R (6.10.1) 250 0 R (6.10.22.2) 254 0 R (6.10.23.2) 258 0 R (6.10.23.21.3) 262 0 R (6.10.23.21.7.4) 266 0 R (6.10.23.21.8.4) 270 0 R (6.10.23.21.9.4) 274 0 R (6.10.24.2) 278 0 R (6.10.25.2) 282 0 R (6.10.25.22.3) 286 0 R (6.10.25.23.3) 290 0 R (6.10.26.2) 294 0 R (6.10.26.24.3) 298 0 R (6.10.27.2) 302 0 R (6.6.1) 46 0 R (6.6.1.2) 50 0 R (6.6.2.1.3) 58 0 R (6.6.2.2) 54 0 R (6.6.2.2.3) 62 0 R (6.6.3.2) 66 0 R (6.6.4.2) 70 0 R (6.6.5.10.3) 106 0 R (6.6.5.11.3) 110 0 R (6.6.5.2) 74 0 R (6.6.5.3.3) 78 0 R (6.6.5.4.3) 82 0 R (6.6.5.5.3) 86 0 R (6.6.5.6.3) 90 0 R (6.6.5.7.3) 94 0 R (6.6.5.8.3) 98 0 R (6.6.5.9.3) 102 0 R (6.6.6.2) 114 0 R (6.7.1) 118 0 R (6.7.10.14.3) 170 0 R (6.7.10.15.3) 174 0 R (6.7.10.16.3) 178 0 R (6.7.10.2) 166 0 R (6.7.11.2) 182 0 R (6.7.7.2) 122 0 R (6.7.8.12.1.4) 134 0 R (6.7.8.12.2.4) 138 0 R (6.7.8.12.3) 130 0 R (6.7.8.12.3.4) 142 0 R (6.7.8.12.4.4) 146 0 R (6.7.8.13.3) 150 0 R (6.7.8.13.5.4) 154 0 R (6.7.8.13.6.4) 158 0 R (6.7.8.2) 126 0 R (6.7.9.2) 162 0 R (6.8.1) 186 0 R (6.8.12.2) 190 0 R (6.8.13.2) 194 0 R (6.8.14.2) 198 0 R (6.8.15.2) 202 0 R (6.8.16.2) 206 0 R (6.8.17.2) 210 0 R (6.8.18.2) 214 0 R (6.9.1) 218 0 R (6.9.19.17.3) 226 0 R (6.9.19.18.3) 230 0 R (6.9.19.19.3) 234 0 R (6.9.19.2) 222 0 R (6.9.19.20.3) 238 0 R (6.9.20.2) 242 0 R (6.9.21.2) 246 0 R (60) 1834 0 R (600) 2284 0 R (601) 2285 0 R (603) 2287 0 R (604) 2288 0 R (606) 2290 0 R (607) 2291 0 R (608) 2292 0 R (609) 2293 0 R (61) 1835 0 R (610) 2294 0 R (611) 2295 0 R (612) 2296 0 R (613) 2297 0 R (614) 2298 0 R (615) 2299 0 R (616) 2300 0 R (617) 2301 0 R (618) 2302 0 R (619) 2303 0 R (62) 1836 0 R (620) 2304 0 R (621) 2305 0 R (622) 2306 0 R (623) 2307 0 R (624) 2308 0 R (627) 2314 0 R (628) 2315 0 R (630) 2317 0 R (631) 2318 0 R (633) 2320 0 R (634) 2321 0 R (635) 2322 0 R (636) 2323 0 R (637) 2324 0 R (638) 2325 0 R (639) 2326 0 R (64) 1837 0 R (640) 2327 0 R (644) 2329 0 R (645) 1248 0 R (647) 2330 0 R (648) 2331 0 R (649) 2332 0 R (65) 1838 0 R (650) 2333 0 R (651) 2336 0 R (652) 2337 0 R (653) 2338 0 R (654) 2339 0 R (655) 2340 0 R (656) 2341 0 R (657) 2342 0 R (658) 1249 0 R (66) 1839 0 R (660) 2343 0 R (661) 2344 0 R (662) 2345 0 R (663) 2346 0 R (664) 2347 0 R (665) 2348 0 R (666) 2349 0 R (667) 2350 0 R (668) 2351 0 R (669) 2356 0 R (67) 1840 0 R (670) 2357 0 R (671) 2358 0 R (672) 2359 0 R (673) 2360 0 R (676) 2361 0 R (677) 2362 0 R (678) 2363 0 R (679) 2364 0 R (680) 2365 0 R (681) 2366 0 R (684) 2367 0 R (686) 2369 0 R (687) 2370 0 R (688) 2371 0 R (689) 2372 0 R (69) 1841 0 R (690) 2373 0 R (691) 2374 0 R (692) 2375 0 R (695) 2381 0 R (696) 2382 0 R (697) 2383 0 R (698) 2384 0 R (699) 2385 0 R (7.0) 306 0 R (7.11.1) 310 0 R (7.12.1) 314 0 R (7.12.28.2) 318 0 R (7.12.29.2) 322 0 R (7.12.29.25.3) 326 0 R (7.12.29.26.3) 330 0 R (7.13.1) 334 0 R (7.14.1) 338 0 R (7.15.1) 342 0 R (7.16.1) 346 0 R (7.17.1) 350 0 R (7.17.30.2) 354 0 R (7.17.31.2) 358 0 R (7.17.31.27.3) 362 0 R (7.17.32.2) 366 0 R (7.17.33.2) 370 0 R (7.17.33.28.3) 374 0 R (7.17.33.29.3) 378 0 R (7.17.34.2) 382 0 R (7.17.34.30.10.4) 390 0 R (7.17.34.30.11.4) 394 0 R (7.17.34.30.12.4) 398 0 R (7.17.34.30.13.4) 402 0 R (7.17.34.30.14.4) 406 0 R (7.17.34.30.15.4) 410 0 R (7.17.34.30.16.4) 414 0 R (7.17.34.30.17.4) 418 0 R (7.17.34.30.18.4) 422 0 R (7.17.34.30.3) 386 0 R (7.17.34.31.3) 426 0 R (7.17.34.32.3) 430 0 R (7.18.1) 434 0 R (7.19.1) 438 0 R (7.20.1) 442 0 R (7.20.35.2) 446 0 R (7.20.36.2) 450 0 R (7.20.37.2) 454 0 R (7.20.38.2) 458 0 R (7.20.38.33.3) 462 0 R (7.20.38.34.3) 466 0 R (7.20.38.35.3) 470 0 R (7.21.1) 474 0 R (7.21.39.2) 478 0 R (7.21.40.2) 482 0 R (7.21.40.36.3) 486 0 R (7.21.40.37.3) 490 0 R (7.21.40.38.3) 494 0 R (7.21.41.2) 498 0 R (70) 1842 0 R (700) 2386 0 R (701) 2387 0 R (702) 2388 0 R (703) 2389 0 R (704) 2390 0 R (705) 2391 0 R (708) 2392 0 R (709) 2393 0 R (71) 1843 0 R (710) 2394 0 R (711) 2395 0 R (712) 2396 0 R (715) 2398 0 R (716) 2399 0 R (717) 2400 0 R (72) 1844 0 R (720) 2402 0 R (721) 2403 0 R (722) 2404 0 R (723) 2405 0 R (724) 2406 0 R (725) 2407 0 R (726) 2408 0 R (729) 2410 0 R (730) 2411 0 R (731) 2412 0 R (732) 2413 0 R (733) 2414 0 R (736) 2421 0 R (737) 2422 0 R (738) 2423 0 R (739) 2424 0 R (74) 1845 0 R (742) 2426 0 R (743) 2427 0 R (744) 2428 0 R (745) 2429 0 R (748) 2431 0 R (749) 2432 0 R (75) 1846 0 R (750) 2433 0 R (751) 2434 0 R (754) 2436 0 R (755) 2437 0 R (756) 2438 0 R (757) 2439 0 R (76) 1847 0 R (760) 2440 0 R (761) 2441 0 R (762) 2442 0 R (763) 2443 0 R (764) 2444 0 R (765) 2445 0 R (766) 2446 0 R (767) 2447 0 R (768) 2448 0 R (769) 2449 0 R (77) 1848 0 R (770) 2450 0 R (771) 2451 0 R (774) 2456 0 R (775) 2457 0 R (776) 2458 0 R (779) 2459 0 R (782) 2460 0 R (783) 2461 0 R (784) 2462 0 R (787) 2463 0 R (79) 1849 0 R (790) 2466 0 R (791) 2467 0 R (792) 2468 0 R (793) 2469 0 R (794) 2470 0 R (795) 2471 0 R (796) 2472 0 R (797) 2473 0 R (798) 2474 0 R (799) 2475 0 R (8.0) 502 0 R (8.22.1) 506 0 R (8.22.42.2) 510 0 R (8.22.43.2) 514 0 R (8.22.44.2) 518 0 R (8.23.1) 522 0 R (8.23.45.2) 526 0 R (8.23.46.2) 530 0 R (8.23.47.2) 534 0 R (8.24.1) 538 0 R (8.24.48.2) 542 0 R (8.24.49.2) 546 0 R (8.25.1) 550 0 R (8.25.50.2) 554 0 R (80) 1850 0 R (802) 2481 0 R (803) 2482 0 R (804) 2483 0 R (805) 2484 0 R (806) 2485 0 R (807) 2486 0 R (81) 1851 0 R (810) 2487 0 R (813) 2490 0 R (814) 2491 0 R (815) 2492 0 R (816) 2493 0 R (82) 1852 0 R (820) 2498 0 R (821) 2499 0 R (822) 2500 0 R (823) 2501 0 R (824) 2502 0 R (825) 2503 0 R (827) 2505 0 R (828) 2506 0 R (829) 2507 0 R (830) 2508 0 R (831) 2509 0 R (832) 2510 0 R (833) 2511 0 R (834) 2512 0 R (835) 2513 0 R (836) 2514 0 R (837) 2515 0 R (838) 2516 0 R (84) 1853 0 R (842) 2519 0 R (843) 2520 0 R (845) 2521 0 R (847) 2522 0 R (85) 1854 0 R (850) 2523 0 R (851) 2524 0 R (852) 2525 0 R (853) 2526 0 R (854) 2527 0 R (855) 2528 0 R (856) 2529 0 R (857) 2530 0 R (858) 2531 0 R (859) 2532 0 R (86) 1855 0 R (860) 2533 0 R (861) 2534 0 R (863) 2535 0 R (864) 2536 0 R (865) 2537 0 R (866) 2538 0 R (87) 1856 0 R (870) 1362 0 R (872) 2544 0 R (874) 1363 0 R (876) 2546 0 R (877) 2547 0 R (878) 2548 0 R (879) 2549 0 R (880) 2550 0 R (881) 2551 0 R (882) 1364 0 R (884) 2552 0 R (886) 2553 0 R (887) 2554 0 R (888) 2555 0 R (89) 1857 0 R (890) 2561 0 R (891) 2562 0 R (892) 2563 0 R (893) 2564 0 R (895) 2565 0 R (896) 2566 0 R (897) 2567 0 R (898) 2568 0 R (899) 2569 0 R (9.0) 558 0 R (9.26.1) 562 0 R (9.26.51.2) 566 0 R (9.26.52.2) 570 0 R (9.26.53.2) 574 0 R (9.26.54.2) 578 0 R (9.26.55.2) 582 0 R (9.26.56.2) 586 0 R (9.27.1) 590 0 R (9.28.1) 594 0 R (9.29.1) 598 0 R (9.30.1) 602 0 R (9.30.57.2) 606 0 R (9.30.57.39.3) 610 0 R (9.31.1) 614 0 R (9.31.58.2) 618 0 R (9.31.59.2) 622 0 R (9.31.60.2) 626 0 R (9.31.61.2) 630 0 R (9.31.62.2) 634 0 R (90) 1858 0 R (900) 2570 0 R (901) 2571 0 R (902) 2572 0 R (903) 2573 0 R (904) 2574 0 R (905) 2575 0 R (906) 2576 0 R (907) 2577 0 R (908) 2578 0 R (909) 1365 0 R (91) 1859 0 R (911) 2579 0 R (912) 2580 0 R (913) 2581 0 R (914) 2582 0 R (915) 2583 0 R (916) 2584 0 R (917) 2585 0 R (918) 2586 0 R (919) 2587 0 R (92) 1860 0 R (920) 2592 0 R (921) 2593 0 R (922) 2594 0 R (923) 2595 0 R (924) 2596 0 R (927) 2597 0 R (928) 1367 0 R (93) 1861 0 R (930) 2598 0 R (931) 2599 0 R (932) 2600 0 R (933) 2601 0 R (934) 2602 0 R (935) 2603 0 R (936) 2604 0 R (937) 2605 0 R (938) 2606 0 R (939) 2607 0 R (940) 2608 0 R (941) 1368 0 R (943) 2609 0 R (944) 2610 0 R (945) 2611 0 R (946) 2616 0 R (947) 2617 0 R (948) 2618 0 R (949) 2619 0 R (95) 1862 0 R (950) 2620 0 R (951) 2621 0 R (952) 2622 0 R (953) 2623 0 R (954) 2624 0 R (955) 2625 0 R (956) 2626 0 R (957) 2627 0 R (958) 2628 0 R (959) 2629 0 R (96) 1863 0 R (960) 2630 0 R (961) 2631 0 R (962) 2632 0 R (963) 2633 0 R (964) 2634 0 R (965) 2635 0 R (966) 2636 0 R (967) 2637 0 R (968) 2638 0 R (969) 2639 0 R (97) 1864 0 R (970) 2640 0 R (971) 2645 0 R (972) 2646 0 R (973) 2647 0 R (974) 1369 0 R (976) 2648 0 R (977) 1370 0 R (979) 2649 0 R (98) 1865 0 R (980) 2650 0 R (981) 2651 0 R (982) 2652 0 R (983) 2653 0 R (984) 2654 0 R (985) 2655 0 R (986) 1371 0 R (988) 2656 0 R (99) 1866 0 R (990) 2658 0 R (991) 2659 0 R (992) 2660 0 R (993) 2665 0 R (994) 2666 0 R (995) 2667 0 R (996) 2668 0 R (997) 2669 0 R (998) 2670 0 R (999) 2671 0 R (Doc-Start) 1102 0 R (about) 1211 0 R (accountsettings) 1666 0 R (administration) 1372 0 R (apache-addtype) 1254 0 R (attachments) 1664 0 R (bonsai) 1537 0 R (boolean) 1646 0 R (bug_page) 1643 0 R (bugreports) 1651 0 R (bzldap) 1253 0 R (charts) 1671 0 R (cmdline) 1753 0 R (cmdline-bugmail) 1754 0 R (commenting) 1663 0 R (components) 1380 0 R (configuration) 1236 0 R (conventions) 1216 0 R (copyright) 1212 0 R (createnewusers) 1377 0 R (credits) 1215 0 R (cust-change-permissions) 1531 0 R (cust-hooks) 1530 0 R (cust-templates) 1523 0 R (customization) 1522 0 R (cvs) 1538 0 R (database-engine) 1238 0 R (dbdoc) 1533 0 R (dbmodify) 1532 0 R (defaultuser) 1375 0 R (disclaimer) 1213 0 R (emailsettings) 1667 0 R (extraconfig) 1247 0 R (faq) 1680 0 R (faq-admin) 4263 0 R (faq-admin-cvsupdate) 4273 0 R (faq-admin-enable-unconfirmed) 4294 0 R (faq-admin-livebackup) 4271 0 R (faq-admin-midair) 4265 0 R (faq-admin-moving) 4306 0 R (faq-db) 4402 0 R (faq-db-corrupted) 4404 0 R (faq-db-manualedit) 4415 0 R (faq-db-permissions) 4422 0 R (faq-db-synchronize) 4428 0 R (faq-email) 4338 0 R (faq-email-mailif) 4378 0 R (faq-email-nomail) 4340 0 R (faq-email-nonreceived) 4393 0 R (faq-email-sendmailnow) 4380 0 R (faq-email-testing) 4343 0 R (faq-email-whine) 4372 0 R (faq-general) 4126 0 R (faq-general-bonsaitools) 4169 0 R (faq-general-bzmissing) 4147 0 R (faq-general-companies) 4135 0 R (faq-general-compare) 4143 0 R (faq-general-cookie) 4199 0 R (faq-general-license) 4128 0 R (faq-general-maintainers) 4140 0 R (faq-general-mysql) 4160 0 R (faq-general-perlpath) 4174 0 R (faq-general-support) 4131 0 R (faq-hacking) 4509 0 R (faq-hacking-bugzillabugs) 4515 0 R (faq-hacking-patches) 4528 0 R (faq-hacking-priority) 4521 0 R (faq-hacking-templatestyle) 4510 0 R (faq-mod-perl) 4201 0 R (faq-nt) 4433 0 R (faq-nt-bundle) 4443 0 R (faq-nt-dbi) 4453 0 R (faq-nt-easiest) 4435 0 R (faq-nt-mappings) 4445 0 R (faq-phb) 4205 0 R (faq-phb-backup) 4249 0 R (faq-phb-client) 4207 0 R (faq-phb-cost) 4258 0 R (faq-phb-data) 4229 0 R (faq-phb-email) 4222 0 R (faq-phb-emailapp) 4224 0 R (faq-phb-installtime) 4256 0 R (faq-phb-l10n) 4239 0 R (faq-phb-maintenance) 4252 0 R (faq-phb-priorities) 4209 0 R (faq-phb-renameBugs) 4260 0 R (faq-phb-reporting) 4217 0 R (faq-phb-reports) 4247 0 R (faq-security) 4323 0 R (faq-security-knownproblems) 4336 0 R (faq-security-mysql) 4325 0 R (faq-use) 4469 0 R (faq-use-accept) 4486 0 R (faq-use-attachment) 4491 0 R (faq-use-changeaddress) 4471 0 R (faq-use-close) 4497 0 R (faq-use-keyword) 4494 0 R (faq-use-query) 4473 0 R (flag-askto) 1387 0 R (flag-type-attachment) 1389 0 R (flag-type-bug) 1390 0 R (flag-types) 1388 0 R (flag-values) 1386 0 R (flags) 1674 0 R (flags-about) 1385 0 R (flags-admin) 1391 0 R (flags-create) 1392 0 R (flags-create-field-active) 3016 0 R (flags-create-field-category) 2978 0 R (flags-create-field-cclist) 3026 0 R (flags-create-field-description) 2976 0 R (flags-create-field-multiplicable) 3035 0 R (flags-create-field-name) 2974 0 R (flags-create-field-requestable) 3019 0 R (flags-create-field-sortkey) 3012 0 R (flags-create-field-specific) 3028 0 R (flags-delete) 1393 0 R (flags-edit) 1394 0 R (flags-overview) 1383 0 R (flags-simpleexample) 1384 0 R (general-advice) 1682 0 R (gfdl) 1759 0 R (gfdl-0) 1760 0 R (gfdl-1) 1761 0 R (gfdl-10) 1770 0 R (gfdl-2) 1762 0 R (gfdl-3) 1763 0 R (gfdl-4) 1764 0 R (gfdl-5) 1765 0 R (gfdl-6) 1766 0 R (gfdl-7) 1767 0 R (gfdl-8) 1768 0 R (gfdl-9) 1769 0 R (gfdl-howto) 1771 0 R (gloss-a) 4917 0 R (gloss-apache) 4918 0 R (gloss-b) 4957 0 R (gloss-bugzilla) 1888 0 R (gloss-c) 4973 0 R (gloss-cgi) 1950 0 R (gloss-component) 4978 0 R (gloss-contrib) 2415 0 R (gloss-cpan) 2539 0 R (gloss-d) 4999 0 R (gloss-daemon) 3301 0 R (gloss-dos) 3443 0 R (gloss-g) 5008 0 R (gloss-groups) 5009 0 R (gloss-htaccess) 3413 0 R (gloss-j) 5015 0 R (gloss-javascript) 5016 0 R (gloss-m) 4995 0 R (gloss-mta) 4409 0 R (gloss-mysql) 5029 0 R (gloss-p) 5049 0 R (gloss-ppm) 2476 0 R (gloss-product) 2835 0 R (gloss-q) 5064 0 R (gloss-r) 5073 0 R (gloss-rdbms) 5055 0 R (gloss-regexp) 5076 0 R (gloss-s) 5080 0 R (gloss-service) 3302 0 R (gloss-t) 5102 0 R (gloss-target-milestone) 5103 0 R (gloss-tcl) 2309 0 R (gloss-z) 5109 0 R (gloss-zarro) 5110 0 R (glossary) 1772 0 R (groups) 1397 0 R (hintsandtips) 1660 0 R (http) 1242 0 R (http-aol) 1245 0 R (http-apache) 1243 0 R (http-iis) 1244 0 R (index) 1103 0 R (install-MTA) 1235 0 R (install-bzfiles) 1224 0 R (install-config-bugzilla) 1246 0 R (install-database) 1220 0 R (install-modules-chart-base) 1229 0 R (install-modules-dbd-mysql) 1226 0 R (install-modules-gd) 1228 0 R (install-modules-gd-graph) 1230 0 R (install-modules-gd-text-align) 1231 0 R (install-modules-mime-parser) 1233 0 R (install-modules-patchreader) 1234 0 R (install-modules-template) 1227 0 R (install-modules-xml-parser) 1232 0 R (install-mysql) 1221 0 R (install-perl) 1219 0 R (install-perlmodules) 1225 0 R (install-perlmodules-manual) 1755 0 R (install-perlmodules-nonroot) 1366 0 R (install-pg) 1222 0 R (install-setupdatabase) 2105 0 R (install-setupdatabase-adduser) 2138 0 R (install-webserver) 1223 0 R (installation) 1218 0 R (installation-whining) 1251 0 R (installation-whining-cron) 1250 0 R (installing-bugzilla) 1217 0 R (integration) 1536 0 R (lifecycle) 1644 0 R (lifecycle-image) 1791 0 R (list) 1650 0 R (localconfig) 1237 0 R (manageusers) 1376 0 R (milestones) 1382 0 R (modifyusers) 1378 0 R (modules-manual-download) 1757 0 R (modules-manual-instructions) 1756 0 R (modules-manual-optional) 1758 0 R (multiplecharts) 1649 0 R (myaccount) 1642 0 R (mysql) 1239 0 R (negation) 1648 0 R (newversions) 1214 0 R (nonroot) 1361 0 R (os-macosx) 1359 0 R (os-mandrake) 1360 0 R (os-specific) 1255 0 R (os-win32) 1354 0 R (page.1) 1101 0 R (page.10) 2093 0 R (page.100) 4642 0 R (page.101) 4659 0 R (page.102) 4704 0 R (page.103) 4732 0 R (page.104) 4762 0 R (page.105) 4791 0 R (page.106) 4815 0 R (page.107) 4831 0 R (page.108) 4843 0 R (page.109) 4880 0 R (page.11) 2120 0 R (page.110) 4892 0 R (page.111) 4905 0 R (page.112) 4911 0 R (page.113) 4961 0 R (page.114) 4994 0 R (page.115) 5022 0 R (page.116) 5059 0 R (page.117) 5087 0 R (page.12) 2161 0 R (page.13) 2205 0 R (page.14) 2237 0 R (page.15) 2279 0 R (page.16) 2313 0 R (page.17) 2355 0 R (page.18) 2380 0 R (page.19) 2419 0 R (page.2) 1110 0 R (page.20) 2455 0 R (page.21) 2480 0 R (page.22) 2497 0 R (page.23) 2543 0 R (page.24) 2560 0 R (page.25) 2591 0 R (page.26) 2615 0 R (page.27) 2644 0 R (page.28) 2664 0 R (page.29) 2676 0 R (page.3) 1116 0 R (page.30) 2708 0 R (page.31) 2736 0 R (page.32) 2756 0 R (page.33) 2791 0 R (page.34) 2839 0 R (page.35) 2866 0 R (page.36) 2914 0 R (page.37) 2954 0 R (page.38) 2989 0 R (page.39) 3032 0 R (page.4) 1259 0 R (page.40) 3063 0 R (page.41) 3091 0 R (page.42) 3133 0 R (page.43) 3153 0 R (page.44) 3177 0 R (page.45) 3201 0 R (page.46) 3228 0 R (page.47) 3258 0 R (page.48) 3276 0 R (page.49) 3306 0 R (page.5) 1404 0 R (page.50) 3335 0 R (page.51) 3417 0 R (page.52) 3447 0 R (page.53) 3476 0 R (page.54) 3503 0 R (page.55) 3542 0 R (page.56) 3571 0 R (page.57) 3602 0 R (page.58) 3640 0 R (page.59) 3663 0 R (page.6) 1545 0 R (page.60) 3684 0 R (page.61) 3706 0 R (page.62) 3735 0 R (page.63) 3739 0 R (page.64) 3743 0 R (page.65) 3747 0 R (page.66) 3764 0 R (page.67) 3778 0 R (page.68) 3807 0 R (page.69) 3866 0 R (page.7) 1690 0 R (page.70) 3876 0 R (page.71) 3910 0 R (page.72) 3931 0 R (page.73) 3953 0 R (page.74) 3965 0 R (page.75) 3985 0 R (page.76) 4009 0 R (page.77) 4044 0 R (page.78) 4061 0 R (page.79) 4077 0 R (page.8) 1776 0 R (page.80) 4098 0 R (page.81) 4115 0 R (page.82) 4123 0 R (page.83) 4154 0 R (page.84) 4184 0 R (page.85) 4214 0 R (page.86) 4243 0 R (page.87) 4269 0 R (page.88) 4303 0 R (page.89) 4329 0 R (page.9) 2069 0 R (page.90) 4361 0 R (page.91) 4413 0 R (page.92) 4441 0 R (page.93) 4478 0 R (page.94) 4508 0 R (page.95) 4543 0 R (page.96) 4555 0 R (page.97) 4582 0 R (page.98) 4601 0 R (page.99) 4620 0 R (param-LDAPBaseDN) 2425 0 R (param-LDAPbinddn) 2420 0 R (param-LDAPmailattribute) 2435 0 R (param-LDAPserver) 2409 0 R (param-LDAPuidattribute) 2430 0 R (param-loginmethod) 2401 0 R (parameters) 1373 0 R (paranoid-security) 1746 0 R (patch-viewer) 1252 0 R (patches) 1752 0 R (patchviewer) 1652 0 R (patchviewer_bonsai_lxr) 1658 0 R (patchviewer_collapse) 1656 0 R (patchviewer_context) 1655 0 R (patchviewer_diff) 1654 0 R (patchviewer_link) 1657 0 R (patchviewer_unified_diff) 1659 0 R (patchviewer_view) 1653 0 R (permissionsettings) 1668 0 R (postgresql) 1240 0 R (products) 1379 0 R (pronouns) 1647 0 R (query) 1645 0 R (quicksearch) 1662 0 R (quips) 1396 0 R (reporting) 1669 0 R (reports) 1670 0 R (scm) 1539 0 R (security) 1508 0 R (security-bugzilla) 1520 0 R (security-bugzilla-charset) 1521 0 R (security-bugzilla-charset-ex) 1795 0 R (security-mysql) 1513 0 R (security-mysql-account) 1514 0 R (security-mysql-account-anonymous) 1793 0 R (security-mysql-account-root) 1792 0 R (security-mysql-network) 1516 0 R (security-mysql-network-ex) 1794 0 R (security-mysql-root) 1515 0 R (security-os) 1509 0 R (security-os-accounts) 1511 0 R (security-os-chroot) 1512 0 R (security-os-ports) 1510 0 R (security-webserver) 1517 0 R (security-webserver-access) 1518 0 R (security-webserver-mod-throttle) 1519 0 R (svn) 1540 0 R (table.1) 1882 0 R (table.2) 3597 0 R (table.3) 3802 0 R (table.4) 3920 0 R (table.5) 3947 0 R (table.6) 3968 0 R (table.7) 4490 0 R (template-directory) 1524 0 R (template-edit) 1526 0 R (template-formats) 1527 0 R (template-http-accept) 1529 0 R (template-method) 1525 0 R (template-specific) 1528 0 R (tinderbox) 1541 0 R (trbl-bundleBugzilla) 1685 0 R (trbl-dbdSponge) 1686 0 R (trbl-index) 1750 0 R (trbl-passwd-encryption) 1751 0 R (trbl-perlmodule) 1684 0 R (trbl-relogin-everyone) 1748 0 R (trbl-relogin-everyone-restrict) 1797 0 R (trbl-relogin-everyone-share) 1796 0 R (trbl-testserver) 1683 0 R (trouble-filetemp) 1747 0 R (troubleshooting) 1681 0 R (upgrade-cvs) 1504 0 R (upgrade-patches) 1506 0 R (upgrade-tarball) 1505 0 R (upgrading) 1501 0 R (upgrading-completion) 1507 0 R (upgrading-methods) 1503 0 R (upgrading-version-defns) 1502 0 R (useradmin) 1374 0 R (userpreferences) 1665 0 R (using) 1640 0 R (using-intro) 1641 0 R (versions) 1381 0 R (voting) 1395 0 R (whining) 1675 0 R (whining-overview) 1676 0 R (whining-query) 1678 0 R (whining-schedule) 1677 0 R (win32-code-changes) 1357 0 R (win32-http) 1358 0 R (win32-perl) 1355 0 R (win32-perl-modules) 1356 0 R] +5110 0 obj << +/Names [(1.0) 2 0 R (10.0) 638 0 R (10.32.1) 642 0 R (10.33.1) 646 0 R (10.34.1) 650 0 R (10.35.1) 654 0 R (10.36.1) 658 0 R (10.36.63.2) 662 0 R (10.36.63.40.3) 666 0 R (10.36.63.41.3) 670 0 R (10.36.63.42.3) 674 0 R (10.37.1) 678 0 R (10.38.1) 682 0 R (10.39.1) 686 0 R (10.39.64.2) 690 0 R (10.39.65.2) 694 0 R (10.39.66.2) 698 0 R (10.39.67.2) 702 0 R (10.39.68.2) 706 0 R (10.39.69.2) 710 0 R (10.39.70.2) 714 0 R (10.40.1) 718 0 R (10.40.71.2) 722 0 R (10.40.72.2) 726 0 R (10.40.73.2) 730 0 R (10.40.74.2) 734 0 R (10.41.1) 738 0 R (10.41.75.2) 742 0 R (10.41.76.2) 746 0 R (10.41.77.2) 750 0 R (10.42.1) 754 0 R (10.42.78.2) 758 0 R (10.42.79.2) 762 0 R (10.42.79.43.3) 766 0 R (10.42.79.44.3) 770 0 R (10.43.1) 774 0 R (10.44.1) 778 0 R (10.44.80.2) 782 0 R (10.44.81.2) 786 0 R (10.44.82.2) 790 0 R (10.44.83.2) 794 0 R (100) 1867 0 R (1000) 2662 0 R (1001) 2663 0 R (1002) 2664 0 R (1003) 2665 0 R (1004) 2666 0 R (1005) 2667 0 R (1006) 2668 0 R (1008) 2669 0 R (1009) 2670 0 R (101) 1868 0 R (1010) 2671 0 R (1012) 2672 0 R (1013) 2673 0 R (1014) 2674 0 R (1015) 2675 0 R (1017) 2676 0 R (1018) 2677 0 R (1019) 2678 0 R (102) 1869 0 R (1020) 2679 0 R (1022) 2680 0 R (1023) 2681 0 R (1024) 2682 0 R (1025) 2683 0 R (1026) 2684 0 R (1027) 2685 0 R (1029) 2690 0 R (103) 1870 0 R (1031) 2691 0 R (1032) 2692 0 R (1033) 2693 0 R (1034) 2694 0 R (1035) 2695 0 R (1036) 2696 0 R (1038) 2697 0 R (1039) 2698 0 R (104) 1871 0 R (1040) 2699 0 R (1041) 2700 0 R (1043) 2701 0 R (1044) 2702 0 R (1045) 2703 0 R (1046) 2704 0 R (1048) 2705 0 R (1049) 2706 0 R (105) 1872 0 R (1050) 2707 0 R (1052) 2708 0 R (1053) 2709 0 R (1054) 2710 0 R (1056) 2716 0 R (1057) 2717 0 R (1058) 2718 0 R (106) 1873 0 R (1060) 2719 0 R (1061) 2720 0 R (1062) 2721 0 R (1063) 2722 0 R (1064) 2723 0 R (1065) 2724 0 R (1067) 2725 0 R (1068) 2726 0 R (1069) 2727 0 R (107) 1874 0 R (1070) 2728 0 R (1072) 2729 0 R (1073) 2730 0 R (1074) 2731 0 R (1079) 2732 0 R (108) 1875 0 R (1080) 2733 0 R (1081) 2734 0 R (1086) 2739 0 R (1087) 2740 0 R (1088) 2741 0 R (1089) 2742 0 R (1090) 2743 0 R (1091) 2744 0 R (1092) 2745 0 R (1093) 2746 0 R (1094) 2747 0 R (1095) 2748 0 R (1098) 2749 0 R (1099) 2750 0 R (11.0) 798 0 R (1100) 2751 0 R (1101) 2752 0 R (1102) 2753 0 R (1103) 2754 0 R (1104) 2755 0 R (1105) 2756 0 R (1106) 2757 0 R (1107) 2758 0 R (1108) 2759 0 R (1109) 2760 0 R (111) 1876 0 R (1110) 2761 0 R (1111) 2762 0 R (1112) 2763 0 R (1113) 2764 0 R (1114) 2765 0 R (1115) 2766 0 R (1116) 2767 0 R (1117) 2768 0 R (1118) 2769 0 R (1119) 2775 0 R (1120) 2776 0 R (1121) 2777 0 R (1122) 2778 0 R (1123) 2779 0 R (1124) 2780 0 R (1125) 2781 0 R (1126) 2782 0 R (1127) 2783 0 R (1128) 2784 0 R (1129) 2785 0 R (113) 1877 0 R (1130) 2786 0 R (1131) 2787 0 R (1132) 2788 0 R (1133) 2789 0 R (1134) 2790 0 R (1135) 2791 0 R (1136) 2792 0 R (1137) 2793 0 R (1138) 2794 0 R (1139) 2795 0 R (114) 1878 0 R (1140) 2796 0 R (1141) 2797 0 R (1142) 2798 0 R (1143) 2799 0 R (1144) 2800 0 R (1145) 2801 0 R (1146) 2802 0 R (1147) 2803 0 R (1148) 2804 0 R (1149) 2805 0 R (115) 1828 0 R (1150) 2806 0 R (1153) 2807 0 R (1155) 2809 0 R (1156) 2810 0 R (1157) 2811 0 R (1158) 2812 0 R (1159) 2813 0 R (1160) 2814 0 R (1161) 2815 0 R (1162) 2816 0 R (1163) 2822 0 R (1164) 2774 0 R (1167) 2823 0 R (1168) 2824 0 R (1169) 2825 0 R (1170) 2826 0 R (1171) 2827 0 R (1172) 2828 0 R (1173) 2829 0 R (1174) 2830 0 R (1175) 2831 0 R (1176) 2832 0 R (1177) 2833 0 R (1180) 2834 0 R (1181) 2835 0 R (1182) 2836 0 R (1183) 2837 0 R (1184) 2838 0 R (1185) 2839 0 R (1186) 2840 0 R (1187) 2841 0 R (1188) 2842 0 R (1191) 2843 0 R (1192) 2844 0 R (1193) 2850 0 R (1194) 2851 0 R (1195) 2852 0 R (1196) 2853 0 R (1197) 2854 0 R (1198) 2855 0 R (1199) 2856 0 R (12.0) 802 0 R (12.45.1) 806 0 R (12.46.1) 810 0 R (12.47.1) 814 0 R (12.48.1) 818 0 R (12.49.1) 822 0 R (12.50.1) 826 0 R (12.51.1) 830 0 R (12.52.1) 834 0 R (12.53.1) 838 0 R (12.54.1) 842 0 R (12.55.1) 846 0 R (1200) 2857 0 R (1201) 2858 0 R (1202) 2859 0 R (1203) 2860 0 R (1206) 2861 0 R (1207) 2862 0 R (1208) 2863 0 R (1209) 2864 0 R (1212) 2865 0 R (1213) 2866 0 R (1214) 2867 0 R (1215) 2868 0 R (1216) 2869 0 R (1217) 2870 0 R (1218) 2871 0 R (1219) 2872 0 R (1220) 2873 0 R (1221) 2874 0 R (1222) 2875 0 R (1223) 2876 0 R (1224) 2877 0 R (1225) 2878 0 R (1226) 2879 0 R (1227) 2880 0 R (1228) 2881 0 R (1229) 2882 0 R (1230) 2883 0 R (1231) 2884 0 R (1232) 2885 0 R (1233) 2886 0 R (1234) 2887 0 R (1235) 2888 0 R (1236) 2889 0 R (1237) 2890 0 R (1238) 2891 0 R (1243) 2896 0 R (1244) 2897 0 R (1246) 2898 0 R (1247) 2899 0 R (1248) 2900 0 R (1249) 2901 0 R (1251) 2849 0 R (1253) 2902 0 R (1254) 2903 0 R (1255) 2904 0 R (1257) 2905 0 R (1258) 2906 0 R (1259) 2907 0 R (1260) 2908 0 R (1261) 2909 0 R (1262) 2910 0 R (1263) 2911 0 R (1266) 2912 0 R (1267) 2913 0 R (1268) 2914 0 R (1269) 2915 0 R (1270) 2916 0 R (1271) 2917 0 R (1272) 2918 0 R (1273) 2919 0 R (1274) 2920 0 R (1275) 2921 0 R (1276) 2922 0 R (1279) 2923 0 R (1282) 2924 0 R (1283) 2925 0 R (1284) 2926 0 R (1285) 2927 0 R (1286) 2928 0 R (1287) 2929 0 R (1288) 2930 0 R (1289) 2931 0 R (1290) 2938 0 R (1291) 2939 0 R (1292) 2940 0 R (1293) 2941 0 R (1294) 2942 0 R (1295) 2943 0 R (1298) 2944 0 R (1299) 2945 0 R (13.0) 850 0 R (13.56.1) 854 0 R (13.57.1) 858 0 R (1300) 2946 0 R (1301) 2947 0 R (1302) 2948 0 R (1305) 2949 0 R (1306) 2950 0 R (1307) 2951 0 R (1308) 2952 0 R (1309) 2953 0 R (1312) 2954 0 R (1313) 2955 0 R (1316) 2957 0 R (1319) 2959 0 R (1322) 2961 0 R (1323) 2962 0 R (1324) 2963 0 R (1325) 2964 0 R (1326) 2965 0 R (1327) 2966 0 R (1328) 2967 0 R (1329) 2972 0 R (1330) 2973 0 R (1331) 2974 0 R (1332) 2975 0 R (1333) 2937 0 R (1335) 2976 0 R (1336) 2977 0 R (1337) 2978 0 R (1338) 2979 0 R (1339) 2980 0 R (1340) 2981 0 R (1341) 2982 0 R (1342) 2983 0 R (1343) 2984 0 R (1344) 2985 0 R (1345) 2986 0 R (1346) 2987 0 R (1347) 2988 0 R (1348) 2989 0 R (1349) 2990 0 R (1350) 2991 0 R (1351) 2992 0 R (1352) 2993 0 R (1355) 2995 0 R (1356) 2996 0 R (1357) 2997 0 R (1360) 2999 0 R (1361) 3000 0 R (1364) 3002 0 R (1365) 3003 0 R (1366) 3004 0 R (1367) 3005 0 R (1368) 3006 0 R (1369) 3007 0 R (1372) 3009 0 R (1375) 3015 0 R (1376) 3016 0 R (1379) 3018 0 R (1380) 3019 0 R (1381) 3020 0 R (1382) 3021 0 R (1385) 3022 0 R (1386) 3023 0 R (1387) 3024 0 R (1388) 3025 0 R (1389) 3026 0 R (1390) 3027 0 R (1391) 3028 0 R (1392) 3029 0 R (1395) 3030 0 R (1396) 3031 0 R (1397) 3032 0 R (14.0) 862 0 R (14.58.1) 866 0 R (14.59.1) 870 0 R (14.60.1) 874 0 R (1400) 3033 0 R (1401) 3034 0 R (1402) 3035 0 R (1403) 3036 0 R (1404) 3037 0 R (1405) 3038 0 R (1406) 3039 0 R (1407) 3040 0 R (1408) 3041 0 R (1409) 3046 0 R (1410) 3047 0 R (1411) 3048 0 R (1412) 3049 0 R (1413) 3050 0 R (1414) 3051 0 R (1415) 3052 0 R (1418) 3053 0 R (1419) 3054 0 R (1420) 3055 0 R (1421) 3056 0 R (1422) 3057 0 R (1423) 3058 0 R (1426) 3059 0 R (1427) 3060 0 R (1428) 3061 0 R (1429) 3062 0 R (1430) 3063 0 R (1431) 3064 0 R (1432) 3065 0 R (1433) 3066 0 R (1434) 3067 0 R (1435) 3068 0 R (1436) 3069 0 R (1437) 1398 0 R (1439) 3075 0 R (1440) 3076 0 R (1441) 3077 0 R (1442) 3078 0 R (1443) 3079 0 R (1444) 3080 0 R (1445) 3081 0 R (1446) 3082 0 R (1447) 3083 0 R (1448) 3084 0 R (1449) 3085 0 R (1450) 3086 0 R (1451) 3087 0 R (1452) 3088 0 R (1453) 3089 0 R (1454) 3090 0 R (1455) 3091 0 R (1456) 3092 0 R (1457) 3093 0 R (1458) 3094 0 R (1459) 3095 0 R (1460) 3096 0 R (1461) 3097 0 R (1462) 3098 0 R (1463) 3099 0 R (1464) 1399 0 R (1466) 3100 0 R (1467) 3101 0 R (1468) 3102 0 R (1469) 3103 0 R (1470) 3104 0 R (1471) 3105 0 R (1472) 3106 0 R (1473) 3107 0 R (1474) 1400 0 R (1476) 3112 0 R (1477) 3113 0 R (1478) 3074 0 R (1479) 3114 0 R (1480) 3115 0 R (1481) 3116 0 R (1482) 3117 0 R (1483) 3118 0 R (1484) 3119 0 R (1485) 3120 0 R (1486) 3121 0 R (1487) 3122 0 R (1488) 3123 0 R (1489) 3124 0 R (1490) 3125 0 R (1491) 3126 0 R (1492) 1497 0 R (1494) 1498 0 R (1496) 3127 0 R (1497) 3128 0 R (1498) 1499 0 R (15.0) 878 0 R (15.61.1) 882 0 R (15.62.1) 886 0 R (15.63.1) 890 0 R (15.64.1) 894 0 R (15.65.1) 898 0 R (15.66.1) 902 0 R (15.67.1) 906 0 R (15.68.1) 910 0 R (15.69.1) 914 0 R (15.70.1) 918 0 R (15.71.1) 922 0 R (15.72.1) 926 0 R (1500) 3129 0 R (1501) 3135 0 R (1502) 1500 0 R (1504) 3136 0 R (1505) 3137 0 R (1506) 3138 0 R (1507) 3139 0 R (1508) 3140 0 R (1509) 3141 0 R (1510) 3142 0 R (1511) 3143 0 R (1512) 3144 0 R (1513) 3145 0 R (1514) 3146 0 R (1515) 3147 0 R (1518) 3148 0 R (1519) 3149 0 R (1520) 3150 0 R (1521) 3151 0 R (1522) 3152 0 R (1523) 3153 0 R (1526) 3159 0 R (1527) 3160 0 R (1528) 3161 0 R (1529) 3162 0 R (1530) 3163 0 R (1531) 3164 0 R (1534) 3165 0 R (1535) 3166 0 R (1536) 3167 0 R (1537) 3168 0 R (1539) 3170 0 R (1540) 3171 0 R (1542) 3173 0 R (1543) 3174 0 R (1545) 3176 0 R (1547) 3178 0 R (1548) 3179 0 R (1549) 3184 0 R (1550) 3158 0 R (1554) 3185 0 R (1555) 3186 0 R (1556) 3187 0 R (1557) 3188 0 R (1558) 3189 0 R (1559) 3190 0 R (1560) 3191 0 R (1561) 3192 0 R (1562) 3193 0 R (1563) 3194 0 R (1564) 3195 0 R (1565) 3196 0 R (1566) 3197 0 R (1567) 3198 0 R (1570) 3199 0 R (1571) 3200 0 R (1572) 3205 0 R (1573) 3206 0 R (1574) 3207 0 R (1575) 3208 0 R (1576) 3209 0 R (1577) 3210 0 R (1578) 3211 0 R (1579) 3212 0 R (1580) 3213 0 R (1581) 3214 0 R (1582) 3215 0 R (1583) 3216 0 R (1584) 3217 0 R (1585) 3218 0 R (1586) 3219 0 R (1587) 3220 0 R (1588) 3221 0 R (1589) 3222 0 R (1590) 3223 0 R (1593) 3224 0 R (1594) 3225 0 R (1595) 3226 0 R (1596) 3227 0 R (1597) 3228 0 R (1598) 3229 0 R (1599) 3230 0 R (16.0) 930 0 R (1600) 3231 0 R (1601) 3232 0 R (1602) 3233 0 R (1603) 3238 0 R (1604) 3239 0 R (1605) 3240 0 R (1606) 3241 0 R (1610) 3243 0 R (1611) 3244 0 R (1612) 3245 0 R (1613) 3246 0 R (1614) 3247 0 R (1615) 3248 0 R (1616) 3249 0 R (1617) 3250 0 R (1618) 3251 0 R (1619) 3252 0 R (1622) 3257 0 R (1623) 3258 0 R (1624) 3259 0 R (1629) 3260 0 R (1632) 3261 0 R (1634) 3263 0 R (1635) 3264 0 R (1636) 3265 0 R (1637) 3266 0 R (1639) 3268 0 R (1640) 3269 0 R (1641) 3270 0 R (1642) 3271 0 R (1643) 3272 0 R (1644) 3273 0 R (1645) 3274 0 R (1646) 3275 0 R (1647) 3276 0 R (1648) 3277 0 R (1649) 3278 0 R (1653) 3279 0 R (1654) 3280 0 R (1659) 3288 0 R (1665) 3290 0 R (1666) 3291 0 R (1667) 3292 0 R (1668) 3293 0 R (1672) 3294 0 R (1673) 3295 0 R (1674) 3296 0 R (1675) 3297 0 R (1676) 3298 0 R (1680) 3299 0 R (1681) 3300 0 R (1683) 3301 0 R (1684) 3302 0 R (1685) 3303 0 R (1686) 3304 0 R (1687) 3305 0 R (1688) 3306 0 R (1693) 3308 0 R (1697) 3310 0 R (1698) 3311 0 R (1699) 3312 0 R (17.0) 934 0 R (17.72.84.2) 938 0 R (1704) 3317 0 R (1705) 3318 0 R (1706) 3319 0 R (1707) 3320 0 R (1711) 3323 0 R (1712) 3324 0 R (1713) 3325 0 R (1714) 3326 0 R (1715) 3327 0 R (1716) 3328 0 R (1718) 3329 0 R (1719) 3330 0 R (1720) 3331 0 R (1721) 3332 0 R (1722) 3333 0 R (1723) 3334 0 R (1725) 3335 0 R (1726) 3336 0 R (1727) 3337 0 R (1728) 3338 0 R (1729) 3339 0 R (1730) 3340 0 R (1731) 3341 0 R (1732) 3342 0 R (1733) 3343 0 R (1734) 3344 0 R (1735) 3345 0 R (1736) 3346 0 R (1738) 3347 0 R (1739) 3348 0 R (1740) 3349 0 R (1741) 3350 0 R (1742) 3351 0 R (1743) 3352 0 R (1744) 3353 0 R (1745) 3354 0 R (1746) 3355 0 R (1747) 3356 0 R (1748) 3357 0 R (1749) 3358 0 R (1750) 3359 0 R (1752) 3360 0 R (1753) 3361 0 R (1754) 3362 0 R (1755) 3363 0 R (1756) 3364 0 R (1757) 3365 0 R (1758) 3366 0 R (1759) 3367 0 R (176) 1886 0 R (1760) 3368 0 R (1762) 3369 0 R (1763) 3370 0 R (1764) 3371 0 R (1765) 3372 0 R (1766) 3373 0 R (1767) 3374 0 R (1768) 3375 0 R (1769) 3376 0 R (177) 1887 0 R (1770) 3377 0 R (1771) 3378 0 R (1772) 3379 0 R (1773) 3380 0 R (1774) 3381 0 R (1775) 3382 0 R (1776) 3383 0 R (1777) 3384 0 R (1778) 3385 0 R (1779) 3386 0 R (1780) 3387 0 R (1781) 3388 0 R (1782) 3389 0 R (1783) 3390 0 R (1784) 3391 0 R (1785) 3392 0 R (1786) 3393 0 R (1787) 3399 0 R (1788) 3400 0 R (1789) 3401 0 R (1790) 3402 0 R (1791) 3403 0 R (1792) 3404 0 R (1793) 3405 0 R (1794) 3406 0 R (1795) 3407 0 R (18.0) 942 0 R (18.72.85.2) 946 0 R (18.72.85.45.3) 950 0 R (1800) 3409 0 R (1801) 3410 0 R (1802) 3411 0 R (1804) 3413 0 R (1805) 3414 0 R (1806) 3415 0 R (1807) 3416 0 R (1812) 3417 0 R (1813) 3418 0 R (1817) 3420 0 R (1818) 3421 0 R (1819) 3422 0 R (182) 1892 0 R (1820) 3423 0 R (1825) 3429 0 R (1826) 3430 0 R (183) 1893 0 R (1830) 3432 0 R (1831) 3433 0 R (1832) 3434 0 R (1833) 3435 0 R (1834) 3436 0 R (1835) 3437 0 R (1836) 3438 0 R (1837) 3439 0 R (1838) 3440 0 R (1839) 3441 0 R (184) 1894 0 R (1842) 3442 0 R (1843) 3443 0 R (1844) 3444 0 R (1845) 3445 0 R (1846) 3446 0 R (1847) 3447 0 R (1848) 3448 0 R (1849) 3449 0 R (185) 1897 0 R (1850) 3450 0 R (1851) 3451 0 R (1852) 3452 0 R (1853) 3453 0 R (1854) 3458 0 R (1855) 3459 0 R (1856) 3460 0 R (1857) 3461 0 R (1858) 3462 0 R (1859) 3463 0 R (1860) 3464 0 R (1861) 3465 0 R (1862) 3466 0 R (1863) 3467 0 R (1864) 3468 0 R (1865) 3469 0 R (1868) 3470 0 R (1869) 3471 0 R (187) 1900 0 R (1870) 3472 0 R (1871) 3473 0 R (1872) 3474 0 R (1873) 3475 0 R (1874) 3476 0 R (1875) 3477 0 R (1876) 3478 0 R (1877) 3479 0 R (188) 1901 0 R (1880) 3484 0 R (1881) 3485 0 R (1882) 3486 0 R (1883) 3487 0 R (1884) 3488 0 R (1885) 3489 0 R (1886) 3490 0 R (1887) 3491 0 R (1888) 3492 0 R (1889) 3493 0 R (189) 1902 0 R (1890) 3494 0 R (1891) 3495 0 R (1892) 3496 0 R (1893) 3497 0 R (1894) 3498 0 R (1895) 3499 0 R (1896) 3500 0 R (1899) 3501 0 R (19.0) 954 0 R (19.72.86.2) 958 0 R (19.72.87.2) 962 0 R (19.72.88.2) 966 0 R (190) 1903 0 R (1900) 3502 0 R (1901) 3503 0 R (1902) 3504 0 R (1903) 3505 0 R (1904) 3506 0 R (1905) 3507 0 R (1906) 3508 0 R (1907) 3509 0 R (1908) 3510 0 R (1909) 3511 0 R (191) 1904 0 R (1910) 3512 0 R (1911) 3513 0 R (1912) 3514 0 R (1913) 3515 0 R (1914) 3516 0 R (1915) 3517 0 R (1916) 3518 0 R (1917) 3524 0 R (1918) 3525 0 R (1919) 3526 0 R (192) 1905 0 R (1920) 3527 0 R (1921) 3528 0 R (1922) 3529 0 R (1923) 3530 0 R (1924) 3531 0 R (1925) 3532 0 R (1926) 3533 0 R (1927) 3534 0 R (1928) 3535 0 R (1929) 3536 0 R (193) 1906 0 R (1930) 3537 0 R (1931) 3538 0 R (1932) 3539 0 R (1933) 3540 0 R (1934) 3541 0 R (1935) 3542 0 R (1936) 3543 0 R (1937) 3544 0 R (1938) 3545 0 R (1939) 3546 0 R (194) 1907 0 R (1940) 3547 0 R (1941) 3548 0 R (1944) 3553 0 R (1945) 3554 0 R (1946) 3555 0 R (1947) 3556 0 R (1948) 3557 0 R (1949) 3558 0 R (195) 1908 0 R (1950) 3559 0 R (1953) 3560 0 R (1954) 3561 0 R (1955) 3562 0 R (1956) 3563 0 R (1957) 3564 0 R (1958) 3565 0 R (1959) 3566 0 R (1960) 3567 0 R (1961) 3568 0 R (1962) 3569 0 R (1963) 3570 0 R (1964) 3571 0 R (1965) 3572 0 R (1966) 3573 0 R (1967) 3574 0 R (1968) 3575 0 R (1969) 3576 0 R (1970) 3577 0 R (1975) 3579 0 R (1976) 3584 0 R (1977) 3585 0 R (1978) 3586 0 R (1979) 3587 0 R (198) 1910 0 R (1980) 3588 0 R (1981) 3589 0 R (1982) 3590 0 R (1983) 3591 0 R (1984) 3592 0 R (1985) 3593 0 R (1986) 3594 0 R (1987) 3595 0 R (1988) 3596 0 R (1989) 3597 0 R (1990) 3598 0 R (1991) 3599 0 R (1992) 3600 0 R (1993) 3601 0 R (1994) 3602 0 R (1995) 3603 0 R (1996) 3604 0 R (1997) 3605 0 R (1998) 3606 0 R (1999) 3607 0 R (2.0) 6 0 R (20.0) 970 0 R (20.72.89.2) 974 0 R (20.72.90.2) 978 0 R (20.72.91.2) 982 0 R (20.72.92.2) 986 0 R (2000) 3608 0 R (2001) 3609 0 R (2002) 3610 0 R (2003) 3611 0 R (2004) 3612 0 R (2005) 3613 0 R (2006) 3614 0 R (2007) 3615 0 R (2008) 3616 0 R (2009) 3617 0 R (201) 1912 0 R (2010) 3623 0 R (2011) 3624 0 R (2012) 3625 0 R (2013) 3626 0 R (2014) 3627 0 R (2015) 3628 0 R (2018) 3629 0 R (2019) 3630 0 R (2020) 3631 0 R (2021) 3632 0 R (2022) 3633 0 R (2023) 3634 0 R (2024) 3635 0 R (2025) 3636 0 R (2026) 3637 0 R (2027) 3638 0 R (2028) 3639 0 R (2029) 3640 0 R (2030) 3645 0 R (2031) 3622 0 R (2032) 3646 0 R (2033) 3647 0 R (2034) 3648 0 R (2035) 3649 0 R (2036) 3650 0 R (2037) 3651 0 R (2038) 3652 0 R (2039) 3653 0 R (204) 1914 0 R (2042) 3654 0 R (2043) 3655 0 R (2044) 3656 0 R (2045) 3657 0 R (2046) 3658 0 R (2047) 3659 0 R (2048) 3660 0 R (2049) 3666 0 R (2050) 3667 0 R (2053) 3668 0 R (2054) 3669 0 R (2055) 3670 0 R (2056) 3671 0 R (2057) 3672 0 R (2058) 3673 0 R (2059) 3674 0 R (2060) 3675 0 R (2061) 1534 0 R (2063) 3676 0 R (2064) 3677 0 R (2065) 3678 0 R (2066) 3679 0 R (2067) 3680 0 R (2068) 3681 0 R (2069) 3682 0 R (207) 1916 0 R (2070) 3689 0 R (2071) 3665 0 R (2073) 3690 0 R (2074) 3691 0 R (2075) 3692 0 R (2076) 3693 0 R (2077) 3694 0 R (2078) 3695 0 R (2079) 3696 0 R (2080) 3697 0 R (2081) 3698 0 R (2082) 3699 0 R (2083) 3700 0 R (2084) 3701 0 R (2085) 3702 0 R (2086) 3703 0 R (2087) 3704 0 R (2088) 1535 0 R (2090) 3705 0 R (2091) 3706 0 R (2092) 3707 0 R (2093) 3708 0 R (2094) 3709 0 R (2095) 3710 0 R (2096) 3711 0 R (2097) 3712 0 R (2098) 3688 0 R (21.0) 990 0 R (21.72.93.2) 994 0 R (21.72.94.2) 998 0 R (210) 1918 0 R (2103) 3729 0 R (2108) 3733 0 R (2109) 3734 0 R (2110) 3735 0 R (2111) 3736 0 R (2112) 3737 0 R (2113) 3738 0 R (2114) 3739 0 R (2115) 3740 0 R (2118) 3745 0 R (2119) 3746 0 R (2120) 3747 0 R (2121) 3748 0 R (2122) 3749 0 R (2125) 3750 0 R (2126) 3751 0 R (2129) 3752 0 R (213) 1920 0 R (2130) 3753 0 R (2131) 3754 0 R (2136) 3760 0 R (2137) 3761 0 R (2140) 3762 0 R (2141) 3763 0 R (2142) 3764 0 R (2143) 3765 0 R (2144) 3766 0 R (2145) 3767 0 R (2146) 3768 0 R (2147) 3769 0 R (2148) 3770 0 R (2149) 3771 0 R (2150) 3772 0 R (2151) 3773 0 R (2152) 3774 0 R (2153) 3775 0 R (2156) 3776 0 R (2157) 3777 0 R (2158) 3778 0 R (2159) 3779 0 R (2160) 3780 0 R (2161) 3781 0 R (2162) 3782 0 R (217) 1921 0 R (218) 1922 0 R (2183) 3789 0 R (2184) 3790 0 R (2185) 3791 0 R (2186) 3792 0 R (2187) 3793 0 R (2188) 3794 0 R (2189) 3795 0 R (219) 1923 0 R (2190) 3796 0 R (2191) 3797 0 R (2192) 3798 0 R (2193) 3799 0 R (2194) 3800 0 R (2195) 3801 0 R (2196) 3802 0 R (2197) 3803 0 R (2198) 3804 0 R (2199) 3805 0 R (22.0) 1002 0 R (22.72.95.2) 1006 0 R (220) 1924 0 R (2200) 3806 0 R (2201) 3807 0 R (2202) 3808 0 R (2203) 3809 0 R (2204) 3810 0 R (2205) 3811 0 R (2206) 3812 0 R (2207) 3813 0 R (2208) 3814 0 R (2209) 3815 0 R (2210) 3816 0 R (2211) 3817 0 R (2212) 3818 0 R (2213) 3819 0 R (2214) 3820 0 R (2215) 3821 0 R (2216) 3822 0 R (2217) 3823 0 R (2218) 3824 0 R (2219) 3825 0 R (2220) 3826 0 R (2221) 3827 0 R (2222) 3828 0 R (2223) 3829 0 R (2224) 3830 0 R (2225) 3831 0 R (2226) 3832 0 R (2227) 3833 0 R (2228) 3834 0 R (2229) 3835 0 R (223) 1928 0 R (2230) 3836 0 R (2231) 3837 0 R (2232) 3838 0 R (2233) 3839 0 R (2236) 3840 0 R (2238) 3842 0 R (2239) 3843 0 R (2242) 3848 0 R (2247) 3849 0 R (2248) 3850 0 R (2249) 3851 0 R (2250) 3852 0 R (2253) 3853 0 R (2254) 3858 0 R (2255) 3859 0 R (2256) 3860 0 R (2257) 3861 0 R (2258) 3862 0 R (2259) 3863 0 R (226) 1929 0 R (2260) 3864 0 R (2261) 3865 0 R (2262) 3866 0 R (2263) 3867 0 R (2264) 3868 0 R (2265) 3869 0 R (2266) 3870 0 R (2267) 3871 0 R (2268) 3872 0 R (2269) 3873 0 R (227) 1930 0 R (2272) 3874 0 R (2275) 3875 0 R (2276) 3876 0 R (2277) 3877 0 R (2278) 3878 0 R (2279) 3879 0 R (228) 1931 0 R (2280) 3880 0 R (2281) 3881 0 R (2282) 3882 0 R (2283) 3883 0 R (2284) 3884 0 R (2285) 3885 0 R (2286) 3886 0 R (2287) 3887 0 R (229) 1932 0 R (2290) 3892 0 R (2291) 3893 0 R (2292) 3894 0 R (2293) 3895 0 R (2294) 3896 0 R (2295) 3897 0 R (2298) 3898 0 R (2299) 3899 0 R (23.0) 1010 0 R (23.72.96.2) 1014 0 R (230) 1933 0 R (2300) 3900 0 R (231) 1934 0 R (2319) 3902 0 R (232) 1935 0 R (2322) 3903 0 R (2323) 3904 0 R (2324) 3905 0 R (2325) 3906 0 R (2326) 3907 0 R (2327) 3912 0 R (2328) 3913 0 R (2329) 3914 0 R (233) 1936 0 R (2330) 3915 0 R (2331) 3916 0 R (2332) 3917 0 R (2333) 3918 0 R (2334) 3919 0 R (2335) 3920 0 R (2336) 3921 0 R (2337) 3922 0 R (2338) 3923 0 R (234) 1937 0 R (2341) 3924 0 R (2342) 3925 0 R (2343) 3926 0 R (2353) 3928 0 R (2356) 3929 0 R (2359) 3935 0 R (2362) 3936 0 R (2365) 3937 0 R (2368) 3938 0 R (2369) 3939 0 R (237) 1938 0 R (2372) 3940 0 R (2375) 3941 0 R (2376) 1661 0 R (2378) 3942 0 R (2379) 3947 0 R (238) 1939 0 R (2380) 3948 0 R (2389) 3950 0 R (239) 1940 0 R (2392) 3951 0 R (2393) 3952 0 R (2394) 3953 0 R (2395) 3954 0 R (2396) 3955 0 R (2399) 3956 0 R (24) 1801 0 R (24.0) 1018 0 R (24.72.97.2) 1022 0 R (24.72.98.2) 1026 0 R (240) 1941 0 R (2400) 3957 0 R (2403) 3958 0 R (2404) 3959 0 R (2405) 3960 0 R (2406) 3961 0 R (2407) 3962 0 R (2408) 3967 0 R (241) 1942 0 R (2411) 3968 0 R (2414) 3969 0 R (2415) 3970 0 R (2416) 3971 0 R (2419) 3972 0 R (2420) 3973 0 R (2421) 3974 0 R (2422) 3975 0 R (2423) 3976 0 R (2424) 3977 0 R (2425) 3978 0 R (2426) 3979 0 R (2427) 3980 0 R (2428) 3981 0 R (2429) 3982 0 R (2430) 3983 0 R (2431) 3984 0 R (2432) 3985 0 R (2433) 3986 0 R (2434) 3992 0 R (2435) 3993 0 R (2436) 3994 0 R (2437) 3995 0 R (2438) 3996 0 R (2439) 3997 0 R (244) 1943 0 R (2440) 3998 0 R (2441) 3999 0 R (2442) 4000 0 R (2443) 4001 0 R (2444) 4002 0 R (2445) 4003 0 R (2446) 4004 0 R (2447) 4005 0 R (2448) 4006 0 R (2449) 4007 0 R (245) 1944 0 R (2450) 4008 0 R (2451) 4009 0 R (2452) 4010 0 R (2453) 4011 0 R (2454) 4012 0 R (2455) 4013 0 R (2456) 4014 0 R (2457) 4015 0 R (2458) 4016 0 R (2459) 4017 0 R (2460) 4018 0 R (2461) 4019 0 R (2464) 4020 0 R (2467) 4021 0 R (247) 1946 0 R (2470) 4027 0 R (2471) 3991 0 R (2472) 4028 0 R (2473) 4029 0 R (2474) 4030 0 R (2477) 4031 0 R (2478) 4032 0 R (2479) 4033 0 R (248) 1947 0 R (2480) 4034 0 R (2481) 4035 0 R (2482) 4036 0 R (2483) 1672 0 R (2485) 4037 0 R (2486) 4042 0 R (2487) 4026 0 R (2488) 4043 0 R (2489) 4044 0 R (249) 1948 0 R (2490) 1673 0 R (2492) 4045 0 R (2493) 4046 0 R (2496) 4047 0 R (2497) 4048 0 R (2498) 4049 0 R (2499) 4050 0 R (25) 1802 0 R (25.0) 1030 0 R (25.72.100.2) 1038 0 R (25.72.101.2) 1042 0 R (25.72.99.2) 1034 0 R (2500) 4051 0 R (2501) 4052 0 R (2502) 4053 0 R (2503) 4054 0 R (2506) 4061 0 R (2507) 4062 0 R (2508) 4063 0 R (2509) 4064 0 R (2510) 4065 0 R (2511) 4066 0 R (2513) 4068 0 R (2514) 4069 0 R (2518) 4071 0 R (2519) 4072 0 R (252) 1954 0 R (2520) 4073 0 R (2523) 4074 0 R (2524) 4075 0 R (2525) 4076 0 R (2526) 4081 0 R (2527) 4060 0 R (2528) 4082 0 R (2529) 4083 0 R (253) 1955 0 R (2530) 4084 0 R (2533) 4085 0 R (2534) 4086 0 R (2535) 4087 0 R (2537) 4089 0 R (2538) 4090 0 R (2539) 4091 0 R (254) 1956 0 R (2540) 4092 0 R (2541) 4093 0 R (2542) 4098 0 R (2543) 1679 0 R (2545) 4099 0 R (2546) 4100 0 R (2547) 4101 0 R (255) 1957 0 R (2550) 4106 0 R (2551) 4107 0 R (2553) 4109 0 R (2557) 4111 0 R (2559) 4112 0 R (256) 1958 0 R (2563) 4114 0 R (2565) 4115 0 R (2566) 4116 0 R (257) 1959 0 R (2570) 4118 0 R (2572) 4119 0 R (2573) 4120 0 R (2574) 4121 0 R (2578) 4123 0 R (258) 1960 0 R (2580) 4124 0 R (2584) 4126 0 R (2586) 4127 0 R (2587) 4128 0 R (259) 1961 0 R (2591) 4130 0 R (2593) 4131 0 R (2594) 4132 0 R (2595) 4138 0 R (2596) 4139 0 R (2597) 4140 0 R (2598) 4141 0 R (26) 1803 0 R (26.0) 1046 0 R (26.72.102.2) 1050 0 R (260) 1962 0 R (2602) 4143 0 R (2604) 4144 0 R (2605) 4145 0 R (2606) 4146 0 R (2607) 4147 0 R (2608) 4148 0 R (2609) 4149 0 R (261) 1963 0 R (2610) 4150 0 R (2614) 4152 0 R (2615) 4153 0 R (2617) 4154 0 R (2618) 4155 0 R (2622) 4157 0 R (2623) 4158 0 R (2624) 4159 0 R (2626) 4160 0 R (2627) 4161 0 R (2628) 4137 0 R (2630) 4166 0 R (2631) 4167 0 R (2632) 4168 0 R (2633) 4169 0 R (2634) 4170 0 R (2635) 4171 0 R (2636) 4172 0 R (2637) 4173 0 R (2638) 4174 0 R (2639) 4175 0 R (264) 1964 0 R (2640) 4176 0 R (2641) 4177 0 R (2642) 4178 0 R (2643) 4179 0 R (2647) 4181 0 R (265) 1965 0 R (2652) 4183 0 R (2653) 4184 0 R (2655) 4185 0 R (2657) 4187 0 R (2661) 4189 0 R (2666) 4191 0 R (2668) 4197 0 R (2669) 4198 0 R (267) 1967 0 R (2673) 4200 0 R (2675) 4201 0 R (2677) 4203 0 R (268) 1968 0 R (2681) 4205 0 R (2686) 4207 0 R (2688) 4208 0 R (2689) 4209 0 R (269) 1969 0 R (2690) 4210 0 R (2694) 4212 0 R (2695) 4213 0 R (2697) 4214 0 R (2698) 4215 0 R (2699) 4216 0 R (27.0) 1054 0 R (27.72.103.2) 1058 0 R (27.72.104.2) 1062 0 R (270) 1970 0 R (2700) 4217 0 R (2701) 4218 0 R (2702) 4219 0 R (2703) 4220 0 R (2707) 4226 0 R (2709) 4227 0 R (271) 1971 0 R (2710) 4228 0 R (2714) 4230 0 R (2719) 4232 0 R (272) 1972 0 R (2721) 4233 0 R (2725) 4235 0 R (2726) 4236 0 R (2728) 4237 0 R (273) 1973 0 R (2732) 4239 0 R (2737) 4241 0 R (274) 1974 0 R (2742) 4243 0 R (2746) 4246 0 R (2750) 4252 0 R (2755) 4254 0 R (2760) 4256 0 R (2762) 4257 0 R (2763) 4258 0 R (2764) 4259 0 R (2765) 4260 0 R (2766) 4261 0 R (2767) 4262 0 R (2768) 4263 0 R (2769) 4264 0 R (277) 1977 0 R (2770) 4265 0 R (2771) 4266 0 R (2772) 4267 0 R (2773) 4268 0 R (2774) 4269 0 R (2775) 4270 0 R (2776) 4271 0 R (2777) 4272 0 R (2778) 4273 0 R (2779) 4274 0 R (278) 1978 0 R (2784) 4277 0 R (2786) 4278 0 R (2787) 4279 0 R (2788) 4280 0 R (2789) 4281 0 R (279) 1979 0 R (2790) 4286 0 R (2791) 4287 0 R (2795) 4289 0 R (2797) 4290 0 R (2798) 4291 0 R (2799) 4292 0 R (28) 1805 0 R (28.0) 1066 0 R (28.72.105.2) 1070 0 R (28.72.106.2) 1074 0 R (280) 1980 0 R (2800) 4293 0 R (2801) 4294 0 R (2802) 4295 0 R (2803) 4296 0 R (2804) 4297 0 R (2806) 4299 0 R (2807) 4300 0 R (2808) 4301 0 R (2809) 4302 0 R (281) 1981 0 R (2810) 4303 0 R (2811) 4304 0 R (2813) 4306 0 R (2817) 4312 0 R (2819) 4313 0 R (282) 1982 0 R (2820) 4314 0 R (2821) 4315 0 R (2822) 4316 0 R (2827) 4319 0 R (283) 1983 0 R (2830) 4321 0 R (2834) 4323 0 R (2836) 4324 0 R (284) 1984 0 R (2840) 4326 0 R (2842) 4327 0 R (2843) 4328 0 R (2844) 4329 0 R (2845) 4330 0 R (2846) 4331 0 R (2847) 4332 0 R (2848) 4333 0 R (2849) 4334 0 R (285) 1985 0 R (2850) 4335 0 R (2851) 4336 0 R (2852) 4337 0 R (2853) 4338 0 R (2854) 4339 0 R (2855) 4340 0 R (2856) 4345 0 R (2857) 4346 0 R (2858) 4347 0 R (2859) 4348 0 R (286) 1986 0 R (2860) 4349 0 R (2861) 4350 0 R (2862) 4351 0 R (2863) 4352 0 R (2864) 4353 0 R (2865) 4354 0 R (2869) 4356 0 R (287) 1990 0 R (2871) 4357 0 R (2872) 4358 0 R (2873) 4359 0 R (2874) 4360 0 R (2878) 4362 0 R (288) 1991 0 R (2883) 4364 0 R (2885) 4365 0 R (2886) 4366 0 R (2887) 4367 0 R (2888) 4368 0 R (2889) 4369 0 R (289) 1992 0 R (2890) 4370 0 R (2891) 4371 0 R (2892) 4372 0 R (2894) 4374 0 R (2895) 4375 0 R (2899) 4377 0 R (29.0) 1078 0 R (29.72.107.2) 1082 0 R (29.72.108.2) 1086 0 R (290) 1993 0 R (2901) 4378 0 R (2902) 4379 0 R (2903) 4380 0 R (2904) 4381 0 R (2905) 4382 0 R (2906) 4383 0 R (2907) 4384 0 R (2909) 4386 0 R (291) 1994 0 R (2913) 4388 0 R (2915) 4389 0 R (2916) 4390 0 R (2917) 4391 0 R (292) 1995 0 R (2921) 4400 0 R (2923) 4401 0 R (2924) 4402 0 R (2925) 4403 0 R (2926) 4404 0 R (2927) 4405 0 R (293) 1996 0 R (2931) 4407 0 R (2933) 4408 0 R (2934) 4409 0 R (2935) 4410 0 R (2936) 4411 0 R (294) 1997 0 R (2940) 4413 0 R (2942) 4414 0 R (2943) 4415 0 R (2944) 4416 0 R (2946) 4418 0 R (295) 1998 0 R (2950) 4420 0 R (2952) 4421 0 R (2954) 4398 0 R (2959) 4428 0 R (296) 1999 0 R (2964) 4430 0 R (2965) 4431 0 R (2967) 4432 0 R (2968) 4433 0 R (2969) 4434 0 R (297) 2000 0 R (2970) 4435 0 R (2971) 4436 0 R (2975) 4438 0 R (2977) 4439 0 R (2978) 4440 0 R (2979) 4441 0 R (298) 2001 0 R (2980) 4442 0 R (2981) 4443 0 R (2982) 4444 0 R (2983) 4445 0 R (2984) 4446 0 R (2985) 4447 0 R (2986) 4448 0 R (2987) 4449 0 R (2988) 4450 0 R (2989) 4451 0 R (299) 2002 0 R (2990) 4452 0 R (2992) 4454 0 R (2996) 4456 0 R (3.0) 10 0 R (30.0) 1090 0 R (30.72.109.2) 1094 0 R (300) 2003 0 R (3001) 4458 0 R (3003) 4464 0 R (3004) 4465 0 R (3005) 4466 0 R (3006) 4467 0 R (3007) 4468 0 R (3008) 4469 0 R (301) 2004 0 R (3012) 4471 0 R (3013) 4472 0 R (3015) 4473 0 R (302) 2005 0 R (3026) 4476 0 R (3027) 4477 0 R (3032) 4479 0 R (3034) 4480 0 R (3038) 4482 0 R (3039) 4483 0 R (304) 2007 0 R (3041) 4484 0 R (3042) 4485 0 R (3043) 4486 0 R (3044) 4487 0 R (3045) 4488 0 R (3047) 4463 0 R (305) 2008 0 R (3051) 4495 0 R (3053) 4496 0 R (3054) 4497 0 R (3055) 4498 0 R (3059) 4500 0 R (306) 2009 0 R (3061) 4501 0 R (3062) 4502 0 R (3063) 4503 0 R (3064) 4504 0 R (3068) 4506 0 R (3069) 4507 0 R (307) 2010 0 R (3070) 4508 0 R (3072) 4509 0 R (3073) 4510 0 R (3074) 4511 0 R (3078) 4513 0 R (308) 2011 0 R (3080) 4514 0 R (3081) 4515 0 R (3082) 4516 0 R (3083) 4517 0 R (3084) 4518 0 R (3085) 4519 0 R (3086) 4520 0 R (3087) 4521 0 R (3088) 4522 0 R (3089) 4523 0 R (309) 2012 0 R (3090) 4528 0 R (3091) 4529 0 R (3092) 4530 0 R (3093) 4531 0 R (3094) 4532 0 R (3095) 4533 0 R (3096) 4534 0 R (3099) 4539 0 R (31) 1806 0 R (310) 2013 0 R (3102) 4540 0 R (3103) 4541 0 R (3104) 4542 0 R (3105) 4543 0 R (3108) 4546 0 R (3109) 4547 0 R (311) 2014 0 R (3110) 4548 0 R (3111) 4549 0 R (3112) 4550 0 R (3115) 4551 0 R (3116) 4552 0 R (3117) 4553 0 R (3118) 4554 0 R (3119) 4555 0 R (3123) 4556 0 R (3124) 4557 0 R (3125) 4558 0 R (3126) 4559 0 R (3127) 4560 0 R (3128) 4561 0 R (3129) 4567 0 R (313) 2016 0 R (3132) 4568 0 R (3133) 4569 0 R (3134) 4570 0 R (3137) 4571 0 R (3138) 4572 0 R (3139) 4573 0 R (314) 2017 0 R (3140) 4574 0 R (3141) 4575 0 R (3142) 4576 0 R (3143) 4577 0 R (3144) 4578 0 R (3147) 4579 0 R (3148) 4580 0 R (3149) 4581 0 R (315) 2018 0 R (3150) 4586 0 R (3151) 4587 0 R (3152) 4588 0 R (3153) 4589 0 R (3154) 4590 0 R (3155) 4591 0 R (3156) 4592 0 R (3159) 4593 0 R (316) 2019 0 R (3160) 4594 0 R (3161) 4595 0 R (3162) 4596 0 R (3163) 4597 0 R (3164) 4598 0 R (3167) 4599 0 R (3168) 4600 0 R (3169) 4605 0 R (317) 2020 0 R (3170) 4606 0 R (3171) 4607 0 R (3172) 4608 0 R (3175) 4609 0 R (3176) 4610 0 R (3177) 4611 0 R (3178) 4612 0 R (3179) 4613 0 R (318) 2021 0 R (3182) 4614 0 R (3183) 4615 0 R (3184) 4616 0 R (3185) 4617 0 R (3186) 4618 0 R (3187) 4619 0 R (3188) 4620 0 R (3189) 1749 0 R (319) 2022 0 R (3191) 4621 0 R (3192) 4622 0 R (3193) 4627 0 R (3194) 4628 0 R (3195) 4629 0 R (3199) 4630 0 R (32) 1807 0 R (320) 2023 0 R (3200) 4631 0 R (3201) 4632 0 R (3202) 4633 0 R (3206) 4635 0 R (3207) 4636 0 R (3208) 4637 0 R (3209) 4638 0 R (321) 2024 0 R (3210) 4639 0 R (3213) 4644 0 R (3214) 4645 0 R (3217) 4646 0 R (3218) 4647 0 R (3219) 4648 0 R (3220) 4649 0 R (3221) 4650 0 R (3222) 4651 0 R (3223) 4652 0 R (3224) 4653 0 R (3225) 4654 0 R (3226) 4655 0 R (3227) 4656 0 R (3228) 4657 0 R (3229) 4658 0 R (323) 2026 0 R (3230) 4659 0 R (3231) 4660 0 R (3232) 4661 0 R (3233) 4662 0 R (3234) 4663 0 R (3235) 4664 0 R (3236) 4665 0 R (3237) 4666 0 R (3238) 4667 0 R (3239) 4668 0 R (324) 2027 0 R (3240) 4669 0 R (3241) 4670 0 R (3242) 4671 0 R (3243) 4672 0 R (3244) 4673 0 R (3245) 4674 0 R (3248) 4675 0 R (3249) 4676 0 R (3250) 4677 0 R (3251) 4678 0 R (3252) 4679 0 R (3253) 4680 0 R (3254) 4681 0 R (3255) 4682 0 R (3256) 4683 0 R (326) 2029 0 R (3261) 4688 0 R (3262) 4689 0 R (3263) 4690 0 R (3264) 4691 0 R (3265) 4692 0 R (3266) 4693 0 R (3267) 4694 0 R (3268) 4695 0 R (3269) 4696 0 R (327) 2030 0 R (3270) 4697 0 R (3271) 4698 0 R (3272) 4699 0 R (3273) 4700 0 R (3274) 4701 0 R (3275) 4702 0 R (3276) 4703 0 R (3279) 4704 0 R (3280) 4705 0 R (3281) 4706 0 R (3282) 4707 0 R (3283) 4708 0 R (3284) 4709 0 R (3285) 4710 0 R (3286) 4718 0 R (3287) 4711 0 R (3289) 4719 0 R (329) 2032 0 R (3290) 4720 0 R (3291) 4721 0 R (3292) 4722 0 R (3293) 4723 0 R (3294) 4724 0 R (3295) 4725 0 R (3296) 4726 0 R (3297) 4727 0 R (3298) 4728 0 R (3299) 4729 0 R (33) 1808 0 R (330) 2033 0 R (3300) 4730 0 R (3301) 4731 0 R (3302) 4732 0 R (3303) 4733 0 R (3304) 4734 0 R (3305) 4735 0 R (3306) 4736 0 R (3307) 4737 0 R (3308) 4738 0 R (3309) 4739 0 R (3310) 4740 0 R (3311) 4741 0 R (3312) 4742 0 R (3313) 4747 0 R (3314) 4717 0 R (3316) 4748 0 R (3317) 4749 0 R (3318) 4750 0 R (3319) 4751 0 R (332) 2035 0 R (3320) 4752 0 R (3321) 4753 0 R (3322) 4754 0 R (3323) 4755 0 R (3324) 4756 0 R (3325) 4757 0 R (3326) 4758 0 R (3327) 4759 0 R (3328) 4760 0 R (3329) 4761 0 R (333) 2036 0 R (3330) 4762 0 R (3333) 4763 0 R (3334) 4764 0 R (3335) 4765 0 R (3336) 4766 0 R (3337) 4767 0 R (3338) 4768 0 R (3339) 4769 0 R (3340) 4770 0 R (3341) 4771 0 R (3342) 4776 0 R (3343) 4777 0 R (3344) 4778 0 R (3345) 4779 0 R (3346) 4780 0 R (3347) 4781 0 R (3348) 4782 0 R (3349) 4783 0 R (335) 2038 0 R (3350) 4784 0 R (3351) 4785 0 R (3352) 4786 0 R (3353) 4787 0 R (3354) 4788 0 R (3355) 4789 0 R (3356) 4790 0 R (3357) 4791 0 R (3358) 4792 0 R (3359) 4793 0 R (336) 2039 0 R (3360) 4794 0 R (3361) 4795 0 R (3364) 4800 0 R (3365) 4801 0 R (3366) 4802 0 R (3369) 4803 0 R (3370) 4804 0 R (3371) 4805 0 R (3374) 4806 0 R (3375) 4807 0 R (3376) 4808 0 R (3377) 4809 0 R (3378) 4810 0 R (3379) 4811 0 R (338) 2041 0 R (3380) 4816 0 R (3381) 4817 0 R (3384) 4818 0 R (3385) 4819 0 R (3388) 4820 0 R (3389) 4821 0 R (339) 2042 0 R (3390) 4822 0 R (3391) 4828 0 R (3394) 4829 0 R (3395) 4830 0 R (3396) 4831 0 R (3397) 4832 0 R (3398) 4833 0 R (3399) 4834 0 R (3400) 4835 0 R (3401) 4836 0 R (3402) 4837 0 R (3403) 4838 0 R (3404) 4839 0 R (3405) 4840 0 R (3406) 4841 0 R (3407) 4842 0 R (3408) 4843 0 R (3409) 4844 0 R (3410) 4845 0 R (3411) 4846 0 R (3412) 4847 0 R (3413) 4848 0 R (3414) 4849 0 R (3415) 4850 0 R (3416) 4851 0 R (3417) 4852 0 R (3418) 4853 0 R (3419) 4854 0 R (3420) 4855 0 R (3421) 4856 0 R (3422) 4857 0 R (3423) 4858 0 R (3424) 4859 0 R (3425) 4827 0 R (3426) 4865 0 R (3427) 4866 0 R (343) 2044 0 R (3430) 4867 0 R (3431) 4868 0 R (3432) 4869 0 R (3435) 4870 0 R (3436) 4871 0 R (3439) 4872 0 R (344) 2048 0 R (3440) 4877 0 R (3443) 4878 0 R (3446) 4879 0 R (3449) 4880 0 R (3450) 4881 0 R (3451) 4882 0 R (3454) 4883 0 R (3455) 4884 0 R (3456) 4885 0 R (3457) 4890 0 R (3458) 4891 0 R (3460) 4896 0 R (3464) 4897 0 R (3465) 4898 0 R (3466) 4899 0 R (3467) 4900 0 R (347) 2049 0 R (3472) 4903 0 R (3473) 4904 0 R (3474) 4905 0 R (3475) 4906 0 R (3476) 4907 0 R (3477) 4908 0 R (3479) 4909 0 R (3480) 4910 0 R (3481) 4911 0 R (3482) 4912 0 R (3483) 4913 0 R (3485) 4914 0 R (3486) 4915 0 R (3487) 4916 0 R (3488) 4917 0 R (3489) 4918 0 R (3490) 4919 0 R (3491) 4920 0 R (3492) 4921 0 R (3493) 4922 0 R (3495) 4923 0 R (3496) 4924 0 R (3497) 4925 0 R (3498) 4926 0 R (3499) 4927 0 R (350) 2050 0 R (3500) 4928 0 R (3501) 4929 0 R (3502) 4930 0 R (3503) 4931 0 R (3504) 4932 0 R (3505) 4933 0 R (3507) 4934 0 R (3508) 4935 0 R (3509) 4936 0 R (351) 2051 0 R (3510) 4937 0 R (3511) 4938 0 R (3512) 4939 0 R (3517) 4946 0 R (3518) 4947 0 R (3519) 4948 0 R (352) 2052 0 R (3520) 4949 0 R (3521) 4950 0 R (3522) 4951 0 R (3524) 4952 0 R (3525) 4953 0 R (3526) 4954 0 R (3529) 4955 0 R (353) 2053 0 R (3530) 4956 0 R (3536) 4958 0 R (3537) 4959 0 R (3538) 4960 0 R (3539) 4961 0 R (354) 2054 0 R (3542) 4963 0 R (3543) 4964 0 R (3547) 4965 0 R (3548) 4966 0 R (3549) 4967 0 R (355) 2055 0 R (3550) 4968 0 R (3551) 4969 0 R (3554) 4970 0 R (3555) 4971 0 R (3556) 4972 0 R (3557) 4973 0 R (3558) 4979 0 R (3559) 4980 0 R (356) 2056 0 R (3560) 4981 0 R (3565) 4983 0 R (3566) 4984 0 R (3567) 4985 0 R (3568) 4986 0 R (357) 2057 0 R (3571) 4987 0 R (3572) 4988 0 R (3573) 4989 0 R (3579) 4993 0 R (358) 2058 0 R (3580) 4994 0 R (3581) 4995 0 R (3582) 4996 0 R (3583) 4997 0 R (3588) 5000 0 R (3589) 5001 0 R (3595) 5007 0 R (3596) 5008 0 R (3597) 5009 0 R (3598) 5010 0 R (3599) 5011 0 R (36) 1809 0 R (3600) 5012 0 R (3601) 5013 0 R (3604) 5015 0 R (3605) 5016 0 R (3607) 5018 0 R (3608) 5019 0 R (361) 2059 0 R (3610) 5020 0 R (3611) 5021 0 R (3612) 5022 0 R (3613) 5023 0 R (3615) 5024 0 R (3616) 5025 0 R (3617) 5026 0 R (3618) 5027 0 R (3619) 5028 0 R (3621) 5029 0 R (3622) 5030 0 R (3623) 5031 0 R (3624) 5032 0 R (3631) 5035 0 R (3632) 5036 0 R (3633) 5037 0 R (3636) 5038 0 R (3637) 5039 0 R (3639) 5045 0 R (364) 2060 0 R (3640) 5046 0 R (3641) 5047 0 R (3642) 5048 0 R (3646) 5050 0 R (3647) 5051 0 R (3648) 5052 0 R (3649) 5053 0 R (3650) 5054 0 R (3651) 5055 0 R (3652) 5056 0 R (3653) 5057 0 R (3659) 5059 0 R (3660) 5060 0 R (3664) 5062 0 R (3665) 5063 0 R (3666) 5064 0 R (367) 2061 0 R (3671) 5066 0 R (3672) 5067 0 R (3673) 5068 0 R (3675) 5073 0 R (3676) 5074 0 R (3677) 5075 0 R (3678) 5076 0 R (3679) 5077 0 R (3680) 5078 0 R (3681) 5079 0 R (3682) 5080 0 R (3683) 5081 0 R (3684) 5082 0 R (3685) 5083 0 R (3686) 5084 0 R (3687) 5085 0 R (3688) 5086 0 R (3693) 5089 0 R (3694) 5090 0 R (3695) 5091 0 R (3699) 5093 0 R (37) 1810 0 R (370) 2062 0 R (3700) 5094 0 R (3705) 5097 0 R (3706) 5098 0 R (3707) 5099 0 R (3708) 5102 0 R (3709) 5100 0 R (371) 2063 0 R (3710) 5101 0 R (372) 2064 0 R (375) 2070 0 R (376) 2071 0 R (379) 2072 0 R (38) 1811 0 R (382) 2073 0 R (383) 2074 0 R (384) 2075 0 R (385) 2076 0 R (387) 2078 0 R (388) 2079 0 R (389) 2080 0 R (39) 1812 0 R (390) 2081 0 R (393) 2082 0 R (394) 2083 0 R (398) 2090 0 R (399) 2091 0 R (4.0) 14 0 R (40) 1813 0 R (400) 2092 0 R (401) 2069 0 R (403) 2093 0 R (404) 2094 0 R (405) 2095 0 R (406) 2096 0 R (407) 2097 0 R (408) 2098 0 R (409) 2099 0 R (41) 1814 0 R (410) 2100 0 R (411) 2101 0 R (412) 2102 0 R (413) 2103 0 R (414) 2104 0 R (415) 2105 0 R (418) 2106 0 R (42) 1815 0 R (423) 2110 0 R (424) 2111 0 R (428) 2114 0 R (429) 2115 0 R (43) 1816 0 R (430) 2116 0 R (431) 2117 0 R (432) 2118 0 R (433) 2119 0 R (434) 2089 0 R (436) 2124 0 R (437) 2125 0 R (438) 2126 0 R (44) 1817 0 R (440) 2127 0 R (441) 2128 0 R (442) 2129 0 R (443) 2130 0 R (444) 2131 0 R (445) 2132 0 R (446) 2133 0 R (447) 2134 0 R (448) 2135 0 R (45) 1818 0 R (450) 2136 0 R (451) 2137 0 R (452) 2138 0 R (453) 2139 0 R (454) 2140 0 R (455) 2141 0 R (456) 2142 0 R (457) 2143 0 R (46) 1819 0 R (460) 2150 0 R (461) 2151 0 R (462) 2152 0 R (463) 2155 0 R (465) 2157 0 R (466) 2158 0 R (467) 2159 0 R (468) 2160 0 R (469) 2161 0 R (47) 1820 0 R (470) 2162 0 R (471) 2163 0 R (472) 2164 0 R (473) 2165 0 R (474) 2166 0 R (475) 2167 0 R (476) 2168 0 R (477) 2169 0 R (478) 2170 0 R (479) 2171 0 R (48) 1821 0 R (480) 2172 0 R (481) 2173 0 R (482) 2174 0 R (483) 2175 0 R (484) 2176 0 R (487) 2177 0 R (488) 2178 0 R (489) 2179 0 R (49) 1822 0 R (491) 2180 0 R (492) 2181 0 R (493) 2182 0 R (494) 2183 0 R (496) 2185 0 R (497) 2186 0 R (498) 2187 0 R (499) 2188 0 R (5.0) 18 0 R (5.1.1) 22 0 R (5.2.1) 26 0 R (5.3.1) 30 0 R (5.4.1) 34 0 R (5.5.1) 38 0 R (50) 1823 0 R (500) 2189 0 R (501) 2190 0 R (502) 2191 0 R (503) 2192 0 R (504) 2193 0 R (505) 2198 0 R (507) 2199 0 R (508) 2200 0 R (509) 2201 0 R (51) 1824 0 R (510) 2202 0 R (511) 2203 0 R (512) 2204 0 R (513) 2205 0 R (514) 2206 0 R (515) 2207 0 R (516) 2208 0 R (517) 2209 0 R (518) 2210 0 R (519) 2211 0 R (52) 1829 0 R (520) 2212 0 R (521) 2213 0 R (522) 2214 0 R (523) 2215 0 R (524) 2216 0 R (525) 2217 0 R (526) 2218 0 R (527) 2219 0 R (528) 1241 0 R (53) 1830 0 R (530) 2220 0 R (531) 2221 0 R (532) 2222 0 R (533) 2223 0 R (534) 2224 0 R (535) 2225 0 R (538) 2226 0 R (543) 2228 0 R (544) 2229 0 R (545) 2230 0 R (547) 2231 0 R (548) 2232 0 R (549) 2233 0 R (551) 2234 0 R (552) 2235 0 R (553) 2240 0 R (554) 2241 0 R (555) 2242 0 R (556) 2243 0 R (557) 2244 0 R (558) 2245 0 R (559) 2246 0 R (56) 1831 0 R (560) 2247 0 R (562) 2248 0 R (563) 2249 0 R (564) 2250 0 R (565) 2251 0 R (566) 2252 0 R (567) 2253 0 R (568) 2254 0 R (57) 1832 0 R (570) 2255 0 R (571) 2256 0 R (572) 2257 0 R (573) 2258 0 R (577) 2259 0 R (578) 2260 0 R (579) 2261 0 R (580) 2262 0 R (581) 2263 0 R (582) 2264 0 R (583) 2265 0 R (584) 2266 0 R (585) 2267 0 R (586) 2268 0 R (587) 2269 0 R (588) 2270 0 R (589) 2271 0 R (59) 1833 0 R (590) 2272 0 R (591) 2273 0 R (592) 2274 0 R (593) 2280 0 R (594) 2281 0 R (595) 2282 0 R (596) 2283 0 R (597) 2284 0 R (598) 2285 0 R (599) 2286 0 R (6.0) 42 0 R (6.10.1) 250 0 R (6.10.22.2) 254 0 R (6.10.23.2) 258 0 R (6.10.23.21.3) 262 0 R (6.10.23.21.7.4) 266 0 R (6.10.23.21.8.4) 270 0 R (6.10.23.21.9.4) 274 0 R (6.10.24.2) 278 0 R (6.10.25.2) 282 0 R (6.10.25.22.3) 286 0 R (6.10.25.23.3) 290 0 R (6.10.26.2) 294 0 R (6.10.26.24.3) 298 0 R (6.10.27.2) 302 0 R (6.6.1) 46 0 R (6.6.1.2) 50 0 R (6.6.2.1.3) 58 0 R (6.6.2.2) 54 0 R (6.6.2.2.3) 62 0 R (6.6.3.2) 66 0 R (6.6.4.2) 70 0 R (6.6.5.10.3) 106 0 R (6.6.5.11.3) 110 0 R (6.6.5.2) 74 0 R (6.6.5.3.3) 78 0 R (6.6.5.4.3) 82 0 R (6.6.5.5.3) 86 0 R (6.6.5.6.3) 90 0 R (6.6.5.7.3) 94 0 R (6.6.5.8.3) 98 0 R (6.6.5.9.3) 102 0 R (6.6.6.2) 114 0 R (6.7.1) 118 0 R (6.7.10.14.3) 170 0 R (6.7.10.15.3) 174 0 R (6.7.10.2) 166 0 R (6.7.11.2) 178 0 R (6.7.7.2) 122 0 R (6.7.8.12.1.4) 134 0 R (6.7.8.12.2.4) 138 0 R (6.7.8.12.3) 130 0 R (6.7.8.12.3.4) 142 0 R (6.7.8.12.4.4) 146 0 R (6.7.8.13.3) 150 0 R (6.7.8.13.5.4) 154 0 R (6.7.8.13.6.4) 158 0 R (6.7.8.2) 126 0 R (6.7.9.2) 162 0 R (6.8.1) 182 0 R (6.8.12.2) 186 0 R (6.8.13.2) 190 0 R (6.8.14.2) 194 0 R (6.8.15.2) 198 0 R (6.8.16.2) 202 0 R (6.8.17.2) 206 0 R (6.8.18.2) 210 0 R (6.9.1) 214 0 R (6.9.19.16.3) 222 0 R (6.9.19.17.3) 226 0 R (6.9.19.18.3) 230 0 R (6.9.19.19.3) 234 0 R (6.9.19.2) 218 0 R (6.9.19.20.3) 238 0 R (6.9.20.2) 242 0 R (6.9.21.2) 246 0 R (60) 1834 0 R (600) 2287 0 R (601) 2288 0 R (602) 2289 0 R (603) 2290 0 R (607) 2292 0 R (608) 2293 0 R (61) 1835 0 R (610) 2295 0 R (611) 2296 0 R (612) 2297 0 R (613) 2298 0 R (615) 2300 0 R (616) 2301 0 R (617) 2302 0 R (618) 2303 0 R (619) 2304 0 R (62) 1836 0 R (620) 2305 0 R (621) 2306 0 R (622) 2307 0 R (626) 2309 0 R (627) 1247 0 R (629) 2314 0 R (630) 2279 0 R (632) 2315 0 R (633) 2318 0 R (634) 2319 0 R (635) 2320 0 R (636) 2321 0 R (637) 2322 0 R (638) 2323 0 R (639) 2324 0 R (64) 1837 0 R (640) 2325 0 R (641) 2326 0 R (642) 2327 0 R (643) 2328 0 R (644) 2329 0 R (645) 2330 0 R (646) 1248 0 R (648) 2331 0 R (649) 2332 0 R (65) 1838 0 R (650) 2333 0 R (651) 2334 0 R (652) 2335 0 R (653) 2336 0 R (654) 2337 0 R (655) 2338 0 R (656) 2339 0 R (657) 2340 0 R (658) 2341 0 R (659) 2342 0 R (66) 1839 0 R (660) 2343 0 R (661) 2344 0 R (664) 2350 0 R (665) 2351 0 R (666) 2352 0 R (667) 2353 0 R (668) 2354 0 R (669) 2355 0 R (67) 1840 0 R (672) 2356 0 R (674) 2358 0 R (675) 2359 0 R (676) 2360 0 R (677) 2361 0 R (678) 2362 0 R (679) 2363 0 R (680) 2364 0 R (683) 2365 0 R (684) 2366 0 R (685) 2367 0 R (686) 2368 0 R (687) 2369 0 R (688) 2370 0 R (689) 2371 0 R (69) 1841 0 R (690) 2372 0 R (691) 2373 0 R (692) 2374 0 R (693) 2375 0 R (696) 2381 0 R (697) 2349 0 R (698) 2382 0 R (699) 2383 0 R (7.0) 306 0 R (7.11.1) 310 0 R (7.12.1) 314 0 R (7.12.28.2) 318 0 R (7.12.29.2) 322 0 R (7.12.29.25.3) 326 0 R (7.12.29.26.3) 330 0 R (7.13.1) 334 0 R (7.14.1) 338 0 R (7.15.1) 342 0 R (7.16.1) 346 0 R (7.17.1) 350 0 R (7.17.30.2) 354 0 R (7.17.31.2) 358 0 R (7.17.31.27.3) 362 0 R (7.17.32.2) 366 0 R (7.17.33.2) 370 0 R (7.17.33.28.3) 374 0 R (7.17.33.29.3) 378 0 R (7.17.34.2) 382 0 R (7.17.34.30.10.4) 390 0 R (7.17.34.30.11.4) 394 0 R (7.17.34.30.12.4) 398 0 R (7.17.34.30.13.4) 402 0 R (7.17.34.30.14.4) 406 0 R (7.17.34.30.15.4) 410 0 R (7.17.34.30.16.4) 414 0 R (7.17.34.30.17.4) 418 0 R (7.17.34.30.18.4) 422 0 R (7.17.34.30.3) 386 0 R (7.17.34.31.3) 426 0 R (7.17.34.32.3) 430 0 R (7.18.1) 434 0 R (7.19.1) 438 0 R (7.20.1) 442 0 R (7.20.35.2) 446 0 R (7.20.36.2) 450 0 R (7.20.37.2) 454 0 R (7.20.38.2) 458 0 R (7.20.38.33.3) 462 0 R (7.20.38.34.3) 466 0 R (7.20.38.35.3) 470 0 R (7.21.1) 474 0 R (7.21.39.2) 478 0 R (7.21.40.2) 482 0 R (7.21.40.36.3) 486 0 R (7.21.40.37.3) 490 0 R (7.21.40.38.3) 494 0 R (7.21.41.2) 498 0 R (70) 1842 0 R (700) 2384 0 R (703) 2386 0 R (704) 2387 0 R (705) 2388 0 R (708) 2390 0 R (709) 2391 0 R (71) 1843 0 R (710) 2392 0 R (711) 2393 0 R (712) 2394 0 R (713) 2395 0 R (714) 2396 0 R (717) 2398 0 R (718) 2399 0 R (719) 2400 0 R (72) 1844 0 R (720) 2401 0 R (721) 2402 0 R (724) 2404 0 R (725) 2405 0 R (726) 2406 0 R (727) 2407 0 R (730) 2409 0 R (731) 2410 0 R (732) 2416 0 R (733) 2417 0 R (736) 2419 0 R (737) 2420 0 R (738) 2421 0 R (739) 2422 0 R (74) 1845 0 R (742) 2424 0 R (743) 2425 0 R (744) 2426 0 R (745) 2427 0 R (748) 2428 0 R (749) 2429 0 R (75) 1846 0 R (750) 2430 0 R (751) 2431 0 R (752) 2432 0 R (753) 2433 0 R (754) 2434 0 R (755) 2435 0 R (756) 2436 0 R (757) 2437 0 R (758) 2438 0 R (759) 2439 0 R (76) 1847 0 R (762) 2440 0 R (763) 2441 0 R (764) 2442 0 R (767) 2448 0 R (77) 1848 0 R (770) 2449 0 R (771) 2450 0 R (772) 2451 0 R (775) 2452 0 R (778) 2455 0 R (779) 2456 0 R (780) 2457 0 R (781) 2458 0 R (782) 2459 0 R (783) 2460 0 R (784) 2461 0 R (785) 2462 0 R (786) 2463 0 R (787) 2464 0 R (79) 1849 0 R (790) 2465 0 R (793) 2466 0 R (796) 2469 0 R (797) 2447 0 R (799) 2475 0 R (8.0) 502 0 R (8.22.1) 506 0 R (8.22.42.2) 510 0 R (8.22.43.2) 514 0 R (8.22.44.2) 518 0 R (8.23.1) 522 0 R (8.23.45.2) 526 0 R (8.23.46.2) 530 0 R (8.23.47.2) 534 0 R (8.24.1) 538 0 R (8.24.48.2) 542 0 R (8.24.49.2) 546 0 R (8.25.1) 550 0 R (8.25.50.2) 554 0 R (80) 1850 0 R (802) 2476 0 R (806) 2477 0 R (807) 2478 0 R (808) 2479 0 R (809) 2480 0 R (81) 1851 0 R (810) 2481 0 R (811) 2482 0 R (813) 2484 0 R (814) 2485 0 R (815) 2486 0 R (816) 2487 0 R (817) 2488 0 R (818) 2489 0 R (819) 2490 0 R (82) 1852 0 R (820) 2491 0 R (821) 2492 0 R (822) 2493 0 R (823) 2494 0 R (824) 2495 0 R (828) 2498 0 R (829) 2499 0 R (831) 2500 0 R (833) 2501 0 R (836) 2507 0 R (837) 2508 0 R (838) 2509 0 R (839) 2510 0 R (84) 1853 0 R (840) 2511 0 R (841) 2512 0 R (842) 2513 0 R (843) 2514 0 R (844) 2515 0 R (845) 2516 0 R (846) 2517 0 R (847) 2518 0 R (849) 2519 0 R (85) 1854 0 R (850) 2520 0 R (851) 2521 0 R (852) 2522 0 R (856) 1362 0 R (858) 2523 0 R (86) 1855 0 R (860) 1363 0 R (862) 2525 0 R (863) 2526 0 R (864) 2527 0 R (865) 2528 0 R (866) 2529 0 R (867) 2530 0 R (868) 1364 0 R (87) 1856 0 R (870) 2531 0 R (872) 2532 0 R (873) 2533 0 R (874) 2538 0 R (876) 2539 0 R (877) 2540 0 R (878) 2541 0 R (879) 2542 0 R (881) 2543 0 R (882) 2544 0 R (883) 2545 0 R (884) 2546 0 R (885) 2547 0 R (886) 2548 0 R (887) 2549 0 R (888) 2550 0 R (889) 2551 0 R (89) 1857 0 R (890) 2552 0 R (891) 2553 0 R (892) 2554 0 R (893) 2555 0 R (894) 2561 0 R (895) 1365 0 R (897) 2562 0 R (898) 2563 0 R (899) 2564 0 R (9.0) 558 0 R (9.26.1) 562 0 R (9.26.51.2) 566 0 R (9.26.52.2) 570 0 R (9.26.53.2) 574 0 R (9.26.54.2) 578 0 R (9.26.55.2) 582 0 R (9.26.56.2) 586 0 R (9.27.1) 590 0 R (9.28.1) 594 0 R (9.29.1) 598 0 R (9.30.1) 602 0 R (9.30.57.2) 606 0 R (9.30.57.39.3) 610 0 R (9.31.1) 614 0 R (9.31.58.2) 618 0 R (9.31.59.2) 622 0 R (9.31.60.2) 626 0 R (9.31.61.2) 630 0 R (9.31.62.2) 634 0 R (90) 1858 0 R (900) 2565 0 R (901) 2566 0 R (902) 2567 0 R (903) 2568 0 R (904) 2569 0 R (905) 2570 0 R (906) 2571 0 R (907) 2572 0 R (908) 2573 0 R (909) 2574 0 R (91) 1859 0 R (910) 2575 0 R (913) 2576 0 R (914) 1367 0 R (916) 2577 0 R (917) 2578 0 R (918) 2579 0 R (919) 2580 0 R (92) 1860 0 R (920) 2581 0 R (921) 2582 0 R (922) 2583 0 R (923) 2588 0 R (924) 2589 0 R (925) 2590 0 R (926) 2591 0 R (927) 1368 0 R (929) 2592 0 R (93) 1861 0 R (930) 2593 0 R (931) 2594 0 R (932) 2595 0 R (933) 2596 0 R (934) 2597 0 R (935) 2598 0 R (936) 2599 0 R (937) 2600 0 R (938) 2601 0 R (939) 2602 0 R (940) 2603 0 R (941) 2604 0 R (942) 2605 0 R (943) 2606 0 R (944) 2611 0 R (945) 2612 0 R (946) 2613 0 R (947) 2614 0 R (948) 2615 0 R (949) 2616 0 R (95) 1862 0 R (950) 2617 0 R (951) 2618 0 R (952) 2619 0 R (953) 2620 0 R (954) 2621 0 R (955) 2622 0 R (956) 2623 0 R (957) 2624 0 R (958) 2625 0 R (959) 2626 0 R (96) 1863 0 R (960) 1369 0 R (962) 2627 0 R (963) 1370 0 R (965) 2628 0 R (966) 2629 0 R (967) 2630 0 R (968) 2631 0 R (969) 2632 0 R (97) 1864 0 R (970) 2633 0 R (971) 2638 0 R (972) 1371 0 R (974) 2639 0 R (976) 2641 0 R (977) 2642 0 R (978) 2643 0 R (979) 2644 0 R (98) 1865 0 R (980) 2645 0 R (981) 2646 0 R (982) 2647 0 R (983) 2648 0 R (984) 2649 0 R (985) 2650 0 R (986) 2651 0 R (99) 1866 0 R (991) 2656 0 R (992) 2657 0 R (994) 2658 0 R (996) 2659 0 R (997) 2660 0 R (998) 2661 0 R (Doc-Start) 1102 0 R (about) 1211 0 R (accountsettings) 1666 0 R (administration) 1372 0 R (apache-addtype) 1253 0 R (attachments) 1664 0 R (bonsai) 1537 0 R (boolean) 1646 0 R (bug_page) 1643 0 R (bugreports) 1651 0 R (bzldap) 1252 0 R (charts) 1671 0 R (cmdline) 1753 0 R (cmdline-bugmail) 1754 0 R (commenting) 1663 0 R (components) 1380 0 R (configuration) 1236 0 R (conventions) 1216 0 R (copyright) 1212 0 R (createnewusers) 1377 0 R (credits) 1215 0 R (cust-change-permissions) 1531 0 R (cust-hooks) 1530 0 R (cust-templates) 1523 0 R (customization) 1522 0 R (cvs) 1538 0 R (database-engine) 1238 0 R (dbdoc) 1533 0 R (dbmodify) 1532 0 R (defaultuser) 1375 0 R (disclaimer) 1213 0 R (emailsettings) 1667 0 R (extraconfig) 1246 0 R (faq) 1680 0 R (faq-admin) 4245 0 R (faq-admin-cvsupdate) 4255 0 R (faq-admin-enable-unconfirmed) 4276 0 R (faq-admin-livebackup) 4253 0 R (faq-admin-midair) 4247 0 R (faq-admin-moving) 4288 0 R (faq-db) 4385 0 R (faq-db-corrupted) 4387 0 R (faq-db-manualedit) 4399 0 R (faq-db-permissions) 4406 0 R (faq-db-synchronize) 4412 0 R (faq-email) 4320 0 R (faq-email-mailif) 4361 0 R (faq-email-nomail) 4322 0 R (faq-email-nonreceived) 4376 0 R (faq-email-sendmailnow) 4363 0 R (faq-email-testing) 4325 0 R (faq-email-whine) 4355 0 R (faq-general) 4108 0 R (faq-general-bonsaitools) 4151 0 R (faq-general-bzmissing) 4129 0 R (faq-general-companies) 4117 0 R (faq-general-compare) 4125 0 R (faq-general-cookie) 4180 0 R (faq-general-license) 4110 0 R (faq-general-maintainers) 4122 0 R (faq-general-mysql) 4142 0 R (faq-general-perlpath) 4156 0 R (faq-general-support) 4113 0 R (faq-hacking) 4493 0 R (faq-hacking-bugzillabugs) 4499 0 R (faq-hacking-patches) 4512 0 R (faq-hacking-priority) 4505 0 R (faq-hacking-templatestyle) 4494 0 R (faq-mod-perl) 4182 0 R (faq-nt) 4417 0 R (faq-nt-bundle) 4427 0 R (faq-nt-dbi) 4437 0 R (faq-nt-easiest) 4419 0 R (faq-nt-mappings) 4429 0 R (faq-phb) 4186 0 R (faq-phb-backup) 4231 0 R (faq-phb-client) 4188 0 R (faq-phb-cost) 4240 0 R (faq-phb-data) 4211 0 R (faq-phb-email) 4204 0 R (faq-phb-emailapp) 4206 0 R (faq-phb-installtime) 4238 0 R (faq-phb-l10n) 4221 0 R (faq-phb-maintenance) 4234 0 R (faq-phb-priorities) 4190 0 R (faq-phb-renameBugs) 4242 0 R (faq-phb-reporting) 4199 0 R (faq-phb-reports) 4229 0 R (faq-security) 4305 0 R (faq-security-knownproblems) 4318 0 R (faq-security-mysql) 4307 0 R (faq-use) 4453 0 R (faq-use-accept) 4470 0 R (faq-use-attachment) 4475 0 R (faq-use-changeaddress) 4455 0 R (faq-use-close) 4481 0 R (faq-use-keyword) 4478 0 R (faq-use-query) 4457 0 R (flag-askto) 1387 0 R (flag-type-attachment) 1389 0 R (flag-type-bug) 1390 0 R (flag-types) 1388 0 R (flag-values) 1386 0 R (flags) 1674 0 R (flags-about) 1385 0 R (flags-admin) 1391 0 R (flags-create) 1392 0 R (flags-create-field-active) 2998 0 R (flags-create-field-category) 2960 0 R (flags-create-field-cclist) 3008 0 R (flags-create-field-description) 2958 0 R (flags-create-field-multiplicable) 3017 0 R (flags-create-field-name) 2956 0 R (flags-create-field-requestable) 3001 0 R (flags-create-field-sortkey) 2994 0 R (flags-create-field-specific) 3010 0 R (flags-delete) 1393 0 R (flags-edit) 1394 0 R (flags-overview) 1383 0 R (flags-simpleexample) 1384 0 R (general-advice) 1682 0 R (gfdl) 1759 0 R (gfdl-0) 1760 0 R (gfdl-1) 1761 0 R (gfdl-10) 1770 0 R (gfdl-2) 1762 0 R (gfdl-3) 1763 0 R (gfdl-4) 1764 0 R (gfdl-5) 1765 0 R (gfdl-6) 1766 0 R (gfdl-7) 1767 0 R (gfdl-8) 1768 0 R (gfdl-9) 1769 0 R (gfdl-howto) 1771 0 R (gloss-a) 4901 0 R (gloss-apache) 4902 0 R (gloss-b) 4941 0 R (gloss-bugzilla) 1888 0 R (gloss-c) 4957 0 R (gloss-cgi) 1950 0 R (gloss-component) 4962 0 R (gloss-contrib) 2411 0 R (gloss-cpan) 2502 0 R (gloss-d) 4982 0 R (gloss-daemon) 3282 0 R (gloss-dos) 3424 0 R (gloss-g) 4991 0 R (gloss-groups) 4992 0 R (gloss-htaccess) 3394 0 R (gloss-j) 4998 0 R (gloss-javascript) 4999 0 R (gloss-m) 4978 0 R (gloss-mta) 4393 0 R (gloss-mysql) 5014 0 R (gloss-p) 5034 0 R (gloss-ppm) 2470 0 R (gloss-product) 2817 0 R (gloss-q) 5049 0 R (gloss-r) 5058 0 R (gloss-rdbms) 5040 0 R (gloss-regexp) 5061 0 R (gloss-s) 5065 0 R (gloss-service) 3283 0 R (gloss-t) 5087 0 R (gloss-target-milestone) 5088 0 R (gloss-tcl) 5092 0 R (gloss-z) 5095 0 R (gloss-zarro) 5096 0 R (glossary) 1772 0 R (groups) 1397 0 R (hintsandtips) 1660 0 R (http) 1242 0 R (http-apache) 1243 0 R (http-iis) 1244 0 R (index) 1103 0 R (install-MTA) 1235 0 R (install-bzfiles) 1224 0 R (install-config-bugzilla) 1245 0 R (install-database) 1220 0 R (install-modules-chart-base) 1229 0 R (install-modules-dbd-mysql) 1226 0 R (install-modules-gd) 1228 0 R (install-modules-gd-graph) 1230 0 R (install-modules-gd-text-align) 1231 0 R (install-modules-mime-parser) 1233 0 R (install-modules-patchreader) 1234 0 R (install-modules-template) 1227 0 R (install-modules-xml-parser) 1232 0 R (install-mysql) 1221 0 R (install-perl) 1219 0 R (install-perlmodules) 1225 0 R (install-perlmodules-manual) 1755 0 R (install-perlmodules-nonroot) 1366 0 R (install-pg) 1222 0 R (install-setupdatabase) 2113 0 R (install-setupdatabase-adduser) 2144 0 R (install-webserver) 1223 0 R (installation) 1218 0 R (installation-whining) 1250 0 R (installation-whining-cron) 1249 0 R (installing-bugzilla) 1217 0 R (integration) 1536 0 R (lifecycle) 1644 0 R (lifecycle-image) 1791 0 R (list) 1650 0 R (localconfig) 1237 0 R (manageusers) 1376 0 R (milestones) 1382 0 R (modifyusers) 1378 0 R (modules-manual-download) 1757 0 R (modules-manual-instructions) 1756 0 R (modules-manual-optional) 1758 0 R (multiplecharts) 1649 0 R (myaccount) 1642 0 R (mysql) 1239 0 R (negation) 1648 0 R (newversions) 1214 0 R (nonroot) 1361 0 R (os-macosx) 1359 0 R (os-mandrake) 1360 0 R (os-specific) 1254 0 R (os-win32) 1255 0 R (page.1) 1101 0 R (page.10) 2088 0 R (page.100) 4643 0 R (page.101) 4687 0 R (page.102) 4716 0 R (page.103) 4746 0 R (page.104) 4775 0 R (page.105) 4799 0 R (page.106) 4815 0 R (page.107) 4826 0 R (page.108) 4864 0 R (page.109) 4876 0 R (page.11) 2123 0 R (page.110) 4889 0 R (page.111) 4895 0 R (page.112) 4945 0 R (page.113) 4977 0 R (page.114) 5006 0 R (page.115) 5044 0 R (page.116) 5072 0 R (page.12) 2149 0 R (page.13) 2197 0 R (page.14) 2239 0 R (page.15) 2278 0 R (page.16) 2313 0 R (page.17) 2348 0 R (page.18) 2380 0 R (page.19) 2415 0 R (page.2) 1110 0 R (page.20) 2446 0 R (page.21) 2474 0 R (page.22) 2506 0 R (page.23) 2537 0 R (page.24) 2560 0 R (page.25) 2587 0 R (page.26) 2610 0 R (page.27) 2637 0 R (page.28) 2655 0 R (page.29) 2689 0 R (page.3) 1116 0 R (page.30) 2715 0 R (page.31) 2738 0 R (page.32) 2773 0 R (page.33) 2821 0 R (page.34) 2848 0 R (page.35) 2895 0 R (page.36) 2936 0 R (page.37) 2971 0 R (page.38) 3014 0 R (page.39) 3045 0 R (page.4) 1259 0 R (page.40) 3073 0 R (page.41) 3111 0 R (page.42) 3134 0 R (page.43) 3157 0 R (page.44) 3183 0 R (page.45) 3204 0 R (page.46) 3237 0 R (page.47) 3256 0 R (page.48) 3287 0 R (page.49) 3316 0 R (page.5) 1404 0 R (page.50) 3398 0 R (page.51) 3428 0 R (page.52) 3457 0 R (page.53) 3483 0 R (page.54) 3523 0 R (page.55) 3552 0 R (page.56) 3583 0 R (page.57) 3621 0 R (page.58) 3644 0 R (page.59) 3664 0 R (page.6) 1545 0 R (page.60) 3687 0 R (page.61) 3716 0 R (page.62) 3720 0 R (page.63) 3724 0 R (page.64) 3728 0 R (page.65) 3744 0 R (page.66) 3759 0 R (page.67) 3788 0 R (page.68) 3847 0 R (page.69) 3857 0 R (page.7) 1690 0 R (page.70) 3891 0 R (page.71) 3911 0 R (page.72) 3934 0 R (page.73) 3946 0 R (page.74) 3966 0 R (page.75) 3990 0 R (page.76) 4025 0 R (page.77) 4041 0 R (page.78) 4059 0 R (page.79) 4080 0 R (page.8) 1776 0 R (page.80) 4097 0 R (page.81) 4105 0 R (page.82) 4136 0 R (page.83) 4165 0 R (page.84) 4196 0 R (page.85) 4225 0 R (page.86) 4251 0 R (page.87) 4285 0 R (page.88) 4311 0 R (page.89) 4344 0 R (page.9) 2068 0 R (page.90) 4397 0 R (page.91) 4425 0 R (page.92) 4462 0 R (page.93) 4492 0 R (page.94) 4527 0 R (page.95) 4538 0 R (page.96) 4566 0 R (page.97) 4585 0 R (page.98) 4604 0 R (page.99) 4626 0 R (param-LDAPBaseDN) 2408 0 R (param-LDAPbinddn) 2403 0 R (param-LDAPmailattribute) 2423 0 R (param-LDAPserver) 2397 0 R (param-LDAPuidattribute) 2418 0 R (param-loginmethod) 2389 0 R (parameters) 1373 0 R (paranoid-security) 1746 0 R (patch-viewer) 1251 0 R (patches) 1752 0 R (patchviewer) 1652 0 R (patchviewer_bonsai_lxr) 1658 0 R (patchviewer_collapse) 1656 0 R (patchviewer_context) 1655 0 R (patchviewer_diff) 1654 0 R (patchviewer_link) 1657 0 R (patchviewer_unified_diff) 1659 0 R (patchviewer_view) 1653 0 R (permissionsettings) 1668 0 R (postgresql) 1240 0 R (products) 1379 0 R (pronouns) 1647 0 R (query) 1645 0 R (quicksearch) 1662 0 R (quips) 1396 0 R (reporting) 1669 0 R (reports) 1670 0 R (scm) 1539 0 R (security) 1508 0 R (security-bugzilla) 1520 0 R (security-bugzilla-charset) 1521 0 R (security-bugzilla-charset-ex) 1795 0 R (security-mysql) 1513 0 R (security-mysql-account) 1514 0 R (security-mysql-account-anonymous) 1793 0 R (security-mysql-account-root) 1792 0 R (security-mysql-network) 1516 0 R (security-mysql-network-ex) 1794 0 R (security-mysql-root) 1515 0 R (security-os) 1509 0 R (security-os-accounts) 1511 0 R (security-os-chroot) 1512 0 R (security-os-ports) 1510 0 R (security-webserver) 1517 0 R (security-webserver-access) 1518 0 R (security-webserver-mod-throttle) 1519 0 R (svn) 1540 0 R (table.1) 1882 0 R (table.2) 3578 0 R (table.3) 3783 0 R (table.4) 3901 0 R (table.5) 3927 0 R (table.6) 3949 0 R (table.7) 4474 0 R (template-directory) 1524 0 R (template-edit) 1526 0 R (template-formats) 1527 0 R (template-http-accept) 1529 0 R (template-method) 1525 0 R (template-specific) 1528 0 R (tinderbox) 1541 0 R (trbl-bundleBugzilla) 1685 0 R (trbl-dbdSponge) 1686 0 R (trbl-index) 1750 0 R (trbl-passwd-encryption) 1751 0 R (trbl-perlmodule) 1684 0 R (trbl-relogin-everyone) 1748 0 R (trbl-relogin-everyone-restrict) 1797 0 R (trbl-relogin-everyone-share) 1796 0 R (trbl-testserver) 1683 0 R (trouble-filetemp) 1747 0 R (troubleshooting) 1681 0 R (upgrade-cvs) 1504 0 R (upgrade-patches) 1506 0 R (upgrade-tarball) 1505 0 R (upgrading) 1501 0 R (upgrading-completion) 1507 0 R (upgrading-methods) 1503 0 R (upgrading-version-defns) 1502 0 R (useradmin) 1374 0 R (userpreferences) 1665 0 R (using) 1640 0 R (using-intro) 1641 0 R (versions) 1381 0 R (voting) 1395 0 R (whining) 1675 0 R (whining-overview) 1676 0 R (whining-query) 1678 0 R (whining-schedule) 1677 0 R (win32-code-changes) 1356 0 R (win32-email) 1358 0 R (win32-http) 1357 0 R (win32-perl) 1354 0 R (win32-perl-modules) 1355 0 R] /Limits [(1.0) (win32-perl-modules)] >> endobj -5125 0 obj << -/Kids [5124 0 R] +5111 0 obj << +/Kids [5110 0 R] >> endobj -5126 0 obj << -/Dests 5125 0 R +5112 0 obj << +/Dests 5111 0 R >> endobj -5127 0 obj << +5113 0 obj << /Type /Catalog -/Pages 5122 0 R -/Outlines 5123 0 R -/Names 5126 0 R +/Pages 5108 0 R +/Outlines 5109 0 R +/Names 5112 0 R /PageMode /UseOutlines /URI<</Base()>> /ViewerPreferences<<>> /OpenAction 1097 0 R /PTEX.Fullbanner (This is pdfTeX, Version 3.14159-1.10b) >> endobj -5128 0 obj << +5114 0 obj << /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.10b)/Keywords() -/CreationDate (D:20050930183400) +/CreationDate (D:20060220234200) >> endobj xref -0 5129 +0 5115 0000001104 65535 f 0000000009 00000 n -0000025630 00000 n -0000974063 00000 n +0000025595 00000 n +0000971791 00000 n 0000000048 00000 n -0000000109 00000 n -0000098522 00000 n -0000973978 00000 n -0000000148 00000 n -0000000183 00000 n -0000367817 00000 n -0000973891 00000 n -0000000222 00000 n -0000000256 00000 n -0000367879 00000 n -0000973802 00000 n -0000000296 00000 n -0000000331 00000 n -0000370988 00000 n -0000973676 00000 n -0000000371 00000 n -0000000417 00000 n -0000371113 00000 n -0000973602 00000 n -0000000459 00000 n -0000000504 00000 n -0000371490 00000 n -0000973515 00000 n -0000000546 00000 n -0000000580 00000 n -0000371804 00000 n -0000973428 00000 n -0000000622 00000 n -0000000658 00000 n -0000375471 00000 n -0000973341 00000 n -0000000700 00000 n -0000000731 00000 n -0000378443 00000 n -0000973267 00000 n -0000000773 00000 n -0000000817 00000 n -0000384839 00000 n -0000973139 00000 n -0000000857 00000 n -0000000906 00000 n -0000384964 00000 n -0000973026 00000 n -0000000948 00000 n -0000000984 00000 n -0000386286 00000 n -0000972952 00000 n -0000001028 00000 n -0000001058 00000 n -0000389148 00000 n -0000972828 00000 n -0000001102 00000 n -0000001143 00000 n -0000389336 00000 n -0000972754 00000 n -0000001189 00000 n -0000001222 00000 n -0000390031 00000 n -0000972680 00000 n -0000001268 00000 n -0000001306 00000 n -0000390472 00000 n -0000972593 00000 n -0000001350 00000 n -0000001386 00000 n -0000394849 00000 n -0000972506 00000 n -0000001430 00000 n -0000001464 00000 n -0000395610 00000 n -0000972380 00000 n -0000001508 00000 n -0000001546 00000 n -0000403933 00000 n -0000972306 00000 n -0000001592 00000 n -0000001630 00000 n -0000406358 00000 n -0000972219 00000 n -0000001676 00000 n -0000001729 00000 n -0000406546 00000 n -0000972132 00000 n -0000001775 00000 n -0000001814 00000 n -0000407240 00000 n -0000972045 00000 n -0000001860 00000 n -0000001907 00000 n -0000407428 00000 n -0000971958 00000 n -0000001953 00000 n -0000001998 00000 n -0000407616 00000 n -0000971869 00000 n -0000002044 00000 n -0000002096 00000 n -0000407803 00000 n -0000971778 00000 n -0000002143 00000 n -0000002191 00000 n -0000411036 00000 n -0000971686 00000 n -0000002239 00000 n -0000002288 00000 n -0000411226 00000 n -0000971608 00000 n -0000002336 00000 n -0000002386 00000 n -0000411415 00000 n -0000971531 00000 n -0000002431 00000 n -0000002485 00000 n -0000411853 00000 n -0000971401 00000 n -0000002528 00000 n -0000002566 00000 n -0000412106 00000 n -0000971322 00000 n -0000002611 00000 n -0000002649 00000 n -0000416278 00000 n -0000971190 00000 n -0000002694 00000 n -0000002736 00000 n -0000416467 00000 n -0000971072 00000 n -0000002784 00000 n -0000002818 00000 n -0000416719 00000 n -0000970993 00000 n -0000002868 00000 n -0000002922 00000 n -0000420315 00000 n -0000970900 00000 n -0000002972 00000 n -0000003040 00000 n -0000420944 00000 n -0000970807 00000 n -0000003090 00000 n -0000003164 00000 n -0000421574 00000 n -0000970728 00000 n -0000003214 00000 n -0000003264 00000 n -0000426089 00000 n -0000970610 00000 n -0000003312 00000 n -0000003351 00000 n -0000426341 00000 n -0000970531 00000 n -0000003401 00000 n -0000003456 00000 n -0000427290 00000 n -0000970452 00000 n -0000003506 00000 n -0000003557 00000 n -0000431767 00000 n -0000970359 00000 n -0000003602 00000 n -0000003642 00000 n -0000432272 00000 n -0000970227 00000 n -0000003688 00000 n -0000003725 00000 n -0000432461 00000 n -0000970148 00000 n -0000003774 00000 n -0000003815 00000 n -0000437791 00000 n -0000970055 00000 n -0000003864 00000 n -0000003932 00000 n -0000442890 00000 n -0000969976 00000 n -0000003981 00000 n -0000004020 00000 n -0000447846 00000 n -0000969897 00000 n -0000004066 00000 n -0000004101 00000 n -0000448732 00000 n -0000969766 00000 n -0000004144 00000 n -0000004202 00000 n -0000448921 00000 n -0000969687 00000 n -0000004248 00000 n -0000004285 00000 n -0000449741 00000 n -0000969594 00000 n -0000004331 00000 n -0000004375 00000 n -0000453482 00000 n -0000969501 00000 n -0000004421 00000 n -0000004464 00000 n -0000453986 00000 n -0000969408 00000 n -0000004510 00000 n -0000004544 00000 n -0000458055 00000 n -0000969315 00000 n -0000004590 00000 n -0000004629 00000 n -0000458878 00000 n -0000969222 00000 n -0000004675 00000 n -0000004721 00000 n -0000463687 00000 n -0000969143 00000 n -0000004767 00000 n -0000004844 00000 n -0000467535 00000 n -0000969012 00000 n -0000004887 00000 n -0000004941 00000 n -0000467851 00000 n -0000968894 00000 n -0000004987 00000 n -0000005031 00000 n -0000468040 00000 n -0000968815 00000 n -0000005080 00000 n -0000005119 00000 n -0000468357 00000 n -0000968722 00000 n -0000005168 00000 n -0000005218 00000 n -0000471746 00000 n -0000968629 00000 n -0000005267 00000 n -0000005333 00000 n -0000472251 00000 n -0000968550 00000 n -0000005382 00000 n -0000005432 00000 n -0000475780 00000 n -0000968457 00000 n -0000005478 00000 n -0000005513 00000 n -0000477302 00000 n -0000968378 00000 n -0000005559 00000 n -0000005603 00000 n -0000480851 00000 n -0000968261 00000 n -0000005647 00000 n -0000005707 00000 n -0000480977 00000 n -0000968182 00000 n -0000005754 00000 n -0000005793 00000 n -0000481165 00000 n -0000968050 00000 n -0000005840 00000 n -0000005872 00000 n -0000481672 00000 n -0000967946 00000 n -0000005922 00000 n -0000005975 00000 n -0000481798 00000 n -0000967867 00000 n -0000006027 00000 n -0000006089 00000 n -0000484356 00000 n -0000967774 00000 n -0000006141 00000 n -0000006195 00000 n -0000484672 00000 n -0000967695 00000 n -0000006247 00000 n -0000006297 00000 n -0000485686 00000 n -0000967602 00000 n -0000006344 00000 n -0000006375 00000 n -0000488713 00000 n -0000967470 00000 n -0000006422 00000 n -0000006461 00000 n -0000488901 00000 n -0000967391 00000 n -0000006511 00000 n -0000006562 00000 n -0000489724 00000 n -0000967312 00000 n -0000006612 00000 n -0000006657 00000 n -0000496657 00000 n -0000967180 00000 n -0000006704 00000 n -0000006742 00000 n -0000496846 00000 n -0000967115 00000 n -0000006792 00000 n -0000006846 00000 n -0000497414 00000 n -0000967036 00000 n -0000006893 00000 n -0000006928 00000 n -0000502531 00000 n -0000966903 00000 n -0000006969 00000 n -0000007022 00000 n -0000502657 00000 n -0000966824 00000 n -0000007066 00000 n -0000007113 00000 n -0000512005 00000 n -0000966692 00000 n -0000007157 00000 n -0000007201 00000 n -0000512131 00000 n -0000966613 00000 n -0000007248 00000 n -0000007300 00000 n -0000515654 00000 n -0000966495 00000 n -0000007347 00000 n -0000007394 00000 n -0000515780 00000 n -0000966416 00000 n -0000007444 00000 n -0000007491 00000 n -0000516533 00000 n -0000966337 00000 n -0000007541 00000 n -0000007585 00000 n -0000523617 00000 n -0000966244 00000 n -0000007629 00000 n -0000007662 00000 n -0000527087 00000 n -0000966151 00000 n -0000007706 00000 n -0000007741 00000 n -0000527905 00000 n -0000966058 00000 n -0000007785 00000 n -0000007818 00000 n -0000528595 00000 n -0000965965 00000 n -0000007862 00000 n -0000007897 00000 n -0000532278 00000 n -0000965833 00000 n -0000007941 00000 n -0000007971 00000 n -0000532659 00000 n -0000965754 00000 n -0000008018 00000 n -0000008061 00000 n -0000536752 00000 n -0000965622 00000 n -0000008108 00000 n -0000008146 00000 n -0000536878 00000 n -0000965557 00000 n -0000008196 00000 n -0000008231 00000 n -0000538014 00000 n -0000965464 00000 n -0000008278 00000 n -0000008324 00000 n -0000538838 00000 n -0000965332 00000 n -0000008371 00000 n -0000008416 00000 n -0000539027 00000 n -0000965253 00000 n -0000008466 00000 n -0000008511 00000 n -0000542718 00000 n -0000965174 00000 n -0000008561 00000 n -0000008599 00000 n -0000543158 00000 n -0000965056 00000 n -0000008646 00000 n -0000008692 00000 n -0000543602 00000 n -0000964938 00000 n -0000008742 00000 n -0000008786 00000 n -0000543854 00000 n -0000964859 00000 n -0000008839 00000 n -0000008874 00000 n -0000544041 00000 n -0000964766 00000 n -0000008927 00000 n -0000008969 00000 n -0000544229 00000 n -0000964673 00000 n -0000009022 00000 n -0000009061 00000 n -0000549180 00000 n -0000964580 00000 n -0000009114 00000 n -0000009153 00000 n -0000549494 00000 n -0000964487 00000 n -0000009206 00000 n -0000009243 00000 n -0000549747 00000 n -0000964394 00000 n -0000009296 00000 n -0000009338 00000 n -0000550255 00000 n -0000964301 00000 n -0000009391 00000 n -0000009429 00000 n -0000553149 00000 n -0000964208 00000 n -0000009482 00000 n -0000009537 00000 n -0000553401 00000 n -0000964129 00000 n -0000009590 00000 n -0000009634 00000 n -0000553781 00000 n -0000964036 00000 n -0000009684 00000 n -0000009728 00000 n -0000554416 00000 n -0000963957 00000 n -0000009778 00000 n -0000009821 00000 n -0000554731 00000 n -0000963864 00000 n -0000009865 00000 n -0000009896 00000 n -0000559291 00000 n -0000963771 00000 n -0000009940 00000 n -0000009970 00000 n -0000559795 00000 n -0000963639 00000 n -0000010014 00000 n -0000010065 00000 n -0000563432 00000 n -0000963560 00000 n -0000010112 00000 n -0000010155 00000 n -0000565141 00000 n -0000963467 00000 n -0000010202 00000 n -0000010255 00000 n -0000565768 00000 n -0000963374 00000 n -0000010302 00000 n -0000010366 00000 n -0000568941 00000 n -0000963256 00000 n -0000010413 00000 n -0000010478 00000 n -0000569067 00000 n -0000963177 00000 n -0000010528 00000 n -0000010597 00000 n -0000569319 00000 n -0000963084 00000 n -0000010647 00000 n -0000010720 00000 n -0000571695 00000 n -0000963005 00000 n -0000010770 00000 n -0000010835 00000 n -0000572576 00000 n -0000962887 00000 n -0000010879 00000 n -0000010930 00000 n -0000573078 00000 n -0000962808 00000 n -0000010977 00000 n -0000011024 00000 n -0000577782 00000 n -0000962676 00000 n -0000011071 00000 n -0000011130 00000 n -0000581686 00000 n -0000962597 00000 n -0000011180 00000 n -0000011229 00000 n -0000582695 00000 n -0000962504 00000 n -0000011279 00000 n -0000011336 00000 n -0000586691 00000 n -0000962425 00000 n -0000011386 00000 n -0000011439 00000 n -0000589687 00000 n -0000962346 00000 n -0000011486 00000 n -0000011537 00000 n -0000593724 00000 n -0000962213 00000 n -0000011578 00000 n -0000011626 00000 n -0000594040 00000 n -0000962095 00000 n -0000011670 00000 n -0000011711 00000 n -0000594165 00000 n -0000962016 00000 n -0000011758 00000 n -0000011797 00000 n -0000594354 00000 n -0000961923 00000 n -0000011844 00000 n -0000011891 00000 n -0000595498 00000 n -0000961844 00000 n -0000011938 00000 n -0000011980 00000 n -0000598323 00000 n -0000961712 00000 n -0000012024 00000 n -0000012054 00000 n -0000598449 00000 n -0000961633 00000 n -0000012101 00000 n -0000012152 00000 n -0000598637 00000 n -0000961540 00000 n -0000012199 00000 n -0000012260 00000 n -0000599961 00000 n -0000961461 00000 n -0000012307 00000 n -0000012348 00000 n -0000603095 00000 n -0000961329 00000 n -0000012392 00000 n -0000012426 00000 n -0000603221 00000 n -0000961250 00000 n -0000012473 00000 n -0000012555 00000 n -0000611983 00000 n -0000961171 00000 n -0000012602 00000 n -0000012663 00000 n -0000612554 00000 n -0000961053 00000 n -0000012707 00000 n -0000012740 00000 n -0000612680 00000 n -0000960988 00000 n -0000012787 00000 n -0000012858 00000 n -0000616341 00000 n -0000960855 00000 n -0000012899 00000 n -0000012950 00000 n -0000616467 00000 n -0000960737 00000 n -0000012994 00000 n -0000013041 00000 n -0000616719 00000 n -0000960658 00000 n -0000013088 00000 n -0000013143 00000 n -0000617480 00000 n -0000960565 00000 n -0000013190 00000 n -0000013248 00000 n -0000622514 00000 n -0000960472 00000 n -0000013295 00000 n -0000013343 00000 n -0000626844 00000 n -0000960379 00000 n -0000013390 00000 n -0000013443 00000 n -0000628043 00000 n -0000960286 00000 n -0000013490 00000 n -0000013537 00000 n -0000637416 00000 n -0000960207 00000 n -0000013584 00000 n -0000013661 00000 n -0000637986 00000 n -0000960114 00000 n -0000013705 00000 n -0000013744 00000 n -0000648364 00000 n -0000960021 00000 n -0000013788 00000 n -0000013844 00000 n -0000652413 00000 n -0000959928 00000 n -0000013888 00000 n -0000013942 00000 n -0000656806 00000 n -0000959796 00000 n -0000013986 00000 n -0000014047 00000 n -0000657435 00000 n -0000959692 00000 n -0000014094 00000 n -0000014145 00000 n -0000660916 00000 n -0000959627 00000 n -0000014195 00000 n -0000014248 00000 n -0000670380 00000 n -0000959509 00000 n -0000014292 00000 n -0000014359 00000 n -0000670503 00000 n -0000959430 00000 n -0000014406 00000 n -0000014439 00000 n -0000670692 00000 n -0000959337 00000 n -0000014486 00000 n -0000014516 00000 n -0000672985 00000 n -0000959244 00000 n -0000014563 00000 n -0000014602 00000 n -0000673428 00000 n -0000959151 00000 n -0000014649 00000 n -0000014686 00000 n -0000673680 00000 n -0000959072 00000 n -0000014733 00000 n -0000014780 00000 n -0000676762 00000 n -0000958938 00000 n -0000014822 00000 n -0000014867 00000 n -0000676888 00000 n -0000958859 00000 n -0000014912 00000 n -0000014949 00000 n -0000677139 00000 n -0000958766 00000 n -0000014994 00000 n -0000015044 00000 n -0000678149 00000 n -0000958673 00000 n -0000015089 00000 n -0000015130 00000 n -0000686056 00000 n -0000958580 00000 n -0000015175 00000 n -0000015219 00000 n -0000738619 00000 n -0000958448 00000 n -0000015264 00000 n -0000015307 00000 n -0000738998 00000 n -0000958344 00000 n -0000015355 00000 n -0000015396 00000 n -0000742621 00000 n -0000958265 00000 n -0000015447 00000 n -0000015496 00000 n -0000742810 00000 n -0000958172 00000 n -0000015547 00000 n -0000015584 00000 n -0000746921 00000 n -0000958093 00000 n -0000015635 00000 n -0000015679 00000 n -0000747427 00000 n -0000958000 00000 n -0000015724 00000 n -0000015758 00000 n -0000747867 00000 n -0000957907 00000 n -0000015803 00000 n -0000015839 00000 n -0000751711 00000 n -0000957775 00000 n -0000015884 00000 n -0000015921 00000 n -0000752088 00000 n -0000957696 00000 n -0000015969 00000 n -0000016027 00000 n -0000752277 00000 n -0000957603 00000 n -0000016075 00000 n -0000016143 00000 n -0000754813 00000 n -0000957510 00000 n -0000016191 00000 n -0000016249 00000 n -0000755002 00000 n -0000957417 00000 n -0000016297 00000 n -0000016368 00000 n -0000755191 00000 n -0000957324 00000 n -0000016416 00000 n -0000016474 00000 n -0000755380 00000 n -0000957231 00000 n -0000016522 00000 n -0000016572 00000 n -0000755632 00000 n -0000957152 00000 n -0000016620 00000 n -0000016670 00000 n -0000755820 00000 n -0000957020 00000 n -0000016715 00000 n -0000016754 00000 n -0000756009 00000 n -0000956941 00000 n -0000016802 00000 n -0000016846 00000 n -0000759199 00000 n -0000956848 00000 n -0000016894 00000 n -0000016932 00000 n -0000759642 00000 n -0000956755 00000 n -0000016980 00000 n -0000017015 00000 n -0000759894 00000 n -0000956676 00000 n -0000017063 00000 n -0000017101 00000 n -0000763286 00000 n -0000956544 00000 n -0000017146 00000 n -0000017188 00000 n -0000763475 00000 n -0000956465 00000 n -0000017236 00000 n -0000017280 00000 n -0000763792 00000 n -0000956372 00000 n -0000017328 00000 n -0000017370 00000 n -0000769750 00000 n -0000956293 00000 n -0000017418 00000 n -0000017457 00000 n -0000769939 00000 n -0000956161 00000 n -0000017502 00000 n -0000017546 00000 n -0000773214 00000 n -0000956082 00000 n -0000017594 00000 n -0000017629 00000 n -0000773592 00000 n -0000955964 00000 n -0000017677 00000 n -0000017711 00000 n -0000774095 00000 n -0000955885 00000 n -0000017762 00000 n -0000017807 00000 n -0000777275 00000 n -0000955806 00000 n -0000017858 00000 n -0000017910 00000 n -0000777527 00000 n -0000955713 00000 n -0000017955 00000 n -0000017986 00000 n -0000781485 00000 n -0000955595 00000 n -0000018031 00000 n -0000018064 00000 n -0000782113 00000 n -0000955516 00000 n -0000018112 00000 n -0000018149 00000 n -0000782427 00000 n -0000955423 00000 n -0000018197 00000 n -0000018241 00000 n -0000786454 00000 n -0000955330 00000 n -0000018289 00000 n -0000018332 00000 n -0000788484 00000 n -0000955251 00000 n -0000018380 00000 n -0000018427 00000 n -0000791616 00000 n -0000955157 00000 n -0000018469 00000 n -0000018517 00000 n -0000857320 00000 n -0000955023 00000 n -0000018559 00000 n -0000018606 00000 n -0000857509 00000 n -0000954944 00000 n -0000018651 00000 n -0000018690 00000 n -0000858206 00000 n -0000954851 00000 n -0000018735 00000 n -0000018810 00000 n -0000858647 00000 n -0000954758 00000 n -0000018855 00000 n -0000018951 00000 n -0000861393 00000 n -0000954665 00000 n -0000018996 00000 n -0000019068 00000 n -0000861709 00000 n -0000954572 00000 n -0000019113 00000 n -0000019168 00000 n -0000862337 00000 n -0000954479 00000 n -0000019213 00000 n -0000019271 00000 n -0000865056 00000 n -0000954386 00000 n -0000019316 00000 n -0000019391 00000 n -0000865561 00000 n -0000954293 00000 n -0000019436 00000 n -0000019508 00000 n -0000869520 00000 n -0000954200 00000 n -0000019553 00000 n -0000019627 00000 n -0000872334 00000 n -0000954107 00000 n -0000019672 00000 n -0000019751 00000 n -0000872714 00000 n -0000954028 00000 n -0000019796 00000 n -0000019916 00000 n -0000876571 00000 n -0000953895 00000 n -0000019958 00000 n -0000019997 00000 n -0000876822 00000 n -0000953816 00000 n -0000020042 00000 n -0000020095 00000 n -0000878784 00000 n -0000953737 00000 n -0000020140 00000 n -0000020203 00000 n -0000881399 00000 n -0000953604 00000 n -0000020245 00000 n -0000020312 00000 n -0000881524 00000 n -0000953525 00000 n -0000020357 00000 n -0000020394 00000 n -0000882659 00000 n -0000953432 00000 n -0000020439 00000 n -0000020482 00000 n -0000888042 00000 n -0000953353 00000 n -0000020527 00000 n -0000020568 00000 n -0000894137 00000 n -0000953219 00000 n -0000020610 00000 n -0000020672 00000 n -0000894451 00000 n -0000953140 00000 n -0000020717 00000 n -0000020748 00000 n -0000894764 00000 n -0000953047 00000 n -0000020793 00000 n -0000020844 00000 n -0000898845 00000 n -0000952954 00000 n -0000020889 00000 n -0000020928 00000 n -0000899096 00000 n -0000952861 00000 n -0000020973 00000 n -0000021015 00000 n -0000903092 00000 n -0000952768 00000 n -0000021060 00000 n -0000021096 00000 n -0000908328 00000 n -0000952675 00000 n -0000021141 00000 n -0000021183 00000 n -0000908642 00000 n -0000952582 00000 n -0000021228 00000 n -0000021275 00000 n -0000908894 00000 n -0000952489 00000 n -0000021320 00000 n -0000021377 00000 n -0000912019 00000 n -0000952396 00000 n -0000021422 00000 n -0000021456 00000 n -0000912207 00000 n -0000952303 00000 n -0000021501 00000 n -0000021535 00000 n -0000912396 00000 n -0000952210 00000 n -0000021580 00000 n -0000021636 00000 n -0000912711 00000 n -0000952131 00000 n -0000021681 00000 n -0000021743 00000 n -0000916718 00000 n -0000952037 00000 n -0000021785 00000 n -0000021813 00000 n -0000916844 00000 n -0000951904 00000 n -0000021855 00000 n -0000021889 00000 n -0000916970 00000 n -0000951839 00000 n -0000021937 00000 n -0000021966 00000 n -0000917348 00000 n -0000951706 00000 n -0000022008 00000 n -0000022029 00000 n -0000917473 00000 n -0000951602 00000 n -0000022077 00000 n -0000022103 00000 n -0000917915 00000 n -0000951537 00000 n -0000022154 00000 n -0000022217 00000 n -0000921874 00000 n -0000951404 00000 n -0000022259 00000 n -0000022280 00000 n -0000921998 00000 n -0000951300 00000 n -0000022328 00000 n -0000022351 00000 n -0000922438 00000 n -0000951221 00000 n -0000022399 00000 n -0000022429 00000 n -0000922689 00000 n -0000951142 00000 n -0000022477 00000 n -0000022505 00000 n -0000922941 00000 n -0000951009 00000 n -0000022547 00000 n -0000022568 00000 n -0000923066 00000 n -0000950905 00000 n -0000022616 00000 n -0000022660 00000 n -0000923443 00000 n -0000950826 00000 n -0000022708 00000 n -0000022737 00000 n -0000923695 00000 n -0000950733 00000 n -0000022785 00000 n -0000022839 00000 n -0000924198 00000 n -0000950654 00000 n -0000022887 00000 n -0000022914 00000 n -0000926895 00000 n -0000950520 00000 n -0000022956 00000 n -0000022977 00000 n -0000927020 00000 n -0000950416 00000 n -0000023025 00000 n -0000023051 00000 n -0000927399 00000 n -0000950350 00000 n -0000023099 00000 n -0000023130 00000 n -0000927713 00000 n -0000950211 00000 n -0000023173 00000 n -0000023195 00000 n -0000927839 00000 n -0000950142 00000 n -0000023244 00000 n -0000023271 00000 n -0000928283 00000 n -0000950002 00000 n -0000023314 00000 n -0000023336 00000 n -0000928409 00000 n -0000949933 00000 n -0000023385 00000 n -0000023416 00000 n -0000930810 00000 n -0000949793 00000 n -0000023459 00000 n -0000023481 00000 n -0000930934 00000 n -0000949683 00000 n -0000023530 00000 n -0000023574 00000 n -0000931440 00000 n -0000949614 00000 n -0000023623 00000 n -0000023649 00000 n -0000932643 00000 n -0000949474 00000 n -0000023692 00000 n -0000023714 00000 n -0000932768 00000 n -0000949364 00000 n -0000023763 00000 n -0000023804 00000 n -0000933084 00000 n -0000949280 00000 n -0000023854 00000 n -0000023882 00000 n -0000935012 00000 n -0000949196 00000 n -0000023932 00000 n -0000023957 00000 n -0000935328 00000 n -0000949056 00000 n -0000024000 00000 n -0000024022 00000 n -0000935452 00000 n -0000948987 00000 n -0000024072 00000 n -0000024095 00000 n -0000936022 00000 n -0000948847 00000 n -0000024138 00000 n -0000024160 00000 n -0000936148 00000 n +0000000099 00000 n +0000098487 00000 n +0000971706 00000 n +0000000138 00000 n +0000000173 00000 n +0000367780 00000 n +0000971619 00000 n +0000000212 00000 n +0000000246 00000 n +0000367842 00000 n +0000971530 00000 n +0000000286 00000 n +0000000321 00000 n +0000370889 00000 n +0000971404 00000 n +0000000361 00000 n +0000000407 00000 n +0000371014 00000 n +0000971330 00000 n +0000000449 00000 n +0000000494 00000 n +0000371391 00000 n +0000971243 00000 n +0000000536 00000 n +0000000570 00000 n +0000371705 00000 n +0000971156 00000 n +0000000612 00000 n +0000000648 00000 n +0000375371 00000 n +0000971069 00000 n +0000000690 00000 n +0000000721 00000 n +0000378343 00000 n +0000970995 00000 n +0000000763 00000 n +0000000807 00000 n +0000384739 00000 n +0000970867 00000 n +0000000847 00000 n +0000000896 00000 n +0000384864 00000 n +0000970754 00000 n +0000000938 00000 n +0000000974 00000 n +0000386186 00000 n +0000970680 00000 n +0000001018 00000 n +0000001048 00000 n +0000389048 00000 n +0000970556 00000 n +0000001092 00000 n +0000001133 00000 n +0000389236 00000 n +0000970482 00000 n +0000001179 00000 n +0000001212 00000 n +0000389931 00000 n +0000970408 00000 n +0000001258 00000 n +0000001296 00000 n +0000390372 00000 n +0000970321 00000 n +0000001340 00000 n +0000001376 00000 n +0000394706 00000 n +0000970234 00000 n +0000001420 00000 n +0000001454 00000 n +0000395467 00000 n +0000970108 00000 n +0000001498 00000 n +0000001536 00000 n +0000403726 00000 n +0000970034 00000 n +0000001582 00000 n +0000001620 00000 n +0000406151 00000 n +0000969947 00000 n +0000001666 00000 n +0000001719 00000 n +0000406339 00000 n +0000969860 00000 n +0000001765 00000 n +0000001804 00000 n +0000407033 00000 n +0000969773 00000 n +0000001850 00000 n +0000001897 00000 n +0000407221 00000 n +0000969686 00000 n +0000001943 00000 n +0000001988 00000 n +0000407409 00000 n +0000969597 00000 n +0000002034 00000 n +0000002086 00000 n +0000407596 00000 n +0000969506 00000 n +0000002133 00000 n +0000002181 00000 n +0000411103 00000 n +0000969414 00000 n +0000002229 00000 n +0000002278 00000 n +0000411293 00000 n +0000969336 00000 n +0000002326 00000 n +0000002376 00000 n +0000411482 00000 n +0000969259 00000 n +0000002421 00000 n +0000002475 00000 n +0000412110 00000 n +0000969129 00000 n +0000002518 00000 n +0000002556 00000 n +0000416037 00000 n +0000969050 00000 n +0000002601 00000 n +0000002639 00000 n +0000417177 00000 n +0000968918 00000 n +0000002684 00000 n +0000002726 00000 n +0000417366 00000 n +0000968800 00000 n +0000002774 00000 n +0000002808 00000 n +0000417618 00000 n +0000968721 00000 n +0000002858 00000 n +0000002912 00000 n +0000420571 00000 n +0000968628 00000 n +0000002962 00000 n +0000003030 00000 n +0000421199 00000 n +0000968535 00000 n +0000003080 00000 n +0000003154 00000 n +0000424790 00000 n +0000968456 00000 n +0000003204 00000 n +0000003254 00000 n +0000426439 00000 n +0000968338 00000 n +0000003302 00000 n +0000003341 00000 n +0000426691 00000 n +0000968259 00000 n +0000003391 00000 n +0000003446 00000 n +0000430974 00000 n +0000968180 00000 n +0000003496 00000 n +0000003547 00000 n +0000432425 00000 n +0000968087 00000 n +0000003592 00000 n +0000003632 00000 n +0000432929 00000 n +0000967955 00000 n +0000003678 00000 n +0000003715 00000 n +0000433117 00000 n +0000967876 00000 n +0000003764 00000 n +0000003805 00000 n +0000438428 00000 n +0000967797 00000 n +0000003854 00000 n +0000003922 00000 n +0000443802 00000 n +0000967718 00000 n +0000003968 00000 n +0000004003 00000 n +0000444813 00000 n +0000967587 00000 n +0000004046 00000 n +0000004104 00000 n +0000447465 00000 n +0000967508 00000 n +0000004150 00000 n +0000004187 00000 n +0000448538 00000 n +0000967415 00000 n +0000004233 00000 n +0000004277 00000 n +0000452336 00000 n +0000967322 00000 n +0000004323 00000 n +0000004366 00000 n +0000452840 00000 n +0000967229 00000 n +0000004412 00000 n +0000004446 00000 n +0000453471 00000 n +0000967136 00000 n +0000004492 00000 n +0000004531 00000 n +0000457528 00000 n +0000967043 00000 n +0000004577 00000 n +0000004623 00000 n +0000462376 00000 n +0000966964 00000 n +0000004669 00000 n +0000004746 00000 n +0000463262 00000 n +0000966833 00000 n +0000004789 00000 n +0000004843 00000 n +0000467005 00000 n +0000966715 00000 n +0000004889 00000 n +0000004933 00000 n +0000467194 00000 n +0000966636 00000 n +0000004982 00000 n +0000005021 00000 n +0000467511 00000 n +0000966543 00000 n +0000005070 00000 n +0000005120 00000 n +0000468330 00000 n +0000966450 00000 n +0000005169 00000 n +0000005235 00000 n +0000468517 00000 n +0000966357 00000 n +0000005284 00000 n +0000005334 00000 n +0000471894 00000 n +0000966278 00000 n +0000005383 00000 n +0000005425 00000 n +0000472083 00000 n +0000966185 00000 n +0000005471 00000 n +0000005506 00000 n +0000476353 00000 n +0000966106 00000 n +0000005552 00000 n +0000005596 00000 n +0000477486 00000 n +0000965989 00000 n +0000005640 00000 n +0000005700 00000 n +0000477612 00000 n +0000965910 00000 n +0000005747 00000 n +0000005786 00000 n +0000477799 00000 n +0000965778 00000 n +0000005833 00000 n +0000005865 00000 n +0000478307 00000 n +0000965674 00000 n +0000005915 00000 n +0000005968 00000 n +0000478433 00000 n +0000965595 00000 n +0000006020 00000 n +0000006082 00000 n +0000480495 00000 n +0000965502 00000 n +0000006134 00000 n +0000006188 00000 n +0000480811 00000 n +0000965423 00000 n +0000006240 00000 n +0000006290 00000 n +0000484009 00000 n +0000965330 00000 n +0000006337 00000 n +0000006368 00000 n +0000485015 00000 n +0000965198 00000 n +0000006415 00000 n +0000006454 00000 n +0000485204 00000 n +0000965119 00000 n +0000006504 00000 n +0000006555 00000 n +0000488039 00000 n +0000965040 00000 n +0000006605 00000 n +0000006650 00000 n +0000492426 00000 n +0000964908 00000 n +0000006697 00000 n +0000006735 00000 n +0000492614 00000 n +0000964843 00000 n +0000006785 00000 n +0000006839 00000 n +0000495606 00000 n +0000964764 00000 n +0000006886 00000 n +0000006921 00000 n +0000499292 00000 n +0000964631 00000 n +0000006962 00000 n +0000007015 00000 n +0000499418 00000 n +0000964552 00000 n +0000007059 00000 n +0000007106 00000 n +0000509239 00000 n +0000964420 00000 n +0000007150 00000 n +0000007194 00000 n +0000509365 00000 n +0000964341 00000 n +0000007241 00000 n +0000007293 00000 n +0000512888 00000 n +0000964223 00000 n +0000007340 00000 n +0000007387 00000 n +0000513014 00000 n +0000964144 00000 n +0000007437 00000 n +0000007484 00000 n +0000513767 00000 n +0000964065 00000 n +0000007534 00000 n +0000007578 00000 n +0000520851 00000 n +0000963972 00000 n +0000007622 00000 n +0000007655 00000 n +0000524321 00000 n +0000963879 00000 n +0000007699 00000 n +0000007734 00000 n +0000525139 00000 n +0000963786 00000 n +0000007778 00000 n +0000007811 00000 n +0000525829 00000 n +0000963693 00000 n +0000007855 00000 n +0000007890 00000 n +0000529512 00000 n +0000963561 00000 n +0000007934 00000 n +0000007964 00000 n +0000529893 00000 n +0000963482 00000 n +0000008011 00000 n +0000008054 00000 n +0000533986 00000 n +0000963350 00000 n +0000008101 00000 n +0000008139 00000 n +0000534112 00000 n +0000963285 00000 n +0000008189 00000 n +0000008224 00000 n +0000535248 00000 n +0000963192 00000 n +0000008271 00000 n +0000008317 00000 n +0000536072 00000 n +0000963060 00000 n +0000008364 00000 n +0000008409 00000 n +0000536261 00000 n +0000962981 00000 n +0000008459 00000 n +0000008504 00000 n +0000539952 00000 n +0000962902 00000 n +0000008554 00000 n +0000008592 00000 n +0000540392 00000 n +0000962784 00000 n +0000008639 00000 n +0000008685 00000 n +0000540836 00000 n +0000962666 00000 n +0000008735 00000 n +0000008779 00000 n +0000541088 00000 n +0000962587 00000 n +0000008832 00000 n +0000008867 00000 n +0000541275 00000 n +0000962494 00000 n +0000008920 00000 n +0000008962 00000 n +0000541463 00000 n +0000962401 00000 n +0000009015 00000 n +0000009054 00000 n +0000546414 00000 n +0000962308 00000 n +0000009107 00000 n +0000009146 00000 n +0000546728 00000 n +0000962215 00000 n +0000009199 00000 n +0000009236 00000 n +0000546981 00000 n +0000962122 00000 n +0000009289 00000 n +0000009331 00000 n +0000547489 00000 n +0000962029 00000 n +0000009384 00000 n +0000009422 00000 n +0000550383 00000 n +0000961936 00000 n +0000009475 00000 n +0000009530 00000 n +0000550635 00000 n +0000961857 00000 n +0000009583 00000 n +0000009627 00000 n +0000551015 00000 n +0000961764 00000 n +0000009677 00000 n +0000009721 00000 n +0000551650 00000 n +0000961685 00000 n +0000009771 00000 n +0000009814 00000 n +0000551965 00000 n +0000961592 00000 n +0000009858 00000 n +0000009889 00000 n +0000556524 00000 n +0000961499 00000 n +0000009933 00000 n +0000009963 00000 n +0000557028 00000 n +0000961367 00000 n +0000010007 00000 n +0000010058 00000 n +0000560517 00000 n +0000961288 00000 n +0000010105 00000 n +0000010148 00000 n +0000562226 00000 n +0000961195 00000 n +0000010195 00000 n +0000010248 00000 n +0000565159 00000 n +0000961102 00000 n +0000010295 00000 n +0000010359 00000 n +0000566227 00000 n +0000960984 00000 n +0000010406 00000 n +0000010471 00000 n +0000566353 00000 n +0000960905 00000 n +0000010521 00000 n +0000010590 00000 n +0000566605 00000 n +0000960812 00000 n +0000010640 00000 n +0000010713 00000 n +0000568621 00000 n +0000960733 00000 n +0000010763 00000 n +0000010828 00000 n +0000569502 00000 n +0000960615 00000 n +0000010872 00000 n +0000010923 00000 n +0000574276 00000 n +0000960536 00000 n +0000010970 00000 n +0000011017 00000 n +0000574781 00000 n +0000960404 00000 n +0000011064 00000 n +0000011123 00000 n +0000578534 00000 n +0000960325 00000 n +0000011173 00000 n +0000011222 00000 n +0000579542 00000 n +0000960232 00000 n +0000011272 00000 n +0000011329 00000 n +0000583755 00000 n +0000960153 00000 n +0000011379 00000 n +0000011432 00000 n +0000586812 00000 n +0000960074 00000 n +0000011479 00000 n +0000011530 00000 n +0000590861 00000 n +0000959941 00000 n +0000011571 00000 n +0000011619 00000 n +0000591177 00000 n +0000959823 00000 n +0000011663 00000 n +0000011704 00000 n +0000591302 00000 n +0000959744 00000 n +0000011751 00000 n +0000011790 00000 n +0000591491 00000 n +0000959651 00000 n +0000011837 00000 n +0000011884 00000 n +0000592635 00000 n +0000959572 00000 n +0000011931 00000 n +0000011973 00000 n +0000595461 00000 n +0000959440 00000 n +0000012017 00000 n +0000012047 00000 n +0000595587 00000 n +0000959361 00000 n +0000012094 00000 n +0000012145 00000 n +0000595775 00000 n +0000959268 00000 n +0000012192 00000 n +0000012253 00000 n +0000597099 00000 n +0000959189 00000 n +0000012300 00000 n +0000012341 00000 n +0000600233 00000 n +0000959057 00000 n +0000012385 00000 n +0000012419 00000 n +0000600359 00000 n +0000958978 00000 n +0000012466 00000 n +0000012548 00000 n +0000609121 00000 n +0000958899 00000 n +0000012595 00000 n +0000012656 00000 n +0000609692 00000 n +0000958781 00000 n +0000012700 00000 n +0000012733 00000 n +0000609818 00000 n +0000958716 00000 n +0000012780 00000 n +0000012851 00000 n +0000613479 00000 n +0000958583 00000 n +0000012892 00000 n +0000012943 00000 n +0000613605 00000 n +0000958465 00000 n +0000012987 00000 n +0000013034 00000 n +0000613857 00000 n +0000958386 00000 n +0000013081 00000 n +0000013136 00000 n +0000614618 00000 n +0000958293 00000 n +0000013183 00000 n +0000013241 00000 n +0000619652 00000 n +0000958200 00000 n +0000013288 00000 n +0000013336 00000 n +0000623982 00000 n +0000958107 00000 n +0000013383 00000 n +0000013436 00000 n +0000625181 00000 n +0000958014 00000 n +0000013483 00000 n +0000013530 00000 n +0000634555 00000 n +0000957935 00000 n +0000013577 00000 n +0000013654 00000 n +0000635125 00000 n +0000957842 00000 n +0000013698 00000 n +0000013737 00000 n +0000645503 00000 n +0000957749 00000 n +0000013781 00000 n +0000013837 00000 n +0000649552 00000 n +0000957656 00000 n +0000013881 00000 n +0000013935 00000 n +0000653944 00000 n +0000957524 00000 n +0000013979 00000 n +0000014040 00000 n +0000654573 00000 n +0000957420 00000 n +0000014087 00000 n +0000014138 00000 n +0000658055 00000 n +0000957355 00000 n +0000014188 00000 n +0000014241 00000 n +0000667518 00000 n +0000957237 00000 n +0000014285 00000 n +0000014352 00000 n +0000667641 00000 n +0000957158 00000 n +0000014399 00000 n +0000014432 00000 n +0000667830 00000 n +0000957065 00000 n +0000014479 00000 n +0000014509 00000 n +0000670122 00000 n +0000956972 00000 n +0000014556 00000 n +0000014595 00000 n +0000670565 00000 n +0000956879 00000 n +0000014642 00000 n +0000014679 00000 n +0000670817 00000 n +0000956800 00000 n +0000014726 00000 n +0000014773 00000 n +0000673898 00000 n +0000956666 00000 n +0000014815 00000 n +0000014860 00000 n +0000674024 00000 n +0000956587 00000 n +0000014905 00000 n +0000014942 00000 n +0000674275 00000 n +0000956494 00000 n +0000014987 00000 n +0000015037 00000 n +0000675285 00000 n +0000956401 00000 n +0000015082 00000 n +0000015123 00000 n +0000683192 00000 n +0000956308 00000 n +0000015168 00000 n +0000015212 00000 n +0000735746 00000 n +0000956176 00000 n +0000015257 00000 n +0000015300 00000 n +0000736125 00000 n +0000956072 00000 n +0000015348 00000 n +0000015389 00000 n +0000739751 00000 n +0000955993 00000 n +0000015440 00000 n +0000015489 00000 n +0000739940 00000 n +0000955900 00000 n +0000015540 00000 n +0000015577 00000 n +0000744051 00000 n +0000955821 00000 n +0000015628 00000 n +0000015672 00000 n +0000744557 00000 n +0000955728 00000 n +0000015717 00000 n +0000015751 00000 n +0000744997 00000 n +0000955635 00000 n +0000015796 00000 n +0000015832 00000 n +0000748841 00000 n +0000955503 00000 n +0000015877 00000 n +0000015914 00000 n +0000749218 00000 n +0000955424 00000 n +0000015962 00000 n +0000016020 00000 n +0000749407 00000 n +0000955331 00000 n +0000016068 00000 n +0000016136 00000 n +0000751943 00000 n +0000955238 00000 n +0000016184 00000 n +0000016242 00000 n +0000752132 00000 n +0000955145 00000 n +0000016290 00000 n +0000016361 00000 n +0000752321 00000 n +0000955052 00000 n +0000016409 00000 n +0000016467 00000 n +0000752510 00000 n +0000954959 00000 n +0000016515 00000 n +0000016565 00000 n +0000752762 00000 n +0000954880 00000 n +0000016613 00000 n +0000016663 00000 n +0000752950 00000 n +0000954748 00000 n +0000016708 00000 n +0000016747 00000 n +0000753139 00000 n +0000954669 00000 n +0000016795 00000 n +0000016839 00000 n +0000756329 00000 n +0000954576 00000 n +0000016887 00000 n +0000016925 00000 n +0000756772 00000 n +0000954483 00000 n +0000016973 00000 n +0000017008 00000 n +0000757024 00000 n +0000954404 00000 n +0000017056 00000 n +0000017094 00000 n +0000760416 00000 n +0000954272 00000 n +0000017139 00000 n +0000017181 00000 n +0000760605 00000 n +0000954193 00000 n +0000017229 00000 n +0000017273 00000 n +0000760922 00000 n +0000954100 00000 n +0000017321 00000 n +0000017363 00000 n +0000766881 00000 n +0000954021 00000 n +0000017411 00000 n +0000017450 00000 n +0000767070 00000 n +0000953889 00000 n +0000017495 00000 n +0000017539 00000 n +0000770344 00000 n +0000953810 00000 n +0000017587 00000 n +0000017622 00000 n +0000770722 00000 n +0000953692 00000 n +0000017670 00000 n +0000017704 00000 n +0000771225 00000 n +0000953613 00000 n +0000017755 00000 n +0000017800 00000 n +0000774617 00000 n +0000953534 00000 n +0000017851 00000 n +0000017903 00000 n +0000774869 00000 n +0000953441 00000 n +0000017948 00000 n +0000017979 00000 n +0000778890 00000 n +0000953323 00000 n +0000018024 00000 n +0000018057 00000 n +0000779518 00000 n +0000953244 00000 n +0000018105 00000 n +0000018142 00000 n +0000779832 00000 n +0000953151 00000 n +0000018190 00000 n +0000018234 00000 n +0000783859 00000 n +0000953058 00000 n +0000018282 00000 n +0000018325 00000 n +0000785889 00000 n +0000952979 00000 n +0000018373 00000 n +0000018420 00000 n +0000789021 00000 n +0000952885 00000 n +0000018462 00000 n +0000018510 00000 n +0000854926 00000 n +0000952751 00000 n +0000018552 00000 n +0000018599 00000 n +0000855115 00000 n +0000952672 00000 n +0000018644 00000 n +0000018683 00000 n +0000855812 00000 n +0000952579 00000 n +0000018728 00000 n +0000018803 00000 n +0000856253 00000 n +0000952486 00000 n +0000018848 00000 n +0000018944 00000 n +0000859000 00000 n +0000952393 00000 n +0000018989 00000 n +0000019061 00000 n +0000859316 00000 n +0000952300 00000 n +0000019106 00000 n +0000019161 00000 n +0000859944 00000 n +0000952207 00000 n +0000019206 00000 n +0000019264 00000 n +0000862662 00000 n +0000952114 00000 n +0000019309 00000 n +0000019384 00000 n +0000863167 00000 n +0000952021 00000 n +0000019429 00000 n +0000019501 00000 n +0000867126 00000 n +0000951928 00000 n +0000019546 00000 n +0000019620 00000 n +0000869938 00000 n +0000951835 00000 n +0000019665 00000 n +0000019744 00000 n +0000870318 00000 n +0000951756 00000 n +0000019789 00000 n +0000019909 00000 n +0000874175 00000 n +0000951623 00000 n +0000019951 00000 n +0000019990 00000 n +0000874426 00000 n +0000951544 00000 n +0000020035 00000 n +0000020088 00000 n +0000876388 00000 n +0000951465 00000 n +0000020133 00000 n +0000020196 00000 n +0000879003 00000 n +0000951332 00000 n +0000020238 00000 n +0000020305 00000 n +0000879128 00000 n +0000951253 00000 n +0000020350 00000 n +0000020387 00000 n +0000880263 00000 n +0000951160 00000 n +0000020432 00000 n +0000020475 00000 n +0000885645 00000 n +0000951081 00000 n +0000020520 00000 n +0000020561 00000 n +0000891741 00000 n +0000950947 00000 n +0000020603 00000 n +0000020665 00000 n +0000892055 00000 n +0000950868 00000 n +0000020710 00000 n +0000020741 00000 n +0000892368 00000 n +0000950775 00000 n +0000020786 00000 n +0000020837 00000 n +0000896450 00000 n +0000950682 00000 n +0000020882 00000 n +0000020921 00000 n +0000896701 00000 n +0000950589 00000 n +0000020966 00000 n +0000021008 00000 n +0000900695 00000 n +0000950496 00000 n +0000021053 00000 n +0000021089 00000 n +0000905931 00000 n +0000950403 00000 n +0000021134 00000 n +0000021176 00000 n +0000906245 00000 n +0000950310 00000 n +0000021221 00000 n +0000021268 00000 n +0000906497 00000 n +0000950217 00000 n +0000021313 00000 n +0000021370 00000 n +0000909621 00000 n +0000950124 00000 n +0000021415 00000 n +0000021449 00000 n +0000909809 00000 n +0000950031 00000 n +0000021494 00000 n +0000021528 00000 n +0000909998 00000 n +0000949938 00000 n +0000021573 00000 n +0000021629 00000 n +0000910313 00000 n +0000949859 00000 n +0000021674 00000 n +0000021736 00000 n +0000914320 00000 n +0000949765 00000 n +0000021778 00000 n +0000021806 00000 n +0000914446 00000 n +0000949632 00000 n +0000021848 00000 n +0000021882 00000 n +0000914572 00000 n +0000949567 00000 n +0000021930 00000 n +0000021959 00000 n +0000914950 00000 n +0000949434 00000 n +0000022001 00000 n +0000022022 00000 n +0000915075 00000 n +0000949330 00000 n +0000022070 00000 n +0000022096 00000 n +0000915517 00000 n +0000949265 00000 n +0000022147 00000 n +0000022210 00000 n +0000919476 00000 n +0000949132 00000 n +0000022252 00000 n +0000022273 00000 n +0000919600 00000 n +0000949028 00000 n +0000022321 00000 n +0000022344 00000 n +0000920040 00000 n +0000948949 00000 n +0000022392 00000 n +0000022422 00000 n +0000920291 00000 n +0000948870 00000 n +0000022470 00000 n +0000022498 00000 n +0000920543 00000 n 0000948737 00000 n -0000024210 00000 n -0000024267 00000 n -0000936401 00000 n -0000948668 00000 n -0000024317 00000 n -0000024356 00000 n -0000936718 00000 n -0000948528 00000 n -0000024399 00000 n -0000024421 00000 n -0000936843 00000 n -0000948418 00000 n -0000024471 00000 n -0000024499 00000 n -0000939575 00000 n -0000948349 00000 n -0000024549 00000 n -0000024575 00000 n -0000940464 00000 n -0000948209 00000 n -0000024618 00000 n -0000024640 00000 n -0000940590 00000 n -0000948099 00000 n -0000024690 00000 n -0000024727 00000 n -0000940907 00000 n -0000948030 00000 n -0000024777 00000 n -0000024819 00000 n -0000941160 00000 n -0000947905 00000 n -0000024862 00000 n -0000024884 00000 n -0000941286 00000 n -0000947836 00000 n -0000024934 00000 n -0000024972 00000 n -0000025317 00000 n -0000025691 00000 n -0000025026 00000 n -0000025441 00000 n -0000025504 00000 n -0000025567 00000 n +0000022540 00000 n +0000022561 00000 n +0000920668 00000 n +0000948633 00000 n +0000022609 00000 n +0000022653 00000 n +0000921045 00000 n +0000948554 00000 n +0000022701 00000 n +0000022730 00000 n +0000921297 00000 n +0000948461 00000 n +0000022778 00000 n +0000022832 00000 n +0000921800 00000 n +0000948382 00000 n +0000022880 00000 n +0000022907 00000 n +0000924497 00000 n +0000948248 00000 n +0000022949 00000 n +0000022970 00000 n +0000924622 00000 n +0000948144 00000 n +0000023018 00000 n +0000023044 00000 n +0000925001 00000 n +0000948078 00000 n +0000023092 00000 n +0000023123 00000 n +0000925315 00000 n +0000947939 00000 n +0000023166 00000 n +0000023188 00000 n +0000925441 00000 n +0000947870 00000 n +0000023237 00000 n +0000023264 00000 n +0000925885 00000 n +0000947730 00000 n +0000023307 00000 n +0000023329 00000 n +0000926011 00000 n +0000947661 00000 n +0000023378 00000 n +0000023409 00000 n +0000928497 00000 n +0000947521 00000 n +0000023452 00000 n +0000023474 00000 n +0000928621 00000 n +0000947411 00000 n +0000023523 00000 n +0000023567 00000 n +0000929180 00000 n +0000947342 00000 n +0000023616 00000 n +0000023642 00000 n +0000930381 00000 n +0000947202 00000 n +0000023685 00000 n +0000023707 00000 n +0000930506 00000 n +0000947092 00000 n +0000023756 00000 n +0000023797 00000 n +0000930820 00000 n +0000947008 00000 n +0000023847 00000 n +0000023875 00000 n +0000932748 00000 n +0000946924 00000 n +0000023925 00000 n +0000023950 00000 n +0000933064 00000 n +0000946784 00000 n +0000023993 00000 n +0000024015 00000 n +0000933188 00000 n +0000946715 00000 n +0000024065 00000 n +0000024088 00000 n +0000933758 00000 n +0000946575 00000 n +0000024131 00000 n +0000024153 00000 n +0000933884 00000 n +0000946465 00000 n +0000024203 00000 n +0000024260 00000 n +0000934137 00000 n +0000946396 00000 n +0000024310 00000 n +0000024349 00000 n +0000934454 00000 n +0000946256 00000 n +0000024392 00000 n +0000024414 00000 n +0000934579 00000 n +0000946146 00000 n +0000024464 00000 n +0000024492 00000 n +0000937312 00000 n +0000946077 00000 n +0000024542 00000 n +0000024568 00000 n +0000938201 00000 n +0000945937 00000 n +0000024611 00000 n +0000024633 00000 n +0000938327 00000 n +0000945827 00000 n +0000024683 00000 n +0000024720 00000 n +0000938644 00000 n +0000945758 00000 n +0000024770 00000 n +0000024812 00000 n +0000938897 00000 n +0000945633 00000 n +0000024855 00000 n +0000024877 00000 n +0000939023 00000 n +0000945564 00000 n +0000024927 00000 n +0000024965 00000 n +0000025282 00000 n +0000025655 00000 n +0000025019 00000 n +0000025406 00000 n +0000025469 00000 n +0000025532 00000 n 0000001111 00000 f -0000944476 00000 n -0000944573 00000 n -0000026571 00000 n -0000026384 00000 n -0000025765 00000 n -0000026508 00000 n +0000942213 00000 n +0000942310 00000 n +0000026522 00000 n +0000026335 00000 n +0000025729 00000 n +0000026459 00000 n 0000001118 00000 f -0000944382 00000 n -0000098583 00000 n -0000083332 00000 n -0000026659 00000 n -0000098459 00000 n -0000084278 00000 n +0000942119 00000 n +0000098548 00000 n +0000083302 00000 n +0000026610 00000 n +0000098424 00000 n +0000084248 00000 n 0000001209 00000 f -0000944289 00000 n -0000084425 00000 n -0000084573 00000 n -0000084725 00000 n -0000084878 00000 n -0000085031 00000 n -0000085185 00000 n -0000085338 00000 n -0000085492 00000 n -0000085642 00000 n -0000085793 00000 n -0000085947 00000 n -0000086102 00000 n -0000086264 00000 n -0000086427 00000 n -0000086582 00000 n -0000086738 00000 n -0000086894 00000 n -0000087050 00000 n -0000087210 00000 n -0000087370 00000 n -0000087527 00000 n -0000087684 00000 n -0000087837 00000 n -0000087990 00000 n -0000088150 00000 n -0000088310 00000 n -0000088469 00000 n -0000088628 00000 n -0000088791 00000 n -0000088954 00000 n -0000089123 00000 n -0000089292 00000 n -0000089460 00000 n -0000089628 00000 n -0000089790 00000 n -0000089952 00000 n -0000090122 00000 n -0000090292 00000 n -0000090459 00000 n -0000090626 00000 n -0000090799 00000 n -0000090972 00000 n -0000091142 00000 n -0000091312 00000 n -0000091483 00000 n -0000091654 00000 n -0000091825 00000 n -0000091996 00000 n -0000092151 00000 n -0000092306 00000 n -0000092461 00000 n -0000092617 00000 n -0000092770 00000 n -0000092923 00000 n -0000093082 00000 n -0000093240 00000 n -0000093389 00000 n -0000093537 00000 n -0000093691 00000 n -0000093844 00000 n -0000093991 00000 n -0000094137 00000 n -0000094284 00000 n -0000094431 00000 n -0000094584 00000 n -0000094737 00000 n -0000094888 00000 n -0000095038 00000 n -0000095190 00000 n +0000942026 00000 n +0000084395 00000 n +0000084543 00000 n +0000084695 00000 n +0000084848 00000 n +0000085001 00000 n +0000085155 00000 n +0000085308 00000 n +0000085462 00000 n +0000085612 00000 n +0000085763 00000 n +0000085917 00000 n +0000086072 00000 n +0000086234 00000 n +0000086397 00000 n +0000086552 00000 n +0000086708 00000 n +0000086864 00000 n +0000087020 00000 n +0000087180 00000 n +0000087340 00000 n +0000087497 00000 n +0000087654 00000 n +0000087807 00000 n +0000087960 00000 n +0000088120 00000 n +0000088280 00000 n +0000088439 00000 n +0000088598 00000 n +0000088761 00000 n +0000088924 00000 n +0000089093 00000 n +0000089262 00000 n +0000089430 00000 n +0000089598 00000 n +0000089760 00000 n +0000089922 00000 n +0000090092 00000 n +0000090262 00000 n +0000090429 00000 n +0000090596 00000 n +0000090769 00000 n +0000090942 00000 n +0000091112 00000 n +0000091282 00000 n +0000091453 00000 n +0000091624 00000 n +0000091795 00000 n +0000091966 00000 n +0000092121 00000 n +0000092276 00000 n +0000092431 00000 n +0000092587 00000 n +0000092740 00000 n +0000092893 00000 n +0000093052 00000 n +0000093210 00000 n +0000093359 00000 n +0000093507 00000 n +0000093661 00000 n +0000093814 00000 n +0000093961 00000 n +0000094107 00000 n +0000094254 00000 n +0000094401 00000 n +0000094554 00000 n +0000094707 00000 n +0000094858 00000 n +0000095008 00000 n +0000095175 00000 n 0000095341 00000 n -0000095508 00000 n -0000095674 00000 n -0000095828 00000 n -0000095982 00000 n -0000096129 00000 n -0000096275 00000 n -0000096422 00000 n -0000096568 00000 n -0000096736 00000 n -0000096903 00000 n -0000097066 00000 n -0000097228 00000 n -0000097384 00000 n -0000097539 00000 n -0000097688 00000 n -0000097837 00000 n -0000097995 00000 n -0000098152 00000 n -0000098305 00000 n +0000095495 00000 n +0000095649 00000 n +0000095796 00000 n +0000095942 00000 n +0000096089 00000 n +0000096235 00000 n +0000096404 00000 n +0000096572 00000 n +0000096735 00000 n +0000096897 00000 n +0000097052 00000 n +0000097206 00000 n +0000097355 00000 n +0000097504 00000 n +0000097662 00000 n +0000097819 00000 n +0000097972 00000 n +0000098126 00000 n +0000098275 00000 n 0000001436 00000 f -0000944194 00000 n -0000370925 00000 n -0000371050 00000 n -0000371427 00000 n -0000371741 00000 n -0000375408 00000 n -0000378380 00000 n -0000384776 00000 n -0000384901 00000 n -0000386223 00000 n -0000389085 00000 n -0000389273 00000 n -0000389968 00000 n -0000390409 00000 n -0000390851 00000 n -0000395547 00000 n -0000403870 00000 n -0000406295 00000 n -0000406483 00000 n -0000407177 00000 n -0000407365 00000 n -0000407553 00000 n -0000407740 00000 n -0000408057 00000 n -0000406170 00000 n -0000411352 00000 n -0000411790 00000 n -0000412043 00000 n -0000416215 00000 n -0000416404 00000 n -0000426026 00000 n -0000431705 00000 n -0000432209 00000 n -0000432398 00000 n -0000437728 00000 n -0000442827 00000 n -0000444412 00000 n -0000448669 00000 n -0000448858 00000 n -0000449678 00000 n -0000453419 00000 n -0000453923 00000 n -0000454553 00000 n -0000458816 00000 n -0000463625 00000 n -0000464511 00000 n -0000172254 00000 n -0000156877 00000 n -0000098699 00000 n -0000172191 00000 n -0000157859 00000 n -0000158010 00000 n -0000158161 00000 n -0000158315 00000 n -0000158468 00000 n -0000158630 00000 n -0000158791 00000 n -0000158949 00000 n -0000159110 00000 n -0000159264 00000 n -0000159417 00000 n -0000159570 00000 n -0000159722 00000 n -0000159876 00000 n -0000160029 00000 n -0000160177 00000 n -0000160325 00000 n -0000160472 00000 n -0000160618 00000 n -0000160765 00000 n -0000160911 00000 n -0000161057 00000 n -0000161203 00000 n -0000161350 00000 n -0000161496 00000 n -0000161667 00000 n -0000161837 00000 n -0000161983 00000 n -0000162128 00000 n -0000162274 00000 n -0000162420 00000 n -0000162567 00000 n -0000162713 00000 n -0000162860 00000 n -0000163006 00000 n -0000163153 00000 n -0000163299 00000 n -0000163456 00000 n -0000163613 00000 n -0000163766 00000 n -0000163919 00000 n -0000164071 00000 n -0000164223 00000 n -0000164378 00000 n -0000164532 00000 n -0000164687 00000 n -0000164841 00000 n -0000164999 00000 n -0000165156 00000 n -0000165310 00000 n -0000165463 00000 n -0000165613 00000 n -0000165763 00000 n -0000165916 00000 n -0000166069 00000 n -0000166220 00000 n -0000166371 00000 n -0000166524 00000 n -0000166677 00000 n -0000166834 00000 n -0000166991 00000 n -0000167154 00000 n -0000167316 00000 n -0000167470 00000 n -0000167623 00000 n -0000167777 00000 n -0000167930 00000 n -0000168084 00000 n -0000168237 00000 n -0000168391 00000 n -0000168544 00000 n -0000168708 00000 n -0000168871 00000 n -0000169028 00000 n -0000169184 00000 n -0000169339 00000 n -0000169493 00000 n -0000169648 00000 n -0000169802 00000 n -0000169957 00000 n -0000170111 00000 n -0000170265 00000 n -0000170418 00000 n -0000170567 00000 n -0000170716 00000 n -0000170864 00000 n -0000171012 00000 n -0000171161 00000 n -0000171310 00000 n -0000171458 00000 n -0000171605 00000 n -0000171752 00000 n -0000171898 00000 n -0000172045 00000 n -0000467788 00000 n -0000467977 00000 n -0000468294 00000 n -0000469111 00000 n -0000472188 00000 n -0000472630 00000 n -0000477239 00000 n -0000478372 00000 n -0000480914 00000 n -0000481103 00000 n -0000481610 00000 n -0000485623 00000 n -0000488650 00000 n -0000488839 00000 n -0000489661 00000 n -0000496595 00000 n -0000496783 00000 n -0000497351 00000 n -0000502468 00000 n -0000502594 00000 n -0000511942 00000 n -0000512068 00000 n -0000512382 00000 n -0000515717 00000 n -0000516470 00000 n -0000523554 00000 n -0000527025 00000 n -0000527842 00000 n -0000528532 00000 n -0000532215 00000 n -0000532596 00000 n -0000534431 00000 n -0000536815 00000 n -0000537951 00000 n -0000538775 00000 n -0000538964 00000 n -0000542655 00000 n -0000543095 00000 n -0000543539 00000 n -0000553718 00000 n -0000554353 00000 n -0000554669 00000 n -0000559228 00000 n -0000559732 00000 n -0000560556 00000 n -0000565078 00000 n -0000565705 00000 n -0000239749 00000 n -0000224647 00000 n -0000172356 00000 n -0000239686 00000 n -0000225593 00000 n -0000225741 00000 n -0000225888 00000 n -0000226036 00000 n -0000226183 00000 n -0000226331 00000 n -0000226478 00000 n -0000226626 00000 n -0000226773 00000 n -0000226925 00000 n -0000227077 00000 n -0000227244 00000 n -0000227410 00000 n -0000227570 00000 n -0000227729 00000 n -0000227884 00000 n -0000228038 00000 n -0000228197 00000 n -0000228355 00000 n -0000228513 00000 n -0000228671 00000 n -0000228835 00000 n -0000228998 00000 n -0000229148 00000 n -0000229299 00000 n -0000229453 00000 n -0000229607 00000 n -0000229768 00000 n -0000229928 00000 n -0000230092 00000 n -0000230255 00000 n +0000941931 00000 n +0000370826 00000 n +0000370951 00000 n +0000371328 00000 n +0000371642 00000 n +0000375308 00000 n +0000378280 00000 n +0000384676 00000 n +0000384801 00000 n +0000386123 00000 n +0000388985 00000 n +0000389173 00000 n +0000389868 00000 n +0000390309 00000 n +0000390751 00000 n +0000395404 00000 n +0000403663 00000 n +0000406088 00000 n +0000406276 00000 n +0000406970 00000 n +0000407158 00000 n +0000407346 00000 n +0000407533 00000 n +0000407850 00000 n +0000405963 00000 n +0000411419 00000 n +0000412047 00000 n +0000412300 00000 n +0000417114 00000 n +0000417303 00000 n +0000426376 00000 n +0000432363 00000 n +0000432867 00000 n +0000433055 00000 n +0000438365 00000 n +0000443739 00000 n +0000444750 00000 n +0000444938 00000 n +0000448475 00000 n +0000449483 00000 n +0000452777 00000 n +0000453408 00000 n +0000454231 00000 n +0000462313 00000 n +0000463199 00000 n +0000463515 00000 n +0000172168 00000 n +0000156780 00000 n +0000098664 00000 n +0000172105 00000 n +0000157762 00000 n +0000157916 00000 n +0000158069 00000 n +0000158231 00000 n +0000158392 00000 n +0000158554 00000 n +0000158715 00000 n +0000158869 00000 n +0000159022 00000 n +0000159177 00000 n +0000159331 00000 n +0000159484 00000 n +0000159636 00000 n +0000159790 00000 n +0000159943 00000 n +0000160091 00000 n +0000160239 00000 n +0000160386 00000 n +0000160532 00000 n +0000160679 00000 n +0000160825 00000 n +0000160971 00000 n +0000161117 00000 n +0000161264 00000 n +0000161410 00000 n +0000161581 00000 n +0000161751 00000 n +0000161897 00000 n +0000162042 00000 n +0000162188 00000 n +0000162334 00000 n +0000162481 00000 n +0000162627 00000 n +0000162774 00000 n +0000162920 00000 n +0000163067 00000 n +0000163213 00000 n +0000163370 00000 n +0000163527 00000 n +0000163680 00000 n +0000163833 00000 n +0000163985 00000 n +0000164137 00000 n +0000164292 00000 n +0000164446 00000 n +0000164601 00000 n +0000164755 00000 n +0000164913 00000 n +0000165070 00000 n +0000165224 00000 n +0000165377 00000 n +0000165527 00000 n +0000165677 00000 n +0000165830 00000 n +0000165983 00000 n +0000166134 00000 n +0000166285 00000 n +0000166438 00000 n +0000166591 00000 n +0000166748 00000 n +0000166905 00000 n +0000167068 00000 n +0000167230 00000 n +0000167384 00000 n +0000167537 00000 n +0000167691 00000 n +0000167844 00000 n +0000167998 00000 n +0000168151 00000 n +0000168305 00000 n +0000168458 00000 n +0000168622 00000 n +0000168785 00000 n +0000168942 00000 n +0000169098 00000 n +0000169253 00000 n +0000169407 00000 n +0000169562 00000 n +0000169716 00000 n +0000169871 00000 n +0000170025 00000 n +0000170179 00000 n +0000170332 00000 n +0000170481 00000 n +0000170630 00000 n +0000170778 00000 n +0000170926 00000 n +0000171075 00000 n +0000171224 00000 n +0000171372 00000 n +0000171519 00000 n +0000171666 00000 n +0000171812 00000 n +0000171959 00000 n +0000467131 00000 n +0000467448 00000 n +0000468267 00000 n +0000468454 00000 n +0000471831 00000 n +0000472020 00000 n +0000473540 00000 n +0000477423 00000 n +0000477549 00000 n +0000477738 00000 n +0000478244 00000 n +0000483946 00000 n +0000484952 00000 n +0000485141 00000 n +0000487976 00000 n +0000492363 00000 n +0000492552 00000 n +0000495543 00000 n +0000499229 00000 n +0000499355 00000 n +0000509176 00000 n +0000509302 00000 n +0000509616 00000 n +0000512951 00000 n +0000513704 00000 n +0000520788 00000 n +0000524259 00000 n +0000525076 00000 n +0000525766 00000 n +0000529449 00000 n +0000529830 00000 n +0000531665 00000 n +0000534049 00000 n +0000535185 00000 n +0000536009 00000 n +0000536198 00000 n +0000539889 00000 n +0000540329 00000 n +0000540773 00000 n +0000550952 00000 n +0000551587 00000 n +0000551903 00000 n +0000556461 00000 n +0000556965 00000 n +0000557789 00000 n +0000562163 00000 n +0000562792 00000 n +0000239662 00000 n +0000224560 00000 n +0000172270 00000 n +0000239599 00000 n +0000225506 00000 n +0000225654 00000 n +0000225801 00000 n +0000225949 00000 n +0000226096 00000 n +0000226244 00000 n +0000226391 00000 n +0000226539 00000 n +0000226686 00000 n +0000226838 00000 n +0000226990 00000 n +0000227157 00000 n +0000227323 00000 n +0000227483 00000 n +0000227642 00000 n +0000227797 00000 n +0000227951 00000 n +0000228110 00000 n +0000228268 00000 n +0000228426 00000 n +0000228584 00000 n +0000228748 00000 n +0000228911 00000 n +0000229061 00000 n +0000229212 00000 n +0000229366 00000 n +0000229520 00000 n +0000229681 00000 n +0000229841 00000 n +0000230005 00000 n +0000230168 00000 n 0000001883 00000 f -0000944104 00000 n -0000230417 00000 n -0000230578 00000 n -0000230735 00000 n -0000230892 00000 n -0000231057 00000 n -0000231221 00000 n -0000231383 00000 n -0000231544 00000 n -0000231710 00000 n -0000231875 00000 n -0000232036 00000 n -0000232197 00000 n -0000232366 00000 n -0000232534 00000 n -0000232709 00000 n -0000232883 00000 n -0000233043 00000 n -0000233203 00000 n -0000233371 00000 n -0000233538 00000 n -0000233694 00000 n -0000233850 00000 n -0000234007 00000 n -0000234164 00000 n -0000234325 00000 n -0000234486 00000 n -0000234645 00000 n -0000234803 00000 n -0000234960 00000 n -0000235116 00000 n -0000235275 00000 n -0000235433 00000 n -0000235592 00000 n -0000235751 00000 n -0000235915 00000 n -0000236078 00000 n -0000236230 00000 n -0000236383 00000 n -0000236549 00000 n -0000236715 00000 n -0000236866 00000 n -0000237017 00000 n -0000237165 00000 n -0000237313 00000 n -0000237460 00000 n -0000237606 00000 n -0000237752 00000 n -0000237898 00000 n -0000238052 00000 n -0000238206 00000 n -0000238356 00000 n -0000238505 00000 n -0000238652 00000 n -0000238798 00000 n -0000238944 00000 n -0000239089 00000 n -0000239236 00000 n -0000239382 00000 n -0000239534 00000 n -0000568878 00000 n -0000569004 00000 n -0000569256 00000 n -0000569507 00000 n -0000572513 00000 n -0000573015 00000 n -0000577719 00000 n -0000581623 00000 n -0000582634 00000 n -0000586628 00000 n -0000589625 00000 n -0000593661 00000 n -0000593977 00000 n -0000594102 00000 n -0000594291 00000 n -0000595435 00000 n -0000595688 00000 n -0000598386 00000 n -0000598574 00000 n -0000599898 00000 n -0000603032 00000 n -0000603158 00000 n -0000611920 00000 n -0000612491 00000 n -0000612617 00000 n -0000616278 00000 n -0000616404 00000 n -0000616656 00000 n -0000617417 00000 n -0000622451 00000 n -0000623210 00000 n -0000627980 00000 n -0000633940 00000 n -0000637923 00000 n -0000648301 00000 n -0000652350 00000 n -0000651718 00000 n -0000657372 00000 n -0000660853 00000 n -0000670317 00000 n -0000670442 00000 n -0000670629 00000 n -0000671261 00000 n -0000673365 00000 n -0000673617 00000 n -0000314289 00000 n -0000298733 00000 n -0000239865 00000 n -0000314226 00000 n -0000299715 00000 n -0000299863 00000 n -0000300011 00000 n -0000300165 00000 n -0000300319 00000 n -0000300471 00000 n -0000300623 00000 n -0000300774 00000 n -0000300925 00000 n -0000301076 00000 n -0000301227 00000 n -0000301374 00000 n -0000301521 00000 n -0000301672 00000 n -0000301822 00000 n -0000301974 00000 n -0000302125 00000 n -0000302277 00000 n -0000302428 00000 n -0000302586 00000 n -0000302743 00000 n -0000302890 00000 n -0000303037 00000 n -0000303188 00000 n -0000303340 00000 n -0000303493 00000 n -0000303646 00000 n -0000303806 00000 n -0000303965 00000 n -0000304125 00000 n -0000304284 00000 n -0000304447 00000 n -0000304609 00000 n -0000304773 00000 n -0000304936 00000 n -0000305096 00000 n -0000305255 00000 n -0000305420 00000 n -0000305584 00000 n -0000305751 00000 n -0000305917 00000 n -0000306072 00000 n -0000306227 00000 n -0000306375 00000 n -0000306522 00000 n -0000306677 00000 n -0000306831 00000 n -0000306985 00000 n -0000307138 00000 n -0000307293 00000 n -0000307447 00000 n -0000307605 00000 n -0000307763 00000 n -0000307921 00000 n -0000308078 00000 n -0000308234 00000 n -0000308390 00000 n -0000308552 00000 n -0000308713 00000 n -0000308864 00000 n -0000309016 00000 n -0000309167 00000 n -0000309317 00000 n -0000309467 00000 n -0000309616 00000 n -0000309763 00000 n -0000309909 00000 n -0000310056 00000 n -0000310202 00000 n -0000310350 00000 n -0000310498 00000 n -0000310648 00000 n -0000310798 00000 n -0000310958 00000 n -0000311117 00000 n -0000311277 00000 n -0000311436 00000 n -0000311593 00000 n -0000311749 00000 n -0000311896 00000 n -0000312042 00000 n -0000312188 00000 n -0000312334 00000 n -0000312491 00000 n -0000312648 00000 n -0000312803 00000 n -0000312958 00000 n -0000313116 00000 n -0000313274 00000 n -0000313432 00000 n -0000313590 00000 n -0000313751 00000 n -0000313912 00000 n -0000314069 00000 n -0000676699 00000 n -0000676825 00000 n -0000677076 00000 n -0000678086 00000 n -0000685993 00000 n -0000682723 00000 n -0000738935 00000 n -0000742558 00000 n -0000742747 00000 n -0000743696 00000 n -0000747364 00000 n -0000747804 00000 n -0000751648 00000 n -0000752025 00000 n -0000752214 00000 n -0000752401 00000 n -0000754939 00000 n -0000755128 00000 n -0000755317 00000 n -0000755569 00000 n -0000755757 00000 n -0000755946 00000 n -0000759136 00000 n -0000759579 00000 n -0000759831 00000 n -0000763223 00000 n -0000763412 00000 n -0000763729 00000 n -0000769687 00000 n -0000769876 00000 n -0000770065 00000 n -0000773529 00000 n -0000774032 00000 n -0000777212 00000 n -0000777464 00000 n -0000778031 00000 n -0000782050 00000 n -0000782365 00000 n -0000786391 00000 n -0000788421 00000 n -0000791553 00000 n -0000857257 00000 n -0000857446 00000 n -0000858143 00000 n -0000858584 00000 n -0000859085 00000 n -0000861646 00000 n -0000356916 00000 n -0000347885 00000 n -0000314405 00000 n -0000356853 00000 n -0000348507 00000 n -0000348666 00000 n -0000348826 00000 n -0000348984 00000 n -0000349143 00000 n -0000349307 00000 n -0000349471 00000 n -0000349618 00000 n -0000349765 00000 n -0000349918 00000 n -0000350072 00000 n -0000350236 00000 n -0000350401 00000 n -0000350551 00000 n -0000350702 00000 n -0000350852 00000 n -0000351003 00000 n -0000351161 00000 n -0000351320 00000 n -0000351489 00000 n -0000351659 00000 n -0000351828 00000 n -0000351998 00000 n -0000352164 00000 n -0000352331 00000 n -0000352497 00000 n -0000352664 00000 n -0000352809 00000 n -0000352955 00000 n -0000353104 00000 n -0000353254 00000 n -0000353403 00000 n -0000353553 00000 n -0000353702 00000 n -0000353852 00000 n -0000354001 00000 n -0000354151 00000 n -0000354300 00000 n -0000354450 00000 n -0000354599 00000 n -0000354749 00000 n -0000354897 00000 n -0000355046 00000 n -0000355195 00000 n -0000355345 00000 n -0000355494 00000 n -0000355644 00000 n -0000355793 00000 n -0000355943 00000 n -0000356093 00000 n -0000356244 00000 n -0000356396 00000 n -0000356550 00000 n -0000356701 00000 n -0000944698 00000 n -0000862274 00000 n -0000864993 00000 n -0000865498 00000 n -0000869457 00000 n -0000872271 00000 n -0000872651 00000 n -0000876508 00000 n -0000876759 00000 n -0000878722 00000 n -0000881336 00000 n -0000881461 00000 n -0000882596 00000 n -0000887979 00000 n -0000894074 00000 n -0000894388 00000 n -0000894701 00000 n -0000898782 00000 n -0000899033 00000 n -0000903029 00000 n -0000908265 00000 n -0000908580 00000 n -0000908831 00000 n -0000911956 00000 n -0000912144 00000 n -0000912333 00000 n -0000912649 00000 n -0000916655 00000 n -0000367941 00000 n -0000365128 00000 n -0000357032 00000 n -0000367754 00000 n -0000365390 00000 n -0000365547 00000 n -0000365704 00000 n -0000365874 00000 n -0000366044 00000 n -0000366219 00000 n -0000366394 00000 n -0000366562 00000 n -0000366730 00000 n -0000366901 00000 n -0000367072 00000 n -0000367241 00000 n -0000367411 00000 n -0000367582 00000 n -0000686309 00000 n -0000598953 00000 n -0000599331 00000 n -0000600087 00000 n -0000612869 00000 n -0000868572 00000 n -0000868952 00000 n -0000372881 00000 n -0000370632 00000 n -0000368043 00000 n -0000371175 00000 n -0000371238 00000 n -0000371301 00000 n -0000370777 00000 n -0000371364 00000 n -0000371552 00000 n -0000371615 00000 n -0000371678 00000 n -0000371866 00000 n -0000371929 00000 n -0000371991 00000 n -0000372055 00000 n -0000372119 00000 n -0000372182 00000 n -0000372245 00000 n -0000372309 00000 n -0000372372 00000 n -0000372436 00000 n -0000372500 00000 n -0000372564 00000 n -0000372628 00000 n -0000372691 00000 n -0000372754 00000 n -0000372817 00000 n -0000378694 00000 n -0000375095 00000 n -0000372997 00000 n -0000375219 00000 n -0000375281 00000 n -0000375344 00000 n -0000375533 00000 n -0000375596 00000 n -0000375659 00000 n -0000375722 00000 n -0000375784 00000 n -0000375847 00000 n -0000375910 00000 n -0000375973 00000 n -0000376037 00000 n -0000376100 00000 n -0000376162 00000 n -0000376225 00000 n -0000376289 00000 n -0000376352 00000 n -0000376415 00000 n -0000376478 00000 n -0000376542 00000 n -0000376605 00000 n -0000376668 00000 n -0000376731 00000 n -0000376795 00000 n -0000376858 00000 n -0000376921 00000 n -0000376984 00000 n -0000377048 00000 n -0000377111 00000 n -0000377173 00000 n -0000377235 00000 n -0000377299 00000 n -0000377362 00000 n -0000377425 00000 n -0000377487 00000 n -0000377551 00000 n -0000377615 00000 n -0000377679 00000 n -0000377743 00000 n -0000377807 00000 n -0000377871 00000 n -0000377935 00000 n -0000377999 00000 n -0000378063 00000 n -0000378126 00000 n -0000378190 00000 n -0000378254 00000 n -0000378317 00000 n -0000378505 00000 n -0000378568 00000 n -0000378631 00000 n -0000380675 00000 n -0000380183 00000 n -0000378810 00000 n -0000380486 00000 n +0000941841 00000 n +0000230330 00000 n +0000230491 00000 n +0000230648 00000 n +0000230805 00000 n +0000230970 00000 n +0000231134 00000 n +0000231296 00000 n +0000231457 00000 n +0000231623 00000 n +0000231788 00000 n +0000231949 00000 n +0000232110 00000 n +0000232279 00000 n +0000232447 00000 n +0000232622 00000 n +0000232796 00000 n +0000232956 00000 n +0000233116 00000 n +0000233284 00000 n +0000233451 00000 n +0000233607 00000 n +0000233763 00000 n +0000233920 00000 n +0000234077 00000 n +0000234238 00000 n +0000234399 00000 n +0000234558 00000 n +0000234716 00000 n +0000234873 00000 n +0000235029 00000 n +0000235188 00000 n +0000235346 00000 n +0000235505 00000 n +0000235664 00000 n +0000235828 00000 n +0000235991 00000 n +0000236143 00000 n +0000236296 00000 n +0000236462 00000 n +0000236628 00000 n +0000236779 00000 n +0000236930 00000 n +0000237078 00000 n +0000237226 00000 n +0000237373 00000 n +0000237519 00000 n +0000237665 00000 n +0000237811 00000 n +0000237965 00000 n +0000238119 00000 n +0000238269 00000 n +0000238418 00000 n +0000238565 00000 n +0000238711 00000 n +0000238857 00000 n +0000239002 00000 n +0000239149 00000 n +0000239295 00000 n +0000239447 00000 n +0000566166 00000 n +0000566290 00000 n +0000566542 00000 n +0000568558 00000 n +0000569439 00000 n +0000569940 00000 n +0000574718 00000 n +0000578472 00000 n +0000579479 00000 n +0000583692 00000 n +0000586749 00000 n +0000590798 00000 n +0000591114 00000 n +0000591239 00000 n +0000591428 00000 n +0000592572 00000 n +0000592825 00000 n +0000595524 00000 n +0000595712 00000 n +0000597036 00000 n +0000600170 00000 n +0000600296 00000 n +0000609058 00000 n +0000609629 00000 n +0000609755 00000 n +0000613416 00000 n +0000613542 00000 n +0000613794 00000 n +0000614555 00000 n +0000619589 00000 n +0000620348 00000 n +0000625118 00000 n +0000631078 00000 n +0000635062 00000 n +0000645440 00000 n +0000649489 00000 n +0000648857 00000 n +0000654510 00000 n +0000657992 00000 n +0000667455 00000 n +0000667580 00000 n +0000667767 00000 n +0000668399 00000 n +0000670502 00000 n +0000670754 00000 n +0000314202 00000 n +0000298646 00000 n +0000239778 00000 n +0000314139 00000 n +0000299628 00000 n +0000299776 00000 n +0000299924 00000 n +0000300078 00000 n +0000300232 00000 n +0000300384 00000 n +0000300536 00000 n +0000300687 00000 n +0000300838 00000 n +0000300989 00000 n +0000301140 00000 n +0000301287 00000 n +0000301434 00000 n +0000301585 00000 n +0000301735 00000 n +0000301887 00000 n +0000302038 00000 n +0000302190 00000 n +0000302341 00000 n +0000302499 00000 n +0000302656 00000 n +0000302803 00000 n +0000302950 00000 n +0000303101 00000 n +0000303253 00000 n +0000303406 00000 n +0000303559 00000 n +0000303719 00000 n +0000303878 00000 n +0000304038 00000 n +0000304197 00000 n +0000304360 00000 n +0000304522 00000 n +0000304686 00000 n +0000304849 00000 n +0000305009 00000 n +0000305168 00000 n +0000305333 00000 n +0000305497 00000 n +0000305664 00000 n +0000305830 00000 n +0000305985 00000 n +0000306140 00000 n +0000306288 00000 n +0000306435 00000 n +0000306590 00000 n +0000306744 00000 n +0000306898 00000 n +0000307051 00000 n +0000307206 00000 n +0000307360 00000 n +0000307518 00000 n +0000307676 00000 n +0000307834 00000 n +0000307991 00000 n +0000308147 00000 n +0000308303 00000 n +0000308465 00000 n +0000308626 00000 n +0000308777 00000 n +0000308929 00000 n +0000309080 00000 n +0000309230 00000 n +0000309380 00000 n +0000309529 00000 n +0000309676 00000 n +0000309822 00000 n +0000309969 00000 n +0000310115 00000 n +0000310263 00000 n +0000310411 00000 n +0000310561 00000 n +0000310711 00000 n +0000310871 00000 n +0000311030 00000 n +0000311190 00000 n +0000311349 00000 n +0000311506 00000 n +0000311662 00000 n +0000311809 00000 n +0000311955 00000 n +0000312101 00000 n +0000312247 00000 n +0000312404 00000 n +0000312561 00000 n +0000312716 00000 n +0000312871 00000 n +0000313029 00000 n +0000313187 00000 n +0000313345 00000 n +0000313503 00000 n +0000313664 00000 n +0000313825 00000 n +0000313982 00000 n +0000673835 00000 n +0000673961 00000 n +0000674212 00000 n +0000675222 00000 n +0000683129 00000 n +0000679859 00000 n +0000736062 00000 n +0000739688 00000 n +0000739877 00000 n +0000740826 00000 n +0000744494 00000 n +0000744934 00000 n +0000748778 00000 n +0000749155 00000 n +0000749344 00000 n +0000749531 00000 n +0000752069 00000 n +0000752258 00000 n +0000752447 00000 n +0000752699 00000 n +0000752887 00000 n +0000753076 00000 n +0000756266 00000 n +0000756709 00000 n +0000756961 00000 n +0000760353 00000 n +0000760542 00000 n +0000760859 00000 n +0000766818 00000 n +0000767007 00000 n +0000767196 00000 n +0000770659 00000 n +0000771162 00000 n +0000774554 00000 n +0000774806 00000 n +0000775436 00000 n +0000779455 00000 n +0000779770 00000 n +0000783796 00000 n +0000785826 00000 n +0000788958 00000 n +0000854863 00000 n +0000855052 00000 n +0000855749 00000 n +0000856190 00000 n +0000856691 00000 n +0000859253 00000 n +0000356879 00000 n +0000347848 00000 n +0000314318 00000 n +0000356816 00000 n +0000348470 00000 n +0000348629 00000 n +0000348789 00000 n +0000348947 00000 n +0000349106 00000 n +0000349270 00000 n +0000349434 00000 n +0000349581 00000 n +0000349728 00000 n +0000349881 00000 n +0000350034 00000 n +0000350198 00000 n +0000350362 00000 n +0000350512 00000 n +0000350663 00000 n +0000350813 00000 n +0000350964 00000 n +0000351122 00000 n +0000351281 00000 n +0000351450 00000 n +0000351620 00000 n +0000351789 00000 n +0000351959 00000 n +0000352125 00000 n +0000352292 00000 n +0000352458 00000 n +0000352625 00000 n +0000352770 00000 n +0000352916 00000 n +0000353065 00000 n +0000353215 00000 n +0000353364 00000 n +0000353514 00000 n +0000353663 00000 n +0000353813 00000 n +0000353962 00000 n +0000354112 00000 n +0000354261 00000 n +0000354411 00000 n +0000354560 00000 n +0000354710 00000 n +0000354859 00000 n +0000355009 00000 n +0000355158 00000 n +0000355308 00000 n +0000355457 00000 n +0000355607 00000 n +0000355756 00000 n +0000355906 00000 n +0000356056 00000 n +0000356207 00000 n +0000356359 00000 n +0000356513 00000 n +0000356664 00000 n +0000942435 00000 n +0000859881 00000 n +0000862599 00000 n +0000863104 00000 n +0000867063 00000 n +0000869875 00000 n +0000870255 00000 n +0000874112 00000 n +0000874363 00000 n +0000876326 00000 n +0000878940 00000 n +0000879065 00000 n +0000880200 00000 n +0000885582 00000 n +0000891678 00000 n +0000891992 00000 n +0000892305 00000 n +0000896387 00000 n +0000896638 00000 n +0000900632 00000 n +0000905868 00000 n +0000906183 00000 n +0000906434 00000 n +0000909558 00000 n +0000909746 00000 n +0000909935 00000 n +0000910251 00000 n +0000914257 00000 n +0000367904 00000 n +0000365091 00000 n +0000356995 00000 n +0000367717 00000 n +0000365353 00000 n +0000365510 00000 n +0000365667 00000 n +0000365837 00000 n +0000366007 00000 n +0000366182 00000 n +0000366357 00000 n +0000366525 00000 n +0000366693 00000 n +0000366864 00000 n +0000367035 00000 n +0000367204 00000 n +0000367374 00000 n +0000367545 00000 n +0000683445 00000 n +0000596091 00000 n +0000596469 00000 n +0000597225 00000 n +0000610007 00000 n +0000866178 00000 n +0000866558 00000 n +0000372781 00000 n +0000370533 00000 n +0000368006 00000 n +0000371076 00000 n +0000371139 00000 n +0000371202 00000 n +0000370678 00000 n +0000371265 00000 n +0000371453 00000 n +0000371516 00000 n +0000371579 00000 n +0000371767 00000 n +0000371830 00000 n +0000371893 00000 n +0000371957 00000 n +0000372021 00000 n +0000372084 00000 n +0000372147 00000 n +0000372210 00000 n +0000372272 00000 n +0000372336 00000 n +0000372400 00000 n +0000372464 00000 n +0000372528 00000 n +0000372592 00000 n +0000372656 00000 n +0000372718 00000 n +0000378594 00000 n +0000374995 00000 n +0000372897 00000 n +0000375119 00000 n +0000375181 00000 n +0000375244 00000 n +0000375433 00000 n +0000375496 00000 n +0000375559 00000 n +0000375622 00000 n +0000375684 00000 n +0000375747 00000 n +0000375810 00000 n +0000375873 00000 n +0000375937 00000 n +0000376000 00000 n +0000376062 00000 n +0000376125 00000 n +0000376189 00000 n +0000376252 00000 n +0000376315 00000 n +0000376378 00000 n +0000376442 00000 n +0000376505 00000 n +0000376568 00000 n +0000376631 00000 n +0000376695 00000 n +0000376758 00000 n +0000376821 00000 n +0000376884 00000 n +0000376948 00000 n +0000377011 00000 n +0000377073 00000 n +0000377135 00000 n +0000377199 00000 n +0000377262 00000 n +0000377325 00000 n +0000377387 00000 n +0000377451 00000 n +0000377515 00000 n +0000377579 00000 n +0000377643 00000 n +0000377707 00000 n +0000377771 00000 n +0000377835 00000 n +0000377899 00000 n +0000377963 00000 n +0000378026 00000 n +0000378090 00000 n +0000378154 00000 n +0000378217 00000 n +0000378405 00000 n +0000378468 00000 n +0000378531 00000 n +0000380575 00000 n +0000380083 00000 n +0000378710 00000 n +0000380386 00000 n 0000001895 00000 f -0000944012 00000 n -0000380328 00000 n -0000380549 00000 n -0000380612 00000 n -0000922626 00000 n -0000386602 00000 n -0000383314 00000 n -0000380819 00000 n -0000385026 00000 n -0000385089 00000 n -0000385152 00000 n -0000002142 00000 f -0000943912 00000 n -0000385216 00000 n -0000383522 00000 n -0000383677 00000 n -0000385279 00000 n -0000385341 00000 n -0000385404 00000 n -0000385467 00000 n -0000385530 00000 n -0000385594 00000 n -0000385656 00000 n -0000385719 00000 n -0000385782 00000 n -0000383830 00000 n -0000385845 00000 n -0000383983 00000 n -0000385908 00000 n -0000384142 00000 n -0000385971 00000 n -0000384302 00000 n -0000386034 00000 n -0000384460 00000 n -0000386097 00000 n -0000384622 00000 n -0000386160 00000 n -0000386348 00000 n -0000386411 00000 n -0000386475 00000 n -0000386538 00000 n -0000390914 00000 n -0000388788 00000 n -0000386746 00000 n -0000389210 00000 n -0000389398 00000 n -0000389461 00000 n -0000389525 00000 n -0000389588 00000 n -0000389652 00000 n -0000389715 00000 n -0000389777 00000 n -0000389841 00000 n -0000389905 00000 n -0000390092 00000 n -0000390155 00000 n -0000390219 00000 n -0000390282 00000 n -0000390346 00000 n -0000390534 00000 n -0000390597 00000 n -0000388933 00000 n -0000390660 00000 n -0000390724 00000 n -0000390787 00000 n -0000944823 00000 n -0000923003 00000 n -0000396999 00000 n -0000394198 00000 n -0000391044 00000 n -0000394911 00000 n -0000394974 00000 n -0000395038 00000 n -0000395102 00000 n -0000395166 00000 n -0000395229 00000 n -0000395293 00000 n -0000395357 00000 n -0000395421 00000 n -0000395484 00000 n -0000395672 00000 n -0000395734 00000 n -0000395798 00000 n -0000394361 00000 n -0000395862 00000 n -0000395925 00000 n -0000395989 00000 n -0000396052 00000 n -0000396115 00000 n -0000396178 00000 n -0000396241 00000 n -0000396304 00000 n -0000394518 00000 n -0000394680 00000 n -0000396367 00000 n -0000396430 00000 n -0000396493 00000 n -0000396556 00000 n -0000396619 00000 n -0000396682 00000 n -0000396745 00000 n -0000396809 00000 n -0000396873 00000 n +0000941749 00000 n +0000380228 00000 n +0000380449 00000 n +0000380512 00000 n +0000920228 00000 n +0000386502 00000 n +0000383214 00000 n +0000380719 00000 n +0000384926 00000 n +0000384989 00000 n +0000385052 00000 n +0000002153 00000 f +0000941649 00000 n +0000385116 00000 n +0000383422 00000 n +0000383577 00000 n +0000385179 00000 n +0000385241 00000 n +0000385304 00000 n +0000385367 00000 n +0000385430 00000 n +0000385494 00000 n +0000385556 00000 n +0000385619 00000 n +0000385682 00000 n +0000383730 00000 n +0000385745 00000 n +0000383883 00000 n +0000385808 00000 n +0000384042 00000 n +0000385871 00000 n +0000384202 00000 n +0000385934 00000 n +0000384360 00000 n +0000385997 00000 n +0000384522 00000 n +0000386060 00000 n +0000386248 00000 n +0000386311 00000 n +0000386375 00000 n +0000386438 00000 n +0000390814 00000 n +0000388688 00000 n +0000386646 00000 n +0000389110 00000 n +0000389298 00000 n +0000389361 00000 n +0000389425 00000 n +0000389488 00000 n +0000389552 00000 n +0000389615 00000 n +0000389677 00000 n +0000389741 00000 n +0000389805 00000 n +0000389992 00000 n +0000390055 00000 n +0000390119 00000 n +0000390182 00000 n +0000390246 00000 n +0000390434 00000 n +0000390497 00000 n +0000388833 00000 n +0000390560 00000 n +0000390624 00000 n +0000390687 00000 n +0000942560 00000 n +0000920605 00000 n +0000396792 00000 n +0000394056 00000 n +0000390944 00000 n +0000394768 00000 n +0000394831 00000 n +0000394895 00000 n +0000394959 00000 n +0000395023 00000 n +0000395086 00000 n +0000395150 00000 n +0000395214 00000 n +0000395278 00000 n +0000395341 00000 n +0000395529 00000 n +0000395591 00000 n +0000394219 00000 n +0000395655 00000 n +0000395718 00000 n +0000395782 00000 n +0000395845 00000 n +0000395908 00000 n +0000395971 00000 n +0000396034 00000 n +0000396097 00000 n +0000394375 00000 n +0000394537 00000 n +0000396160 00000 n +0000396223 00000 n +0000396286 00000 n +0000396349 00000 n +0000396412 00000 n +0000396475 00000 n +0000396538 00000 n +0000396602 00000 n +0000396666 00000 n +0000396729 00000 n +0000403850 00000 n +0000399103 00000 n 0000396936 00000 n -0000404057 00000 n -0000399310 00000 n -0000397143 00000 n -0000401037 00000 n -0000401101 00000 n -0000401164 00000 n -0000401227 00000 n -0000401291 00000 n -0000401354 00000 n -0000401417 00000 n -0000401480 00000 n -0000401543 00000 n -0000401606 00000 n -0000401669 00000 n -0000401732 00000 n -0000401795 00000 n -0000401857 00000 n -0000401919 00000 n -0000401982 00000 n -0000399527 00000 n -0000402045 00000 n -0000402107 00000 n -0000402170 00000 n -0000402233 00000 n -0000402296 00000 n -0000402359 00000 n -0000402422 00000 n -0000402485 00000 n -0000399694 00000 n -0000402548 00000 n -0000402611 00000 n -0000402674 00000 n -0000402737 00000 n -0000402800 00000 n -0000402863 00000 n -0000402926 00000 n -0000402990 00000 n -0000403053 00000 n -0000399861 00000 n -0000403115 00000 n -0000403178 00000 n -0000400021 00000 n -0000403241 00000 n -0000403303 00000 n -0000400189 00000 n -0000403366 00000 n -0000403429 00000 n -0000400356 00000 n -0000403492 00000 n -0000403555 00000 n -0000400528 00000 n -0000403618 00000 n -0000403681 00000 n -0000400697 00000 n -0000403744 00000 n -0000403807 00000 n -0000400867 00000 n -0000403994 00000 n -0000408120 00000 n -0000406046 00000 n -0000404187 00000 n -0000406232 00000 n -0000406420 00000 n -0000406608 00000 n -0000406671 00000 n -0000406734 00000 n -0000406797 00000 n -0000406860 00000 n -0000406924 00000 n -0000406987 00000 n -0000407050 00000 n -0000407114 00000 n -0000407302 00000 n -0000407490 00000 n -0000407678 00000 n -0000407866 00000 n -0000407929 00000 n -0000407993 00000 n -0000412671 00000 n -0000410614 00000 n -0000408250 00000 n -0000410911 00000 n -0000410974 00000 n -0000411099 00000 n -0000411162 00000 n -0000411289 00000 n -0000411476 00000 n -0000411539 00000 n -0000411602 00000 n -0000411664 00000 n -0000411727 00000 n -0000411916 00000 n -0000411979 00000 n -0000410759 00000 n -0000412169 00000 n -0000412232 00000 n -0000412294 00000 n -0000412356 00000 n -0000412418 00000 n -0000412480 00000 n -0000412543 00000 n -0000412607 00000 n -0000417476 00000 n -0000415114 00000 n -0000412801 00000 n -0000415899 00000 n -0000415962 00000 n -0000416025 00000 n -0000416089 00000 n -0000416151 00000 n -0000416341 00000 n -0000415286 00000 n -0000415435 00000 n -0000415589 00000 n -0000416530 00000 n -0000416593 00000 n -0000415741 00000 n -0000416656 00000 n -0000416782 00000 n -0000416845 00000 n -0000416909 00000 n -0000416972 00000 n -0000417035 00000 n -0000417098 00000 n -0000417161 00000 n -0000417224 00000 n -0000417288 00000 n -0000417351 00000 n -0000417414 00000 n -0000422585 00000 n -0000419952 00000 n -0000417620 00000 n -0000420252 00000 n -0000420377 00000 n -0000420440 00000 n -0000420503 00000 n -0000420566 00000 n -0000420629 00000 n -0000420692 00000 n -0000420755 00000 n -0000420818 00000 n -0000420881 00000 n -0000421007 00000 n -0000421070 00000 n -0000421133 00000 n -0000421197 00000 n -0000421260 00000 n -0000421322 00000 n -0000421385 00000 n -0000421448 00000 n -0000421511 00000 n -0000421636 00000 n -0000421699 00000 n -0000421763 00000 n -0000002334 00000 f -0000943814 00000 n -0000421827 00000 n -0000420097 00000 n -0000421891 00000 n -0000421954 00000 n -0000422018 00000 n -0000422082 00000 n -0000422146 00000 n -0000422208 00000 n -0000422270 00000 n -0000422332 00000 n -0000422396 00000 n -0000422459 00000 n -0000422522 00000 n -0000944948 00000 n -0000428107 00000 n -0000425028 00000 n -0000422757 00000 n -0000425328 00000 n -0000425391 00000 n -0000425453 00000 n -0000425517 00000 n -0000425581 00000 n -0000425644 00000 n -0000425708 00000 n -0000425772 00000 n -0000425835 00000 n -0000425898 00000 n -0000425962 00000 n -0000426152 00000 n -0000426215 00000 n -0000426278 00000 n -0000426404 00000 n -0000426467 00000 n -0000426531 00000 n -0000426595 00000 n -0000425173 00000 n -0000426659 00000 n -0000426722 00000 n -0000426785 00000 n -0000426847 00000 n -0000426910 00000 n -0000426973 00000 n -0000427036 00000 n -0000427099 00000 n -0000427163 00000 n -0000427227 00000 n -0000427353 00000 n -0000427416 00000 n -0000427479 00000 n -0000427541 00000 n -0000427604 00000 n -0000427667 00000 n -0000427730 00000 n -0000427793 00000 n -0000427857 00000 n -0000427921 00000 n -0000427985 00000 n -0000428046 00000 n -0000433346 00000 n -0000430884 00000 n -0000428279 00000 n -0000431198 00000 n -0000431261 00000 n -0000431324 00000 n -0000431387 00000 n -0000431450 00000 n -0000431513 00000 n -0000431577 00000 n -0000431641 00000 n -0000431830 00000 n -0000431893 00000 n -0000431956 00000 n -0000432019 00000 n -0000432082 00000 n -0000432145 00000 n -0000432335 00000 n -0000431029 00000 n -0000432524 00000 n -0000432587 00000 n -0000432650 00000 n -0000432713 00000 n -0000432777 00000 n -0000432841 00000 n -0000432904 00000 n -0000432967 00000 n -0000433031 00000 n -0000433094 00000 n -0000433157 00000 n -0000433221 00000 n -0000433284 00000 n -0000439312 00000 n -0000436590 00000 n -0000433462 00000 n -0000436714 00000 n -0000436777 00000 n -0000436839 00000 n -0000436902 00000 n -0000436966 00000 n -0000437029 00000 n -0000437092 00000 n -0000437156 00000 n -0000437219 00000 n -0000437283 00000 n -0000437347 00000 n -0000437411 00000 n -0000437474 00000 n -0000437538 00000 n -0000437602 00000 n -0000437665 00000 n -0000437853 00000 n -0000437916 00000 n -0000437980 00000 n -0000438044 00000 n -0000438108 00000 n -0000438172 00000 n -0000438236 00000 n -0000438300 00000 n -0000438364 00000 n -0000438428 00000 n +0000400830 00000 n +0000400894 00000 n +0000400957 00000 n +0000401020 00000 n +0000401084 00000 n +0000401147 00000 n +0000401210 00000 n +0000401273 00000 n +0000401336 00000 n +0000401399 00000 n +0000401462 00000 n +0000401525 00000 n +0000401588 00000 n +0000401650 00000 n +0000401712 00000 n +0000401775 00000 n +0000399320 00000 n +0000401838 00000 n +0000401900 00000 n +0000401963 00000 n +0000402026 00000 n +0000402089 00000 n +0000402152 00000 n +0000402215 00000 n +0000402278 00000 n +0000399487 00000 n +0000402341 00000 n +0000402404 00000 n +0000402467 00000 n +0000402530 00000 n +0000402593 00000 n +0000402656 00000 n +0000402719 00000 n +0000402783 00000 n +0000402846 00000 n +0000399654 00000 n +0000402908 00000 n +0000402971 00000 n +0000399814 00000 n +0000403034 00000 n +0000403096 00000 n +0000399982 00000 n +0000403159 00000 n +0000403222 00000 n +0000400149 00000 n +0000403285 00000 n +0000403348 00000 n +0000400321 00000 n +0000403411 00000 n +0000403474 00000 n +0000400490 00000 n +0000403537 00000 n +0000403600 00000 n +0000400660 00000 n +0000403787 00000 n +0000407913 00000 n +0000405839 00000 n +0000403980 00000 n +0000406025 00000 n +0000406213 00000 n +0000406401 00000 n +0000406464 00000 n +0000406527 00000 n +0000406590 00000 n +0000406653 00000 n +0000406717 00000 n +0000406780 00000 n +0000406843 00000 n +0000406907 00000 n +0000407095 00000 n +0000407283 00000 n +0000407471 00000 n +0000407659 00000 n +0000407722 00000 n +0000407786 00000 n +0000412363 00000 n +0000410519 00000 n +0000408043 00000 n +0000410978 00000 n +0000411041 00000 n +0000411166 00000 n +0000411229 00000 n +0000411356 00000 n +0000411543 00000 n +0000411606 00000 n +0000411669 00000 n +0000411732 00000 n +0000410673 00000 n +0000411795 00000 n +0000411858 00000 n +0000411921 00000 n +0000411984 00000 n +0000412173 00000 n +0000412236 00000 n +0000410827 00000 n +0000418060 00000 n +0000415127 00000 n +0000412493 00000 n +0000415912 00000 n +0000415975 00000 n +0000416100 00000 n +0000416163 00000 n +0000416226 00000 n +0000416289 00000 n +0000416352 00000 n +0000416416 00000 n +0000416480 00000 n +0000416543 00000 n +0000416607 00000 n +0000416669 00000 n +0000416733 00000 n +0000416797 00000 n +0000416861 00000 n +0000416924 00000 n +0000416987 00000 n +0000417050 00000 n +0000417240 00000 n +0000415299 00000 n +0000415448 00000 n +0000415602 00000 n +0000417428 00000 n +0000417491 00000 n +0000415754 00000 n +0000417555 00000 n +0000417681 00000 n +0000417744 00000 n +0000417808 00000 n +0000417871 00000 n +0000417934 00000 n +0000417997 00000 n +0000421828 00000 n +0000420196 00000 n +0000418204 00000 n +0000420320 00000 n +0000420383 00000 n +0000420445 00000 n +0000420508 00000 n +0000420633 00000 n +0000420696 00000 n +0000420759 00000 n +0000420821 00000 n +0000420883 00000 n +0000420946 00000 n +0000421010 00000 n +0000421073 00000 n +0000421136 00000 n +0000421261 00000 n +0000421324 00000 n +0000421387 00000 n +0000421451 00000 n +0000421514 00000 n +0000421577 00000 n +0000421640 00000 n +0000421702 00000 n +0000421765 00000 n +0000942685 00000 n +0000427578 00000 n +0000424263 00000 n +0000421972 00000 n +0000424727 00000 n +0000424853 00000 n +0000424916 00000 n +0000424979 00000 n +0000002316 00000 f +0000941551 00000 n +0000425043 00000 n +0000424417 00000 n +0000425107 00000 n +0000425169 00000 n +0000425233 00000 n +0000425297 00000 n +0000425361 00000 n +0000425425 00000 n +0000425489 00000 n +0000425552 00000 n +0000425615 00000 n +0000425678 00000 n +0000425741 00000 n +0000425804 00000 n +0000425868 00000 n +0000425932 00000 n +0000425995 00000 n +0000426059 00000 n +0000426123 00000 n +0000426186 00000 n +0000426249 00000 n +0000426312 00000 n +0000426502 00000 n +0000426565 00000 n +0000426628 00000 n +0000426754 00000 n +0000426817 00000 n +0000426881 00000 n +0000426945 00000 n +0000424572 00000 n +0000427009 00000 n +0000427072 00000 n +0000427135 00000 n +0000427198 00000 n +0000427261 00000 n +0000427324 00000 n +0000427387 00000 n +0000427450 00000 n +0000427514 00000 n +0000433687 00000 n +0000430535 00000 n +0000427750 00000 n +0000430848 00000 n +0000430911 00000 n +0000431037 00000 n +0000431100 00000 n +0000431164 00000 n +0000431227 00000 n +0000431290 00000 n +0000431353 00000 n +0000431416 00000 n +0000431479 00000 n +0000431542 00000 n +0000431605 00000 n +0000431669 00000 n +0000431731 00000 n +0000431793 00000 n +0000431856 00000 n +0000431919 00000 n +0000431982 00000 n +0000432045 00000 n +0000432108 00000 n +0000432171 00000 n +0000432235 00000 n +0000432299 00000 n +0000432488 00000 n +0000432551 00000 n +0000432614 00000 n +0000432677 00000 n +0000432740 00000 n +0000432803 00000 n +0000432992 00000 n +0000430680 00000 n +0000433180 00000 n +0000433243 00000 n +0000433306 00000 n +0000433369 00000 n +0000433433 00000 n +0000433497 00000 n +0000433560 00000 n +0000433624 00000 n +0000439507 00000 n +0000436975 00000 n +0000433831 00000 n +0000437099 00000 n +0000437162 00000 n +0000437225 00000 n +0000437288 00000 n +0000437352 00000 n +0000437414 00000 n +0000437477 00000 n +0000437539 00000 n +0000437603 00000 n +0000437666 00000 n +0000437729 00000 n +0000437793 00000 n +0000437856 00000 n +0000437920 00000 n +0000437984 00000 n +0000438048 00000 n +0000438111 00000 n +0000438175 00000 n +0000438239 00000 n +0000438302 00000 n 0000438490 00000 n -0000438552 00000 n -0000438616 00000 n -0000438680 00000 n +0000438551 00000 n +0000438615 00000 n +0000438679 00000 n 0000438743 00000 n 0000438807 00000 n -0000438870 00000 n -0000438933 00000 n -0000438996 00000 n -0000439058 00000 n -0000439121 00000 n -0000439184 00000 n -0000439248 00000 n -0000444475 00000 n -0000441936 00000 n -0000439470 00000 n -0000442573 00000 n -0000442636 00000 n -0000442699 00000 n -0000442763 00000 n -0000442099 00000 n -0000442953 00000 n -0000443016 00000 n -0000442268 00000 n -0000443079 00000 n -0000443142 00000 n -0000442421 00000 n -0000443206 00000 n -0000443269 00000 n -0000443332 00000 n -0000443395 00000 n -0000443456 00000 n -0000443520 00000 n -0000443584 00000 n -0000443648 00000 n -0000443712 00000 n -0000443775 00000 n -0000443838 00000 n -0000443901 00000 n -0000443965 00000 n -0000444028 00000 n -0000444092 00000 n -0000444156 00000 n -0000444220 00000 n -0000444284 00000 n -0000444348 00000 n -0000940844 00000 n -0000450369 00000 n -0000447153 00000 n -0000444605 00000 n -0000447783 00000 n -0000447909 00000 n -0000447972 00000 n -0000447316 00000 n -0000448036 00000 n -0000448099 00000 n -0000447475 00000 n -0000448163 00000 n -0000448227 00000 n -0000448291 00000 n -0000448354 00000 n -0000448416 00000 n -0000448479 00000 n -0000448543 00000 n -0000448606 00000 n -0000447629 00000 n -0000448795 00000 n -0000448983 00000 n -0000449046 00000 n -0000449109 00000 n -0000449172 00000 n -0000002517 00000 f -0000943719 00000 n -0000449235 00000 n -0000449298 00000 n -0000449362 00000 n -0000449425 00000 n -0000449488 00000 n -0000449551 00000 n -0000449614 00000 n -0000449803 00000 n -0000449866 00000 n -0000449929 00000 n -0000449992 00000 n -0000450055 00000 n -0000450118 00000 n -0000450182 00000 n -0000450245 00000 n -0000450307 00000 n -0000454616 00000 n -0000452745 00000 n -0000450527 00000 n -0000453040 00000 n -0000453103 00000 n -0000453166 00000 n -0000453228 00000 n -0000453292 00000 n -0000453355 00000 n -0000453544 00000 n -0000453607 00000 n -0000453670 00000 n -0000453733 00000 n -0000453796 00000 n -0000453859 00000 n -0000454049 00000 n -0000452890 00000 n -0000454112 00000 n -0000454175 00000 n -0000454238 00000 n -0000454301 00000 n -0000454364 00000 n -0000454426 00000 n -0000454489 00000 n -0000945073 00000 n -0000460337 00000 n -0000457690 00000 n -0000454746 00000 n -0000457992 00000 n -0000458118 00000 n -0000458181 00000 n -0000458244 00000 n -0000458308 00000 n -0000458372 00000 n -0000458435 00000 n -0000458498 00000 n -0000458562 00000 n -0000458626 00000 n -0000458689 00000 n -0000458752 00000 n -0000458941 00000 n -0000459004 00000 n -0000459067 00000 n -0000459130 00000 n -0000459194 00000 n -0000457835 00000 n -0000459258 00000 n -0000459322 00000 n -0000459385 00000 n -0000459448 00000 n -0000459511 00000 n -0000459574 00000 n -0000459637 00000 n -0000459701 00000 n -0000459765 00000 n -0000459829 00000 n -0000459893 00000 n -0000459957 00000 n -0000460020 00000 n -0000460083 00000 n -0000460146 00000 n -0000460209 00000 n -0000460273 00000 n -0000924074 00000 n -0000464573 00000 n -0000462176 00000 n -0000460481 00000 n -0000462300 00000 n -0000462363 00000 n -0000462426 00000 n -0000462489 00000 n -0000462552 00000 n -0000462614 00000 n -0000462678 00000 n -0000462740 00000 n -0000462803 00000 n -0000462866 00000 n -0000462929 00000 n -0000462993 00000 n -0000463056 00000 n -0000463119 00000 n -0000463182 00000 n -0000463245 00000 n -0000463309 00000 n -0000463372 00000 n -0000463435 00000 n -0000463498 00000 n -0000463561 00000 n -0000463750 00000 n -0000463813 00000 n -0000463877 00000 n -0000463941 00000 n -0000464004 00000 n -0000464068 00000 n -0000464131 00000 n -0000464194 00000 n -0000464258 00000 n -0000464322 00000 n -0000464385 00000 n -0000464448 00000 n -0000469174 00000 n -0000467003 00000 n -0000464689 00000 n -0000467472 00000 n -0000467598 00000 n -0000467661 00000 n -0000467724 00000 n -0000467914 00000 n -0000468103 00000 n -0000468166 00000 n -0000468230 00000 n -0000468420 00000 n -0000467157 00000 n +0000438871 00000 n +0000438935 00000 n +0000438999 00000 n +0000439063 00000 n +0000439126 00000 n +0000439189 00000 n +0000439253 00000 n +0000439317 00000 n +0000439380 00000 n +0000439444 00000 n +0000445001 00000 n +0000442110 00000 n +0000439651 00000 n +0000442918 00000 n +0000442981 00000 n +0000443043 00000 n +0000443106 00000 n +0000443169 00000 n +0000443232 00000 n +0000443295 00000 n +0000443358 00000 n +0000443422 00000 n +0000443485 00000 n +0000443548 00000 n +0000443611 00000 n +0000443675 00000 n +0000442282 00000 n +0000443864 00000 n +0000443927 00000 n +0000442451 00000 n +0000443991 00000 n +0000444054 00000 n +0000444117 00000 n +0000444180 00000 n +0000442610 00000 n +0000444244 00000 n +0000444308 00000 n +0000444372 00000 n +0000444435 00000 n +0000444497 00000 n +0000444560 00000 n +0000444624 00000 n +0000444687 00000 n +0000442764 00000 n +0000444875 00000 n +0000449546 00000 n +0000447278 00000 n +0000445159 00000 n +0000447402 00000 n +0000447528 00000 n +0000447591 00000 n +0000002496 00000 f +0000941456 00000 n +0000447654 00000 n +0000447717 00000 n +0000447781 00000 n +0000447844 00000 n +0000447907 00000 n +0000447970 00000 n +0000448033 00000 n +0000448096 00000 n +0000448159 00000 n +0000448222 00000 n +0000448285 00000 n +0000448348 00000 n +0000448411 00000 n +0000448600 00000 n +0000448663 00000 n +0000448726 00000 n +0000448789 00000 n +0000448852 00000 n +0000448915 00000 n +0000448979 00000 n +0000449042 00000 n +0000449105 00000 n +0000449167 00000 n +0000449230 00000 n +0000449292 00000 n +0000449356 00000 n +0000449419 00000 n +0000454294 00000 n +0000451915 00000 n +0000449690 00000 n +0000452211 00000 n +0000452274 00000 n +0000452398 00000 n +0000452461 00000 n +0000452524 00000 n +0000452587 00000 n +0000452650 00000 n +0000452713 00000 n +0000452903 00000 n +0000452060 00000 n +0000452966 00000 n +0000453029 00000 n +0000453092 00000 n +0000453155 00000 n +0000453218 00000 n +0000453281 00000 n +0000453344 00000 n +0000453534 00000 n +0000453597 00000 n +0000453660 00000 n +0000453724 00000 n +0000453788 00000 n +0000453851 00000 n +0000453913 00000 n +0000453977 00000 n +0000454041 00000 n +0000454104 00000 n +0000454167 00000 n +0000942810 00000 n +0000459427 00000 n +0000457163 00000 n +0000454424 00000 n +0000457465 00000 n +0000457591 00000 n +0000457654 00000 n +0000457717 00000 n +0000457781 00000 n +0000457308 00000 n +0000457845 00000 n +0000457909 00000 n +0000457972 00000 n +0000458034 00000 n +0000458097 00000 n +0000458160 00000 n +0000458223 00000 n +0000458287 00000 n +0000458351 00000 n +0000458415 00000 n +0000458479 00000 n +0000458543 00000 n +0000458606 00000 n +0000458669 00000 n +0000458732 00000 n +0000458795 00000 n +0000458859 00000 n +0000458923 00000 n +0000458986 00000 n +0000459048 00000 n +0000459111 00000 n +0000459174 00000 n +0000459238 00000 n +0000459301 00000 n +0000459364 00000 n +0000921676 00000 n +0000463578 00000 n +0000461370 00000 n +0000459571 00000 n +0000461494 00000 n +0000461557 00000 n +0000461620 00000 n +0000461684 00000 n +0000461747 00000 n +0000461810 00000 n +0000461873 00000 n +0000461936 00000 n +0000461999 00000 n +0000462062 00000 n +0000462125 00000 n +0000462186 00000 n +0000462249 00000 n +0000462438 00000 n +0000462501 00000 n +0000462565 00000 n +0000462629 00000 n +0000462692 00000 n +0000462756 00000 n +0000462820 00000 n +0000462883 00000 n +0000462946 00000 n +0000463010 00000 n +0000463073 00000 n +0000463136 00000 n +0000463325 00000 n +0000463388 00000 n +0000463451 00000 n +0000468704 00000 n +0000466080 00000 n +0000463694 00000 n +0000466880 00000 n +0000466943 00000 n +0000467068 00000 n +0000467257 00000 n 0000467320 00000 n -0000468483 00000 n -0000468546 00000 n -0000468610 00000 n -0000468673 00000 n -0000468735 00000 n -0000468797 00000 n -0000468860 00000 n -0000468923 00000 n -0000468985 00000 n -0000469048 00000 n -0000932705 00000 n -0000472693 00000 n -0000471212 00000 n -0000469318 00000 n -0000471683 00000 n -0000471809 00000 n -0000471872 00000 n -0000471936 00000 n -0000471999 00000 n -0000472062 00000 n -0000472125 00000 n -0000472314 00000 n -0000471366 00000 n -0000471535 00000 n -0000472377 00000 n -0000472440 00000 n -0000472503 00000 n -0000472566 00000 n -0000478435 00000 n -0000475419 00000 n -0000472823 00000 n -0000475717 00000 n -0000475843 00000 n -0000475906 00000 n -0000475969 00000 n -0000476033 00000 n -0000476096 00000 n -0000476160 00000 n -0000475564 00000 n -0000476223 00000 n -0000476286 00000 n -0000476349 00000 n -0000476413 00000 n -0000476477 00000 n -0000476541 00000 n -0000476605 00000 n -0000476669 00000 n -0000476733 00000 n -0000476797 00000 n -0000476860 00000 n -0000476924 00000 n +0000467384 00000 n +0000467574 00000 n +0000466252 00000 n +0000466415 00000 n +0000467637 00000 n +0000467699 00000 n +0000467763 00000 n +0000467826 00000 n +0000467889 00000 n +0000467952 00000 n +0000468015 00000 n +0000468078 00000 n +0000468141 00000 n +0000468204 00000 n +0000468392 00000 n +0000468580 00000 n +0000466567 00000 n +0000466734 00000 n +0000468643 00000 n +0000930443 00000 n +0000473603 00000 n +0000471405 00000 n +0000468848 00000 n +0000471704 00000 n +0000471767 00000 n +0000471957 00000 n +0000472146 00000 n +0000472208 00000 n +0000472271 00000 n +0000472335 00000 n +0000472398 00000 n +0000472462 00000 n +0000471550 00000 n +0000472525 00000 n +0000472588 00000 n +0000472651 00000 n +0000472714 00000 n +0000472778 00000 n +0000472842 00000 n +0000472906 00000 n +0000472970 00000 n +0000473034 00000 n +0000473098 00000 n +0000473161 00000 n +0000473224 00000 n 0000000000 00000 f -0000941831 00000 n -0000476987 00000 n -0000477050 00000 n -0000477112 00000 n -0000477175 00000 n -0000477365 00000 n -0000477428 00000 n -0000477491 00000 n -0000477554 00000 n -0000477617 00000 n -0000477680 00000 n -0000477742 00000 n -0000477805 00000 n -0000477868 00000 n -0000477931 00000 n -0000477994 00000 n -0000478057 00000 n -0000478120 00000 n -0000478183 00000 n -0000478246 00000 n -0000478309 00000 n -0000923632 00000 n -0000482049 00000 n -0000480487 00000 n -0000478607 00000 n -0000480788 00000 n -0000481040 00000 n -0000480632 00000 n -0000481228 00000 n -0000481291 00000 n -0000481354 00000 n -0000481418 00000 n -0000481482 00000 n -0000481546 00000 n -0000481735 00000 n -0000481861 00000 n -0000481923 00000 n -0000481986 00000 n -0000945198 00000 n -0000486316 00000 n -0000484169 00000 n -0000482193 00000 n -0000484293 00000 n -0000484419 00000 n -0000484482 00000 n -0000484546 00000 n -0000484609 00000 n -0000484735 00000 n -0000484798 00000 n -0000484861 00000 n -0000484925 00000 n -0000484989 00000 n -0000485052 00000 n -0000485115 00000 n -0000485179 00000 n -0000485243 00000 n -0000485306 00000 n -0000485370 00000 n -0000485433 00000 n -0000485496 00000 n -0000485559 00000 n -0000485749 00000 n -0000485812 00000 n -0000485875 00000 n -0000485938 00000 n -0000486001 00000 n -0000486064 00000 n -0000486127 00000 n -0000486190 00000 n -0000486253 00000 n -0000489975 00000 n -0000488147 00000 n -0000486488 00000 n -0000488271 00000 n -0000488334 00000 n -0000488397 00000 n -0000488460 00000 n -0000488523 00000 n -0000488586 00000 n -0000488776 00000 n -0000488964 00000 n -0000489027 00000 n -0000489090 00000 n -0000489153 00000 n -0000489217 00000 n -0000489281 00000 n -0000489344 00000 n -0000489407 00000 n -0000489470 00000 n -0000489534 00000 n -0000489598 00000 n -0000489787 00000 n -0000489849 00000 n -0000489912 00000 n -0000493672 00000 n -0000491899 00000 n -0000490105 00000 n -0000492023 00000 n -0000492086 00000 n -0000492149 00000 n -0000492213 00000 n -0000492277 00000 n -0000492341 00000 n -0000492405 00000 n -0000492468 00000 n -0000492531 00000 n -0000492593 00000 n -0000492656 00000 n -0000492720 00000 n -0000492783 00000 n -0000492846 00000 n -0000492909 00000 n -0000492973 00000 n -0000493037 00000 n -0000493100 00000 n -0000493163 00000 n -0000493226 00000 n -0000493290 00000 n -0000493354 00000 n -0000493417 00000 n -0000493480 00000 n -0000493544 00000 n -0000493608 00000 n -0000497729 00000 n -0000496025 00000 n -0000493788 00000 n -0000496340 00000 n -0000496403 00000 n -0000496467 00000 n -0000496531 00000 n -0000496720 00000 n -0000496909 00000 n -0000496972 00000 n -0000497035 00000 n -0000497098 00000 n -0000497161 00000 n -0000497224 00000 n -0000497287 00000 n -0000497476 00000 n -0000496170 00000 n -0000497539 00000 n -0000497602 00000 n -0000497665 00000 n -0000499704 00000 n -0000499008 00000 n -0000497887 00000 n -0000499132 00000 n -0000499195 00000 n -0000499258 00000 n -0000499322 00000 n -0000499386 00000 n -0000499450 00000 n -0000499513 00000 n -0000499576 00000 n -0000499640 00000 n -0000504424 00000 n -0000502281 00000 n -0000499848 00000 n -0000502405 00000 n -0000502720 00000 n -0000502783 00000 n -0000502845 00000 n -0000502907 00000 n -0000502970 00000 n -0000503033 00000 n -0000503096 00000 n -0000503159 00000 n -0000503222 00000 n -0000503285 00000 n -0000503348 00000 n -0000503412 00000 n -0000503476 00000 n -0000503540 00000 n -0000503603 00000 n -0000503666 00000 n -0000503729 00000 n -0000503792 00000 n -0000503855 00000 n -0000503917 00000 n -0000503981 00000 n -0000504044 00000 n -0000504107 00000 n -0000504170 00000 n -0000504233 00000 n -0000504297 00000 n -0000504360 00000 n -0000945323 00000 n -0000508702 00000 n -0000507005 00000 n -0000504540 00000 n -0000507129 00000 n -0000507192 00000 n -0000507255 00000 n -0000507318 00000 n -0000507381 00000 n -0000507444 00000 n -0000507507 00000 n -0000507570 00000 n -0000507634 00000 n -0000507696 00000 n -0000507759 00000 n -0000507822 00000 n -0000507885 00000 n -0000507948 00000 n -0000508011 00000 n -0000508073 00000 n -0000508137 00000 n -0000508200 00000 n -0000508263 00000 n -0000508326 00000 n -0000508388 00000 n -0000508451 00000 n -0000508514 00000 n -0000508576 00000 n -0000508639 00000 n -0000512445 00000 n -0000510937 00000 n -0000508832 00000 n -0000511061 00000 n -0000511124 00000 n -0000511187 00000 n -0000511250 00000 n -0000511313 00000 n -0000511376 00000 n -0000511439 00000 n -0000511502 00000 n -0000511564 00000 n -0000511627 00000 n -0000511690 00000 n -0000511754 00000 n -0000511816 00000 n -0000511879 00000 n -0000512194 00000 n -0000512257 00000 n -0000512319 00000 n -0000517917 00000 n -0000515467 00000 n -0000512561 00000 n -0000515591 00000 n -0000515842 00000 n -0000515905 00000 n -0000515968 00000 n -0000516029 00000 n -0000516092 00000 n -0000516155 00000 n -0000516217 00000 n -0000516280 00000 n -0000516343 00000 n -0000516406 00000 n -0000516595 00000 n -0000516658 00000 n -0000516721 00000 n -0000516785 00000 n -0000516849 00000 n -0000516912 00000 n -0000516975 00000 n -0000517038 00000 n -0000517101 00000 n -0000517164 00000 n -0000517227 00000 n -0000517290 00000 n -0000517353 00000 n -0000517416 00000 n -0000517479 00000 n -0000517542 00000 n -0000517605 00000 n -0000517668 00000 n -0000517731 00000 n -0000517790 00000 n -0000517854 00000 n -0000524243 00000 n -0000521111 00000 n -0000518075 00000 n -0000521411 00000 n -0000521474 00000 n -0000521536 00000 n -0000521599 00000 n -0000521663 00000 n -0000521725 00000 n -0000521789 00000 n -0000521852 00000 n -0000521915 00000 n -0000521978 00000 n -0000522041 00000 n -0000522104 00000 n -0000522167 00000 n -0000522230 00000 n -0000522293 00000 n -0000522356 00000 n -0000522419 00000 n -0000522482 00000 n -0000522545 00000 n -0000522608 00000 n -0000522671 00000 n -0000522734 00000 n -0000522797 00000 n -0000522860 00000 n -0000522923 00000 n -0000522986 00000 n -0000523049 00000 n -0000523112 00000 n -0000523175 00000 n -0000523238 00000 n -0000523301 00000 n -0000523365 00000 n -0000523428 00000 n -0000523491 00000 n -0000523680 00000 n -0000521256 00000 n -0000523743 00000 n -0000523806 00000 n -0000523869 00000 n -0000523932 00000 n -0000523995 00000 n -0000524056 00000 n -0000524119 00000 n -0000524181 00000 n -0000933021 00000 n -0000528781 00000 n -0000526775 00000 n -0000524387 00000 n -0000526899 00000 n -0000526962 00000 n -0000527150 00000 n -0000527213 00000 n -0000527276 00000 n -0000527340 00000 n -0000527403 00000 n -0000527466 00000 n -0000527528 00000 n -0000527591 00000 n -0000527654 00000 n -0000527716 00000 n -0000527779 00000 n -0000527967 00000 n -0000528030 00000 n -0000528092 00000 n -0000528155 00000 n -0000528218 00000 n -0000528280 00000 n -0000528343 00000 n -0000528406 00000 n -0000528469 00000 n -0000528656 00000 n -0000528719 00000 n -0000534494 00000 n -0000531275 00000 n -0000528883 00000 n -0000531399 00000 n -0000531462 00000 n -0000531524 00000 n -0000531587 00000 n -0000531650 00000 n -0000531713 00000 n -0000531775 00000 n -0000531838 00000 n -0000531901 00000 n -0000531964 00000 n -0000532027 00000 n -0000532089 00000 n -0000532152 00000 n -0000532341 00000 n -0000532404 00000 n -0000532468 00000 n -0000532532 00000 n -0000532721 00000 n -0000532784 00000 n -0000532848 00000 n -0000532912 00000 n -0000532975 00000 n -0000533039 00000 n -0000533102 00000 n -0000533165 00000 n -0000533229 00000 n -0000533292 00000 n -0000533356 00000 n -0000533419 00000 n -0000533483 00000 n -0000533547 00000 n -0000533611 00000 n -0000533674 00000 n -0000533737 00000 n -0000533801 00000 n -0000533864 00000 n -0000533927 00000 n -0000533991 00000 n -0000534055 00000 n -0000534118 00000 n -0000534179 00000 n -0000534242 00000 n -0000534306 00000 n -0000534368 00000 n -0000945448 00000 n -0000539592 00000 n -0000536565 00000 n -0000534624 00000 n -0000536689 00000 n -0000536941 00000 n -0000537004 00000 n -0000537067 00000 n -0000537130 00000 n -0000537193 00000 n -0000537255 00000 n -0000537318 00000 n -0000537381 00000 n -0000537444 00000 n -0000537508 00000 n -0000537571 00000 n -0000537634 00000 n -0000537697 00000 n -0000537760 00000 n -0000537824 00000 n -0000537887 00000 n -0000538075 00000 n -0000538138 00000 n -0000538202 00000 n -0000538266 00000 n -0000538330 00000 n -0000538394 00000 n -0000538457 00000 n -0000538521 00000 n -0000538584 00000 n -0000538648 00000 n -0000538711 00000 n -0000538901 00000 n -0000539086 00000 n -0000539149 00000 n -0000539212 00000 n -0000539275 00000 n -0000539339 00000 n -0000539402 00000 n -0000539465 00000 n -0000539529 00000 n -0000544735 00000 n -0000542028 00000 n -0000539708 00000 n -0000542152 00000 n -0000542215 00000 n -0000542277 00000 n -0000542340 00000 n -0000542404 00000 n -0000542467 00000 n -0000542529 00000 n -0000542591 00000 n -0000542781 00000 n -0000542843 00000 n -0000542907 00000 n -0000542971 00000 n -0000543033 00000 n -0000543221 00000 n -0000543284 00000 n -0000543348 00000 n -0000543412 00000 n -0000543476 00000 n -0000543664 00000 n -0000543727 00000 n -0000543791 00000 n -0000543915 00000 n -0000543978 00000 n -0000544104 00000 n -0000544166 00000 n -0000544292 00000 n -0000544355 00000 n -0000544418 00000 n -0000544482 00000 n -0000544545 00000 n -0000544607 00000 n -0000544671 00000 n -0000550444 00000 n -0000547534 00000 n -0000544865 00000 n -0000547658 00000 n -0000547721 00000 n -0000547785 00000 n -0000547848 00000 n -0000547911 00000 n -0000547975 00000 n -0000548038 00000 n -0000548101 00000 n -0000548165 00000 n -0000548229 00000 n -0000548293 00000 n -0000548357 00000 n -0000548421 00000 n -0000548484 00000 n -0000548548 00000 n -0000548610 00000 n -0000548673 00000 n -0000548736 00000 n -0000548800 00000 n -0000548864 00000 n -0000548927 00000 n -0000548990 00000 n -0000549054 00000 n -0000549118 00000 n -0000549242 00000 n -0000549305 00000 n -0000549368 00000 n -0000549431 00000 n -0000549557 00000 n -0000549620 00000 n -0000549684 00000 n -0000549810 00000 n -0000549873 00000 n -0000549937 00000 n -0000550001 00000 n -0000550065 00000 n -0000550128 00000 n -0000550192 00000 n -0000550318 00000 n -0000550381 00000 n -0000555360 00000 n -0000552962 00000 n -0000550546 00000 n -0000553086 00000 n -0000553212 00000 n -0000553275 00000 n -0000553338 00000 n -0000553464 00000 n -0000553526 00000 n -0000553590 00000 n -0000553654 00000 n -0000553844 00000 n -0000553907 00000 n -0000553971 00000 n -0000554034 00000 n -0000554098 00000 n -0000554161 00000 n -0000554225 00000 n -0000554289 00000 n -0000554479 00000 n -0000554542 00000 n -0000554605 00000 n -0000554794 00000 n -0000554857 00000 n -0000554920 00000 n -0000554982 00000 n -0000555045 00000 n -0000555108 00000 n -0000555171 00000 n -0000555234 00000 n -0000555297 00000 n -0000560619 00000 n -0000558602 00000 n -0000555490 00000 n -0000558726 00000 n -0000558789 00000 n -0000558852 00000 n -0000558915 00000 n -0000558978 00000 n -0000559041 00000 n -0000559104 00000 n -0000559165 00000 n -0000559353 00000 n -0000559416 00000 n -0000559479 00000 n -0000559543 00000 n -0000559606 00000 n -0000559669 00000 n -0000559858 00000 n -0000559921 00000 n -0000559985 00000 n -0000560048 00000 n -0000560111 00000 n -0000560175 00000 n -0000560239 00000 n -0000560302 00000 n -0000560366 00000 n -0000560429 00000 n -0000560492 00000 n -0000566082 00000 n -0000563245 00000 n -0000560735 00000 n -0000563369 00000 n -0000563495 00000 n -0000563558 00000 n -0000563621 00000 n -0000563684 00000 n -0000563747 00000 n -0000563811 00000 n -0000563874 00000 n -0000563937 00000 n -0000564001 00000 n -0000564065 00000 n -0000564128 00000 n -0000564191 00000 n -0000564254 00000 n -0000564318 00000 n -0000564382 00000 n -0000564446 00000 n -0000564510 00000 n -0000564573 00000 n -0000564636 00000 n -0000564699 00000 n -0000564762 00000 n -0000564826 00000 n -0000564889 00000 n -0000564952 00000 n -0000565015 00000 n -0000565203 00000 n -0000565266 00000 n -0000565329 00000 n -0000565392 00000 n -0000565454 00000 n -0000565517 00000 n -0000565580 00000 n -0000565642 00000 n -0000565831 00000 n -0000565894 00000 n -0000565957 00000 n -0000566020 00000 n -0000945573 00000 n -0000569570 00000 n -0000567934 00000 n -0000566198 00000 n -0000568058 00000 n -0000568121 00000 n -0000568184 00000 n -0000568247 00000 n -0000568310 00000 n -0000568373 00000 n -0000568436 00000 n -0000568499 00000 n -0000568562 00000 n -0000568625 00000 n -0000568689 00000 n -0000568753 00000 n -0000568815 00000 n -0000569130 00000 n -0000569193 00000 n -0000569382 00000 n -0000569444 00000 n -0000573204 00000 n -0000571446 00000 n -0000569686 00000 n -0000571570 00000 n -0000571633 00000 n -0000571758 00000 n -0000571821 00000 n -0000571884 00000 n -0000571947 00000 n -0000572010 00000 n -0000572073 00000 n -0000572136 00000 n -0000572199 00000 n -0000572262 00000 n -0000572325 00000 n -0000572387 00000 n -0000572450 00000 n -0000572638 00000 n -0000572701 00000 n -0000572763 00000 n -0000572826 00000 n -0000572889 00000 n -0000572952 00000 n -0000573141 00000 n -0000578600 00000 n -0000576602 00000 n -0000573320 00000 n -0000577403 00000 n -0000577466 00000 n -0000577529 00000 n -0000577592 00000 n -0000577655 00000 n -0000577845 00000 n -0000577908 00000 n -0000577971 00000 n -0000578034 00000 n -0000576774 00000 n -0000578097 00000 n -0000578159 00000 n -0000576927 00000 n -0000578222 00000 n -0000578285 00000 n -0000577086 00000 n -0000578348 00000 n -0000577245 00000 n -0000578411 00000 n -0000578473 00000 n -0000578536 00000 n -0000583200 00000 n -0000581309 00000 n -0000578730 00000 n -0000581433 00000 n -0000581496 00000 n -0000581559 00000 n -0000581749 00000 n -0000581812 00000 n -0000581875 00000 n -0000581938 00000 n -0000582001 00000 n -0000582064 00000 n -0000582127 00000 n -0000582190 00000 n -0000582254 00000 n -0000582317 00000 n -0000582380 00000 n -0000582443 00000 n -0000582506 00000 n -0000582570 00000 n -0000582758 00000 n -0000582821 00000 n -0000582884 00000 n -0000582947 00000 n -0000583011 00000 n -0000583074 00000 n -0000583137 00000 n -0000587509 00000 n -0000585558 00000 n -0000583358 00000 n -0000585682 00000 n -0000585745 00000 n -0000585808 00000 n -0000585871 00000 n -0000585934 00000 n -0000585997 00000 n -0000586059 00000 n -0000586122 00000 n -0000586185 00000 n -0000586248 00000 n -0000586311 00000 n -0000586374 00000 n -0000586438 00000 n -0000586502 00000 n -0000586565 00000 n -0000586754 00000 n -0000586817 00000 n -0000586881 00000 n -0000586944 00000 n -0000587007 00000 n -0000587070 00000 n -0000587133 00000 n -0000587196 00000 n -0000587258 00000 n -0000587321 00000 n -0000587384 00000 n -0000587446 00000 n -0000590384 00000 n -0000589135 00000 n -0000587667 00000 n -0000589434 00000 n -0000589497 00000 n -0000589561 00000 n -0000589280 00000 n -0000589750 00000 n -0000589813 00000 n -0000589877 00000 n -0000589940 00000 n -0000590003 00000 n -0000590066 00000 n -0000590129 00000 n -0000590193 00000 n -0000590257 00000 n -0000590320 00000 n -0000945698 00000 n -0000595751 00000 n -0000593132 00000 n -0000590542 00000 n -0000593598 00000 n -0000593787 00000 n -0000593850 00000 n -0000593914 00000 n -0000594228 00000 n -0000594416 00000 n -0000593286 00000 n -0000594479 00000 n -0000594542 00000 n -0000594606 00000 n -0000594670 00000 n -0000593441 00000 n -0000594734 00000 n -0000594798 00000 n -0000594862 00000 n -0000594926 00000 n -0000594990 00000 n -0000595053 00000 n -0000595117 00000 n -0000595180 00000 n -0000595243 00000 n -0000595307 00000 n -0000595371 00000 n -0000595561 00000 n -0000595624 00000 n -0000926957 00000 n -0000936780 00000 n -0000600339 00000 n -0000597601 00000 n -0000595895 00000 n -0000598260 00000 n -0000598511 00000 n -0000597764 00000 n -0000598699 00000 n -0000598762 00000 n -0000598826 00000 n -0000598890 00000 n -0000599016 00000 n -0000599079 00000 n -0000599142 00000 n -0000599205 00000 n -0000599269 00000 n -0000599394 00000 n -0000599457 00000 n -0000599520 00000 n -0000599583 00000 n -0000599647 00000 n -0000599710 00000 n -0000599772 00000 n -0000599835 00000 n -0000597928 00000 n -0000600024 00000 n -0000598099 00000 n -0000600149 00000 n -0000600212 00000 n -0000600276 00000 n -0000608021 00000 n -0000602504 00000 n -0000600497 00000 n -0000602969 00000 n -0000603284 00000 n -0000603347 00000 n -0000603411 00000 n -0000603474 00000 n -0000602658 00000 n -0000602814 00000 n -0000603537 00000 n -0000603600 00000 n -0000603663 00000 n -0000603726 00000 n -0000603788 00000 n -0000603850 00000 n -0000603913 00000 n -0000603977 00000 n -0000604041 00000 n -0000604105 00000 n -0000604169 00000 n -0000604232 00000 n -0000604295 00000 n -0000604359 00000 n -0000604423 00000 n -0000604487 00000 n -0000604551 00000 n -0000604614 00000 n -0000604673 00000 n -0000604732 00000 n -0000604795 00000 n -0000604858 00000 n -0000604921 00000 n -0000604984 00000 n -0000605047 00000 n -0000605111 00000 n -0000605175 00000 n -0000605238 00000 n -0000605301 00000 n -0000605364 00000 n -0000605427 00000 n -0000605490 00000 n -0000605553 00000 n -0000605616 00000 n -0000605679 00000 n -0000605742 00000 n -0000605805 00000 n -0000605869 00000 n -0000605933 00000 n -0000605997 00000 n -0000606060 00000 n -0000606123 00000 n -0000606186 00000 n -0000606249 00000 n -0000606313 00000 n -0000606376 00000 n -0000606440 00000 n -0000606504 00000 n -0000606568 00000 n -0000606632 00000 n -0000606696 00000 n -0000606760 00000 n -0000606824 00000 n -0000606888 00000 n -0000606952 00000 n -0000607015 00000 n -0000607078 00000 n -0000607140 00000 n -0000607202 00000 n -0000607266 00000 n -0000607328 00000 n -0000607391 00000 n -0000607454 00000 n -0000607517 00000 n -0000607580 00000 n -0000607643 00000 n -0000607706 00000 n -0000607769 00000 n -0000607832 00000 n -0000607895 00000 n -0000607958 00000 n -0000916907 00000 n -0000613185 00000 n -0000610652 00000 n -0000608165 00000 n -0000611285 00000 n -0000611348 00000 n -0000611411 00000 n -0000611475 00000 n -0000611539 00000 n -0000611603 00000 n -0000611667 00000 n -0000611731 00000 n -0000611794 00000 n -0000611857 00000 n -0000610815 00000 n -0000612046 00000 n -0000612109 00000 n -0000612172 00000 n -0000610962 00000 n -0000612235 00000 n -0000612299 00000 n -0000612363 00000 n -0000612427 00000 n -0000612743 00000 n -0000612806 00000 n -0000611114 00000 n -0000612932 00000 n -0000612995 00000 n -0000613059 00000 n -0000613122 00000 n -0000927336 00000 n -0000618301 00000 n -0000615906 00000 n -0000613343 00000 n -0000616215 00000 n -0000616530 00000 n -0000616593 00000 n -0000616051 00000 n -0000616782 00000 n -0000616845 00000 n -0000616909 00000 n -0000616973 00000 n -0000617037 00000 n -0000617100 00000 n -0000617162 00000 n -0000617225 00000 n -0000617289 00000 n -0000617353 00000 n -0000617543 00000 n -0000617606 00000 n -0000617669 00000 n -0000617733 00000 n -0000617797 00000 n -0000617860 00000 n -0000617923 00000 n -0000617986 00000 n -0000618049 00000 n -0000618112 00000 n -0000618175 00000 n -0000618238 00000 n -0000623273 00000 n -0000621504 00000 n -0000618459 00000 n -0000621628 00000 n -0000621691 00000 n -0000621754 00000 n -0000621815 00000 n -0000621878 00000 n -0000621940 00000 n -0000622004 00000 n -0000622068 00000 n -0000622132 00000 n -0000622195 00000 n -0000622259 00000 n -0000622323 00000 n -0000622387 00000 n -0000622577 00000 n -0000622640 00000 n -0000622703 00000 n -0000622766 00000 n -0000622829 00000 n -0000622893 00000 n -0000622956 00000 n -0000623019 00000 n -0000623082 00000 n -0000623146 00000 n -0000945823 00000 n -0000629243 00000 n -0000626657 00000 n -0000623417 00000 n -0000626781 00000 n -0000626907 00000 n -0000626970 00000 n -0000627034 00000 n -0000627097 00000 n -0000627161 00000 n -0000627222 00000 n -0000627286 00000 n -0000627349 00000 n -0000627411 00000 n -0000627474 00000 n -0000627537 00000 n -0000627601 00000 n -0000627664 00000 n -0000627727 00000 n -0000627790 00000 n -0000627853 00000 n -0000627916 00000 n -0000628105 00000 n -0000628168 00000 n -0000628231 00000 n -0000628294 00000 n -0000628357 00000 n -0000628420 00000 n -0000628483 00000 n -0000628546 00000 n -0000628610 00000 n -0000628673 00000 n -0000628736 00000 n -0000628799 00000 n -0000628862 00000 n -0000628926 00000 n -0000628990 00000 n -0000629054 00000 n -0000629117 00000 n -0000629180 00000 n -0000634003 00000 n -0000632175 00000 n -0000629387 00000 n -0000632299 00000 n -0000632362 00000 n -0000632425 00000 n -0000632488 00000 n -0000632550 00000 n -0000632612 00000 n -0000632675 00000 n -0000632738 00000 n -0000632802 00000 n -0000632866 00000 n -0000632929 00000 n -0000632992 00000 n -0000633056 00000 n -0000633119 00000 n -0000633182 00000 n -0000633245 00000 n -0000633309 00000 n -0000633373 00000 n -0000633437 00000 n -0000633500 00000 n -0000633563 00000 n -0000633626 00000 n -0000633690 00000 n -0000633753 00000 n -0000633816 00000 n -0000633877 00000 n -0000639315 00000 n -0000637229 00000 n -0000634119 00000 n -0000637353 00000 n -0000637479 00000 n -0000637542 00000 n -0000637605 00000 n -0000637668 00000 n -0000637732 00000 n -0000637796 00000 n -0000637859 00000 n -0000638049 00000 n -0000638112 00000 n -0000638176 00000 n -0000638239 00000 n -0000638302 00000 n -0000638365 00000 n -0000638428 00000 n -0000638491 00000 n -0000638555 00000 n -0000638619 00000 n -0000638682 00000 n -0000638746 00000 n -0000638810 00000 n -0000638874 00000 n -0000638937 00000 n -0000639000 00000 n -0000639062 00000 n -0000639126 00000 n -0000639189 00000 n -0000639252 00000 n -0000644658 00000 n -0000642316 00000 n -0000639459 00000 n -0000642440 00000 n -0000642503 00000 n -0000642566 00000 n -0000642629 00000 n -0000642692 00000 n -0000642755 00000 n -0000642818 00000 n -0000642882 00000 n -0000642945 00000 n -0000643009 00000 n -0000643073 00000 n -0000643137 00000 n -0000643200 00000 n -0000643263 00000 n -0000643326 00000 n -0000643390 00000 n -0000643453 00000 n -0000643516 00000 n -0000643579 00000 n -0000643642 00000 n -0000643706 00000 n -0000643769 00000 n -0000643832 00000 n -0000643895 00000 n -0000643958 00000 n -0000644021 00000 n -0000644084 00000 n -0000644147 00000 n -0000644211 00000 n -0000644275 00000 n -0000644339 00000 n -0000644403 00000 n -0000644466 00000 n -0000644530 00000 n -0000644594 00000 n -0000649187 00000 n -0000647673 00000 n -0000644760 00000 n -0000647797 00000 n -0000647860 00000 n -0000647922 00000 n -0000647985 00000 n -0000648048 00000 n -0000648111 00000 n -0000648175 00000 n -0000648238 00000 n -0000648426 00000 n -0000648489 00000 n -0000648553 00000 n -0000648616 00000 n -0000648679 00000 n -0000648742 00000 n -0000648806 00000 n -0000648870 00000 n -0000648933 00000 n -0000648997 00000 n -0000649060 00000 n -0000649123 00000 n -0000652920 00000 n -0000651531 00000 n -0000649317 00000 n -0000651655 00000 n -0000651780 00000 n -0000651843 00000 n -0000651906 00000 n -0000651968 00000 n -0000652031 00000 n -0000652095 00000 n -0000652159 00000 n -0000652222 00000 n -0000652286 00000 n -0000652476 00000 n -0000652539 00000 n -0000652603 00000 n -0000652666 00000 n -0000652729 00000 n -0000652793 00000 n -0000652857 00000 n -0000945948 00000 n -0000657940 00000 n -0000656431 00000 n -0000653064 00000 n -0000656555 00000 n -0000656618 00000 n -0000656680 00000 n -0000656743 00000 n -0000656868 00000 n -0000656931 00000 n -0000656994 00000 n -0000657057 00000 n -0000657120 00000 n -0000657183 00000 n -0000657246 00000 n -0000657309 00000 n -0000657498 00000 n -0000657561 00000 n -0000657624 00000 n -0000657687 00000 n -0000657751 00000 n -0000657814 00000 n -0000657877 00000 n -0000661485 00000 n -0000659592 00000 n -0000658056 00000 n -0000659716 00000 n -0000659779 00000 n -0000659841 00000 n -0000659904 00000 n -0000659968 00000 n -0000660032 00000 n -0000660095 00000 n -0000660159 00000 n -0000660223 00000 n -0000660286 00000 n -0000660349 00000 n -0000660411 00000 n -0000660473 00000 n -0000660536 00000 n -0000660600 00000 n -0000660664 00000 n -0000660727 00000 n -0000660790 00000 n -0000660979 00000 n -0000661042 00000 n -0000661105 00000 n -0000661168 00000 n -0000661232 00000 n -0000661295 00000 n -0000661359 00000 n -0000661422 00000 n -0000663583 00000 n -0000663396 00000 n -0000661629 00000 n -0000663520 00000 n -0000665493 00000 n -0000665306 00000 n -0000663671 00000 n -0000665430 00000 n -0000667410 00000 n -0000667223 00000 n -0000665581 00000 n -0000667347 00000 n -0000671324 00000 n -0000669639 00000 n -0000667498 00000 n -0000670254 00000 n -0000670566 00000 n -0000669802 00000 n -0000669949 00000 n -0000670102 00000 n -0000670755 00000 n -0000670818 00000 n -0000670881 00000 n -0000670944 00000 n -0000671007 00000 n +0000939568 00000 n +0000473287 00000 n +0000473350 00000 n +0000473413 00000 n +0000473476 00000 n +0000921234 00000 n +0000478621 00000 n +0000475989 00000 n +0000473747 00000 n +0000476290 00000 n +0000476416 00000 n +0000476479 00000 n +0000476543 00000 n +0000476606 00000 n +0000476669 00000 n +0000476732 00000 n +0000476795 00000 n +0000476857 00000 n +0000476920 00000 n +0000476983 00000 n +0000477046 00000 n +0000477109 00000 n +0000477172 00000 n +0000477235 00000 n +0000477298 00000 n +0000477361 00000 n +0000477675 00000 n +0000476134 00000 n +0000477862 00000 n +0000477925 00000 n +0000477988 00000 n +0000478052 00000 n +0000478116 00000 n +0000478180 00000 n +0000478370 00000 n +0000478496 00000 n +0000478558 00000 n +0000481698 00000 n +0000480245 00000 n +0000478807 00000 n +0000480369 00000 n +0000480432 00000 n +0000480557 00000 n +0000480620 00000 n +0000480684 00000 n +0000480748 00000 n +0000480874 00000 n +0000480937 00000 n +0000481000 00000 n +0000481064 00000 n +0000481128 00000 n +0000481191 00000 n +0000481254 00000 n +0000481318 00000 n +0000481382 00000 n +0000481445 00000 n +0000481509 00000 n +0000481572 00000 n +0000481635 00000 n +0000942935 00000 n +0000485708 00000 n +0000483695 00000 n +0000481870 00000 n +0000483819 00000 n +0000483882 00000 n +0000484072 00000 n +0000484135 00000 n +0000484197 00000 n +0000484259 00000 n +0000484322 00000 n +0000484385 00000 n +0000484448 00000 n +0000484511 00000 n +0000484574 00000 n +0000484637 00000 n +0000484700 00000 n +0000484762 00000 n +0000484825 00000 n +0000484888 00000 n +0000485078 00000 n +0000485267 00000 n +0000485330 00000 n +0000485392 00000 n +0000485455 00000 n +0000485519 00000 n +0000485583 00000 n +0000485645 00000 n +0000489051 00000 n +0000487535 00000 n +0000485852 00000 n +0000487659 00000 n +0000487722 00000 n +0000487785 00000 n +0000487849 00000 n +0000487913 00000 n +0000488102 00000 n +0000488165 00000 n +0000488228 00000 n +0000488291 00000 n +0000488354 00000 n +0000488418 00000 n +0000488482 00000 n +0000488546 00000 n +0000488610 00000 n +0000488673 00000 n +0000488736 00000 n +0000488799 00000 n +0000488863 00000 n +0000488925 00000 n +0000488988 00000 n +0000493056 00000 n +0000491164 00000 n +0000489181 00000 n +0000491288 00000 n +0000491351 00000 n +0000491414 00000 n +0000491478 00000 n +0000491542 00000 n +0000491605 00000 n +0000491667 00000 n +0000491730 00000 n +0000491794 00000 n +0000491858 00000 n +0000491920 00000 n +0000491983 00000 n +0000492043 00000 n +0000492107 00000 n +0000492171 00000 n +0000492235 00000 n +0000492299 00000 n +0000492489 00000 n +0000492677 00000 n +0000492740 00000 n +0000492804 00000 n +0000492867 00000 n +0000492930 00000 n +0000492993 00000 n +0000496432 00000 n +0000495100 00000 n +0000493214 00000 n +0000495416 00000 n +0000495479 00000 n +0000495669 00000 n +0000495245 00000 n +0000495732 00000 n +0000495795 00000 n +0000495858 00000 n +0000495922 00000 n +0000495985 00000 n +0000496049 00000 n +0000496113 00000 n +0000496177 00000 n +0000496240 00000 n +0000496304 00000 n +0000496368 00000 n +0000501373 00000 n +0000499042 00000 n +0000496576 00000 n +0000499166 00000 n +0000499481 00000 n +0000499544 00000 n +0000499606 00000 n +0000499668 00000 n +0000499731 00000 n +0000499794 00000 n +0000499857 00000 n +0000499920 00000 n +0000499983 00000 n +0000500046 00000 n +0000500109 00000 n +0000500173 00000 n +0000500237 00000 n +0000500301 00000 n +0000500364 00000 n +0000500427 00000 n +0000500490 00000 n +0000500553 00000 n +0000500616 00000 n +0000500678 00000 n +0000500742 00000 n +0000500805 00000 n +0000500868 00000 n +0000500931 00000 n +0000500995 00000 n +0000501058 00000 n +0000501121 00000 n +0000501184 00000 n +0000501247 00000 n +0000501311 00000 n +0000505477 00000 n +0000503966 00000 n +0000501489 00000 n +0000504090 00000 n +0000504153 00000 n +0000504215 00000 n +0000504278 00000 n +0000504341 00000 n +0000504404 00000 n +0000504467 00000 n +0000504530 00000 n +0000504594 00000 n +0000504657 00000 n +0000504720 00000 n +0000504783 00000 n +0000504846 00000 n +0000504909 00000 n +0000504972 00000 n +0000505035 00000 n +0000505099 00000 n +0000505162 00000 n +0000505225 00000 n +0000505288 00000 n +0000505351 00000 n +0000505414 00000 n +0000943060 00000 n +0000509679 00000 n +0000507982 00000 n +0000505607 00000 n +0000508106 00000 n +0000508169 00000 n +0000508232 00000 n +0000508295 00000 n +0000508358 00000 n +0000508421 00000 n +0000508484 00000 n +0000508547 00000 n +0000508610 00000 n +0000508673 00000 n +0000508736 00000 n +0000508799 00000 n +0000508862 00000 n +0000508925 00000 n +0000508989 00000 n +0000509050 00000 n +0000509113 00000 n +0000509428 00000 n +0000509491 00000 n +0000509553 00000 n +0000515151 00000 n +0000512701 00000 n +0000509795 00000 n +0000512825 00000 n +0000513076 00000 n +0000513139 00000 n +0000513202 00000 n +0000513263 00000 n +0000513326 00000 n +0000513389 00000 n +0000513451 00000 n +0000513514 00000 n +0000513577 00000 n +0000513640 00000 n +0000513829 00000 n +0000513892 00000 n +0000513955 00000 n +0000514019 00000 n +0000514083 00000 n +0000514146 00000 n +0000514209 00000 n +0000514272 00000 n +0000514335 00000 n +0000514398 00000 n +0000514461 00000 n +0000514524 00000 n +0000514587 00000 n +0000514650 00000 n +0000514713 00000 n +0000514776 00000 n +0000514839 00000 n +0000514902 00000 n +0000514965 00000 n +0000515024 00000 n +0000515088 00000 n +0000521477 00000 n +0000518345 00000 n +0000515309 00000 n +0000518645 00000 n +0000518708 00000 n +0000518770 00000 n +0000518833 00000 n +0000518897 00000 n +0000518959 00000 n +0000519023 00000 n +0000519086 00000 n +0000519149 00000 n +0000519212 00000 n +0000519275 00000 n +0000519338 00000 n +0000519401 00000 n +0000519464 00000 n +0000519527 00000 n +0000519590 00000 n +0000519653 00000 n +0000519716 00000 n +0000519779 00000 n +0000519842 00000 n +0000519905 00000 n +0000519968 00000 n +0000520031 00000 n +0000520094 00000 n +0000520157 00000 n +0000520220 00000 n +0000520283 00000 n +0000520346 00000 n +0000520409 00000 n +0000520472 00000 n +0000520535 00000 n +0000520599 00000 n +0000520662 00000 n +0000520725 00000 n +0000520914 00000 n +0000518490 00000 n +0000520977 00000 n +0000521040 00000 n +0000521103 00000 n +0000521166 00000 n +0000521229 00000 n +0000521290 00000 n +0000521353 00000 n +0000521415 00000 n +0000930757 00000 n +0000526015 00000 n +0000524009 00000 n +0000521621 00000 n +0000524133 00000 n +0000524196 00000 n +0000524384 00000 n +0000524447 00000 n +0000524510 00000 n +0000524574 00000 n +0000524637 00000 n +0000524700 00000 n +0000524762 00000 n +0000524825 00000 n +0000524888 00000 n +0000524950 00000 n +0000525013 00000 n +0000525201 00000 n +0000525264 00000 n +0000525326 00000 n +0000525389 00000 n +0000525452 00000 n +0000525514 00000 n +0000525577 00000 n +0000525640 00000 n +0000525703 00000 n +0000525890 00000 n +0000525953 00000 n +0000531728 00000 n +0000528509 00000 n +0000526117 00000 n +0000528633 00000 n +0000528696 00000 n +0000528758 00000 n +0000528821 00000 n +0000528884 00000 n +0000528947 00000 n +0000529009 00000 n +0000529072 00000 n +0000529135 00000 n +0000529198 00000 n +0000529261 00000 n +0000529323 00000 n +0000529386 00000 n +0000529575 00000 n +0000529638 00000 n +0000529702 00000 n +0000529766 00000 n +0000529955 00000 n +0000530018 00000 n +0000530082 00000 n +0000530146 00000 n +0000530209 00000 n +0000530273 00000 n +0000530336 00000 n +0000530399 00000 n +0000530463 00000 n +0000530526 00000 n +0000530590 00000 n +0000530653 00000 n +0000530717 00000 n +0000530781 00000 n +0000530845 00000 n +0000530908 00000 n +0000530971 00000 n +0000531035 00000 n +0000531098 00000 n +0000531161 00000 n +0000531225 00000 n +0000531289 00000 n +0000531352 00000 n +0000531413 00000 n +0000531476 00000 n +0000531540 00000 n +0000531602 00000 n +0000536826 00000 n +0000533799 00000 n +0000531858 00000 n +0000533923 00000 n +0000534175 00000 n +0000534238 00000 n +0000534301 00000 n +0000534364 00000 n +0000534427 00000 n +0000534489 00000 n +0000534552 00000 n +0000534615 00000 n +0000534678 00000 n +0000534742 00000 n +0000534805 00000 n +0000534868 00000 n +0000534931 00000 n +0000534994 00000 n +0000535058 00000 n +0000535121 00000 n +0000535309 00000 n +0000535372 00000 n +0000535436 00000 n +0000535500 00000 n +0000535564 00000 n +0000535628 00000 n +0000535691 00000 n +0000535755 00000 n +0000535818 00000 n +0000535882 00000 n +0000535945 00000 n +0000536135 00000 n +0000536320 00000 n +0000536383 00000 n +0000536446 00000 n +0000536509 00000 n +0000536573 00000 n +0000536636 00000 n +0000536699 00000 n +0000536763 00000 n +0000943185 00000 n +0000541969 00000 n +0000539262 00000 n +0000536942 00000 n +0000539386 00000 n +0000539449 00000 n +0000539511 00000 n +0000539574 00000 n +0000539638 00000 n +0000539701 00000 n +0000539763 00000 n +0000539825 00000 n +0000540015 00000 n +0000540077 00000 n +0000540141 00000 n +0000540205 00000 n +0000540267 00000 n +0000540455 00000 n +0000540518 00000 n +0000540582 00000 n +0000540646 00000 n +0000540710 00000 n +0000540898 00000 n +0000540961 00000 n +0000541025 00000 n +0000541149 00000 n +0000541212 00000 n +0000541338 00000 n +0000541400 00000 n +0000541526 00000 n +0000541589 00000 n +0000541652 00000 n +0000541716 00000 n +0000541779 00000 n +0000541841 00000 n +0000541905 00000 n +0000547678 00000 n +0000544768 00000 n +0000542099 00000 n +0000544892 00000 n +0000544955 00000 n +0000545019 00000 n +0000545082 00000 n +0000545145 00000 n +0000545209 00000 n +0000545272 00000 n +0000545335 00000 n +0000545399 00000 n +0000545463 00000 n +0000545527 00000 n +0000545591 00000 n +0000545655 00000 n +0000545718 00000 n +0000545782 00000 n +0000545844 00000 n +0000545907 00000 n +0000545970 00000 n +0000546034 00000 n +0000546098 00000 n +0000546161 00000 n +0000546224 00000 n +0000546288 00000 n +0000546352 00000 n +0000546476 00000 n +0000546539 00000 n +0000546602 00000 n +0000546665 00000 n +0000546791 00000 n +0000546854 00000 n +0000546918 00000 n +0000547044 00000 n +0000547107 00000 n +0000547171 00000 n +0000547235 00000 n +0000547299 00000 n +0000547362 00000 n +0000547426 00000 n +0000547552 00000 n +0000547615 00000 n +0000552594 00000 n +0000550196 00000 n +0000547780 00000 n +0000550320 00000 n +0000550446 00000 n +0000550509 00000 n +0000550572 00000 n +0000550698 00000 n +0000550760 00000 n +0000550824 00000 n +0000550888 00000 n +0000551078 00000 n +0000551141 00000 n +0000551205 00000 n +0000551268 00000 n +0000551332 00000 n +0000551395 00000 n +0000551459 00000 n +0000551523 00000 n +0000551713 00000 n +0000551776 00000 n +0000551839 00000 n +0000552028 00000 n +0000552091 00000 n +0000552154 00000 n +0000552216 00000 n +0000552279 00000 n +0000552342 00000 n +0000552405 00000 n +0000552468 00000 n +0000552531 00000 n +0000557852 00000 n +0000555835 00000 n +0000552724 00000 n +0000555959 00000 n +0000556022 00000 n +0000556085 00000 n +0000556148 00000 n +0000556211 00000 n +0000556274 00000 n +0000556337 00000 n +0000556398 00000 n +0000556586 00000 n +0000556649 00000 n +0000556712 00000 n +0000556776 00000 n +0000556839 00000 n +0000556902 00000 n +0000557091 00000 n +0000557154 00000 n +0000557218 00000 n +0000557281 00000 n +0000557344 00000 n +0000557408 00000 n +0000557472 00000 n +0000557535 00000 n +0000557599 00000 n +0000557662 00000 n +0000557725 00000 n +0000562855 00000 n +0000560268 00000 n +0000557968 00000 n +0000560392 00000 n +0000560455 00000 n +0000560580 00000 n +0000560643 00000 n +0000560706 00000 n +0000560769 00000 n +0000560832 00000 n +0000560896 00000 n +0000560959 00000 n +0000561022 00000 n +0000561086 00000 n +0000561150 00000 n +0000561213 00000 n +0000561276 00000 n +0000561339 00000 n +0000561403 00000 n +0000561467 00000 n +0000561531 00000 n +0000561595 00000 n +0000561658 00000 n +0000561721 00000 n +0000561784 00000 n +0000561847 00000 n +0000561911 00000 n +0000561974 00000 n +0000562037 00000 n +0000562100 00000 n +0000562289 00000 n +0000562352 00000 n +0000562415 00000 n +0000562478 00000 n +0000562541 00000 n +0000562603 00000 n +0000562666 00000 n +0000562729 00000 n +0000566731 00000 n +0000564972 00000 n +0000562971 00000 n +0000565096 00000 n +0000565222 00000 n +0000565285 00000 n +0000565348 00000 n +0000565411 00000 n +0000565474 00000 n +0000565537 00000 n +0000565600 00000 n +0000565663 00000 n +0000565726 00000 n +0000565789 00000 n +0000565852 00000 n +0000565914 00000 n +0000565977 00000 n +0000566040 00000 n +0000566103 00000 n +0000566416 00000 n +0000566479 00000 n +0000566668 00000 n +0000943310 00000 n +0000570003 00000 n +0000568308 00000 n +0000566847 00000 n +0000568432 00000 n +0000568495 00000 n +0000568684 00000 n +0000568747 00000 n +0000568810 00000 n +0000568873 00000 n +0000568936 00000 n +0000568999 00000 n +0000569062 00000 n +0000569124 00000 n +0000569187 00000 n +0000569250 00000 n +0000569313 00000 n +0000569376 00000 n +0000569564 00000 n +0000569627 00000 n +0000569690 00000 n +0000569752 00000 n +0000569815 00000 n +0000569878 00000 n +0000575535 00000 n +0000573351 00000 n +0000570119 00000 n +0000574151 00000 n +0000574214 00000 n +0000574339 00000 n +0000574402 00000 n +0000574465 00000 n +0000574528 00000 n +0000574591 00000 n +0000574654 00000 n +0000574844 00000 n +0000574906 00000 n +0000574969 00000 n +0000575032 00000 n +0000573523 00000 n +0000575095 00000 n +0000575158 00000 n +0000573676 00000 n +0000575221 00000 n +0000575284 00000 n +0000573835 00000 n +0000575346 00000 n +0000573994 00000 n +0000575409 00000 n +0000575472 00000 n +0000579728 00000 n +0000578221 00000 n +0000575665 00000 n +0000578345 00000 n +0000578408 00000 n +0000578597 00000 n +0000578660 00000 n +0000578723 00000 n +0000578786 00000 n +0000578849 00000 n +0000578912 00000 n +0000578975 00000 n +0000579038 00000 n +0000579101 00000 n +0000579164 00000 n +0000579227 00000 n +0000579289 00000 n +0000579353 00000 n +0000579416 00000 n +0000579604 00000 n +0000579667 00000 n +0000584449 00000 n +0000582306 00000 n +0000579886 00000 n +0000582430 00000 n +0000582493 00000 n +0000582556 00000 n +0000582620 00000 n +0000582683 00000 n +0000582746 00000 n +0000582809 00000 n +0000582872 00000 n +0000582935 00000 n +0000582998 00000 n +0000583061 00000 n +0000583124 00000 n +0000583187 00000 n +0000583250 00000 n +0000583313 00000 n +0000583375 00000 n +0000583438 00000 n +0000583502 00000 n +0000583566 00000 n +0000583629 00000 n +0000583818 00000 n +0000583880 00000 n +0000583944 00000 n +0000584008 00000 n +0000584071 00000 n +0000584134 00000 n +0000584197 00000 n +0000584260 00000 n +0000584323 00000 n +0000584386 00000 n +0000587508 00000 n +0000586134 00000 n +0000584607 00000 n +0000586433 00000 n +0000586496 00000 n +0000586558 00000 n +0000586621 00000 n +0000586685 00000 n +0000586279 00000 n +0000586874 00000 n +0000586937 00000 n +0000587001 00000 n +0000587064 00000 n +0000587127 00000 n +0000587190 00000 n +0000587253 00000 n +0000587317 00000 n +0000587381 00000 n +0000587444 00000 n +0000592888 00000 n +0000590269 00000 n +0000587680 00000 n +0000590735 00000 n +0000590924 00000 n +0000590987 00000 n +0000591051 00000 n +0000591365 00000 n +0000591553 00000 n +0000590423 00000 n +0000591616 00000 n +0000591679 00000 n +0000591743 00000 n +0000591807 00000 n +0000590578 00000 n +0000591871 00000 n +0000591935 00000 n +0000591999 00000 n +0000592063 00000 n +0000592127 00000 n +0000592190 00000 n +0000592254 00000 n +0000592317 00000 n +0000592380 00000 n +0000592444 00000 n +0000592508 00000 n +0000592698 00000 n +0000592761 00000 n +0000943435 00000 n +0000924559 00000 n +0000934516 00000 n +0000597477 00000 n +0000594739 00000 n +0000593032 00000 n +0000595398 00000 n +0000595649 00000 n +0000594902 00000 n +0000595837 00000 n +0000595900 00000 n +0000595964 00000 n +0000596028 00000 n +0000596154 00000 n +0000596217 00000 n +0000596280 00000 n +0000596343 00000 n +0000596407 00000 n +0000596532 00000 n +0000596595 00000 n +0000596658 00000 n +0000596721 00000 n +0000596785 00000 n +0000596848 00000 n +0000596910 00000 n +0000596973 00000 n +0000595066 00000 n +0000597162 00000 n +0000595237 00000 n +0000597287 00000 n +0000597350 00000 n +0000597414 00000 n +0000605159 00000 n +0000599642 00000 n +0000597635 00000 n +0000600107 00000 n +0000600422 00000 n +0000600485 00000 n +0000600549 00000 n +0000600612 00000 n +0000599796 00000 n +0000599952 00000 n +0000600675 00000 n +0000600738 00000 n +0000600801 00000 n +0000600864 00000 n +0000600926 00000 n +0000600988 00000 n +0000601051 00000 n +0000601115 00000 n +0000601179 00000 n +0000601243 00000 n +0000601307 00000 n +0000601370 00000 n +0000601433 00000 n +0000601497 00000 n +0000601561 00000 n +0000601625 00000 n +0000601689 00000 n +0000601752 00000 n +0000601811 00000 n +0000601870 00000 n +0000601933 00000 n +0000601996 00000 n +0000602059 00000 n +0000602122 00000 n +0000602185 00000 n +0000602249 00000 n +0000602313 00000 n +0000602376 00000 n +0000602439 00000 n +0000602502 00000 n +0000602565 00000 n +0000602628 00000 n +0000602691 00000 n +0000602754 00000 n +0000602817 00000 n +0000602880 00000 n +0000602943 00000 n +0000603007 00000 n +0000603071 00000 n +0000603135 00000 n +0000603198 00000 n +0000603261 00000 n +0000603324 00000 n +0000603387 00000 n +0000603451 00000 n +0000603514 00000 n +0000603578 00000 n +0000603642 00000 n +0000603706 00000 n +0000603770 00000 n +0000603834 00000 n +0000603898 00000 n +0000603962 00000 n +0000604026 00000 n +0000604090 00000 n +0000604153 00000 n +0000604216 00000 n +0000604278 00000 n +0000604340 00000 n +0000604404 00000 n +0000604466 00000 n +0000604529 00000 n +0000604592 00000 n +0000604655 00000 n +0000604718 00000 n +0000604781 00000 n +0000604844 00000 n +0000604907 00000 n +0000604970 00000 n +0000605033 00000 n +0000605096 00000 n +0000914509 00000 n +0000610323 00000 n +0000607790 00000 n +0000605303 00000 n +0000608423 00000 n +0000608486 00000 n +0000608549 00000 n +0000608613 00000 n +0000608677 00000 n +0000608741 00000 n +0000608805 00000 n +0000608869 00000 n +0000608932 00000 n +0000608995 00000 n +0000607953 00000 n +0000609184 00000 n +0000609247 00000 n +0000609310 00000 n +0000608100 00000 n +0000609373 00000 n +0000609437 00000 n +0000609501 00000 n +0000609565 00000 n +0000609881 00000 n +0000609944 00000 n +0000608252 00000 n +0000610070 00000 n +0000610133 00000 n +0000610197 00000 n +0000610260 00000 n +0000924938 00000 n +0000615439 00000 n +0000613044 00000 n +0000610481 00000 n +0000613353 00000 n +0000613668 00000 n +0000613731 00000 n +0000613189 00000 n +0000613920 00000 n +0000613983 00000 n +0000614047 00000 n +0000614111 00000 n +0000614175 00000 n +0000614238 00000 n +0000614300 00000 n +0000614363 00000 n +0000614427 00000 n +0000614491 00000 n +0000614681 00000 n +0000614744 00000 n +0000614807 00000 n +0000614871 00000 n +0000614935 00000 n +0000614998 00000 n +0000615061 00000 n +0000615124 00000 n +0000615187 00000 n +0000615250 00000 n +0000615313 00000 n +0000615376 00000 n +0000620411 00000 n +0000618642 00000 n +0000615597 00000 n +0000618766 00000 n +0000618829 00000 n +0000618892 00000 n +0000618953 00000 n +0000619016 00000 n +0000619078 00000 n +0000619142 00000 n +0000619206 00000 n +0000619270 00000 n +0000619333 00000 n +0000619397 00000 n +0000619461 00000 n +0000619525 00000 n +0000619715 00000 n +0000619778 00000 n +0000619841 00000 n +0000619904 00000 n +0000619967 00000 n +0000620031 00000 n +0000620094 00000 n +0000620157 00000 n +0000620220 00000 n +0000620284 00000 n +0000626381 00000 n +0000623795 00000 n +0000620555 00000 n +0000623919 00000 n +0000624045 00000 n +0000624108 00000 n +0000624172 00000 n +0000624235 00000 n +0000624299 00000 n +0000624360 00000 n +0000624424 00000 n +0000624487 00000 n +0000624549 00000 n +0000624612 00000 n +0000624675 00000 n +0000624739 00000 n +0000624802 00000 n +0000624865 00000 n +0000624928 00000 n +0000624991 00000 n +0000625054 00000 n +0000625243 00000 n +0000625306 00000 n +0000625369 00000 n +0000625432 00000 n +0000625495 00000 n +0000625558 00000 n +0000625621 00000 n +0000625684 00000 n +0000625748 00000 n +0000625811 00000 n +0000625874 00000 n +0000625937 00000 n +0000626000 00000 n +0000626064 00000 n +0000626128 00000 n +0000626192 00000 n +0000626255 00000 n +0000626318 00000 n +0000943560 00000 n +0000631141 00000 n +0000629313 00000 n +0000626525 00000 n +0000629437 00000 n +0000629500 00000 n +0000629563 00000 n +0000629626 00000 n +0000629688 00000 n +0000629750 00000 n +0000629813 00000 n +0000629876 00000 n +0000629940 00000 n +0000630004 00000 n +0000630067 00000 n +0000630130 00000 n +0000630194 00000 n +0000630257 00000 n +0000630320 00000 n +0000630383 00000 n +0000630447 00000 n +0000630511 00000 n +0000630575 00000 n +0000630638 00000 n +0000630701 00000 n +0000630764 00000 n +0000630828 00000 n +0000630891 00000 n +0000630954 00000 n +0000631015 00000 n +0000636454 00000 n +0000634368 00000 n +0000631257 00000 n +0000634492 00000 n +0000634618 00000 n +0000634681 00000 n +0000634744 00000 n +0000634807 00000 n +0000634871 00000 n +0000634935 00000 n +0000634998 00000 n +0000635188 00000 n +0000635251 00000 n +0000635315 00000 n +0000635378 00000 n +0000635441 00000 n +0000635504 00000 n +0000635567 00000 n +0000635630 00000 n +0000635694 00000 n +0000635758 00000 n +0000635821 00000 n +0000635885 00000 n +0000635949 00000 n +0000636013 00000 n +0000636076 00000 n +0000636139 00000 n +0000636201 00000 n +0000636265 00000 n +0000636328 00000 n +0000636391 00000 n +0000641797 00000 n +0000639455 00000 n +0000636598 00000 n +0000639579 00000 n +0000639642 00000 n +0000639705 00000 n +0000639768 00000 n +0000639831 00000 n +0000639894 00000 n +0000639957 00000 n +0000640021 00000 n +0000640084 00000 n +0000640148 00000 n +0000640212 00000 n +0000640276 00000 n +0000640339 00000 n +0000640402 00000 n +0000640465 00000 n +0000640529 00000 n +0000640592 00000 n +0000640655 00000 n +0000640718 00000 n +0000640781 00000 n +0000640845 00000 n +0000640908 00000 n +0000640971 00000 n +0000641034 00000 n +0000641097 00000 n +0000641160 00000 n +0000641223 00000 n +0000641286 00000 n +0000641350 00000 n +0000641414 00000 n +0000641478 00000 n +0000641542 00000 n +0000641605 00000 n +0000641669 00000 n +0000641733 00000 n +0000646326 00000 n +0000644812 00000 n +0000641899 00000 n +0000644936 00000 n +0000644999 00000 n +0000645061 00000 n +0000645124 00000 n +0000645187 00000 n +0000645250 00000 n +0000645314 00000 n +0000645377 00000 n +0000645565 00000 n +0000645628 00000 n +0000645692 00000 n +0000645755 00000 n +0000645818 00000 n +0000645881 00000 n +0000645945 00000 n +0000646009 00000 n +0000646072 00000 n +0000646136 00000 n +0000646199 00000 n +0000646262 00000 n +0000650059 00000 n +0000648670 00000 n +0000646456 00000 n +0000648794 00000 n +0000648919 00000 n +0000648982 00000 n +0000649045 00000 n +0000649107 00000 n +0000649170 00000 n +0000649234 00000 n +0000649298 00000 n +0000649361 00000 n +0000649425 00000 n +0000649615 00000 n +0000649678 00000 n +0000649742 00000 n +0000649805 00000 n +0000649868 00000 n +0000649932 00000 n +0000649996 00000 n +0000655078 00000 n +0000653569 00000 n +0000650203 00000 n +0000653693 00000 n +0000653756 00000 n +0000653818 00000 n +0000653881 00000 n +0000654006 00000 n +0000654069 00000 n +0000654132 00000 n +0000654195 00000 n +0000654258 00000 n +0000654321 00000 n +0000654384 00000 n +0000654447 00000 n +0000654636 00000 n +0000654699 00000 n +0000654762 00000 n +0000654825 00000 n +0000654889 00000 n +0000654952 00000 n +0000655015 00000 n +0000943685 00000 n +0000658624 00000 n +0000656731 00000 n +0000655194 00000 n +0000656855 00000 n +0000656918 00000 n +0000656980 00000 n +0000657043 00000 n +0000657107 00000 n +0000657171 00000 n +0000657234 00000 n +0000657298 00000 n +0000657362 00000 n +0000657425 00000 n +0000657488 00000 n +0000657550 00000 n +0000657612 00000 n +0000657675 00000 n +0000657739 00000 n +0000657803 00000 n +0000657866 00000 n +0000657929 00000 n +0000658118 00000 n +0000658181 00000 n +0000658244 00000 n +0000658307 00000 n +0000658371 00000 n +0000658434 00000 n +0000658498 00000 n +0000658561 00000 n +0000660721 00000 n +0000660534 00000 n +0000658768 00000 n +0000660658 00000 n +0000662631 00000 n +0000662444 00000 n +0000660809 00000 n +0000662568 00000 n +0000664548 00000 n +0000664361 00000 n +0000662719 00000 n +0000664485 00000 n +0000668462 00000 n +0000666777 00000 n +0000664636 00000 n +0000667392 00000 n +0000667704 00000 n +0000666940 00000 n +0000667087 00000 n +0000667240 00000 n +0000667893 00000 n +0000667956 00000 n +0000668019 00000 n +0000668082 00000 n +0000668145 00000 n +0000668208 00000 n +0000668272 00000 n +0000668335 00000 n 0000671070 00000 n -0000671134 00000 n -0000671197 00000 n -0000946073 00000 n -0000673933 00000 n -0000672798 00000 n -0000671440 00000 n -0000672922 00000 n -0000673048 00000 n -0000673111 00000 n -0000673174 00000 n -0000673238 00000 n -0000673302 00000 n -0000673491 00000 n -0000673553 00000 n -0000673743 00000 n -0000673806 00000 n -0000673869 00000 n -0000678715 00000 n -0000676512 00000 n -0000674035 00000 n -0000676636 00000 n -0000676951 00000 n -0000677014 00000 n -0000677201 00000 n -0000677264 00000 n -0000677327 00000 n -0000677390 00000 n -0000677452 00000 n -0000677515 00000 n -0000677579 00000 n -0000677643 00000 n -0000677706 00000 n -0000677769 00000 n -0000677832 00000 n -0000677895 00000 n -0000677959 00000 n -0000678023 00000 n -0000678212 00000 n -0000678275 00000 n -0000678338 00000 n -0000678401 00000 n -0000678463 00000 n -0000678526 00000 n -0000678589 00000 n -0000678652 00000 n -0000687647 00000 n -0000686372 00000 n -0000682357 00000 n -0000678817 00000 n -0000682660 00000 n -0000682785 00000 n -0000682848 00000 n -0000682911 00000 n -0000682974 00000 n -0000683037 00000 n -0000683100 00000 n -0000683163 00000 n -0000683226 00000 n -0000683289 00000 n -0000683352 00000 n -0000683415 00000 n -0000683478 00000 n -0000683541 00000 n -0000683603 00000 n -0000683666 00000 n -0000683729 00000 n -0000683792 00000 n -0000683855 00000 n -0000683918 00000 n -0000683981 00000 n -0000684044 00000 n -0000684107 00000 n -0000684168 00000 n -0000684231 00000 n -0000684294 00000 n -0000684357 00000 n -0000684419 00000 n -0000684481 00000 n -0000684544 00000 n -0000684607 00000 n -0000684670 00000 n -0000684733 00000 n -0000684796 00000 n -0000684859 00000 n -0000684922 00000 n -0000684985 00000 n -0000685048 00000 n -0000685111 00000 n -0000685174 00000 n -0000685237 00000 n -0000685300 00000 n -0000685363 00000 n -0000685426 00000 n -0000685489 00000 n -0000685552 00000 n -0000685615 00000 n -0000685678 00000 n -0000685741 00000 n -0000685804 00000 n -0000685867 00000 n -0000685930 00000 n -0000686118 00000 n -0000682502 00000 n -0000686181 00000 n -0000686245 00000 n -0000739124 00000 n -0000687523 00000 n -0000686474 00000 n -0000738493 00000 n -0000738556 00000 n -0000738682 00000 n -0000738745 00000 n -0000738809 00000 n -0000738872 00000 n -0000739061 00000 n -0000743759 00000 n -0000741361 00000 n -0000739277 00000 n -0000741485 00000 n -0000741548 00000 n -0000741611 00000 n -0000741674 00000 n -0000741737 00000 n -0000741801 00000 n -0000741865 00000 n -0000741928 00000 n -0000741991 00000 n -0000742054 00000 n -0000742117 00000 n -0000742180 00000 n -0000742243 00000 n -0000742306 00000 n -0000742369 00000 n -0000742432 00000 n -0000742495 00000 n -0000742684 00000 n -0000742872 00000 n -0000742935 00000 n -0000742998 00000 n -0000743061 00000 n -0000743125 00000 n -0000743188 00000 n -0000743252 00000 n -0000743315 00000 n -0000743379 00000 n -0000743442 00000 n -0000743506 00000 n -0000743569 00000 n -0000743633 00000 n -0000748246 00000 n -0000746734 00000 n -0000743861 00000 n -0000746858 00000 n -0000746984 00000 n -0000747047 00000 n -0000747111 00000 n -0000747174 00000 n -0000747238 00000 n -0000747301 00000 n -0000747489 00000 n -0000747552 00000 n -0000747615 00000 n -0000747678 00000 n -0000747741 00000 n -0000747930 00000 n -0000747993 00000 n -0000748057 00000 n -0000748120 00000 n -0000748183 00000 n -0000946198 00000 n -0000752464 00000 n -0000750705 00000 n -0000748348 00000 n -0000750829 00000 n -0000750892 00000 n -0000750955 00000 n -0000751019 00000 n -0000751083 00000 n -0000751146 00000 n -0000751208 00000 n -0000751271 00000 n -0000751334 00000 n -0000751397 00000 n -0000751460 00000 n -0000751523 00000 n -0000751585 00000 n -0000751773 00000 n -0000751836 00000 n -0000751899 00000 n -0000751962 00000 n -0000752151 00000 n -0000752338 00000 n -0000756135 00000 n -0000754626 00000 n -0000752566 00000 n -0000754750 00000 n -0000754876 00000 n -0000755065 00000 n -0000755254 00000 n -0000755443 00000 n -0000755506 00000 n -0000755694 00000 n -0000755883 00000 n -0000756072 00000 n -0000760271 00000 n -0000758696 00000 n -0000756237 00000 n -0000758820 00000 n -0000758883 00000 n -0000758947 00000 n -0000759010 00000 n -0000759073 00000 n -0000759262 00000 n -0000759325 00000 n -0000759388 00000 n -0000759452 00000 n -0000759515 00000 n -0000759705 00000 n -0000759768 00000 n -0000759957 00000 n -0000760020 00000 n -0000760083 00000 n -0000760146 00000 n -0000760209 00000 n +0000669935 00000 n +0000668578 00000 n +0000670059 00000 n +0000670185 00000 n +0000670248 00000 n +0000670311 00000 n +0000670375 00000 n +0000670439 00000 n +0000670628 00000 n +0000670690 00000 n +0000670880 00000 n +0000670943 00000 n +0000671006 00000 n +0000943810 00000 n +0000675851 00000 n +0000673648 00000 n +0000671172 00000 n +0000673772 00000 n +0000674087 00000 n +0000674150 00000 n +0000674337 00000 n +0000674400 00000 n +0000674463 00000 n +0000674526 00000 n +0000674588 00000 n +0000674651 00000 n +0000674715 00000 n +0000674779 00000 n +0000674842 00000 n +0000674905 00000 n +0000674968 00000 n +0000675031 00000 n +0000675095 00000 n +0000675159 00000 n +0000675348 00000 n +0000675411 00000 n +0000675474 00000 n +0000675537 00000 n +0000675599 00000 n +0000675662 00000 n +0000675725 00000 n +0000675788 00000 n +0000684774 00000 n +0000683508 00000 n +0000679493 00000 n +0000675953 00000 n +0000679796 00000 n +0000679921 00000 n +0000679984 00000 n +0000680047 00000 n +0000680110 00000 n +0000680173 00000 n +0000680236 00000 n +0000680299 00000 n +0000680362 00000 n +0000680425 00000 n +0000680488 00000 n +0000680551 00000 n +0000680614 00000 n +0000680677 00000 n +0000680739 00000 n +0000680802 00000 n +0000680865 00000 n +0000680928 00000 n +0000680991 00000 n +0000681054 00000 n +0000681117 00000 n +0000681180 00000 n +0000681243 00000 n +0000681304 00000 n +0000681367 00000 n +0000681430 00000 n +0000681493 00000 n +0000681555 00000 n +0000681617 00000 n +0000681680 00000 n +0000681743 00000 n +0000681806 00000 n +0000681869 00000 n +0000681932 00000 n +0000681995 00000 n +0000682058 00000 n +0000682121 00000 n +0000682184 00000 n +0000682247 00000 n +0000682310 00000 n +0000682373 00000 n +0000682436 00000 n +0000682499 00000 n +0000682562 00000 n +0000682625 00000 n +0000682688 00000 n +0000682751 00000 n +0000682814 00000 n +0000682877 00000 n +0000682940 00000 n +0000683003 00000 n +0000683066 00000 n +0000683254 00000 n +0000679638 00000 n +0000683317 00000 n +0000683381 00000 n +0000736251 00000 n +0000684650 00000 n +0000683610 00000 n +0000735620 00000 n +0000735683 00000 n +0000735809 00000 n +0000735872 00000 n +0000735936 00000 n +0000735999 00000 n +0000736188 00000 n +0000740889 00000 n +0000738491 00000 n +0000736404 00000 n +0000738615 00000 n +0000738678 00000 n +0000738741 00000 n +0000738804 00000 n +0000738867 00000 n +0000738931 00000 n +0000738995 00000 n +0000739058 00000 n +0000739121 00000 n +0000739184 00000 n +0000739247 00000 n +0000739310 00000 n +0000739373 00000 n +0000739436 00000 n +0000739499 00000 n +0000739562 00000 n +0000739625 00000 n +0000739814 00000 n +0000740002 00000 n +0000740065 00000 n +0000740128 00000 n +0000740191 00000 n +0000740255 00000 n +0000740318 00000 n +0000740382 00000 n +0000740445 00000 n +0000740509 00000 n +0000740572 00000 n +0000740636 00000 n +0000740699 00000 n +0000740763 00000 n +0000745376 00000 n +0000743864 00000 n +0000740991 00000 n +0000743988 00000 n +0000744114 00000 n +0000744177 00000 n +0000744241 00000 n +0000744304 00000 n +0000744368 00000 n +0000744431 00000 n +0000744619 00000 n +0000744682 00000 n +0000744745 00000 n +0000744808 00000 n +0000744871 00000 n +0000745060 00000 n +0000745123 00000 n +0000745187 00000 n +0000745250 00000 n +0000745313 00000 n +0000749594 00000 n +0000747835 00000 n +0000745478 00000 n +0000747959 00000 n +0000748022 00000 n +0000748085 00000 n +0000748149 00000 n +0000748213 00000 n +0000748276 00000 n +0000748338 00000 n +0000748401 00000 n +0000748464 00000 n +0000748527 00000 n +0000748590 00000 n +0000748653 00000 n +0000748715 00000 n +0000748903 00000 n +0000748966 00000 n +0000749029 00000 n +0000749092 00000 n +0000749281 00000 n +0000749468 00000 n +0000943935 00000 n +0000753265 00000 n +0000751756 00000 n +0000749696 00000 n +0000751880 00000 n +0000752006 00000 n +0000752195 00000 n +0000752384 00000 n +0000752573 00000 n +0000752636 00000 n +0000752824 00000 n +0000753013 00000 n +0000753202 00000 n +0000757401 00000 n +0000755826 00000 n +0000753367 00000 n +0000755950 00000 n +0000756013 00000 n +0000756077 00000 n +0000756140 00000 n +0000756203 00000 n +0000756392 00000 n +0000756455 00000 n +0000756518 00000 n +0000756582 00000 n +0000756645 00000 n +0000756835 00000 n +0000756898 00000 n +0000757087 00000 n +0000757150 00000 n +0000757213 00000 n +0000757276 00000 n +0000757339 00000 n +0000761933 00000 n +0000760103 00000 n +0000757517 00000 n +0000760227 00000 n +0000760290 00000 n +0000760479 00000 n +0000760668 00000 n +0000760731 00000 n +0000760795 00000 n +0000760985 00000 n +0000761048 00000 n +0000761111 00000 n +0000761175 00000 n +0000761238 00000 n +0000761301 00000 n +0000761364 00000 n +0000761428 00000 n +0000761492 00000 n +0000761555 00000 n +0000761618 00000 n +0000761681 00000 n +0000761743 00000 n +0000761807 00000 n +0000761870 00000 n +0000767259 00000 n 0000764803 00000 n -0000762973 00000 n -0000760387 00000 n -0000763097 00000 n -0000763160 00000 n -0000763349 00000 n -0000763538 00000 n -0000763601 00000 n -0000763665 00000 n -0000763855 00000 n -0000763918 00000 n -0000763981 00000 n -0000764045 00000 n -0000764108 00000 n -0000764171 00000 n -0000764234 00000 n -0000764298 00000 n -0000764362 00000 n -0000764425 00000 n -0000764488 00000 n -0000764551 00000 n -0000764613 00000 n -0000764677 00000 n -0000764740 00000 n -0000770128 00000 n -0000767672 00000 n -0000764933 00000 n -0000767796 00000 n -0000767859 00000 n -0000767921 00000 n -0000767984 00000 n -0000768048 00000 n -0000768111 00000 n -0000768174 00000 n -0000768238 00000 n -0000768301 00000 n -0000768364 00000 n -0000768428 00000 n -0000768490 00000 n -0000768553 00000 n -0000768617 00000 n -0000768680 00000 n -0000768743 00000 n -0000768807 00000 n -0000768870 00000 n -0000768933 00000 n -0000768996 00000 n -0000769059 00000 n -0000769122 00000 n -0000769186 00000 n -0000769249 00000 n -0000769312 00000 n -0000769376 00000 n -0000769438 00000 n -0000769502 00000 n -0000769565 00000 n -0000769628 00000 n -0000769813 00000 n -0000770002 00000 n -0000774221 00000 n -0000772965 00000 n -0000770244 00000 n -0000773089 00000 n -0000773152 00000 n -0000773277 00000 n -0000773340 00000 n -0000773403 00000 n -0000773466 00000 n -0000773654 00000 n -0000773717 00000 n -0000773780 00000 n -0000773843 00000 n -0000773906 00000 n -0000773969 00000 n -0000774158 00000 n -0000946323 00000 n -0000778094 00000 n -0000776836 00000 n -0000774337 00000 n -0000776960 00000 n -0000777023 00000 n -0000777086 00000 n -0000777149 00000 n -0000777338 00000 n -0000777401 00000 n -0000777590 00000 n -0000777653 00000 n -0000777716 00000 n -0000777779 00000 n -0000777842 00000 n -0000777905 00000 n -0000777968 00000 n -0000782679 00000 n -0000780873 00000 n -0000778196 00000 n -0000781360 00000 n -0000781423 00000 n -0000781546 00000 n -0000781608 00000 n -0000781671 00000 n -0000781735 00000 n -0000781798 00000 n -0000781861 00000 n -0000781027 00000 n -0000781924 00000 n -0000781987 00000 n -0000781191 00000 n -0000782176 00000 n -0000782239 00000 n -0000782302 00000 n -0000782490 00000 n -0000782553 00000 n -0000782616 00000 n -0000787020 00000 n -0000785783 00000 n -0000782795 00000 n -0000786075 00000 n -0000786138 00000 n -0000786202 00000 n -0000786265 00000 n -0000786328 00000 n -0000786517 00000 n -0000786580 00000 n -0000786642 00000 n -0000785928 00000 n -0000786705 00000 n -0000786768 00000 n -0000786831 00000 n -0000786894 00000 n -0000786957 00000 n -0000788736 00000 n -0000788170 00000 n -0000787136 00000 n -0000788294 00000 n -0000788357 00000 n -0000788547 00000 n -0000788610 00000 n -0000788673 00000 n -0000793381 00000 n -0000791366 00000 n -0000788852 00000 n -0000791490 00000 n -0000791679 00000 n -0000791742 00000 n -0000791805 00000 n -0000791868 00000 n -0000791930 00000 n -0000791993 00000 n -0000792056 00000 n -0000792120 00000 n -0000792183 00000 n -0000792246 00000 n -0000792309 00000 n -0000792371 00000 n -0000792434 00000 n -0000792496 00000 n -0000792560 00000 n -0000792623 00000 n -0000792685 00000 n -0000792748 00000 n -0000792811 00000 n -0000792875 00000 n -0000792938 00000 n -0000793001 00000 n -0000793064 00000 n -0000793128 00000 n -0000793191 00000 n -0000793254 00000 n -0000793317 00000 n -0000798595 00000 n -0000796827 00000 n -0000793511 00000 n -0000796951 00000 n -0000797014 00000 n -0000797076 00000 n -0000797139 00000 n -0000797203 00000 n -0000797267 00000 n -0000797331 00000 n -0000797394 00000 n -0000797457 00000 n -0000797520 00000 n -0000797584 00000 n -0000797647 00000 n -0000797711 00000 n -0000797774 00000 n -0000797837 00000 n -0000797900 00000 n -0000797963 00000 n -0000798027 00000 n -0000798089 00000 n -0000798153 00000 n -0000798216 00000 n -0000798279 00000 n -0000798343 00000 n -0000798406 00000 n -0000798469 00000 n -0000798532 00000 n -0000946448 00000 n -0000802945 00000 n -0000801113 00000 n -0000798711 00000 n -0000801237 00000 n -0000801300 00000 n -0000801363 00000 n -0000801426 00000 n -0000801489 00000 n -0000801553 00000 n -0000801615 00000 n -0000801678 00000 n -0000801742 00000 n -0000801806 00000 n -0000801869 00000 n -0000801932 00000 n -0000801996 00000 n -0000802059 00000 n -0000802123 00000 n -0000802187 00000 n -0000802250 00000 n -0000802313 00000 n -0000802376 00000 n -0000802440 00000 n -0000802503 00000 n -0000802567 00000 n -0000802630 00000 n -0000802693 00000 n -0000802756 00000 n -0000802819 00000 n -0000802882 00000 n -0000807758 00000 n -0000805883 00000 n -0000803089 00000 n -0000806181 00000 n -0000806244 00000 n -0000806307 00000 n -0000806371 00000 n -0000806433 00000 n -0000806496 00000 n -0000806028 00000 n -0000806560 00000 n -0000806623 00000 n -0000806685 00000 n -0000806748 00000 n -0000806811 00000 n -0000806874 00000 n -0000806936 00000 n -0000806999 00000 n -0000807062 00000 n -0000807125 00000 n -0000807188 00000 n -0000807251 00000 n -0000807314 00000 n -0000807377 00000 n -0000807440 00000 n -0000807504 00000 n -0000807568 00000 n -0000807631 00000 n -0000807695 00000 n -0000812427 00000 n -0000810738 00000 n -0000807902 00000 n -0000811041 00000 n -0000811104 00000 n -0000811167 00000 n -0000811229 00000 n -0000811293 00000 n -0000811356 00000 n -0000811419 00000 n -0000811482 00000 n -0000811545 00000 n -0000811608 00000 n -0000811671 00000 n -0000811735 00000 n -0000811798 00000 n -0000811861 00000 n -0000811924 00000 n -0000811987 00000 n -0000812050 00000 n -0000812112 00000 n -0000812175 00000 n -0000810883 00000 n -0000812238 00000 n -0000812301 00000 n -0000812364 00000 n -0000817837 00000 n -0000815641 00000 n -0000812529 00000 n -0000815939 00000 n -0000816002 00000 n -0000816065 00000 n -0000816126 00000 n -0000816189 00000 n -0000816252 00000 n -0000816315 00000 n -0000816378 00000 n -0000816441 00000 n -0000816505 00000 n -0000816568 00000 n -0000816631 00000 n -0000816695 00000 n -0000816758 00000 n -0000816822 00000 n -0000816886 00000 n -0000816949 00000 n -0000817012 00000 n -0000817076 00000 n -0000817140 00000 n -0000817204 00000 n -0000817267 00000 n -0000817330 00000 n -0000817394 00000 n -0000815786 00000 n -0000817457 00000 n -0000817520 00000 n -0000817583 00000 n -0000817646 00000 n -0000817709 00000 n -0000817773 00000 n -0000822151 00000 n -0000820451 00000 n -0000817981 00000 n -0000820759 00000 n -0000820822 00000 n -0000820885 00000 n -0000820949 00000 n -0000821012 00000 n -0000821075 00000 n -0000821138 00000 n -0000821202 00000 n -0000821265 00000 n -0000821329 00000 n -0000821393 00000 n -0000821457 00000 n -0000821521 00000 n -0000820596 00000 n -0000821584 00000 n -0000821647 00000 n -0000821711 00000 n -0000821773 00000 n -0000821836 00000 n -0000821899 00000 n -0000821963 00000 n -0000822026 00000 n -0000822089 00000 n -0000826710 00000 n -0000824702 00000 n -0000822295 00000 n -0000825005 00000 n -0000825068 00000 n -0000825131 00000 n -0000825194 00000 n -0000825257 00000 n -0000825320 00000 n -0000824847 00000 n -0000825384 00000 n -0000825447 00000 n -0000825509 00000 n -0000825572 00000 n -0000825635 00000 n -0000825698 00000 n -0000825761 00000 n -0000825825 00000 n -0000825888 00000 n -0000825951 00000 n -0000826014 00000 n -0000826078 00000 n -0000826142 00000 n -0000826205 00000 n -0000826268 00000 n -0000826331 00000 n -0000826395 00000 n -0000826458 00000 n -0000826521 00000 n -0000826585 00000 n -0000826647 00000 n -0000946573 00000 n -0000832920 00000 n -0000829639 00000 n -0000826868 00000 n -0000829937 00000 n -0000830000 00000 n -0000830064 00000 n -0000830128 00000 n -0000830192 00000 n -0000830255 00000 n -0000830319 00000 n -0000830383 00000 n -0000830447 00000 n -0000830510 00000 n -0000830574 00000 n -0000830638 00000 n -0000830701 00000 n -0000830764 00000 n -0000830828 00000 n -0000830891 00000 n -0000830954 00000 n -0000831016 00000 n -0000831079 00000 n -0000831142 00000 n -0000831205 00000 n -0000831268 00000 n -0000831332 00000 n -0000831396 00000 n -0000831460 00000 n -0000831524 00000 n -0000831588 00000 n -0000831652 00000 n -0000831715 00000 n -0000829784 00000 n -0000831778 00000 n -0000831842 00000 n -0000831906 00000 n -0000831968 00000 n -0000832031 00000 n -0000832095 00000 n -0000832159 00000 n -0000832222 00000 n -0000832285 00000 n -0000832349 00000 n -0000832412 00000 n -0000832476 00000 n -0000832539 00000 n -0000832602 00000 n -0000832665 00000 n -0000832728 00000 n -0000832792 00000 n -0000832856 00000 n -0000930872 00000 n -0000837532 00000 n -0000835832 00000 n -0000833036 00000 n -0000835956 00000 n -0000836019 00000 n -0000836081 00000 n -0000836144 00000 n -0000836207 00000 n -0000836271 00000 n -0000836333 00000 n -0000836397 00000 n -0000836460 00000 n -0000836524 00000 n -0000836586 00000 n -0000836649 00000 n -0000836713 00000 n -0000836776 00000 n -0000836839 00000 n -0000836903 00000 n -0000836966 00000 n -0000837029 00000 n -0000837092 00000 n -0000837155 00000 n -0000837219 00000 n -0000837281 00000 n -0000837343 00000 n -0000837406 00000 n -0000837469 00000 n -0000842652 00000 n -0000840269 00000 n -0000837676 00000 n -0000840566 00000 n -0000840414 00000 n -0000840629 00000 n -0000840692 00000 n -0000840755 00000 n -0000840817 00000 n -0000840881 00000 n -0000840944 00000 n -0000841007 00000 n -0000841071 00000 n -0000841134 00000 n -0000841197 00000 n -0000841261 00000 n -0000841324 00000 n -0000841387 00000 n -0000841451 00000 n -0000841514 00000 n -0000841578 00000 n -0000841637 00000 n -0000841701 00000 n -0000841764 00000 n -0000841828 00000 n -0000841891 00000 n -0000841955 00000 n -0000842018 00000 n -0000842082 00000 n -0000842146 00000 n -0000842210 00000 n -0000842274 00000 n -0000842337 00000 n -0000842400 00000 n -0000842463 00000 n -0000842526 00000 n -0000842589 00000 n -0000847759 00000 n -0000845932 00000 n -0000842768 00000 n -0000846056 00000 n -0000846119 00000 n -0000846181 00000 n -0000846244 00000 n -0000846307 00000 n -0000846371 00000 n -0000846434 00000 n -0000846497 00000 n -0000846560 00000 n -0000846622 00000 n -0000846685 00000 n -0000846748 00000 n -0000846811 00000 n -0000846874 00000 n -0000846937 00000 n -0000847001 00000 n -0000847064 00000 n -0000847127 00000 n -0000847189 00000 n -0000847253 00000 n -0000847316 00000 n -0000847380 00000 n -0000847443 00000 n -0000847506 00000 n -0000847570 00000 n -0000847633 00000 n -0000847696 00000 n -0000852236 00000 n -0000850085 00000 n -0000847889 00000 n -0000850209 00000 n -0000850272 00000 n -0000850335 00000 n -0000850398 00000 n -0000850460 00000 n -0000850523 00000 n -0000850586 00000 n -0000850649 00000 n -0000850712 00000 n -0000850775 00000 n -0000850839 00000 n -0000850902 00000 n -0000850966 00000 n -0000851030 00000 n -0000851093 00000 n -0000851156 00000 n -0000851220 00000 n -0000851283 00000 n -0000851347 00000 n -0000851411 00000 n -0000851475 00000 n -0000851538 00000 n -0000851601 00000 n -0000851664 00000 n -0000851725 00000 n -0000851789 00000 n -0000851853 00000 n -0000851917 00000 n -0000851980 00000 n -0000852044 00000 n -0000852108 00000 n -0000852172 00000 n -0000854088 00000 n -0000853457 00000 n -0000852352 00000 n -0000853581 00000 n -0000853644 00000 n -0000853708 00000 n -0000853771 00000 n -0000853834 00000 n -0000853897 00000 n -0000853961 00000 n -0000854024 00000 n -0000946698 00000 n -0000859147 00000 n -0000856727 00000 n -0000854176 00000 n -0000857194 00000 n -0000857383 00000 n -0000857572 00000 n -0000857635 00000 n -0000857699 00000 n -0000857763 00000 n -0000856881 00000 n -0000857037 00000 n -0000857826 00000 n -0000857889 00000 n -0000857952 00000 n -0000858016 00000 n -0000858079 00000 n -0000858269 00000 n -0000858332 00000 n -0000858395 00000 n -0000858458 00000 n -0000858521 00000 n -0000858709 00000 n -0000858772 00000 n -0000858835 00000 n -0000858897 00000 n -0000858960 00000 n -0000859022 00000 n -0000862590 00000 n -0000861143 00000 n -0000859291 00000 n -0000861267 00000 n -0000861330 00000 n -0000861456 00000 n -0000861519 00000 n -0000861583 00000 n -0000861771 00000 n -0000861834 00000 n -0000861897 00000 n -0000861960 00000 n -0000862024 00000 n -0000862087 00000 n -0000862150 00000 n -0000862213 00000 n -0000862400 00000 n -0000862463 00000 n -0000862527 00000 n -0000865751 00000 n -0000864361 00000 n -0000862720 00000 n -0000864485 00000 n -0000864548 00000 n -0000864611 00000 n -0000864675 00000 n -0000864739 00000 n -0000864803 00000 n -0000864866 00000 n -0000864929 00000 n -0000865118 00000 n -0000865181 00000 n -0000865245 00000 n -0000865308 00000 n -0000865371 00000 n -0000865435 00000 n -0000865624 00000 n -0000865687 00000 n -0000869709 00000 n -0000868134 00000 n -0000865895 00000 n -0000868258 00000 n -0000868321 00000 n -0000868384 00000 n -0000868448 00000 n -0000868509 00000 n -0000868635 00000 n -0000868698 00000 n -0000868761 00000 n -0000868825 00000 n -0000868889 00000 n -0000869015 00000 n -0000869078 00000 n -0000869140 00000 n -0000869204 00000 n -0000869268 00000 n -0000869331 00000 n -0000869394 00000 n -0000869583 00000 n -0000869646 00000 n -0000873093 00000 n -0000871718 00000 n -0000869825 00000 n -0000872017 00000 n -0000872080 00000 n -0000872143 00000 n -0000872207 00000 n -0000872397 00000 n -0000872460 00000 n -0000872523 00000 n -0000872587 00000 n -0000871863 00000 n -0000872777 00000 n -0000872840 00000 n -0000872903 00000 n -0000872966 00000 n -0000873029 00000 n -0000879410 00000 n -0000876321 00000 n -0000873223 00000 n -0000876445 00000 n -0000876634 00000 n -0000876697 00000 n -0000876884 00000 n -0000876947 00000 n -0000877011 00000 n -0000877074 00000 n -0000877138 00000 n -0000877202 00000 n -0000877265 00000 n -0000877329 00000 n -0000877392 00000 n -0000877455 00000 n -0000877518 00000 n -0000877581 00000 n -0000877643 00000 n -0000877705 00000 n -0000877769 00000 n -0000877833 00000 n -0000877897 00000 n -0000877961 00000 n -0000878025 00000 n -0000878089 00000 n -0000878152 00000 n -0000878215 00000 n -0000878278 00000 n -0000878341 00000 n -0000878405 00000 n -0000878468 00000 n -0000878531 00000 n -0000878594 00000 n -0000878658 00000 n -0000878843 00000 n -0000878906 00000 n -0000878969 00000 n -0000879033 00000 n -0000879095 00000 n -0000879159 00000 n -0000879223 00000 n -0000879286 00000 n -0000879348 00000 n -0000946823 00000 n -0000883228 00000 n -0000881149 00000 n -0000879554 00000 n -0000881273 00000 n -0000881587 00000 n -0000881649 00000 n -0000881712 00000 n -0000881775 00000 n -0000881838 00000 n -0000881901 00000 n -0000881964 00000 n -0000882027 00000 n -0000882090 00000 n -0000882153 00000 n -0000882216 00000 n -0000882279 00000 n -0000882343 00000 n -0000882407 00000 n -0000882469 00000 n -0000882532 00000 n -0000882722 00000 n -0000882785 00000 n -0000882848 00000 n -0000882911 00000 n -0000882974 00000 n -0000883038 00000 n -0000883102 00000 n -0000883166 00000 n -0000885922 00000 n -0000884086 00000 n -0000883358 00000 n -0000884210 00000 n -0000884273 00000 n -0000884335 00000 n -0000884398 00000 n -0000884462 00000 n -0000884524 00000 n -0000884587 00000 n -0000884651 00000 n -0000884715 00000 n -0000884778 00000 n -0000884841 00000 n -0000884905 00000 n -0000884969 00000 n -0000885033 00000 n -0000885095 00000 n -0000885158 00000 n -0000885222 00000 n -0000885286 00000 n -0000885350 00000 n -0000885413 00000 n -0000885476 00000 n -0000885540 00000 n -0000885604 00000 n -0000885668 00000 n -0000885731 00000 n -0000885794 00000 n -0000885858 00000 n -0000888675 00000 n -0000886777 00000 n -0000886010 00000 n -0000886901 00000 n -0000886964 00000 n -0000887027 00000 n -0000887091 00000 n -0000887153 00000 n -0000887216 00000 n -0000887280 00000 n -0000887344 00000 n -0000887408 00000 n -0000887471 00000 n -0000887534 00000 n -0000887598 00000 n -0000887662 00000 n -0000887724 00000 n -0000887787 00000 n -0000887851 00000 n -0000887915 00000 n -0000888104 00000 n -0000888167 00000 n -0000888230 00000 n -0000888294 00000 n -0000888358 00000 n -0000888422 00000 n -0000888485 00000 n -0000888548 00000 n -0000888612 00000 n -0000891030 00000 n -0000889572 00000 n -0000888777 00000 n -0000889696 00000 n -0000889759 00000 n -0000889823 00000 n -0000889886 00000 n -0000889949 00000 n -0000890013 00000 n -0000890076 00000 n -0000890140 00000 n -0000890203 00000 n -0000890266 00000 n -0000890330 00000 n -0000890394 00000 n -0000890458 00000 n -0000890521 00000 n -0000890584 00000 n -0000890648 00000 n -0000890712 00000 n -0000890775 00000 n -0000890838 00000 n -0000890902 00000 n -0000890966 00000 n -0000895205 00000 n -0000893887 00000 n -0000891118 00000 n -0000894011 00000 n -0000894200 00000 n -0000894263 00000 n -0000894325 00000 n -0000894513 00000 n -0000894576 00000 n -0000894639 00000 n -0000894827 00000 n -0000894890 00000 n -0000894953 00000 n -0000895016 00000 n -0000895079 00000 n -0000895142 00000 n -0000899348 00000 n -0000898469 00000 n -0000895307 00000 n -0000898593 00000 n -0000898656 00000 n -0000898719 00000 n -0000898908 00000 n -0000898970 00000 n -0000899159 00000 n -0000899222 00000 n -0000899285 00000 n -0000946948 00000 n -0000905105 00000 n -0000902717 00000 n -0000899450 00000 n -0000902841 00000 n -0000902904 00000 n -0000902966 00000 n -0000903155 00000 n -0000903218 00000 n -0000903281 00000 n -0000903344 00000 n -0000903407 00000 n -0000903470 00000 n -0000903533 00000 n -0000903596 00000 n -0000903659 00000 n -0000903721 00000 n -0000903784 00000 n -0000903847 00000 n -0000903910 00000 n -0000903973 00000 n -0000904036 00000 n -0000904099 00000 n -0000904162 00000 n -0000904225 00000 n -0000904287 00000 n -0000904350 00000 n -0000904413 00000 n -0000904476 00000 n -0000904538 00000 n -0000904601 00000 n -0000904664 00000 n -0000904727 00000 n -0000904790 00000 n -0000904853 00000 n -0000904916 00000 n -0000904979 00000 n -0000905042 00000 n -0000909020 00000 n -0000907952 00000 n -0000905207 00000 n -0000908076 00000 n -0000908139 00000 n -0000908202 00000 n -0000908391 00000 n -0000908454 00000 n -0000908517 00000 n -0000908705 00000 n -0000908768 00000 n -0000908957 00000 n -0000912963 00000 n -0000911706 00000 n -0000909122 00000 n -0000911830 00000 n -0000911893 00000 n -0000912081 00000 n -0000912270 00000 n -0000912459 00000 n -0000912522 00000 n -0000912586 00000 n -0000912774 00000 n -0000912837 00000 n -0000912900 00000 n -0000914248 00000 n -0000913935 00000 n -0000913065 00000 n -0000914059 00000 n -0000914122 00000 n -0000914185 00000 n -0000920003 00000 n -0000916292 00000 n -0000914336 00000 n -0000916592 00000 n -0000916781 00000 n -0000917031 00000 n -0000917094 00000 n -0000917157 00000 n -0000917221 00000 n -0000917285 00000 n -0000917410 00000 n -0000917536 00000 n -0000917599 00000 n -0000917662 00000 n -0000917726 00000 n -0000917790 00000 n -0000917852 00000 n -0000917977 00000 n -0000918040 00000 n -0000918103 00000 n -0000918166 00000 n -0000918229 00000 n -0000918293 00000 n -0000918356 00000 n -0000918419 00000 n -0000918482 00000 n -0000918545 00000 n -0000918608 00000 n -0000918671 00000 n -0000918734 00000 n -0000918798 00000 n -0000918862 00000 n -0000918925 00000 n -0000918988 00000 n -0000919051 00000 n -0000919114 00000 n -0000919178 00000 n -0000919242 00000 n -0000919306 00000 n -0000919370 00000 n -0000919434 00000 n -0000919498 00000 n -0000919562 00000 n -0000919625 00000 n -0000919688 00000 n -0000919751 00000 n -0000919813 00000 n -0000919877 00000 n -0000916437 00000 n -0000919940 00000 n -0000924450 00000 n -0000921687 00000 n -0000920133 00000 n -0000921811 00000 n -0000921935 00000 n -0000922058 00000 n -0000922121 00000 n -0000922183 00000 n -0000922247 00000 n -0000922311 00000 n -0000922375 00000 n -0000922501 00000 n -0000922563 00000 n -0000922752 00000 n -0000922815 00000 n -0000922878 00000 n -0000923129 00000 n -0000923192 00000 n -0000923254 00000 n -0000923316 00000 n -0000923380 00000 n -0000923506 00000 n -0000923569 00000 n -0000923757 00000 n -0000923820 00000 n -0000923883 00000 n -0000923946 00000 n -0000924010 00000 n -0000924136 00000 n -0000924260 00000 n -0000924323 00000 n -0000924386 00000 n -0000947073 00000 n -0000928599 00000 n -0000926196 00000 n -0000924580 00000 n -0000926516 00000 n -0000926579 00000 n -0000926641 00000 n -0000926705 00000 n -0000926768 00000 n -0000926832 00000 n -0000927083 00000 n -0000927146 00000 n -0000927209 00000 n -0000927273 00000 n -0000927461 00000 n -0000927524 00000 n -0000927587 00000 n -0000926341 00000 n -0000927650 00000 n -0000927776 00000 n -0000927903 00000 n -0000927966 00000 n -0000928029 00000 n -0000928093 00000 n -0000928157 00000 n -0000928220 00000 n -0000928346 00000 n -0000928473 00000 n -0000928536 00000 n -0000933273 00000 n -0000930280 00000 n -0000928729 00000 n -0000930747 00000 n -0000930998 00000 n -0000931061 00000 n -0000931123 00000 n -0000931186 00000 n -0000931250 00000 n -0000931314 00000 n -0000931377 00000 n -0000931504 00000 n -0000931567 00000 n -0000930434 00000 n -0000931630 00000 n -0000931694 00000 n -0000931757 00000 n -0000931820 00000 n -0000931883 00000 n -0000931946 00000 n -0000932010 00000 n -0000932073 00000 n -0000932136 00000 n -0000932199 00000 n -0000932263 00000 n -0000932327 00000 n -0000932390 00000 n -0000932453 00000 n -0000932516 00000 n -0000930589 00000 n -0000932580 00000 n -0000932832 00000 n -0000932895 00000 n -0000932958 00000 n -0000933147 00000 n -0000933210 00000 n -0000936085 00000 n -0000937097 00000 n -0000934762 00000 n -0000933389 00000 n -0000934886 00000 n -0000934949 00000 n -0000935075 00000 n -0000935138 00000 n -0000935201 00000 n -0000935265 00000 n -0000935389 00000 n -0000935515 00000 n -0000935577 00000 n -0000935640 00000 n -0000935703 00000 n -0000935767 00000 n -0000935831 00000 n -0000935895 00000 n -0000935959 00000 n -0000936212 00000 n -0000936275 00000 n -0000936338 00000 n -0000936465 00000 n -0000936528 00000 n -0000936591 00000 n -0000936655 00000 n -0000936907 00000 n -0000936970 00000 n -0000937033 00000 n -0000941729 00000 n -0000939262 00000 n -0000937199 00000 n -0000939386 00000 n -0000939449 00000 n -0000939512 00000 n -0000939639 00000 n -0000939702 00000 n -0000939765 00000 n -0000939828 00000 n -0000939891 00000 n -0000939955 00000 n -0000940019 00000 n -0000940083 00000 n -0000940146 00000 n -0000940210 00000 n -0000940274 00000 n -0000940338 00000 n -0000940402 00000 n -0000940527 00000 n -0000940654 00000 n -0000940717 00000 n -0000940780 00000 n -0000940971 00000 n -0000941034 00000 n -0000941097 00000 n -0000941223 00000 n -0000941350 00000 n -0000941413 00000 n -0000941476 00000 n -0000941539 00000 n -0000941602 00000 n -0000941665 00000 n -0000941907 00000 n -0000947189 00000 n -0000947315 00000 n -0000947441 00000 n -0000947567 00000 n -0000947666 00000 n -0000947758 00000 n -0000974135 00000 n -0001031674 00000 n -0001031715 00000 n -0001031755 00000 n -0001031987 00000 n +0000762063 00000 n +0000764927 00000 n +0000764990 00000 n +0000765052 00000 n +0000765115 00000 n +0000765179 00000 n +0000765242 00000 n +0000765305 00000 n +0000765369 00000 n +0000765432 00000 n +0000765495 00000 n +0000765559 00000 n +0000765621 00000 n +0000765684 00000 n +0000765748 00000 n +0000765811 00000 n +0000765874 00000 n +0000765938 00000 n +0000766001 00000 n +0000766064 00000 n +0000766127 00000 n +0000766190 00000 n +0000766253 00000 n +0000766317 00000 n +0000766380 00000 n +0000766443 00000 n +0000766507 00000 n +0000766569 00000 n +0000766633 00000 n +0000766696 00000 n +0000766759 00000 n +0000766944 00000 n +0000767133 00000 n +0000771351 00000 n +0000770095 00000 n +0000767375 00000 n +0000770219 00000 n +0000770282 00000 n +0000770407 00000 n +0000770470 00000 n +0000770533 00000 n +0000770596 00000 n +0000770784 00000 n +0000770847 00000 n +0000770910 00000 n +0000770973 00000 n +0000771036 00000 n +0000771099 00000 n +0000771288 00000 n +0000775499 00000 n +0000774178 00000 n +0000771467 00000 n +0000774302 00000 n +0000774365 00000 n +0000774428 00000 n +0000774491 00000 n +0000774680 00000 n +0000774743 00000 n +0000774932 00000 n +0000774995 00000 n +0000775058 00000 n +0000775121 00000 n +0000775184 00000 n +0000775247 00000 n +0000775310 00000 n +0000775373 00000 n +0000944060 00000 n +0000780084 00000 n +0000778278 00000 n +0000775601 00000 n +0000778765 00000 n +0000778828 00000 n +0000778951 00000 n +0000779013 00000 n +0000779076 00000 n +0000779140 00000 n +0000779203 00000 n +0000779266 00000 n +0000778432 00000 n +0000779329 00000 n +0000779392 00000 n +0000778596 00000 n +0000779581 00000 n +0000779644 00000 n +0000779707 00000 n +0000779895 00000 n +0000779958 00000 n +0000780021 00000 n +0000784425 00000 n +0000783188 00000 n +0000780200 00000 n +0000783480 00000 n +0000783543 00000 n +0000783607 00000 n +0000783670 00000 n +0000783733 00000 n +0000783922 00000 n +0000783985 00000 n +0000784047 00000 n +0000783333 00000 n +0000784110 00000 n +0000784173 00000 n +0000784236 00000 n +0000784299 00000 n +0000784362 00000 n +0000786141 00000 n +0000785575 00000 n +0000784541 00000 n +0000785699 00000 n +0000785762 00000 n +0000785952 00000 n +0000786015 00000 n +0000786078 00000 n +0000790786 00000 n +0000788771 00000 n +0000786257 00000 n +0000788895 00000 n +0000789084 00000 n +0000789147 00000 n +0000789210 00000 n +0000789273 00000 n +0000789335 00000 n +0000789398 00000 n +0000789461 00000 n +0000789525 00000 n +0000789588 00000 n +0000789651 00000 n +0000789714 00000 n +0000789776 00000 n +0000789839 00000 n +0000789901 00000 n +0000789965 00000 n +0000790028 00000 n +0000790090 00000 n +0000790153 00000 n +0000790216 00000 n +0000790280 00000 n +0000790343 00000 n +0000790406 00000 n +0000790469 00000 n +0000790533 00000 n +0000790596 00000 n +0000790659 00000 n +0000790722 00000 n +0000796000 00000 n +0000794232 00000 n +0000790916 00000 n +0000794356 00000 n +0000794419 00000 n +0000794481 00000 n +0000794544 00000 n +0000794608 00000 n +0000794672 00000 n +0000794736 00000 n +0000794799 00000 n +0000794862 00000 n +0000794925 00000 n +0000794989 00000 n +0000795052 00000 n +0000795116 00000 n +0000795179 00000 n +0000795242 00000 n +0000795305 00000 n +0000795368 00000 n +0000795432 00000 n +0000795494 00000 n +0000795558 00000 n +0000795621 00000 n +0000795684 00000 n +0000795748 00000 n +0000795811 00000 n +0000795874 00000 n +0000795937 00000 n +0000800350 00000 n +0000798518 00000 n +0000796116 00000 n +0000798642 00000 n +0000798705 00000 n +0000798768 00000 n +0000798831 00000 n +0000798894 00000 n +0000798958 00000 n +0000799020 00000 n +0000799083 00000 n +0000799147 00000 n +0000799211 00000 n +0000799274 00000 n +0000799337 00000 n +0000799401 00000 n +0000799464 00000 n +0000799528 00000 n +0000799592 00000 n +0000799655 00000 n +0000799718 00000 n +0000799781 00000 n +0000799845 00000 n +0000799908 00000 n +0000799972 00000 n +0000800035 00000 n +0000800098 00000 n +0000800161 00000 n +0000800224 00000 n +0000800287 00000 n +0000944185 00000 n +0000805163 00000 n +0000803288 00000 n +0000800494 00000 n +0000803586 00000 n +0000803649 00000 n +0000803712 00000 n +0000803776 00000 n +0000803838 00000 n +0000803901 00000 n +0000803433 00000 n +0000803965 00000 n +0000804028 00000 n +0000804090 00000 n +0000804153 00000 n +0000804216 00000 n +0000804279 00000 n +0000804341 00000 n +0000804404 00000 n +0000804467 00000 n +0000804530 00000 n +0000804593 00000 n +0000804656 00000 n +0000804719 00000 n +0000804782 00000 n +0000804845 00000 n +0000804909 00000 n +0000804973 00000 n +0000805036 00000 n +0000805100 00000 n +0000809833 00000 n +0000808144 00000 n +0000805307 00000 n +0000808447 00000 n +0000808510 00000 n +0000808573 00000 n +0000808635 00000 n +0000808699 00000 n +0000808762 00000 n +0000808825 00000 n +0000808888 00000 n +0000808951 00000 n +0000809014 00000 n +0000809077 00000 n +0000809141 00000 n +0000809204 00000 n +0000809267 00000 n +0000809330 00000 n +0000809393 00000 n +0000809456 00000 n +0000809518 00000 n +0000809581 00000 n +0000808289 00000 n +0000809644 00000 n +0000809707 00000 n +0000809770 00000 n +0000815243 00000 n +0000813047 00000 n +0000809935 00000 n +0000813345 00000 n +0000813408 00000 n +0000813471 00000 n +0000813532 00000 n +0000813595 00000 n +0000813658 00000 n +0000813721 00000 n +0000813784 00000 n +0000813847 00000 n +0000813911 00000 n +0000813974 00000 n +0000814037 00000 n +0000814101 00000 n +0000814164 00000 n +0000814228 00000 n +0000814292 00000 n +0000814355 00000 n +0000814418 00000 n +0000814482 00000 n +0000814546 00000 n +0000814610 00000 n +0000814673 00000 n +0000814736 00000 n +0000814800 00000 n +0000813192 00000 n +0000814863 00000 n +0000814926 00000 n +0000814989 00000 n +0000815052 00000 n +0000815115 00000 n +0000815179 00000 n +0000819557 00000 n +0000817857 00000 n +0000815387 00000 n +0000818165 00000 n +0000818228 00000 n +0000818291 00000 n +0000818355 00000 n +0000818418 00000 n +0000818481 00000 n +0000818544 00000 n +0000818608 00000 n +0000818671 00000 n +0000818735 00000 n +0000818799 00000 n +0000818863 00000 n +0000818927 00000 n +0000818002 00000 n +0000818990 00000 n +0000819053 00000 n +0000819117 00000 n +0000819179 00000 n +0000819242 00000 n +0000819305 00000 n +0000819369 00000 n +0000819432 00000 n +0000819495 00000 n +0000824308 00000 n +0000822172 00000 n +0000819701 00000 n +0000822475 00000 n +0000822538 00000 n +0000822601 00000 n +0000822664 00000 n +0000822727 00000 n +0000822790 00000 n +0000822317 00000 n +0000822854 00000 n +0000822917 00000 n +0000822979 00000 n +0000823042 00000 n +0000823105 00000 n +0000823168 00000 n +0000823231 00000 n +0000823295 00000 n +0000823358 00000 n +0000823421 00000 n +0000823485 00000 n +0000823549 00000 n +0000823612 00000 n +0000823676 00000 n +0000823740 00000 n +0000823803 00000 n +0000823866 00000 n +0000823929 00000 n +0000823993 00000 n +0000824056 00000 n +0000824119 00000 n +0000824183 00000 n +0000824245 00000 n +0000830518 00000 n +0000827237 00000 n +0000824466 00000 n +0000827535 00000 n +0000827598 00000 n +0000827662 00000 n +0000827726 00000 n +0000827790 00000 n +0000827853 00000 n +0000827917 00000 n +0000827981 00000 n +0000828045 00000 n +0000828108 00000 n +0000828172 00000 n +0000828236 00000 n +0000828299 00000 n +0000828362 00000 n +0000828426 00000 n +0000828489 00000 n +0000828552 00000 n +0000828614 00000 n +0000828677 00000 n +0000828740 00000 n +0000828803 00000 n +0000828866 00000 n +0000828930 00000 n +0000828994 00000 n +0000829058 00000 n +0000829122 00000 n +0000829186 00000 n +0000829250 00000 n +0000829313 00000 n +0000827382 00000 n +0000829376 00000 n +0000829440 00000 n +0000829504 00000 n +0000829566 00000 n +0000829629 00000 n +0000829693 00000 n +0000829757 00000 n +0000829820 00000 n +0000829883 00000 n +0000829947 00000 n +0000830010 00000 n +0000830074 00000 n +0000830137 00000 n +0000830200 00000 n +0000830263 00000 n +0000830326 00000 n +0000830390 00000 n +0000830454 00000 n +0000944310 00000 n +0000928559 00000 n +0000835130 00000 n +0000833430 00000 n +0000830634 00000 n +0000833554 00000 n +0000833617 00000 n +0000833679 00000 n +0000833742 00000 n +0000833805 00000 n +0000833869 00000 n +0000833931 00000 n +0000833995 00000 n +0000834058 00000 n +0000834122 00000 n +0000834184 00000 n +0000834247 00000 n +0000834311 00000 n +0000834374 00000 n +0000834437 00000 n +0000834501 00000 n +0000834564 00000 n +0000834627 00000 n +0000834690 00000 n +0000834753 00000 n +0000834817 00000 n +0000834879 00000 n +0000834941 00000 n +0000835004 00000 n +0000835067 00000 n +0000840250 00000 n +0000837867 00000 n +0000835274 00000 n +0000838164 00000 n +0000838012 00000 n +0000838227 00000 n +0000838290 00000 n +0000838353 00000 n +0000838415 00000 n +0000838479 00000 n +0000838542 00000 n +0000838605 00000 n +0000838669 00000 n +0000838732 00000 n +0000838795 00000 n +0000838859 00000 n +0000838922 00000 n +0000838985 00000 n +0000839049 00000 n +0000839112 00000 n +0000839176 00000 n +0000839235 00000 n +0000839299 00000 n +0000839362 00000 n +0000839426 00000 n +0000839489 00000 n +0000839553 00000 n +0000839616 00000 n +0000839680 00000 n +0000839744 00000 n +0000839808 00000 n +0000839872 00000 n +0000839935 00000 n +0000839998 00000 n +0000840061 00000 n +0000840124 00000 n +0000840187 00000 n +0000845364 00000 n +0000843537 00000 n +0000840366 00000 n +0000843661 00000 n +0000843724 00000 n +0000843786 00000 n +0000843849 00000 n +0000843912 00000 n +0000843976 00000 n +0000844039 00000 n +0000844102 00000 n +0000844165 00000 n +0000844227 00000 n +0000844290 00000 n +0000844353 00000 n +0000844416 00000 n +0000844479 00000 n +0000844542 00000 n +0000844606 00000 n +0000844669 00000 n +0000844732 00000 n +0000844794 00000 n +0000844858 00000 n +0000844921 00000 n +0000844985 00000 n +0000845048 00000 n +0000845111 00000 n +0000845175 00000 n +0000845238 00000 n +0000845301 00000 n +0000849842 00000 n +0000847691 00000 n +0000845494 00000 n +0000847815 00000 n +0000847878 00000 n +0000847941 00000 n +0000848004 00000 n +0000848066 00000 n +0000848129 00000 n +0000848192 00000 n +0000848255 00000 n +0000848318 00000 n +0000848381 00000 n +0000848445 00000 n +0000848508 00000 n +0000848572 00000 n +0000848636 00000 n +0000848699 00000 n +0000848762 00000 n +0000848826 00000 n +0000848889 00000 n +0000848953 00000 n +0000849017 00000 n +0000849081 00000 n +0000849144 00000 n +0000849207 00000 n +0000849270 00000 n +0000849331 00000 n +0000849395 00000 n +0000849459 00000 n +0000849523 00000 n +0000849586 00000 n +0000849650 00000 n +0000849714 00000 n +0000849778 00000 n +0000851694 00000 n +0000851063 00000 n +0000849958 00000 n +0000851187 00000 n +0000851250 00000 n +0000851314 00000 n +0000851377 00000 n +0000851440 00000 n +0000851503 00000 n +0000851567 00000 n +0000851630 00000 n +0000856753 00000 n +0000854333 00000 n +0000851782 00000 n +0000854800 00000 n +0000854989 00000 n +0000855178 00000 n +0000855241 00000 n +0000855305 00000 n +0000855369 00000 n +0000854487 00000 n +0000854643 00000 n +0000855432 00000 n +0000855495 00000 n +0000855558 00000 n +0000855622 00000 n +0000855685 00000 n +0000855875 00000 n +0000855938 00000 n +0000856001 00000 n +0000856064 00000 n +0000856127 00000 n +0000856315 00000 n +0000856378 00000 n +0000856441 00000 n +0000856503 00000 n +0000856566 00000 n +0000856628 00000 n +0000944435 00000 n +0000860197 00000 n +0000858750 00000 n +0000856897 00000 n +0000858874 00000 n +0000858937 00000 n +0000859063 00000 n +0000859126 00000 n +0000859190 00000 n +0000859378 00000 n +0000859441 00000 n +0000859504 00000 n +0000859567 00000 n +0000859631 00000 n +0000859694 00000 n +0000859757 00000 n +0000859820 00000 n +0000860007 00000 n +0000860070 00000 n +0000860134 00000 n +0000863357 00000 n +0000861967 00000 n +0000860327 00000 n +0000862091 00000 n +0000862154 00000 n +0000862217 00000 n +0000862281 00000 n +0000862345 00000 n +0000862409 00000 n +0000862472 00000 n +0000862535 00000 n +0000862724 00000 n +0000862787 00000 n +0000862851 00000 n +0000862914 00000 n +0000862977 00000 n +0000863041 00000 n +0000863230 00000 n +0000863293 00000 n +0000867315 00000 n +0000865740 00000 n +0000863501 00000 n +0000865864 00000 n +0000865927 00000 n +0000865990 00000 n +0000866054 00000 n +0000866115 00000 n +0000866241 00000 n +0000866304 00000 n +0000866367 00000 n +0000866431 00000 n +0000866495 00000 n +0000866621 00000 n +0000866684 00000 n +0000866746 00000 n +0000866810 00000 n +0000866874 00000 n +0000866937 00000 n +0000867000 00000 n +0000867189 00000 n +0000867252 00000 n +0000870697 00000 n +0000869322 00000 n +0000867431 00000 n +0000869621 00000 n +0000869684 00000 n +0000869747 00000 n +0000869811 00000 n +0000870001 00000 n +0000870064 00000 n +0000870127 00000 n +0000870191 00000 n +0000869467 00000 n +0000870381 00000 n +0000870444 00000 n +0000870507 00000 n +0000870570 00000 n +0000870633 00000 n +0000877014 00000 n +0000873925 00000 n +0000870827 00000 n +0000874049 00000 n +0000874238 00000 n +0000874301 00000 n +0000874488 00000 n +0000874551 00000 n +0000874615 00000 n +0000874678 00000 n +0000874742 00000 n +0000874806 00000 n +0000874869 00000 n +0000874933 00000 n +0000874996 00000 n +0000875059 00000 n +0000875122 00000 n +0000875185 00000 n +0000875247 00000 n +0000875309 00000 n +0000875373 00000 n +0000875437 00000 n +0000875501 00000 n +0000875565 00000 n +0000875629 00000 n +0000875693 00000 n +0000875756 00000 n +0000875819 00000 n +0000875882 00000 n +0000875945 00000 n +0000876009 00000 n +0000876072 00000 n +0000876135 00000 n +0000876198 00000 n +0000876262 00000 n +0000876447 00000 n +0000876510 00000 n +0000876573 00000 n +0000876637 00000 n +0000876699 00000 n +0000876763 00000 n +0000876827 00000 n +0000876890 00000 n +0000876952 00000 n +0000880832 00000 n +0000878753 00000 n +0000877158 00000 n +0000878877 00000 n +0000879191 00000 n +0000879253 00000 n +0000879316 00000 n +0000879379 00000 n +0000879442 00000 n +0000879505 00000 n +0000879568 00000 n +0000879631 00000 n +0000879694 00000 n +0000879757 00000 n +0000879820 00000 n +0000879883 00000 n +0000879947 00000 n +0000880011 00000 n +0000880073 00000 n +0000880136 00000 n +0000880326 00000 n +0000880389 00000 n +0000880452 00000 n +0000880515 00000 n +0000880578 00000 n +0000880642 00000 n +0000880706 00000 n +0000880770 00000 n +0000944560 00000 n +0000883526 00000 n +0000881690 00000 n +0000880962 00000 n +0000881814 00000 n +0000881877 00000 n +0000881939 00000 n +0000882002 00000 n +0000882066 00000 n +0000882128 00000 n +0000882191 00000 n +0000882255 00000 n +0000882319 00000 n +0000882382 00000 n +0000882445 00000 n +0000882509 00000 n +0000882573 00000 n +0000882637 00000 n +0000882699 00000 n +0000882762 00000 n +0000882826 00000 n +0000882890 00000 n +0000882954 00000 n +0000883017 00000 n +0000883080 00000 n +0000883144 00000 n +0000883208 00000 n +0000883272 00000 n +0000883335 00000 n +0000883398 00000 n +0000883462 00000 n +0000886278 00000 n +0000884380 00000 n +0000883614 00000 n +0000884504 00000 n +0000884567 00000 n +0000884630 00000 n +0000884694 00000 n +0000884756 00000 n +0000884819 00000 n +0000884883 00000 n +0000884947 00000 n +0000885011 00000 n +0000885074 00000 n +0000885137 00000 n +0000885201 00000 n +0000885265 00000 n +0000885327 00000 n +0000885390 00000 n +0000885454 00000 n +0000885518 00000 n +0000885707 00000 n +0000885770 00000 n +0000885833 00000 n +0000885897 00000 n +0000885961 00000 n +0000886025 00000 n +0000886088 00000 n +0000886151 00000 n +0000886215 00000 n +0000888634 00000 n +0000887176 00000 n +0000886380 00000 n +0000887300 00000 n +0000887363 00000 n +0000887427 00000 n +0000887490 00000 n +0000887553 00000 n +0000887617 00000 n +0000887680 00000 n +0000887744 00000 n +0000887807 00000 n +0000887870 00000 n +0000887934 00000 n +0000887998 00000 n +0000888062 00000 n +0000888125 00000 n +0000888188 00000 n +0000888252 00000 n +0000888316 00000 n +0000888379 00000 n +0000888442 00000 n +0000888506 00000 n +0000888570 00000 n +0000892809 00000 n +0000891491 00000 n +0000888722 00000 n +0000891615 00000 n +0000891804 00000 n +0000891867 00000 n +0000891929 00000 n +0000892117 00000 n +0000892180 00000 n +0000892243 00000 n +0000892431 00000 n +0000892494 00000 n +0000892557 00000 n +0000892620 00000 n +0000892683 00000 n +0000892746 00000 n +0000896953 00000 n +0000896074 00000 n +0000892911 00000 n +0000896198 00000 n +0000896261 00000 n +0000896324 00000 n +0000896513 00000 n +0000896575 00000 n +0000896764 00000 n +0000896827 00000 n +0000896890 00000 n +0000902708 00000 n +0000900320 00000 n +0000897055 00000 n +0000900444 00000 n +0000900507 00000 n +0000900569 00000 n +0000900758 00000 n +0000900821 00000 n +0000900884 00000 n +0000900947 00000 n +0000901010 00000 n +0000901073 00000 n +0000901136 00000 n +0000901199 00000 n +0000901262 00000 n +0000901324 00000 n +0000901387 00000 n +0000901450 00000 n +0000901513 00000 n +0000901576 00000 n +0000901639 00000 n +0000901702 00000 n +0000901765 00000 n +0000901828 00000 n +0000901890 00000 n +0000901953 00000 n +0000902016 00000 n +0000902079 00000 n +0000902141 00000 n +0000902204 00000 n +0000902267 00000 n +0000902330 00000 n +0000902393 00000 n +0000902456 00000 n +0000902519 00000 n +0000902582 00000 n +0000902645 00000 n +0000944685 00000 n +0000906623 00000 n +0000905555 00000 n +0000902810 00000 n +0000905679 00000 n +0000905742 00000 n +0000905805 00000 n +0000905994 00000 n +0000906057 00000 n +0000906120 00000 n +0000906308 00000 n +0000906371 00000 n +0000906560 00000 n +0000910565 00000 n +0000909308 00000 n +0000906725 00000 n +0000909432 00000 n +0000909495 00000 n +0000909683 00000 n +0000909872 00000 n +0000910061 00000 n +0000910124 00000 n +0000910188 00000 n +0000910376 00000 n +0000910439 00000 n +0000910502 00000 n +0000911850 00000 n +0000911537 00000 n +0000910667 00000 n +0000911661 00000 n +0000911724 00000 n +0000911787 00000 n +0000917605 00000 n +0000913894 00000 n +0000911938 00000 n +0000914194 00000 n +0000914383 00000 n +0000914633 00000 n +0000914696 00000 n +0000914759 00000 n +0000914823 00000 n +0000914887 00000 n +0000915012 00000 n +0000915138 00000 n +0000915201 00000 n +0000915264 00000 n +0000915328 00000 n +0000915392 00000 n +0000915454 00000 n +0000915579 00000 n +0000915642 00000 n +0000915705 00000 n +0000915768 00000 n +0000915831 00000 n +0000915895 00000 n +0000915958 00000 n +0000916021 00000 n +0000916084 00000 n +0000916147 00000 n +0000916210 00000 n +0000916273 00000 n +0000916336 00000 n +0000916400 00000 n +0000916464 00000 n +0000916527 00000 n +0000916590 00000 n +0000916653 00000 n +0000916716 00000 n +0000916780 00000 n +0000916844 00000 n +0000916908 00000 n +0000916972 00000 n +0000917036 00000 n +0000917100 00000 n +0000917164 00000 n +0000917227 00000 n +0000917290 00000 n +0000917353 00000 n +0000917415 00000 n +0000917479 00000 n +0000914039 00000 n +0000917542 00000 n +0000922052 00000 n +0000919289 00000 n +0000917735 00000 n +0000919413 00000 n +0000919537 00000 n +0000919660 00000 n +0000919723 00000 n +0000919785 00000 n +0000919849 00000 n +0000919913 00000 n +0000919977 00000 n +0000920103 00000 n +0000920165 00000 n +0000920354 00000 n +0000920417 00000 n +0000920480 00000 n +0000920731 00000 n +0000920794 00000 n +0000920856 00000 n +0000920918 00000 n +0000920982 00000 n +0000921108 00000 n +0000921171 00000 n +0000921359 00000 n +0000921422 00000 n +0000921485 00000 n +0000921548 00000 n +0000921612 00000 n +0000921738 00000 n +0000921862 00000 n +0000921925 00000 n +0000921988 00000 n +0000926201 00000 n +0000923798 00000 n +0000922182 00000 n +0000924118 00000 n +0000924181 00000 n +0000924243 00000 n +0000924307 00000 n +0000924370 00000 n +0000924434 00000 n +0000924685 00000 n +0000924748 00000 n +0000924811 00000 n +0000924875 00000 n +0000925063 00000 n +0000925126 00000 n +0000925189 00000 n +0000923943 00000 n +0000925252 00000 n +0000925378 00000 n +0000925505 00000 n +0000925568 00000 n +0000925631 00000 n +0000925695 00000 n +0000925759 00000 n +0000925822 00000 n +0000925948 00000 n +0000926075 00000 n +0000926138 00000 n +0000944810 00000 n +0000931009 00000 n +0000927968 00000 n +0000926331 00000 n +0000928434 00000 n +0000928685 00000 n +0000928748 00000 n +0000928810 00000 n +0000928874 00000 n +0000928933 00000 n +0000928993 00000 n +0000929053 00000 n +0000929117 00000 n +0000929244 00000 n +0000929307 00000 n +0000928122 00000 n +0000929370 00000 n +0000929434 00000 n +0000929497 00000 n +0000929560 00000 n +0000929623 00000 n +0000929686 00000 n +0000929750 00000 n +0000929812 00000 n +0000929874 00000 n +0000929937 00000 n +0000930001 00000 n +0000930065 00000 n +0000930128 00000 n +0000930191 00000 n +0000930254 00000 n +0000928277 00000 n +0000930318 00000 n +0000930570 00000 n +0000930631 00000 n +0000930694 00000 n +0000930883 00000 n +0000930946 00000 n +0000933821 00000 n +0000934833 00000 n +0000932498 00000 n +0000931125 00000 n +0000932622 00000 n +0000932685 00000 n +0000932811 00000 n +0000932874 00000 n +0000932937 00000 n +0000933001 00000 n +0000933125 00000 n +0000933251 00000 n +0000933313 00000 n +0000933376 00000 n +0000933439 00000 n +0000933503 00000 n +0000933567 00000 n +0000933631 00000 n +0000933695 00000 n +0000933948 00000 n +0000934011 00000 n +0000934074 00000 n +0000934201 00000 n +0000934264 00000 n +0000934327 00000 n +0000934391 00000 n +0000934643 00000 n +0000934706 00000 n +0000934769 00000 n +0000939466 00000 n +0000936999 00000 n +0000934935 00000 n +0000937123 00000 n +0000937186 00000 n +0000937249 00000 n +0000937376 00000 n +0000937439 00000 n +0000937502 00000 n +0000937565 00000 n +0000937628 00000 n +0000937692 00000 n +0000937756 00000 n +0000937820 00000 n +0000937883 00000 n +0000937947 00000 n +0000938011 00000 n +0000938075 00000 n +0000938139 00000 n +0000938264 00000 n +0000938391 00000 n +0000938454 00000 n +0000938517 00000 n +0000938581 00000 n +0000938708 00000 n +0000938771 00000 n +0000938834 00000 n +0000938960 00000 n +0000939087 00000 n +0000939150 00000 n +0000939213 00000 n +0000939276 00000 n +0000939339 00000 n +0000939402 00000 n +0000939644 00000 n +0000944917 00000 n +0000945043 00000 n +0000945169 00000 n +0000945295 00000 n +0000945394 00000 n +0000945486 00000 n +0000971863 00000 n +0001029249 00000 n +0001029290 00000 n +0001029330 00000 n +0001029562 00000 n trailer << -/Size 5129 -/Root 5127 0 R -/Info 5128 0 R +/Size 5115 +/Root 5113 0 R +/Info 5114 0 R >> startxref -1032143 +1029718 %%EOF diff --git a/docs/rel_notes.txt b/docs/rel_notes.txt index efde41c58dbe3741de36a48b27826f77a7140477..5292b999d654cc22001f7ee93fb3cf2ea9d9e95c 100644 --- a/docs/rel_notes.txt +++ b/docs/rel_notes.txt @@ -6,6 +6,8 @@ Table of Contents ***************** - Introduction +- Important Updates in this Point Release + * Version 2.20.1 - Minimum Requirements * Perl * For MySQL Users @@ -70,6 +72,64 @@ Contributor's Guide at: http://www.bugzilla.org/docs/contributor.html +Important Updates In This Point Release +*************************************** + +Version 2.20.1 +-------------- + ++ Many PostgreSQL fixes, including fixing whine.pl on Pg 8 + (bug 301062) and fixing the --regenerate option of collectstats.pl + for all versions of Pg (bug 316971). However, users who want full + PostgreSQL support are encouraged to use the 2.22 series, as + certain PostgreSQL bugs were discovered that will not be fixed + in 2.20 (their fixes were too complex). + ++ In Bugzilla 2.20, the "administrator" user created by checksetup.pl + would not ever be sent email, because their email preferences were + left blank. This has been fixed for 2.20.1. However, if you created + this administrative user with Bugzilla 2.20, make sure to go back + and enable their Email Preferences. (bug 317489) + ++ The bzdbcopy.pl script mentioned in these release notes + has now actually been checked-in to the 2.20 branch, and so + it's included in this release. (bug 291776) + ++ When there's only one Classification, you now won't be required + to pick a Classification on bug entry. (bug 311489) + ++ You can no longer add dependencies on bugs you can't see. + (bug 141593) + ++ The CC list is included in "New" bug emails, again. (bug 313661) + ++ In the original 2.20, certain scripts were not correctly using + the "shadow database," if it was specified. This has been fixed + in 2.20.1. (bug 313695) + ++ "Saved Searches" that were saved before Bugzilla 2.20, would throw + an error if they contained "Days Since Bug Changed." as part of their + criteria. This has been fixed in Bugzilla 2.20.1. (bug 302599) + ++ You can now successfully delete a product even when Target Milestones + are turned off. (bug 317025) + ++ checksetup.pl now correctly pre-compiles templates for languages other + than English. (bug 304417) + ++ The "All Closed" chart that is created by default in New Charts + now actually represents all closed bugs, and not all bugs in the + product. (bug 300473) + ++ CSV bug lists with more than 1000 dates now work properly. (bug 257813) + ++ Various bugs with upgrading from previous versions of Bugzilla + have been fixed. (bug 307662, bug 311047, bug 310108) + ++ Many, many other bug fixes. See http://www.bugzilla.org/status/changes.html + for details on what was fixed between 2.20 and 2.20.1. + + Minimum Requirements ******************** @@ -357,15 +417,15 @@ Outstanding Issues your Status/Resolution field, you must edit checksetup.pl BEFORE YOU RUN IT. Find the line that starts like this: - my @states = ("UNCONFIRMED", + bug_status => ["UNCONFIRMED", That's where you set the values for the Status field. - my @resolutions = ("","FIXED", + resolution => ["","FIXED", And that's where you set values for the Resolution field. - Those are both near line 1786 in checksetup.pl. + Those are both near line 1826 in checksetup.pl. If you forget to do this, you will have to manually edit the "bug_status" and "resolution" tables in the database to contain the correct values. @@ -386,7 +446,7 @@ Outstanding Issues Old Charts will be restricted to the groups that are marked MANDATORY for the corresponding Product. There is currently no way to change this restriction, and the groupings will not be updated if the group configuration - for the Product changes. + for the Product changes. This will not be fixed in the 2.20 branch. - bug 69621: If you rename or remove a keyword that is in use on bugs, you will need to rebuild the "keyword cache" by running sanitycheck.cgi and choosing @@ -410,12 +470,11 @@ Outstanding Issues with a strange error message when you try to run checksetup.pl. Try upgrading your DBI using: perl -MCPAN -e'install DBI' -- Bug 298659: LDAP support may be broken on Windows. - - Bug 126266: Bugzilla does not use UTF-8 to display pages. This means that if you enter non-ASCII characters into Bugzilla, they may display strangely, or Bugzilla may have other problems. For a workaround, see: http://www.bugzilla.org/docs/tip/html/security-bugzilla.html + This has been fixed in the 2.22 series. - Bug 99215: Flags are not protected by "mid-air collision" detection. Nor are any attachment changes. @@ -424,6 +483,7 @@ Outstanding Issues "mid-air collision" protection. - Bug 285614: importxml.pl may be broken in many different ways. + It has been fixed and completely re-written in the 2.22 series. - (No Bug Number) Note that the email interface (bug_mail.pl) in the contrib/ directory has not been maintained (as it has no maintainer), @@ -589,6 +649,24 @@ Other Changes by Bugzilla 2.24. +Security Fixes in 2.20 Releases +******************************* + +2.20.1 +------ + +There were three security issues discovered after the release of +Bugzilla 2.20 that we resolved for Bugzilla 2.20.1. One SQL Injection +(from an administrator only), one Cross-Site Scripting vulnerability +(that mostly affects only the user who can exploit it), and one minor, +extremely specific information leak. + +To see details on the vulnerabilities that were fixed, see the +Security Advisory at: + +http://www.bugzilla.org/security/2.18.4/ + + Release Notes for Previous Versions *********************************** diff --git a/docs/txt/Bugzilla-Guide.txt b/docs/txt/Bugzilla-Guide.txt index 8f1ac2d07ad9d62b0263e9d024ae51946eded9a5..062da23e168462fc7b179de9e761587a5751929f 100644 --- a/docs/txt/Bugzilla-Guide.txt +++ b/docs/txt/Bugzilla-Guide.txt @@ -1,9 +1,9 @@ -The Bugzilla Guide - 2.20 Development Release +The Bugzilla Guide - 2.20.1 Release The Bugzilla Team - 2005-09-30 + 2006-02-20 This is the documentation for Bugzilla, a bug-tracking system from mozilla.org. Bugzilla is an enterprise-class piece of software that tracks @@ -138,7 +138,7 @@ Chapter 1. About This Guide 1.1. Copyright Information - This document is copyright (c) 2000-2005 by the various Bugzilla + This document is copyright (c) 2000-2006 by the various Bugzilla contributors who wrote it. Permission is granted to copy, distribute and/or modify this document @@ -175,9 +175,8 @@ Chapter 1. About This Guide 1.3. New Versions - This is the 2.20 version of The Bugzilla Guide. It is so named to match the - current version of Bugzilla. This version of the guide, like its associated - Bugzilla version, is a development version. + This is the 2.20.1 version of The Bugzilla Guide. It is so named to match + the current version of Bugzilla. The latest version of this guide can always be found at http://www.bugzilla.org, or checked out via CVS by following the Mozilla CVS @@ -399,7 +398,7 @@ Chapter 2. Installing Bugzilla Bugzilla's installation process is based on a script called checksetup.pl. The first thing it checks is whether you have appropriate versions of all the required Perl modules. The aim of this section is to pass this check. - When it passes, do not run it again, but proceed to Section 2.2. + When it passes, proceed to Section 2.2. At this point, you need to su to root. You should remain as root until the end of the install. To check you have the required modules, run: @@ -550,11 +549,19 @@ Chapter 2. Installing Bugzilla Bugzilla is dependent on the availability of an e-mail system for its user authentication and for other tasks. + Note This is not entirely true. It is possible to completely disable email + sending, or to have Bugzilla store email messages in a file instead of + sending them. However, this is mainly intended for testing, as disabling or + diverting email on a production machine would mean that users could miss + important events (such as bug changes or the creation of new accouts). + + For more information, see the "maildeliverymethod" parameter in Section 3.1. + On Linux, any Sendmail-compatible MTA (Mail Transfer Agent) will suffice. Sendmail, Postfix, qmail and Exim are examples of common MTAs. Sendmail is the original Unix MTA, but the others are easier to configure, and therefore many people replace Sendmail with Postfix or Exim. They are drop-in - replacements, so that Bugzilla will not distinguish between them. + replacements, so Bugzilla will not distinguish between them. If you are using Sendmail, version 8.7 or higher is required. If you are using a Sendmail-compatible MTA, it must be congruent with at least version @@ -595,6 +602,13 @@ Chapter 2. Installing Bugzilla a strong password (for simplicity, it should not contain single quote characters) and put it here. + You may need to change the value of webservergroup if your web server does + not run in the "apache" group. On Debian, for example, Apache runs in the + "www-data" group. If you are going to run Bugzilla on a machine where you do + not have root access (such as on a shared web hosting account), you will + need to leave webservergroup empty, ignoring the warnings that checksetup.pl + will subsequently display every time it in run. + The other options in the localconfig file are documented by their accompanying comments. If you have a slightly non-standard MySQL setup, you may wish to change one or more of the other "$db_*" parameters. @@ -883,51 +897,16 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s 4.3.1. _________________________________________________________________ -2.2.4.3. AOL Server - - Ben FrantzDale reported success using AOL Server with Bugzilla. He reported - his experience and what appears below is based on that. - - AOL Server will have to be configured to run CGI scripts, please consult the - documentation that came with your server for more information on how to do - this. - - Because AOL Server doesn't support .htaccess files, you'll have to create a - TCL script. You should create an aolserver/modules/tcl/filter.tcl file (the - filename shouldn't matter) with the following contents (change /bugzilla/ to - the web-based path to your Bugzilla installation): - ns_register_filter preauth GET /bugzilla/localconfig filter_deny - ns_register_filter preauth GET /bugzilla/localconfig~ filter_deny - ns_register_filter preauth GET /bugzilla/\#localconfig\# filter_deny - ns_register_filter preauth GET /bugzilla/*.pl filter_deny - ns_register_filter preauth GET /bugzilla/syncshadowdb filter_deny - ns_register_filter preauth GET /bugzilla/data/* filter_deny - ns_register_filter preauth GET /bugzilla/template/* filter_deny - - proc filter_deny { why } { - ns_log Notice "filter_deny" - return "filter_return" - } - - Warning This probably doesn't account for all possible editor backup files - so you may wish to add some additional variations of localconfig. For more - information, see bug 186383 or Bugtraq ID 6501. - - Note If you are using webdot from research.att.com (the default - configuration for the webdotbase paramater), you will need to allow access - to data/webdot/*.dot for the reasearch.att.com machine. - - If you are using a local installation of GraphViz, you will need to allow - everybody to access *.png, *.gif, *.jpg, and *.map in the data/webdot - directory. - _________________________________________________________________ - 2.2.5. Bugzilla Your Bugzilla should now be working. Access http://<your-bugzilla-server>/ - you should see the Bugzilla front page. If not, consult the Troubleshooting section, Appendix B. + Note The URL above may be incorrect if you installed Bugzilla into a + subdirectory or used a symbolic link from your web site root to the Bugzilla + directory. + Log in with the administrator account you defined in the last checksetup.pl run. You should go through the parameters on the Edit Parameters page (see link in the footer) and see if there are any you wish to change. They key @@ -963,6 +942,13 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s After two days have passed you'll be able to view bug graphs from the Reports page. + When upgrading Bugzilla, this format may change. To create new status data, + (re)move old data and run the following commands: + bash$ + cd <your-bugzilla-directory> + bash$ + ./collectstats.pl --regenerate + Note Windows does not have 'cron', but it does have the Task Scheduler, which performs the same duties. There are also third-party tools that can be used to implement cron, such as nncron. @@ -1184,36 +1170,10 @@ ppm repository add landfill http://www.landfill.bugzilla.org/ppm/ documentation. _________________________________________________________________ -2.4.1.3. Code changes required to run on win32 - - Bugzilla on win32 is mostly supported out of the box; one remaining issue is - related to bug email. To make bug email work on Win32 (until bug 49893 - lands), the simplest way is to have the Net::SMTP Perl module installed and - change this line in the file Bugzilla/Bugmail.pm: -open(SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t -i") || - die "Can't open sendmail"; - -print SENDMAIL trim($msg) . "\n"; -close SENDMAIL; - - to -use Net::SMTP; -my $smtp_server = 'smtp.mycompany.com'; # change this - -# Use die on error, so that the mail will be in the 'unsent mails' and -# can be sent from the sanity check page. -my $smtp = Net::SMTP->new($smtp_server) || - die 'Cannot connect to server \'$smtp_server\''; - -$smtp->mail('bugzilla-daemon@mycompany.com'); # change this -$smtp->to($person); -$smtp->data(); -$smtp->datasend($msg); -$smtp->dataend(); -$smtp->quit; +2.4.1.3. Code changes required to run on Win32 - Don't forget to change the name of your SMTP server and the domain of the - sending email address (after the '@') in the above lines of code. + Bugzilla on Win32 is supported out of the box from version 2.20; this means + that no code changes are required to get Bugzilla running. _________________________________________________________________ 2.4.1.4. Serving the web pages @@ -1229,6 +1189,12 @@ $smtp->quit; every script to contain your path to perl perl instead of /usr/bin/perl. _________________________________________________________________ +2.4.1.5. Sending Email + + To enable Bugzilla to send email on Windows, the server running the Bugzilla + code must be able to connect to, or act as, an SMTP server. + _________________________________________________________________ + 2.4.2. Mac OS X Apple did not include the GD library with Mac OS X. Bugzilla needs this for @@ -1583,6 +1549,13 @@ Chapter 3. Administering Bugzilla initially created, the group controls can be further adjusted without interference by this mechanism. + maildeliverymethod + This is used to specify how email is sent, or if it is sent at all. + There are several options included for different MTAs, along with two + additional options that disable email sending. "testfile" does not + send mail, but instead saves it in data/mailer.testfile for later + review. "none" disables email sending entirely. + shadowdb You run into an interesting problem when Bugzilla reaches a high level of continuous activity. MySQL supports only table-level write @@ -2249,7 +2222,9 @@ Chapter 3. Administering Bugzilla Note This is a change from 2.16 where the regular expression resulted in a user acquiring permanent membership in a group. To remove a user from a group the user was in due to a regular expression in version 2.16 or - earlier, the user must be explicitly removed from the group. + earlier, the user must be explicitly removed from the group. This can easily + be done by pressing buttons named 'Remove Memberships' or 'Remove + Memberships included in regular expression' under the table. Warning If specifying a domain in the regexp, make sure you end the regexp with a $. Otherwise, when granting access to "@mycompany\.com", you will @@ -3691,9 +3666,9 @@ Chapter 6. Using Bugzilla 6.5. Searching for Bugs - The Bugzilla Search page is is the interface where you can find any bug - report, comment, or patch currently in the Bugzilla system. You can play - with it here: http://landfill.bugzilla.org/bugzilla-tip/query.cgi. + The Bugzilla Search page is the interface where you can find any bug report, + comment, or patch currently in the Bugzilla system. You can play with it + here: http://landfill.bugzilla.org/bugzilla-tip/query.cgi. The Search page has controls for selecting different possible values for all of the fields in a bug, as described above. For some fields, multiple values @@ -4264,6 +4239,12 @@ Chapter 6. Using Bugzilla the flag name and the user who has been requested to set the flag appended to the flag name within parentheses. For example, if Jack asks Jill for review, it appears as Jack: review [ ? ] (Jill). + + You can browse through open requests made of you and by you by selecting 'My + Requests' from the footer. You can also look at open requests limited by + other requesters, requestees, products, components, and flag names from this + page. Note that you can use '-' for requestee to specify flags with 'no + requestee' set. _________________________________________________________________ 6.13. Whining @@ -4995,7 +4976,8 @@ password=mypassword A.5.2. I'm evaluating/testing Bugzilla, and don't want it to send email to anyone but me. How do I do it? - To disable email, set the + To disable email, set the mail_delivery_method parameter to none (2.20 and + later), or $enableSendMail parameter to '0' in either BugMail.pm (2.18 and later) or processmail (up to @@ -5054,8 +5036,8 @@ password=mypassword Double-check that you have not turned off email in your user preferences. Confirm that Bugzilla is able to send email by visiting the "Log In" link of - your Bugzilla installation and clicking the "Email me a password" button - after entering your email address. + your Bugzilla installation and clicking the "Submit Request" button after + entering your email address. If you never receive mail from Bugzilla, chances are you do not have sendmail in "/usr/lib/sendmail". Ensure sendmail lives in, or is symlinked @@ -5292,8 +5274,8 @@ password=mypassword Try this link to view current bugs or requests for enhancement for Bugzilla. - You can view bugs marked for 2.20.1 release here. This list includes bugs - for the 2.20.1 release that have already been fixed and checked into CVS. + You can view bugs marked for 2.20.2 release here. This list includes bugs + for the 2.20.2 release that have already been fixed and checked into CVS. Please consult the Bugzilla Project Page for details on how to check current sources out of CVS so you can have these bug fixes early! @@ -6255,10 +6237,11 @@ M Message Transport Agent (MTA) A Message Transport Agent is used to control the flow of email on a - system. Many unix based systems use sendmail which is what Bugzilla - expects to find by default at /usr/sbin/sendmail. Many other MTA's - will work, but they all require that the sendmailnow param be set to - on. + system. The Mail::Mailer Perl module, which Bugzilla uses to send + email, can be configured to use many different underlying + implementations for actually sending the mail using the + mail_delivery_method parameter. Implementations other than sendmail + require that the sendmailnow param be set to on. MySQL MySQL is currently the required RDBMS for Bugzilla. MySQL can be diff --git a/docs/xml/Bugzilla-Guide.xml b/docs/xml/Bugzilla-Guide.xml index bc5aba2f022d5291c9669fb881cdc104761e9239..5aaa9e67ba71493a4cade1f9c6f3b86250abd87b 100644 --- a/docs/xml/Bugzilla-Guide.xml +++ b/docs/xml/Bugzilla-Guide.xml @@ -31,10 +31,10 @@ For a devel release, simple bump bz-ver and bz-date --> -<!ENTITY bz-ver "2.20"> -<!ENTITY bz-nextver "2.20.1"> -<!ENTITY bz-date "2005-09-30"> -<!ENTITY current-year "2005"> +<!ENTITY bz-ver "2.20.1"> +<!ENTITY bz-nextver "2.20.2"> +<!ENTITY bz-date "2006-02-20"> +<!ENTITY current-year "2006"> <!ENTITY landfillbase "http://landfill.bugzilla.org/bugzilla-tip/"> <!ENTITY bz "http://www.bugzilla.org/"> @@ -99,7 +99,6 @@ <bookinfo> <title>The Bugzilla Guide - &bz-ver; - <!-- BZ-DEVEL -->Development <!-- /BZ-DEVEL --> Release</title> <authorgroup> diff --git a/docs/xml/CVS/Entries b/docs/xml/CVS/Entries index fe270d907de8053ed5169617f86a8411b4a7df04..393d9c71102203c00c618f818effcc240b2222f1 100644 --- a/docs/xml/CVS/Entries +++ b/docs/xml/CVS/Entries @@ -1,21 +1,21 @@ -/Bugzilla-Guide.xml/1.50.2.4/Fri Sep 30 22:38:03 2005//TBUGZILLA-2_20 -/about.xml/1.19/Fri Jan 14 12:08:47 2005//TBUGZILLA-2_20 -/administration.xml/1.50.2.1/Thu Sep 8 18:34:20 2005//TBUGZILLA-2_20 -/conventions.xml/1.9/Thu Jan 15 23:54:39 2004//TBUGZILLA-2_20 -/customization.xml/1.20/Wed Jun 29 15:17:39 2005//TBUGZILLA-2_20 -/dbschema.mysql/1.2/Wed May 8 23:19:09 2002//TBUGZILLA-2_20 -/faq.xml/1.35.2.1/Thu Sep 8 18:34:20 2005//TBUGZILLA-2_20 -/filetemp.patch/1.1/Wed Apr 2 00:40:56 2003//TBUGZILLA-2_20 -/gfdl.xml/1.9/Sat Jan 24 18:31:00 2004//TBUGZILLA-2_20 -/glossary.xml/1.16/Thu Dec 2 04:21:27 2004//TBUGZILLA-2_20 -/index.xml/1.4/Wed Apr 23 02:04:25 2003//TBUGZILLA-2_20 -/installation.xml/1.98.2.5/Mon Aug 1 08:41:43 2005//TBUGZILLA-2_20 -/integration.xml/1.13/Sat Sep 4 09:27:15 2004//TBUGZILLA-2_20 -/introduction.xml/1.5/Thu Jan 15 23:54:39 2004//TBUGZILLA-2_20 -/modules.xml/1.3/Mon Jan 10 07:21:26 2005//TBUGZILLA-2_20 -/patches.xml/1.21/Thu Nov 25 09:26:22 2004//TBUGZILLA-2_20 -/requiredsoftware.xml/1.6/Mon May 12 19:31:48 2003//TBUGZILLA-2_20 -/security.xml/1.6/Wed Jun 29 23:43:33 2005//TBUGZILLA-2_20 -/troubleshooting.xml/1.5.4.1/Thu Sep 8 20:57:06 2005//TBUGZILLA-2_20 -/using.xml/1.33.2.1/Tue Jul 12 10:55:56 2005//TBUGZILLA-2_20 +/Bugzilla-Guide.xml/1.50.2.5/Tue Feb 21 06:50:15 2006//TBUGZILLA-2_20_1 +/about.xml/1.19.6.1/Tue Feb 21 06:50:15 2006//TBUGZILLA-2_20_1 +/administration.xml/1.50.2.3/Tue Feb 14 23:06:37 2006//TBUGZILLA-2_20_1 +/conventions.xml/1.9/Thu Jan 15 23:54:39 2004//TBUGZILLA-2_20_1 +/customization.xml/1.20/Wed Jun 29 15:17:39 2005//TBUGZILLA-2_20_1 +/dbschema.mysql/1.2/Wed May 8 23:19:09 2002//TBUGZILLA-2_20_1 +/faq.xml/1.35.2.4/Fri Dec 30 15:33:58 2005//TBUGZILLA-2_20_1 +/filetemp.patch/1.1/Wed Apr 2 00:40:56 2003//TBUGZILLA-2_20_1 +/gfdl.xml/1.9/Sat Jan 24 18:31:00 2004//TBUGZILLA-2_20_1 +/glossary.xml/1.16.6.1/Fri Dec 30 15:33:58 2005//TBUGZILLA-2_20_1 +/index.xml/1.4/Wed Apr 23 02:04:25 2003//TBUGZILLA-2_20_1 +/installation.xml/1.98.2.9/Fri Dec 30 15:29:01 2005//TBUGZILLA-2_20_1 +/integration.xml/1.13/Sat Sep 4 09:27:15 2004//TBUGZILLA-2_20_1 +/introduction.xml/1.5/Thu Jan 15 23:54:39 2004//TBUGZILLA-2_20_1 +/modules.xml/1.3/Mon Jan 10 07:21:26 2005//TBUGZILLA-2_20_1 +/patches.xml/1.21/Thu Nov 25 09:26:22 2004//TBUGZILLA-2_20_1 +/requiredsoftware.xml/1.6/Mon May 12 19:31:48 2003//TBUGZILLA-2_20_1 +/security.xml/1.6/Wed Jun 29 23:43:33 2005//TBUGZILLA-2_20_1 +/troubleshooting.xml/1.5.4.1/Thu Sep 8 20:57:06 2005//TBUGZILLA-2_20_1 +/using.xml/1.33.2.3/Tue Feb 14 22:57:01 2006//TBUGZILLA-2_20_1 D diff --git a/docs/xml/CVS/Tag b/docs/xml/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/docs/xml/CVS/Tag +++ b/docs/xml/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/docs/xml/about.xml b/docs/xml/about.xml index a6f51d7e06cc88616129181754ccdeb864270353..f7b9535a9ef91ff8a7423e0d31ca32459b63aea8 100644 --- a/docs/xml/about.xml +++ b/docs/xml/about.xml @@ -1,6 +1,6 @@ <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ <!ENTITY conventions SYSTEM "conventions.xml"> ] > --> -<!-- $Id: about.xml,v 1.19 2005/01/14 12:08:47 jake%bugzilla.org Exp $ --> +<!-- $Id: about.xml,v 1.19.6.1 2006/02/21 06:50:15 mkanat%kerio.com Exp $ --> <chapter id="about"> <title>About This Guide</title> @@ -65,8 +65,6 @@ <para> This is the &bz-ver; version of The Bugzilla Guide. It is so named to match the current version of Bugzilla. - <!-- BZ-DEVEL --> This version of the guide, like its associated Bugzilla version, is a - development version.<!-- /BZ-DEVEL --> </para> <para> The latest version of this guide can always be found at <ulink diff --git a/docs/xml/administration.xml b/docs/xml/administration.xml index 16223ce1eed2704ca91e4dd94e02dd4cdf15408d..0b963c7ce2361937fb8e61a2dedc38ea1ad0ee1f 100644 --- a/docs/xml/administration.xml +++ b/docs/xml/administration.xml @@ -80,6 +80,22 @@ </listitem> </varlistentry> + <varlistentry> + <term> + maildeliverymethod + </term> + <listitem> + <para> + This is used to specify how email is sent, or if it is sent at + all. There are several options included for different MTAs, + along with two additional options that disable email sending. + "testfile" does not send mail, but instead saves it in + <filename>data/mailer.testfile</filename> for later review. + "none" disables email sending entirely. + </para> + </listitem> + </varlistentry> + <varlistentry> <term> shadowdb @@ -1255,7 +1271,9 @@ resulted in a user acquiring permanent membership in a group. To remove a user from a group the user was in due to a regular expression in version 2.16 or earlier, the user must be explicitly - removed from the group.</para> + removed from the group. This can easily be done by pressing + buttons named 'Remove Memberships' or 'Remove Memberships + included in regular expression' under the table.</para> </note> <warning> <para>If specifying a domain in the regexp, make sure you end diff --git a/docs/xml/faq.xml b/docs/xml/faq.xml index 1aded43e0c40b6a7367df6454a4fe8f02f053297..816508839ab6535157d62b7d5f837adf3723b095 100644 --- a/docs/xml/faq.xml +++ b/docs/xml/faq.xml @@ -896,6 +896,8 @@ password=mypassword <answer> <para> To disable email, set the + <option>mail_delivery_method</option> parameter to + <literal>none</literal> (2.20 and later), or <programlisting>$enableSendMail</programlisting> parameter to '0' in either <filename>BugMail.pm</filename> (2.18 and later) or <filename>processmail</filename> (up to 2.16.x). @@ -1021,7 +1023,7 @@ password=mypassword Double-check that you have not turned off email in your user preferences. Confirm that Bugzilla is able to send email by visiting the <quote>Log In</quote> link of your Bugzilla - installation and clicking the <quote>Email me a password</quote> + installation and clicking the <quote>Submit Request</quote> button after entering your email address. </para> <para> @@ -1356,7 +1358,7 @@ password=mypassword have your choice of patches: <simplelist> <member> - <ulink url="http://bugzilla.mozilla.org/show_bug?id=35195">Bug 35195</ulink> + <ulink url="http://bugzilla.mozilla.org/show_bug.cgi?id=35195">Bug 35195</ulink> seeks to add an <quote>...and accept the bug</quote> checkbox to the UI. It has two patches attached to it: <ulink url="http://bugzilla.mozilla.org/showattachment.cgi?attach_id=8029">attachment 8029</ulink> @@ -1365,7 +1367,7 @@ password=mypassword is an updated version for Bugzilla 2.16 </member> <member> - <ulink url="http://bugzilla.mozilla.org/show_bug?id=37613">Bug + <ulink url="http://bugzilla.mozilla.org/show_bug.cgi?id=37613">Bug 37613</ulink> also provides two patches (against Bugzilla 2.12): one to add a 'Take Bug' option, and the other to automatically reassign the bug on 'Accept'. diff --git a/docs/xml/glossary.xml b/docs/xml/glossary.xml index 08ad45524dac0be69c98a5a9b2cb99bca4168715..79fb2baebd4d4b35de69bbfe8724e27b0ea245f7 100644 --- a/docs/xml/glossary.xml +++ b/docs/xml/glossary.xml @@ -269,10 +269,11 @@ <glossdef> <para>A Message Transport Agent is used to control the flow of email - on a system. Many unix based systems use - <ulink url="http://www.sendmail.org">sendmail</ulink> which is what - Bugzilla expects to find by default at <filename>/usr/sbin/sendmail</filename>. - Many other MTA's will work, but they all require that the + on a system. The <ulink url="http://search.cpan.org/dist/MailTools/Mail/Mailer.pm">Mail::Mailer</ulink> + Perl module, which Bugzilla uses to send email, can be configured to + use many different underlying implementations for actually sending the + mail using the <option>mail_delivery_method</option> parameter. + Implementations other than <literal>sendmail</literal> require that the <option>sendmailnow</option> param be set to <literal>on</literal>. </para> </glossdef> diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml index ec67e5ca9192b1134eacdec453486628805a8592..81b8e18a5561cde75a00608ef736fd9a9cf81a5b 100644 --- a/docs/xml/installation.xml +++ b/docs/xml/installation.xml @@ -1,5 +1,5 @@ <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> --> -<!-- $Id: installation.xml,v 1.98.2.5 2005/08/01 08:41:43 mozilla%colinogilvie.co.uk Exp $ --> +<!-- $Id: installation.xml,v 1.98.2.9 2005/12/30 15:29:01 mozilla%colinogilvie.co.uk Exp $ --> <chapter id="installing-bugzilla"> <title>Installing Bugzilla</title> @@ -211,9 +211,7 @@ The first thing it checks is whether you have appropriate versions of all the required Perl modules. The aim of this section is to pass this check. - When it passes, - <emphasis>do not run it again</emphasis>, - but proceed to <xref linkend="configuration"/>. + When it passes, proceed to <xref linkend="configuration"/>. </para> <para> @@ -533,29 +531,58 @@ <section id="install-MTA"> <title>Mail Transfer Agent (MTA)</title> - <para>Bugzilla is dependent on the availability of an e-mail system for its user - authentication and for other tasks. </para> + <para> + Bugzilla is dependent on the availability of an e-mail system for its + user authentication and for other tasks. + </para> + + <note> + <para> + This is not entirely true. It is possible to completely disable + email sending, or to have Bugzilla store email messages in a + file instead of sending them. However, this is mainly intended + for testing, as disabling or diverting email on a production + machine would mean that users could miss important events (such + as bug changes or the creation of new accouts). + </para> + + <para> + For more information, see the "maildeliverymethod" parameter in + <xref linkend="parameters" />. + </para> + </note> - <para>On Linux, any Sendmail-compatible MTA (Mail Transfer Agent) will suffice. - Sendmail, Postfix, qmail and Exim are examples of common MTAs. Sendmail is the - original Unix MTA, but the others are easier to configure, and therefore many people - replace Sendmail with Postfix or Exim. They are drop-in replacements, so that Bugzilla - will not distinguish between them.</para> + <para> + On Linux, any Sendmail-compatible MTA (Mail Transfer Agent) will + suffice. Sendmail, Postfix, qmail and Exim are examples of common + MTAs. Sendmail is the original Unix MTA, but the others are easier to + configure, and therefore many people replace Sendmail with Postfix or + Exim. They are drop-in replacements, so Bugzilla will not + distinguish between them. + </para> <para> If you are using Sendmail, version 8.7 or higher is required. - If you are using a Sendmail-compatible MTA, it must be congruent with at least version 8.7 of Sendmail. + If you are using a Sendmail-compatible MTA, it must be congruent with + at least version 8.7 of Sendmail. </para> - <para>Consult the manual for the specific MTA you choose for detailed installation - instructions. Each of these programs will have their own configuration files where you must - configure certain parameters to ensure that the mail is delivered properly. They - are implemented as services, and you should ensure that the MTA is in the - auto-start list of services for the machine.</para> + <para> + Consult the manual for the specific MTA you choose for detailed + installation instructions. Each of these programs will have their own + configuration files where you must configure certain parameters to + ensure that the mail is delivered properly. They are implemented + as services, and you should ensure that the MTA is in the auto-start + list of services for the machine. + </para> + + <para> + If a simple mail sent with the command-line 'mail' program + succeeds, then Bugzilla should also be fine. + </para> - <para>If a simple mail sent with the command-line 'mail' program succeeds, then - Bugzilla should also be fine.</para> </section> + </section> @@ -594,6 +621,18 @@ password (for simplicity, it should not contain single quote characters) and put it here. </para> + + <para> + You may need to change the value of + <emphasis>webservergroup</emphasis> if your web server does not + run in the "apache" group. On Debian, for example, Apache runs in + the "www-data" group. If you are going to run Bugzilla on a + machine where you do not have root access (such as on a shared web + hosting account), you will need to leave + <emphasis>webservergroup</emphasis> empty, ignoring the warnings + that <filename>checksetup.pl</filename> will subsequently display + every time it in run. + </para> <para> The other options in the <filename>localconfig</filename> file @@ -1077,69 +1116,6 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s </section> - <section id="http-aol"> - <title>AOL Server</title> - - <para>Ben FrantzDale reported success using AOL Server with Bugzilla. He - reported his experience and what appears below is based on that. - </para> - - <para>AOL Server will have to be configured to run - <glossterm linkend="gloss-cgi">CGI</glossterm> scripts, please consult - the documentation that came with your server for more information on - how to do this. - </para> - - <para>Because AOL Server doesn't support <filename>.htaccess</filename> - files, you'll have to create a <glossterm linkend="gloss-tcl">TCL</glossterm> - script. You should create an <filename>aolserver/modules/tcl/filter.tcl</filename> - file (the filename shouldn't matter) with the following contents (change - <computeroutput>/bugzilla/</computeroutput> to the web-based path to - your Bugzilla installation): - </para> - - <programlisting> - ns_register_filter preauth GET /bugzilla/localconfig filter_deny - ns_register_filter preauth GET /bugzilla/localconfig~ filter_deny - ns_register_filter preauth GET /bugzilla/\#localconfig\# filter_deny - ns_register_filter preauth GET /bugzilla/*.pl filter_deny - ns_register_filter preauth GET /bugzilla/syncshadowdb filter_deny - ns_register_filter preauth GET /bugzilla/data/* filter_deny - ns_register_filter preauth GET /bugzilla/template/* filter_deny - - proc filter_deny { why } { - ns_log Notice "filter_deny" - return "filter_return" - } - </programlisting> - - <warning> - <para>This probably doesn't account for all possible editor backup - files so you may wish to add some additional variations of - <filename>localconfig</filename>. For more information, see - <ulink url="http://bugzilla.mozilla.org/show_bug.cgi?id=186383"> - bug 186383</ulink> or <ulink - url="http://online.securityfocus.com/bid/6501">Bugtraq ID 6501</ulink>. - </para> - </warning> - - <note> - <para>If you are using webdot from research.att.com (the default - configuration for the <option>webdotbase</option> paramater), you - will need to allow access to <filename>data/webdot/*.dot</filename> - for the reasearch.att.com machine. - </para> - <para>If you are using a local installation of <ulink - url="http://www.graphviz.org">GraphViz</ulink>, you will need to allow - everybody to access <filename>*.png</filename>, - <filename>*.gif</filename>, <filename>*.jpg</filename>, and - <filename>*.map</filename> in the - <filename class="directory">data/webdot</filename> directory. - </para> - </note> - </section> - - </section> <section id="install-config-bugzilla"> @@ -1152,6 +1128,14 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s front page. If not, consult the Troubleshooting section, <xref linkend="troubleshooting"/>. </para> + + <note> + <para> + The URL above may be incorrect if you installed Bugzilla into a + subdirectory or used a symbolic link from your web site root to + the Bugzilla directory. + </para> + </note> <para> Log in with the administrator account you defined in the last @@ -1214,6 +1198,19 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s the Reports page. </para> + <para> + When upgrading Bugzilla, this format may change. + To create new status data, (re)move old data and run the following + commands: + </para> + + <screen> + <prompt>bash$</prompt> + <command>cd <your-bugzilla-directory></command> + <prompt>bash$</prompt> + <command>./collectstats.pl --regenerate</command> + </screen> + <note> <para> Windows does not have 'cron', but it does have the Task @@ -1591,52 +1588,13 @@ C:\perl> <command>ppm install <module name></command> </section> <section id="win32-code-changes"> - <title>Code changes required to run on win32</title> + <title>Code changes required to run on Win32</title> <para> - Bugzilla on win32 is mostly supported out of the box; one - remaining issue is related to bug email. To make bug email - work on Win32 (until - <ulink url="http://bugzilla.mozilla.org/show_bug.cgi?id=49893">bug - 49893</ulink> lands), the - simplest way is to have the Net::SMTP Perl module installed and - change this line in the file Bugzilla/Bugmail.pm: - </para> - - <programlisting> -open(SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t -i") || - die "Can't open sendmail"; - -print SENDMAIL trim($msg) . "\n"; -close SENDMAIL; - </programlisting> - - <para> - to - </para> - - <programlisting> -use Net::SMTP; -my $smtp_server = 'smtp.mycompany.com'; # change this - -# Use die on error, so that the mail will be in the 'unsent mails' and -# can be sent from the sanity check page. -my $smtp = Net::SMTP->new($smtp_server) || - die 'Cannot connect to server \'$smtp_server\''; - -$smtp->mail('bugzilla-daemon@mycompany.com'); # change this -$smtp->to($person); -$smtp->data(); -$smtp->datasend($msg); -$smtp->dataend(); -$smtp->quit; - </programlisting> - - <para> - Don't forget to change the name of your SMTP server and the - domain of the sending email address (after the '@') in the - above lines of code. + Bugzilla on Win32 is supported out of the box from version 2.20; this + means that no code changes are required to get Bugzilla running. </para> + </section> <section id="win32-http"> @@ -1663,7 +1621,16 @@ $smtp->quit; </note> </section> + + <section id="win32-email"> + <title>Sending Email</title> + <para> + To enable Bugzilla to send email on Windows, the server running the + Bugzilla code must be able to connect to, or act as, an SMTP server. + </para> + + </section> </section> <section id="os-macosx"> diff --git a/docs/xml/using.xml b/docs/xml/using.xml index 720f461e9dc90ccc0bc8b0061c9e053b04b0aa6a..2fb88c542a96ef47833be04b202e4893f0b97ee2 100644 --- a/docs/xml/using.xml +++ b/docs/xml/using.xml @@ -290,7 +290,7 @@ <section id="query"> <title>Searching for Bugs</title> - <para>The Bugzilla Search page is is the interface where you can find + <para>The Bugzilla Search page is the interface where you can find any bug report, comment, or patch currently in the Bugzilla system. You can play with it here: <ulink url="&landfillbase;query.cgi"/>.</para> @@ -1172,6 +1172,14 @@ appended to the flag name within parentheses. For example, if Jack asks Jill for review, it appears as Jack: review [ ? ] (Jill). </para> + + <para> + You can browse through open requests made of you and by you by selecting + 'My Requests' from the footer. You can also look at open requests limited + by other requesters, requestees, products, components, and flag names from + this page. Note that you can use '-' for requestee to specify flags with + 'no requestee' set. + </para> </section> <section id="whining"> diff --git a/duplicates.cgi b/duplicates.cgi old mode 100644 new mode 100755 diff --git a/editcomponents.cgi b/editcomponents.cgi index 6f8bc99f22efad1b068ab48f2b44a6ce9a62eaf5..1f42b04a72f8d6165fa8f91cf59b51167a26152e 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -332,23 +332,21 @@ if ($action eq 'new') { # For localisation reasons, we get the title of the queries from the # submitted form. my $open_name = $cgi->param('open_name'); - my $closed_name = $cgi->param('closed_name'); - my @openedstatuses = OpenStates(); - my $statuses = - join("&", map { "bug_status=" . url_quote($_) } @openedstatuses) . - $prodcomp; - my $resolved = "field0-0-0=resolution&type0-0-0=notequals&value0-0-0=---" . - $prodcomp; + my $nonopen_name = $cgi->param('nonopen_name'); + my $open_query = "field0-0-0=resolution&type0-0-0=notregexp&value0-0-0=." . + $prodcomp; + my $nonopen_query = "field0-0-0=resolution&type0-0-0=regexp&value0-0-0=." . + $prodcomp; # trick_taint is ok here, as these variables aren't used as a command # or in SQL unquoted trick_taint($open_name); - trick_taint($closed_name); - trick_taint($statuses); - trick_taint($resolved); + trick_taint($nonopen_name); + trick_taint($open_query); + trick_taint($nonopen_query); - push(@series, [$open_name, $statuses]); - push(@series, [$closed_name, $resolved]); + push(@series, [$open_name, $open_query]); + push(@series, [$nonopen_name, $nonopen_query]); foreach my $sdata (@series) { my $series = new Bugzilla::Series(undef, $product, $component, diff --git a/editflagtypes.cgi b/editflagtypes.cgi index bdf0779b4d19527bcfae91e580b51359c4159d29..233f33bdc91751662ae9106b1f9ea1cc043f931e 100755 --- a/editflagtypes.cgi +++ b/editflagtypes.cgi @@ -183,10 +183,12 @@ sub processCategoryChange { push(@exclusions, $category) unless grep($_ eq $category, @exclusions); } elsif ($categoryAction eq 'removeInclusion') { - @inclusions = map(($_ eq $cgi->param('inclusion_to_remove') ? () : $_), @inclusions); + my @inclusion_to_remove = $cgi->param('inclusion_to_remove'); + @inclusions = map {(lsearch(\@inclusion_to_remove, $_) < 0) ? $_ : ()} @inclusions; } elsif ($categoryAction eq 'removeExclusion') { - @exclusions = map(($_ eq $cgi->param('exclusion_to_remove') ? () : $_), @exclusions); + my @exclusion_to_remove = $cgi->param('exclusion_to_remove'); + @exclusions = map {(lsearch(\@exclusion_to_remove, $_) < 0) ? $_ : ()} @exclusions; } # Convert the array @clusions('prod_ID:comp_ID') back to a hash of @@ -488,7 +490,18 @@ sub validateCCList { { cc_list => $cgi->param('cc_list') }); my @addresses = split(/[, ]+/, $cgi->param('cc_list')); - foreach my $address (@addresses) { CheckEmailSyntax($address) } + # We do not call Util::validate_email_syntax because these + # addresses do not require to match 'emailregexp' and do not + # depend on 'emailsuffix'. So we limit ourselves to a simple + # sanity check: + # - match the syntax of a fully qualified email address; + # - do not contain any illegal character. + foreach my $address (@addresses) { + ($address =~ /^[\w\.\+\-=]+@[\w\.\-]+\.[\w\-]+$/ + && $address !~ /[\\\(\)<>&,;:"\[\] \t\r\n]/) + || ThrowUserError('illegal_email_address', + {addr => $address, default => 1}); + } } sub validateProduct { diff --git a/editgroups.cgi b/editgroups.cgi index 5e74163dafd73a7d85c2089b8d310e1a60682003..bc7806df4a6cdc967efc69ad15c6fe54441ebb31 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -22,7 +22,7 @@ # Joel Peshkin <bugreport@peshkin.net> # Jacob Steenhagen <jake@bugzilla.org> # Vlad Dascalu <jocuri@softhome.net> -# Fr�d�ric Buclin <LpSolit@gmail.com> +# Frédéric Buclin <LpSolit@gmail.com> # Code derived from editowners.cgi and editusers.cgi @@ -79,6 +79,34 @@ sub RederiveRegexp ($$) } } +# Add missing entries in bug_group_map for bugs created while +# a mandatory group was disabled and which is now enabled again. +sub fix_bug_permissions { + my $gid = shift; + my $dbh = Bugzilla->dbh; + + detaint_natural($gid); + return unless $gid; + + my $bug_ids = + $dbh->selectcol_arrayref('SELECT bugs.bug_id + FROM bugs + INNER JOIN group_control_map + ON group_control_map.product_id = bugs.product_id + LEFT JOIN bug_group_map + ON bug_group_map.bug_id = bugs.bug_id + AND bug_group_map.group_id = group_control_map.group_id + WHERE group_control_map.group_id = ? + AND group_control_map.membercontrol = ? + AND bug_group_map.group_id IS NULL', + undef, ($gid, CONTROLMAPMANDATORY)); + + my $sth = $dbh->prepare('INSERT INTO bug_group_map (bug_id, group_id) VALUES (?, ?)'); + foreach my $bug_id (@$bug_ids) { + $sth->execute($bug_id, $gid); + } +} + # CheckGroupID checks that a positive integer is given and is # actually a valid group ID. If all tests are successful, the # trimmed group ID is returned. @@ -426,7 +454,8 @@ if ($action eq 'delete') { SendSQL("UPDATE flagtypes SET request_group_id = NULL WHERE request_group_id = $gid"); SendSQL("DELETE FROM user_group_map WHERE group_id = $gid"); - SendSQL("DELETE FROM group_group_map WHERE grantor_id = $gid"); + SendSQL("DELETE FROM group_group_map + WHERE grantor_id = $gid OR member_id = $gid"); SendSQL("DELETE FROM bug_group_map WHERE group_id = $gid"); SendSQL("DELETE FROM group_control_map WHERE group_id = $gid"); SendSQL("DELETE FROM whine_schedules WHERE " . @@ -552,7 +581,8 @@ sub doGroupChanges { my $sth; $dbh->bz_lock_tables('groups WRITE', 'group_group_map WRITE', - 'user_group_map WRITE', 'profiles READ', + 'bug_group_map WRITE', 'user_group_map WRITE', + 'group_control_map READ', 'bugs READ', 'profiles READ', 'namedqueries READ', 'whine_queries READ'); # Check that the given group ID and regular expression are valid. @@ -594,6 +624,11 @@ sub doGroupChanges { $chgs = 1; $sth = $dbh->do("UPDATE groups SET isactive = ? WHERE id = ?", undef, $isactive, $gid); + # If the group was mandatory for some products before + # we deactivated it and we now activate this group again, + # we have to add all bugs created while this group was + # disabled in bug_group_map to correctly protect them. + if ($isactive) { fix_bug_permissions($gid); } } } if ($regexp ne $cgi->param('oldregexp')) { diff --git a/editkeywords.cgi b/editkeywords.cgi index 8ad74710e80b85da812042e6f3016d7be702513a..0d2eb691e6566ebdeabb0a9abd1aebbb531e439e 100755 --- a/editkeywords.cgi +++ b/editkeywords.cgi @@ -48,6 +48,14 @@ sub Validate ($$) { } } +sub ValidateKeyID { + my $id = shift; + + $id = trim($id || 0); + detaint_natural($id) || ThrowCodeError('invalid_keyword_id'); + return $id; +} + # # Preliminary checks: @@ -124,7 +132,7 @@ if ($action eq 'new') { if (FetchOneColumn()) { $vars->{'name'} = $name; - ThrowUserError("keyword_already_exists"); + ThrowUserError("keyword_already_exists", $vars); } @@ -172,8 +180,7 @@ if ($action eq 'new') { # if ($action eq 'edit') { - my $id = trim($cgi->param('id')); - detaint_natural($id); + my $id = ValidateKeyID(scalar $cgi->param('id')); # get data of keyword SendSQL("SELECT name,description @@ -211,8 +218,7 @@ if ($action eq 'edit') { # if ($action eq 'update') { - my $id = $cgi->param('id'); - detaint_natural($id); + my $id = ValidateKeyID(scalar $cgi->param('id')); my $name = trim($cgi->param('name') || ''); my $description = trim($cgi->param('description') || ''); @@ -247,8 +253,7 @@ if ($action eq 'update') { if ($action eq 'delete') { - my $id = $cgi->param('id'); - detaint_natural($id); + my $id = ValidateKeyID(scalar $cgi->param('id')); SendSQL("SELECT name FROM keyworddefs WHERE id=$id"); my $name = FetchOneColumn(); diff --git a/editproducts.cgi b/editproducts.cgi index 568f463fb1524625c53773573220da825db13541..e8bca53504fdd16f671a7feaf5f979c66ddb93a9 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -409,7 +409,7 @@ if (!$action && !$product) { # if ($action eq 'add') { - PutHeader("Add product"); + PutHeader("Add Product"); if (Param('useclassification')) { CheckClassification($classification); @@ -791,7 +791,7 @@ if ($action eq 'delete') { # if ($action eq 'edit' || (!$action && $product)) { - PutHeader("Edit product"); + PutHeader("Edit Product"); CheckProduct($product); my $classification_id=1; if (Param('useclassification')) { @@ -893,7 +893,7 @@ if ($action eq 'edit' || (!$action && $product)) { } print "</TD>\n</TR><TR>\n"; - print " <TH ALIGN=\"right\" VALIGN=\"top\"><A HREF=\"editproducts.cgi?action=editgroupcontrols&product=", url_quote($product), $classhtmlvar,"\">Edit Group Access Controls</A></TH>\n"; + print " <TH ALIGN=\"right\" VALIGN=\"top\"><A HREF=\"editproducts.cgi?action=editgroupcontrols&product=", url_quote($product), $classhtmlvar,"\">Edit Group Access Controls:</A></TH>\n"; print "<TD>\n"; SendSQL("SELECT id, name, isactive, entry, membercontrol, othercontrol, canedit " . "FROM groups, " . @@ -1017,7 +1017,7 @@ if ($action eq 'updategroupcontrols') { exit; } } - PutHeader("Update group access controls for product \"$product\""); + PutHeader("Update group access controls for $product"); $headerdone = 1; SendSQL("SELECT id, name FROM groups " . "WHERE isbuggroup != 0 AND isactive != 0"); diff --git a/editsettings.cgi b/editsettings.cgi old mode 100644 new mode 100755 diff --git a/editusers.cgi b/editusers.cgi index 3eb0061e0533adcf995cddea7fe065e6acaa9be3..5d74374b60e5e0bada5c4c9d77faa8ba7d8288ee 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -14,6 +14,7 @@ # The Original Code is the Bugzilla Bug Tracking System. # # Contributor(s): Marc Schumann <wurblzap@gmail.com> +# Frédéric Buclin <LpSolit@gmail.com> use strict; use lib "."; @@ -30,36 +31,28 @@ use Bugzilla::Config; use Bugzilla::Constants; use Bugzilla::Util; -Bugzilla->login(LOGIN_REQUIRED); +my $user = Bugzilla->login(LOGIN_REQUIRED); my $cgi = Bugzilla->cgi; my $template = Bugzilla->template; my $dbh = Bugzilla->dbh; -my $user = Bugzilla->user; my $userid = $user->id; my $editusers = $user->in_group('editusers'); # Reject access if there is no sense in continuing. $editusers - || Bugzilla->user->can_bless() + || $user->can_bless() || ThrowUserError("auth_failure", {group => "editusers", reason => "cant_bless", action => "edit", object => "users"}); -print Bugzilla->cgi->header(); +print $cgi->header(); # Common CGI params -my $action = $cgi->param('action') || 'search'; -my $login = $cgi->param('login'); -my $password = $cgi->param('password'); -my $groupid = $cgi->param('groupid'); -my $otherUser = new Bugzilla::User($cgi->param('userid')); -my $realname = trim($cgi->param('name') || ''); -my $disabledtext = trim($cgi->param('disabledtext') || ''); - -# Directly from common CGI params derived values -my $otherUserID = $otherUser->id(); +my $action = $cgi->param('action') || 'search'; +my $otherUserID = $cgi->param('userid'); +my $otherUserLogin = $cgi->param('user'); # Prefill template vars with data used in all or nearly all templates $vars->{'editusers'} = $editusers; @@ -77,12 +70,19 @@ if ($action eq 'search') { my $matchstr = $cgi->param('matchstr'); my $matchtype = $cgi->param('matchtype'); my $grouprestrict = $cgi->param('grouprestrict') || '0'; + my $groupid = $cgi->param('groupid'); my $query = 'SELECT DISTINCT userid, login_name, realname, disabledtext ' . 'FROM profiles'; my @bindValues; my $nextCondition; my $visibleGroups; + # If a group ID is given, make sure it is a valid one. + if ($grouprestrict) { + (detaint_natural($groupid) && GroupIdToName($groupid)) + || ThrowUserError('invalid_group_ID'); + } + if (!$editusers && Param('usevisibilitygroups')) { # Show only users in visible groups. $visibleGroups = visibleGroupsAsString(); @@ -133,7 +133,6 @@ if ($action eq 'search') { 'AND ugm.group_id = ?'; # We can trick_taint because we use the value in a SELECT only, # using a placeholder. - trick_taint($groupid); push(@bindValues, $groupid); } $query .= ' ORDER BY profiles.login_name'; @@ -161,6 +160,11 @@ if ($action eq 'search') { action => "add", object => "users"}); + my $login = $cgi->param('login'); + my $password = $cgi->param('password'); + my $realname = trim($cgi->param('name') || ''); + my $disabledtext = trim($cgi->param('disabledtext') || ''); + # Lock tables during the check+creation session. $dbh->bz_lock_tables('profiles WRITE', 'profiles_activity WRITE', @@ -194,8 +198,8 @@ if ($action eq 'search') { ########################################################################### } elsif ($action eq 'edit') { - $otherUser - || ThrowCodeError('invalid_user_id', {'userid' => $cgi->param('userid')}); + my $otherUser = check_user($otherUserID, $otherUserLogin); + $otherUserID = $otherUser->id; $editusers || canSeeUser($otherUserID) || ThrowUserError('auth_failure', {reason => "not_visible", @@ -209,8 +213,9 @@ if ($action eq 'search') { ########################################################################### } elsif ($action eq 'update') { - $otherUser - || ThrowCodeError('invalid_user_id', {'userid' => $cgi->param('userid')}); + my $otherUser = check_user($otherUserID, $otherUserLogin); + $otherUserID = $otherUser->id; + my $logoutNeeded = 0; my @changedFields; @@ -236,9 +241,13 @@ if ($action eq 'search') { # Cleanups my $loginold = $cgi->param('loginold') || ''; my $realnameold = $cgi->param('nameold') || ''; - my $password = $cgi->param('password') || ''; my $disabledtextold = $cgi->param('disabledtextold') || ''; + my $login = $cgi->param('login'); + my $password = $cgi->param('password'); + my $realname = trim($cgi->param('name') || ''); + my $disabledtext = trim($cgi->param('disabledtext') || ''); + # Update profiles table entry; silently skip doing this if the user # is not authorized. if ($editusers) { @@ -283,7 +292,7 @@ if ($action eq 'search') { } if (@changedFields) { push (@values, $otherUserID); - $logoutNeeded && Bugzilla->logout_user_by_id($otherUserID); + $logoutNeeded && Bugzilla->logout_user($otherUser); $dbh->do('UPDATE profiles SET ' . join(' = ?,', @changedFields).' = ? ' . 'WHERE userid = ?', @@ -389,8 +398,8 @@ if ($action eq 'search') { ########################################################################### } elsif ($action eq 'del') { - $otherUser - || ThrowCodeError('invalid_user_id', {'userid' => $cgi->param('userid')}); + my $otherUser = check_user($otherUserID, $otherUserLogin); + $otherUserID = $otherUser->id; Param('allowuserdeletion') || ThrowUserError('users_deletion_disabled'); $editusers || ThrowUserError('auth_failure', {group => "editusers", @@ -414,8 +423,11 @@ if ($action eq 'search') { $vars->{'bugs_activity'} = $dbh->selectrow_array( 'SELECT COUNT(*) FROM bugs_activity WHERE who = ?', undef, $otherUserID); + $vars->{'email_setting'} = $dbh->selectrow_array( + 'SELECT COUNT(*) FROM email_setting WHERE user_id = ?', + undef, $otherUserID); $vars->{'flags'}{'requestee'} = $dbh->selectrow_array( - 'SELECT COUNT(*) FROM flags WHERE requestee_id = ?', + 'SELECT COUNT(*) FROM flags WHERE requestee_id = ? AND is_active = 1', undef, $otherUserID); $vars->{'flags'}{'setter'} = $dbh->selectrow_array( 'SELECT COUNT(*) FROM flags WHERE setter_id = ?', @@ -426,6 +438,9 @@ if ($action eq 'search') { $vars->{'namedqueries'} = $dbh->selectrow_array( 'SELECT COUNT(*) FROM namedqueries WHERE userid = ?', undef, $otherUserID); + $vars->{'profile_setting'} = $dbh->selectrow_array( + 'SELECT COUNT(*) FROM profile_setting WHERE user_id = ?', + undef, $otherUserID); $vars->{'profiles_activity'} = $dbh->selectrow_array( 'SELECT COUNT(*) FROM profiles_activity WHERE who = ? AND userid != ?', undef, ($otherUserID, $otherUserID)); @@ -457,9 +472,8 @@ if ($action eq 'search') { ########################################################################### } elsif ($action eq 'delete') { - $otherUser - || ThrowCodeError('invalid_user_id', {'userid' => $cgi->param('userid')}); - my $otherUserLogin = $otherUser->login(); + my $otherUser = check_user($otherUserID, $otherUserLogin); + $otherUserID = $otherUser->id; # Cache for user accounts. my %usercache = (0 => new Bugzilla::User()); @@ -478,6 +492,8 @@ if ($action eq 'search') { 'logincookies WRITE', 'profiles WRITE', 'profiles_activity WRITE', + 'email_setting WRITE', + 'profile_setting WRITE', 'groups READ', 'bug_group_map READ', 'user_group_map WRITE', @@ -504,7 +520,7 @@ if ($action eq 'search') { @{$otherUser->product_responsibilities()} && ThrowUserError('user_has_responsibility'); - Bugzilla->logout_user_by_id($otherUserID); + Bugzilla->logout_user($otherUser); # Get the timestamp for LogActivityEntry. my $timestamp = $dbh->selectrow_array('SELECT NOW()'); @@ -547,8 +563,12 @@ if ($action eq 'search') { } # Simple deletions in referred tables. + $dbh->do('DELETE FROM email_setting WHERE user_id = ?', undef, + $otherUserID); $dbh->do('DELETE FROM logincookies WHERE userid = ?', undef, $otherUserID); $dbh->do('DELETE FROM namedqueries WHERE userid = ?', undef, $otherUserID); + $dbh->do('DELETE FROM profile_setting WHERE user_id = ?', undef, + $otherUserID); $dbh->do('DELETE FROM profiles_activity WHERE userid = ? OR who = ?', undef, ($otherUserID, $otherUserID)); $dbh->do('DELETE FROM tokens WHERE userid = ?', undef, $otherUserID); @@ -667,7 +687,7 @@ if ($action eq 'search') { $dbh->bz_unlock_tables(); $vars->{'message'} = 'account_deleted'; - $vars->{'otheruser'}{'login'} = $otherUserLogin; + $vars->{'otheruser'}{'login'} = $otherUser->login; $vars->{'restrictablegroups'} = $user->bless_groups(); $template->process('admin/users/search.html.tmpl', $vars) || ThrowTemplateError($template->error()); @@ -690,6 +710,27 @@ exit; # Helpers ########################################################################### +# Try to build a user object using its ID, else its login name, and throw +# an error if the user does not exist. +sub check_user { + my ($otherUserID, $otherUserLogin) = @_; + + my $otherUser; + my $vars = {}; + + if ($otherUserID) { + $otherUser = Bugzilla::User->new($otherUserID); + $vars->{'user_id'} = $otherUserID; + } + elsif ($otherUserLogin) { + $otherUser = Bugzilla::User->new_from_login($otherUserLogin); + $vars->{'user_login'} = $otherUserLogin; + } + ($otherUser && $otherUser->id) || ThrowCodeError('invalid_user', $vars); + + return $otherUser; +} + # Copy incoming list selection values from CGI params to template variables. sub mirrorListSelectionValues { if (defined($cgi->param('matchtype'))) { diff --git a/editvalues.cgi b/editvalues.cgi old mode 100644 new mode 100755 diff --git a/editwhines.cgi b/editwhines.cgi index f7e773fcc78f940c688f1a908194188c999f14fb..f9b376e07f30d5d79eb14d5f227db87a1dd6cce6 100755 --- a/editwhines.cgi +++ b/editwhines.cgi @@ -223,8 +223,8 @@ if ($cgi->param('update')) { else { my $o_day = $cgi->param("orig_day_$sid") || ''; my $day = $cgi->param("day_$sid") || ''; - my $o_time = $cgi->param("orig_time_$sid") || ''; - my $time = $cgi->param("time_$sid") || ''; + my $o_time = $cgi->param("orig_time_$sid") || 0; + my $time = $cgi->param("time_$sid") || 0; my $o_mailto = $cgi->param("orig_mailto_$sid") || ''; my $mailto = $cgi->param("mailto_$sid") || ''; my $o_mailto_type = $cgi->param("orig_mailto_type_$sid") || 0; diff --git a/enter_bug.cgi b/enter_bug.cgi index 00f790de5df0afd304bb46d1c35b70459005831d..3e6b741afbe96375e087b34968facb143fa3023e 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -84,8 +84,17 @@ if (!defined $product || $product eq "") { my %classifications; foreach my $c (GetSelectableClassifications()) { - $classdesc{$c} = $::classdesc{$c}; - $classifications{$c} = $::classifications{$c}; + my $found = 0; + foreach my $p (@enterable_products) { + if (CanEnterProduct($p) + && IsInClassification($c,$p)) { + $found = 1; + } + } + if ($found) { + $classdesc{$c} = $::classdesc{$c}; + $classifications{$c} = $::classifications{$c}; + } } my $classification_size = scalar(keys %classdesc); @@ -330,10 +339,7 @@ GetVersionTable(); my $product_id = get_product_id($product); -if (0 == @{$::components{$product}}) { - ThrowUserError("no_components", {product => $product}); -} -elsif (1 == @{$::components{$product}}) { +if (1 == @{$::components{$product}}) { # Only one component; just pick it. $cgi->param('component', $::components{$product}->[0]); } diff --git a/globals.pl b/globals.pl index 71d2bbe4706adb6f98d9bef22e64f8eca5c9e851..437667e0739187d783520e2b6f8483f3bdc728b1 100644 --- a/globals.pl +++ b/globals.pl @@ -755,7 +755,7 @@ sub get_component_name { # If you want to modify this routine, read the comments carefully sub quoteUrls { - my ($text) = (@_); + my ($text, $curr_bugid) = (@_); return $text unless $text; # We use /g for speed, but uris can have other things inside them @@ -817,6 +817,9 @@ sub quoteUrls { ("\0\0" . ($count-1) . "\0\0") ~egmxi; + # Current bug ID this comment belongs to + my $current_bugurl = $curr_bugid ? "show_bug.cgi?id=$curr_bugid" : ""; + # This handles bug a, comment b type stuff. Because we're using /g # we have to do this in one pattern, and so this is semi-messy. # Also, we can't use $bug_re?$comment_re? because that will match the @@ -827,7 +830,7 @@ sub quoteUrls { ~ # We have several choices. $1 here is the link, and $2-4 are set # depending on which part matched (defined($2) ? GetBugLink($2,$1,$3) : - "<a href=\"#c$4\">$1</a>") + "<a href=\"$current_bugurl#c$4\">$1</a>") ~egox; # Duplicate markers diff --git a/images/CVS/Entries b/images/CVS/Entries index 444102d3e29ec6a93bd5be7e8db4878bf2a3c750..332b458a6846fb91737bb7de878a503c630cbd55 100644 --- a/images/CVS/Entries +++ b/images/CVS/Entries @@ -1,2 +1,2 @@ -/padlock.png/1.2/Thu Sep 23 18:08:31 2004/-kb/TBUGZILLA-2_20 +/padlock.png/1.2/Thu Sep 23 18:08:31 2004/-kb/TBUGZILLA-2_20_1 D diff --git a/images/CVS/Tag b/images/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/images/CVS/Tag +++ b/images/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/js/CVS/Entries b/js/CVS/Entries index ab104526d617b38eec45740a8222ca5f251b0bff..0e1c0ac16ffd61d6457f19b6edb7d622b91f40fb 100644 --- a/js/CVS/Entries +++ b/js/CVS/Entries @@ -1,3 +1,3 @@ -/duplicates.js/1.2/Sun Jan 25 18:47:16 2004//TBUGZILLA-2_20 -/productform.js/1.2/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_20 +/duplicates.js/1.2/Sun Jan 25 18:47:16 2004//TBUGZILLA-2_20_1 +/productform.js/1.2/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_20_1 D diff --git a/js/CVS/Tag b/js/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/js/CVS/Tag +++ b/js/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/long_list.cgi b/long_list.cgi index 04758729d0b2bd3d9019964ab4753813a6a68d35..69a27af46393011f0c6403f5ca391f958f3cd0db 100755 --- a/long_list.cgi +++ b/long_list.cgi @@ -29,11 +29,8 @@ require "CGI.pl"; our $cgi; # Convert comma/space separated elements into separate params -my @ids = (); - -if (defined $cgi->param('buglist')) { - @ids = split (/[, ]+/, $cgi->param('buglist')); -} +my $buglist = $cgi->param('buglist') || $cgi->param('bug_id') || $cgi->param('id'); +my @ids = split (/[\s,]+/, $buglist); my $ids = join('', map { $_ = "&id=" . $_ } @ids); diff --git a/post_bug.cgi b/post_bug.cgi index 84c74bddd5f604cf2667cd39205dfba34036b683..0277229d2fbc1af92e94adcb73d92f0066298f6d 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -110,8 +110,11 @@ my $component_id = get_component_id($product_id, scalar($cgi->param('component'))); $component_id || ThrowUserError("require_component"); +# Set the parameter to itself, but cleaned up +$cgi->param('short_desc', clean_text($cgi->param('short_desc'))); + if (!defined $cgi->param('short_desc') - || trim($cgi->param('short_desc')) eq "") { + || $cgi->param('short_desc') eq "") { ThrowUserError("require_summary"); } @@ -230,6 +233,7 @@ my %ccids; # use a hash rather than a list to avoid adding users twice if (defined $cgi->param('cc')) { foreach my $person ($cgi->param('cc')) { + next unless $person; my $ccid = DBNameToIdAndCheck($person); if ($ccid && !$ccids{$ccid}) { $ccids{$ccid} = 1; @@ -264,7 +268,9 @@ foreach my $field ("dependson", "blocked") { my @validvalues; foreach my $id (split(/[\s,]+/, $cgi->param($field))) { next unless $id; - ValidateBugID($id, $field); + # $field is not passed to ValidateBugID to prevent adding new + # dependencies on inacessible bugs. + ValidateBugID($id); push(@validvalues, $id); } $cgi->param(-name => $field, -value => join(",", @validvalues)); @@ -328,7 +334,7 @@ foreach my $b (grep(/^bit-\d*$/, $cgi->param())) { if ($cgi->param($b)) { my $v = substr($b, 4); detaint_natural($v) - || ThrowCodeError("group_id_invalid"); + || ThrowUserError("invalid_group_ID"); if (!GroupIsActive($v)) { # Prevent the user from adding the bug to an inactive group. # Should only happen if there is a bug in Bugzilla or the user diff --git a/process_bug.cgi b/process_bug.cgi index cf10e0c6ffd086f40ddf11e4a915c151bf3cc903..49c4216ee6592035e3e45fe4317976c10ffad2e5 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -43,6 +43,7 @@ use strict; my $UserInEditGroupSet = -1; my $UserInCanConfirmGroupSet = -1; my $PrivilegesRequired = 0; +my $lastbugid = 0; use lib qw(.); @@ -116,6 +117,9 @@ scalar(@idlist) || ThrowUserError("no_bugs_chosen"); # Make sure form param 'dontchange' is defined so it can be compared to easily. $cgi->param('dontchange','') unless defined $cgi->param('dontchange'); +# Make sure the 'knob' param is defined; else set it to 'none'. +$cgi->param('knob', 'none') unless defined $cgi->param('knob'); + # Validate all timetracking fields foreach my $field ("estimated_time", "work_time", "remaining_time") { if (defined $cgi->param($field)) { @@ -142,14 +146,32 @@ ValidateComment(scalar $cgi->param('comment')); # is a bug alias that gets converted to its corresponding bug ID # during validation. foreach my $field ("dependson", "blocked") { - if ($cgi->param($field)) { - my @validvalues; + if ($cgi->param('id')) { + my $bug = new Bugzilla::Bug($cgi->param('id'), $user->id); + my @old = @{$bug->$field}; + my @new; foreach my $id (split(/[\s,]+/, $cgi->param($field))) { next unless $id; ValidateBugID($id, $field); - push(@validvalues, $id); + push @new, $id; } - $cgi->param($field, join(",", @validvalues)); + $cgi->param($field, join(",", @new)); + my ($added, $removed) = Bugzilla::Util::diff_arrays(\@old, \@new); + foreach my $id (@$added , @$removed) { + # ValidateBugID is called without $field here so that it will + # throw an error if any of the changed bugs are not visible. + ValidateBugID($id); + if (!CheckCanChangeField($field, $bug->bug_id, 0, 1)) { + $vars->{'privs'} = $PrivilegesRequired; + $vars->{'field'} = $field; + ThrowUserError("illegal_change", $vars); + } + } + } else { + # Bugzilla does not support mass-change of dependencies so they + # are not validated. To prevent a URL-hacking risk, the dependencies + # are deleted for mass-changes. + $cgi->delete($field); } } @@ -361,7 +383,6 @@ if (((defined $cgi->param('id') && $cgi->param('product') ne $oldproduct) # now, the rules are pretty simple, and don't look at the field itself very # much, but that could be enhanced. -my $lastbugid = 0; my $ownerid; my $reporterid; my $qacontactid; @@ -589,6 +610,7 @@ if (defined $cgi->param('id')) { CheckFormFieldDefined($cgi, 'bug_file_loc'); CheckFormFieldDefined($cgi, 'short_desc'); CheckFormFieldDefined($cgi, 'longdesclength'); + $cgi->param('short_desc', clean_text($cgi->param('short_desc'))); if (trim($cgi->param('short_desc')) eq "") { ThrowUserError("require_summary"); @@ -913,7 +935,6 @@ if (defined $cgi->param('qa_contact') } } -CheckFormFieldDefined($cgi, 'knob'); SWITCH: for ($cgi->param('knob')) { /^none$/ && do { last SWITCH; diff --git a/report.cgi b/report.cgi index 30c7cade8731519d20d03da5442e40ea650c4df7..5572ae606c5a86b8291e395d9f7796e8a3f97860 100755 --- a/report.cgi +++ b/report.cgi @@ -47,7 +47,7 @@ use Bugzilla::Search; GetVersionTable(); -Bugzilla->login(LOGIN_REQUIRED); +Bugzilla->login(); Bugzilla->switch_to_shadow_db(); @@ -289,7 +289,7 @@ elsif ($action eq "plot") { $vars->{'data'} = \@image_data; } else { - ThrowUserError("unknown_action", {action => $cgi->param('action')}); + ThrowCodeError("unknown_action", {action => $cgi->param('action')}); } my $format = GetFormat("reports/report", $formatparam, $cgi->param('ctype')); diff --git a/request.cgi b/request.cgi index 4c6e7600f227b56ce88c1a136bb0bf5d2733226b..344fb20281d080ad50023d729a6794b1e0ca1cc1 100755 --- a/request.cgi +++ b/request.cgi @@ -95,9 +95,9 @@ sub queue { ON flags.requestee_id = requestees.userid INNER JOIN bugs ON flags.bug_id = bugs.bug_id - LEFT JOIN products + INNER JOIN products ON bugs.product_id = products.id - LEFT JOIN components + INNER JOIN components ON bugs.component_id = components.id LEFT JOIN bug_group_map AS bgmap ON bgmap.bug_id = bugs.bug_id @@ -112,7 +112,9 @@ sub queue { " WHERE ((bgmap.group_id IS NULL) OR (ccmap.who IS NOT NULL AND cclist_accessible = 1) OR (bugs.reporter = $::userid AND bugs.reporter_accessible = 1) OR - (bugs.assigned_to = $::userid))"; + (bugs.assigned_to = $::userid) " . + (Param('useqacontact') ? "OR + (bugs.qa_contact = $::userid))" : ")"); # Non-deleted flags only $query .= " AND flags.is_active = 1 "; diff --git a/sanitycheck.cgi b/sanitycheck.cgi index c091e1041d95974b9bde2b9bf389f01faf15138a..ca35cd893feb97967cec27dfee2268058f6af7bd 100755 --- a/sanitycheck.cgi +++ b/sanitycheck.cgi @@ -150,7 +150,7 @@ if (defined $cgi->param('cleangroupsnow')) { # If any page starts taking longer than one hour to load, this interval # should be revised. SendSQL("SELECT MAX(last_changed) FROM groups WHERE last_changed < NOW() - " . - $dbh->sql_interval('1 HOUR')); + $dbh->sql_interval(1, 'HOUR')); (my $cutoff) = FetchSQLData(); Status("Cutoff is $cutoff"); SendSQL("SELECT COUNT(*) FROM user_group_map"); @@ -220,7 +220,8 @@ if (defined $cgi->param('createmissinggroupcontrolmapentries')) { ON bugs.product_id = gcm.product_id AND bgm.group_id = gcm.group_id WHERE COALESCE(gcm.membercontrol, $na) = $na - } . $dbh->sql_group_by('bugs.product_id, bgm.group_id')); + } . $dbh->sql_group_by('bugs.product_id, bgm.group_id', + 'gcm.membercontrol, groups.name, products.name')); foreach (@$invalid_combinations) { my ($product_id, $group_id, $currentmembercontrol, @@ -245,6 +246,32 @@ if (defined $cgi->param('createmissinggroupcontrolmapentries')) { Status("Repaired $counter defective group control settings."); } +########################################################################### +# Fix missing creation date +########################################################################### + +if (defined $cgi->param('repair_creation_date')) { + Status("OK, now fixing missing bug creation dates"); + + my $bug_ids = $dbh->selectcol_arrayref('SELECT bug_id FROM bugs + WHERE creation_ts IS NULL'); + + my $sth_UpdateDate = $dbh->prepare('UPDATE bugs SET creation_ts = ? + WHERE bug_id = ?'); + + # All bugs have an entry in the 'longdescs' table when they are created, + # even if 'commentoncreate' is turned off. + my $sth_getDate = $dbh->prepare('SELECT MIN(bug_when) FROM longdescs + WHERE bug_id = ?'); + + foreach my $bugid (@$bug_ids) { + $sth_getDate->execute($bugid); + my $date = $sth_getDate->fetchrow_array; + $sth_UpdateDate->execute($date, $bugid); + } + Status(scalar(@$bug_ids) . " bugs have been fixed."); +} + ########################################################################### # Send unsent mail ########################################################################### @@ -255,7 +282,7 @@ if (defined $cgi->param('rescanallBugMail')) { Status("OK, now attempting to send unsent mail"); SendSQL("SELECT bug_id FROM bugs WHERE (lastdiffed IS NULL OR lastdiffed < delta_ts) AND - delta_ts < now() - " . $dbh->sql_interval('30 minute') . + delta_ts < now() - " . $dbh->sql_interval(30, 'MINUTE') . " ORDER BY bug_id"); my @list; while (MoreSQLData()) { @@ -419,6 +446,8 @@ CrossCheck("groups", "id", CrossCheck("profiles", "userid", ['profiles_activity', 'userid'], ['profiles_activity', 'who'], + ['email_setting', 'user_id'], + ['profile_setting', 'user_id'], ["bugs", "reporter", "bug_id"], ["bugs", "assigned_to", "bug_id"], ["bugs", "qa_contact", "bug_id"], @@ -452,22 +481,22 @@ CrossCheck("products", "id", # Check the former enum types -mkanat@bugzilla.org CrossCheck("bug_status", "value", - ["bugs", "bug_status"]); + ["bugs", "bug_status", "bug_id"]); CrossCheck("resolution", "value", - ["bugs", "resolution"]); + ["bugs", "resolution", "bug_id"]); CrossCheck("bug_severity", "value", - ["bugs", "bug_severity"]); + ["bugs", "bug_severity", "bug_id"]); CrossCheck("op_sys", "value", - ["bugs", "op_sys"]); + ["bugs", "op_sys", "bug_id"]); CrossCheck("priority", "value", - ["bugs", "priority"]); + ["bugs", "priority", "bug_id"]); CrossCheck("rep_platform", "value", - ["bugs", "rep_platform"]); + ["bugs", "rep_platform", "bug_id"]); CrossCheck('series', 'series_id', ['series_data', 'series_id']); @@ -750,6 +779,11 @@ sub BugCheck ($$;$$) { } } +Status("Checking for bugs with no creation date (which makes them invisible)"); + +BugCheck("bugs WHERE creation_ts IS NULL", "Bugs with no creation date", + "repair_creation_date", "Repair missing creation date for these bugs"); + Status("Checking resolution/duplicates"); BugCheck("bugs INNER JOIN duplicates ON bugs.bug_id = duplicates.dupe " . @@ -867,7 +901,7 @@ Status("Checking for unsent mail"); SendSQL("SELECT bug_id " . "FROM bugs WHERE (lastdiffed IS NULL OR lastdiffed < delta_ts) AND " . - "delta_ts < now() - " . $dbh->sql_interval('30 minute') . + "delta_ts < now() - " . $dbh->sql_interval(30, 'MINUTE') . " ORDER BY bug_id"); while (@row = FetchSQLData()) { diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index b6739d32eabf376704c260b2e38651e0dd03f251..5fc794e9b2a6f632f75297b0061d7677723335ac 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -232,7 +232,7 @@ if ($webdotbase =~ /^https?:/) { SUFFIX => '.png', DIR => $webdotdir); binmode $pngfh; - open(DOT, "$webdotbase -Tpng $filename|"); + open(DOT, "\"$webdotbase\" -Tpng $filename|"); binmode DOT; print $pngfh $_ while <DOT>; close DOT; @@ -251,7 +251,7 @@ if ($webdotbase =~ /^https?:/) { SUFFIX => '.map', DIR => $webdotdir); binmode $mapfh; - open(DOT, "$webdotbase -Tismap $filename|"); + open(DOT, "\"$webdotbase\" -Tismap $filename|"); binmode DOT; print $mapfh $_ while <DOT>; close DOT; diff --git a/skins/CVS/Tag b/skins/CVS/Tag index 84507d26c5041aeb69e8ccabe5e10972bfb1ecb2..d41053336282a6c1efa06c22f928744d27d4ccc2 100644 --- a/skins/CVS/Tag +++ b/skins/CVS/Tag @@ -1 +1 @@ -TBUGZILLA-2_20 +TBUGZILLA-2_20_1 diff --git a/skins/standard/CVS/Entries b/skins/standard/CVS/Entries index eed9117253344b32048904ec913478bda6d95297..f966f9dd9177a15e4e3d04c13b1c795c6de2f593 100644 --- a/skins/standard/CVS/Entries +++ b/skins/standard/CVS/Entries @@ -1,12 +1,12 @@ -/admin.css/1.1/Mon Feb 28 20:41:43 2005//TBUGZILLA-2_20 -/buglist.css/1.9/Mon Apr 11 22:52:50 2005//TBUGZILLA-2_20 -/duplicates.css/1.2/Fri Nov 15 22:04:04 2002//TBUGZILLA-2_20 -/editusers.css/1.1/Mon Feb 28 20:41:43 2005//TBUGZILLA-2_20 -/global.css/1.12.4.1/Sat Aug 13 14:43:33 2005//TBUGZILLA-2_20 -/index.css/1.2/Thu Feb 3 17:43:38 2005//TBUGZILLA-2_20 -/panel.css/1.1/Wed Dec 12 22:41:11 2001//TBUGZILLA-2_20 -/show_multiple.css/1.2/Tue Nov 2 22:39:16 2004//TBUGZILLA-2_20 -/summarize-time.css/1.1/Mon Feb 28 17:52:57 2005//TBUGZILLA-2_20 -/voting.css/1.1/Tue Feb 8 15:49:57 2005//TBUGZILLA-2_20 +/admin.css/1.1.4.1/Mon Oct 17 21:13:46 2005//TBUGZILLA-2_20_1 +/buglist.css/1.9/Mon Apr 11 22:52:50 2005//TBUGZILLA-2_20_1 +/duplicates.css/1.2/Fri Nov 15 22:04:04 2002//TBUGZILLA-2_20_1 +/editusers.css/1.1/Mon Feb 28 20:41:43 2005//TBUGZILLA-2_20_1 +/global.css/1.12.4.1/Sat Aug 13 14:43:33 2005//TBUGZILLA-2_20_1 +/index.css/1.2.4.1/Sat Dec 3 03:19:44 2005//TBUGZILLA-2_20_1 +/panel.css/1.1/Wed Dec 12 22:41:11 2001//TBUGZILLA-2_20_1 +/show_multiple.css/1.2/Tue Nov 2 22:39:16 2004//TBUGZILLA-2_20_1 +/summarize-time.css/1.1/Mon Feb 28 17:52:57 2005//TBUGZILLA-2_20_1 +/voting.css/1.1/Tue Feb 8 15:49:57 2005//TBUGZILLA-2_20_1 D/global//// D/index//// diff --git a/skins/standard/CVS/Tag b/skins/standard/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/skins/standard/CVS/Tag +++ b/skins/standard/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/skins/standard/admin.css b/skins/standard/admin.css index 1f266b792d6b02f80ea18f8e80e3d2aa4e837bfb..ef02f69d9ad1d728ae8e62c66226721c6e6a4a9b 100644 --- a/skins/standard/admin.css +++ b/skins/standard/admin.css @@ -13,12 +13,20 @@ * Contributor(s): Marc Schumann <wurblzap@gmail.com> */ -ul.warningmessages { +.warningmessages, .criticalmessages { background-color: white; border-style: solid; border-width: 1px; - border-color: yellow; padding: 1ex 1ex 1ex 4ex; + margin: 1ex; +} + +.warningmessages { + border-color: yellow; +} + +.criticalmessages { + border-color: red; } p.areyoureallyreallysure { diff --git a/skins/standard/global/CVS/Entries b/skins/standard/global/CVS/Entries index 028eff6de770525bea47f3fe35eba3db26b6a381..1cad9397af4e9d474d51575cb0cc5681467ea214 100644 --- a/skins/standard/global/CVS/Entries +++ b/skins/standard/global/CVS/Entries @@ -1,3 +1,3 @@ -/body-back.gif/1.1/Fri Mar 11 03:07:18 2005/-kb/TBUGZILLA-2_20 -/header.png/1.1/Thu Feb 3 19:23:17 2005/-kb/TBUGZILLA-2_20 +/body-back.gif/1.1/Fri Mar 11 03:07:18 2005/-kb/TBUGZILLA-2_20_1 +/header.png/1.1/Thu Feb 3 19:23:17 2005/-kb/TBUGZILLA-2_20_1 D diff --git a/skins/standard/global/CVS/Tag b/skins/standard/global/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/skins/standard/global/CVS/Tag +++ b/skins/standard/global/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/skins/standard/index.css b/skins/standard/index.css index cedace45161120cc66aebc729ff2c986cbb5fd59..fe801e1d3b5de3f85bb6134afe58a9ec7eec6bbc 100644 --- a/skins/standard/index.css +++ b/skins/standard/index.css @@ -66,4 +66,4 @@ padding: 1em 0; } -/* index page (end) * +/* index page (end) */ diff --git a/skins/standard/index/CVS/Entries b/skins/standard/index/CVS/Entries index 38bf186cc87f66cd57f0b9e6ee90d28066861591..e211de919c726621138e71d1ee11b4110e0ebae6 100644 --- a/skins/standard/index/CVS/Entries +++ b/skins/standard/index/CVS/Entries @@ -1,3 +1,3 @@ -/front.jpg/1.1/Tue Nov 9 00:16:58 2004/-kb/TBUGZILLA-2_20 -/front.png/1.1/Thu Feb 3 19:23:17 2005/-kb/TBUGZILLA-2_20 +/front.jpg/1.1/Tue Nov 9 00:16:58 2004/-kb/TBUGZILLA-2_20_1 +/front.png/1.1/Thu Feb 3 19:23:17 2005/-kb/TBUGZILLA-2_20_1 D diff --git a/skins/standard/index/CVS/Tag b/skins/standard/index/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/skins/standard/index/CVS/Tag +++ b/skins/standard/index/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/summarize_time.cgi b/summarize_time.cgi old mode 100644 new mode 100755 index eb3aff23067c110fd6fca695f36a99712ee56709..1f8a7bbc8f0b0b4b0e83f39ab9cbb5bdf48bcdc0 --- a/summarize_time.cgi +++ b/summarize_time.cgi @@ -38,17 +38,23 @@ use vars qw($template $vars); # Date handling # -sub date_adjust { +sub date_adjust_down { my ($year, $month, $day) = @_; - if ($month == 13) { - $month = 1; - $year += 1; + if ($day == 0) { + $month -= 1; + $day = 31; + # Proper day adjustment is done later. + + if ($month == 0) { + $year -= 1; + $month = 12; + } } - if ($month == 2 && ($day == 31 || $day == 30 || $day == 29)) { - if ($year % 4 == 0) { + if (($month == 2) && ($day > 28)) { + if ($year % 4 == 0 && $year % 100 != 0) { $day = 29; } else { $day = 28; @@ -63,6 +69,36 @@ sub date_adjust { return ($year, $month, $day); } +sub date_adjust_up { + my ($year, $month, $day) = @_; + + if ($day > 31) { + $month += 1; + $day = 1; + + if ($month == 13) { + $month = 1; + $year += 1; + } + } + + if ($month == 2 && $day > 28) { + if ($year % 4 != 0 || $year % 100 == 0 || $day > 29) { + $month = 3; + $day = 1; + } + } + + if (($month == 4 || $month == 6 || $month == 9 || $month == 11) && + ($day == 31) ) + { + $month += 1; + $day = 1; + } + + return ($year, $month, $day); +} + sub check_dates { my ($start_date, $end_date) = @_; if ($start_date) { @@ -96,46 +132,47 @@ sub split_by_month { my (undef, undef, undef, $sd, $sm, $sy, undef) = strptime($start_date); my (undef, undef, undef, $ed, $em, $ey, undef) = strptime($end_date); - # Find out how many months fit between the two dates so we know many - # many times we loop. + # Find out how many months fit between the two dates so we know + # how many times we loop. my $yd = $ey - $sy; my $md = 12 * $yd + $em - $sm; + # If the end day is smaller than the start day, last interval is not a whole month. + if ($sd > $ed) { + $md -= 1; + } my (@months, $sub_start, $sub_end); # This +1 and +1900 are a result of strptime's bizarre semantics my $year = $sy + 1900; my $month = $sm + 1; - # If both years and months were equals. - if ($md == 0) { - push @months, [sprintf("%04d-%02d-%02d", $year, $month, $sd), - sprintf("%04d-%02d-%02d", $year, $month, $ed)]; - return @months; - } - - # Keep the original $sd, when the day will be changed in the adjust_date. - # Case day > 28 and month = 2, for instance. + # Keep the original date, when the date will be changed in the adjust_date. my $sd_tmp = $sd; - + my $month_tmp = $month; + my $year_tmp = $year; + + # This section handles only the whole months. for (my $i=0; $i < $md; $i++) { - ($year, $month, $sd_tmp) = date_adjust($year, $month, $sd); - $sub_start = sprintf("%04d-%02d-%02d", $year, $month, $sd_tmp); - ($year, $month, $sd_tmp) = date_adjust($year, $month + 1, $sd); - $sub_end = sprintf("%04d-%02d-%02d", $year, $month, $sd_tmp); + # Start of interval is adjusted up: 31.2. -> 1.3. + ($year_tmp, $month_tmp, $sd_tmp) = date_adjust_up($year, $month, $sd); + $sub_start = sprintf("%04d-%02d-%02d", $year_tmp, $month_tmp, $sd_tmp); + $month += 1; + if ($month == 13) { + $month = 1; + $year += 1; + } + # End of interval is adjusted down: 31.2 -> 28.2. + ($year_tmp, $month_tmp, $sd_tmp) = date_adjust_down($year, $month, $sd - 1); + $sub_end = sprintf("%04d-%02d-%02d", $year_tmp, $month_tmp, $sd_tmp); push @months, [$sub_start, $sub_end]; } - # This section handles the last month for cases where the starting - # day and ending day aren't identical; in this case we need to fudge - # the last entry -- either add an extra one (for the extra days) or - # swap the last one for a shorter one (for the fewer days). - my $fixup = sprintf("%04d-%02d-%02d", $ey + 1900, $em + 1, $ed); - if ($sd < $ed) { - push @months, [$sub_end, $fixup]; - } elsif ($sd > $ed) { - pop @months; - push @months, [$sub_start, $fixup]; - } + # This section handles the last (unfinished) month. + $sub_end = sprintf("%04d-%02d-%02d", $ey + 1900, $em + 1, $ed); + ($year_tmp, $month_tmp, $sd_tmp) = date_adjust_up($year, $month, $sd); + $sub_start = sprintf("%04d-%02d-%02d", $year_tmp, $month_tmp, $sd_tmp); + push @months, [$sub_start, $sub_end]; + return @months; } @@ -179,8 +216,10 @@ sub sqlize_dates { } if ($end_date) { # we need to add one day to end_date to catch stuff done today + # do not forget to adjust date if it was the last day of month my (undef, undef, undef, $ed, $em, $ey, undef) = strptime($end_date); - $end_date = sprintf("%04d-%02d-%02d", $ey+1900, $em+1, $ed+1); + ($ey, $em, $ed) = date_adjust_up($ey+1900, $em+1, $ed+1); + $end_date = sprintf("%04d-%02d-%02d", $ey, $em, $ed); $date_bits .= " AND longdescs.bug_when < ?"; push @date_values, $end_date; diff --git a/t/008filter.t b/t/008filter.t index 59d3a2bd708835d8b2621ee639819cfa566e6067..c842b791787728a1ef4ec9a40dd01db0b760ec5c 100644 --- a/t/008filter.t +++ b/t/008filter.t @@ -221,7 +221,7 @@ sub directive_ok { return 1 if $directive =~ /FILTER\ (html|csv|js|url_quote|css_class_quote| ics|quoteUrls|time|uri|xml|lower| obsolete|inactive|closed|unitconvert| - none)/x; + none)\b/x; return 0; } diff --git a/t/CVS/Entries b/t/CVS/Entries index 9d6289a77bce315bae3b119bf42e2a685500a744..368b4ec2cf5863c7f07f51415c4a8d43d857ca2d 100644 --- a/t/CVS/Entries +++ b/t/CVS/Entries @@ -1,14 +1,14 @@ -/001compile.t/1.13/Thu May 26 20:07:35 2005//TBUGZILLA-2_20 -/002goodperl.t/1.15/Wed Sep 8 22:46:34 2004//TBUGZILLA-2_20 -/003safesys.t/1.6/Sun Dec 5 14:13:27 2004//TBUGZILLA-2_20 -/004template.t/1.35.4.1/Fri Aug 5 23:49:16 2005//TBUGZILLA-2_20 -/005no_tabs.t/1.12.10.1/Fri Aug 5 23:49:16 2005//TBUGZILLA-2_20 -/006spellcheck.t/1.5/Wed Feb 2 16:06:51 2005//TBUGZILLA-2_20 -/007util.t/1.6/Tue May 10 20:30:13 2005//TBUGZILLA-2_20 -/008filter.t/1.17.6.1/Fri Aug 5 23:49:16 2005//TBUGZILLA-2_20 -/009bugwords.t/1.2.10.1/Fri Aug 5 23:49:16 2005//TBUGZILLA-2_20 -/011pod.t/1.1.2.2/Wed Jul 27 19:22:25 2005//TBUGZILLA-2_20 -/testchart.gif/1.1/Tue Mar 15 23:58:06 2005/-kb/TBUGZILLA-2_20 -/testchart.png/1.1/Tue Mar 15 23:58:06 2005/-kb/TBUGZILLA-2_20 -/testgd.png/1.1/Tue Mar 15 23:58:06 2005/-kb/TBUGZILLA-2_20 +/001compile.t/1.13/Thu May 26 20:07:35 2005//TBUGZILLA-2_20_1 +/002goodperl.t/1.15/Wed Sep 8 22:46:34 2004//TBUGZILLA-2_20_1 +/003safesys.t/1.6/Sun Dec 5 14:13:27 2004//TBUGZILLA-2_20_1 +/004template.t/1.35.4.1/Fri Aug 5 23:49:16 2005//TBUGZILLA-2_20_1 +/005no_tabs.t/1.12.10.1/Fri Aug 5 23:49:16 2005//TBUGZILLA-2_20_1 +/006spellcheck.t/1.5/Wed Feb 2 16:06:51 2005//TBUGZILLA-2_20_1 +/007util.t/1.6/Tue May 10 20:30:13 2005//TBUGZILLA-2_20_1 +/008filter.t/1.17.6.2/Wed Nov 9 23:13:40 2005//TBUGZILLA-2_20_1 +/009bugwords.t/1.2.10.1/Fri Aug 5 23:49:16 2005//TBUGZILLA-2_20_1 +/011pod.t/1.1.2.2/Wed Jul 27 19:22:25 2005//TBUGZILLA-2_20_1 +/testchart.gif/1.1/Tue Mar 15 23:58:06 2005/-kb/TBUGZILLA-2_20_1 +/testchart.png/1.1/Tue Mar 15 23:58:06 2005/-kb/TBUGZILLA-2_20_1 +/testgd.png/1.1/Tue Mar 15 23:58:06 2005/-kb/TBUGZILLA-2_20_1 D/Support//// diff --git a/t/CVS/Tag b/t/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/t/CVS/Tag +++ b/t/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/t/Support/CVS/Entries b/t/Support/CVS/Entries index 374504b64d41f0cab0ce9cdf493d9ef898cd250f..332660f7c3579ab6b88e05ebea57e1bfd3eb5686 100644 --- a/t/Support/CVS/Entries +++ b/t/Support/CVS/Entries @@ -1,4 +1,4 @@ -/Files.pm/1.20/Mon Dec 6 17:03:00 2004//TBUGZILLA-2_20 -/Systemexec.pm/1.2/Fri Oct 19 22:39:51 2001//TBUGZILLA-2_20 -/Templates.pm/1.13.10.1/Fri Aug 5 23:49:16 2005//TBUGZILLA-2_20 +/Files.pm/1.20/Mon Dec 6 17:03:00 2004//TBUGZILLA-2_20_1 +/Systemexec.pm/1.2/Fri Oct 19 22:39:51 2001//TBUGZILLA-2_20_1 +/Templates.pm/1.13.10.1/Fri Aug 5 23:49:16 2005//TBUGZILLA-2_20_1 D diff --git a/t/Support/CVS/Tag b/t/Support/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/t/Support/CVS/Tag +++ b/t/Support/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/CVS/Entries b/template/CVS/Entries index e8735082ee8c5e905c400bee2780d35c0b226815..eeeafa5c1e5cf0e8e90d636a839483a87adb58e5 100644 --- a/template/CVS/Entries +++ b/template/CVS/Entries @@ -1,2 +1,2 @@ -/.cvsignore/1.3/Tue May 7 21:33:53 2002//TBUGZILLA-2_20 +/.cvsignore/1.3/Tue May 7 21:33:53 2002//TBUGZILLA-2_20_1 D/en//// diff --git a/template/CVS/Tag b/template/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/CVS/Tag +++ b/template/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/CVS/Entries b/template/en/CVS/Entries index 11c27560ba3ef4e0a672b1340b3d59fed4430c1f..a59bbe0e23ab8cbde5fcf8bee17b0ca6e0a86626 100644 --- a/template/en/CVS/Entries +++ b/template/en/CVS/Entries @@ -1,3 +1,3 @@ -/.cvsignore/1.1/Wed Apr 24 07:29:49 2002//TBUGZILLA-2_20 +/.cvsignore/1.1/Wed Apr 24 07:29:49 2002//TBUGZILLA-2_20_1 D/default//// D/extension//// diff --git a/template/en/CVS/Tag b/template/en/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/CVS/Tag +++ b/template/en/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/CVS/Entries b/template/en/default/CVS/Entries index 19a1c247eddd73019eec06ed79fe942ee2f9b6e8..3cfcb94c5b9c1ff38863c362d27c8d9348bd0393 100644 --- a/template/en/default/CVS/Entries +++ b/template/en/default/CVS/Entries @@ -1,8 +1,8 @@ -/config.js.tmpl/1.4/Mon Jun 23 18:01:38 2003//TBUGZILLA-2_20 -/config.rdf.tmpl/1.4/Mon Jun 23 18:01:39 2003//TBUGZILLA-2_20 -/filterexceptions.pl/1.43.2.2/Thu Aug 4 18:29:34 2005//TBUGZILLA-2_20 -/index.html.tmpl/1.23/Tue Apr 12 17:23:01 2005//TBUGZILLA-2_20 -/sidebar.xul.tmpl/1.17/Fri Mar 18 21:32:46 2005//TBUGZILLA-2_20 +/config.js.tmpl/1.4/Mon Jun 23 18:01:38 2003//TBUGZILLA-2_20_1 +/config.rdf.tmpl/1.4/Mon Jun 23 18:01:39 2003//TBUGZILLA-2_20_1 +/filterexceptions.pl/1.43.2.4/Mon Jan 9 19:17:15 2006//TBUGZILLA-2_20_1 +/index.html.tmpl/1.23/Tue Apr 12 17:23:01 2005//TBUGZILLA-2_20_1 +/sidebar.xul.tmpl/1.17/Fri Mar 18 21:32:46 2005//TBUGZILLA-2_20_1 D/account//// D/admin//// D/attachment//// diff --git a/template/en/default/CVS/Tag b/template/en/default/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/CVS/Tag +++ b/template/en/default/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/account/CVS/Entries b/template/en/default/account/CVS/Entries index 44a4641ba094eb3cb59d9cc443246663299b1d7d..fa775b5ec3e7690ea217f9b2e9f9e05e365f980b 100644 --- a/template/en/default/account/CVS/Entries +++ b/template/en/default/account/CVS/Entries @@ -1,7 +1,7 @@ -/cancel-token.txt.tmpl/1.8/Wed Mar 16 21:58:55 2005//TBUGZILLA-2_20 -/create.html.tmpl/1.8/Sun Jan 18 18:39:11 2004//TBUGZILLA-2_20 -/created.html.tmpl/1.6/Sat Mar 12 21:51:16 2005//TBUGZILLA-2_20 -/exists.html.tmpl/1.7/Sun Jan 18 18:39:11 2004//TBUGZILLA-2_20 +/cancel-token.txt.tmpl/1.8/Wed Mar 16 21:58:55 2005//TBUGZILLA-2_20_1 +/create.html.tmpl/1.8/Sun Jan 18 18:39:11 2004//TBUGZILLA-2_20_1 +/created.html.tmpl/1.6/Sat Mar 12 21:51:16 2005//TBUGZILLA-2_20_1 +/exists.html.tmpl/1.7/Sun Jan 18 18:39:11 2004//TBUGZILLA-2_20_1 D/auth//// D/email//// D/password//// diff --git a/template/en/default/account/CVS/Tag b/template/en/default/account/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/account/CVS/Tag +++ b/template/en/default/account/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/account/auth/CVS/Entries b/template/en/default/account/auth/CVS/Entries index aab5f0abb933969ec9cedaf6b42dd534c9fda4ed..9d82128fcc616b425bb6451363d4bbe7c95c79b4 100644 --- a/template/en/default/account/auth/CVS/Entries +++ b/template/en/default/account/auth/CVS/Entries @@ -1,4 +1,4 @@ -/ldap-error.html.tmpl/1.3/Thu Mar 18 16:10:17 2004//TBUGZILLA-2_20 -/login-small.html.tmpl/1.1/Tue Apr 12 17:23:01 2005//TBUGZILLA-2_20 -/login.html.tmpl/1.13/Tue Apr 12 17:23:01 2005//TBUGZILLA-2_20 +/ldap-error.html.tmpl/1.3/Thu Mar 18 16:10:17 2004//TBUGZILLA-2_20_1 +/login-small.html.tmpl/1.1.4.1/Tue Feb 21 00:24:51 2006//TBUGZILLA-2_20_1 +/login.html.tmpl/1.13/Tue Apr 12 17:23:01 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/account/auth/CVS/Tag b/template/en/default/account/auth/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/account/auth/CVS/Tag +++ b/template/en/default/account/auth/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/account/auth/login-small.html.tmpl b/template/en/default/account/auth/login-small.html.tmpl index 85802a7710cb57508e5f3bcf19cf557eae89350b..a6e3b6ddb613b963df7f6c54e40c455377926fa5 100644 --- a/template/en/default/account/auth/login-small.html.tmpl +++ b/template/en/default/account/auth/login-small.html.tmpl @@ -21,7 +21,19 @@ [% PROCESS global/variables.none.tmpl %] -<form name="login" action="[% cgi.script_name FILTER html %]" method="POST"> +[%# Use the current script name. If an empty name is retuned, + # then we are accessing the home page. %] + +[% script_name = cgi.url(Relative => 1) %] + +[%# If SSL is in use, use 'sslbase', else use 'urlbase'. %] +[% IF Param("sslbase") != "" && Param("ssl") != "never" %] + [% script_name = Param("sslbase") _ script_name %] +[% ELSE %] + [% script_name = Param("urlbase") _ script_name %] +[% END %] + +<form name="login" action="[% script_name FILTER html %]" method="POST"> <table> <tr> <td align="right"><b>Login:</b></td> diff --git a/template/en/default/account/email/CVS/Entries b/template/en/default/account/email/CVS/Entries index e2530ef3c0edb027c1a1471097fd9ad0a3b14b17..a5b0151e582fe4acde8151279cc17d6be2ca9739 100644 --- a/template/en/default/account/email/CVS/Entries +++ b/template/en/default/account/email/CVS/Entries @@ -1,4 +1,4 @@ -/change-new.txt.tmpl/1.8/Wed Mar 16 21:58:55 2005//TBUGZILLA-2_20 -/change-old.txt.tmpl/1.9/Wed Mar 16 21:58:55 2005//TBUGZILLA-2_20 -/confirm.html.tmpl/1.9/Thu Mar 18 16:08:52 2004//TBUGZILLA-2_20 +/change-new.txt.tmpl/1.8/Wed Mar 16 21:58:55 2005//TBUGZILLA-2_20_1 +/change-old.txt.tmpl/1.9/Wed Mar 16 21:58:55 2005//TBUGZILLA-2_20_1 +/confirm.html.tmpl/1.9/Thu Mar 18 16:08:52 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/account/email/CVS/Tag b/template/en/default/account/email/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/account/email/CVS/Tag +++ b/template/en/default/account/email/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/account/password/CVS/Entries b/template/en/default/account/password/CVS/Entries index 7cc4f9e9152a916034b9792b18d8e0c2da662e51..d4156ca212977a8eaefedbc3d17982eeaeb83116 100644 --- a/template/en/default/account/password/CVS/Entries +++ b/template/en/default/account/password/CVS/Entries @@ -1,3 +1,3 @@ -/forgotten-password.txt.tmpl/1.7/Wed Mar 16 21:58:55 2005//TBUGZILLA-2_20 -/set-forgotten-password.html.tmpl/1.6/Sun Jan 18 18:39:13 2004//TBUGZILLA-2_20 +/forgotten-password.txt.tmpl/1.7/Wed Mar 16 21:58:55 2005//TBUGZILLA-2_20_1 +/set-forgotten-password.html.tmpl/1.6/Sun Jan 18 18:39:13 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/account/password/CVS/Tag b/template/en/default/account/password/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/account/password/CVS/Tag +++ b/template/en/default/account/password/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/account/prefs/CVS/Entries b/template/en/default/account/prefs/CVS/Entries index 3261ff1016130cdb974a2b0ab7996cb47dd237be..eda06ad0f6f3cfef67349a8952b8e967d6bc8e80 100644 --- a/template/en/default/account/prefs/CVS/Entries +++ b/template/en/default/account/prefs/CVS/Entries @@ -1,8 +1,8 @@ -/account.html.tmpl/1.6/Thu Mar 18 16:11:27 2004//TBUGZILLA-2_20 -/email.html.tmpl/1.21.2.2/Sat Aug 13 14:31:34 2005//TBUGZILLA-2_20 -/footer.html.tmpl/1.5/Thu Mar 18 21:51:16 2004//TBUGZILLA-2_20 -/permissions.html.tmpl/1.6/Sun Jan 18 18:39:13 2004//TBUGZILLA-2_20 -/prefs.html.tmpl/1.18/Mon Jun 20 21:14:43 2005//TBUGZILLA-2_20 -/saved-searches.html.tmpl/1.5.6.1/Wed Aug 3 00:49:12 2005//TBUGZILLA-2_20 -/settings.html.tmpl/1.1.4.1/Tue Sep 27 22:02:30 2005//TBUGZILLA-2_20 +/account.html.tmpl/1.6/Thu Mar 18 16:11:27 2004//TBUGZILLA-2_20_1 +/email.html.tmpl/1.21.2.2/Sat Aug 13 14:31:34 2005//TBUGZILLA-2_20_1 +/footer.html.tmpl/1.5/Thu Mar 18 21:51:16 2004//TBUGZILLA-2_20_1 +/permissions.html.tmpl/1.6/Sun Jan 18 18:39:13 2004//TBUGZILLA-2_20_1 +/prefs.html.tmpl/1.18/Mon Jun 20 21:14:43 2005//TBUGZILLA-2_20_1 +/saved-searches.html.tmpl/1.5.6.2/Mon Oct 17 22:06:56 2005//TBUGZILLA-2_20_1 +/settings.html.tmpl/1.1.4.1/Tue Sep 27 22:02:30 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/account/prefs/CVS/Tag b/template/en/default/account/prefs/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/account/prefs/CVS/Tag +++ b/template/en/default/account/prefs/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/account/prefs/saved-searches.html.tmpl b/template/en/default/account/prefs/saved-searches.html.tmpl index 8827a89ba22fe5cc3f8701a844f1203901f3e410..931b27cc114bf7d541510ec2863d1c0de505151e 100644 --- a/template/en/default/account/prefs/saved-searches.html.tmpl +++ b/template/en/default/account/prefs/saved-searches.html.tmpl @@ -74,7 +74,7 @@ Remove from <a href="editwhines.cgi">whining</a> first [% ELSE %] <a href="buglist.cgi?cmdtype=dorem&remaction=forget&namedcmd= - [% q.name FILTER html %]">Forget</a> + [% q.name FILTER url_quote %]">Forget</a> [% END %] </td> <td align="center"> diff --git a/template/en/default/admin/CVS/Entries b/template/en/default/admin/CVS/Entries index 3e0ee636a6c24fc38525c4aa2d585c5745b499a4..74df24b44f4fc1fbd4d5a990bfcdb2db7139dbea 100644 --- a/template/en/default/admin/CVS/Entries +++ b/template/en/default/admin/CVS/Entries @@ -1,4 +1,4 @@ -/table.html.tmpl/1.5/Tue May 31 15:42:44 2005//TBUGZILLA-2_20 +/table.html.tmpl/1.5/Tue May 31 15:42:44 2005//TBUGZILLA-2_20_1 D/classifications//// D/components//// D/fieldvalues//// diff --git a/template/en/default/admin/CVS/Entries.Log b/template/en/default/admin/CVS/Entries.Log index 39a62c6e88aa48b23800c8337b8b05dbd65a900e..896214eb2eb5a0347959d4c0e280bade01682c91 100644 --- a/template/en/default/admin/CVS/Entries.Log +++ b/template/en/default/admin/CVS/Entries.Log @@ -1,6 +1,8 @@ A D/attachstatus//// A D/common//// +A D/params//// A D/request-type//// R D/request-type//// +R D/params//// R D/common//// R D/attachstatus//// diff --git a/template/en/default/admin/CVS/Tag b/template/en/default/admin/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/CVS/Tag +++ b/template/en/default/admin/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/classifications/CVS/Entries b/template/en/default/admin/classifications/CVS/Entries index 14a951b6304895ce1b0f6adb4af776725bb8c1b7..3317ab50daf47f0cb638e2caddcf18cab3b639fd 100644 --- a/template/en/default/admin/classifications/CVS/Entries +++ b/template/en/default/admin/classifications/CVS/Entries @@ -1,9 +1,9 @@ -/add.html.tmpl/1.1/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_20 -/del.html.tmpl/1.2/Thu Oct 7 07:12:40 2004//TBUGZILLA-2_20 -/delete.html.tmpl/1.1/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_20 -/edit.html.tmpl/1.3/Mon Dec 27 09:58:29 2004//TBUGZILLA-2_20 -/new.html.tmpl/1.2/Mon Dec 27 09:58:29 2004//TBUGZILLA-2_20 -/reclassify.html.tmpl/1.2/Thu Oct 7 07:12:40 2004//TBUGZILLA-2_20 -/select.html.tmpl/1.3/Mon Dec 27 09:58:29 2004//TBUGZILLA-2_20 -/update.html.tmpl/1.1/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_20 +/add.html.tmpl/1.1/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_20_1 +/del.html.tmpl/1.2/Thu Oct 7 07:12:40 2004//TBUGZILLA-2_20_1 +/delete.html.tmpl/1.1/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.3.6.1/Mon Oct 17 22:06:57 2005//TBUGZILLA-2_20_1 +/new.html.tmpl/1.2/Mon Dec 27 09:58:29 2004//TBUGZILLA-2_20_1 +/reclassify.html.tmpl/1.2/Thu Oct 7 07:12:40 2004//TBUGZILLA-2_20_1 +/select.html.tmpl/1.3/Mon Dec 27 09:58:29 2004//TBUGZILLA-2_20_1 +/update.html.tmpl/1.1/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/classifications/CVS/Tag b/template/en/default/admin/classifications/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/classifications/CVS/Tag +++ b/template/en/default/admin/classifications/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/classifications/edit.html.tmpl b/template/en/default/admin/classifications/edit.html.tmpl index fba32ca30201dd93cae3e00a1da9174c3ef9bf6d..fbc3e7db59a71ccc6373233d705c3c8c9b1f9bc9 100644 --- a/template/en/default/admin/classifications/edit.html.tmpl +++ b/template/en/default/admin/classifications/edit.html.tmpl @@ -43,7 +43,7 @@ <th align=right valign=top>[% product.name FILTER html %]</th> <td valign=top> [% IF product.description %] - [% product.description FILTER html %] + [% product.description FILTER none %] [% ELSE %] <font color="red">description missing</font> [% END %] diff --git a/template/en/default/admin/components/CVS/Entries b/template/en/default/admin/components/CVS/Entries index 0024963825aa263a603567bc7b7cc794609500ac..1c3e6f657c0828580af31d23b4f644540bbcf39d 100644 --- a/template/en/default/admin/components/CVS/Entries +++ b/template/en/default/admin/components/CVS/Entries @@ -1,10 +1,10 @@ -/confirm-delete.html.tmpl/1.3/Mon Jun 20 19:16:29 2005//TBUGZILLA-2_20 -/create.html.tmpl/1.3/Mon Jun 20 19:16:29 2005//TBUGZILLA-2_20 -/created.html.tmpl/1.1/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_20 -/deleted.html.tmpl/1.3/Wed Apr 6 00:19:54 2005//TBUGZILLA-2_20 -/edit.html.tmpl/1.4/Mon Jun 20 19:16:29 2005//TBUGZILLA-2_20 -/footer.html.tmpl/1.1/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_20 -/list.html.tmpl/1.2/Mon Jun 20 19:16:29 2005//TBUGZILLA-2_20 -/select-product.html.tmpl/1.1.8.1/Mon Sep 12 18:56:58 2005//TBUGZILLA-2_20 -/updated.html.tmpl/1.2/Mon Jun 20 19:16:29 2005//TBUGZILLA-2_20 +/confirm-delete.html.tmpl/1.3/Mon Jun 20 19:16:29 2005//TBUGZILLA-2_20_1 +/create.html.tmpl/1.3.2.1/Sun Jan 1 21:19:21 2006//TBUGZILLA-2_20_1 +/created.html.tmpl/1.1/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_20_1 +/deleted.html.tmpl/1.3/Wed Apr 6 00:19:54 2005//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.4/Mon Jun 20 19:16:29 2005//TBUGZILLA-2_20_1 +/footer.html.tmpl/1.1/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_20_1 +/list.html.tmpl/1.2/Mon Jun 20 19:16:29 2005//TBUGZILLA-2_20_1 +/select-product.html.tmpl/1.1.8.1/Mon Sep 12 18:56:58 2005//TBUGZILLA-2_20_1 +/updated.html.tmpl/1.2/Mon Jun 20 19:16:29 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/components/CVS/Tag b/template/en/default/admin/components/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/components/CVS/Tag +++ b/template/en/default/admin/components/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/components/create.html.tmpl b/template/en/default/admin/components/create.html.tmpl index 769b61ca15c5f01be0931f1e5dafb03563341f48..fcb57bb03cc92f8ddf0dc1a5ab555b897e6f31c5 100644 --- a/template/en/default/admin/components/create.html.tmpl +++ b/template/en/default/admin/components/create.html.tmpl @@ -76,7 +76,7 @@ <input type="submit" value="Add"> <input type="hidden" name="action" value="new"> <input type="hidden" name='open_name' value='All Open'> - <input type="hidden" name='closed_name' value='All Closed'> + <input type="hidden" name='nonopen_name' value='All Closed'> <input type="hidden" name='product' value="[% product FILTER html %]"> </form> diff --git a/template/en/default/admin/fieldvalues/CVS/Entries b/template/en/default/admin/fieldvalues/CVS/Entries index ecef91a8752ad894e4eeacf189104f931eb4c76f..d1993e7725bd69627fba04351ddca72bf73cdf6a 100644 --- a/template/en/default/admin/fieldvalues/CVS/Entries +++ b/template/en/default/admin/fieldvalues/CVS/Entries @@ -1,10 +1,10 @@ -/confirm-delete.html.tmpl/1.3/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20 -/create.html.tmpl/1.2/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20 -/created.html.tmpl/1.3/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20 -/deleted.html.tmpl/1.2/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20 -/edit.html.tmpl/1.2.2.1/Thu Sep 1 21:57:33 2005//TBUGZILLA-2_20 -/footer.html.tmpl/1.3/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20 -/list.html.tmpl/1.2/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20 -/select-field.html.tmpl/1.2/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20 -/updated.html.tmpl/1.2/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20 +/confirm-delete.html.tmpl/1.3/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20_1 +/create.html.tmpl/1.2/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20_1 +/created.html.tmpl/1.3/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20_1 +/deleted.html.tmpl/1.2/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.2.2.1/Thu Sep 1 21:57:33 2005//TBUGZILLA-2_20_1 +/footer.html.tmpl/1.3/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20_1 +/list.html.tmpl/1.2/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20_1 +/select-field.html.tmpl/1.2/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20_1 +/updated.html.tmpl/1.2/Wed Jun 15 03:55:00 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/fieldvalues/CVS/Tag b/template/en/default/admin/fieldvalues/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/fieldvalues/CVS/Tag +++ b/template/en/default/admin/fieldvalues/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/flag-type/CVS/Entries b/template/en/default/admin/flag-type/CVS/Entries index 8620eb364a3896bef69a3c91b53da19c50a4d4ce..49e3ea835fefd1ae49505bfe8413832b7683b1c3 100644 --- a/template/en/default/admin/flag-type/CVS/Entries +++ b/template/en/default/admin/flag-type/CVS/Entries @@ -1,4 +1,4 @@ -/confirm-delete.html.tmpl/1.5/Sun Jan 18 18:39:14 2004//TBUGZILLA-2_20 -/edit.html.tmpl/1.11/Thu May 5 19:20:45 2005//TBUGZILLA-2_20 -/list.html.tmpl/1.10/Fri Feb 25 15:27:24 2005//TBUGZILLA-2_20 +/confirm-delete.html.tmpl/1.5/Sun Jan 18 18:39:14 2004//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.11.4.1/Fri Dec 2 22:45:19 2005//TBUGZILLA-2_20_1 +/list.html.tmpl/1.10/Fri Feb 25 15:27:24 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/flag-type/CVS/Tag b/template/en/default/admin/flag-type/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/flag-type/CVS/Tag +++ b/template/en/default/admin/flag-type/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/flag-type/edit.html.tmpl b/template/en/default/admin/flag-type/edit.html.tmpl index 8491a1e7fa1bd6bf84d273fb6818b4593ed60c08..bbf99d0f2d472f8694a2159baffb4e123edd69bf 100644 --- a/template/en/default/admin/flag-type/edit.html.tmpl +++ b/template/en/default/admin/flag-type/edit.html.tmpl @@ -17,6 +17,7 @@ # Rights Reserved. # # Contributor(s): Myk Melez <myk@mozilla.org> + # Mark Bickford <markhb@maine.rr.com> #%] [% PROCESS global/variables.none.tmpl %] @@ -213,10 +214,10 @@ <tr> <th></th> <td> - <input type="submit" value=" - [% IF (last_action == "enter" || last_action == "copy") %]Create - [% ELSE %]Save Changes - [% END %]"> + <input type="submit" value=" + [%- IF (last_action == "enter" || last_action == "copy") %]Create + [%- ELSE %]Save Changes + [%- END %]"> </td> </tr> diff --git a/template/en/default/admin/groups/CVS/Entries b/template/en/default/admin/groups/CVS/Entries index 4ebc615ceff75ffe92252eb0eb5d2e2b2ddde336..c3a0b1bca19c677cf9f1cf7bb65a64c271e2345b 100644 --- a/template/en/default/admin/groups/CVS/Entries +++ b/template/en/default/admin/groups/CVS/Entries @@ -1,9 +1,9 @@ -/change.html.tmpl/1.1/Tue Jul 13 05:12:31 2004//TBUGZILLA-2_20 -/create.html.tmpl/1.4/Tue Jul 13 05:12:31 2004//TBUGZILLA-2_20 -/created.html.tmpl/1.1/Tue Jul 13 05:12:32 2004//TBUGZILLA-2_20 -/delete.html.tmpl/1.4.4.1/Sun Jul 31 23:51:40 2005//TBUGZILLA-2_20 -/deleted.html.tmpl/1.1/Tue Jul 13 05:12:32 2004//TBUGZILLA-2_20 -/edit.html.tmpl/1.5/Fri Feb 18 16:38:42 2005//TBUGZILLA-2_20 -/list.html.tmpl/1.1/Tue Jul 13 05:12:32 2004//TBUGZILLA-2_20 -/remove.html.tmpl/1.1/Tue Jul 13 05:12:32 2004//TBUGZILLA-2_20 +/change.html.tmpl/1.1/Tue Jul 13 05:12:31 2004//TBUGZILLA-2_20_1 +/create.html.tmpl/1.4/Tue Jul 13 05:12:31 2004//TBUGZILLA-2_20_1 +/created.html.tmpl/1.1/Tue Jul 13 05:12:32 2004//TBUGZILLA-2_20_1 +/delete.html.tmpl/1.4.4.1/Sun Jul 31 23:51:40 2005//TBUGZILLA-2_20_1 +/deleted.html.tmpl/1.1.8.1/Mon Oct 17 22:06:58 2005//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.5/Fri Feb 18 16:38:42 2005//TBUGZILLA-2_20_1 +/list.html.tmpl/1.1.8.2/Thu Jan 26 17:40:31 2006//TBUGZILLA-2_20_1 +/remove.html.tmpl/1.1/Tue Jul 13 05:12:32 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/groups/CVS/Tag b/template/en/default/admin/groups/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/groups/CVS/Tag +++ b/template/en/default/admin/groups/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/groups/deleted.html.tmpl b/template/en/default/admin/groups/deleted.html.tmpl index fc91190cb64a175ec28733563be63571c0e07476..2a5c2f870d0688b646a158a962792d943261f599 100644 --- a/template/en/default/admin/groups/deleted.html.tmpl +++ b/template/en/default/admin/groups/deleted.html.tmpl @@ -42,7 +42,7 @@ </p> <p> - <a href="editgroups.cgi?action=del&group=[% gid FILTER html %]">View</a> + <a href="editgroups.cgi?action=del&group=[% gid FILTER url_quote %]">View</a> the list of which records are affected. </p> [% ELSE %] diff --git a/template/en/default/admin/groups/list.html.tmpl b/template/en/default/admin/groups/list.html.tmpl index 9e6520244d29f23f622c25cab32c6589bb299a6a..ee1eced11e5075a5f9f304c65aa530305592412d 100644 --- a/template/en/default/admin/groups/list.html.tmpl +++ b/template/en/default/admin/groups/list.html.tmpl @@ -50,15 +50,18 @@ [% FOREACH group = groups %] <tr> - <td>[% group.name FILTER html %]</td> + <td> + <a href="editgroups.cgi?action=changeform&group=[% group.id FILTER url_quote %]"> + [% group.name FILTER html %]</a> + </td> <td>[% group.description FILTER html %]</td> - <td>[% group.regexp FILTER html %] </td> + <td>[% group.regexp FILTER html %] </td> <td align="center"> [% IF (group.isactive != 0) && (group.isbuggroup) %] X [% ELSE %] -   + [% END %] </td> @@ -67,9 +70,10 @@ </td> <td align="center" valign="middle"> - <a href="editgroups.cgi?action=changeform&group=[% group.id FILTER html %]">Edit</a> [% IF (group.isbuggroup) %] - | <a href="editgroups.cgi?action=del&group=[% group.id FILTER html %]">Delete</a> + <a href="editgroups.cgi?action=del&group=[% group.id FILTER url_quote %]">Delete</a> + [% ELSE %] + [% END %] </td> </tr> diff --git a/template/en/default/admin/keywords/CVS/Entries b/template/en/default/admin/keywords/CVS/Entries index 029822ee884ff744938375740e35deb927f5c3f9..950e252cdebbaa6b79350d6c749aa20df8c085b8 100644 --- a/template/en/default/admin/keywords/CVS/Entries +++ b/template/en/default/admin/keywords/CVS/Entries @@ -1,7 +1,7 @@ -/confirm-delete.html.tmpl/1.3/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_20 -/create.html.tmpl/1.4/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_20 -/created.html.tmpl/1.2/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_20 -/edit.html.tmpl/1.3/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_20 -/list.html.tmpl/1.6/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_20 -/rebuild-cache.html.tmpl/1.3/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_20 +/confirm-delete.html.tmpl/1.3/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_20_1 +/create.html.tmpl/1.4/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_20_1 +/created.html.tmpl/1.2/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.3/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_20_1 +/list.html.tmpl/1.6/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_20_1 +/rebuild-cache.html.tmpl/1.3/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/keywords/CVS/Tag b/template/en/default/admin/keywords/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/keywords/CVS/Tag +++ b/template/en/default/admin/keywords/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/milestones/CVS/Entries b/template/en/default/admin/milestones/CVS/Entries index 7613257103206f8a75a8351e3dac8c4de0bd9778..d97ed7b12cb44ca960883198f2ae18637f580d0a 100644 --- a/template/en/default/admin/milestones/CVS/Entries +++ b/template/en/default/admin/milestones/CVS/Entries @@ -1,10 +1,10 @@ -/confirm-delete.html.tmpl/1.3/Sun May 22 14:48:16 2005//TBUGZILLA-2_20 -/create.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20 -/created.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20 -/deleted.html.tmpl/1.3/Sun May 22 14:48:16 2005//TBUGZILLA-2_20 -/edit.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20 -/footer.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20 -/list.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20 -/select-product.html.tmpl/1.2/Thu Sep 23 19:14:13 2004//TBUGZILLA-2_20 -/updated.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20 +/confirm-delete.html.tmpl/1.3/Sun May 22 14:48:16 2005//TBUGZILLA-2_20_1 +/create.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20_1 +/created.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20_1 +/deleted.html.tmpl/1.3/Sun May 22 14:48:16 2005//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20_1 +/footer.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20_1 +/list.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20_1 +/select-product.html.tmpl/1.2/Thu Sep 23 19:14:13 2004//TBUGZILLA-2_20_1 +/updated.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/milestones/CVS/Tag b/template/en/default/admin/milestones/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/milestones/CVS/Tag +++ b/template/en/default/admin/milestones/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/products/CVS/Entries b/template/en/default/admin/products/CVS/Entries index 9a96ef1e13a214c7d110ebe811ceb42f3136aefe..6744710e57542f40b426384c2d1e7f01576bbf65 100644 --- a/template/en/default/admin/products/CVS/Entries +++ b/template/en/default/admin/products/CVS/Entries @@ -1,6 +1,6 @@ -/confirm-delete.html.tmpl/1.1/Thu Jul 7 21:03:04 2005//TBUGZILLA-2_20 -/deleted.html.tmpl/1.1.2.1/Mon Sep 12 19:10:48 2005//TBUGZILLA-2_20 -/footer.html.tmpl/1.3.2.1/Mon Sep 12 19:10:48 2005//TBUGZILLA-2_20 -/list-classifications.html.tmpl/1.1/Thu Mar 17 14:47:06 2005//TBUGZILLA-2_20 -/list.html.tmpl/1.1/Wed Feb 16 18:05:06 2005//TBUGZILLA-2_20 +/confirm-delete.html.tmpl/1.1.2.1/Sat Nov 19 00:48:18 2005//TBUGZILLA-2_20_1 +/deleted.html.tmpl/1.1.2.1/Mon Sep 12 19:10:48 2005//TBUGZILLA-2_20_1 +/footer.html.tmpl/1.3.2.1/Mon Sep 12 19:10:48 2005//TBUGZILLA-2_20_1 +/list-classifications.html.tmpl/1.1/Thu Mar 17 14:47:06 2005//TBUGZILLA-2_20_1 +/list.html.tmpl/1.1/Wed Feb 16 18:05:06 2005//TBUGZILLA-2_20_1 D/groupcontrol//// diff --git a/template/en/default/admin/products/CVS/Tag b/template/en/default/admin/products/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/products/CVS/Tag +++ b/template/en/default/admin/products/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/products/confirm-delete.html.tmpl b/template/en/default/admin/products/confirm-delete.html.tmpl index 672f345e9a59cead3454df8b29497faba2bdb537..dc18eb512f35ce58d01ad30fb084de921dcfcef9 100644 --- a/template/en/default/admin/products/confirm-delete.html.tmpl +++ b/template/en/default/admin/products/confirm-delete.html.tmpl @@ -178,27 +178,29 @@ </td> </tr> - <tr> - <td valign="top"> - [% IF milestones.size > 0 %] - <a href="editmilestones.cgi?product=[%- product_name FILTER url_quote %] - [%- classification_url_part -%]"> + [% IF Param('usetargetmilestone') %] + <tr> + <td valign="top"> + [% IF milestones.size > 0 %] + <a href="editmilestones.cgi?product=[%- product_name FILTER url_quote %] + [%- classification_url_part -%]"> + Milestones: + </a> + [% ELSE %] Milestones: - </a> - [% ELSE %] - Milestones: - [% END %] - </td> - <td> - [% IF milestones.size > 0 %] - [% FOREACH m = milestones %] - [% m FILTER html %]<br> [% END %] - [% ELSE %] - none - [% END %] - </td> - </tr> + </td> + <td> + [% IF milestones.size > 0 %] + [% FOREACH m = milestones %] + [% m FILTER html %]<br> + [% END %] + [% ELSE %] + none + [% END %] + </td> + </tr> + [% END %] <tr> <td>[% terms.Bugs %]:</td> diff --git a/template/en/default/admin/products/groupcontrol/CVS/Entries b/template/en/default/admin/products/groupcontrol/CVS/Entries index 94515b6010ab544d331dc4f4df94350eb0afc5eb..7e7a9b928379019036cfa634ce5fccf094e07a23 100644 --- a/template/en/default/admin/products/groupcontrol/CVS/Entries +++ b/template/en/default/admin/products/groupcontrol/CVS/Entries @@ -1,3 +1,3 @@ -/confirm-edit.html.tmpl/1.5/Mon Feb 2 21:57:28 2004//TBUGZILLA-2_20 -/edit.html.tmpl/1.5/Thu Feb 17 16:31:02 2005//TBUGZILLA-2_20 +/confirm-edit.html.tmpl/1.5.10.1/Mon Jan 9 21:50:00 2006//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.5.4.1/Thu Jan 19 11:30:27 2006//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/products/groupcontrol/CVS/Tag b/template/en/default/admin/products/groupcontrol/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/products/groupcontrol/CVS/Tag +++ b/template/en/default/admin/products/groupcontrol/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl b/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl index 006189c13d78a8facd55f48d457b2551c7bad77c..0af6f68e2b202d3a48c93ab1c18dd733027a38e4 100644 --- a/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl +++ b/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl @@ -36,7 +36,7 @@ which the group is newly mandatory and will be added. group '[% group.name FILTER html %]' impacts [% group.count %] [% terms.bugs %] for which the group is no longer applicable and will be removed.[% END %] -<form method="post" > +<form action="editproducts.cgi" method="post" > [% PROCESS "global/hidden-fields.html.tmpl" exclude="^Bugzilla_(login|password)$" %] diff --git a/template/en/default/admin/products/groupcontrol/edit.html.tmpl b/template/en/default/admin/products/groupcontrol/edit.html.tmpl index 4f13e6f22969a30885d84bf27f4ac721a8e63ac3..188adc6461f9c842ebebf384b610f49b21bc5182 100644 --- a/template/en/default/admin/products/groupcontrol/edit.html.tmpl +++ b/template/en/default/admin/products/groupcontrol/edit.html.tmpl @@ -24,7 +24,7 @@ [% filt_product = product FILTER html %] [% filt_classification = classification FILTER html %] [% PROCESS global/header.html.tmpl - title = "Edit Group Controls for '$filt_product'" + title = "Edit Group Controls for $filt_product" %] <form method="post" action="editproducts.cgi"> diff --git a/template/en/default/admin/settings/CVS/Entries b/template/en/default/admin/settings/CVS/Entries index 54b4b1f21038df72045cf9fe1639cba1a57a80ab..344cbeaee6486ea7d3002043c2a61bfd9264dae5 100644 --- a/template/en/default/admin/settings/CVS/Entries +++ b/template/en/default/admin/settings/CVS/Entries @@ -1,3 +1,3 @@ -/edit.html.tmpl/1.3/Mon Jun 20 21:14:43 2005//TBUGZILLA-2_20 -/updated.html.tmpl/1.2/Mon Jun 20 21:14:43 2005//TBUGZILLA-2_20 +/edit.html.tmpl/1.3/Mon Jun 20 21:14:43 2005//TBUGZILLA-2_20_1 +/updated.html.tmpl/1.2/Mon Jun 20 21:14:43 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/settings/CVS/Tag b/template/en/default/admin/settings/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/settings/CVS/Tag +++ b/template/en/default/admin/settings/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/users/CVS/Entries b/template/en/default/admin/users/CVS/Entries index 9b8bfeb0f85dac33b1bd8ebc10e10edea8b05955..2cab72da54d2d480f6036562360718242898be46 100644 --- a/template/en/default/admin/users/CVS/Entries +++ b/template/en/default/admin/users/CVS/Entries @@ -1,8 +1,8 @@ -/confirm-delete.html.tmpl/1.4.2.1/Thu Aug 4 18:29:34 2005//TBUGZILLA-2_20 -/create.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20 -/edit.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20 -/list.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20 -/listselectvars.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20 -/search.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20 -/userdata.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20 +/confirm-delete.html.tmpl/1.4.2.3/Tue Dec 13 20:20:43 2005//TBUGZILLA-2_20_1 +/create.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20_1 +/list.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20_1 +/listselectvars.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20_1 +/search.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_20_1 +/userdata.html.tmpl/1.1.4.1/Sun Dec 18 16:39:14 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/users/CVS/Tag b/template/en/default/admin/users/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/users/CVS/Tag +++ b/template/en/default/admin/users/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/admin/users/confirm-delete.html.tmpl b/template/en/default/admin/users/confirm-delete.html.tmpl index e8bfe8609d0a1bac36880db73fd8c7a108981a84..71e2068adadd57c9c8a7c1e3ec5a5b56129396d3 100644 --- a/template/en/default/admin/users/confirm-delete.html.tmpl +++ b/template/en/default/admin/users/confirm-delete.html.tmpl @@ -131,252 +131,290 @@ <h2>Confirmation</h2> - [% IF reporter || assignee_or_qa || bug_activity || cc || flags.requestee || - flags.setter || longdescs || namedqueries || profiles_activity || series || - votes || watch.watched || watch.watcher || whine_events || whine_schedules %] - <ul class="warningmessages"> - [% IF reporter %] - <li> - [% otheruser.login FILTER html %] - <a href="buglist.cgi?emailreporter1=1&emailtype1=exact&email1=[% otheruser.login FILTER url_quote %]">has reported - [% IF reporter == 1 %] - one [% terms.bug %] - [% ELSE %] - [%+ reporter %] [%+ terms.bugs %] - [% END %]</a>. - If you delete the user account, the [% terms.bugs %] table in the - database will be inconsistent, resulting in - [% IF reporter == 1 %] - this [% terms.bug %] - [% ELSE %] - these [% terms.bugs %] - [% END %] - not appearing in [% terms.bug %] lists any more. - </li> - [% END %] - [% IF assignee_or_qa %] - <li> - [% otheruser.login FILTER html %] - <a href="buglist.cgi?emailassigned_to1=1&emailqa_contact1=1&emailtype1=exact&email1=[% otheruser.login FILTER url_quote %]">is - the assignee or the QA contact of - [% IF assignee_or_qa == 1 %] - one [% terms.bug %] - [% ELSE %] - [%+ assignee_or_qa %] [%+ terms.bugs %] - [% END %]</a>. - If you delete the user account, these roles will fall back to - the default assignee or default QA contact. - </li> - [% END %] - [% IF bugs_activity %] - <li> - [% otheruser.login FILTER html %] has made - [% IF bugs_activity == 1 %] - a change on [% terms.abug %] - [% ELSE %] - changes on [% terms.bugs %] - [% END %]. - If you delete the user account, the [% terms.bugs %] activity table in - the database will be inconsistent, resulting in - [% IF bugs_activity == 1 %] - this change - [% ELSE %] - these changes - [% END %] - not showing up in [% terms.bug %] activity logs any more. - </li> - [% END %] - [% IF cc %] - <li> - [% otheruser.login FILTER html %] - <a href="buglist.cgi?emailcc1=1&emailtype1=exact&email1=[% otheruser.login FILTER url_quote %]">is - on the CC list of - [% IF cc == 1 %] - [%+ terms.abug %] - [% ELSE %] - [%+ cc %] [%+ terms.bugs %] - [% END %]</a>. - If you delete the user account, it will be removed from these CC - lists. - </li> - [% END %] - [% IF flags.requestee %] - <li> - [% otheruser.login FILTER html %] has been - <a href="buglist.cgi?field0-0-0=requestees.login_name&type0-0-0=equals&value0-0-0=[% otheruser.login FILTER url_quote %]">asked - to set - [% IF flags.requestee == 1 %] - a flag - [% ELSE %] - [% flags.requestee %] flags - [% END %]</a>. - If you delete the user account, - [% IF flags.requestee == 1 %] - this flag - [% ELSE %] - these flags - [% END %] - will change to be unspecifically requested. - </li> - [% END %] - [% IF flags.setter %] - <li> - [% otheruser.login FILTER html %] has - <a href="buglist.cgi?field0-0-0=setters.login_name&type0-0-0=equals&value0-0-0=[% otheruser.login FILTER url_quote %]">set - or requested - [% IF flags.setter == 1 %] - a flag - [% ELSE %] - [%+ flags.setter %] flags - [% END %]</a>. - If you delete the user account, the flags table in the database - will be inconsistent, resulting in - [% IF flags.setter == 1 %] - this flag - [% ELSE %] - these flags - [% END %] - not displaying correctly any more. - </li> - [% END %] - [% IF longdescs %] - <li> - [% otheruser.login FILTER html %] has - <a href="buglist.cgi?emaillongdesc1=1&emailtype1=exact&email1=[% otheruser.login FILTER url_quote %]">commented - [% IF longdescs == 1 %] - once on [% terms.abug %] - [% ELSE %] - [%+ longdescs %] times on [% terms.bugs %] - [% END %]</a>. - If you delete the user account, the comments table in the database - will be inconsistent, resulting in - [% IF longdescs == 1 %] - this comment - [% ELSE %] - these comments - [% END %] - not being visible any more. - </li> - [% END %] - [% IF namedqueries %] - <li> - [% otheruser.login FILTER html %] - has - [% IF namedqueries == 1 %] - a named query - [% ELSE %] - [%+ namedqueries %] named queries - [% END %]. - [% IF namedqueries == 1 %] - This named query - [% ELSE %] - These named queries - [% END %] - will be deleted along with the user account. - </li> - [% END %] - [% IF profiles_activity %] - <li> - [% otheruser.login FILTER html %] has made - [% IF bugs_activity == 1 %] - a change on a other user's profile - [% ELSE %] - changes on other users' profiles - [% END %]. - If you delete the user account, the user profiles activity table in - the database will be inconsistent. - </li> - [% END %] - [% IF series %] - <li> - [% otheruser.login FILTER html %] has created - [% IF series == 1 %] - a series - [% ELSE %] - [%+ series %] series - [% END %]. - [% IF series == 1 %] - This series - [% ELSE %] - These series - [% END %] - will be deleted along with the user account. - </li> - [% END %] - [% IF votes %] - <li> - [% otheruser.login FILTER html %] has voted on - [% IF votes == 1 %] - [%+ terms.abug %] - [% ELSE %] - [%+ votes %] [%+ terms.bugs %] - [% END %]. - If you delete the user account, - [% IF votes == 1 %] - this vote - [% ELSE %] - these votes - [% END %] - will be deleted along with the user account. - </li> - [% END %] - [% IF watch.watched || watch.watcher %] - <li> - [% otheruser.login FILTER html %] - [% IF watch.watched %] - is being watched by - [% IF watch.watched == 1 %] - a user + [% display_warning = 0 %] + + [% IF reporter || bug_activity || flags.setter || longdescs || profiles_activity %] + <div class="criticalmessages"> + <p>The following deletions are <b>highly not recommended</b> and + will generate referential integrity inconsistencies!</p> + + <ul> + [% IF reporter %] + <li> + [% otheruser.login FILTER html %] + <a href="buglist.cgi?emailreporter1=1&emailtype1=exact&email1= + [%- otheruser.login FILTER url_quote %]">has reported + [% IF reporter == 1 %] + one [% terms.bug %] + [% ELSE %] + [%+ reporter %] [%+ terms.bugs %] + [% END %]</a>. + If you delete the user account, the [% terms.bugs %] table in the + database will be inconsistent, resulting in + [% IF reporter == 1 %] + this [% terms.bug %] [% ELSE %] - [%+ watch.watched %] users + these [% terms.bugs %] [% END %] - [% END %] - [% IF watch.watcher %] - [%+ 'and' IF watch.watched %] - watches - [% IF watch.watcher == 1 %] - a user + not appearing in [% terms.bug %] lists any more. + </li> + [% END %] + [% IF bugs_activity %] + <li> + [% otheruser.login FILTER html %] has made + [% IF bugs_activity == 1 %] + a change on [% terms.abug %] + [% ELSE %] + changes on [% terms.bugs %] + [% END %]. + If you delete the user account, the [% terms.bugs %] activity table in + the database will be inconsistent, resulting in + [% IF bugs_activity == 1 %] + this change [% ELSE %] - [%+ watch.watcher %] users + these changes [% END %] - [% END %]. - [% IF watch.watched + watch.watcher == 1 %] - This watching - [% ELSE %] - These watchings - [% END %] - will cease along with the deletion of the user account. - </li> - [% END %] - [% IF whine_events || whine_schedules %] - <li> - [% otheruser.login FILTER html %] - [% IF whine_events %] - has scheduled - [% IF whine_events == 1 %] - a whine + not showing up in [% terms.bug %] activity logs any more. + </li> + [% END %] + [% IF flags.setter %] + <li> + [% otheruser.login FILTER html %] has + <a href="buglist.cgi?field0-0-0=setters.login_name&type0-0-0=equals&value0-0-0= + [%- otheruser.login FILTER url_quote %]">set + or requested + [% IF flags.setter == 1 %] + a flag [% ELSE %] - [%+ whine_events %] whines + [%+ flags.setter %] flags + [% END %]</a>. + If you delete the user account, the flags table in the database + will be inconsistent, resulting in + [% IF flags.setter == 1 %] + this flag + [% ELSE %] + these flags [% END %] - [% END %] - [% IF whine_schedules %] - [%+ 'and' IF whine_events %] - is on the receiving end of - [% IF whine_schedules == 1 %] - a whine + not displaying correctly any more. + </li> + [% END %] + [% IF longdescs %] + <li> + [% otheruser.login FILTER html %] has + <a href="buglist.cgi?emaillongdesc1=1&emailtype1=exact&email1= + [%- otheruser.login FILTER url_quote %]">commented + [% IF longdescs == 1 %] + once on [% terms.abug %] [% ELSE %] - [%+ whine_schedules %] whines + [%+ longdescs %] times on [% terms.bugs %] + [% END %]</a>. + If you delete the user account, the comments table in the database + will be inconsistent, resulting in + [% IF longdescs == 1 %] + this comment + [% ELSE %] + these comments [% END %] - [% END %]. - [% IF whine_events + whine_schedules == 1 %] - This whine - [% ELSE %] - These whines - [% END %] - will be deleted along with the user account. - </li> - [% END %] - </ul> + not being visible any more. + </li> + [% END %] + [% IF profiles_activity %] + <li> + [% otheruser.login FILTER html %] has made + [% IF bugs_activity == 1 %] + a change on a other user's profile + [% ELSE %] + changes on other users' profiles + [% END %]. + If you delete the user account, the user profiles activity table in + the database will be inconsistent. + </li> + [% END %] + </ul> + </div> + [% display_warning = 1 %] + [% END %] + + [% IF assignee_or_qa || cc || email_setting || flags.requestee || + namedqueries || profile_setting || series || votes || watch.watched || + watch.watcher || whine_events || whine_schedules %] + <div class="warningmessages"> + <p>The following deletions are <b>safe</b> and will not generate + referential integrity inconsistencies.</p> + + <ul> + [% IF assignee_or_qa %] + <li> + [% otheruser.login FILTER html %] + <a href="buglist.cgi?emailassigned_to1=1&emailqa_contact1=1&emailtype1=exact&email1= + [%- otheruser.login FILTER url_quote %]">is + the assignee or the QA contact of + [% IF assignee_or_qa == 1 %] + one [% terms.bug %] + [% ELSE %] + [%+ assignee_or_qa %] [%+ terms.bugs %] + [% END %]</a>. + If you delete the user account, these roles will fall back to + the default assignee or default QA contact. + </li> + [% END %] + [% IF cc %] + <li> + [% otheruser.login FILTER html %] + <a href="buglist.cgi?emailcc1=1&emailtype1=exact&email1= + [%- otheruser.login FILTER url_quote %]">is + on the CC list of + [% IF cc == 1 %] + [%+ terms.abug %] + [% ELSE %] + [%+ cc %] [%+ terms.bugs %] + [% END %]</a>. + If you delete the user account, it will be removed from these CC lists. + </li> + [% END %] + [% IF email_setting %] + <li> + The user's e-mail settings will be deleted along with the user + account. + </li> + [% END %] + [% IF flags.requestee %] + <li> + [% otheruser.login FILTER html %] has been + <a href="buglist.cgi?field0-0-0=requestees.login_name&type0-0-0=equals&value0-0-0= + [%- otheruser.login FILTER url_quote %]">asked + to set + [% IF flags.requestee == 1 %] + a flag + [% ELSE %] + [% flags.requestee %] flags + [% END %]</a>. + If you delete the user account, + [% IF flags.requestee == 1 %] + this flag + [% ELSE %] + these flags + [% END %] + will change to be unspecifically requested. + </li> + [% END %] + [% IF namedqueries %] + <li> + [% otheruser.login FILTER html %] has + [% IF namedqueries == 1 %] + a named query + [% ELSE %] + [%+ namedqueries %] named queries + [% END %]. + [% IF namedqueries == 1 %] + This named query + [% ELSE %] + These named queries + [% END %] + will be deleted along with the user account. + </li> + [% END %] + [% IF profile_setting %] + <li> + The user's preference settings will be deleted along with the user + account. + </li> + [% END %] + [% IF series %] + <li> + [% otheruser.login FILTER html %] has created + [% IF series == 1 %] + a series + [% ELSE %] + [%+ series %] series + [% END %]. + [% IF series == 1 %] + This series + [% ELSE %] + These series + [% END %] + will be deleted along with the user account. + </li> + [% END %] + [% IF votes %] + <li> + [% otheruser.login FILTER html %] has voted on + [% IF votes == 1 %] + [%+ terms.abug %] + [% ELSE %] + [%+ votes %] [%+ terms.bugs %] + [% END %]. + If you delete the user account, + [% IF votes == 1 %] + this vote + [% ELSE %] + these votes + [% END %] + will be deleted along with the user account. + </li> + [% END %] + [% IF watch.watched || watch.watcher %] + <li> + [% otheruser.login FILTER html %] + [% IF watch.watched %] + is being watched by + [% IF watch.watched == 1 %] + a user + [% ELSE %] + [%+ watch.watched %] users + [% END %] + [% END %] + [% IF watch.watcher %] + [%+ 'and' IF watch.watched %] + watches + [% IF watch.watcher == 1 %] + a user + [% ELSE %] + [%+ watch.watcher %] users + [% END %] + [% END %]. + [% IF watch.watched + watch.watcher == 1 %] + This watching + [% ELSE %] + These watchings + [% END %] + will cease along with the deletion of the user account. + </li> + [% END %] + [% IF whine_events || whine_schedules %] + <li> + [% otheruser.login FILTER html %] + [% IF whine_events %] + has scheduled + [% IF whine_events == 1 %] + a whine + [% ELSE %] + [%+ whine_events %] whines + [% END %] + [% END %] + [% IF whine_schedules %] + [%+ 'and' IF whine_events %] + is on the receiving end of + [% IF whine_schedules == 1 %] + a whine + [% ELSE %] + [%+ whine_schedules %] whines + [% END %] + [% END %]. + [% IF whine_events + whine_schedules == 1 %] + This whine + [% ELSE %] + These whines + [% END %] + will be deleted along with the user account. + </li> + [% END %] + </ul> + </div> + [% display_warning = 1 %] + [% END %] + + [% IF display_warning %] <p class="areyoureallyreallysure"> Please be aware of the consequences of this before continuing. </p> diff --git a/template/en/default/admin/users/userdata.html.tmpl b/template/en/default/admin/users/userdata.html.tmpl index 43ee627f13934556fb1f99c21d45b884190e505b..a9ee9f4e319c66fcfea11fafabe7308aeceab398 100644 --- a/template/en/default/admin/users/userdata.html.tmpl +++ b/template/en/default/admin/users/userdata.html.tmpl @@ -41,6 +41,7 @@ <td> [% IF editusers %] <input size="64" maxlength="255" name="name" + autocomplete="off" id="name" value="[% otheruser.name FILTER html %]" /> [% IF editform %] <input type="hidden" name="nameold" @@ -56,6 +57,7 @@ <th><label for="password">Password:</label></th> <td> <input type="password" size="16" maxlength="16" name="password" + autocomplete="off" id="password" value="" /> [% IF editform %]<br /> (Enter new password to change.) diff --git a/template/en/default/admin/versions/CVS/Entries b/template/en/default/admin/versions/CVS/Entries index ea0bfa4507d9526fa113c5e3a8635645a6b46327..9016b7bab7cfb99d490e0d5abb116553172c1e4c 100644 --- a/template/en/default/admin/versions/CVS/Entries +++ b/template/en/default/admin/versions/CVS/Entries @@ -1,10 +1,10 @@ -/confirm-delete.html.tmpl/1.3/Sun May 22 14:48:16 2005//TBUGZILLA-2_20 -/create.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20 -/created.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20 -/deleted.html.tmpl/1.2/Wed Apr 6 00:19:55 2005//TBUGZILLA-2_20 -/edit.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20 -/footer.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20 -/list.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20 -/select-product.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20 -/updated.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20 +/confirm-delete.html.tmpl/1.3/Sun May 22 14:48:16 2005//TBUGZILLA-2_20_1 +/create.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20_1 +/created.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20_1 +/deleted.html.tmpl/1.2/Wed Apr 6 00:19:55 2005//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20_1 +/footer.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20_1 +/list.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20_1 +/select-product.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20_1 +/updated.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/admin/versions/CVS/Tag b/template/en/default/admin/versions/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/admin/versions/CVS/Tag +++ b/template/en/default/admin/versions/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/attachment/CVS/Entries b/template/en/default/attachment/CVS/Entries index f4ff329ba106237cff2d9502ecbf63fb05f70800..55fbda29f8efb1638c99af6228a8ead63f79e834 100644 --- a/template/en/default/attachment/CVS/Entries +++ b/template/en/default/attachment/CVS/Entries @@ -1,12 +1,12 @@ -/choose.html.tmpl/1.3/Mon Aug 23 15:34:30 2004//TBUGZILLA-2_20 -/content-types.html.tmpl/1.5/Sun Feb 27 10:07:52 2005//TBUGZILLA-2_20 -/create.html.tmpl/1.20/Sun Feb 20 17:03:10 2005//TBUGZILLA-2_20 -/created.html.tmpl/1.10/Sun Jan 18 18:39:16 2004//TBUGZILLA-2_20 -/diff-file.html.tmpl/1.5/Fri Feb 25 15:27:24 2005//TBUGZILLA-2_20 -/diff-footer.html.tmpl/1.2/Sun Jan 18 18:39:16 2004//TBUGZILLA-2_20 -/diff-header.html.tmpl/1.10/Sun May 22 23:35:22 2005//TBUGZILLA-2_20 -/edit.html.tmpl/1.27/Fri Feb 25 15:27:24 2005//TBUGZILLA-2_20 -/list.html.tmpl/1.21/Thu Jun 16 05:40:32 2005//TBUGZILLA-2_20 -/show-multiple.html.tmpl/1.15/Sun May 30 15:52:13 2004//TBUGZILLA-2_20 -/updated.html.tmpl/1.11/Mon Feb 2 21:57:29 2004//TBUGZILLA-2_20 +/choose.html.tmpl/1.3/Mon Aug 23 15:34:30 2004//TBUGZILLA-2_20_1 +/content-types.html.tmpl/1.5/Sun Feb 27 10:07:52 2005//TBUGZILLA-2_20_1 +/create.html.tmpl/1.20/Sun Feb 20 17:03:10 2005//TBUGZILLA-2_20_1 +/created.html.tmpl/1.10/Sun Jan 18 18:39:16 2004//TBUGZILLA-2_20_1 +/diff-file.html.tmpl/1.5/Fri Feb 25 15:27:24 2005//TBUGZILLA-2_20_1 +/diff-footer.html.tmpl/1.2/Sun Jan 18 18:39:16 2004//TBUGZILLA-2_20_1 +/diff-header.html.tmpl/1.10.2.2/Mon Jan 9 21:50:00 2006//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.27.4.1/Thu Oct 20 02:17:27 2005//TBUGZILLA-2_20_1 +/list.html.tmpl/1.21/Thu Jun 16 05:40:32 2005//TBUGZILLA-2_20_1 +/show-multiple.html.tmpl/1.15/Sun May 30 15:52:13 2004//TBUGZILLA-2_20_1 +/updated.html.tmpl/1.11/Mon Feb 2 21:57:29 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/attachment/CVS/Tag b/template/en/default/attachment/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/attachment/CVS/Tag +++ b/template/en/default/attachment/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/attachment/diff-header.html.tmpl b/template/en/default/attachment/diff-header.html.tmpl index 61d7c14ec140a8cadc319f5a4772d76e9129ed7f..f42d286efa37a469744e6e2494d51f338bcc38ca 100644 --- a/template/en/default/attachment/diff-header.html.tmpl +++ b/template/en/default/attachment/diff-header.html.tmpl @@ -243,12 +243,12 @@ tbody.file pre:empty { [% IF headers %] <a href="[% PROCESS viewurl id=attachid %]">View</a> | <a href="[% PROCESS editurl id=attachid %]">Edit</a> - | <a href="[% PROCESS diffurl id=attachid %]&context=[% context FILTER html %]&collapsed=[% collapsed FILTER html %]&headers=[% headers FILTER html %]&format=raw">Raw Unified</a> + | <a href="[% PROCESS diffurl id=attachid %]&context=[% context FILTER url_quote %]&collapsed=[% collapsed FILTER url_quote %]&headers=[% headers FILTER url_quote %]&format=raw">Raw Unified</a> [% END %] [% IF other_patches.size > 0 %] [% IF headers %] |[%END%] Differences between - <form style="display: inline" action=""> + <form style="display: inline" action="attachment.cgi"> <select name="oldid"> [% FOREACH patch = other_patches %] <option value="[% patch.id %]" @@ -287,19 +287,19 @@ tbody.file pre:empty { [% IF context == "patch" %] (<strong>Patch</strong> / [% ELSE %] - (<a href="[% PROCESS diffurl id=attachid %]&headers=[% headers FILTER html %]">Patch</a> / + (<a href="[% PROCESS diffurl id=attachid %]&headers=[% headers FILTER url_quote %]">Patch</a> / [% END %] [% IF context == "file" %] <strong>File</strong> / [% ELSE %] - <a href="[% PROCESS diffurl id=attachid %]&headers=[% headers FILTER html %]&context=file">File</a> / + <a href="[% PROCESS diffurl id=attachid %]&headers=[% headers FILTER url_quote %]&context=file">File</a> / [% END %] [% IF context == "patch" || context == "file" %] [% context = 3 %] [% END %] [%# textbox for context %] - <form style="display: inline" action=""><input type="hidden" name="action" value="diff"><input type="hidden" name="id" value="[% attachid %]"><input type="hidden" name="collapsed" value="[% collapsed FILTER html %]"><input type="hidden" name="headers" value="[% headers FILTER html %]"><input type="text" name="context" value="[% context FILTER html %]" size="3"></form>) + <form style="display: inline" action="attachment.cgi"><input type="hidden" name="action" value="diff"><input type="hidden" name="id" value="[% attachid %]"><input type="hidden" name="collapsed" value="[% collapsed FILTER html %]"><input type="hidden" name="headers" value="[% headers FILTER html %]"><input type="text" name="context" value="[% context FILTER html %]" size="3"></form>) [% END %] [% IF warning %] @@ -319,7 +319,7 @@ tbody.file pre:empty { [% END %] [%# Restore Stuff %] -<form name="checkboxform" action=""> +<form name="checkboxform" action="attachment.cgi"> <input type="checkbox" name="restore_indicator" style="display: none"> diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl index e46d5e552d1ad934dca37224ddec896c2007019f..3bc802a3a898b12cde514393426a5ab17e595508 100644 --- a/template/en/default/attachment/edit.html.tmpl +++ b/template/en/default/attachment/edit.html.tmpl @@ -184,11 +184,11 @@ var small = document.getElementById('smallCommentFrame'); var big = document.getElementById('editFrame'); - if ( small.style.display == 'none' ) + if ( (small) && (small.style.display == 'none') ) { small.parentNode.removeChild(small); } - if ( big.style.display == 'none' ) + if ( (big) && (big.style.display == 'none') ) { big.parentNode.removeChild(big); } diff --git a/template/en/default/bug/CVS/Entries b/template/en/default/bug/CVS/Entries index 9a161b6d2e9f2347924b21fb6e35b202f0c92022..f2545d639dcc56c94504d12dd870f8a6d59d3449 100644 --- a/template/en/default/bug/CVS/Entries +++ b/template/en/default/bug/CVS/Entries @@ -1,15 +1,15 @@ -/choose.html.tmpl/1.6/Sun Jan 18 18:39:17 2004//TBUGZILLA-2_20 -/comments.html.tmpl/1.18.2.1/Wed Aug 10 01:58:43 2005//TBUGZILLA-2_20 -/dependency-graph.html.tmpl/1.9/Sun Jan 18 18:39:17 2004//TBUGZILLA-2_20 -/dependency-tree.html.tmpl/1.15/Tue May 10 20:56:55 2005//TBUGZILLA-2_20 -/edit.html.tmpl/1.60.2.1/Sun Jul 17 09:19:00 2005//TBUGZILLA-2_20 -/knob.html.tmpl/1.18/Mon Jun 20 19:16:30 2005//TBUGZILLA-2_20 -/navigate.html.tmpl/1.7/Mon Jun 20 19:30:29 2005//TBUGZILLA-2_20 -/show-multiple.html.tmpl/1.24.6.1/Wed Aug 10 01:58:43 2005//TBUGZILLA-2_20 -/show.html.tmpl/1.10/Tue Nov 2 22:50:09 2004//TBUGZILLA-2_20 -/show.xml.tmpl/1.7/Sun Jan 16 20:34:52 2005//TBUGZILLA-2_20 -/summarize-time.html.tmpl/1.1/Mon Feb 28 17:53:09 2005//TBUGZILLA-2_20 -/time.html.tmpl/1.2/Sun Jan 18 18:39:23 2004//TBUGZILLA-2_20 +/choose.html.tmpl/1.6/Sun Jan 18 18:39:17 2004//TBUGZILLA-2_20_1 +/comments.html.tmpl/1.18.2.4/Mon Jan 9 19:17:15 2006//TBUGZILLA-2_20_1 +/dependency-graph.html.tmpl/1.9/Sun Jan 18 18:39:17 2004//TBUGZILLA-2_20_1 +/dependency-tree.html.tmpl/1.15.4.2/Tue Dec 27 18:41:44 2005//TBUGZILLA-2_20_1 +/edit.html.tmpl/1.60.2.4/Sun Feb 12 19:05:02 2006//TBUGZILLA-2_20_1 +/knob.html.tmpl/1.18/Mon Jun 20 19:16:30 2005//TBUGZILLA-2_20_1 +/navigate.html.tmpl/1.7/Mon Jun 20 19:30:29 2005//TBUGZILLA-2_20_1 +/show-multiple.html.tmpl/1.24.6.2/Mon Jan 2 20:47:15 2006//TBUGZILLA-2_20_1 +/show.html.tmpl/1.10/Tue Nov 2 22:50:09 2004//TBUGZILLA-2_20_1 +/show.xml.tmpl/1.7/Sun Jan 16 20:34:52 2005//TBUGZILLA-2_20_1 +/summarize-time.html.tmpl/1.1.4.2/Mon Jan 9 21:50:01 2006//TBUGZILLA-2_20_1 +/time.html.tmpl/1.2/Sun Jan 18 18:39:23 2004//TBUGZILLA-2_20_1 D/activity//// D/create//// D/process//// diff --git a/template/en/default/bug/CVS/Tag b/template/en/default/bug/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/bug/CVS/Tag +++ b/template/en/default/bug/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/bug/activity/CVS/Entries b/template/en/default/bug/activity/CVS/Entries index eab79f409aa98d9dd06358b9789a03b4e60f4cb1..97a06f31f91519f5cbbb4979b2b4c1b2d9f68188 100644 --- a/template/en/default/bug/activity/CVS/Entries +++ b/template/en/default/bug/activity/CVS/Entries @@ -1,3 +1,3 @@ -/show.html.tmpl/1.7/Mon Feb 2 21:57:29 2004//TBUGZILLA-2_20 -/table.html.tmpl/1.9/Wed Jun 1 00:29:55 2005//TBUGZILLA-2_20 +/show.html.tmpl/1.7/Mon Feb 2 21:57:29 2004//TBUGZILLA-2_20_1 +/table.html.tmpl/1.9.2.1/Mon Dec 12 02:15:00 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/bug/activity/CVS/Tag b/template/en/default/bug/activity/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/bug/activity/CVS/Tag +++ b/template/en/default/bug/activity/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/bug/activity/table.html.tmpl b/template/en/default/bug/activity/table.html.tmpl index 661c3ec803f93a17d18c32b9736f11a3b4166338..48fafe847bbb424ca5086fe15a995601730d2cf4 100644 --- a/template/en/default/bug/activity/table.html.tmpl +++ b/template/en/default/bug/activity/table.html.tmpl @@ -76,7 +76,7 @@ [% change.field %] </td> <td> - [% IF change.removed %] + [% IF change.removed.defined %] [% IF change.fieldname == 'estimated_time' || change.fieldname == 'remaining_time' || change.fieldname == 'work_time' %] @@ -93,7 +93,7 @@ [% END %] </td> <td> - [% IF change.added %] + [% IF change.added.defined %] [% IF change.fieldname == 'estimated_time' || change.fieldname == 'remaining_time' || change.fieldname == 'work_time' %] diff --git a/template/en/default/bug/comments.html.tmpl b/template/en/default/bug/comments.html.tmpl index cf279d05d63874a8392801bfdbe0463811ce8276..93cfc4888b5ca8797dc8317aad04dc2886bd4084 100644 --- a/template/en/default/bug/comments.html.tmpl +++ b/template/en/default/bug/comments.html.tmpl @@ -77,10 +77,13 @@ <table> <tr> <td align="left"> - <b><a name="c0" href="#c0">Description</a>:</b> <script - type="text/javascript"><!-- - addReplyLink(0); - //--></script> + <b><a name="c0" href="show_bug.cgi?id=[% bug.bug_id %]#c0"> + Description</a>:</b> + [% IF mode == "edit" %] + [%%]<script type="text/javascript"><!-- + addReplyLink(0); + //--></script> + [% END %] </td> <td align="left" width="30%"> <b>Opened:</b> [% bug.creation_ts FILTER time %] @@ -91,7 +94,8 @@ <br> <span class="bz_comment"> ------- <i>Comment - <a name="c[% count %]" href="#c[% count %]">#[% count %]</a> From + <a name="c[% count %]" href="show_bug.cgi?id=[% bug.bug_id %]#c[% count %]"> + #[% count %]</a> From <a href="mailto:[% comment.email FILTER html %]"> [% comment.name FILTER html %]</a> [%+ comment.time FILTER time %] @@ -130,7 +134,7 @@ [% wrapped_comment = comment.body FILTER wrap_comment %] [% END %] <pre[% ' id="comment_text_' _ count _ '"' IF mode == "edit" %]> - [%- wrapped_comment FILTER quoteUrls -%] + [%- wrapped_comment FILTER quoteUrls(bug.bug_id) -%] </pre> </div> [% END %] diff --git a/template/en/default/bug/create/CVS/Entries b/template/en/default/bug/create/CVS/Entries index bdd1ca429c953a81e3901f169ab6c454f438b588..8a1ec2b9d46da30706be9225872de867d17fbfb3 100644 --- a/template/en/default/bug/create/CVS/Entries +++ b/template/en/default/bug/create/CVS/Entries @@ -1,8 +1,8 @@ -/comment-guided.txt.tmpl/1.4/Thu Apr 7 23:59:59 2005//TBUGZILLA-2_20 -/comment.txt.tmpl/1.3/Thu Apr 7 23:59:59 2005//TBUGZILLA-2_20 -/create-guided.html.tmpl/1.26/Thu Jun 9 09:48:23 2005//TBUGZILLA-2_20 -/create.html.tmpl/1.51.2.1/Sun Aug 21 22:20:17 2005//TBUGZILLA-2_20 -/created.html.tmpl/1.8.10.1/Wed Jul 27 20:56:09 2005//TBUGZILLA-2_20 -/make-template.html.tmpl/1.7/Thu Mar 17 10:47:33 2005//TBUGZILLA-2_20 -/user-message.html.tmpl/1.4/Sun Mar 7 23:27:31 2004//TBUGZILLA-2_20 +/comment-guided.txt.tmpl/1.4/Thu Apr 7 23:59:59 2005//TBUGZILLA-2_20_1 +/comment.txt.tmpl/1.3/Thu Apr 7 23:59:59 2005//TBUGZILLA-2_20_1 +/create-guided.html.tmpl/1.26/Thu Jun 9 09:48:23 2005//TBUGZILLA-2_20_1 +/create.html.tmpl/1.51.2.1/Sun Aug 21 22:20:17 2005//TBUGZILLA-2_20_1 +/created.html.tmpl/1.8.10.1/Wed Jul 27 20:56:09 2005//TBUGZILLA-2_20_1 +/make-template.html.tmpl/1.7/Thu Mar 17 10:47:33 2005//TBUGZILLA-2_20_1 +/user-message.html.tmpl/1.4/Sun Mar 7 23:27:31 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/bug/create/CVS/Tag b/template/en/default/bug/create/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/bug/create/CVS/Tag +++ b/template/en/default/bug/create/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/bug/dependency-tree.html.tmpl b/template/en/default/bug/dependency-tree.html.tmpl index c2e194f7fa74f00702723f26a71fb7e76d1d145a..beee05660a80c0934a2dc66cc8e0a4dacad854c5 100644 --- a/template/en/default/bug/dependency-tree.html.tmpl +++ b/template/en/default/bug/dependency-tree.html.tmpl @@ -76,9 +76,6 @@ [% PROCESS depthControlToolbar %] -[% PROCESS global/footer.html.tmpl %] - - [%###########################################################################%] [%# Block to display a tree #%] [%###########################################################################%] @@ -109,14 +106,12 @@ </ul> [% END %] -[%###########################################################################%] -[%# Block for depth control toolbar #%] -[%###########################################################################%] - - <script type="text/javascript"> -if (!Node) { - /* MSIE doesn't define Node, so provide a compatibility array */ - var Node = { TEXT_NODE: 3, }; +<script type="text/javascript"> +if (typeof Node == 'undefined') { + /* MSIE doesn't define Node, so provide a compatibility object */ + window.Node = { + TEXT_NODE: 3 + }; } function toggleDisplay(node) @@ -124,7 +119,7 @@ function toggleDisplay(node) var display = node.style.display; if (display == "none") { node.style.display = - ("oldDisplay" in node) ? node.oldDisplay : "block"; + ("oldDisplay" in node) ? node.oldDisplay : "block"; return true; } @@ -136,17 +131,26 @@ function toggleDisplay(node) function listToggle(event) { var node = event.target; + if (!node) + node = event.srcElement; if (node.nodeType == Node.TEXT_NODE) node = node.parentNode; var toggle = node.nextSibling; while (toggle && toggle.tagName != "UL") - toggle = toggle.nextSibling; + toggle = toggle.nextSibling; if (toggle) { - node.firstChild.data = toggleDisplay(toggle) ? "[-]" : "[+]"; + node.firstChild.data = toggleDisplay(toggle) ? "[-]" : "[+]"; } } - </script> +</script> + +[% PROCESS global/footer.html.tmpl %] + +[%###########################################################################%] +[%# Block for depth control toolbar #%] +[%###########################################################################%] + [% BLOCK depthControlToolbar %] <table cellpadding="3" border="0" cellspacing="0" bgcolor="#d0d0d0"> <tr> diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index 9f8adbe7114f4398e87a4ca886777e2e2c6a7326..16283d051b0be40d13cfe5aad60a1bdd8396e2e4 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -31,28 +31,30 @@ /* Outputs a link to call replyToComment(); used to reduce HTML output */ function addReplyLink(id) { - /* XXX this should really be updated to use the DOM Core's - * createElement, but finding a container isn't trivial */ - document.write('[<a href="#add_comment" onclick="replyToComment(' + - id + ');">reply<' + '/a>]'); + /* XXX this should really be updated to use the DOM Core's + * createElement, but finding a container isn't trivial. + */ + document.write('[<a href="#add_comment" onclick="replyToComment(' + + id + ');">reply<' + '/a>]'); } /* Adds the reply text to the `comment' textarea */ function replyToComment(id) { - /* pre id="comment_name_N" */ - var text_elem = document.getElementById('comment_text_'+id); - var text = getText(text_elem); - - /* make sure we split on all newlines -- IE or Moz use \r and \n - * respectively */ - text = text.split(/\r|\n/); - - var replytext = ""; - for (var i=0; i < text.length; i++) { - replytext += "> " + text[i] + "\n"; - } + /* pre id="comment_name_N" */ + var text_elem = document.getElementById('comment_text_'+id); + var text = getText(text_elem); + + /* make sure we split on all newlines -- IE or Moz use \r and \n + * respectively. + */ + text = text.split(/\r|\n/); + + var replytext = ""; + for (var i=0; i < text.length; i++) { + replytext += "> " + text[i] + "\n"; + } - replytext = "(In reply to comment #" + id + ")\n" + replytext + "\n"; + replytext = "(In reply to comment #" + id + ")\n" + replytext + "\n"; [% IF Param("insidergroup") && UserInGroup(Param("insidergroup")) %] if (document.getElementById('isprivate-'+id).checked) { @@ -60,56 +62,57 @@ } [% END %] - /* <textarea id="comment"> */ - var textarea = document.getElementById('comment'); - textarea.value += replytext; + /* <textarea id="comment"> */ + var textarea = document.getElementById('comment'); + textarea.value += replytext; - textarea.focus(); + textarea.focus(); } - if (!Node) { - /* MSIE doesn't define Node, so provide a compatibility array */ - var Node = { - TEXT_NODE: 3, - ENTITY_REFERENCE_NODE: 5 - }; + if (typeof Node == 'undefined') { + /* MSIE doesn't define Node, so provide a compatibility object */ + window.Node = { + TEXT_NODE: 3, + ENTITY_REFERENCE_NODE: 5 + }; } /* Concatenates all text from element's childNodes. This is used * instead of innerHTML because we want the actual text (and - * innerText is non-standard) */ + * innerText is non-standard). + */ function getText(element) { - var child, text = ""; - for (var i=0; i < element.childNodes.length; i++) { - child = element.childNodes[i]; - var type = child.nodeType; - if (type == Node.TEXT_NODE || type == Node.ENTITY_REFERENCE_NODE) { - text += child.nodeValue; - } else { - /* recurse into nodes of other types */ - text += getText(child); - } - } - return text; + var child, text = ""; + for (var i=0; i < element.childNodes.length; i++) { + child = element.childNodes[i]; + var type = child.nodeType; + if (type == Node.TEXT_NODE || type == Node.ENTITY_REFERENCE_NODE) { + text += child.nodeValue; + } else { + /* recurse into nodes of other types */ + text += getText(child); + } + } + return text; } [% IF UserInGroup(Param('timetrackinggroup')) %] var fRemainingTime = [% bug.remaining_time %]; // holds the original value function adjustRemainingTime() { - // subtracts time spent from remaining time - var new_time; - - // prevent negative values if work_time > fRemainingTime - new_time = - Math.max(fRemainingTime - document.changeform.work_time.value, 0.0); - // get upto 2 decimal places - document.changeform.remaining_time.value = + // subtracts time spent from remaining time + var new_time; + + // prevent negative values if work_time > fRemainingTime + new_time = + Math.max(fRemainingTime - document.changeform.work_time.value, 0.0); + // get upto 2 decimal places + document.changeform.remaining_time.value = Math.round(new_time * 100)/100; } function updateRemainingTime() { - // if the remaining time is changed manually, update fRemainingTime - fRemainingTime = document.changeform.remaining_time.value; + // if the remaining time is changed manually, update fRemainingTime + fRemainingTime = document.changeform.remaining_time.value; } [% END %] @@ -226,9 +229,9 @@ <tr> <td align="right"> - <b><u>V</u>ersion:</b> + <b>Version:</b> </td> - [% PROCESS select selname => "version" accesskey => "v" %] + [% PROCESS select selname => "version" %] </tr> <tr> @@ -240,9 +243,9 @@ <tr> <td align="right"> - <b><a href="page.cgi?id=fields.html#bug_severity">S<u>e</u>verity</a>:</b> + <b><a href="page.cgi?id=fields.html#bug_severity">Severity</a>:</b> </td> - [% PROCESS select selname = "bug_severity" accesskey => "e" %] + [% PROCESS select selname = "bug_severity" %] </tr> [% IF Param("usetargetmilestone") && bug.target_milestone %] @@ -252,10 +255,10 @@ [% IF bug.milestoneurl %] <a href="[% bug.milestoneurl FILTER html %]"> [% END %] - <u>T</u>arget Milestone[% "</a>" IF bug.milestoneurl %]: + Target Milestone[% "</a>" IF bug.milestoneurl %]: </b> </td> - [% PROCESS select selname = "target_milestone" accesskey => "t" %] + [% PROCESS select selname = "target_milestone" %] </tr> [% END %] @@ -472,7 +475,7 @@ </td> </tr> <tr> - <td colspan="6" align="right"> + <td colspan="7" align="right"> <a href="summarize_time.cgi?id=[% bug.bug_id %]&do_depends=1"> Summarize time (including time for [% terms.bugs %] blocking this [% terms.bug %])</a> @@ -494,8 +497,8 @@ <table> <tr> - [% PROCESS dependencies accesskey = "d" - dep = { title => "<u>d</u>epends on", fieldname => "dependson" } %] + [% PROCESS dependencies + dep = { title => "depends on", fieldname => "dependson" } %] <td rowspan="2"> <a href="showdependencytree.cgi?id=[% bug.bug_id %]">Show dependency tree</a> diff --git a/template/en/default/bug/process/CVS/Entries b/template/en/default/bug/process/CVS/Entries index 564a975dc5112bb95491b08f681455f0c417648f..b7c7c3683a73e134b669a38cb78caf238acd1065 100644 --- a/template/en/default/bug/process/CVS/Entries +++ b/template/en/default/bug/process/CVS/Entries @@ -1,8 +1,8 @@ -/bugmail.html.tmpl/1.4/Sun Jan 18 18:39:25 2004//TBUGZILLA-2_20 -/confirm-duplicate.html.tmpl/1.9/Fri Apr 8 00:45:47 2005//TBUGZILLA-2_20 -/header.html.tmpl/1.3/Sun Jan 18 18:39:25 2004//TBUGZILLA-2_20 -/midair.html.tmpl/1.13/Fri Apr 8 00:45:47 2005//TBUGZILLA-2_20 -/next.html.tmpl/1.5/Wed May 12 05:03:27 2004//TBUGZILLA-2_20 -/results.html.tmpl/1.9/Thu Mar 17 06:13:15 2005//TBUGZILLA-2_20 -/verify-new-product.html.tmpl/1.15.4.1/Tue Jul 12 22:28:00 2005//TBUGZILLA-2_20 +/bugmail.html.tmpl/1.4/Sun Jan 18 18:39:25 2004//TBUGZILLA-2_20_1 +/confirm-duplicate.html.tmpl/1.9/Fri Apr 8 00:45:47 2005//TBUGZILLA-2_20_1 +/header.html.tmpl/1.3/Sun Jan 18 18:39:25 2004//TBUGZILLA-2_20_1 +/midair.html.tmpl/1.13.4.2/Mon Jan 9 19:02:53 2006//TBUGZILLA-2_20_1 +/next.html.tmpl/1.5/Wed May 12 05:03:27 2004//TBUGZILLA-2_20_1 +/results.html.tmpl/1.9/Thu Mar 17 06:13:15 2005//TBUGZILLA-2_20_1 +/verify-new-product.html.tmpl/1.15.4.1/Tue Jul 12 22:28:00 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/bug/process/CVS/Tag b/template/en/default/bug/process/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/bug/process/CVS/Tag +++ b/template/en/default/bug/process/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/bug/process/midair.html.tmpl b/template/en/default/bug/process/midair.html.tmpl index 2c2427616fc69f9e8dc83fd81ddf420bc2f2c3c7..01b9916dd1522674dc026e92a81117036dfc4a0f 100644 --- a/template/en/default/bug/process/midair.html.tmpl +++ b/template/en/default/bug/process/midair.html.tmpl @@ -57,14 +57,14 @@ <p> Added the comment(s): <blockquote> - [% PROCESS "bug/comments.html.tmpl" %] + [% PROCESS "bug/comments.html.tmpl" bug = { 'bug_id' => bug_id } %] </blockquote> </p> [% END %] <p> Your comment was:<br> - <blockquote><pre>[% cgi.param("comment") FILTER html %]</pre></blockquote> + <blockquote><pre>[% cgi.param("comment") FILTER wrap_comment FILTER html %]</pre></blockquote> </p> <p> diff --git a/template/en/default/bug/show-multiple.html.tmpl b/template/en/default/bug/show-multiple.html.tmpl index caacad766de68409b4ca661f08445687af992d63..c1eb27c75b84cc305597e2bc11fdfdc09f0153a0 100644 --- a/template/en/default/bug/show-multiple.html.tmpl +++ b/template/en/default/bug/show-multiple.html.tmpl @@ -20,7 +20,7 @@ # Gervase Markham <gerv@gerv.net> #%] -[% PROCESS global/variables.none.tmpl %] +[% PROCESS "global/field-descs.none.tmpl" %] [% PROCESS global/header.html.tmpl title = "Full Text $terms.Bug Listing" @@ -78,8 +78,10 @@ <tr> [% PROCESS cell attr = { description => "OS/Version", name => "op_sys" } %] - [% PROCESS cell attr = { description => "Status", - name => "bug_status" } %] + <td> + <b>Status:</b> + [% status_descs.${bug.bug_status} FILTER html %] + </td> [% PROCESS cell attr = { description => "Severity", name => "bug_severity" } %] [% PROCESS cell attr = { description => "Priority", @@ -87,8 +89,10 @@ </tr> <tr> - [% PROCESS cell attr = { description => "Resolution", - name => "resolution" } %] + <td> + <b>Resolution:</b> + [% resolution_descs.${bug.resolution} FILTER html %] + </td> <td> <b>Assigned To:</b> [% bug.assigned_to.login FILTER html %] diff --git a/template/en/default/bug/summarize-time.html.tmpl b/template/en/default/bug/summarize-time.html.tmpl index 0bcaeaeb6bbba85add900db36a30e3e24fda40ad..5761b24cfe6bbe911e18b8de20e7e7e66d0041c9 100644 --- a/template/en/default/bug/summarize-time.html.tmpl +++ b/template/en/default/bug/summarize-time.html.tmpl @@ -244,7 +244,7 @@ [% BLOCK query_form %] <hr noshade size=1> -<form method="post" name="summary" style="display: inline" action=""> +<form method="post" name="summary" style="display: inline" action="summarize_time.cgi"> <input type="hidden" name="do_depends" value="[% do_depends FILTER html %]"> <input type="hidden" name="id" value="[% ids.join(",") FILTER html %]"> <input type="hidden" name="do_report" value="1"> @@ -324,6 +324,6 @@ #%] [% BLOCK buglink %] - <a href="show_bug.cgi?id=[% id FILTER html %]"><b>[% terms.Bug %] [% id FILTER html %]</b></a> + <a href="show_bug.cgi?id=[% id FILTER url_quote %]"><b>[% terms.Bug %] [% id FILTER html %]</b></a> [% END %] diff --git a/template/en/default/bug/votes/CVS/Entries b/template/en/default/bug/votes/CVS/Entries index 4af71c4cd299791fcd3f41d52726dc1bbf10d144..f94f112d44630ecd1b76cf840a5b72dc36592c23 100644 --- a/template/en/default/bug/votes/CVS/Entries +++ b/template/en/default/bug/votes/CVS/Entries @@ -1,4 +1,4 @@ -/delete-all.html.tmpl/1.6/Sun Jan 18 18:39:26 2004//TBUGZILLA-2_20 -/list-for-bug.html.tmpl/1.9/Sun Jan 18 18:39:26 2004//TBUGZILLA-2_20 -/list-for-user.html.tmpl/1.19/Tue Feb 15 17:13:02 2005//TBUGZILLA-2_20 +/delete-all.html.tmpl/1.6/Sun Jan 18 18:39:26 2004//TBUGZILLA-2_20_1 +/list-for-bug.html.tmpl/1.9/Sun Jan 18 18:39:26 2004//TBUGZILLA-2_20_1 +/list-for-user.html.tmpl/1.19.4.2/Mon Dec 12 02:25:22 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/bug/votes/CVS/Tag b/template/en/default/bug/votes/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/bug/votes/CVS/Tag +++ b/template/en/default/bug/votes/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/bug/votes/list-for-user.html.tmpl b/template/en/default/bug/votes/list-for-user.html.tmpl index e0d97acb15a8fec488854060a1d5c565cd26058f..85d25f9a296baec81ddead159acbc5378f1ae98b 100644 --- a/template/en/default/bug/votes/list-for-user.html.tmpl +++ b/template/en/default/bug/votes/list-for-user.html.tmpl @@ -90,17 +90,16 @@ [% END %] <tr> <th>[% product.name FILTER html %]</th> - <td></td> - [% IF product.maxperbug < product.maxvotes AND - product.maxperbug > 1 %] - <td> + <td colspan="3"> + [% IF product.maxperbug < product.maxvotes AND + product.maxperbug > 1 %] <font size="-1"> (Note: only [% product.maxperbug %] vote [% "s" IF product.maxperbug != 1 %] allowed per [% terms.bug %] in this product.) </font> - </td> - [% END %] + [% END %] + </td> </tr> [% FOREACH bug = product.bugs %] @@ -121,7 +120,7 @@ [% bug.count %] [% END %] </a></td> - <td align="right"> + <td align="center"> [% isclosed = !bug.opened %] <a href="show_bug.cgi?id=[% bug.id %]"> [% bug.id FILTER closed(isclosed) %]</a> diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl index 4945c723110bb3770d5161035c829cc1814003cd..f3b8e0d8313e72988378c91ce87e9e6718152732 100644 --- a/template/en/default/filterexceptions.pl +++ b/template/en/default/filterexceptions.pl @@ -133,7 +133,6 @@ ], 'reports/report-table.csv.tmpl' => [ - 'num_bugs', 'data.$tbl.$col.$row', 'colsepchar', ], @@ -310,6 +309,7 @@ 'bug/comments.html.tmpl' => [ 'comment.isprivate', 'comment.when', + 'bug.bug_id', ], 'bug/dependency-graph.html.tmpl' => [ diff --git a/template/en/default/flag/CVS/Entries b/template/en/default/flag/CVS/Entries index 86d10bf2d2296b233ef1ce1ac94cc4cf4b4d24f6..c09ffeb3590c01db972e3ee544ee6cba40f4c3cd 100644 --- a/template/en/default/flag/CVS/Entries +++ b/template/en/default/flag/CVS/Entries @@ -1,2 +1,2 @@ -/list.html.tmpl/1.17/Fri Feb 18 21:11:59 2005//TBUGZILLA-2_20 +/list.html.tmpl/1.17/Fri Feb 18 21:11:59 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/flag/CVS/Tag b/template/en/default/flag/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/flag/CVS/Tag +++ b/template/en/default/flag/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/global/CVS/Entries b/template/en/default/global/CVS/Entries index 2d950c5059a0b6997f6c594c68a9d97a10dd9b0b..cc134770e54a7086299b90edb288e535acf25e18 100644 --- a/template/en/default/global/CVS/Entries +++ b/template/en/default/global/CVS/Entries @@ -1,22 +1,22 @@ -/banner.html.tmpl/1.8/Tue Jun 22 21:07:38 2004//TBUGZILLA-2_20 -/choose-classification.html.tmpl/1.4/Fri Feb 25 17:39:52 2005//TBUGZILLA-2_20 -/choose-product.html.tmpl/1.12/Fri Feb 25 17:39:52 2005//TBUGZILLA-2_20 -/code-error.html.tmpl/1.52.2.1/Wed Jul 20 02:23:34 2005//TBUGZILLA-2_20 -/confirm-user-match.html.tmpl/1.12/Thu Jul 7 22:35:58 2005//TBUGZILLA-2_20 -/field-descs.none.tmpl/1.10.2.2/Thu Aug 11 06:20:59 2005//TBUGZILLA-2_20 -/footer.html.tmpl/1.12/Tue Jun 22 21:07:38 2004//TBUGZILLA-2_20 -/header.html.tmpl/1.39/Tue Mar 15 17:16:24 2005//TBUGZILLA-2_20 -/help-header.html.tmpl/1.4.4.1/Wed Sep 14 20:59:10 2005//TBUGZILLA-2_20 -/help.html.tmpl/1.3/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_20 -/hidden-fields.html.tmpl/1.9/Thu Apr 7 23:37:56 2005//TBUGZILLA-2_20 -/initialize.none.tmpl/1.1/Sun Jan 11 17:12:14 2004//TBUGZILLA-2_20 -/message.html.tmpl/1.7/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_20 -/messages.html.tmpl/1.30.2.2/Wed Jul 27 20:01:38 2005//TBUGZILLA-2_20 -/select-menu.html.tmpl/1.4/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_20 -/setting-descs.none.tmpl/1.3.4.1/Wed Jul 20 02:23:34 2005//TBUGZILLA-2_20 -/site-navigation.html.tmpl/1.15/Mon Jan 24 16:39:26 2005//TBUGZILLA-2_20 -/useful-links.html.tmpl/1.39.2.1/Sun Aug 21 19:30:08 2005//TBUGZILLA-2_20 -/user-error.html.tmpl/1.115.2.5/Sun Sep 25 21:10:56 2005//TBUGZILLA-2_20 -/userselect.html.tmpl/1.5/Thu Mar 17 15:50:45 2005//TBUGZILLA-2_20 -/variables.none.tmpl/1.3/Tue Apr 12 18:19:57 2005//TBUGZILLA-2_20 +/banner.html.tmpl/1.8/Tue Jun 22 21:07:38 2004//TBUGZILLA-2_20_1 +/choose-classification.html.tmpl/1.4.4.1/Wed Nov 9 22:26:00 2005//TBUGZILLA-2_20_1 +/choose-product.html.tmpl/1.12/Fri Feb 25 17:39:52 2005//TBUGZILLA-2_20_1 +/code-error.html.tmpl/1.52.2.4/Wed Nov 30 12:19:00 2005//TBUGZILLA-2_20_1 +/confirm-user-match.html.tmpl/1.12.2.1/Tue Dec 20 05:28:20 2005//TBUGZILLA-2_20_1 +/field-descs.none.tmpl/1.10.2.2/Thu Aug 11 06:20:59 2005//TBUGZILLA-2_20_1 +/footer.html.tmpl/1.12/Tue Jun 22 21:07:38 2004//TBUGZILLA-2_20_1 +/header.html.tmpl/1.39.4.1/Tue Feb 21 00:12:02 2006//TBUGZILLA-2_20_1 +/help-header.html.tmpl/1.4.4.1/Wed Sep 14 20:59:10 2005//TBUGZILLA-2_20_1 +/help.html.tmpl/1.3/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_20_1 +/hidden-fields.html.tmpl/1.9/Thu Apr 7 23:37:56 2005//TBUGZILLA-2_20_1 +/initialize.none.tmpl/1.1/Sun Jan 11 17:12:14 2004//TBUGZILLA-2_20_1 +/message.html.tmpl/1.7/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_20_1 +/messages.html.tmpl/1.30.2.2/Wed Jul 27 20:01:38 2005//TBUGZILLA-2_20_1 +/select-menu.html.tmpl/1.4/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_20_1 +/setting-descs.none.tmpl/1.3.4.1/Wed Jul 20 02:23:34 2005//TBUGZILLA-2_20_1 +/site-navigation.html.tmpl/1.15/Mon Jan 24 16:39:26 2005//TBUGZILLA-2_20_1 +/useful-links.html.tmpl/1.39.2.1/Sun Aug 21 19:30:08 2005//TBUGZILLA-2_20_1 +/user-error.html.tmpl/1.115.2.9/Tue Dec 13 21:39:07 2005//TBUGZILLA-2_20_1 +/userselect.html.tmpl/1.5/Thu Mar 17 15:50:45 2005//TBUGZILLA-2_20_1 +/variables.none.tmpl/1.3/Tue Apr 12 18:19:57 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/global/CVS/Tag b/template/en/default/global/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/global/CVS/Tag +++ b/template/en/default/global/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/global/choose-classification.html.tmpl b/template/en/default/global/choose-classification.html.tmpl index b2021f234cc595db92b2e555cb1c6a877f08f9bd..809d961200cafe12fc6e5c67feacc8051956ab7e 100644 --- a/template/en/default/global/choose-classification.html.tmpl +++ b/template/en/default/global/choose-classification.html.tmpl @@ -1,5 +1,4 @@ -<!-- 1.0@bugzilla.org --> - +[%# 1.0@bugzilla.org %] [%# The contents of this file are subject to the Mozilla Public # License Version 1.1 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index 608e9a08fea16f352f61a5f726c7301430c7bd24..cd8d88fe132ed5c368806a621dbabbca21ce4b15 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -77,7 +77,7 @@ [% ELSIF error == "chart_dir_nonexistent" %] One of the directories <tt>[% dir FILTER html %]</tt> and - <tt>[% graphdir FILTER html %]</tt> does not exist. + <tt>[% graph_dir FILTER html %]</tt> does not exist. [% ELSIF error == "chart_file_open_fail" %] Unable to open the chart datafile <tt>[% filename FILTER html %]</tt>. @@ -144,11 +144,6 @@ [%+ terms.bug %] [%+ bug_id FILTER html %]. [% END %] - [% ELSIF error == "invalid_isactive_flag" %] - [% title = "Invalid isactive flag" %] - The active flag was improperly set. There may be - a problem with [% terms.Bugzilla %] or [% terms.abug %] in your browser. - [% ELSIF error == "invalid_series_id" %] [% title = "Invalid Series" %] The series_id [% series_id FILTER html %] is not valid. It may be that @@ -216,9 +211,16 @@ The keyword ID <em>[% id FILTER html %]</em> couldn't be found. - [% ELSIF error == "invalid_user_id" %] - [% title = "Invalid User ID" %] - There is no user account with ID <em>[% userid FILTER html %]</em>. + [% ELSIF error == "invalid_user" %] + [% title = "Invalid User" %] + There is no user account + [% IF user_id %] + with ID <em>[% user_id FILTER html %]</em>. + [% ELSIF user_login %] + with login name <em>[% user_login FILTER html %]</em>. + [% ELSE %] + given. + [% END %] [% ELSIF error == "missing_bug_id" %] No [% terms.bug %] ID was given. @@ -229,10 +231,6 @@ [%+ series.subcategory FILTER html %] / [%+ series.name FILTER html %]. - [% ELSIF error == "no_y_axis_defined" %] - No Y axis was defined when creating report. The X axis is optional, - but the Y axis is compulsory. - [% ELSIF error == "need_quipid" %] A valid quipid is needed. diff --git a/template/en/default/global/confirm-user-match.html.tmpl b/template/en/default/global/confirm-user-match.html.tmpl index 93a2492549e3f59ddc0102b724f4863fb646702c..17a812c21614c3c68bb60472ef5fc7e06b299fd4 100644 --- a/template/en/default/global/confirm-user-match.html.tmpl +++ b/template/en/default/global/confirm-user-match.html.tmpl @@ -101,12 +101,14 @@ <select name="[% field.key FILTER html %]" id="[% field.key FILTER html %]" [% IF fields.${field.key}.type == 'multi' %] + multiple="multiple" [% IF query.value.users.size > 5 %] - multiple="multiple" size="5"> + size="5" [% ELSE %] - multiple="multiple" size="[% query.value.users.size %]"> + size="[% query.value.users.size %]" [% END %] [% END %] + > [% FOREACH match = query.value.users %] <option value="[% match.login FILTER html %]"> [%- match.identity FILTER html -%] diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 90c3659fe828059f117e806bab61ec1c1e6fe4de..959bf5a995821ca5f2f5bd0d0563ff8108b29d4f 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -35,7 +35,7 @@ # style: string. CSS style. # style_urls: list. List of URLs to CSS style sheets. # message: string. A message to display to the user. May contain HTML. - # rsslink: rss link url, May contain HTML + # atomlink: Atom link url, May contain HTML #%] [% IF message %] @@ -100,11 +100,11 @@ [% END %] [% END %] - [%# this puts the live bookmark up on firefox for the RSS feed %] - [% IF rsslink %] + [%# this puts the live bookmark up on firefox for the Atom feed %] + [% IF atomlink %] <link rel="alternate" - type="application/rss+xml" title="RSS 1.0" - href="[% rsslink FILTER html %]" /> + type="application/atom+xml" title="Atom feed" + href="[% atomlink FILTER html %]" /> [% END %] </head> diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 15c4df00af75c510778c6add5f9e0615f19af836..683132a14d4fc6b5f263595ae6fde66dbd53d5ee 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -274,11 +274,6 @@ [% title = "Blank Component Name Not Allowed" %] You cannot delete the component name for component '[% name FILTER html %]'. - [% ELSIF error == "component_cant_del_description" %] - [% title = "Blank Component Description Not Allowed" %] - You cannot delete the component description for - component '[% name FILTER html %]'. - [% ELSIF error == "component_name_too_long" %] [% title = "Component Name Is Too Long" %] The name of a component is limited to 64 characters. @@ -530,8 +525,13 @@ [% title = "Not allowed" %] You tried to change the <strong>[% field_descs.$field FILTER html %]</strong> field - from <em>[% oldvalue FILTER html %]</em> to - <em>[% newvalue FILTER html %]</em>, but only + [% IF oldvalue %] + from <em>[% oldvalue FILTER html %]</em> + [% END %] + [% IF newvalue %] + to <em>[% newvalue FILTER html %]</em> + [% END %] + , but only [% IF privs < 3 %] the assignee [% IF privs < 2 %] or reporter [% END %] @@ -554,8 +554,13 @@ [% ELSIF error == "illegal_email_address" %] [% title = "Invalid Email Address" %] The e-mail address you entered (<b>[% addr FILTER html %]</b>) - didn't pass our syntax checking for a legal email address. - [%+ Param('emailregexpdesc') %] + didn't pass our syntax checking for a legal email address. + [% IF default %] + A legal address must contain exactly one '@', + and at least one '.' after the @. + [% ELSE %] + [%+ Param('emailregexpdesc') %] + [% END %] It must also not contain any of these special characters: <tt>\ ( ) & < > , ; : " [ ]</tt>, or any whitespace. @@ -586,11 +591,6 @@ You are not authorised to edit this series. To do this, you must either be its creator, or an administrator. - [% ELSIF error == "insufficient_data" %] - [% title = "Insufficient Data" %] - None of the series you selected have any data associated with them, so a - chart cannot be plotted. - [% ELSIF error == "insufficient_data_points" %] We don't have enough data points to make a graph (yet). @@ -638,10 +638,6 @@ The context [% context FILTER html %] is invalid (must be a number, "file" or "patch"). - [% ELSIF error == "invalid_field_name" %] - [% title = "Invalid Field Name" %] - The field "[% name FILTER html %]" is invalid. - [% ELSIF error == "invalid_format" %] [% title = "Invalid Format" %] The format "[% format FILTER html %]" is invalid (must be one of @@ -987,10 +983,6 @@ the new assignee. If you did not intentionally clear out the "Reassign [% terms.bug %] to" field, [% Param("browserbugmessage") %] - [% ELSIF error == "report_access_denied" %] - [% title = "Access Denied" %] - You do not have the permissions necessary to view reports for this product. - [% ELSIF error == "require_component" %] [% title = "Component Needed" %] To file this [% terms.bug %], you must first choose a component. @@ -1100,11 +1092,6 @@ version! You must reassign those [% terms.bugs %] to another version before you can delete this one. - [% ELSIF error == "version_name_too_long" %] - [% title = "Version Name Is Too Long" %] - The name of a version is limited to 20 characters. - '[% name FILTER html %]' is too long ([% name.length %] characters). - [% ELSIF error == "version_not_specified" %] [% title = "No Version Specified" %] No version specified when trying to edit versions. @@ -1140,15 +1127,14 @@ [% title = "Wrong Token" %] That token cannot be used to change your password. + [% ELSIF error == "extern_id_conflict" %] + [% title = "Extern ID Conflict" %] + Someone with a different external ID has that address. + [% ELSIF error == "wrong_token_for_confirming_email_change" %] [% title = "Wrong Token" %] That token cannot be used to change your email address. - [% ELSIF error == "value_out_of_range" %] - [% title = "Value Out Of Range" %] - Value is out of range for field - <em>[% field_descs.$field FILTER html %]</em>. - [% ELSIF error == "zero_length_file" %] [% title = "File Is Empty" %] The file you are trying to attach is empty! @@ -1198,7 +1184,7 @@ <p> Alternatively, you can <a href="buglist.cgi?cmdtype=dorem&remaction=forget&namedcmd= - [% namedcmd FILTER html %]">forget</a> + [% namedcmd FILTER url_quote %]">forget</a> [% FOREACH q = Bugzilla.user.queries %] [% IF q.name == namedcmd %] diff --git a/template/en/default/list/CVS/Entries b/template/en/default/list/CVS/Entries index 2926c29b8b6b31be56c62478240907d80e46e737..6ae5f2d64be66c714f88379ab8592f252bc03271 100644 --- a/template/en/default/list/CVS/Entries +++ b/template/en/default/list/CVS/Entries @@ -1,13 +1,13 @@ -/change-columns.html.tmpl/1.12/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_20 -/edit-multiple.html.tmpl/1.26.2.2/Thu Sep 8 23:45:16 2005//TBUGZILLA-2_20 -/list-simple.html.tmpl/1.9/Thu Oct 21 19:13:28 2004//TBUGZILLA-2_20 -/list.csv.tmpl/1.4.4.1/Wed Jul 20 02:23:34 2005//TBUGZILLA-2_20 -/list.html.tmpl/1.37/Mon Jun 20 19:16:32 2005//TBUGZILLA-2_20 -/list.ics.tmpl/1.4/Tue Mar 15 17:16:25 2005//TBUGZILLA-2_20 -/list.js.tmpl/1.2/Sat Nov 8 18:04:36 2003//TBUGZILLA-2_20 -/list.rdf.tmpl/1.4/Fri Nov 21 23:15:40 2003//TBUGZILLA-2_20 -/list.rss.tmpl/1.2.2.1/Tue Jul 19 21:19:51 2005//TBUGZILLA-2_20 -/quips.html.tmpl/1.16/Mon Jun 20 19:42:11 2005//TBUGZILLA-2_20 -/server-push.html.tmpl/1.5/Thu Mar 18 21:51:19 2004//TBUGZILLA-2_20 -/table.html.tmpl/1.27/Fri May 27 11:37:17 2005//TBUGZILLA-2_20 +/change-columns.html.tmpl/1.12/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_20_1 +/edit-multiple.html.tmpl/1.26.2.2/Thu Sep 8 23:45:16 2005//TBUGZILLA-2_20_1 +/list-simple.html.tmpl/1.9/Thu Oct 21 19:13:28 2004//TBUGZILLA-2_20_1 +/list.atom.tmpl/1.1.2.2/Tue Feb 21 00:12:03 2006//TBUGZILLA-2_20_1 +/list.csv.tmpl/1.4.4.1/Wed Jul 20 02:23:34 2005//TBUGZILLA-2_20_1 +/list.html.tmpl/1.37.2.2/Tue Feb 21 00:12:03 2006//TBUGZILLA-2_20_1 +/list.ics.tmpl/1.4/Tue Mar 15 17:16:25 2005//TBUGZILLA-2_20_1 +/list.js.tmpl/1.2/Sat Nov 8 18:04:36 2003//TBUGZILLA-2_20_1 +/list.rdf.tmpl/1.4/Fri Nov 21 23:15:40 2003//TBUGZILLA-2_20_1 +/quips.html.tmpl/1.16/Mon Jun 20 19:42:11 2005//TBUGZILLA-2_20_1 +/server-push.html.tmpl/1.5/Thu Mar 18 21:51:19 2004//TBUGZILLA-2_20_1 +/table.html.tmpl/1.27.2.1/Tue Dec 20 22:02:05 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/list/CVS/Tag b/template/en/default/list/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/list/CVS/Tag +++ b/template/en/default/list/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/list/list.rss.tmpl b/template/en/default/list/list.atom.tmpl similarity index 57% rename from template/en/default/list/list.rss.tmpl rename to template/en/default/list/list.atom.tmpl index 96d7a903d0c5982fd013d4b6759e8f98baef601c..5e15708110c79022ed070ae72a2f604ee98ba46d 100644 --- a/template/en/default/list/list.rss.tmpl +++ b/template/en/default/list/list.atom.tmpl @@ -19,8 +19,9 @@ # Contributor(s): Walter Hoehn <wassa@columbia.edu> # John Belmonte <john@neggie.net> # Jason Remillard <jremillardshop@letterboxes.org> + # Phil Ringnalda <bugzilla@philringnalda.com> # - # This is a template for generating an RSS 1.0 representation of a buglist. + # This is a template for generating an Atom representation of a buglist. #%] [% PROCESS global/variables.none.tmpl %] @@ -29,42 +30,32 @@ [% DEFAULT title = "$terms.Bugzilla $terms.Bugs" %] <?xml version="1.0"?> -<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns="http://purl.org/rss/1.0/"> - <channel rdf:about="[% Param('urlbase') %]buglist.cgi? - [%- urlquerypart.replace('ctype=rss[&]?','') FILTER xml %]" > - - <title>[% title FILTER xml %]</title> - <description>[% "$terms.Bugzilla $terms.bug list" FILTER xml %]</description> - - <link>[% Param('urlbase') %]buglist.cgi? - [%- urlquerypart.replace('ctype=rss[&]?','') FILTER xml -%] - </link> - - <sy:updatePeriod>hourly</sy:updatePeriod> - <sy:updateFrequency>2</sy:updateFrequency> - - <items> - <rdf:Seq> - [% FOREACH bug = bugs %] - <rdf:li rdf:resource="[% Param('urlbase') FILTER xml %]show_bug.cgi?id=[% bug.bug_id FILTER xml %]" /> - [% END %] - </rdf:Seq> - </items> - - </channel> - +<feed xmlns="http://www.w3.org/2005/Atom"> + <title>[% title FILTER xml %]</title> + <link rel="alternate" type="text/html" + href="[% Param('urlbase') %]buglist.cgi? + [%- urlquerypart.replace('ctype=atom[&]?','') FILTER xml %]"/> + <link rel="self" type="application/atom+xml" + href="[% Param('urlbase') %]buglist.cgi? + [%- urlquerypart FILTER xml %]"/> + <updated>[% date.format(format=>"%Y-%m-%dT%H:%M:%SZ", + time=>bugs.nsort('changedtime').last.changedtime, + gmt=>1) FILTER xml %]</updated> + <id>[% Param('urlbase') %]buglist.cgi?[% urlquerypart FILTER xml %]</id> + [% FOREACH bug = bugs %] - <item rdf:about="[% Param('urlbase') FILTER xml %]show_bug.cgi?id=[% bug.bug_id FILTER xml %]"> - <title> - [% "@" IF bug.secure_mode %] [[% terms.Bug %] [%+ bug.bug_id FILTER xml %]] [% bug.short_desc FILTER xml %] - </title> - <link>[% Param('urlbase') FILTER xml %]show_bug.cgi?id=[% bug.bug_id FILTER xml %]</link> - <dc:creator>[% bug.reporter_realname FILTER xml %]</dc:creator> - <dc:date>[% date.format( format=>"%Y-%m-%dT%H:%MZ",time=>bug.opentime) FILTER xml %]</dc:date> - <description> + <entry> + <title>[% "@" IF bug.secure_mode %][[% terms.Bug %] [%+ bug.bug_id FILTER xml %]] [% bug.short_desc FILTER xml %]</title> + <link rel="alternate" type="text/html" + href="[% Param('urlbase') FILTER xml %]show_bug.cgi?id= + [%- bug.bug_id FILTER xml %]"/> + <id>[% Param('urlbase') FILTER xml %]show_bug.cgi?id=[% bug.bug_id FILTER xml %]</id> + <author> + <name>[% bug.reporter_realname FILTER xml %]</name> + </author> + <updated>[% date.format(format=>"%Y-%m-%dT%H:%M:%SZ",time=>bug.changedtime, + gmt=>1) FILTER xml %]</updated> + <summary type="html"> [%# Filter out the entire block, so that we don't need to escape the html code out %] [% FILTER xml %] <table> @@ -91,7 +82,7 @@ </tr> </table> [% END %] - </description> - </item> + </summary> + </entry> [% END %] -</rdf:RDF> +</feed> diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 9961bb1b34bd07f29f2c944aa9165ce69a04a368..c89957a1143040330e8e58d06b98a0a9862853c4 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -48,15 +48,15 @@ [% PROCESS global/header.html.tmpl title = title style = style - rsslink = "buglist.cgi?$urlquerypart&ctype=rss" + atomlink = "buglist.cgi?$urlquerypart&ctype=atom" %] <div align="center"> - [% IF Param('timezone') %] - <b>[% time2str("%a %b %e %Y %T %Z", currenttime, Param('timezone')) %]</b><br> - [% ELSE %] - <b>[% time2str("%a %b %e %Y %T", currenttime) %]</b><br> - [% END %] + [% IF Param('timezone') %] + <b>[% time2str("%a %b %e %Y %T %Z", currenttime, Param('timezone')) %]</b><br> + [% ELSE %] + <b>[% time2str("%a %b %e %Y %T", currenttime) %]</b><br> + [% END %] [% IF debug %] <p>[% query FILTER html %]</p> @@ -138,7 +138,7 @@ <input type="hidden" name="id" value="[% id FILTER html %]"> [% END %] <input type="hidden" name="format" value="multiple"> - <input type="submit" value=" Long Format "> + <input type="submit" value="Long Format"> </form> [% IF UserInGroup(Param('timetrackinggroup')) %] @@ -155,7 +155,7 @@ <a href="buglist.cgi? [% urlquerypart FILTER html %]&ctype=csv">CSV</a> | <a href="buglist.cgi? - [% urlquerypart FILTER html %]&ctype=rss">RSS</a> | + [% urlquerypart FILTER html %]&ctype=atom">Feed</a> | <a href="buglist.cgi? [% urlquerypart FILTER html %]&ctype=ics">iCalendar</a> | <a href="colchange.cgi? diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index d3fe3231b05983d0b8bbe61a994a1aaac1f6a8fa..7ef53058a04ff046cfdcc509bf4943742723fb4b 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -131,8 +131,15 @@ [% IF sorted_by_relevance %] [%- abbrev.$id.title || field_descs.$id || column.title -%] [% ELSE %] + [% IF column.name.match('\s+AS\s+') %] + [%# For aliased columns, use their ID for sorting. %] + [% column.sortalias = id %] + [% ELSE %] + [%# Other columns may sort on their name directly. %] + [% column.sortalias = column.name %] + [% END %] <a href="buglist.cgi?[% urlquerypart FILTER html %]&order= - [% column.name FILTER url_quote FILTER html %] + [% column.sortalias FILTER url_quote FILTER html %] [% ",$qorder" FILTER html IF order %] [%-#%]&query_based_on= [% defaultsavename OR searchname FILTER html %]"> diff --git a/template/en/default/pages/CVS/Entries b/template/en/default/pages/CVS/Entries index f963890af1d776bf2af9b41594e13a5f7ccf220a..2b7c3e775c74c344a667b3922aa4ba1869b6bfe9 100644 --- a/template/en/default/pages/CVS/Entries +++ b/template/en/default/pages/CVS/Entries @@ -1,6 +1,6 @@ -/bug-writing.html.tmpl/1.3.4.1/Thu Sep 15 10:17:06 2005//TBUGZILLA-2_20 -/fields.html.tmpl/1.5.4.1/Thu Sep 1 22:10:26 2005//TBUGZILLA-2_20 -/linked.html.tmpl/1.8/Wed Feb 9 17:30:20 2005//TBUGZILLA-2_20 -/linkify.html.tmpl/1.5/Wed Feb 9 17:30:20 2005//TBUGZILLA-2_20 -/voting.html.tmpl/1.2/Thu Mar 18 16:21:57 2004//TBUGZILLA-2_20 +/bug-writing.html.tmpl/1.3.4.1/Thu Sep 15 10:17:06 2005//TBUGZILLA-2_20_1 +/fields.html.tmpl/1.5.4.1/Thu Sep 1 22:10:26 2005//TBUGZILLA-2_20_1 +/linked.html.tmpl/1.8/Wed Feb 9 17:30:20 2005//TBUGZILLA-2_20_1 +/linkify.html.tmpl/1.5/Wed Feb 9 17:30:20 2005//TBUGZILLA-2_20_1 +/voting.html.tmpl/1.2/Thu Mar 18 16:21:57 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/pages/CVS/Tag b/template/en/default/pages/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/pages/CVS/Tag +++ b/template/en/default/pages/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/reports/CVS/Entries b/template/en/default/reports/CVS/Entries index 2ad38d5def40b7c779a1b255cb249c164455fe49..52c0e26ebfc814b489af9b6aaf398c06c5e06b8d 100644 --- a/template/en/default/reports/CVS/Entries +++ b/template/en/default/reports/CVS/Entries @@ -1,23 +1,23 @@ -/chart.csv.tmpl/1.1.10.1/Wed Jul 20 02:23:35 2005//TBUGZILLA-2_20 -/chart.html.tmpl/1.2/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_20 -/chart.png.tmpl/1.3/Sat Jan 24 21:40:31 2004//TBUGZILLA-2_20 -/components.html.tmpl/1.9/Mon Jun 20 19:16:33 2005//TBUGZILLA-2_20 -/create-chart.html.tmpl/1.11/Fri Feb 25 15:27:26 2005//TBUGZILLA-2_20 -/duplicates-simple.html.tmpl/1.4/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_20 -/duplicates-table.html.tmpl/1.11/Tue Mar 16 23:53:01 2004//TBUGZILLA-2_20 -/duplicates.html.tmpl/1.14/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_20 -/duplicates.rdf.tmpl/1.1/Tue Nov 5 01:54:15 2002//TBUGZILLA-2_20 -/edit-series.html.tmpl/1.5/Thu Feb 12 22:32:57 2004//TBUGZILLA-2_20 -/keywords.html.tmpl/1.6/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_20 -/menu.html.tmpl/1.6/Tue Jul 6 01:12:29 2004//TBUGZILLA-2_20 -/report-bar.png.tmpl/1.4.10.1/Wed Jul 20 12:48:23 2005//TBUGZILLA-2_20 -/report-line.png.tmpl/1.5.10.1/Wed Jul 20 12:48:23 2005//TBUGZILLA-2_20 -/report-pie.png.tmpl/1.3.12.1/Wed Jul 20 12:48:23 2005//TBUGZILLA-2_20 -/report-simple.html.tmpl/1.1/Mon Mar 14 16:24:03 2005//TBUGZILLA-2_20 -/report-table.csv.tmpl/1.6.2.1/Wed Jul 20 02:23:35 2005//TBUGZILLA-2_20 -/report-table.html.tmpl/1.11/Tue Jun 14 22:43:12 2005//TBUGZILLA-2_20 -/report.csv.tmpl/1.2/Mon Jan 6 07:54:22 2003//TBUGZILLA-2_20 -/report.html.tmpl/1.10/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_20 -/series-common.html.tmpl/1.3/Tue Sep 14 23:30:20 2004//TBUGZILLA-2_20 -/series.html.tmpl/1.6/Tue Sep 14 23:30:20 2004//TBUGZILLA-2_20 +/chart.csv.tmpl/1.1.10.1/Wed Jul 20 02:23:35 2005//TBUGZILLA-2_20_1 +/chart.html.tmpl/1.2/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_20_1 +/chart.png.tmpl/1.3/Sat Jan 24 21:40:31 2004//TBUGZILLA-2_20_1 +/components.html.tmpl/1.9/Mon Jun 20 19:16:33 2005//TBUGZILLA-2_20_1 +/create-chart.html.tmpl/1.11/Fri Feb 25 15:27:26 2005//TBUGZILLA-2_20_1 +/duplicates-simple.html.tmpl/1.4/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_20_1 +/duplicates-table.html.tmpl/1.11/Tue Mar 16 23:53:01 2004//TBUGZILLA-2_20_1 +/duplicates.html.tmpl/1.14/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_20_1 +/duplicates.rdf.tmpl/1.1/Tue Nov 5 01:54:15 2002//TBUGZILLA-2_20_1 +/edit-series.html.tmpl/1.5/Thu Feb 12 22:32:57 2004//TBUGZILLA-2_20_1 +/keywords.html.tmpl/1.6/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_20_1 +/menu.html.tmpl/1.6/Tue Jul 6 01:12:29 2004//TBUGZILLA-2_20_1 +/report-bar.png.tmpl/1.4.10.1/Wed Jul 20 12:48:23 2005//TBUGZILLA-2_20_1 +/report-line.png.tmpl/1.5.10.1/Wed Jul 20 12:48:23 2005//TBUGZILLA-2_20_1 +/report-pie.png.tmpl/1.3.12.1/Wed Jul 20 12:48:23 2005//TBUGZILLA-2_20_1 +/report-simple.html.tmpl/1.1/Mon Mar 14 16:24:03 2005//TBUGZILLA-2_20_1 +/report-table.csv.tmpl/1.6.2.2/Thu Nov 17 09:16:16 2005//TBUGZILLA-2_20_1 +/report-table.html.tmpl/1.11/Tue Jun 14 22:43:12 2005//TBUGZILLA-2_20_1 +/report.csv.tmpl/1.2/Mon Jan 6 07:54:22 2003//TBUGZILLA-2_20_1 +/report.html.tmpl/1.10/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_20_1 +/series-common.html.tmpl/1.3/Tue Sep 14 23:30:20 2004//TBUGZILLA-2_20_1 +/series.html.tmpl/1.6/Tue Sep 14 23:30:20 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/reports/CVS/Tag b/template/en/default/reports/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/reports/CVS/Tag +++ b/template/en/default/reports/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/reports/report-table.csv.tmpl b/template/en/default/reports/report-table.csv.tmpl index 96dca3d58f2c8b8f25a43c570fafc5110d07fd09..0abb68ece919a92b23dcc8c4f82cb22b0cdca497 100644 --- a/template/en/default/reports/report-table.csv.tmpl +++ b/template/en/default/reports/report-table.csv.tmpl @@ -50,7 +50,7 @@ [% END %] [% END -%] [% ELSE -%] - [% colsepchar %][% num_bugs %] + [% colsepchar %][% num_bugs FILTER csv %] [% END %] [% FOREACH row = row_names %] diff --git a/template/en/default/request/CVS/Entries b/template/en/default/request/CVS/Entries index 90cd2243aa9ab28c1c7fa95e2d19e89698606b48..eb145b2ab9ebdee0d0c3db973d5b97af4605d0e8 100644 --- a/template/en/default/request/CVS/Entries +++ b/template/en/default/request/CVS/Entries @@ -1,3 +1,3 @@ -/email.txt.tmpl/1.9/Sat Apr 9 23:18:18 2005//TBUGZILLA-2_20 -/queue.html.tmpl/1.12.6.1/Mon Aug 22 21:17:25 2005//TBUGZILLA-2_20 +/email.txt.tmpl/1.9.4.2/Fri Dec 30 00:34:59 2005//TBUGZILLA-2_20_1 +/queue.html.tmpl/1.12.6.1/Mon Aug 22 21:17:25 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/request/CVS/Tag b/template/en/default/request/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/request/CVS/Tag +++ b/template/en/default/request/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/request/email.txt.tmpl b/template/en/default/request/email.txt.tmpl index d59cad0ec5907ee7c2fb131b6cfddb62318ac57d..6e92c72ca32196fe16a82013d821b1469dd141e8 100644 --- a/template/en/default/request/email.txt.tmpl +++ b/template/en/default/request/email.txt.tmpl @@ -18,6 +18,7 @@ # # Contributor(s): Myk Melez <myk@mozilla.org> # Jeff Hedlund <jeff.hedlund@matrixsi.com> + # Frédéric Buclin <LpSolit@gmail.com> #%] [% PROCESS global/variables.none.tmpl %] @@ -28,19 +29,16 @@ [% statuses = { '+' => "granted" , '-' => 'denied' , 'X' => "cancelled" , '?' => "asked" } %] [% IF flag.status == '?' %] - [% to_email = flag.requestee.email - IF flag.requestee.wants_mail([constants.EVT_FLAG_REQUESTED]) %] - [% to_identity = flag.requestee.identity %] - [% subject_status = "requested" %] + [% to_identity = flag.addressee.identity _ " for" %] + [% subject_status = "requested" %] [% ELSE %] - [% to_email = flag.setter.email - IF flag.setter.wants_mail([constants.EVT_REQUESTED_FLAG]) %] - [% to_identity = flag.setter.identity _ "'s request" %] - [% subject_status = statuses.${flag.status} %] + [% IF flag.addressee %] + [% to_identity = flag.addressee.identity _ "'s request for" %] + [% END %] + [% subject_status = statuses.${flag.status} %] [% END %] From: bugzilla-request-daemon -To: [% to_email %] -CC: [% flag.type.cc_list %] +To: [% to %] Subject: [% flag.type.name %] [%+ subject_status %]: [[% terms.Bug %] [%+ flag.target.bug.id %]] [% flag.target.bug.summary %] [%- IF flag.target.attachment.exists %] : [Attachment [% flag.target.attachment.id %]] [% flag.target.attachment.summary %][% END %] @@ -48,7 +46,7 @@ Subject: [% flag.type.name %] [%+ subject_status %]: [[% terms.Bug %] [%+ flag.t [%+ USE wrap -%] [%- FILTER bullet = wrap(80) -%] -[% user.identity %] has [% statuses.${flag.status} %] [%+ to_identity %] for [% flag.type.name %]: +[% user.identity %] has [% statuses.${flag.status} %] [%+ to_identity %] [%+ flag.type.name %]: [% terms.Bug %] [%+ bugidsummary %] [% END %] diff --git a/template/en/default/search/CVS/Entries b/template/en/default/search/CVS/Entries index a07094c83ca26f38abc1ee33648a5dd18990b41b..c0947461ab59c780de766fb0cd40f3f3d8461cf4 100644 --- a/template/en/default/search/CVS/Entries +++ b/template/en/default/search/CVS/Entries @@ -1,12 +1,12 @@ -/boolean-charts.html.tmpl/1.12/Sat Dec 11 00:27:45 2004//TBUGZILLA-2_20 -/form.html.tmpl/1.32/Mon Jun 20 19:16:34 2005//TBUGZILLA-2_20 -/knob.html.tmpl/1.16/Thu Jul 22 05:14:14 2004//TBUGZILLA-2_20 -/search-advanced.html.tmpl/1.23/Wed Feb 2 23:00:24 2005//TBUGZILLA-2_20 -/search-create-series.html.tmpl/1.11/Mon Apr 11 22:34:50 2005//TBUGZILLA-2_20 -/search-help.html.tmpl/1.5/Fri Aug 20 21:49:20 2004//TBUGZILLA-2_20 -/search-report-graph.html.tmpl/1.8/Fri Aug 20 21:49:20 2004//TBUGZILLA-2_20 -/search-report-select.html.tmpl/1.6/Wed Mar 9 17:17:53 2005//TBUGZILLA-2_20 -/search-report-table.html.tmpl/1.9/Fri Aug 20 21:49:20 2004//TBUGZILLA-2_20 -/search-specific.html.tmpl/1.12/Sat May 7 13:26:14 2005//TBUGZILLA-2_20 -/tabs.html.tmpl/1.4/Wed Jul 7 06:02:33 2004//TBUGZILLA-2_20 +/boolean-charts.html.tmpl/1.12/Sat Dec 11 00:27:45 2004//TBUGZILLA-2_20_1 +/form.html.tmpl/1.32.2.1/Thu Dec 29 22:52:10 2005//TBUGZILLA-2_20_1 +/knob.html.tmpl/1.16/Thu Jul 22 05:14:14 2004//TBUGZILLA-2_20_1 +/search-advanced.html.tmpl/1.23/Wed Feb 2 23:00:24 2005//TBUGZILLA-2_20_1 +/search-create-series.html.tmpl/1.11/Mon Apr 11 22:34:50 2005//TBUGZILLA-2_20_1 +/search-help.html.tmpl/1.5/Fri Aug 20 21:49:20 2004//TBUGZILLA-2_20_1 +/search-report-graph.html.tmpl/1.8/Fri Aug 20 21:49:20 2004//TBUGZILLA-2_20_1 +/search-report-select.html.tmpl/1.6/Wed Mar 9 17:17:53 2005//TBUGZILLA-2_20_1 +/search-report-table.html.tmpl/1.9/Fri Aug 20 21:49:20 2004//TBUGZILLA-2_20_1 +/search-specific.html.tmpl/1.12/Sat May 7 13:26:14 2005//TBUGZILLA-2_20_1 +/tabs.html.tmpl/1.4/Wed Jul 7 06:02:33 2004//TBUGZILLA-2_20_1 D diff --git a/template/en/default/search/CVS/Tag b/template/en/default/search/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/search/CVS/Tag +++ b/template/en/default/search/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl index a8905cc0973a3f9080167ea6f9e7b2b467db3e70..cd8f759cbfd34bcccea50beef7d9a333968ecafe 100644 --- a/template/en/default/search/form.html.tmpl +++ b/template/en/default/search/form.html.tmpl @@ -78,7 +78,7 @@ var tms = new Array(); */ function doOnSelectProduct(selectmode) { var f = document.forms[queryform]; - milestone = (typeof(f.target_milestone) == "undefined" ? + var milestone = (typeof(f.target_milestone) == "undefined" ? null : f.target_milestone); if (selectmode == 0) { if (useclassification) { diff --git a/template/en/default/whine/CVS/Entries b/template/en/default/whine/CVS/Entries index d60ad6cff8b2f2300ce3b2d8a0028a3af8f33e38..57bfc22290dae3c4aeaca797433518b35862a771 100644 --- a/template/en/default/whine/CVS/Entries +++ b/template/en/default/whine/CVS/Entries @@ -1,5 +1,5 @@ -/mail.html.tmpl/1.2.4.1/Sun Aug 21 19:57:41 2005//TBUGZILLA-2_20 -/mail.txt.tmpl/1.2.4.1/Sun Aug 21 19:57:41 2005//TBUGZILLA-2_20 -/multipart-mime.txt.tmpl/1.4/Wed Mar 16 21:58:56 2005//TBUGZILLA-2_20 -/schedule.html.tmpl/1.2/Fri Feb 18 22:41:10 2005//TBUGZILLA-2_20 +/mail.html.tmpl/1.2.4.1/Sun Aug 21 19:57:41 2005//TBUGZILLA-2_20_1 +/mail.txt.tmpl/1.2.4.1/Sun Aug 21 19:57:41 2005//TBUGZILLA-2_20_1 +/multipart-mime.txt.tmpl/1.4/Wed Mar 16 21:58:56 2005//TBUGZILLA-2_20_1 +/schedule.html.tmpl/1.2/Fri Feb 18 22:41:10 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/default/whine/CVS/Tag b/template/en/default/whine/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/default/whine/CVS/Tag +++ b/template/en/default/whine/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/template/en/extension/CVS/Entries b/template/en/extension/CVS/Entries index 1a0e15c61e3f68929676bfbda19623cb75743492..a30f88a271586ba609588e65feec56ee11b6df26 100644 --- a/template/en/extension/CVS/Entries +++ b/template/en/extension/CVS/Entries @@ -1,2 +1,2 @@ -/filterexceptions.pl/1.1.2.2/Tue Sep 27 17:03:14 2005//TBUGZILLA-2_20 +/filterexceptions.pl/1.1.2.2/Tue Sep 27 17:03:14 2005//TBUGZILLA-2_20_1 D diff --git a/template/en/extension/CVS/Tag b/template/en/extension/CVS/Tag index 8a752cb7a306209c53bb1068054ee31c15178834..4e3f2a36e3d7ed271b931e57ae4f902e1f337136 100644 --- a/template/en/extension/CVS/Tag +++ b/template/en/extension/CVS/Tag @@ -1 +1 @@ -NBUGZILLA-2_20 +NBUGZILLA-2_20_1 diff --git a/token.cgi b/token.cgi index 0e0753807197c27b5c247749eac8d0b26c042a78..3fe8e014098c30f0dbd612d3fb2455ff1775384a 100755 --- a/token.cgi +++ b/token.cgi @@ -68,11 +68,8 @@ if ($cgi->param('t')) { $::quotedtoken = SqlQuote($::token); # Make sure the token contains only valid characters in the right amount. - my $validationerror = ValidatePassword($::token); - if ($validationerror) { - ThrowUserError("token_invalid"); - } - + # Validate password will throw an error if token is invalid + ValidatePassword($::token); Bugzilla::Token::CleanTokenTable(); diff --git a/userprefs.cgi b/userprefs.cgi index 9ae558fa18e8955671533d1eaba4fbe90087533a..02646568d8e4b8e7effe783d52ff737fa95c1706 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -49,7 +49,7 @@ sub DoAccount { $vars->{'realname'} = FetchSQLData(); if(Param('allowemailchange')) { - SendSQL("SELECT tokentype, issuedate + " . $dbh->sql_interval('3 DAY') . + SendSQL("SELECT tokentype, issuedate + " . $dbh->sql_interval(3, 'DAY') . ", eventdata FROM tokens WHERE userid = $userid @@ -281,12 +281,12 @@ sub SaveEmail { # The new information given to us by the user. my @new_watch_names = split(/[,\s]+/, $cgi->param('watchedusers')); - my @new_watch_ids = (); + my %new_watch_ids; foreach my $username (@new_watch_names) { my $watched_userid = DBNameToIdAndCheck(trim($username)); - push(@new_watch_ids, $watched_userid); + $new_watch_ids{$watched_userid} = 1; } - my ($removed, $added) = diff_arrays($old_watch_ids, \@new_watch_ids); + my ($removed, $added) = diff_arrays($old_watch_ids, [keys %new_watch_ids]); # Remove people who were removed. my $delete_sth = $dbh->prepare('DELETE FROM watch WHERE watched = ?' diff --git a/votes.cgi b/votes.cgi old mode 100644 new mode 100755 diff --git a/whine.pl b/whine.pl index fea9d3da36be8b71be69d1efc5d086b4f10afb9a..e584646f5b270a9d43a4a47653dd93ba200e30be 100755 --- a/whine.pl +++ b/whine.pl @@ -34,6 +34,7 @@ use Bugzilla::Constants; use Bugzilla::Search; use Bugzilla::User; use Bugzilla::BugMail; +use Bugzilla::Util; # create some handles that we'll need my $template = Bugzilla->template; @@ -50,7 +51,7 @@ my @seen_schedules = (); # allow the database to keep their SQL compiled. my $sth_run_queries = $dbh->prepare("SELECT " . - "id, query_name, title, onemailperbug " . + "query_name, title, onemailperbug " . "FROM whine_queries " . "WHERE eventid=? " . "ORDER BY sortkey"); @@ -170,20 +171,21 @@ while (my ($schedule_id, $day, $time) = $sched_h->fetchrow_array) { # A time greater than now means it still has to run today elsif ($time >= $now_hour) { # set it to today + number of hours - $sth = $dbh->prepare( "UPDATE whine_schedules " . - "SET run_next = CURRENT_DATE() + " . - $dbh->sql_interval('? HOUR') . - " WHERE id = ?"); + $sth = $dbh->prepare("UPDATE whine_schedules " . + "SET run_next = CURRENT_DATE + " . + $dbh->sql_interval('?', 'HOUR') . + " WHERE id = ?"); $sth->execute($time, $schedule_id); } # the target time is less than the current time else { # set it for the next applicable day - my $nextdate = &get_next_date($day); - $sth = $dbh->prepare( "UPDATE whine_schedules " . - "SET run_next = ? + " . - $dbh->sql_interval('? HOUR') . - " WHERE id = ?"); - $sth->execute($nextdate, $time, $schedule_id); + $day = &get_next_date($day); + $sth = $dbh->prepare("UPDATE whine_schedules " . + "SET run_next = CURRENT_DATE + " . + $dbh->sql_interval('?', 'DAY') . " + " . + $dbh->sql_interval('?', 'HOUR') . + " WHERE id = ?"); + $sth->execute($day, $time, $schedule_id); } } @@ -195,10 +197,11 @@ while (my ($schedule_id, $day, $time) = $sched_h->fetchrow_array) { # midnight my $target_time = ($time =~ /^\d+$/) ? $time : 0; - $sth = $dbh->prepare( "UPDATE whine_schedules " . - "SET run_next = ? + " . - $dbh->sql_interval('? HOUR') . - " WHERE id = ?"); + $sth = $dbh->prepare("UPDATE whine_schedules " . + "SET run_next = CURRENT_DATE + " . + $dbh->sql_interval('?', 'DAY') . " + " . + $dbh->sql_interval('?', 'HOUR') . + " WHERE id = ?"); $sth->execute($target_date, $target_time, $schedule_id); } } @@ -324,7 +327,7 @@ while (my $event = get_next_event) { # We loop for each target user because some of the queries will be using # subjective pronouns - Bugzilla->switch_to_shadow_db(); + $dbh = Bugzilla->switch_to_shadow_db(); for my $target (@{$event->{'mailto'}}) { my $args = { 'subject' => $event->{'subject'}, @@ -349,7 +352,7 @@ while (my $event = get_next_event) { mail($args); } - Bugzilla->switch_to_main_db(); + $dbh = Bugzilla->switch_to_main_db(); } ################################################################################ @@ -426,18 +429,19 @@ sub run_queries { my $return_queries = []; $sth_run_queries->execute($args->{'eventid'}); - my $queries = {}; + my @queries = (); for (@{$sth_run_queries->fetchall_arrayref}) { - $queries->{$_->[0]} = { - 'name' => $_->[1], - 'title' => $_->[2], - 'onemailperbug' => $_->[3], - 'bugs' => [], - }; + push(@queries, + { + 'name' => $_->[0], + 'title' => $_->[1], + 'onemailperbug' => $_->[2], + 'bugs' => [], + } + ); } - for my $query_id (keys %{$queries}) { - my $thisquery = $queries->{$query_id}; + foreach my $thisquery (@queries) { next unless $thisquery->{'name'}; # named query is blank my $savedquery = get_query($thisquery->{'name'}, $args->{'author'}); @@ -565,6 +569,10 @@ sub reset_timer { $sth->execute($schedule_id); my ($run_day, $run_time) = $sth->fetchrow_array; + # It may happen that the run_time field is NULL or blank due to + # a bug in editwhines.cgi when this field was initially 0. + $run_time ||= 0; + my $run_today = 0; my $minute_offset = 0; @@ -596,23 +604,25 @@ sub reset_timer { my $nextdate = &get_next_date($run_day); - $sth = $dbh->prepare( "UPDATE whine_schedules " . - "SET run_next = ? + " . - $dbh->sql_interval('? HOUR') . - " WHERE id = ?"); + $sth = $dbh->prepare("UPDATE whine_schedules " . + "SET run_next = CURRENT_DATE + " . + $dbh->sql_interval('?', 'DAY') . " + " . + $dbh->sql_interval('?', 'HOUR') . + " WHERE id = ?"); $sth->execute($nextdate, $target_time, $schedule_id); return; } - # Scheduling is done in terms of whole minutes, so we use subtraction to - # drop the seconds from the time. if ($minute_offset > 0) { + # Scheduling is done in terms of whole minutes. + my $next_run = $dbh->selectrow_array('SELECT NOW() + ' . + $dbh->sql_interval('?', 'MINUTE'), + undef, $minute_offset); + $next_run = format_time($next_run, "%Y-%m-%d %R"); + $sth = $dbh->prepare("UPDATE whine_schedules " . - "SET run_next = NOW() + " . - $dbh->sql_interval('? MINUTE') . " - " . - $dbh->sql_interval('SECOND(NOW()) SECOND') . - " WHERE id = ?"); - $sth->execute($minute_offset, $schedule_id); + "SET run_next = ? WHERE id = ?"); + $sth->execute($next_run, $schedule_id); } else { # The minute offset is zero or less, which is not supposed to happen. # complain to STDERR @@ -636,7 +646,7 @@ sub null_schedule { # time a schedule should run, excluding today # # It takes a run_day argument (see check_today, above, for an explanation), -# and returns an SQL date +# and returns an integer, representing a number of days. sub get_next_date { my $day = shift; @@ -689,11 +699,5 @@ sub get_next_date { $add_days += $daysinmonth[$now_month]; } } - - # Get a date in whatever format the database will accept - $sth = $dbh->prepare("SELECT CURRENT_DATE() + " . - $dbh->sql_interval('? DAY')); - $sth->execute($add_days); - return $sth->fetch->[0]; + return $add_days; } -