diff --git a/Bugzilla/Auth.pm b/Bugzilla/Auth.pm
index d7db96b462d69981f21d9acd12ec791a1f810910..ba32277b770e27fa18ad83d974670290d33c23f3 100644
--- a/Bugzilla/Auth.pm
+++ b/Bugzilla/Auth.pm
@@ -23,8 +23,6 @@
 package Bugzilla::Auth;
 
 use strict;
-use base qw(Exporter);
-@Bugzilla::Auth::EXPORT = qw(bz_crypt);
 
 use Bugzilla::Config;
 use Bugzilla::Constants;
@@ -44,31 +42,6 @@ BEGIN {
     }
 }
 
-sub bz_crypt ($) {
-    my ($password) = @_;
-
-    # The list of characters that can appear in a salt.  Salts and hashes
-    # are both encoded as a sequence of characters from a set containing
-    # 64 characters, each one of which represents 6 bits of the salt/hash.
-    # The encoding is similar to BASE64, the difference being that the
-    # BASE64 plus sign (+) is replaced with a forward slash (/).
-    my @saltchars = (0..9, 'A'..'Z', 'a'..'z', '.', '/');
-
-    # Generate the salt.  We use an 8 character (48 bit) salt for maximum
-    # security on systems whose crypt uses MD5.  Systems with older
-    # versions of crypt will just use the first two characters of the salt.
-    my $salt = '';
-    for ( my $i=0 ; $i < 8 ; ++$i ) {
-        $salt .= $saltchars[rand(64)];
-    }
-
-    # Crypt the password.
-    my $cryptedpassword = crypt($password, $salt);
-
-    # Return the crypted password.
-    return $cryptedpassword;
-}
-
 # PRIVATE
 
 # A number of features, like password change requests, require the DB
@@ -107,13 +80,15 @@ sub authenticate {
     my @args   = @_;
     my @firstresult = ();
     my @result = ();
+    my $current_verify_method;
     for my $method (split /,\s*/, Param("user_verify_class")) {
+        $current_verify_method = $method;
         $method = "Bugzilla::Auth::Verify::" . $method;
         @result = $method->authenticate(@args);
         @firstresult = @result unless @firstresult;
 
         if (($result[0] != AUTH_NODATA)&&($result[0] != AUTH_LOGINFAILED)) {
-            $current_verify_class = $method;
+            unshift @result, ($current_verify_method);
             return @result;
         }
     }
@@ -123,13 +98,16 @@ sub authenticate {
     # see if we can set $current to the first verify method that
     # will allow a new login
 
+    my $chosen_verify_method;
     for my $method (split /,\s*/, Param("user_verify_class")) {
+        $current_verify_method = $method;
         $method = "Bugzilla::Auth::Verify::" . $method;
         if ($method->can_edit('new')) {
-            $current_verify_class = $method;
+            $chosen_verify_method = $method;
         }
     }
 
+    unshift @result, $chosen_verify_method;
     return @result;
 }
 
@@ -155,11 +133,6 @@ __END__
 
 Bugzilla::Auth - Authentication handling for Bugzilla users
 
-=head1 SYNOPSIS
-
-  # Class Functions
-  $crypted = bz_crypt($password);
-
 =head1 DESCRIPTION
 
 Handles authentication for Bugzilla users.
@@ -179,23 +152,6 @@ authentication or login modules.
 
 =over 4
 
-=item C<bz_crypt($password)>
-
-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.
-
-=begin undocumented
-
-Random salts are generated because the alternative is usually
-to use the first two characters of the password itself, and since
-the salt appears in plaintext at the beginning of the encrypted
-password string this has the effect of revealing the first two
-characters of the password to anyone who views the encrypted version.
-
-=end undocumented
-
 =item C<Bugzilla::Auth::get_netaddr($ipaddr)>
 
 Given an ip address, this returns the associated network address, using
@@ -222,16 +178,15 @@ This method is passed a username and a password, and returns a list
 containing up to four return values, depending on the results of the
 authentication.
 
-The first return value is one of the status codes defined in
-L<Bugzilla::Constants|Bugzilla::Constants> and described below.  The
-rest of the return values are status code-specific and are explained in
-the status code descriptions.
-
-=over 4
+The first return value is the name of the class that generated the results 
+constined in the remaining return values.  The second return value is one of 
+the status codes defined in L<Bugzilla::Constants|Bugzilla::Constants> and 
+described below.  The rest of the return values are status code-specific 
+and are explained in the status code descriptions.
 
 =item C<AUTH_OK>
 
-Authentication succeeded. The second variable is the userid of the new
+Authentication succeeded. The third variable is the userid of the new
 user.
 
 =item C<AUTH_NODATA>
@@ -241,11 +196,11 @@ cases, such as cookie authentication when the cookie is not present.
 
 =item C<AUTH_ERROR>
 
-An error occurred when trying to use the login mechanism. The second return
+An error occurred when trying to use the login mechanism. The third return
 value may contain the Bugzilla userid, but will probably be C<undef>,
-signifiying that the userid is unknown. The third value is a tag describing
+signifiying that the userid is unknown. The fourth value is a tag describing
 the error used by the authentication error templates to print a description
-to the user. The optional fourth argument is a hashref of values used as part
+to the user. The optional fifth argument is a hashref of values used as part
 of the tag's error descriptions.
 
 This error template must have a name/location of
@@ -255,28 +210,26 @@ I<account/auth/C<lc(authentication-type)>-error.html.tmpl>.
 
 An incorrect username or password was given. Note that for security reasons,
 both cases return the same error code. However, in the case of a valid
-username, the second argument may be the userid. The authentication
+username, the third argument may be the userid. The authentication
 mechanism may not always be able to discover the userid if the password is
 not known, so whether or not this argument is present is implementation
 specific. For security reasons, the presence or lack of a userid value should
 not be communicated to the user.
 
-The third argument is an optional tag from the authentication server
+The fourth argument is an optional tag from the authentication server
 describing the error. The tag can be used by a template to inform the user
 about the error.  Similar to C<AUTH_ERROR>, an optional hashref may be
-present as a fourth argument, to be used by the tag to give more detailed 
+present as a fifth argument, to be used by the tag to give more detailed 
 information.
 
 =item C<AUTH_DISABLED>
 
 The user successfully logged in, but their account has been disabled.
-The second argument in the returned array is the userid, and the third
+The third argument in the returned array is the userid, and the fourth
 is some text explaining why the account was disabled. This text would
 typically come from the C<disabledtext> field in the C<profiles> table.
 Note that this argument is a string, not a tag.
 
-=back
-
 =item C<current_verify_class>
 
 This scalar gets populated with the full name (eg.,
@@ -312,6 +265,8 @@ by trying cookies as a fallback.
 
 The login interface consists of the following methods:
 
+=over 4
+
 =item C<login>, which takes a C<$type> argument, using constants found in
 C<Bugzilla::Constants>.
 
@@ -324,8 +279,6 @@ login method to prompt the user for this data.
 
 The constants accepted by C<login> include the following:
 
-=over 4
-
 =item C<LOGIN_OPTIONAL>
 
 A login is never required to access this data. Attempting to login is
@@ -342,14 +295,10 @@ I<requirelogin> parameter.
 
 A login is always required to access this data.
 
-=back
-
 =item C<logout>, which takes a C<Bugzilla::User> argument for the user
 being logged out, and an C<$option> argument. Possible values for
 C<$option> include:
 
-=over 4
-
 =item C<LOGOUT_CURRENT>
 
 Log out the user and invalidate his currently registered session.
diff --git a/Bugzilla/Auth/CVS/Entries b/Bugzilla/Auth/CVS/Entries
index 7ae3d801058aefe3a3d4adf6b9143d0fa4d0f91d..51770adbdf4f572e6d8ba35af2db82e2b9deaa75 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_19_3
+/README/1.2/Thu Jul 29 02:45:38 2004//TBUGZILLA-2_20
 D/Login////
 D/Verify////
diff --git a/Bugzilla/Auth/CVS/Tag b/Bugzilla/Auth/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/Bugzilla/Auth/CVS/Tag
+++ b/Bugzilla/Auth/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/Bugzilla/Auth/Login/CVS/Entries b/Bugzilla/Auth/Login/CVS/Entries
index f41bba4ed0c5182c9851c59a16723f95484eb65c..baffa44b2df277554878034818337449e1194e39 100644
--- a/Bugzilla/Auth/Login/CVS/Entries
+++ b/Bugzilla/Auth/Login/CVS/Entries
@@ -1,2 +1,2 @@
-/WWW.pm/1.6/Sat Mar 12 21:51:15 2005//TBUGZILLA-2_19_3
+/WWW.pm/1.6.4.1/Wed Jul 27 19:08:42 2005//TBUGZILLA-2_20
 D/WWW////
diff --git a/Bugzilla/Auth/Login/CVS/Entries.Log b/Bugzilla/Auth/Login/CVS/Entries.Log
new file mode 100644
index 0000000000000000000000000000000000000000..c9d7ccf46c3861883abb742ee8c370e9537c57d9
--- /dev/null
+++ b/Bugzilla/Auth/Login/CVS/Entries.Log
@@ -0,0 +1,2 @@
+A D/CGI////
+R D/CGI////
diff --git a/Bugzilla/Auth/Login/CVS/Tag b/Bugzilla/Auth/Login/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/Bugzilla/Auth/Login/CVS/Tag
+++ b/Bugzilla/Auth/Login/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/Bugzilla/Auth/Login/WWW.pm b/Bugzilla/Auth/Login/WWW.pm
index f54e5760bd210914ed13b42407fb564f00b7c277..f4bb102b1c2c4d810a8e7a33feae54695c8934b0 100644
--- a/Bugzilla/Auth/Login/WWW.pm
+++ b/Bugzilla/Auth/Login/WWW.pm
@@ -104,10 +104,12 @@ Bugzilla::Auth::Login::WWW - WWW login information gathering module
 
 =head1 METHODS
 
+=over
+
 =item C<login>
 
 Passes C<login> calls to each class defined in the param C<user_info_class>
 and returns a C<Bugzilla::User> object from the first one that successfully
 gathers user login information.
 
-
+=back
diff --git a/Bugzilla/Auth/Login/WWW/CGI.pm b/Bugzilla/Auth/Login/WWW/CGI.pm
index 98fd3a6d3beaecb64008738e17d7a8758833c14f..00d5e382ac3080e7b67afb092b7643a8595ba7aa 100644
--- a/Bugzilla/Auth/Login/WWW/CGI.pm
+++ b/Bugzilla/Auth/Login/WWW/CGI.pm
@@ -53,8 +53,8 @@ sub login {
     
     $cgi->delete('Bugzilla_login', 'Bugzilla_password');
 
-    my $authmethod = Param("user_verify_class");
-    my ($authres, $userid, $extra, $info) =
+    # Perform the actual authentication, get the method name from the class name
+    my ($authmethod, $authres, $userid, $extra, $info) =
       Bugzilla::Auth->authenticate($username, $passwd);
 
     if ($authres == AUTH_OK) {
@@ -232,12 +232,8 @@ sub logout {
 
 sub clear_browser_cookies {
     my $cgi = Bugzilla->cgi;
-    $cgi->send_cookie(-name => "Bugzilla_login",
-                      -value => "",
-                      -expires => "Tue, 15-Sep-1998 21:49:00 GMT");
-    $cgi->send_cookie(-name => "Bugzilla_logincookie",
-                      -value => "",
-                      -expires => "Tue, 15-Sep-1998 21:49:00 GMT");
+    $cgi->remove_cookie('Bugzilla_login');
+    $cgi->remove_cookie('Bugzilla_logincookie');
 }
 
 1;
diff --git a/Bugzilla/Auth/Login/WWW/CGI/CVS/Entries b/Bugzilla/Auth/Login/WWW/CGI/CVS/Entries
index 7485d33aaff87108f08ec0f286a56d9108b2fb0b..2fee5f9ab8d472d6742804eeb0c8ef0940f8ebe5 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_19_3
+/Cookie.pm/1.3/Tue Mar 22 22:41:07 2005//TBUGZILLA-2_20
 D
diff --git a/Bugzilla/Auth/Login/WWW/CGI/CVS/Tag b/Bugzilla/Auth/Login/WWW/CGI/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/Bugzilla/Auth/Login/WWW/CGI/CVS/Tag
+++ b/Bugzilla/Auth/Login/WWW/CGI/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/Bugzilla/Auth/Login/WWW/CVS/Entries b/Bugzilla/Auth/Login/WWW/CVS/Entries
index 75e0ad05238dfe8cc456f629be969bbc4e597c8d..278027edc4932f96e7f39d445a224e9fdbcd7c36 100644
--- a/Bugzilla/Auth/Login/WWW/CVS/Entries
+++ b/Bugzilla/Auth/Login/WWW/CVS/Entries
@@ -1,3 +1,3 @@
-/CGI.pm/1.10/Thu May 12 01:52:13 2005//TBUGZILLA-2_19_3
-/Env.pm/1.3/Sat Apr 16 17:08:32 2005//TBUGZILLA-2_19_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
 D/CGI////
diff --git a/Bugzilla/Auth/Login/WWW/CVS/Tag b/Bugzilla/Auth/Login/WWW/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/Bugzilla/Auth/Login/WWW/CVS/Tag
+++ b/Bugzilla/Auth/Login/WWW/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/Bugzilla/Auth/Login/WWW/Env.pm b/Bugzilla/Auth/Login/WWW/Env.pm
index 2f29d570fdba374217e45b98ce04f3b06360dd8f..39bea28dfd7b0976d1133b5e444523b4c057e80e 100644
--- a/Bugzilla/Auth/Login/WWW/Env.pm
+++ b/Bugzilla/Auth/Login/WWW/Env.pm
@@ -51,8 +51,12 @@ sub login {
     for ($env_id, $env_email, $env_realname) { $_ ||= '' };
     # make sure the email field contains only a valid email address
     my $emailregexp = Param("emailregexp");
-    $env_email =~ /($emailregexp)/;
-    $env_email = $1;
+    if ($env_email =~ /($emailregexp)/) {
+        $env_email = $1;
+    }
+    else {
+        return undef;
+    }
     # untaint the remaining values
     trick_taint($env_id);
     trick_taint($env_realname);
@@ -84,7 +88,8 @@ sub login {
             # also sent), and the id, so that we have a way of telling that we
             # got something instead of a bunch of NULLs
             $sth = $dbh->prepare("SELECT extern_id, userid, disabledtext " .
-                                 "FROM profiles WHERE login_name=?");
+                                 "FROM profiles WHERE " .
+                                 $dbh->sql_istrcmp('login_name', '?'));
             $sth->execute($env_email);
 
             $sth->execute();
diff --git a/Bugzilla/Auth/Verify/CVS/Entries b/Bugzilla/Auth/Verify/CVS/Entries
index 016ac9fef4cc5df2ae8c7f9782980538bb663d3c..4eb3d7ce7c7fded0f8f4727bde69d4d92d58aaff 100644
--- a/Bugzilla/Auth/Verify/CVS/Entries
+++ b/Bugzilla/Auth/Verify/CVS/Entries
@@ -1,3 +1,3 @@
-/DB.pm/1.4/Mon Jan 31 19:26:01 2005//TBUGZILLA-2_19_3
-/LDAP.pm/1.5/Wed Feb  9 06:42:43 2005//TBUGZILLA-2_19_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
 D
diff --git a/Bugzilla/Auth/Verify/CVS/Tag b/Bugzilla/Auth/Verify/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/Bugzilla/Auth/Verify/CVS/Tag
+++ b/Bugzilla/Auth/Verify/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/Bugzilla/Auth/Verify/DB.pm b/Bugzilla/Auth/Verify/DB.pm
index 1d5c6850cdcd30895d7a749eee3be0da6ac50450..405a737b87dd6b098878036f7c7a55ba985f37a2 100644
--- a/Bugzilla/Auth/Verify/DB.pm
+++ b/Bugzilla/Auth/Verify/DB.pm
@@ -34,6 +34,7 @@ use strict;
 use Bugzilla::Config;
 use Bugzilla::Constants;
 use Bugzilla::Util;
+use Bugzilla::User;
 
 my $edit_options = {
     'new' => 1,
@@ -52,11 +53,8 @@ sub authenticate {
 
     return (AUTH_NODATA) unless defined $username && defined $passwd;
 
-    # We're just testing against the db: any value is ok
-    trick_taint($username);
-
-    my $userid = $class->get_id_from_username($username);
-    return (AUTH_LOGINFAILED) unless defined $userid;
+    my $userid = Bugzilla::User::login_to_id($username);
+    return (AUTH_LOGINFAILED) unless $userid;
 
     return (AUTH_LOGINFAILED, $userid) 
         unless $class->check_password($userid, $passwd);
@@ -74,15 +72,6 @@ sub authenticate {
     return (AUTH_OK, $userid);
 }
 
-sub get_id_from_username {
-    my ($class, $username) = @_;
-    my $dbh = Bugzilla->dbh;
-    my $sth = $dbh->prepare_cached("SELECT userid FROM profiles " .
-                                   "WHERE login_name=?");
-    my ($userid) = $dbh->selectrow_array($sth, undef, $username);
-    return $userid;
-}
-
 sub get_disabled {
     my ($class, $userid) = @_;
     my $dbh = Bugzilla->dbh;
diff --git a/Bugzilla/Auth/Verify/LDAP.pm b/Bugzilla/Auth/Verify/LDAP.pm
index 551a70f45b55b1328f224a61c45df314dd73e507..ee58f9d7e5660bab16b9f63941d8165b92a69956 100644
--- a/Bugzilla/Auth/Verify/LDAP.pm
+++ b/Bugzilla/Auth/Verify/LDAP.pm
@@ -137,7 +137,8 @@ sub authenticate {
     my $dbh = Bugzilla->dbh;
     my $sth = $dbh->prepare_cached("SELECT userid, disabledtext " .
                                    "FROM profiles " .
-                                   "WHERE login_name=?");
+                                   "WHERE " .
+                                   $dbh->sql_istrcmp('login_name', '?'));
     my ($userid, $disabledtext) =
       $dbh->selectrow_array($sth,
                             undef,
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 4439a79932532d8d3f0e2f689f1d8b804fcdf221..3a9a64ddc021b0ed0dfc0295920da33d94c33966 100755
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -22,7 +22,7 @@
 #                 Chris Yeh      <cyeh@bluemartini.com>
 #                 Bradley Baetz  <bbaetz@acm.org>
 #                 Dave Miller    <justdave@bugzilla.org>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 #                 Fr�d�ric Buclin <LpSolit@gmail.com>
 
 package Bugzilla::Bug;
@@ -30,7 +30,7 @@ package Bugzilla::Bug;
 use strict;
 
 use vars qw($legal_keywords @legal_platform
-            @legal_priority @legal_severity @legal_opsys @legal_bugs_status
+            @legal_priority @legal_severity @legal_opsys @legal_bug_status
             @settable_resolution %components %versions %target_milestone
             @enterable_products %milestoneurl %prodmaxvotes);
 
@@ -137,14 +137,14 @@ sub initBug  {
       return $self;
   }
 
-# default userid 0, or get DBID if you used an email address
-  unless (defined $user_id) {
+  # If the user is not logged in, sets $user_id to 0.
+  # Else gets $user_id from the user login name if this
+  # argument is not numeric.
+  my $stored_user_id = $user_id;
+  if (!defined $user_id) {
     $user_id = 0;
-  }
-  else {
-     if ($user_id =~ /^\@/) {
-        $user_id = login_to_id($user_id); 
-     }
+  } elsif (!detaint_natural($user_id)) {
+    $user_id = login_to_id($stored_user_id); 
   }
 
   $self->{'who'} = new Bugzilla::User($user_id);
@@ -163,12 +163,16 @@ sub initBug  {
       reporter_accessible, cclist_accessible,
       estimated_time, remaining_time, " .
       $dbh->sql_date_format('deadline', '%Y-%m-%d') . "
-    FROM bugs LEFT JOIN votes using(bug_id),
-      classifications, products, components
-    WHERE bugs.bug_id = ?
-      AND classifications.id = products.classification_id
-      AND products.id = bugs.product_id
-      AND components.id = bugs.component_id " .
+    FROM bugs
+       LEFT JOIN votes
+           USING (bug_id)
+      INNER JOIN components
+              ON components.id = bugs.component_id
+      INNER JOIN products
+              ON products.id = bugs.product_id
+      INNER JOIN classifications
+              ON classifications.id = products.classification_id
+      WHERE bugs.bug_id = ? " .
     $dbh->sql_group_by('bugs.bug_id', 'alias, products.classification_id,
       classifications.name, bugs.product_id, products.name, version,
       rep_platform, op_sys, bug_status, resolution, priority,
@@ -584,9 +588,8 @@ sub user {
     return $self->{'user'} if exists $self->{'user'};
     return {} if $self->{'error'};
 
-    my @movers = map { trim $_ } split(",", Param("movers"));
-    my $canmove = Param("move-enabled") && Bugzilla->user->id && 
-                  (lsearch(\@movers, Bugzilla->user->login) != -1);
+    my $user = Bugzilla->user;
+    my $canmove = Param('move-enabled') && $user->is_mover;
 
     # In the below, if the person hasn't logged in, then we treat them
     # as if they can do anything.  That's because we don't know why they
@@ -594,17 +597,17 @@ sub user {
     # Display everything as if they have all the permissions in the
     # world; their permissions will get checked when they log in and
     # actually try to make the change.
-    my $unknown_privileges = !Bugzilla->user->id
-                             || Bugzilla->user->in_group("editbugs");
+    my $unknown_privileges = !$user->id
+                             || $user->in_group("editbugs");
     my $canedit = $unknown_privileges
-                  || Bugzilla->user->id == $self->{assigned_to_id}
+                  || $user->id == $self->{assigned_to_id}
                   || (Param('useqacontact')
                       && $self->{'qa_contact_id'}
-                      && Bugzilla->user->id == $self->{qa_contact_id});
+                      && $user->id == $self->{qa_contact_id});
     my $canconfirm = $unknown_privileges
-                     || Bugzilla->user->in_group("canconfirm");
-    my $isreporter = Bugzilla->user->id
-                     && Bugzilla->user->id == $self->{reporter_id};
+                     || $user->in_group("canconfirm");
+    my $isreporter = $user->id
+                     && $user->id == $self->{reporter_id};
 
     $self->{'user'} = {canmove    => $canmove,
                        canconfirm => $canconfirm,
@@ -663,7 +666,7 @@ sub choices {
        'priority' => \@::legal_priority,
        'bug_severity' => \@::legal_severity,
        'op_sys' => \@::legal_opsys,
-       'bug_status' => \@::legal_bugs_status,
+       'bug_status' => \@::legal_bug_status,
        'resolution' => \@res,
        'component' => $::components{$self->{product}},
        'version' => $::versions{$self->{product}},
@@ -692,7 +695,7 @@ sub bug_alias_to_id ($) {
 #####################################################################
 
 sub AppendComment ($$$;$$$) {
-    my ($bugid, $who, $comment, $isprivate, $timestamp, $work_time) = @_;
+    my ($bugid, $whoid, $comment, $isprivate, $timestamp, $work_time) = @_;
     $work_time ||= 0;
     my $dbh = Bugzilla->dbh;
 
@@ -713,7 +716,6 @@ sub AppendComment ($$$;$$$) {
     # Comments are always safe, because we always display their raw contents,
     # and we use them in a placeholder below.
     trick_taint($comment); 
-    my $whoid = &::DBNameToIdAndCheck($who);
     my $privacyval = $isprivate ? 1 : 0 ;
     $dbh->do(q{INSERT INTO longdescs
                       (bug_id, who, bug_when, thetext, isprivate, work_time)
@@ -964,19 +966,10 @@ sub CheckIfVotedConfirmed {
                  "VALUES (?, ?, ?, ?, ?, ?)",
                  undef, ($id, $who, $timestamp, $fieldid, '0', '1'));
 
-        AppendComment($id, &::DBID_to_name($who),
+        AppendComment($id, $who,
                       "*** This bug has been confirmed by popular vote. ***",
                       0, $timestamp);
 
-        my $template = Bugzilla->template;
-        my $vars = $::vars;
-
-        $vars->{'type'} = "votes";
-        $vars->{'id'} = $id;
-        $vars->{'mailrecipients'} = { 'changer' => $who };
-
-        $template->process("bug/process/results.html.tmpl", $vars)
-          || ThrowTemplateError($template->error());
         $ret = 1;
     }
     return $ret;
@@ -1033,6 +1026,78 @@ sub ValidateBugAlias {
     $_[0] = $alias;
 }
 
+# Validate and return a hash of dependencies
+sub ValidateDependencies($$$) {
+    my $fields = {};
+    $fields->{'dependson'} = shift;
+    $fields->{'blocked'} = shift;
+    my $id = shift || 0;
+
+    unless (defined($fields->{'dependson'})
+            || defined($fields->{'blocked'}))
+    {
+        return;
+    }
+
+    my $dbh = Bugzilla->dbh;
+    my %deps;
+    my %deptree;
+    foreach my $pair (["blocked", "dependson"], ["dependson", "blocked"]) {
+        my ($me, $target) = @{$pair};
+        $deptree{$target} = [];
+        $deps{$target} = [];
+        next unless $fields->{$target};
+
+        my %seen;
+        foreach my $i (split('[\s,]+', $fields->{$target})) {
+            if ($id == $i) {
+                ThrowUserError("dependency_loop_single");
+            }
+            if (!exists $seen{$i}) {
+                push(@{$deptree{$target}}, $i);
+                $seen{$i} = 1;
+            }
+        }
+        # populate $deps{$target} as first-level deps only.
+        # and find remainder of dependency tree in $deptree{$target}
+        @{$deps{$target}} = @{$deptree{$target}};
+        my @stack = @{$deps{$target}};
+        while (@stack) {
+            my $i = shift @stack;
+            my $dep_list =
+                $dbh->selectcol_arrayref("SELECT $target
+                                          FROM dependencies
+                                          WHERE $me = ?", undef, $i);
+            foreach my $t (@$dep_list) {
+                # ignore any _current_ dependencies involving this bug,
+                # as they will be overwritten with data from the form.
+                if ($t != $id && !exists $seen{$t}) {
+                    push(@{$deptree{$target}}, $t);
+                    push @stack, $t;
+                    $seen{$t} = 1;
+                }
+            }
+        }
+    }
+
+    my @deps   = @{$deptree{'dependson'}};
+    my @blocks = @{$deptree{'blocked'}};
+    my @union = ();
+    my @isect = ();
+    my %union = ();
+    my %isect = ();
+    foreach my $b (@deps, @blocks) { $union{$b}++ && $isect{$b}++ }
+    @union = keys %union;
+    @isect = keys %isect;
+    if (scalar(@isect) > 0) {
+        my $both = "";
+        foreach my $i (@isect) {
+           $both .= &::GetBugLink($i, "#" . $i) . " ";
+        }
+        ThrowUserError("dependency_loop_multi", { both => $both });
+    }
+    return %deps;
+}
 
 sub AUTOLOAD {
   use vars qw($AUTOLOAD);
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm
index faa30b09029d79dd3facd4dc4179d28512cb48cc..c0fc7d882953ba1212bfdf2faafb921b8fdb1320 100644
--- a/Bugzilla/BugMail.pm
+++ b/Bugzilla/BugMail.pm
@@ -39,6 +39,7 @@ use base qw(Exporter);
 use Bugzilla::Constants;
 use Bugzilla::Config qw(:DEFAULT $datadir);
 use Bugzilla::Util;
+use Bugzilla::User;
 
 use Mail::Mailer;
 use Mail::Header;
@@ -362,16 +363,20 @@ sub ProcessOneBug($$) {
         if ($old) {
             # You can't stop being the reporter, and mail isn't sent if you
             # remove your vote.
+            # Ignore people whose user account has been deleted or renamed.
             if ($what eq "CC") {
                 foreach my $cc_user (split(/[\s,]+/, $old)) {
-                    push(@{$recipients{DBNameToIdAndCheck($cc_user)}}, REL_CC);
+                    my $uid = login_to_id($cc_user);
+                    push(@{$recipients{$uid}}, REL_CC) if $uid;
                 }
             }
             elsif ($what eq "QAContact") {
-                push(@{$recipients{DBNameToIdAndCheck($old)}}, REL_QA);
+                my $uid = login_to_id($old);
+                push(@{$recipients{$uid}}, REL_QA) if $uid;
             }
             elsif ($what eq "AssignedTo") {
-                push(@{$recipients{DBNameToIdAndCheck($old)}}, REL_ASSIGNEE);
+                my $uid = login_to_id($old);
+                push(@{$recipients{$uid}}, REL_ASSIGNEE) if $uid;
             }
         }
     }
@@ -615,6 +620,14 @@ sub MessageToMTA ($) {
     my ($msg) = (@_);
     return if (Param('mail_delivery_method') eq "none");
 
+    if (Param("mail_delivery_method") eq "sendmail" && $^O =~ /MSWin32/i) {
+        open(SENDMAIL, '|' . SENDMAIL_EXE . ' -t -i') ||
+            die "Failed to execute " . SENDMAIL_EXE . ": $!\n";
+        print SENDMAIL $msg;
+        close SENDMAIL;
+        return;
+    }
+
     my @args;
     if (Param("mail_delivery_method") eq "sendmail" && !Param("sendmailnow")) {
         push @args, "-ODeliveryMode=deferred";
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm
index c4433cc62b77575883ea136e83fc2b64ecd4aedd..3e86af033f2b5c0d6c6d1d07629cf1110a1f605f 100644
--- a/Bugzilla/CGI.pm
+++ b/Bugzilla/CGI.pm
@@ -19,6 +19,7 @@
 #
 # Contributor(s): Bradley Baetz <bbaetz@student.usyd.edu.au>
 #                 Byron Jones <bugzilla@glob.com.au>
+#                 Marc Schumann <wurblzap@gmail.com>
 
 use strict;
 
@@ -28,6 +29,7 @@ use CGI qw(-no_xhtml -oldstyle_urls :private_tempfiles :unique_headers SERVER_PU
 
 use base qw(CGI);
 
+use Bugzilla::Error;
 use Bugzilla::Util;
 use Bugzilla::Config;
 
@@ -53,7 +55,7 @@ sub new {
     $self->charset('');
 
     # Redirect to SSL if required
-    if (Param('sslbase') ne '' and Param('ssl') eq 'always') {
+    if (Param('sslbase') ne '' and Param('ssl') eq 'always' and i_am_cgi()) {
         $self->require_https(Param('sslbase'));
     }
 
@@ -177,21 +179,42 @@ sub multipart_start {
 sub send_cookie {
     my $self = shift;
 
-    # Add the default path in
-    unshift(@_, '-path' => Param('cookiepath'));
-    if (Param('cookiedomain'))
-    {
-        unshift(@_, '-domain' => Param('cookiedomain'));
+    # Move the param list into a hash for easier handling.
+    my %paramhash;
+    my @paramlist;
+    my ($key, $value);
+    while ($key = shift) {
+        $value = shift;
+        $paramhash{$key} = $value;
     }
 
-    # Use CGI::Cookie directly, because CGI.pm's |cookie| method gives the
-    # current value if there isn't a -value attribute, which happens when
-    # we're expiring an entry.
-    require CGI::Cookie;
-    my $cookie = CGI::Cookie->new(@_);
-    push @{$self->{Bugzilla_cookie_list}}, $cookie;
+    # Complain if -value is not given or empty (bug 268146).
+    if (!exists($paramhash{'-value'}) || !$paramhash{'-value'}) {
+        ThrowCodeError('cookies_need_value');
+    }
+
+    # Add the default path and the domain in.
+    $paramhash{'-path'} = Param('cookiepath');
+    $paramhash{'-domain'} = Param('cookiedomain') if Param('cookiedomain');
+
+    # Move the param list back into an array for the call to cookie().
+    foreach (keys(%paramhash)) {
+        unshift(@paramlist, $_ => $paramhash{$_});
+    }
+
+    push(@{$self->{'Bugzilla_cookie_list'}}, $self->cookie(@paramlist));
+}
 
-    return;
+# Cookies are removed by setting an expiry date in the past.
+# This method is a send_cookie wrapper doing exactly this.
+sub remove_cookie {
+    my $self = shift;
+    my ($cookiename) = (@_);
+
+    # Expire the cookie, giving a non-empty dummy value (bug 268146).
+    $self->send_cookie('-name'    => $cookiename,
+                       '-expires' => 'Tue, 15-Sep-1998 21:49:00 GMT',
+                       '-value'   => 'X');
 }
 
 # Redirect to https if required
@@ -256,11 +279,21 @@ Values in C<@exclude> are not included in the result.
 
 =item C<send_cookie>
 
-This routine is identical to CGI.pm's C<cookie> routine, except that the cookie
-is sent to the browser, rather than returned. This should be used by all
-Bugzilla code (instead of C<cookie> or the C<-cookie> argument to C<header>),
-so that under mod_perl the headers can be sent correctly, using C<print> or
-the mod_perl APIs as appropriate.
+This routine is identical to the cookie generation part of CGI.pm's C<cookie>
+routine, except that it knows about Bugzilla's cookie_path and cookie_domain
+parameters and takes them into account if necessary.
+This should be used by all Bugzilla code (instead of C<cookie> or the C<-cookie>
+argument to C<header>), so that under mod_perl the headers can be sent
+correctly, using C<print> or the mod_perl APIs as appropriate.
+
+To remove (expire) a cookie, use C<remove_cookie>.
+
+=item C<remove_cookie>
+
+This is a wrapper around send_cookie, setting an expiry date in the past,
+effectively removing the cookie.
+
+As its only argument, it takes the name of the cookie to expire.
 
 =item C<require_https($baseurl)>
 
diff --git a/Bugzilla/CVS/Entries b/Bugzilla/CVS/Entries
index b4fd539708cf512ef318297c2934902b81388051..46e7dfe706a4b5f6b53097c6a3d53bae4f301f29 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_19_3
-/Attachment.pm/1.21/Thu Apr 28 02:14:26 2005//TBUGZILLA-2_19_3
-/Auth.pm/1.9/Mon Jan 31 20:13:55 2005//TBUGZILLA-2_19_3
-/Bug.pm/1.76/Tue May  3 18:44:53 2005//TBUGZILLA-2_19_3
-/BugMail.pm/1.39/Mon Apr  4 21:09:17 2005//TBUGZILLA-2_19_3
-/CGI.pm/1.15/Sun Jan 16 20:43:22 2005//TBUGZILLA-2_19_3
-/Chart.pm/1.8/Mon Apr 11 22:39:11 2005//TBUGZILLA-2_19_3
-/Config.pm/1.40/Thu May 12 02:51:04 2005//TBUGZILLA-2_19_3
-/Constants.pm/1.22/Tue Mar 29 21:42:57 2005//TBUGZILLA-2_19_3
-/DB.pm/1.53/Sat Apr 23 02:11:51 2005//TBUGZILLA-2_19_3
-/Error.pm/1.13/Tue Mar 22 19:22:40 2005//TBUGZILLA-2_19_3
-/Flag.pm/1.38/Fri Apr 22 02:17:14 2005//TBUGZILLA-2_19_3
-/FlagType.pm/1.16/Thu May  5 19:20:44 2005//TBUGZILLA-2_19_3
-/Group.pm/1.1/Fri Feb 18 22:42:07 2005//TBUGZILLA-2_19_3
-/Search.pm/1.96/Tue May 10 21:05:19 2005//TBUGZILLA-2_19_3
-/Series.pm/1.9/Wed Mar 16 00:27:15 2005//TBUGZILLA-2_19_3
-/Template.pm/1.25/Mon Apr  4 22:29:09 2005//TBUGZILLA-2_19_3
-/Token.pm/1.29/Thu Mar  3 07:19:09 2005//TBUGZILLA-2_19_3
-/User.pm/1.54/Sun Apr 10 17:49:48 2005//TBUGZILLA-2_19_3
-/Util.pm/1.26/Tue May 10 20:30:12 2005//TBUGZILLA-2_19_3
+/.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
 D/Auth////
 D/DB////
 D/Template////
diff --git a/Bugzilla/CVS/Entries.Log b/Bugzilla/CVS/Entries.Log
new file mode 100644
index 0000000000000000000000000000000000000000..1b9c529ed6cc3fa2a0c356a402c2ef2b6cfd6cdd
--- /dev/null
+++ b/Bugzilla/CVS/Entries.Log
@@ -0,0 +1,2 @@
+A D/Search////
+R D/Search////
diff --git a/Bugzilla/CVS/Tag b/Bugzilla/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/Bugzilla/CVS/Tag
+++ b/Bugzilla/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm
index 258db815709a4e119271c9939100a4dc704c6e77..4579e0cd67c67a1eed574c9b5e9084a2b041f91a 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.19.3";
+$Bugzilla::Config::VERSION = "2.20";
 
 use Safe;
 
@@ -204,7 +204,7 @@ sub UpdateParams {
                 $param{'defaultplatform'} = 'Other';
             }
             if (!exists $param{'defaultopsys'}) {
-                $param{'defaultopsys'} = 'other';
+                $param{'defaultopsys'} = 'Other';
             }
         }
         delete $param{'usebrowserinfo'};
@@ -299,8 +299,8 @@ sub WriteParams {
     ChmodDataFile("$datadir/params", 0666);
 }
 
-# Some files in the data directory must be world readable iff we don't have
-# a webserver group. Call this function to do this.
+# Some files in the data directory must be world readable if and only if
+# we don't have a webserver group. Call this function to do this.
 # This will become a private function once all the datafile handling stuff
 # moves into this package
 
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm
index 9946be3f3385a956075147f4baa6fed865fd8987..ce4801b9328b346d2bf6c8d83da245fd13fd10eb 100644
--- a/Bugzilla/Constants.pm
+++ b/Bugzilla/Constants.pm
@@ -26,6 +26,7 @@
 #                 Bradley Baetz <bbaetz@student.usyd.edu.au>
 #                 Christopher Aillon <christopher@aillon.com>
 #                 Shane H. W. Travis <travis@sedsystems.ca>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 package Bugzilla::Constants;
 use strict;
@@ -67,6 +68,8 @@ use base qw(Exporter);
 
     COMMENT_COLS
 
+    DERIVE_GROUPS_TABLES_ALREADY_LOCKED
+
     UNLOCK_ABORT
     
     RELATIONSHIPS
@@ -82,6 +85,10 @@ use base qw(Exporter);
         
     GLOBAL_EVENTS
     EVT_FLAG_REQUESTED EVT_REQUESTED_FLAG
+
+    FULLTEXT_BUGLIST_LIMIT
+
+    SENDMAIL_EXE
 );
 
 @Bugzilla::Constants::EXPORT_OK = qw(contenttypes);
@@ -171,6 +178,10 @@ use constant DEFAULT_QUERY_NAME => '(Default query)';
 # The column length for displayed (and wrapped) bug comments.
 use constant COMMENT_COLS => 80;
 
+# Used to indicate to User::new and User::new_from_login calls
+# that the derive_groups tables are already locked
+use constant DERIVE_GROUPS_TABLES_ALREADY_LOCKED => 1;
+
 # used by Bugzilla::DB to indicate that tables are being unlocked
 # because of error
 use constant UNLOCK_ABORT => 1;
@@ -220,5 +231,11 @@ use constant EVT_REQUESTED_FLAG     => 101; # I have requested a flag
 
 use constant GLOBAL_EVENTS => EVT_FLAG_REQUESTED, EVT_REQUESTED_FLAG;
 
+#  Number of bugs to return in a buglist when performing
+#  a fulltext search.
+use constant FULLTEXT_BUGLIST_LIMIT => 200;
+
+# Path to sendmail.exe (Windows only)
+use constant SENDMAIL_EXE => '/usr/lib/sendmail.exe';
 
 1;
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm
index 850ea683a2c71a2114abf0070e31c05dfe47e476..c5f38d17bcf3b743814653b66af041e238a33123 100644
--- a/Bugzilla/DB.pm
+++ b/Bugzilla/DB.pm
@@ -23,6 +23,7 @@
 #                 Bradley Baetz <bbaetz@student.usyd.edu.au>
 #                 Christopher Aillon <christopher@aillon.com>
 #                 Tomas Kopal <Tomas.Kopal@altap.cz>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 package Bugzilla::DB;
 
@@ -72,6 +73,9 @@ use constant BLOB_TYPE => DBI::SQL_BLOB;
 # Bugzilla.pm. See bug 192531 for details.
 our $_current_sth;
 our @SQLStateStack = ();
+
+my $_fetchahead;
+
 sub SendSQL {
     my ($str) = @_;
 
@@ -82,6 +86,8 @@ sub SendSQL {
     # This is really really ugly, but its what we get for not doing
     # error checking for 5 years. See bug 189446 and bug 192531
     $_current_sth->{RaiseError} = 0;
+
+    undef $_fetchahead;
 }
 
 # Its much much better to use bound params instead of this
@@ -98,8 +104,6 @@ sub SqlQuote {
     return $res;
 }
 
-# XXX - mod_perl
-my $_fetchahead;
 sub MoreSQLData {
     return 1 if defined $_fetchahead;
 
@@ -187,7 +191,7 @@ sub _handle_error {
 }
 
 # List of abstract methods we are checking the derived class implements
-our @_abstract_methods = qw(REQUIRED_VERSION PROGRAM_NAME
+our @_abstract_methods = qw(REQUIRED_VERSION PROGRAM_NAME DBD_VERSION
                             new sql_regexp sql_not_regexp sql_limit sql_to_days
                             sql_date_format sql_interval
                             bz_lock_tables bz_unlock_tables);
@@ -217,6 +221,19 @@ sub import {
     $Exporter::ExportLevel-- if $is_exporter;
 }
 
+sub sql_istrcmp {
+    my ($self, $left, $right, $op) = @_;
+    $op ||= "=";
+
+    return $self->sql_istring($left) . " $op " . $self->sql_istring($right);
+}
+
+sub sql_istring {
+    my ($self, $string) = @_;
+
+    return "LOWER($string)";
+}
+
 sub sql_position {
     my ($self, $fragment, $text) = @_;
 
@@ -495,7 +512,10 @@ sub bz_drop_column {
             $table, $column);
         print "Deleting unused column $column from table $table ...\n";
         foreach my $sql (@statements) {
-            $self->do($sql);
+            # Because this is a deletion, we don't want to die hard if
+            # we fail because of some local customization. If something
+            # is already gone, that's fine with us!
+            eval { $self->do($sql); } or warn "Failed SQL: [$sql] Error: $@";
         }
         $self->_bz_real_schema->delete_column($table, $column);
         $self->_bz_store_real_schema;
@@ -535,7 +555,12 @@ sub bz_drop_index_raw {
     my @statements = $self->_bz_schema->get_drop_index_ddl(
         $table, $name);
     print "Removing index '$name' from the $table table...\n" unless $silent;
-    $self->do($_) foreach (@statements);
+    foreach my $sql (@statements) {
+        # Because this is a deletion, we don't want to die hard if
+        # we fail because of some local customization. If something
+        # is already gone, that's fine with us!
+        eval { $self->do($sql) } or warn "Failed SQL: [$sql] Error: $@";
+    }
 }
 
 sub bz_drop_table {
@@ -546,7 +571,12 @@ sub bz_drop_table {
     if ($table_exists) {
         my @statements = $self->_bz_schema->get_drop_table_ddl($name);
         print "Dropping table $name...\n";
-        $self->do($_) foreach (@statements);
+        foreach my $sql (@statements) {
+            # Because this is a deletion, we don't want to die hard if
+            # we fail because of some local customization. If something
+            # is already gone, that's fine with us!
+            eval { $self->do($sql); } or warn "Failed SQL: [$sql] Error: $@";
+        }
         $self->_bz_real_schema->delete_table($name);
         $self->_bz_store_real_schema;
     }
@@ -820,7 +850,9 @@ sub _bz_init_schema_storage {
  Params:      none
  Returns:     A C<Bugzilla::DB::Schema> object representing the database
               as it exists on the disk.
+
 =cut
+
 sub _bz_real_schema {
     my ($self) = @_;
     return $self->{private_real_schema} if exists $self->{private_real_schema};
@@ -837,7 +869,6 @@ sub _bz_real_schema {
     return $self->{private_real_schema};
 }
 
-
 =item C<_bz_store_real_schema()>
 
  Description: Stores the _bz_real_schema structures in the database
@@ -848,7 +879,12 @@ sub _bz_real_schema {
 
  Precondition: $self->{_bz_real_schema} must exist.
 
+=back
+
+=end private
+
 =cut
+
 sub _bz_store_real_schema {
     my ($self) = @_;
 
@@ -875,9 +911,6 @@ sub _bz_store_real_schema {
 1;
 
 __END__
-=back
-
-=end private
 
 =head1 NAME
 
@@ -897,7 +930,7 @@ Bugzilla::DB - Database access routines, using L<DBI>
 
   # Execute the query
   $sth->execute;
-  
+
   # Get the results
   my @result = $sth->fetchrow_array;
 
@@ -963,6 +996,13 @@ to the admin to let them know what DB they're running.
 The name of the Bugzilla::DB module that we are. For example, for the MySQL
 Bugzilla::DB module, this would be "Mysql." For PostgreSQL it would be "Pg."
 
+=item C<DBD_VERSION>
+
+The minimum version of the DBD module that we require for this database.
+
+=back
+
+
 =head1 CONNECTION
 
 A new database handle to the required database can be created using this
@@ -1019,6 +1059,7 @@ should not be called from anywhere else.
 
 =back
 
+
 =head1 ABSTRACT METHODS
 
 Note: Methods which can be implemented generically for all DBs are implemented in
@@ -1148,6 +1189,33 @@ formatted SQL command have prefix C<sql_>. All other methods have prefix C<bz_>.
               $text = text to search for (scalar)
  Returns:     formatted SQL for for full text search
 
+=item C<sql_istrcmp>
+
+ Description: Returns SQL for a case-insensitive string comparison.
+ Params:      $left - What should be on the left-hand-side of the
+                      operation.
+              $right - What should be on the right-hand-side of the
+                       operation.
+              $op (optional) - What the operation is. Should be a 
+                  valid ANSI SQL comparison operator, like "=", "<", 
+                  "LIKE", etc. Defaults to "=" if not specified.
+ Returns:     A SQL statement that will run the comparison in 
+              a case-insensitive fashion.
+ Note:        Uses sql_istring, so it has the same performance concerns.
+              Try to avoid using this function unless absolutely necessary.
+              Subclass Implementors: Override sql_istring instead of this
+              function, most of the time (this function uses sql_istring).
+
+=item C<sql_istring>
+
+ Description: Returns SQL syntax "preparing" a string or text column for
+              case-insensitive comparison. 
+ Params:      $string - string to convert (scalar)
+ Returns:     formatted SQL making the string case insensitive
+ Note:        The default implementation simply calls LOWER on the parameter.
+              If this is used to search on a text column with index, the index
+              will not be usually used unless it was created as LOWER(column).
+
 =item C<bz_lock_tables>
 
  Description: Performs a table lock operation on specified tables.
@@ -1172,14 +1240,15 @@ formatted SQL command have prefix C<sql_>. All other methods have prefix C<bz_>.
               back). False (0) or no param if the operation succeeded.
  Returns:     none
 
+=back
+
+
 =head1 IMPLEMENTED METHODS
 
 These methods are implemented in Bugzilla::DB, and only need
 to be implemented in subclasses if you need to override them for 
 database-compatibility reasons.
 
-=over 4
-
 =head2 General Information Methods
 
 These methods return information about data in the database.
@@ -1198,6 +1267,8 @@ These methods return information about data in the database.
               $column = name of column containing serial data type (scalar)
  Returns:     Last inserted ID (scalar)
 
+=back
+
 
 =head2 Schema Modification Methods
 
@@ -1352,6 +1423,9 @@ MySQL only.
  Params:      none
  Returns:     List of all the "bug" fields
 
+=back
+
+
 =head2 Transaction Methods
 
 These methods deal with the starting and stopping of transactions 
@@ -1379,6 +1453,9 @@ in the database.
  Params:      none
  Returns:     none
 
+=back
+
+
 =head1 SUBCLASS HELPERS
 
 Methods in this class are intended to be used by subclasses to help them
@@ -1399,6 +1476,7 @@ with their functions.
 
 =back
 
+
 =head1 DEPRECATED ROUTINES
 
 Several database routines are deprecated. They should not be used in new code,
@@ -1436,6 +1514,7 @@ PopGlobalSQLState
 
 =back
 
+
 =head1 SEE ALSO
 
 L<DBI>
diff --git a/Bugzilla/DB/CVS/Entries b/Bugzilla/DB/CVS/Entries
index d9fbd1161c727ad533a07e463409456232b64d36..6f5f0273e89821f2712ce2bc8026ab1142e5e98f 100644
--- a/Bugzilla/DB/CVS/Entries
+++ b/Bugzilla/DB/CVS/Entries
@@ -1,4 +1,4 @@
-/Mysql.pm/1.19/Fri May  6 14:16:54 2005//TBUGZILLA-2_19_3
-/Pg.pm/1.8/Tue Apr 19 23:44:03 2005//TBUGZILLA-2_19_3
-/Schema.pm/1.29/Tue May  3 18:23:38 2005//TBUGZILLA-2_19_3
+/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
 D/Schema////
diff --git a/Bugzilla/DB/CVS/Tag b/Bugzilla/DB/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/Bugzilla/DB/CVS/Tag
+++ b/Bugzilla/DB/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm
index 17c3d6b9e68bac1d678cafa6ea80fb94c57f51af..e76dc4599b431cc23d06639e7692ae86b9dcba5a 100644
--- a/Bugzilla/DB/Mysql.pm
+++ b/Bugzilla/DB/Mysql.pm
@@ -22,6 +22,7 @@
 #                 Jeroen Ruigrok van der Werven <asmodai@wxs.nl>
 #                 Dave Lawrence <dkl@redhat.com>
 #                 Tomas Kopal <Tomas.Kopal@altap.cz>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 =head1 NAME
 
@@ -49,6 +50,7 @@ use base qw(Bugzilla::DB);
 use constant REQUIRED_VERSION => '3.23.41';
 use constant PROGRAM_NAME => 'MySQL';
 use constant MODULE_NAME  => 'Mysql';
+use constant DBD_VERSION  => '2.9003';
 
 sub new {
     my ($class, $user, $pass, $host, $dbname, $port, $sock) = @_;
@@ -62,7 +64,7 @@ sub new {
 
     # all class local variables stored in DBI derived class needs to have
     # a prefix 'private_'. See DBI documentation.
-    $self->{private_bz_tables_locked} = 0;
+    $self->{private_bz_tables_locked} = "";
 
     bless ($self, $class);
     
@@ -109,6 +111,12 @@ sub sql_fulltext_search {
     return "MATCH($column) AGAINST($text)";
 }
 
+sub sql_istring {
+    my ($self, $string) = @_;
+    
+    return $string;
+}
+
 sub sql_to_days {
     my ($self, $date) = @_;
 
@@ -157,13 +165,15 @@ sub sql_group_by {
 sub bz_lock_tables {
     my ($self, @tables) = @_;
 
+    my $list = join(', ', @tables);
     # Check first if there was no lock before
     if ($self->{private_bz_tables_locked}) {
-        ThrowCodeError("already_locked");
+        ThrowCodeError("already_locked", { current => $self->{private_bz_tables_locked},
+                                           new => $list });
     } else {
-        $self->do('LOCK TABLE ' . join(', ', @tables)); 
+        $self->do('LOCK TABLE ' . $list); 
     
-        $self->{private_bz_tables_locked} = 1;
+        $self->{private_bz_tables_locked} = $list;
     }
 }
 
@@ -178,7 +188,7 @@ sub bz_unlock_tables {
     } else {
         $self->do("UNLOCK TABLES");
     
-        $self->{private_bz_tables_locked} = 0;
+        $self->{private_bz_tables_locked} = "";
     }
 }
 
@@ -260,6 +270,10 @@ sub bz_setup_database {
         # We estimate one minute for each 3000 bugs, plus 3 minutes just
         # to handle basic MySQL stuff.
         my $rename_time = int($bug_count / 3000) + 3;
+        # And 45 minutes for every 15,000 attachments, per some experiments.
+        my ($attachment_count) = 
+            $self->selectrow_array("SELECT COUNT(*) FROM attachments");
+        $rename_time += int(($attachment_count * 45) / 15000);
         # If we're going to take longer than 5 minutes, we let the user know
         # and allow them to abort.
         if ($rename_time > 5) {
@@ -337,6 +351,11 @@ sub bz_setup_database {
 
         # Go through all the tables.
         foreach my $table (@tables) {
+            # Will contain the names of old indexes as keys, and the 
+            # definition of the new indexes as a value. The values
+            # include an extra hash key, NAME, with the new name of 
+            # the index.
+            my %rename_indexes;
             # And go through all the columns on each table.
             my @columns = $self->bz_table_columns_real($table);
 
@@ -359,20 +378,20 @@ sub bz_setup_database {
             foreach my $column (@columns) {
                 # If we have an index named after this column, it's an 
                 # old-style-name index.
-                # This will miss PRIMARY KEY indexes, but that's OK 
-                # because we aren't renaming them.
                 if (my $index = $self->bz_index_info_real($table, $column)) {
                     # Fix the name to fit in with the new naming scheme.
-                    my $new_name = $table . "_" .
-                                   $index->{FIELDS}->[0] . "_idx";
-                    print "Renaming index $column to $new_name...\n";
-                    # Unfortunately, MySQL has no way to rename an index. :-(
-                    # So we have to drop and recreate the indexes.
-                    $self->bz_drop_index_raw($table, $column, "silent");
-                    $self->bz_add_index_raw($table, $new_name, 
-                                             $index, "silent");
+                    $index->{NAME} = $table . "_" .
+                                     $index->{FIELDS}->[0] . "_idx";
+                    print "Renaming index $column to " 
+                          . $index->{NAME} . "...\n";
+                    $rename_indexes{$column} = $index;
                 } # if
             } # foreach column
+
+            my @rename_sql = $self->_bz_schema->get_rename_indexes_ddl(
+                $table, %rename_indexes);
+            $self->do($_) foreach (@rename_sql);
+
         } # foreach table
     } # if old-name indexes
 
@@ -464,7 +483,7 @@ sub bz_setup_database {
 
 =begin private
 
-=head 1 MYSQL-SPECIFIC DATABASE-READING METHODS
+=head1 MYSQL-SPECIFIC DATABASE-READING METHODS
 
 These methods read information about the database from the disk,
 instead of from a Schema object. They are only reliable for MySQL 
@@ -581,12 +600,14 @@ sub bz_index_list_real {
 
 =back
 
-=head 1 MYSQL-SPECIFIC "SCHEMA BUILDER"
+=head1 MYSQL-SPECIFIC "SCHEMA BUILDER"
 
 MySQL needs to be able to read in a legacy database (from before 
 Schema existed) and create a Schema object out of it. That's what
 this code does.
 
+=end private
+
 =cut
 
 # This sub itself is actually written generically, but the subroutines
@@ -623,10 +644,3 @@ sub _bz_build_schema_from_disk {
     return $schema;
 }
 1;
-
-__END__
-
-=back
-
-=end private
-
diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm
index 4fe8d2244fd5f43a30bbbb0af010fead6fc236e5..84631e62b7dc17a8d6dd11ad34ca1371d98fe44a 100644
--- a/Bugzilla/DB/Pg.pm
+++ b/Bugzilla/DB/Pg.pm
@@ -22,6 +22,7 @@
 #                 Jeroen Ruigrok van der Werven <asmodai@wxs.nl>
 #                 Dave Lawrence <dkl@redhat.com>
 #                 Tomas Kopal <Tomas.Kopal@altap.cz>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 =head1 NAME
 
@@ -51,6 +52,7 @@ use constant BLOB_TYPE => { pg_type => DBD::Pg::PG_BYTEA };
 use constant REQUIRED_VERSION => '7.03.0000';
 use constant PROGRAM_NAME => 'PostgreSQL';
 use constant MODULE_NAME  => 'Pg';
+use constant DBD_VERSION  => '1.31';
 
 sub new {
     my ($class, $user, $pass, $host, $dbname, $port) = @_;
@@ -68,7 +70,7 @@ sub new {
 
     # all class local variables stored in DBI derived class needs to have
     # a prefix 'private_'. See DBI documentation.
-    $self->{private_bz_tables_locked} = 0;
+    $self->{private_bz_tables_locked} = "";
 
     bless ($self, $class);
 
@@ -145,9 +147,11 @@ sub sql_string_concat {
 sub bz_lock_tables {
     my ($self, @tables) = @_;
    
+    my $list = join(', ', @tables);
     # Check first if there was no lock before
     if ($self->{private_bz_tables_locked}) {
-        ThrowCodeError("already_locked");
+        ThrowCodeError("already_locked", { current => $self->{private_bz_tables_locked},
+                                           new => $list });
     } else {
         my %read_tables;
         my %write_tables;
@@ -173,7 +177,7 @@ sub bz_lock_tables {
                           ' IN ROW SHARE MODE') if keys %read_tables;
         Bugzilla->dbh->do('LOCK TABLE ' . join(', ', keys %write_tables) .
                           ' IN ROW EXCLUSIVE MODE') if keys %write_tables;
-        $self->{private_bz_tables_locked} = 1;
+        $self->{private_bz_tables_locked} = $list;
     }
 }
 
@@ -186,7 +190,7 @@ sub bz_unlock_tables {
         return if $abort;
         ThrowCodeError("no_matching_lock");
     } else {
-        $self->{private_bz_tables_locked} = 0;
+        $self->{private_bz_tables_locked} = "";
         # End transaction, tables will be unlocked automatically
         if ($abort) {
             $self->bz_rollback_transaction();
@@ -196,4 +200,38 @@ sub bz_unlock_tables {
     }
 }
 
+#####################################################################
+# Custom Database Setup
+#####################################################################
+
+sub bz_setup_database {
+    my $self = shift;
+    $self->SUPER::bz_setup_database(@_);
+
+    # PostgreSQL doesn't like having *any* index on the thetext
+    # field, because it can't have index data longer than 2770
+    # characters on that field.
+    $self->bz_drop_index('longdescs', 'longdescs_thetext_idx');
+
+    # PostgreSQL also wants an index for calling LOWER on
+    # login_name, which we do with sql_istrcmp all over the place.
+    $self->bz_add_index('profiles', 'profiles_login_name_lower_idx', 
+        {FIELDS => ['LOWER(login_name)'], TYPE => 'UNIQUE'});
+}
+
+#####################################################################
+# Custom Schema Information Functions
+#####################################################################
+
+# Pg includes the PostgreSQL system tables in table_list_real, so 
+# we need to remove those.
+sub bz_table_list_real {
+    my $self = shift;
+
+    my @full_table_list = $self->SUPER::bz_table_list_real(@_);
+    # All PostgreSQL system tables start with "pg_" or "sql_"
+    my @table_list = grep(!/(^pg_)|(^sql_)/, @full_table_list);
+    return @table_list;
+}
+
 1;
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index 8682f1721a4d9e159e982ad61b7cba7c89b76bf9..3bb2a85984c969d2ee5ebd84d1f2c01d1c7a5c8f 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -19,6 +19,8 @@
 #
 # Contributor(s): Andrew Dunstan <andrew@dunslane.net>,
 #                 Edward J. Sabol <edwardjsabol@iname.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
+#                 Dennis Melentyev <dennis.melentyev@infopulse.com.ua>
 
 package Bugzilla::DB::Schema;
 
@@ -34,8 +36,13 @@ use strict;
 use Bugzilla::Error;
 use Bugzilla::Util;
 
+use Safe;
+# Historical, needed for SCHEMA_VERSION = '1.00'
 use Storable qw(dclone freeze thaw);
 
+# New SCHEMA_VERSION (2.00) use this
+use Data::Dumper;
+
 =head1 NAME
 
 Bugzilla::DB::Schema - Abstract database schema for Bugzilla
@@ -71,6 +78,7 @@ module directly, but should instead rely on methods provided by
 Bugzilla::DB.
 
 =cut
+
 #--------------------------------------------------------------------------
 # Define the Bugzilla abstract database schema and version as constants.
 
@@ -139,7 +147,7 @@ which can be used to specify the type of index such as UNIQUE or FULLTEXT.
 
 =cut
 
-use constant SCHEMA_VERSION  => '1.00';
+use constant SCHEMA_VERSION  => '2.00';
 use constant ABSTRACT_SCHEMA => {
 
     # BUG-RELATED TABLES
@@ -155,7 +163,7 @@ use constant ABSTRACT_SCHEMA => {
             bug_file_loc        => {TYPE => 'TEXT'},
             bug_severity        => {TYPE => 'varchar(64)', NOTNULL => 1},
             bug_status          => {TYPE => 'varchar(64)', NOTNULL => 1},
-            creation_ts         => {TYPE => 'DATETIME', NOTNULL => 1},
+            creation_ts         => {TYPE => 'DATETIME'},
             delta_ts            => {TYPE => 'DATETIME', NOTNULL => 1},
             short_desc          => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
             op_sys              => {TYPE => 'varchar(64)', NOTNULL => 1},
@@ -309,7 +317,7 @@ use constant ABSTRACT_SCHEMA => {
         INDEXES => [
             attachments_bug_id_idx => ['bug_id'],
             attachments_creation_ts_idx => ['creation_ts'],
-            attachments_submitter_id_idx => ['submitter_id'],
+            attachments_submitter_id_idx => ['submitter_id', 'bug_id'],
         ],
     },
 
@@ -468,7 +476,8 @@ use constant ABSTRACT_SCHEMA => {
         FIELDS => [
             product_id => {TYPE => 'INT2', NOTNULL => 1},
             value      => {TYPE => 'varchar(20)', NOTNULL => 1},
-            sortkey    => {TYPE => 'INT2', NOTNULL => 1},
+            sortkey    => {TYPE => 'INT2', NOTNULL => 1,
+                           DEFAULT => 0},
         ],
         INDEXES => [
             milestones_product_id_idx => {FIELDS => [qw(product_id value)],
@@ -912,7 +921,8 @@ use constant ABSTRACT_SCHEMA => {
                               DEFAULT => '0'},
             onemailperbug => {TYPE => 'BOOLEAN', NOTNULL => 1,
                               DEFAULT => 'FALSE'},
-            title         => {TYPE => 'varchar(128)', NOTNULL => 1},
+            title         => {TYPE => 'varchar(128)', NOTNULL => 1,
+                              DEFAULT => "''"},
         ],
         INDEXES => [
             whine_queries_eventid_idx => ['eventid'],
@@ -1030,13 +1040,13 @@ DB-specific code in a subclass. Methods which are prefixed with C<_>
 are considered protected. Subclasses may override these methods, but
 other modules should not invoke these methods directly.
 
-=over 4
-
 =cut
 
 #--------------------------------------------------------------------------
 sub new {
 
+=over
+
 =item C<new>
 
  Description: Public constructor method used to instantiate objects of this
@@ -1381,6 +1391,7 @@ sub get_add_column_ddl {
  Returns:     An array of SQL statements.
 
 =cut
+
     my ($self, $table, $column, $definition, $init_value) = @_;
     my @statements;
     push(@statements, "ALTER TABLE $table ADD COLUMN $column " .
@@ -1563,6 +1574,7 @@ sub get_drop_index_ddl {
  Returns:     An array of SQL statements.
 
 =cut
+
     my ($self, $table, $name) = @_;
 
     # Although ANSI SQL-92 doesn't specify a method of dropping an index,
@@ -1592,6 +1604,7 @@ sub get_drop_column_ddl {
  Returns:     An array of SQL statements.
 
 =cut
+
 sub get_drop_table_ddl {
     my ($self, $table) = @_;
     return ("DROP TABLE $table");
@@ -1624,6 +1637,7 @@ sub get_rename_column_ddl {
  Returns:     nothing
 
 =cut
+
 sub delete_table {
     my ($self, $name) = @_;
 
@@ -1672,6 +1686,7 @@ sub get_column_abstract {
               undef.
 
 =cut
+
 sub get_indexes_on_column_abstract {
     my ($self, $table, $column) = @_;
     my %ret_hash;
@@ -1700,7 +1715,7 @@ sub get_indexes_on_column_abstract {
 
 sub get_index_abstract {
 
-=item C<get_index_abstract($table, $index)
+=item C<get_index_abstract($table, $index)>
 
  Description: Returns an index definition from the internal abstract schema.
  Params:      $table - The table the index is on.
@@ -1749,6 +1764,7 @@ sub get_table_abstract {
  Returns:     nothing
 
 =cut
+
 sub add_table {
     my ($self, $name, $definition) = @_;
     (die "Table already exists: $name")
@@ -1896,6 +1912,7 @@ sub _set_object {
  Returns:     nothing
 
 =cut
+
 sub delete_index {
     my ($self, $table, $name) = @_;
 
@@ -1919,6 +1936,9 @@ sub columns_equal {
  Params:      $col_one, $col_two - The columns to compare. Hash 
                   references, in C<ABSTRACT_SCHEMA> format.
  Returns:     C<1> if the columns are identical, C<0> if they are not.
+
+=back
+
 =cut
 
     my $self = shift;
@@ -1953,17 +1973,24 @@ sub columns_equal {
               Do not attempt to manipulate this data directly,
               as the format may change at any time in the future.
               The only thing you should do with the returned value
-              is either store it somewhere or deserialize it.
+              is either store it somewhere (coupled with appropriate 
+              SCHEMA_VERSION) or deserialize it.
 
 =cut
+
 sub serialize_abstract {
     my ($self) = @_;
-    # We do this so that any two stored Schemas will have the
-    # same byte representation if they are identical.
-    # We don't need it currently, but it might make things
-    # easier in the future.
-    local $Storable::canonical = 1;
-    return freeze($self->{abstract_schema});
+    
+    # Make it ok to eval
+    local $Data::Dumper::Purity = 1;
+    
+    # Avoid cross-refs
+    local $Data::Dumper::Deepcopy = 1;
+    
+    # Always sort keys to allow textual compare
+    local $Data::Dumper::Sortkeys = 1;
+    
+    return Dumper($self->{abstract_schema});
 }
 
 =item C<deserialize_abstract($serialized, $version)>
@@ -1979,15 +2006,20 @@ sub serialize_abstract {
               However, it will represent the serialized data instead of
               ABSTRACT_SCHEMA.
 =cut
+
 sub deserialize_abstract {
     my ($class, $serialized, $version) = @_;
 
-    my $thawed_hash = thaw($serialized);
-
-    # At this point, we have no backwards-compatibility
-    # code to write, so $version is ignored.
-    # For what $version ought to be used for, see the
-    # "private" section of the SCHEMA_VERSION docs.
+    my $thawed_hash;
+    if (int($version) < 2) {
+        $thawed_hash = thaw($serialized);
+    }
+    else {
+        my $cpt = new Safe;
+        $cpt->reval($serialized) ||
+            die "Unable to restore cached schema: " . $@;
+        $thawed_hash = ${$cpt->varglob('VAR1')};
+    }
 
     return $class->new(undef, $thawed_hash);
 }
@@ -2003,6 +2035,8 @@ sub deserialize_abstract {
 These methods are generally called on the class instead of on a specific
 object.
 
+=over
+
 =item C<get_empty_schema()>
 
  Description: Returns a Schema that has no tables. In effect, this
@@ -2010,17 +2044,18 @@ object.
  Params:      none
  Returns:     A "empty" Schema object.
 
+=back
+
 =cut
 
 sub get_empty_schema {
     my ($class) = @_;
-    return $class->deserialize_abstract(freeze({}));
+    return $class->deserialize_abstract(Dumper({}), SCHEMA_VERSION);
 }
 
 1;
-__END__
 
-=back
+__END__
 
 =head1 ABSTRACT DATA TYPES
 
diff --git a/Bugzilla/DB/Schema/CVS/Entries b/Bugzilla/DB/Schema/CVS/Entries
index b04338c30de4a044ce8fd20c26f943322de8897e..1050152ff016dac913b7aeb1a1032cd6d5c67f5c 100644
--- a/Bugzilla/DB/Schema/CVS/Entries
+++ b/Bugzilla/DB/Schema/CVS/Entries
@@ -1,3 +1,3 @@
-/Mysql.pm/1.8/Sat Apr 23 02:09:23 2005//TBUGZILLA-2_19_3
-/Pg.pm/1.8/Fri Apr 15 02:31:35 2005//TBUGZILLA-2_19_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
 D
diff --git a/Bugzilla/DB/Schema/CVS/Tag b/Bugzilla/DB/Schema/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/Bugzilla/DB/Schema/CVS/Tag
+++ b/Bugzilla/DB/Schema/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/Bugzilla/DB/Schema/Mysql.pm b/Bugzilla/DB/Schema/Mysql.pm
index 21274f5750b57b4850a7dccafd990e7aedbaa927..ba6ac7280e378186fc83e20ab5fdf1427334d150 100644
--- a/Bugzilla/DB/Schema/Mysql.pm
+++ b/Bugzilla/DB/Schema/Mysql.pm
@@ -19,6 +19,7 @@
 #
 # Contributor(s): Andrew Dunstan <andrew@dunslane.net>,
 #                 Edward J. Sabol <edwardjsabol@iname.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 package Bugzilla::DB::Schema::Mysql;
 
@@ -166,6 +167,33 @@ sub get_drop_index_ddl {
     return ("DROP INDEX \`$name\` ON $table");
 }
 
+# A special function for MySQL, for renaming a lot of indexes.
+# Index renames is a hash, where the key is a string - the 
+# old names of the index, and the value is a hash - the index
+# definition that we're renaming to, with an extra key of "NAME"
+# that contains the new index name.
+# The indexes in %indexes must be in hashref format.
+sub get_rename_indexes_ddl {
+    my ($self, $table, %indexes) = @_;
+    my @keys = keys %indexes or return ();
+
+    my $sql = "ALTER TABLE $table ";
+
+    foreach my $old_name (@keys) {
+        my $name = $indexes{$old_name}->{NAME};
+        my $type = $indexes{$old_name}->{TYPE};
+        $type ||= 'INDEX';
+        my $fields = join(',', @{$indexes{$old_name}->{FIELDS}});
+        # $old_name needs to be escaped, sometimes, because it was
+        # a reserved word.
+        $old_name = '`' . $old_name . '`';
+        $sql .= " ADD $type $name ($fields), DROP INDEX $old_name,";
+    }
+    # Remove the last comma.
+    chop($sql);
+    return ($sql);
+}
+
 # Converts a DBI column_info output to an abstract column definition.
 # Expects to only be called by Bugzila::DB::Mysql::_bz_build_schema_from_disk,
 # although there's a chance that it will also work properly if called
diff --git a/Bugzilla/DB/Schema/Pg.pm b/Bugzilla/DB/Schema/Pg.pm
index 14c98308a9f4383ae68489e1e46aa0f7b414e847..09636186deb8205dccdf44fd20ffdbffb87cbb30 100644
--- a/Bugzilla/DB/Schema/Pg.pm
+++ b/Bugzilla/DB/Schema/Pg.pm
@@ -19,6 +19,7 @@
 #
 # Contributor(s): Andrew Dunstan <andrew@dunslane.net>,
 #                 Edward J. Sabol <edwardjsabol@iname.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 package Bugzilla::DB::Schema::Pg;
 
diff --git a/Bugzilla/Error.pm b/Bugzilla/Error.pm
index ecc430cb536a994b22a3daa2a794e0be45c333d5..0f4caf27436376592f20fce5b5afdcf6b91fdea9 100644
--- a/Bugzilla/Error.pm
+++ b/Bugzilla/Error.pm
@@ -154,7 +154,7 @@ Bugzilla::Error - Error handling utilities for Bugzilla
 
   ThrowUserError("error_tag",
                  { foo => 'bar' });
- 
+
 =head1 DESCRIPTION
 
 Various places throughout the Bugzilla codebase need to report errors to the
diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm
index 8e03284d051009b4a895dd2588e3cbcb1e334ad4..65636d78c3f51dc03adb950eb210ce1fb7801593 100644
--- a/Bugzilla/Flag.pm
+++ b/Bugzilla/Flag.pm
@@ -74,8 +74,6 @@ use Bugzilla::Attachment;
 use Bugzilla::BugMail;
 use Bugzilla::Constants;
 
-use constant TABLES_ALREADY_LOCKED => 1;
-
 # Note that this line doesn't actually import these variables for some reason,
 # so I have to use them as $::template and $::vars in the package code.
 use vars qw($template $vars); 
@@ -97,8 +95,6 @@ use vars qw($template $vars);
 basic sets of columns and tables for getting flag types from th
 database.  B<Used by get, match, sqlify_criteria and perlify_record>
 
-=back
-
 =cut
 
 my @base_columns = 
@@ -112,9 +108,9 @@ my @base_columns =
 Which database(s) is the data coming from?
 
 Note: when adding tables to @base_tables, make sure to include the separator 
-(i.e. a comma or words like "LEFT OUTER JOIN") before the table name, 
-since tables take multiple separators based on the join type, and therefore 
-it is not possible to join them later using a single known separator.
+(i.e. words like "LEFT OUTER JOIN") before the table name, since tables take
+multiple separators based on the join type, and therefore it is not possible
+to join them later using a single known separator.
 B<Used by get, match, sqlify_criteria and perlify_record>
 
 =back
@@ -131,10 +127,14 @@ my @base_tables = ("flags");
 
 =head1 PUBLIC FUNCTIONS
 
-=over C<get($id)>
+=over
+
+=item C<get($id)>
 
 Retrieves and returns a flag from the database.
 
+=back
+
 =cut
 
 # !!! Implement a cache for this function!
@@ -237,17 +237,47 @@ Validates fields containing flag modifications.
 =cut
 
 sub validate {
+    my ($cgi, $bug_id, $attach_id) = @_;
+
     my $user = Bugzilla->user;
-    my ($cgi, $bug_id) = @_;
-  
+    my $dbh = Bugzilla->dbh;
+
     # Get a list of flags to validate.  Uses the "map" function
     # to extract flag IDs from form field names by matching fields
     # whose name looks like "flag-nnn", where "nnn" is the ID,
     # and returning just the ID portion of matching field names.
     my @ids = map(/^flag-(\d+)$/ ? $1 : (), $cgi->param());
-  
-    foreach my $id (@ids)
-    {
+
+    return unless scalar(@ids);
+    
+    # No flag reference should exist when changing several bugs at once.
+    ThrowCodeError("flags_not_available", { type => 'b' }) unless $bug_id;
+
+    # No reference to existing flags should exist when creating a new
+    # attachment.
+    if ($attach_id && ($attach_id < 0)) {
+        ThrowCodeError("flags_not_available", { type => 'a' });
+    }
+
+    # Make sure all flags belong to the bug/attachment they pretend to be.
+    my $field = ($attach_id) ? "attach_id" : "bug_id";
+    my $field_id = $attach_id || $bug_id;
+    my $not = ($attach_id) ? "" : "NOT";
+
+    my $invalid_data =
+        $dbh->selectrow_array("SELECT 1 FROM flags
+                               WHERE id IN (" . join(',', @ids) . ")
+                               AND ($field != ? OR attach_id IS $not NULL) " .
+                               $dbh->sql_limit(1),
+                               undef, $field_id);
+
+    if ($invalid_data) {
+        ThrowCodeError("invalid_flag_association",
+                       { bug_id    => $bug_id,
+                         attach_id => $attach_id });
+    }
+
+    foreach my $id (@ids) {
         my $status = $cgi->param("flag-$id");
         
         # Make sure the flag exists.
@@ -271,48 +301,60 @@ sub validate {
             ThrowCodeError("flag_status_invalid", 
                            { id => $id, status => $status });
         }
-        
+
+        # Make sure the user didn't specify a requestee unless the flag
+        # is specifically requestable. If the requestee was set before
+        # the flag became specifically unrequestable, leave it as is.
+        my $old_requestee =
+            $flag->{'requestee'} ? $flag->{'requestee'}->login : '';
+        my $new_requestee = trim($cgi->param("requestee-$id") || '');
+
+        if ($status eq '?'
+            && !$flag->{type}->{is_requesteeble}
+            && $new_requestee
+            && ($new_requestee ne $old_requestee))
+        {
+            ThrowCodeError("flag_requestee_disabled",
+                           { name => $flag->{type}->{name} });
+        }
+
         # Make sure the requestee is authorized to access the bug.
         # (and attachment, if this installation is using the "insider group"
         # feature and the attachment is marked private).
         if ($status eq '?'
             && $flag->{type}->{is_requesteeble}
-            && trim($cgi->param("requestee-$id")))
+            && $new_requestee
+            && ($old_requestee ne $new_requestee))
         {
-            my $requestee_email = trim($cgi->param("requestee-$id"));
-            my $old_requestee = 
-              $flag->{'requestee'} ? $flag->{'requestee'}->login : '';
-
-            if ($old_requestee ne $requestee_email) {
-                # We know the requestee exists because we ran
-                # Bugzilla::User::match_field before getting here.
-                my $requestee = Bugzilla::User->new_from_login($requestee_email);
-
-                # Throw an error if the user can't see the bug.
-                if (!$requestee->can_see_bug($bug_id))
-                {
-                    ThrowUserError("flag_requestee_unauthorized",
-                                   { flag_type => $flag->{'type'},
-                                     requestee => $requestee,
-                                     bug_id => $bug_id,
-                                     attach_id =>
-                                       $flag->{target}->{attachment}->{id} });
-                }
-
-                # Throw an error if the target is a private attachment and
-                # the requestee isn't in the group of insiders who can see it.
-                if ($flag->{target}->{attachment}->{exists}
-                    && $cgi->param('isprivate')
-                    && Param("insidergroup")
-                    && !$requestee->in_group(Param("insidergroup")))
-                {
-                    ThrowUserError("flag_requestee_unauthorized_attachment",
-                                   { flag_type => $flag->{'type'},
-                                     requestee => $requestee,
-                                     bug_id    => $bug_id,
-                                     attach_id =>
-                                      $flag->{target}->{attachment}->{id} });
-                }
+            # We know the requestee exists because we ran
+            # Bugzilla::User::match_field before getting here.
+            my $requestee = Bugzilla::User->new_from_login($new_requestee);
+
+            # Throw an error if the user can't see the bug.
+            # Note that if permissions on this bug are changed,
+            # can_see_bug() will refer to old settings.
+            if (!$requestee->can_see_bug($bug_id)) {
+                ThrowUserError("flag_requestee_unauthorized",
+                               { flag_type => $flag->{'type'},
+                                 requestee => $requestee,
+                                 bug_id => $bug_id,
+                                 attach_id =>
+                                   $flag->{target}->{attachment}->{id} });
+            }
+
+            # Throw an error if the target is a private attachment and
+            # the requestee isn't in the group of insiders who can see it.
+            if ($flag->{target}->{attachment}->{exists}
+                && $cgi->param('isprivate')
+                && Param("insidergroup")
+                && !$requestee->in_group(Param("insidergroup")))
+            {
+                ThrowUserError("flag_requestee_unauthorized_attachment",
+                               { flag_type => $flag->{'type'},
+                                 requestee => $requestee,
+                                 bug_id    => $bug_id,
+                                 attach_id =>
+                                  $flag->{target}->{attachment}->{id} });
             }
         }
 
@@ -400,14 +442,16 @@ sub process {
     # no longer valid.
     my $flag_ids = $dbh->selectcol_arrayref(
         "SELECT flags.id 
-        FROM (flags INNER JOIN bugs ON flags.bug_id = bugs.bug_id)
-          LEFT OUTER JOIN flaginclusions i
-            ON (flags.type_id = i.type_id 
+           FROM flags
+     INNER JOIN bugs
+             ON flags.bug_id = bugs.bug_id
+      LEFT JOIN flaginclusions AS i
+             ON flags.type_id = i.type_id 
             AND (bugs.product_id = i.product_id OR i.product_id IS NULL)
-            AND (bugs.component_id = i.component_id OR i.component_id IS NULL))
-        WHERE bugs.bug_id = ?
-        AND flags.is_active = 1
-        AND i.type_id IS NULL",
+            AND (bugs.component_id = i.component_id OR i.component_id IS NULL)
+          WHERE bugs.bug_id = ?
+            AND flags.is_active = 1
+            AND i.type_id IS NULL",
         undef, $bug_id);
 
     foreach my $flag_id (@$flag_ids) { clear($flag_id) }
@@ -447,6 +491,9 @@ sub update_activity {
                   (bug_id, attach_id, who, bug_when, fieldid, removed, added)
                   VALUES ($bug_id, $attach_id, $::userid, $timestamp,
                   $field_id, $sql_removed, $sql_added)");
+
+        $dbh->do("UPDATE bugs SET delta_ts = $timestamp WHERE bug_id = ?",
+                 undef, $bug_id);
     }
 }
 
@@ -678,9 +725,10 @@ sub clear {
 
 =over
 
-=item C<FormToNewFlags($target, $cgi)
+=item C<FormToNewFlags($target, $cgi)>
 
-Someone pleasedocument this function.
+Checks whether or not there are new flags to create and returns an
+array of flag objects. This array is then passed to Flag::create().
 
 =back
 
@@ -688,24 +736,50 @@ Someone pleasedocument this function.
 
 sub FormToNewFlags {
     my ($target, $cgi) = @_;
-    
-    # Get information about the setter to add to each flag.
-    # Uses a conditional to suppress Perl's "used only once" warnings.
-    my $setter = new Bugzilla::User($::userid);
 
+    my $dbh = Bugzilla->dbh;
+    
     # Extract a list of flag type IDs from field names.
     my @type_ids = map(/^flag_type-(\d+)$/ ? $1 : (), $cgi->param());
     @type_ids = grep($cgi->param("flag_type-$_") ne 'X', @type_ids);
-    
-    # Process the form data and create an array of flag objects.
+
+    return () unless (scalar(@type_ids) && $target->{'exists'});
+
+    # Get information about the setter to add to each flag.
+    my $setter = new Bugzilla::User($::userid);
+
+    # Get a list of active flag types available for this target.
+    my $flag_types = Bugzilla::FlagType::match(
+        { 'target_type'  => $target->{'type'},
+          'product_id'   => $target->{'product_id'},
+          'component_id' => $target->{'component_id'},
+          'is_active'    => 1 });
+
     my @flags;
-    foreach my $type_id (@type_ids) {
+    foreach my $flag_type (@$flag_types) {
+        my $type_id = $flag_type->{'id'};
+
+        # We are only interested in flags the user tries to create.
+        next unless scalar(grep { $_ == $type_id } @type_ids);
+
+        # Get the number of active flags of this type already set for this target.
+        my $has_flags = count(
+            { 'type_id'     => $type_id,
+              'target_type' => $target->{'type'},
+              'bug_id'      => $target->{'bug'}->{'id'},
+              'attach_id'   => $target->{'attachment'}->{'id'},
+              'is_active'   => 1 });
+
+        # Do not create a new flag of this type if this flag type is
+        # not multiplicable and already has an active flag set.
+        next if (!$flag_type->{'is_multiplicable'} && $has_flags);
+
         my $status = $cgi->param("flag_type-$type_id");
-        &::trick_taint($status);
+        trick_taint($status);
     
         # Create the flag record and populate it with data from the form.
         my $flag = { 
-            type   => Bugzilla::FlagType::get($type_id) , 
+            type   => $flag_type ,
             target => $target , 
             setter => $setter , 
             status => $status 
@@ -833,7 +907,7 @@ sub notify {
         my @new_cc_list;
         foreach my $cc (split(/[, ]+/, $flag->{'type'}->{'cc_list'})) {
             my $ccuser = Bugzilla::User->new_from_login($cc,
-                                                        TABLES_ALREADY_LOCKED)
+                                                        DERIVE_GROUPS_TABLES_ALREADY_LOCKED)
               || next;
 
             next if $flag->{'target'}->{'bug'}->{'restricted'}
@@ -950,6 +1024,8 @@ Converts a row from the database into a Perl record.
 
 =back
 
+=end private
+
 =cut
 
 sub perlify_record {
@@ -972,8 +1048,6 @@ sub perlify_record {
     return $flag;
 }
 
-=end private
-
 =head1 SEE ALSO
 
 =over
@@ -982,6 +1056,7 @@ sub perlify_record {
 
 =back
 
+
 =head1 CONTRIBUTORS
 
 =over
diff --git a/Bugzilla/FlagType.pm b/Bugzilla/FlagType.pm
index d07bb0b65f5fa3d5ad76c84b91cf6148e8644f3e..49c9f777e8d597b8644b73c375c31e53aaecec29 100644
--- a/Bugzilla/FlagType.pm
+++ b/Bugzilla/FlagType.pm
@@ -101,9 +101,9 @@ my @base_columns =
 Which database(s) is the data coming from?
 
 Note: when adding tables to @base_tables, make sure to include the separator 
-(i.e. a comma or words like C<LEFT OUTER JOIN>) before the table name, 
-since tables take multiple separators based on the join type, and therefore 
-it is not possible to join them later using a single known separator.
+(i.e. words like "LEFT OUTER JOIN") before the table name, since tables take
+multiple separators based on the join type, and therefore it is not possible
+to join them later using a single known separator.
 B<Used by get, match, sqlify_criteria and perlify_record>
 
 =back
@@ -117,6 +117,7 @@ my @base_tables = ("flagtypes");
 ######################################################################
 # Public Functions
 ######################################################################
+
 =head1 PUBLIC FUNCTIONS/METHODS
 
 =over
@@ -249,7 +250,9 @@ sub match {
     my @criteria = sqlify_criteria($criteria, \@tables);
     
     # Build the query, grouping the types if we are counting flags.
-    my $select_clause = "SELECT " . join(", ", @columns);
+    # DISTINCT is used in order to count flag types only once when
+    # they appear several times in the flaginclusions table.
+    my $select_clause = "SELECT DISTINCT " . join(", ", @columns);
     my $from_clause = "FROM " . join(" ", @tables);
     my $where_clause = "WHERE " . join(" AND ", @criteria);
     
@@ -323,13 +326,32 @@ and returning just the ID portion of matching field names.
 =cut
 
 sub validate {
-    my $user = Bugzilla->user;
     my ($cgi, $bug_id, $attach_id) = @_;
-  
+
+    my $user = Bugzilla->user;
+    my $dbh = Bugzilla->dbh;
+
     my @ids = map(/^flag_type-(\d+)$/ ? $1 : (), $cgi->param());
   
-    foreach my $id (@ids)
-    {
+    return unless scalar(@ids);
+    
+    # No flag reference should exist when changing several bugs at once.
+    ThrowCodeError("flags_not_available", { type => 'b' }) unless $bug_id;
+
+    # We don't check that these flag types are valid for
+    # this bug/attachment. This check will be done later when
+    # processing new flags, see Flag::FormToNewFlags().
+
+    # All flag types have to be active
+    my $inactive_flagtypes =
+        $dbh->selectrow_array("SELECT 1 FROM flagtypes
+                               WHERE id IN (" . join(',', @ids) . ")
+                               AND is_active = 0 " .
+                               $dbh->sql_limit(1));
+
+    ThrowCodeError("flag_type_inactive") if $inactive_flagtypes;
+
+    foreach my $id (@ids) {
         my $status = $cgi->param("flag_type-$id");
         
         # Don't bother validating types the user didn't touch.
@@ -351,22 +373,31 @@ sub validate {
                            { id => $id , status => $status });
         }
         
+        # Make sure the user didn't specify a requestee unless the flag
+        # is specifically requestable.
+        my $new_requestee = trim($cgi->param("requestee_type-$id") || '');
+
+        if ($status eq '?'
+            && !$flag_type->{is_requesteeble}
+            && $new_requestee)
+        {
+            ThrowCodeError("flag_requestee_disabled",
+                           { name => $flag_type->{name} });
+        }
+
         # Make sure the requestee is authorized to access the bug
         # (and attachment, if this installation is using the "insider group"
         # feature and the attachment is marked private).
         if ($status eq '?'
             && $flag_type->{is_requesteeble}
-            && trim($cgi->param("requestee_type-$id")))
+            && $new_requestee)
         {
-            my $requestee_email = trim($cgi->param("requestee_type-$id"));
-
             # We know the requestee exists because we ran
             # Bugzilla::User::match_field before getting here.
-            my $requestee = Bugzilla::User->new_from_login($requestee_email);
+            my $requestee = Bugzilla::User->new_from_login($new_requestee);
 
             # Throw an error if the user can't see the bug.
-            if (!$requestee->can_see_bug($bug_id))
-            {
+            if (!$requestee->can_see_bug($bug_id)) {
                 ThrowUserError("flag_requestee_unauthorized",
                                { flag_type => $flag_type,
                                  requestee => $requestee,
@@ -567,6 +598,8 @@ sub perlify_record {
     return $type;
 }
 
+1;
+
 =end private
 
 =head1 SEE ALSO
@@ -588,5 +621,3 @@ sub perlify_record {
 =back
 
 =cut
-
-1;
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index 8cefc8cabe021c5b28e3e24eef637f395d834bfd..56d2846f37c176e27d2a69ff9a05efe99f0754d1 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -24,7 +24,7 @@
 #                 Andreas Franke <afranke@mathweb.org>
 #                 Myk Melez <myk@mozilla.org>
 #                 Michael Schindler <michael@compressconsult.com>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 use strict;
 
@@ -136,17 +136,22 @@ sub init {
     }
 
     if (lsearch($fieldsref, 'map_classifications.name') >= 0) {
+        push @supptables, "INNER JOIN products AS map_products " .
+                          "ON bugs.product_id = map_products.id";
         push @supptables,
                 "INNER JOIN classifications AS map_classifications " .
                 "ON map_products.classification_id = map_classifications.id";
-        push @supptables, "INNER JOIN products AS map_products " .
-                          "ON bugs.product_id = map_products.id";
     }
 
     if (lsearch($fieldsref, 'map_components.name') >= 0) {
         push @supptables, "INNER JOIN components AS map_components " .
                           "ON bugs.component_id = map_components.id";
     }
+    
+    if (grep($_ =~/AS (actual_time|percentage_complete)$/, @$fieldsref)) {
+        push(@supptables, "INNER JOIN longdescs AS ldtime " .
+                          "ON ldtime.bug_id = bugs.bug_id");
+    }
 
     my $minvotes;
     if (defined $params->param('votes')) {
@@ -217,11 +222,6 @@ sub init {
         push(@specialchart, ["keywords", $t, $params->param('keywords')]);
     }
 
-    if (lsearch($fieldsref, "(SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id)) AS actual_time") != -1) {
-        push(@supptables, "INNER JOIN longdescs AS ldtime " .
-                          "ON ldtime.bug_id = bugs.bug_id");
-    }
-
     foreach my $id ("1", "2") {
         if (!defined ($params->param("email$id"))) {
             next;
@@ -988,10 +988,10 @@ sub init {
              $term = "$ff != $q";
          },
          ",casesubstring" => sub {
-             $term = $dbh->sql_position($q, $ff);
+             $term = $dbh->sql_position($q, $ff) . " > 0";
          },
          ",substring" => sub {
-             $term = $dbh->sql_position(lc($q), "LOWER($ff)");
+             $term = $dbh->sql_position(lc($q), "LOWER($ff)") . " > 0";
          },
          ",substr" => sub {
              $funcsbykey{",substring"}->();
@@ -1304,6 +1304,13 @@ sub init {
     # to other parts of the query, so we want to create it before we
     # write the FROM clause.
     foreach my $orderitem (@inputorder) {
+        # Some fields have 'AS' aliases. The aliases go in the ORDER BY,
+        # not the whole fields.
+        # XXX - Ideally, we would get just the aliases in @inputorder,
+        # and we'd never have to deal with this.
+        if ($orderitem =~ /\s+AS\s+(.+)$/i) {
+            $orderitem = $1;
+        }
         BuildOrderBy($orderitem, \@orderby);
     }
     # Now JOIN the correct tables in the FROM clause.
@@ -1357,7 +1364,7 @@ sub init {
     }
 
     $query .= " WHERE " . join(' AND ', (@wherepart, @andlist)) .
-              " AND ((bug_group_map.group_id IS NULL)";
+              " AND bugs.creation_ts IS NOT NULL AND ((bug_group_map.group_id IS NULL)";
 
     if ($user->id) {
         my $userid = $user->id;
@@ -1371,7 +1378,8 @@ 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 =~ /^\d+$/ || $field eq "bugs.bug_id" ||
+                 $field =~ /^relevance/);
         if ($field =~ /.*AS\s+(\w+)$/i) {
             push(@groupby, $1) if !grep($_ eq $1, @groupby);
         } else {
@@ -1412,7 +1420,7 @@ sub SqlifyDate {
     if ($str =~ /^(-|\+)?(\d+)([dDwWmMyY])$/) {   # relative date
         my ($sign, $amount, $unit, $date) = ($1, $2, lc $3, time);
         my ($sec, $min, $hour, $mday, $month, $year, $wday)  = localtime($date);
-        if ($sign eq '+') { $amount = -$amount; }
+        if ($sign && $sign eq '+') { $amount = -$amount; }
         if ($unit eq 'w') {                  # convert weeks to days
             $amount = 7*$amount + $wday;
             $unit = 'd';
@@ -1466,7 +1474,7 @@ sub ListIDsForEmail {
     } elsif ($type eq 'substring') {
         &::SendSQL("SELECT userid FROM profiles WHERE " .
             $dbh->sql_position(lc(::SqlQuote($email)), "LOWER(login_name)") .
-            " " . $dbh->sql_limit(51));
+            " > 0 " . $dbh->sql_limit(51));
         while (&::MoreSQLData()) {
             my ($id) = &::FetchSQLData();
             push(@list, $id);
@@ -1522,7 +1530,7 @@ sub GetByWordListSubstr {
     foreach my $word (split(/[\s,]+/, $strs)) {
         if ($word ne "") {
             push(@list, $dbh->sql_position(lc(::SqlQuote($word)),
-                                           "LOWER($field)"));
+                                           "LOWER($field)") . " > 0");
         }
     }
 
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index 23a9c0a7c9d8476e06f76a040a27ae4e02f5d085..7efd3a16e55bc5e1a96b040959bbb064c430ae03 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -24,6 +24,7 @@
 #                 Christopher Aillon <christopher@aillon.com>
 #                 Tobias Burnus <burnus@net-b.de>
 #                 Myk Melez <myk@mozilla.org>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 
 package Bugzilla::Template;
diff --git a/Bugzilla/Template/CVS/Tag b/Bugzilla/Template/CVS/Tag
index 1992d900bb3759abad40a2cb71e8272f00e13f9e..84507d26c5041aeb69e8ccabe5e10972bfb1ecb2 100644
--- a/Bugzilla/Template/CVS/Tag
+++ b/Bugzilla/Template/CVS/Tag
@@ -1 +1 @@
-TBUGZILLA-2_19_3
+TBUGZILLA-2_20
diff --git a/Bugzilla/Template/Plugin/CVS/Entries b/Bugzilla/Template/Plugin/CVS/Entries
index ffeab0384cbb76dd52d9a35e30bef9f35cccc88a..87829e0b189afa4bd91b218d304ab27ecf69f973 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_19_3
-/Hook.pm/1.1/Sun Jan 11 17:12:15 2004//TBUGZILLA-2_19_3
-/User.pm/1.1/Wed Aug  4 18:08:21 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/Bugzilla/Template/Plugin/CVS/Tag b/Bugzilla/Template/Plugin/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/Bugzilla/Template/Plugin/CVS/Tag
+++ b/Bugzilla/Template/Plugin/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/Bugzilla/Token.pm b/Bugzilla/Token.pm
index feca00c3b8edd8046b67e4b469a1dc8e1314a89c..fe72915a36b4a725d2f0599b50fc5d7853f87e03 100644
--- a/Bugzilla/Token.pm
+++ b/Bugzilla/Token.pm
@@ -32,8 +32,10 @@ package Bugzilla::Token;
 use Bugzilla::Config;
 use Bugzilla::Error;
 use Bugzilla::BugMail;
+use Bugzilla::Util;
 
 use Date::Format;
+use Date::Parse;
 
 # This module requires that its caller have said "require CGI.pl" to import
 # relevant functions from that script and its companion globals.pl.
@@ -46,34 +48,15 @@ use Date::Format;
 my $maxtokenage = 3;
 
 ################################################################################
-# Functions
+# Public Functions
 ################################################################################
 
 sub IssueEmailChangeToken {
     my ($userid, $old_email, $new_email) = @_;
 
-    my $dbh = Bugzilla->dbh;
-    my $token_ts = time();
-    my $issuedate = time2str("%Y-%m-%d %H:%M", $token_ts);
+    my ($token, $token_ts) = _create_token($userid, 'emailold', $old_email . ":" . $new_email);
 
-    # Generate a unique token and insert it into the tokens table.
-    # We have to lock the tokens table before generating the token, 
-    # since the database must be queried for token uniqueness.
-    $dbh->bz_lock_tables('tokens WRITE');
-    my $token = GenerateUniqueToken();
-    my $quotedtoken = &::SqlQuote($token);
-    my $quoted_emails = &::SqlQuote($old_email . ":" . $new_email);
-    &::SendSQL("INSERT INTO tokens ( userid , issuedate , token , 
-                                     tokentype , eventdata )
-                VALUES             ( $userid , '$issuedate' , $quotedtoken , 
-                                     'emailold' , $quoted_emails )");
-    my $newtoken = GenerateUniqueToken();
-    $quotedtoken = &::SqlQuote($newtoken);
-    &::SendSQL("INSERT INTO tokens ( userid , issuedate , token , 
-                                     tokentype , eventdata )
-                VALUES             ( $userid , '$issuedate' , $quotedtoken , 
-                                     'emailnew' , $quoted_emails )");
-    $dbh->bz_unlock_tables();
+    my $newtoken = _create_token($userid, 'emailnew', $old_email . ":" . $new_email);
 
     # Mail the user the token along with instructions for using it.
 
@@ -121,25 +104,14 @@ sub IssuePasswordToken {
                     AND tokens.tokentype = 'password'
                     AND tokens.issuedate > NOW() - " .
                     $dbh->sql_interval('10 MINUTE') . "
-                    WHERE login_name = $quotedloginname");
+                 WHERE " . $dbh->sql_istrcmp('login_name', $quotedloginname));
     my ($userid, $toosoon) = &::FetchSQLData();
 
     if ($toosoon) {
         ThrowUserError('too_soon_for_new_token');
     };
 
-    my $token_ts = time();
-
-    # Generate a unique token and insert it into the tokens table.
-    # We have to lock the tokens table before generating the token, 
-    # since the database must be queried for token uniqueness.
-    $dbh->bz_lock_tables('tokens WRITE');
-    my $token = GenerateUniqueToken();
-    my $quotedtoken = &::SqlQuote($token);
-    my $quotedipaddr = &::SqlQuote($::ENV{'REMOTE_ADDR'});
-    &::SendSQL("INSERT INTO tokens ( userid , issuedate , token , tokentype , eventdata )
-                VALUES      ( $userid , NOW() , $quotedtoken , 'password' , $quotedipaddr )");
-    $dbh->bz_unlock_tables();
+    my ($token, $token_ts) = _create_token($userid, 'password', $::ENV{'REMOTE_ADDR'});
 
     # Mail the user the token along with instructions for using it.
     
@@ -160,6 +132,13 @@ sub IssuePasswordToken {
     Bugzilla::BugMail::MessageToMTA($message);
 }
 
+sub IssueSessionToken {
+    # Generates a random token, adds it to the tokens table, and returns
+    # the token to the caller.
+
+    my $data = shift;
+    return _create_token(Bugzilla->user->id, 'session', $data);
+}
 
 sub CleanTokenTable {
     my $dbh = Bugzilla->dbh;
@@ -170,7 +149,6 @@ sub CleanTokenTable {
     $dbh->bz_unlock_tables();
 }
 
-
 sub GenerateUniqueToken {
     # Generates a unique random token.  Uses &GenerateRandomPassword 
     # for the tokens themselves and checks uniqueness by searching for
@@ -180,23 +158,23 @@ sub GenerateUniqueToken {
     my $token;
     my $duplicate = 1;
     my $tries = 0;
-    while ($duplicate) {
 
+    my $dbh = Bugzilla->dbh;
+    my $sth = $dbh->prepare("SELECT userid FROM tokens WHERE token = ?");
+
+    while ($duplicate) {
         ++$tries;
         if ($tries > 100) {
             ThrowCodeError("token_generation_error");
         }
-
         $token = &::GenerateRandomPassword();
-        &::SendSQL("SELECT userid FROM tokens WHERE token = " . &::SqlQuote($token));
-        $duplicate = &::FetchSQLData();
+        $sth->execute($token);
+        $duplicate = $sth->fetchrow_array;
     }
 
     return $token;
-
 }
 
-
 sub Cancel {
     # Cancels a previously issued token and notifies the system administrator.
     # This should only happen when the user accidentally makes a token request
@@ -210,7 +188,8 @@ sub Cancel {
     my $quotedtoken = &::SqlQuote($token);
     
     # Get information about the token being cancelled.
-    &::SendSQL("SELECT  issuedate , tokentype , eventdata , login_name , realname
+    &::SendSQL("SELECT  " . $dbh->sql_date_format('issuedate') . ",
+                        tokentype , eventdata , login_name , realname
                 FROM    tokens, profiles 
                 WHERE   tokens.userid = profiles.userid
                 AND     token = $quotedtoken");
@@ -240,9 +219,7 @@ sub Cancel {
     Bugzilla::BugMail::MessageToMTA($message);
 
     # Delete the token from the database.
-    $dbh->bz_lock_tables('tokens WRITE');
-    &::SendSQL("DELETE FROM tokens WHERE token = $quotedtoken");
-    $dbh->bz_unlock_tables();
+    DeleteToken($token);
 }
 
 sub DeletePasswordTokens {
@@ -272,5 +249,63 @@ sub HasEmailChangeToken {
     return $token;
 }
 
+sub GetTokenData($) {
+    # Returns the userid, issuedate and eventdata for the specified token
+
+    my ($token) = @_;
+    return unless defined $token;
+    trick_taint($token);
+    
+    my $dbh = Bugzilla->dbh;
+    return $dbh->selectrow_array(
+        "SELECT userid, " . $dbh->sql_date_format('issuedate') . ", eventdata 
+         FROM   tokens 
+         WHERE  token = ?", undef, $token);
+}
+
+sub DeleteToken($) {
+    # Deletes specified token
+
+    my ($token) = @_;
+    return unless defined $token;
+    trick_taint($token);
+
+    my $dbh = Bugzilla->dbh;
+    $dbh->bz_lock_tables('tokens WRITE');
+    $dbh->do("DELETE FROM tokens WHERE token = ?", undef, $token);
+    $dbh->bz_unlock_tables();
+}
+
+################################################################################
+# Internal Functions
+################################################################################
+
+sub _create_token($$$) {
+    # Generates a unique token and inserts it into the database
+    # Returns the token and the token timestamp
+    my ($userid, $tokentype, $eventdata) = @_;
+
+    detaint_natural($userid);
+    trick_taint($tokentype);
+    trick_taint($eventdata);
+
+    my $dbh = Bugzilla->dbh;
+    $dbh->bz_lock_tables('tokens WRITE');
+
+    my $token = GenerateUniqueToken();
+
+    $dbh->do("INSERT INTO tokens (userid, issuedate, token, tokentype, eventdata)
+        VALUES (?, NOW(), ?, ?, ?)", undef, ($userid, $token, $tokentype, $eventdata));
+
+    $dbh->bz_unlock_tables();
+
+    if (wantarray) {
+        my (undef, $token_ts, undef) = GetTokenData($token);
+        $token_ts = str2time($token_ts);
+        return ($token, $token_ts);
+    } else {
+        return $token;
+    }
+}
 
 1;
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index 8c5ad3d54d571b975405dec096a37590134a5c00..cfa3429206942b69cbdbd9fca074081a0920a5dc 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -23,7 +23,7 @@
 #                 Joel Peshkin <bugreport@peshkin.net> 
 #                 Byron Jones <bugzilla@glob.com.au>
 #                 Shane H. W. Travis <travis@sedsystems.ca>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 #                 Gervase Markham <gerv@gerv.net>
 
 ################################################################################
@@ -41,15 +41,25 @@ use Bugzilla::Error;
 use Bugzilla::Util;
 use Bugzilla::Constants;
 use Bugzilla::User::Setting;
-use Bugzilla::Auth;
-use Bugzilla::BugMail;
 
 use base qw(Exporter);
 @Bugzilla::User::EXPORT = qw(insert_new_user is_available_username
     login_to_id
     UserInGroup
+    USER_MATCH_MULTIPLE USER_MATCH_FAILED USER_MATCH_SUCCESS
+    MATCH_SKIP_CONFIRM
 );
 
+#####################################################################
+# Constants
+#####################################################################
+
+use constant USER_MATCH_MULTIPLE => -1;
+use constant USER_MATCH_FAILED   => 0;
+use constant USER_MATCH_SUCCESS  => 1;
+
+use constant MATCH_SKIP_CONFIRM  => 1;
+
 ################################################################################
 # Functions
 ################################################################################
@@ -72,7 +82,8 @@ sub new {
 # in the id its already had to validate (or the User.pm object, of course)
 sub new_from_login {
     my $invocant = shift;
-    return $invocant->_create("login_name=?", @_);
+    my $dbh = Bugzilla->dbh;
+    return $invocant->_create($dbh->sql_istrcmp('login_name', '?'), @_);
 }
 
 # Internal helper for the above |new| methods
@@ -207,13 +218,19 @@ sub queries {
     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,
+                                      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 = name
-                                WHERE userid=?
+                                   ON whine_queries.query_name =
+                                      namedqueries.name
+                                  AND whine_queries.eventid = 
+                                      whine_events.id
+                                WHERE namedqueries.userid=?
                              ORDER BY uppername});
     $sth->execute($self->{id});
 
@@ -280,33 +297,51 @@ sub groups {
 sub bless_groups {
     my $self = shift;
 
-    return $self->{bless_groups} if defined $self->{bless_groups};
+    return $self->{'bless_groups'} if defined $self->{'bless_groups'};
     return {} unless $self->id;
 
     my $dbh = Bugzilla->dbh;
-    # Get all groups for the user where:
-    #    + They have direct bless privileges
-    #    + They are a member of a group that inherits bless privs.
-    # Because of the second requirement, derive_groups must be up-to-date
-    # for this to function properly in all circumstances.
-    my $bless_groups = $dbh->selectcol_arrayref(
-        q{SELECT DISTINCT groups.name, groups.id
-            FROM groups, user_group_map, group_group_map AS ggm
-           WHERE user_group_map.user_id = ?
-             AND ((user_group_map.isbless = 1
-                   AND groups.id=user_group_map.group_id)
-                  OR (groups.id = ggm.grantor_id
-                      AND ggm.grant_type = } . GROUP_BLESS .
-                   q{ AND user_group_map.group_id = ggm.member_id
-                      AND user_group_map.isbless = 0))},
-         { Columns=>[1,2] }, $self->{id});
+    my $query;
+    my $connector;
+    my @bindValues;
+
+    if ($self->in_group('editusers')) {
+        # Users having editusers permissions may bless all groups.
+        $query = 'SELECT DISTINCT id, name, description FROM groups';
+        $connector = 'WHERE';
+    }
+    else {
+        # Get all groups for the user where:
+        #    + They have direct bless privileges
+        #    + They are a member of a group that inherits bless privs.
+        # Because of the second requirement, derive_groups must be up-to-date
+        # for this to function properly in all circumstances.
+        $query = q{
+            SELECT DISTINCT groups.id, groups.name, groups.description
+                       FROM groups, user_group_map, group_group_map AS ggm
+                      WHERE user_group_map.user_id = ?
+                        AND ((user_group_map.isbless = 1
+                              AND groups.id=user_group_map.group_id)
+                             OR (groups.id = ggm.grantor_id
+                                 AND ggm.grant_type = ?
+                                 AND user_group_map.group_id = ggm.member_id
+                                 AND user_group_map.isbless = 0))};
+        $connector = 'AND';
+        @bindValues = ($self->id, GROUP_BLESS);
+    }
 
-    # The above gives us an arrayref [name, id, name, id, ...]
-    # Convert that into a hashref
-    my %bless_groups_hashref = @$bless_groups;
-    $self->{bless_groups} = \%bless_groups_hashref;
+    # If visibilitygroups are used, restrict the set of groups.
+    if ((!$self->in_group('editusers')) && Param('usevisibilitygroups')) {
+        # Users need to see a group in order to bless it.
+        my $visibleGroups = join(', ', @{$self->visible_groups_direct()})
+            || return $self->{'bless_groups'} = [];
+        $query .= " $connector id in ($visibleGroups)";
+    }
+
+    $query .= ' ORDER BY name';
 
-    return $self->{bless_groups};
+    return $self->{'bless_groups'} =
+        $dbh->selectall_arrayref($query, {'Slice' => {}}, @bindValues);
 }
 
 sub in_group {
@@ -343,7 +378,7 @@ sub can_see_bug {
     # is cached because this may be called for every row in buglists or
     # every bug in a dependency list.
     unless ($sth) {
-        $sth = $dbh->prepare("SELECT reporter, assigned_to, qa_contact,
+        $sth = $dbh->prepare("SELECT 1, reporter, assigned_to, qa_contact,
                              reporter_accessible, cclist_accessible,
                              COUNT(cc.who), COUNT(bug_group_map.bug_id)
                              FROM bugs
@@ -354,22 +389,23 @@ sub can_see_bug {
                                ON bugs.bug_id = bug_group_map.bug_id
                                AND bug_group_map.group_ID NOT IN(" .
                                join(',',(-1, values(%{$self->groups}))) .
-                               ") WHERE bugs.bug_id = ? " .
+                               ") WHERE bugs.bug_id = ? 
+                               AND creation_ts IS NOT NULL " .
                              $dbh->sql_group_by('bugs.bug_id', 'reporter, ' .
                              'assigned_to, qa_contact, reporter_accessible, ' .
                              'cclist_accessible'));
     }
     $sth->execute($bugid);
-    my ($reporter, $owner, $qacontact, $reporter_access, $cclist_access,
+    my ($ready, $reporter, $owner, $qacontact, $reporter_access, $cclist_access,
         $isoncclist, $missinggroup) = $sth->fetchrow_array();
     $sth->finish;
     $self->{sthCanSeeBug} = $sth;
-    return ( (($reporter == $userid) && $reporter_access)
-           || (Param('useqacontact') && $qacontact && 
-              ($qacontact == $userid))
-           || ($owner == $userid)
-           || ($isoncclist && $cclist_access)
-           || (!$missinggroup) );
+    return ($ready
+            && ((($reporter == $userid) && $reporter_access)
+                || (Param('useqacontact') && $qacontact && ($qacontact == $userid))
+                || ($owner == $userid)
+                || ($isoncclist && $cclist_access)
+                || (!$missinggroup)));
 }
 
 sub get_selectable_products {
@@ -530,18 +566,39 @@ sub derive_groups {
     $dbh->bz_unlock_tables() unless $already_locked;
 }
 
+sub product_responsibilities {
+    my $self = shift;
+
+    return $self->{'product_resp'} if defined $self->{'product_resp'};
+    return [] unless $self->id;
+
+    my $h = Bugzilla->dbh->selectall_arrayref(
+        qq{SELECT products.name AS productname,
+                  components.name AS componentname,
+                  initialowner,
+                  initialqacontact
+           FROM products, components
+           WHERE products.id = components.product_id
+             AND ? IN (initialowner, initialqacontact)
+          },
+        {'Slice' => {}}, $self->id);
+    $self->{'product_resp'} = $h;
+
+    return $h;
+}
+
 sub can_bless {
     my $self = shift;
 
     if (!scalar(@_)) {
         # If we're called without an argument, just return 
         # whether or not we can bless at all.
-        return scalar(keys %{$self->bless_groups}) ? 1 : 0;
+        return scalar(@{$self->bless_groups}) ? 1 : 0;
     }
 
     # Otherwise, we're checking a specific group
     my $group_name = shift;
-    return exists($self->bless_groups->{$group_name});
+    return (grep {$$_{'name'} eq $group_name} (@{$self->bless_groups})) ? 1 : 0;
 }
 
 sub flatten_group_membership {
@@ -598,14 +655,15 @@ sub match {
 
         # Build the query.
         my $sqlstr = &::SqlQuote($wildstr);
-        my $query  = "SELECT DISTINCT userid, realname, login_name, " .
+        my $query  = "SELECT DISTINCT userid, realname, login_name, " .
                      "LENGTH(login_name) AS namelength " .
                      "FROM profiles ";
         if (&::Param('usevisibilitygroups')) {
             $query .= ", user_group_map ";
         }
-        $query    .= "WHERE (login_name LIKE $sqlstr " .
-                     "OR realname LIKE $sqlstr) ";
+        $query .= "WHERE ("  
+            . $dbh->sql_istrcmp('login_name', $sqlstr, "LIKE") . " OR " .
+              $dbh->sql_istrcmp('realname', $sqlstr, "LIKE") . ") ";
         if (&::Param('usevisibilitygroups')) {
             $query .= "AND user_group_map.user_id = userid " .
                       "AND isbless = 0 " .
@@ -631,7 +689,7 @@ sub match {
         my $sqlstr = &::SqlQuote($str);
         my $query  = "SELECT userid, realname, login_name " .
                      "FROM profiles " .
-                     "WHERE login_name = $sqlstr ";
+                     "WHERE " . $dbh->sql_istrcmp('login_name', $sqlstr);
         # Exact matches don't care if a user is disabled.
 
         &::PushGlobalSQLState();
@@ -647,18 +705,18 @@ sub match {
         && (length($str) >= 3))
     {
 
-        my $sqlstr = &::SqlQuote(uc($str));
+        my $sqlstr = &::SqlQuote(lc($str));
 
-        my $query   = "SELECT DISTINCT userid, realname, login_name, " .
+        my $query   = "SELECT DISTINCT userid, realname, login_name, " .
                       "LENGTH(login_name) AS namelength " .
                       "FROM  profiles";
         if (&::Param('usevisibilitygroups')) {
             $query .= ", user_group_map";
         }
-        $query     .= " WHERE " . $dbh->sql_position($sqlstr,
-                                                     "UPPER(login_name)") .
-                      " OR " . $dbh->sql_position($sqlstr,
-                                                  "UPPER(realname)");
+        $query     .= " WHERE (" .
+                $dbh->sql_position($sqlstr, 'LOWER(login_name)') . " > 0" .
+                      " OR " .
+                $dbh->sql_position($sqlstr, 'LOWER(realname)') . " > 0)";
         if (&::Param('usevisibilitygroups')) {
             $query .= " AND user_group_map.user_id = userid" .
                       " AND isbless = 0" .
@@ -702,6 +760,11 @@ sub match {
 # searchable fields have been replaced by exact fields and the calling script
 # is executed as normal.
 #
+# You also have the choice of *never* displaying the confirmation screen.
+# In this case, match_field will return one of the three USER_MATCH 
+# constants described in the POD docs. To make match_field behave this
+# way, pass in MATCH_SKIP_CONFIRM as the third argument.
+#
 # match_field must be called early in a script, before anything external is
 # done with the form data.
 #
@@ -723,9 +786,11 @@ sub match {
 sub match_field {
     my $cgi          = shift;   # CGI object to look up fields in
     my $fields       = shift;   # arguments as a hash
+    my $behavior     = shift || 0; # A constant that tells us how to act
     my $matches      = {};      # the values sent to the template
     my $matchsuccess = 1;       # did the match fail?
     my $need_confirm = 0;       # whether to display confirmation screen
+    my $match_multiple = 0;     # whether we ever matched more than one user
 
     # prepare default form values
 
@@ -860,6 +925,7 @@ sub match_field {
             elsif ((scalar(@{$users}) > 1)
                     && (&::Param('maxusermatches') != 1)) {
                 $need_confirm = 1;
+                $match_multiple = 1;
 
                 if ((&::Param('maxusermatches'))
                    && (scalar(@{$users}) > &::Param('maxusermatches')))
@@ -878,7 +944,19 @@ sub match_field {
         }
     }
 
-    return 1 unless $need_confirm; # skip confirmation if not needed.
+    my $retval;
+    if (!$matchsuccess) {
+        $retval = USER_MATCH_FAILED;
+    }
+    elsif ($match_multiple) {
+        $retval = USER_MATCH_MULTIPLE;
+    }
+    else {
+        $retval = USER_MATCH_SUCCESS;
+    }
+
+    # Skip confirmation if we were told to, or if we don't need to confirm.
+    return $retval if ($behavior == MATCH_SKIP_CONFIRM || !$need_confirm);
 
     $vars->{'script'}        = $ENV{'SCRIPT_NAME'}; # for self-referencing URLs
     $vars->{'fields'}        = $fields; # fields being matched
@@ -1024,7 +1102,7 @@ sub wants_mail {
     }
     
     my $wants_mail = 
-        $dbh->selectrow_array("SELECT * 
+        $dbh->selectrow_array("SELECT 1 
                               FROM email_setting
                               WHERE user_id = $self->{'id'}
                               AND relationship = $relationship 
@@ -1033,7 +1111,18 @@ sub wants_mail {
                               
     return defined($wants_mail) ? 1 : 0;
 }
-  
+
+sub is_mover {
+    my $self = shift;
+
+    if (!defined $self->{'is_mover'}) {
+        my @movers = map { trim($_) } split(',', Param('movers'));
+        $self->{'is_mover'} = ($self->id
+                               && lsearch(\@movers, $self->login) != -1);
+    }
+    return $self->{'is_mover'};
+}
+
 sub get_userlist {
     my $self = shift;
 
@@ -1091,8 +1180,9 @@ sub insert_new_user ($$;$$) {
 
     # Insert the new user record into the database.
     $dbh->do("INSERT INTO profiles 
-                          (login_name, realname, cryptpassword, disabledtext) 
-                   VALUES (?, ?, ?, ?)",
+                          (login_name, realname, cryptpassword, disabledtext,
+                           refreshed_when) 
+                   VALUES (?, ?, ?, ?, '1901-01-01 00:00:00')",
              undef, 
              ($username, $realname, $cryptpassword, $disabledtext));
 
@@ -1101,6 +1191,13 @@ sub insert_new_user ($$;$$) {
 
     foreach my $rel (RELATIONSHIPS) {
         foreach my $event (POS_EVENTS, NEG_EVENTS) {
+            # These "exceptions" define the default email preferences.
+            # 
+            # We enable mail unless the change was made by the user, or it's
+            # just a CC list addition and the user is not the reporter.
+            next if ($event == EVT_CHANGED_BY_ME);
+            next if (($event == EVT_CC) && ($rel != REL_REPORTER));
+
             $dbh->do("INSERT INTO email_setting " . 
                      "(user_id, relationship, event) " . 
                      "VALUES ($userid, $rel, $event)");
@@ -1133,12 +1230,14 @@ sub is_available_username ($;$) {
     #
     # substring/locate stuff: bug 165221; this used to use regexes, but that
     # was unsafe and required weird escaping; using substring to pull out
-    # the new/old email addresses and locate() to find the delimeter (':')
+    # the new/old email addresses and sql_position() to find the delimiter (':')
     # is cleaner/safer
     my $sth = $dbh->prepare(
         "SELECT eventdata FROM tokens WHERE tokentype = 'emailold'
-        AND SUBSTRING(eventdata, 1, (LOCATE(':', eventdata) - 1)) = ?
-        OR SUBSTRING(eventdata, (LOCATE(':', eventdata) + 1)) = ?");
+        AND SUBSTRING(eventdata, 1, (" 
+        . $dbh->sql_position(q{':'}, 'eventdata') . "-  1)) = ?
+        OR SUBSTRING(eventdata, (" 
+        . $dbh->sql_position(q{':'}, 'eventdata') . "+ 1)) = ?");
     $sth->execute($username, $username);
 
     if (my ($eventdata) = $sth->fetchrow_array()) {
@@ -1157,8 +1256,9 @@ sub login_to_id ($) {
     my $dbh = Bugzilla->dbh;
     # $login will only be used by the following SELECT statement, so it's safe.
     trick_taint($login);
-    my $user_id = $dbh->selectrow_array(
-        "SELECT userid FROM profiles WHERE login_name = ?", undef, $login);
+    my $user_id = $dbh->selectrow_array("SELECT userid FROM profiles WHERE " .
+                                        $dbh->sql_istrcmp('login_name', '?'),
+                                        undef, $login);
     if ($user_id) {
         return $user_id;
     } else {
@@ -1195,6 +1295,32 @@ there is currently no way to modify a user from this package.
 Note that the currently logged in user (if any) is available via
 L<Bugzilla-E<gt>user|Bugzilla/"user">.
 
+=head1 CONSTANTS
+
+=over
+
+=item C<USER_MATCH_MULTIPLE>
+
+Returned by C<match_field()> when at least one field matched more than 
+one user, but no matches failed.
+
+=item C<USER_MATCH_FAILED>
+
+Returned by C<match_field()> when at least one field failed to match 
+anything.
+
+=item C<USER_MATCH_SUCCESS>
+
+Returned by C<match_field()> when all fields successfully matched only one
+user.
+
+=item C<MATCH_SKIP_CONFIRM>
+
+Passed in to match_field to tell match_field to never display a 
+confirmation screen.
+
+=back
+
 =head1 METHODS
 
 =over 4
@@ -1318,10 +1444,12 @@ and getting all of the groups would be overkill.
 
 =item C<bless_groups>
 
-Returns a hashref of group names for groups that the user can bless. The keys
-are the names of the groups, whilst the values are the respective group ids.
-(This is so that a set of all groupids for groups the user can bless can be
-obtained by C<values(%{$user-E<gt>bless_groups})>.)
+Returns an arrayref of hashes of C<groups> entries, where the keys of each hash
+are the names of C<id>, C<name> and C<description> columns of the C<groups>
+table.
+The arrayref consists of the groups the user can bless, taking into account
+that having editusers permissions means that you can bless all groups, and
+that you need to be aware of a group in order to bless a group.
 
 =item C<can_see_bug(bug_id)>
 
@@ -1383,6 +1511,32 @@ all MySQL supported, this will go away.
 
 =end undocumented
 
+=item C<product_responsibilities>
+
+Retrieve user's product responsibilities as a list of hashes.
+One hash per Bugzilla component the user has a responsibility for.
+These are the hash keys:
+
+=over
+
+=item productname
+
+Name of the product.
+
+=item componentname
+
+Name of the component.
+
+=item initialowner
+
+User ID of default assignee.
+
+=item initialqacontact
+
+User ID of default QA contact.
+
+=back
+
 =item C<can_bless>
 
 When called with no arguments:
@@ -1417,15 +1571,21 @@ Returns true if the user wants mail for a given set of events. This method is
 more general than C<wants_bug_mail>, allowing you to check e.g. permissions
 for flag mail.
 
+=item C<is_mover>
+
+Returns true if the user is in the list of users allowed to move bugs
+to another database. Note that this method doesn't check whether bug
+moving is enabled.
+
 =back
 
 =head1 CLASS FUNCTIONS
 
-=over4
-
 These are functions that are not called on a User object, but instead are
 called "statically," just like a normal procedural function.
 
+=over 4
+
 =item C<insert_new_user>
 
 Creates a new user in the database.
diff --git a/Bugzilla/User/CVS/Entries b/Bugzilla/User/CVS/Entries
index 7c730fe6210d6746d736ea73b343a771325136b9..0300628b43e6b43fb543dbeca9155cfc177944aa 100644
--- a/Bugzilla/User/CVS/Entries
+++ b/Bugzilla/User/CVS/Entries
@@ -1,2 +1,2 @@
-/Setting.pm/1.3/Tue May  3 20:42:48 2005//TBUGZILLA-2_19_3
+/Setting.pm/1.4.2.2/Wed Jul 27 19:08:43 2005//TBUGZILLA-2_20
 D
diff --git a/Bugzilla/User/CVS/Tag b/Bugzilla/User/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/Bugzilla/User/CVS/Tag
+++ b/Bugzilla/User/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/Bugzilla/User/Setting.pm b/Bugzilla/User/Setting.pm
index a5527e703324363d515f8b6abb5681e26f3c3866..450d20a7fff0a075ce3e0b1aadbaeb88decd05e3 100644
--- a/Bugzilla/User/Setting.pm
+++ b/Bugzilla/User/Setting.pm
@@ -13,7 +13,7 @@
 # The Original Code is the Bugzilla Bug Tracking System.
 #
 # Contributor(s): Shane H. W. Travis <travis@sedsystems.ca>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 #
 
 
@@ -27,6 +27,7 @@ use base qw(Exporter);
      add_setting);
 
 use Bugzilla::Error;
+use Bugzilla::Util qw{trick_taint};
 
 ###############################
 ###  Module Initialization  ###
@@ -224,6 +225,19 @@ sub legal_values {
     return $self->{'legal_values'};
 }
 
+sub validate_value {
+    my $self = shift;
+
+    if (grep(/^$_[0]$/, @{$self->legal_values()})) {
+        trick_taint($_[0]);
+    }
+    else {
+        ThrowCodeError('setting_value_invalid',
+                       {'name'  => $self->{'_setting_name'},
+                        'value' => $_[0]});
+    }
+}
+
 sub reset_to_default {
     my ($self) = @_;
 
@@ -265,15 +279,18 @@ sub set {
 __END__
 
 =head1 NAME
+
 Bugzilla::User::Setting - Object for a user preference setting
 
 =head1 SYNOPSIS
+
 Setting.pm creates a setting object, which is a hash containing the user
 preference information for a single preference for a single user. These 
 are usually accessed through the "settings" object of a user, and not 
 directly.
 
 =head1 DESCRIPTION
+
 use Bugzilla::User::Setting;
 my $settings;
 
@@ -329,13 +346,17 @@ Params:      C<$setting_name> - string - the name of the setting
 Returns:     nothing
 
 =begin private
+
 =item C<_setting_exists>
 
 Description: Determines if a given setting exists in the database.
 Params:      C<$setting_name> - string - the setting name
 Returns:     boolean - true if the setting already exists in the DB.
 
+=back
+
 =end private
+
 =head1 METHODS
 
 =over 4
@@ -346,6 +367,15 @@ Description: Returns all legal values for this setting
 Params:      none
 Returns:     A reference to an array containing all legal values
 
+=item C<validate_value>
+
+Description: Determines whether a value is valid for the setting
+             by checking against the list of legal values.
+             Untaints the parameter if the value is indeed valid,
+             and throws a setting_value_invalid code error if not.
+Params:      An lvalue containing a candidate for a setting value
+Returns:     nothing
+
 =item C<reset_to_default>
 
 Description: If a user chooses to use the global default for a given 
@@ -363,4 +393,4 @@ Description: If a user chooses to use their own value rather than the
 Params:      C<$value> - string - the new value for this setting for this user.
 Returns:     nothing
 
-
+=back
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index ed415c7be5f75636b7419dd3c38d8a52d611553d..3374d2c115b9a802feb4c0d49ce8520cca5b64fb 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -22,7 +22,7 @@
 #                 Jacob Steenhagen <jake@bugzilla.org>
 #                 Bradley Baetz <bbaetz@student.usyd.edu.au>
 #                 Christopher Aillon <christopher@aillon.com>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 package Bugzilla::Util;
 
@@ -33,11 +33,13 @@ use base qw(Exporter);
                              detaint_signed
                              html_quote url_quote value_quote xml_quote
                              css_class_quote
+                             i_am_cgi
                              lsearch max min
                              diff_arrays diff_strings
                              trim wrap_comment find_wrap_point
                              format_time format_time_decimal
-                             file_mod_time);
+                             file_mod_time
+                             bz_crypt);
 
 use Bugzilla::Config;
 use Bugzilla::Error;
@@ -59,20 +61,20 @@ sub is_tainted {
 sub trick_taint {
     require Carp;
     Carp::confess("Undef to trick_taint") unless defined $_[0];
-    $_[0] =~ /^(.*)$/s;
-    $_[0] = $1;
+    my ($match) = $_[0] =~ /^(.*)$/s;
+    $_[0] = $match;
     return (defined($_[0]));
 }
 
 sub detaint_natural {
-    $_[0] =~ /^(\d+)$/;
-    $_[0] = $1;
+    my ($match) = $_[0] =~ /^(\d+)$/;
+    $_[0] = $match;
     return (defined($_[0]));
 }
 
 sub detaint_signed {
-    $_[0] =~ /^([-+]?\d+)$/;
-    $_[0] = $1;
+    my ($match) = $_[0] =~ /^([-+]?\d+)$/;
+    $_[0] = $match;
     # Remove any leading plus sign.
     if (defined($_[0]) && $_[0] =~ /^\+(\d+)$/) {
         $_[0] = $1;
@@ -129,6 +131,12 @@ sub xml_quote {
     return $var;
 }
 
+sub i_am_cgi {
+    # I use SERVER_SOFTWARE because it's required to be
+    # defined for all requests in the CGI spec.
+    return exists $ENV{'SERVER_SOFTWARE'} ? 1 : 0;
+}
+
 sub lsearch {
     my ($list,$item) = (@_);
     my $count = 0;
@@ -309,6 +317,31 @@ sub file_mod_time ($) {
     return $mtime;
 }
 
+sub bz_crypt ($) {
+    my ($password) = @_;
+
+    # The list of characters that can appear in a salt.  Salts and hashes
+    # are both encoded as a sequence of characters from a set containing
+    # 64 characters, each one of which represents 6 bits of the salt/hash.
+    # The encoding is similar to BASE64, the difference being that the
+    # BASE64 plus sign (+) is replaced with a forward slash (/).
+    my @saltchars = (0..9, 'A'..'Z', 'a'..'z', '.', '/');
+
+    # Generate the salt.  We use an 8 character (48 bit) salt for maximum
+    # security on systems whose crypt uses MD5.  Systems with older
+    # versions of crypt will just use the first two characters of the salt.
+    my $salt = '';
+    for ( my $i=0 ; $i < 8 ; ++$i ) {
+        $salt .= $saltchars[rand(64)];
+    }
+
+    # Crypt the password.
+    my $cryptedpassword = crypt($password, $salt);
+
+    # Return the crypted password.
+    return $cryptedpassword;
+}
+
 sub ValidateDate {
     my ($date, $format) = @_;
     my $date2;
@@ -369,6 +402,9 @@ Bugzilla::Util - Generic utility functions for bugzilla
   # Functions for dealing with files
   $time = file_mod_time($filename);
 
+  # Cryptographic Functions
+  $crypted_password = bz_crypt($password);
+
 =head1 DESCRIPTION
 
 This package contains various utility functions which do not belong anywhere
@@ -521,8 +557,6 @@ The intended use of this function is to wrap comments that are about to be
 displayed or emailed. Generally, wrapped text should not be stored in the
 database.
 
-=back
-
 =item C<find_wrap_point($string, $maxpos)>
 
 Search for a comma, a whitespace or a hyphen to split $string, within the first
@@ -552,6 +586,9 @@ the routine has to "guess" the date format that was passed to $dbh->sql_date_for
 Returns a number with 2 digit precision, unless the last digit is a 0. Then it 
 returns only 1 digit precision.
 
+=back
+
+
 =head2 Files
 
 =over 4
@@ -563,3 +600,25 @@ of the "mtime" parameter of the perl "stat" function.
 
 =back
 
+=head2 Cryptography
+
+=over 4
+
+=item C<bz_crypt($password)>
+
+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.
+
+=begin undocumented
+
+Random salts are generated because the alternative is usually
+to use the first two characters of the password itself, and since
+the salt appears in plaintext at the beginning of the encrypted
+password string this has the effect of revealing the first two
+characters of the password to anyone who views the encrypted version.
+
+=end undocumented
+
+=back
diff --git a/CGI.pl b/CGI.pl
index d2a6b50efa04b9cfe3bb9665abbbbaa4829879a9..190fc8de8d0c25967d29f1f5ad4d72a9d5ced854 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -67,15 +67,21 @@ require 'globals.pl';
 use vars qw($template $vars);
 
 # If Bugzilla is shut down, do not go any further, just display a message
-# to the user about the downtime.  (do)editparams.cgi is exempted from
-# this message, of course, since it needs to be available in order for
+# to the user about the downtime and log out.  (do)editparams.cgi is exempted
+# from this message, of course, since it needs to be available in order for
 # the administrator to open Bugzilla back up.
 if (Param("shutdownhtml") && $0 !~ m:(^|[\\/])(do)?editparams\.cgi$:) {
-    $::vars->{'message'} = "shutdown";
+    # For security reasons, log out users when Bugzilla is down.
+    # Bugzilla->login() is required to catch the logincookie, if any.
+    my $user = Bugzilla->login(LOGIN_OPTIONAL);
+    my $userid = $user->id;
+    Bugzilla->logout();
     
     # Return the appropriate HTTP response headers.
     print Bugzilla->cgi->header();
     
+    $::vars->{'message'} = "shutdown";
+    $::vars->{'userid'} = $userid;
     # Generate and return an HTML message about the downtime.
     $::template->process("global/message.html.tmpl", $::vars)
       || ThrowTemplateError($::template->error());
@@ -262,8 +268,13 @@ sub GetBugActivity {
         $suppwhere = "AND COALESCE(attachments.isprivate, 0) = 0";
     }
     my $query = "
-        SELECT COALESCE(fielddefs.description, bugs_activity.fieldid),
-               fielddefs.name, bugs_activity.attach_id, " .
+        SELECT COALESCE(fielddefs.description, " 
+               # This is a hack - PostgreSQL requires both COALESCE
+               # arguments to be of the same type, and this is the only
+               # way supported by both MySQL 3 and PostgreSQL to convert
+               # an integer to a string. MySQL 4 supports CAST.
+               . $dbh->sql_string_concat('bugs_activity.fieldid', q{''}) .
+               "), fielddefs.name, bugs_activity.attach_id, " .
         $dbh->sql_date_format('bugs_activity.bug_when', '%Y.%m.%d %H:%i:%s') .
             ", bugs_activity.removed, bugs_activity.added, profiles.login_name
           FROM bugs_activity
diff --git a/CVS/Entries b/CVS/Entries
index 9977d10dcca59dbf50880e3e69e56f50d5017ef4..7e75dd275bdea7a22d30cc8b5b66ab6ac8b548a1 100644
--- a/CVS/Entries
+++ b/CVS/Entries
@@ -1,78 +1,77 @@
-/.cvsignore/1.6/Mon May 13 22:28:26 2002//TBUGZILLA-2_19_3
-/Bugzilla.pm/1.17/Thu Mar  3 05:28:42 2005//TBUGZILLA-2_19_3
-/CGI.pl/1.241/Tue Apr 19 23:42:56 2005//TBUGZILLA-2_19_3
-/QUICKSTART/1.4/Thu Jul  8 19:59:25 2004//TBUGZILLA-2_19_3
-/README/1.52/Fri Oct 10 02:22:39 2003//TBUGZILLA-2_19_3
-/UPGRADING/1.1/Fri Aug 10 22:35:21 2001//TBUGZILLA-2_19_3
-/UPGRADING-pre-2.8/1.3/Thu Mar 27 00:06:37 2003//TBUGZILLA-2_19_3
-/ant.jpg/1.2/Wed Aug 26 22:36:05 1998/-kb/TBUGZILLA-2_19_3
-/attachment.cgi/1.83/Thu Apr 28 02:14:25 2005//TBUGZILLA-2_19_3
-/buglist.cgi/1.291/Tue Apr 12 17:57:15 2005//TBUGZILLA-2_19_3
-/bugzilla.dtd/1.10/Sun Jan 16 20:34:51 2005//TBUGZILLA-2_19_3
-/chart.cgi/1.11/Thu May 12 01:52:13 2005//TBUGZILLA-2_19_3
-/checksetup.pl/1.401/Tue May  3 18:23:37 2005//TBUGZILLA-2_19_3
-/colchange.cgi/1.47/Tue Mar 15 22:10:13 2005//TBUGZILLA-2_19_3
-/collectstats.pl/1.43/Mon Apr  4 21:52:06 2005//TBUGZILLA-2_19_3
-/config.cgi/1.8/Wed Feb 16 22:30:42 2005//TBUGZILLA-2_19_3
-/createaccount.cgi/1.38/Wed Mar 30 09:57:29 2005//TBUGZILLA-2_19_3
-/defparams.pl/1.157/Thu Apr  7 08:08:36 2005//TBUGZILLA-2_19_3
-/describecomponents.cgi/1.29/Wed Mar  9 20:53:20 2005//TBUGZILLA-2_19_3
-/describekeywords.cgi/1.14/Wed Mar 16 00:27:14 2005//TBUGZILLA-2_19_3
-/doeditparams.cgi/1.33/Tue Mar 15 22:10:13 2005//TBUGZILLA-2_19_3
-/duplicates.cgi/1.44/Sat Jul 10 07:17:02 2004//TBUGZILLA-2_19_3
-/duplicates.xul/1.2/Thu Oct 21 19:02:28 2004//TBUGZILLA-2_19_3
-/editclassifications.cgi/1.11/Mon Apr  4 21:52:06 2005//TBUGZILLA-2_19_3
-/editcomponents.cgi/1.54/Wed Apr  6 00:19:51 2005//TBUGZILLA-2_19_3
-/editflagtypes.cgi/1.19/Thu May  5 19:20:44 2005//TBUGZILLA-2_19_3
-/editgroups.cgi/1.52/Mon Apr  4 21:52:06 2005//TBUGZILLA-2_19_3
-/editkeywords.cgi/1.26/Wed Mar 16 00:27:14 2005//TBUGZILLA-2_19_3
-/editmilestones.cgi/1.38/Tue May  3 19:41:22 2005//TBUGZILLA-2_19_3
-/editparams.cgi/1.24/Tue Mar 15 22:10:13 2005//TBUGZILLA-2_19_3
-/editproducts.cgi/1.82/Tue May  3 18:32:58 2005//TBUGZILLA-2_19_3
-/editsettings.cgi/1.2/Tue Mar 15 22:10:13 2005//TBUGZILLA-2_19_3
-/editusers.cgi/1.88/Mon May  2 18:52:02 2005//TBUGZILLA-2_19_3
-/editvalues.cgi/1.2/Sat Mar  5 01:08:35 2005//TBUGZILLA-2_19_3
-/editversions.cgi/1.34/Wed Apr  6 00:19:51 2005//TBUGZILLA-2_19_3
-/editwhines.cgi/1.5/Thu Apr  7 23:37:35 2005//TBUGZILLA-2_19_3
-/enter_bug.cgi/1.114/Thu May 12 02:07:09 2005//TBUGZILLA-2_19_3
-/globals.pl/1.323/Thu May 12 02:07:09 2005//TBUGZILLA-2_19_3
-/importxml.pl/1.43/Fri Mar 18 04:21:27 2005//TBUGZILLA-2_19_3
-/index.cgi/1.13/Sat Mar 27 03:51:44 2004//TBUGZILLA-2_19_3
-/localconfig.js/1.2/Thu Jul 17 22:49:47 2003//TBUGZILLA-2_19_3
-/long_list.cgi/1.45/Mon Jan 24 16:39:15 2005//TBUGZILLA-2_19_3
-/move.pl/1.31/Tue Feb  8 16:51:02 2005//TBUGZILLA-2_19_3
-/page.cgi/1.15/Sat Apr 17 04:41:14 2004//TBUGZILLA-2_19_3
-/post_bug.cgi/1.116/Thu May 12 02:07:09 2005//TBUGZILLA-2_19_3
-/process_bug.cgi/1.255/Thu May 12 02:07:09 2005//TBUGZILLA-2_19_3
-/productmenu.js/1.2/Tue Dec 14 02:29:56 2004//TBUGZILLA-2_19_3
-/query.cgi/1.144/Sun Apr 10 17:37:57 2005//TBUGZILLA-2_19_3
-/quicksearch.html/1.3/Mon Apr 15 02:47:55 2002//TBUGZILLA-2_19_3
-/quicksearch.js/1.11/Sun Feb 29 15:22:26 2004//TBUGZILLA-2_19_3
-/quicksearchhack.html/1.5/Sun Mar  7 23:27:32 2004//TBUGZILLA-2_19_3
-/quips.cgi/1.27/Thu Mar 10 16:21:34 2005//TBUGZILLA-2_19_3
-/relogin.cgi/1.25/Sat Mar 27 03:51:44 2004//TBUGZILLA-2_19_3
-/report.cgi/1.29/Mon Apr  4 23:02:16 2005//TBUGZILLA-2_19_3
-/reports.cgi/1.74/Thu May 12 02:07:09 2005//TBUGZILLA-2_19_3
-/request.cgi/1.22/Sat Apr 16 00:37:23 2005//TBUGZILLA-2_19_3
-/robots.txt/1.2/Wed Apr 24 18:11:00 2002//TBUGZILLA-2_19_3
-/runtests.pl/1.4/Fri Sep  3 06:59:08 2004//TBUGZILLA-2_19_3
-/runtests.sh/1.7/Thu Mar 27 00:06:47 2003//TBUGZILLA-2_19_3
-/sanitycheck.cgi/1.93/Tue Apr 12 17:24:33 2005//TBUGZILLA-2_19_3
-/show_activity.cgi/1.15/Sat Mar 27 03:51:44 2004//TBUGZILLA-2_19_3
-/show_bug.cgi/1.32/Tue Mar 15 22:10:13 2005//TBUGZILLA-2_19_3
-/showattachment.cgi/1.14/Mon May  5 01:15:29 2003//TBUGZILLA-2_19_3
-/showdependencygraph.cgi/1.38/Thu Feb  3 17:37:07 2005//TBUGZILLA-2_19_3
-/showdependencytree.cgi/1.32/Mon Apr  4 21:52:06 2005//TBUGZILLA-2_19_3
-/sidebar.cgi/1.14/Sat Mar 27 03:51:44 2004//TBUGZILLA-2_19_3
-/summarize_time.cgi/1.7/Thu Apr  7 18:18:52 2005//TBUGZILLA-2_19_3
-/testagent.cgi/1.2/Thu Jul 22 07:05:05 2004//TBUGZILLA-2_19_3
-/testserver.pl/1.6/Tue Mar 22 19:22:36 2005//TBUGZILLA-2_19_3
-/token.cgi/1.30/Thu Feb 17 21:57:26 2005//TBUGZILLA-2_19_3
-/userprefs.cgi/1.75/Thu May 12 01:52:13 2005//TBUGZILLA-2_19_3
-/votes.cgi/1.29/Tue Apr 19 23:42:56 2005//TBUGZILLA-2_19_3
-/whine.pl/1.12/Wed Mar 16 21:58:54 2005//TBUGZILLA-2_19_3
-/whineatnews.pl/1.17/Mon Apr  4 21:52:06 2005//TBUGZILLA-2_19_3
-/xml.cgi/1.12/Thu Mar 27 00:06:50 2003//TBUGZILLA-2_19_3
+/.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
 D/Bugzilla////
 D/contrib////
 D/docs////
diff --git a/CVS/Tag b/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/CVS/Tag
+++ b/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/attachment.cgi b/attachment.cgi
index 8b9bdaafd58984fc1d613c30612b7114a7ad455d..e4cbe8eed76e6099b788a67e163d8dd901ab6a85 100755
--- a/attachment.cgi
+++ b/attachment.cgi
@@ -23,6 +23,7 @@
 #                 Daniel Raichle <draichle@gmx.net>
 #                 Dave Miller <justdave@syndicomm.com>
 #                 Alexander J. Vincent <ajvincent@juno.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 ################################################################################
 # Script Initialization
@@ -900,11 +901,23 @@ sub insert
     # The order of these function calls is important, as both Flag::validate
     # and FlagType::validate assume User::match_field has ensured that the
     # values in the requestee fields are legitimate user email addresses.
-    Bugzilla::User::match_field($cgi, {
-        '^requestee(_type)?-(\d+)$' => { 'type' => 'single' }
-    });
-    Bugzilla::Flag::validate($cgi, $bugid);
-    Bugzilla::FlagType::validate($cgi, $bugid, $cgi->param('id'));
+    my $match_status = Bugzilla::User::match_field($cgi, {
+        '^requestee(_type)?-(\d+)$' => { 'type' => 'single' },
+    }, MATCH_SKIP_CONFIRM);
+
+    $vars->{'match_field'} = 'requestee';
+    if ($match_status == USER_MATCH_FAILED) {
+        $vars->{'message'} = 'user_match_failed';
+    }
+    elsif ($match_status == USER_MATCH_MULTIPLE) {
+        $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.
+    Bugzilla::Flag::validate($cgi, $bugid, -1);
+    Bugzilla::FlagType::validate($cgi, $bugid);
 
     # Escape characters in strings that will be used in SQL statements.
     my $sql_filename = SqlQuote($filename);
@@ -965,11 +978,7 @@ sub insert
                 $cgi->param('description') . "\n";
   $comment .= ("\n" . $cgi->param('comment')) if defined $cgi->param('comment');
 
-  AppendComment($bugid,
-                Bugzilla->user->login,
-                $comment,
-                $isprivate,
-                $timestamp);
+  AppendComment($bugid, $userid, $comment, $isprivate, $timestamp);
 
   # Make existing attachments obsolete.
   my $fieldid = GetFieldID('attachments.isobsolete');
@@ -1142,7 +1151,7 @@ sub update
     Bugzilla::User::match_field($cgi, {
         '^requestee(_type)?-(\d+)$' => { 'type' => 'single' }
     });
-    Bugzilla::Flag::validate($cgi, $bugid);
+    Bugzilla::Flag::validate($cgi, $bugid, $attach_id);
     Bugzilla::FlagType::validate($cgi, $bugid, $attach_id);
 
   # Lock database tables in preparation for updating the attachment.
@@ -1156,7 +1165,7 @@ sub update
           # Bugzilla::User needs to rederive groups. profiles and 
           # user_group_map would be READ locks instead of WRITE locks if it
           # weren't for derive_groups, which needs to write to those tables.
-          'bugs READ', 'profiles WRITE', 'email_setting READ',
+          'bugs WRITE', 'profiles WRITE', 'email_setting READ',
           'cc READ', 'bug_group_map READ', 'user_group_map WRITE',
           'group_group_map READ', 'groups READ');
 
@@ -1245,13 +1254,9 @@ sub update
   # Unlock all database tables now that we are finished updating the database.
   $dbh->bz_unlock_tables();
 
-  # Get the user's login name since the AppendComment and header functions
-  # need it.
-  my $who = Bugzilla->user->login;
-
   # If the user submitted a comment while editing the attachment,
   # add the comment to the bug.
-  if (defined $cgi->param('comment'))
+  if ($cgi->param('comment'))
   {
     # Prepend a string to the comment to let users know that the comment came
     # from the "edit attachment" screen.
@@ -1259,11 +1264,11 @@ sub update
                   $cgi->param('comment');
 
     # Append the comment to the list of comments in the database.
-    AppendComment($bugid, $who, $comment, $cgi->param('isprivate'), $timestamp);
+    AppendComment($bugid, $userid, $comment, $cgi->param('isprivate'), $timestamp);
   }
   
   # Define the variables and functions that will be passed to the UI template.
-  $vars->{'mailrecipients'} = { 'changer' => $who };
+  $vars->{'mailrecipients'} = { 'changer' => Bugzilla->user->login };
   $vars->{'attachid'} = $attach_id; 
   $vars->{'bugid'} = $bugid; 
 
diff --git a/buglist.cgi b/buglist.cgi
index fbe18f7eee7f09c33befd82484b984cd39860737..d579d8086d4a7c4dd1855cc2ca764d68b8717179 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -23,7 +23,7 @@
 #                 Stephan Niemz  <st.n@gmx.net>
 #                 Andreas Franke <afranke@mathweb.org>
 #                 Myk Melez <myk@mozilla.org>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 ################################################################################
 # Script Initialization
@@ -382,6 +382,27 @@ if ($cgi->param('cmdtype') eq "dorem") {
         # the SQL, and the SQL is only a DELETE.
         my $qname = $cgi->param('namedcmd');
         trick_taint($qname);
+
+        # Do not forget the saved search if it is being used in a whine
+        my $whines_in_use = 
+            $dbh->selectcol_arrayref('SELECT DISTINCT whine_events.subject
+                                                 FROM whine_events
+                                           INNER JOIN whine_queries
+                                                   ON whine_queries.eventid
+                                                      = whine_events.id
+                                                WHERE whine_events.owner_userid
+                                                      = ?
+                                                  AND whine_queries.query_name
+                                                      = ?
+                                      ', undef, Bugzilla->user->id, $qname);
+        if (scalar(@$whines_in_use)) {
+            ThrowUserError('saved_search_used_by_whines', 
+                           { subjects    => join(',', @$whines_in_use),
+                             search_name => $qname                      }
+            );
+        }
+
+        # If we are here, then we can safely remove the saved search
         $dbh->do("DELETE FROM namedqueries"
             . " WHERE userid = ? AND name = ?"
             , undef, ($userid, $qname));
@@ -492,7 +513,7 @@ DefineColumn("bug_status"        , "bugs.bug_status"            , "Status"
 DefineColumn("resolution"        , "bugs.resolution"            , "Result"           );
 DefineColumn("short_short_desc"  , "bugs.short_desc"            , "Summary"          );
 DefineColumn("short_desc"        , "bugs.short_desc"            , "Summary"          );
-DefineColumn("status_whiteboard" , "bugs.status_whiteboard"     , "Status Summary"   );
+DefineColumn("status_whiteboard" , "bugs.status_whiteboard"     , "Whiteboard"       );
 DefineColumn("component"         , "map_components.name"        , "Component"        );
 DefineColumn("product"           , "map_products.name"          , "Product"          );
 DefineColumn("classification"    , "map_classifications.name"   , "Classification"   );
@@ -707,8 +728,7 @@ if ($order) {
                 else {
                     my $vars = { fragment => $fragment };
                     if ($order_from_cookie) {
-                        $cgi->send_cookie(-name => 'LASTORDER',
-                                          -expires => 'Tue, 15-Sep-1998 21:49:00 GMT');
+                        $cgi->remove_cookie('LASTORDER');
                         ThrowCodeError("invalid_column_name_cookie", $vars);
                     }
                     else {
@@ -734,7 +754,15 @@ foreach my $fragment (split(/,/, $order)) {
         # Add order columns to selectnames
         # The fragment has already been validated
         $fragment =~ s/\s+(asc|desc)$//;
-        $fragment =~ tr/a-zA-Z\.0-9\-_//cd;
+        # 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.
+        if ($fragment =~ / AS (\w+)/) {
+            $fragment = $columns->{$1}->{'name'};
+        }
+        else {
+            $fragment =~ tr/a-zA-Z\.0-9\-_//cd;
+        }
         push @selectnames, $fragment;
     }
 }
@@ -772,7 +800,8 @@ if (defined $cgi->param('limit')) {
     }
 }
 elsif ($fulltext) {
-    $query .= " " . $dbh->sql_limit(200);
+    $query .= " " . $dbh->sql_limit(FULLTEXT_BUGLIST_LIMIT);
+    $vars->{'sorted_by_relevance'} = 1;
 }
 
 
@@ -862,7 +891,7 @@ while (my @row = $buglist_sth->fetchrow_array()) {
         $bug->{'opendate'} = DiffDate($bug->{'opendate'});
     }
 
-    # Record the owner, product, and status in the big hashes of those things.
+    # Record the assignee, product, and status in the big hashes of those things.
     $bugowners->{$bug->{'assigned_to'}} = 1 if $bug->{'assigned_to'};
     $bugproducts->{$bug->{'product'}} = 1 if $bug->{'product'};
     $bugstatuses->{$bug->{'bug_status'}} = 1 if $bug->{'bug_status'};
@@ -881,7 +910,7 @@ while (my @row = $buglist_sth->fetchrow_array()) {
 # or because of human choice
 my %min_membercontrol;
 if (@bugidlist) {
-    my $sth = $dbh->prepare(
+    my $sth = $dbh->prepare(
         "SELECT DISTINCT bugs.bug_id, MIN(group_control_map.membercontrol) " .
           "FROM bugs " .
     "INNER JOIN bug_group_map " .
@@ -893,16 +922,16 @@ if (@bugidlist) {
             $dbh->sql_group_by('bugs.bug_id'));
     $sth->execute();
     while (my ($bug_id, $min_membercontrol) = $sth->fetchrow_array()) {
-        $min_membercontrol{$bug_id} = $min_membercontrol;
+        $min_membercontrol{$bug_id} = $min_membercontrol || CONTROLMAPNA;
     }
     foreach my $bug (@bugs) {
         next unless defined($min_membercontrol{$bug->{'bug_id'}});
-        if ($min_membercontrol{$bug->{'bug_id'}} == CONTROLMAPSHOWN
-              || $min_membercontrol{$bug->{'bug_id'}} == CONTROLMAPDEFAULT) {
-            $bug->{'secure_mode'} = 'manual';
-        } elsif ($min_membercontrol{$bug->{'bug_id'}} == CONTROLMAPMANDATORY) {
+        if ($min_membercontrol{$bug->{'bug_id'}} == CONTROLMAPMANDATORY) {
             $bug->{'secure_mode'} = 'implied';
         }
+        else {
+            $bug->{'secure_mode'} = 'manual';
+        }
     }
 }
 
@@ -932,18 +961,8 @@ $vars->{'closedstates'} = ['CLOSED', 'VERIFIED', 'RESOLVED'];
 $vars->{'urlquerypart'} = $::buffer;
 $vars->{'urlquerypart'} =~ s/(order|cmdtype)=[^&]*&?//g;
 $vars->{'order'} = $order;
-
-# The user's login account name (i.e. email address).
-my $login = Bugzilla->user->login;
-
 $vars->{'caneditbugs'} = UserInGroup('editbugs');
 
-# Whether or not this user is authorized to move bugs to another installation.
-$vars->{'ismover'} = 1
-  if Param('move-enabled')
-    && defined($login)
-      && Param('movers') =~ /^(\Q$login\E[,\s])|([,\s]\Q$login\E[,\s]+)/;
-
 my @bugowners = keys %$bugowners;
 if (scalar(@bugowners) > 1 && UserInGroup('editbugs')) {
     my $suffix = Param('emailsuffix');
@@ -1013,14 +1032,16 @@ if ($format->{'extension'} eq "html") {
     }
     my $bugids = join(":", @bugidlist);
     # See also Bug 111999
-    if (length($bugids) < 4000) {
+    if (length($bugids) == 0) {
+        $cgi->remove_cookie('BUGLIST');
+    }
+    elsif (length($bugids) < 4000) {
         $cgi->send_cookie(-name => 'BUGLIST',
                           -value => $bugids,
                           -expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
     }
     else {
-        $cgi->send_cookie(-name => 'BUGLIST',
-                          -expires => 'Tue, 15-Sep-1998 21:49:00 GMT');
+        $cgi->remove_cookie('BUGLIST');
         $vars->{'toolong'} = 1;
     }
 
diff --git a/bugzilla.dtd b/bugzilla.dtd
index f9ced933b6894253b98065842097c3e5bf282293..9b4ed4f67cee2548a8d055c15625523926b4961f 100644
--- a/bugzilla.dtd
+++ b/bugzilla.dtd
@@ -5,7 +5,7 @@
 	maintainer CDATA #REQUIRED
 	exporter CDATA #IMPLIED
 >
-<!ELEMENT bug (bug_id, (alias?, creation_ts, short_desc, delta_ts, reporter_accessible, cclist_accessible, classification_id, classification, product, component, version, rep_platform, op_sys, bug_status, resolution?, bug_file_loc?, status_whiteboard?, keywords*, priority, bug_severity, target_milestone?, dependson*, blocked*, votes?, reporter, assigned_to, qa_contact?, cc*, (estimated_time, remaining_time, actual_time)?, groups*, long_desc*, attachment*)?)>
+<!ELEMENT bug (bug_id, (alias?, creation_ts, short_desc, delta_ts, reporter_accessible, cclist_accessible, classification_id, classification, product, component, version, rep_platform, op_sys, bug_status, resolution?, bug_file_loc?, status_whiteboard?, keywords*, priority, bug_severity, target_milestone?, dependson*, blocked*, votes?, reporter, assigned_to, qa_contact?, cc*, (estimated_time, remaining_time, actual_time)?, group*, long_desc*, attachment*)?)>
 <!ATTLIST bug
 	error (NotFound | NotPermitted | InvalidBugId) #IMPLIED
 >
@@ -38,6 +38,7 @@
 <!ELEMENT keywords (#PCDATA)>
 <!ELEMENT dependson (#PCDATA)>
 <!ELEMENT blocked (#PCDATA)>
+<!ELEMENT votes (#PCDATA)>
 <!ELEMENT cc (#PCDATA)>
 <!ELEMENT group (#PCDATA)>
 <!ELEMENT estimated_time (#PCDATA)>
diff --git a/checksetup.pl b/checksetup.pl
index ef3d80735c9a7840c417f9c83a10d1c0c2b9bb9d..e9cf38d41dc37c7f9f26bfbd19e02bff2629dfd8 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -30,7 +30,7 @@
 #                 Gervase Markham <gerv@gerv.net>
 #                 Erik Stambaugh <erik@dasbistro.com>
 #                 Dave Lawrence <dkl@redhat.com>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 #
 #
 #
@@ -53,7 +53,7 @@
 #     - set defaults for local configuration variables
 #     - create and populate the data directory after installation
 #     - set the proper rights for the *.cgi, *.html, etc. files
-#     - verify that the code can access MySQL
+#     - verify that the code can access the database server
 #     - creates the database 'bugs' if it does not exist
 #     - creates the tables inside the database if they don't exist
 #     - automatically changes the table definitions if they are from
@@ -299,13 +299,9 @@ my $modules = [
         name => 'DBI', 
         version => '1.38' 
     }, 
-    { 
-        name => 'DBD::mysql', 
-        version => '2.9003' 
-    }, 
     { 
         name => 'File::Spec', 
-        version => '0.82' 
+        version => '0.84' 
     }, 
     {
         name => 'File::Temp',
@@ -679,8 +675,8 @@ LocalVar('db_host', q[
 # How to access the SQL database:
 #
 $db_host = 'localhost';         # where is the database?
-$db_name = 'bugs';              # name of the MySQL database
-$db_user = 'bugs';              # user to attach to the MySQL database
+$db_name = 'bugs';              # name of the SQL database
+$db_user = 'bugs';              # user to attach to the SQL database
 
 # Sometimes the database server is running on a non-standard
 # port. If that's the case for your database server, set this
@@ -755,7 +751,7 @@ 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@kerio.com - bug 17453
+# 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 
@@ -996,7 +992,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.*|runtests.sh)$>
+<FilesMatch ^(.*\.pl|.*localconfig.*)$>
   deny from all
 </FilesMatch>
 <FilesMatch ^(localconfig.js|localconfig.rdf)$>
@@ -1163,9 +1159,12 @@ if (@oldparams) {
 }
 
 # Set mail_delivery_method to SMTP and prompt for SMTP server
-# if running on Windows and set to sendmail (Mail::Mailer doesn't
-# support sendmail on Windows)
-if ($^O =~ /MSWin32/i && Param('mail_delivery_method') eq 'sendmail') {
+# if running on Windows and no third party sendmail wrapper
+# is available
+if ($^O =~ /MSWin32/i
+    && Param('mail_delivery_method') eq 'sendmail'
+    && !-e SENDMAIL_EXE)
+{
     print "\nBugzilla requires an SMTP server to function on Windows.\n" .
         "Please enter your SMTP server's hostname: ";
     my $smtp = $answer{'SMTP_SERVER'} 
@@ -1294,7 +1293,7 @@ unless ($switch{'no_templates'}) {
 
 # These are the files which need to be marked executable
 my @executable_files = ('whineatnews.pl', 'collectstats.pl',
-   'checksetup.pl', 'importxml.pl', 'runtests.sh', 'testserver.pl',
+   'checksetup.pl', 'importxml.pl', 'runtests.pl', 'testserver.pl',
    'whine.pl');
 
 # tell me if a file is executable.  All CGI files and those in @executable_files
@@ -1418,22 +1417,18 @@ if ($^O !~ /MSWin32/i) {
 # This is done here, because some modules require params to be set up, which
 # won't have happened earlier.
 
-# The only use for loading globals.pl is for Crypt(), which should at some
-# point probably be factored out into Bugzilla::Auth::*
-
-# XXX - bug 278792: Crypt has been moved to Bugzilla::Auth::bz_crypt.
-# This section is probably no longer needed, but we need to make sure
-# that things still work if we remove globals.pl. So that's for later.
-
-# It's safe to use Bugzilla::Auth here because parameters have now been
-# defined.
-require Bugzilla::Auth;
-import Bugzilla::Auth 'bz_crypt';
+# It's never safe to "use" a Bugzilla module in checksetup. If a module
+# prerequisite is missing, and you "use" a module that requires it,
+# then instead of our nice normal checksetup message the user would
+# get a cryptic perl error about the missing module.
 
 # This is done so we can add new settings as developers need them.
 require Bugzilla::User::Setting;
 import Bugzilla::User::Setting qw(add_setting);
 
+require Bugzilla::Util;
+import Bugzilla::Util qw(bz_crypt trim html_quote);
+
 # 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
@@ -1469,15 +1464,33 @@ $::ENV{'PATH'} = $origPath;
 if ($my_db_check) {
     # Do we have the database itself?
 
+    # Unfortunately, $my_db_driver doesn't map perfectly between DBD
+    # and Bugzilla::DB. We need to fix the case a bit.
+    (my $dbd_name = trim($my_db_driver)) =~ s/(\w+)/\u\L$1/g;
+    # And MySQL is special, because it's all lowercase in DBD.
+    $dbd_name = 'mysql' if $dbd_name eq 'Mysql';
+
+    my $dbd = "DBD::$dbd_name";
+    unless (eval("require $dbd")) {
+        print "Bugzilla requires that perl's $dbd be installed.\n"
+              . "To install this module, you can do:\n "
+              . "   " . install_command($dbd) . "\n";
+        exit;
+    }
+
     my $dbh = Bugzilla::DB::connect_main("no database connection");
     my $sql_want = $dbh->REQUIRED_VERSION;
     my $sql_server = $dbh->PROGRAM_NAME;
+    my $dbd_ver = $dbh->DBD_VERSION;
+    unless (have_vers($dbd, $dbd_ver)) {
+        die "Bugzilla requires at least version $dbd_ver of $dbd.";
+    }
 
     printf("Checking for %15s %-9s ", $sql_server, "(v$sql_want)") unless $silent;
     my $sql_vers = $dbh->bz_server_version;
 
-    # Check what version of MySQL is installed and let the user know
-    # if the version is too old to be used with Bugzilla.
+    # Check what version of the database server is installed and let
+    # the user know if the version is too old to be used with Bugzilla.
     if ( vers_cmp($sql_vers,$sql_want) > -1 ) {
         print "ok: found v$sql_vers\n" unless $silent;
     } else {
@@ -1714,7 +1727,7 @@ AddFDef("content", "Content", 0);
 # Detect changed local settings
 ###########################################################################
 
-# mkanat@kerio.com - bug 17453
+# 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.
 sub PopulateEnumTable ($@) {
@@ -1745,7 +1758,7 @@ sub PopulateEnumTable ($@) {
     }
 }
 
-# mkanat@kerio.com - bug 17453
+# 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 
@@ -2217,7 +2230,7 @@ if ($comp_init_owner && $comp_init_owner->{TYPE} eq 'TINYTEXT') {
         my $initialownerid = $s2->fetchrow_array();
 
         unless (defined $initialownerid) {
-            print "Warning: You have an invalid initial owner '$initialowner'\n" .
+            print "Warning: You have an invalid default assignee '$initialowner'\n" .
               "in component '$value' of program '$program'. !\n";
             $initialownerid = 0;
         }
@@ -2257,7 +2270,7 @@ if ($comp_init_qa && $comp_init_qa->{TYPE} eq 'TINYTEXT') {
 
         unless (defined $initialqacontactid) {
             if ($initialqacontact ne '') {
-                print "Warning: You have an invalid initial QA contact $initialqacontact' in program '$program', component '$value'!\n";
+                print "Warning: You have an invalid default QA contact $initialqacontact' in program '$program', component '$value'!\n";
             }
             $initialqacontactid = 0;
         }
@@ -3300,7 +3313,7 @@ if ($mapcnt == 0) {
     # First, get all the existing products and their groups.
     $sth = $dbh->prepare("SELECT groups.id, products.id, groups.name, " .
                          "products.name FROM groups, products " .
-                         "WHERE isbuggroup != 0 AND isactive != 0");
+                         "WHERE isbuggroup != 0");
     $sth->execute();
     while (my ($groupid, $productid, $groupname, $productname) 
             = $sth->fetchrow_array()) {
@@ -3514,7 +3527,7 @@ if (!$series_exists) {
     }
 }
 
-AddFDef("owner_idle_time", "Time Since Owner Touched", 0);
+AddFDef("owner_idle_time", "Time Since Assignee Touched", 0);
 
 # 2004-04-12 - Keep regexp-based group permissions up-to-date - Bug 240325
 if ($dbh->bz_column_info("user_group_map", "isderived")) {
@@ -3586,7 +3599,7 @@ $dbh->bz_rename_column('whine_schedules', 'mailto_userid', 'mailto');
 $dbh->bz_add_column('whine_schedules', 'mailto_type', 
     {TYPE => 'INT2', NOTNULL => 1, DEFAULT => '0'});
 
-# 2005-01-29 - mkanat@kerio.com
+# 2005-01-29 - mkanat@bugzilla.org
 if (!$dbh->bz_column_info('longdescs', 'already_wrapped')) {
     # Old, pre-wrapped comments should not be auto-wrapped
     $dbh->bz_add_column('longdescs', 'already_wrapped',
@@ -3650,7 +3663,10 @@ if (!$dbh->bz_index_info('bugs', 'bugs_short_desc_idx')) {
     $dbh->bz_add_index('bugs', 'bugs_short_desc_idx', 
                        {TYPE => 'FULLTEXT', FIELDS => [qw(short_desc)]});
 }
-if (!$dbh->bz_index_info('longdescs', 'longdescs_thetext_idx')) {
+# Right now, we only create the "thetext" index on MySQL.
+if ($dbh->isa('Bugzilla::DB::Mysql') 
+    && !$dbh->bz_index_info('longdescs', 'longdescs_thetext_idx')) 
+{
     print "Adding full-text index for thetext column in longdescs table...\n";
     $dbh->bz_add_index('longdescs', 'longdescs_thetext_idx',
         {TYPE => 'FULLTEXT', FIELDS => [qw(thetext)]});
@@ -3670,8 +3686,8 @@ if (!$dbh->bz_index_info('longdescs', 'longdescs_thetext_idx')) {
         print "Removing paths from filenames in attachments table...\n";
         
         $sth = $dbh->prepare("SELECT attach_id, filename FROM attachments " . 
-                             "WHERE " . $dbh->sql_position(q{'/'}, 'filename') .
-                             " OR " . $dbh->sql_position(q{'\\\\'}, 'filename'));
+                "WHERE " . $dbh->sql_position(q{'/'}, 'filename') . " > 0 OR " .
+                           $dbh->sql_position(q{'\\\\'}, 'filename') . " > 0");
         $sth->execute;
         
         while (my ($attach_id, $filename) = $sth->fetchrow_array) {
@@ -3753,8 +3769,6 @@ if ($emptygroupid) {
 }
 
 # 2005-02-12 bugreport@peshkin.net, bug 281787
-$dbh->bz_add_index('attachments', 'attachments_submitter_id_idx',
-                   [qw(submitter_id)]);
 $dbh->bz_add_index('bugs_activity', 'bugs_activity_who_idx', [qw(who)]);
 
 # This lastdiffed change and these default changes are unrelated,
@@ -3943,6 +3957,47 @@ $dbh->bz_alter_column('versions', 'value',
 $dbh->bz_add_index('versions', 'versions_product_id_idx',
                    {TYPE => 'UNIQUE', FIELDS => [qw(product_id value)]});
 
+# Milestone sortkeys get a default just like all other sortkeys.
+if (!exists $dbh->bz_column_info('milestones', 'sortkey')->{DEFAULT}) {
+    $dbh->bz_alter_column('milestones', 'sortkey', 
+                          {TYPE => 'INT2', NOTNULL => 1, DEFAULT => 0});
+}
+
+# 2005-06-14 - LpSolit@gmail.com - Bug 292544: only set creation_ts
+# when all bug fields have been correctly set.
+$dbh->bz_alter_column('bugs', 'creation_ts', {TYPE => 'DATETIME'});
+
+if (!exists $dbh->bz_column_info('whine_queries', 'title')->{DEFAULT}) {
+
+    # The below change actually has nothing to do with the whine_queries
+    # change, it just has to be contained within a schema change so that
+    # it doesn't run every time we run checksetup.
+
+    # Old Bugzillas have "other" as an OS choice, new ones have "Other"
+    # (capital O).
+    # XXX - This should be moved inside of a later schema change, once
+    #       we have one to move it to the inside of.
+    print "Setting any 'other' op_sys to 'Other'...\n";
+    $dbh->do('UPDATE op_sys SET value = ? WHERE value = ?',
+             undef, "Other", "other");
+    $dbh->do('UPDATE bugs SET op_sys = ? WHERE op_sys = ?',
+             undef, "Other", "other");
+    if (Param('defaultopsys') eq 'other') {
+        # We can't actually fix the param here, because WriteParams() will
+        # make $datadir/params unwriteable to the webservergroup.
+        # It's too much of an ugly hack to copy the permission-fixing code
+        # down to here. (It would create more potential future bugs than
+        # it would solve problems.)
+        print "WARNING: Your 'defaultopsys' param is set to 'other', but"
+            . " Bugzilla now\n"
+            . "         uses 'Other' (capital O).\n";
+    }
+
+    # Add a DEFAULT to whine_queries stuff so that editwhines.cgi
+    # works on PostgreSQL.
+    $dbh->bz_alter_column('whine_queries', 'title', {TYPE => 'varchar(128)', 
+                          NOTNULL => 1, DEFAULT => "''"});
+}
 
 
 # If you had to change the --TABLE-- definition in any way, then add your
@@ -3951,12 +4006,12 @@ $dbh->bz_add_index('versions', 'versions_product_id_idx',
 # That is: if you add a new field, you first search for the first occurrence
 # of --TABLE-- and add your field to into the table hash. This new setting
 # would be honored for every new installation. Then add your
-# bz_add_field/bz_drop_field/bz_change_field_type/bz_rename_field code above. 
+# bz_add_field/bz_drop_field/bz_change_field_type/bz_rename_field code above.
 # This would then be honored by everyone who updates his Bugzilla installation.
 #
 
 #
-# BugZilla uses --GROUPS-- to assign various rights to its users. 
+# BugZilla uses --GROUPS-- to assign various rights to its users.
 #
 
 AddGroup('tweakparams', 'Can tweak operating parameters');
@@ -3967,6 +4022,16 @@ AddGroup('editcomponents', 'Can create, destroy, and edit components.');
 AddGroup('editkeywords', 'Can create, destroy, and edit keywords.');
 AddGroup('admin', 'Administrators');
 
+# 2005-06-29 bugreport@peshkin.net, bug 299156
+if ($dbh->bz_index_info('attachments', 'attachments_submitter_id_idx') 
+   && (scalar(@{$dbh->bz_index_info('attachments', 
+                                    'attachments_submitter_id_idx'
+                                   )->{FIELDS}}) < 2)
+      ) {
+    $dbh->bz_drop_index('attachments', 'attachments_submitter_id_idx');
+}
+$dbh->bz_add_index('attachments', 'attachments_submitter_id_idx',
+                   [qw(submitter_id bug_id)]);
 
 if (!GroupDoesExist("editbugs")) {
     my $id = AddGroup('editbugs', 'Can edit all bug fields.', ".*");
@@ -4021,6 +4086,9 @@ add_setting ("comment_sort_order", {"oldest_to_newest" => 1,
                                     "newest_to_oldest_desc_first" => 3}, 
              "oldest_to_newest" );
 
+# 2005-06-29 wurblzap@gmail.com -- Bug 257767
+add_setting ('csv_colsepchar', {',' => 1, ';' => 2 }, ',' );
+
 ###########################################################################
 # Create Administrator  --ADMIN--
 ###########################################################################
@@ -4133,7 +4201,7 @@ if ($sth->rows == 0) {
             }
         }
         $sth = $dbh->prepare("SELECT login_name FROM profiles " .
-                              "WHERE login_name = ?");
+                              "WHERE " . $dbh->sql_istrcmp('login_name', '?'));
         $sth->execute($login);
         if ($sth->rows > 0) {
             print "$login already has an account.\n";
@@ -4236,9 +4304,10 @@ if ($sth->rows == 0) {
     }
 
     # Put the admin in each group if not already    
-    my $userid = $dbh->selectrow_array(
-        "SELECT userid FROM profiles WHERE login_name = ?", undef, $login); 
-   
+    my $userid = $dbh->selectrow_array("SELECT userid FROM profiles WHERE " .
+                                       $dbh->sql_istrcmp('login_name', '?'),
+                                       undef, $login);
+
     # Admins get explicit membership and bless capability for the admin group
     my ($admingroupid) = $dbh->selectrow_array("SELECT id FROM groups 
                                                 WHERE name = 'admin'");
diff --git a/colchange.cgi b/colchange.cgi
index 11caca423f82aff302eb689864deed43078d8167..30103406fd33553af04b8ecfbf3759379bdddbc3 100755
--- a/colchange.cgi
+++ b/colchange.cgi
@@ -97,18 +97,28 @@ if (defined $cgi->param('rememberedquery')) {
             }
         }
         if (defined $cgi->param('splitheader')) {
-            $splitheader = $cgi->param('splitheader');
+            $splitheader = $cgi->param('splitheader')? 1: 0;
         }
     }
     my $list = join(" ", @collist);
     my $urlbase = Param("urlbase");
 
-    $cgi->send_cookie(-name => 'COLUMNLIST',
-                      -value => $list,
-                      -expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
-    $cgi->send_cookie(-name => 'SPLITHEADER',
-                      -value => $cgi->param('splitheader'),
-                      -expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
+    if ($list) {
+        $cgi->send_cookie(-name => 'COLUMNLIST',
+                          -value => $list,
+                          -expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
+    }
+    else {
+        $cgi->remove_cookie('COLUMNLIST');
+    }
+    if ($splitheader) {
+        $cgi->send_cookie(-name => 'SPLITHEADER',
+                          -value => $splitheader,
+                          -expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
+    }
+    else {
+        $cgi->remove_cookie('SPLITHEADER');
+    }
 
     $vars->{'message'} = "change_columns";
     $vars->{'redirect_url'} = "buglist.cgi?".$cgi->param('rememberedquery');
diff --git a/collectstats.pl b/collectstats.pl
index eca072e615e7300fba0337147a7fd3371a300f7b..a12c85586cf05ef7d8bf3796ca24687b51c90261 100755
--- a/collectstats.pl
+++ b/collectstats.pl
@@ -181,11 +181,11 @@ FIN
 }
 
 sub calculate_dupes {
-    SendSQL("SELECT * FROM duplicates");
+    my $dbh = Bugzilla->dbh;
+    my $rows = $dbh->selectall_arrayref("SELECT dupe_of, dupe FROM duplicates");
 
     my %dupes;
     my %count;
-    my @row;
     my $key;
     my $changed = 1;
 
@@ -203,9 +203,8 @@ sub calculate_dupes {
 
     # Create a hash with key "a bug number", value "bug which that bug is a
     # direct dupe of" - straight from the duplicates table.
-    while (@row = FetchSQLData()) {
-        my $dupe_of = shift @row;
-        my $dupe = shift @row;
+    foreach my $row (@$rows) {
+        my ($dupe_of, $dupe) = @$row;
         $dupes{$dupe} = $dupe_of;
     }
 
diff --git a/config.cgi b/config.cgi
index 1306c0b668689f59d80f35bca267658ea28aa158..f1bc5f0f1cfd157690e21027704189910fa6b9b9 100755
--- a/config.cgi
+++ b/config.cgi
@@ -26,15 +26,13 @@
 ################################################################################
 
 # Make it harder for us to do dangerous things in Perl.
-use diagnostics;
 use strict;
 
 # Include the Bugzilla CGI and general utility library.
 use lib qw(.);
 require "CGI.pl";
-
-# Retrieve this installation's configuration.
-GetVersionTable();
+use Bugzilla;
+use Bugzilla::Constants;
 
 # Suppress "used only once" warnings.
 use vars 
@@ -55,6 +53,17 @@ use vars
 # to generate the output.
 use vars qw($template $vars);
 
+Bugzilla->login(LOGIN_OPTIONAL);
+
+# If the 'requirelogin' parameter is on and the user is not
+# authenticated, return empty fields.
+if (Param('requirelogin') && !Bugzilla->user->id) {
+    display_data();
+}
+
+# Retrieve this installation's configuration.
+GetVersionTable();
+
 # Pass a bunch of Bugzilla configuration to the templates.
 $vars->{'priority'}  = \@::legal_priority;
 $vars->{'severity'}  = \@::legal_severity;
@@ -84,15 +93,23 @@ $vars->{'closed_status'} = \@closed_status;
 # Generate a list of fields that can be queried.
 $vars->{'field'} = [Bugzilla->dbh->bz_get_field_defs()];
 
-# Determine how the user would like to receive the output; 
-# default is JavaScript.
-my $cgi = Bugzilla->cgi;
-my $format = GetFormat("config", scalar($cgi->param('format')),
-                       scalar($cgi->param('ctype')) || "js");
+display_data($vars);
+
 
-# Return HTTP headers.
-print "Content-Type: $format->{'ctype'}\n\n";
+sub display_data {
+    my $vars = shift;
 
-# Generate the configuration file and return it to the user.
-$template->process($format->{'template'}, $vars)
-  || ThrowTemplateError($template->error());
+    my $cgi = Bugzilla->cgi;
+    # Determine how the user would like to receive the output; 
+    # default is JavaScript.
+    my $format = GetFormat("config", scalar($cgi->param('format')),
+                           scalar($cgi->param('ctype')) || "js");
+
+    # Return HTTP headers.
+    print "Content-Type: $format->{'ctype'}\n\n";
+
+    # Generate the configuration file and return it to the user.
+    $template->process($format->{'template'}, $vars)
+      || ThrowTemplateError($template->error());
+    exit;
+}
diff --git a/contrib/BugzillaEmail.pm b/contrib/BugzillaEmail.pm
index 48602cdb71bd6fe1846632c0a4d64d7ba0efa69c..473169c9e59403ac249145b0cf3a9c7b7094c9af 100644
--- a/contrib/BugzillaEmail.pm
+++ b/contrib/BugzillaEmail.pm
@@ -31,6 +31,8 @@ require "globals.pl";
 
 use strict;
 
+my $dbh = Bugzilla->dbh;
+
 my $EMAIL_TRANSFORM_NONE = "email_transform_none";
 my $EMAIL_TRANSFORM_BASE_DOMAIN = "email_transform_base_domain";
 my $EMAIL_TRANSFORM_NAME_ONLY = "email_transform_name_only";
@@ -45,13 +47,15 @@ sub findUser($) {
   my ($address) = @_;
   # if $email_transform is $EMAIL_TRANSFORM_NONE, return the address, otherwise, return undef
   if ($email_transform eq $EMAIL_TRANSFORM_NONE) {
-    my $stmt = "SELECT login_name FROM profiles WHERE profiles.login_name = \'$address\';";
+    my $stmt = "SELECT login_name FROM profiles WHERE " .
+               $dbh->sql_istrcmp('login_name', $dbh->quote($address));
     SendSQL($stmt);
     my $found_address = FetchOneColumn();
     return $found_address;
   } elsif ($email_transform eq $EMAIL_TRANSFORM_BASE_DOMAIN) {
     my ($username) = ($address =~ /(.+)@/);
-    my $stmt = "SELECT login_name FROM profiles WHERE profiles.login_name RLIKE \'$username\';";
+    my $stmt = "SELECT login_name FROM profiles WHERE " . $dbh->sql_istrcmp(
+               'login_name', $dbh->quote($username), $dbh->sql_regexp());
     SendSQL($stmt);
 
     my $domain;
@@ -68,7 +72,8 @@ sub findUser($) {
     return $new_address;
   } elsif ($email_transform eq $EMAIL_TRANSFORM_NAME_ONLY) {
     my ($username) = ($address =~ /(.+)@/);
-    my $stmt = "SELECT login_name FROM profiles WHERE profiles.login_name RLIKE \'$username\';";
+    my $stmt = "SELECT login_name FROM profiles WHERE " .$dbh->sql_istrcmp(
+                'login_name', $dbh->quote($username), $dbh->sql_regexp());
     SendSQL($stmt);
     my $found_address = FetchOneColumn();
     return $found_address;
diff --git a/contrib/CVS/Entries b/contrib/CVS/Entries
index 4dcc7e9247bdb0e72b91eaad9ce7734d4ad37630..7f75d18d87dd5715680f53db834041b4453ac293 100644
--- a/contrib/CVS/Entries
+++ b/contrib/CVS/Entries
@@ -1,19 +1,19 @@
-/BugzillaEmail.pm/1.2/Mon Aug 26 06:17:21 2002//TBUGZILLA-2_19_3
-/README/1.10/Mon Jul  5 21:54:00 2004//TBUGZILLA-2_19_3
-/README.Mailif/1.3/Wed Mar 15 23:39:03 2000//TBUGZILLA-2_19_3
-/bug_email.pl/1.25/Thu Feb 24 23:42:48 2005//TBUGZILLA-2_19_3
-/bugmail_help.html/1.1/Tue Mar  7 17:36:48 2000//TBUGZILLA-2_19_3
-/bugzilla.procmailrc/1.1/Wed Mar 15 23:39:09 2000//TBUGZILLA-2_19_3
-/bugzilla_email_append.pl/1.8/Thu Apr 15 04:24:39 2004//TBUGZILLA-2_19_3
-/bugzilla_ldapsync.rb/1.2/Sat Apr 26 16:35:04 2003//TBUGZILLA-2_19_3
-/cvs-update.pl/1.1/Tue Nov 11 05:58:52 2003//TBUGZILLA-2_19_3
-/gnats2bz.pl/1.6/Thu Jan 31 14:29:21 2002//TBUGZILLA-2_19_3
-/jb2bz.py/1.4/Tue Feb  8 16:51:03 2005//TBUGZILLA-2_19_3
-/mysqld-watcher.pl/1.5/Thu Mar 27 00:06:53 2003//TBUGZILLA-2_19_3
-/sendbugmail.pl/1.3/Thu Feb 24 23:42:48 2005//TBUGZILLA-2_19_3
-/sendunsentbugmail.pl/1.5/Tue Mar 29 21:43:00 2005//TBUGZILLA-2_19_3
-/syncLDAP.pl/1.2/Sat Mar 27 03:51:44 2004//TBUGZILLA-2_19_3
-/yp_nomail.sh/1.1/Tue Sep 12 23:50:31 2000//TBUGZILLA-2_19_3
+/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
 D/bugzilla-submit////
 D/cmdline////
 D/gnatsparse////
diff --git a/contrib/CVS/Tag b/contrib/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/contrib/CVS/Tag
+++ b/contrib/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/contrib/bug_email.pl b/contrib/bug_email.pl
index ed7e8143acfdea62b4ccde544639ba64edea568e..1590387e65da8a7b7b9e2c7bf7734483b1970442 100755
--- a/contrib/bug_email.pl
+++ b/contrib/bug_email.pl
@@ -38,7 +38,7 @@
 #
 # You need to work with bug_email.pl the MIME::Parser installed.
 # 
-# $Id: bug_email.pl,v 1.25 2005/02/24 23:42:48 mkanat%kerio.com Exp $
+# $Id: bug_email.pl,v 1.28 2005/07/08 02:31:43 mkanat%kerio.com Exp $
 ###############################################################
 
 # 02/12/2000 (SML)
@@ -112,6 +112,8 @@ my $restricted = 0;
 my $SenderShort;
 my $Message_ID;
 
+my $dbh = Bugzilla->dbh;
+
 # change to use default product / component functionality
 my $DEFAULT_PRODUCT = "PENDING";
 my $DEFAULT_COMPONENT = "PENDING";
@@ -135,41 +137,41 @@ sub storeAttachments( $$ )
     $submitter_id ||= 0;
 
     foreach my $pairref ( @$listref ) {
-	my ($decoded_file, $mime, $on_disk, $description) = @$pairref;
-
-
-	# Size check - mysql has a maximum space for the data ?
-	$maxsize = 1047552;  # should be queried by a system( "mysqld --help" );,
-	# but this seems not to be supported by all current mysql-versions
-
-	# Read data file binary
-	if( $on_disk ) {
-	    if( open( FILE, "$decoded_file" )) {
-		binmode FILE;
-		read FILE, $data, $maxsize;
-		close FILE;
-		$att_count ++;
-	    } else { 
-		print "Error while reading attachment $decoded_file!\n";
-		next;
-	    }
-	    # print "unlinking $datadir/mimedump-tmp/$decoded_file";
-	    # unlink "$datadir/mimedump-tmp/$decoded_file";
-	} else {
-	    # data is in the scalar 
-	    $data = $decoded_file;
-	}
-
-
-	# Make SQL-String
-	my $sql = "insert into attachments (bug_id, creation_ts, description, mimetype, ispatch, filename, thedata, submitter_id) values (";
-	$sql .= "$bugid, now(), " . SqlQuote( $description ) . ", ";
-	$sql .= SqlQuote( $mime ) . ", ";
-	$sql .= "0, ";
-	$sql .= SqlQuote( $decoded_file ) . ", ";
-	$sql .= SqlQuote( $data ) . ", ";
-	$sql .= "$submitter_id );";
-	SendSQL( $sql ) unless( $test );
+        my ($decoded_file, $mime, $on_disk, $description) = @$pairref;
+
+
+        # Size check - mysql has a maximum space for the data ?
+        $maxsize = 1047552;  # should be queried by a system( "mysqld --help" );,
+        # but this seems not to be supported by all current mysql-versions
+
+        # Read data file binary
+        if( $on_disk ) {
+            if( open( FILE, "$decoded_file" )) {
+                binmode FILE;
+                read FILE, $data, $maxsize;
+                close FILE;
+                $att_count ++;
+            } else { 
+                print "Error while reading attachment $decoded_file!\n";
+                next;
+            }
+            # print "unlinking $datadir/mimedump-tmp/$decoded_file";
+            # unlink "$datadir/mimedump-tmp/$decoded_file";
+        } else {
+            # data is in the scalar 
+            $data = $decoded_file;
+        }
+
+
+        # Make SQL-String
+        my $sql = "insert into attachments (bug_id, creation_ts, description, mimetype, ispatch, filename, thedata, submitter_id) values (";
+        $sql .= "$bugid, now(), " . SqlQuote( $description ) . ", ";
+        $sql .= SqlQuote( $mime ) . ", ";
+        $sql .= "0, ";
+        $sql .= SqlQuote( $decoded_file ) . ", ";
+        $sql .= SqlQuote( $data ) . ", ";
+        $sql .= "$submitter_id );";
+        SendSQL( $sql ) unless( $test );
     }
     
     return( $att_count );
@@ -196,9 +198,9 @@ sub CheckPermissions {
 #    SendSQL("select login_name from profiles,groups where groups.name='$GroupName' and profiles.groupset & groups.bit = groups.bit and profiles.login_name=\'$Name\'");
 #    my $NewName = FetchOneColumn();
 #    if ( $NewName eq $Name ) {
-#	return $Name;
+#       return $Name;
 #    } else {
-#	return;
+#       return;
 #    }
 #    my $query = "SELECT login_name FROM profiles WHERE profiles.login_name=\'$Name\'";
 #    SendSQL($query);
@@ -219,9 +221,9 @@ sub CheckProduct {
     SendSQL("select name from products where name = " . SqlQuote($Product));
     my $Result = FetchOneColumn();
     if (lc($Result) eq lc($Product)) {
-	return $Result;
+        return $Result;
     } else {
-	return "";
+        return "";
     }
 }
 
@@ -234,9 +236,9 @@ sub CheckComponent {
     SendSQL("select components.name from components, products where components.product_id = products.id AND products.name=" . SqlQuote($Product) . " and components.name=" . SqlQuote($Component));
     my $Result = FetchOneColumn();
     if (lc($Result) eq lc($Component)) {
-	return $Result;
+        return $Result;
     } else {
-	return "";
+        return "";
     }
 }
 
@@ -249,9 +251,9 @@ sub CheckVersion {
     SendSQL("select value from versions, products where versions.product_id = products.id AND products.name=" . SqlQuote($Product) . " and value=" . SqlQuote($Version));
     my $Result = FetchOneColumn();
     if (lc($Result) eq lc($Version)) {
-	return $Result;
+        return $Result;
     } else {
-	return "";
+        return "";
     }
 }
 
@@ -264,10 +266,10 @@ sub Reply( $$$$ ) {
     die "Cannot find sender-email-address" unless defined( $Sender );
     
     if( $test ) {
-	open( MAIL, '>>', "$datadir/bug_email_test.log" );
+        open( MAIL, '>>', "$datadir/bug_email_test.log" );
     }
     else {
-	open( MAIL, "| /usr/sbin/sendmail -t" );
+        open( MAIL, "| /usr/sbin/sendmail -t" );
     }
 
     print MAIL "To: $Sender\n";
@@ -311,18 +313,18 @@ sub CheckPriority
     my @all_prios = getEnumList( "priority" );
 
     if( $prio eq "" || (lsearch( \@all_prios, $prio ) == -1)  ) {
-	# OK, Prio was not defined - create Answer
-	my $Text = "You sent wrong priority-setting, valid values are:" .
-	    join( "\n\t", @all_prios ) . "\n\n";
-	$Text .= "*  The priority is set to the default value ". 
-	    SqlQuote( Param('defaultpriority')) . "\n";
+        # OK, Prio was not defined - create Answer
+        my $Text = "You sent wrong priority-setting, valid values are:" .
+            join( "\n\t", @all_prios ) . "\n\n";
+        $Text .= "*  The priority is set to the default value ". 
+            SqlQuote( Param('defaultpriority')) . "\n";
 
-	BugMailError( 0, $Text );
+        BugMailError( 0, $Text );
 
-	# set default value from param-file
-	$Control{'priority'} = Param( 'defaultpriority' );
+        # set default value from param-file
+        $Control{'priority'} = Param( 'defaultpriority' );
     } else {
-	# Nothing to do
+        # Nothing to do
     }
 }
 
@@ -335,16 +337,16 @@ sub CheckSeverity
     my @all_sever = getEnumList( "bug_severity" );
 
     if( (lsearch( \@all_sever, $sever ) == -1) || $sever eq "" ) {
-	# OK, Prio was not defined - create Answer
-	my $Text = "You sent wrong bug_severity-setting, valid values are:" .
-	    join( "\n\t", @all_sever ) . "\n\n";
-	$Text .= "*  The bug_severity is set to the default value ". 
-	    SqlQuote( "normal" ) . "\n";
+        # OK, Prio was not defined - create Answer
+        my $Text = "You sent wrong bug_severity-setting, valid values are:" .
+            join( "\n\t", @all_sever ) . "\n\n";
+        $Text .= "*  The bug_severity is set to the default value ". 
+            SqlQuote( "normal" ) . "\n";
 
-	BugMailError( 0, $Text );
+        BugMailError( 0, $Text );
 
-	# set default value from param-file
-	$Control{'bug_severity'} = "normal";
+        # set default value from param-file
+        $Control{'bug_severity'} = "normal";
     } 
 }
 
@@ -357,16 +359,16 @@ sub CheckArea
     my @all= getEnumList( "area" );
 
     if( (lsearch( \@all, $area ) == -1) || $area eq "" ) {
-	# OK, Area was not defined - create Answer
-	my $Text = "You sent wrong area-setting, valid values are:" .
-	    join( "\n\t", @all ) . "\n\n";
-	$Text .= "*  The area is set to the default value ". 
-	    SqlQuote( "BUILD" ) . "\n";
+        # OK, Area was not defined - create Answer
+        my $Text = "You sent wrong area-setting, valid values are:" .
+            join( "\n\t", @all ) . "\n\n";
+        $Text .= "*  The area is set to the default value ". 
+            SqlQuote( "BUILD" ) . "\n";
 
-	BugMailError( 0, $Text );
+        BugMailError( 0, $Text );
 
-	# set default value from param-file
-	$Control{'area'} = "BUILD";
+        # set default value from param-file
+        $Control{'area'} = "BUILD";
     } 
 }
 
@@ -379,16 +381,16 @@ sub CheckPlatform
     my @all = getEnumList( "rep_platform" );
 
     if( (lsearch( \@all, $platform ) == -1) ||  $platform eq "" ) {
-	# OK, Prio was not defined - create Answer
-	my $Text = "You sent wrong platform-setting, valid values are:" .
-	    join( "\n\t", @all ) . "\n\n";
-	$Text .= "*  The rep_platform is set to the default value ". 
-	    SqlQuote( "All" ) . "\n";
+        # OK, Prio was not defined - create Answer
+        my $Text = "You sent wrong platform-setting, valid values are:" .
+            join( "\n\t", @all ) . "\n\n";
+        $Text .= "*  The rep_platform is set to the default value ". 
+            SqlQuote( "All" ) . "\n";
 
-	BugMailError( 0, $Text );
+        BugMailError( 0, $Text );
 
-	# set default value from param-file
-	$Control{'rep_platform'} = "All";
+        # set default value from param-file
+        $Control{'rep_platform'} = "All";
     } 
 }
 
@@ -401,16 +403,16 @@ sub CheckSystem
     my @all = getEnumList( "op_sys" );
 
     if(  (lsearch( \@all, $sys ) == -1) || $sys eq "" ) {
-	# OK, Prio was not defined - create Answer
-	my $Text = "You sent wrong OS-setting, valid values are:" .
-	    join( "\n\t", @all ) . "\n\n";
-	$Text .= "*  The op_sys is set to the default value ". 
-	    SqlQuote( "Linux" ) . "\n";
+        # OK, Prio was not defined - create Answer
+        my $Text = "You sent wrong OS-setting, valid values are:" .
+            join( "\n\t", @all ) . "\n\n";
+        $Text .= "*  The op_sys is set to the default value ". 
+            SqlQuote( "Linux" ) . "\n";
 
-	BugMailError( 0, $Text );
+        BugMailError( 0, $Text );
 
-	# set default value from param-file
-	$Control{'op_sys'} = "Linux";
+        # set default value from param-file
+        $Control{'op_sys'} = "Linux";
     } 
 }
 
@@ -424,7 +426,7 @@ sub FetchAllSQLData( )
     my @res = ();
 
     while( MoreSQLData() ){
-	push( @res, FetchOneColumn() );
+        push( @res, FetchOneColumn() );
     }
     return( @res );
 }
@@ -463,21 +465,21 @@ sub BugMailError($ $ )
 
     # On permission error, dont sent all other Errors back -> just quit !
     if( $errflag == 2 ) {            # Permission-Error
-	Reply( $SenderShort, $Message_ID, "Bugzilla Error", "Permission denied.\n\n" .
-	       "You do not have the permissions to create a new bug. Sorry.\n" );
-	exit;
+        Reply( $SenderShort, $Message_ID, "Bugzilla Error", "Permission denied.\n\n" .
+               "You do not have the permissions to create a new bug. Sorry.\n" );
+        exit;
     }
 
 
     # Warnings - store for the reply mail
     if( $errflag == 0 ) {
-	push( @mailwarnings, $text );
+        push( @mailwarnings, $text );
     }
 
     # Critical Error
     if( $errflag == 1 ) {
-	$critical_err += 1;
-	push( @mailerrors, $text );
+        $critical_err += 1;
+        push( @mailerrors, $text );
     }
 }
 
@@ -546,33 +548,33 @@ _____ snip _____________________________________________________________________
 EOF
     ;
     foreach ( @RequiredLabels ) {
-	$w = "";
-	$w = $Control{$_} if defined( $Control{ $_ } );
-	$ret .= sprintf( "    \@%-15s:  %s\n", $_, $w );
+        $w = "";
+        $w = $Control{$_} if defined( $Control{ $_ } );
+        $ret .= sprintf( "    \@%-15s:  %s\n", $_, $w );
     }
 
     $ret .= "\n";
     # Allowed Labels
     foreach( @AllowedLabels ) {
-	next if( /reporter/    );  # Reporter is not a valid label
-	next if( /assigned_to/ );  # Assigned to is just a number 
-	if( defined( $Control{ $_ } ) && lsearch( \@RequiredLabels, $_ ) == -1 ) {
-	    $ret .=  sprintf( "    \@%-15s:  %s\n", $_,  $Control{ $_ } );
-	}
+        next if( /reporter/    );  # Reporter is not a valid label
+        next if( /assigned_to/ );  # Assigned to is just a number 
+        if( defined( $Control{ $_ } ) && lsearch( \@RequiredLabels, $_ ) == -1 ) {
+            $ret .=  sprintf( "    \@%-15s:  %s\n", $_,  $Control{ $_ } );
+        }
     }
 
     if( $Body eq "" ) {
     $ret .= <<END
-	
+        
    < the bug-description follows here >
 
 _____ snip _______________________________________________________________________
 
 END
     ; } else {
-	$ret .= "\n" . $Body;
+        $ret .= "\n" . $Body;
     }
-	
+        
     return( $ret );
 
 }
@@ -597,47 +599,47 @@ sub dump_entity {
     # Output the body:
     my @parts = $entity->parts;
     if (@parts) {                     # multipart...
-	my $i;
-	foreach $i (0 .. $#parts) {       # dump each part...
-	    dump_entity($parts[$i], ("$name, part ".(1+$i)));
-	}
-    } else {                            # single part...	
-
-	# Get MIME type, and display accordingly...
-	my $msg_part = $entity->head->get( 'Content-Disposition' );
-	
-	$msg_part ||= ""; 
-
-	my ($type, $subtype) = split('/', $entity->head->mime_type);
-	my $body = $entity->bodyhandle;
-	my ($data, $on_disk );
-
-	if(  $msg_part =~ /^attachment/ ) {
-	    # Attached File
-	    my $des = $entity->head->get('Content-Description');
-	    $des ||= $entity->head->recommended_filename;
-	    $des ||= "unnamed attachment";
-
-	    if( defined( $body->path )) { # Data is on disk
-		$on_disk = 1;
-		$data = $body->path;
-		
-	    } else {                      # Data is in core
-		$on_disk = 0;
-		$data = $body->as_string;
-	    }
-	    push ( @attachments, [ $data, $entity->head->mime_type, $on_disk, $des ] );
-	} else {
-	    # Real Message
-	    if ($type =~ /^(text|message)$/) {     # text: display it...
-		if ($IO = $body->open("r")) {
-		    $Body .=  $_ while (defined($_ = $IO->getline));
-		    $IO->close;
-		} else {       # d'oh!
-		    print "$0: couldn't find/open '$name': $!";
-		}
-	    } else { print "Oooops - no Body !\n"; }
-	}
+        my $i;
+        foreach $i (0 .. $#parts) {       # dump each part...
+            dump_entity($parts[$i], ("$name, part ".(1+$i)));
+        }
+    } else {                            # single part...        
+
+        # Get MIME type, and display accordingly...
+        my $msg_part = $entity->head->get( 'Content-Disposition' );
+        
+        $msg_part ||= ""; 
+
+        my ($type, $subtype) = split('/', $entity->head->mime_type);
+        my $body = $entity->bodyhandle;
+        my ($data, $on_disk );
+
+        if(  $msg_part =~ /^attachment/ ) {
+            # Attached File
+            my $des = $entity->head->get('Content-Description');
+            $des ||= $entity->head->recommended_filename;
+            $des ||= "unnamed attachment";
+
+            if( defined( $body->path )) { # Data is on disk
+                $on_disk = 1;
+                $data = $body->path;
+                
+            } else {                      # Data is in core
+                $on_disk = 0;
+                $data = $body->as_string;
+            }
+            push ( @attachments, [ $data, $entity->head->mime_type, $on_disk, $des ] );
+        } else {
+            # Real Message
+            if ($type =~ /^(text|message)$/) {     # text: display it...
+                if ($IO = $body->open("r")) {
+                    $Body .=  $_ while (defined($_ = $IO->getline));
+                    $IO->close;
+                } else {       # d'oh!
+                    print "$0: couldn't find/open '$name': $!";
+                }
+            } else { print "Oooops - no Body !\n"; }
+        }
     }
 }
 
@@ -658,19 +660,19 @@ sub extractControls( $ )
     # In restricted mode, all lines before the first keyword
     # are skipped.
     if( $restricted ) {
-	while( $lbody[0] =~ /^\s*\@.*/ ){ shift( @lbody );} 
+        while( $lbody[0] =~ /^\s*\@.*/ ){ shift( @lbody );} 
     }
     
     # Filtering for keys
     foreach( @lbody ) {
-	if( /^\s*\@description/ ) {
-	    s/\s*\@description//;
-	    $backbody .= $_;
-	} elsif( /^\s*\@(.*?)(?:\s*=\s*|\s*:\s*|\s+)(.*?)\s*$/ ) {
-	    $Control{lc($1)} = $2;
-	} else {
-	    $backbody .= "$_" . "\n";
-	}
+        if( /^\s*\@description/ ) {
+            s/\s*\@description//;
+            $backbody .= $_;
+        } elsif( /^\s*\@(.*?)(?:\s*=\s*|\s*:\s*|\s+)(.*?)\s*$/ ) {
+            $Control{lc($1)} = $2;
+        } else {
+            $backbody .= "$_" . "\n";
+        }
     }
 
     # thats it.
@@ -768,7 +770,7 @@ $Body = extractControls( $Body );  # fills the Control-Hash
 
 if( $test ) {
     foreach (keys %Control ) {
-	print "$_ => $Control{$_}\n";
+        print "$_ => $Control{$_}\n";
     }
 }
 
@@ -782,14 +784,14 @@ $Control{'short_desc'} ||= $Subject;
 # Check Control-Labels
 # not: reporter !
 @AllowedLabels = ("product", "version", "rep_platform",
-		  "bug_severity", "priority", "op_sys", "assigned_to",
-		  "bug_status", "bug_file_loc", "short_desc", "component",
-		  "status_whiteboard", "target_milestone", "groupset",
-		  "qa_contact");
+                  "bug_severity", "priority", "op_sys", "assigned_to",
+                  "bug_status", "bug_file_loc", "short_desc", "component",
+                  "status_whiteboard", "target_milestone", "groupset",
+                  "qa_contact");
 #my @AllowedLabels = qw{Summary priority platform assign};
 foreach (keys %Control) {
     if ( lsearch( \@AllowedLabels, $_) < 0 ) {
-	BugMailError( 0, "You sent a unknown label: " . $_ );
+        BugMailError( 0, "You sent a unknown label: " . $_ );
     }
 }
 
@@ -802,13 +804,13 @@ $Control{'reporter'} = $SenderShort;
 @RequiredLabels = qw{product version component short_desc};
 foreach my $Label (@RequiredLabels) {
     if ( ! defined $Control{$Label} ) {
-	BugMailError( 0, "You were missing a required label: \@$Label\n" );
-	next;
+        BugMailError( 0, "You were missing a required label: \@$Label\n" );
+        next;
     }
 
     if( $Control{$Label} =~ /^\s*$/  ) {
-	BugMailError( 0, "One of your required labels is empty: $Label" );
-	next;
+        BugMailError( 0, "One of your required labels is empty: $Label" );
+        next;
     }
 }
 
@@ -822,15 +824,20 @@ if ( $Body =~ /^\s*$/s ) {
 # Check Permissions ...
 if (! CheckPermissions("CreateBugs", $SenderShort ) ) {
     BugMailError( 2, "Permission denied.\n\n"  .
-		  "You do not have the permissions to create a new bug. Sorry.\n" );
+                  "You do not have the permissions to create a new bug. Sorry.\n" );
 }
 
 # Set QA
 if (Param("useqacontact")) {
-    SendSQL("select initialqacontact from components, products where components.product_id = products.id AND products.name=" .
-            SqlQuote($Control{'product'}) .
-            " and components.name=" . SqlQuote($Control{'component'}));
-    $Control{'qa_contact'} = FetchOneColumn();
+    if (defined($Control{'qa_contact'}) 
+        && $Control{'qa_contact'} !~ /^\s*$/ ) {
+        $Control{'qa_contact'} = DBname_to_id($Control{'qa_contact'});
+    } else {
+        SendSQL("select initialqacontact from components, products where components.product_id = products.id AND products.name=" .
+                SqlQuote($Control{'product'}) .
+                " and components.name=" . SqlQuote($Control{'component'}));
+        $Control{'qa_contact'} = FetchOneColumn();
+    }
 }
 
 # Set Assigned - assigned_to depends on the product, cause initialowner 
@@ -846,7 +853,7 @@ if ( $Product eq "" ) {
     my $Text = "You didnt send a value for the required key \@product !\n\n";
 
     $Text = "You sent the invalid product \"$Control{'product'}\"!\n\n"
-	if( defined( $Control{ 'product'} ));
+        if( defined( $Control{ 'product'} ));
 
     $Text .= "Valid products are:\n\t";
 
@@ -879,7 +886,7 @@ if ( $Component eq "" ) {
     my $Text = "You did not send a value for the required key \@component!\n\n"; 
 
     if( defined( $Control{ 'component' } )) {
-	$Text = "You sent the invalid component \"$Control{'component'}\" !\n";
+        $Text = "You sent the invalid component \"$Control{'component'}\" !\n";
     }
 
     #
@@ -888,28 +895,28 @@ if ( $Component eq "" ) {
     #            if a product was sent, only reply the components of the sent product
     my @val_components = ();
     foreach my $prod ( @all_products ) {
-	$Text .= "\nValid components for product `$prod' are: \n\t";
+        $Text .= "\nValid components for product `$prod' are: \n\t";
 
-	SendSQL("SELECT components.name FROM components, products WHERE components.product_id=products.id AND products.name = " . SqlQuote($prod));
-	@val_components = FetchAllSQLData();
+        SendSQL("SELECT components.name FROM components, products WHERE components.product_id=products.id AND products.name = " . SqlQuote($prod));
+        @val_components = FetchAllSQLData();
 
-	$Text .= join( "\n\t", @val_components ) . "\n";
+        $Text .= join( "\n\t", @val_components ) . "\n";
     }
     
     # Special: if there is a valid product, maybe it has only one component -> use it !
     # 
     my $amount_of_comps = @val_components;
     if( $product_valid  && $amount_of_comps == 1 ) {
-	$Component = $val_components[0];
-	
-	$Text .= " * You did not send a component, but a valid product " . SqlQuote( $Product ) . ".\n";
-	$Text .= " * This product only has one component ". SqlQuote(  $Component ) .".\n" .
-		" * This component was set by bugzilla for submitting the bug.\n\n";
-	BugMailError( 0, $Text ); # No blocker
+        $Component = $val_components[0];
+        
+        $Text .= " * You did not send a component, but a valid product " . SqlQuote( $Product ) . ".\n";
+        $Text .= " * This product only has one component ". SqlQuote(  $Component ) .".\n" .
+                " * This component was set by bugzilla for submitting the bug.\n\n";
+        BugMailError( 0, $Text ); # No blocker
 
     } else { # The component is really buggy :(
-	$Text  .= horLine();
-	BugMailError( 1, $Text );
+        $Text  .= horLine();
+        BugMailError( 1, $Text );
     }
 }
 $Control{'component'} = $Component;
@@ -932,10 +939,10 @@ if ( defined($Control{'assigned_to'})
 
 if ( $Control{'assigned_to'} == 0 ) {
     my $Text = "Could not resolve key \@assigned_to !\n" .
-	"If you do NOT send a value for assigned_to, the bug will be assigned to\n" .
-	    "the qa-contact for the product and component.\n";
+        "If you do NOT send a value for assigned_to, the bug will be assigned to\n" .
+            "the qa-contact for the product and component.\n";
     $Text .= "This works only if product and component are OK. \n" 
-	. horLine();
+        . horLine();
 
     BugMailError( 1, $Text );
 }
@@ -961,34 +968,34 @@ if ( $Version eq "" ) {
     my $Text = "You did not send a value for the required key \@version!\n\n";
 
     if( defined( $Control{'version'})) {
-	my $Text = "You sent the invalid version \"$Control{'version'}\"!\n";
+        my $Text = "You sent the invalid version \"$Control{'version'}\"!\n";
     }
 
     my $anz_versions;
     my @all_versions;
     # Assemble help text
     foreach my $prod ( @all_products ) {
-	$Text .= "Valid versions for product " . SqlQuote( $prod ) . " are: \n\t";
+        $Text .= "Valid versions for product " . SqlQuote( $prod ) . " are: \n\t";
 
-	SendSQL("select value from versions, products where versions.product_id=products.id AND products.name=" . SqlQuote( $prod ));
-	@all_versions = FetchAllSQLData();
-	$anz_versions = @all_versions;
-	$Text .= join( "\n\t", @all_versions ) . "\n" ; 
+        SendSQL("select value from versions, products where versions.product_id=products.id AND products.name=" . SqlQuote( $prod ));
+        @all_versions = FetchAllSQLData();
+        $anz_versions = @all_versions;
+        $Text .= join( "\n\t", @all_versions ) . "\n" ; 
 
     }
 
     # Check if we could use the only version
     if( $anz_versions == 1 && $product_valid ) {
-	$Version = $all_versions[0];
-	# Fine, there is only one version string
-	$Text .= " * You did not send a version, but a valid product " . SqlQuote( $Product ) . ".\n";
-	$Text .= " * This product has has only the one version ". SqlQuote(  $Version) .".\n" .
-	    " * This version was set by bugzilla for submitting the bug.\n\n";
-	$Text .= horLine();
-	BugMailError( 0, $Text ); # No blocker
+        $Version = $all_versions[0];
+        # Fine, there is only one version string
+        $Text .= " * You did not send a version, but a valid product " . SqlQuote( $Product ) . ".\n";
+        $Text .= " * This product has has only the one version ". SqlQuote(  $Version) .".\n" .
+            " * This version was set by bugzilla for submitting the bug.\n\n";
+        $Text .= horLine();
+        BugMailError( 0, $Text ); # No blocker
     } else {
-	$Text .= horLine();
-	BugMailError( 1, $Text );
+        $Text .= horLine();
+        BugMailError( 1, $Text );
     }
 
 }
@@ -1029,25 +1036,25 @@ if( $GroupSet eq "" ) {
     # Then search for every Literal in the DB - col name
     foreach ( split /\s+|\s*\+\s*|\s*,\s*/, $GroupSet ) {
       SendSQL("select id, Name from groups where name=" . SqlQuote($_));
-	my( $bval, $bname ) = FetchSQLData();
+        my( $bval, $bname ) = FetchSQLData();
 
-	if( defined( $bname ) && $_ eq $bname ) {
+        if( defined( $bname ) && $_ eq $bname ) {
         $GroupArr{$bname} = $bval;
-	} else {
-	    $Text .= "You sent the wrong GroupSet-String $_\n";
-	    $gserr = 1;
-	}
+        } else {
+            $Text .= "You sent the wrong GroupSet-String $_\n";
+            $gserr = 1;
+        }
     }
     
     #
     # Give help if wrong GroupSet-String came
     if( $gserr > 0 ) {
-	# There happend errors 
-	$Text .= "Here are all valid literal Groupsetting-strings:\n\t";
+        # There happend errors 
+        $Text .= "Here are all valid literal Groupsetting-strings:\n\t";
       SendSQL( "select g.name from groups g, user_group_map u where u.user_id=".$Control{'reporter'}.
             " and g.isbuggroup=1 and g.id = u.group_id group by g.name;" );
-	$Text .= join( "\n\t", FetchAllSQLData()) . "\n";
-	BugMailError( 0, $Text );
+        $Text .= join( "\n\t", FetchAllSQLData()) . "\n";
+        BugMailError( 0, $Text );
     }
 } # End of checking groupsets
 delete $Control{'groupset'};
@@ -1086,7 +1093,7 @@ END
     my $reporter = "";
 
     my $query = "insert into bugs (\n" . join(",\n", @used_fields ) . 
-	", bug_status, creation_ts, delta_ts, everconfirmed) values ( ";
+        ", bug_status, creation_ts, delta_ts, everconfirmed) values ( ";
     
     # 'Yuck'. Then again, this whole file should be rewritten anyway...
     $query =~ s/product/product_id/;
@@ -1096,16 +1103,16 @@ END
     my $val;
     foreach my $field (@used_fields) {
       if( $field eq "groupset" ) {
-	$query .= $Control{$field} . ",\n";
+        $query .= $Control{$field} . ",\n";
       } elsif ( $field eq 'product' ) {
           $query .= get_product_id($Control{$field}) . ",\n";
       } elsif ( $field eq 'component' ) {
           $query .= get_component_id(get_product_id($Control{'product'}),
                                      $Control{$field}) . ",\n";
       } else {
-	$query .= SqlQuote($Control{$field}) . ",\n";
+        $query .= SqlQuote($Control{$field}) . ",\n";
       }
-	
+        
       $val = $Control{ $field };
       
       $val = DBID_to_name( $val ) if( $field =~ /reporter|assigned_to|qa_contact/ );
@@ -1113,7 +1120,7 @@ END
       $tmp_reply .= sprintf( "     \@%-15s = %-15s\n", $field, $val );
 
       if ($field eq "reporter") {
-	$reporter = $val;
+        $reporter = $val;
       }
     }
     #
@@ -1144,25 +1151,26 @@ END
     $query .=  $state . ", \'$bug_when\', \'$bug_when\', $ever_confirmed)\n";
 #    $query .=  SqlQuote( "NEW" ) . ", now(), " . SqlQuote($comment) . " )\n";
 
-    SendSQL("SELECT userid FROM profiles WHERE login_name=\'$reporter\'");
+    SendSQL("SELECT userid FROM profiles WHERE " .
+            $dbh->sql_istrcmp('login_name', $dbh->quote($reporter)));
     my $userid = FetchOneColumn();
 
     my $id;
 
     if( ! $test ) {
-	SendSQL($query);
+        SendSQL($query);
 
-	$id = Bugzilla->dbh->bz_last_key('bugs', 'bug_id');
+        $id = Bugzilla->dbh->bz_last_key('bugs', 'bug_id');
 
-	my $long_desc_query = "INSERT INTO longdescs SET bug_id=$id, who=$userid, bug_when=\'$bug_when\', thetext=" . SqlQuote($comment);
-	SendSQL($long_desc_query);
+        my $long_desc_query = "INSERT INTO longdescs SET bug_id=$id, who=$userid, bug_when=\'$bug_when\', thetext=" . SqlQuote($comment);
+        SendSQL($long_desc_query);
 
-	# Cool, the mail was successful
+        # Cool, the mail was successful
         # system("./processmail", $id, $SenderShort);
     } else {
         $id = 0xFFFFFFFF;  # TEST !
-	print "\n-------------------------------------------------------------------------\n";
-	print "$query\n";
+        print "\n-------------------------------------------------------------------------\n";
+        print "$query\n";
     }
 
     #
diff --git a/contrib/bugmail_help.html b/contrib/bugmail_help.html
index 00b0f515373170286765c7e83d7fd8cf274ee567..a2f89f260402df7254ca303b4d6dc9668732cffc 100644
--- a/contrib/bugmail_help.html
+++ b/contrib/bugmail_help.html
@@ -112,8 +112,8 @@ hopefully valid value.
 	<TR>
 	        <TD>@assigned_to</TD>
 	        <TD>The one to whom the bug is assigned to</TD>
-	        <TD>no. <br>There is an initial owner for every product/version/component.
-		He owns the bug by default. The initial owner can only be found if 
+	        <TD>no. <br>There is a default assignee for every product/version/component.
+		He owns the bug by default. The default assignee can only be found if 
 		product, version and component are valid.</TD>
 	</TR>
 	<TR>
diff --git a/contrib/bugzilla-submit/CVS/Entries b/contrib/bugzilla-submit/CVS/Entries
index 9c0f251cf2f77e21dd4c2eaa400ad9ce7d07a309..32cde16010718a3268cafac2fe440330aedf85c4 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_19_3
-/bugdata.txt/1.2/Fri Jan 16 22:26:49 2004//TBUGZILLA-2_19_3
-/bugzilla-submit/1.6/Fri Jul 16 03:56:35 2004//TBUGZILLA-2_19_3
-/bugzilla-submit.xml/1.7/Mon Apr 11 14:23:32 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/contrib/bugzilla-submit/CVS/Tag b/contrib/bugzilla-submit/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/contrib/bugzilla-submit/CVS/Tag
+++ b/contrib/bugzilla-submit/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/contrib/bugzilla_email_append.pl b/contrib/bugzilla_email_append.pl
index fee9b62ac8b67da3602e753f03217c01135fecb6..e409f08628ed99e08c32550640e83363c009e7da 100755
--- a/contrib/bugzilla_email_append.pl
+++ b/contrib/bugzilla_email_append.pl
@@ -42,6 +42,8 @@ use BugzillaEmail;
 use Bugzilla::Config qw(:DEFAULT $datadir);
 use Bugzilla::BugMail;
 
+my $dbh = Bugzilla->dbh;
+
 # Create a new MIME parser:
 my $parser = new MIME::Parser;
 
@@ -101,7 +103,8 @@ if (!defined($found_id)) {
 }
 
 # get the user id
-SendSQL("SELECT userid FROM profiles WHERE login_name = \'$SenderShort\';");
+SendSQL("SELECT userid FROM profiles WHERE " . 
+        $dbh->sql_istrcmp('login_name', $dbh->quote($SenderShort)));
 my $userid = FetchOneColumn();
 if (!defined($userid)) {
   DealWithError("Userid not found for $SenderShort");
diff --git a/contrib/cmdline/CVS/Entries b/contrib/cmdline/CVS/Entries
index 49e2c912053be5c53fe05c47da9f48db846ef42a..2fccf1c440b35a592db9a5c09509eeb9e117abe4 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_19_3
-/bugids/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_19_3
-/buglist/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_19_3
-/bugs/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_19_3
-/bugslink/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_19_3
-/makequery/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_19_3
-/query.conf/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/contrib/cmdline/CVS/Tag b/contrib/cmdline/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/contrib/cmdline/CVS/Tag
+++ b/contrib/cmdline/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/contrib/gnatsparse/CVS/Entries b/contrib/gnatsparse/CVS/Entries
index c267cb17f5cc260586862753032e87c2d8aabb17..03cea623815c14293435b854ba8058f431602c3c 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_19_3
-/gnatsparse.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-2_19_3
-/magic.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-2_19_3
-/specialuu.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/contrib/gnatsparse/CVS/Tag b/contrib/gnatsparse/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/contrib/gnatsparse/CVS/Tag
+++ b/contrib/gnatsparse/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/contrib/syncLDAP.pl b/contrib/syncLDAP.pl
index b9d3e8a5fa2da1b7db0b671ae34bcb2b764fdd59..14ba1402cea023d6bf019867b52540e637bdb7b0 100755
--- a/contrib/syncLDAP.pl
+++ b/contrib/syncLDAP.pl
@@ -30,6 +30,7 @@ use lib qw(.);
 use Net::LDAP;
 
 my $cgi = Bugzilla->cgi;
+my $dbh = Bugzilla->dbh;
 
 my $readonly = 0;
 my $nodisable = 0;
@@ -237,7 +238,9 @@ if($readonly == 0) {
    print "Performing DB update:\nPhase 1: disabling not-existing users... " unless $quiet;
    if($nodisable == 0) {
       while( my ($key, $value) = each(%disable_users) ) {
-        SendSQL("UPDATE profiles SET disabledtext = 'auto-disabled by ldap sync' WHERE login_name='$key'" );
+        SendSQL("UPDATE profiles SET disabledtext = 'auto-disabled by ldap " .
+                "sync' WHERE " . $dbh->sql_istrcmp('login_name', 
+                $dbh->quote($key)));
       }
       print "done!\n" unless $quiet;
    }
@@ -249,9 +252,12 @@ if($readonly == 0) {
    if($noupdate == 0) {
       while( my ($key, $value) = each(%update_users) ) {
         if(defined @$value{'new_login_name'}) {
-          SendSQL("UPDATE profiles SET login_name = '" . @$value{'new_login_name'} . "' WHERE login_name='$key'" );
+          SendSQL("UPDATE profiles SET login_name = '" . 
+                  @$value{'new_login_name'} . "' WHERE " .
+                  $dbh->sql_istrcmp('login_name', $dbh->quote($key)));
         } else {
-          SendSQL("UPDATE profiles SET realname = '" . @$value{'realname'} . "' WHERE login_name='$key'" );
+          SendSQL("UPDATE profiles SET realname = '" . @$value{'realname'} .
+                   "' WHERE " . $dbh->sql_istrcmp('login_name', $dbh->quote($key)));
         }
       }
       print "done!\n" unless $quiet;
diff --git a/createaccount.cgi b/createaccount.cgi
index c89de38199e08342c8bbf7885f3aa67f390221e1..3465800a3d889351f1060e2d4bcd3f3485c3b20f 100755
--- a/createaccount.cgi
+++ b/createaccount.cgi
@@ -30,18 +30,21 @@ use lib qw(.);
 
 require "CGI.pl";
 
+use Bugzilla;
+use Bugzilla::Constants;
 use Bugzilla::User;
 
 # Shut up misguided -w warnings about "used only once":
-use vars qw(
-  $template
-  $vars
-);
+use vars qw($template $vars);
 
 # Just in case someone already has an account, let them get the correct footer
-# on an error message.  The user is logged out just before the account is
+# on an error message. The user is logged out just after the account is
 # actually created.
-Bugzilla->login();
+Bugzilla->login(LOGIN_OPTIONAL);
+
+my $dbh = Bugzilla->dbh;
+my $cgi = Bugzilla->cgi;
+print $cgi->header();
 
 # If we're using LDAP for login, then we can't create a new account here.
 unless (Bugzilla::Auth->can_edit('new')) {
@@ -53,9 +56,6 @@ unless ($createexp) {
     ThrowUserError("account_creation_disabled");
 }
 
-my $cgi = Bugzilla->cgi;
-print $cgi->header();
-
 my $login = $cgi->param('login');
 
 if (defined($login)) {
@@ -63,9 +63,12 @@ if (defined($login)) {
     my $realname = trim($cgi->param('realname'));
     CheckEmailSyntax($login);
     $vars->{'login'} = $login;
-    
+
+    $dbh->bz_lock_tables('profiles WRITE', 'email_setting WRITE', 'tokens READ');
+
     if (!is_available_username($login)) {
-        # Account already exists        
+        # Account already exists
+        $dbh->bz_unlock_tables();
         $template->process("account/exists.html.tmpl", $vars)
           || ThrowTemplateError($template->error());
         exit;
@@ -75,11 +78,14 @@ if (defined($login)) {
         ThrowUserError("account_creation_disabled");
     }
     
+    # Create account
+    my $password = insert_new_user($login, $realname);
+
+    $dbh->bz_unlock_tables();
+
     # Clear out the login cookies in case the user is currently logged in.
     Bugzilla->logout();
 
-    # Create account
-    my $password = insert_new_user($login, $realname);
     MailPassword($login, $password);
     
     $template->process("account/created.html.tmpl", $vars)
diff --git a/defparams.pl b/defparams.pl
index 60a2d7726e47453e6275bec87fd35144312859f5..b598cc20cc4a4e42bc0025a1fc4aa73f15e8019e 100644
--- a/defparams.pl
+++ b/defparams.pl
@@ -54,6 +54,7 @@ use Socket;
 
 use Bugzilla::Config qw(:DEFAULT $templatedir $webdotdir);
 use Bugzilla::Util;
+use Bugzilla::Constants;
 
 # Checking functions for the various values
 # Some generic checking functions are included in Bugzilla::Config
@@ -238,6 +239,18 @@ sub find_languages {
     return join(', ', @languages);
 }
 
+sub check_mail_delivery_method {
+    my $check = check_multi(@_);
+    return $check if $check;
+    my $mailer = shift;
+    if ($mailer eq 'sendmail' && $^O =~ /MSWin32/i) {
+        # look for sendmail.exe 
+        return "Failed to locate " . SENDMAIL_EXE
+            unless -e SENDMAIL_EXE;
+    }
+    return "";
+}
+
 # OK, here are the parameter definitions themselves.
 #
 # Each definition is a hash with keys:
@@ -607,7 +620,7 @@ sub find_languages {
             <dl>
               <dt>DB</dt>
               <dd>
-                Bugzilla\'s builtin authentication. This is the most common
+                Bugzilla\'s built-in authentication. This is the most common
                 choice.
               </dd>
               <dt>LDAP</dt>
@@ -674,7 +687,8 @@ sub find_languages {
    name => 'mail_delivery_method',
    desc => 'Defines how email is sent, or if it is sent at all.<br><ul>' .
            '<li>\'sendmail\', \'smtp\' and \'qmail\' are all MTAs. ' .
-           '(only SMTP is available in Windows.)</li>' .
+           'You need to install a third-party sendmail replacement if ' .
+           'you want to use sendmail on Windows.' .
            '<li>\'testfile\' is useful for debugging: all email is stored' .
            'in data/mailer.testfile instead of being sent. For more ' .
            'information, see the Mail::Mailer manual.</li>' .
@@ -683,10 +697,10 @@ sub find_languages {
            'stored.</li></ul>' ,
    type => 's',
    choices => $^O =~ /MSWin32/i 
-                  ? ['smtp', 'testfile', 'none']
+                  ? ['smtp', 'testfile', 'sendmail', 'none']
                   : ['sendmail', 'smtp', 'qmail', 'testfile', 'none'],
    default => 'sendmail',
-   checker => \&check_multi
+   checker => \&check_mail_delivery_method
   },
 
   {
@@ -736,7 +750,7 @@ To use the wonders of Bugzilla, you can use the following:
    name => 'newchangedmail',
    desc => 'The email that gets sent to people when a bug changes. Within ' .
            'this text, %to% gets replaced with the e-mail address of the ' .
-           'person recieving the mail.  %bugid% gets replaced by the bug ' .
+           'person receiving the mail.  %bugid% gets replaced by the bug ' .
            'number.  %diffs% gets replaced with what\'s changed. ' .
            '%neworchanged% is "New:" if this mail is reporting a new bug or ' .
            'empty if changes were made to an existing one. %summary% gets ' .
@@ -758,6 +772,8 @@ To: %to%
 Subject: [Bug %bugid%] %neworchanged%%summary%
 %threadingmarker%
 X-Bugzilla-Reason: %reasonsheader%
+X-Bugzilla-Product: %product%
+X-Bugzilla-Component: %component%
 
 %urlbase%show_bug.cgi?id=%bugid%
 
@@ -770,8 +786,9 @@ Configure bugmail: %urlbase%userprefs.cgi?tab=email
 
   {
    name => 'whinedays',
-   desc => 'The number of days that we\'ll let a bug sit untouched in a NEW ' .
-           'state before our cronjob will whine at the owner.',
+   desc => q{The number of days that we'll let a bug sit untouched in a NEW
+             state before our cronjob will whine at the owner.<br>
+             Set to 0 to disable whining.},
    type => 't',
    default => 7
   },
@@ -810,7 +827,7 @@ Generally, this means one of three things:
 (2) You decide the bug doesn\'t belong to you, and you reassign it to someone
     else.  (Hint: if you don\'t know who to reassign it to, make sure that
     the Component field seems reasonable, and then use the "Reassign bug to
-    owner of selected component" option.)
+    default assignee of selected component" option.)
 (3) You decide the bug belongs to you, but you can\'t solve it this moment.
     Just use the "Accept bug" command.
 
@@ -965,7 +982,7 @@ You will get this message once a day until you\'ve dealt with these bugs!
    package</a> will generate the graphs remotely.</li>
    <li>A blank value will disable dependency graphing.</li>
    </ul>
-   The default value is a publically-accessible webdot server. If you change
+   The default value is a publicly-accessible webdot server. If you change
    this value, make certain that the webdot server can read files from your
    webdot directory. On Apache you do this by editing the .htaccess file,
    for other systems the needed measures may vary. You can run checksetup.pl
@@ -988,7 +1005,7 @@ You will get this message once a day until you\'ve dealt with these bugs!
 
   {
    name => 'emailregexpdesc',
-   desc => 'This describes in english words what kinds of legal addresses ' .
+   desc => 'This describes in English words what kinds of legal addresses ' .
            'are allowed by the <tt>emailregexp</tt> param.',
    type => 'l',
    default => 'A legal address must contain exactly one \'@\', and at least ' .
@@ -1027,7 +1044,7 @@ You will get this message once a day until you\'ve dealt with these bugs!
            'why the vote(s) were removed. %votesremoved%, %votesold% and ' .
            '%votesnew% is the number of votes removed, before and after ' .
            'respectively. %votesremovedtext%, %votesoldtext% and ' .
-           '%votesnewtext% are these as sentences, eg "You had 2 votes on ' .
+           '%votesnewtext% are these as sentences, e.g. "You had 2 votes on ' .
            'this bug."  %count% is also supported for backwards ' .
            'compatibility. %<i>anythingelse</i>% gets replaced by the ' .
            'definition of that parameter (as defined on this page).',
diff --git a/docs/CVS/Entries b/docs/CVS/Entries
index a715ee66b3f56f77b3a1dcbb87d8e667a7fbeeaa..25e9843a90bd9e75bda4868f628edc9fc14c354b 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_19_3
-/README.docs/1.10/Sun May 30 21:46:07 2004//TBUGZILLA-2_19_3
-/makedocs.pl/1.7/Thu Feb  5 04:49:08 2004//TBUGZILLA-2_19_3
-/rel_notes.txt/1.30/Wed May 11 07:55:28 2005//TBUGZILLA-2_19_3
+/.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
 D/images////
 D/xml////
diff --git a/docs/CVS/Tag b/docs/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/docs/CVS/Tag
+++ b/docs/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/docs/html/Bugzilla-Guide.html b/docs/html/Bugzilla-Guide.html
index a91a40db7646cbc3ef90ed4ac25b600db459d8d7..31e9e2327c2d94ec7d2a676e90ca8eec8979b689 100644
--- a/docs/html/Bugzilla-Guide.html
+++ b/docs/html/Bugzilla-Guide.html
@@ -1,8 +1,8 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TITLE
 ><META
@@ -44,7 +44,7 @@ CLASS="TITLEPAGE"
 CLASS="title"
 ><A
 NAME="AEN2"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</A
 ></H1
@@ -53,7 +53,7 @@ CLASS="corpauthor"
 >The Bugzilla Team</H3
 ><P
 CLASS="pubdate"
->2005-01-14<BR></P
+>2005-09-30<BR></P
 ><DIV
 ><DIV
 CLASS="abstract"
@@ -357,6 +357,11 @@ HREF="#reporting"
 HREF="#flags"
 >Flags</A
 ></DT
+><DT
+>6.13. <A
+HREF="#whining"
+>Whining</A
+></DT
 ></DL
 ></DD
 ><DT
@@ -417,7 +422,7 @@ HREF="#trbl-relogin-everyone"
 ></DT
 ><DT
 >B.9. <A
-HREF="#AEN3042"
+HREF="#AEN3196"
 >Some users are constantly being forced to relogin</A
 ></DT
 ><DT
@@ -701,7 +706,7 @@ NAME="newversions"
 >1.3. New Versions</A
 ></H2
 ><P
->&#13;      This is the 2.19.2 version of The Bugzilla Guide. It is so named 
+>&#13;      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. 
@@ -1327,17 +1332,16 @@ TYPE="1"
 HREF="#install-perl"
 >Install Perl</A
 >
-        (5.6.0 or above for non-Windows platforms; 5.8.1
+        (5.6.1 or above for non-Windows platforms; 5.8.1
         for Windows)
         </P
 ></LI
 ><LI
 ><P
 ><A
-HREF="#install-mysql"
->Install MySQL</A
+HREF="#install-database"
+>Install a Database Engine</A
 >
-        (3.23.41 or above)
         </P
 ></LI
 ><LI
@@ -1401,32 +1405,44 @@ HREF="http://www.perl.com"
 TARGET="_top"
 >http://www.perl.com</A
 >.
-      Although Bugzilla runs with Perl 5.6.0,
-      it's a good idea to be using the latest stable version. 
-      As of this writing, that is Perl 5.8.3.</P
+      Although Bugzilla runs with Perl 5.6.1,
+      it's a good idea to be using the latest stable version.
+      </P
 ></DIV
 ><DIV
 CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="install-mysql"
->2.1.2. MySQL</A
+NAME="install-database"
+>2.1.2. Database Engine</A
 ></H3
 ><P
+>From Bugzilla 2.20, support is included for using both the MySQL and
+      PostgreSQL database servers. You only require one of these systems to make
+      use of Bugzilla.</P
+><DIV
+CLASS="section"
+><HR><H4
+CLASS="section"
+><A
+NAME="install-mysql"
+>2.1.2.1. MySQL</A
+></H4
+><P
 >Installed Version Test: <TT
 CLASS="filename"
 >mysql -V</TT
 ></P
 ><P
->&#13;      If you don't have it and your OS doesn't provide official packages, 
-      visit <A
+>&#13;          If you don't have it and your OS doesn't provide official packages, 
+          visit <A
 HREF="http://www.mysql.com"
 TARGET="_top"
 >http://www.mysql.com</A
 >. You need MySQL version
-      3.23.41 or higher.
-      </P
+          3.23.41 or higher.
+          </P
 ><DIV
 CLASS="note"
 ><P
@@ -1449,15 +1465,15 @@ ALIGN="LEFT"
 VALIGN="TOP"
 ><P
 > Many of the binary
-        versions of MySQL store their data files in 
-        <TT
+            versions of MySQL store their data files in 
+            <TT
 CLASS="filename"
 >/var</TT
 >.
-        On some Unix systems, this is part of a smaller root partition,
-        and may not have room for your bug database. To change the data
-         directory, you have to build MySQL from source yourself, and
-         set it as an option to <TT
+            On some Unix systems, this is part of a smaller root partition,
+            and may not have room for your bug database. To change the data
+            directory, you have to build MySQL from source yourself, and
+            set it as an option to <TT
 CLASS="filename"
 >configure</TT
 >.</P
@@ -1467,10 +1483,40 @@ CLASS="filename"
 ></DIV
 ><P
 >If you install from something other than a packaging/installation
-      system, such as .rpm (Redhat Package), .deb (Debian Package), .exe
-      (Windows Executable), or .msi (Microsoft Installer), make sure the MySQL
-      server is started when the machine boots.
-      </P
+          system, such as .rpm (Redhat Package), .deb (Debian Package), .exe
+          (Windows Executable), or .msi (Microsoft Installer), make sure the MySQL
+          server is started when the machine boots.
+          </P
+></DIV
+><DIV
+CLASS="section"
+><HR><H4
+CLASS="section"
+><A
+NAME="install-pg"
+>2.1.2.2. PostgreSQL</A
+></H4
+><P
+>Installed Version Test: <TT
+CLASS="filename"
+>psql -V</TT
+></P
+><P
+>&#13;          If you don't have it and your OS doesn't provide official packages, 
+          visit <A
+HREF="http://www.postgresql.org/"
+TARGET="_top"
+>http://www.postgresql.org/</A
+>. You need PostgreSQL
+          version 7.3.x or higher.
+          </P
+><P
+>If you install from something other than a packaging/installation
+          system, such as .rpm (Redhat Package), .deb (Debian Package), .exe
+          (Windows Executable), or .msi (Microsoft Installer), make sure the
+          PostgreSQL server is started when the machine boots.
+          </P
+></DIV
 ></DIV
 ><DIV
 CLASS="section"
@@ -1615,7 +1661,8 @@ HREF="#configuration"
 CLASS="filename"
 >su</TT
 > to root. You should
-      remain as root until the end of the install. Then run:
+      remain as root until the end of the install. To check you have the
+      required modules, run:
       </P
 ><TABLE
 BORDER="0"
@@ -1630,7 +1677,7 @@ CLASS="screen"
 ><SAMP
 CLASS="prompt"
 >bash#</SAMP
-> ./checksetup.pl</PRE
+> ./checksetup.pl --check-modules</PRE
 ></FONT
 ></TD
 ></TR
@@ -1733,6 +1780,39 @@ CLASS="QUOTE"
 ></TR
 ></TABLE
 ></DIV
+><DIV
+CLASS="note"
+><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
+>If you are using a package-based system, and attempting to install the
+        Perl modules from CPAN, you may need to install the "development" packages for
+        MySQL and GD before attempting to install the related Perl modules. The names of
+        these packages will vary depending on the specific distribution you are using,
+        but are often called <TT
+CLASS="filename"
+>&#60;packagename&#62;-devel</TT
+>.</P
+></TD
+></TR
+></TABLE
+></DIV
 ><P
 >&#13;        Here is a complete list of modules and their minimum versions.
         Some modules have special installation notes, which follow.
@@ -1765,7 +1845,7 @@ TYPE="1"
 ></LI
 ><LI
 ><P
->&#13;            DBI (1.36)
+>&#13;            DBI (1.38)
           </P
 ></LI
 ><LI
@@ -1774,12 +1854,17 @@ TYPE="1"
 HREF="#install-modules-dbd-mysql"
 >DBD::mysql</A
 >
-            (2.1010)
+            (2.9003) if using MySQL
+          </P
+></LI
+><LI
+><P
+>&#13;            DBD::Pg (1.31) if using PostgreSQL
           </P
 ></LI
 ><LI
 ><P
->&#13;            File::Spec (0.82)
+>&#13;            File::Spec (0.84)
           </P
 ></LI
 ><LI
@@ -1801,6 +1886,16 @@ HREF="#install-modules-template"
 >&#13;            Text::Wrap (2001.0131)
           </P
 ></LI
+><LI
+><P
+>&#13;            Mail::Mailer (1.65)
+          </P
+></LI
+><LI
+><P
+>&#13;            Storable (any)
+          </P
+></LI
 ></OL
 >
 
@@ -2178,16 +2273,44 @@ NAME="localconfig"
 >2.2.1. localconfig</A
 ></H3
 ><P
->&#13;        Once you run <TT
+>&#13;        You should now run <TT
+CLASS="filename"
+>checksetup.pl</TT
+> again, this time
+        without the <VAR
+CLASS="literal"
+>--check-modules</VAR
+> switch.
+      </P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="screen"
+><SAMP
+CLASS="prompt"
+>bash#</SAMP
+> ./checksetup.pl</PRE
+></FONT
+></TD
+></TR
+></TABLE
+><P
+>&#13;        This time, <TT
 CLASS="filename"
 >checksetup.pl</TT
-> with all the correct 
-        modules installed, it displays a message about, and write out a 
-        file called, <TT
+> should tell you that all
+        the correct modules are installed and will display a message about, and
+        write out a  file called, <TT
 CLASS="filename"
 >localconfig</TT
->. This file contains
-        the default settings for a number of Bugzilla parameters.
+>. This file
+        contains the default settings for a number of Bugzilla parameters.
       </P
 ><P
 >&#13;        Load this file in your editor. The only value you 
@@ -2223,9 +2346,27 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="mysql"
->2.2.2. MySQL</A
+NAME="database-engine"
+>2.2.2. Database Server</A
 ></H3
+><P
+>This section deals with configuring your database server for use
+      with Bugzilla. Currently <A
+HREF="#mysql"
+>Section 2.2.2.1</A
+> and
+      <A
+HREF="#postgresql"
+>Section 2.2.2.2</A
+> are available.</P
+><DIV
+CLASS="section"
+><HR><H4
+CLASS="section"
+><A
+NAME="mysql"
+>2.2.2.1. MySQL</A
+></H4
 ><DIV
 CLASS="caution"
 ><P
@@ -2247,36 +2388,36 @@ ALT="Caution"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->&#13;          MySQL's default configuration is very insecure.
-          <A
+>&#13;            MySQL's default configuration is very insecure.
+            <A
 HREF="#security-mysql"
 >Section 4.2</A
 > has some good information for
-          improving your installation's security.
-        </P
+            improving your installation's security.
+          </P
 ></TD
 ></TR
 ></TABLE
 ></DIV
 ><DIV
 CLASS="section"
-><HR><H4
+><HR><H5
 CLASS="section"
 ><A
 NAME="install-setupdatabase"
->2.2.2.1. Allow large attachments</A
-></H4
+>2.2.2.1.1. Allow large attachments</A
+></H5
 ><P
->&#13;          By default, MySQL will only accept packets up to 64Kb in size.
-          If you want to have attachments larger than this, you will need
-          to modify your <TT
+>&#13;            By default, MySQL will only accept packets up to 64Kb in size.
+            If you want to have attachments larger than this, you will need
+            to modify your <TT
 CLASS="filename"
 >/etc/my.cnf</TT
 > as below.
-        </P
+          </P
 ><P
->&#13;          If you are using MySQL 4.0 or newer, enter:
-        </P
+>&#13;            If you are using MySQL 4.0 or newer, enter:
+          </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -2295,8 +2436,8 @@ CLASS="screen"
 ></TR
 ></TABLE
 ><P
->&#13;          If you are using an older version of MySQL, enter:
-        </P
+>&#13;            If you are using an older version of MySQL, enter:
+          </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -2315,36 +2456,65 @@ CLASS="screen"
 ></TR
 ></TABLE
 ><P
->&#13;          There is also a parameter in Bugzilla called 'maxattachmentsize'
-          (default = 1000 Kb) that controls the maximum allowable attachment
-          size. Attachments larger than <EM
+>&#13;            There is also a parameter in Bugzilla called 'maxattachmentsize'
+            (default = 1000 Kb) that controls the maximum allowable attachment
+            size. Attachments larger than <EM
 >either</EM
 > the 
-          'max_allowed_packet' or 'maxattachmentsize' value will not be
-          accepted by Bugzilla.
-        </P
+            'max_allowed_packet' or 'maxattachmentsize' value will not be
+            accepted by Bugzilla.
+          </P
+><DIV
+CLASS="note"
+><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
+>&#13;              This does not affect Big Files, attachments that are stored directly
+              on disk instead of in the database.  Their maximum size is
+              controlled using the 'maxlocalattachment' parameter.
+            </P
+></TD
+></TR
+></TABLE
+></DIV
 ></DIV
 ><DIV
 CLASS="section"
-><HR><H4
+><HR><H5
 CLASS="section"
 ><A
-NAME="AEN401"
->2.2.2.2. Allow small words in full-text indexes</A
-></H4
+NAME="AEN432"
+>2.2.2.1.2. Allow small words in full-text indexes</A
+></H5
 ><P
 >By default, words must be at least four characters in length
-        in order to be indexed by MySQL's full-text indexes. This causes
-        a lot of Bugzilla specific words to be missed, including "cc",
-        "ftp" and "uri".</P
+          in order to be indexed by MySQL's full-text indexes. This causes
+          a lot of Bugzilla specific words to be missed, including "cc",
+          "ftp" and "uri".</P
 ><P
 >MySQL can be configured to index those words by setting the
-        ft_min_word_len param to the minimum size of the words to index.
-        This can be done by modifying the <TT
+          ft_min_word_len param to the minimum size of the words to index.
+          This can be done by modifying the <TT
 CLASS="filename"
 >/etc/my.cnf</TT
 >
-        according to the example below:</P
+          according to the example below:</P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -2364,12 +2534,12 @@ CLASS="screen"
 ></TABLE
 ><P
 >Rebuilding the indexes can be done based on documentation found at
-        <A
+          <A
 HREF="http://www.mysql.com/doc/en/Fulltext_Fine-tuning.html"
 TARGET="_top"
 >http://www.mysql.com/doc/en/Fulltext_Fine-tuning.html</A
 >.
-        </P
+          </P
 ><DIV
 CLASS="note"
 ><P
@@ -2391,8 +2561,8 @@ ALT="Note"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->&#13;            The ft_min_word_len parameter is only suported in MySQL v4 or higher.
-          </P
+>&#13;              The ft_min_word_len parameter is only suported in MySQL v4 or higher.
+            </P
 ></TD
 ></TR
 ></TABLE
@@ -2400,25 +2570,25 @@ VALIGN="TOP"
 ></DIV
 ><DIV
 CLASS="section"
-><HR><H4
+><HR><H5
 CLASS="section"
 ><A
-NAME="AEN411"
->2.2.2.3. Permit attachments table to grow beyond 4GB</A
-></H4
+NAME="AEN442"
+>2.2.2.1.3. Permit attachments table to grow beyond 4GB</A
+></H5
 ><P
->&#13;          By default, MySQL will limit the size of a table to 4GB.
-          This limit is present even if the underlying filesystem
-          has no such limit.  To set a higher limit, follow these
-          instructions.
-        </P
+>&#13;            By default, MySQL will limit the size of a table to 4GB.
+            This limit is present even if the underlying filesystem
+            has no such limit.  To set a higher limit, follow these
+            instructions.
+          </P
 ><P
->&#13;          Run the <TT
+>&#13;            Run the <TT
 CLASS="filename"
 >MySQL</TT
 > command-line client and
-          enter:
-        </P
+            enter:
+          </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -2433,81 +2603,109 @@ CLASS="screen"
 CLASS="prompt"
 >mysql&#62;</SAMP
 > ALTER TABLE attachments 
-          AVG_ROW_LENGTH=1000000, MAX_ROWS=20000;
-        </PRE
+            AVG_ROW_LENGTH=1000000, MAX_ROWS=20000;
+          </PRE
 ></FONT
 ></TD
 ></TR
 ></TABLE
 ><P
->&#13;          The above command will change the limit to 20GB. Mysql will have 
-          to make a temporary copy of your entire table to do this. Ideally, 
-          you should do this when your attachments table is still small.
-        </P
+>&#13;            The above command will change the limit to 20GB. Mysql will have 
+            to make a temporary copy of your entire table to do this. Ideally, 
+            you should do this when your attachments table is still small.
+          </P
+><DIV
+CLASS="note"
+><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
+>&#13;              This does not affect Big Files, attachments that are stored directly
+              on disk instead of in the database.
+            </P
+></TD
+></TR
+></TABLE
+></DIV
 ></DIV
 ><DIV
 CLASS="section"
-><HR><H4
+><HR><H5
 CLASS="section"
 ><A
 NAME="install-setupdatabase-adduser"
->2.2.2.4. Add a user to MySQL</A
-></H4
+>2.2.2.1.4. Add a user to MySQL</A
+></H5
 ><P
->&#13;          You need to add a new MySQL user for Bugzilla to use.
-          (It's not safe to have Bugzilla use the MySQL root account.)
-          The following instructions assume the defaults in
-          <TT
+>&#13;            You need to add a new MySQL user for Bugzilla to use.
+            (It's not safe to have Bugzilla use the MySQL root account.)
+            The following instructions assume the defaults in
+            <TT
 CLASS="filename"
 >localconfig</TT
 >; if you changed those,
-          you need to modify the SQL command appropriately. You will
-          need the <VAR
+            you need to modify the SQL command appropriately. You will
+            need the <VAR
 CLASS="replaceable"
 >$db_pass</VAR
 > password you
-          set in <TT
+            set in <TT
 CLASS="filename"
 >localconfig</TT
 > in 
-          <A
+            <A
 HREF="#localconfig"
 >Section 2.2.1</A
 >.
-        </P
+          </P
 ><P
->&#13;          We use an SQL <B
+>&#13;            We use an SQL <B
 CLASS="command"
 >GRANT</B
 > command to create
-          a <SPAN
+            a <SPAN
 CLASS="QUOTE"
 >"bugs"</SPAN
 > user. This also restricts the 
-          <SPAN
+            <SPAN
 CLASS="QUOTE"
 >"bugs"</SPAN
 >user to operations within a database
-          called <SPAN
+            called <SPAN
 CLASS="QUOTE"
 >"bugs"</SPAN
 >, and only allows the account
-          to connect from <SPAN
+            to connect from <SPAN
 CLASS="QUOTE"
 >"localhost"</SPAN
 >. Modify it to
-          reflect your setup if you will be connecting from another
-          machine or as a different user.
-        </P
+            reflect your setup if you will be connecting from another
+            machine or as a different user.
+          </P
 ><P
->&#13;          Run the <TT
+>&#13;            Run the <TT
 CLASS="filename"
 >mysql</TT
 > command-line client.
-        </P
+          </P
 ><P
->&#13;          If you are using MySQL 4.0 or newer, enter:
-        </P
+>&#13;            If you are using MySQL 4.0 or newer, enter:
+          </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -2522,13 +2720,13 @@ CLASS="screen"
 CLASS="prompt"
 >mysql&#62;</SAMP
 > GRANT SELECT, INSERT,
-         UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
-         CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
-         TO bugs@localhost IDENTIFIED BY '<VAR
+           UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
+           CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
+           TO bugs@localhost IDENTIFIED BY '<VAR
 CLASS="replaceable"
 >$db_pass</VAR
 >';
-  <SAMP
+           <SAMP
 CLASS="prompt"
 >mysql&#62;</SAMP
 > FLUSH PRIVILEGES;</PRE
@@ -2537,19 +2735,19 @@ CLASS="prompt"
 ></TR
 ></TABLE
 ><P
->&#13;          If you are using an older version of MySQL,the
-          <SAMP
+>&#13;            If you are using an older version of MySQL,the
+            <SAMP
 CLASS="computeroutput"
 >LOCK TABLES</SAMP
 > and 
-          <SAMP
+            <SAMP
 CLASS="computeroutput"
 >CREATE TEMPORARY TABLES</SAMP
 >
-          permissions will be unavailable and should be removed from
-          the permissions list. In this case, the following command
-          line can be used:
-        </P
+            permissions will be unavailable and should be removed from
+            the permissions list. In this case, the following command
+            line can be used:
+          </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -2564,13 +2762,13 @@ CLASS="screen"
 CLASS="prompt"
 >mysql&#62;</SAMP
 > GRANT SELECT, INSERT,
-         UPDATE, DELETE, INDEX, ALTER, CREATE, DROP,
-         REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY
-         '<VAR
+           UPDATE, DELETE, INDEX, ALTER, CREATE, DROP,
+           REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY
+           '<VAR
 CLASS="replaceable"
 >$db_pass</VAR
 >';
-  <SAMP
+           <SAMP
 CLASS="prompt"
 >mysql&#62;</SAMP
 > FLUSH PRIVILEGES;</PRE
@@ -2582,34 +2780,233 @@ CLASS="prompt"
 ></DIV
 ><DIV
 CLASS="section"
-><HR><H3
+><HR><H4
 CLASS="section"
 ><A
-NAME="AEN446"
->2.2.3. checksetup.pl</A
-></H3
-><P
->&#13;        Next, rerun <TT
-CLASS="filename"
->checksetup.pl</TT
->. It reconfirms
-        that all the modules are present, and notices the altered 
-        localconfig file, which it assumes you have edited to your
-        satisfaction. It compiles the UI templates,
-        connects to the database using the 'bugs'
-        user you created and the password you defined, and creates the 
-        'bugs' database and the tables therein. 
-      </P
-><P
->&#13;        After that, it asks for details of an administrator account. Bugzilla
-        can have multiple administrators - you can create more later - but
-        it needs one to start off with.
-        Enter the email address of an administrator, his or her full name, 
-        and a suitable Bugzilla password.
-      </P
+NAME="postgresql"
+>2.2.2.2. PostgreSQL</A
+></H4
+><DIV
+CLASS="note"
 ><P
->&#13;        <TT
-CLASS="filename"
+></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
+>Note if you are using PostgreSQL 8.0.1 or higher, then you
+          will require to use a version of DBD::Pg which is equal to or
+          greater than version 1.41
+          </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="section"
+><HR><H5
+CLASS="section"
+><A
+NAME="AEN483"
+>2.2.2.2.1. Add a User to PostgreSQL</A
+></H5
+><P
+>You need to add a new user to PostgreSQL for the Bugzilla
+          application to use when accessing the database. The following instructions
+          assume the defaults in <TT
+CLASS="filename"
+>localconfig</TT
+>; if you
+          changed those, you need to modify the commands appropriately. You will
+          need the <VAR
+CLASS="replaceable"
+>$db_pass</VAR
+> password you
+          set in <TT
+CLASS="filename"
+>localconfig</TT
+> in 
+          <A
+HREF="#localconfig"
+>Section 2.2.1</A
+>.</P
+><P
+>On most systems, to create the user in PostgreSQL, you will need to
+          login as the root user, and then</P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="screen"
+> <SAMP
+CLASS="prompt"
+>bash#</SAMP
+> su - postgres</PRE
+></FONT
+></TD
+></TR
+></TABLE
+><P
+>As the postgres user, you then need to create a new user: </P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="screen"
+> <SAMP
+CLASS="prompt"
+>bash$</SAMP
+> createuser -U postgres -dAP bugs</PRE
+></FONT
+></TD
+></TR
+></TABLE
+><P
+>When asked for a password, provide the password which will be set as
+          <VAR
+CLASS="replaceable"
+>$db_pass</VAR
+> in <TT
+CLASS="filename"
+>localconfig</TT
+>.
+          The created user will have the ability to create databases and will not be
+          able to create new users.</P
+></DIV
+><DIV
+CLASS="section"
+><HR><H5
+CLASS="section"
+><A
+NAME="AEN499"
+>2.2.2.2.2. Configure PostgreSQL</A
+></H5
+><P
+>Now, you will need to edit <TT
+CLASS="filename"
+>pg_hba.conf</TT
+> which is
+          usually located in <TT
+CLASS="filename"
+>/var/lib/pgsql/data/</TT
+>. In this file,
+          you will need to add a new line to it as follows:</P
+><P
+>&#13;            <SAMP
+CLASS="computeroutput"
+>host   all    bugs   127.0.0.1    255.255.255.255  md5</SAMP
+>
+          </P
+><P
+>This means that for TCP/IP (host) connections, allow connections from
+          '127.0.0.1' to 'all' databases on this server from the 'bugs' user, and use
+          password authentication (md5) for that user.</P
+><P
+>If you are using <EM
+>versions of PostgreSQL
+          before version 8</EM
+>, you may also need to edit <TT
+CLASS="filename"
+>postgresql.conf</TT
+>
+          , also usually found in the <TT
+CLASS="filename"
+>/var/lib/pgsql/data/</TT
+> folder.
+          You will need to make a single line change, changing</P
+><P
+>&#13;	    <SAMP
+CLASS="computeroutput"
+># tcpip_socket = false</SAMP
+>
+          </P
+><P
+>to</P
+><P
+>&#13;	    <SAMP
+CLASS="computeroutput"
+>tcpip_socket = true</SAMP
+>
+          </P
+><P
+>Now, you will need to restart PostgreSQL, but you will need to fully
+          stop and start the server rather than just restarting due to the possibility
+          of a change to <TT
+CLASS="filename"
+>postgresql.conf</TT
+>. After the server has
+          restarted, you will need to edit <TT
+CLASS="filename"
+>localconfig</TT
+>, finding
+          the <VAR
+CLASS="literal"
+>$db_driver</VAR
+> variable and setting it to
+          <VAR
+CLASS="literal"
+>Pg</VAR
+> and changing the password in <VAR
+CLASS="literal"
+>$db_pass</VAR
+>
+          to the one you picked previously, while setting up the account.</P
+></DIV
+></DIV
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
+NAME="AEN522"
+>2.2.3. checksetup.pl</A
+></H3
+><P
+>&#13;        Next, rerun <TT
+CLASS="filename"
+>checksetup.pl</TT
+>. It reconfirms
+        that all the modules are present, and notices the altered 
+        localconfig file, which it assumes you have edited to your
+        satisfaction. It compiles the UI templates,
+        connects to the database using the 'bugs'
+        user you created and the password you defined, and creates the 
+        'bugs' database and the tables therein. 
+      </P
+><P
+>&#13;        After that, it asks for details of an administrator account. Bugzilla
+        can have multiple administrators - you can create more later - but
+        it needs one to start off with.
+        Enter the email address of an administrator, his or her full name, 
+        and a suitable Bugzilla password.
+      </P
+><P
+>&#13;        <TT
+CLASS="filename"
 >checksetup.pl</TT
 > will then finish. You may rerun
         <TT
@@ -3071,7 +3468,6 @@ CLASS="programlisting"
   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/runtests.sh filter_deny
   ns_register_filter preauth GET /bugzilla/data/* filter_deny
   ns_register_filter preauth GET /bugzilla/template/* filter_deny
 
@@ -3280,7 +3676,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN570"
+NAME="AEN646"
 >2.3.1. Bug Graphs</A
 ></H3
 ><P
@@ -3376,7 +3772,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN583"
+NAME="AEN659"
 >2.3.2. Dependency Charts</A
 ></H3
 ><P
@@ -3446,7 +3842,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN599"
+NAME="installation-whining-cron"
 >2.3.3. The Whining Cron</A
 ></H3
 ><P
@@ -3515,8 +3911,112 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
+NAME="installation-whining"
+>2.3.4. Whining</A
+></H3
+><P
+>&#13;        As of Bugzilla 2.20, users can configure Bugzilla to regularly annoy 
+        them at regular intervals, by having Bugzilla execute saved searches
+        at certain times and emailing the results to the user.  This is known
+        as "Whining".  The process of configuring Whining is described 
+        in <A
+HREF="#whining"
+>Section 6.13</A
+>, but for it to work a Perl script must be
+        executed at regular intervals.
+      </P
+><P
+>&#13;        This can be done by adding the following command as a daily
+        crontab entry, in the same manner as explained above for bug
+        graphs. This example runs it every 15 minutes. 
+      </P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+>*/15 * * * * cd &#60;your-bugzilla-directory&#62; ; ./whine.pl</PRE
+></FONT
+></TD
+></TR
+></TABLE
+><DIV
+CLASS="note"
+><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
+>&#13;          Whines can be executed as often as every 15 minutes, so if you specify
+          longer intervals between executions of whine.pl, some users may not 
+          be whined at as often as they would expect.  Depending on the person,
+          this can either be a very Good Thing or a very Bad Thing.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="note"
+><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
+>&#13;          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
+          <A
+HREF="http://www.nncron.ru/"
+TARGET="_top"
+>nncron</A
+>.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
 NAME="patch-viewer"
->2.3.4. Patch Viewer</A
+>2.3.5. Patch Viewer</A
 ></H3
 ><P
 >&#13;        Patch Viewer is the engine behind Bugzilla's graphical display of
@@ -3571,7 +4071,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="bzldap"
->2.3.5. LDAP Authentication</A
+>2.3.6. LDAP Authentication</A
 ></H3
 ><P
 >LDAP authentication is a module for Bugzilla's plugin 
@@ -3785,7 +4285,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="apache-addtype"
->2.3.6. Serving Alternate Formats with the right MIME type</A
+>2.3.7. Serving Alternate Formats with the right MIME type</A
 ></H3
 ><P
 >&#13;        Some Bugzilla pages have alternate formats, other than just plain
@@ -4498,7 +4998,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN784"
+NAME="AEN871"
 >2.5.1. Introduction</A
 ></H3
 ><P
@@ -4518,7 +5018,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN788"
+NAME="AEN875"
 >2.5.2. MySQL</A
 ></H3
 ><P
@@ -4574,7 +5074,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN796"
+NAME="AEN883"
 >2.5.2.1. Running MySQL as Non-Root</A
 ></H4
 ><DIV
@@ -4582,7 +5082,7 @@ CLASS="section"
 ><H5
 CLASS="section"
 ><A
-NAME="AEN798"
+NAME="AEN885"
 >2.5.2.1.1. The Custom Configuration Method</A
 ></H5
 ><P
@@ -4626,7 +5126,7 @@ CLASS="section"
 ><HR><H5
 CLASS="section"
 ><A
-NAME="AEN802"
+NAME="AEN889"
 >2.5.2.1.2. The Custom Built Method</A
 ></H5
 ><P
@@ -4649,7 +5149,7 @@ CLASS="section"
 ><HR><H5
 CLASS="section"
 ><A
-NAME="AEN807"
+NAME="AEN894"
 >2.5.2.1.3. Starting the Server</A
 ></H5
 ><P
@@ -4777,7 +5277,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN823"
+NAME="AEN910"
 >2.5.3. Perl</A
 ></H3
 ><P
@@ -4870,7 +5370,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN842"
+NAME="AEN929"
 >2.5.4.1. The Independant Method</A
 ></H4
 ><P
@@ -4942,7 +5442,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN855"
+NAME="AEN942"
 >2.5.4.2. The Mixed Method</A
 ></H4
 ><P
@@ -5147,7 +5647,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN888"
+NAME="AEN975"
 >2.5.5. HTTP Server</A
 ></H3
 ><P
@@ -5161,7 +5661,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN891"
+NAME="AEN978"
 >2.5.5.1. Running Apache as Non-Root</A
 ></H4
 ><P
@@ -5243,7 +5743,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN900"
+NAME="AEN987"
 >2.5.6. Bugzilla</A
 ></H3
 ><P
@@ -5548,7 +6048,7 @@ CLASS="filename"
 ><DD
 ><P
 >&#13;            This allows you to define an email address for each component, 
-            in addition to that of the default owner, who will be sent
+            in addition to that of the default assignee, who will be sent
             carbon copies of incoming bugs.
           </P
 ></DD
@@ -6099,12 +6599,12 @@ NAME="components"
     natural divisions of responsibility within your Product or
     company.</P
 ><P
->&#13;    Each component has a owner and (if you turned it on in the parameters),
-    a QA Contact. The owner should be the primary person who fixes bugs in
+>&#13;    Each component has a default assignee and (if you turned it on in the parameters),
+    a QA Contact. The default assignee should be the primary person who fixes bugs in
     that component. The QA Contact should be the person who will ensure
-    these bugs are completely fixed. The Owner, QA Contact, and Reporter
+    these bugs are completely fixed. The Assignee, QA Contact, and Reporter
     will get email when new bugs are created in this Component and when
-    these bugs change. Default Owner and Default QA Contact fields only
+    these bugs change. Default Assignee and Default QA Contact fields only
     dictate the 
     <EM
 >default assignments</EM
@@ -6129,9 +6629,9 @@ TYPE="1"
 ><LI
 ><P
 >Fill out the "Component" field, a short "Description", 
-        the "Initial Owner" and "Initial QA Contact" (if enabled.) 
+        the "Default Assignee" and "Default QA Contact" (if enabled.) 
         The Component and Description fields may contain HTML; 
-        the "Initial Owner" field must be a login name
+        the "Default Assignee" field must be a login name
         already existing in the database. 
         </P
 ></LI
@@ -6596,7 +7096,7 @@ CLASS="filename"
        </P
 ><P
 >&#13;         Only users with the ability to edit the bug may 
-         set flags on bugs. This includes the owner, reporter, and 
+         set flags on bugs. This includes the assignee, reporter, and 
          any user with the <SAMP
 CLASS="computeroutput"
 >editbugs</SAMP
@@ -6646,7 +7146,7 @@ NAME="flags-create"
 CLASS="QUOTE"
 >"Create a Flag Type for..."</SPAN
 >
-          link, you will be presented with a form. Here is what the felds in 
+          link, you will be presented with a form. Here is what the fields in 
           the form mean:
         </P
 ><DIV
@@ -6673,7 +7173,7 @@ NAME="flags-create-field-description"
 ></H5
 ><P
 >&#13;            This describes the flag in more detail. At present, this doesn't
-            whos up anywhere helpful; ideally, it would be nice to have
+            show up anywhere helpful; ideally, it would be nice to have
             it show up as a tooltip. This field 
             can be as long as you like, and can contain any character you want.
           </P
@@ -7215,7 +7715,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1360"
+NAME="AEN1447"
 >3.10.1. Creating Groups</A
 ></H3
 ><P
@@ -7351,7 +7851,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1387"
+NAME="AEN1474"
 >3.10.2. Assigning Users to Groups</A
 ></H3
 ><P
@@ -7383,7 +7883,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1397"
+NAME="AEN1484"
 >3.10.3. Assigning Group Controls to Products</A
 ></H3
 ><P
@@ -7448,7 +7948,7 @@ TYPE="1"
 ><P
 >These controls are often described in this order, so a 
       product that requires a user to be a member of group "foo" 
-      to enter a bug and then requires that the bug stay resticted
+      to enter a bug and then requires that the bug stay restricted
       to group "foo" at all times and that only members of group "foo"
       can edit the bug even if they otherwise could see the bug would 
       have its controls summarized by...</P
@@ -7475,7 +7975,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1415"
+NAME="AEN1502"
 >3.10.4. Common Applications of Group Controls</A
 ></H3
 ><DIV
@@ -7483,7 +7983,7 @@ CLASS="section"
 ><H4
 CLASS="section"
 ><A
-NAME="AEN1417"
+NAME="AEN1504"
 >3.10.4.1. General User Access With Security Group</A
 ></H4
 ><P
@@ -7518,7 +8018,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN1421"
+NAME="AEN1508"
 >3.10.4.2. General User Access With A Security Product</A
 ></H4
 ><P
@@ -7550,7 +8050,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN1425"
+NAME="AEN1512"
 >3.10.4.3. Product Isolation With Common Group</A
 ></H4
 ><P
@@ -8798,9 +9298,6 @@ CLASS="filename"
 >, <TT
 CLASS="filename"
 >*localconfig*</TT
->, <TT
-CLASS="filename"
->runtests.sh</TT
 >
               </P
 ></LI
@@ -9127,12 +9624,11 @@ TARGET="_top"
 >the
       CERT advisory</A
 > on this issue.
-      If your installation is for an English speaking audience only, making the
-      change in <A
+      Making the change in <A
 HREF="#security-bugzilla-charset-ex"
 >Example 4-4</A
-> will prevent
-      this problem. 
+> will
+      prevent this problem. 
       </P
 ><DIV
 CLASS="example"
@@ -9176,7 +9672,7 @@ WIDTH="100%"
 COLOR="#000000"
 ><PRE
 CLASS="programlisting"
->$self-&#62;charset('ISO-8859-1');</PRE
+>$self-&#62;charset('UTF-8');</PRE
 ></FONT
 ></TD
 ></TR
@@ -9547,7 +10043,7 @@ TARGET="_top"
         to properly HTML filter data that has been passed into the template.
         This means that if the data can possibly contain special HTML characters
         such as &#60;, and the data was not intended to be HTML, they need to be
-        converted to entity form, ie &#38;lt;.  You use the 'html' filter in the
+        converted to entity form, i.e. &#38;lt;.  You use the 'html' filter in the
         Template Toolkit to do this.  If you forget, you may open up
         your installation to cross-site scripting attacks.
       </P
@@ -9555,7 +10051,7 @@ TARGET="_top"
 >&#13;        Also note that Bugzilla adds a few filters of its own, that are not
         in standard Template Toolkit.  In particular, the 'url_quote' filter
         can convert characters that are illegal or have special meaning in URLs,
-        such as &#38;, to the encoded form, ie %26.  This actually encodes most
+        such as &#38;, to the encoded form, i.e. %26.  This actually encodes most
         characters (but not the common ones such as letters and numbers and so
         on), including the HTML-special characters, so there's never a need to
         HTML filter afterwards.
@@ -10428,7 +10924,7 @@ WIDTH="100%"
 COLOR="#000000"
 ><PRE
 CLASS="programlisting"
->    # Allow the owner to change anything.
+>    # Allow the assignee to change anything.
     if ($ownerid eq $whoid) {
         return 1;
     }</PRE
@@ -10673,7 +11169,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1986"
+NAME="AEN2071"
 >5.5.1. Bugzilla Database Basics</A
 ></H3
 ><P
@@ -10785,7 +11281,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN2013"
+NAME="AEN2098"
 >5.5.1.1. Bugzilla Database Tables</A
 ></H4
 ><P
@@ -11517,8 +12013,12 @@ BORDER="0"
 >&#13;        <EM
 >Attachments:</EM
 >
-        You can attach files (e.g. testcases or patches) to bugs. If there
-        are any attachments, they are listed in this section.</P
+          You can attach files (e.g. testcases or patches) to bugs. If there
+          are any attachments, they are listed in this section.  Attachments are
+          normally stored in the Bugzilla database, unless they are marked as
+          Big Files, which are stored directly on disk and (unlike attachments
+          kept in the database) may be deleted at some future time.
+        </P
 ></LI
 ><LI
 ><P
@@ -11712,7 +12212,7 @@ NAME="negation"
 >&#13;          At first glance, negation seems redundant. Rather than
           searching for
           <A
-NAME="AEN2201"
+NAME="AEN2286"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11723,7 +12223,7 @@ CLASS="BLOCKQUOTE"
 >
           one could search for 
           <A
-NAME="AEN2203"
+NAME="AEN2288"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11734,7 +12234,7 @@ CLASS="BLOCKQUOTE"
 >
           However, the search 
           <A
-NAME="AEN2205"
+NAME="AEN2290"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11746,7 +12246,7 @@ CLASS="BLOCKQUOTE"
           would find every bug where anyone on the CC list did not contain 
           "@mozilla.org" while
           <A
-NAME="AEN2207"
+NAME="AEN2292"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11760,7 +12260,7 @@ CLASS="BLOCKQUOTE"
           complex expressions to be built using terms OR'd together and then
           negated. Negation permits queries such as
           <A
-NAME="AEN2209"
+NAME="AEN2294"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11773,7 +12273,7 @@ CLASS="BLOCKQUOTE"
           to find bugs that are neither 
           in the update product or in the documentation component or
           <A
-NAME="AEN2211"
+NAME="AEN2296"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11801,7 +12301,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="AEN2216"
+NAME="AEN2301"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11816,7 +12316,7 @@ CLASS="BLOCKQUOTE"
           containing "foo@" and someone else containing "@mozilla.org",
           then you would need two boolean charts.
           <A
-NAME="AEN2218"
+NAME="AEN2303"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11908,15 +12408,15 @@ BORDER="0"
 
       If your account is sufficiently empowered, you can make the same
       change to all the bugs in the list - for example, changing their
-      owner.</TD
+      assignee.</TD
 ></TR
 ><TR
 ><TD
 >&#13;      <EM
->Send mail to bug owners:</EM
+>Send mail to bug assignees:</EM
 >
 
-      Sends mail to the owners of all bugs on the list.</TD
+      Sends mail to the assignees of all bugs on the list.</TD
 ></TR
 ><TR
 ><TD
@@ -12213,7 +12713,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN2301"
+NAME="AEN2386"
 >6.9.1. Autolinkification</A
 ></H3
 ><P
@@ -12369,6 +12869,15 @@ CLASS="filename"
 >&#38;content-type=text/plain</TT
 >.
       </P
+><P
+>&#13;        If you have a really large attachment, something that does not need to
+        be recorded forever (as most attachments are), you can mark your
+        attachment as a Big File, Assuming the administrator of the
+        installation has enabled this feature.  Big Files are stored directly on
+        disk instead of in the database, and can be deleted when it is no longer
+        needed.  The maximum size of a Big File is normally larger than the
+        maximum size of a regular attachment.
+      </P
 ></DIV
 ></DIV
 ><DIV
@@ -12822,7 +13331,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN2407"
+NAME="AEN2493"
 >6.11.2.1. Creating Charts</A
 ></H4
 ><P
@@ -12854,80 +13363,473 @@ NAME="AEN2407"
           created or if you are an administrator.
         </P
 ><P
->&#13;           Once you are happy, click Chart This List to see the chart.
+>&#13;           Once you are happy, click Chart This List to see the chart.
+        </P
+></DIV
+><DIV
+CLASS="section"
+><HR><H4
+CLASS="section"
+><A
+NAME="AEN2500"
+>6.11.2.2. Creating New Data Sets</A
+></H4
+><P
+>&#13;          You may also create new data sets of your own. To do this,
+          click the "create a new data set" link on the Create Chart page.
+          This takes you to a search-like interface where you can define
+          the search that Bugzilla will plot. At the bottom of the page,
+          you choose the category, sub-category and name of your new
+          data set. 
+        </P
+><P
+>&#13;          If you have sufficient permissions, you can make the data set public,
+          and reduce the frequency of data collection to less than the default
+          seven days.
+        </P
+></DIV
+></DIV
+></DIV
+><DIV
+CLASS="section"
+><HR><H2
+CLASS="section"
+><A
+NAME="flags"
+>6.12. Flags</A
+></H2
+><P
+>&#13;      A flag is a kind of status that can be set on bugs or attachments
+      to indicate that the bugs/attachments are in a certain state.
+      Each installation can define its own set of flags that can be set
+      on bugs or attachments.
+    </P
+><P
+>&#13;      If your installation has defined a flag, you can set or unset that flag,
+      and if your administrator has enabled requesting of flags, you can submit
+      a request for another user to set the flag.
+    </P
+><P
+>&#13;      To set a flag, select either "+" or "-" from the drop-down menu next to
+      the name of the flag in the "Flags" list.  The meaning of these values are
+      flag-specific and thus cannot be described in this documentation,
+      but by way of example, setting a flag named "review" to "+" may indicate
+      that the bug/attachment has passed review, while setting it to "-"
+      may indicate that the bug/attachment has failed review.
+    </P
+><P
+>&#13;      To unset a flag, click its drop-down menu and select the blank value.
+    </P
+><P
+>&#13;      If your administrator has enabled requests for a flag, request a flag
+      by selecting "?" from the drop-down menu and then entering the username
+      of the user you want to set the flag in the text field next to the menu.
+    </P
+><P
+>&#13;      A set flag appears in bug reports and on "edit attachment" pages with the
+      abbreviated username of the user who set the flag prepended to the
+      flag name. For example, if Jack sets a "review" flag to "+", it appears
+      as Jack: review [ + ]
+    </P
+><P
+>&#13;      A requested flag appears with the user who requested the flag prepended
+      to 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).
+    </P
+></DIV
+><DIV
+CLASS="section"
+><HR><H2
+CLASS="section"
+><A
+NAME="whining"
+>6.13. Whining</A
+></H2
+><P
+>&#13;      Whining is a feature in Bugzilla that can regularly annoy users at 
+      specified times.  Using this feature, users can execute saved searches 
+      at specific times (i.e. the 15th of the month at midnight) or at 
+      regular intervals (i.e. every 15 minutes on Sundays).  The results of the
+      searches are sent to the user, either as a single email or as one email 
+      per bug, along with some descriptive text.
+    </P
+><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"
+><P
+>&#13;        Throughout this section it will be assumed that all users are members 
+        of the bz_canusewhines group, membership in which is required in order 
+        to use the Whining system.  You can easily make all users members of 
+        the bz_canusewhines group by setting the User RegExp to ".*" (without 
+        the quotes).
+      </P
+><P
+>&#13;        Also worth noting is the bz_canusewhineatothers group.  Members of this
+        group can create whines for any user or group in Bugzilla using a 
+        extended form of the whining interface.  Features only available to 
+        members of the bz_canusewhineatothers group will be noted in the 
+        appropriate places.
+      </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="note"
+><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
+>&#13;        For whining to work, a special Perl script must be executed at regular
+        intervals.  More information on this is available in 
+        <A
+HREF="#installation-whining"
+>Section 2.3.4</A
+>.
+      </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="note"
+><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
+>&#13;        This section does not cover the whineatnews.pl script.  See
+        <A
+HREF="#installation-whining-cron"
+>Section 2.3.3</A
+> for more information on 
+        The Whining Cron.
+      </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
+NAME="whining-overview"
+>6.13.1. The Event</A
+></H3
+><P
+>&#13;        The whining system defines an "Event" as one or more queries being 
+        executed at regular intervals, with the results of said queries (if
+        there are any) being emailed to the user.  Events are created by 
+        clicking on the "Add new event" button.
+      </P
+><P
+>&#13;        Once a new event is created, the first thing to set is the "Email 
+        subject line".  The contents of this field will be used in the subject
+        line of every email generated by this event.  In addition to setting a 
+        subject, space is provided to enter some descriptive text that will be 
+        included at the top of each message (to help you in understanding why 
+        you received the email in the first place).
+      </P
+><P
+>&#13;        The next step is to specify when the Event is to be run (the Schedule) 
+        and what searches are to be performed (the Queries).
+      </P
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
+NAME="whining-schedule"
+>6.13.2. Whining Schedule</A
+></H3
+><P
+>&#13;         Each whining event is associated with zero or more schedules.  A 
+         schedule is used to specify when the query (specified below) is to be
+         run.  A new event starts out with no schedules (which means it will 
+         never run, as it is not scheduled to run).  To add a schedule, press
+         the "Add a new schedule" button.
+      </P
+><P
+>&#13;         Each schedule includes an interval, which you use to tell Bugzilla 
+         when the event should be run.  An event can be run on certain days of
+         the week, certain days of the month, during weekdays (defined as 
+         Monday through Friday), or every day.
+      </P
+><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"
+><P
+>&#13;          Be careful if you set your event to run on the 29th, 30th, or 31st of
+          the month, as your event may not run exactly when expected.  If you 
+          want your event to run on the last day of the month, select "Last day
+          of the month" as the interval.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+><P
+>&#13;        Once you have specified the day(s) on which the event is to be run, you
+        should now specify the time at which the event is to be run.  You can 
+        have the event run at a certain hour on the specified day(s), or 
+        every hour, half-hour, or quarter-hour on the specified day(s).
+      </P
+><P
+>&#13;        If a single schedule does not execute an event as many times as you 
+        would want, you can create another schedule for the same event.  For 
+        example, if you want to run an event on days whose numbers are
+        divisible by seven, you would need to add four schedules to the event,
+        setting the schedules to run on the 7th, 14th, 21st, and 28th (one day 
+        per schedule) at whatever time (or times) you choose.
+      </P
+><DIV
+CLASS="note"
+><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
+>&#13;          If you are a member of the bz_canusewhineatothers group, then you
+          will be presented with another option: "Mail to".  Using this you 
+          can control who will receive the emails generated by this event.  You
+          can choose to send the emails to a single user (identified by email 
+          address) or a single group (identified by group name).  To send to 
+          multiple users or groups, create a new schedule for each additional 
+          user/group.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
+NAME="whining-query"
+>6.13.3. Whining Queries</A
+></H3
+><P
+>&#13;        Each whining event is associated with zero or more queries.  A query is
+        a saved search that is executed on the schedule specified (see above).
+        You start out with zero queries attached to the event (which means that
+        the event will not run, as there will never be any results to return).
+        To add a query, press the "Add a new query" button.
+      </P
+><P
+>&#13;        The first field to examine in your new query is the Sort field.  Queries
+        are executed, and results returned, in the order specified by the Sort 
+        field.  Queries with lower Sort values will run before queries with 
+        higher Sort values.
+      </P
+><P
+>&#13;        The next field to examine is the Search field.  This is where you 
+        choose the actual search that is to be run.  Instead of defining search
+        parameters here, you are asked to choose from the list of saved 
+        searches (the same list that appears at the bottom of every Bugzilla 
+        page).  You are only allowed to choose from searches that you have 
+        saved yourself (the default saved search, "My Bugs", is not a valid 
+        choice).  If you do not have any saved searches, you can take this 
+        opportunity to create one (see <A
+HREF="#list"
+>Section 6.6</A
+>).
+      </P
+><DIV
+CLASS="note"
+><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
+>&#13;          When running queries, the whining system acts as if you are the user
+          executing the query.  This means that the whining system will ignore
+          bugs that match your query, but that you can not access.
         </P
+></TD
+></TR
+></TABLE
 ></DIV
+><P
+>&#13;        Once you have chosen the saved search to be executed, give the query a 
+        descriptive title.  This title will appear in the email, above the 
+        results of the query.  If you choose "One message per bug", the query 
+        title will appear at the top of each email that contains a bug matching
+        your query.
+      </P
+><P
+>&#13;        Finally, decide if the results of the query should be sent in a single
+        email, or if each bug should appear in its own email.
+      </P
 ><DIV
-CLASS="section"
-><HR><H4
-CLASS="section"
-><A
-NAME="AEN2414"
->6.11.2.2. Creating New Data Sets</A
-></H4
+CLASS="warning"
 ><P
->&#13;          You may also create new data sets of your own. To do this,
-          click the "create a new data set" link on the Create Chart page.
-          This takes you to a search-like interface where you can define
-          the search that Bugzilla will plot. At the bottom of the page,
-          you choose the category, sub-category and name of your new
-          data set. 
-        </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"
 ><P
->&#13;          If you have sufficient permissions, you can make the data set public,
-          and reduce the frequency of data collection to less than the default
-          seven days.
+>&#13;          Think carefully before checking the "One message per bug" box.  If
+          you create a query that matches thousands of bugs, you will receive 
+          thousands of emails!
         </P
-></DIV
+></TD
+></TR
+></TABLE
 ></DIV
 ></DIV
 ><DIV
 CLASS="section"
-><HR><H2
+><HR><H3
 CLASS="section"
 ><A
-NAME="flags"
->6.12. Flags</A
-></H2
-><P
->&#13;      A flag is a kind of status that can be set on bugs or attachments
-      to indicate that the bugs/attachments are in a certain state.
-      Each installation can define its own set of flags that can be set
-      on bugs or attachments.
-    </P
-><P
->&#13;      If your installation has defined a flag, you can set or unset that flag,
-      and if your administrator has enabled requesting of flags, you can submit
-      a request for another user to set the flag.
-    </P
-><P
->&#13;      To set a flag, select either "+" or "-" from the drop-down menu next to
-      the name of the flag in the "Flags" list.  The meaning of these values are
-      flag-specific and thus cannot be described in this documentation,
-      but by way of example, setting a flag named "review" to "+" may indicate
-      that the bug/attachment has passed review, while setting it to "-"
-      may indicate that the bug/attachment has failed review.
-    </P
-><P
->&#13;      To unset a flag, click its drop-down menu and select the blank value.
-    </P
+NAME="AEN2552"
+>6.13.4. Saving Your Changes</A
+></H3
 ><P
->&#13;      If your administrator has enabled requests for a flag, request a flag
-      by selecting "?" from the drop-down menu and then entering the username
-      of the user you want to set the flag in the text field next to the menu.
-    </P
+>&#13;        Once you have defined at least one schedule, and created at least one 
+        query, go ahead and "Update/Commit".  This will save your Event and make
+        it available for immediate execution.
+      </P
+><DIV
+CLASS="note"
 ><P
->&#13;      A set flag appears in bug reports and on "edit attachment" pages with the
-      abbreviated username of the user who set the flag prepended to the
-      flag name. For example, if Jack sets a "review" flag to "+", it appears
-      as Jack: review [ + ]
-    </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
->&#13;      A requested flag appears with the user who requested the flag prepended
-      to 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).
-    </P
+>&#13;          If you ever feel like deleting your event, you may do so using the 
+          "Remove Event" button in the upper-right corner of each Event.  You 
+          can also modify an existing event, so long as you "Update/Commit" 
+          after completing your modifications.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
 ></DIV
 ></DIV
 ><DIV
@@ -13183,6 +14085,12 @@ HREF="#faq-admin-enable-unconfirmed"
 >&#13;            How do I make it so that bugs can have an UNCONFIRMED status?
           </A
 ></DT
+><DT
+>A.3.5. <A
+HREF="#faq-admin-moving"
+>&#13;            How do I move a Bugzilla installation from one machine to another?
+          </A
+></DT
 ></DL
 ></DD
 ><DT
@@ -14274,7 +15182,7 @@ CLASS="computeroutput"
 >&#38;ctype=rdf</SAMP
 > to the URL. RDF
             is meant to be machine readable and thus it is assumed that the
-            URL would be generated programatically so there is no user visible
+            URL would be generated programmatically so there is no user visible
             link to this format.
           </P
 ><P
@@ -14772,6 +15680,174 @@ TARGET="_top"
           </P
 ></DIV
 ></DIV
+><DIV
+CLASS="qandaentry"
+><DIV
+CLASS="question"
+><P
+><A
+NAME="faq-admin-moving"
+></A
+><B
+>A.3.5. </B
+>
+            How do I move a Bugzilla installation from one machine to another?
+          </P
+></DIV
+><DIV
+CLASS="answer"
+><P
+><B
+> </B
+>
+            Use mysqldump to make a backup of the bugs database. For a
+            typical Bugzilla setup, such a command might look like this:
+            <TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+>&#13;/usr/bin/mysqldump -u(username) -p(password) --database bugs &#62; bugzilla-backup.txt
+            </PRE
+></FONT
+></TD
+></TR
+></TABLE
+>
+            See the <A
+HREF="http://dev.mysql.com/doc/mysql/en/mysqldump.html"
+TARGET="_top"
+>&#13;            mysqldump documentation</A
+> for more information on using 
+            the tool, including how to restore your copy onto the destination
+            machine.
+          </P
+><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"
+><P
+>&#13;              Depending on the size of your database, and the power of your
+              machine, the mysqldump command could be running long enough
+              that the password would be visible to someone using the
+              <B
+CLASS="command"
+>ps</B
+> command. If you are on a multi-user
+              machine, and this is a concern to you, create an entry in
+              the file <TT
+CLASS="filename"
+>~/.my.cnf</TT
+> that looks like this:
+              <TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+>&#13;[mysqldump]
+user=bugs
+password=mypassword
+              </PRE
+></FONT
+></TD
+></TR
+></TABLE
+>
+              and then leave the 'user' and 'password' params out of the
+              command line.
+            </P
+></TD
+></TR
+></TABLE
+></DIV
+><P
+>&#13;            On your new machine, follow the instructions found in <A
+HREF="#installing-bugzilla"
+>Chapter 2</A
+> as far as setting up the physical
+            environment of the new machine with perl, webserver, modules, etc. 
+            Having done that, you can either: copy your entire Bugzilla
+            directory from the old machine to a new one (if you want to keep
+            your existing code and modifications), or download a newer version
+            (if you are planning to upgrade at the same time). Even if you are
+            upgrading to clean code, you will still want to bring over the 
+            <TT
+CLASS="filename"
+>localconfig</TT
+> file, and the 
+            <TT
+CLASS="filename"
+>data</TT
+> directory from the
+            old machine, as they contain configuration information that you 
+            probably won't want to re-create.
+          </P
+><DIV
+CLASS="note"
+><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
+>&#13;              If the location or port number of your SQL server changed
+              as part of the move, you'll need to update the appropriate
+              variables in localconfig before taking the next step.
+            </P
+></TD
+></TR
+></TABLE
+></DIV
+><P
+>&#13;            Once you have your code in place, and your database has
+            been restored from the backup you made in step 1, run
+            <B
+CLASS="command"
+>checksetup.pl</B
+>. This will upgrade your
+            database (if necessary), rebuild your templates, etc.
+          </P
+></DIV
+></DIV
 ></DIV
 ><DIV
 CLASS="qandadiv"
@@ -15475,7 +16551,7 @@ CLASS="answer"
             regularly updated at intervals from the main database.
           </P
 ><P
->&#13;            MySQL has some synchronization features builtin to the
+>&#13;            MySQL has some synchronization features built-in to the
             latest releases. It would be great if someone looked into
             the possibilities there and provided a report to the
             newsgroup on how to effectively synchronize two Bugzilla
@@ -15603,7 +16679,7 @@ CLASS="answer"
 ><P
 >&#13;            Microsoft has some advice on this matter, as well:
             <A
-NAME="AEN2825"
+NAME="AEN2975"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -16105,13 +17181,13 @@ TARGET="_top"
             enhancement for Bugzilla.
           </P
 ><P
->&#13;            You can view bugs marked for 2.20 release
+>&#13;            You can view bugs marked for 2.20.1 release
             <A
 HREF="http://bugzilla.mozilla.org/buglist.cgi?product=Bugzilla&#38;target_milestone=Bugzilla+&#38;bz-nextver;"
 TARGET="_top"
 >here</A
 >.
-            This list includes bugs for the 2.20 release that have already
+            This list includes bugs for the 2.20.1 release that have already
             been fixed and checked into CVS. Please consult the
             <A
 HREF="http://www.bugzilla.org/"
@@ -16317,6 +17393,27 @@ CLASS="filename"
     fix the problem. If not, see below for some commonly-encountered 
     errors. If that doesn't help, post the errors to the newsgroup.
     </P
+><P
+>&#13;      Bugzilla can also log all user-based errors (and many code-based errors)
+      that occur, without polluting the web server error log.  To enable
+      Bugzilla error logging, create a file that Bugzilla can write to, named
+      <TT
+CLASS="filename"
+>errorlog</TT
+>, in the Bugzilla <TT
+CLASS="filename"
+>data</TT
+>
+      directory.  Errors will be logged as they occur, and will include the type
+      of the error, the IP address and username (if available) of the user who
+      triggered the error, and the values of all environment variables; if a
+      form was being submitted, the data in the form will also be included.
+      To disable error logging, delete or rename the
+      <TT
+CLASS="filename"
+>errorlog</TT
+> file.
+    </P
 ></DIV
 ><DIV
 CLASS="section"
@@ -16700,7 +17797,7 @@ NAME="trbl-relogin-everyone-share"
 >Example B-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B
 ></P
 ><A
-NAME="AEN3028"
+NAME="AEN3182"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -16741,7 +17838,7 @@ NAME="trbl-relogin-everyone-restrict"
 >Example B-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B
 ></P
 ><A
-NAME="AEN3035"
+NAME="AEN3189"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -16783,7 +17880,7 @@ CLASS="section"
 ><HR><H2
 CLASS="section"
 ><A
-NAME="AEN3042"
+NAME="AEN3196"
 >B.9. Some users are constantly being forced to relogin</A
 ></H2
 ><P
@@ -17646,7 +18743,7 @@ NAME="gfdl"
 ><P
 >Version 1.1, March 2000</P
 ><A
-NAME="AEN3218"
+NAME="AEN3372"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -18109,7 +19206,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="AEN3308"
+NAME="AEN3462"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -18146,7 +19243,7 @@ CLASS="glossdiv"
 ><H1
 CLASS="glossdiv"
 ><A
-NAME="AEN3313"
+NAME="AEN3467"
 >0-9, high ascii</A
 ></H1
 ><DL
@@ -19060,7 +20157,7 @@ NAME="gloss-zarro"
         Terry had the following to say:
         </P
 ><A
-NAME="AEN3559"
+NAME="AEN3713"
 ></A
 ><TABLE
 BORDER="0"
diff --git a/docs/html/about.html b/docs/html/about.html
index 1369dfee43f3f1f26d30f88727423feeebcb0bda..679cd7de3f5208a024495d959520d57c924ce2e6 100644
--- a/docs/html/about.html
+++ b/docs/html/about.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,12 +7,12 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
 REL="PREVIOUS"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -38,7 +38,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -157,7 +157,7 @@ ACCESSKEY="N"
 WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TD
 ><TD
diff --git a/docs/html/administration.html b/docs/html/administration.html
index 81e2806867260fb922d62fe376db02ff91796791..69ba17356b9a21fde3f032af33bcab77d580cfe4 100644
--- a/docs/html/administration.html
+++ b/docs/html/administration.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -180,22 +180,22 @@ HREF="groups.html"
 ><DL
 ><DT
 >3.10.1. <A
-HREF="groups.html#AEN1360"
+HREF="groups.html#AEN1447"
 >Creating Groups</A
 ></DT
 ><DT
 >3.10.2. <A
-HREF="groups.html#AEN1387"
+HREF="groups.html#AEN1474"
 >Assigning Users to Groups</A
 ></DT
 ><DT
 >3.10.3. <A
-HREF="groups.html#AEN1397"
+HREF="groups.html#AEN1484"
 >Assigning Group Controls to Products</A
 ></DT
 ><DT
 >3.10.4. <A
-HREF="groups.html#AEN1415"
+HREF="groups.html#AEN1502"
 >Common Applications of Group Controls</A
 ></DT
 ></DL
diff --git a/docs/html/bug_page.html b/docs/html/bug_page.html
index e9230957b2ea5a77b797b3f037fa87c8f16d8da0..f31b3c6451f8ba825eed9a3483c21b0c9101df0a 100644
--- a/docs/html/bug_page.html
+++ b/docs/html/bug_page.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -310,8 +310,12 @@ BORDER="0"
 >&#13;        <EM
 >Attachments:</EM
 >
-        You can attach files (e.g. testcases or patches) to bugs. If there
-        are any attachments, they are listed in this section.</P
+          You can attach files (e.g. testcases or patches) to bugs. If there
+          are any attachments, they are listed in this section.  Attachments are
+          normally stored in the Bugzilla database, unless they are marked as
+          Big Files, which are stored directly on disk and (unlike attachments
+          kept in the database) may be deleted at some future time.
+        </P
 ></LI
 ><LI
 ><P
diff --git a/docs/html/bugreports.html b/docs/html/bugreports.html
index 2be9d14c318bbcb3eadbf8add9c3c7a5ae90e008..31d94663bb02b9a7e876f6942ee718e82c639404 100644
--- a/docs/html/bugreports.html
+++ b/docs/html/bugreports.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/cmdline-bugmail.html b/docs/html/cmdline-bugmail.html
index 704288628cb7dcb5687de074bd22fcde72e85abe..3e211a952d8417c10a8a66cf26bd68521c46a6c3 100644
--- a/docs/html/cmdline-bugmail.html
+++ b/docs/html/cmdline-bugmail.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/cmdline.html b/docs/html/cmdline.html
index 2a8ea82a2bae2e9693a1109691e4f1356e9bc051..9848dcad53b46d4098bcbc96cd08b932c2848bfe 100644
--- a/docs/html/cmdline.html
+++ b/docs/html/cmdline.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/components.html b/docs/html/components.html
index f89da18fb8047b5bccf730ceb7167b503ced3753..05530f43c7f5a38872413d9c198b2b9db9825de4 100644
--- a/docs/html/components.html
+++ b/docs/html/components.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -89,12 +89,12 @@ NAME="components"
     natural divisions of responsibility within your Product or
     company.</P
 ><P
->&#13;    Each component has a owner and (if you turned it on in the parameters),
-    a QA Contact. The owner should be the primary person who fixes bugs in
+>&#13;    Each component has a default assignee and (if you turned it on in the parameters),
+    a QA Contact. The default assignee should be the primary person who fixes bugs in
     that component. The QA Contact should be the person who will ensure
-    these bugs are completely fixed. The Owner, QA Contact, and Reporter
+    these bugs are completely fixed. The Assignee, QA Contact, and Reporter
     will get email when new bugs are created in this Component and when
-    these bugs change. Default Owner and Default QA Contact fields only
+    these bugs change. Default Assignee and Default QA Contact fields only
     dictate the 
     <EM
 >default assignments</EM
@@ -119,9 +119,9 @@ TYPE="1"
 ><LI
 ><P
 >Fill out the "Component" field, a short "Description", 
-        the "Initial Owner" and "Initial QA Contact" (if enabled.) 
+        the "Default Assignee" and "Default QA Contact" (if enabled.) 
         The Component and Description fields may contain HTML; 
-        the "Initial Owner" field must be a login name
+        the "Default Assignee" field must be a login name
         already existing in the database. 
         </P
 ></LI
diff --git a/docs/html/configuration.html b/docs/html/configuration.html
index 27212c9314365f859650f4de6e9228c0c90e77fb..5d9c8a6663a7fb1f41e9099074d5c73a82304f8d 100644
--- a/docs/html/configuration.html
+++ b/docs/html/configuration.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -123,16 +123,44 @@ NAME="localconfig"
 >2.2.1. localconfig</A
 ></H2
 ><P
->&#13;        Once you run <TT
+>&#13;        You should now run <TT
 CLASS="filename"
 >checksetup.pl</TT
-> with all the correct 
-        modules installed, it displays a message about, and write out a 
-        file called, <TT
+> again, this time
+        without the <VAR
+CLASS="literal"
+>--check-modules</VAR
+> switch.
+      </P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="screen"
+><SAMP
+CLASS="prompt"
+>bash#</SAMP
+> ./checksetup.pl</PRE
+></FONT
+></TD
+></TR
+></TABLE
+><P
+>&#13;        This time, <TT
+CLASS="filename"
+>checksetup.pl</TT
+> should tell you that all
+        the correct modules are installed and will display a message about, and
+        write out a  file called, <TT
 CLASS="filename"
 >localconfig</TT
->. This file contains
-        the default settings for a number of Bugzilla parameters.
+>. This file
+        contains the default settings for a number of Bugzilla parameters.
       </P
 ><P
 >&#13;        Load this file in your editor. The only value you 
@@ -168,9 +196,27 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="mysql"
->2.2.2. MySQL</A
+NAME="database-engine"
+>2.2.2. Database Server</A
 ></H2
+><P
+>This section deals with configuring your database server for use
+      with Bugzilla. Currently <A
+HREF="configuration.html#mysql"
+>Section 2.2.2.1</A
+> and
+      <A
+HREF="configuration.html#postgresql"
+>Section 2.2.2.2</A
+> are available.</P
+><DIV
+CLASS="section"
+><H3
+CLASS="section"
+><A
+NAME="mysql"
+>2.2.2.1. MySQL</A
+></H3
 ><DIV
 CLASS="caution"
 ><P
@@ -192,36 +238,36 @@ ALT="Caution"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->&#13;          MySQL's default configuration is very insecure.
-          <A
+>&#13;            MySQL's default configuration is very insecure.
+            <A
 HREF="security-mysql.html"
 >Section 4.2</A
 > has some good information for
-          improving your installation's security.
-        </P
+            improving your installation's security.
+          </P
 ></TD
 ></TR
 ></TABLE
 ></DIV
 ><DIV
 CLASS="section"
-><H3
+><H4
 CLASS="section"
 ><A
 NAME="install-setupdatabase"
->2.2.2.1. Allow large attachments</A
-></H3
+>2.2.2.1.1. Allow large attachments</A
+></H4
 ><P
->&#13;          By default, MySQL will only accept packets up to 64Kb in size.
-          If you want to have attachments larger than this, you will need
-          to modify your <TT
+>&#13;            By default, MySQL will only accept packets up to 64Kb in size.
+            If you want to have attachments larger than this, you will need
+            to modify your <TT
 CLASS="filename"
 >/etc/my.cnf</TT
 > as below.
-        </P
+          </P
 ><P
->&#13;          If you are using MySQL 4.0 or newer, enter:
-        </P
+>&#13;            If you are using MySQL 4.0 or newer, enter:
+          </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -240,8 +286,8 @@ CLASS="screen"
 ></TR
 ></TABLE
 ><P
->&#13;          If you are using an older version of MySQL, enter:
-        </P
+>&#13;            If you are using an older version of MySQL, enter:
+          </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -260,36 +306,65 @@ CLASS="screen"
 ></TR
 ></TABLE
 ><P
->&#13;          There is also a parameter in Bugzilla called 'maxattachmentsize'
-          (default = 1000 Kb) that controls the maximum allowable attachment
-          size. Attachments larger than <EM
+>&#13;            There is also a parameter in Bugzilla called 'maxattachmentsize'
+            (default = 1000 Kb) that controls the maximum allowable attachment
+            size. Attachments larger than <EM
 >either</EM
 > the 
-          'max_allowed_packet' or 'maxattachmentsize' value will not be
-          accepted by Bugzilla.
-        </P
+            'max_allowed_packet' or 'maxattachmentsize' value will not be
+            accepted by Bugzilla.
+          </P
+><DIV
+CLASS="note"
+><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
+>&#13;              This does not affect Big Files, attachments that are stored directly
+              on disk instead of in the database.  Their maximum size is
+              controlled using the 'maxlocalattachment' parameter.
+            </P
+></TD
+></TR
+></TABLE
+></DIV
 ></DIV
 ><DIV
 CLASS="section"
-><H3
+><H4
 CLASS="section"
 ><A
-NAME="AEN401"
->2.2.2.2. Allow small words in full-text indexes</A
-></H3
+NAME="AEN432"
+>2.2.2.1.2. Allow small words in full-text indexes</A
+></H4
 ><P
 >By default, words must be at least four characters in length
-        in order to be indexed by MySQL's full-text indexes. This causes
-        a lot of Bugzilla specific words to be missed, including "cc",
-        "ftp" and "uri".</P
+          in order to be indexed by MySQL's full-text indexes. This causes
+          a lot of Bugzilla specific words to be missed, including "cc",
+          "ftp" and "uri".</P
 ><P
 >MySQL can be configured to index those words by setting the
-        ft_min_word_len param to the minimum size of the words to index.
-        This can be done by modifying the <TT
+          ft_min_word_len param to the minimum size of the words to index.
+          This can be done by modifying the <TT
 CLASS="filename"
 >/etc/my.cnf</TT
 >
-        according to the example below:</P
+          according to the example below:</P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -309,12 +384,12 @@ CLASS="screen"
 ></TABLE
 ><P
 >Rebuilding the indexes can be done based on documentation found at
-        <A
+          <A
 HREF="http://www.mysql.com/doc/en/Fulltext_Fine-tuning.html"
 TARGET="_top"
 >http://www.mysql.com/doc/en/Fulltext_Fine-tuning.html</A
 >.
-        </P
+          </P
 ><DIV
 CLASS="note"
 ><P
@@ -336,8 +411,8 @@ ALT="Note"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->&#13;            The ft_min_word_len parameter is only suported in MySQL v4 or higher.
-          </P
+>&#13;              The ft_min_word_len parameter is only suported in MySQL v4 or higher.
+            </P
 ></TD
 ></TR
 ></TABLE
@@ -345,25 +420,25 @@ VALIGN="TOP"
 ></DIV
 ><DIV
 CLASS="section"
-><H3
+><H4
 CLASS="section"
 ><A
-NAME="AEN411"
->2.2.2.3. Permit attachments table to grow beyond 4GB</A
-></H3
+NAME="AEN442"
+>2.2.2.1.3. Permit attachments table to grow beyond 4GB</A
+></H4
 ><P
->&#13;          By default, MySQL will limit the size of a table to 4GB.
-          This limit is present even if the underlying filesystem
-          has no such limit.  To set a higher limit, follow these
-          instructions.
-        </P
+>&#13;            By default, MySQL will limit the size of a table to 4GB.
+            This limit is present even if the underlying filesystem
+            has no such limit.  To set a higher limit, follow these
+            instructions.
+          </P
 ><P
->&#13;          Run the <TT
+>&#13;            Run the <TT
 CLASS="filename"
 >MySQL</TT
 > command-line client and
-          enter:
-        </P
+            enter:
+          </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -378,81 +453,109 @@ CLASS="screen"
 CLASS="prompt"
 >mysql&#62;</SAMP
 > ALTER TABLE attachments 
-          AVG_ROW_LENGTH=1000000, MAX_ROWS=20000;
-        </PRE
+            AVG_ROW_LENGTH=1000000, MAX_ROWS=20000;
+          </PRE
 ></FONT
 ></TD
 ></TR
 ></TABLE
 ><P
->&#13;          The above command will change the limit to 20GB. Mysql will have 
-          to make a temporary copy of your entire table to do this. Ideally, 
-          you should do this when your attachments table is still small.
-        </P
+>&#13;            The above command will change the limit to 20GB. Mysql will have 
+            to make a temporary copy of your entire table to do this. Ideally, 
+            you should do this when your attachments table is still small.
+          </P
+><DIV
+CLASS="note"
+><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
+>&#13;              This does not affect Big Files, attachments that are stored directly
+              on disk instead of in the database.
+            </P
+></TD
+></TR
+></TABLE
+></DIV
 ></DIV
 ><DIV
 CLASS="section"
-><H3
+><H4
 CLASS="section"
 ><A
 NAME="install-setupdatabase-adduser"
->2.2.2.4. Add a user to MySQL</A
-></H3
+>2.2.2.1.4. Add a user to MySQL</A
+></H4
 ><P
->&#13;          You need to add a new MySQL user for Bugzilla to use.
-          (It's not safe to have Bugzilla use the MySQL root account.)
-          The following instructions assume the defaults in
-          <TT
+>&#13;            You need to add a new MySQL user for Bugzilla to use.
+            (It's not safe to have Bugzilla use the MySQL root account.)
+            The following instructions assume the defaults in
+            <TT
 CLASS="filename"
 >localconfig</TT
 >; if you changed those,
-          you need to modify the SQL command appropriately. You will
-          need the <VAR
+            you need to modify the SQL command appropriately. You will
+            need the <VAR
 CLASS="replaceable"
 >$db_pass</VAR
 > password you
-          set in <TT
+            set in <TT
 CLASS="filename"
 >localconfig</TT
 > in 
-          <A
+            <A
 HREF="configuration.html#localconfig"
 >Section 2.2.1</A
 >.
-        </P
+          </P
 ><P
->&#13;          We use an SQL <B
+>&#13;            We use an SQL <B
 CLASS="command"
 >GRANT</B
 > command to create
-          a <SPAN
+            a <SPAN
 CLASS="QUOTE"
 >"bugs"</SPAN
 > user. This also restricts the 
-          <SPAN
+            <SPAN
 CLASS="QUOTE"
 >"bugs"</SPAN
 >user to operations within a database
-          called <SPAN
+            called <SPAN
 CLASS="QUOTE"
 >"bugs"</SPAN
 >, and only allows the account
-          to connect from <SPAN
+            to connect from <SPAN
 CLASS="QUOTE"
 >"localhost"</SPAN
 >. Modify it to
-          reflect your setup if you will be connecting from another
-          machine or as a different user.
-        </P
+            reflect your setup if you will be connecting from another
+            machine or as a different user.
+          </P
 ><P
->&#13;          Run the <TT
+>&#13;            Run the <TT
 CLASS="filename"
 >mysql</TT
 > command-line client.
-        </P
+          </P
 ><P
->&#13;          If you are using MySQL 4.0 or newer, enter:
-        </P
+>&#13;            If you are using MySQL 4.0 or newer, enter:
+          </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -467,13 +570,13 @@ CLASS="screen"
 CLASS="prompt"
 >mysql&#62;</SAMP
 > GRANT SELECT, INSERT,
-         UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
-         CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
-         TO bugs@localhost IDENTIFIED BY '<VAR
+           UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
+           CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
+           TO bugs@localhost IDENTIFIED BY '<VAR
 CLASS="replaceable"
 >$db_pass</VAR
 >';
-  <SAMP
+           <SAMP
 CLASS="prompt"
 >mysql&#62;</SAMP
 > FLUSH PRIVILEGES;</PRE
@@ -482,19 +585,19 @@ CLASS="prompt"
 ></TR
 ></TABLE
 ><P
->&#13;          If you are using an older version of MySQL,the
-          <SAMP
+>&#13;            If you are using an older version of MySQL,the
+            <SAMP
 CLASS="computeroutput"
 >LOCK TABLES</SAMP
 > and 
-          <SAMP
+            <SAMP
 CLASS="computeroutput"
 >CREATE TEMPORARY TABLES</SAMP
 >
-          permissions will be unavailable and should be removed from
-          the permissions list. In this case, the following command
-          line can be used:
-        </P
+            permissions will be unavailable and should be removed from
+            the permissions list. In this case, the following command
+            line can be used:
+          </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -509,13 +612,13 @@ CLASS="screen"
 CLASS="prompt"
 >mysql&#62;</SAMP
 > GRANT SELECT, INSERT,
-         UPDATE, DELETE, INDEX, ALTER, CREATE, DROP,
-         REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY
-         '<VAR
+           UPDATE, DELETE, INDEX, ALTER, CREATE, DROP,
+           REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY
+           '<VAR
 CLASS="replaceable"
 >$db_pass</VAR
 >';
-  <SAMP
+           <SAMP
 CLASS="prompt"
 >mysql&#62;</SAMP
 > FLUSH PRIVILEGES;</PRE
@@ -527,10 +630,209 @@ CLASS="prompt"
 ></DIV
 ><DIV
 CLASS="section"
+><H3
+CLASS="section"
+><A
+NAME="postgresql"
+>2.2.2.2. PostgreSQL</A
+></H3
+><DIV
+CLASS="note"
+><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
+>Note if you are using PostgreSQL 8.0.1 or higher, then you
+          will require to use a version of DBD::Pg which is equal to or
+          greater than version 1.41
+          </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="section"
+><H4
+CLASS="section"
+><A
+NAME="AEN483"
+>2.2.2.2.1. Add a User to PostgreSQL</A
+></H4
+><P
+>You need to add a new user to PostgreSQL for the Bugzilla
+          application to use when accessing the database. The following instructions
+          assume the defaults in <TT
+CLASS="filename"
+>localconfig</TT
+>; if you
+          changed those, you need to modify the commands appropriately. You will
+          need the <VAR
+CLASS="replaceable"
+>$db_pass</VAR
+> password you
+          set in <TT
+CLASS="filename"
+>localconfig</TT
+> in 
+          <A
+HREF="configuration.html#localconfig"
+>Section 2.2.1</A
+>.</P
+><P
+>On most systems, to create the user in PostgreSQL, you will need to
+          login as the root user, and then</P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="screen"
+> <SAMP
+CLASS="prompt"
+>bash#</SAMP
+> su - postgres</PRE
+></FONT
+></TD
+></TR
+></TABLE
+><P
+>As the postgres user, you then need to create a new user: </P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="screen"
+> <SAMP
+CLASS="prompt"
+>bash$</SAMP
+> createuser -U postgres -dAP bugs</PRE
+></FONT
+></TD
+></TR
+></TABLE
+><P
+>When asked for a password, provide the password which will be set as
+          <VAR
+CLASS="replaceable"
+>$db_pass</VAR
+> in <TT
+CLASS="filename"
+>localconfig</TT
+>.
+          The created user will have the ability to create databases and will not be
+          able to create new users.</P
+></DIV
+><DIV
+CLASS="section"
+><H4
+CLASS="section"
+><A
+NAME="AEN499"
+>2.2.2.2.2. Configure PostgreSQL</A
+></H4
+><P
+>Now, you will need to edit <TT
+CLASS="filename"
+>pg_hba.conf</TT
+> which is
+          usually located in <TT
+CLASS="filename"
+>/var/lib/pgsql/data/</TT
+>. In this file,
+          you will need to add a new line to it as follows:</P
+><P
+>&#13;            <SAMP
+CLASS="computeroutput"
+>host   all    bugs   127.0.0.1    255.255.255.255  md5</SAMP
+>
+          </P
+><P
+>This means that for TCP/IP (host) connections, allow connections from
+          '127.0.0.1' to 'all' databases on this server from the 'bugs' user, and use
+          password authentication (md5) for that user.</P
+><P
+>If you are using <EM
+>versions of PostgreSQL
+          before version 8</EM
+>, you may also need to edit <TT
+CLASS="filename"
+>postgresql.conf</TT
+>
+          , also usually found in the <TT
+CLASS="filename"
+>/var/lib/pgsql/data/</TT
+> folder.
+          You will need to make a single line change, changing</P
+><P
+>&#13;	    <SAMP
+CLASS="computeroutput"
+># tcpip_socket = false</SAMP
+>
+          </P
+><P
+>to</P
+><P
+>&#13;	    <SAMP
+CLASS="computeroutput"
+>tcpip_socket = true</SAMP
+>
+          </P
+><P
+>Now, you will need to restart PostgreSQL, but you will need to fully
+          stop and start the server rather than just restarting due to the possibility
+          of a change to <TT
+CLASS="filename"
+>postgresql.conf</TT
+>. After the server has
+          restarted, you will need to edit <TT
+CLASS="filename"
+>localconfig</TT
+>, finding
+          the <VAR
+CLASS="literal"
+>$db_driver</VAR
+> variable and setting it to
+          <VAR
+CLASS="literal"
+>Pg</VAR
+> and changing the password in <VAR
+CLASS="literal"
+>$db_pass</VAR
+>
+          to the one you picked previously, while setting up the account.</P
+></DIV
+></DIV
+></DIV
+><DIV
+CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN446"
+NAME="AEN522"
 >2.2.3. checksetup.pl</A
 ></H2
 ><P
@@ -1016,7 +1318,6 @@ CLASS="programlisting"
   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/runtests.sh filter_deny
   ns_register_filter preauth GET /bugzilla/data/* filter_deny
   ns_register_filter preauth GET /bugzilla/template/* filter_deny
 
diff --git a/docs/html/conventions.html b/docs/html/conventions.html
index e8b445f7d2fd7f81e3020275b1b852dc8ca71809..5e4113b389a34bb65a21376a0764caa2977968f1 100644
--- a/docs/html/conventions.html
+++ b/docs/html/conventions.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/copyright.html b/docs/html/copyright.html
index ec110ef94f143b253a35c867ad80955ddeb0663c..f4ee24b56779abdef8e3ae2a5807437e650dc5e3 100644
--- a/docs/html/copyright.html
+++ b/docs/html/copyright.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/credits.html b/docs/html/credits.html
index b7a20b1e0d4b8adc70580e244a9770bb194ccb69..81432a8387059b049e4241dba9034e188f3fe558 100644
--- a/docs/html/credits.html
+++ b/docs/html/credits.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/cust-change-permissions.html b/docs/html/cust-change-permissions.html
index 61d66720152953f552e60e1017b8120f7348b3d1..cdbbe7bd3b865fd877a15a26a06b36bfacada0f3 100644
--- a/docs/html/cust-change-permissions.html
+++ b/docs/html/cust-change-permissions.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -157,7 +157,7 @@ WIDTH="100%"
 COLOR="#000000"
 ><PRE
 CLASS="programlisting"
->    # Allow the owner to change anything.
+>    # Allow the assignee to change anything.
     if ($ownerid eq $whoid) {
         return 1;
     }</PRE
diff --git a/docs/html/cust-hooks.html b/docs/html/cust-hooks.html
index 84f033ba2b7cb49a52a3772885269230f0647d0f..51b67f114c3e73e4dac77cddd4a89bc33521b4c1 100644
--- a/docs/html/cust-hooks.html
+++ b/docs/html/cust-hooks.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/cust-templates.html b/docs/html/cust-templates.html
index ad21309136aecb44da1c2694b408cedf3997888a..53007ed8dfbf8dc33ffc1c6eb41d2443f7c3174f 100644
--- a/docs/html/cust-templates.html
+++ b/docs/html/cust-templates.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -425,7 +425,7 @@ TARGET="_top"
         to properly HTML filter data that has been passed into the template.
         This means that if the data can possibly contain special HTML characters
         such as &#60;, and the data was not intended to be HTML, they need to be
-        converted to entity form, ie &#38;lt;.  You use the 'html' filter in the
+        converted to entity form, i.e. &#38;lt;.  You use the 'html' filter in the
         Template Toolkit to do this.  If you forget, you may open up
         your installation to cross-site scripting attacks.
       </P
@@ -433,7 +433,7 @@ TARGET="_top"
 >&#13;        Also note that Bugzilla adds a few filters of its own, that are not
         in standard Template Toolkit.  In particular, the 'url_quote' filter
         can convert characters that are illegal or have special meaning in URLs,
-        such as &#38;, to the encoded form, ie %26.  This actually encodes most
+        such as &#38;, to the encoded form, i.e. %26.  This actually encodes most
         characters (but not the common ones such as letters and numbers and so
         on), including the HTML-special characters, so there's never a need to
         HTML filter afterwards.
diff --git a/docs/html/customization.html b/docs/html/customization.html
index 5185b70dc490a2cceaeb67cea884ffdc18ecee80..d28d999242c10c4b7dc8d857cd745441d0fe9a81 100644
--- a/docs/html/customization.html
+++ b/docs/html/customization.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/dbdoc.html b/docs/html/dbdoc.html
index 5ddb385e6e1e9a05a9aaec86d2ea06df7fbc5b8a..778b02db5d4587ab2f45a0949a43a23e906f2496 100644
--- a/docs/html/dbdoc.html
+++ b/docs/html/dbdoc.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -139,7 +139,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1986"
+NAME="AEN2071"
 >5.5.1. Bugzilla Database Basics</A
 ></H2
 ><P
@@ -251,7 +251,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN2013"
+NAME="AEN2098"
 >5.5.1.1. Bugzilla Database Tables</A
 ></H3
 ><P
diff --git a/docs/html/dbmodify.html b/docs/html/dbmodify.html
index 13bbe9e3f4dcbd6d9a779c411e451e9b54645ca0..76c45d07e2b70e89d170e361227a9494a216f155 100644
--- a/docs/html/dbmodify.html
+++ b/docs/html/dbmodify.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/disclaimer.html b/docs/html/disclaimer.html
index 43c38ef8c8669c1a406203a132ecf961d9206f9d..220d6c2e62d2c712f351d9bf51b831cc0e73cc7c 100644
--- a/docs/html/disclaimer.html
+++ b/docs/html/disclaimer.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/extraconfig.html b/docs/html/extraconfig.html
index 621480b940c8b58aaf334308688b5500c3d02d81..8fc467a7719101b69e75325f918f6a8da1baa01b 100644
--- a/docs/html/extraconfig.html
+++ b/docs/html/extraconfig.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -89,7 +89,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN570"
+NAME="AEN646"
 >2.3.1. Bug Graphs</A
 ></H2
 ><P
@@ -185,7 +185,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN583"
+NAME="AEN659"
 >2.3.2. Dependency Charts</A
 ></H2
 ><P
@@ -255,7 +255,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN599"
+NAME="installation-whining-cron"
 >2.3.3. The Whining Cron</A
 ></H2
 ><P
@@ -324,8 +324,112 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
+NAME="installation-whining"
+>2.3.4. Whining</A
+></H2
+><P
+>&#13;        As of Bugzilla 2.20, users can configure Bugzilla to regularly annoy 
+        them at regular intervals, by having Bugzilla execute saved searches
+        at certain times and emailing the results to the user.  This is known
+        as "Whining".  The process of configuring Whining is described 
+        in <A
+HREF="whining.html"
+>Section 6.13</A
+>, but for it to work a Perl script must be
+        executed at regular intervals.
+      </P
+><P
+>&#13;        This can be done by adding the following command as a daily
+        crontab entry, in the same manner as explained above for bug
+        graphs. This example runs it every 15 minutes. 
+      </P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+>*/15 * * * * cd &#60;your-bugzilla-directory&#62; ; ./whine.pl</PRE
+></FONT
+></TD
+></TR
+></TABLE
+><DIV
+CLASS="note"
+><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
+>&#13;          Whines can be executed as often as every 15 minutes, so if you specify
+          longer intervals between executions of whine.pl, some users may not 
+          be whined at as often as they would expect.  Depending on the person,
+          this can either be a very Good Thing or a very Bad Thing.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="note"
+><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
+>&#13;          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
+          <A
+HREF="http://www.nncron.ru/"
+TARGET="_top"
+>nncron</A
+>.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
 NAME="patch-viewer"
->2.3.4. Patch Viewer</A
+>2.3.5. Patch Viewer</A
 ></H2
 ><P
 >&#13;        Patch Viewer is the engine behind Bugzilla's graphical display of
@@ -380,7 +484,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="bzldap"
->2.3.5. LDAP Authentication</A
+>2.3.6. LDAP Authentication</A
 ></H2
 ><P
 >LDAP authentication is a module for Bugzilla's plugin 
@@ -594,7 +698,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="apache-addtype"
->2.3.6. Serving Alternate Formats with the right MIME type</A
+>2.3.7. Serving Alternate Formats with the right MIME type</A
 ></H2
 ><P
 >&#13;        Some Bugzilla pages have alternate formats, other than just plain
diff --git a/docs/html/faq.html b/docs/html/faq.html
index 044d588f5b98d5672f2a6833f27074e2833769d7..0d45be524142c6586ffa8e750b0e1cdcea143083 100644
--- a/docs/html/faq.html
+++ b/docs/html/faq.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,13 +7,13 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
 REL="PREVIOUS"
-TITLE="Flags"
-HREF="flags.html"><LINK
+TITLE="Whining"
+HREF="whining.html"><LINK
 REL="NEXT"
 TITLE="Troubleshooting"
 HREF="troubleshooting.html"></HEAD
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -46,7 +46,7 @@ WIDTH="10%"
 ALIGN="left"
 VALIGN="bottom"
 ><A
-HREF="flags.html"
+HREF="whining.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
@@ -322,6 +322,12 @@ HREF="faq.html#faq-admin-enable-unconfirmed"
 >&#13;            How do I make it so that bugs can have an UNCONFIRMED status?
           </A
 ></DT
+><DT
+>A.3.5. <A
+HREF="faq.html#faq-admin-moving"
+>&#13;            How do I move a Bugzilla installation from one machine to another?
+          </A
+></DT
 ></DL
 ></DD
 ><DT
@@ -1413,7 +1419,7 @@ CLASS="computeroutput"
 >&#38;ctype=rdf</SAMP
 > to the URL. RDF
             is meant to be machine readable and thus it is assumed that the
-            URL would be generated programatically so there is no user visible
+            URL would be generated programmatically so there is no user visible
             link to this format.
           </P
 ><P
@@ -1911,6 +1917,174 @@ TARGET="_top"
           </P
 ></DIV
 ></DIV
+><DIV
+CLASS="qandaentry"
+><DIV
+CLASS="question"
+><P
+><A
+NAME="faq-admin-moving"
+></A
+><B
+>A.3.5. </B
+>
+            How do I move a Bugzilla installation from one machine to another?
+          </P
+></DIV
+><DIV
+CLASS="answer"
+><P
+><B
+> </B
+>
+            Use mysqldump to make a backup of the bugs database. For a
+            typical Bugzilla setup, such a command might look like this:
+            <TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+>&#13;/usr/bin/mysqldump -u(username) -p(password) --database bugs &#62; bugzilla-backup.txt
+            </PRE
+></FONT
+></TD
+></TR
+></TABLE
+>
+            See the <A
+HREF="http://dev.mysql.com/doc/mysql/en/mysqldump.html"
+TARGET="_top"
+>&#13;            mysqldump documentation</A
+> for more information on using 
+            the tool, including how to restore your copy onto the destination
+            machine.
+          </P
+><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"
+><P
+>&#13;              Depending on the size of your database, and the power of your
+              machine, the mysqldump command could be running long enough
+              that the password would be visible to someone using the
+              <B
+CLASS="command"
+>ps</B
+> command. If you are on a multi-user
+              machine, and this is a concern to you, create an entry in
+              the file <TT
+CLASS="filename"
+>~/.my.cnf</TT
+> that looks like this:
+              <TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+>&#13;[mysqldump]
+user=bugs
+password=mypassword
+              </PRE
+></FONT
+></TD
+></TR
+></TABLE
+>
+              and then leave the 'user' and 'password' params out of the
+              command line.
+            </P
+></TD
+></TR
+></TABLE
+></DIV
+><P
+>&#13;            On your new machine, follow the instructions found in <A
+HREF="installing-bugzilla.html"
+>Chapter 2</A
+> as far as setting up the physical
+            environment of the new machine with perl, webserver, modules, etc. 
+            Having done that, you can either: copy your entire Bugzilla
+            directory from the old machine to a new one (if you want to keep
+            your existing code and modifications), or download a newer version
+            (if you are planning to upgrade at the same time). Even if you are
+            upgrading to clean code, you will still want to bring over the 
+            <TT
+CLASS="filename"
+>localconfig</TT
+> file, and the 
+            <TT
+CLASS="filename"
+>data</TT
+> directory from the
+            old machine, as they contain configuration information that you 
+            probably won't want to re-create.
+          </P
+><DIV
+CLASS="note"
+><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
+>&#13;              If the location or port number of your SQL server changed
+              as part of the move, you'll need to update the appropriate
+              variables in localconfig before taking the next step.
+            </P
+></TD
+></TR
+></TABLE
+></DIV
+><P
+>&#13;            Once you have your code in place, and your database has
+            been restored from the backup you made in step 1, run
+            <B
+CLASS="command"
+>checksetup.pl</B
+>. This will upgrade your
+            database (if necessary), rebuild your templates, etc.
+          </P
+></DIV
+></DIV
 ></DIV
 ><DIV
 CLASS="qandadiv"
@@ -2614,7 +2788,7 @@ CLASS="answer"
             regularly updated at intervals from the main database.
           </P
 ><P
->&#13;            MySQL has some synchronization features builtin to the
+>&#13;            MySQL has some synchronization features built-in to the
             latest releases. It would be great if someone looked into
             the possibilities there and provided a report to the
             newsgroup on how to effectively synchronize two Bugzilla
@@ -2742,7 +2916,7 @@ CLASS="answer"
 ><P
 >&#13;            Microsoft has some advice on this matter, as well:
             <A
-NAME="AEN2825"
+NAME="AEN2975"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -3244,13 +3418,13 @@ TARGET="_top"
             enhancement for Bugzilla.
           </P
 ><P
->&#13;            You can view bugs marked for 2.20 release
+>&#13;            You can view bugs marked for 2.20.1 release
             <A
 HREF="http://bugzilla.mozilla.org/buglist.cgi?product=Bugzilla&#38;target_milestone=Bugzilla+&#38;bz-nextver;"
 TARGET="_top"
 >here</A
 >.
-            This list includes bugs for the 2.20 release that have already
+            This list includes bugs for the 2.20.1 release that have already
             been fixed and checked into CVS. Please consult the
             <A
 HREF="http://www.bugzilla.org/"
@@ -3417,7 +3591,7 @@ WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
 ><A
-HREF="flags.html"
+HREF="whining.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
@@ -3445,7 +3619,7 @@ ACCESSKEY="N"
 WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
->Flags</TD
+>Whining</TD
 ><TD
 WIDTH="34%"
 ALIGN="center"
diff --git a/docs/html/flags-overview.html b/docs/html/flags-overview.html
index 01eaf9a2f5ccbb966f7ac6268c252cb06314f814..fdb41e8e75e33b001d7cf02aa719a51e9447b0b4 100644
--- a/docs/html/flags-overview.html
+++ b/docs/html/flags-overview.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -422,7 +422,7 @@ CLASS="filename"
        </P
 ><P
 >&#13;         Only users with the ability to edit the bug may 
-         set flags on bugs. This includes the owner, reporter, and 
+         set flags on bugs. This includes the assignee, reporter, and 
          any user with the <SAMP
 CLASS="computeroutput"
 >editbugs</SAMP
@@ -472,7 +472,7 @@ NAME="flags-create"
 CLASS="QUOTE"
 >"Create a Flag Type for..."</SPAN
 >
-          link, you will be presented with a form. Here is what the felds in 
+          link, you will be presented with a form. Here is what the fields in 
           the form mean:
         </P
 ><DIV
@@ -499,7 +499,7 @@ NAME="flags-create-field-description"
 ></H4
 ><P
 >&#13;            This describes the flag in more detail. At present, this doesn't
-            whos up anywhere helpful; ideally, it would be nice to have
+            show up anywhere helpful; ideally, it would be nice to have
             it show up as a tooltip. This field 
             can be as long as you like, and can contain any character you want.
           </P
diff --git a/docs/html/flags.html b/docs/html/flags.html
index a976b47d081f8f64c617060ffbe9c05bdf431030..da8a6a28365589f837e9cbd204fa4047289d1277 100644
--- a/docs/html/flags.html
+++ b/docs/html/flags.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -18,8 +18,8 @@ REL="PREVIOUS"
 TITLE="Reports and Charts"
 HREF="reporting.html"><LINK
 REL="NEXT"
-TITLE="The Bugzilla FAQ"
-HREF="faq.html"></HEAD
+TITLE="Whining"
+HREF="whining.html"></HEAD
 ><BODY
 CLASS="section"
 BGCOLOR="#FFFFFF"
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -63,7 +63,7 @@ WIDTH="10%"
 ALIGN="right"
 VALIGN="bottom"
 ><A
-HREF="faq.html"
+HREF="whining.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
@@ -154,7 +154,7 @@ WIDTH="33%"
 ALIGN="right"
 VALIGN="top"
 ><A
-HREF="faq.html"
+HREF="whining.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
@@ -178,7 +178,7 @@ ACCESSKEY="U"
 WIDTH="33%"
 ALIGN="right"
 VALIGN="top"
->The Bugzilla FAQ</TD
+>Whining</TD
 ></TR
 ></TABLE
 ></DIV
diff --git a/docs/html/general-advice.html b/docs/html/general-advice.html
index 478dac9505c8002684bf27dab76847e3f2d2741b..26e5b9dde2532e997e51e96996a8b498b6624b7f 100644
--- a/docs/html/general-advice.html
+++ b/docs/html/general-advice.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -115,6 +115,27 @@ CLASS="filename"
     fix the problem. If not, see below for some commonly-encountered 
     errors. If that doesn't help, post the errors to the newsgroup.
     </P
+><P
+>&#13;      Bugzilla can also log all user-based errors (and many code-based errors)
+      that occur, without polluting the web server error log.  To enable
+      Bugzilla error logging, create a file that Bugzilla can write to, named
+      <TT
+CLASS="filename"
+>errorlog</TT
+>, in the Bugzilla <TT
+CLASS="filename"
+>data</TT
+>
+      directory.  Errors will be logged as they occur, and will include the type
+      of the error, the IP address and username (if available) of the user who
+      triggered the error, and the values of all environment variables; if a
+      form was being submitted, the data in the form will also be included.
+      To disable error logging, delete or rename the
+      <TT
+CLASS="filename"
+>errorlog</TT
+> file.
+    </P
 ></DIV
 ><DIV
 CLASS="NAVFOOTER"
diff --git a/docs/html/gfdl-0.html b/docs/html/gfdl-0.html
index bc4e83e33988c4d8cfe60c2bd375bde569c12cb8..42d501512fb1c75b7470019d387d49d4f0606f89 100644
--- a/docs/html/gfdl-0.html
+++ b/docs/html/gfdl-0.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-1.html b/docs/html/gfdl-1.html
index 0d1d53e1d231ce0385ec42a5b03d052eef2e6df9..49e6a061d7f3130eb3c85e3ba1bb5524c6940195 100644
--- a/docs/html/gfdl-1.html
+++ b/docs/html/gfdl-1.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-10.html b/docs/html/gfdl-10.html
index 4824e625fbec3c509f78a2f7dc57693e09172b9f..33040c8db3fe84536967b0de43c3d7468d1eaf94 100644
--- a/docs/html/gfdl-10.html
+++ b/docs/html/gfdl-10.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-2.html b/docs/html/gfdl-2.html
index 44fabcec4103daebefa0ba0b69f0ce42f132a84f..423aea447f628618400a080b3cdffadcff527615 100644
--- a/docs/html/gfdl-2.html
+++ b/docs/html/gfdl-2.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-3.html b/docs/html/gfdl-3.html
index edac736432974a4a66cf7db76c56ba1faa814626..d8813270dd97daee4323795a0103045051d1c62e 100644
--- a/docs/html/gfdl-3.html
+++ b/docs/html/gfdl-3.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-4.html b/docs/html/gfdl-4.html
index 20704ad1fff3a67971dacabccd78f191d4606f4f..8e93759315e02b0ab8f8c1b29e7f3ba233c150f8 100644
--- a/docs/html/gfdl-4.html
+++ b/docs/html/gfdl-4.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-5.html b/docs/html/gfdl-5.html
index 1f6a31771e97801cb44388138c658e60582e55d1..60c5beb1d8cf5fd055b55846d15c49ca311516b1 100644
--- a/docs/html/gfdl-5.html
+++ b/docs/html/gfdl-5.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-6.html b/docs/html/gfdl-6.html
index 56e7a6fae1b3a17f476196a44f03a98fcfa22308..5d3d0e036e9b3f699c356915c9f81ce0629e229a 100644
--- a/docs/html/gfdl-6.html
+++ b/docs/html/gfdl-6.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-7.html b/docs/html/gfdl-7.html
index 15d22faad6aa591f91f935b686e1983b6a29f281..7b9c2dfa2c940ebc8d2214f11dfe858ac219a7b9 100644
--- a/docs/html/gfdl-7.html
+++ b/docs/html/gfdl-7.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-8.html b/docs/html/gfdl-8.html
index 09f86e53c46c78e91c2ea220dd702c9c284da440..b56e07b5bf832669d88c1fd1460d5945010a7050 100644
--- a/docs/html/gfdl-8.html
+++ b/docs/html/gfdl-8.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-9.html b/docs/html/gfdl-9.html
index a9c2a732a81e2e81eb572effc77ef4c74db600e7..cee36dfd0be4dfa935e60aa640e8beffda765695 100644
--- a/docs/html/gfdl-9.html
+++ b/docs/html/gfdl-9.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/gfdl-howto.html b/docs/html/gfdl-howto.html
index 2fc4f35a1e667f0ec3f3f5ed371fcb19f0e19e84..00fd769136ccffe4ed7e5cd29f72ac8de2fbc056 100644
--- a/docs/html/gfdl-howto.html
+++ b/docs/html/gfdl-howto.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -85,7 +85,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="AEN3308"
+NAME="AEN3462"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
diff --git a/docs/html/gfdl.html b/docs/html/gfdl.html
index 2d0c0fedf7312332fa713f9f8e21930f5182f86b..196df724b697a194e3aa3a972e38ccd9ffffae39 100644
--- a/docs/html/gfdl.html
+++ b/docs/html/gfdl.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -148,7 +148,7 @@ HREF="gfdl-howto.html"
 ><P
 >Version 1.1, March 2000</P
 ><A
-NAME="AEN3218"
+NAME="AEN3372"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
diff --git a/docs/html/glossary.html b/docs/html/glossary.html
index eae5637c16ec34deb2927f43f10bd70778ddbe57..f859a9b44db43526079bacc78cc8c9221be98082 100644
--- a/docs/html/glossary.html
+++ b/docs/html/glossary.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -33,7 +33,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -74,7 +74,7 @@ CLASS="glossdiv"
 ><H1
 CLASS="glossdiv"
 ><A
-NAME="AEN3313"
+NAME="AEN3467"
 >0-9, high ascii</A
 ></H1
 ><DL
@@ -988,7 +988,7 @@ NAME="gloss-zarro"
         Terry had the following to say:
         </P
 ><A
-NAME="AEN3559"
+NAME="AEN3713"
 ></A
 ><TABLE
 BORDER="0"
diff --git a/docs/html/groups.html b/docs/html/groups.html
index 032c6097769f858d99f09e741123d0ad061fa4bc..21e3ba7033af4ae87f26bf73de78edc14b0377fd 100644
--- a/docs/html/groups.html
+++ b/docs/html/groups.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -152,7 +152,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1360"
+NAME="AEN1447"
 >3.10.1. Creating Groups</A
 ></H2
 ><P
@@ -288,7 +288,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1387"
+NAME="AEN1474"
 >3.10.2. Assigning Users to Groups</A
 ></H2
 ><P
@@ -320,7 +320,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1397"
+NAME="AEN1484"
 >3.10.3. Assigning Group Controls to Products</A
 ></H2
 ><P
@@ -385,7 +385,7 @@ TYPE="1"
 ><P
 >These controls are often described in this order, so a 
       product that requires a user to be a member of group "foo" 
-      to enter a bug and then requires that the bug stay resticted
+      to enter a bug and then requires that the bug stay restricted
       to group "foo" at all times and that only members of group "foo"
       can edit the bug even if they otherwise could see the bug would 
       have its controls summarized by...</P
@@ -412,7 +412,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1415"
+NAME="AEN1502"
 >3.10.4. Common Applications of Group Controls</A
 ></H2
 ><DIV
@@ -420,7 +420,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN1417"
+NAME="AEN1504"
 >3.10.4.1. General User Access With Security Group</A
 ></H3
 ><P
@@ -455,7 +455,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN1421"
+NAME="AEN1508"
 >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="AEN1425"
+NAME="AEN1512"
 >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 939bb7f931fac4af9a6c5ee2e72afd2bd5ce4af3..4724e18e6d0288b53eb559967945bb93e16a1084 100644
--- a/docs/html/hintsandtips.html
+++ b/docs/html/hintsandtips.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -88,7 +88,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN2301"
+NAME="AEN2386"
 >6.9.1. Autolinkification</A
 ></H2
 ><P
@@ -244,6 +244,15 @@ CLASS="filename"
 >&#38;content-type=text/plain</TT
 >.
       </P
+><P
+>&#13;        If you have a really large attachment, something that does not need to
+        be recorded forever (as most attachments are), you can mark your
+        attachment as a Big File, Assuming the administrator of the
+        installation has enabled this feature.  Big Files are stored directly on
+        disk instead of in the database, and can be deleted when it is no longer
+        needed.  The maximum size of a Big File is normally larger than the
+        maximum size of a regular attachment.
+      </P
 ></DIV
 ></DIV
 ><DIV
diff --git a/docs/html/index.html b/docs/html/index.html
index 05bfddbb5b65edb342228a1cca6bd3bd86f87b5d..6466e9220b9bae7b80afc6d2cb8a8afa14ad1963 100644
--- a/docs/html/index.html
+++ b/docs/html/index.html
@@ -1,8 +1,8 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TITLE
 ><META
@@ -47,7 +47,7 @@ CLASS="TITLEPAGE"
 CLASS="title"
 ><A
 NAME="AEN2"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</A
 ></H1
@@ -56,7 +56,7 @@ CLASS="corpauthor"
 >The Bugzilla Team</H3
 ><P
 CLASS="pubdate"
->2005-01-14<BR></P
+>2005-09-30<BR></P
 ><DIV
 ><DIV
 CLASS="abstract"
@@ -360,6 +360,11 @@ HREF="reporting.html"
 HREF="flags.html"
 >Flags</A
 ></DT
+><DT
+>6.13. <A
+HREF="whining.html"
+>Whining</A
+></DT
 ></DL
 ></DD
 ><DT
@@ -420,7 +425,7 @@ HREF="trbl-relogin-everyone.html"
 ></DT
 ><DT
 >B.9. <A
-HREF="x3042.html"
+HREF="x3196.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 8f826fd24a73b2e9f463b7b1ce1fcd2449653e19..23e1b77b5d6ebb83aa29bd658fb85271f79f05ba 100644
--- a/docs/html/install-perlmodules-manual.html
+++ b/docs/html/install-perlmodules-manual.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/installation.html b/docs/html/installation.html
index 0e19b9a1bf742bac486eb893f7d7bbc63b9ec804..5f7783a9c85a384464d828657166058e6c3a1bd2 100644
--- a/docs/html/installation.html
+++ b/docs/html/installation.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -186,17 +186,16 @@ TYPE="1"
 HREF="installation.html#install-perl"
 >Install Perl</A
 >
-        (5.6.0 or above for non-Windows platforms; 5.8.1
+        (5.6.1 or above for non-Windows platforms; 5.8.1
         for Windows)
         </P
 ></LI
 ><LI
 ><P
 ><A
-HREF="installation.html#install-mysql"
->Install MySQL</A
+HREF="installation.html#install-database"
+>Install a Database Engine</A
 >
-        (3.23.41 or above)
         </P
 ></LI
 ><LI
@@ -260,32 +259,44 @@ HREF="http://www.perl.com"
 TARGET="_top"
 >http://www.perl.com</A
 >.
-      Although Bugzilla runs with Perl 5.6.0,
-      it's a good idea to be using the latest stable version. 
-      As of this writing, that is Perl 5.8.3.</P
+      Although Bugzilla runs with Perl 5.6.1,
+      it's a good idea to be using the latest stable version.
+      </P
 ></DIV
 ><DIV
 CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="install-mysql"
->2.1.2. MySQL</A
+NAME="install-database"
+>2.1.2. Database Engine</A
 ></H2
 ><P
+>From Bugzilla 2.20, support is included for using both the MySQL and
+      PostgreSQL database servers. You only require one of these systems to make
+      use of Bugzilla.</P
+><DIV
+CLASS="section"
+><H3
+CLASS="section"
+><A
+NAME="install-mysql"
+>2.1.2.1. MySQL</A
+></H3
+><P
 >Installed Version Test: <TT
 CLASS="filename"
 >mysql -V</TT
 ></P
 ><P
->&#13;      If you don't have it and your OS doesn't provide official packages, 
-      visit <A
+>&#13;          If you don't have it and your OS doesn't provide official packages, 
+          visit <A
 HREF="http://www.mysql.com"
 TARGET="_top"
 >http://www.mysql.com</A
 >. You need MySQL version
-      3.23.41 or higher.
-      </P
+          3.23.41 or higher.
+          </P
 ><DIV
 CLASS="note"
 ><P
@@ -308,15 +319,15 @@ ALIGN="LEFT"
 VALIGN="TOP"
 ><P
 > Many of the binary
-        versions of MySQL store their data files in 
-        <TT
+            versions of MySQL store their data files in 
+            <TT
 CLASS="filename"
 >/var</TT
 >.
-        On some Unix systems, this is part of a smaller root partition,
-        and may not have room for your bug database. To change the data
-         directory, you have to build MySQL from source yourself, and
-         set it as an option to <TT
+            On some Unix systems, this is part of a smaller root partition,
+            and may not have room for your bug database. To change the data
+            directory, you have to build MySQL from source yourself, and
+            set it as an option to <TT
 CLASS="filename"
 >configure</TT
 >.</P
@@ -326,10 +337,40 @@ CLASS="filename"
 ></DIV
 ><P
 >If you install from something other than a packaging/installation
-      system, such as .rpm (Redhat Package), .deb (Debian Package), .exe
-      (Windows Executable), or .msi (Microsoft Installer), make sure the MySQL
-      server is started when the machine boots.
-      </P
+          system, such as .rpm (Redhat Package), .deb (Debian Package), .exe
+          (Windows Executable), or .msi (Microsoft Installer), make sure the MySQL
+          server is started when the machine boots.
+          </P
+></DIV
+><DIV
+CLASS="section"
+><H3
+CLASS="section"
+><A
+NAME="install-pg"
+>2.1.2.2. PostgreSQL</A
+></H3
+><P
+>Installed Version Test: <TT
+CLASS="filename"
+>psql -V</TT
+></P
+><P
+>&#13;          If you don't have it and your OS doesn't provide official packages, 
+          visit <A
+HREF="http://www.postgresql.org/"
+TARGET="_top"
+>http://www.postgresql.org/</A
+>. You need PostgreSQL
+          version 7.3.x or higher.
+          </P
+><P
+>If you install from something other than a packaging/installation
+          system, such as .rpm (Redhat Package), .deb (Debian Package), .exe
+          (Windows Executable), or .msi (Microsoft Installer), make sure the
+          PostgreSQL server is started when the machine boots.
+          </P
+></DIV
 ></DIV
 ><DIV
 CLASS="section"
@@ -474,7 +515,8 @@ HREF="configuration.html"
 CLASS="filename"
 >su</TT
 > to root. You should
-      remain as root until the end of the install. Then run:
+      remain as root until the end of the install. To check you have the
+      required modules, run:
       </P
 ><TABLE
 BORDER="0"
@@ -489,7 +531,7 @@ CLASS="screen"
 ><SAMP
 CLASS="prompt"
 >bash#</SAMP
-> ./checksetup.pl</PRE
+> ./checksetup.pl --check-modules</PRE
 ></FONT
 ></TD
 ></TR
@@ -592,6 +634,39 @@ CLASS="QUOTE"
 ></TR
 ></TABLE
 ></DIV
+><DIV
+CLASS="note"
+><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
+>If you are using a package-based system, and attempting to install the
+        Perl modules from CPAN, you may need to install the "development" packages for
+        MySQL and GD before attempting to install the related Perl modules. The names of
+        these packages will vary depending on the specific distribution you are using,
+        but are often called <TT
+CLASS="filename"
+>&#60;packagename&#62;-devel</TT
+>.</P
+></TD
+></TR
+></TABLE
+></DIV
 ><P
 >&#13;        Here is a complete list of modules and their minimum versions.
         Some modules have special installation notes, which follow.
@@ -624,7 +699,7 @@ TYPE="1"
 ></LI
 ><LI
 ><P
->&#13;            DBI (1.36)
+>&#13;            DBI (1.38)
           </P
 ></LI
 ><LI
@@ -633,12 +708,17 @@ TYPE="1"
 HREF="installation.html#install-modules-dbd-mysql"
 >DBD::mysql</A
 >
-            (2.1010)
+            (2.9003) if using MySQL
+          </P
+></LI
+><LI
+><P
+>&#13;            DBD::Pg (1.31) if using PostgreSQL
           </P
 ></LI
 ><LI
 ><P
->&#13;            File::Spec (0.82)
+>&#13;            File::Spec (0.84)
           </P
 ></LI
 ><LI
@@ -660,6 +740,16 @@ HREF="installation.html#install-modules-template"
 >&#13;            Text::Wrap (2001.0131)
           </P
 ></LI
+><LI
+><P
+>&#13;            Mail::Mailer (1.65)
+          </P
+></LI
+><LI
+><P
+>&#13;            Storable (any)
+          </P
+></LI
 ></OL
 >
 
diff --git a/docs/html/installing-bugzilla.html b/docs/html/installing-bugzilla.html
index 17c357c72f190693eda580973808b9a20d60da83..e47d423fbae2222ca5b9d4a57b68b408ddb48f56 100644
--- a/docs/html/installing-bugzilla.html
+++ b/docs/html/installing-bugzilla.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -97,8 +97,8 @@ HREF="installation.html#install-perl"
 ></DT
 ><DT
 >2.1.2. <A
-HREF="installation.html#install-mysql"
->MySQL</A
+HREF="installation.html#install-database"
+>Database Engine</A
 ></DT
 ><DT
 >2.1.3. <A
@@ -136,12 +136,12 @@ HREF="configuration.html#localconfig"
 ></DT
 ><DT
 >2.2.2. <A
-HREF="configuration.html#mysql"
->MySQL</A
+HREF="configuration.html#database-engine"
+>Database Server</A
 ></DT
 ><DT
 >2.2.3. <A
-HREF="configuration.html#AEN446"
+HREF="configuration.html#AEN522"
 >checksetup.pl</A
 ></DT
 ><DT
@@ -165,31 +165,36 @@ HREF="extraconfig.html"
 ><DL
 ><DT
 >2.3.1. <A
-HREF="extraconfig.html#AEN570"
+HREF="extraconfig.html#AEN646"
 >Bug Graphs</A
 ></DT
 ><DT
 >2.3.2. <A
-HREF="extraconfig.html#AEN583"
+HREF="extraconfig.html#AEN659"
 >Dependency Charts</A
 ></DT
 ><DT
 >2.3.3. <A
-HREF="extraconfig.html#AEN599"
+HREF="extraconfig.html#installation-whining-cron"
 >The Whining Cron</A
 ></DT
 ><DT
 >2.3.4. <A
+HREF="extraconfig.html#installation-whining"
+>Whining</A
+></DT
+><DT
+>2.3.5. <A
 HREF="extraconfig.html#patch-viewer"
 >Patch Viewer</A
 ></DT
 ><DT
->2.3.5. <A
+>2.3.6. <A
 HREF="extraconfig.html#bzldap"
 >LDAP Authentication</A
 ></DT
 ><DT
->2.3.6. <A
+>2.3.7. <A
 HREF="extraconfig.html#apache-addtype"
 >Serving Alternate Formats with the right MIME type</A
 ></DT
@@ -231,17 +236,17 @@ HREF="nonroot.html"
 ><DL
 ><DT
 >2.5.1. <A
-HREF="nonroot.html#AEN784"
+HREF="nonroot.html#AEN871"
 >Introduction</A
 ></DT
 ><DT
 >2.5.2. <A
-HREF="nonroot.html#AEN788"
+HREF="nonroot.html#AEN875"
 >MySQL</A
 ></DT
 ><DT
 >2.5.3. <A
-HREF="nonroot.html#AEN823"
+HREF="nonroot.html#AEN910"
 >Perl</A
 ></DT
 ><DT
@@ -251,12 +256,12 @@ HREF="nonroot.html#install-perlmodules-nonroot"
 ></DT
 ><DT
 >2.5.5. <A
-HREF="nonroot.html#AEN888"
+HREF="nonroot.html#AEN975"
 >HTTP Server</A
 ></DT
 ><DT
 >2.5.6. <A
-HREF="nonroot.html#AEN900"
+HREF="nonroot.html#AEN987"
 >Bugzilla</A
 ></DT
 ></DL
diff --git a/docs/html/integration.html b/docs/html/integration.html
index c8ecb3d5265f8d4618bbb087839511cbd20af6c8..b3ead04239a3ceb95f6abfcbdc8cfdaa867ba06d 100644
--- a/docs/html/integration.html
+++ b/docs/html/integration.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/lifecycle.html b/docs/html/lifecycle.html
index e9086f0356e6a626f7e6a85eb7c17997f84b38b3..a81d1a4c3e1239d8f13685a8a8a6b8d5385edb21 100644
--- a/docs/html/lifecycle.html
+++ b/docs/html/lifecycle.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/list.html b/docs/html/list.html
index 389c05e5af7faebcf74967be104c80e1c021e005..ebfdd014dcc0f916ec81b3d7af4728549d1817a5 100644
--- a/docs/html/list.html
+++ b/docs/html/list.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -147,15 +147,15 @@ BORDER="0"
 
       If your account is sufficiently empowered, you can make the same
       change to all the bugs in the list - for example, changing their
-      owner.</TD
+      assignee.</TD
 ></TR
 ><TR
 ><TD
 >&#13;      <EM
->Send mail to bug owners:</EM
+>Send mail to bug assignees:</EM
 >
 
-      Sends mail to the owners of all bugs on the list.</TD
+      Sends mail to the assignees of all bugs on the list.</TD
 ></TR
 ><TR
 ><TD
diff --git a/docs/html/milestones.html b/docs/html/milestones.html
index d3711ae83899852154134e120eb2bca0be0cfeac..e75e97bb28d964e3cbecf8c2207ebea8de89848d 100644
--- a/docs/html/milestones.html
+++ b/docs/html/milestones.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/modules-manual-download.html b/docs/html/modules-manual-download.html
index fcb14ab184113e2f837915379d39712b981ce57f..b2537a1f1b56e2df028e82def1467c14c2937e74 100644
--- a/docs/html/modules-manual-download.html
+++ b/docs/html/modules-manual-download.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/modules-manual-instructions.html b/docs/html/modules-manual-instructions.html
index 2ae534716a6c6d2ac12ca851dd2af7a381454f67..8a62089be5657c50bfce7e4985ed8623059823b8 100644
--- a/docs/html/modules-manual-instructions.html
+++ b/docs/html/modules-manual-instructions.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/modules-manual-optional.html b/docs/html/modules-manual-optional.html
index 807850b69495ad342bcb4efbf1d3dee7b7dda632..e23b004b126aa5c35e4d8b02c73b948341fa2238 100644
--- a/docs/html/modules-manual-optional.html
+++ b/docs/html/modules-manual-optional.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/myaccount.html b/docs/html/myaccount.html
index 739b76b35f8aec839542c83e68af6d1d3d6f6569..9924f0ed3c7904d2f21c84e516af15ca48b605cc 100644
--- a/docs/html/myaccount.html
+++ b/docs/html/myaccount.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/newversions.html b/docs/html/newversions.html
index d86d946c5c94ed4f052c5030b9a4df621d3483dc..01abf4261a42895ecce382e62fe37bb79a12c013 100644
--- a/docs/html/newversions.html
+++ b/docs/html/newversions.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -81,7 +81,7 @@ NAME="newversions"
 >1.3. New Versions</A
 ></H1
 ><P
->&#13;      This is the 2.19.2 version of The Bugzilla Guide. It is so named 
+>&#13;      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. 
diff --git a/docs/html/nonroot.html b/docs/html/nonroot.html
index 49cf9bfedcc8dec293bbf9e5da9ec264b4d9d429..256057f4f84d21aca8de1cd7755b304c6cf23e79 100644
--- a/docs/html/nonroot.html
+++ b/docs/html/nonroot.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -85,7 +85,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN784"
+NAME="AEN871"
 >2.5.1. Introduction</A
 ></H2
 ><P
@@ -105,7 +105,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN788"
+NAME="AEN875"
 >2.5.2. MySQL</A
 ></H2
 ><P
@@ -161,7 +161,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN796"
+NAME="AEN883"
 >2.5.2.1. Running MySQL as Non-Root</A
 ></H3
 ><DIV
@@ -169,7 +169,7 @@ CLASS="section"
 ><H4
 CLASS="section"
 ><A
-NAME="AEN798"
+NAME="AEN885"
 >2.5.2.1.1. The Custom Configuration Method</A
 ></H4
 ><P
@@ -213,7 +213,7 @@ CLASS="section"
 ><H4
 CLASS="section"
 ><A
-NAME="AEN802"
+NAME="AEN889"
 >2.5.2.1.2. The Custom Built Method</A
 ></H4
 ><P
@@ -236,7 +236,7 @@ CLASS="section"
 ><H4
 CLASS="section"
 ><A
-NAME="AEN807"
+NAME="AEN894"
 >2.5.2.1.3. Starting the Server</A
 ></H4
 ><P
@@ -364,7 +364,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN823"
+NAME="AEN910"
 >2.5.3. Perl</A
 ></H2
 ><P
@@ -457,7 +457,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN842"
+NAME="AEN929"
 >2.5.4.1. The Independant Method</A
 ></H3
 ><P
@@ -529,7 +529,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN855"
+NAME="AEN942"
 >2.5.4.2. The Mixed Method</A
 ></H3
 ><P
@@ -734,7 +734,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN888"
+NAME="AEN975"
 >2.5.5. HTTP Server</A
 ></H2
 ><P
@@ -748,7 +748,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN891"
+NAME="AEN978"
 >2.5.5.1. Running Apache as Non-Root</A
 ></H3
 ><P
@@ -830,7 +830,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN900"
+NAME="AEN987"
 >2.5.6. Bugzilla</A
 ></H2
 ><P
diff --git a/docs/html/os-specific.html b/docs/html/os-specific.html
index 082f1c13f1344d47a74abf0545a7d8c7656f38b9..331f44cda140390a6a35cc4812679a99c5d91134 100644
--- a/docs/html/os-specific.html
+++ b/docs/html/os-specific.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/parameters.html b/docs/html/parameters.html
index 8db10fe544807dcb6b26d3d986268da3c98a1595..c142dceec8a7adf0bb103b9c461cfc3ff6269a75 100644
--- a/docs/html/parameters.html
+++ b/docs/html/parameters.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -274,7 +274,7 @@ CLASS="filename"
 ><DD
 ><P
 >&#13;            This allows you to define an email address for each component, 
-            in addition to that of the default owner, who will be sent
+            in addition to that of the default assignee, who will be sent
             carbon copies of incoming bugs.
           </P
 ></DD
diff --git a/docs/html/paranoid-security.html b/docs/html/paranoid-security.html
index 9626948e5d250074a4d5f104a9b203e01fad7405..37119b1c4fa7c8b25add7ca1b56ad7ababcf7dd1 100644
--- a/docs/html/paranoid-security.html
+++ b/docs/html/paranoid-security.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/patches.html b/docs/html/patches.html
index b0924e7f18f1c1063a4f604aa34b8adf2cace7e6..2bd273fa262573e8c35eeb55c7cf0b168b0373d3 100644
--- a/docs/html/patches.html
+++ b/docs/html/patches.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/patchviewer.html b/docs/html/patchviewer.html
index b15ee4491fab400bb6fbaecef081d243081f82fb..8e266b210b6a1b98bd18345ee8c98a3fcf80814d 100644
--- a/docs/html/patchviewer.html
+++ b/docs/html/patchviewer.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/products.html b/docs/html/products.html
index 3bfd5702cf3b3e44a2db37c2fab8c42081ad91fa..2698657f966ef4abf5ad94055ddb08f21e856f46 100644
--- a/docs/html/products.html
+++ b/docs/html/products.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/query.html b/docs/html/query.html
index 3ec7a244449b5b7d1716058734a26cdd767be053..98f9cd51b2f786ce406233e283fe13311144e6b3 100644
--- a/docs/html/query.html
+++ b/docs/html/query.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -194,7 +194,7 @@ NAME="negation"
 >&#13;          At first glance, negation seems redundant. Rather than
           searching for
           <A
-NAME="AEN2201"
+NAME="AEN2286"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -205,7 +205,7 @@ CLASS="BLOCKQUOTE"
 >
           one could search for 
           <A
-NAME="AEN2203"
+NAME="AEN2288"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -216,7 +216,7 @@ CLASS="BLOCKQUOTE"
 >
           However, the search 
           <A
-NAME="AEN2205"
+NAME="AEN2290"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -228,7 +228,7 @@ CLASS="BLOCKQUOTE"
           would find every bug where anyone on the CC list did not contain 
           "@mozilla.org" while
           <A
-NAME="AEN2207"
+NAME="AEN2292"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -242,7 +242,7 @@ CLASS="BLOCKQUOTE"
           complex expressions to be built using terms OR'd together and then
           negated. Negation permits queries such as
           <A
-NAME="AEN2209"
+NAME="AEN2294"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -255,7 +255,7 @@ CLASS="BLOCKQUOTE"
           to find bugs that are neither 
           in the update product or in the documentation component or
           <A
-NAME="AEN2211"
+NAME="AEN2296"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -283,7 +283,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="AEN2216"
+NAME="AEN2301"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -298,7 +298,7 @@ CLASS="BLOCKQUOTE"
           containing "foo@" and someone else containing "@mozilla.org",
           then you would need two boolean charts.
           <A
-NAME="AEN2218"
+NAME="AEN2303"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
diff --git a/docs/html/quips.html b/docs/html/quips.html
index b1bddd0603940c58271f4b984b98f946e40e3c0f..fdd3fee0b35ecd34dbc1d0489085ca37aad0e2fa 100644
--- a/docs/html/quips.html
+++ b/docs/html/quips.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/reporting.html b/docs/html/reporting.html
index 6105e394a411784ec941e540ffb602d533ad162b..083090ca5ebb98c6f2948d8cbc91ce5cb9dd7f16 100644
--- a/docs/html/reporting.html
+++ b/docs/html/reporting.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -195,7 +195,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN2407"
+NAME="AEN2493"
 >6.11.2.1. Creating Charts</A
 ></H3
 ><P
@@ -235,7 +235,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN2414"
+NAME="AEN2500"
 >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 43ca6514cb9370f6addc0cad219c4e36161ea70a..e9fb68a90eb2ddc171166f76a0452e1e6c96a986 100644
--- a/docs/html/security-bugzilla.html
+++ b/docs/html/security-bugzilla.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -100,12 +100,11 @@ TARGET="_top"
 >the
       CERT advisory</A
 > on this issue.
-      If your installation is for an English speaking audience only, making the
-      change in <A
+      Making the change in <A
 HREF="security-bugzilla.html#security-bugzilla-charset-ex"
 >Example 4-4</A
-> will prevent
-      this problem. 
+> will
+      prevent this problem. 
       </P
 ><DIV
 CLASS="example"
@@ -149,7 +148,7 @@ WIDTH="100%"
 COLOR="#000000"
 ><PRE
 CLASS="programlisting"
->$self-&#62;charset('ISO-8859-1');</PRE
+>$self-&#62;charset('UTF-8');</PRE
 ></FONT
 ></TD
 ></TR
diff --git a/docs/html/security-mysql.html b/docs/html/security-mysql.html
index f42e16963ab3f377d5f639e2cff3b264dfd741d3..756d22504313eda02d1b3eeeb44a15b0f54ebe35 100644
--- a/docs/html/security-mysql.html
+++ b/docs/html/security-mysql.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/security-os.html b/docs/html/security-os.html
index 371184af54757b07e3fa76fb96ebd975e48311e9..42141a8018df48baab5587fe7e5034591a0d3a0c 100644
--- a/docs/html/security-os.html
+++ b/docs/html/security-os.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/security-webserver.html b/docs/html/security-webserver.html
index 89c5c700950d0e5cfde477ae923e4d71773d1c4b..b6df5cb8b6aa7d8fb626d20ad9c8ef0d3a08d361 100644
--- a/docs/html/security-webserver.html
+++ b/docs/html/security-webserver.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -165,9 +165,6 @@ CLASS="filename"
 >, <TT
 CLASS="filename"
 >*localconfig*</TT
->, <TT
-CLASS="filename"
->runtests.sh</TT
 >
               </P
 ></LI
diff --git a/docs/html/security.html b/docs/html/security.html
index 4beccf1f36f7c4f96340545f2ec8d5ab85d5e372..b0ef51cbf9e72fd5b11499e5d2f076d8dc67c8f2 100644
--- a/docs/html/security.html
+++ b/docs/html/security.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/trbl-bundlebugzilla.html b/docs/html/trbl-bundlebugzilla.html
index ed5361c948a2d3738c87405bdfab1b6bd2293a19..8557e07cdea2840ee5cf02dc7ed566f4d11b1e52 100644
--- a/docs/html/trbl-bundlebugzilla.html
+++ b/docs/html/trbl-bundlebugzilla.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -40,7 +40,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/trbl-dbdsponge.html b/docs/html/trbl-dbdsponge.html
index 67bca88da511f48a740799c19157219501662531..a643117d2371dfdc84d20b853ab51d60464bb364 100644
--- a/docs/html/trbl-dbdsponge.html
+++ b/docs/html/trbl-dbdsponge.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/trbl-index.html b/docs/html/trbl-index.html
index eb9e4bcdfde12e5ae0b5a35f787638d54c89ce03..43175b6a6e1afe337a6f941c266b5daf0deb581e 100644
--- a/docs/html/trbl-index.html
+++ b/docs/html/trbl-index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -16,7 +16,7 @@ TITLE="Troubleshooting"
 HREF="troubleshooting.html"><LINK
 REL="PREVIOUS"
 TITLE="Some users are constantly being forced to relogin"
-HREF="x3042.html"><LINK
+HREF="x3196.html"><LINK
 REL="NEXT"
 TITLE='
       checksetup.pl reports "Client does not support authentication protocol
@@ -42,7 +42,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -52,7 +52,7 @@ WIDTH="10%"
 ALIGN="left"
 VALIGN="bottom"
 ><A
-HREF="x3042.html"
+HREF="x3196.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
@@ -122,7 +122,7 @@ WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
 ><A
-HREF="x3042.html"
+HREF="x3196.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
diff --git a/docs/html/trbl-passwd-encryption.html b/docs/html/trbl-passwd-encryption.html
index 1abc7f65f4e707a1c55ca1463459196150363892..8cfb2cdff0b1f9ef36e7ecb9b66cde44303038be 100644
--- a/docs/html/trbl-passwd-encryption.html
+++ b/docs/html/trbl-passwd-encryption.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -9,7 +9,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -41,7 +41,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/trbl-perlmodule.html b/docs/html/trbl-perlmodule.html
index 3c4a1f7498e9532f4fc0bf1757b7790bba449a4e..5a56b4d90d3878544154bbf03f66739c811939a0 100644
--- a/docs/html/trbl-perlmodule.html
+++ b/docs/html/trbl-perlmodule.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -8,7 +8,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -40,7 +40,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/trbl-relogin-everyone.html b/docs/html/trbl-relogin-everyone.html
index 54aa335e7c5e3df6e013cdd0a3683d56679bf382..4fcac489def33e6a34a9c9ddcf74b55ec23ecbea 100644
--- a/docs/html/trbl-relogin-everyone.html
+++ b/docs/html/trbl-relogin-everyone.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -19,7 +19,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="x3042.html"></HEAD
+HREF="x3196.html"></HEAD
 ><BODY
 CLASS="section"
 BGCOLOR="#FFFFFF"
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -63,7 +63,7 @@ WIDTH="10%"
 ALIGN="right"
 VALIGN="bottom"
 ><A
-HREF="x3042.html"
+HREF="x3196.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
@@ -122,7 +122,7 @@ NAME="trbl-relogin-everyone-share"
 >Example B-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B
 ></P
 ><A
-NAME="AEN3028"
+NAME="AEN3182"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -163,7 +163,7 @@ NAME="trbl-relogin-everyone-restrict"
 >Example B-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B
 ></P
 ><A
-NAME="AEN3035"
+NAME="AEN3189"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -234,7 +234,7 @@ WIDTH="33%"
 ALIGN="right"
 VALIGN="top"
 ><A
-HREF="x3042.html"
+HREF="x3196.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
diff --git a/docs/html/trbl-testserver.html b/docs/html/trbl-testserver.html
index 10f27d5776c5d1bf32b09aeaae1273a4b237614a..6877f8f0d99e9e6cee2e95f51b8d28a458b36227 100644
--- a/docs/html/trbl-testserver.html
+++ b/docs/html/trbl-testserver.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -40,7 +40,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/trouble-filetemp.html b/docs/html/trouble-filetemp.html
index d987f71adb7b443e54aa53d39dd48ecac31d4399..b3b105ea09e8b1cc91a2786a7bc1d4cb1a65b818 100644
--- a/docs/html/trouble-filetemp.html
+++ b/docs/html/trouble-filetemp.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/troubleshooting.html b/docs/html/troubleshooting.html
index fb64c83df3f537bc079fd0f2e5d1a082bf0616fd..2061f3a7f12f232e8116a9dc397676742be69b76 100644
--- a/docs/html/troubleshooting.html
+++ b/docs/html/troubleshooting.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -129,7 +129,7 @@ HREF="trbl-relogin-everyone.html"
 ></DT
 ><DT
 >B.9. <A
-HREF="x3042.html"
+HREF="x3196.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 49022e3670fd5e83f47429f4c0748b50cec8d293..1d8837eed53a600dadc7dd586949e669b5bc1c53 100644
--- a/docs/html/upgrading.html
+++ b/docs/html/upgrading.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/useradmin.html b/docs/html/useradmin.html
index 8c87499ac781b1c6caa6a737fe30b95ccf6c852a..8639ca6a529ee9be08fee24d15bc742537d41a8e 100644
--- a/docs/html/useradmin.html
+++ b/docs/html/useradmin.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/userpreferences.html b/docs/html/userpreferences.html
index 6a18b4bf284cabba6e02c3f53430718e967c5f16..1fb6ca04dbcae46b137de19ce0742cf2dfa8f0b0 100644
--- a/docs/html/userpreferences.html
+++ b/docs/html/userpreferences.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/using-intro.html b/docs/html/using-intro.html
index b6e411133907fb5eb9685e24c38c2a390ab1face..3a1f11d99bb097d246459a110915b0ffda2cb154 100644
--- a/docs/html/using-intro.html
+++ b/docs/html/using-intro.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/using.html b/docs/html/using.html
index 60d15f6c47a2736c2c8c9ac05a5310dff926db2d..b047fac0d067acbfd5aef9dde84957d576f045e8 100644
--- a/docs/html/using.html
+++ b/docs/html/using.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -171,7 +171,7 @@ HREF="hintsandtips.html"
 ><DL
 ><DT
 >6.9.1. <A
-HREF="hintsandtips.html#AEN2301"
+HREF="hintsandtips.html#AEN2386"
 >Autolinkification</A
 ></DT
 ><DT
@@ -239,6 +239,35 @@ HREF="reporting.html#charts"
 HREF="flags.html"
 >Flags</A
 ></DT
+><DT
+>6.13. <A
+HREF="whining.html"
+>Whining</A
+></DT
+><DD
+><DL
+><DT
+>6.13.1. <A
+HREF="whining.html#whining-overview"
+>The Event</A
+></DT
+><DT
+>6.13.2. <A
+HREF="whining.html#whining-schedule"
+>Whining Schedule</A
+></DT
+><DT
+>6.13.3. <A
+HREF="whining.html#whining-query"
+>Whining Queries</A
+></DT
+><DT
+>6.13.4. <A
+HREF="whining.html#AEN2552"
+>Saving Your Changes</A
+></DT
+></DL
+></DD
 ></DL
 ></DIV
 ></DIV
diff --git a/docs/html/versions.html b/docs/html/versions.html
index acff02f6eafa95072c496b6b375046c83e1d278d..ad6f3d2b71b35774171ad2438c92c8b1568591d8 100644
--- a/docs/html/versions.html
+++ b/docs/html/versions.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/voting.html b/docs/html/voting.html
index b8fc67ec6bc996be7bfd34d8b3e525178cadf473..d54877fd6650458b3590f52b8893698d3c6de26f 100644
--- a/docs/html/voting.html
+++ b/docs/html/voting.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/whining.html b/docs/html/whining.html
new file mode 100644
index 0000000000000000000000000000000000000000..76fafbb34a00cb332ddc182941b017f4b520b21b
--- /dev/null
+++ b/docs/html/whining.html
@@ -0,0 +1,532 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<HTML
+><HEAD
+><TITLE
+>Whining</TITLE
+><META
+NAME="GENERATOR"
+CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
+REL="HOME"
+TITLE="The Bugzilla Guide - 2.20 
+    Development 
+    Release"
+HREF="index.html"><LINK
+REL="UP"
+TITLE="Using Bugzilla"
+HREF="using.html"><LINK
+REL="PREVIOUS"
+TITLE="Flags"
+HREF="flags.html"><LINK
+REL="NEXT"
+TITLE="The Bugzilla FAQ"
+HREF="faq.html"></HEAD
+><BODY
+CLASS="section"
+BGCOLOR="#FFFFFF"
+TEXT="#000000"
+LINK="#0000FF"
+VLINK="#840084"
+ALINK="#0000FF"
+><DIV
+CLASS="NAVHEADER"
+><TABLE
+SUMMARY="Header navigation table"
+WIDTH="100%"
+BORDER="0"
+CELLPADDING="0"
+CELLSPACING="0"
+><TR
+><TH
+COLSPAN="3"
+ALIGN="center"
+>The Bugzilla Guide - 2.20 
+    Development 
+    Release</TH
+></TR
+><TR
+><TD
+WIDTH="10%"
+ALIGN="left"
+VALIGN="bottom"
+><A
+HREF="flags.html"
+ACCESSKEY="P"
+>Prev</A
+></TD
+><TD
+WIDTH="80%"
+ALIGN="center"
+VALIGN="bottom"
+>Chapter 6. Using Bugzilla</TD
+><TD
+WIDTH="10%"
+ALIGN="right"
+VALIGN="bottom"
+><A
+HREF="faq.html"
+ACCESSKEY="N"
+>Next</A
+></TD
+></TR
+></TABLE
+><HR
+ALIGN="LEFT"
+WIDTH="100%"></DIV
+><DIV
+CLASS="section"
+><H1
+CLASS="section"
+><A
+NAME="whining"
+>6.13. Whining</A
+></H1
+><P
+>&#13;      Whining is a feature in Bugzilla that can regularly annoy users at 
+      specified times.  Using this feature, users can execute saved searches 
+      at specific times (i.e. the 15th of the month at midnight) or at 
+      regular intervals (i.e. every 15 minutes on Sundays).  The results of the
+      searches are sent to the user, either as a single email or as one email 
+      per bug, along with some descriptive text.
+    </P
+><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"
+><P
+>&#13;        Throughout this section it will be assumed that all users are members 
+        of the bz_canusewhines group, membership in which is required in order 
+        to use the Whining system.  You can easily make all users members of 
+        the bz_canusewhines group by setting the User RegExp to ".*" (without 
+        the quotes).
+      </P
+><P
+>&#13;        Also worth noting is the bz_canusewhineatothers group.  Members of this
+        group can create whines for any user or group in Bugzilla using a 
+        extended form of the whining interface.  Features only available to 
+        members of the bz_canusewhineatothers group will be noted in the 
+        appropriate places.
+      </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="note"
+><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
+>&#13;        For whining to work, a special Perl script must be executed at regular
+        intervals.  More information on this is available in 
+        <A
+HREF="extraconfig.html#installation-whining"
+>Section 2.3.4</A
+>.
+      </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="note"
+><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
+>&#13;        This section does not cover the whineatnews.pl script.  See
+        <A
+HREF="extraconfig.html#installation-whining-cron"
+>Section 2.3.3</A
+> for more information on 
+        The Whining Cron.
+      </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
+NAME="whining-overview"
+>6.13.1. The Event</A
+></H2
+><P
+>&#13;        The whining system defines an "Event" as one or more queries being 
+        executed at regular intervals, with the results of said queries (if
+        there are any) being emailed to the user.  Events are created by 
+        clicking on the "Add new event" button.
+      </P
+><P
+>&#13;        Once a new event is created, the first thing to set is the "Email 
+        subject line".  The contents of this field will be used in the subject
+        line of every email generated by this event.  In addition to setting a 
+        subject, space is provided to enter some descriptive text that will be 
+        included at the top of each message (to help you in understanding why 
+        you received the email in the first place).
+      </P
+><P
+>&#13;        The next step is to specify when the Event is to be run (the Schedule) 
+        and what searches are to be performed (the Queries).
+      </P
+></DIV
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
+NAME="whining-schedule"
+>6.13.2. Whining Schedule</A
+></H2
+><P
+>&#13;         Each whining event is associated with zero or more schedules.  A 
+         schedule is used to specify when the query (specified below) is to be
+         run.  A new event starts out with no schedules (which means it will 
+         never run, as it is not scheduled to run).  To add a schedule, press
+         the "Add a new schedule" button.
+      </P
+><P
+>&#13;         Each schedule includes an interval, which you use to tell Bugzilla 
+         when the event should be run.  An event can be run on certain days of
+         the week, certain days of the month, during weekdays (defined as 
+         Monday through Friday), or every day.
+      </P
+><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"
+><P
+>&#13;          Be careful if you set your event to run on the 29th, 30th, or 31st of
+          the month, as your event may not run exactly when expected.  If you 
+          want your event to run on the last day of the month, select "Last day
+          of the month" as the interval.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+><P
+>&#13;        Once you have specified the day(s) on which the event is to be run, you
+        should now specify the time at which the event is to be run.  You can 
+        have the event run at a certain hour on the specified day(s), or 
+        every hour, half-hour, or quarter-hour on the specified day(s).
+      </P
+><P
+>&#13;        If a single schedule does not execute an event as many times as you 
+        would want, you can create another schedule for the same event.  For 
+        example, if you want to run an event on days whose numbers are
+        divisible by seven, you would need to add four schedules to the event,
+        setting the schedules to run on the 7th, 14th, 21st, and 28th (one day 
+        per schedule) at whatever time (or times) you choose.
+      </P
+><DIV
+CLASS="note"
+><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
+>&#13;          If you are a member of the bz_canusewhineatothers group, then you
+          will be presented with another option: "Mail to".  Using this you 
+          can control who will receive the emails generated by this event.  You
+          can choose to send the emails to a single user (identified by email 
+          address) or a single group (identified by group name).  To send to 
+          multiple users or groups, create a new schedule for each additional 
+          user/group.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
+NAME="whining-query"
+>6.13.3. Whining Queries</A
+></H2
+><P
+>&#13;        Each whining event is associated with zero or more queries.  A query is
+        a saved search that is executed on the schedule specified (see above).
+        You start out with zero queries attached to the event (which means that
+        the event will not run, as there will never be any results to return).
+        To add a query, press the "Add a new query" button.
+      </P
+><P
+>&#13;        The first field to examine in your new query is the Sort field.  Queries
+        are executed, and results returned, in the order specified by the Sort 
+        field.  Queries with lower Sort values will run before queries with 
+        higher Sort values.
+      </P
+><P
+>&#13;        The next field to examine is the Search field.  This is where you 
+        choose the actual search that is to be run.  Instead of defining search
+        parameters here, you are asked to choose from the list of saved 
+        searches (the same list that appears at the bottom of every Bugzilla 
+        page).  You are only allowed to choose from searches that you have 
+        saved yourself (the default saved search, "My Bugs", is not a valid 
+        choice).  If you do not have any saved searches, you can take this 
+        opportunity to create one (see <A
+HREF="list.html"
+>Section 6.6</A
+>).
+      </P
+><DIV
+CLASS="note"
+><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
+>&#13;          When running queries, the whining system acts as if you are the user
+          executing the query.  This means that the whining system will ignore
+          bugs that match your query, but that you can not access.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+><P
+>&#13;        Once you have chosen the saved search to be executed, give the query a 
+        descriptive title.  This title will appear in the email, above the 
+        results of the query.  If you choose "One message per bug", the query 
+        title will appear at the top of each email that contains a bug matching
+        your query.
+      </P
+><P
+>&#13;        Finally, decide if the results of the query should be sent in a single
+        email, or if each bug should appear in its own email.
+      </P
+><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"
+><P
+>&#13;          Think carefully before checking the "One message per bug" box.  If
+          you create a query that matches thousands of bugs, you will receive 
+          thousands of emails!
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
+NAME="AEN2552"
+>6.13.4. Saving Your Changes</A
+></H2
+><P
+>&#13;        Once you have defined at least one schedule, and created at least one 
+        query, go ahead and "Update/Commit".  This will save your Event and make
+        it available for immediate execution.
+      </P
+><DIV
+CLASS="note"
+><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
+>&#13;          If you ever feel like deleting your event, you may do so using the 
+          "Remove Event" button in the upper-right corner of each Event.  You 
+          can also modify an existing event, so long as you "Update/Commit" 
+          after completing your modifications.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
+></DIV
+><DIV
+CLASS="NAVFOOTER"
+><HR
+ALIGN="LEFT"
+WIDTH="100%"><TABLE
+SUMMARY="Footer navigation table"
+WIDTH="100%"
+BORDER="0"
+CELLPADDING="0"
+CELLSPACING="0"
+><TR
+><TD
+WIDTH="33%"
+ALIGN="left"
+VALIGN="top"
+><A
+HREF="flags.html"
+ACCESSKEY="P"
+>Prev</A
+></TD
+><TD
+WIDTH="34%"
+ALIGN="center"
+VALIGN="top"
+><A
+HREF="index.html"
+ACCESSKEY="H"
+>Home</A
+></TD
+><TD
+WIDTH="33%"
+ALIGN="right"
+VALIGN="top"
+><A
+HREF="faq.html"
+ACCESSKEY="N"
+>Next</A
+></TD
+></TR
+><TR
+><TD
+WIDTH="33%"
+ALIGN="left"
+VALIGN="top"
+>Flags</TD
+><TD
+WIDTH="34%"
+ALIGN="center"
+VALIGN="top"
+><A
+HREF="using.html"
+ACCESSKEY="U"
+>Up</A
+></TD
+><TD
+WIDTH="33%"
+ALIGN="right"
+VALIGN="top"
+>The Bugzilla FAQ</TD
+></TR
+></TABLE
+></DIV
+></BODY
+></HTML
+>
\ No newline at end of file
diff --git a/docs/html/x3042.html b/docs/html/x3196.html
similarity index 95%
rename from docs/html/x3042.html
rename to docs/html/x3196.html
index 5b8239a851b1815edf75126114224b9fc5c2af1d..045db07e945e7aaff4c8b6a962abce9cb6f55a62 100644
--- a/docs/html/x3042.html
+++ b/docs/html/x3196.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML
 ><HEAD
 ><TITLE
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 2.19.2 
+TITLE="The Bugzilla Guide - 2.20 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 2.19.2 
+>The Bugzilla Guide - 2.20 
     Development 
     Release</TH
 ></TR
@@ -77,7 +77,7 @@ CLASS="section"
 ><H1
 CLASS="section"
 ><A
-NAME="AEN3042"
+NAME="AEN3196"
 >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 28e9a6d24a4b8a4dd043c86bc7351de273d247a0..0e0fdea65e2d6c632c65d6e305695ced33c1f791 100644
--- a/docs/images/CVS/Entries
+++ b/docs/images/CVS/Entries
@@ -1,7 +1,7 @@
-/bzLifecycle.png/1.1/Mon Dec 20 10:18:41 2004/-kb/TBUGZILLA-2_19_3
-/bzLifecycle.xml/1.1/Mon Dec 20 10:18:41 2004//TBUGZILLA-2_19_3
-/caution.gif/1.2/Wed May  8 21:16:44 2002/-kb/TBUGZILLA-2_19_3
-/note.gif/1.1/Thu Aug 23 14:30:18 2001/-kb/TBUGZILLA-2_19_3
-/tip.gif/1.2/Wed May  8 21:16:44 2002/-kb/TBUGZILLA-2_19_3
-/warning.gif/1.2/Wed May  8 21:16:44 2002/-kb/TBUGZILLA-2_19_3
+/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
 D/callouts////
diff --git a/docs/images/CVS/Tag b/docs/images/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/docs/images/CVS/Tag
+++ b/docs/images/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/docs/images/bzLifecycle.png b/docs/images/bzLifecycle.png
index b4b9bd74c9450740d96e8c913c84c7de231fd3e3..f2bf2c5c60db1a26e9157e30510f086d8b080bf9 100644
Binary files a/docs/images/bzLifecycle.png and b/docs/images/bzLifecycle.png differ
diff --git a/docs/images/bzLifecycle.xml b/docs/images/bzLifecycle.xml
index a341a7ccf1593b75f0a00be04178b34d380b722a..d4c33c96c37502fdb84f6b75cb37d01cb5eb464d 100644
--- a/docs/images/bzLifecycle.xml
+++ b/docs/images/bzLifecycle.xml
@@ -342,16 +342,16 @@
     </dia:object>
     <dia:object type="Flowchart - Box" version="0" id="O10">
       <dia:attribute name="obj_pos">
-        <dia:point val="17.925,2"/>
+        <dia:point val="17.9,2"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="17.875,1.95;24.125,4.05"/>
+        <dia:rectangle val="17.85,1.95;24.15,4.05"/>
       </dia:attribute>
       <dia:attribute name="elem_corner">
-        <dia:point val="17.925,2"/>
+        <dia:point val="17.9,2"/>
       </dia:attribute>
       <dia:attribute name="elem_width">
-        <dia:real val="6.1499999999999995"/>
+        <dia:real val="6.1999999999999993"/>
       </dia:attribute>
       <dia:attribute name="elem_height">
         <dia:real val="2"/>
@@ -380,7 +380,7 @@
             <dia:real val="0.80000000000000004"/>
           </dia:attribute>
           <dia:attribute name="pos">
-            <dia:point val="21,3.25"/>
+            <dia:point val="21,3.3"/>
           </dia:attribute>
           <dia:attribute name="color">
             <dia:color val="#000000"/>
@@ -428,7 +428,7 @@
             <dia:real val="0.80000000000000004"/>
           </dia:attribute>
           <dia:attribute name="pos">
-            <dia:point val="16,8.2"/>
+            <dia:point val="16,8.25"/>
           </dia:attribute>
           <dia:attribute name="color">
             <dia:color val="#000000"/>
@@ -476,7 +476,7 @@
             <dia:real val="0.80000000000000004"/>
           </dia:attribute>
           <dia:attribute name="pos">
-            <dia:point val="16,13.25"/>
+            <dia:point val="16,13.3"/>
           </dia:attribute>
           <dia:attribute name="color">
             <dia:color val="#000000"/>
@@ -527,7 +527,7 @@
             <dia:real val="0.80000000000000004"/>
           </dia:attribute>
           <dia:attribute name="pos">
-            <dia:point val="16,18.2"/>
+            <dia:point val="16,18.25"/>
           </dia:attribute>
           <dia:attribute name="color">
             <dia:color val="#000000"/>
@@ -578,7 +578,7 @@
             <dia:real val="0.80000000000000004"/>
           </dia:attribute>
           <dia:attribute name="pos">
-            <dia:point val="21,23.2"/>
+            <dia:point val="21,23.25"/>
           </dia:attribute>
           <dia:attribute name="color">
             <dia:color val="#000000"/>
@@ -626,7 +626,7 @@
             <dia:real val="0.80000000000000004"/>
           </dia:attribute>
           <dia:attribute name="pos">
-            <dia:point val="10,23.2"/>
+            <dia:point val="10,23.25"/>
           </dia:attribute>
           <dia:attribute name="color">
             <dia:color val="#000000"/>
@@ -677,7 +677,7 @@
             <dia:real val="0.80000000000000004"/>
           </dia:attribute>
           <dia:attribute name="pos">
-            <dia:point val="16,28.2"/>
+            <dia:point val="16,28.25"/>
           </dia:attribute>
           <dia:attribute name="color">
             <dia:color val="#000000"/>
@@ -930,7 +930,7 @@
         <dia:point val="10.025,0.825"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="7.325,0.275;12.725,3.275"/>
+        <dia:rectangle val="7.2,0.225;12.85,3.225"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -963,7 +963,7 @@ UNCONFIRMED state#</dia:string>
         <dia:point val="20.325,4.48321"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="14.875,3.98321;20.325,5.38321"/>
+        <dia:rectangle val="14.675,3.93321;20.325,5.28321"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -994,7 +994,7 @@ receives enough votes#</dia:string>
         <dia:point val="16.2865,10.1"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="16.2865,9.6;20.1865,11"/>
+        <dia:rectangle val="16.2865,9.55;20.3865,10.9"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1025,13 +1025,13 @@ possession#</dia:string>
         <dia:point val="10.7629,9.45"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="8.26289,8.9325;10.7804,10.385"/>
+        <dia:rectangle val="8.0629,8.8825;10.7804,10.285"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
           <dia:attribute name="string">
             <dia:string>#Ownership
-is chaged#</dia:string>
+is changed#</dia:string>
           </dia:attribute>
           <dia:attribute name="font">
             <dia:font family="sans" style="0" name="Helvetica"/>
@@ -1056,7 +1056,7 @@ is chaged#</dia:string>
         <dia:point val="21.4576,6.43623"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="17.5576,5.93623;21.4576,7.33623"/>
+        <dia:rectangle val="17.3576,5.88623;21.4576,7.23623"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1084,16 +1084,16 @@ possession#</dia:string>
     </dia:object>
     <dia:object type="Flowchart - Box" version="0" id="O30">
       <dia:attribute name="obj_pos">
-        <dia:point val="4.96289,11.0073"/>
+        <dia:point val="4.81289,11.0073"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="4.91289,10.9573;10.4129,16.2573"/>
+        <dia:rectangle val="4.76289,10.9573;10.5629,16.2573"/>
       </dia:attribute>
       <dia:attribute name="elem_corner">
-        <dia:point val="4.96289,11.0073"/>
+        <dia:point val="4.81289,11.0073"/>
       </dia:attribute>
       <dia:attribute name="elem_width">
-        <dia:real val="5.3999999999999995"/>
+        <dia:real val="5.6999999999999993"/>
       </dia:attribute>
       <dia:attribute name="elem_height">
         <dia:real val="5.1999999999999993"/>
@@ -1129,7 +1129,7 @@ possession#</dia:string>
             <dia:real val="0.59999999999999998"/>
           </dia:attribute>
           <dia:attribute name="pos">
-            <dia:point val="5.06289,11.7073"/>
+            <dia:point val="4.91289,11.7573"/>
           </dia:attribute>
           <dia:attribute name="color">
             <dia:color val="#000000"/>
@@ -1145,7 +1145,7 @@ possession#</dia:string>
         <dia:point val="10.3629,14.9073"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="10.3277,14.8722;13.1815,17.1815"/>
+        <dia:rectangle val="10.3278,14.8722;13.1815,17.1815"/>
       </dia:attribute>
       <dia:attribute name="conn_endpoints">
         <dia:point val="10.3629,14.9073"/>
@@ -1170,7 +1170,7 @@ possession#</dia:string>
         <dia:point val="16.299,15.3073"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="16.299,14.8073;20.399,16.2073"/>
+        <dia:rectangle val="16.299,14.7573;20.449,16.1073"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1201,7 +1201,7 @@ finished with bug#</dia:string>
         <dia:point val="11.4365,21"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="11.4365,20.5;15.2365,21.9"/>
+        <dia:rectangle val="11.4365,20.45;15.5365,21.8"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1232,7 +1232,7 @@ with solution#</dia:string>
         <dia:point val="16.8365,21.05"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="16.8365,20.55;20.6365,21.95"/>
+        <dia:rectangle val="16.8365,20.5;20.7365,21.85"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1263,7 +1263,7 @@ solution worked#</dia:string>
         <dia:point val="17.224,25.875"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="17.224,25.375;20.474,26.175"/>
+        <dia:rectangle val="17.224,25.325;20.574,26.075"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1293,7 +1293,7 @@ solution worked#</dia:string>
         <dia:point val="22.5365,18.5"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="22.5365,18;25.7865,18.8"/>
+        <dia:rectangle val="22.5365,17.95;25.8865,18.7"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1323,7 +1323,7 @@ solution worked#</dia:string>
         <dia:point val="9.62401,17.8111"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="5.72401,17.3111;9.62401,18.7111"/>
+        <dia:rectangle val="5.52401,17.2611;9.62401,18.6111"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1354,7 +1354,7 @@ possession#</dia:string>
         <dia:point val="11.1865,19.15"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="11.1865,18.65;13.2365,20.05"/>
+        <dia:rectangle val="11.1865,18.6;13.3365,19.95"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1385,7 +1385,7 @@ resolved#</dia:string>
         <dia:point val="11.049,25.325"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="11.049,24.825;14.999,25.625"/>
+        <dia:rectangle val="11.049,24.775;15.049,25.525"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1415,7 +1415,7 @@ resolved#</dia:string>
         <dia:point val="13.9365,22.75"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="13.9365,22.25;17.8865,23.05"/>
+        <dia:rectangle val="13.9365,22.2;17.9365,22.95"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1480,7 +1480,7 @@ resolved#</dia:string>
         <dia:point val="24,10"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="24,9.5;28.1,10.9"/>
+        <dia:rectangle val="24,9.45;28.15,10.8"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
@@ -1585,7 +1585,7 @@ finished with bug#</dia:string>
         <dia:point val="25,4"/>
       </dia:attribute>
       <dia:attribute name="obj_bb">
-        <dia:rectangle val="25,3.5;30,4.9"/>
+        <dia:rectangle val="25,3.45;30.1,4.8"/>
       </dia:attribute>
       <dia:attribute name="text">
         <dia:composite type="text">
diff --git a/docs/images/callouts/CVS/Entries b/docs/images/callouts/CVS/Entries
index b24e9ed456d6750fe6f53d779dec95675d9970cd..6f70ee799186dc2af58086ff79c27f9f5530778f 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_19_3
-/2.gif/1.1/Sat May 17 01:27:54 2003/-kb/TBUGZILLA-2_19_3
-/3.gif/1.1/Thu Jul  3 20:23:39 2003/-kb/TBUGZILLA-2_19_3
+/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
 D
diff --git a/docs/images/callouts/CVS/Tag b/docs/images/callouts/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/docs/images/callouts/CVS/Tag
+++ b/docs/images/callouts/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/docs/pdf/Bugzilla-Guide.pdf b/docs/pdf/Bugzilla-Guide.pdf
index 97a005800fe579039fc5bb3f3df69db6d5a2fe8e..f4a5c4f130ac40b9666a18d31c9d9ac6ce520590 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.19.2 Development Release)
+(The Bugzilla Guide 2.20 Development Release)
 endobj
 5 0 obj
 << /S /GoTo /D (2.0) >>
@@ -81,16627 +81,19792 @@ endobj
 << /S /GoTo /D (6.6.2.2) >>
 endobj
 56 0 obj
-(2.1.2. MySQL)
+(2.1.2. Database Engine)
 endobj
 57 0 obj
-<< /S /GoTo /D (6.6.3.2) >>
+<< /S /GoTo /D (6.6.2.1.3) >>
 endobj
 60 0 obj
-(2.1.3. Web Server)
+(2.1.2.1. MySQL)
 endobj
 61 0 obj
-<< /S /GoTo /D (6.6.4.2) >>
+<< /S /GoTo /D (6.6.2.2.3) >>
 endobj
 64 0 obj
-(2.1.4. Bugzilla)
+(2.1.2.2. PostgreSQL)
 endobj
 65 0 obj
-<< /S /GoTo /D (6.6.5.2) >>
+<< /S /GoTo /D (6.6.3.2) >>
 endobj
 68 0 obj
-(2.1.5. Perl Modules)
+(2.1.3. Web Server)
 endobj
 69 0 obj
-<< /S /GoTo /D (6.6.5.1.3) >>
+<< /S /GoTo /D (6.6.4.2) >>
 endobj
 72 0 obj
-(2.1.5.1. DBD::mysql)
+(2.1.4. Bugzilla)
 endobj
 73 0 obj
-<< /S /GoTo /D (6.6.5.2.3) >>
+<< /S /GoTo /D (6.6.5.2) >>
 endobj
 76 0 obj
-(2.1.5.2. Template Toolkit \(2.08\))
+(2.1.5. Perl Modules)
 endobj
 77 0 obj
 << /S /GoTo /D (6.6.5.3.3) >>
 endobj
 80 0 obj
-(2.1.5.3. GD \(1.20\))
+(2.1.5.1. DBD::mysql)
 endobj
 81 0 obj
 << /S /GoTo /D (6.6.5.4.3) >>
 endobj
 84 0 obj
-(2.1.5.4. Chart::Base \(1.0\))
+(2.1.5.2. Template Toolkit \(2.08\))
 endobj
 85 0 obj
 << /S /GoTo /D (6.6.5.5.3) >>
 endobj
 88 0 obj
-(2.1.5.5. GD::Graph \(any\))
+(2.1.5.3. GD \(1.20\))
 endobj
 89 0 obj
 << /S /GoTo /D (6.6.5.6.3) >>
 endobj
 92 0 obj
-(2.1.5.6. GD::Text::Align \(any\))
+(2.1.5.4. Chart::Base \(1.0\))
 endobj
 93 0 obj
 << /S /GoTo /D (6.6.5.7.3) >>
 endobj
 96 0 obj
-(2.1.5.7. XML::Parser \(any\))
+(2.1.5.5. GD::Graph \(any\))
 endobj
 97 0 obj
 << /S /GoTo /D (6.6.5.8.3) >>
 endobj
 100 0 obj
-(2.1.5.8. MIME::Parser \(any\))
+(2.1.5.6. GD::Text::Align \(any\))
 endobj
 101 0 obj
 << /S /GoTo /D (6.6.5.9.3) >>
 endobj
 104 0 obj
-(2.1.5.9. PatchReader \(0.9.4\))
+(2.1.5.7. XML::Parser \(any\))
 endobj
 105 0 obj
-<< /S /GoTo /D (6.6.6.2) >>
+<< /S /GoTo /D (6.6.5.10.3) >>
 endobj
 108 0 obj
-(2.1.6. Mail Transfer Agent \(MTA\))
+(2.1.5.8. MIME::Parser \(any\))
 endobj
 109 0 obj
-<< /S /GoTo /D (6.7.1) >>
+<< /S /GoTo /D (6.6.5.11.3) >>
 endobj
 112 0 obj
-(2.2. Configuration)
+(2.1.5.9. PatchReader \(0.9.4\))
 endobj
 113 0 obj
-<< /S /GoTo /D (6.7.7.2) >>
+<< /S /GoTo /D (6.6.6.2) >>
 endobj
 116 0 obj
-(2.2.1. localconfig)
+(2.1.6. Mail Transfer Agent \(MTA\))
 endobj
 117 0 obj
-<< /S /GoTo /D (6.7.8.2) >>
+<< /S /GoTo /D (6.7.1) >>
 endobj
 120 0 obj
-(2.2.2. MySQL)
+(2.2. Configuration)
 endobj
 121 0 obj
-<< /S /GoTo /D (6.7.8.10.3) >>
+<< /S /GoTo /D (6.7.7.2) >>
 endobj
 124 0 obj
-(2.2.2.1. Allow large attachments)
+(2.2.1. localconfig)
 endobj
 125 0 obj
-<< /S /GoTo /D (6.7.8.11.3) >>
+<< /S /GoTo /D (6.7.8.2) >>
 endobj
 128 0 obj
-(2.2.2.2. Allow small words in fulltext indexes)
+(2.2.2. Database Server)
 endobj
 129 0 obj
 << /S /GoTo /D (6.7.8.12.3) >>
 endobj
 132 0 obj
-(2.2.2.3. Permit attachments table to grow beyond 4GB)
+(2.2.2.1. MySQL)
 endobj
 133 0 obj
-<< /S /GoTo /D (6.7.8.13.3) >>
+<< /S /GoTo /D (6.7.8.12.1.4) >>
 endobj
 136 0 obj
-(2.2.2.4. Add a user to MySQL)
+(2.2.2.1.1. Allow large attachments)
 endobj
 137 0 obj
-<< /S /GoTo /D (6.7.9.2) >>
+<< /S /GoTo /D (6.7.8.12.2.4) >>
 endobj
 140 0 obj
-(2.2.3. checksetup.pl)
+(2.2.2.1.2. Allow small words in fulltext indexes)
 endobj
 141 0 obj
-<< /S /GoTo /D (6.7.10.2) >>
+<< /S /GoTo /D (6.7.8.12.3.4) >>
 endobj
 144 0 obj
-(2.2.4. Web server)
+(2.2.2.1.3. Permit attachments table to grow beyond 4GB)
 endobj
 145 0 obj
-<< /S /GoTo /D (6.7.10.14.3) >>
+<< /S /GoTo /D (6.7.8.12.4.4) >>
 endobj
 148 0 obj
-(2.2.4.1. Apache httpd)
+(2.2.2.1.4. Add a user to MySQL)
 endobj
 149 0 obj
-<< /S /GoTo /D (6.7.10.15.3) >>
+<< /S /GoTo /D (6.7.8.13.3) >>
 endobj
 152 0 obj
-(2.2.4.2. Microsoft Internet Information Services)
+(2.2.2.2. PostgreSQL)
 endobj
 153 0 obj
-<< /S /GoTo /D (6.7.10.16.3) >>
+<< /S /GoTo /D (6.7.8.13.5.4) >>
 endobj
 156 0 obj
-(2.2.4.3. AOL Server)
+(2.2.2.2.1. Add a User to PostgreSQL)
 endobj
 157 0 obj
-<< /S /GoTo /D (6.7.11.2) >>
+<< /S /GoTo /D (6.7.8.13.6.4) >>
 endobj
 160 0 obj
-(2.2.5. Bugzilla)
+(2.2.2.2.2. Configure PostgreSQL)
 endobj
 161 0 obj
-<< /S /GoTo /D (6.8.1) >>
+<< /S /GoTo /D (6.7.9.2) >>
 endobj
 164 0 obj
-(2.3. Optional Additional Configuration)
+(2.2.3. checksetup.pl)
 endobj
 165 0 obj
-<< /S /GoTo /D (6.8.12.2) >>
+<< /S /GoTo /D (6.7.10.2) >>
 endobj
 168 0 obj
-(2.3.1. Bug Graphs)
+(2.2.4. Web server)
 endobj
 169 0 obj
-<< /S /GoTo /D (6.8.13.2) >>
+<< /S /GoTo /D (6.7.10.14.3) >>
 endobj
 172 0 obj
-(2.3.2. Dependency Charts)
+(2.2.4.1. Apache httpd)
 endobj
 173 0 obj
-<< /S /GoTo /D (6.8.14.2) >>
+<< /S /GoTo /D (6.7.10.15.3) >>
 endobj
 176 0 obj
-(2.3.3. The Whining Cron)
+(2.2.4.2. Microsoft Internet Information Services)
 endobj
 177 0 obj
-<< /S /GoTo /D (6.8.15.2) >>
+<< /S /GoTo /D (6.7.10.16.3) >>
 endobj
 180 0 obj
-(2.3.4. Patch Viewer)
+(2.2.4.3. AOL Server)
 endobj
 181 0 obj
-<< /S /GoTo /D (6.8.16.2) >>
+<< /S /GoTo /D (6.7.11.2) >>
 endobj
 184 0 obj
-(2.3.5. LDAP Authentication)
+(2.2.5. Bugzilla)
 endobj
 185 0 obj
-<< /S /GoTo /D (6.8.17.2) >>
+<< /S /GoTo /D (6.8.1) >>
 endobj
 188 0 obj
-(2.3.6. Serving Alternate Formats with the right MIME type)
+(2.3. Optional Additional Configuration)
 endobj
 189 0 obj
-<< /S /GoTo /D (6.9.1) >>
+<< /S /GoTo /D (6.8.12.2) >>
 endobj
 192 0 obj
-(2.4. OSSpecific Installation Notes)
+(2.3.1. Bug Graphs)
 endobj
 193 0 obj
-<< /S /GoTo /D (6.9.18.2) >>
+<< /S /GoTo /D (6.8.13.2) >>
 endobj
 196 0 obj
-(2.4.1. Microsoft Windows)
+(2.3.2. Dependency Charts)
 endobj
 197 0 obj
-<< /S /GoTo /D (6.9.18.17.3) >>
+<< /S /GoTo /D (6.8.14.2) >>
 endobj
 200 0 obj
-(2.4.1.1. Win32 Perl)
+(2.3.3. The Whining Cron)
 endobj
 201 0 obj
-<< /S /GoTo /D (6.9.18.18.3) >>
+<< /S /GoTo /D (6.8.15.2) >>
 endobj
 204 0 obj
-(2.4.1.2. Perl Modules on Win32)
+(2.3.4. Whining)
 endobj
 205 0 obj
-<< /S /GoTo /D (6.9.18.19.3) >>
+<< /S /GoTo /D (6.8.16.2) >>
 endobj
 208 0 obj
-(2.4.1.3. Code changes required to run on win32)
+(2.3.5. Patch Viewer)
 endobj
 209 0 obj
-<< /S /GoTo /D (6.9.18.20.3) >>
+<< /S /GoTo /D (6.8.17.2) >>
 endobj
 212 0 obj
-(2.4.1.4. Serving the web pages)
+(2.3.6. LDAP Authentication)
 endobj
 213 0 obj
-<< /S /GoTo /D (6.9.19.2) >>
+<< /S /GoTo /D (6.8.18.2) >>
 endobj
 216 0 obj
-(2.4.2. Mac OS X)
+(2.3.7. Serving Alternate Formats with the right MIME type)
 endobj
 217 0 obj
-<< /S /GoTo /D (6.9.20.2) >>
+<< /S /GoTo /D (6.9.1) >>
 endobj
 220 0 obj
-(2.4.3. LinuxMandrake 8.0)
+(2.4. OSSpecific Installation Notes)
 endobj
 221 0 obj
-<< /S /GoTo /D (6.10.1) >>
+<< /S /GoTo /D (6.9.19.2) >>
 endobj
 224 0 obj
-(2.5. UNIX \(nonroot\) Installation Notes)
+(2.4.1. Microsoft Windows)
 endobj
 225 0 obj
-<< /S /GoTo /D (6.10.21.2) >>
+<< /S /GoTo /D (6.9.19.17.3) >>
 endobj
 228 0 obj
-(2.5.1. Introduction)
+(2.4.1.1. Win32 Perl)
 endobj
 229 0 obj
-<< /S /GoTo /D (6.10.22.2) >>
+<< /S /GoTo /D (6.9.19.18.3) >>
 endobj
 232 0 obj
-(2.5.2. MySQL)
+(2.4.1.2. Perl Modules on Win32)
 endobj
 233 0 obj
-<< /S /GoTo /D (6.10.22.21.3) >>
+<< /S /GoTo /D (6.9.19.19.3) >>
 endobj
 236 0 obj
-(2.5.2.1. Running MySQL as NonRoot)
+(2.4.1.3. Code changes required to run on win32)
 endobj
 237 0 obj
-<< /S /GoTo /D (6.10.22.21.1.4) >>
+<< /S /GoTo /D (6.9.19.20.3) >>
 endobj
 240 0 obj
-(2.5.2.1.1. The Custom Configuration Method)
+(2.4.1.4. Serving the web pages)
 endobj
 241 0 obj
-<< /S /GoTo /D (6.10.22.21.2.4) >>
+<< /S /GoTo /D (6.9.20.2) >>
 endobj
 244 0 obj
-(2.5.2.1.2. The Custom Built Method)
+(2.4.2. Mac OS X)
 endobj
 245 0 obj
-<< /S /GoTo /D (6.10.22.21.3.4) >>
+<< /S /GoTo /D (6.9.21.2) >>
 endobj
 248 0 obj
-(2.5.2.1.3. Starting the Server)
+(2.4.3. LinuxMandrake 8.0)
 endobj
 249 0 obj
-<< /S /GoTo /D (6.10.23.2) >>
+<< /S /GoTo /D (6.10.1) >>
 endobj
 252 0 obj
-(2.5.3. Perl)
+(2.5. UNIX \(nonroot\) Installation Notes)
 endobj
 253 0 obj
-<< /S /GoTo /D (6.10.24.2) >>
+<< /S /GoTo /D (6.10.22.2) >>
 endobj
 256 0 obj
-(2.5.4. Perl Modules)
+(2.5.1. Introduction)
 endobj
 257 0 obj
-<< /S /GoTo /D (6.10.24.22.3) >>
+<< /S /GoTo /D (6.10.23.2) >>
 endobj
 260 0 obj
-(2.5.4.1. The Independant Method)
+(2.5.2. MySQL)
 endobj
 261 0 obj
-<< /S /GoTo /D (6.10.24.23.3) >>
+<< /S /GoTo /D (6.10.23.21.3) >>
 endobj
 264 0 obj
-(2.5.4.2. The Mixed Method)
+(2.5.2.1. Running MySQL as NonRoot)
 endobj
 265 0 obj
-<< /S /GoTo /D (6.10.25.2) >>
+<< /S /GoTo /D (6.10.23.21.7.4) >>
 endobj
 268 0 obj
-(2.5.5. HTTP Server)
+(2.5.2.1.1. The Custom Configuration Method)
 endobj
 269 0 obj
-<< /S /GoTo /D (6.10.25.24.3) >>
+<< /S /GoTo /D (6.10.23.21.8.4) >>
 endobj
 272 0 obj
-(2.5.5.1. Running Apache as NonRoot)
+(2.5.2.1.2. The Custom Built Method)
 endobj
 273 0 obj
-<< /S /GoTo /D (6.10.26.2) >>
+<< /S /GoTo /D (6.10.23.21.9.4) >>
 endobj
 276 0 obj
-(2.5.6. Bugzilla)
+(2.5.2.1.3. Starting the Server)
 endobj
 277 0 obj
-<< /S /GoTo /D (7.0) >>
+<< /S /GoTo /D (6.10.24.2) >>
 endobj
 280 0 obj
-(Chapter 3. Administering Bugzilla)
+(2.5.3. Perl)
 endobj
 281 0 obj
-<< /S /GoTo /D (7.11.1) >>
+<< /S /GoTo /D (6.10.25.2) >>
 endobj
 284 0 obj
-(3.1. Bugzilla Configuration)
+(2.5.4. Perl Modules)
 endobj
 285 0 obj
-<< /S /GoTo /D (7.12.1) >>
+<< /S /GoTo /D (6.10.25.22.3) >>
 endobj
 288 0 obj
-(3.2. User Administration)
+(2.5.4.1. The Independant Method)
 endobj
 289 0 obj
-<< /S /GoTo /D (7.12.27.2) >>
+<< /S /GoTo /D (6.10.25.23.3) >>
 endobj
 292 0 obj
-(3.2.1. Creating the Default User)
+(2.5.4.2. The Mixed Method)
 endobj
 293 0 obj
-<< /S /GoTo /D (7.12.28.2) >>
+<< /S /GoTo /D (6.10.26.2) >>
 endobj
 296 0 obj
-(3.2.2. Managing Other Users)
+(2.5.5. HTTP Server)
 endobj
 297 0 obj
-<< /S /GoTo /D (7.12.28.25.3) >>
+<< /S /GoTo /D (6.10.26.24.3) >>
 endobj
 300 0 obj
-(3.2.2.1. Creating new users)
+(2.5.5.1. Running Apache as NonRoot)
 endobj
 301 0 obj
-<< /S /GoTo /D (7.12.28.26.3) >>
+<< /S /GoTo /D (6.10.27.2) >>
 endobj
 304 0 obj
-(3.2.2.2. Modifying Users)
+(2.5.6. Bugzilla)
 endobj
 305 0 obj
-<< /S /GoTo /D (7.13.1) >>
+<< /S /GoTo /D (7.0) >>
 endobj
 308 0 obj
-(3.3. Products)
+(Chapter 3. Administering Bugzilla)
 endobj
 309 0 obj
-<< /S /GoTo /D (7.14.1) >>
+<< /S /GoTo /D (7.11.1) >>
 endobj
 312 0 obj
-(3.4. Components)
+(3.1. Bugzilla Configuration)
 endobj
 313 0 obj
-<< /S /GoTo /D (7.15.1) >>
+<< /S /GoTo /D (7.12.1) >>
 endobj
 316 0 obj
-(3.5. Versions)
+(3.2. User Administration)
 endobj
 317 0 obj
-<< /S /GoTo /D (7.16.1) >>
+<< /S /GoTo /D (7.12.28.2) >>
 endobj
 320 0 obj
-(3.6. Milestones)
+(3.2.1. Creating the Default User)
 endobj
 321 0 obj
-<< /S /GoTo /D (7.17.1) >>
+<< /S /GoTo /D (7.12.29.2) >>
 endobj
 324 0 obj
-(3.7. Flags)
+(3.2.2. Managing Other Users)
 endobj
 325 0 obj
-<< /S /GoTo /D (7.17.29.2) >>
+<< /S /GoTo /D (7.12.29.25.3) >>
 endobj
 328 0 obj
-(3.7.1. A Simple Example)
+(3.2.2.1. Creating new users)
 endobj
 329 0 obj
-<< /S /GoTo /D (7.17.30.2) >>
+<< /S /GoTo /D (7.12.29.26.3) >>
 endobj
 332 0 obj
-(3.7.2. About Flags)
+(3.2.2.2. Modifying Users)
 endobj
 333 0 obj
-<< /S /GoTo /D (7.17.30.27.3) >>
+<< /S /GoTo /D (7.13.1) >>
 endobj
 336 0 obj
-(3.7.2.1. Values)
+(3.3. Products)
 endobj
 337 0 obj
-<< /S /GoTo /D (7.17.31.2) >>
+<< /S /GoTo /D (7.14.1) >>
 endobj
 340 0 obj
-(3.7.3. Using flag requests)
+(3.4. Components)
 endobj
 341 0 obj
-<< /S /GoTo /D (7.17.32.2) >>
+<< /S /GoTo /D (7.15.1) >>
 endobj
 344 0 obj
-(3.7.4. Two Types of Flags)
+(3.5. Versions)
 endobj
 345 0 obj
-<< /S /GoTo /D (7.17.32.28.3) >>
+<< /S /GoTo /D (7.16.1) >>
 endobj
 348 0 obj
-(3.7.4.1. Attachment Flags)
+(3.6. Milestones)
 endobj
 349 0 obj
-<< /S /GoTo /D (7.17.32.29.3) >>
+<< /S /GoTo /D (7.17.1) >>
 endobj
 352 0 obj
-(3.7.4.2. Bug Flags)
+(3.7. Flags)
 endobj
 353 0 obj
-<< /S /GoTo /D (7.17.33.2) >>
+<< /S /GoTo /D (7.17.30.2) >>
 endobj
 356 0 obj
-(3.7.5. Administering Flags)
+(3.7.1. A Simple Example)
 endobj
 357 0 obj
-<< /S /GoTo /D (7.17.33.30.3) >>
+<< /S /GoTo /D (7.17.31.2) >>
 endobj
 360 0 obj
-(3.7.5.1. Creating a Flag)
+(3.7.2. About Flags)
 endobj
 361 0 obj
-<< /S /GoTo /D (7.17.33.30.4.4) >>
+<< /S /GoTo /D (7.17.31.27.3) >>
 endobj
 364 0 obj
-(3.7.5.1.1. Name)
+(3.7.2.1. Values)
 endobj
 365 0 obj
-<< /S /GoTo /D (7.17.33.30.5.4) >>
+<< /S /GoTo /D (7.17.32.2) >>
 endobj
 368 0 obj
-(3.7.5.1.2. Description)
+(3.7.3. Using flag requests)
 endobj
 369 0 obj
-<< /S /GoTo /D (7.17.33.30.6.4) >>
+<< /S /GoTo /D (7.17.33.2) >>
 endobj
 372 0 obj
-(3.7.5.1.3. Category)
+(3.7.4. Two Types of Flags)
 endobj
 373 0 obj
-<< /S /GoTo /D (7.17.33.30.7.4) >>
+<< /S /GoTo /D (7.17.33.28.3) >>
 endobj
 376 0 obj
-(3.7.5.1.4. Sort Key)
+(3.7.4.1. Attachment Flags)
 endobj
 377 0 obj
-<< /S /GoTo /D (7.17.33.30.8.4) >>
+<< /S /GoTo /D (7.17.33.29.3) >>
 endobj
 380 0 obj
-(3.7.5.1.5. Active)
+(3.7.4.2. Bug Flags)
 endobj
 381 0 obj
-<< /S /GoTo /D (7.17.33.30.9.4) >>
+<< /S /GoTo /D (7.17.34.2) >>
 endobj
 384 0 obj
-(3.7.5.1.6. Requestable)
+(3.7.5. Administering Flags)
 endobj
 385 0 obj
-<< /S /GoTo /D (7.17.33.30.10.4) >>
+<< /S /GoTo /D (7.17.34.30.3) >>
 endobj
 388 0 obj
-(3.7.5.1.7. CC List)
+(3.7.5.1. Creating a Flag)
 endobj
 389 0 obj
-<< /S /GoTo /D (7.17.33.30.11.4) >>
+<< /S /GoTo /D (7.17.34.30.10.4) >>
 endobj
 392 0 obj
-(3.7.5.1.8. Specifically Requestable)
+(3.7.5.1.1. Name)
 endobj
 393 0 obj
-<< /S /GoTo /D (7.17.33.30.12.4) >>
+<< /S /GoTo /D (7.17.34.30.11.4) >>
 endobj
 396 0 obj
-(3.7.5.1.9. Multiplicable)
+(3.7.5.1.2. Description)
 endobj
 397 0 obj
-<< /S /GoTo /D (7.17.33.31.3) >>
+<< /S /GoTo /D (7.17.34.30.12.4) >>
 endobj
 400 0 obj
-(3.7.5.2. Deleting a Flag)
+(3.7.5.1.3. Category)
 endobj
 401 0 obj
-<< /S /GoTo /D (7.17.33.32.3) >>
+<< /S /GoTo /D (7.17.34.30.13.4) >>
 endobj
 404 0 obj
-(3.7.5.3. Editing a Flag)
+(3.7.5.1.4. Sort Key)
 endobj
 405 0 obj
-<< /S /GoTo /D (7.18.1) >>
+<< /S /GoTo /D (7.17.34.30.14.4) >>
 endobj
 408 0 obj
-(3.8. Voting)
+(3.7.5.1.5. Active)
 endobj
 409 0 obj
-<< /S /GoTo /D (7.19.1) >>
+<< /S /GoTo /D (7.17.34.30.15.4) >>
 endobj
 412 0 obj
-(3.9. Quips)
+(3.7.5.1.6. Requestable)
 endobj
 413 0 obj
-<< /S /GoTo /D (7.20.1) >>
+<< /S /GoTo /D (7.17.34.30.16.4) >>
 endobj
 416 0 obj
-(3.10. Groups and Group Security)
+(3.7.5.1.7. CC List)
 endobj
 417 0 obj
-<< /S /GoTo /D (7.20.34.2) >>
+<< /S /GoTo /D (7.17.34.30.17.4) >>
 endobj
 420 0 obj
-(3.10.1. Creating Groups)
+(3.7.5.1.8. Specifically Requestable)
 endobj
 421 0 obj
-<< /S /GoTo /D (7.20.35.2) >>
+<< /S /GoTo /D (7.17.34.30.18.4) >>
 endobj
 424 0 obj
-(3.10.2. Assigning Users to Groups)
+(3.7.5.1.9. Multiplicable)
 endobj
 425 0 obj
-<< /S /GoTo /D (7.20.36.2) >>
+<< /S /GoTo /D (7.17.34.31.3) >>
 endobj
 428 0 obj
-(3.10.3. Assigning Group Controls to Products)
+(3.7.5.2. Deleting a Flag)
 endobj
 429 0 obj
-<< /S /GoTo /D (7.20.37.2) >>
+<< /S /GoTo /D (7.17.34.32.3) >>
 endobj
 432 0 obj
-(3.10.4. Common Applications of Group Controls)
+(3.7.5.3. Editing a Flag)
 endobj
 433 0 obj
-<< /S /GoTo /D (7.20.37.33.3) >>
+<< /S /GoTo /D (7.18.1) >>
 endobj
 436 0 obj
-(3.10.4.1. General User Access With Security Group)
+(3.8. Voting)
 endobj
 437 0 obj
-<< /S /GoTo /D (7.20.37.34.3) >>
+<< /S /GoTo /D (7.19.1) >>
 endobj
 440 0 obj
-(3.10.4.2. General User Access With A Security Product)
+(3.9. Quips)
 endobj
 441 0 obj
-<< /S /GoTo /D (7.20.37.35.3) >>
+<< /S /GoTo /D (7.20.1) >>
 endobj
 444 0 obj
-(3.10.4.3. Product Isolation With Common Group)
+(3.10. Groups and Group Security)
 endobj
 445 0 obj
-<< /S /GoTo /D (7.21.1) >>
+<< /S /GoTo /D (7.20.35.2) >>
 endobj
 448 0 obj
-(3.11. Upgrading to New Releases)
+(3.10.1. Creating Groups)
 endobj
 449 0 obj
-<< /S /GoTo /D (7.21.38.2) >>
+<< /S /GoTo /D (7.20.36.2) >>
 endobj
 452 0 obj
-(3.11.1. Version Definitions)
+(3.10.2. Assigning Users to Groups)
 endobj
 453 0 obj
-<< /S /GoTo /D (7.21.39.2) >>
+<< /S /GoTo /D (7.20.37.2) >>
 endobj
 456 0 obj
-(3.11.2. Upgrading Methods and Procedure)
+(3.10.3. Assigning Group Controls to Products)
 endobj
 457 0 obj
-<< /S /GoTo /D (7.21.39.36.3) >>
+<< /S /GoTo /D (7.20.38.2) >>
 endobj
 460 0 obj
-(3.11.2.1. Upgrading using CVS)
+(3.10.4. Common Applications of Group Controls)
 endobj
 461 0 obj
-<< /S /GoTo /D (7.21.39.37.3) >>
+<< /S /GoTo /D (7.20.38.33.3) >>
 endobj
 464 0 obj
-(3.11.2.2. Upgrading using the tarball)
+(3.10.4.1. General User Access With Security Group)
 endobj
 465 0 obj
-<< /S /GoTo /D (7.21.39.38.3) >>
+<< /S /GoTo /D (7.20.38.34.3) >>
 endobj
 468 0 obj
-(3.11.2.3. Upgrading using patches)
+(3.10.4.2. General User Access With A Security Product)
 endobj
 469 0 obj
-<< /S /GoTo /D (7.21.40.2) >>
+<< /S /GoTo /D (7.20.38.35.3) >>
 endobj
 472 0 obj
-(3.11.3. Completing Your Upgrade)
+(3.10.4.3. Product Isolation With Common Group)
 endobj
 473 0 obj
-<< /S /GoTo /D (8.0) >>
+<< /S /GoTo /D (7.21.1) >>
 endobj
 476 0 obj
-(Chapter 4. Bugzilla Security)
+(3.11. Upgrading to New Releases)
 endobj
 477 0 obj
-<< /S /GoTo /D (8.22.1) >>
+<< /S /GoTo /D (7.21.39.2) >>
 endobj
 480 0 obj
-(4.1. Operating System)
+(3.11.1. Version Definitions)
 endobj
 481 0 obj
-<< /S /GoTo /D (8.22.41.2) >>
+<< /S /GoTo /D (7.21.40.2) >>
 endobj
 484 0 obj
-(4.1.1. TCP/IP Ports)
+(3.11.2. Upgrading Methods and Procedure)
 endobj
 485 0 obj
-<< /S /GoTo /D (8.22.42.2) >>
+<< /S /GoTo /D (7.21.40.36.3) >>
 endobj
 488 0 obj
-(4.1.2. System User Accounts)
+(3.11.2.1. Upgrading using CVS)
 endobj
 489 0 obj
-<< /S /GoTo /D (8.22.43.2) >>
+<< /S /GoTo /D (7.21.40.37.3) >>
 endobj
 492 0 obj
-(4.1.3. The chroot Jail)
+(3.11.2.2. Upgrading using the tarball)
 endobj
 493 0 obj
-<< /S /GoTo /D (8.23.1) >>
+<< /S /GoTo /D (7.21.40.38.3) >>
 endobj
 496 0 obj
-(4.2. MySQL)
+(3.11.2.3. Upgrading using patches)
 endobj
 497 0 obj
-<< /S /GoTo /D (8.23.44.2) >>
+<< /S /GoTo /D (7.21.41.2) >>
 endobj
 500 0 obj
-(4.2.1. The MySQL System Account)
+(3.11.3. Completing Your Upgrade)
 endobj
 501 0 obj
-<< /S /GoTo /D (8.23.45.2) >>
+<< /S /GoTo /D (8.0) >>
 endobj
 504 0 obj
-(4.2.2. The MySQL root and anonymous Users)
+(Chapter 4. Bugzilla Security)
 endobj
 505 0 obj
-<< /S /GoTo /D (8.23.46.2) >>
+<< /S /GoTo /D (8.22.1) >>
 endobj
 508 0 obj
-(4.2.3. Network Access)
+(4.1. Operating System)
 endobj
 509 0 obj
-<< /S /GoTo /D (8.24.1) >>
+<< /S /GoTo /D (8.22.42.2) >>
 endobj
 512 0 obj
-(4.3. Webserver)
+(4.1.1. TCP/IP Ports)
 endobj
 513 0 obj
-<< /S /GoTo /D (8.24.47.2) >>
+<< /S /GoTo /D (8.22.43.2) >>
 endobj
 516 0 obj
-(4.3.1. Disabling Remote Access to Bugzilla Configuration Files)
+(4.1.2. System User Accounts)
 endobj
 517 0 obj
-<< /S /GoTo /D (8.24.48.2) >>
+<< /S /GoTo /D (8.22.44.2) >>
 endobj
 520 0 obj
-(4.3.2. Using modthrottle to Prevent a DOS)
+(4.1.3. The chroot Jail)
 endobj
 521 0 obj
-<< /S /GoTo /D (8.25.1) >>
+<< /S /GoTo /D (8.23.1) >>
 endobj
 524 0 obj
-(4.4. Bugzilla)
+(4.2. MySQL)
 endobj
 525 0 obj
-<< /S /GoTo /D (8.25.49.2) >>
+<< /S /GoTo /D (8.23.45.2) >>
 endobj
 528 0 obj
-(4.4.1. Prevent users injecting malicious Javascript)
+(4.2.1. The MySQL System Account)
 endobj
 529 0 obj
-<< /S /GoTo /D (9.0) >>
+<< /S /GoTo /D (8.23.46.2) >>
 endobj
 532 0 obj
-(Chapter 5. Customising Bugzilla)
+(4.2.2. The MySQL root and anonymous Users)
 endobj
 533 0 obj
-<< /S /GoTo /D (9.26.1) >>
+<< /S /GoTo /D (8.23.47.2) >>
 endobj
 536 0 obj
-(5.1. Template Customization)
+(4.2.3. Network Access)
 endobj
 537 0 obj
-<< /S /GoTo /D (9.26.50.2) >>
+<< /S /GoTo /D (8.24.1) >>
 endobj
 540 0 obj
-(5.1.1. Template Directory Structure)
+(4.3. Webserver)
 endobj
 541 0 obj
-<< /S /GoTo /D (9.26.51.2) >>
+<< /S /GoTo /D (8.24.48.2) >>
 endobj
 544 0 obj
-(5.1.2. Choosing a Customization Method)
+(4.3.1. Disabling Remote Access to Bugzilla Configuration Files)
 endobj
 545 0 obj
-<< /S /GoTo /D (9.26.52.2) >>
+<< /S /GoTo /D (8.24.49.2) >>
 endobj
 548 0 obj
-(5.1.3. How To Edit Templates)
+(4.3.2. Using modthrottle to Prevent a DOS)
 endobj
 549 0 obj
-<< /S /GoTo /D (9.26.53.2) >>
+<< /S /GoTo /D (8.25.1) >>
 endobj
 552 0 obj
-(5.1.4. Template Formats and Types)
+(4.4. Bugzilla)
 endobj
 553 0 obj
-<< /S /GoTo /D (9.26.54.2) >>
+<< /S /GoTo /D (8.25.50.2) >>
 endobj
 556 0 obj
-(5.1.5. Particular Templates)
+(4.4.1. Prevent users injecting malicious Javascript)
 endobj
 557 0 obj
-<< /S /GoTo /D (9.26.55.2) >>
+<< /S /GoTo /D (9.0) >>
 endobj
 560 0 obj
-(5.1.6. Configuring Bugzilla to Detect the User's Language)
+(Chapter 5. Customising Bugzilla)
 endobj
 561 0 obj
-<< /S /GoTo /D (9.27.1) >>
+<< /S /GoTo /D (9.26.1) >>
 endobj
 564 0 obj
-(5.2. Template Hooks)
+(5.1. Template Customization)
 endobj
 565 0 obj
-<< /S /GoTo /D (9.28.1) >>
+<< /S /GoTo /D (9.26.51.2) >>
 endobj
 568 0 obj
-(5.3. Customizing Who Can Change What)
+(5.1.1. Template Directory Structure)
 endobj
 569 0 obj
-<< /S /GoTo /D (9.29.1) >>
+<< /S /GoTo /D (9.26.52.2) >>
 endobj
 572 0 obj
-(5.4. Modifying Your Running System)
+(5.1.2. Choosing a Customization Method)
 endobj
 573 0 obj
-<< /S /GoTo /D (9.30.1) >>
+<< /S /GoTo /D (9.26.53.2) >>
 endobj
 576 0 obj
-(5.5. MySQL Bugzilla Database Introduction)
+(5.1.3. How To Edit Templates)
 endobj
 577 0 obj
-<< /S /GoTo /D (9.30.56.2) >>
+<< /S /GoTo /D (9.26.54.2) >>
 endobj
 580 0 obj
-(5.5.1. Bugzilla Database Basics)
+(5.1.4. Template Formats and Types)
 endobj
 581 0 obj
-<< /S /GoTo /D (9.30.56.39.3) >>
+<< /S /GoTo /D (9.26.55.2) >>
 endobj
 584 0 obj
-(5.5.1.1. Bugzilla Database Tables)
+(5.1.5. Particular Templates)
 endobj
 585 0 obj
-<< /S /GoTo /D (9.31.1) >>
+<< /S /GoTo /D (9.26.56.2) >>
 endobj
 588 0 obj
-(5.6. Integrating Bugzilla with ThirdParty Tools)
+(5.1.6. Configuring Bugzilla to Detect the User's Language)
 endobj
 589 0 obj
-<< /S /GoTo /D (9.31.57.2) >>
+<< /S /GoTo /D (9.27.1) >>
 endobj
 592 0 obj
-(5.6.1. Bonsai)
+(5.2. Template Hooks)
 endobj
 593 0 obj
-<< /S /GoTo /D (9.31.58.2) >>
+<< /S /GoTo /D (9.28.1) >>
 endobj
 596 0 obj
-(5.6.2. CVS)
+(5.3. Customizing Who Can Change What)
 endobj
 597 0 obj
-<< /S /GoTo /D (9.31.59.2) >>
+<< /S /GoTo /D (9.29.1) >>
 endobj
 600 0 obj
-(5.6.3. Perforce SCM)
+(5.4. Modifying Your Running System)
 endobj
 601 0 obj
-<< /S /GoTo /D (9.31.60.2) >>
+<< /S /GoTo /D (9.30.1) >>
 endobj
 604 0 obj
-(5.6.4. Subversion)
+(5.5. MySQL Bugzilla Database Introduction)
 endobj
 605 0 obj
-<< /S /GoTo /D (9.31.61.2) >>
+<< /S /GoTo /D (9.30.57.2) >>
 endobj
 608 0 obj
-(5.6.5. Tinderbox/Tinderbox2)
+(5.5.1. Bugzilla Database Basics)
 endobj
 609 0 obj
-<< /S /GoTo /D (10.0) >>
+<< /S /GoTo /D (9.30.57.39.3) >>
 endobj
 612 0 obj
-(Chapter 6. Using Bugzilla)
+(5.5.1.1. Bugzilla Database Tables)
 endobj
 613 0 obj
-<< /S /GoTo /D (10.32.1) >>
+<< /S /GoTo /D (9.31.1) >>
 endobj
 616 0 obj
-(6.1. Introduction)
+(5.6. Integrating Bugzilla with ThirdParty Tools)
 endobj
 617 0 obj
-<< /S /GoTo /D (10.33.1) >>
+<< /S /GoTo /D (9.31.58.2) >>
 endobj
 620 0 obj
-(6.2. Create a Bugzilla Account)
+(5.6.1. Bonsai)
 endobj
 621 0 obj
-<< /S /GoTo /D (10.34.1) >>
+<< /S /GoTo /D (9.31.59.2) >>
 endobj
 624 0 obj
-(6.3. Anatomy of a Bug)
+(5.6.2. CVS)
 endobj
 625 0 obj
-<< /S /GoTo /D (10.35.1) >>
+<< /S /GoTo /D (9.31.60.2) >>
 endobj
 628 0 obj
-(6.4. Life Cycle of a Bug)
+(5.6.3. Perforce SCM)
 endobj
 629 0 obj
-<< /S /GoTo /D (10.36.1) >>
+<< /S /GoTo /D (9.31.61.2) >>
 endobj
 632 0 obj
-(6.5. Searching for Bugs)
+(5.6.4. Subversion)
 endobj
 633 0 obj
-<< /S /GoTo /D (10.36.62.2) >>
+<< /S /GoTo /D (9.31.62.2) >>
 endobj
 636 0 obj
-(6.5.1. Boolean Charts)
+(5.6.5. Tinderbox/Tinderbox2)
 endobj
 637 0 obj
-<< /S /GoTo /D (10.36.62.40.3) >>
+<< /S /GoTo /D (10.0) >>
 endobj
 640 0 obj
-(6.5.1.1. Pronoun Substitution)
+(Chapter 6. Using Bugzilla)
 endobj
 641 0 obj
-<< /S /GoTo /D (10.36.62.41.3) >>
+<< /S /GoTo /D (10.32.1) >>
 endobj
 644 0 obj
-(6.5.1.2. Negation)
+(6.1. Introduction)
 endobj
 645 0 obj
-<< /S /GoTo /D (10.36.62.42.3) >>
+<< /S /GoTo /D (10.33.1) >>
 endobj
 648 0 obj
-(6.5.1.3. Multiple Charts)
+(6.2. Create a Bugzilla Account)
 endobj
 649 0 obj
-<< /S /GoTo /D (10.37.1) >>
+<< /S /GoTo /D (10.34.1) >>
 endobj
 652 0 obj
-(6.6. Bug Lists)
+(6.3. Anatomy of a Bug)
 endobj
 653 0 obj
-<< /S /GoTo /D (10.38.1) >>
+<< /S /GoTo /D (10.35.1) >>
 endobj
 656 0 obj
-(6.7. Filing Bugs)
+(6.4. Life Cycle of a Bug)
 endobj
 657 0 obj
-<< /S /GoTo /D (10.39.1) >>
+<< /S /GoTo /D (10.36.1) >>
 endobj
 660 0 obj
-(6.8. Patch Viewer)
+(6.5. Searching for Bugs)
 endobj
 661 0 obj
-<< /S /GoTo /D (10.39.63.2) >>
+<< /S /GoTo /D (10.36.63.2) >>
 endobj
 664 0 obj
-(6.8.1. Viewing Patches in Patch Viewer)
+(6.5.1. Boolean Charts)
 endobj
 665 0 obj
-<< /S /GoTo /D (10.39.64.2) >>
+<< /S /GoTo /D (10.36.63.40.3) >>
 endobj
 668 0 obj
-(6.8.2. Seeing the Difference Between Two Patches)
+(6.5.1.1. Pronoun Substitution)
 endobj
 669 0 obj
-<< /S /GoTo /D (10.39.65.2) >>
+<< /S /GoTo /D (10.36.63.41.3) >>
 endobj
 672 0 obj
-(6.8.3. Getting More Context in a Patch)
+(6.5.1.2. Negation)
 endobj
 673 0 obj
-<< /S /GoTo /D (10.39.66.2) >>
+<< /S /GoTo /D (10.36.63.42.3) >>
 endobj
 676 0 obj
-(6.8.4. Collapsing and Expanding Sections of a Patch)
+(6.5.1.3. Multiple Charts)
 endobj
 677 0 obj
-<< /S /GoTo /D (10.39.67.2) >>
+<< /S /GoTo /D (10.37.1) >>
 endobj
 680 0 obj
-(6.8.5. Linking to a Section of a Patch)
+(6.6. Bug Lists)
 endobj
 681 0 obj
-<< /S /GoTo /D (10.39.68.2) >>
+<< /S /GoTo /D (10.38.1) >>
 endobj
 684 0 obj
-(6.8.6. Going to Bonsai and LXR)
+(6.7. Filing Bugs)
 endobj
 685 0 obj
-<< /S /GoTo /D (10.39.69.2) >>
+<< /S /GoTo /D (10.39.1) >>
 endobj
 688 0 obj
-(6.8.7. Creating a Unified Diff)
+(6.8. Patch Viewer)
 endobj
 689 0 obj
-<< /S /GoTo /D (10.40.1) >>
+<< /S /GoTo /D (10.39.64.2) >>
 endobj
 692 0 obj
-(6.9. Hints and Tips)
+(6.8.1. Viewing Patches in Patch Viewer)
 endobj
 693 0 obj
-<< /S /GoTo /D (10.40.70.2) >>
+<< /S /GoTo /D (10.39.65.2) >>
 endobj
 696 0 obj
-(6.9.1. Autolinkification)
+(6.8.2. Seeing the Difference Between Two Patches)
 endobj
 697 0 obj
-<< /S /GoTo /D (10.40.71.2) >>
+<< /S /GoTo /D (10.39.66.2) >>
 endobj
 700 0 obj
-(6.9.2. Quicksearch)
+(6.8.3. Getting More Context in a Patch)
 endobj
 701 0 obj
-<< /S /GoTo /D (10.40.72.2) >>
+<< /S /GoTo /D (10.39.67.2) >>
 endobj
 704 0 obj
-(6.9.3. Comments)
+(6.8.4. Collapsing and Expanding Sections of a Patch)
 endobj
 705 0 obj
-<< /S /GoTo /D (10.40.73.2) >>
+<< /S /GoTo /D (10.39.68.2) >>
 endobj
 708 0 obj
-(6.9.4. Attachments)
+(6.8.5. Linking to a Section of a Patch)
 endobj
 709 0 obj
-<< /S /GoTo /D (10.41.1) >>
+<< /S /GoTo /D (10.39.69.2) >>
 endobj
 712 0 obj
-(6.10. User Preferences)
+(6.8.6. Going to Bonsai and LXR)
 endobj
 713 0 obj
-<< /S /GoTo /D (10.41.74.2) >>
+<< /S /GoTo /D (10.39.70.2) >>
 endobj
 716 0 obj
-(6.10.1. Account Settings)
+(6.8.7. Creating a Unified Diff)
 endobj
 717 0 obj
-<< /S /GoTo /D (10.41.75.2) >>
+<< /S /GoTo /D (10.40.1) >>
 endobj
 720 0 obj
-(6.10.2. Email Settings)
+(6.9. Hints and Tips)
 endobj
 721 0 obj
-<< /S /GoTo /D (10.41.76.2) >>
+<< /S /GoTo /D (10.40.71.2) >>
 endobj
 724 0 obj
-(6.10.3. Permissions)
+(6.9.1. Autolinkification)
 endobj
 725 0 obj
-<< /S /GoTo /D (10.42.1) >>
+<< /S /GoTo /D (10.40.72.2) >>
 endobj
 728 0 obj
-(6.11. Reports and Charts)
+(6.9.2. Quicksearch)
 endobj
 729 0 obj
-<< /S /GoTo /D (10.42.77.2) >>
+<< /S /GoTo /D (10.40.73.2) >>
 endobj
 732 0 obj
-(6.11.1. Reports)
+(6.9.3. Comments)
 endobj
 733 0 obj
-<< /S /GoTo /D (10.42.78.2) >>
+<< /S /GoTo /D (10.40.74.2) >>
 endobj
 736 0 obj
-(6.11.2. Charts)
+(6.9.4. Attachments)
 endobj
 737 0 obj
-<< /S /GoTo /D (10.42.78.43.3) >>
+<< /S /GoTo /D (10.41.1) >>
 endobj
 740 0 obj
-(6.11.2.1. Creating Charts)
+(6.10. User Preferences)
 endobj
 741 0 obj
-<< /S /GoTo /D (10.42.78.44.3) >>
+<< /S /GoTo /D (10.41.75.2) >>
 endobj
 744 0 obj
-(6.11.2.2. Creating New Data Sets)
+(6.10.1. Account Settings)
 endobj
 745 0 obj
-<< /S /GoTo /D (10.43.1) >>
+<< /S /GoTo /D (10.41.76.2) >>
 endobj
 748 0 obj
-(6.12. Flags)
+(6.10.2. Email Settings)
 endobj
 749 0 obj
-<< /S /GoTo /D (11.0) >>
+<< /S /GoTo /D (10.41.77.2) >>
 endobj
 752 0 obj
-(Appendix A. The Bugzilla FAQ)
+(6.10.3. Permissions)
 endobj
 753 0 obj
-<< /S /GoTo /D (12.0) >>
+<< /S /GoTo /D (10.42.1) >>
 endobj
 756 0 obj
-(Appendix B. Troubleshooting)
+(6.11. Reports and Charts)
 endobj
 757 0 obj
-<< /S /GoTo /D (12.44.1) >>
+<< /S /GoTo /D (10.42.78.2) >>
 endobj
 760 0 obj
-(B.1. General Advice)
+(6.11.1. Reports)
 endobj
 761 0 obj
-<< /S /GoTo /D (12.45.1) >>
+<< /S /GoTo /D (10.42.79.2) >>
 endobj
 764 0 obj
-(B.2. The Apache webserver is not serving Bugzilla pages)
+(6.11.2. Charts)
 endobj
 765 0 obj
-<< /S /GoTo /D (12.46.1) >>
+<< /S /GoTo /D (10.42.79.43.3) >>
 endobj
 768 0 obj
-(B.3. I installed a Perl module, but checksetup.pl claims it's not installed!)
+(6.11.2.1. Creating Charts)
 endobj
 769 0 obj
-<< /S /GoTo /D (12.47.1) >>
+<< /S /GoTo /D (10.42.79.44.3) >>
 endobj
 772 0 obj
-(B.4. Bundle::Bugzilla makes me upgrade to Perl 5.6.1)
+(6.11.2.2. Creating New Data Sets)
 endobj
 773 0 obj
-<< /S /GoTo /D (12.48.1) >>
+<< /S /GoTo /D (10.43.1) >>
 endobj
 776 0 obj
-(B.5. DBD::Sponge::db prepare failed)
+(6.12. Flags)
 endobj
 777 0 obj
-<< /S /GoTo /D (12.49.1) >>
+<< /S /GoTo /D (10.44.1) >>
 endobj
 780 0 obj
-(B.6. cannot chdir\(/var/spool/mqueue\))
+(6.13. Whining)
 endobj
 781 0 obj
-<< /S /GoTo /D (12.50.1) >>
+<< /S /GoTo /D (10.44.80.2) >>
 endobj
 784 0 obj
-(B.7. Your vendor has not defined Fcntl macro ONOINHERIT)
+(6.13.1. The Event)
 endobj
 785 0 obj
-<< /S /GoTo /D (12.51.1) >>
+<< /S /GoTo /D (10.44.81.2) >>
 endobj
 788 0 obj
-(B.8. Everybody is constantly being forced to relogin)
+(6.13.2. Whining Schedule)
 endobj
 789 0 obj
-<< /S /GoTo /D (12.52.1) >>
+<< /S /GoTo /D (10.44.82.2) >>
 endobj
 792 0 obj
-(B.9. Some users are constantly being forced to relogin)
+(6.13.3. Whining Queries)
 endobj
 793 0 obj
-<< /S /GoTo /D (12.53.1) >>
+<< /S /GoTo /D (10.44.83.2) >>
 endobj
 796 0 obj
-(B.10. index.cgi doesn't show up unless specified in the URL)
+(6.13.4. Saving Your Changes)
 endobj
 797 0 obj
-<< /S /GoTo /D (12.54.1) >>
+<< /S /GoTo /D (11.0) >>
 endobj
 800 0 obj
-(B.11. checksetup.pl reports "Client does not support authentication protocol requested by server...")
+(Appendix A. The Bugzilla FAQ)
 endobj
 801 0 obj
-<< /S /GoTo /D (13.0) >>
+<< /S /GoTo /D (12.0) >>
 endobj
 804 0 obj
-(Appendix C. Contrib)
+(Appendix B. Troubleshooting)
 endobj
 805 0 obj
-<< /S /GoTo /D (13.55.1) >>
+<< /S /GoTo /D (12.45.1) >>
 endobj
 808 0 obj
-(C.1. Commandline Search Interface)
+(B.1. General Advice)
 endobj
 809 0 obj
-<< /S /GoTo /D (13.56.1) >>
+<< /S /GoTo /D (12.46.1) >>
 endobj
 812 0 obj
-(C.2. Commandline 'Send Unsent Bugmail' tool)
+(B.2. The Apache webserver is not serving Bugzilla pages)
 endobj
 813 0 obj
-<< /S /GoTo /D (14.0) >>
+<< /S /GoTo /D (12.47.1) >>
 endobj
 816 0 obj
-(Appendix D. Manual Installation of Perl Modules)
+(B.3. I installed a Perl module, but checksetup.pl claims it's not installed!)
 endobj
 817 0 obj
-<< /S /GoTo /D (14.57.1) >>
+<< /S /GoTo /D (12.48.1) >>
 endobj
 820 0 obj
-(D.1. Instructions)
+(B.4. Bundle::Bugzilla makes me upgrade to Perl 5.6.1)
 endobj
 821 0 obj
-<< /S /GoTo /D (14.58.1) >>
+<< /S /GoTo /D (12.49.1) >>
 endobj
 824 0 obj
-(D.2. Download Locations)
+(B.5. DBD::Sponge::db prepare failed)
 endobj
 825 0 obj
-<< /S /GoTo /D (14.59.1) >>
+<< /S /GoTo /D (12.50.1) >>
 endobj
 828 0 obj
-(D.3. Optional Modules)
+(B.6. cannot chdir\(/var/spool/mqueue\))
 endobj
 829 0 obj
-<< /S /GoTo /D (15.0) >>
+<< /S /GoTo /D (12.51.1) >>
 endobj
 832 0 obj
-(Appendix E. GNU Free Documentation License)
+(B.7. Your vendor has not defined Fcntl macro ONOINHERIT)
 endobj
 833 0 obj
-<< /S /GoTo /D (15.60.1) >>
+<< /S /GoTo /D (12.52.1) >>
 endobj
 836 0 obj
-(0. Preamble)
+(B.8. Everybody is constantly being forced to relogin)
 endobj
 837 0 obj
-<< /S /GoTo /D (15.61.1) >>
+<< /S /GoTo /D (12.53.1) >>
 endobj
 840 0 obj
-(1. Applicability and Definition)
+(B.9. Some users are constantly being forced to relogin)
 endobj
 841 0 obj
-<< /S /GoTo /D (15.62.1) >>
+<< /S /GoTo /D (12.54.1) >>
 endobj
 844 0 obj
-(2. Verbatim Copying)
+(B.10. index.cgi doesn't show up unless specified in the URL)
 endobj
 845 0 obj
-<< /S /GoTo /D (15.63.1) >>
+<< /S /GoTo /D (12.55.1) >>
 endobj
 848 0 obj
-(3. Copying in Quantity)
+(B.11. checksetup.pl reports "Client does not support authentication protocol requested by server...")
 endobj
 849 0 obj
-<< /S /GoTo /D (15.64.1) >>
+<< /S /GoTo /D (13.0) >>
 endobj
 852 0 obj
-(4. Modifications)
+(Appendix C. Contrib)
 endobj
 853 0 obj
-<< /S /GoTo /D (15.65.1) >>
+<< /S /GoTo /D (13.56.1) >>
 endobj
 856 0 obj
-(5. Combining Documents)
+(C.1. Commandline Search Interface)
 endobj
 857 0 obj
-<< /S /GoTo /D (15.66.1) >>
+<< /S /GoTo /D (13.57.1) >>
 endobj
 860 0 obj
-(6. Collections of Documents)
+(C.2. Commandline 'Send Unsent Bugmail' tool)
 endobj
 861 0 obj
-<< /S /GoTo /D (15.67.1) >>
+<< /S /GoTo /D (14.0) >>
 endobj
 864 0 obj
-(7. Aggregation with Independent Works)
+(Appendix D. Manual Installation of Perl Modules)
 endobj
 865 0 obj
-<< /S /GoTo /D (15.68.1) >>
+<< /S /GoTo /D (14.58.1) >>
 endobj
 868 0 obj
-(8. Translation)
+(D.1. Instructions)
 endobj
 869 0 obj
-<< /S /GoTo /D (15.69.1) >>
+<< /S /GoTo /D (14.59.1) >>
 endobj
 872 0 obj
-(9. Termination)
+(D.2. Download Locations)
 endobj
 873 0 obj
-<< /S /GoTo /D (15.70.1) >>
+<< /S /GoTo /D (14.60.1) >>
 endobj
 876 0 obj
-(10. Future Revisions of this License)
+(D.3. Optional Modules)
 endobj
 877 0 obj
-<< /S /GoTo /D (15.71.1) >>
+<< /S /GoTo /D (15.0) >>
 endobj
 880 0 obj
-(How to use this License for your documents)
+(Appendix E. GNU Free Documentation License)
 endobj
 881 0 obj
-<< /S /GoTo /D (16.0) >>
+<< /S /GoTo /D (15.61.1) >>
 endobj
 884 0 obj
-(Glossary)
+(0. Preamble)
 endobj
 885 0 obj
-<< /S /GoTo /D (17.0) >>
+<< /S /GoTo /D (15.62.1) >>
 endobj
 888 0 obj
-(09, high ascii)
+(1. Applicability and Definition)
 endobj
 889 0 obj
-<< /S /GoTo /D (17.71.79.2) >>
+<< /S /GoTo /D (15.63.1) >>
 endobj
 892 0 obj
-(.htaccess)
+(2. Verbatim Copying)
 endobj
 893 0 obj
-<< /S /GoTo /D (18.0) >>
+<< /S /GoTo /D (15.64.1) >>
 endobj
 896 0 obj
-(A)
+(3. Copying in Quantity)
 endobj
 897 0 obj
-<< /S /GoTo /D (18.71.80.2) >>
+<< /S /GoTo /D (15.65.1) >>
 endobj
 900 0 obj
-(Apache)
+(4. Modifications)
 endobj
 901 0 obj
-<< /S /GoTo /D (18.71.80.45.3) >>
+<< /S /GoTo /D (15.66.1) >>
 endobj
 904 0 obj
-(Useful Directives when configuring Bugzilla)
+(5. Combining Documents)
 endobj
 905 0 obj
-<< /S /GoTo /D (19.0) >>
+<< /S /GoTo /D (15.67.1) >>
 endobj
 908 0 obj
-(B)
+(6. Collections of Documents)
 endobj
 909 0 obj
-<< /S /GoTo /D (19.71.81.2) >>
+<< /S /GoTo /D (15.68.1) >>
 endobj
 912 0 obj
-(Bug)
+(7. Aggregation with Independent Works)
 endobj
 913 0 obj
-<< /S /GoTo /D (19.71.82.2) >>
+<< /S /GoTo /D (15.69.1) >>
 endobj
 916 0 obj
-(Bug Number)
+(8. Translation)
 endobj
 917 0 obj
-<< /S /GoTo /D (19.71.83.2) >>
+<< /S /GoTo /D (15.70.1) >>
 endobj
 920 0 obj
-(Bugzilla)
+(9. Termination)
 endobj
 921 0 obj
-<< /S /GoTo /D (20.0) >>
+<< /S /GoTo /D (15.71.1) >>
 endobj
 924 0 obj
-(C)
+(10. Future Revisions of this License)
 endobj
 925 0 obj
-<< /S /GoTo /D (20.71.84.2) >>
+<< /S /GoTo /D (15.72.1) >>
 endobj
 928 0 obj
-(Common Gateway Interface)
+(How to use this License for your documents)
 endobj
 929 0 obj
-<< /S /GoTo /D (20.71.85.2) >>
+<< /S /GoTo /D (16.0) >>
 endobj
 932 0 obj
-(Component)
+(Glossary)
 endobj
 933 0 obj
-<< /S /GoTo /D (20.71.86.2) >>
+<< /S /GoTo /D (17.0) >>
 endobj
 936 0 obj
-(Comprehensive Perl Archive Network)
+(09, high ascii)
 endobj
 937 0 obj
-<< /S /GoTo /D (20.71.87.2) >>
+<< /S /GoTo /D (17.72.84.2) >>
 endobj
 940 0 obj
-(contrib)
+(.htaccess)
 endobj
 941 0 obj
-<< /S /GoTo /D (21.0) >>
+<< /S /GoTo /D (18.0) >>
 endobj
 944 0 obj
-(D)
+(A)
 endobj
 945 0 obj
-<< /S /GoTo /D (21.71.88.2) >>
+<< /S /GoTo /D (18.72.85.2) >>
 endobj
 948 0 obj
-(daemon)
+(Apache)
 endobj
 949 0 obj
-<< /S /GoTo /D (21.71.89.2) >>
+<< /S /GoTo /D (18.72.85.45.3) >>
 endobj
 952 0 obj
-(DOS Attack)
+(Useful Directives when configuring Bugzilla)
 endobj
 953 0 obj
-<< /S /GoTo /D (22.0) >>
+<< /S /GoTo /D (19.0) >>
 endobj
 956 0 obj
-(G)
+(B)
 endobj
 957 0 obj
-<< /S /GoTo /D (22.71.90.2) >>
+<< /S /GoTo /D (19.72.86.2) >>
 endobj
 960 0 obj
-(Groups)
+(Bug)
 endobj
 961 0 obj
-<< /S /GoTo /D (23.0) >>
+<< /S /GoTo /D (19.72.87.2) >>
 endobj
 964 0 obj
-(J)
+(Bug Number)
 endobj
 965 0 obj
-<< /S /GoTo /D (23.71.91.2) >>
+<< /S /GoTo /D (19.72.88.2) >>
 endobj
 968 0 obj
-(JavaScript)
+(Bugzilla)
 endobj
 969 0 obj
-<< /S /GoTo /D (24.0) >>
+<< /S /GoTo /D (20.0) >>
 endobj
 972 0 obj
-(M)
+(C)
 endobj
 973 0 obj
-<< /S /GoTo /D (24.71.92.2) >>
+<< /S /GoTo /D (20.72.89.2) >>
 endobj
 976 0 obj
-(Message Transport Agent)
+(Common Gateway Interface)
 endobj
 977 0 obj
-<< /S /GoTo /D (24.71.93.2) >>
+<< /S /GoTo /D (20.72.90.2) >>
 endobj
 980 0 obj
-(MySQL)
+(Component)
 endobj
 981 0 obj
-<< /S /GoTo /D (25.0) >>
+<< /S /GoTo /D (20.72.91.2) >>
 endobj
 984 0 obj
-(P)
+(Comprehensive Perl Archive Network)
 endobj
 985 0 obj
-<< /S /GoTo /D (25.71.94.2) >>
+<< /S /GoTo /D (20.72.92.2) >>
 endobj
 988 0 obj
-(Perl Package Manager)
+(contrib)
 endobj
 989 0 obj
-<< /S /GoTo /D (25.71.95.2) >>
+<< /S /GoTo /D (21.0) >>
 endobj
 992 0 obj
-(Product)
+(D)
 endobj
 993 0 obj
-<< /S /GoTo /D (25.71.96.2) >>
+<< /S /GoTo /D (21.72.93.2) >>
 endobj
 996 0 obj
-(Perl)
+(daemon)
 endobj
 997 0 obj
-<< /S /GoTo /D (26.0) >>
+<< /S /GoTo /D (21.72.94.2) >>
 endobj
 1000 0 obj
-(Q)
+(DOS Attack)
 endobj
 1001 0 obj
-<< /S /GoTo /D (26.71.97.2) >>
+<< /S /GoTo /D (22.0) >>
 endobj
 1004 0 obj
-(QA)
+(G)
 endobj
 1005 0 obj
-<< /S /GoTo /D (27.0) >>
+<< /S /GoTo /D (22.72.95.2) >>
 endobj
 1008 0 obj
-(R)
+(Groups)
 endobj
 1009 0 obj
-<< /S /GoTo /D (27.71.98.2) >>
+<< /S /GoTo /D (23.0) >>
 endobj
 1012 0 obj
-(Relational DataBase Managment System)
+(J)
 endobj
 1013 0 obj
-<< /S /GoTo /D (27.71.99.2) >>
+<< /S /GoTo /D (23.72.96.2) >>
 endobj
 1016 0 obj
-(Regular Expression)
+(JavaScript)
 endobj
 1017 0 obj
-<< /S /GoTo /D (28.0) >>
+<< /S /GoTo /D (24.0) >>
 endobj
 1020 0 obj
-(S)
+(M)
 endobj
 1021 0 obj
-<< /S /GoTo /D (28.71.100.2) >>
+<< /S /GoTo /D (24.72.97.2) >>
 endobj
 1024 0 obj
-(Service)
+(Message Transport Agent)
 endobj
 1025 0 obj
-<< /S /GoTo /D (28.71.101.2) >>
+<< /S /GoTo /D (24.72.98.2) >>
 endobj
 1028 0 obj
-(SGML )
+(MySQL)
 endobj
 1029 0 obj
-<< /S /GoTo /D (29.0) >>
+<< /S /GoTo /D (25.0) >>
 endobj
 1032 0 obj
-(T)
+(P)
 endobj
 1033 0 obj
-<< /S /GoTo /D (29.71.102.2) >>
+<< /S /GoTo /D (25.72.99.2) >>
 endobj
 1036 0 obj
-(Target Milestone)
+(Perl Package Manager)
 endobj
 1037 0 obj
-<< /S /GoTo /D (29.71.103.2) >>
+<< /S /GoTo /D (25.72.100.2) >>
 endobj
 1040 0 obj
-(Tool Command Language)
+(Product)
 endobj
 1041 0 obj
-<< /S /GoTo /D (30.0) >>
+<< /S /GoTo /D (25.72.101.2) >>
 endobj
 1044 0 obj
-(Z)
+(Perl)
 endobj
 1045 0 obj
-<< /S /GoTo /D (30.71.104.2) >>
+<< /S /GoTo /D (26.0) >>
 endobj
 1048 0 obj
-(Zarro Boogs Found)
+(Q)
 endobj
 1049 0 obj
-<< /S /GoTo /D [1050 0 R  /Fit ] >>
+<< /S /GoTo /D (26.72.102.2) >>
 endobj
-1052 0 obj <<
-/Length 213       
-/Filter /FlateDecode
->>
-stream
-xڍ��n�0EwG{#R�k����Vt05
`��t�ׇ���C(��]���!BqZ�E��Cea�ʺ���LjX�D�`��?�y�f+v������ek��!�^��QÒ��e�s��n|�/��$��0�������(�q��c��P���8���hy)}�N��!AV�&	�)ilvc�ϒ�&ںtÍR-�����|�D��]<�R�endstream
+1052 0 obj
+(QA)
 endobj
-1050 0 obj <<
-/Type /Page
-/Contents 1052 0 R
-/Resources 1051 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 1058 0 R
->> endobj
-1053 0 obj <<
-/D [1050 0 R /XYZ 71.731 729.265 null]
->> endobj
-1054 0 obj <<
-/D [1050 0 R /XYZ 71.731 718.306 null]
+1053 0 obj
+<< /S /GoTo /D (27.0) >>
+endobj
+1056 0 obj
+(R)
+endobj
+1057 0 obj
+<< /S /GoTo /D (27.72.103.2) >>
+endobj
+1060 0 obj
+(Relational DataBase Managment System)
+endobj
+1061 0 obj
+<< /S /GoTo /D (27.72.104.2) >>
+endobj
+1064 0 obj
+(Regular Expression)
+endobj
+1065 0 obj
+<< /S /GoTo /D (28.0) >>
+endobj
+1068 0 obj
+(S)
+endobj
+1069 0 obj
+<< /S /GoTo /D (28.72.105.2) >>
+endobj
+1072 0 obj
+(Service)
+endobj
+1073 0 obj
+<< /S /GoTo /D (28.72.106.2) >>
+endobj
+1076 0 obj
+(SGML )
+endobj
+1077 0 obj
+<< /S /GoTo /D (29.0) >>
+endobj
+1080 0 obj
+(T)
+endobj
+1081 0 obj
+<< /S /GoTo /D (29.72.107.2) >>
+endobj
+1084 0 obj
+(Target Milestone)
+endobj
+1085 0 obj
+<< /S /GoTo /D (29.72.108.2) >>
+endobj
+1088 0 obj
+(Tool Command Language)
+endobj
+1089 0 obj
+<< /S /GoTo /D (30.0) >>
+endobj
+1092 0 obj
+(Z)
+endobj
+1093 0 obj
+<< /S /GoTo /D (30.72.109.2) >>
+endobj
+1096 0 obj
+(Zarro Boogs Found)
+endobj
+1097 0 obj
+<< /S /GoTo /D [1098 0 R  /Fit ] >>
+endobj
+1100 0 obj <<
+/Length 210       
+/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
+endobj
+1098 0 obj <<
+/Type /Page
+/Contents 1100 0 R
+/Resources 1099 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1106 0 R
 >> endobj
-1055 0 obj <<
-/D [1050 0 R /XYZ 71.731 718.306 null]
+1101 0 obj <<
+/D [1098 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1102 0 obj <<
+/D [1098 0 R /XYZ 71.731 718.306 null]
+>> endobj
+1103 0 obj <<
+/D [1098 0 R /XYZ 71.731 718.306 null]
 >> endobj
 2 0 obj <<
-/D [1050 0 R /XYZ 432.797 667.995 null]
+/D [1098 0 R /XYZ 351.709 667.995 null]
 >> endobj
-1051 0 obj <<
-/Font << /F23 1057 0 R >>
+1099 0 obj <<
+/Font << /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1061 0 obj <<
-/Length 511       
+1109 0 obj <<
+/Length 538       
 /Filter /FlateDecode
 >>
 stream
-xڍTˎ�0��+X�T�`]����QŮ킀��#�L��������,�,��>/_Bl~$�	�3�ь�t�AgN^*�,C�Q3��0fI��"	����p�N��De��y#�J�4��_a��(�y>-��0��[�,C�(�HH�[>�����2�Y�͟|��џ�!���8�	E�Qo9O7S�0p���ݎr�z�0�&e���z�u9���y�*)�,�$&�V���d�lP�̏��Y��Zbv[ga�ɽ�/n	�N����Z���a�ܮ�)�'��f�X��)��q
�ݩV�#�ˋ���Vpzxý�5F�g� ��#�7Zk�Y��3bK/f����l�zuj�������J�~@��3���5V�&Ų��=�U��c�6[�{��#��h)]��śm<.��t^��;�b��	ף�viݠ�Ľ��[����}^�
ۮ�^����?���ߘ�^�����z�F��듣Um`��D��Fs��A�U��rZ�����w�4)�endstream
+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
 endobj
-1060 0 obj <<
+1108 0 obj <<
 /Type /Page
-/Contents 1061 0 R
-/Resources 1059 0 R
+/Contents 1109 0 R
+/Resources 1107 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1058 0 R
+/Parent 1106 0 R
 >> endobj
-1062 0 obj <<
-/D [1060 0 R /XYZ 71.731 729.265 null]
+1110 0 obj <<
+/D [1108 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1059 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R >>
+1107 0 obj <<
+/Font << /F23 1105 0 R /F27 1112 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1067 0 obj <<
-/Length 60573     
+1115 0 obj <<
+/Length 56592     
 /Filter /FlateDecode
 >>
 stream
-xڔ�M�-ם��y}
-
Ɂ�����a���(nhu��j��&��,��
��w䍽v��7㉧Ѓ�T��;�!1���?y�������{�^�o��w�z�z�ݟ����~�������:�xxz��?�o������oϗח��~�a���w�������������?��T�n����������?~�r�ݟ���׻�~�����?�|�����~���_~�������������Xyz~��>~�Y?���g�~���������䑷s�l���w����o�?���������������r}|�ܽ>ч���ܽ�����_���桏����y�^n���}�o��,����z���Xu�D����r{~����ڃ�����Y���'j~�n�5�=Ju<��2x�n���E���'j��k��Ju�D��u{
�Vݟ=Q{�s�e{
��e����\��ܟ=A{�@����U�gO�<P_.ϯ��w�D�������~�*���,����z�<?[u�D��u����Ϟ�=x�n��Q~�Ϟ�=��z�����YT��u{
�'��Ϟ�=x�n���Y���'j��k�Zu�D�������ܗ�<��2x��.O��Rݟ=Q{�@}�\_��?{�����ry���_=1k�s��z��$Ǚ�YF��u{OVݟ=Q{�@����T�gO�<P���p����ڃ����5ܤ:�eu<P��p� ������5\����ڃ��?{��������/��Udz�.�����"���gO�<P�.w�Vݟ=Q{�@}�<�?
-�gO��\}�^ã��3�eu<P���`������5�?H쏞�5w@n��&���gO��\}����Tdz�.�������x�D��u{wVݟ=Q{�@}�<��/s���?W��.�/���YV���vyx����ڃ�����27�=Q{�@�^ã�27�=Q{�s�e{
Rϲ���k��/s�����5��/s�����5\��?{��������䗹�,������i�=y"~;�/�/Y�GOĚ; _.��n<{������������YT���v�=Yu�D��u{�7��Ϟ�=x�n���A���'j~�^��p��x��e�@�^���T�gO�<P��p}����ڃ��?{����������}�˳�.����}u����ڃ����٪��'j�/���W��Ϟ�=��z�^��/��(�=w@n�@�ou􄬹r{Wi�Ϟ�=x�n/@�-�<{�������
-�:�eu<P��p�_�Ƴ'j��k��
�gO�<P_.�W��Ϟ�=���xwy��y�gY]���j��1�=Q{�@}�<=Yu�D��u{
�;O��ڃ��O�k��y�gY]��5ܬ�?{��������'y�D��u{
����'f�}N>o�@~��e�����Ys������(��$Ϟ�=x��\�^��?{��������Q~�I�eu<Po�;�m'y�D��u{
�Vݟ=Q{�@�^����<{�������nRϲ���k��_�Ƴ'j��k��v�gO�<P��pg����?U��.��k\�Eu<P�/������ڃ����٪��'j��������>'��;�_Z�,�������G��Ϟ�=x�n���^���'j��[��v�gO��\��^ýTdz�.����Rݟ=Q{�@�^����<{�����|yy����ڃ�������}�˳�.����E~�I�=Q{�@}�ܞ��?{�������G�en<{�������䷝�YV��u{
7��Ϟ�=x�n�A��i�Ĭ�r{��N��	ڃ����;�y��e�@�ށ���<{�����x���v�gO�<P�/�/Vݟ=Q{�s���r/��$ϲ����g�m'y�D��u{
�Vݟ=Q{�@�^����<{�������䷝�YV��u{
�Vݟ=Q{�@�^����<{�������m'y�D���՗��UL�YV�����dѯ���5w@>^��O��	ڃ����٪��'j~��n�@~�I�eu<P�� ��$Ϟ�=x�n������'j��k��|�gO��T}��^���y�u�@�^�ժ��'j��k��|�gO�<P�/������ڃ��׻˝<�ȳ�.����Q~�I�=Q{�@}��=Yu�D��u{
�`"Ϟ�=��z���?��Q6{�����$�>zB�����y-�gO�<P� ��$Ϟ�=��z�^��;�y��e�@���ݍK(o��( s�ܝ�=�<T͖o?Ȟ��>���s��~{x�������3ۗا������}%��m��?�x&��
�Td���em��_~���5���/?����ǟ�|v����=�ܷ�~���/���7|�y������9�����o������o���oR�A��Vj�Q�A��Vj�Q�A��V��F����ۘ����e�ᅰ��oT{�ᅰ��oT{�ᅰ��oT{�ᅪ:�I]��[���F���[���F���[���F���ۨ����e�ᅰ��oT{�ᅰ��oT{�ᅰ��oT{�ᅪ:�I]��[���F���[���͚��oe�����o���oR�A��Vj�Q�A��Vj�Q�A��Vj�Q�A��6��&u��o������o������o������o���oR�A��Vj�Q�A��Vj�Q�A��Vj�Q�A��6��&u��oe���(~��o��ok�ᅰ��oD{�ᅤ�~�
�:���J��7�=���J��7�=���J��7�=���F��ߤ.�|�����ڃ|�����ڃ|�����ڃ|�m�y�M�2���J��7�=���J��7�=���J��7�=�����7�=��ߊ��H��+3�߈� �+5�ߨ� �u������Rs��j���Rs��j���Rs��j���Q��7�� �+5�ߨ� �+5�ߨ� �+5�ߨ� �u������Rs��j���Rs��j���B��7�5��߆��7�=������7�=���J��7�=���J��7�=���F��ߤ.�|�����ڃ|�����ڃ|�����ڃ|�m�y�M�2���J��7�=���J��7�=���J��7�=���B}��u��o������o������o���o4k�ᅪ9�	]��[���F���[���F���[���F���ۨ����e�ᅰ��oT{�ᅰ��oT{�ᅰ��oT{�ᅪ:�I]��[���F���[���F���[���F���ۨ����e�ᅰ��oT{�:�Ѭ9��Vf��A��6��&u��o������o������o������o���oR�A��Vj�Q�A��Vj�Q�A��Vj�Q�A��6��&u��o������o������o������o���oR�A��V��F����[���F���[���F���ۨ����e�ᅰ��oT{�ᅰ��oT{�ᅰ��oT{�ᅤ�~�
�:���J��7�=���J��7�=���J��7�=���F��ߤ.�|�����ڃ|�����ڃ|�����ڃx�m����sx���q��d����2s��h���Rs��j���Q��7�� �������2�?�[����o��|r��x�z�I������~�����O��_�囟b��ty~}��}��_��g������ry���;��������S�^no�g���Vϲ����ˋU�gO�<P�.��o�Q���ڃ������,��?{��������:�eu<P�����6Jݟ=Q{�@�^���Y*u�D��u{
�Vݟ=Q{�s�e{
��e����\��ܟ=A{�@����U�gO�<P_�?.�_����?W_��o_��:�eu<Po��g��Ϟ�=x�>]���?{�������G�g<{���A�d{
Nͳ���ꈼ(5�T{��1JM5��j�RS�A��c�Y�!u�j�RS�A����TcP�A��(tTcЬ9��sVc]���TcP�A��(5�T{��1JM5��j�Qg5��e��1JM5��j�RS�A����TcP�A��uVcH]���TcP�A��(5�T{��1JM5��j�Qg5��e��1JM5��j�BG5͚�j�2S�A��c�Y�!u�j�RS�A����TcP�A��(5�T{��1F��R�A��(5�T{��1JM5��j�RS�A��c�Y�!u�j�RS�A����TcP�A��(5�T{��1F��R�A��(s�Ơ�q�1
-�k��1�L5��j�P߫1���\�Qj�1�� Wc��j�=�����jr5ƨ�C�2�����jr5F��Ơڃ\�Qj�1�� Wc�:�1�.�\�Qj�1�� Wc��j�=�����jb5Ơ�Ɛ�sX�Q�� Ys\�Qf�1�� Wc��j�=����j�� Wc��j�=�����jr5F��Ơڃ\�1�Ɛ�r5F��Ơڃ\�Qj�1�� Wc��j�=����j�� Wc��j�=�����jb5F���f�a5Ɛ���s\�Qf�1�� Wc��j�=�����jr5ƨ�C�2�����jr5F��Ơڃ\�Qj�1�� Wc�:�1�.�\�Qj�1�� Wc��j�=�����jr5F���P�A��(5�T{��1JM5��j�BG5͚�j�1g5��e��1JM5��j�RS�A����TcP�A��uVcH]���TcP�A��(5�T{��1JM5��j�Qg5��e��1JM5��j�RS�A����TcP�A��uVcH]���TcP�A��(tTcЬ9��(3�D{��1F��R�A��(5�T{��1JM5��j�RS�A��c�Y�!u�j�RS�A����TcP�A��(5�T{��1F��R�A��(5�T{��1JM5��j�RS�A��c�Y�!u�j�BG5͚�j�2S�A����TcP�A��uVcH]���TcP�A��(5�T{��1JM5��j�P߫1���\�Qj�1�� Wc��j�=�����jr5ƨ�C�2�����jr5F��Ơڃ\�Qj�1�� Vc�j�=��E�j�5��e��hr5F��Ơڃ\�1�Ɛ�r5渄�1�AF5�c��s�A�j̕�1��Kb���O�͘�h�����������?}�^���_��˯��E޾W`B���ݿ%dfj��s����=�|�)�3d�qeĐ��Ys�1d
-#D��E���5�q!�-`�qYĀ	��Xs�1d�"D�7E���5�AAΞ�=�5C&&Bd�qJĐ)�Ys�1d2"D�GD�����1��qAĐ	�Ys�1d�!D��C�t�5��A�n�=��C&Bd�q2Đ)�Ys�1�ȅ�q�c!��{�K!�L(�Ț�L�!S	!��b�$B��9�r�A��9��2q"k�� �L�Ț�.�!�!��8
-"����b�A��9΁25"k�[ �L
-�Ț�� gȞ�
-�!!��0b�Q�!���?���5��A���=��C&�Ad�q�Ð�~Ys��0d�D�?9{@��>���5ǩC��Ad�q�Ð�|Ys��l|��s\�0dD��=���5�mC&�Ad�q�C���d�Q�À{ԃ�S��0�(z�q�{L΃Ě��9���8&�9.y2!"k�3�LŃȚㆇ!�� ��8�!�������a��;��9Nw2�"k���L��Ț�h� g�Ȟ�b�!� ��8�a��:��9nu2�"kCBL���J��F����c��0`
-$��9�<�5�qA�6�=�eC&�Ad�q��rYs��0d�D�99{@��8��5�)C��Ad�q��pYs��lp��s\�0dD��7���5��
#����0�!�t7��1�n0�
k���Lq�Ț�ކ!�� ��8�!�����縴aȄ6��9�l2�
"k��Lb�Ț��� g_Ȟ㺆!� ��8�aȔ5��9�j2Y
"k����{S�\渨a�5��9�i25
"k[F)
?�qHC���b�qE�hYs��0d
-D��3�|�5��A�v�=��C&�Ad�q6Ð�fYs��0d�D�39{@��2�X�5ǩC��Ad�q'Ð�dYs��ld��s\�0dD��1�8�~�6��� ��8�!�����縊a�D1��9Nb2E"k�{�L�Ț�� gȞ��!� ��8�a�T0��9n`2	"k���� {���L��Ț��!S� ��{a�d/��9�^r6/��9,^q/�8ƹ�vAb�q�I]Ys���\��s\�0d"D�'.���5�}C&oAd�q��|o[���-���5�YC�jAd�q�IZYs���Y��s\�0dbD��,���5�C&cAd�a�B�iX�XcX�0�X��q��L��Ě�v�!�� ��8\!�٭���ZA���O1�"�Ɋ�O��+V�}����JV�G�f��hV�����o�*���������G���B�����>>�x�����f�����x��c|b�Ϟ�=x��\^��?{�������V޾{ʨ�YV��u{o�ӭ������5\��?{��������o�R���ڃ��O�������:�eu<Po����Ϟ�=x�>]n�ORݟ=Q{�@�����jr=Ǩ3�C�2�����jrCG���ڃ��Qj::�� �t���=�1e���hrOG�	�ڃ��Qj�:�� Wu�:�:�.��Qj�:�� �u����=�y����jraG��P�A��(5�T{�;;JMh��ԎR��A���cԙ�!u���RS�A�����DwP�A��(ttwЬ9.�s�w]9����wP�A��(5T{�<JM���
-�Qg���e�C<JM����R�A�9ǣ��xP�A.�u&yH]9ʣ�TyP�A��(5aT{��<JM���:�Qg���e�=JM���F�BG�͚�L�2��A���cԙ�!u�X�RS�A��ף�{P�AN�(5�T{��=F��R�A�(5�T{��=JM���|�R��A���cԙ�!u䈏RS�A���Ԅ|P�AN�(5-T{�k>F�9R�A
-�(s/���q�>
-Qk��>�L��䲏P��>����Qj�>�� �}����=ȉ���jr�Ǩ3�C�2ȡ���jr�G����ڃ��Qjz?�� �:�?�.��Qj�?�� w����=������jb�Ǡ����s�R�(�!Ys��Rf"@�� g����=�% ���� ǀ���=�= �&�jrH�i�ڃ\2����rH�)�ڃ�Rj�@�� 灔�>�=ȅ ��D�� G���J�=ȝ �&�jb*H���f�a-Ȑ��sRf�A�� 7���h�=�� ���jr9Ȩ3D�2�� ���jr?H�	�ڃ�RjB�� W��:3B�.�RjJB�� ������=�9!��'�jrQH��I!P�A�
-)5U!T{��BJMX�Ĵ�BG[͚㺐1g^��e�CJMa��ƐRB�93��t�P�A.
u��H]96��ԆP�A�
)5�!T{��CJMs���Qgv��e��CJMy����RB�9?���P�A.u&�H]9B��T�P�A�)t��Ь9N)3-"D{�kDF�9"R�A)5E"T{��DJM���,�R�%B��Ldԙ&"u�8�RS'B��O���P�AN)5�"T{�+EF��"R�A)5�"T{�[EJM���\�R�+B��Xdԙ,"u�h�BG�͚�n�2.B�9]�Դ�P�A�u�H]9`���P�An)5#T{�3FJM��䒑P�SF���3RjjF�� ������=�I#��i�jr�Ȩ3kD�2�a#��l�jr�H���ڃ�7Rj�F�� ����=��#E���5ǝ#e&t�hr�H�i�ڃ\;2����r����G�AF����?l�%zt�ѣ��_>?c�h<�G�G��?�����_~	���|�p��������_���/�~vz����/����������/��]4|�y��#�E�A�.��e���hT{���hT{�:�Ѭ9��6漋&t�h��.��h��.��h��.��h�λhR�A��Vj�Q�A��Vj�Q�A��Vj�Q�A��6꼋&u�h��.��h��.��h��.��h�λhR�A��Vj�Q�A��V踋F���.Z���F��.ڨ�.��e���hT{���hT{���hT{�:�I]�.Z���F��.Z���F��.Z���F��.ڨ�.��e���hT{���hT{���hT{�:�I]�.Z��]4���.Z��.Ś�he�.��h���E���]�Rs�j�]�Rs�j�]�Rs�j�]�Q�]4�� �E+5wѨ� �E+5wѨ� �E+5wѨ� �Eu�E���]�Rs�j�]�Rs�j�]�Rs�j�]�AsMf��]�"�]4�5�w���]4�=�w�J�]4�=�w�F�wѤ.�|���E�ڃ|���E�ڃ|���E�ڃ|m�yM�2�w�J�]4�=�w�J�]4�=�w�J�]4�=�w�F�wѤ.�|���E�ڃ|���E�ڃx��q�f��]�!sMd��]�2s�h�]�Rs�j�]�Rs�j�]�Q�]4�� �E+5wѨ� �E+5wѨ� �E+5wѨ� �Eu�E���]�Rs�j�]�Rs�j�]�Rs�j�]�P��A]�.Z���F��.Z���F��.Z��.͚�hcλhB�A��Vj�Q�A��Vj�Q�A��Vj�Q�A��6꼋&u�h��.��h��.��h��.��h�λhR�A��Vj�Q�A��Vj�Q�A��Vj�Q�A��6꼋&u�h��.�Ļh���h4k���hD{�:�I]�.Z���F��.Z���F��.Z���F��.ڨ�.��e���hT{���hT{���hT{�:�I]�.Z���F��.Z���F��.Z���F��.ڨ�.��e�:�Ѭ9��Vf��A��Vj�Q�A��6꼋&u�h��.��h��.��h��.��h���E���]�Rs�j�]�Rs�j�]�Rs�j�]�Q�]4�� �E+5wѨ� �E+5wѨ� �E+5wѨ� �E4w�d��E+r�E#Ys|���E#ڃ|���E�ڃ|m�yM�2�w��G��.?ȸ���A�?���O�_ļ�E?~�����������/�_��t��@�<�������o����u��������O����������Ƨ��o��������z����$}�<��s~�#ǟn�����>�'���ڃ�����$����ԗ��ӳT�gO��\���r{��x��e�@�^�ËT�gO�<P��p{����ڃ��?{���������?�f���;�^��?{�������;��Ϟ�=x��\�_�����ڃ�������eD��YV���vy~����ڃ�����A���'j��kx�_pƳ'j~~�s�����YT��u{
�'��Ϟ�=x�n���Y���'j�{zũ���jb�E�i���b�ũ���jb�ũ���jR�š{˅͚Ö�2�rAtĖ�SG˅�Ė�SG˅�Ė�SG˅�Ė�R�rAuĖ�SG˅�Ė�SG˅�Ė�SG˅�Ė�R�rAuĖ�SG˅�Ė�SG˅�Ė�SG˅�Ė�R�rAuĖ�SG˅����C���5�-g���=�-����2�-����=�-����=�-����=�-����2�-����=�-����=�-����=�-����2�-����=�-����=�-����=�-����2-g~m���q�Z.�[.,��\�9Z.�� �\�:[.����rq�h��ڃ�rq�h��ڃ�rq�h��ڃ�rQjZ.�.��rq�h��ڃ�rq�h��ڃ�rq�h��ڃ�rQjZ.�.��rq�h��ڃ�rq�h��ڃ�rq�h��ڃ�rQ�h���s�rq��ra������ra������ra���Դ\P]�����ra������ra������ra���Դ\P]�����ra������ra������ra���Դ\P]�����ra������ra����н��f�Q�E���d�a�ř���hb�ũ���jb�ũ���jb�E�i���b�ũ���jb�ũ���jb�ũ���jb�E�i���b�ũ���jb�ũ���jb�ũ���jb�Ũ��B�:�-����=�-����=H-��-6k[.�L��e[.N-V{[.N-V{[.N-V{[.JM��e[.N-V{[.N-V{[.N-V{[.JM��e[.N-V{[.N-V{[.N-V{[.JM��e[.N-V{�Z.�[.l��\�9Z.�� �\����� �\�:Z.�� �\�:Z.�� �\�:Z.�� �\����� �\�:Z.�� �\�:Z.�� �\�:Z.�� �\����� �\�:Z.�� �\�:Z.�� �\�:Z.�� �\����� �\��\ج9l�8s�\�Al�8u�\X�Al�(5-T�Al�8u�\X�Al�8u�\X�Al�8u�\X�Al�u�\H]�����ra������ra������ra���Դ\P]�����ra������ra������ra�����rA����Ƚ��d�a�ř���hb�ũ���jb�E�i���b��$���d��y8j�����!o
���r����K���o|����z�i\f<�G��˵k.��ǟ�|[p�>��߱y��W�u�c�A���e��?���C?�'U��y���@7��e��1JM7��n�RӍA����tcP�A��uvcH]���tcP�A��(5�T{��1JM7��n�AӍ!����tc�A��(5�T{��1JM7��n�Qg7��e��1JM7��n�RӍA����tcP�A�����:�����jr7F��Ơڃ܍Qj�1�� wc�:�1�.�܍Qj�1�� wc��n�=����n�5��c�n�� wc��n�=�����jr7F��Ơڃ܍1��Ɛ�r7F��Ơڃ܍Qj�1�� wc��n�=����n�� wc��n�=�����jr7F��Ơڃ܍1��Ɛ�r7F��Ơڃ؍Q��ƠYs܍Qf�1�� wc�:�1�.�܍Qj�1�� wc��n�=�����jr7ƨ�C�2�����jr7F��Ơڃ܍Qj�1�� wc�:�1�.�܍Qj�1�� wc��n�=�����jr7ƨ�C�2H�e��?�a7F���b�q7F��� ڃ܍�{7�u��1JM7��n�RӍA����tcP�A��uvcH]���tcP�A��(5�T{��1JM7��n�Qg7��e��1JM7��n�RӍA����tcP�A��4�2{�1��$k��1�L7��n�RӍA��c�ٍ!u�n�RӍA����tcP�A��(5�T{��1F��R�A��(5�T{��1JM7��n�RӍA��c�ٍ!u�n�RӍA����tcP�A��(ttcЬ9��2�"{��1�L7��n�RӍA����tcP�A��uvcH]���tcP�A��(5�T{��1JM7��n�Qg7��e��1JM7��n�RӍA����tcP�A�����:�����jr7F��Ơڃ؍Q��ƠYs܍1����r7F��Ơڃ܍Qj�1�� wc��n�=����n�� wc��n�=�����jr7F��Ơڃ܍1��Ɛ�r7F��Ơڃ܍Qj�1�� wc��n�=����n�� wc��n�=����n�5��e��hr7ƨ�C�2�����jr7F��Ơڃ܍Qj�1�� wc�:�1�.�܍Qj�1�� wc��n�=�����jr7ƨ�C�2�����jr7F��Ơڃ܍Qj�1�� wc�:�1�.�؍Q��ƠYs܍Qf�1�� wc��n�=����n�� wc��n�=�����jr7F��Ơڃ܍�{7�u��1JM7��n�RӍA����tcP�A��uvcH]���tcP�A��(5�T{��1JM7��n�AӍ!����эA����tc�A��(5�T{��1F��R�A��P	�tc���ṅr܍9� �1��;c7�����'uc�#{7�~tc���������~�<�v�����������^��131�o&F>|���ȷ#�.��Qj#�� 'F����=ȉ�&1�jbbĠI���s�Qf#�� 'F����=ȉ�&1�jrbĨ31B�2ȉ�&1�jrbD�I��ڃ�Qj#�� 'F���u�ĈR�A�91��$FP�AN�(5�T{�#F��R�AN�(5�T{�#JMb��ĈBGb͚�Ĉ1gb��e�#JMb��ĈR�A�91��$FP�AN�u&FH]91��$FP�AN�(5�T{�#JMb��ĈQgb��e�#JMb��ĈR�A�91��$FP�AN�u&FH]91��$FP�AL�(t$FЬ9N�(3�D{�#F��R�AN�(5�T{�#JMb��ĈR�A�91bԙ!u�ĈR�A�91��$FP�AN�(5�T{�#F��R�AN�(5�T{�#JMb��ĈR�A�91bԙ!u�Ĉ2����01���A��81��$F�AN��=1�:ȉ�&1�jrbD�I��ڃ�Qj#�� 'F�:#�.��Qj#�� 'F����=ȉ�&1�jrbĨ31B�2ȉ�&1�jrbD�I��ڃ�Qj#�� &F���=��E���5lje&1�hrbD�I��ڃ�1�L���rbD�I��ڃ�Qj#�� 'F����=ȉ����� 'F����=ȉ�&1�jrbD�I��ڃ�1�L���rbD�I��ڃ�Qj#�� &F:#h�&F���=lje&1�hrbD�I��ڃ�Qj#�� 'F�:#�.��Qj#�� 'F����=ȉ�&1�jrbĨ31B�2ȉ�&1�jrbD�I��ڃ�Qj#�� 'F���u�ĈR�A�91��$FP�AL�(t$FЬ9N�s&F]91��$FP�AN�(5�T{�#JMb��ĈQgb��e�#JMb��ĈR�A�91��$FP�AN�u&FH]91��$FP�AN�(5�T{�#JMb��ĈQgb��e�#JMb��ĈBGb͚�Ĉ2�A�91bԙ!u�ĈR�A�91��$FP�AN�(5�T{�#F��R�AN�(5�T{�#JMb��ĈR�A�91bԙ!u�ĈR�A�91��$FP�AN�(5�T{�#F��R�AL�(t$FЬ9N�(3�D{�#JMb��ĈQgb��e�#JMb��ĈR�A�91��$FP�AN��=1�:ȉ�&1�jrbD�I��ڃ�Qj#�� 'F�:#�.��Qj#�� 'F����=ȉ�&1�jbbĠI���s�Q�H� Ys�Qf#�� 'F����=ȉ����� 'F��!#�AFb��y9L��%1rω�ǧ�O�_112�#���?���,�����ˏ���|���������ﯼ�oE�O׃_���*�0o�>�'8������M�=�7U
-7Uh��T)37U�� �Tu�T���M�RsS�j�M�RsS�j�M�RsS�j�M�Q�M�� �T)57U�� �T)57U�� �T)57U�� �Tu�T���M�RsS�j�M�RsS�j�M�RsS�j�M�Q�M�� �T)s��B���T)p�T�Xs|S���T!ڃ|S%���*P�A��Rjn�P�A��Rjn�P�A��Rjn�P�A��2꼩"u�*��
-��*��
-��*��
-��*�Λ*R�A��Rjn�P�A��Rjn�P�A��Rjn�P�A��2hn���9��R丩B����J���B���J���B���ʨ��e�o����*T{�o����*T{�o����*T{�o��:o�H]��J���B���J���B���J���B���ʨ��e�o����*T{�o����*T{o�:n�Ь9��2dn���9��Rfn��A��Rjn�P�A��Rjn�P�A��2꼩"u�*��
-��*��
-��*��
-��*�Λ*R�A��Rjn�P�A��Rjn�P�A��Rjn�P�A����M�� �T)57U�� �T)57U�� �T)t�T�Ys|Se�ySE�2�7UJ�M�=�7UJ�M�=�7UJ�M�=�7UF�7U�.�|S���T�ڃ|S���T�ڃ|S���T�ڃ|Se�ySE�2�7UJ�M�=�7UJ�M�=�7UJ�M�=�7UF�7U�.�|S���T�ڃxS��qS�f��M�2sS�h�M�Q�M�� �T)57U�� �T)57U�� �T)57U�� �Tu�T���M�RsS�j�M�RsS�j�M�RsS�j�M�Q�M�� �T)57U�� �T)57U�� �T)57U�� �Tu�T���M�B�M�5�7U��M�=�7UJ�M�=�7UF�7U�.�|S���T�ڃ|S���T�ڃ|S���T�ڃ|S%���*P�A��Rjn�P�A��Rjn�P�A��Rjn�P�A��2꼩"u�*��
-��*��
-��*��
-�ě*�榊̞Û*E��*$k�o����*D{�o��*��_.gq7���1��?���s��~���w�l�u�3���~f��3������o?��Ƿk�?���?~���?���~U��_���_����~��G~=\޾�_?���r{<:1�?z>���c>�������C��G�u��1R�A��cJ͏C��G�)5?z��=����1T{���Q��� ��)5gr�� ��)t�ɡYs|&�̜�!ڃ|&g�y&G�2�grJ͙�=�grJ͙�=�grJ͙�=�grF�gr�.�|&�Ԝɡڃ|&�Ԝɡڃ|&�Ԝɡڃ|&g�y&G�2�grJ͙�=�grJ͙�=�grJ͙�=�grF�gr�.�t&���Lŏcx&��q&�b��2s&�h�P���@]�LN�9�C��LN�9�C��LN�9�C��LΨ�L��e��䔚39T{��䔚39T{��䔚39T{���:��H]�LN�9�C��LN�9�C��LN�9�C��LΠ9�#���LN��Lɚ�39e�L��39��L��39��39R�A>�Sj��P�A>�Sj��P�A>�Sj��P�A>�3�<�#u�39��L��39��L��39��L��39��39R�A>�Sj��P�A>�Sj��P�A<�S�8�C���Lΐ9�#���LN�9�C��LN�9�C��LN�9�C��LΨ�L��e��䔚39T{��䔚39T{��䔚39T{���:��H]�LN�9�C��LN�9�C��LN�9�C��LN��gr���|&�Ԝɡڃ|&�Ԝɡڃx&��q&�f��1��� ��)5gr�� ��)5gr�� ��)5gr�� ��u�ɑ��Rs&�j�Rs&�j�Rs&�j�Q��� ��)5gr�� ��)5gr�� ��)5gr�� ��u�ɑ��Rs&�j♜BǙ�5�gr�̙�=�grF�gr�.�|&�Ԝɡڃ|&�Ԝɡڃ|&�Ԝɡڃ|&g�y&G�2�grJ͙�=�grJ͙�=�grJ͙�=�grF�gr�.�|&�Ԝɡڃ|&�Ԝɡڃ|&�Ԝɡڃ|&g�y&G�2�gr
-grh���)3gr�� ��)5gr�� ��u�ɑ��Rs&�j�Rs&�j�Rs&�j�P���@]�LN�9�C��LN�9�C��LN�9�C��LΨ�L��e��䔚39T{��䔚39T{��䔚39T{���392{��9�䐬9>�Sf���A>�;��Rgr�9�3���|x&w�9�}?���7��Ox&7���Ǚ���������w�w_~���_~����_������]��>��{|�<��m�������������W8�$W8��_�|�1�
-��+��+R�A��Qj�pP�A��Qj�pP�A��Qj�pP�A��1��!u�+��
-��+��
-��+��
-��+��+R�A��Qj�pP�A��Qj�pP�A��Qj�pP�A��1��!u�+e�W8(~�+�+k��p��+D{��p��~��:�W8J��=�W8J��=�W8J��=�W8F�W8�.�|���\�ڃ|���\�ڃ|���\�ڃ|�c�y�C�2�W8J��=�W8J��=�W8J��=�W8��=�W8�W8H�_�(3W8�� _�(5W8�� _�u^ᐺ��Rs��j��Rs��j��Rs��j��Q��� _�(5W8�� _�(5W8�� _�(5W8�� _�u^ᐺ��Rs��j��Rs��j��B��5�W8���=�W8���=�W8J��=�W8J��=�W8F�W8�.�|���\�ڃ|���\�ڃ|���\�ڃ|�c�y�C�2�W8J��=�W8J��=�W8J��=�W8B}��u�+��
-��+��
-��+��+4k��p�9�p]�
-G���A��
-G���A��
-G���A��
-Ǩ�
-��e��p��+T{��p��+T{��p��+T{��p�:�pH]�
-G���A��
-G���A��
-G���A��
-Ǩ�
-��e��p��+T{�p:�pЬ9��Qf�p�A��1��!u�+��
-��+��
-��+��
-��+��+R�A��Qj�pP�A��Qj�pP�A��Qj�pP�A��1��!u�+��
-��+��
-��+��
-��+��+R�A��Q��A���
-G���A��
-G���A��
-Ǩ�
-��e��p��+T{��p��+T{��p��+T{��p��~��:�W8J��=�W8J��=�W8J��=�W8F�W8�.�|���\�ڃ|���\�ڃ|���\�ڃx�c�\��sx���q��d���2s��h��񩈺��ϱ_�|<z�;��9�۟�?m^�v�����g���篿0ׇ����;�@���4��#o�6np��/�����_~����_��������OZ?�������z����{���m�s���C�A�3?��ۏq۔�g�s�����r�����ڃ�����^���'j~��^/�o��4�x��e�@�]����?{������O��o5+u�D��u{
o������?�>���5<85Ϣ���k�=Iu�D��u{
o��������5\��?{�����u{
w/Nϲ����/�_��?{�������ճU�gO�<P_.O���'f�}N�_/�g�'�2���;x����ڃ��梁?{���������T�gO�<����k�Iu<��2x�n���A���'j���*5?���\����RT{�p�Q�.%u�\����RT{�p�R�KQ�A���J�.E���u��RR�A���J�.E���*t$Ь9N&(3�D{��	F��R�AN&(5�T{��	JM2��d�R�L@�9�`ԙL u�d�R�L@�9���$P�AN&(5�T{��	F��R�AN&(5�T{��	JM2��d�R�L@�9�`ԙL u�d�2�d��0����L@��8���$�AN&�=���:���&��jr2A�I&�ڃ�LPj�	�� '�:�	�.��LPj�	�� '��d�=���&��jr2��3�@�2���&��jr2A�I&�ڃ�LPj�	�� &�d�=��E�d�5��e&��hr2A�I&�ڃ�L0�L&��r2A�I&�ڃ�LPj�	�� '��d�=����d�� '��d�=���&��jr2A�I&�ڃ�L0�L&��r2A�I&�ڃ�LPj�	�� &:�	h�&�d�=��e&��hr2A�I&�ڃ�LPj�	�� '�:�	�.��LPj�	�� '��d�=���&��jr2��3�@�2���&��jr2A�I&�ڃ�LPj�	�� '���L�u�d�R�L@�9���$P�AL&(t$Ь9N&s&]9���$P�AN&(5�T{��	JM2��d�Qg2��e��	JM2��d�R�L@�9���$P�AN&u&H]9���$P�AN&(5�T{��	JM2��d�Qg2��e��	JM2��d�BG2͚�d�2�L@�9�`ԙL u�d�R�L@�9���$P�AN&(5�T{��	F��R�AN&(5�T{��	JM2��d�R�L@�9�`ԙL u�d�R�L@�9���$P�AN&(5�T{��	F��R�AL&(t$Ь9N&(3�D{��	JM2��d�Qg2��e��	JM2��d�R�L@�9���$P�AN&�=���:���&��jr2A�I&�ڃ�LPj�	�� '�:�	�.��LPj�	�� '��d�=���&��jb2��I&��s�LP�H& Ys�LPf�	�� '��_$�s�Ʉ���0�p�9>����dB~p��������~piٓ	��RH������������~y�I�_��	~�<��O}��I6i����桏��8��r|��j�q�Rs���2���N�ɬ� ';u'�ڃt����8�͚��de�8�e���:��Y�A<Nv�8Nf��8٩�8����d��8�e���:��Y�A<Nv�8Nf��8٩�8����d��8�e���:��Y�A<Nv�8Nf��8٩�8����d��8�e���:��Y�A:Nv�~��f��q�3�q2�=���J�q2�� ';u'�ڃx���q��j�q�S�q2�=���J�q2�� ';u'�ڃx���q��j�q�S�q2�=���J�q2�� ';u'�ڃx���q��j�q�S�q2�=���J�q2�� ';��q2���8ف�q2�5�����Ɍ� 'u'���q�S�q2�=���N�ɬ� ';u'�ڃx���'���q�S�q2�=���N�ɬ� ';u'�ڃx���'���q�S�q2�=���N�ɬ� ';u'�ڃt���q��f��q�#��d&k���9���A<Nv�8Nf��8Y�9NFu��d���dV{���:��Y�A<Nv�8Nf��8Y�9NFu��d���dV{���:��Y�A<Nv�8Nf��8Y�9NFu��d���dV{���:��Y�A:Nv�~��f��q�"�q2�=�����Ɍ� ';u'�ڃx���q��j�q�Rs���2���N�ɬ� ';u'�ڃx���q��j�q�Rs���2���N�ɬ� ';u'�ڃx���q��j�q�Q�q2�� ';u'�ڃx���q��j�q�C��d6k�����dD�A<Nv�8Nf��8٩�8����d���dV{�����dT�A<Nv�8Nf��8٩�8����d���dV{�����dT�A<Nv�8Nf��8٩�8����d���dV{�����dT�A<Nv�8Nf��8١�q2�5�����Ɍ� '+5�ɨ.�x���q��j�q�S�q2�=���N�ɬ� '+5�ɨ.�x���q��j�q�S�q2�=���N�ɬ� '+5�ɨ.�x���q��j�q�S�q2�=���N�ɬ� '+5�ɨ.�t����8�͚��dg��dF{���:��Y�A<NVj��Q]�8٩�8����d���dV{���:��Y�A<N6�<N&u��d���dV{���:��Y�A<Nv�8Nf��8Y�9NFu��d���dV{���:��Y�A<Nv�8Nf��8Y��8͞��dG���L�';s'3ڃx���8�?��g>~���d����~+��8�����n��'����q��_�����_%__�?)��'G��_��,��$l��y���<�9��~����d������@.s��9~�6�5�?�Z�90'����ܐ�.'����\��Ȟ��rC殜Ț�rC樜ȚÓr#��r?��=���99�=����-9�5Ǘ��!9�5�g��9�5�7䂜'�@��2��D�_�2��D���2��D�ߍr���s|4n�܌Ys|1n��Ys|.n�\�Ys|+.�y*d��!s'Nd�ᕸǑ8���D܀�'���>\��<Ȟ��pC�6�Ț��pC�0�Ț�pC�*�Ț�pAΓp {��
�{p"k���
�cp"k�O�
�Kp"k���9����9>7dn���9��7d���9>�6d����9���<�����ۀ��7q����h�蛸�c|�m�\|�Xs|�}N��{��{2��D�_z2��D��y2W�D��xr�x�s|�m��wYs|�m�wYs|�m�\vYs|�-�y�
d��Q�!s�Md��E�!s�Md��9�!s�Md��-�s�
`��!���7y���ۀ9�&����ې��&���~[��|Ȟ��mC�v�Ț��mC�p�Ț�mC�j�Ț�mAΓm {��
�{m"k���
�cm"k�O�
�Km"k��9ϴ��9>�6dn���9��6d���9<�6��&���f/����f0w�$�_e2G�D��d2�D��cr�c�s|�m��bYs|�m�bYs|�m�\aYs|�-�y�
d���!sMd����!s|Md���!syMd����9�~v}L.s|tm��\Ys|qm�\Ysxnm�qmM��1���<�����ڐ��&����ڐ9�&����ڐ��&����Z��Ȟ��jC涚Ț��jC氚Ț�jC檚Ț�jAΓj {��
�{j"k���
�cj"k�O�
�Kj"k��9Ϩ��9>�6dn���9��6�8�&���O0��$��Nr�N�s|8m��MYs|5m�MYs|2m�\LYs|/-�y.
d��!s+Md��!s(Md��!s%Md�� �4�=�҆�}4�5��ц�q4�5ǧц�e4�5�wт�g�@�Eq�D�q�/�
��hk�ϡ
�kh"k�o�9O���9>�6d�9��6d����9>�6d.���9�>'�ϟ��e���
��g"k�/�
��g"k�Ϟ
��g"k�o�9O���9>x6d�9�v6d����9>u6d.���9�sbΜ�1<r6޸q&��_80�$��7���f��q��g�9�m>��i�O��o۟]��m�xd?n��������?���7g��_,������o�^_�~����e���|�<��}{��x�<�}�ͷ�[u<��2x��.�o�3�����ԧ��ժ��'j��kx����Ϟ�=���t��^�:�eu<Po����Ϟ�=x�>]no������ԗ����*u�D������5<Ju<��2x�n���q��?{���������4U���ڃ��?{����������G��r{׫4�gO�<P�wpg����ԗ����ݟ=Q{� r�ܿ�/8�YV��u�?>[u�D��u�S���=�9��ǂjr�E��IP�A��(5UT{��,JM���4�R�fA���bԙg!u�@�RShA��Ѣ�DZP�A̴(ttZЬ9.�s�Z]9֢��ZP�A�(5�T{��-JM���j�Qg���e��-JM���v�RoA�9ߢ��[P�A.�u&\H]9��T\P�A�(5!T{�S.JM��䚋Qg΅�e��.JM��Ħ�BG�͚㬋2�uA���bԙv!u下RSwA����^P�AN�(5�T{�+/F��R�A�(5�T{�[/JM���܋R�{A���bԙ|!u��RS}A����Ԅ_P�AN�(5�T{��/F��R�A
-�(s/���q0
-k�30�L���P�S0����Qjj0�� �`�� �=�I��	�jrƨ3C�2�a���jrF��àڃ��Qj�0�� b�:1�.��Qj*1�� wb��P�=ȩ���jb-Ơ�Ő�s�Q�(� Ys܌Qf�1�� gc��n�=����t�� �c��z�=���& �jrBF�iȠڃ\�1��Ȑ�rHF�)ɠڃܒQjb2�� �d����=�E�Τ�� Ge����=�]�&,�jbZF��-�f�a]Ɛ���s�Qf
-3�� 7f����=ș��3�jriƨ35C�2ȱ��6�jroF�	Πڃ��Qj�3�� Wg�:�3�.��Qj�3�� �g����=����?�jr�F��	P�A��(5T{�;4JM����BG�͚��1g���e��4JM���&�R�A�9K��tiP�A.�u�iH]9N���iP�A��(5�T{�5JM���J�Qg���e�C5JM���V�R�A�9W���jP�A.�u&kH]9Z��TkP�A��(t�kЬ9N�(3�D{��5F��R�A�(5T{�6JM��䌍RӱA��dcԙ�!u䘍RS�A��g��mP�AN�(5MT{��6F�YR�A�(5eT{��6JM��伍RӷA��pcԙ�!u�ȍBG�͚�΍2�A�9u�ԴnP�A��u�nH]9x��oP�An�(5�T{��7JM����P��7����Qj�7�� �o����=�	����jrǨ3�C�2�!����jrG���ڃ��Qjz8�� q�$�=�QE�*�5�]e&��hr��/����c��|����q�?ǒǹ�<���;��Ϙ���y���������o?���'��������}����v�K���6�">�q\��qT{��"JM\�丈Qg\��e��"JM\�丈RA�9.���EP�A��4q2{��"�L\�丈RA�9.���EP�A��u�EH]9.���EP�A��(5qT{��"JM\�丈P��"���Qj�"�� �E����=�q�&.�jr\Ĩ3.B�2�q�&.�jr\D����ڃQ舋�Ys1挋�r\D����ڃQj�"�� �E����=�q�θ�� �E����=�q�&.�jr\D����ڃ1ꌋ��r\D����ڃQj�"�� �E����=�q�θ�� �E����=�q����5�qe&.�hr\Ĩ3.B�2�q�&.�jr\D����ڃQj�"�� �E�:�"�.�Qj�"�� �E����=�q�&.�jr\Ĩ3.B�2�q�&.�jr\D����ڃQj�"�� �E�:�"�.�Q�A���E8�"(��E����=�q���E@]9.���EP�A��(5qT{��"JM\�丈Qg\��e��"JM\�丈RA�9.���EP�A��u�EH]9.���EP�A��(5qT{��"JM\�ĸ�A!��0.��A��8.���E�A��(5qT{��"F�qR�A��(5qT{��"JM\�丈RA�9.b�!u丈RA�9.���EP�A��(5qT{��"F�qR�A��(5qT{��"JM\�ĸ�BG\͚ø�!!��8.���E�A��(5qT{��"JM\�丈Qg\��e��"JM\�丈RA�9.���EP�A��u�EH]9.���EP�A��(5qT{��"JM\�丈P��"���Qj�"�� �E����=�q����5�qcθ�� �E����=�q�&.�jr\D����ڃ1ꌋ��r\D����ڃQj�"�� �E����=�q�θ�� �E����=�q�&.�jr\D����ڃ1ꌋ��r\D����ڃQ舋�YsQf�"�� �E�:�"�.�Qj�"�� �E����=�q�&.�jr\Ĩ3.B�2�q�&.�jr\D����ڃQj�"�� �E�:�"�.�Qj�"�� �E����=�q�&.�jr\Ĩ3.B�2�q����5�qe&.�hr\D����ڃ1ꌋ��r\D����ڃQj�"�� �E����=�q���E@]9.���EP�A��(5qT{��"JM\�丈Qg\��e��"JM\�丈RA�9.���EP�A��4q2{�"�q$k��"�L\��3��"�9���ǖ��0.r�9��ȕ�"_���	�"�=.�8�"����z��_~���/��E�������'�~��f}�����٧�C?޷G�����7}�A�Udz�.������;�Jݟ=Q{�@}�<\��?{��������o,R���ڃ�����;�Fϲ��#i��4rP�An�(5�T{�9JM#��F�Qg#��e�9JM#��F�R��A�����4rP�Al�4�2{�9�L#��F�R��A�����4rP�An�u6rH]����4rP�An�(5�T{�9JM#��F�P�9�����Qj9�� 7r��F�=ȍ����jr#Ǩ��C�2ȍ����jr#G�i�ڃ��Q�h�Ys��1�l��r#G�i�ڃ��Qj9�� 7r��F�=ȍ��F�� 7r��F�=ȍ����jr#G�i�ڃ��1�l䐺r#G�i�ڃ��Qj9�� 7r��F�=ȍ��F�� 7r��F�=����F�5Ǎe���hr#Ǩ��C�2ȍ����jr#G�i�ڃ��Qj9�� 7r�:9�.���Qj9�� 7r��F�=ȍ����jr#Ǩ��C�2ȍ����jr#G�i�ڃ��Qj9�� 7r�:9�.���Q���A��6r89(�7r��F�=ȍ��7r@]����4rP�An�(5�T{�9JM#��F�Qg#��e�9JM#��F�R��A�����4rP�An�u6rH]����4rP�An�(5�T{�9JM#��F�A��!�簑����A�渑��4r�An�(5�T{�9F��R�An�(5�T{�9JM#��F�R��A���c���!u�F�R��A�����4rP�An�(5�T{�9F��R�An�(5�T{�9JM#��F�BG#͚�F�!��!�縑��4r�An�(5�T{�9JM#��F�Qg#��e�9JM#��F�R��A�����4rP�An�u6rH]����4rP�An�(5�T{�9JM#��F�P�9�����Qj9�� 7r��F�=����F�5Ǎc�F�� 7r��F�=ȍ����jr#G�i�ڃ��1�l䐺r#G�i�ڃ��Qj9�� 7r��F�=ȍ��F�� 7r��F�=ȍ����jr#G�i�ڃ��1�l䐺r#G�i�ڃ��Q�h�Ys��Qf9�� 7r�:9�.���Qj9�� 7r��F�=ȍ����jr#Ǩ��C�2ȍ����jr#G�i�ڃ��Qj9�� 7r�:9�.���Qj9�� 7r��F�=ȍ����jr#Ǩ��C�2����F�5Ǎe���hr#G�i�ڃ��1�l䐺r#G�i�ڃ��Qj9�� 7r��F�=ȍ��7r@]����4rP�An�(5�T{�9JM#��F�Qg#��e�9JM#��F�R��A�����4rP�Al�4�2{9��$k�9�L#��F�q�E5r�s썜�I��F���X9��ȹ=\^��ޡF�xdo�<�F����O?����_~���V�������~�C��(�3C*��fH��g;�|�A �B�2�!�&��jrHE�	��ڃRQjB*�� �T�:C*�.�RQjB*�� �T���
-�=�!�&��jbHŠ	���sRQfB*�� �T���
-�=�!�&��jrHŨ3�B�2�!�&��jrHE�	��ڃRQjB*�� �T��Ru䐊RRA�9��ԄTP�A�(5!T{�C*F�!R�A�(5!T{�C*JMH�Đ�BGH͚㐊1gH��e�C*JMH�䐊RRA�9��ԄTP�A�u�TH]9��ԄTP�A�(5!T{�C*JMH�䐊QgH��e�C*JMH�䐊RRA�9��ԄTP�A�u�TH]9��ԄTP�A�(t�TЬ9�(3!D{�C*F�!R�A�(5!T{�C*JMH�䐊RRA�9�b�R!u䐊RRA�9��ԄTP�A�(5!T{�C*F�!R�A�(5!T{�C*JMH�䐊RRA�9�b�R!u���2��
-��0���RA��8��̄T�A��=��:�!�&��jrHE�	��ڃRQjB*�� �T�:C*�.�RQjB*�� �T���
-�=�!�&��jrHŨ3�B�2�!�&��jrHE�	��ڃRQjB*�� �T��
-�=�!E��
-�5�!e&��hrHE�	��ڃR1����rHE�	��ڃRQjB*�� �T���
-�=�!�ΐ
-�� �T���
-�=�!�&��jrHE�	��ڃR1����rHE�	��ڃRQjB*�� �T:B*h��T��
-�=�!e&��hrHE�	��ڃRQjB*�� �T�:C*�.�RQjB*�� �T���
-�=�!�&��jrHŨ3�B�2�!�&��jrHE�	��ڃRQjB*�� �T��Ru䐊RRA�9��ԄTP�A�(t�TЬ9�s�T]9��ԄTP�A�(5!T{�C*JMH�䐊QgH��e�C*JMH�䐊RRA�9��ԄTP�A�u�TH]9��ԄTP�A�(5!T{�C*JMH�䐊QgH��e�C*JMH�Đ�BGH͚㐊2RA�9�b�R!u䐊RRA�9��ԄTP�A�(5!T{�C*F�!R�A�(5!T{�C*JMH�䐊RRA�9�b�R!u䐊RRA�9��ԄTP�A�(5!T{�C*F�!R�A�(t�TЬ9�(3!D{�C*JMH�䐊QgH��e�C*JMH�䐊RRA�9��ԄTP�A��=��:�!�&��jrHE�	��ڃRQjB*�� �T�:C*�.�RQjB*�� �T���
-�=�!�&��jbHŠ	���sRQ�� YsRQfB*�� �T�� *���c�|��T�?�R�rH��zy��aHe<��T�GH�?����~�P�>���_Ǽ���u���Æ������;��S塏���������7��� ����'j~�>\/ORϲ����ۍ�B�>zb�����ǫ4�gO�<P�w�`����?W�w���iFϲ�����G��Ϟ�=x�n��j�����QERj2K�� g��:3K�.��YRj2K�� g�����=ș%�&��jrfɨ3�D�2ș%�&��jrfI��,�ڃ�YRj2K�� f����=Ǚ%e&��hrfI��,�ڃ�YRj2K�� g��:3K�.��YRj2K�� g�����=ș%�&��jrfI��%P�A�,)5�%T{�3KJMf	��̒R�YB�9�dԙY"u�̒R�YB�9���d�P�A�,)td�Ь9�,sf�]9���d�P�A�,)5�%T{�3KJMf	��̒Qgf��e�3KJMf	��̒R�YB�9���d�P�A�,uf�H]9���d�P�A�,)5�%T{�3KJMf	��̒Qgf��e�3KJMf	��̒BGf	͚�̒2�YB�9�dԙY"u�̒R�YB�9���d�P�A�,)5�%T{�3KF��%R�A�,)5�%T{�3KJMf	��̒R�YB�9�dԙY"u�̒R�YB�9���d�P�A�,)5�%T{�3KF��%R�A�,)s�,��q3K
-�%k�3K�Lf	��̒P�3K����YRj2K�� g�����=ș%�&��jrfɨ3�D�2ș%�&��jrfI��,�ڃ�YRj2K�� g��:3K�.��YRj2K�� g�����=ș%�&��jbfɠ�,��s�YR��,!Ys�YRf2K�� g�����=ș%����� g�����=ș%�&��jrfI��,�ڃ�Y2��,��rfI��,�ڃ�YRj2K�� g�����=ș%����� g�����=ș%�&��jbfI�#��f�afɐ�,�s�YRf2K�� g�����=ș%�&��jrfɨ3�D�2ș%�&��jrfI��,�ڃ�YRj2K�� g��:3K�.��YRj2K�� g�����=ș%�&��jrfI��%P�A�,)5�%T{�3KJMf	��̒BGf	͚�̒1gf��e�3KJMf	��̒R�YB�9���d�P�A�,uf�H]9���d�P�A�,)5�%T{�3KJMf	��̒Qgf��e�3KJMf	��̒R�YB�9���d�P�A�,uf�H]9���d�P�A�,)td�Ь9�,)3�%D{�3KF��%R�A�,)5�%T{�3KJMf	��̒R�YB�9�dԙY"u�̒R�YB�9���d�P�A�,)5�%T{�3KF��%R�A�,)5�%T{�3KJMf	��̒R�YB�9�dԙY"u�̒BGf	͚�̒2�YB�9���d�P�A�,uf�H]9���d�P�A�,)5�%T{�3KJMf	��̒P�3K����YRj2K�� g�����=ș%�&��jrfɨ3�D�2ș%�&��jrfI��,�ڃ�YRj2K�� f����=��%E���5Ǚ%e&��hrf�8 �2K�9���Ǫ��af��s��2Kwo��{�,�G�����,�������~���/��q�zyx�͝��տ���Ɩ��B����3?�a~��Oq�B��8?����A�)5�!T{��CF��!R�A�)5�!T{��CJM~����R�B�9?dԙ"u���R�B�9?���P�A�)5�!T{��CF��!R�A�)5�!T{��CJM~����R�B�1?d����9�)3�!D{��CJM~����R�B�9?dԙ"u���R�B�9?���P�A�)5�!T{��CB}���r~H���ڃ�Rj�C�� 燔���=��!����� 燔���=��!�&?�jb~H�#?�f�q~Ș3?D�2��!�&?�jr~H���ڃ�Rj�C�� 燌:�C�.��Rj�C�� 燔���=��!�&?�jr~Ȩ3?D�2��!�&?�jr~H���ڃ�Rj�C�� 燌:�C�.��Rj�C�� �:�Ch�燔���=��!����� 燔���=��!�&?�jr~H���ڃ�2����r~H���ڃ�Rj�C�� 燔���=��!����� 燔���=��!�&?�jr~H���ڃ�2����R~H�{~ŏc�R���Xs�Rf�C�� 燄��u���R�B�9?���P�A�)5�!T{��CF��!R�A�)5�!T{��CJM~����R�B�9?dԙ"u���R�B�9?���P�A�)5�!T{�CM~�̞���"G~ɚ���2�B�9?���P�A�u�H]9?���P�A�)5�!T{��CJM~����Qg~��e��CJM~����R�B�9?���P�A�u�H]9?���P�A�)5�!T{�C
-�!4k�C�L~�Ȟ���2�B�9?���P�A�)5�!T{��CF��!R�A�)5�!T{��CJM~����R�B�9?dԙ"u���R�B�9?���P�A�)5�!T{��CB}���r~H��?eo�$�qhW�=R�@��}�?"�=s-;�K��� �qH�~�qrg���g�ғH1��A������$?��r~HY�Bk1?��#?���q~�8g~����Cʚ�Z��!eM~�
����&?��r~�Xg~����Cʚ�Z��!eM~�
����&?��r~�Xg~����Cʚ�Z��!eM~�
����&?��r~�Xg~����Cʚ�Z��!%�!t��Cʙ�J��!c��!�.@�)k�Chm 燔5�!�6��Cʚ�Z��!c��!�.@�)k�Chm 燔5�!�6��Cʚ�Z��!c��!�.@�)k�Chm 燔5�!�6��Cʚ�Z��!c��!�.@�)����p�R��P�@�)k�Chm 燌u�Ⱥ�9?�������R����@�)k�Chm 燄���
-����&?��r~HY�Bk9?�������2֙"�����&?��r~HY�Bk9?�������2����8�)����p�R��P�@�'uT~�c��k?O�����X�Cw��yz�B}h���C/#>���}��o�CO��O��2�V���ա���>R����������S�:z��l���q��p�ʑ����#��#T�FF��)�q#�m#T�FJ9�F�,f��rT�PY8le�F�l��r�PY8�)���p�2R�Q2Be�cd����q1R��0Be�`��#`���a�H)G����v�1�t	��"%�"4�EJ9�E�,&��r�PY8�erE�lƊ�r��PY8,)���p�)R�Q)Be�Q$�3Q���"�}"T�DJ9�D�,���r��PY8�e�D�lF��r4�PY8,)���p�#RƭF��=[DF��!"�"T+DJ9"D�,&��r�PY8�e�C�lƇ�r��PY8,)���p�R�QBe�9d�I��qR��Be�6��#6���ajH)Gi���ΐQ&3D��adH)Gc���2n�!�a�R�QBc�-d�I��qR��Be�*��#*���aRH)GQ��Þ�Q&'D��aLH)GK��Ò�R��*�!�!TBF��)�!�� T�AJ9�A�,���r��PY8�e�A�lD���{3u;��m�n�\��Z�� ��� P.8)����pX	R�	Be�0������a�(�"e�0���
���aH)G���,�R�**�M �L���� �R�*�5 �1 TS@J9J@�,u��qd�HX0��)���B�� % 4�?J9�?�,��2�R6�?J9�?�,V�rDPY8L�(�(���p��1��~H�8��(�h���pX�Q��Ae�0󣔣���a��(��!e�0𣔣���a�G)G������2ne�a��1���!_�0꣄����a�G)G���Ü�R��*�-�Lʇ��Ð�R��*��T>J9
->�,�{�2�R6�=J9�=�,�{�r�{PY8��(����p��ʙ���`�R�^*����T�R=ʸ�zP��a����!c�0ң��у��a�G)G����<�R�:*�m�L�����0�R�.*�U�QT�<J9�<�,�x�29R6c<J9Z<�,�x�r�xPY8��(��p��1�$xH�8�(��pT�Q�-���=�;J8�;h,vw�2�R6�;J9�;�,w�rwPY8��(����p��1ʤvH�8�(��젲pX�Q��Ae�0��������a_�(��!e�0��������aYG)GX��ì�R��*�M�LR������2n=�aX�Q��Ac�0��������aG�(��!e�0��������aAG)G@���|�R�z*�����P.8�(��栲pX�Q��Ae�0��������a/�(��!e�0��������a)G)G(���L�R�J*G�c��9ʷ�qз�aG	G���4�q�Ŕq�!�هh>uq�b��9����A�`g��8���2����o�u��O?�i�_n�����/���vw�����j~�e�x�e�N����6n���㸷�8�.@��)krhm O�59�6�Wrʚ�Z�C9c�K9�.@��)k�rhm ��5{9�6�sʚ�Zȣ9c��9�.@��)k�shm N�tl��Y8^�)g�s(m �u.�Ⱥ�yC��ѡ��<�S�����@^�)k�thm ��u��Ⱥ�yO��ԡ��<�S�l���@^�)kfuhm �u.�Ⱥ�y[��ס��<�S�����@^�)k&vhm ��u��Ⱥ�ig�����{N�pl��X8^�)g�v(m �����
-�͝�ft����NY��Ckyy���ޡ��<�3ֹ�#�����f����OY��Cky����ᡵ�<�3ֹ�#��-��f����OY��Cky����䡵�8�3Ҭ���8��)�桲p<�S�l�P�@^�)k�yhm �u.�Ⱥ�y���页�<�S�����@^�)k�zhm ���u��Ⱥ�y���졵�<�S�l���@^�)kf{hm ��u.�Ⱥ�y����<�S�����@\�)��p8�3ʬ�H�8��)g�|(m O��5[>�6��|ʚ9Zȃ>c��>�.@��)kF}hm ���5�>�6��}ʚiZ��>c��>�.@��)k~hm O��5?�6�W~ʚ�Z�C?a�.���y맬����<�S�����@\�)����p<�3ι�#��ݟ�f�����OY��Cky��������<�4ֹ�$��
��f���PY�Dky	������<4ֹ$��=��f���$PY�	Dky������<4ֹ$��m��f���<PI�>��ㅠrf"���H�X�J���w�ʚ� Z�SAe�V�
䵠�f.���`�X�b���7�ʚ� ZȳAe�n�
�堲f:���x�X�z�����ʚ!Z�Be͆�
���fF����X璐���J:Ƅ�,�	�3{B�6��ʚI!ZȣBc��B�.@�*k��hm O�5�B�6�ׅʚy!Z�Ca�.��yc�����<3T����@^*k��hm �
�u�
ɺ�yo�����<9T�l��@^*kf�hm �4�Cr6��J9Ƈ�,��3�C�6����D|�m������cY!��
-������#�Ǒ�B<����돿|�ӗ�������?�����=���?�o�����Ͽ?����1��������X�|���Gc�9����~dz���@�6�g�ʚY Zȳ@e�,�
�Y���Y Y ��5�@�6�g�ʚY Zȳ@e�,�
�Y���Y Y ��5�@�6g�J:f��,��3�@�6�g��:g�d]�<T����@�*kf�hm ��5�@�6�g��:g�d]�<T����@�*kf�hm ��5�@�6�g��:g�d]�<T����@�*kf�hm ��5�@�6�g��:g�d]�4T�m��=g�J8f�h,��3�@�6�g��z��u�,PY3Dky������<T����@���u�,PY3Dky������<T����@���u�,PY3Dky������<T����@�if��l��r�QY8�*gf�(m ��5�@�6�g��:g�d]�<T����@�*kf�hm ��5�@�6�g��:g�d]�<T����@�*kf�hm ��5�@�6�g��:g�d]�<T����@�*kf�hm ��t��Y8�ef��l��3�@�6�g�ʚY Zȳ@e�,�
�Y���Y Y ��5�@�6�g�ʚY Zȳ@e�,�
�Y���Y Y ��5�@�6�g�ʚY Zȳ@e�,�
�Y��^g�`]�<T����@�*kf�hm ��t��Y8���t�,PY3Dky������<T����@���u�,PY3Dky������<T����@���u�,PY3Dky������<T����@���u�,PY3Dkq��c����,P93Diyh�sH�ȳ@e�,�
�Y��f���,PY3Dkyh�sH�ȳ@e�,�
�Y��f���,PY3Dkyh�sH�ȳ@e�,�
�Y��f���,PY3Dkyh�sH���@%�@t�g�ʙY Jȳ@e�,�
�Y���Y Y ��5�@�6�g�ʚY Zȳ@e�,�
�Y��^g�`]�<T����@�*kf�hm ��5�@�6�g��:g�d]�<T����@�*kf�hm ��5�@�6g�F�Y 9��@��@T�g�ʙY Jȳ�����sl���c<|8�?���O�_׿����;��|�����p���q>�����ƙ��@c�O����/?���Cx��������x��{�����f�ǧ����4��9�����x>��^~y� �X��7�
|��t>ݿ�.����l]�����ngoXx`}:ݿ^~Q���
k�ϧ���ET���
k߷^�����q����z������v�����������ʺ��am����1�Y�v�����[�/Ý�nG�ٸ��38��s;{C����3�`����X�O_��w;{�����/���󽳎�l]����_����
k����O���8{�����cx��p����?��p��5gѺ�����IZ��7�
<�^>���Һ��am����1��u;{����������}��Y�.������EZ��7�
<�>���ֺ��am�����d��ߏ�p�}���t����,K����<Y�v������g�x'����X��ؕ5�wGk����:;.d]��qQ�t\��@�(k:.hm w\�5�6�;.�:;.d]��qQ�t\��@�(k:.hm w\�5�6�;.�:;.d]��qQ�t\��@�(�踠�p�qQ�t\P�@��츐ur�EY�qAk�㢬鸠���qQ�t\��@��츐ur�EY�qAk�㢬鸠���qQ�t\��@��츐ur�EY�qAk�㢬鸠���qQ�t\��@��츐uR�E9���0�(�踠�p�qQ�t\P�@�����eM��
䎋����r�EY�qAk��b���B��eM��
䎋����r�EY�qAk��b���B��eM��
䎋����r�EY�qAk��b�鸐�q�qQ��qAe�㢜鸠���qQ�t\��@��츐ur�EY�qAk�㢬鸠���qQ�t\��@��츐ur�EY�qAk�㢬鸠���qQ�t\��@��츐ur�EY�qAk�㢬鸠���qQ��qAg��b�鸐�q�qQ�t\P�@�(k:.hm w\�5�6�;.�:;.d]��qQ�t\��@�(k:.hm w\�5�6�;.�:;.d]��qQ�t\��@�(k:.hm w\�5�6�;.�z���ur�EY�qAk�㢬鸠���qQ��qAg��b���B��eM��
䎋����r�EY�qAk��b���B��eM��
䎋����r�EY�qAk��b���B��eM��
䎋����r�EY�qAk��b���B��eM��
����:��L��
䎋�ΎY w\�5�6�;.ʚ�Z�eM��
䎋�ΎY w\�5�6�;.ʚ�Z�eM��
䎋�ΎY w\�5�6�;.ʚ�Z�eM��
䎋�ΎY v\�tt\�Y8�(g:.(m w\�5�6�;.�:;.d]��qQ�t\��@�(k:.hm w\�5�6�;.�z���ur�EY�qAk�㢬鸠���qQ�t\��@��츐ur�EY�qAk�㢬鸠���qQ�t\��@�i:.�lv\�rt\PY8�(g:.(m w\��$��ϱu\�ٔ�Î��s�^���q��׻߿���������q�����~��ӷ�v�?���o���v����Z�jy[ry��_���ˌ�SΈ��1�#o"hm G�uFȺ�9"������P�D��@�(k"hm G����
-䈀�&"��rD@Y@k9"������0� �䈀�&"��rD@Y@k1"��#"���qD�8gD���#ʚ��Z�eMD��
䈀�&"��rD�XgD���#ʚ��Z�eMD��
䈀�&"��rD�XgD���#ʚ��Z�eMD��
䈀�&"��rD�XgD���#ʚ��Z�%t�#ʙ��J�c��.@�(k"hm G�5�6�#ʚ��Z�c��.@�(k"hm G�5�6�#ʚ��Z�c��.@�(k"hm G�5�6�#ʚ��Z�c��.@�(�@��%4�#ʙ��J�a�F��9"������P�D��@�(k"hm G�uFȺ�9"������P�D��@�(k"hm G�uFȺ�9"������P�D��@�(k"hm F�4r6#J9"�,G�3�6�#ʚ��Z�c��.@�(k"hm G�5�6�#ʚ��Z�c��.@�(k"hm G�5�6�#ʚ��Z�c��.@�(k"hm G�5�6#J:"�,F�2R6�#ʙ��J�eMD��
䈀�&"��rD�XgD���#ʚ��Z�eMD��
䈀�&"��rD�XgD���#ʚ��Z�eMD��
䈀�&"��rD@X���@�(k"hm G�5�6#J:"�,G�sFH��9"������P�D��@�(k"hm G�uFȺ�9"������P�D��@�(k"hm G�uFȺ�9"������P�D��@�(k"hm G�uFȺ�9"������P�@g�8"������0� �䈀�&"��rD@Y@k9"������0� �䈀�&"��rD@Y@k9"������0� �䈀�&"��rD@Y@k9"������0� �Ĉ�����:��LD��
䈀�&"��rD�XgD���#ʚ��Z�eMD��
䈀�&"��rD@X���@�(k"hm G�5�6�#ʚ��Z�c��.@�(k"hm G�5�6�#ʚ��Z�#MD���È�R���*��LD��
���^E�9���~�8~�]D`��X��=���G���݈�����_��ͦ�������\�o�J�G_����o{��T9����������q\>�ް6�}��������,[�����rw/����X/�l����X/��5&e��ް6�}���t�����:βuX�O��ֺ��am����t�z�IY��7�
<�>��_?XY��7�
|����1<J�8��x`�|�ט�u;{�����cx��`e��ް6��z��u;{����d��c�?
oG�ٸ��38�o8��
i�#���)򠵁\�Q�y��@.��,�ur�GYS�Ak�ȣ�)򠵁\�Q�y��@.�����EeM��
�"���ȃ�r�GYS�Ak��c���C��EeM��
�"���ȃ�b�GIG����"�q�"I y�5E�6��<ʚ"Z�EeM��
�"���"Y y�5E�6��<ʚ"Z�EeM��
�"���"Y y�5E�6��<ʚ"Z�EeM��
�"���"Y y�5E�6�<J:�<�,y�3E�6��<�:�<d]�\�Q�y��@.�(k�<hm y�5E�6��<�:�<d]�\�Q�y��@.�(k�<hm y�5E�6��<�:�<d]�\�Q�y��@.�(k�<hm y�5E�6��<�:�<d]�T�Qέȃ�=�<J8�<h,y�3E�6��<�z-�ur�GYS�Ak�ȣ�)򠵁\�Q�y��@.��,�ur�GYS�Ak�ȣ�)򠵁\�Q�y��@.��,�ur�GYS�Ak�ȣ�)򠵁\�Q�y��@,�i�<�ly�ryPY8.�(g�<(m y�5E�6��<�:�<d]�\�Q�y��@.�(k�<hm y�5E�6��<�:�<d]�\�Q�y��@.�(k�<hm y�5E�6��<�:�<d]�\�Q�y��@.�(k�<hm y�ty�Y8,�e�<�ly�3E�6��<ʚ"Z�EeM��
�"���"Y y�5E�6��<ʚ"Z�EeM��
�"���"Y y�5E�6��<ʚ"Z�EeM��
�"��^�<`]�\�Q�y��@.�(k�<hm y�ty�Y8.��,�tr�GYS�Ak�ȣ�)򠵁\�Q�y��@.��,�ur�GYS�Ak�ȣ�)򠵁\�Q�y��@.��,�ur�GYS�Ak�ȣ�)򠵁\�Q�y��@.��,�ur�GYS�Ak�ȣ��ȃ��q�G9S�Ai��c���C��EeM��
�"���ȃ�r�GYS�Ak��c���C��EeM��
�"���ȃ�r�GYS�Ak��c���C��EeM��
�"���ȃ�r�GYS�Ak��c���C��E%Et��<ʙ"J�EeM��
�"���"Y y�5E�6��<ʚ"Z�EeM��
�"��^�<`]�\�Q�y��@.�(k�<hm y�5E�6��<�:�<d]�\�Q�y��@.�(k�<hm y�5E�6�<F�"9�E�ET��<ʙ"J�Ej͈">�V��p��<�ϱy��s����^��3�lE��Q������������_��ߟ����x��W����t5�O�:�{:��̊<ᬸ�����A���r��XgŅ��+.ʚ�Z�eM��
䊋����r��XgŅ��+.ʚ�Z�eM��
䊋����b��HSq!g�⢜�����\qQ�T\��@��(k*.hm W\�uV\Ⱥ��⢬�����\qQ�T\��@��(k*.hm W\��Zq�
-䊋����r�EYSqAk�⢬�����\q1�Yq!�䊋����r�EYSqAk�⢤����q��8gŅ��+.ʚ�Z�eM��
䊋����r��XgŅ��+.ʚ�Z�eM��
䊋����r��XgŅ��+.ʚ�Z�eM��
䊋����r��XgŅ��+.ʚ�Z�%t�+.ʙ�J�c��.@��(k*.hm W\�5�6�+.ʚ�Z�c��.@��(k*.hm W\�5�6�+.ʚ�Z�c��.@��(k*.hm W\�5�6�+.ʚ�Z�c��.@��(�VqA��%4�+.ʙ�J�a�V\���⢬�����\qQ�T\��@��(k*.hm W\�uV\Ⱥ��⢬�����\qQ�T\��@��(k*.hm W\�uV\Ⱥ��⢬�����\qQ�T\��@��(k*.hm V\�4r6+.J9*.�,W\�3�6�+.ʚ�Z�c��.@��(k*.hm W\�5�6�+.ʚ�Z�c��.@��(k*.hm W\�5�6�+.ʚ�Z�c��.@��(k*.hm W\�5�6+.J:*.�,V\�2R6�+.ʙ�J�eM��
䊋����r��XgŅ��+.ʚ�Z�eM��
䊋����r��XgŅ��+.ʚ�Z�eM��
䊋����r�EX���@��(k*.hm W\�5�6+.J:*.�,W\�sV\H���⢬�����\qQ�T\��@��(k*.hm W\�uV\Ⱥ��⢬�����\qQ�T\��@��(k*.hm W\�uV\Ⱥ��⢬�����\qQ�T\��@��(k*.hm W\�uV\Ⱥ��⢬�����XqQ�QqAg�⢜�����\q1�Yq!�䊋����r�EYSqAk�⢬�����\q1�Yq!�䊋����r�EYSqAk�⢬�����\q1�Yq!�䊋����r�EYSqAk�⢬�����\q1�Yq!�Ċ����:��L��
䊋����r��XgŅ��+.ʚ�Z�eM��
䊋����r�EX���@��(k*.hm W\�5�6�+.ʚ�Z�c��.@��(k*.hm W\�5�6�+.ʚ�Z�#MŅ��Ê�R��*��L��
��q�DU\�9���>����r�K������CD�qd��<���?���߿��ӧ7�����U~w����(���|z��`9��w�-���띢��N�e;��x`�?���欲ngoXx`5eM�
�<��&���r�Xg����8ʚ<Z�yeM�
�<��&���r�Xg����8ʚ<Z�yeM�
�<��&���b�H��!g�8����㠴���Q��q��@��(k�8hm �q�u�qȺ�9����㠵���Q��q��@��(k�8hm �q�����
-�<��&���rGY��Ak9����㠵���1֙�!��<��&���rGY��Ak1���#����q�8g����8ʚ<Z�yeM�
�<��&���r�Xg����8ʚ<Z�yeM�
�<��&���r�Xg����8ʚ<Z�yeM�
�<��&���r�Xg����8ʚ<Z�y%yt��8ʙ<J�yc�y�.@��(k�8hm �q�5y�6��8ʚ<Z�yc�y�.@��(k�8hm �q�5y�6��8ʚ<Z�yc�y�.@��(k�8hm �q�5y�6��8ʚ<Z�yc�y�.@��(��A��y%y4��8ʙ<J�ya��q��9����㠵���Q��q��@��(k�8hm �q�u�qȺ�9����㠵���Q��q��@��(k�8hm �q�u�qȺ�9����㠵���Q��q��@��(k�8hm �q�4yr6�8J9�8�,�q�3y�6��8ʚ<Z�yc�y�.@��(k�8hm �q�5y�6��8ʚ<Z�yc�y�.@��(k�8hm �q�5y�6��8ʚ<Z�yc�y�.@��(k�8hm �q�5y�6�8J:�8�,�q�2yR6��8ʙ<J�yeM�
�<��&���r�Xg����8ʚ<Z�yeM�
�<��&���r�Xg����8ʚ<Z�yeM�
�<��&���rGX�y��@��(k�8hm �q�5y�6�8J:�8�,�q�s�qH��9����㠵���Q��q��@��(k�8hm �q�u�qȺ�9����㠵���Q��q��@��(k�8hm �q�u�qȺ�9����㠵���Q��q��@��(k�8hm �q�u�qȺ�9����㠵���Qґ�Ag�8����㠴���1֙�!��<��&���rGY��Ak9����㠵���1֙�!��<��&���rGY��Ak9����㠵���1֙�!��<��&���rGY��Ak9����㠵���1֙�!��<���<:�y�L�
�<��&���r�Xg����8ʚ<Z�yeM�
�<��&���rGX�y��@��(k�8hm �q�5y�6��8ʚ<Z�yc�y�.@��(k�8hm �q�5y�6��8ʚ<Z�y#M����<�R�<*�y�L�
�<�q�E�q�9�<ξF�|��9~��/ß.����<~��w�����~ܞ���tw}�q&G^�q�q���_�}�˗_����Z��W�w����r>==<�rR���̡��)�y��"[�E
-gE
-�6��J:��l)�s)X�@,R8�(R���X�p�Q�`k�H��)R�ub��YG���
�"���"[�E
-gE
-�6��:�d]�X�p�Q�`k�HᬣH��b��YG���
�"���H���E
-gE
-�6��:�lm )�t+R��pX�P�)P���HᬣH��b��YG���
�"���"[�E
-eM����:�lm )�u)��@,R8�(R���X�P�)к��HᬣH��b��YG���
�"���"[�E
-eM����:�lm )�t+R��pX�p�Q�`i�H��)R�ub��YG���
�"���"[�E
-gE
-�6�ʚ"Z )�u)��@,R8�(R���X�p�Q�`k�H��)R�ub��YG���
�"���"[�E
-gE
-�6�ʚ"Z )��{���{)�p+R��pX�p�Q�`i�Ha��HA��E
-gE
-�6��:�lm )�u)��@,R(k�h]�X�p�Q�`k�HᬣH��b��YG���
�"���H���E
-gE
-�6��:�lm )�u)��@*R(�(R��qT�pʭH���a��9G���
�"���"[�E
-eM����:�lm )�u)��@,R8�(R���X�P�)к��HᬣH��b��YG���
�"���"[�E
-eM����:�lm )�u)��@*R8�V�`g�H���H���a��9G���
�"���"[�E
-gE
-�6�ʚ"Z )�u)��@,R8�(R���X�p�Q�`k�H��)R�ub��YG���
�"���"[�E
-gE
-�6��:�d]�X�p�Q�`k�HᬣH��R��I�";�E
-�L����:�lm )�u)��@,R8�(R���X�P�)к��HᬣH��b��YG���
�"���"[�E
-eM����:�lm )�u)��@,R8�(R���X�P�)к��HᬣH��R��I�";�E
-�E
-�6�ʚ"Z )�u)��@,R8�(R���X�p�Q�`k�H��)R�ub��YG���
�"���"[�E
-gE
-�6�ʚ"Z )�u)��@,R8�(R���X�p�Q�`k�H��)R�uR��I�";�E
-�E
-�6��:�lm )�5E
-�.@,R8�(R���X�p�Q�`k�HᬣH��b��Xg���+��:�lm )�u)��@,R8�(R���X�P�)к��HᬣH��b��YG���
�"���"[HE
-%E
-t6��N�)XY8,R8�(R���X����)R�s|?�����"<���x-QlE��w�\��<}���rz~�7�1���V�8�&����?|��_���sU*���ۗ�?�]����ޗ��|o�~��/_��d�wNvw|<�}� 0�Eky����좵�8�U�1�Eg�x�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ���.:Ǔ]��d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Mv�s��q�ɮ��.Ǔ]��d�
�ɮ�^'�`]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��:'�d]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��:'�d]�<�U�Lv��@��*k&�hm Ov�5�]�6'�F��.9��]��]T�'�ʙ�.Jȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Z��]%�]t'�F��.)Ǔ]��d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�+���.XW Ov�5�]�6�'�ʚ�.Z��]%�]t�'��9'�$]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��:'�d]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��:'�d]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��:'�d]�<�U�Lv��@��*�좳p<�U�LvQ�@����u�dWY3�Eky����좵�<�U�Lv��@����u�dWY3�Eky����좵�<�U�Lv��@����u�dWY3�Eky����좵�<�U�Lv��@����u�dWI�d���ɮrf����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�+���.XW Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ�f�K���dW)�d���ɮrf����d�&�b��ϱMvw������Mv�ߊ������e{���dw�&�w�������������?^�~���/���{��1�{�w�y�^���q�^ur6�߫��y�:J��UWּW�
���+kޫ���{Սu�W���߫��y�:Z��UWּW�
���+kޫ���{Յ��^u��@~�����hm �W]Y�^u�6�߫��y�:Z��U7�i ��H��&Ҁ�r�AYi@k1Ҡ�#Ҁ��q��8g����#
ʚHZȑeM��
�H��&Ҁ�r��Xg����#
ʚHZȑeM��
�H��&Ҁ�r��Xg����#
ʚHZȑeM��
�H��&Ҁ�r��Xg����#
ʚHZ��%�t�#
ʙHJȑc���.@�4(k"
hm G�5��6�#
ʚHZȑc���.@�4(k"
hm G�5��6�#
ʚHZȑc���.@�4(k"
hm G�5��6�#
ʚHZȑc���.@�4(�i@���%�4�#
ʙHJȑa�F��9Ҡ��4���iP�D��@�4(k"
hm G�uFȺ�9Ҡ��4���iP�D��@�4(k"
hm G�uFȺ�9Ҡ��4���iP�D��@�4(k"
hm F�4�r6#
J9"
�,G�3��6�#
ʚHZȑc���.@�4(k"
hm G�5��6�#
ʚHZȑc���.@�4(k"
hm G�5��6�#
ʚHZȑc���.@�4(k"
hm G�5��6#
J:"
�,F�2�R6�#
ʙHJȑeM��
�H��&Ҁ�r��Xg����#
ʚHZȑeM��
�H��&Ҁ�r��Xg����#
ʚHZȑeM��
�H��&Ҁ�r�AX����@�4(k"
hm G�5��6#
J:"
�,G�sFH��9Ҡ��4���iP�D��@�4(k"
hm G�uFȺ�9Ҡ��4���iP�D��@�4(k"
hm G�uFȺ�9Ҡ��4���iP�D��@�4(k"
hm G�uFȺ�9Ҡ��4���iP�i@g�8Ҡ��4���i0�i ��H��&Ҁ�r�AYi@k9Ҡ��4���i0�i ��H��&Ҁ�r�AYi@k9Ҡ��4���i0�i ��H��&Ҁ�r�AYi@k9Ҡ��4���i0�i ��H���H:Ǒ�L��
�H��&Ҁ�r��Xg����#
ʚHZȑeM��
�H��&Ҁ�r�AX����@�4(k"
hm G�5��6�#
ʚHZȑc���.@�4(k"
hm G�5��6�#
ʚHZ��#M�����H�R�H*Ǒ�L��
�H�D��c�4�������X"
wix�?]~�D���Ėh�?�;Կ����_��?�����|���?~΁O�ޛ�ܿ�k���sޝ�燣w��y��a�C�?��qț��m)����0����Y�P�U(Ǜ��$����A�QfB����(3!e�x
-"�s	����(3!e�xb�ـ��p��1�@HY8��\��q��0�m�A�
-��6v���x�a�}��p<����.>����F��)�c��փ��㥇Qf�A����C(����㍇Qf�A�����(�� e�x�a�w��p<�ʹ��e�x�a��u��p<�0�l:HY8^te�,�9�1k��7����x�a��q��p��0ʌ8HY8�p�\p��q��0��7HY8oe��,/7�2�
R�gB9W�lo6�2�
R�F��)�k
��X���㩆PΥ(�;
��L���㑆Qf�A���B��@��{�3�/����F�i����.����U�Qf�A���$C(�"���=�Qf�A����(�� e�x�a�b��p<�ʹ��e�x�a��`��p<�0��/HY8^_e��,O/n+�ˋc��݅QfvA�����(�� e�pqa�cpA�=��B8�`lo-�2SR��F��)�+��Ȃ��㉅P΅(��
-�̼����q�Qf[A����(3� e�xV!�sU����(3� e�xPa��S��p��0ʌ)HY8�R�\R��q��0��(HY8Q��P�p��f@A���|B(�z����Qf:A���p�(�� e�x5a�M��p<�ʹ��e�x/a��K��p<�0�l%HY8^Je��,�$�r�$@�8�He&�,$�2�R��F�q)�����P6w�8f$��xa��D��p��0�"HY8�C�\C��q��0�L!HY8Bev�,� �2#R�'���ır����(3 e�x�`��>��p�|0�HY8�=�\=��q�y0�LHY8<e��,��2cR�˜��;�3��a<r0�l�X8^8^�Wz�m߰�<��{������y�8��ƾ�|�ӗ��\7���?�?����_�?�o�����k�ۯ�~���_�{C���O�ׇx;ox�uy0o��o��|}��Gq�����o!��׷(k^߂���[�t�����׷(g^߂���[�u�����_ߢ��砵���Q�Lt��@�(kV:hm �t�uuȺ�y����꠵���Q��u��@�(k;hm ov�u�vȺ�y����������Q�Lw��@�(k�;hm �w�uxȺ�i£�ۆ�{�x�p�x�X8�(g�<(m oy��:��
-�9��fσ��GY3�Akyԣ�Y������1�9�!��i��fۃ��GY3�Aky࣬Y������1�9�!�䙏�f����GY3�Aky죬Y������1�~��8��(�����p��Q��~P�@�(k�?hm o�u�Ⱥ�y����������R�L���@)kV@hm u�Ⱥ�y
-�������R�́��@)kAhm o��u��Ⱥ�y�������R�L���@)�X��p�2��H�8�)g6B(m ���53!�6��Bʚ�Z�[!c�c!�.@�)k�Bhm /��5�!�6�GCʚ�ZȻ!c��!�.@�)k�Chm ���5�!�6�DʚZ�"a�����yF�������$R�L���@)�X��p�'2�9("��I��fS���HY3+BkyX��Y����-2�9."��y��f_����HY31Bkyd��Y����32�94"�䩑�fk����HY37Bkyp��Y����92�9:"��ّ�fw����HI������rf}�����X�����'Hʚ
Z�+$e�	�
�!��f�����X�����Hʚ=Zȋ$e�$	�
�Q��f����.�X�0����IʚmZ��$e�<	�
䁒�f����F�X�H��gJJ:vJ�,/��3S%�6��Jʚ�Z�{%c��%�.@�,)k6Khm ���5�%�6��Kʚ�Z��%a�����y����/����`R�L���@1)kVLhm u�Ⱥ�yʤ��2����fR�̙��@4)kMhm n��4�&r6gMJ9vM�,/��3�&�6��M�[�n����M�=�����9��׷�����K�qd8=f���?��l�O����/?��i����ӷO��ӯ�omyx��?��헯��߾|���=�˯��~�{��_ӏ�G_���~sF��A��>���@�(kfhm ��u�Ⱥ�yF������<#P����@�(kfhm ��u�Ⱥ�iF��ی��{��p��X8�(gf(m ���:#��
-���fF���@Y3#@kyF������<#0�9# ����fF���@Y3#@kyF������<#0�9# ����fF���@Y3#@kyF������8#0����8�(���p<#P��P�@�(kfhm ��u�Ⱥ�yF������<#P����@�(kfhm ��u�Ⱥ�yF������<#P����@�(kfhm ��u�Ⱥ�yF������<#P����@�(���p8#0��H�8�(gf(m ��53�6�gʚZ�3c�3�.@�(kfhm ��53�6�gʚZ�3c�3�.@�(kfhm ��53�6�gʚZ�3a����yF������<#P����@�(���p<#0�9# ����fF���@Y3#@kyF������<#0�9# ����fF���@Y3#@kyF������<#0�9# ����fF���@Y3#@kyF������<#0�9# ����fF���@Inj�����rfF����X猀��gʚZ�3e͌��
���fF����X猀��gʚZ�3e͌��
���fF����X猀��gʚZ�3e͌��
���fF����X猀�gJ:f�,��33�6�gʚZ�3c�3�.@�(kfhm ��53�6�gʚZ�3a����yF������<#P����@�(kfhm ��u�Ⱥ�yF������<#P����@�(kfhm ��43r6gJ9f�,��33�6�gt�]��9���������s�c�Iy�i��	g��6#x3����Ͽ??���/���7�����|��������?���/�w������o���ᇯ_���U����~����޾A����ha0og�o������og�}��M�H���s����=og+ḝ�����l���l�6�og��v6XW ��V���Fk�v���v6Zȷ��5����@��m��v6Y ��V���Fk�v���v6Zȷ��5����@��m��v6Y ��V���Fk�v���v6Zȷ��5����@��m���M����l���QY8����������le��l�6�og뼝M�ȷ��5����@����������le��l�6�og뼝M�ȷ��5����@����������le��l�6�og뼝M�ȷ��5����@����������l%���Y8��m���M����l���l�6�og+kng���|;[Ys;�
����:og�u��le��l�6�og+kng���|;[Ys;�
����:og�u��le��l�6�og+kng���|;[Ys;�
����z��
�ȷ��5����@����������l%���Y8��m��v6I ��V���Fk�v���v6Zȷ��5����@��m��v6Y ��V���Fk�v���v6Zȷ��5����@��m��v6Y ��V���Fk�v���v6Zȷ��5����@��m��v6Y ��V���Fk�v������,��V���Fi�v�����d]�|;[Ys;�
���ʚ��hm ��V���Fk�v�����d]�|;[Ys;�
���ʚ��hm ��V���Fk�v�����d]�|;[Ys;�
���ʚ��hm ��V���Fk�v�����d]�x;[I��lt�og+gng���|;[Ys;�
����:og�u��le��l�6�og+kng���|;[Ys;�
����z��
�ȷ��5����@����������le��l�6�og뼝M�ȷ��5����@����������le��l�6oging��qx;[)��lT�og+gng���|;�������ϱ���=���������2�������ٗ�;~���ޙ�����/�������~>�����ƙ��@�n�������I/��Nw׿�ݯ�����W��oy�g�xz�O���w��v�������˃�ngoX����|z��]�:βuX/��ݽ�ngoXx`�|gk��ް6��z�><H�v�����[�Χ��Gggٺ�����gk��ް6���t���$����X�O�O�u;{�������a��u�e�<�^>��gi��ް6��z�.?�;�v�������pg�����o}�|���(;w��|g�
g��!m����|����
k�ϗ�h������o}9���7�q����z���Z��7�
<�^~�$�͍�7�
<�^>�G�
g��am��3�����Ys�+��z��G�am����1�}����
k����l�����o=_>���\βuX�OO//Һ��am����t9 ����X�OO����
g��WޝO�_�8�8��x`�|Oֺ��am����<�I�v�����˧�p/�����o��|��:βuX/�݃�ngoXx`�|g�
g��am����1|����
k߷>�O^䷹q����zz|��p���X�N>Z�v������ӣ�Yx��am�������(�ጳl]�����`����X/��Ib;z�Y���3���p����o}�|w�:βuX/��Y~�goXx`�|
-�u;{�������E~�goXx�6���g���q������^�Y��Z��@|_����������Vg�kek�}�ʚ���u��Z�u����
���:�x_+[��ku�Qbk���)�uB�9��ظ�Q�	�"�E �E �6�@�:�@d]�Xr�Qbk�䬣��b�YG��
�"������E gE �6�@�:�@lm ��u���@,)k�@h]�Xr�Qbk�䬣��b�YG��
�"���":GE �܊@�,��s�X�@,9�(���XR��к��䬣��b�YG��
�"���"[�E eM��@�:�@lm ��u���@,9�(���XR��к��䬣��b�YG��
�"��nE v��@J9�@�l��s�X�@,9�(���Xr�Qbk���)�ub�YG��
�"���"[�E gE �6�@ʚ"Z ��u���@,9�(���Xr�Qbk�d��D��E gE �6�@�:�@lm ��t+��pXR��P���䬣��b�YG��
�"���"[�E eM��@�:�@lm ��u���@,9�(���XR��к��䬣��b�YG��
�"���"[�E eM��@�:�@lm ��t+��pXr�Qbi���)�ub�YG��
�"���"[�E gE �6�@ʚ"Z ��u���@,9�(���Xr�Qbk���)�ub�YG��
�"���"[�E gE �6�@ʚ"Z ��t+��pXr�Qbi�䬣��bHYSB��"���"[�E gE �6�@�:�@lm ��u�Ⱥ�䬣��b�YG��
�"���"[�E eM��@�:�@lm ��u���@,9�(���TR�QBg��[����"�s�"K�E ���.�s|?S���"<��}�������z���o�k͑�t��������߾|��m_����׿�8�wf1�����y����E�>�E��@΋(k�"hm �E�u�EȺ�9/��ɋ����Q��E��@΋(k�"hm �E�4yr6��"ʙ�J�yeM^�
伈�&/��r^�Xg^����"ʚ�Z�yeM^�
伈�&/��r^DX�y��@΋(k�"hm �E�5y�6��"ʚ�Z�yc�y�.@΋(k�"hm �E�5y�6�"J:�"�,�E�s�EH��9/��ɋ����Q��E��@΋(k�"hm �E�u�EȺ�9/��ɋ����Q��E��@΋(k�"hm �E�u�EȺ�9/��ɋ����Q��E��@΋(k�"hm �E�u�EȺ�9/��ɋ����QґAg�8/��ɋ����1֙!�伈�&/��r^DY�Ak9/��ɋ����1֙!�伈�&/��r^DY�Ak9/��ɋ����1֙!�伈�&/��r^DY�Ak9/��ɋ����1֙!����rny4�a�Q‘Ac�8/��ɋ�����k^�+��"ʚ�Z�yeM^�
伈�&/��r^�Xg^����"ʚ�Z�yeM^�
伈�&/��r^�Xg^����"ʚ�Z�yeM^�
伈�&/��b^�H�!g�0/��#/���q^D9�Ai9/��ɋ����1֙!�伈�&/��r^DY�Ak9/��ɋ����1֙!�伈�&/��r^DY�Ak9/��ɋ����1֙!�伈�&/��r^DY�Ak1/��#/���a^�(�!e�8/��ɋ����Q��E��@΋(k�"hm �E�u�EȺ�9/��ɋ����Q��E��@΋(k�"hm �E�u�EȺ�9/��ɋ����Q��E��@΋(k�"hm �E����
-伈�&/��r^DY�Ak1/��#/���q^�8g^����"ʚ�Z�yeM^�
伈�&/��r^�Xg^����"ʚ�Z�yeM^�
伈�&/��r^�Xg^����"ʚ�Z�yeM^�
伈�&/��r^�Xg^����"ʚ�Z�y%yt��"ʙ�J�yc�y�.@΋(k�"hm �E�5y�6��"ʚ�Z�yc�y�.@΋(k�"hm �E�5y�6��"ʚ�Z�yc�y�.@΋(k�"hm �E�5y�6��"ʚ�Z�yc�y�.@̋(�ȋ��p�Q��EP�@΋(k�"hm �E�u�EȺ�9/��ɋ����Q��E��@΋(k�"hm �E����
-伈�&/��r^DY�Ak9/��ɋ����1֙!�伈�&/��r^DY�Ak9/��ɋ����1��E��8̋(�ȋ��p�Q��EP�@΋3T^�cˋ�k�y�����E�ߊż����q������H���/�?}�����?����姟Ɵ��?���o?{oB��������_�_�9*=|�LJ�J��9鱮`<%�I����T�2!���Q��x|{Go��l��W0��
-_����x,*|���o㙨�e$
-�=���}sz�+OC�/�P��a<
-�LB����T�2��C�۾9=��'�—(��0
-ݘ~�m��٧�e�	�=���}s�y�+O=�/CO��a<��L<����S�2�����۾9�<��'�—A'��0s
-_�����x�)|q�o��mߜo�
-��M��p|{�6�/�M��a<���5����P�o�4�}����mMp]A8��1��ųLa�(t{2o��s�C_�x�)|b�o���e�	�=��—�%��0^����屯`<��.�����R�2���3K���|{,o����W0�V
-_�����xT)|�T�o�9��eL	�=���u�Q��(�P
-�P�l���e:	�=�g�—�$��0L��͹䱯`<��%����HR�2����H��8|{#o��,��W0�D
-_����x)|�B�o���e	�=���}s�x�+O�/�G��a<z�L�����Q���l;o�2s<��Q<q�A���Q�2m�ƳF�˨|{o����W0�2
-_�����x�(|�0�o����e��=����}s�x�+O�/�E��a<V�L����LQ�2R��ś��<���0�&
-_�����x�(|�$�o�9�Ѝ1"�v("޶�Ɱ`<A������P�2=�ƳC���|{o�����W0�
-_�����xd(|��o�y��e\�=����}sVx�+O
-�/�B��a<&�L	����P�2"���۾9<����—� ��0
-ݘ�m�⹠�e,�=����}s&x�+O�/A��a<�L����,P�2
-�ƃ�۾9<����—! ��0
-_&����x�'|��o���mߜ��
-Ɠ?���|{���/S?��a<����������o���}�i�Ѝa�v(�	[&}���x�'|�o�!�mߜ��
-�>�ˀ|{���/�=��a<��������`��:�;�5��z—���0�	_&z���x�'|�o�a�mߜ��
-Ɠ<�� |{��/S<��a<����������.�c���;!�;��P<��L�@�����x)&�v����m;�=�2�����m��3�Ƒmjw?�v���O߾��o۟|��us��+z_^{��{�b��p/���υ����=���s�>�?���ߟ��y.Z���Uּ?�
���*kޟ����s����\��@~�����hm �?WY��\�6�ߟ��y.Z���5���\�.@~�����hm �?WY��\�6ߟ��c������8�����G�ʚ�3Z��ge���
���f����X������ʚ94Zȓhe�(�
�a��f���<�X�@���G�ʚ�4Z�Sie�X�
����f2���l�X�p�����ʚ�4Z�j%#jt���ʙ)5J�sjc��j�.@U+kf�hm O��5�j�6��ʚ�5Z�3kc�Ck�.@[+k��hm O��5�k�6���ʚ�5Z��kc�l�.@a+kf�hm O��5cl�6��ʚI6Zȳlc��l�.@g+�6�F��m%#m4���ʙ�6J�sma����y����m���<�V֌���@p+k&�hm ϸ�u�ɺ�y̭��s���<�V֌���@v+k��hm ϻ�u�ɺ�y䭬�y���<�V֌���@|+k&�hm ξ�4�or6��J9�ߨ,O��3#p�6���ʚ)8Z�spc��p�.@�+kf�hm OÕ5�p�6��ʚ�8Z�3qc�Cq�.@�+k��hm Oƕ5�q�6���ʚ�8Z��qc�r�.@�+kf�hm Oɕ5cr�6�J:&��,�ʍ2�rR6���ʙy9J�se���
䡹�fj�����X�����G�ʚ�9Z��se���
���f�����X������ʚ9:Zȓte�(�
�a��f����<]X�u��@�+kf�hm OՕ5cu�6�J:&��,�֍s�I��y��������<aW֌���@�+k��hm �ٍu�ɺ�yԮ������<mW֌���@�+k&�hm �܍u�ɺ�y쮬�����<yW֌���@�+k��hm �ߍu�ɺ�y�������8�W�1�Gg�x���ģ��<�7�9�'��q��f���D^Y3�Gky(���ʣ��<�7�9�'��Ѽ�f6���t^Y3�Gky@���У��<�7�9�'��1��fN���^Y3�GkyX���֣��<�7�9�'�đ����=:�S{����
����fr�����X�����ʚ�=Z�|e��
�!��f����_X��|��@�+kf�hm O�5�|�6��ʚ�>Z�3}c�C}�.@�+k��hm O��5�}�6���ʚ�>Z��}#̀�����R�?*�S~�̘�
�A��0]M��9�Q�~G<�?~������� a�8�
�ư�_���x��?��?}���7ٻ�_%^�o��O��9z�瞣�݃���>����@�+kF�hm �ޅ�:z�
-�ѻ�f����]Y3zGky�������<z7�9z'��ѻ�f����]Y3zGkq���c������8�蝤�G�ʚ�;Zȣwe���
�ѻ�f�����X�蝬�G�ʚ�;Zȣwe���
�ѻ�f�����X�蝬�G�ʚ�;Zȣwe���
�ѻ�f�����X�蝬�G�ʚ�;Z��w%�wt�G�ʙ�;Jȣwc��w�.@�+kF�hm �ޕ5�w�6�G�ʚ�;Zȣwc��w�.@�+kF�hm �ޕ5�w�6�G�ʚ�;Zȣwc��w�.@�+kF�hm �ޕ5�w�6�G�ʚ�;Zȣwc��w�.@�+�6zG���w%�w4�G�ʙ�;Jȣwa�����y�������<zW֌���@�+kF�hm �ލu��ɺ�y�������<zW֌���@�+kF�hm �ލu��ɺ�y�������<zW֌���@�+kF�hm �ލ4�wr6G�J9F�,�ޕ3�w�6�G�ʚ�;Zȣwc��w�.@�+kF�hm �ޕ5�w�6�G�ʚ�;Zȣwc��w�.@�+kF�hm �ޕ5�w�6�G�ʚ�;Zȣwc��w�.@�+kF�hm �ޕ5�w�6G�J:F��,�ލ2�wR6�G�ʙ�;Jȣwe���
�ѻ�f�����X�蝬�G�ʚ�;Zȣwe���
�ѻ�f�����X�蝬�G�ʚ�;Zȣwe���
�ѻ�f����]X��w��@�+kF�hm �ޕ5�w�6G�J:F��,�ލs��I��y�������<zW֌���@�+kF�hm �ލu��ɺ�y�������<zW֌���@�+kF�hm �ލu��ɺ�y�������<zW֌���@�+kF�hm �ލu��ɺ�y�������8zW�1zGg�x�������<z7�9z'��ѻ�f����]Y3zGky�������<z7�9z'��ѻ�f����]Y3zGky�������<z7�9z'��ѻ�f����]Y3zGky�������<z7�9z'��ѻ���;:ǣw����
�ѻ�f�����X�蝬�G�ʚ�;Zȣwe���
�ѻ�f����]X��w��@�+kF�hm �ޕ5�w�6�G�ʚ�;Zȣwc��w�.@�+kF�hm �ޕ5�w�6�G�ʚ�;Z��w#�蝜��ѻR��;*ǣw����
����X[���9���~c�x8z?~��m������#��Ǒm��8F����?����?n�o_�C�_߾���|�Y�*{�t�{~:\������=~����}=Z��ze;�
�}��f_���^X��z��@��+k��hm ��5�z�6���ʚ}=Z��zc��z�.@��+k��hm ��5�z�6��J:���,��s��I��y_���ף����W�����@��+k��hm ��u��ɺ�y_���ף����W�����@��+k��hm ��u��ɺ�y_���ף����W�����@��+k��hm ��u��ɺ�y_���ף����Wұ�Gg�x_���ף����7ֹ�'��}��f_���^Y��Gky_���ף����7ֹ�'��}��f_���^Y��Gky_���ף����7ֹ�'��}��f_���^Y��Gky_���ף����7ֹ�'��}�rn�z4�a��W±�Gc�x_���ף�������+���ʚ}=Z��ze;�
�}��f_����X羞����ʚ}=Z��ze;�
�}��f_����X羞����ʚ}=Z��ze;�
�}��f_����H��'g�p_��c_����^9��Giy_���ף����7ֹ�'��}��f_���^Y��Gky_���ף����7ֹ�'��}��f_���^Y��Gky_���ף����7ֹ�'��}��f_���^Y��Gkq_��c_�����(��'e�x_���ף����W�����@��+k��hm ��u��ɺ�y_���ף����W�����@��+k��hm ��u��ɺ�y_���ף����W�����@��+k��hm ������
-�}��f_���^Y��Gkq_��c_�����8羞����ʚ}=Z��ze;�
�}��f_����X羞����ʚ}=Z��ze;�
�}��f_����X羞����ʚ}=Z��ze;�
�}��f_����X羞����ʚ}=Z��z%�zt���ʙ}=J��zc��z�.@��+k��hm ��5�z�6���ʚ}=Z��zc��z�.@��+k��hm ��5�z�6���ʚ}=Z��zc��z�.@��+k��hm ��5�z�6���ʚ}=Z��zc��z�.@��+��ף�p��W���Q�@��+k��hm ��u��ɺ�y_���ף����W�����@��+k��hm ������
-�}��f_���^Y��Gky_���ף����7ֹ�'��}��f_���^Y��Gky_���ף����7�����8��+��ף�p��W���Q�@��O�վ�c�����O�������^*����k��׏#۾��t}a�x�����.�ϗ��^��w���������
-��C��{�2|:=���{�w����X�O/��m�u;{�����O����o[�8��x`�?=?[�v����֧��~��u;{���������-�u;{�����/ã���l]�����z�FY��7�
<�^>��߶T���
k�����Z��7�
|��|��t;���(/���,����X/��k��ް6���|��b�����dMF��Xg8����1ʚpZ��eM8�
�p��&��r8FX����@�(k�1hm �c�5��6��1ʚpZ��c���.@�(k�1hm �c�5��6�1J:�1�,�c�s�cH��9��	Ǡ���Qքc��@�(k�1hm �c�u�cȺ�9��	Ǡ���Qքc��@�(k�1hm �c�u�cȺ�9��	Ǡ���Qքc��@�(k�1hm �c�u�cȺ�9��	Ǡ���Q��Ag�8��	Ǡ���1��!��p��&��r8FY�Ak9��	Ǡ���1��!��p��&��r8FY�Ak9��	Ǡ���1��!��p��&��r8FY�Ak9��	Ǡ���1��!��p�rn�4�a�Q��Ac�8��	Ǡ����k8�+��1ʚpZ��eM8�
�p��&��r8�Xg8����1ʚpZ��eM8�
�p��&��r8�Xg8����1ʚpZ��eM8�
�p��&��b8�H�!g�0��#���q8F9�Ai9��	Ǡ���1��!��p��&��r8FY�Ak9��	Ǡ���1��!��p��&��r8FY�Ak9��	Ǡ���1��!��p��&��r8FY�Ak1��#���a8�(�!e�8��	Ǡ���Qքc��@�(k�1hm �c�u�cȺ�9��	Ǡ���Qքc��@�(k�1hm �c�u�cȺ�9��	Ǡ���Qքc��@�(k�1hm �c����
-�p��&��r8FY�Ak1��#���q8�8g8����1ʚpZ��eM8�
�p��&��r8�Xg8����1ʚpZ��eM8�
�p��&��r8�Xg8����1ʚpZ��eM8�
�p��&��r8�Xg8����1ʚpZ��%�t��1ʙpJ��c���.@�(k�1hm �c�5��6��1ʚpZ��c���.@�(k�1hm �c�5��6��1ʚpZ��c���.@�(k�1hm �c�5��6��1ʚpZ��c���.@�(�Ǡ�p�Q΄cP�@�(k�1hm �c�u�cȺ�9��	Ǡ���Qքc��@�(k�1hm �c����
-�p��&��r8FY�Ak9��	Ǡ���1��!��p��&��r8FY�Ak9��	Ǡ���1҄c��8�(�Ǡ�p�Q΄cP�@��PT8�c��;-χ���X�1w�yy��b���1�Ė��8�1���O_~�q&d�	Ǽ�����mYD�T���.,;$��Jb?j�6�?�s��!�˯�?��x���	sPw��\��4���	�5G�dJ�3a�戙L�X&L�%�%y %{��ɔ�b�d��0��!L��9&S2~	�5'�d)/Q��H�L��%,�ݒ)��ɚ#Z2%c�0YsK��K��9r%S2Z	�5G�dJ�*a���L�8%L���!yGJ�|�#Q2%#�0Ys�I�dx&k�8ɔ�M�d�Q&Y�&Q��ȒLɨ$L�M�)��ɚH2o	��1j$K�`$*�)�)��ɚ�C2%Ð0YsDH�d&k�ɒ<���=G~dJFa��h�L��#L��)w�ɚ�:�$:�dϑ��G��9z#S2��5GldJ�a��(�,��(�sdF�d�&kN��T�#^��L��",�u�%yp%{��Ȕ�,�d����aE��9�"S2��5GQdIPDɞ#'2%��0Ys�D�d(&k��Ȕ�#�d�QY�Q��H�L�"L���)>�ɚ#2%c�0Ys�C��C��9�!S�K
a�2%3d����cC�`�k�ZȐ�c!H>̑
-���B��9:!S2L�5G$dJ�a��(�,��(�s�A�dt&k�6Ȕ
�d���qA��9� K� J�I�)�ɚ�2%Á0Ys�@�d,&kN�R�`���z7���
�)�Ś#�2%�0Ys�?���?��9�S2��5G�cJ��`��~LɘL�ŏ%y�%{��ǔ���d������>��9BS2��5G�cI�Cɞ#�1%#|0Ys�=�dx&kN��T��^�${,����Y�)ՃŚ��1%Cz0Ys=�d<&k��ǒ<���=G�cJF�`���xL�0L��)Ãɚ��$�dϑ�;��9�S2t�5G�cJ��`��v�;ځ��Ɏ)��ɚ��1%�u0Ys�:����`�:F�c	�CŞ#�1%�t0Ys4:�d�&k�@ǔ���d�Q�X��P��HsL��L�]�)��ɚ#�1%cr0Ys9��9��9rS2�5G�cJ��`��qL�8L��%y%{�ǔ���d��ߘ�7~����){�Ś���$��dϑݘ�Q7��9�S2��5GpcJ��`��m,Ƀm(�s�6�d�
&k��Ɣ��d�٘�16��9
-K��J�y�)]�ɚ��1%Ck0Ys�5�d\
&k��ƒ<���='Rc*�D
�c�4�`8
k��Ɣ���d�Q�X��P���hL�(L�
�)B�ɚ#�1%�g0Ys�3���@�a�tƔ���d��͘�a3��9�S2f�5G1cI0Cɞ#�1%�e0Ys�2�d�&k�PƔ���d�I�X�A2�1S�&d�w��1�c�Xs�1�s���#��ROe��G|�;��x��������g�ߞy{}y���+��������������&��G�<�����=�C��?X!�endstream
+xڜ�M�l�ae7ׯ�0]Y��YS�r4�h���H�(�A@��տ޷�=�d�SyW.:4���:����+��������^Χ���_��N��O_�����?m������8���|��������o�^No�_���w���������������uZ�N��_��_������������7绯���ܿ�~�ӿ����?���w?���7�������?N٠<���ޞ���7��o>��r����������er��2��f~���?��O�u�������������n�����t��L��;�޽|����G�h}����E�ϧ���k�lgٺ����Wk��ް6���|zxy����
k�����i��ް6�u����IZ�Y�.���_�u?{�����ޤu?{������u?{�������1�;�~���;Pn��|����
i��3�����
k����7����ް6���|�߾*�8��x`}8��X�~���������u?{�������7�q����W��w�cxt֜E�
+<�n���YZ��7�
<�n���EZ��7�
<�n��l����^����p���,[�������&����X�O�Wk��ް6���zz�_�/Go8w]y>m���,K��u{�ֺ��am��u{O�Һ��am��u{
+�Һ��am�u����u�e�<�n���QZ��7�
<�n��,�ጳ7�
<�n���Z��7�
�n}<���u�e�<�>��^�7�q�������݋��goXx`}==ٿ
+��7�
�n}�Ó��3βuX���h����X�� �"���,܁r{��8{C�������K�8��x`ݞ�Y~�goXx`ݞ��goXx`}==��os��
k�[_�No����q�����pz|����
k�O�y�mn��am��u{O���8{�������1<J�8��x`�Ã�67�ް6���=�{�mn��am��u{gk��ް6��m{w���8��x`��t���a�;�=��oY��7��;P��^�7�q����W�ww����&gѺ���gk��ް6���=��i��ް6���=��Gi��ް6���=�igٺ���c�����
k��c8?K�~������1�Y�~����׭�w��7�
.gٺ��������goXx`}:��X�~����������goXx���=�'�~���;Pn�@�Zݏ�P�@�=�dzt�goHx`���G�9{��������K�8��x`ݞ�Y~�goXx`���1D�ް6���z:�Y�~����׭Ow�g�ɓ�e�<�>���/��
k�O��gk��ް6���=�ɓ��am�u����'Or�����=�k��ް6���=�ɓ��am��u{�/�����]W�l�@~�ُ��q���Y�~����֧ӓ��I�ް6���z�{����
k�[_�NO�c'9��x`}8�ɏ���
k��cx����
k��c�;���^��m��AZ�Y�.�������q������1ȏ���
k��c�����
k�Z��N�o�{\΢uX�Oo�gx9{��������Z��7�
<��������]W��g ���,K��u{Oֺ��am��u{��Һ��am��u{
+�c'9{�������1�K�8��x`���QZ��7�
<�n�A~�$goXx`}9��Y�~����׭w��W�m.gٺ����W�����am������l����X���$�͍�7�
�n}����IβuX���`����X�� �Ҵ��,܁r{�c'9{C���֧��`"gٺ���3�;���X�N��c'9{��������Z��7�
�n}�;�ˏ��,[�����"?v��7�
<�n���Z��7�
<�n�A~�$goXx���=����e�<�n���Z��7�
<�n�A~�$goXx`����I�ް6����t��DβuX�O�V���
g��O����I�ސ6���rz~����
k�[߶g ?|��l]���)����
k��cx����
k��c�>���^�>�m�A��E�
+<�n��l����X�� ?|��7�
<�����ϙr����׭�ӝ&r����zz�>���X�Nw�ֺ��am��u{2����^��o�A��ُ��q��<J嗣7��;Pn@�9{C������Or����׭�#���7gٺ���S�{�%��\p4 �p����`s�6[>_d���}���s<��xx�u�����l�b��|���q�N�pY�y�\h�ɑ}C&+2�ӿ����������ƚ�?���?���o�����ޏ�ɸ�>�6��/ߥ�������u��������
��[Y�������ɺ���V���hm ��ʚ��
��[IG����q�m���&���[Y�����+k�o�6��oeM���r�m���&���[Y�����+k�o�6��oeM���r�m���&���[Y�����+k�o�6��oeM���r�m���&���[Y�����+���Y83�7J����������oeM���r������@5�7Z����������oeM���r������@5�7Z����������oeM���r������@5�7Z����������o���o4~�a�����Fc��V���(m ���z�����V���hm ��ʚ��
��[Y�������ɺ���V���hm ��ʚ��
��[Y�������ɺ���V���hm ��ʚ��
��[Y�����i�or6�o��7*���r��Fi��V���hm ���:�o�.@5�7Z������Fk��V���hm ���:�o�.@5�7Z������Fk��V���hm ���:�o�.@5�7Z������Fk��V����p�e�oR6��o�L���r������@5�7Z����������oeM���r������@5�7Z����������oeM���r������@5�7Z����^�o��@5�7Z������Fk��V����p���I����V���hm ��ʚ��
��[Y�������ɺ���V���hm ��ʚ��
��[Y�������ɺ���V���hm ��ʚ��
��[Y�������ɺ���V���hm ��J:�ot��o�L���r�m���&���[Y�����+k�o�6��oeM���r�m���&���[Y�����+k�o�6��oeM���r�m���&���[Y�����+k�o�6��oeM���r�m���&���[IG����q����Q�@5�7Z����������oeM���r������@5�7Z����^�o��@5�7Z������Fk��V���hm ���:�o�.@5�7Z������Fk��V���hm ��F�������[)G����q����Q�@5�7Z����������o�M���������>�ȇ�����7������qd��G��������������-�Oϧ���wE:ow���:?��޾|v��C���u�������,?_�u�e�<�>�^_�u?{���������6ʺ��am�������3Ke��ް6��e{O�:βuX����Qe��ް6���=���Y*�~������1�[�~����׭��c�w��(;w�ܞ��,����X�gpg����X_��.ۯ�~����׭o����oX�:βuXN//ֺ��am����t��(����X���$�ጳ7�
<�4�ã��,ZW��u��(kVc��@^�Q֬Ơ�����Y�Aky5�X�jY ��(kVc��@^�Q֬Ơ�����c5����㜫1$]����Y�Aky5FY����j��f5�
��c��1d]����Y�Aky5FY����j��f5�
��c��1d]����Y�Aky5FY����j��f5�
��c��1d]����Y�Akq5FI�j:ǫ1ʙ��6�Wc�u�Ɛu�j��f5�
��e�jZȫ1ʚ��6�Wc�u�Ɛu�j��f5�
��e�jZȫ1ʚ��6�Wc�u�Ɛu�j��f5�
��e�jZȫ1ʚ��6�Wc�u�Ɛu�j�r�1h���%�1h,��(gVcP�@^���jXW ��(kVc��@^�Q֬Ơ�����Y�Aky5�X�jY ��(kVc��@^�Q֬Ơ�����Y�Aky5�X�jY ��(kVc��@^�Q֬Ơ�����Y�Akq5�H�C���j�R��T�Wc�3�1(m ��(kVc��@^�1ֹC�ȫ1ʚ��6�Wc�5�1hm ��(kVc��@^�1ֹC�ȫ1ʚ��6�Wc�5�1hm ��(kVc��@^�1ֹC�ȫ1ʚ��6�Wc�5�1hm ��(�X�Ag�p5�(�C���j�rf5�
��e�jZȫ1ʚ��6�Wc�u�Ɛu�j��f5�
��e�jZȫ1ʚ��6�Wc�u�Ɛu�j��f5�
��e�jZȫ1ʚ��6�Wc����ȫ1ʚ��6�Wc�5�1hm ��(�X�Ag�x5�8�jI ��(kVc��@^�Q֬Ơ�����Y�Aky5�X�jY ��(kVc��@^�Q֬Ơ�����Y�Aky5�X�jY ��(kVc��@^�Q֬Ơ�����Y�Aky5�X�jY ��(kVc��@\�Qұ����j�rf5�
��c��1d]����Y�Aky5FY����j��f5�
��c��1d]����Y�Aky5FY����j��f5�
��c��1d]����Y�Aky5FY����j��f5�
��c��1d]����c5������jJȫ1ʚ��6�Wc�u�Ɛu�j��f5�
��e�jZȫ1ʚ��6�Wc����ȫ1ʚ��6�Wc�5�1hm ��(kVc��@^�1ֹC�ȫ1ʚ��6�Wc�5�1hm ��(kVc��@\�1ҬƐ�q���c5������jJȫ1ʚ��6�Wc�u�Ɛu�j���[����՘�+-��1�YVcμ��^�h�~bߌy�1��w��?}�������|>��Ͽ|�ӏ�\y|���]��ݿM�̩��{Υ��E��F>�vF@�8^1ʌ���p<1b�Y!e�x_�(3/B��Ḉ0f[��e#̰dz"F�UR�7E�2�"�,���e�xM�(3&B���QfI�����̌)�#"���
�c���̀)��!F��R��C�2�!�,���
e�x5�(3B���d�Qf1���ýcs!$��!�[!`l/�e�BHY8�	1ʬ���p�b��!e�x D(�>(�� F�qR��A�2� �,�efAHY8ʹ	���"�Qf����9��)�[ F�)R��@�r�q�b�!e�p��	?�x��3�A�����P��P6��?�2��,�~eV?HY8��0�L~��p<�!�s�������)�SF��R�w>�23�,�|����e�x��(3�A���Qf݃���m�̴)��B9w=@�8Z�0�}ԃtP8�alcуta��a��� c�x����q�\p��a�� e�x��(��A���Qfƒ�������l�we�;HY8��0�,w��p��a��� e�x�C(�f(NjF��R��:�2k�,oue�:HY8���t��`��a|c��|a<�a�Y� c�x��(3�A���8�P�mP6��9�2��,�reV9HY8��0�Lr��p<�!�s����5��)�SF�%R�w8�23�,�p����e�x��(3�A�����Qf}�����
c�$���
����
+ƫF��
2�'7�2��,�me�6HY8�ʹ����҆Qfh����
���)�F��
R�6�r�k��q��a�� e�xZ�(��A���QfV����Q���˦Ʊr��QfP����9
�̚)�[�8�4H��CB8w4��8^�0ʌh��p<�a�Y� e�x?�(3�A���x�P��P6��3�2��,�feV3HY8��0�Lf��p<�!�s/�����X)�SF��R�w2�23�,�d����e�x!�(3�A���<�1�u~��6�f����a����l�beF1HY8��0�,b��p��a��� e�xC(�(�KF�!R�g0�2+�,o`e&0HY8�ʹ�����Qf���������)ǻF��R�G/�rn^��q�xa�c���a<wa�Y� c�x��(3uA���ЅPΝP6�W.�2#�,O\e.HY8޷0��[��p<nq[yٶ8V.8^�0�[��p<ka�Y� e�x��(3iA���P�=P6��,�2c�,OYe�,HY8ޱ0��X��p8b!�ٰ�a�p���ƀ�>�x���^A���v�Qf������
+����l�V�����[�͊#������+�?�����Ɋqd߬x���w�����*���v.��}����h������ςk�3����~|>=>��]�s?{C�������Z��7�
�n}ڞ�����u�e�<�nO��'�ʺ��am��u{gk��ް6���=���Q)�~����׭��������u�e�<�>�^_�u?{��������YZ��7�
<���e�vZ��9�:�sȺ�y@GY����򆎲fD�
�e͎Z�K:F�)r6��t�3k:(m ��(ku��@��Q�l꠵���c�sV����u�5�:hm o�(k�u��@��Q��렵���#�����@�Q֬젵������AkyjGY�����ڎ�ι�.@�Q�,������AkqvGI��:��;�9�wH��y|GY��������f��
�	e�Z�+<�:gxȺ�y�GY�ă����f��
�9e�Zȋ<�:'yȺ�y�GY�ʃ��.��f��
�ie�6Z��<�:�yȺ�y�GY�Ѓ��F����t�gz�3;=(m /���!��e�ZZ�{=ʚ��6�'{�5�=hm ����!���e�rZ��=ʚ��6��{�5�=hm /���!��e͊Z�;>ʚ!�6��|�5[>hm ����!��A��}����>J8F}�X8��Q��������#��i��@�Q֬������Aky�GY����ʏ�Ι�.@�Q�,���������Aky�GY�����⏱���.@�Q֬���������Aky�GY��������f����� �@�,o�)gF�P�@�R�������d�s
+���ǀ�5k@hm �)k���@�R�l����
+d�s������5�@hm o)kƁ��@�R������d�s"���G��5+Ahm �)k����@�
+Rұ����Z�Qf.����� ��bJțAʚ� �6�g��5�Ahm /�"��� e�zZ��Aʚ!�6�'��5Bhm ��"��!!e͒Z�[Bʚ1!�6�焔5{Bhm /
+	�eR�+�G��5�Bhm �
+)k����@�Rұ-����q�y!�.@R�,����1��BkyfHY�3���Ґ�Ω!�.@R֬
����7��BkyrHY�9���ꐱ��!�.@R�,����=��Bky~HY�?������	"�.@!R֬����C��c����)"��J�kD�:�Ⱥ�y�HY�H���&��f��
�Y"e�.Z��D�:��Ⱥ�y�HY�N���>��f��
�"e�FZ�+E�:g�Ⱥ�y�HY�T���V��f��
�"e�^ZȋE�:'�Ⱥ�q�HI�j:ǻEʙ�"�6����5�Ehm ��/"��#e͂Z�Fʚ#�6�g��5;Fhm /	�e��+�nj�5kFhm �)k���@�4R�l����jd�sֈ�����5�Fhm o)kƍ��@�7R������pd��8"g�p�H)��*�;Gʙ�#�6����5[Ghm ��;"�����-�x��G.r�yt|�e��G���}~�ѣqd=z�G�������~�uL ���7�w_��o�O_o���?��˵�����/�z�������Kx��Ƴ��p��.��E��&��.ZY�E����E+k�h�6�h%]4:�]�q�.����heM��r�����@5]4Z�]���.����heM��r�����@5]4Z�]���.����heM��r�����@5]4Z�]���.����heM��b����FgḋV�t�(m w��:�h�.@5]4Z�]����Fk��V�t�hm w��:�h�.@5]4Z�]����Fk��V�t�hm w��:�h�.@5]4Z�]����Fk��V�t�hm w��:�h�.@ꢕs����]��.���.Z9�E����E륋�
+�.ZY�E����E+k�h�6��heM��rm���&��.ZY�E����E+k�h�6��heM��rm���&��.ZY�E����E+k�h�6��heM��bm����8좕rtѨ,w�ʙ.�
�.ZY�E����E��ɺ���V�t�hm w�ʚ.�
�.ZY�E����E��ɺ���V�t�hm w�ʚ.�
�.ZY�E����E��ɺ���V�t�hm w�ʚ.�
�.ZIG���am��I�83]4J�]����Fk��V�t�hm w��:�h�.@5]4Z�]����Fk��V�t�hm w��:�h�.@5]4Z�]����Fk��V�t�hm w��z�����V�t�hm w�ʚ.�
�.ZIG���qm���&��.ZY�E����E+k�h�6��heM��rm���&��.ZY�E����E+k�h�6��heM��rm���&��.ZY�E����E+k�h�6��heM��rm���&��.ZY�E����E+���Y83]4J�]���.����heM��r�����@5]4Z�]���.����heM��r�����@5]4Z�]���.����heM��r�����@5]4Z�]���.���h%]4:�]�r��Fi��V�t�hm w��:�h�.@5]4Z�]����Fk��V�t�hm w��z�����V�t�hm w�ʚ.�
�.ZY�E����E��ɺ���V�t�hm w�ʚ.�
�.ZY�E����Ei�hr6�h�]4*�]�r��Fi��V�t�hm w��:�h�.@�^�E�EF��"�]��E��s<o��y����μ�O/�le<m��z��\h�ɑ/�U�?��˯�����?�i�Ͽ�˟���?����7}?��_/��1���P���������&�9��_9��pz}}�v�+���
k�ϧ��gi��ް6���zz}~����
k�[�?]��u�e�<�n���UZ��7�
<�n���MZ��7�
<�n���Z��7�
�n}�ý��G�ٸ���g���ސ6���=�;k��ް6���zzy�_���
k�[�Χ��ۈ���l]�և�ˋ��goXx`ݾ>?J�~������1<�o8��
k�>w�cxt֜E�
+<�n���YZ��7�
<�n���EZ��7�
<���+�:�\��@�rQ�l��u▋��-�6�\�ul���������;�[.ʙ-�.@�rqֱ���▋��-�6�\�ul�����墬�rA��-g[.lm n�8��rakq��Yǖ[�[.ʚ-�.@�rqֱ���▋��-�6�\�ul�����墬�rA��-g[.lm m�8�����ᖋs�-�6�\�5[.h]����c˅�
�-g[.lm n�8��rakq�EY����[.�:�\��@�rqֱ���▋��-�6�\�5[.h]����c˅�
�-g[.lm n�8��rakq�EY���[.��e˅�a������[.�9�\X�@�r1ֹ�B��[.�:�\��@�rqֱ���▋��-�6�\�5[.h]����c˅�
�-g[.lm n�8��rakq�EY����[.�:�\��@�rqֱ���▋��-�6��\�tl���q�����+�[.�9�\X�@�rqֱ���▋�f���\�ul�������c˅�
�-g[.lm n�(k�\к�q��Yǖ[�[.�:�\��@�rqֱ���▋�f���\�ul�������c˅�
�-'ݷ\�Y8�rQʱ���ᖋs�-�6�\�ul�������c˅�
�-e͖Z n�8��rakq��Yǖ[�[.�:�\��@�rQ�l��u▋��-�6�\�ul�������c˅�
�-c�[.d]����c˅�
�-g[.lm m�8�����ᖋrf���\�ul�������c˅�
�-g[.lm n�(k�\к�q��Yǖ[�[.�:�\��@�rqֱ���▋�f���\�ul�������c˅�
�-g[.lm n�(k�\к�q��Yǖ[H[.N�o���p���c˅�
�-e͖Z n�8��rakq��Yǖ[�[.�:�\��@�rQ�l��u▋��-�6�\�ul�������c˅�
�-e͖Z n�8��rakq��Yǖ[�[.�:�\��@�rQ�l��uҖ���[.�,n�8��raiq��Yǖ[�[.ʚ-�.@�rqֱ���▋��-�6�\�ul������b�s˅�+�\�ul�������c˅�
�-g[.lm n�(k�\к�q��Yǖ[�[.�:�\��@�rqֱ���Җ���-t6��\�r�rae�p��9ǖK�[.�:�\��@�rQ�l��u�l��-��~��E��\�"_~��o�<\=�}�}�����o����W�eƙٷ\ν������������������z���|�������|��x�+�&c���E`7���wc�5�1hm ��(kvc��@ލQ��Ơ���c�s7���wc�5�1hm ��(kvc��@ލQ��Ơ���c�ٍ!g�x7F9����n��f7�
��e�nZȻ1�:wcȺ�y7FY����n��f7�
��e�nZȻ1�zٍ�
+��e�nZȻ1ʚ��6�wc�5�1hm ���܍!���e�nZȻ1ʚ��6wc�t�Ơ�p�c�s7���wc�5�1hm ��(kvc��@ލQ��Ơ���c�s7���wc�5�1hm ��(kvc��@ލQ��Ơ���c�s7���wc�5�1hm ��(kvc��@ލQ��Ơ���c�s7���wc�5�1hm ��(�؍Ag�x7F9����n�����.@ލQ��Ơ�����ٍAky7FY����n�����.@ލQ��Ơ�����ٍAky7FY����n�����.@ލQ��Ơ�����ٍAky7FY����n�����.@ڍQ�}7�a���c7������nJȻ1�zٍ�
+��e�nZȻ1ʚ��6�wc�5�1hm ���܍!���e�nZȻ1ʚ��6�wc�5�1hm ���܍!���e�nZȻ1ʚ��6�wc�5�1hm ��ivc��8܍Qʱ����n�rf7�
��e�nZȻ1�:wcȺ�y7FY����n��f7�
��e�nZȻ1�:wcȺ�y7FY����n��f7�
��e�nZȻ1�:wcȺ�y7FY����n��f7�
��%�1�,��evcH�8ލQ��Ơ�����ٍAky7FY����n�����.@ލQ��Ơ�����ٍAky7FY����n�����.@ލQ��Ơ�����ٍAky7FY����n��^vc��y7FY����n��f7�
��%�1�,���܍!���e�nZȻ1ʚ��6�wc�5�1hm ���܍!���e�nZȻ1ʚ��6�wc�5�1hm ���܍!���e�nZȻ1ʚ��6�wc�5�1hm ���܍!���e�nZ��1J:vc�Y8ލQ��Ơ���c�s7���wc�5�1hm ��(kvc��@ލQ��Ơ���c�s7���wc�5�1hm ��(kvc��@ލQ��Ơ���c�s7���wc�5�1hm ��(kvc��@ލQ��Ơ���c�s7��wc�t�Ơ�p���ٍAiy7FY����n�����.@ލQ��Ơ�����ٍAky7FY����n��^vc��y7FY����n��f7�
��e�nZȻ1�:wcȺ�y7FY����n��f7�
��e�nZ��1F��r6wc�r�Ơ�p���ٍAiy7FY����n�����.@ލ�%���1.r�s|��<�_O��x����6��m�����y~��^��ǡ��rL�c���<$r�}�^������z}=܌��-t���|���z���zZ��-ʚ��6��[�5�-hm ���\o!���e�zZ��-ʚ��6��[�5�-hm ��i�[��8^oQά�����ޢ�YoAky�EY�ނ��z�����.@^oQ֬�����ޢ�YoAky�EY�ނ��z��^�[��y�EY�ނ��z��f��
��e�zZ��-�:�[Ⱥ�y�EY�ނ��z��f��
��%�-�,���\o!���e�zZ��-ʚ��6��[�5�-hm ���\o!���e�zZ��-ʚ��6��[�5�-hm ���\o!���e�zZ��-ʚ��6��[�5�-hm ���\o!���e�zZ��-J:�[�Y8^oQά������b�s�����[�5�-hm ��(k�[��@^oQ֬������b�s�����[�5�-hm ��(k�[��@^oQ֬������b�s�����[�5�-hm ��(k�[��@^oQ֬������b�s�����[�s_oA�G��(�XoAc�x�E9�ނ��z��^�[��y�EY�ނ��z��f��
��e�zZ��-�:�[Ⱥ�y�EY�ނ��z��f��
��e�zZ��-�:�[Ⱥ�y�EY�ނ��z��f��
��e�zZ��-F��r6�[�r����p�ޢ�YoAiy�EY�ނ��z�����.@^oQ֬�����ޢ�YoAky�EY�ނ��z�����.@^oQ֬�����ޢ�YoAky�EY�ނ��z�����.@^oQ֬�����ޢ�YoAkq�EI�z:��-F��R6��[�3�-(m ��(k�[��@^oQ֬������b�s�����[�5�-hm ��(k�[��@^oQ֬������b�s�����[�5�-hm ��(k�[��@^oQ֬������"�����@^oQ֬�����ޢ�YoAkq�EI�z:��-�9�[H��y�EY�ނ��z��f��
��e�zZ��-�:�[Ⱥ�y�EY�ނ��z��f��
��e�zZ��-�:�[Ⱥ�y�EY�ނ��z��f��
��e�zZ��-�:�[Ⱥ�y�EY�ނ��z����t��[�3�-(m ���\o!���e�zZ��-ʚ��6��[�5�-hm ���\o!���e�zZ��-ʚ��6��[�5�-hm ���\o!���e�zZ��-ʚ��6��[�5�-hm ���\o!���%�-�,��(g�[P�@^oQ֬������b�s�����[�5�-hm ��(k�[��@^oQ֬������"�����@^oQ֬�����ޢ�YoAky�EY�ނ��z�����.@^oQ֬�����ޢ�YoAky�EY�ނ��z��f��������-�,��(g�[P�@^oQ֬������b�s�����[h�Ĭ��E�zˇ���_dYo�������������3Yo��-����o���_�����������Z����#��g�����8��]a��L�?��8�|H���@L��t$��,'��9a�.@N��5�0Zȉ��&Fk9V�$�hm '��:a�.@N��5�0Zȉ��&Fk9V�$�hm '��:a�.@N��5�0Zȉ��&Fk9V�$�hm '��:a�.@N��5�0Z�����D���DX9������L�ɺ�9V�$�hm '�ʚD�
�DXY������L�ɺ�9V�$�hm '�ʚD�
�DXY������L�ɺ�9V�$�hm '�ʚD�
�DXY������L�ɺ�)V�=F�G&�J8a4�a�L"��r",��D�+�aeM"��r"��I���@N��5�0Zȉ���D���aeM"��r"��I���@N��5�0Zȉ���D���aeM"��r"��I���@N��5�0Z����&&g�0Vʑ��p�+ga�6�aeM"��r"l�3&��DXY�����+ka�6�aeM"��r"l�3&��DXY�����+ka�6�aeM"��r"l�3&��DXY�����+ka�6a%�0:���Q&&e�8V�$�(m '�ʚD�
�DXY������L�ɺ�9V�$�hm '�ʚD�
�DXY������L�ɺ�9V�$�hm '�ʚD�
�DXY������%�
+�DXY�����+ka�6a%�0:lj�q�D���aeM"��r"��I���@N��5�0Zȉ���D���aeM"��r"��I���@N��5�0Zȉ���D���aeM"��r"��I���@N��5�0Zȉ���D���aeM"��b"��#Fg�8V�$�(m '��:a�.@N��5�0Zȉ��&Fk9V�$�hm '��:a�.@N��5�0Zȉ��&Fk9V�$�hm '��:a�.@N��5�0Zȉ��&Fk9V�$�hm '��:a�.@L��t$��,'�ʙD�
�DXY������L�ɺ�9V�$�hm '�ʚD�
�DXY������%�
+�DXY�����+ka�6�aeM"��r"l�3&��DXY�����+ka�6�aeM"��b"l�I���8L��r$¨,'�ʙD�
�DXY������L�ɺ�9>]]"�����<&��������uL"|=#޾����M��go�_�W�q(g.��yD�����_��7"�G'��/�������d��|I��$��E�%�d]���deM��r��)���@,��t��,��9h�.@.��54Z�����Fk��V��hm ��:h�.@.��54Z�����Fk��V��hm ��:h�.@.��54Z�����Fk��V��hm ��:h�.@.��54Z�������Z9S@���\@�,�ɺ���V��hm �ʚ�
�ZYS@���\@�,�ɺ���V��hm �ʚ�
�ZYS@���\@�,�ɺ���V��hm �ʚ�
�ZYS@���\@�,�ɺ���Vν�F�G�J8
+h4�h�L��r-���+�heM��r��)���@.��54Z�������heM��r��)���@.��54Z�������heM��r��)���@.��54Z�����&g㰀V�Q@��p\@+g
+h�6�heM��rm���&��ZYS@���\@+k
+h�6�heM��rm���&��ZYS@���\@+k
+h�6�heM��rm���&��ZYS@���\@+k
+h�6h%4:��Q��&e㸀V��(m �ʚ�
�ZYS@���\@�,�ɺ���V��hm �ʚ�
�ZYS@���\@�,�ɺ���V��hm �ʚ�
�ZYS@���\@륀�
+�ZYS@���\@+k
+h�6h%4:��q����heM��r��)���@.��54Z�������heM��r��)���@.��54Z�������heM��r��)���@.��54Z�������heM��b����FgḀV��(m ��:h�.@.��54Z�����Fk��V��hm ��:h�.@.��54Z�����Fk��V��hm ��:h�.@.��54Z�����Fk��V��hm ��:h�.@,��t��,�ʙ�
�ZYS@���\@�,�ɺ���V��hm �ʚ�
�ZYS@���\@륀�
+�ZYS@���\@+k
+h�6�heM��rm���&��ZYS@���\@+k
+h�6�heM��bm�)���8,��rШ,�ʙ�
�ZYS@���\@�,�ɺ�������x�Q@��q}|�����Q@�������8s)�����_���w�2����/_}ௗ8��2��s��f���~�=��@ω�r�i���$��SY�s����s*kzN�6�{NeMω�r�i���$��SY�s����s*kzN�6�{NeMω�r�i���$��SY�s����s*��9�Y8�9�3='J�=��Ξ���{NeMω�rϩ��9��@�9�5='Z�=��Ξ���{NeMω�rϩ��9��@�9�5='Z�=��Ξ���{NeMω�rϩ��9��@�9�5='Z�=��Ξ���zN��{N4~�aϩ���Dc��T���(m ���z�9����T���hm ��ʚ��
�SY�s����s��9ɺ���T���hm ��ʚ��
�SY�s����s��9ɺ���T���hm ��ʚ��
�SY�s����sizNr6{N�='*�=�r��Di��T���hm ���:{N�.@�9�5='Z�=����Dk��T���hm ���:{N�.@�9�5='Z�=����Dk��T���hm ���:{N�.@�9�5='Z�=����Dk��T��s��p�sezNR6�{N�Lω�rϩ��9��@�9�5='Z�=��Ξ���{NeMω�rϩ��9��@�9�5='Z�=��Ξ���{NeMω�rϩ��9��@�9�5='Z�=��^zN��@�9�5='Z�=����Dk��T��s��p�s��9I����T���hm ��ʚ��
�SY�s����s��9ɺ���T���hm ��ʚ��
�SY�s����s��9ɺ���T���hm ��ʚ��
�SY�s����s��9ɺ���T���hm ��J:zNt�{N�Lω�r�i���$��SY�s����s*kzN�6�{NeMω�r�i���$��SY�s����s*kzN�6�{NeMω�r�i���$��SY�s����s*kzN�6�{NeMω�r�i���$�ĞSIGω��qϩ��9Q�@�9�5='Z�=��Ξ���{NeMω�rϩ��9��@�9�5='Z�=��^zN��@�9�5='Z�=����Dk��T���hm ���:{N�.@�9�5='Z�=����Dk��T���hm ��F�����ÞS)Gω��qϩ��9Q�@�9�5='Z�=��Ξ���{��:���x��s~��q�y|��<�_O�7�h{~�~������g]�9ǡ�I��0j����׻�����?���~�oߜ����������]^�NzQ]��=����v>���1]u�x���<�^^�]�u?{��������QZ��7�
<���^�'�����^������5gѺ��cxx����
k��cx�����goXx`�rVּ�
�wC�|74Y �ZY�nh�6��
��y74Z��V��nht��
m����$]��nheͻ���@~7��fK��
�-e͖�Z�[�:�Ⱥ�yK@Y�%��򖀲fK��
�-e͖�Z�[�:�Ⱥ�yK@Y�%��򖀲fK��
�-e͖�Z�[�:�Ⱥ�yK@Y�%��▀��-t���3[(m o	�� ��-e͖�Z�[ʚ-�6���5[hm o	�� ��-e͖�Z�[ʚ-�6���5[hm o	�� ��-e͖�Z�[ʚ-�6���5[hm o	�� ��-�ܷ���[J8��X8�P�l	����% ��-��@�P�l	����%���@kyK@Y�%��򖀱�-�.@�P�l	����%���@kyK@Y�%��򖀱�-�.@�P�l	����%���@kyK@Y�%��▀�fK����-�[�,o	(g�P�@�P�l	����%`�sK�����5[hm o	(k���@�P�l	����%`�sK�����5[hm o	(k���@�P�l	����%`�sK�����5[hm o	(k���@�Pұ%���ᖀQfK����-�̖�J�[ʚ-�6���5[hm o	�� ��-e͖�Z�[ʚ-�6���5[hm o	�� ��-e͖�Z�[ʚ-�6���5[hm o	�eK��+���5[hm o	(k���@�Pұ%����q�-�.@�P�l	����%���@kyK@Y�%��򖀱�-�.@�P�l	����%���@kyK@Y�%��򖀱�-�.@�P�l	����%���@kyK@Y�%��򖀱�-�.@�P�l	����%��cK����-�̖�J�[�:�Ⱥ�yK@Y�%��򖀲fK��
�-e͖�Z�[�:�Ⱥ�yK@Y�%��򖀲fK��
�-e͖�Z�[�:�Ⱥ�yK@Y�%��򖀲fK��
�-e͖�Z�[�:�Ⱥ�qK@Iǖ�:�[ʙ-�6���5[hm o	�� ��-e͖�Z�[ʚ-�6���5[hm o	�eK��+���5[hm o	(k���@�P�l	����%`�sK�����5[hm o	(k���@�P�l	����%`�� g�pK@)ǖ�*�[ʙ-�6���5[hm o	�� ��-��Ŗ�^dl	|�����E��-��������ƙl	<�-����O���~��S���z���Å����|w��z��_�|��6}�����|z��v����(;w�|8���ҹ��!m�����pg����X_O/o�뻟�am��J˜�0ֹCA��;ʚ
+�6�w(�5;hm �P(kv(��@ޡ��XW �P(kv(��@ޡP��P����C��١@ky��X�Y �P(kv(��@ޡP��P����C��c����
+�;$]��C��١@ky�BY�C�����f��
�
+c�;d]��C��١@ky�BY�C�����f��
�
+c�;d]��C��١@ky�BY�C�����f��
�
+c�;d]��C��١@kq�BI�:�;ʙ
+�6�w(�u�P�u���f��
�
+e�Z�;ʚ
+�6�w(�u�P�u���f��
�
+e�Z�;ʚ
+�6�w(�u�P�u���f��
�
+e�Z�;ʚ
+�6�w(�u�P�u��r�;h��
+%;h,�P(gv(P�@ޡ��XW �P(kv(��@ޡP��P����C��١@ky��X�Y �P(kv(��@ޡP��P����C��١@ky��X�Y �P(kv(��@ޡP��P����C��١@kq��H�CA����R�
+T�w(�3;(m �P(kv(��@ޡ0ֹCA��;ʚ
+�6�w(�5;hm �P(kv(��@ޡ0ֹCA��;ʚ
+�6�w(�5;hm �P(kv(��@ޡ0ֹCA��;ʚ
+�6�w(�5;hm �P(�ء@g�p��(�CA����rf��
�
+e�Z�;ʚ
+�6�w(�u�P�u���f��
�
+e�Z�;ʚ
+�6�w(�u�P�u���f��
�
+e�Z�;ʚ
+�6�w(���C��;ʚ
+�6�w(�5;hm �P(�ء@g�x��8�I �P(kv(��@ޡP��P����C��١@ky��X�Y �P(kv(��@ޡP��P����C��١@ky��X�Y �P(kv(��@ޡP��P����C��١@ky��X�Y �P(kv(��@ܡPұC�����rf��
�
+c�;d]��C��١@ky�BY�C�����f��
�
+c�;d]��C��١@ky�BY�C�����f��
�
+c�;d]��C��١@ky�BY�C�����f��
�
+c�;d]��C��c����
+��J�;ʚ
+�6�w(�u�P�u���f��
�
+e�Z�;ʚ
+�6�w(���C��;ʚ
+�6�w(�5;hm �P(kv(��@ޡ0ֹCA��;ʚ
+�6�w(�5;hm �P(kv(��@ܡ0��P��q�C��c����
+��J�;ʚ
+�6�w(�u�P�u�-+�
+��ء�p����,;��C��v>m��������ء���~�a�w��_���w�|�_N��/_}�|����R�q�K�C/yظ_��q�N������Ɲ�
���YG���b�qgk�qW�4�h]�ظ;�h���@lܝu4�lm 5�N�7��,6�ʙ��wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���ظ;�h���@lܝu4�lm 6�ʚ��wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���Ը;�޸��pظ;�h�Y�@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�ub�qgk�qw�Ѹ���ظ;�h���@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�uB��_w6~�Q��{����a�qgi�q7�ٸ�ub�qgk�qw�Ѹ���ظ;�h���@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�ub�qgk�qw�Ѹ���ظ;�h���@jܕt4��l5�N�7�,6��9w�6wg�;[�����qG����YG���b�qgk�qw�Ѹ���ظ+kw�.@lܝu4�lm 6��:w�6wg�;[�����qG����YG���b�qgk�qwҽqgg�qW�Ѹ��qظ;�h�Y�@lܝu4�lm 6��:w�6weM�������Ɲ�
���YG���b�qgk�qW�4�h]�ظ;�h���@lܝu4�lm 6��:w�6wc��;YW 6��:w�6wg�;[H����;;���r�qG����YG���b�qgk�qw�Ѹ���ظ+kw�.@lܝu4�lm 6��:w�6wg�;[�����qG����YG���b�qgk�qw�Ѹ���ظ+kw�.@lܝu4�lm 5�N�7��,6��9w�6weM�������Ɲ�
���YG���b�qgk�qW�4�h]�ظ;�h���@lܝu4�lm 6��:w�6weM�������Ɲ�
���YG���b�qgk�qW�4�h]�Ը;�޸��pظ;�h�Y�@lܝu4�lm 6�ʚ��wg�;[�����Ɲ�
���YG���b�n��q'�
+���YG���b�qgk�qw�Ѹ���ظ+kw�.@lܝu4�lm 6��:w�6wg�;[H����������)�Ɲ�����9G���b�qgk�qW�4�h]�ظc�-w��~��E��w��o���c���|�����������|����C9si�ϣr���~�����?~���o���-ᅿ^�|z�~[y�+v)+�~���p����E��$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���XV*�(+�Y8.+�3e%J�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����J���J4~�aY����DcḬTΔ�(m ���z)+����T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���XVi�Jr6�J�e%*�e�r��Di��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T�QV��pXVe�JR6��J�LY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��^�J��@.+�5e%Z�e����Dk��T�QV��p\V�,+I����T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��J:�Jt��J�LY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$�IJRIGY���qY��)+Q�@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��^�J��@.+�5e%Z�e����Dk��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T֔�hm ��F�����òR)GY���qY��)+Q�@.+�5e%Z�e��β������NЕ�x�QV~���aYy|�����QV>?}�e�e�8s)+�GY��o^������÷�~������~���������?�޿�ܽn�z�f<��&�r��_����Q~9[
�1[��#�[���V�
�VCY�j����j(kZ
�6�[
c��Y �ʚV�
�VCY�j����j(kZ
�6�[
c��Y �ʹ�h��VC	G����q���i5P�@n5���j�ur���i5��@n5�5�Zȭ����@k��0��j�ur���i5��@n5�5�Zȭ����@k��0��j�ur���i5��@n5�5�Zȭ����@k��0Ҵ�l�J9Z
T�[
�L���r���i5��@n5�u�d]��j(kZ
�6�[
eM���r���i5��@n5�u�d]��j(kZ
�6�[
eM���r���i5��@n5�u�d]��j(kZ
�6�[
eM���b�����@g��0ʴ�l�ʙV�
�VCY�j����j(kZ
�6�[
c��Y �ʚV�
�VCY�j����j(kZ
�6�[
c��Y �ʚV�
�VCY�j����j(kZ
�6�[
a��`]��j(kZ
�6�[
eM���b�����@g��0��j�tr���i5��@n5�5�Zȭ����@k��0��j�ur���i5��@n5�5�Zȭ����@k��0��j�ur���i5��@n5�5�Zȭ����@k��0��j�ur���i5��@l5�t��,�ʙV�
�V�Xg�A�ȭ����@k��Pִhm �ʚV�
�V�Xg�A�ȭ����@k��Pִhm �ʚV�
�V�Xg�A�ȭ����@k��Pִhm �ʚV�
�V�Xg�A������V���VC9�j����j(kZ
�6�[
c��Y �ʚV�
�VCY�j����j(kZ
�6�[
a��`]��j(kZ
�6�[
eM���r���i5��@n5�u�d]��j(kZ
�6�[
eM���r���i5��@l5�4�9���R�V���VC9�j����j(kZ
�6�[
c��Y ��V/2Z�y=l5�/�W�k�����+��̥�x�����d�O�wW������֗�>���k���A�q~=}�+\t��x�ϟ}�?��/�k׸���,K������l����X�O�{i��ް6��:^J��y�Z�o93���3�.@~˙��-ghm ��LY�3�6��r��y�Z�o93���3�.@~˙��-ghm ��LY�3�6��r��y�Z�o93���3�.@~˙��-ghm ��LI�[��Y8~˙r�-g(m ���X�[�Ⱥ��-gʚ�������3e�[���@~˙��-ghm ���Xg9K��嬲��Ek��U֔�hm ��ʚr�
�r�Xg9K��嬲��Ek��U֔�hm ��ʚr�
�r�Xg9K�H�r��,?°�U�Q΢�p\�*g�Y�6��Ya���`]�\�*k�Y�6��YeM9��r9��)g��@.g�u��d]�\�*k�Y�6��YeM9��r9��)g��@.g�u��d]�\�*k�Y�6��YeM9��r9��)g��@,g�4�,9��R�r���rV9S΢��\�*k�Y�6��Yc��,Y ��ʚr�
�rVYS΢��\�*k�Y�6��Yc��,Y ��ʚr�
�rVYS΢��\�*k�Y�6��Yc��,Y ��ʚr�
�rVYS΢��X�*�(g�Y8,g�2�,)��r��Ei��U֔�hm ��ʚr�
�r�Xg9K��嬲��Ek��U֔�hm ��ʚr�
�r�Xg9K��嬲��Ek��U֔�hm ��ʚr�
�rVX/�,XW ��ʚr�
�rVYS΢��X�*�(g�Y8.g�s��$]�\�*k�Y�6��YeM9��r9��)g��@.g�u��d]�\�*k�Y�6��YeM9��r9��)g��@.g�u��d]�\�*k�Y�6��YeM9��r9��)g��@.g�u��d]�\�*k�Y�6�Y%�,:��r��Ei��5�YΒur9��)g��@.g�5�,Z�嬲��Ek��5�YΒur9��)g��@.g�5�,Z�嬲��Ek��5�YΒur9��)g��@.g�5�,Z�嬲��Ek��5�YΒub9����EgḜUΔ�(m ��ʚr�
�r�Xg9K��嬲��Ek��U֔�hm ��ʚr�
�rVX/�,XW ��ʚr�
�rVYS΢��\�*k�Y�6��Yc��,Y ��ʚr�
�rVYS΢��\�*k�Y�6�Y#M9K��a9����EeḜUΔ�(m ��ʚr�
�r�Xg9K����q���Y��(g?\东=��_������[�3���̥�}����۷?�������_����^/h�v��}��tP��bn<��7>.�>_�1�6��1c��Y cʚb�
�bLIG1���q1��)�P�@.ƌucd]�\�)k�1�6��1eM1��r1��)���@.ƌucd]�\�)k�1�6��1eM1��r1��)���@.ƌucd]�\�)k�1�6��1eM1��r1��)���@.ƌucd]�T�)�^���#�1%��Řr�Ci��K1��Ř��Ck�S�chm cʚb�
�b�Xg1F��Ř��Ck�S�chm cʚb�
�b�Xg1F��Ř��Ck�S�chm cʚb�
�b�HS���qX�)�(�PY8.Ɣ3�J�Ř��Ck�3�Y��ur1��)���@.Ɣ5�Z�Ř��Ck�3�Y��ur1��)���@.Ɣ5�Z�Ř��Ck�3�Y��ur1��)���@.Ɣ5�Z�Ř��b���b�(S���q\�)g�1�6��1eM1��r1��)���@.ƌucd]�\�)k�1�6��1eM1��r1��)���@.ƌucd]�\�)k�1�6��1eM1��r1��)���@.Ƅ�R��ur1��)���@.Ɣ5�Z�Ř��b���b�8g1F��Ř��Ck�S�chm cʚb�
�b�Xg1F��Ř��Ck�S�chm cʚb�
�b�Xg1F��Ř��Ck�S�chm cʚb�
�b�Xg1F��Ř��Ck�S�Q���p\�)g�1�6��1c��Y cʚb�
�bLYS����\�)k�1�6��1c��Y cʚb�
�bLYS����\�)k�1�6��1c��Y cʚb�
�bLYS����\�)k�1�6��1c��Y cJ:�1t��1�L1��r1��)���@.ƌucd]�\�)k�1�6��1eM1��r1��)���@.Ƅ�R��ur1��)���@.Ɣ5�Z�Ř��Ck�3�Y��ur1��)���@.Ɣ5�Z�Ř��Ck�3�c�lcJ9�1T��1�L1��r1��)���@.ƌucd]�\��N�Ë�b��E�������Z�������q�R�=�w-�������o�^���9?}�G������.��b�ۯ�����y6c�|܌}�4chm 7c�:�1�.@nƔ5�Z�͘��f���fL9ӌ���܌�l�Ⱥ��S�4chm 7cʚf�
�fLYӌ���܌�l�Ⱥ��S�4chm 7cʚf�
�fLYӌ���܌�l�Ⱥ��S�4chm 7cʚf�
�fLYӌ���܌�l�Ⱥ��SνC�G6cJ8�14��1�L3��r3&��f�+��1eM3��r3��i���@nƔ5�Z�͘��f����1eM3��r3��i���@nƔ5�Z�͘��f����1eM3��r3��i���@nƔ5�Z�͘��#g�S�ь��p܌)g�1�6��1eM3��r3f��#��fLYӌ���܌)k�1�6��1eM3��r3f��#��fLYӌ���܌)k�1�6��1eM3��r3f��#��fLYӌ���܌)k�1�6�1%�:�͘Q�#e�S�4c(m 7cʚf�
�fLYӌ���܌�l�Ⱥ��S�4chm 7cʚf�
�fLYӌ���܌�l�Ⱥ��S�4chm 7cʚf�
�fLYӌ���܌	��
+�fLYӌ���܌)k�1�6�1%�:�͘q�f����1eM3��r3��i���@nƔ5�Z�͘��f����1eM3��r3��i���@nƔ5�Z�͘��f����1eM3��r3��i���@nƔ5�Z�͘��f����1eM3��b3���Cg�S�4c(m 7c�:�1�.@nƔ5�Z�͘��Ck�S�4chm 7c�:�1�.@nƔ5�Z�͘��Ck�S�4chm 7c�:�1�.@nƔ5�Z�͘��Ck�S�4chm 7c�:�1�.@lƔt4c�,7cʙf�
�fLYӌ���܌�l�Ⱥ��S�4chm 7cʚf�
�fLYӌ���܌	��
+�fLYӌ���܌)k�1�6��1eM3��r3f��#��fLYӌ���܌)k�1�6��1eM3��b3f�i���8lƔr4c�,7cʙf�
�fLYӌ���܌�l�Ⱥ��;��\3��؇�7c��+�����e���q�Ҍ=h�������߽�b�ﯿ�����?��
+�������C.7��ֱ��磂lF)�`F)�G)�/Q
+Z�Q���(����eM���r����R��@�R�5Q
+Z�Q���(����eM���r����R��@�R�5Q
+Z�Q���(�����ܣ4~�a���#JAc�8JQ�D)(m G)�z�R��9JQ�D)hm G)ʚ(�
�(EY������RȺ�9JQ�D)hm G)ʚ(�
�(EY������RȺ�9JQ�D)hm G)ʚ(�
�(EY�����i�r6��Q
+*�Q�r&JAi9JQ�D)hm G)�:��.@�R�5Q
+Z�Q��&JAk9JQ�D)hm G)�:��.@�R�5Q
+Z�Q��&JAk9JQ�D)hm G)�:��.@�R�5Q
+Z�Q��&JAk1JQ����p�e�R6���L���r����R��@�R�5Q
+Z�Q���(����eM���r����R��@�R�5Q
+Z�Q���(����eM���r����R��@�R�5Q
+Z�Q��^���@�R�5Q
+Z�Q��&JAk1JQ����p��RH��9JQ�D)hm G)ʚ(�
�(EY������RȺ�9JQ�D)hm G)ʚ(�
�(EY������RȺ�9JQ�D)hm G)ʚ(�
�(EY������RȺ�9JQ�D)hm F)J:�t���L���r�b�3J!��(EY�����(k��6��eM���r�b�3J!��(EY�����(k��6��eM���r�b�3J!��(EY�����(k��6��eM���r�b�3J!��(EIG����q����RP�@�R�5Q
+Z�Q���(����eM���r����R��@�R�5Q
+Z�Q��^���@�R�5Q
+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�83]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)���Y83]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���Aub���U��ڃX�8u�>�� �>N]��=���RS��:��q�}X�A�}��jV{k��ڇ���G���A���q��a���q�}�A�}��jV{k���Aub���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��Atb���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"ub`���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.�����Ȩ��"ur��@�� @
+]�5��2S�!ڃ\�u@��A.�����H�)�P�A.�����Ȩ��"ur��@�� @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
+ T{� ���B���2h
+ 2{ E�ɚ�H�)��A.�����Ȩ��"urt=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��ĈB׉4k�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��:�ĈB׉4k�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&ur����ɨ� ��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����Ɉ� ��דSvoo��������8����^�?�=��5����������߇���{��}��]�gνn�h��������_�z�o7�<������t-���X������Ѯc���(��1�Q�R�ڃ+5Q0�=�Q�BW�f�ql�:9
+Vj�`T{��`�&
+F�9
+Vj�`T{��`��(��1�Q�R�ڃ+5Q0�=�Q�R�ڃuG���A����(��(X���Q�A����(��(ب;
+&ur��D��� F�
+]Q0�5�Q�2#ڃuG���A����(��(X���Q�A����(��(ب;
+&ur��D��� G�JM�jr��D��� G�F�Q0�c��`�&
+F�9
+Vj�`T{��`�&
+F�9
+6ꎂI�+��x9�Q�W�b�q��D��� G�B=G���A����(��(X���Q�A����(��(ب;
+&ur��D��� G�JM�jr��D��� G�F�Q0�c��`�&
+F�9
+Vj�`T{��`�&
+F�1
+6h�`2{�`E�(ɚ�(X����A����(��(ب;
+&ur��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{��`�&
+F�9
+6ꎂI�+5Q0�=�Q�R�ڃ+5Q0�=�Q�P�Q0�s��`�&
+F�9
+Vj�`T{�`��(͚�(ؘ;
+&tr��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�&qDub��ԕ8�ڃ�8:��8�Ys�8:s%��� &�JM����ѩ+qd�1qt�JY�AL��GV{G�&qDub��ԕ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��������ڨ;�&ub|��_�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]������ ��
+]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�땚���ި��'uR]��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�땚���ި��'ur]������ ��JM]�jb]��UףYsX�2u=�=�u�2S�#ڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚���ި��'ur]������ ��JM]�jr]������ ��B=����A�땚���^���Q�A����z4k��zc�1�u�RSףڃ\�+5u=�=�u�RSףڃ\�u����A�땚���^���Q�A�땚���ި��'ur]������ ��JM]�jr]������ ��F�u=�c��z���G���W��Ѭ9�땙���ި��'ur]������ ��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��������Ϩ;�#ur������ �
+]��5��2�!ڃ�u���A��������O���P�A��������Ϩ;�#ur������ �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�B׻Mh��̼ۤۄ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$ur���� ��JM�jr���� ��Fݽ#�c�{G��wD��wTjzGT{{G���͚��ѐ���9�������Q��Q�A�������Ѩ�w$ur���� ��JM�jr���� ��Fݽ#�c�{G��wD��wTjzGT{�{G��wD��w�wur���� ��JM�jb���;�Ys�;s����A�������Q��Q�A�������Ѩ�w$ur���� ��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@�rO3(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�&pGub�����ڃ�;u�� �N]�;�=���R��:)pw�)pg��0pw�
+��Aܝ�wV{w�&pGub�����ڃ�;u�� �N]�;�=���Qw�N���ݩ+pg�1pw�
+�Y�Aܝ�wV{w�&pGub�����ڃ�;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�,������Ҩ;�$urf��d��� f�
+]�%�5Ǚ�2�Y"ڃ�Yug���A�,������R��,Q�A�,������Ҩ;�$urf��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�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��Ne��N/�0�T��;Q�9�;�����S���9�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ƝM�If�aܩ�w"Ysw*3q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{�N���͚øӐ�;��9�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{��N�&�D�9��9�urܩ�ĝ�� ǝJM܉jbܩ�w�Yswsǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝ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�����ܨ;'ur��$�� '�JM�jr��$�� '�F�	8�c�pe�p/�0W�J�Q�9N�����\���9�	�R���ڃ��+5	8�=�	�R���ڃ��u'ऎAN�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� &�MNf�a�ȕ�#Ys��+3	8�=�	�R���ڃ��u'ऎAN�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� '�F�	8�c�p�&G�9WjpT{p��͚�ܐI���9N�����\�I�Q�AN�����ܨ;'ur��$�� '�JM�jr��$�� '�F�	8�c�p�&G�9WjpT{�p�&G�9�9ur��$�� '�JM�jb�Е��Ys��s'���AN�����\�I�Q�AN�����ܨ;'ur��$�� '�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����Ϩ��#ur����x�� �xJM��jr����x�� �xF�=�c�{<���C���S���Ь9����Ϩ��#ur����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
 endobj
-1066 0 obj <<
+1114 0 obj <<
 /Type /Page
-/Contents 1067 0 R
-/Resources 1065 0 R
+/Contents 1115 0 R
+/Resources 1113 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1058 0 R
-/Annots [ 1069 0 R 1072 0 R 1073 0 R 1074 0 R 1075 0 R 1076 0 R 1077 0 R 1078 0 R 1079 0 R 1080 0 R 1081 0 R 1082 0 R 1083 0 R 1084 0 R 1085 0 R 1086 0 R 1087 0 R 1088 0 R 1089 0 R 1090 0 R 1091 0 R 1092 0 R 1093 0 R 1094 0 R 1095 0 R 1096 0 R 1097 0 R 1098 0 R 1099 0 R 1100 0 R 1101 0 R 1102 0 R 1103 0 R 1104 0 R 1105 0 R 1106 0 R 1107 0 R 1108 0 R 1109 0 R 1110 0 R 1111 0 R 1112 0 R 1113 0 R 1114 0 R 1115 0 R 1116 0 R 1117 0 R 1118 0 R 1119 0 R 1120 0 R 1121 0 R 1122 0 R 1123 0 R 1124 0 R 1125 0 R 1126 0 R 1127 0 R 1128 0 R 1129 0 R 1130 0 R 1131 0 R 1132 0 R 1133 0 R 1134 0 R 1135 0 R 1136 0 R 1137 0 R 1138 0 R 1139 0 R 1140 0 R 1141 0 R 1142 0 R 1143 0 R 1144 0 R 1145 0 R 1146 0 R 1147 0 R 1148 0 R 1149 0 R 1150 0 R 1151 0 R 1152 0 R 1153 0 R 1154 0 R 1155 0 R 1156 0 R 1157 0 R 1158 0 R ]
+/Parent 1106 0 R
+/Annots [ 1117 0 R 1120 0 R 1121 0 R 1122 0 R 1123 0 R 1124 0 R 1125 0 R 1126 0 R 1127 0 R 1128 0 R 1129 0 R 1130 0 R 1131 0 R 1132 0 R 1133 0 R 1134 0 R 1135 0 R 1136 0 R 1137 0 R 1138 0 R 1139 0 R 1140 0 R 1141 0 R 1142 0 R 1143 0 R 1144 0 R 1145 0 R 1146 0 R 1147 0 R 1148 0 R 1149 0 R 1150 0 R 1151 0 R 1152 0 R 1153 0 R 1154 0 R 1155 0 R 1156 0 R 1157 0 R 1158 0 R 1159 0 R 1160 0 R 1161 0 R 1162 0 R 1163 0 R 1164 0 R 1165 0 R 1166 0 R 1167 0 R 1168 0 R 1169 0 R 1170 0 R 1171 0 R 1172 0 R 1173 0 R 1174 0 R 1175 0 R 1176 0 R 1177 0 R 1178 0 R 1179 0 R 1180 0 R 1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R 1186 0 R 1187 0 R 1188 0 R 1189 0 R 1190 0 R 1191 0 R 1192 0 R 1193 0 R 1194 0 R 1195 0 R 1196 0 R 1197 0 R 1198 0 R 1199 0 R 1200 0 R 1201 0 R 1202 0 R 1203 0 R 1204 0 R 1205 0 R 1206 0 R 1207 0 R 1208 0 R ]
 >> endobj
-1069 0 obj <<
+1117 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [71.731 679.836 158.096 686.82]
 /Subtype /Link
 /A << /S /GoTo /D (about) >>
 >> endobj
-1072 0 obj <<
+1120 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 679.836 537.983 686.82]
 /Subtype /Link
 /A << /S /GoTo /D (about) >>
 >> endobj
-1073 0 obj <<
+1121 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 662.456 203.466 671.367]
 /Subtype /Link
 /A << /S /GoTo /D (copyright) >>
 >> endobj
-1074 0 obj <<
+1122 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 662.456 537.983 671.367]
 /Subtype /Link
 /A << /S /GoTo /D (copyright) >>
 >> endobj
-1075 0 obj <<
+1123 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 651.562 156.791 658.416]
 /Subtype /Link
 /A << /S /GoTo /D (disclaimer) >>
 >> endobj
-1076 0 obj <<
+1124 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 651.562 537.983 658.416]
 /Subtype /Link
 /A << /S /GoTo /D (disclaimer) >>
 >> endobj
-1077 0 obj <<
+1125 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 638.61 168.438 645.465]
 /Subtype /Link
 /A << /S /GoTo /D (newversions) >>
 >> endobj
-1078 0 obj <<
+1126 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 638.61 537.983 645.465]
 /Subtype /Link
 /A << /S /GoTo /D (newversions) >>
 >> endobj
-1079 0 obj <<
+1127 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 625.659 141.858 632.513]
 /Subtype /Link
 /A << /S /GoTo /D (credits) >>
 >> endobj
-1080 0 obj <<
+1128 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 625.659 537.983 632.513]
 /Subtype /Link
 /A << /S /GoTo /D (credits) >>
 >> endobj
-1081 0 obj <<
+1129 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 612.708 206.894 619.562]
 /Subtype /Link
 /A << /S /GoTo /D (conventions) >>
 >> endobj
-1082 0 obj <<
+1130 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 612.708 537.983 619.562]
 /Subtype /Link
 /A << /S /GoTo /D (conventions) >>
 >> endobj
-1083 0 obj <<
+1131 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [71.731 595.442 159.481 604.329]
 /Subtype /Link
 /A << /S /GoTo /D (installing-bugzilla) >>
 >> endobj
-1084 0 obj <<
+1132 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 595.442 537.983 604.329]
 /Subtype /Link
 /A << /S /GoTo /D (installing-bugzilla) >>
 >> endobj
-1085 0 obj <<
+1133 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 582.023 157.907 588.877]
 /Subtype /Link
 /A << /S /GoTo /D (installation) >>
 >> endobj
-1086 0 obj <<
+1134 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 582.023 537.983 588.877]
 /Subtype /Link
 /A << /S /GoTo /D (installation) >>
 >> endobj
-1087 0 obj <<
+1135 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 567.014 168.428 575.925]
+/Rect [119.552 569.071 160.508 575.925]
 /Subtype /Link
-/A << /S /GoTo /D (configuration) >>
+/A << /S /GoTo /D (install-perl) >>
 >> endobj
-1088 0 obj <<
+1136 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [533.001 567.014 537.983 575.925]
+/Rect [533.001 569.071 537.983 575.925]
 /Subtype /Link
-/A << /S /GoTo /D (configuration) >>
+/A << /S /GoTo /D (install-perl) >>
 >> endobj
-1089 0 obj <<
+1137 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 554.062 250.898 562.974]
+/Rect [119.552 554.062 211.686 562.974]
 /Subtype /Link
-/A << /S /GoTo /D (extraconfig) >>
+/A << /S /GoTo /D (install-database) >>
 >> endobj
-1090 0 obj <<
+1138 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 554.062 537.983 562.974]
+/Rect [533.001 554.062 537.983 562.974]
 /Subtype /Link
-/A << /S /GoTo /D (extraconfig) >>
+/A << /S /GoTo /D (install-database) >>
 >> endobj
-1091 0 obj <<
+1139 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 541.111 234.28 550.022]
+/Rect [143.462 541.111 208.498 550.022]
 /Subtype /Link
-/A << /S /GoTo /D (os-specific) >>
+/A << /S /GoTo /D (install-mysql) >>
 >> endobj
-1092 0 obj <<
+1140 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 541.111 537.983 550.022]
+/Rect [533.001 541.111 537.983 550.022]
 /Subtype /Link
-/A << /S /GoTo /D (os-specific) >>
+/A << /S /GoTo /D (install-mysql) >>
 >> endobj
-1093 0 obj <<
+1141 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 528.533 254.464 537.071]
+/Rect [143.462 528.16 224.547 537.071]
 /Subtype /Link
-/A << /S /GoTo /D (nonroot) >>
+/A << /S /GoTo /D (install-pg) >>
 >> endobj
-1094 0 obj <<
+1142 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 528.533 537.983 537.071]
+/Rect [533.001 528.16 537.983 537.071]
 /Subtype /Link
-/A << /S /GoTo /D (nonroot) >>
+/A << /S /GoTo /D (install-pg) >>
 >> endobj
-1095 0 obj <<
+1143 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 512.952 180.502 521.838]
+/Rect [119.552 517.265 190.814 524.12]
 /Subtype /Link
-/A << /S /GoTo /D (administration) >>
+/A << /S /GoTo /D (install-webserver) >>
 >> endobj
-1096 0 obj <<
+1144 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 512.952 537.983 521.838]
+/Rect [533.001 517.265 537.983 524.12]
 /Subtype /Link
-/A << /S /GoTo /D (administration) >>
+/A << /S /GoTo /D (install-webserver) >>
 >> endobj
-1097 0 obj <<
+1145 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 497.475 204.681 506.386]
+/Rect [119.552 502.257 178.221 511.168]
 /Subtype /Link
-/A << /S /GoTo /D (parameters) >>
+/A << /S /GoTo /D (install-bzfiles) >>
 >> endobj
-1098 0 obj <<
+1146 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 497.475 537.983 506.386]
+/Rect [533.001 502.257 537.983 511.168]
 /Subtype /Link
-/A << /S /GoTo /D (parameters) >>
+/A << /S /GoTo /D (install-bzfiles) >>
 >> endobj
-1099 0 obj <<
+1147 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 486.581 194.709 493.435]
+/Rect [119.552 491.363 197.867 498.217]
 /Subtype /Link
-/A << /S /GoTo /D (useradmin) >>
+/A << /S /GoTo /D (install-perlmodules) >>
 >> endobj
-1100 0 obj <<
+1148 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 486.581 537.983 493.435]
+/Rect [533.001 491.363 537.983 498.217]
 /Subtype /Link
-/A << /S /GoTo /D (useradmin) >>
+/A << /S /GoTo /D (install-perlmodules) >>
 >> endobj
-1101 0 obj <<
+1149 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 473.629 147.945 480.483]
+/Rect [143.462 476.354 226.769 485.265]
 /Subtype /Link
-/A << /S /GoTo /D (products) >>
+/A << /S /GoTo /D (install-modules-dbd-mysql) >>
 >> endobj
-1102 0 obj <<
+1150 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 473.629 537.983 480.483]
+/Rect [533.001 476.354 537.983 485.265]
 /Subtype /Link
-/A << /S /GoTo /D (products) >>
+/A << /S /GoTo /D (install-modules-dbd-mysql) >>
 >> endobj
-1103 0 obj <<
+1151 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 458.62 163.447 467.532]
+/Rect [143.462 463.402 270.365 472.314]
 /Subtype /Link
-/A << /S /GoTo /D (components) >>
+/A << /S /GoTo /D (install-modules-template) >>
 >> endobj
-1104 0 obj <<
+1152 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 458.62 537.983 467.532]
+/Rect [533.001 463.402 537.983 472.314]
 /Subtype /Link
-/A << /S /GoTo /D (components) >>
+/A << /S /GoTo /D (install-modules-template) >>
 >> endobj
-1105 0 obj <<
+1153 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 447.726 147.387 454.58]
+/Rect [143.462 450.825 216.787 459.362]
 /Subtype /Link
-/A << /S /GoTo /D (versions) >>
+/A << /S /GoTo /D (install-modules-gd) >>
 >> endobj
-1106 0 obj <<
+1154 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 447.726 537.983 454.58]
+/Rect [533.001 450.825 537.983 459.362]
 /Subtype /Link
-/A << /S /GoTo /D (versions) >>
+/A << /S /GoTo /D (install-modules-gd) >>
 >> endobj
-1107 0 obj <<
+1155 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 434.775 156.801 441.629]
+/Rect [143.462 437.873 244.462 446.411]
 /Subtype /Link
-/A << /S /GoTo /D (milestones) >>
+/A << /S /GoTo /D (install-modules-chart-base) >>
 >> endobj
-1108 0 obj <<
+1156 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 434.775 537.983 441.629]
+/Rect [533.001 437.873 537.983 446.411]
 /Subtype /Link
-/A << /S /GoTo /D (milestones) >>
+/A << /S /GoTo /D (install-modules-chart-base) >>
 >> endobj
-1109 0 obj <<
+1157 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 419.766 134.665 428.678]
+/Rect [143.462 424.548 244.024 433.46]
 /Subtype /Link
-/A << /S /GoTo /D (flags-overview) >>
+/A << /S /GoTo /D (install-modules-gd-graph) >>
 >> endobj
-1110 0 obj <<
+1158 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 419.766 537.983 428.678]
+/Rect [533.001 424.548 537.983 433.46]
 /Subtype /Link
-/A << /S /GoTo /D (flags-overview) >>
+/A << /S /GoTo /D (install-modules-gd-graph) >>
 >> endobj
-1111 0 obj <<
+1159 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 406.815 139.467 415.726]
+/Rect [143.462 411.597 264.776 420.508]
 /Subtype /Link
-/A << /S /GoTo /D (voting) >>
+/A << /S /GoTo /D (install-modules-gd-text-align) >>
 >> endobj
-1112 0 obj <<
+1160 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 406.815 537.983 415.726]
+/Rect [533.001 411.597 537.983 420.508]
 /Subtype /Link
-/A << /S /GoTo /D (voting) >>
+/A << /S /GoTo /D (install-modules-gd-text-align) >>
 >> endobj
-1113 0 obj <<
+1161 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 393.863 136.876 402.775]
+/Rect [143.462 398.645 251.626 407.557]
 /Subtype /Link
-/A << /S /GoTo /D (quips) >>
+/A << /S /GoTo /D (install-modules-xml-parser) >>
 >> endobj
-1114 0 obj <<
+1162 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 393.863 537.983 402.775]
+/Rect [533.001 398.645 537.983 407.557]
 /Subtype /Link
-/A << /S /GoTo /D (quips) >>
+/A << /S /GoTo /D (install-modules-xml-parser) >>
 >> endobj
-1115 0 obj <<
+1163 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 380.912 227.905 389.823]
+/Rect [143.462 385.694 256.607 394.605]
 /Subtype /Link
-/A << /S /GoTo /D (groups) >>
+/A << /S /GoTo /D (install-modules-mime-parser) >>
 >> endobj
-1116 0 obj <<
+1164 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 380.912 537.983 389.823]
+/Rect [533.001 385.694 537.983 394.605]
 /Subtype /Link
-/A << /S /GoTo /D (groups) >>
+/A << /S /GoTo /D (install-modules-mime-parser) >>
 >> endobj
-1117 0 obj <<
+1165 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 367.96 229.309 376.872]
+/Rect [143.462 373.116 255.093 381.654]
 /Subtype /Link
-/A << /S /GoTo /D (upgrading) >>
+/A << /S /GoTo /D (install-modules-patchreader) >>
 >> endobj
-1118 0 obj <<
+1166 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 367.96 537.983 376.872]
+/Rect [533.001 373.116 537.983 381.654]
 /Subtype /Link
-/A << /S /GoTo /D (upgrading) >>
+/A << /S /GoTo /D (install-modules-patchreader) >>
 >> endobj
-1119 0 obj <<
+1167 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 352.752 154.48 361.639]
+/Rect [119.552 359.791 256.338 368.702]
 /Subtype /Link
-/A << /S /GoTo /D (security) >>
+/A << /S /GoTo /D (install-MTA) >>
 >> endobj
-1120 0 obj <<
+1168 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 352.752 537.983 361.639]
+/Rect [533.001 359.791 537.983 368.702]
 /Subtype /Link
-/A << /S /GoTo /D (security) >>
+/A << /S /GoTo /D (install-MTA) >>
 >> endobj
-1121 0 obj <<
+1169 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 337.275 184.746 346.187]
+/Rect [95.641 346.84 168.428 355.751]
 /Subtype /Link
-/A << /S /GoTo /D (security-os) >>
+/A << /S /GoTo /D (configuration) >>
 >> endobj
-1122 0 obj <<
+1170 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 337.275 537.983 346.187]
+/Rect [533.001 346.84 537.983 355.751]
 /Subtype /Link
-/A << /S /GoTo /D (security-os) >>
+/A << /S /GoTo /D (configuration) >>
 >> endobj
-1123 0 obj <<
+1171 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 324.324 145.733 333.235]
+/Rect [119.552 333.888 188.732 342.8]
 /Subtype /Link
-/A << /S /GoTo /D (security-mysql) >>
+/A << /S /GoTo /D (localconfig) >>
 >> endobj
-1124 0 obj <<
+1172 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 324.324 537.983 333.235]
+/Rect [533.001 333.888 537.983 342.8]
 /Subtype /Link
-/A << /S /GoTo /D (security-mysql) >>
+/A << /S /GoTo /D (localconfig) >>
 >> endobj
-1125 0 obj <<
+1173 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 313.43 155.277 320.284]
+/Rect [119.552 322.994 209.314 329.848]
 /Subtype /Link
-/A << /S /GoTo /D (security-webserver) >>
+/A << /S /GoTo /D (database-engine) >>
 >> endobj
-1126 0 obj <<
+1174 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 313.43 537.983 320.284]
+/Rect [528.02 322.994 537.983 329.848]
 /Subtype /Link
-/A << /S /GoTo /D (security-webserver) >>
+/A << /S /GoTo /D (database-engine) >>
 >> endobj
-1127 0 obj <<
+1175 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 298.421 146.839 307.333]
+/Rect [143.462 307.985 208.498 316.897]
 /Subtype /Link
-/A << /S /GoTo /D (security-bugzilla) >>
+/A << /S /GoTo /D (mysql) >>
 >> endobj
-1128 0 obj <<
+1176 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 298.421 537.983 307.333]
+/Rect [528.02 307.985 537.983 316.897]
 /Subtype /Link
-/A << /S /GoTo /D (security-bugzilla) >>
+/A << /S /GoTo /D (mysql) >>
 >> endobj
-1129 0 obj <<
+1177 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 283.213 172.203 292.1]
+/Rect [143.462 295.034 224.547 303.945]
 /Subtype /Link
-/A << /S /GoTo /D (customization) >>
+/A << /S /GoTo /D (postgresql) >>
 >> endobj
-1130 0 obj <<
+1178 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 283.213 537.983 292.1]
+/Rect [528.02 295.034 537.983 303.945]
 /Subtype /Link
-/A << /S /GoTo /D (customization) >>
+/A << /S /GoTo /D (postgresql) >>
 >> endobj
-1131 0 obj <<
+1179 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 267.736 210.619 276.648]
+/Rect [119.552 282.082 198.963 290.994]
 /Subtype /Link
-/A << /S /GoTo /D (cust-templates) >>
+/A << /S /GoTo /D (521) >>
 >> endobj
-1132 0 obj <<
+1180 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 267.736 537.983 276.648]
+/Rect [528.02 282.082 537.983 290.994]
 /Subtype /Link
-/A << /S /GoTo /D (cust-templates) >>
+/A << /S /GoTo /D (521) >>
 >> endobj
-1133 0 obj <<
+1181 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 254.785 178.51 263.696]
+/Rect [119.552 271.188 189.15 278.042]
 /Subtype /Link
-/A << /S /GoTo /D (cust-hooks) >>
+/A << /S /GoTo /D (http) >>
 >> endobj
-1134 0 obj <<
+1182 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 254.785 537.983 263.696]
+/Rect [528.02 271.188 537.983 278.042]
 /Subtype /Link
-/A << /S /GoTo /D (cust-hooks) >>
+/A << /S /GoTo /D (http) >>
 >> endobj
-1135 0 obj <<
+1183 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 241.833 261.398 250.745]
+/Rect [143.462 256.18 229.24 265.091]
 /Subtype /Link
-/A << /S /GoTo /D (cust-change-permissions) >>
+/A << /S /GoTo /D (http-apache) >>
 >> endobj
-1136 0 obj <<
+1184 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 241.833 537.983 250.745]
+/Rect [528.02 256.18 537.983 265.091]
 /Subtype /Link
-/A << /S /GoTo /D (cust-change-permissions) >>
+/A << /S /GoTo /D (http-apache) >>
 >> endobj
-1137 0 obj <<
+1185 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 228.882 246.206 237.793]
+/Rect [143.462 245.285 334.932 252.14]
 /Subtype /Link
-/A << /S /GoTo /D (dbmodify) >>
+/A << /S /GoTo /D (http-iis) >>
 >> endobj
-1138 0 obj <<
+1186 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 228.882 537.983 237.793]
+/Rect [528.02 245.285 537.983 252.14]
 /Subtype /Link
-/A << /S /GoTo /D (dbmodify) >>
+/A << /S /GoTo /D (http-iis) >>
 >> endobj
-1139 0 obj <<
+1187 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 215.931 272.736 224.842]
+/Rect [143.462 232.334 224.109 239.188]
 /Subtype /Link
-/A << /S /GoTo /D (dbdoc) >>
+/A << /S /GoTo /D (http-aol) >>
 >> endobj
-1140 0 obj <<
+1188 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 215.931 537.983 224.842]
+/Rect [528.02 232.334 537.983 239.188]
 /Subtype /Link
-/A << /S /GoTo /D (dbdoc) >>
+/A << /S /GoTo /D (http-aol) >>
 >> endobj
-1141 0 obj <<
+1189 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 202.979 286.315 211.89]
+/Rect [119.552 217.325 178.221 226.237]
 /Subtype /Link
-/A << /S /GoTo /D (integration) >>
+/A << /S /GoTo /D (install-config-bugzilla) >>
 >> endobj
-1142 0 obj <<
+1190 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 202.979 537.983 211.89]
+/Rect [528.02 217.325 537.983 226.237]
 /Subtype /Link
-/A << /S /GoTo /D (integration) >>
+/A << /S /GoTo /D (install-config-bugzilla) >>
 >> endobj
-1143 0 obj <<
+1191 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 187.771 143.421 196.658]
+/Rect [95.641 204.374 250.898 213.285]
 /Subtype /Link
-/A << /S /GoTo /D (using) >>
+/A << /S /GoTo /D (extraconfig) >>
 >> endobj
-1144 0 obj <<
+1192 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 187.771 537.983 196.658]
+/Rect [528.02 204.374 537.983 213.285]
 /Subtype /Link
-/A << /S /GoTo /D (using) >>
+/A << /S /GoTo /D (extraconfig) >>
 >> endobj
-1145 0 obj <<
+1193 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 174.351 162.331 181.206]
+/Rect [119.552 191.422 192.328 200.334]
 /Subtype /Link
-/A << /S /GoTo /D (using-intro) >>
+/A << /S /GoTo /D (645) >>
 >> endobj
-1146 0 obj <<
+1194 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 174.351 537.983 181.206]
+/Rect [528.02 191.422 537.983 200.334]
 /Subtype /Link
-/A << /S /GoTo /D (using-intro) >>
+/A << /S /GoTo /D (645) >>
 >> endobj
-1147 0 obj <<
+1195 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 159.343 218.489 168.254]
+/Rect [119.552 178.471 222.605 187.382]
 /Subtype /Link
-/A << /S /GoTo /D (myaccount) >>
+/A << /S /GoTo /D (658) >>
 >> endobj
-1148 0 obj <<
+1196 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 159.343 537.983 168.254]
+/Rect [528.02 178.471 537.983 187.382]
 /Subtype /Link
-/A << /S /GoTo /D (myaccount) >>
+/A << /S /GoTo /D (658) >>
 >> endobj
-1149 0 obj <<
+1197 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 146.391 186.958 155.303]
+/Rect [119.552 165.52 219.726 174.431]
 /Subtype /Link
-/A << /S /GoTo /D (bug_page) >>
+/A << /S /GoTo /D (installation-whining-cron) >>
 >> endobj
-1150 0 obj <<
+1198 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 146.391 537.983 155.303]
+/Rect [528.02 165.52 537.983 174.431]
 /Subtype /Link
-/A << /S /GoTo /D (bug_page) >>
+/A << /S /GoTo /D (installation-whining-cron) >>
 >> endobj
-1151 0 obj <<
+1199 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 133.44 192.209 142.351]
+/Rect [119.552 152.568 179.327 161.48]
 /Subtype /Link
-/A << /S /GoTo /D (lifecycle) >>
+/A << /S /GoTo /D (installation-whining) >>
 >> endobj
-1152 0 obj <<
+1200 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 133.44 537.983 142.351]
+/Rect [528.02 152.568 537.983 161.48]
 /Subtype /Link
-/A << /S /GoTo /D (lifecycle) >>
+/A << /S /GoTo /D (installation-whining) >>
 >> endobj
-1153 0 obj <<
+1201 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 120.488 189.997 129.4]
+/Rect [119.552 141.674 197.409 148.528]
 /Subtype /Link
-/A << /S /GoTo /D (query) >>
+/A << /S /GoTo /D (patch-viewer) >>
 >> endobj
-1154 0 obj <<
+1202 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 120.488 537.983 129.4]
+/Rect [528.02 141.674 537.983 148.528]
 /Subtype /Link
-/A << /S /GoTo /D (query) >>
+/A << /S /GoTo /D (patch-viewer) >>
 >> endobj
-1155 0 obj <<
+1203 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 107.537 151.551 116.448]
+/Rect [119.552 128.723 231.78 135.577]
 /Subtype /Link
-/A << /S /GoTo /D (list) >>
+/A << /S /GoTo /D (bzldap) >>
 >> endobj
-1156 0 obj <<
+1204 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 107.537 537.983 116.448]
+/Rect [528.02 128.723 537.983 135.577]
 /Subtype /Link
-/A << /S /GoTo /D (list) >>
+/A << /S /GoTo /D (bzldap) >>
 >> endobj
-1157 0 obj <<
+1205 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 94.586 159.86 103.497]
+/Rect [119.552 113.714 355.445 122.625]
 /Subtype /Link
-/A << /S /GoTo /D (bugreports) >>
+/A << /S /GoTo /D (apache-addtype) >>
 >> endobj
-1158 0 obj <<
+1206 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 94.586 537.983 103.497]
+/Rect [528.02 113.714 537.983 122.625]
 /Subtype /Link
-/A << /S /GoTo /D (bugreports) >>
+/A << /S /GoTo /D (apache-addtype) >>
+>> 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]
+/Subtype /Link
+/A << /S /GoTo /D (os-specific) >>
+>> 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]
+/Subtype /Link
+/A << /S /GoTo /D (os-specific) >>
 >> endobj
-1068 0 obj <<
-/D [1066 0 R /XYZ 71.731 729.265 null]
+1116 0 obj <<
+/D [1114 0 R /XYZ 71.731 729.265 null]
 >> endobj
 6 0 obj <<
-/D [1066 0 R /XYZ 244.332 703.236 null]
+/D [1114 0 R /XYZ 244.332 703.236 null]
 >> endobj
-1065 0 obj <<
-/Font << /F23 1057 0 R /F32 1071 0 R /F27 1064 0 R /F33 1160 0 R >>
+1113 0 obj <<
+/Font << /F23 1105 0 R /F32 1119 0 R /F27 1112 0 R /F33 1210 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1207 0 obj <<
-/Length 48721     
+1258 0 obj <<
+/Length 58097     
 /Filter /FlateDecode
 >>
 stream
-xڜ�[�\�y��{}���.���;QmMX�,�11�����n��@i�O?kc=�V�����/ܔ��W�E���z2k��f����鼟���uڝ�?���/6?�4�o��_l���4펻���/s8��a��ov���>|�z�N���?o.��g~��_������z����~�g�ȏ���W��2����y�����Wo���y�����i�������տ?}~�������ظ��z7s��ֿ�������������Z=t�r��/�2]N_�uyvE������Zϲ���t9\BuyvE���:�
�k�.Ϯ�8P�a��˳+�>V/�۰���Q6=n@���v�˳+���=ؤ�����2���_����������3��e����|N������s�t������6���<��z�Cu��߆C��YT���:�
�S�.Ϯ�8P�aw������6lSuyvE����v~6ُ9=�j8P���z
�����i�^RuyvE���z�N�_�����m����̬g����RuyvE���:��]�.Ϯ�8P�w��������m؇j=�j8P�aw������6l�8���u~6��<��z�c���6���\=�j8P������gWT���=������2ӿ׳+�>V���p�Գ�v�u~��<��z�@�߆�oˣ+��
��=؇?p������=؅j=�j8P��`���gWT��I�����e:\�s��ꁏ��f�^�׳�v�u?Ω�<��z�@=�χ?������6�s��ꁏ���6B��e���۰�ճ+���m؅?������6lSuyvE����u~6ᏹz��.p��oCh>?�"އ
���W����������?�������f���5z�>p���)U�gWT��p܇����u�_f��̊ꁏ���6�C��e���۰;�����u~��P]�]Q=p����M�.Ϯ��X�m��5��gY��~�:������8�ϩ�<��z�@�L��5T�gWT|���!�7��(�7 �� �����
-iqr~��\�]A=p��o@����]Q=�z�߂]�ֳ�v�u~��ϸzvE���:�
�?�г+��˴�����ꁏ��f:]���Գ�v�u?mӿAԳ+���t:�����u~��=��z�c�4�
�剞e���۰O������6��'zvE���:�
���GWL�{L��� �y�<ʤ�
��
ؤ���
-��8ó=��z�@�L�K�.Ϯ��X�l�cxv�gY��~ڄg'zvE���:�
�T]�]Q=p��oCxv�gWT|�^�a��,�]�@�߆]�3��]Q=p��oCxv�gWT��۰I�������f:\��qz�>p��k�������8Ω�<��z�@=O�?�GWL�{Ln�� �Ѫg���SuyvE���:��]�.Ϯ�8P�w!<;ѳ+�>Vw�۰�z��.p��o���˳+���m�N����<]���<��z�cu�����ǜ�e����������qڟRuyvE���:�
���\=��z�c���P"��e���۰O������6�kZ]1-n@��Axv�gWP|��� ,L�YV���:��ى�]Q=p��]xv�gWT���|I������ʹ�N�,�]�@�M���DϮ�8P�ᘪ˳+���m�N��ꁏ���6�g'z��.p��o�.U�gWT����������6�g'zvE����e3m�„�e���锢�]1-n@�mx|�gWP���tN�������=�O�,�]�@�߅��DϮ�8P�ᐪ˳+���m�O�����f~���,�}�@�߆m�.Ϯ�8P�!<>ѳ+���t�9��]Q=��L��0�gY��n:��'zvE���z�6�T]�]Q=p��oCX�г+�>Vw���gy�M���{p��7 �7 lK�����<>>�mW<�#�����eZ�/w��
m\_���y�>��Y/�?����.��?�_w���G��k-����~Y����w���z|���/�/�+�a��M��v4��Y
-z�z���g)���,����Z��z �RDh�R��q8K��5K���,E��,����Z��z �RD�f)P�q�"Sk��U�Y�L�Y
-V=g)2�f)X�@��H�6KAj���Z��z �Rdj�R��8K��5K���,E�j��.g)2�f)X�@���Ԛ�`�i�"C�Y
-6-g)"S��v�8K��5K���,E��,����Z��z �RD�f)P�q�"Sk��U�Y�L�Y
-V=g)2�f)X�@���T�R���,E��,����Z��z �Rdj�R��8K���@��Y�L�Y
-V=�f)2t��`��p�"3k��Q�Y�H�,�] �Rdj�R��8K��5K���,E��,�����Y
-T�@���Ԛ�`�q�"Sk��U�Y�L�Y
-V=g)"U��v�8K��5K���,E��,����Z��z �RD�f)P�a�"3��R�xF���R�hq8K��5K���,E��Y
-R�@���Ԛ�`�q�"Sk��U�Y�L�Y
-V=g)"U��v�8K��5K���,E��,����Z��z �RD�f)P�q�"Sk��U�Y�L�Y
-V=g)2�f)X�@����@��h�"#�Y
-&-g)2�f)�@���Ԛ�`�q�"R5K�j���Z��z �Rdj�R��8K��5K���,E�j��.g)2�f)X�@���Ԛ�`�q�"Sk��U�Y�H�,�] �Rdj�R��8K��5K���,E�.�lZ�RDd�R �q8K��5K���,E��,����Z��z �RD�f)P�q�"Sk��U�Y�L�Y
-V=g)2�f)X�@���T�R���,E��,����Z��z �Rdj�R��8K��m���>g)2�f)X�@���Ԛ�`�i�"C�Y
-6-g)"S��v�8K��5K���,E��,����Z��z �RD�f)P�q�"Sk��U�Y�L�Y
-V=g)2�f)X�@���T�R���,E��,����Z��z �Rdj�R��8K���@��Y�L�Y
-V=�f)2t��`��p�"3k��Q�Y�H�,�] �Rdj�R��8K��5K���,E��,�����Y
-T�@���Ԛ�`�q�"Sk��U�Y�L�Y
-V=g)"U��v�8K��5K���,E��,����Z��z �RD�f)P�i�"C�Y
-6-g)2�f)�@���Ԛ�`�q�"R5K�j���Z��z �Rdj�R��8K��5K���,E��Y
-R�@���Ԛ�`�q�"Sk��U�Y�L�Y
-V=g)"U��v�8K��5K���,E��,����Z��z �RDh�R��q4K���,����Y��z �R��B2K����3�/��R���f)�<K1�.s8lq��Yf)���/������G����OO��>�}z9H1��ry��vc�e;_G�mE�^f[�{����/VP�@^HԶ"@j�+��T=�W"U+�z �D�VP�@^�ۊ��} �D�VP�@^�T��ꁼ"�Z@�yE Qۊ��] �D�VP�@^�T��ꁸ"��"����@b�B�@^�T��ꁼ"�Z@�yE R�"���@��R�@^�T��ꁼ"�Z@�yE R�"���@��R�@^�T��ꁼ"�Z@�yE R�"���@��R�@^�T��ꁸ"��"����@djE�Q��Dm+�v��"�Z@�yE R�"���@�jE�U��Dm+�v��"�Z@�yE R�"���@�jE�U��Dm+�v��"�Z@�yE R�"���@�jE�U��Dm+�v��"�ˊ���a�"��"����@djE�Q��@�����@�jE�U��HՊ���+��T=�W�����@�jE�U��HՊ���+��T=�W�����@�jE�U��HՊ���+��T=WT+dz�Dd� iq�"�Z@�yE R�"���@��R�@^�T��ꁼ"�Z@�yE R�"���@��R�@^�T��ꁼ"�Z@�yE R�"���@��R�@^�T��ꁼ"�Z@�qE BkE�M����Ԋ���+��D=�W"U+�z �D�VP�@^HԶ"@j�+��T=�W"U+�z �D�VP�@^HԶ"@j�+��T=�W"U+�z �D�VP�@^�ۊ��} �D�VP�@^�T��ꁸ"��"����@b�B�@^�T��ꁼ"�Z@�yE R�"���@��R�@^�T��ꁼ"�Z@�yE R�"���@��R�@^�T��ꁼ"�Z@�yE R�"���@��R�@^�T��ꁸ"��"����@djE�Q��Dm+�v��"�Z@�yE R�"���@�jE�U��Dm+�v��"�Z@�yE R�"���@�jE�U��Dm+�v��"�Z@�yE R�"���@�jE�U��Dm+�v��"��"����@djE�Q��HՊ���+��VH�yE R�"���@�jE�U��HՊ���+�z[����HՊ���+��T=�W"U+�z �$j[ ���HՊ���+��T=�W"U+�z �$�V��8\��Z@��xE 2�"�������W�u,+w/���_G�"����u:\��"P�Ԋ��V����O��~Y�ś��?���<�_t���ϸֿ���[���@�Ëm��W;|!�9G��s���9�} w�#U�sT=�;瑪�9�ȝ�HU�U��y���9�] w�#U�sT=�;瑪�9������9�ǝ��l�sB�@�G�:�z w�#U�sT=�;瑪�9�ȝ�Dm�sR�@�G�:�z w�#U�sT=�;瑪�9�ȝ�Dm�sR�@�G�:�z w�#U�sT=�;瑪�9�ȝ�Dm�sR�@�G�:�z v�#�:�hZw�#S�sD=�;��:�v��9�Tu�Q�@�G�:�z w�#U�sT=�;��:�v��9�Tu�Q�@�G�:�z w�#U�sT=�;��:�v��9�Tu�Q�@�G�:�z w�#U�sT=�;��:�v��9�̥s��}v�#�:�(Zw�#S�sD=�;�z뜃�r�<R�9G��s�ꜣ��9�Tu�Q�@�'j뜓�r�<R�9G��s�ꜣ��9�Tu�Q�@�'j뜓�r�<R�9G��s�ꜣ��9�Tu�Q�@�'�:�dzv�#�:�HZw�#S�sD=�;瑪�9�ȝ�Dm�sR�@�G�:�z w�#U�sT=�;瑪�9�ȝ�Dm�sR�@�G�:�z w�#U�sT=�;瑪�9�ȝ�Dm�sR�@�G�:�z w�#U�sT=;�Z�s4-;�	��9�ǝ��T�Q��y��s��r�<R�9G��s���sNjȝ�HU�U��y��s��r�<R�9G��s���sNjȝ�HU�U��y��s��r�<R�9G��s���9�} w�#U�sT=�;瑪�9������9�ǝ��l�sB�@�G�:�z w�#U�sT=�;瑪�9�ȝ�Dm�sR�@�G�:�z w�#U�sT=�;瑪�9�ȝ�Dm�sR�@�G�:�z w�#U�sT=�;瑪�9�ȝ�Dm�sR�@�G�:�z v�#�:�hZw�#S�sD=�;��:�v��9�Tu�Q�@�G�:�z w�#U�sT=�;��:�v��9�Tu�Q�@�G�:�z w�#U�sT=�;��:�v��9�Tu�Q�@�G�:�z w�#U�sT=�;��:�v��9��ꜣiq�9�Lu��@�G�:�z w��u�I��s�ꜣ��9�Tu�Q�@�G�:�z w���9���y��s��r�<R�9G��s�ꜣ��9O��9'���y��s��r�<R�9G��s�ꜣ��9OPu���8�GduΑ�8�G�:�z w�ǵ�s��c�߽��~�9��?�돧鸿`�����:���槗���u��9�p��]�ۏ���t����,=t��^������u<@�?�bZ܀<M��64�gWP���zH�������=x>�J�z��.p�����?��������6lSuyvE���:�
�[��<��z�c�������;Q�YV�����.�T]�]Q=p����9�{D=��z�@�L����˳+�>V���p�z��.p��o���V�.Ϯ�8P�a
������6�RuyvE����e~¿
/���qr~���zv���:��T]�]Q=p�^��5��<��z�`g;�.��z��.p���9U�gWT�5��B�y{(R�=����P�޶�@�y{(R�=����P�j{U���H�����C�ڶ�H�y{(R�=����P�j{U�����!4-����m���P�j{U���H�����C���!T=����m����P�j{U���H�����C���!T=����m����P�j{U���H�����C���!T=����m����P�j{U�����!4-���"S�C�z o%j�"����H�����C���!T=���"U�C�z o%j�"����H�����C���!T=���"U�C�z o%j�"����H�����C���!T=���"U�C�z o%j�"�����\��P������!-���"S�C�z o�m{�>���"U�C�z oE���P�@��Tm�ꁼ=��m{��.���"U�C�z oE���P�@��Tm�ꁼ=��m{��.���"U�C�z oE���P�@��Tm�ꁸ=���"��p{("k{I����������C���!T=����m����P�j{U���H�����C���!T=����m����P�j{U���H�����C���!T=����m����P�j{U���H�����CZ�ChZn%�����8��Lm!ꁼ=��B�y{(R�=����P���!R�@��Tm�ꁼ=��B�y{(R�=����P���!R�@��Tm�ꁼ=��B�y{(R�=����P�޶�@�y{(R�=����P�j{U�����!4-����m���P�j{U���H�����C���!T=����m����P�j{U���H�����C���!T=����m����P�j{U���H�����C���!T=����m����P�j{U�����!4-���"S�C�z o%j�"����H�����C���!T=���"U�C�z o%j�"����H�����C���!T=���"U�C�z o%j�"����H�����C���!T=���"U�C�z o%j�"������!4-���"S�C�z oE���P�@�JԶ=Dj��C���!T=���"U�C�z oE���P�@�
-����} oE���P�@��Tm�ꁼ=��B�y{(Q���] oE���P�@��Tm�ꁼ=��B�q{(A�=D����PD�����C���!D=���ƣ:����e{��e�������
?Ϳ�?o�o=z漝�������O�������g���������~������Ç7�G���y�W��W�����f������D��i�JԆN�����W<:y�B`�U䡓H��	��C'���T=��N�
�����I�j�U䡓H��	��C'���T=�NTC'dz�D��N�@:�T
���<t�:A�y�$Q��	�] �D��NP�@:�T
���<t�:A�y�$PoC'���<t�:A�y�$R5t����I�j�U䡓DmC'�v�<t�:A�y�$R5t����I���	��C'�نN�y�$R5t����I�j�U䡓H��	��C'�چNH�y�$R5t����I�j�U䡓H��	��C'�چNH�y�$R5t����I�j�U䡓H��	��C'�چNH�y�$R5t����I���	��C'���D=��N�
�����I�j�U䡓H��	��C'���T=��N�
�����I�j�U䡓H��	��C'���T=��N�
�����I�j�U䡓H��	��C'���T=��N�
�����Id.C'(އ��I��	��C'���D=��N�6tj�C'���T=��N"UC'�z �D��NP�@:I�6tBj�C'���T=��N"UC'�z �D��NP�@:I�6tBj�C'���T=��N"UC'�z �D��NP�@:IP
���q8t�5t�����Idj�Q䡓H��	��C'�چNH�y�$R5t����I�j�U䡓H��	��C'�چNH�y�$R5t����I�j�U䡓H��	��C'�چNH�y�$R5t����I�j�Uġ���4-�NRC'Dz�D��N�@:�T
���<t�:A�y�$Q��	�] �D��NP�@:�T
���<t�:A�y�$Q��	�] �D��NP�@:�T
���<t�:A�y�$PoC'���<t�:A�y�$R5t����I���	��C'�نN�y�$R5t����I�j�U䡓H��	��C'�چNH�y�$R5t����I�j�U䡓H��	��C'�چNH�y�$R5t����I�j�U䡓H��	��C'�چNH�y�$R5t����I���	��C'���D=��N�
�����I�j�U䡓H��	��C'���T=��N�
�����I�j�U䡓H��	��C'���T=��N�
�����I�j�U䡓H��	��C'���T=��N�
�����I���	��C'���D=��N"UC'�z �$j:!�䡓H��	��C'���T=��N"UC'�z ��m��>��N"UC'�z �D��NP�@:�T
���<t��m��.��N"UC'�z �D��NP�@:�T
���8t��:!��p�$"k�I�㡓���	��C'㝎h�_�2tr�2������utC'{:�-�4tR�<���k����������էo�����O�����Ӌ����W���S^��l��Ѻ�q?]���Px�z��e�,�O�a��B�˳+���t}>�������&5���m?��.��c"U�1�z ��D��cP�@ޏ�T�Ǡꁼ��m?��.��c"U�1�z ��D��cP�@ޏ�T�Ǡꁸ��ڏ!��x?&2����~L�j?U���H�~���1���cH�y?&R����~L�j?U���H�~���1�zۏ����H�~���1���T=��c"U�1�z ��$jۏ!����H�~���1���T=�c"��cд8ޏI̶Ch��1���T=��c"U�1�z ��D��cP�@ޏIԶCj��1���T=��c"U�1�z ��D��cP�@ޏIԶCj��1���T=��c"U�1�z ��D��cP�@ޏIԶCj��1���T=�c"��cд8ޏ�L�� ꁼ��m?��.��c"U�1�z ��D��cP�@ޏ�T�Ǡꁼ��m?��.��c"U�1�z ��D��cP�@ޏ�T�Ǡꁼ��m?��.��c"U�1�z ��D��cP�@ޏ�T�Ǡꁼ��m?��.��c"sُA�>�c"��cP�8ޏ�L�� ꁼ���P�@ޏ�T�Ǡꁼ�ڏA�y?&R����~L���R�@ޏ�T�Ǡꁼ�ڏA�y?&R����~L���R�@ޏ�T�Ǡꁼ�ڏA�y?&R����~L�j?�L�������$-��c"S�1�z ��D��cP�@ޏIԶCj��1���T=��c"U�1�z ��D��cP�@ޏIԶCj��1���T=��c"U�1�z ��D��cP�@ޏIԶCj��1���T=��c"U�1�z ��Dh�Ǡiq���ڏ!��x?&2����~L�j?U���H�~���1���cH�y?&R����~L�j?U���H�~���1���cH�y?&R����~L�j?U���H�~���1�zۏ����H�~���1���T=�c"��cд8ޏI̶Ch��1���T=��c"U�1�z ��D��cP�@ޏIԶCj��1���T=��c"U�1�z ��D��cP�@ޏIԶCj��1���T=��c"U�1�z ��D��cP�@ޏIԶCj��1���T=�c"��cд8ޏ�L�� ꁼ��m?��.��c"U�1�z ��D��cP�@ޏ�T�Ǡꁼ��m?��.��c"U�1�z ��D��cP�@ޏ�T�Ǡꁼ��m?��.��c"U�1�z ��D��cP�@ޏ�T�Ǡꁼ��m?��.�c"��cд8ޏ�L�� ꁼ�ڏA�y?&Q�~�] ��D��cP�@ޏ�T�Ǡꁼ�ڏA�y?&Po�1�����ڏA�y?&R����~L�j?U���Dm�1�v���ڏA�y?&R����~L�j?U����~���1Y�1HZ��D��c�@ޏ/�D�1�:�����q��cƯ��?���{���S���h���q��zA�/���3zdُ�ւ�|����͇�_�ջ{������������x���G�1m�^c[h�{�Å���c��@���BCdj�Q䅆H�B��
���T=��-4���BC�j�U䅆H�B��
���T=�����j�
���T=�"U
�z /4D�P�@^hHԶ�@j�
���T=�"U
�z .4Dh-4�iq�А�m���.�"U
�z /4D�P�@^h�T-4�ꁼА�m���.�"U
�z /4D�P�@^h�T-4�ꁼА�m���.�"U
�z /4D�P�@^h�T-4�ꁼА�m���.�"U
�z .4Dh-4�iq���Zh@�y�!Q�B�] /4D�P�@^h�T-4�ꁼ��Zh@�y�!Q�B�] /4D�P�@^h�T-4�ꁼ��Zh@�y�!Q�B�] /4D�P�@^h�T-4�ꁼ��Zh@�y�!Q�B�] -4D�Ѐ�}.4D`-4�hq���Zh@�y�!Po
������Zh@�y�!R�Ѐ��BC�j�U䅆Dm
�v����Zh@�y�!R�Ѐ��BC�j�U䅆Dm
�v����Zh@�y�!R�Ѐ��BC�j�Uą��B��
Y
HZ/4D��@^h�T-4�ꁼА�m���.�"U
�z /4D�P�@^h�T-4�ꁼА�m���.�"U
�z /4D�P�@^h�T-4�ꁼА�m���.�"U
�z /4D�P�@\h��Zh@��p�!!��@���BCdj�Q䅆H�B��
���T=��-4���BC�j�U䅆H�B��
���T=��-4���BC�j�U䅆H�B��
���T=�����j�
���T=�"U
�z .4Dh-4�iq�А�m���.�"U
�z /4D�P�@^h�T-4�ꁼА�m���.�"U
�z /4D�P�@^h�T-4�ꁼА�m���.�"U
�z /4D�P�@^h�T-4�ꁼА�m���.�"U
�z .4Dh-4�iq���Zh@�y�!Q�B�] /4D�P�@^h�T-4�ꁼ��Zh@�y�!Q�B�] /4D�P�@^h�T-4�ꁼ��Zh@�y�!Q�B�] /4D�P�@^h�T-4�ꁼ��Zh@�y�!Q�B�] .4Dh-4�iq���Zh@�y�!R�Ѐ��BC���R�@^h�T-4�ꁼ��Zh@�y�!R�Ѐ��BC��@�y�!R�Ѐ��BC�j�U䅆H�B��
��H�y�!R�Ѐ��BC�j�U䅆H�B��
	��2="���8^h�L-4 ꁼ�0^��u,
w/Ư�n�����B��7���Ƃ�=�,4�j��ǟ�j���7o������/O����������?z�e��?~�:��������Z�������z��Û�_��槧//���۳���y8F;펍�L���������߱��t��udž���[F.wlLZޱefݱ1�xǖ�u�ƪ�[��
�.��2���X�@�c�Ժcc��-S뎍U�;�H��] ޱejݱ��xǖ�u�ƪ�[����wl��;6T�@�c�Ժcc��-S뎍U�;�]��ش8�c�ȺcC����-3뎍Q�;�L�;6V=��2���X�@�c�Tݱ���[����wl�Zwl�z ޱejݱ��x���cC��;�L�;6V=��2���X�@�c�Ժcc��-Q��} ޱejݱ��xǖ�u�ƪ�[�.wllZޱE�����-S뎍U�;�L�;6V=��2���X�@�c�Tݱ���[����wl�Zwl�z ޱejݱ��x���cC��;�L�;6V=��2���X�@�c�Ժcc��-Rudžj�wl�Zwl�z ݱe�r�Ʀ��[f���wl��;6T�@�c�Ժcc��-S뎍U�;�L�;6V=��"Uwl�v�xǖ�u�ƪ�[����wl�Zwl�z ޱE���P��-S뎍U�;�L�;6V=��2���X�@�c�Tݱ���[�.wllZޱefݱ1�xǖ�u�ƪ�[��
�.��2���X�@�c�Ժcc��-S뎍U�;�Dmwl���xǖ�u�ƪ�[����wl�Zwl�z ޱE���P��-S뎍U�;�L�;6V=��2���X�@�c�кcC���-#�;6&-��2����@�c�k�䎍_��g�_���
^GwǶ�;��a:m.x�V�,wl��c��:S������-������s}�/��}����/'l|�ۼ������������W��O������=#o~z��_��~�u������˚�>�.z�Û��ԩ�����x|e�s�/�{�9���������z����G+��}�r�Wq���������J��T=?Z���hM��V�}�Bh��D�>ZA����H�G+�z ���hU�V�}�Bj��D�>ZA����H�G+�z ���hU�V�}�Bj��D�>ZA����H�G+�z ���hU�V�}�Bj��D�>ZA����Vд8�h%2��
-���$j�h��.�?Z�T}����G+���VP�@�h%R��
-���$j�h��.�?Z�T}����G+���VP�@�h%R��
-���$j�h��.�?Z�T}����G+���VP�@�h%R��
-���$j�h��.?Z���hM��V"S� ���J��T=�?ZI���
-�] ���hU�V"U�����J��T=�?Z	��G+�����J��T=�?Z�T}����G+���VP�@�h%Q�G+�v���J��T=�?Z�T}����G+���VP�@�h%A��
-���Dd}�����G+���V�@�h�)��G+�:��V�^|�2~�D�y;��;�G+�����aR���O�����y󯯷�WO���/���j=�ۯ?}~����O�G035m_~i�v�no�����n�M�0Z�w&џ����~g҃2��$V=�3)S�;�X�@�ΤH�w&���w&ej}g��ߙ��ښ@�yk"R�5����D�jk�L�í����	$-��&"S[�z oMD��&P�@ޚHԶ5Aj�[���	T=��&"U[�z oMD��&P�@ޚHԶ5Aj�[���	T=��&"U[�z oMD��&P�@ޚHԶ5Aj�[���	T=��&"U[�z nMDhmM�iq�5��ښ ��xk"2�5����D�jkU䭉H����[�ڶ&H�yk"R�5����D�jkU䭉H����[�ڶ&H�yk"R�5����D�jkU䭉H����[�z;����H�A$������HT="#�"Ѵ8>�L�vIh�����HT=�"#U��z DF�"Q�@>�L�vIj�����HT=�"#U��z DF�"Q�@>�L�vIj�����HT=�"#U��z DF�"Q�@>�L�vIj�����HT="#�"Ѵ8>��LD"�|��� ��.�"#U��z DF�"Q�@>��TD��|��� ��.�"#U��z DF�"Q�@>��TD��|��� ��.�"#U��z DF�"Q�@>��TD��|��� ��."#�"Ѵ8>��LD"�|�:�D�� 2Q�A$�] DF�"Q�@>��TD��|�:�D�� 2Po����|�:�D�� 2Ru���Ad�� U��Dm��v�|�:�D�� 2Ru���Ad�� Uă��A$���Y�HZDF�"�@>���E��:��Ȼ������mM/�omG<��G���cD�����w���_?}���w�{���ң�O���\W�z�ݾz��y����������_�t=�w�Ӵ��ϵ����W?�|!�����/䁺<��z�c�����u��z��.p����l�����u~!�������췡�<��z�c�4��P�gY���<�lD����u~6��<��z�@���݇���ꁏ��f�n���z��.p���9U�gWT����c�.Ϯ�8P�a�Q��˳+�>V/��p�z��.p��o���˳+���m؅?������6lSuyvE����u~6ᏹz��.p��oCh>?�"އ
��tI�$�?�"Z܀�L�K���]A=���f3]�ُ=�j8P�����˳+���]8�CuyvE���:�
�C�.Ϯ�8(��o�>T�YV���Z��HU�
-U�:U��N��r�*RU�B��N���NEj�u�HU�
-U�:U��N��r�*RU�B��N���S��qX��ȪS!iq\��Lթ�@�SE��T�z ש�թH��N��S��\��TթP�@�SE��T�z ש�թH��N��S��\��TթP�@�SE��T�z ש�թH��N��S��\��TթP�@�SEhթд8�S%��TDzש"Su*D=��T��:��u�HU�
-U�:U��:�] ש"Uu*T=��T��:��u�HU�
-U�:U��:�] ש"Uu*T=��T��:��u�HU�
-U�:U���T���\��TթP�@�SE��T�z ֩"��ThZש�թ��N��S��\��TթP�@�SE��T�z ש�թH��N��S��\��TթP�@�SE��T�z ש�թH��N��S��\��TթP�@�SE��T�z ש�թH��N��S��X��ЪS�iq\��Lթ�@�S%j�S��r�*RU�B��N��S��\��TթP�@�S%j�S��r�*RU�B��N��S��\��TթP�@�S%j�S��r�*RU�B��N��S��\��TթP�@�S%j�S��b�*B�N���q�*2U�B��N��S��\�J�V�"��:U��N��r�*RU�B��N��S��\�
-�[�
-�>��T��:��u�HU�
-U�:U��N��r�*Q[���.��T��:��u�HU�
-U�:U��N��b�*AU�"��N�U�B��N��S!�\�7��:���Nu�2��a�j�:��}�绐��թꑥNu�:��7ۗ�������}s����^�|��_?}����y����������>�T]n�+U��y�R�Ru�g0�T�|!P�B��R���REjȕ�HU�
-U�JU�V�
-M��JUd�R��r�*Q[���.�+U��J�ȕ�HU�
-U�JU��R��r�*Q[���.�+U��J�ȕ�HU�
-U�JU��R��r�*Q[���.�+U��J�ȕ�HU�
-U�JU��R��r�*Q[���.�*U��T�P��JUV�
-E��JUd�R��r�*Po�*P�@�TE�*U�z W�"U�*T=�+U��J�ȕ�Dm�*R�@�TE�*U�z W�"U�*T=�+U��J�ȕ�Dm�*R�@�TE�*U�z W�"U�*T=�+U��J����U��L��JUDV�
-I��JUd�R��r�*RU�B��R���REjȕ�HU�
-U�JU��R��r�*RU�B��R���REjȕ�HU�
-U�JU��R��r�*RU�B��R���REjȕ�HU�
-U�JU��R��b�*B�R���a�*!U�"��R��T!�\��TU�P�@�TE�*U�z W��U�H��R��T��\��TU�P�@�TE�*U�z W��U�H��R��T��\��TU�P�@�TE�*U�z W��V���JU��R��r�*RU�B��R�U�B��R���REhȕ�HU�
-U�JU��R��r�*RU�B��R���REjȕ�HU�
-U�JU��R��r�*RU�B��R���REjȕ�HU�
-U�JU��R��r�*RU�B��R���REjȕ�HU�
-U�JU�V�
-M��JUd�R��r�*Q[���.�+U��J�ȕ�HU�
-U�JU��R��r�*Q[���.�+U��J�ȕ�HU�
-U�JU��R��r�*Q[���.�+U��J�ȕ�HU�
-U�JU��R��r�*Q[���.+UZ�*4-�+U��J�ȕ�HU�
-U�JU��J�] W�"U�*T=�+U��J�ȕ�HU�
-U�JU��*U���\��TU�P�@�TE�*U�z W�"U�*T=�+U��*U�v�\��TU�P�@�TE�*U�z W�"U�*T=+U	�J������J�Ǖ��T�
-Q�JոU��u,����������j��7J�T�#K��\�����v�y�����_��������w��_������w���o6��O�������>~����_޼��i�����?���O�O���������w�����M��苭n+���.V����+/_\�����J��bU䋕H��
-��+���T=�/V�]�����J��bU䋕H��
-��+Z+hZ^�$�.V��8�X�L]� �|���XA��b%Ru�����J���R�@�X�T]���|���XA��b%Ru�����J���R�@�X�T]���|���XA��b%Ru�����J��.V@��b%Ru�����J��bUċ���4-�/V�]����J��bU䋕H��
-��+���T=�/V�]�����J��bU䋕H��
-��+���T=�/V�]�����J��bU䋕H��
-��+���T=�/V�]�����J��bUċ���4-�/V"S+�z _�$j�X!�䋕H��
-��+���T=�/V"U+�z _�$j�X!�䋕H��
-��+���T=�/V"U+�z _�$j�X!�䋕H��
-��+���T=�/V"U+�z _�$j�X!�ċ���4-�/V"S+�z _�D�.VP�@�XI�v�Bj�+���T=�/V"U+�z _�D�.VP�@�X	���
-�} _�D�.VP�@�X�T]���|���XA��b%Q��
-�] _�D�.VP�@�X�T]���|���XA��b%Au�B����JD��
-��+���D=�/V����
-���b��e����u�y+��tY�^��#��ʥ.V�v�Q��?�����\�G��H����_�����C�������:��_����:[�ZW*��>|���Ǘ�d����a��E�
->��]bp��F��O�����Y�G�^�IC�y$-Q�H�] ��E�F�P�@I�T����<��IC�y$-Q�H�] ��E�F�P�@I�T����<��IC�q$-A5�F���HZD�H��#i���4D=�G�"U#i�z ��%jI#�䑴H�H��#i���4T=�G�"U'��z ��&j;9%���H��)��'����ST=�ON#U'��z ��&j;9%���H��)��'����ST=ON#�NNѴ8<9MH���q|r�:9E���4Rur����i���U��Dm'��v�|r�:9E���4Rur����i���U��Dm'��v�|r�:9E���4Rur����i���U��@�������i���U��H��)��'�Z'�hZ��&f;9%���H��)��'����ST=�ON#U'��z ��&j;9%���H��)��'����ST=�ON#U'��z ��&j;9%���H��)��'����ST=�ON#U'��z ��&j;9%���H��)��'�Z'�hZ��F�NN�@>9M�vrJj�'����ST=�ON#U'��z ��F�NNQ�@>9M�vrJj�'����ST=�ON#U'��z ��F�NNQ�@>9M�vrJj�'����ST=�ON#U'��z ��F�NNQ�@>9M�vrJj�'�Z'�hZ��F�NN�@>9�T����|r�����.�ON#U'��z ��F�NNQ�@>9�T����|r���SP�@>9�T����|r�:9E���4Rur����i���SR�@>9�T����|r�:9E���4Rur����i���L�Óӈ��S$-�ON#S'��z ������S|����˸�'���ѝ����ts�.��OtrZ�,'��:9��O�<-�����:6}��������|u����t��<�"{{�/ON�����DŸd;����D�|!p���Ad�� U��Dm��v�|�:�D�� 2Ru���Ad�� Uă��A$���Y�HZDF�"�@>��TD��|��� ��.�"#U��z DF�"Q�@>��TD��|��� ��.�"#U��z DF�"Q�@>��TD��|��� ��.�"#U��z DF�"Q�@<���:�D��� 2!uI���Add� Q��H�A$������HT=�"�D���Ad�� U��H�A$������HT=�"�D���Ad�� U��H�A$������HT=�"�v	j�����HT=�"#U��z DFhD�iq|��� ��.�"#U��z DF�"Q�@>��TD��|��� ��.�"#U��z DF�"Q�@>��TD��|��� ��.�"#U��z DF�"Q�@>��TD��|��� ��.�"#U��z DFhD�iq|�:�D�� 2Q�A$�] DF�"Q�@>��TD��|�:�D�� 2Q�A$�] DF�"Q�@>��TD��|�:�D�� 2Q�A$�] DF�"Q�@>��TD��|�:�D�� 2Q�A$�] DFhD�iq|�:�D�� 2Ru���Ad���HR�@>��TD��|�:�D�� 2Ru���Ad��"A�� 2Ru���Ad�� U��H�A$�����"I�� 2Ru���Ad�� U��H�A$���	��H2="#�"��8>��LD"�|9�͋"�u,�w/�D�_ǟ��y����B�zd9�������~�����������a�������������O����N�u�
qy�ݧ�/�����V��ϟ^���,���㇧/uo��ק�{����n*���ʟ��_��??�k�����}��mN۵����Xz�������������K�֩���.�Z�.�z ��dj����x��:uA��S�L�SV=O]2�N]X�@:u���ԅM��S���S$=O]2�N]�@<u��:ua���%S�ԅU�S�Hթ�] ��dj����x꒩u�ª�K�֩���.��ST�@<u��:ua���%S�ԅU�S�L�SV=O]������K�֩���.�Z�.�z ��d�r�¦��Kd���.O]2�N]X�@<u��:ua���%S�ԅU�S�Hթ�] ��dj����x꒩u�ª�K�֩���.��ST�@<u��:ua���%S�ԅU�S�L�SV=O]"U�.�v�x꒩u�ªҩK�.�.lZ��df��0�x��:uA��S�L�SV=O]2�N]X�@<u��:ua���%Ru�j��.�Z�.�z ��dj����x꒩u�ª�K����.O]2�N]X�@<u��:ua���%S�ԅU�S�Hթ�] ��d�r�¦��Kf֩���.�Z�.�z ��D�N]P���%S�ԅU�S�L�SV=O]2�N]X�@<uI�v�Bj��.�Z�.�z ��dj����x꒩u�ª�K����.O]2�N]X�@<u��:ua���%S�ԅU�S��S4=�N]2r9ua����%3�ԅQ�S��X?u�������1>u���gm=��t���ԥ�S�m�������~y������������u���������O����e����t��������
�������o�|}���W~���맷�Z�����嫎\�8���~y�\�~��x|5M�x���uڜw?������~���h���r��Z��z�ky�:�T=�k�T�ւ��o-���ZP�@��%Po�����o-���ZP�@��%R�[�ȿ�D�~kA����Dm�����o-���ZP�@��%R�[�ȿ�D�~kA���o-dz����[�ǿ�D�~kA�����O��|�o-w/�z��2~�9�N����[���o/��9o�����i�K����^P=�G�_�_ׯ,�������ؿ���o���8n�&F/�o��n�_-��{^��Y/ޮ�n;���腼T�YV���z���t�����i���)T�gWT��۰M�������mx>�I�z��.p����z	�����i:\RuyvE���z���G=��<��z�c����P�gY���6��^]1-n@���q�˳+���=8����ꁏ�����W�Zϲ���]x>�������6lSuyvE���:�
���\=��z�c�4���?��YV�����.�T]�]Q=p����9�{D=��z�@�L�S�c��]Q=�:�·?�j=�j8P�����gWT��۰�Գ+���mإ���ꁏ���6�^e����l�8��
-�u~6��<��z�@�L�k��wyvE����u;�.��z��.p���9U�gWT���=�?������6�8�����f~��gQ���6�O��<��z�@�߆�9T�gWT��۰M�������m�d?��,�]�@�O��5T�gWT��i{I�����e:���?�bZ�cr�������e���{pJ������w��<��z�@�߅�>T�gWT|��K�?Q�YV���:�
�C�.Ϯ�8P�a���gWT��۰I������珦�s�,�]�@�O�K���]Q=p����9U�gWT����]��]Q=�z�߆c���e����pH������6��X]1-n@���>��SϮ��X=���.T�YV���:����\=��z�@�߅M�.Ϯ�8P/�����gWT|��7���;��e����pN�����q~>�1WϮ�8P�����gWT|�>$}�z��.p��o�>�1WϮ�8P�a���gWT��۰M������eW+R�YV���:�
����x6��S�_Y�GWD���i	�ճ+�>��l��9�Q�gQ��~ڟRuyvE���:��}�.Ϯ�8P�!<>ѳ+���v~��Zϲ���3��A�U�o���aV=�A8S��Y�@��H�7���7gj}�0��� ���
¬z ~�p��7���
�Z� ����7g��
�LZ~�pf�73��
™Z� ̪�7G��A�.�A8S��Y�@��L�of���3U���z Ϫ&j�U%��Y�Hլ*�ȳ���YUT=�gU#U���z Ϫ&j�U%��Y�Hլ*�ȳ���YUT=gU#�fUѴ8�UMHͪ�q<���UE�yV5R5����j�jVU�Y�Dm���v�<���UE�yV5R5����j�jVU�Y�Dm���v�<���UE�yV5R5����j�jVU�Y�@�ͪ���j�jVU�Y�Hլ*����Z��hZϪ&f�U%��Y�Hլ*�ȳ���YUT=�gU#U���z Ϫ&j�U%��Y�Hլ*�ȳ���YUT=�gU#U���z Ϫ&j�U%��Y�Hլ*�ȳ���YUT=�gU#U���z Ϫ&j�U%��Y�Hլ*����Z��hZϪF�fU�@�UM�6�Jjȳ���YUT=�gU#U���z ϪF�fUQ�@�UM�6�Jjȳ���YUT=�gU#U���z ϪF�fUQ�@�UM�6�Jjȳ���YUT=�gU#U���z ϪF�fUQ�@�UM�6�Jj���Z��hZϪF�fU�@�U�Tͪ��<���m���.��"Ue�z �E��P�@(�T
���<P���2P�@(�T
���<P�(C�y�,R5P���@Y���2R�@(�T
���<P�(C�y�,R5P���@Y�j��L�Á����2$-��"Se�z ������2|�@��˸�e��q7��<P��Y���4�Z�,e�6Q��/o>��͇��{�����?/�w�>�޾�����ͫ7o�5Ů�[��%��p��V゗�j\w�\�z�B�ƅ�r�+RU�B��ƕ���Ej�5�HU�U�W�V�M��Wd�ƅ�r�+Q[���.�k\����5�HU�U�W��ƅ�r�+Q[���.�k\����5�HU�U�W��ƅ�r�+Q[���.�k\����5�HU�U�W��ƅ�r�+Q[���.�j\��ԸP��WV�E��Wd�ƅ�r�+Po5.P�@�qE�j\�z ׸"U5.T=�k\����5�Dm5.R�@�qE�j\�z ׸"U5.T=�k\����5�Dm5.R�@�qE�j\�z ׸"U5.T=�k\����5�U��L��WDV�I��Wd�ƅ�r�+RU�B��ƕ���Ej�5�HU�U�W��ƅ�r�+RU�B��ƕ���Ej�5�HU�U�W��ƅ�r�+RU�B��ƕ���Ej�5�HU�U�W��ƅ�b�+B�ƅ��a�+!U�"�����q!�\�TոP�@�qE�j\�z ׸�ոH�����q��\�TոP�@�qE�j\�z ׸�ոH�����q��\�TոP�@�qE�j\�z ׸�V���W��ƅ�r�+RU�B����U�B��ƕ���Eh�5�HU�U�W��ƅ�r�+RU�B��ƕ���Ej�5�HU�U�W��ƅ�r�+RU�B��ƕ���Ej�5�HU�U�W��ƅ�r�+RU�B��ƕ���Ej�5�HU�U�W�V�M��Wd�ƅ�r�+Q[���.�k\����5�HU�U�W��ƅ�r�+Q[���.�k\����5�HU�U�W��ƅ�r�+Q[���.�k\����5�HU�U�W��ƅ�r�+Q[���.k\Z5.4-�k\����5�HU�U�W���] ׸"U5.T=�k\����5�HU�U�W��j\���\�TոP�@�qE�j\�z ׸"U5.T=�k\��j\�v�\�TոP�@�qE�j\�z ׸"U5.T=k\	���5�����5��T�Q�׸wո�u,5���5��븫q-�(k\s���-�剥ĵ����>�[��_>~y�p}�������7��y��/���ӧ/Ouw���Ͻ���q�ÿ��P��ԁ���dx����ϓ������m2�Ǘ����0yLvq|����J&���&9!u�L���ArB��H��k�l��@z�"'�.���8�CNH�!iq|����A&���9 �2����	��c"-�o�R��DZ'��8�:Dhaxr�xuqL�}�'�΍I�8>6NH�iq|i���H��3�ԕ1��7�	�c"-��R��DZ_d;.����8!uYL���]qB꬘H����M1�������8>'NH]iq|K��:%&���8뎘��0�"<�ga|B��� &���~8!u>L����pB�v�H����l��@z�
'�����8�NH�iq|0���&���Z8 ۱0�ǧ�	�Ka"-��Rg�DZ	'�n���8�^'o�c�������u0�Ƿ�	��`"-���	����lG� z�'�.���8�NH�iq|���&���8 �!0��g�	�+`"-�o�R'�DZ�'����8��
�v�����oB��H��߄��/��G�	��_"-�/~���q|��%����7�ԗ��0>�M@���hq|����H��߄ԅ/����	��^"-��{R��DZ_�d;�����7!u�K���MoBꤗH��ބ�=/��׼َy��8>�MH]�iq|Ǜ�:�%����7!u�K���o@�^ =�w��w	������.�LJ�	��]"-��v���q|�����%���^7!u�K���nB�V�H��K�u�v�;&�8>�MH]�iq|���:�%���@7!u�K���un@��\ =�OsR��DZ��&��r��8>�MH��iqx��:����7�����0��M@��hq|����.������
-w�"�ߝO���]
-��t��?z�l��ܡ��#ϯ�o����|��惾7���7>���������O�����w�W߿S���O�}x���"u��ϟ��^̃����
��}��o`�s�C�2ӣox�\O�^ǃ�8X�e������/�@��K$"U_"���HD��DU�/�H��%�v��%��/�@��K$"��DM��/��L}���_"���K$H��K$"U_"���HD��DU�/��T}���_"���K$H��K$"U_"���HD��DU�/��T}���_"���K$H��K$"U_"���HD��DU�/��T}���_"���K$H��K$"s�h�x�%�����=��TQQ�V�޺Z����֊TյP�@.lE�[�z w�"U�-T=�k[��z[�v��܊TU�P�@.oE��[�z ��"U.T=�+\��:\�v���TոP�@.rE��\�z w�"Ue.T=�\	�>������J�ǥ��T�Q�^W��؅�r�+Q[���.��]��z���HU�U�W��䅪r�+Q[ϋ�.��^�����e�HU�U�W�����r�+Q[��.�[_�����ůHU�U��W�V�M���WB��E��q,2UC���j�����T�P�@��%j낑�r,RUC���j����	�T��P�@��%j녑�r3,RU
C���j�����T�P�@���#j�-�HUMU�X��)��bW,B�,���q],1[_��.�c����ȥ�HUkU��X��8��ru,Q[w��.��c������HU�U�Y��D��r�,Q[���.��d��*��e�HU�U�>Y��P��r�,Q[���.�[e��Z��Ų�f��ݲ�T�Q�zY��~�] 7�"U3T=�Kf�����=�HU�U�Y����] ��"Uu3T=�g����ȝ�HU�U��Y����] 7�"U�3T=��g�������HU
U�
-Z���] ��"�jhhZ�"SM4D=��h��2��u�Dm}4R�@n�E�*i�z ��"U�4T=�{i��b��մ@�u�@��������\P�T5�P�@�E�Jj�z �����H��������\V�T��P�@�E�
-k�z V�T�52=[kY�5$-��k������5�X����u,����q=
�k��q�%���?~���4��?�H�#Km;�Zk���}.����?�������l�f��/����.ߏ<����W7�|!�i�|���<P�gWT������"uyvE����y;폡Zϲ���mx�Ɉ������6<�íH]�]Q=p��o�.U�gWT|�^�a��ˣlz܀�߃�64�gWP��{�I�����e:_ӿ�˳+�>V��i����D�gY��~:�SuyvE���z�v�g��<��z�@�߆�1T�gWT|�9��o�!S�,�}�@�߆�)T�gWT��۰;�����u~���<��z�cu;�
��ǜ�e����t�������4m/��<��z�@�L��/��GWL�{L������ѳ�v�u~N��<��z�@�߃�.T�gWT��p؇���ꁏ���6�C��e���۰;�����u~���zvE���Zk ��yT=��E�͋���H�j^U�y�Hռ���"��yT=��E�͋���H�j^U�y��y4-��E"S�"�z ϋ$j�!��y�Hռ���"��yT=��E"U�"�z ϋ$j�!��y�Hռ���"��yT=��E"U�"�z ϋ$j�!��y�Hռ���"��yT=��E"U�"�z ϋ$j�!��y��\�EP��y��y-��E"S�"�z ϋ�m^�>��E"U�"�z ϋD��EP�@��T͋��</��m^��.��E"U�"�z ϋD��EP�@��T͋��</��m^��.��E"U�"�z ϋD��EP�@��T͋��8/���!��p^$"k^I��y��Լ���"��yT=��E�͋���H�j^U�y�Hռ���"��yT=��E�͋���H�j^U�y�Hռ���"��yT=��E�͋���H�j^U�y�Hռ���"Z�"hZ΋$��E��8��L͋ �</��A�y^$R5/���H��yR�@��T͋��</��A�y^$R5/���H��yR�@��T͋��</��A�y^$R5/���H���E@�y^$R5/���H�j^U�y��y4-��E�͋��H�j^U�y�Hռ���"��yT=��E�͋���H�j^U�y�Hռ���"��yT=��E�͋���H�j^U�y�Hռ���"��yT=��E�͋���H�j^U�y��y4-��E"S�"�z ϋ$j�!��y�Hռ���"��yT=��E"U�"�z ϋ$j�!��y�Hռ���"��yT=��E"U�"�z ϋ$j�!��y�Hռ���"��yT=��E"U�"�z ϋ$j�!��y��y4-��E"S�"�z ϋD��EP�@�I�6/Bj��"��yT=��E"U�"�z ϋD��EP�@�	�ۼ�} ϋD��EP�@��T͋��</��A�y^$Qۼ�] ϋD��EP�@��T͋��</��A�q^$A5/B���HDּ���"��yD=��EƋѼ��e^��e����u�͋,�(��E�?[9�4/�G�y�]͋�ͧ׻����ӛw���?z����������Ý����:ZQ��^�������2.��b�;S��ͪb�;S��ͪb�;S��ͪb�;RU�F���w�V��U��w�V��U��w�.�o6-�ߑ��7�] ��3��߬z ��3��߬z ��3��߬z ��#U�oT�@,gj��Y�@,gj��Y�@,gj��Y�@,G��ߨv�X���*��X���*��X���*��X��T��Q�����U�f�����K��M���wfV��Q��w����j���L��7����L��7����L��7����HU��.�ߙZ�oV=�ߙZ�oV=�ߙZ�oV=�ߑ��7�] ��3��߬z ��3��߬z ��3��߬z ��#U�oT�@(g���7��aT�����͢�a�;3��ͨb�;Q[���>�ߙZ�oV=�ߙZ�oV=�ߙZ�oV=�ߑ��7�] ��3��߬z ��3��߬z ��3��߬z ��#U�oT�@,gj��Y�@,gj��Y�@,gj��Y�@*Gh����8*g�R�f�����U�f�����U�f����*��b�;S��ͪb�;S��ͪb�;S��ͪb�;RU�F���w�V��U��w�V��U��w�V��U��w����j���L��7����L��7�H��]��lZ��#���Hz��3��ߌz ��3��߬z ��3��߬z ��#U�oT�@,gj��Y�@,gj��Y�@,gj��Y�@,G��ߨv�X���*��X���*��X���*��X�N�V�&���w�V��U��w�V��U��w�.�o6-�ߑ��7�] ��3��߬z ��3��߬z ��3��߬z ��#U�oT�@,gj��Y�@,gj��Y�@,gj��Y�@,G��ߨv�X���*��X���*��X���*��X��T��Q�����U�f�����K��M���wfV��Q��w����j���L��7����L��7����L��7����HU��.�ߙZ�oV=�ߙZ�oV=�ߙZ�oV=�ߑ��7�] ��3��߬z ��3��߬z ��3��߬z ��#U�oT�@*g�R�f�����U�f�����U�f����*��b�;S��ͪb�;S��ͪb�;S��ͪb�;Q[���>�ߙZ�oV=�ߙZ�oV=�ߙZ�oV=�ߑ��7�] ��3��߬z ��3��߬z ��3��߬z ��#���hz��3r)3iqX���*3�X���j��_��g�_Ƹ�
��+��=��t>��]�,��}��������˿��O�}xzY��}8>��ݔ��l���uվ�]��*����~���2�.wT�@�.�L��rg���3��˝U��r�T��Q�@����j�u�HU�U�:��Ώ�r�?RU�G��Ο���Oj�u�HU�U�:��Ώ�b�?B�Ώ��q�?1[���.�����:?��u�HU�U�:��Ώ�r�?Q[���.�����:?��u�HU�U�:��Ώ�r�?Q[���.�����:?��u�HU�U�:��Ώ�r�?Q[���.�����:?��u��:?��u��T�Q�:��:?�] ��#Uu~T=�����:?��u�HU�U�:��:?�] ��#Uu~T=�����:?��u�HU�U�:��:?�] ��#Uu~T=�����:?��u�HU�U�:��:?�] ��#s��x�u��:?��u��T�Q�:�������\�T��Q�@��G����z ��#Uu~T=��������v�\�T��Q�@��G����z ��#Uu~T=��������v�\�T��Q�@��G����z ��#Uu~T=��	�:?��u���:?��u��T�Q�:��Ώ�r�?Q[���.�����:?��u�HU�U�:��Ώ�r�?Q[���.�����:?��u�HU�U�:��Ώ�r�?Q[���.�����:?��u�HU�U�:�V�M��:B���M�\Wb�ῢ%�����^*dKv����ц��P��J1��ո'OU����ˍ�]�s��a��<���q\�Wf���v ����:?��u~��Ώjr�ߨ��O��u~��Ώjr�_���ځ\�Wj���v ���:���.�\�Wj���v ����:?��u~��Ώjr�_��:?�k ����:?��u~��Ώjb�_��Ώf�q�ߘ��O��u~��Ώjr�_���ځ\�Wj���v ���:���.�\�Wj���v ����:?��u~��Ώjr�ߨ��O��u~��Ώjr�_���ځ\�Wj���v ���:���.�\�Wj���v ��:��hV����:?��u~��:?�K ����:?��u~��Ώjr�_���ځ\�7��r�_���ځ\�Wj���v ����:?��u~��:?�K ����:?��u~��Ώjr�_���ځ\�7��b�_��Ώf�q�_���#ځ\�Wj���v ���:���.�\�Wj���v ����:?��u~��Ώjr�_��:?�k ����:?��u~��Ώjr�_���ځ\�7��r�_���ځ\�Wj���v ����:?��u~���Of�a�_��Ώd�q�_���#ځ\��/��:?��V�x����:��{�~�x�y�k���{���g������/�O�}�>w�����'^_�?�*�?������?������Ǐ�����������O?t���?����׏ok�/�������ۖ������\	���<��~!��[@�Ȋ�6�!S$��
-h�4��8�
-r����8.2@"+���L�Ȋ���!��#���'�Y����g�����8l�q����ʟ��#���'�Y����g�t���8n�2E?"+�k~�LˏȊ㎟ g�Ȏゟ!��#���gȔ���8��2�>"+�{}���> ;�K}�L��Ȋ�F�!S�#���gȴ���8��	rV���8*�p��w�->��q�a\�3`|$V�������>��qyϐ��Yq��3d�{DV�����ǝ=A���Dž=C��Gd�q[ϐ)�Yq\�3d�zDV��9kz@v������
=C��Gd�q=ϐi�Yq��b�y�V�7zy�]�q+π)�Xq\�3dyDV��9�x@v���.��M<C��Gd�q
ϐi�Yq�����q\�3d�wDV�������;C�yGd�q�N��vd�q�ΐ��Yqܸ3d
-wDV��8�v^�a�Nx�ځWa\�3`zv$V������;C�aGd�q�N��^d�q�ΐ��Yqܬ3d�uDV���V�ǝ:A�J�Dž:C�OGd�q�ΐ)�Yq\�3d�tDV�讓��>��q�ΐ��Yqܠ3d
-tDV��8�s^�qwN��:b�qqΐ��Yqܚ3dJsDVW�����}9Aκ��e9C�+Gd�qSΐ)�Yq\�3dZrDVw�9+r@v��~���8C�Gd�q5ΐi�Yq܋���q\�3d:qDV6�8
-q^�q΀iÑXq܅���q\�3dzpDV�����8C�Gd�q�M���d�q�͐�Yq�|3d�oDV�����ǝ7A���Dž7C��Fd�q�͐)�Yq\u3d�nDV��9kn@v�܌8:n^�q�̀)��Xq\o3d�mDVw�9�m@v��^�ǭ6C��Fd�q�͐i�Yq�g�N��l���e6C��Fd�q�͐)�Yq\c3dZlDVw�9+l@v������5C��Fd�qu͐i�Yq�[bjk�V��v�G�������;�\��f��x����n�k�=..f}mr��Ŭ���t1�x���nF������_��˛����l��	�s��/���^���O�^끷�\���[B����^�s{�
-ځ;����ު۳W�|_}8��F�u�x��%pG=}
-��A����+j��h���+j����R�g�����x<ܽ�N�Qdz�.�;����٪۳W��QwO�Rݞ��v���|x~�-S�n�^Q;�}���1<Hu<�����>���8Jݞ��v��z�^��)u{��ځ;��c�������W�O�����(��C�>����3���v��z�n��={E��uܿ��\�j��F������Jͅ�v _��\�j��Jͅ�v _�.���|��Rs�;���+5��ځ|��Rs�;���u^�N���+5��ځ|��Rs�;���+t\�f���Ɯ����Jͅ�v _��\�j��Jͅ�v _�nԹ�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�2�`8�`P�8^�Qf�`�@��y�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�z^�u
�-�f���9�f���E��I4+�Gi�9Wi]y�F��A�y�F�٦A�y�F���A�y�ƨs���%�7j���T;�gj���T;��j���T;��j�:�jH]y�F��A�y�F�٬A�y�F���A�y�ƨs���%��k���T;�k:�kЬ8^�Qf&l�@�1�\�!u	��f���)�f���5�f���A��ER�@޴QjFmP�@��QjvmP�@^�Qj�mP�@�1�\�!u	�}�f����f����f����ΥR�@ܺQ��A��x�F�ٻA�y�F���A�y�ƨs���%�wo���T;��o���T;��o���T;�p�z^�u
�
�f���f��%�f
-��1��5R�@��QjqP�@��Qj6qP�@^�QjfqP�@�1h�q��8�ơ�3���1�q.ރ�q�_�bg�=J��9��qg<����>������|���?}��ӷ�m?���?��?������O��;Ӯ<���9������Wr6.�Ӹ�x�����׀�%�K 7.���%�ȍK��q�jr�R�i\�ځܸ4�l\��r�R�i\�ځܸTj��v 7.���%�ȍK���%�K 7.���%�ȍK��q�jr�R�i\�ځܸ4�l\��r�R�i\�ځظT�h\�YqܸTf��v 7.�:��.�ܸTj��v 7.���%�ȍK��q�jr�Ҩ�qI�ȍK��q�jr�R�i\�ځܸTj��v 7.�:��.�ܸTj��v 7.���%�ȍK��q�jr�Ҩ�qI�H�Ken�K/ðq��ѸD��q��4.�@n\
-�ܸu
�ƥRӸD��q��4.Q�@n\*5�KT;��F��KR�@n\*5�KT;��JM���ƥRӸD��qi�ٸ$u	�ƥRӸD��q��4.Q�@n\*5�KT;�M�̎�ƥ"G�Ɋ�ƥ2ӸD��q��4.Q�@n\u6.I]�q��4.Q�@n\*5�KT;��JM���ƥQg��%��JM���ƥRӸD��q��4.Q�@n\u6.I]�q��4.Q�@n\*5�KT;�
-�K4+��L�Ȏ�ƥ2ӸD��q��4.Q�@n\*5�KT;��F��KR�@n\*5�KT;��JM���ƥRӸD��qi�ٸ$u	�ƥRӸD��q��4.Q�@n\*5�KT;��B=7.A]�q��4.Q�@n\*5�KT;�
-�K4+��Ɯ�KB�@n\*5�KT;��JM���ƥRӸD��qi�ٸ$u	�ƥRӸD��q��4.Q�@n\*5�KT;��F��KR�@n\*5�KT;��JM���ƥRӸD��qi�ٸ$u	�ƥRӸD��q��ѸD��q��4.�@n\u6.I]�q��4.Q�@n\*5�KT;��JM���ƥQg��%��JM���ƥRӸD��q��4.Q�@n\u6.I]�q��4.Q�@n\*5�KT;��JM���ƥQg��%�
-�K4+���L���ƥRӸD��qi�ٸ$u	�ƥRӸD��q��4.Q�@n\*5�KT;��B=7.A]�q��4.Q�@n\*5�KT;��JM���ƥQg��%��JM���ƥRӸD��q��4.Q�@l\4�K2;��4�K|�Ѹ��7B�r�U���-7.o�O�o�q9y}��Ѹ��?���ӏ�>����?|��Ǜ����w��~�k;c��;_�y�3�k.p�x���߾\��h��J�Ψv _��\��j��F�8����J�Ψv _��\��j��J�Ψv _�,��Π��|��Rs�3��8+58�ځ|��Rs�3��8u^�L��8+58�ځ|��Rs�3��8+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�	��Ҝ�2�9/�pN@�cN�Ŋ�9efN���9���@]yN@��@�yN@��@�yN@��@�yN��sN��%����9T;����9T;����9T;���:�H]yN@��@�yN@��@�yN@��@�qN��� ��pN@�cN�Ɋ�9efN���9�fN���9��9R�@�Pj�P�@�Pj�P�@�Pj�P�@�0� u	�9�fN���9�fN���9�fN���9��9R�@�Pj�P�@�Pj�P�@�P�@��pN��� ��xN@��@�yN@��@�yN@��@�yN��sN��%����9T;����9T;����9T;���:�H]yN@��@�yN@��@�yN@��@�yN@��9P�@�Pj�P�@�Pj�P�@�P�@��xN��sN��%����9T;����9T;����9T;���:�H]yN@��@�yN@��@�yN@��@�yN��sN��%����9T;����9T;����9T;���:�H]yN@��@�qN@�cN�͊�9efN���9��9R�@�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��94+����9D;����9T;���:�H]yN@��@�yN@��@�yN@��@�yN@��9P�@�Pj�P�@�Pj�P�@�Pj�P�@�0� u	�9�fN���9�fN���9�fN���9�fN�̎�9��:����s�q�9��	�������y��,�	�G^����v;��|����������^/u~So:ܿ�ˍ�����p����(��;��l�_��~���@��%��JM���ƻR�xG����4�Q�@n���xu
�ƻR�xG����4�Q�@n�+5�wT;��F��wR�@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	�ƻ2��;��a�xW�h��Xq�xWf�v 7ޅzn���r�]�i��ځ�xWj�v 7ޕ��;�ȍw���;�K 7ޕ��;�ȍw���jr�]�i��ځ�x7�l���r�]�i��ځ�xWj�v 7ޕ��;���w���Nf�a�]���d�q�]�i�#ځ�xWj�v 7ލ:�.��xWj�v 7ޕ��;�ȍw���jr�ݨ��N�ȍw���jr�]�i��ځ�xWj�v 7ލ:�.��xWj�v 7ޕ��;���w���;���wC��Nd�q�]�i�#ځ�xWj�v 7ޕ��;�ȍw���;�K 7ޕ��;�ȍw���jr�]�i��ځ�x7�l���r�]�i��ځ�xWj�v 7ޕ��;�ȍw����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���w���;�Ǎwe��hr�]�i��ځ�x7�l���r�]�i��ځ�xWj�v 7ޕ��;�ȍw����xWj�v 7ޕ��;�ȍw���jr�ݨ��N�ȍw���jr�]�i��ځ�xWj�v 6�
��;�������k��k����{P�}�U�P�������-5޷G����~4��ۗ?�כ�۟~�����oJϧ_^�<<�?��/�����x<ܽ���ş��=�|����ǻ����{/�={E����p��(���+j�χ��'�n�^Q;�}���1<Hu<�����>��g�n�^Q;pG=}��k��={E����1�Zu{��ځ�ϧ��ۣ֡lv�y��Gin�^A;pG=}7Vݞ��v����s8u�}�ځ8����}���܇S����sNs�v �}8u�}�ځ8�a�9�A��sNs�v �}8u�}�ځ8���1��j�܇R3����sNs�v �}8u�}�ځ4���m�͊ùef��%�>�:�>X�@��p��`�q�éc��Ĺ�f��%�>�:�>X�@��p��`�q�éc��Ĺ�f��%�>�:�>X�@��p��`�q�éc��Ĺ�f��%�>�:�>X�@��p�6��f��܇3����sJ���K �}8u�}�ځ8���1��j�܇S����sJ���K �}8u�}�ځ8���1��j�܇S����sJ���K �}8u�}�ځ8���1��j�܇S����sJ���K �}8�����a4���m�Ŋùg��F;�>�:�>H]q�éc��Ĺ���V;�>�:�>X�@��Pj�>P]q�éc��Ĺ���V;�>�:�>X�@��Pj�>P]q�éc��Ĺ���V;�>�:�>X�@��P��@��h�Ñ����s�s�v �}8u�}�ځ8����}���܇S����sNs�v �}8u�}�ځ8����}���܇S����sNs�v �}8u�}�ځ8����}���܇S����sNs�v �}8t��`��h�C�c�Ɏùg��F;�>�:�>X�@��p��`�q�C���@u	Ĺ���V;�>�:�>X�@��p��`�q�C���@u	Ĺ���V;�>�:�>X�@��p��`�q�ès��5�>�:�>X�@��p��`�i�á����s����K �}8u�}�ځ8���1��j�܇S����sJ���K �}8u�}�ځ8���1��j�܇S����sJ���K �}8u�}�ځ8���1��j�܇S����sJ���K �}8u�}�ځ4���m�͊ùg��F;�>���T�@��p��`�q�éc��Ĺ���V;�>���T�@��p��`�q�éc��Ĺ���V;�>���T�@��p��`�q�éc��Ĺ���V;�>���T�@��p�6��f��܇3����sNs�v �}(5s�.�8���1��j�܇S����sNs�v �}u�}���܇S����sNs�v �}8u�}�ځ8����}���܇S����sNs�v �}8u�}�ځ4���1��f����W\������|����������x��kYZ�؞x}��1��_~�ӧϟ>����������������w��H��;_���͏Y���م>��~��K@z�\�m�Ԡ��8.A2h"+�ІL�Ȋ��� g�Ȏ��!S}&���l�����8l=q��	��ʳ�g�Ď㾳!Sw&���l�t���8n:2Eg"+�k΂�-g ;�;ΆLřȊコ!�o&���lȔ���8�6r6���8�52�f"+�K͆L��Ȋ�F�!Sh&���,��f���l�T���8,2q��	���Sb&���,��`�㸿l�ԗ��8./2�e"+��ˆLq�Ȋ�ڲ gkȎ�β!SY&�⸰l�����8n+2ee"+��ʂ�Me ;�{ʆLM�Ȋ㒲!�Q&�⸡l����8�'r����8�&p�&w��d��^2q�a�J6`J�$VW����F�>��qِ�#Yq\F6d��DV7�
�"2��5dA�2��dC��Ld�qِ�Yq�>6d��DVW�9��@v��
��1�ǥcC�sLd�q�ؐ)YqX7b���Vv��7���]�q�؀��Xq�26dJ�DVW�9�@v��
�z1���bC�[Ld�q�ؐ)Yq\+�l�q�)6d*�DV�
�>1��mbC�LLd�q�X��Id�q�ؐ�Yq\"6d:�DV6��8
-�^�a}Xxi�Wa�6`��$V�
��0�ǭaC�4Ld�qeX��1d�q_ؐ�Yq\6d��DV7�
��0��5aAΖ0��aC�"Ld�qAؐ�Yq�6d��DVW����f�>��q/ؐ�Yq\
-6d:�DV6��8
-�^�qX��
b�qؐ�Yq\6dz�DV��
�0��`A�0���_C��Kd�q�א��Yq��5d��DV�~9[�@vw~
��/�Dž_C��Kd�q�א)�Yq\��l��q��5dj�DV�|�8:�^�q�׀)��Xq\��l��q��5d��DV{
�^/�ǭ^C��Kd�q�W���d�q�א��Yq\�5d��DV7y
�"/��5^A�/��^C��Kd�q�א��Yq��5dʻDVWw9��@v�v�8j�^�qi׀��Xq��5d
-�DV�u9ۺ@vwu
��.��E]C��Kd�qKא)�Yq\ѽN������\C��Kd�q9א��Yq��5d��DV�r9[�@vwr
�J.�Dž\C��Kd�qא)�YqX�b���V�p�O*j����{~����n	w�=�X������,�G^_�q�p���O�>}��u��/��ǽ�yپ���������a�x�T��N���*߾�*Q�@�U*5�JT;��
-�J4+�ەƜ�JB�@.X*5
KT;�;�JM��䚥RӳD��ii�Y�$u	䲥RӶD��o��.Q�@�\*5�KT;�[�F��KR�@.^*5�KT;���JM�����RӿD���i�Y�$u	��R��D�����Q�D�⸊��t1�@ncu�1I]����42Q�@�d*5�LT;�k�JM/��f�Qg5��%�˙JM;��~�RS�D�����t4Q�@niu�4I]����45Q�@�j*5eMT;��JM_��ƦQge��%�J���Z�(^�aoS����b�quS��n"ځ��깾	��N����jr�S�)q�ځ\�Tjz��v 79�:���.�\�Tjڜ�v �9��B'�ȕN��Ӊjr�Ө��I���N��ىjr�S�)w�ځ\�Tj���v 6<
��'��%OE��'��=Oe��hr�S��z�ځ��4�{��r�S�i|�ځ��TjJ��v �>���'���O���'�K �?���'���O����jrT�逢ځ�5ꬁ��rT�i��ځ�Ujʠ�v �A:��hV6B
�J(�ǥPe��hr/T�)��ځ\
Uj���v �C�:롤.�\Uj��v wD���(��5Q��'�jrSԨ�*J��eQ��-�jr_T�)��ځ\Uj:��v �F�z����rqT�i��ځ�Ujʣ�v �G:��hV7H�9+��.�\"UjZ��v �H��")��UR��K�jr�Ԩ�NJ�ȅR��Q�jr�T�)��ځ\+Ujz��v 7K�:���.�\.Ujڥ�v �K���)��S��c�jr�Ԩ�fJ��ES��i�jb�T��l�f�q�T��"ځ�85꬜��r�T�i��ځ�;Uj���v WO���)���S���)�K P��*��T����jr
U�顢ځ�D5ꬢ��rU�i��ځ�GUj
-��v WR��N*�ȭT��Z*�K S:��hVwS��r*���T����jrCը��J��%U����jrOU�)��ځ\UUj���v �U�z����raU�i��ځ�YUjJ��v �V���*���U���*�K �W���*���U����jr�U�鰢ځ�b5hj�dvY����Ɋ�1���A]��WYʬ�\f}x9ܟރʬ��7zeֿ����>�p|���~|-�n?������G���?�����|�v��������͇/����5ׇ���:;�~u������%��\����S޾�S�@��u�SH]�����SP�@��(5�T;��)JM=��z�Qg=��%��)JM=��z�RSOA������SP�@��u�SH]�����SP�@��(5�T;��)JM=��z�Qg=��%��)���)(^�a=E����b�q=E��� ځ\O깞�������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
-�����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�z����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�z����r=E����ځ\OQj�)�v �S��z
-�����z
-�K �S��z
-�������jr=E����ځXO1h�)dv�S�@a�)���r�TO��?v��������)��7z������Ç�~�����������h��@9������{�v|8�����C��wx�"w����D|�"�۳W��QO�ϣU�g����>^^Ͼ(u{��ځ𢡊���˃Sdz�.�;����٪۳W��Qw�g_��={E���������Jݞ��v�����cx��x��%pG=}�g_��={E����1���W�۳W��QOíU�g�����|�n�=�f�퐧��x�����w��gpc���+j�ϧol��={E���՗���Y~�ϲ��w��'�n�^Q;pG}<�>�os��+j��A~��^Q;��n���c�wj�Eu
�QO�ݣT�g�����>��'�n�^Q;pG=}G�n�^Q;p��q)�Q�-ä.�|˰Rs�0�ȷ+5��ځx˰B�-�hV�2l�y�0�K �2���2�j�-�J�-èv �2���2�j�-�F�����-�J�-èv �2���2�j�-�J�-èv �2l�y�0�K �2���2�j�-�J�-èv �2���2�j�-�F�����-�J�-èv �2��1�f��23�h�Q��K ϸ(53.�v ϸ(53.�v ϸ(53.�v ϸuθ���R3�j�R3�j�R3�j�Q��K ϸ(53.�v ϸ(53.�v ϸ(53.�v ϸuθ��Ҍ�2�/�p�E�c�Ŋ�ef�����g\@]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�q�Š�q!��p�E�c�Ɋ�ef����f�����R�@�qQjf\P�@�qQjf\P�@�qQjf\P�@�q1�q!u	��f����f����f�����R�@�qQjf\P�@�qQjf\P�@�qQ�qA��p�Ő�q!��x�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�E��P�@�qQjf\P�@�qQjf\P�@�qQ�qA��x�Ř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]y�E��qA�q�E�c�͊�ef�����R�@�qQjf\P�@�qQjf\P�@�qQjf\P�@�q1�q!u	��f����f����f�����R�@�qQjf\P�@�qQjf\P�@�qQjf\P�@�q1�q!u	���4+�g\��D;�g\��T;�g\�:g\H]y�E��qA�y�E��qA�y�E��qA�y�E��P�@�qQjf\P�@�qQjf\P�@�qQjf\P�@�q1�q!u	��f����f����f����fƅ̎�Z%13.�c���=�7��3.����n��;<����x���^���͇������Ό���;��O}�
nO?'�ݝqɴ	�ݜ6�x��i��/�&�v O�uN����R3m�j�R3m�j�R3m�j�Q�	�K O�(5�&�v O�(5�&�v O�(5�&�v N�4�&dvO�(3�&�v O�(5�&�v O�(5�&�v O�uN����R3m�j�R3m�j�R3m�j�P��&���<m��L��ځ<m��L��ځ<m��L��ځ<mb�9mB���&Jʹ	���&Jʹ	���&
-�&hVO�sN���R3m�j�R3m�j�R3m�j�Q�	�K O�(5�&�v O�(5�&�v O�(5�&�v O�uN����R3m�j�R3m�j�R3m�j�Q�	�K O�(5�&�v N�(tL��Yq<m��L� ځ<mb�9mB���&Jʹ	���&Jʹ	���&Jʹ	���&F��&�.�<m��L��ځ<m��L��ځ<m��L��ځ<mb�9mB���&Jʹ	���&Jʹ	���&Jʹ	���&F��&�.�4m��m���0�6Q��6A��x�D��6A�y�D��iP�@�6Qj�MP�@�6Qj�MP�@�6Qj�MP�@�61�6!u	�i�f���i�f���i�f���i��iR�@�6Qj�MP�@�6Qj�MP�@�6Qj�MP�@�61h�M��8�6Q�6A��x�D��6A�y�D��6A�y�Ĩsڄ�%��M��iT;��M��iT;��M��iT;��M�:�MH]y�D��6A�y�D��6A�y�D��6A�y�Ĩsڄ�%��M��iT;��M��iT;�M:�MЬ8�61d�M��8�6Qf�M�@�6Qj�MP�@�6Qj�MP�@�61�6!u	�i�f���i�f���i�f���i��iR�@�6Qj�MP�@�6Qj�MP�@�6Qj�MP�@�6�y��5��M��iT;��M��iT;�M:�MЬ8�61�6!t	�i�f���i�f���i�f���i��iR�@�6Qj�MP�@�6Qj�MP�@�6Qj�MP�@�61�6!u	�i�f���i�f���i�f���i��iR�@�6Qj�MP�@�6Q�6A��x�D��6A�y�Ĩsڄ�%��M��iT;��M��iT;��M��iT;��M�:�MH]y�D��6A�y�D��6A�y�D��6A�y�Ĩsڄ�%��M��iT;��M��iT;��M��iT;��M�:�MH]q�D�c�͊�ief���i�f���i��iR�@�6Qj�MP�@�6Qj�MP�@�6Qj�MP�@�6�y��5��M��iT;��M��iT;��M��iT;��M�:�MH]y�D��6A�y�D��6A�y�D��6A�q�Ġ�6!��p�d��M��k�i����i��WY�M�<mr��+,�6�lo4�M���o���q�����ۇ����/��n?��/�~��O�G����?}���������]g��=�~9����=7��/e6�.�Z�Vo_V�v 7������
+��a�jr�ʨ�aE��
+��a�jb�J��a�f�q�J�iX!ځܰ2�lX��r�J�iX�ځܰRjV�v 7������
+�Ά�K 7������
+��a�jr�J�iX�ځܰ2�lX��r�J�iX�ځܰRjV�v 7������
+�Ά�K 5���5�P�Æ�G�
-Ŋ㆕2ӰB��a%�s�
-�5�VJM�
-�䆕RӰB��a��4�P�@nXu6�H]�a��4�P�@nX)5
+T;�VJM�
-�䆕QgÊ�%�VJM�
-�䆕RӰB��a��4�P�@lX4
+2;V�
+$+�V�L�
-�䆕RӰB��ae�ٰ"u	䆕RӰB��a��4�P�@nX)5
+T;�VF�
+R�@nX)5
+T;�VJM�
-�䆕RӰB��ae�ٰ"u	䆕RӰB��a��4�P�@lX)t4�Ь8lX2
+";�V�L�
-�䆕RӰB��a��4�P�@nXu6�H]�a��4�P�@nX)5
+T;�VJM�
-�䆕QgÊ�%�VJM�
-�䆕RӰB��a��4�P�@nX	�ܰu
䆕RӰB��a��4�P�@lX)t4�Ь8nXs6�]�a��4�P�@nX)5
+T;�VJM�
-�䆕QgÊ�%�VJM�
-�䆕RӰB��a��4�P�@nXu6�H]�a��4�P�@nX)5
+T;�VJM�
-�䆕QgÊ�%�VJM�
-��BG�
-͊㆕2ӰB��ae�ٰ"u	䆕RӰB��a��4�P�@nX)5
+T;�VF�
+R�@nX)5
+T;�VJM�
-�䆕RӰB��ae�ٰ"u	䆕RӰB��a��4�P�@nX)5
+T;�VF�
+R�@lX)t4�Ь8nX)3
+D;�VJM�
-�䆕QgÊ�%�VJM�
-�䆕RӰB��a��4�P�@nX	�ܰu
䆕RӰB��a��4�P�@nX)5
+T;�VF�
+R�@nX)5
+T;�VJM�
-�䆕RӰB��ae�4���8lX�w�\�
-_c4��ϴ߰��?vy��I��GlX�G^��|y-S�ǨO}���������2����/�m�/��p�0�˟�����?�����������S����+\�S��W6O�_��ퟺ�"p���S�Jͩ{T;�O�u��'u	�S�Jͩ{T;�O�+5��Q�@>u�Ԝ�G��ԽQ�{R�@:u����=��ax�^���=�ǧS��v �����=�k ��WjNݣځ|�^�9u�j�{���=�ȧ�:Oݓ��{���=�ȧS��v ��WjNݣځ|�ި��=�K ��WjNݣځ|�^�9u�j�{���=����
�S�dv��W�8u�d��{e��=�ȧS��v ��7�<uO�ȧS��v ��WjNݣځ|�^�9u�j�{��S��.�|�^�9u�j�{���=�ȧS��v ��7�<uO�ȧS��v ��WjNݣځx�^���=����
�S�Dv��WfN�#ځ|�^�9u�j�{���=�ȧ�:Oݓ��{���=�ȧS��v ��WjNݣځ|�ި��=�K ��WjNݣځ|�^�9u�j�{���=�ȧ�z>u�ȧS��v ��WjNݣځx�^���=�ǧ�9O���{���=�ȧS��v ��WjNݣځ|�ި��=�K ��WjNݣځ|�^�9u�j�{���=�ȧ�:Oݓ��{���=�ȧS��v ��WjNݣځ|�ި��=�K ��WjNݣځx�^���=�ǧS��v ��7�<uO�ȧS��v ��WjNݣځ|�^�9u�j�{��S��.�|�^�9u�j�{���=�ȧS��v ��7�<uO�ȧS��v ��WjNݣځ|�^�9u�j�{��S��.�x�^���=�ǧS��v ��WjNݣځ|�ި��=�K ��WjNݣځ|�^�9u�j�{���=�ȧ�z>u�ȧS��v ��WjNݣځ|�^�9u�j�{��S��.�|�^�9u�j�{���=�ȧS��v ��7hNݓ�qx�~� �;u��1N�_�������OO?�}=u�����{�<O��O�
n�^�+�ݞ_i<�G^��~���돿�m}��������������~�����x<<��;>z�<t�>o>����p�t�ދ��n�^Q;pG}<<��w����wԗ�߹�Rݞ��v�����c���x��%pG=}wRݞ��v��z�n��={E����1��={E���ջ��p����,�K��zwxyy�����w�����U�g����>^�^��={E��������Q��YV����1ȿ��G���C�>���4�g�����>�{�n�^Q;�}�����os�YV����)��os��+j��h���+j��F~��^Q;�}��x�{���Ƴ�.�;����٪۳W��QwO���+j�χ�G�mn<{E�����ϥ��:�eu	�QOý�67���v��z���7����w���pk���+j��>�>����Q6;n�<}G�
g<{�����Xu{��ځ;�����~}�g�����r<�>�o8�YV������d���+j��G�mn<{E����1<�o8��+j�ߔ�9}�Nͳ���;��c�{�����w���p�$���+j��h���+j��OÍ�6�gY]wԻ��ˋT�g����>��Vݞ��v���|x�_��^1+�}��x8�$Ǚ�YF����<Zu{��ځ;��3x������w�ӧp'���+j��ޝ>�;��gY]w���p{/���+j��(��g�����>��n�^Q;p����p��*rT�@��ܩ�*rV;�"w긊��īȝ:�"g��*r��*rT�@��ܩ�*rV;��"w�v9��W�;s\E�h�U�J�U�.�x�S�U�v ^E��q9��W�;u\E�j�U�J�U�.�x�S�(���hN�h�v ��9u���ځ8��Ԍ����(�S�(���hN�h�v ��9u���ځ8��Ԍ����(�3����xF�h�F�X�8Es�Ec�qͨs��5Gќ:F�X�@Es�Ec�qͩc���Q4�f
�%Gќ:F�X�@Es�Ec�qͩc���Q4�f
�%Gќ:F�X�@Es�Ec�qͩc���Q4��Q44;�F����1Yq8���1��h�(�S�(���hJ�(�K ��9u���ځ8���1��j�(�S�(���hJ�(�K ��9u���ځ8���1��j�(�S�(���hJ�(�K ��9u���ځ8���1��j�(�C�Q46+�F�9Fѐ�8Es�Ec�qͩc���Q4��Q4V;Gє�Q4T�@Es�Ec�qͩc���Q4��Q4V;Gє�Q4T�@Es�Ec�qͩc���Q4��Q4V;Gь:G�H]qͩc���Q4��Q4V;�F�����Yq8��̌�!��(�S�(���hN�h�v ��9u���ځ8��Ԍ����(�S�(���hN�h�v ��9u���ځ8��Ԍ����(�S�(���hN�h�v ��9u���ځ8��Ԍ����(�S�(�H�h�F�ج8Es�Ec�qM�ECu	�Q4��Q4V;Gќ:F�X�@Es�Ec�qM�ECu	�Q4��Q4V;Gќ:F�X�@Es�Ec�qM�ECu	�Q4��Q4V;Gќ:F�X�@Es�Ec�qM�ECu	�Q4�n�hlV��9s��1ځ8���1��j�(�R3�����hN�h�v ��9u���ځ8���1��j�(�Q�(�k ��9u���ځ8���1��j�(�S�(���hJ�(�K ��9u���ځ8���1��j�(�S�(�H�h
-�hhv����E����|�����F��U.F�����s�*������t~���Wz=��w�����{�s�����v*endstream
+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
+�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{�)�&�Bub<��O�ڃO9u�S�� �SN]��=��RO�:)�r�%�b��0�r抧�A�����)V{�)�&�Bub<��O�ڃO9u�S�� �SN]��=��Qw<E��xʩ+�b�1�rꊧX�A�����)V{�)�&�Bub<��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�!��
+�=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Ũ��
+�c��(5�TP�A<���uH͚�C*��!D{��uR!u�!��
+�=ȇT��C*�� RQj��ڃ|HŨ��
+�c��(5�TP�A>���RA����RsH��C*F݇TH�|HE�9��j�!��
+�=ȇT��C*�� R1�>�B��C*ʼRA�v�(pRA�����2sH��C*B�Ru�!��
+�=ȇT��C*�� RQj��ڃ|HŨ��
+�c��(5�TP�A>���RA����RsH��C*F݇TH�|HE�9��j�!��
+�=ȇT��C*�� R1h���sxHE��
+�5LJT��C*�� RQj��ڃ|HŨ��
+�c��(5�TP�A>���RA����RsH��C*F݇TH�|HE�9��j�!��
+�=ȇT��C*�� R1�>�B��C*J�!T{��(5�TP�A<���uH͚�C*��!"{��(3�T�A>���RA����RsH��C*F݇TH�|HE�9��j�!��
+�=ȇT��C*�� R1�>�B��C*J�!T{��(5�TP�A>���RA����P��T@��|HE�9��j�!��
+�=��T���Ys|H��
+�c��(5�TP�A>���RA����RsH��C*F݇TH�|HE�9��j�!��
+�=ȇT��C*�� R1�>�B��C*J�!T{��(5�TP�A>���RA����Q�!R� RQj��ڃxHE��
+�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Ѩ;^$uR���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�!����Ҩ;�$ur��4��� W�JM�jb��UF�Ys�F2q$�=�y�2�G"ڃ\H*5�$�=ȑ�RSI�ڃ�Iu����AN%��V��ZR��%Q�A&��b��fҨ;�$ur6��t��� ��JM:�jr<��ԓ�� ��B����AN(�����R��(Q�A)�JJ4k�[Jc�1�9�R�S�ڃ\T*5I%�=�Q�RSU�ڃ�Uu����AN+�����R��+Q�A,������Ҩ;�$urf��t��� ��JMj�jrl��Ԗ�� ��F��%�c��K���D���T��.Ѭ9/������Ҩ;�$ur~������ �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��ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �
+]�;�5Dž�2S�#ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �F݅;�c�w��pG��pWj
+wT{�w��pG��p7�.�I�T�+�R��x;���W�b�q���� �B���A.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �F݅;�c�w��pG��pWj
+wT{�w��pG��p7h
+w2{wE��ɚ��]�)��A.ܕ�����ݨ�p'ur���� �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'tr���� �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�&�Fub�ԕA�ڃ�A;��A�Ys�A;seЌ� f�JM���ک+�f�1�v�ʠY�A̠��2hV{3h�&�Fub�ԕ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<������Ө;�$ur����� �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./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��F��%�c��Ke^�Koǰ�T�*/Q�9./������R����9��RS^�ڃ\^*5�%�=��RS^�ڃ\^u����A./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��MyIf�ay��U^"Ys\^*3�%�=��RS^�ڃ\^u����A./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��F��%�c��K���D���Tj�KT{�K���͚��Ґ)/��9./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��JMy�jry�Ԕ��� ��F��%�c��K���D���Tj�KT{��K���D���굼ury�Ԕ��� ��JMy�jby��U^�Ys\^s����A./������R�)/Q�A./������Ҩ��$ury�Ԕ��� ��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"urǤ�tL�� wLJMDŽjrǤ�tL�� wLF��c;&���	͚�I���A��	��ɨ�c"urǤ�tL�� wLJMDŽjrǤ�tL�� wLB�vL��A��	��I��P�A��	��ɨ�c"urǤ�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�Ys؅qe�ގ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$ur���T��� v�
+]!"�5�)�2�""ڃ\#u爤�A��"��&Q��Q�A���.��2Ѩ;M$ur���ԉ�� ��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#ur���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#ur���4j�� 7jJM��jr���4j�� 6jM�Ff�a���ը!Ysܨ)3��=ȍ�RӨ�ڃܨu7j��AnԔ�F
��FM�i�P�AnԔ�F
��Fͨ�Q#ur���4j�� 7jJM��jr���4j�� 7jFݍ�c�5��QC��QSj5T{5��F
͚�F͐iԈ�9nԔ�F
��FM�i�P�AnԔ�F
��Fͨ�Q#ur���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#ur���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�vs<�Ś�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����Ϩ;�#ub��Е�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��������Ҩ;�$urZ�Դ��� ו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%(�=�-�QwJ��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�yx���9��6��������ׇ�o���vz�����<���/ٞ����<�<��a}��q~����:����)@endstream
 endobj
-1206 0 obj <<
+1257 0 obj <<
 /Type /Page
-/Contents 1207 0 R
-/Resources 1205 0 R
+/Contents 1258 0 R
+/Resources 1256 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1058 0 R
-/Annots [ 1209 0 R 1210 0 R 1211 0 R 1212 0 R 1213 0 R 1214 0 R 1215 0 R 1216 0 R 1217 0 R 1218 0 R 1219 0 R 1220 0 R 1221 0 R 1222 0 R 1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1230 0 R 1231 0 R 1232 0 R 1233 0 R 1234 0 R 1235 0 R 1236 0 R 1237 0 R 1238 0 R 1239 0 R 1240 0 R 1241 0 R 1242 0 R 1243 0 R 1244 0 R 1245 0 R 1246 0 R 1247 0 R 1248 0 R 1249 0 R 1250 0 R 1251 0 R 1252 0 R 1253 0 R 1254 0 R 1255 0 R 1256 0 R 1257 0 R 1258 0 R 1259 0 R 1260 0 R 1261 0 R 1262 0 R 1263 0 R 1264 0 R 1265 0 R 1266 0 R 1267 0 R 1268 0 R 1269 0 R 1270 0 R 1271 0 R 1272 0 R 1273 0 R 1274 0 R 1275 0 R 1276 0 R 1277 0 R 1278 0 R 1279 0 R 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R 1287 0 R 1288 0 R ]
+/Parent 1106 0 R
+/Annots [ 1260 0 R 1261 0 R 1262 0 R 1263 0 R 1264 0 R 1265 0 R 1266 0 R 1267 0 R 1268 0 R 1269 0 R 1270 0 R 1271 0 R 1272 0 R 1273 0 R 1274 0 R 1275 0 R 1276 0 R 1277 0 R 1278 0 R 1279 0 R 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R 1287 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R 1292 0 R 1293 0 R 1294 0 R 1295 0 R 1296 0 R 1297 0 R 1298 0 R 1299 0 R 1300 0 R 1301 0 R 1302 0 R 1303 0 R 1304 0 R 1305 0 R 1306 0 R 1307 0 R 1308 0 R 1309 0 R 1310 0 R 1311 0 R 1312 0 R 1313 0 R 1314 0 R 1315 0 R 1316 0 R 1317 0 R 1318 0 R 1319 0 R 1320 0 R 1321 0 R 1322 0 R 1323 0 R 1324 0 R 1325 0 R 1326 0 R 1327 0 R 1328 0 R 1329 0 R 1330 0 R 1331 0 R 1332 0 R 1333 0 R 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R 1345 0 R 1346 0 R 1347 0 R 1348 0 R 1349 0 R 1350 0 R 1351 0 R 1352 0 R 1353 0 R ]
 >> endobj
-1209 0 obj <<
+1260 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 708.125 166.027 715.098]
+/Rect [119.552 708.244 223.78 715.098]
 /Subtype /Link
-/A << /S /GoTo /D (patchviewer) >>
+/A << /S /GoTo /D (os-win32) >>
 >> endobj
-1210 0 obj <<
+1261 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 708.125 537.983 715.098]
+/Rect [528.02 708.244 537.983 715.098]
 /Subtype /Link
-/A << /S /GoTo /D (patchviewer) >>
+/A << /S /GoTo /D (os-win32) >>
 >> endobj
-1211 0 obj <<
+1262 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 693.235 171.397 702.147]
+/Rect [143.462 695.293 221.101 702.147]
 /Subtype /Link
-/A << /S /GoTo /D (hintsandtips) >>
+/A << /S /GoTo /D (win32-perl) >>
 >> endobj
-1212 0 obj <<
+1263 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 693.235 537.983 702.147]
+/Rect [528.02 695.293 537.983 702.147]
 /Subtype /Link
-/A << /S /GoTo /D (hintsandtips) >>
+/A << /S /GoTo /D (win32-perl) >>
 >> endobj
-1213 0 obj <<
+1264 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 682.341 185.822 689.195]
+/Rect [143.462 682.341 270.913 689.195]
 /Subtype /Link
-/A << /S /GoTo /D (userpreferences) >>
+/A << /S /GoTo /D (win32-perl-modules) >>
 >> endobj
-1214 0 obj <<
+1265 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 682.341 537.983 689.195]
 /Subtype /Link
-/A << /S /GoTo /D (userpreferences) >>
+/A << /S /GoTo /D (win32-perl-modules) >>
 >> endobj
-1215 0 obj <<
+1266 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 667.333 194.43 676.244]
+/Rect [143.462 667.333 333 676.244]
 /Subtype /Link
-/A << /S /GoTo /D (reporting) >>
+/A << /S /GoTo /D (win32-code-changes) >>
 >> endobj
-1216 0 obj <<
+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 (reporting) >>
+/A << /S /GoTo /D (win32-code-changes) >>
 >> endobj
-1217 0 obj <<
+1268 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 654.381 139.646 663.293]
+/Rect [143.462 654.381 265.763 663.293]
 /Subtype /Link
-/A << /S /GoTo /D (flags) >>
+/A << /S /GoTo /D (win32-http) >>
 >> endobj
-1218 0 obj <<
+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 (flags) >>
+/A << /S /GoTo /D (win32-http) >>
 >> endobj
-1219 0 obj <<
+1270 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 639.173 160.059 648.06]
+/Rect [119.552 643.487 187.068 650.341]
 /Subtype /Link
-/A << /S /GoTo /D (faq) >>
+/A << /S /GoTo /D (os-macosx) >>
 >> endobj
-1220 0 obj <<
+1271 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 639.173 537.983 648.06]
+/Rect [528.02 643.487 537.983 650.341]
 /Subtype /Link
-/A << /S /GoTo /D (faq) >>
+/A << /S /GoTo /D (os-macosx) >>
 >> endobj
-1221 0 obj <<
+1272 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 623.831 152.746 632.717]
+/Rect [119.552 630.536 226.809 637.39]
 /Subtype /Link
-/A << /S /GoTo /D (troubleshooting) >>
+/A << /S /GoTo /D (os-mandrake) >>
 >> endobj
-1222 0 obj <<
+1273 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 623.831 537.983 632.717]
+/Rect [528.02 630.536 537.983 637.39]
 /Subtype /Link
-/A << /S /GoTo /D (troubleshooting) >>
+/A << /S /GoTo /D (os-mandrake) >>
 >> endobj
-1223 0 obj <<
+1274 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 610.291 177.534 617.265]
+/Rect [95.641 615.9 254.464 624.438]
 /Subtype /Link
-/A << /S /GoTo /D (general-advice) >>
+/A << /S /GoTo /D (nonroot) >>
 >> endobj
-1224 0 obj <<
+1275 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 610.291 537.983 617.265]
+/Rect [528.02 615.9 537.983 624.438]
 /Subtype /Link
-/A << /S /GoTo /D (general-advice) >>
+/A << /S /GoTo /D (nonroot) >>
 >> endobj
-1225 0 obj <<
+1276 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 595.402 324.033 604.314]
+/Rect [119.552 604.633 193.713 611.487]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-testserver) >>
+/A << /S /GoTo /D (870) >>
 >> endobj
-1226 0 obj <<
+1277 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 595.402 537.983 604.314]
+/Rect [528.02 604.633 537.983 611.487]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-testserver) >>
+/A << /S /GoTo /D (870) >>
 >> endobj
-1227 0 obj <<
+1278 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 583.168 400.057 591.362]
+/Rect [119.552 589.624 177.116 598.535]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-perlmodule) >>
+/A << /S /GoTo /D (874) >>
 >> endobj
-1230 0 obj <<
+1279 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 583.168 537.983 591.362]
+/Rect [528.02 589.624 537.983 598.535]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-perlmodule) >>
+/A << /S /GoTo /D (874) >>
 >> endobj
-1231 0 obj <<
+1280 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 569.499 311.111 578.411]
+/Rect [143.462 576.673 298.44 585.584]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-bundleBugzilla) >>
+/A << /S /GoTo /D (882) >>
 >> endobj
-1232 0 obj <<
+1281 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 569.499 537.983 578.411]
+/Rect [528.02 576.673 537.983 585.584]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-bundleBugzilla) >>
+/A << /S /GoTo /D (882) >>
 >> endobj
-1233 0 obj <<
+1282 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 556.548 244.133 565.459]
+/Rect [119.552 565.778 160.508 572.633]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-dbdSponge) >>
+/A << /S /GoTo /D (909) >>
 >> endobj
-1234 0 obj <<
+1283 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 556.548 537.983 565.459]
+/Rect [528.02 565.778 537.983 572.633]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-dbdSponge) >>
+/A << /S /GoTo /D (909) >>
 >> endobj
-1235 0 obj <<
+1284 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 543.597 244.81 552.508]
+/Rect [119.552 552.827 197.867 559.681]
 /Subtype /Link
-/A << /S /GoTo /D (paranoid-security) >>
+/A << /S /GoTo /D (install-perlmodules-nonroot) >>
 >> endobj
-1236 0 obj <<
+1285 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 543.597 537.983 552.508]
+/Rect [528.02 552.827 537.983 559.681]
 /Subtype /Link
-/A << /S /GoTo /D (paranoid-security) >>
+/A << /S /GoTo /D (install-perlmodules-nonroot) >>
 >> endobj
-1237 0 obj <<
+1286 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 531.621 346.19 539.557]
+/Rect [143.462 537.818 276.552 546.73]
 /Subtype /Link
-/A << /S /GoTo /D (trouble-filetemp) >>
+/A << /S /GoTo /D (928) >>
 >> endobj
-1238 0 obj <<
+1287 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 531.621 537.983 539.557]
+/Rect [528.02 537.818 537.983 546.73]
 /Subtype /Link
-/A << /S /GoTo /D (trouble-filetemp) >>
+/A << /S /GoTo /D (928) >>
 >> endobj
-1239 0 obj <<
+1288 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 517.694 304.407 526.605]
+/Rect [143.462 526.924 253.17 533.778]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-relogin-everyone) >>
+/A << /S /GoTo /D (941) >>
 >> endobj
-1240 0 obj <<
+1289 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 517.694 537.983 526.605]
+/Rect [528.02 526.924 537.983 533.778]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-relogin-everyone) >>
+/A << /S /GoTo /D (941) >>
 >> endobj
-1241 0 obj <<
+1290 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 504.742 312.018 513.654]
+/Rect [119.552 513.973 197.708 520.827]
 /Subtype /Link
-/A << /S /GoTo /D (3041) >>
+/A << /S /GoTo /D (974) >>
 >> endobj
-1242 0 obj <<
+1291 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 504.742 537.983 513.654]
+/Rect [528.02 513.973 537.983 520.827]
 /Subtype /Link
-/A << /S /GoTo /D (3041) >>
+/A << /S /GoTo /D (974) >>
 >> endobj
-1243 0 obj <<
+1292 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 491.791 348.133 500.702]
+/Rect [143.462 498.964 296.208 507.875]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-index) >>
+/A << /S /GoTo /D (977) >>
 >> endobj
-1244 0 obj <<
+1293 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 491.791 537.983 500.702]
+/Rect [528.02 498.964 537.983 507.875]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-index) >>
+/A << /S /GoTo /D (977) >>
 >> endobj
-1245 0 obj <<
+1294 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 478.839 489.072 487.751]
+/Rect [119.552 486.013 178.221 494.924]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-passwd-encryption) >>
+/A << /S /GoTo /D (986) >>
 >> endobj
-1246 0 obj <<
+1295 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 478.839 537.983 487.751]
+/Rect [528.02 486.013 537.983 494.924]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-passwd-encryption) >>
+/A << /S /GoTo /D (986) >>
 >> endobj
-1247 0 obj <<
+1296 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 465.534 117.668 472.518]
+/Rect [71.731 470.805 180.502 479.691]
 /Subtype /Link
-/A << /S /GoTo /D (patches) >>
+/A << /S /GoTo /D (administration) >>
 >> endobj
-1248 0 obj <<
+1297 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 465.534 537.983 472.518]
+/Rect [528.02 470.805 537.983 479.691]
 /Subtype /Link
-/A << /S /GoTo /D (patches) >>
+/A << /S /GoTo /D (administration) >>
 >> endobj
-1249 0 obj <<
+1298 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 450.092 241.901 457.066]
+/Rect [95.641 455.328 204.681 464.239]
 /Subtype /Link
-/A << /S /GoTo /D (cmdline) >>
+/A << /S /GoTo /D (parameters) >>
 >> endobj
-1250 0 obj <<
+1299 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 450.092 537.983 457.066]
+/Rect [528.02 455.328 537.983 464.239]
 /Subtype /Link
-/A << /S /GoTo /D (cmdline) >>
+/A << /S /GoTo /D (parameters) >>
 >> endobj
-1251 0 obj <<
+1300 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 435.203 292.402 444.115]
+/Rect [95.641 444.433 194.709 451.288]
 /Subtype /Link
-/A << /S /GoTo /D (cmdline-bugmail) >>
+/A << /S /GoTo /D (useradmin) >>
 >> endobj
-1252 0 obj <<
+1301 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 435.203 537.983 444.115]
+/Rect [528.02 444.433 537.983 451.288]
 /Subtype /Link
-/A << /S /GoTo /D (cmdline-bugmail) >>
+/A << /S /GoTo /D (useradmin) >>
 >> endobj
-1253 0 obj <<
+1302 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 421.898 238.135 428.882]
+/Rect [119.552 429.425 247.002 438.336]
 /Subtype /Link
-/A << /S /GoTo /D (install-perlmodules-manual) >>
+/A << /S /GoTo /D (defaultuser) >>
 >> endobj
-1254 0 obj <<
+1303 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 421.898 537.983 428.882]
+/Rect [528.02 429.425 537.983 438.336]
 /Subtype /Link
-/A << /S /GoTo /D (install-perlmodules-manual) >>
+/A << /S /GoTo /D (defaultuser) >>
 >> endobj
-1255 0 obj <<
+1304 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 406.456 162.331 413.43]
+/Rect [119.552 416.473 235.207 425.385]
 /Subtype /Link
-/A << /S /GoTo /D (modules-manual-instructions) >>
+/A << /S /GoTo /D (manageusers) >>
 >> endobj
-1256 0 obj <<
+1305 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 406.456 537.983 413.43]
+/Rect [528.02 416.473 537.983 425.385]
 /Subtype /Link
-/A << /S /GoTo /D (modules-manual-instructions) >>
+/A << /S /GoTo /D (manageusers) >>
 >> endobj
-1257 0 obj <<
+1306 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 393.504 198.326 400.478]
+/Rect [143.462 403.522 251.954 412.433]
 /Subtype /Link
-/A << /S /GoTo /D (modules-manual-download) >>
+/A << /S /GoTo /D (createnewusers) >>
 >> endobj
-1258 0 obj <<
+1307 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 393.504 537.983 400.478]
+/Rect [528.02 403.522 537.983 412.433]
 /Subtype /Link
-/A << /S /GoTo /D (modules-manual-download) >>
+/A << /S /GoTo /D (createnewusers) >>
 >> endobj
-1259 0 obj <<
+1308 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 378.615 187.516 387.527]
+/Rect [143.462 390.57 243.636 399.482]
 /Subtype /Link
-/A << /S /GoTo /D (modules-manual-optional) >>
+/A << /S /GoTo /D (modifyusers) >>
 >> endobj
-1260 0 obj <<
+1309 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 378.615 537.983 387.527]
+/Rect [528.02 390.57 537.983 399.482]
 /Subtype /Link
-/A << /S /GoTo /D (modules-manual-optional) >>
+/A << /S /GoTo /D (modifyusers) >>
 >> endobj
-1261 0 obj <<
+1310 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 365.31 229.548 372.294]
+/Rect [95.641 379.676 147.945 386.53]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl) >>
+/A << /S /GoTo /D (products) >>
 >> endobj
-1262 0 obj <<
+1311 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 365.31 537.983 372.294]
+/Rect [528.02 379.676 537.983 386.53]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl) >>
+/A << /S /GoTo /D (products) >>
 >> endobj
-1263 0 obj <<
+1312 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 349.988 143.232 356.842]
+/Rect [95.641 364.668 163.447 373.579]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-0) >>
+/A << /S /GoTo /D (components) >>
 >> endobj
-1264 0 obj <<
+1313 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 349.988 537.983 356.842]
+/Rect [528.02 364.668 537.983 373.579]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-0) >>
+/A << /S /GoTo /D (components) >>
 >> endobj
-1265 0 obj <<
+1314 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 334.979 217.961 343.89]
+/Rect [95.641 353.773 147.387 360.628]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-1) >>
+/A << /S /GoTo /D (versions) >>
 >> endobj
-1266 0 obj <<
+1315 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 334.979 537.983 343.89]
+/Rect [528.02 353.773 537.983 360.628]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-1) >>
+/A << /S /GoTo /D (versions) >>
 >> endobj
-1267 0 obj <<
+1316 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 322.028 178.839 330.939]
+/Rect [95.641 340.822 156.801 347.676]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-2) >>
+/A << /S /GoTo /D (milestones) >>
 >> endobj
-1268 0 obj <<
+1317 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 322.028 537.983 330.939]
+/Rect [528.02 340.822 537.983 347.676]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-2) >>
+/A << /S /GoTo /D (milestones) >>
 >> endobj
-1269 0 obj <<
+1318 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 309.076 187.426 317.988]
+/Rect [95.641 325.813 134.665 334.725]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-3) >>
+/A << /S /GoTo /D (flags-overview) >>
 >> endobj
-1270 0 obj <<
+1319 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 309.076 537.983 317.988]
+/Rect [528.02 325.813 537.983 334.725]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-3) >>
+/A << /S /GoTo /D (flags-overview) >>
 >> endobj
-1271 0 obj <<
+1320 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 298.182 160.956 305.036]
+/Rect [119.552 312.862 220.283 321.773]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-4) >>
+/A << /S /GoTo /D (flags-simpleexample) >>
 >> endobj
-1272 0 obj <<
+1321 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 298.182 537.983 305.036]
+/Rect [528.02 312.862 537.983 321.773]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-4) >>
+/A << /S /GoTo /D (flags-simpleexample) >>
 >> endobj
-1273 0 obj <<
+1322 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 283.173 198.315 292.085]
+/Rect [119.552 299.91 193.444 308.822]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-5) >>
+/A << /S /GoTo /D (flags-about) >>
 >> endobj
-1274 0 obj <<
+1323 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 283.173 537.983 292.085]
+/Rect [528.02 299.91 537.983 308.822]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-5) >>
+/A << /S /GoTo /D (flags-about) >>
 >> endobj
-1275 0 obj <<
+1324 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 272.279 209.653 279.133]
+/Rect [143.462 289.016 202.401 295.87]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-6) >>
+/A << /S /GoTo /D (flag-values) >>
 >> endobj
-1276 0 obj <<
+1325 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 272.279 537.983 279.133]
+/Rect [528.02 289.016 537.983 295.87]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-6) >>
+/A << /S /GoTo /D (flag-values) >>
 >> endobj
-1277 0 obj <<
+1326 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 257.27 255.401 266.182]
+/Rect [119.552 274.008 220.831 282.919]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-7) >>
+/A << /S /GoTo /D (flag-askto) >>
 >> endobj
-1278 0 obj <<
+1327 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 257.27 537.983 266.182]
+/Rect [528.02 274.008 537.983 282.919]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-7) >>
+/A << /S /GoTo /D (flag-askto) >>
 >> endobj
-1279 0 obj <<
+1328 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 246.376 150.635 253.23]
+/Rect [119.552 261.056 222.734 269.968]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-8) >>
+/A << /S /GoTo /D (flag-types) >>
 >> endobj
-1280 0 obj <<
+1329 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 246.376 537.983 253.23]
+/Rect [528.02 261.056 537.983 269.968]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-8) >>
+/A << /S /GoTo /D (flag-types) >>
 >> endobj
-1281 0 obj <<
+1330 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 233.305 154.161 240.279]
+/Rect [143.462 248.105 246.405 257.016]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-9) >>
+/A << /S /GoTo /D (flag-type-attachment) >>
 >> endobj
-1282 0 obj <<
+1331 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 233.305 537.983 240.279]
+/Rect [528.02 248.105 537.983 257.016]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-9) >>
+/A << /S /GoTo /D (flag-type-attachment) >>
 >> endobj
-1283 0 obj <<
+1332 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 220.473 239.291 227.327]
+/Rect [143.462 235.153 216.528 244.065]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-10) >>
+/A << /S /GoTo /D (flag-type-bug) >>
 >> endobj
-1284 0 obj <<
+1333 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 220.473 537.983 227.327]
+/Rect [528.02 235.153 537.983 244.065]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-10) >>
+/A << /S /GoTo /D (flag-type-bug) >>
 >> endobj
-1285 0 obj <<
+1334 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 205.465 271.65 214.376]
+/Rect [119.552 222.202 226.101 231.113]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-howto) >>
+/A << /S /GoTo /D (flags-admin) >>
 >> endobj
-1286 0 obj <<
+1335 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 205.465 537.983 214.376]
+/Rect [528.02 222.202 537.983 231.113]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl-howto) >>
+/A << /S /GoTo /D (flags-admin) >>
 >> endobj
-1287 0 obj <<
+1336 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 190.257 109.369 199.143]
+/Rect [143.462 209.25 237.269 218.162]
 /Subtype /Link
-/A << /S /GoTo /D (glossary) >>
+/A << /S /GoTo /D (flags-create) >>
 >> endobj
-1288 0 obj <<
+1337 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 190.257 537.983 199.143]
+/Rect [528.02 209.25 537.983 218.162]
 /Subtype /Link
-/A << /S /GoTo /D (glossary) >>
->> endobj
-1208 0 obj <<
-/D [1206 0 R /XYZ 71.731 729.265 null]
->> endobj
-1205 0 obj <<
-/Font << /F27 1064 0 R /F32 1071 0 R /F35 1229 0 R /F33 1160 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-1330 0 obj <<
-/Length 8008      
-/Filter /FlateDecode
->>
-stream
-xڭ�O���a��>�䁯���#�8A�ȧ$�5MQ�)��%۟>�|�z�z�](Q�z�aS;&U�پڔ�m_���y_���-���ջ��ۼ�P��?}��'�Ӳ;�����o���rwٿz{������w����f9�^��cS6�e�?���O������y�;_^?��~����~~������~�C#��{:�-wǛO��y{uf}������#���#��n�B7�a~|��������>�_���S�o��o����o?}ҟ�پ�����f��gz��r�]?���v���2t��u,/d_^��փ�P׳�j���;��zv�z�@�,�m��g'��V��6�L�gY��~9�݅�zv�z�@=-�K��g'���rJ����w��m��y���,�]�@-wpJ���D���Z�|U����D���Zn����D����\�>T�YV���Z�aw���D���Z�a{���D���Z�a���ىꁷ��v�܅os�,�]�@�/�K��S�NT��esN���D���zY��W�zv�z�m�X����Գ�v��\�!U׳�j�����ztbZ܀,w��p��	ꁷ�S��]�ֳ�v����6|��g'��r�T]�NT���p��ճ�o��M�`�3��e����pN���D���z,�÷�zv�z�@-�p���ىꁷ�K��C�ֳ�v��\�>|��g'��r
��m����8P�5lSu=;Q=�zW�a��ճ�v��\Ch>����a︤�d]�ND���e	����	�7��f�\��[�΢����?��zv�z�@-�p܇�zv�z�@-�p8��zv�z�mu[�a��,�]�@-װ;��zv�z�@-װ=��zv�z�@-װI���D����n���78�e�����;��zv�z�@=.�s��g'��˲;݅�zv�z�mu_�!�ɴe��d�����脴�Y.�
������Z.`��Գ�o���Y��,�]�@-��
���ى��\C��:;Q=p�^��]��g'��V���t	���gY��~٦_ �ى����N�����8P�5���zv�z�m�T����Գ�v��\�>U׳�j��]�W�NT���/��щiq��s����f=ʤ�
�r��\�NP���x��ֳ��e�\Ru=;Q=�z�,�s�Wϲ����9��6��D���Z�ᘪ�ى��\�!|��g'��V��5�C��e���v�{\=;Q=p�G]��zv�z�@-װI���D����a�Yw�{�΢���r���NT���pN���D���z^���G'���&��·V�e���������8P�v�����8P�-�����x[ݕk؅j=�j8P�5l�����8P�5�����8P���.U׳�o��Ͳ�dos:�j8Pw�%����D���z\��T]�NT�����\=;Q=�z(��Nt��.p��kا�zv�z�@-�~iZ�NL����ډ�NP���lC��e����ډ�NT��e�Ntv�z�@=/�K��g'��VO�e�Nt��.p��sX;�ى��\�1U׳�j���v���o��r
a�DgY�j��]��g'��r
a�Dg'��r
a�Dg'��V/�e&t��.p��S�~;:1-n@�mX>��	����Ω����x[�+w�Ot��.p��[�':;Q=p��k8��zv�z�@-��Otv�z�M��)��m�E���������8P�5�����8P��1�}&���x[�n�M8��YV����[�a�Dg'���9��zv�z�@-�&tv�z�muW�!�g=ʦ�
�r���vtBZ܀,�%tv�z�@-p�|�<%~�-��*{wYf���gl}|�u�M��6�ݘ����a��	�o�r�����a���>3܀�#O�ph�x|��ᗏ�|X���Ou�/����������??�پ~�R��~������=
�����v����^��O���7�ǯfW��a4ox����R���R�@��G�*��z W�#UT=�+����?���DmR�@��G�Z�G�:+�X+�(ZW�#SD=�+���\�����⏪r�?RU�G��������\�O�V�'����⏪r�?RU�G��������\�O�V�'����⏪r�?RU�G��������X�OPU���8��Gd��#iq\�LU��@��G�*��z W��U�I��������\�TU�Q�@��G�*��z W��U�I��������\�TU�Q�@��G�*��z W��U�I��������\�TU�Q�@��Gh���iqX�OHU���8��G�*��z W�#UT=�+����?���DmR�@��G�*��z W�#UT=�+����?���DmR�@��G�*��z W�#UT=�+����?���@}����r�?RU�G��������X��Z�G��⟘��Oh��HU�U���⏪r�?RU�G��⟨��Oj��HU�U���⏪r�?RU�G��⟨��Oj��HU�U���⏪r�?RU�G��⟨��Oj��HU�UĊ�֊?����T�Q����?�] W�#UT=�+����?���HU�U����?�] W�#UT=�+����?���HU�U����?�] W�#UT=�+����?���HU�U����?�] V�#�V�Ѵ8��G�*��z W�#UT=�+���*��v�\�TU�Q�@��G�*��z W�#UT=�+���\�����⏪r�?RU�G��������\�O�V�'����⏪r�?RU�G��������X�OPU���8��Gd��#iq\�LU��@���k�Q��c��_��OÊ?���po�o�b�]��=�둵������x��O������_~��im??|}��7>_��||u�T��o�?�Qپ}�����W/k��/>���.�?�"R���z �E���/P�@���H��_������>���.�?�"R���z �E���/P�@���H�8U�qL��q�] �c"U�T=��1��q���H�8U�qL��q�] �c"sǠx����-��1��q���@}ǀ��8&R5�A�y�Ǡ�<��T�cP�@�$jǐ��8&R5�A�y�Ǡ�<��T�cP�@�$jǐ��8&R5�A�y�Ǡ�<��T�cP�@�$��1dz�c"��c��8�D��1�z �c"U�T=��1���1�v�<��T�cP�@�D��1�z �c"U�T=��1���1�v�<��T�cP�@�D��1�z �c"U�T=��1���1�v�<��T�cP�@�D��1�z �c"��cд8�$��1Dz�c"S�D=��1��q���H�8U�qL��q�] �c"U�T=��1��q���H�8U�qL��q�] �c"U�T=��1��q���H�8U�qL�>�c@�y�Ǡ�<��T�cP�@�DhǠiq<�I�6�!��qL�j���8&R5�A�y�Ǡ�<�I�6�!��qL�j���8&R5�A�y�Ǡ�<�I�6�!��qL�j���8&R5�A�y�Ǡ�<�I�6�!��qL�j���8&B�8M��qLdj���8&Q�8��.��1��q���H�8U�qL�j���8&Q�8��.��1��q���H�8U�qL�j���8&Q�8��.��1��q���H�8U�qL�j���8&Q�8��.�1Z�1hZ�c"S�D=��1��q���Dm�R�@�D��1�z �c"U�T=��1��q���@}ǀ��8&R5�A�y�Ǡ�<��T�cP�@�$jǐ��8&R5�A�y�Ǡ�<��T�cP�@�$��1dz�c"��c��8�D��1�z �cƳ�h�ϱ�c��(�q��9��q��\^�ctd��o�c������n�������e�v��P�>^^]=�����:�;-ۧ�H/@��_�˚p�a?�7�rC]�NT����v��,�]�@�/��!T׳�j������ى����]2u=;Q=�z�.��S�ֳ�v�u��p��g'��Ӳ9��zv�z�@�,��%T׳�o��r
�
8R�YV���Z�ᐪ�ى��\C�Eb=:1-n@���̬HF='���	$�] N 3�N Y�@�@fj�@��8���:�d�q��@���2S��U�	d��	$���L�HV='���	$�] N 3�N Y�@�@fj�@��8���:�d�q��@���23�M Y��	d�H-'��Y'��z N �M I�q��uɪ�2S��U�	d��	$���H��.'��Z'��z N 3�N Y�@�@fj�@��8��TM Q�q��uɪ�2S��U�	d��	$�H��H4=�&��N ��8�@ff�@2�8���:�d�q��@���2S��U�	d��	$���L�HV='���	$�] N 3�N Y�@�@fj�@��8���:�d�q��@���2S��U�	d��	$�H�]'�lZM #�N ��8�@ff�@2�8���:�d�q��uɪ�2R5�D��	d��	$���L�HV='��Z'��z N #UHT�@�@fj�@��8���:�d�q��uɪ�2Q���>'��Z'��z N 3�N Y�@�@f�:�d��p��@"��2S��U�	d��	$���L�HV='���	$�] N 3�N Y�@�@fj�@��8���:�d�q��@���2S��U�	d��	$���L�HV='���	$�] N 3�N Y�@�@f�:�d��p��uɨ�2R5�D��	d��	$���L�HV='��Z'��z N #UHT�@�@fj�@��8���:�d�q��uɪ�2R5�D��	d��	$���L�HV='��Z'��z N #UHT�@�@f�:�d��p��uɨ�2S��U�	d�j�j��L�HV='��Z'��z N 3�N Y�@�@&j�@���2S��U�	d��	$���L�HV='���	$�] N 3�N Y�@�@fj�@��8���:�d�i�u����2#�	$���̬HF='���K&������p8����&�;�@��~7��u�y���=}����wm��������}�����ۇ�_~��eBֿ���Ϗ��g}��֞���y{7D����崵�����^<l���8^�%��zDZ������8��%�&zDZ�R�<"-��y	�q��Ӽ�l�< =�wy	�Y����D��<��x����hq<�ȶ���x�����iq<�KH����8^�%�FxDZO��-���8��%��wDZ��R�;"-��w	���dz��l�; =�7w	���ǃ���ގH��]BjlG����. ��H���]�3;⮢pd�hucG�u/�P;-��us�y]7&�8��%��uDZ�R�:"-�Wu	�Q�Ǔ��l�: =��t	�9��c��Ԗ�H��%]BjHG���. ۊH��
]BjBG���.!��#��x=���iq8�D-���0��%^�͑wƣ��f�D���\Bj0G���\. �ZH��\Bj*G���P.!��#��x%���iq<�ȶ���x����iq<�KHm㈴8^�%��qDZ������8��%�&qDZ�R{8"-�p�X�p^��.���x�����hq<�KHm���8^�%�pDZ����߀�8޾%��oDZ�R�7"-�Wo	���Ǔ��l�7 =��n	����c���֍H��[Bj�F����mN>���d����čH��[Bj�F���-븍��0��`[���q�kKH�ڈ�8�%�6mDZ/�R�6"-��l��l@zo�RS6"-��l	���+��Ԉ�H��	[@�������|�H���ZBj�F���r-!5\#��x��m����f-!5Y#��p���u�F�u��Pc5-��jٖj@z��R35"-�Gj	�������@�H��yZ@�u��۴��4�H��aZBj�F���*-!5J#��x��m����-!5G#��x���ڢiq�DKH
ш�8��d[��q�AK�:A#�:�h	����별���H���Y@���ǻ����H���YBjsF����,!58#��xn6'��fc���YBjjF����,!�3#��xe���iq<1ȶ0��x_����iq<.KHmˈ�8^�%��eDZ��Q�2�-7e�W'e�]��,�'#��xMk�`LF�nɮ�[��l�߇�_)�w8%�G�����ۺ%��_������:�q����O�|��wo��������_~Z�ү�?��?>|^�����m����÷��{��=<����VS��_x<?��ؔ����\^����+W/z\_y� �_A��������\bI��b!��K��Ȃ�r�%R�eA��������\hI��h!��NK��Ԃ�r�%R�kA�����ڂ��a�%!�n!����*� �\q�Tu\P�@n�D�j.�z ]�5]H����*���\w�T�]P�@n�D�*/�z �^��^H����*���\}�Tu_P�@n�D��/�z `��j��HU	U�L����b&BkM��2Lb�6�] �a"U�T=�+1��N�ȭ�HU-U�bL��f�] wc"U�T=��1��~��
�HUEU�L����] �d"UET=��2�����m�HU]U��L����] wf"U�T=k3Z{3hZ7g"S�D=��3���3�v�ܟ�ThP�@��D�:4�z �h"U5T=��4�ښ4�v�ܥ�T�iP�@��D��4�z 7j"U�T=�K5��Z5�v�ܫ�TkP�@��D��5�z �k"U�T=�6��6�v�ر��Z�A��f��� �ܴ�TUmP�@.�$jkې�r�&RU�A��r��ܠ�ܺ�T�nP�@.��s��>��7���
����HU�U�N�����r	'Q[��.�{8��"��U�HUU�6N�����b!'A��!�㰓������q-'2��A���C͐���ϱvs��n?,猟����<���C�������?�s�����������������s�����������}��͠��:$��[���ŏ;$/:$�z wH"UT=�;$��	���DmR�@�D�:$�z wH"UT=;$Z;$hZvHR"=�;$��	���HU�U�I��C��r�$Q[���.�;$��	���HU�U�I��C��r�$Q[���.�;$��	���HU�U�I��C��r�$P�;$����!�TuHP�@�D�:$�z vH"�vHд8�$f��r�$R�!A��C�ꐠ��!�TuHP�@�$j됐�r�$R�!A��C�ꐠ��!�TuHP�@�$j됐�r�$R�!A��C�ꐠ��!�TuHP�@�$j됐�r�$R�!A��C��C���q�$2�!A��C���CBj��HU�U�I��C��r�$R�!A��C���CBj��HU�U�I��C��r�$R�!A��C���CBj��HU�U�I��C��r�$R�!A��C���CBj���4-�;$��	���HU�U�I��	�] wH"UT=�;$��	���HU�U�I�>wH@��C�ꐠ��!�TuHP�@�D�:$�z wH�uHH��C�ꐠ��!�TuHP�@�D�:$�z vHT2=;$Y;$HZwH"SD=�;$��B�!��X;$W���s<wH��ޞ��!9\����yʯޟ�g���s�yz��=�s������endstream
-endobj
-1329 0 obj <<
-/Type /Page
-/Contents 1330 0 R
-/Resources 1328 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 1058 0 R
-/Annots [ 1332 0 R 1333 0 R 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R 1345 0 R ]
+/A << /S /GoTo /D (flags-create) >>
 >> endobj
-1332 0 obj <<
+1338 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 677.798 200.517 686.71]
+/Rect [143.462 196.299 237.269 205.21]
 /Subtype /Link
-/A << /S /GoTo /D (lifecycle-image) >>
+/A << /S /GoTo /D (flags-delete) >>
 >> endobj
-1333 0 obj <<
+1339 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 677.798 537.983 686.71]
+/Rect [528.02 196.299 537.983 205.21]
 /Subtype /Link
-/A << /S /GoTo /D (lifecycle-image) >>
+/A << /S /GoTo /D (flags-delete) >>
 >> endobj
-1334 0 obj <<
+1340 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 612.168 276.242 621.079]
+/Rect [143.462 183.348 232.298 192.259]
 /Subtype /Link
-/A << /S /GoTo /D (security-mysql-account-root) >>
+/A << /S /GoTo /D (flags-edit) >>
 >> endobj
-1335 0 obj <<
+1341 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 612.168 537.983 621.079]
+/Rect [528.02 183.348 537.983 192.259]
 /Subtype /Link
-/A << /S /GoTo /D (security-mysql-account-root) >>
+/A << /S /GoTo /D (flags-edit) >>
 >> endobj
-1336 0 obj <<
+1342 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 599.216 256.975 608.128]
+/Rect [95.641 170.396 139.467 179.308]
 /Subtype /Link
-/A << /S /GoTo /D (security-mysql-account-anonymous) >>
+/A << /S /GoTo /D (voting) >>
 >> endobj
-1337 0 obj <<
+1343 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 599.216 537.983 608.128]
+/Rect [528.02 170.396 537.983 179.308]
 /Subtype /Link
-/A << /S /GoTo /D (security-mysql-account-anonymous) >>
+/A << /S /GoTo /D (voting) >>
 >> endobj
-1338 0 obj <<
+1344 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 586.265 224.108 595.176]
+/Rect [95.641 157.445 136.876 166.356]
 /Subtype /Link
-/A << /S /GoTo /D (security-mysql-network-ex) >>
+/A << /S /GoTo /D (quips) >>
 >> endobj
-1339 0 obj <<
+1345 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 586.265 537.983 595.176]
+/Rect [528.02 157.445 537.983 166.356]
 /Subtype /Link
-/A << /S /GoTo /D (security-mysql-network-ex) >>
+/A << /S /GoTo /D (quips) >>
 >> endobj
-1340 0 obj <<
+1346 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 573.313 232.905 582.225]
+/Rect [95.641 144.493 227.905 153.405]
 /Subtype /Link
-/A << /S /GoTo /D (security-bugzilla-charset-ex) >>
+/A << /S /GoTo /D (groups) >>
 >> endobj
-1341 0 obj <<
+1347 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 573.313 537.983 582.225]
+/Rect [528.02 144.493 537.983 153.405]
 /Subtype /Link
-/A << /S /GoTo /D (security-bugzilla-charset-ex) >>
+/A << /S /GoTo /D (groups) >>
 >> endobj
-1342 0 obj <<
+1348 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 560.362 343.17 569.273]
+/Rect [119.552 131.542 215.571 140.453]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-relogin-everyone-share) >>
+/A << /S /GoTo /D (1446) >>
 >> endobj
-1343 0 obj <<
+1349 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 560.362 537.983 569.273]
+/Rect [528.02 131.542 537.983 140.453]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-relogin-everyone-share) >>
+/A << /S /GoTo /D (1446) >>
 >> endobj
-1344 0 obj <<
+1350 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 547.41 348.43 556.322]
+/Rect [119.552 118.59 257.085 127.502]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-relogin-everyone-restrict) >>
+/A << /S /GoTo /D (1473) >>
 >> endobj
-1345 0 obj <<
+1351 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 547.41 537.983 556.322]
+/Rect [528.02 118.59 537.983 127.502]
 /Subtype /Link
-/A << /S /GoTo /D (trbl-relogin-everyone-restrict) >>
+/A << /S /GoTo /D (1473) >>
 >> endobj
-1331 0 obj <<
-/D [1329 0 R /XYZ 71.731 729.265 null]
+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) >>
 >> endobj
-10 0 obj <<
-/D [1329 0 R /XYZ 214.067 703.236 null]
+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) >>
 >> endobj
-14 0 obj <<
-/D [1329 0 R /XYZ 235.902 637.605 null]
+1259 0 obj <<
+/D [1257 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1328 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F33 1160 0 R >>
+1256 0 obj <<
+/Font << /F27 1112 0 R /F32 1119 0 R /F33 1210 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1355 0 obj <<
-/Length 2165      
+1403 0 obj <<
+/Length 52210     
 /Filter /FlateDecode
 >>
 stream
-xڭYے۸}�W�����(�����3��L�q�ֳN��<@$$!&	���|}�q#	R�u6�*�$���>�ळ���]�����l�ϊ�M2;������l�q�gp=���׻x��-{�߬�e�Y���|?{>z-�:����s����L.���2��Eil~�x����Is�ز�����'-4��Y����gq��iyi�<��<ͣW�Ng+�9γ$�&���
-����~����4��Z�eu�IT�i�̝{Z���������I1O�75O�$I��_nn��W����2���[+��=��Uq:%��nv�����
-m�S�w�ڢC�3tj��>PQ3)���3'AEKkz8���†��� �i���iT����l�R���Am7�c����s�NP��+�'s������O������O�4M#*:�'V�p>h����(g�|���Ηit��<�p�������cH�[C�B�M���#Sgs���?5�M��B����\��c��	���"k���<�%�'/�I���2�����W������0Ӊ�LV��cMQ���%��|��'��~���M���'���Y�6��C(c��r�M�^��C��4�|U���Uݡ ��	h�����m	�_���'�f��/��L��LN�R�^X�wK��Y:U�9�d��l��	�6�)iv��.�j��K����F7��1O�,i�t�¬\���Y���N_*JR�I�0���π����@��m��l����#YV�������*�,ȏ<�24ܗư��ɰ �X�M��BO,�>_TG*��Xl�jJ�HZ�g*(�B��رf9vY0�����n����5y���)�B���z>a
8�
-R0*��$S���hh�|����V���t!B5�����ai��������������H��{'��kxf_7W¬Do\�ݮ��`�
S��g�E��5tZK��He^�T��7m�	�l��<ϣ�l� xA�}�9� �b��7�������6l�cj*+ڊ� ^�:l9�`\(�3y�mU�ޡ�h��:(�������rM��=�@Z��+�w�Q;��a"�������5��w���%0;U��D�hY��
-4x�9�^�m�,�	]1��(�M���P�%����&R�����#�����I~�D��r	k,�B?Ү0��%���-C9Ԍ��xOo�n����R����6Cc�S4�D���uZ0�%/E>#�zN�Ϙn�reCE�����'�Rq,n�Qⓣ�u<v�^�J��@���t�# �\i�Ya�
-�m��fb��0Z�+xI-����/@WwA��U�#����!�BHTWk���=�dA荺���:��.SH�i}���C��64�Oo5⮑t�Z�!�����h���-�0I�ZЉj����S#���$�<漕{Yɺ�c�V-iu�
�^���� j�<�[������k�^�ͧ����D��֐�
��L���tg7UZ�g$�)�����S@��ƨ!ux���~��Lx��XydM���i��t�+<��ZS�.�C���`�‡���,��3I�u�!�9�ݦFa@�C�&��&�	{�|�=)��fH���;X�G<��mV�Y������z���cr(�&���cgZ��YQ�CZ̈�x���*~u�=<oaʀR�ϧ�/�o#�~��B���5��*���������e�����w�ѵ��O�C��:WWzP�Wru�`��|
-��\��3ݚr�����3���?��@8'�n\�h?�r�+(�뙹�+���ᔇ�X:�����gw�&yzk�n_��Ȟf�E����)�娒�
-k�r�c~�aU7Z�����<�W�9��]���0�>Q�f�=��d	�h�9Jk0Ҹ���!�BLN�����ې�<q� �6����6]_�0�'� �����`�o��DHo|�#h�h�p����q�������܃>0D��H3*�~���ì��~�1�V��\���R95O�� }�T�z�`I]���"��/�tM�ꯂ��?��.�Kڗ���:��AE��0�s+�	+X�#��]u}�w���0���7���rڿ�l��t7����Xv[�N �h��:N/Eϔ�"�g����[l3�endstream
+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��m؅suvE���:߆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[	��
+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�} OG�&�Q�@��TM��<1��F�yb8Q��0�] OG�&�Q�@��TM��<1��F�yb8Q��0�] OG�&�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�hZOG�&��@�N�61Lj�Ñ��aT=�'�#Uèz OG�&�Q�@�N�61Lj�Ñ��aT=�'�#Uèz OG�&�Q�@�N�61Lj�Ñ��aT=�'�#Uèz OG�&�Q�@�N�61Lj��Z�hZOG�&��@��TM��<1��mb��.�'�#Uèz OG�&�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���������~��\�������#��
+(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�"��
+HZ�"SmD=��
+�����m�DmmR�@n+D��
+�z �"UmT=��
+�����m�DmmR�@n+D��
+�z �"UmT=��
+�����m�DmmR�@n+D��
+�z �"UmT=�
+Zm4-�
+	����m��T[Q�B�����r[!R�V@�������@j�m�HU[U�B�����r[!R�V@�������@j�m�HU[U�B�����r[!R�V@�������} �"UmT=��
+�����m�����m��lmB�@n+D��
+�z �"UmT=��
+�����m�DmmR�@n+D��
+�z �"UmT=��
+�����m�DmmR�@n+D��
+�z �"UmT=��
+�����m�DmmR�@n+D��
+�z �"��
+hZ�"SmD=��
+���
+�v��V�T�P�@n+D��
+�z �"UmT=��
+���
+�v��V�T�P�@n+D��
+�z �"UmT=��
+���
+�v��V�T�P�@n+D��
+�z �"UmT=��
+���
+�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�
+��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*�&�ҽ%�!
+���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�RA�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$RUA���*���\I�V!��bH����r1$RUA���*���\I�V!��bH����r1$RUA���*���\	�{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$RUA���*���\�TCP�@.�$j+���r1$RUA���*���\�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��I΀l��@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��m؅suvE���:߆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��QT{�C��QT{�C��QT{�è�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
+�=�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��@�rdC��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���
+��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�
+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>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�
+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�#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
+�ԤШ� ��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
+�jr
+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
+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
 endobj
-1354 0 obj <<
+1402 0 obj <<
 /Type /Page
-/Contents 1355 0 R
-/Resources 1353 0 R
+/Contents 1403 0 R
+/Resources 1401 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1058 0 R
-/Annots [ 1359 0 R ]
+/Parent 1106 0 R
+/Annots [ 1405 0 R 1406 0 R 1407 0 R 1408 0 R 1409 0 R 1410 0 R 1411 0 R 1412 0 R 1413 0 R 1414 0 R 1415 0 R 1416 0 R 1417 0 R 1418 0 R 1419 0 R 1420 0 R 1421 0 R 1422 0 R 1423 0 R 1424 0 R 1425 0 R 1426 0 R 1427 0 R 1428 0 R 1429 0 R 1430 0 R 1431 0 R 1432 0 R 1433 0 R 1434 0 R 1435 0 R 1438 0 R 1439 0 R 1440 0 R 1441 0 R 1442 0 R 1443 0 R 1444 0 R 1445 0 R 1446 0 R 1447 0 R 1448 0 R 1449 0 R 1450 0 R 1451 0 R 1452 0 R 1453 0 R 1454 0 R 1455 0 R 1456 0 R 1457 0 R 1458 0 R 1459 0 R 1460 0 R 1461 0 R 1462 0 R 1463 0 R 1464 0 R 1465 0 R 1466 0 R 1467 0 R 1468 0 R 1469 0 R 1470 0 R 1471 0 R 1472 0 R 1473 0 R 1474 0 R 1475 0 R 1476 0 R 1477 0 R 1478 0 R 1479 0 R 1480 0 R 1481 0 R 1482 0 R 1483 0 R 1484 0 R 1485 0 R 1486 0 R 1487 0 R 1488 0 R 1489 0 R 1490 0 R 1491 0 R 1492 0 R 1493 0 R 1494 0 R 1495 0 R 1496 0 R ]
 >> endobj
-1359 0 obj <<
+1405 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [394.071 582.727 437.154 590.748]
+/Rect [119.552 706.187 315.485 715.098]
 /Subtype /Link
-/A << /S /GoTo /D (gfdl) >>
+/A << /S /GoTo /D (1501) >>
 >> endobj
-1161 0 obj <<
-/D [1354 0 R /XYZ 71.731 718.306 null]
+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) >>
 >> endobj
-18 0 obj <<
-/D [1354 0 R /XYZ 350.659 703.236 null]
+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) >>
 >> endobj
-1162 0 obj <<
-/D [1354 0 R /XYZ 71.731 692.504 null]
+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) >>
 >> endobj
-22 0 obj <<
-/D [1354 0 R /XYZ 285.389 651.159 null]
+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) >>
 >> endobj
-1356 0 obj <<
-/D [1354 0 R /XYZ 71.731 638.721 null]
+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) >>
 >> endobj
-1357 0 obj <<
-/D [1354 0 R /XYZ 71.731 627.443 null]
+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) >>
 >> endobj
-1358 0 obj <<
-/D [1354 0 R /XYZ 71.731 617.481 null]
+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) >>
 >> endobj
-1360 0 obj <<
-/D [1354 0 R /XYZ 71.731 577.746 null]
+1413 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 654.381 229.309 663.293]
+/Subtype /Link
+/A << /S /GoTo /D (upgrading) >>
 >> endobj
-1163 0 obj <<
-/D [1354 0 R /XYZ 71.731 546.646 null]
+1414 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 (upgrading) >>
+>> endobj
+1415 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 643.487 226.649 650.341]
+/Subtype /Link
+/A << /S /GoTo /D (upgrading-version-defns) >>
+>> endobj
+1416 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 643.487 537.983 650.341]
+/Subtype /Link
+/A << /S /GoTo /D (upgrading-version-defns) >>
+>> endobj
+1417 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 628.478 294.973 637.39]
+/Subtype /Link
+/A << /S /GoTo /D (upgrading-methods) >>
+>> endobj
+1418 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 628.478 537.983 637.39]
+/Subtype /Link
+/A << /S /GoTo /D (upgrading-methods) >>
+>> endobj
+1419 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [143.462 615.527 269.379 624.438]
+/Subtype /Link
+/A << /S /GoTo /D (upgrade-cvs) >>
+>> endobj
+1420 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 615.527 537.983 624.438]
+/Subtype /Link
+/A << /S /GoTo /D (upgrade-cvs) >>
+>> endobj
+1421 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [143.462 602.575 290.121 611.487]
+/Subtype /Link
+/A << /S /GoTo /D (upgrade-tarball) >>
+>> endobj
+1422 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 602.575 537.983 611.487]
+/Subtype /Link
+/A << /S /GoTo /D (upgrade-tarball) >>
+>> endobj
+1423 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [143.462 589.624 279.88 598.535]
+/Subtype /Link
+/A << /S /GoTo /D (upgrade-patches) >>
+>> endobj
+1424 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 (upgrade-patches) >>
+>> endobj
+1425 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 576.673 255.152 585.584]
+/Subtype /Link
+/A << /S /GoTo /D (upgrading-completion) >>
+>> endobj
+1426 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 (upgrading-completion) >>
+>> endobj
+1427 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 561.465 154.48 570.351]
+/Subtype /Link
+/A << /S /GoTo /D (security) >>
+>> endobj
+1428 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 561.465 537.983 570.351]
+/Subtype /Link
+/A << /S /GoTo /D (security) >>
+>> endobj
+1429 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 545.988 184.746 554.899]
+/Subtype /Link
+/A << /S /GoTo /D (security-os) >>
+>> endobj
+1430 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 545.988 537.983 554.899]
+/Subtype /Link
+/A << /S /GoTo /D (security-os) >>
+>> endobj
+1431 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 535.093 197.329 541.948]
+/Subtype /Link
+/A << /S /GoTo /D (security-os-ports) >>
+>> endobj
+1432 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 535.093 537.983 541.948]
+/Subtype /Link
+/A << /S /GoTo /D (security-os-ports) >>
+>> endobj
+1433 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 520.085 235.217 528.996]
+/Subtype /Link
+/A << /S /GoTo /D (security-os-accounts) >>
+>> endobj
+1434 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 520.085 537.983 528.996]
+/Subtype /Link
+/A << /S /GoTo /D (security-os-accounts) >>
+>> endobj
+1435 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 509.102 211.048 516.045]
+/Subtype /Link
+/A << /S /GoTo /D (security-os-chroot) >>
+>> endobj
+1438 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 509.102 537.983 516.045]
+/Subtype /Link
+/A << /S /GoTo /D (security-os-chroot) >>
+>> endobj
+1439 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 494.182 145.733 503.093]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql) >>
+>> endobj
+1440 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 494.182 537.983 503.093]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql) >>
+>> endobj
+1441 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 481.23 263.172 490.142]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-account) >>
+>> endobj
+1442 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 481.23 537.983 490.142]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-account) >>
+>> endobj
+1443 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 468.279 321.663 477.19]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-root) >>
+>> endobj
+1444 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 468.279 537.983 477.19]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-root) >>
+>> 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]
+/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]
+/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]
+/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]
+/Subtype /Link
+/A << /S /GoTo /D (security-webserver) >>
+>> endobj
+1449 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 429.425 373.596 438.336]
+/Subtype /Link
+/A << /S /GoTo /D (security-webserver-access) >>
+>> endobj
+1450 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 429.425 537.983 438.336]
+/Subtype /Link
+/A << /S /GoTo /D (security-webserver-access) >>
+>> endobj
+1451 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 416.473 307.406 425.385]
+/Subtype /Link
+/A << /S /GoTo /D (security-webserver-mod-throttle) >>
+>> endobj
+1452 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 416.473 537.983 425.385]
+/Subtype /Link
+/A << /S /GoTo /D (security-webserver-mod-throttle) >>
+>> endobj
+1453 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 403.522 146.839 412.433]
+/Subtype /Link
+/A << /S /GoTo /D (security-bugzilla) >>
+>> endobj
+1454 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 403.522 537.983 412.433]
+/Subtype /Link
+/A << /S /GoTo /D (security-bugzilla) >>
+>> endobj
+1455 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 390.57 317.935 399.482]
+/Subtype /Link
+/A << /S /GoTo /D (security-bugzilla-charset) >>
+>> endobj
+1456 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 390.57 537.983 399.482]
+/Subtype /Link
+/A << /S /GoTo /D (security-bugzilla-charset) >>
+>> endobj
+1457 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 375.362 172.203 384.249]
+/Subtype /Link
+/A << /S /GoTo /D (customization) >>
+>> endobj
+1458 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 375.362 537.983 384.249]
+/Subtype /Link
+/A << /S /GoTo /D (customization) >>
+>> endobj
+1459 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 359.886 210.619 368.797]
+/Subtype /Link
+/A << /S /GoTo /D (cust-templates) >>
+>> endobj
+1460 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 359.886 537.983 368.797]
+/Subtype /Link
+/A << /S /GoTo /D (cust-templates) >>
+>> endobj
+1461 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 346.934 261.07 355.846]
+/Subtype /Link
+/A << /S /GoTo /D (template-directory) >>
+>> endobj
+1462 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 346.934 537.983 355.846]
+/Subtype /Link
+/A << /S /GoTo /D (template-directory) >>
+>> endobj
+1463 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 333.983 283.665 342.894]
+/Subtype /Link
+/A << /S /GoTo /D (template-method) >>
+>> endobj
+1464 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 333.983 537.983 342.894]
+/Subtype /Link
+/A << /S /GoTo /D (template-method) >>
+>> endobj
+1465 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 321.031 238.734 329.943]
+/Subtype /Link
+/A << /S /GoTo /D (template-edit) >>
+>> endobj
+1466 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 321.031 537.983 329.943]
+/Subtype /Link
+/A << /S /GoTo /D (template-edit) >>
+>> endobj
+1467 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 308.08 259.307 316.991]
+/Subtype /Link
+/A << /S /GoTo /D (template-formats) >>
+>> endobj
+1468 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 308.08 537.983 316.991]
+/Subtype /Link
+/A << /S /GoTo /D (template-formats) >>
+>> endobj
+1469 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 295.128 226.34 304.04]
+/Subtype /Link
+/A << /S /GoTo /D (template-specific) >>
+>> endobj
+1470 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 295.128 537.983 304.04]
+/Subtype /Link
+/A << /S /GoTo /D (template-specific) >>
+>> endobj
+1471 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 282.177 351.988 291.088]
+/Subtype /Link
+/A << /S /GoTo /D (template-http-accept) >>
+>> endobj
+1472 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 282.177 537.983 291.088]
+/Subtype /Link
+/A << /S /GoTo /D (template-http-accept) >>
+>> endobj
+1473 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 269.226 178.51 278.137]
+/Subtype /Link
+/A << /S /GoTo /D (cust-hooks) >>
+>> endobj
+1474 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 269.226 537.983 278.137]
+/Subtype /Link
+/A << /S /GoTo /D (cust-hooks) >>
+>> endobj
+1475 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 256.274 261.398 265.185]
+/Subtype /Link
+/A << /S /GoTo /D (cust-change-permissions) >>
+>> endobj
+1476 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 256.274 537.983 265.185]
+/Subtype /Link
+/A << /S /GoTo /D (cust-change-permissions) >>
+>> endobj
+1477 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 243.323 246.206 252.234]
+/Subtype /Link
+/A << /S /GoTo /D (dbmodify) >>
+>> endobj
+1478 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 243.323 537.983 252.234]
+/Subtype /Link
+/A << /S /GoTo /D (dbmodify) >>
+>> endobj
+1479 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 230.371 272.736 239.283]
+/Subtype /Link
+/A << /S /GoTo /D (dbdoc) >>
+>> endobj
+1480 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 230.371 537.983 239.283]
+/Subtype /Link
+/A << /S /GoTo /D (dbdoc) >>
+>> endobj
+1481 0 obj <<
+/Type /Annot
+/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) >>
+>> 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) >>
+>> 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) >>
+>> 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) >>
+>> endobj
+1485 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 191.517 286.315 200.428]
+/Subtype /Link
+/A << /S /GoTo /D (integration) >>
+>> endobj
+1486 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 191.517 537.983 200.428]
+/Subtype /Link
+/A << /S /GoTo /D (integration) >>
+>> endobj
+1487 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 180.623 172.134 187.477]
+/Subtype /Link
+/A << /S /GoTo /D (bonsai) >>
+>> endobj
+1488 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 180.623 537.983 187.477]
+/Subtype /Link
+/A << /S /GoTo /D (bonsai) >>
+>> endobj
+1489 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 167.671 163.835 174.525]
+/Subtype /Link
+/A << /S /GoTo /D (cvs) >>
+>> endobj
+1490 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 167.671 537.983 174.525]
+/Subtype /Link
+/A << /S /GoTo /D (cvs) >>
+>> endobj
+1491 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 154.72 201.733 161.574]
+/Subtype /Link
+/A << /S /GoTo /D (scm) >>
+>> endobj
+1492 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 154.72 537.983 161.574]
+/Subtype /Link
+/A << /S /GoTo /D (scm) >>
+>> endobj
+1493 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 141.768 188.991 148.623]
+/Subtype /Link
+/A << /S /GoTo /D (svn) >>
+>> endobj
+1494 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 141.768 537.983 148.623]
+/Subtype /Link
+/A << /S /GoTo /D (svn) >>
+>> endobj
+1495 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 128.817 234.52 135.671]
+/Subtype /Link
+/A << /S /GoTo /D (tinderbox) >>
+>> endobj
+1496 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 128.817 537.983 135.671]
+/Subtype /Link
+/A << /S /GoTo /D (tinderbox) >>
+>> endobj
+1404 0 obj <<
+/D [1402 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1401 0 obj <<
+/Font << /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R /F33 1210 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1544 0 obj <<
+/Length 58787     
+/Filter /FlateDecode
+>>
+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�����~|r޷y�-���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
+��q
+j�)AIY8�@�2()��Q�%e������q��V���������t�0?�0�'���m�9��W.8N>�2�')ǽ�Q&�$e�8�4ʴ��,��B9COP6�3O�L�I��q�i�I<IY8<�2}')�u�Pθ����(Sv��p�ue�NR��N�L�I��a�)�	:AX0�9�oԜ仄q�i�I9�X89�2')��PΈ����(Sp��p�oe�MR��M�L�I��q�)�3�e�8�4�T��,7�F�d����`�(�k��p\k
+�5A�8N5�2�&)ǝ�Q&�$e�0�4��h������%�_�8�4�ԙd,��F�4����0�(�e��p\e
+�2A�8N2�2E&)�=�Q&�$e�8�4ʴ��,��B9CLP6�3L�L�I��q�i�I0IY80�2�%)���m�9��W.8N/�2�%)�ݥQ&�$e�0�4��\���ť�������(S[��p�ZeRKR�CK�LgI��qe)�3�e�8�4���,��F�������(�V��p\V
+�+A�8�*�2U%)�M�Q&�$e�8�4����,הB9cJP6�SJ�LII��aGi�#�$�%�#J#LCI��qA)�3�e�8�4�ԓ�,��F�t����p�(�M��p\M
+�&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
+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
+9��R������E9�����(k�6�c�
+Y (ʚ��
��EY�����(k�6�c�
+Y (ʚ��
��EY�����(k�6�c�
+Y (ʚ��
��EY�����(�P�Y8P�2
+)��r&@Ai9@Q�(hm (ʚ��
���Xg�B����&@Ak9@Q�(hm (ʚ��
���Xg�B����&@Ak9@Q�(hm (ʚ��
��EX�
+XW (ʚ��
��EY�����(�P�Y8P�s($]��(k�6�eM���r���	P��@P�u(d]��(k�6�eM���r���	P��@P�u(d]��(k�6�eM���r���	P��@P�u(d]��(k�6%
+:��r&@Ai9@1���ur���	P��@P�5
+Z���&@Ak9@1���ur���	P��@P�5
+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�(
+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�E‚Q��|[���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�FZ�+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�uu򮉲f��
�]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
+�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)�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
+�.@��P��R���<K����@ky�BY3K���,���Y
+�.@��P��R���<K����@ky�BY3K���,���Y
+�.@��P��R���<K����@ky�BY3K���,���Y
+�.@��P�1K����,�rf��
�Y
+e�,Zȳ�:g)Ⱥ�y�BY3K���,��f��
�Y
+e�,Zȳ�z����
+�Y
+e�,Zȳʚ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���u򊀲fE��
�e͊�Z�+ʚ�6�W�u��u򊀲fE��
�e͊�Z�+ʚ�6�W�u��u򊀲fE��
�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��t򊀲fE��
�e͊�Z�+ʚ�6�W�u��u򊀲fE��
�e͊�Z�+ʚ�6�W�u��u򊀲fE��
�e͊�Z�+ʚ�6�W�u��u򊀲fE��
�%+�,�(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���@n΍u6�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�H͹rn�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�5Chm 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��@�pP֌8���<�`�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�dZȓ1ʚ��6�'c�uNƐu�d��f2�
��e�dZ��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�dY O�(k&c��@��Q�LƠ��<����Aky2�X�dY O�(k&c��@��Q�LƠ��<����Aky2�X�dY O�(k&c��@��Q�LƠ��<����Aky2�X�dY M�(�6��kN�(ᘌAc�x2F93���d��^&c��y2FY3���d��f2�
��e�dZȓ1�:'cȺ�y2FY3���d��f2�
��e�dZȓ1�:'cȺ�y2FY3���d��f2�
��e�dZ��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�dZȓ1�:'cȺ�y2FY3���d��f2�
��e�dZȓ1�:'cȺ�y2FY3���d��f2�
��e�dZȓ1�:'cȺ�y2FY3���d����t�'c�3�1(m O�뜌!���e�dZȓ1ʚ��6�'c�5�1hm O�뜌!���e�dZȓ1ʚ��6�'c�5�1hm O�뜌!���e�dZȓ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��
+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�q΃H�.@>�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ʚ�
+�
�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ʚ�
+�
�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
+endobj
+1543 0 obj <<
+/Type /Page
+/Contents 1544 0 R
+/Resources 1542 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1106 0 R
+/Annots [ 1546 0 R 1547 0 R 1548 0 R 1549 0 R 1550 0 R 1551 0 R 1552 0 R 1553 0 R 1554 0 R 1555 0 R 1556 0 R 1557 0 R 1558 0 R 1559 0 R 1560 0 R 1561 0 R 1562 0 R 1563 0 R 1564 0 R 1565 0 R 1566 0 R 1567 0 R 1568 0 R 1569 0 R 1570 0 R 1571 0 R 1572 0 R 1573 0 R 1574 0 R 1575 0 R 1576 0 R 1577 0 R 1578 0 R 1579 0 R 1580 0 R 1581 0 R 1582 0 R 1583 0 R 1584 0 R 1585 0 R 1586 0 R 1587 0 R 1588 0 R 1589 0 R 1590 0 R 1591 0 R 1592 0 R 1593 0 R 1594 0 R 1595 0 R 1596 0 R 1597 0 R 1598 0 R 1599 0 R 1600 0 R 1601 0 R 1602 0 R 1603 0 R 1604 0 R 1605 0 R 1606 0 R 1607 0 R 1608 0 R 1609 0 R 1610 0 R 1611 0 R 1612 0 R 1613 0 R 1614 0 R 1615 0 R 1616 0 R 1617 0 R 1618 0 R 1619 0 R 1620 0 R 1621 0 R 1622 0 R 1623 0 R 1624 0 R 1625 0 R 1626 0 R 1627 0 R 1628 0 R 1629 0 R 1630 0 R 1631 0 R 1632 0 R 1633 0 R 1634 0 R 1635 0 R 1636 0 R 1637 0 R 1638 0 R 1639 0 R ]
+>> endobj
+1546 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 706.321 143.421 715.208]
+/Subtype /Link
+/A << /S /GoTo /D (using) >>
+>> endobj
+1547 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 706.321 537.983 715.208]
+/Subtype /Link
+/A << /S /GoTo /D (using) >>
+>> endobj
+1548 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 692.902 162.331 699.756]
+/Subtype /Link
+/A << /S /GoTo /D (using-intro) >>
+>> endobj
+1549 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 692.902 537.983 699.756]
+/Subtype /Link
+/A << /S /GoTo /D (using-intro) >>
+>> endobj
+1550 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 677.893 218.489 686.804]
+/Subtype /Link
+/A << /S /GoTo /D (myaccount) >>
+>> endobj
+1551 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 677.893 537.983 686.804]
+/Subtype /Link
+/A << /S /GoTo /D (myaccount) >>
+>> endobj
+1552 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 664.942 186.958 673.853]
+/Subtype /Link
+/A << /S /GoTo /D (bug_page) >>
+>> endobj
+1553 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 664.942 537.983 673.853]
+/Subtype /Link
+/A << /S /GoTo /D (bug_page) >>
+>> endobj
+1554 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 651.99 192.209 660.902]
+/Subtype /Link
+/A << /S /GoTo /D (lifecycle) >>
+>> endobj
+1555 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 651.99 537.983 660.902]
+/Subtype /Link
+/A << /S /GoTo /D (lifecycle) >>
+>> endobj
+1556 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 639.039 189.997 647.95]
+/Subtype /Link
+/A << /S /GoTo /D (query) >>
+>> endobj
+1557 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 639.039 537.983 647.95]
+/Subtype /Link
+/A << /S /GoTo /D (query) >>
+>> 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]
+/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]
+/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]
+/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]
+/Subtype /Link
+/A << /S /GoTo /D (pronouns) >>
+>> endobj
+1562 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [143.462 600.184 212.164 609.096]
+/Subtype /Link
+/A << /S /GoTo /D (negation) >>
+>> endobj
+1563 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 600.184 537.983 609.096]
+/Subtype /Link
+/A << /S /GoTo /D (negation) >>
+>> endobj
+1564 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [143.462 587.233 238.664 596.144]
+/Subtype /Link
+/A << /S /GoTo /D (multiplecharts) >>
+>> endobj
+1565 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 587.233 537.983 596.144]
+/Subtype /Link
+/A << /S /GoTo /D (multiplecharts) >>
+>> endobj
+1566 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 574.282 151.551 583.193]
+/Subtype /Link
+/A << /S /GoTo /D (list) >>
+>> endobj
+1567 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 574.282 537.983 583.193]
+/Subtype /Link
+/A << /S /GoTo /D (list) >>
+>> endobj
+1568 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 561.33 159.86 570.242]
+/Subtype /Link
+/A << /S /GoTo /D (bugreports) >>
+>> endobj
+1569 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 561.33 537.983 570.242]
+/Subtype /Link
+/A << /S /GoTo /D (bugreports) >>
+>> endobj
+1570 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 550.436 166.027 557.29]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer) >>
+>> endobj
+1571 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 550.436 537.983 557.29]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer) >>
+>> endobj
+1572 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 535.427 276.382 544.339]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_view) >>
+>> endobj
+1573 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 535.427 537.983 544.339]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_view) >>
+>> endobj
+1574 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 522.476 321.054 531.387]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_diff) >>
+>> endobj
+1575 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 522.476 537.983 531.387]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_diff) >>
+>> endobj
+1576 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 509.524 273.941 518.436]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_context) >>
+>> endobj
+1577 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 509.524 537.983 518.436]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_context) >>
+>> endobj
+1578 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 496.573 328.606 505.484]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_collapse) >>
+>> endobj
+1579 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 496.573 537.983 505.484]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_collapse) >>
+>> endobj
+1580 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 483.622 267.725 492.533]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_link) >>
+>> endobj
+1581 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 483.622 537.983 492.533]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_link) >>
+>> endobj
+1582 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 470.67 249.065 479.581]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_bonsai_lxr) >>
+>> endobj
+1583 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 470.67 537.983 479.581]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_bonsai_lxr) >>
+>> endobj
+1584 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 457.719 236.901 466.63]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_unified_diff) >>
+>> endobj
+1585 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 457.719 537.983 466.63]
+/Subtype /Link
+/A << /S /GoTo /D (patchviewer_unified_diff) >>
+>> endobj
+1586 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 444.767 171.397 453.679]
+/Subtype /Link
+/A << /S /GoTo /D (hintsandtips) >>
+>> endobj
+1587 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 444.767 537.983 453.679]
+/Subtype /Link
+/A << /S /GoTo /D (hintsandtips) >>
+>> endobj
+1588 0 obj <<
+/Type /Annot
+/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) >>
+>> 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) >>
+>> endobj
+1590 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 419.238 194.251 427.776]
+/Subtype /Link
+/A << /S /GoTo /D (quicksearch) >>
+>> endobj
+1591 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 419.238 537.983 427.776]
+/Subtype /Link
+/A << /S /GoTo /D (quicksearch) >>
+>> endobj
+1592 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 407.851 187.636 414.824]
+/Subtype /Link
+/A << /S /GoTo /D (commenting) >>
+>> endobj
+1593 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 407.851 537.983 414.824]
+/Subtype /Link
+/A << /S /GoTo /D (commenting) >>
+>> endobj
+1594 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 394.899 194.819 401.873]
+/Subtype /Link
+/A << /S /GoTo /D (attachments) >>
+>> endobj
+1595 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 394.899 537.983 401.873]
+/Subtype /Link
+/A << /S /GoTo /D (attachments) >>
+>> endobj
+1596 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 382.067 185.822 388.921]
+/Subtype /Link
+/A << /S /GoTo /D (userpreferences) >>
+>> endobj
+1597 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 382.067 537.983 388.921]
+/Subtype /Link
+/A << /S /GoTo /D (userpreferences) >>
+>> endobj
+1598 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 367.059 217.792 375.97]
+/Subtype /Link
+/A << /S /GoTo /D (accountsettings) >>
+>> endobj
+1599 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 367.059 537.983 375.97]
+/Subtype /Link
+/A << /S /GoTo /D (accountsettings) >>
+>> endobj
+1600 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 354.107 207.84 363.019]
+/Subtype /Link
+/A << /S /GoTo /D (emailsettings) >>
+>> endobj
+1601 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 354.107 537.983 363.019]
+/Subtype /Link
+/A << /S /GoTo /D (emailsettings) >>
+>> endobj
+1602 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 343.213 197.598 350.067]
+/Subtype /Link
+/A << /S /GoTo /D (permissionsettings) >>
+>> endobj
+1603 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 343.213 537.983 350.067]
+/Subtype /Link
+/A << /S /GoTo /D (permissionsettings) >>
+>> endobj
+1604 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 328.204 194.43 337.116]
+/Subtype /Link
+/A << /S /GoTo /D (reporting) >>
+>> endobj
+1605 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 328.204 537.983 337.116]
+/Subtype /Link
+/A << /S /GoTo /D (reporting) >>
+>> endobj
+1606 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 315.253 180.433 324.164]
+/Subtype /Link
+/A << /S /GoTo /D (reports) >>
+>> endobj
+1607 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 315.253 537.983 324.164]
+/Subtype /Link
+/A << /S /GoTo /D (reports) >>
+>> endobj
+1608 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 304.359 175.452 311.213]
+/Subtype /Link
+/A << /S /GoTo /D (charts) >>
+>> endobj
+1609 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 304.359 537.983 311.213]
+/Subtype /Link
+/A << /S /GoTo /D (charts) >>
+>> endobj
+1610 0 obj <<
+/Type /Annot
+/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) >>
+>> 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) >>
+>> 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) >>
+>> 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) >>
+>> endobj
+1614 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 263.447 139.646 272.359]
+/Subtype /Link
+/A << /S /GoTo /D (flags) >>
+>> endobj
+1615 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 263.447 537.983 272.359]
+/Subtype /Link
+/A << /S /GoTo /D (flags) >>
+>> endobj
+1616 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 250.496 152.926 259.407]
+/Subtype /Link
+/A << /S /GoTo /D (whining) >>
+>> endobj
+1617 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 250.496 537.983 259.407]
+/Subtype /Link
+/A << /S /GoTo /D (whining) >>
+>> 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]
+/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]
+/Subtype /Link
+/A << /S /GoTo /D (whining-overview) >>
+>> endobj
+1620 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 224.593 223.322 233.504]
+/Subtype /Link
+/A << /S /GoTo /D (whining-schedule) >>
+>> endobj
+1621 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 224.593 537.983 233.504]
+/Subtype /Link
+/A << /S /GoTo /D (whining-schedule) >>
+>> endobj
+1622 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 211.641 217.783 220.553]
+/Subtype /Link
+/A << /S /GoTo /D (whining-query) >>
+>> endobj
+1623 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 211.641 537.983 220.553]
+/Subtype /Link
+/A << /S /GoTo /D (whining-query) >>
+>> endobj
+1624 0 obj <<
+/Type /Annot
+/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) >>
+>> 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) >>
+>> endobj
+1626 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 183.482 160.059 192.369]
+/Subtype /Link
+/A << /S /GoTo /D (faq) >>
+>> endobj
+1627 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 183.482 537.983 192.369]
+/Subtype /Link
+/A << /S /GoTo /D (faq) >>
+>> endobj
+1628 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 168.14 152.746 177.026]
+/Subtype /Link
+/A << /S /GoTo /D (troubleshooting) >>
+>> endobj
+1629 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 168.14 537.983 177.026]
+/Subtype /Link
+/A << /S /GoTo /D (troubleshooting) >>
+>> endobj
+1630 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 154.6 177.534 161.574]
+/Subtype /Link
+/A << /S /GoTo /D (general-advice) >>
+>> endobj
+1631 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 154.6 537.983 161.574]
+/Subtype /Link
+/A << /S /GoTo /D (general-advice) >>
+>> endobj
+1632 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 139.711 324.033 148.623]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-testserver) >>
+>> endobj
+1633 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 139.711 537.983 148.623]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-testserver) >>
+>> endobj
+1634 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 127.477 400.057 135.671]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-perlmodule) >>
+>> endobj
+1635 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 127.477 537.983 135.671]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-perlmodule) >>
+>> endobj
+1636 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 113.808 311.111 122.72]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-bundleBugzilla) >>
+>> endobj
+1637 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 113.808 537.983 122.72]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-bundleBugzilla) >>
+>> endobj
+1638 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 100.857 244.133 109.768]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-dbdSponge) >>
+>> endobj
+1639 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 100.857 537.983 109.768]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-dbdSponge) >>
+>> endobj
+1545 0 obj <<
+/D [1543 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1542 0 obj <<
+/Font << /F32 1119 0 R /F27 1112 0 R /F35 1437 0 R /F33 1210 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1689 0 obj <<
+/Length 33399     
+/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��
+��+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��)��'�
+'�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�� ͊�Hc΃HB�@>�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*tq�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�o1�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�F׸V��*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;[�
+�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�V6֌7
+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��DV׊9[�@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
+�����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��
+�䅕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%���
+�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
+ݎ��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
+endobj
+1688 0 obj <<
+/Type /Page
+/Contents 1689 0 R
+/Resources 1687 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1745 0 R
+/Annots [ 1691 0 R 1692 0 R 1693 0 R 1694 0 R 1695 0 R 1696 0 R 1697 0 R 1698 0 R 1699 0 R 1700 0 R 1701 0 R 1702 0 R 1703 0 R 1704 0 R 1705 0 R 1706 0 R 1707 0 R 1708 0 R 1709 0 R 1710 0 R 1711 0 R 1712 0 R 1713 0 R 1714 0 R 1715 0 R 1716 0 R 1717 0 R 1718 0 R 1719 0 R 1720 0 R 1721 0 R 1722 0 R 1723 0 R 1724 0 R 1725 0 R 1726 0 R 1727 0 R 1728 0 R 1729 0 R 1730 0 R 1731 0 R 1732 0 R 1733 0 R 1734 0 R 1735 0 R 1736 0 R 1737 0 R 1738 0 R 1739 0 R 1740 0 R 1741 0 R 1742 0 R 1743 0 R 1744 0 R ]
+>> endobj
+1691 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 706.187 244.81 715.098]
+/Subtype /Link
+/A << /S /GoTo /D (paranoid-security) >>
+>> endobj
+1692 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 (paranoid-security) >>
+>> endobj
+1693 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 694.212 346.19 702.147]
+/Subtype /Link
+/A << /S /GoTo /D (trouble-filetemp) >>
+>> endobj
+1694 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 694.212 537.983 702.147]
+/Subtype /Link
+/A << /S /GoTo /D (trouble-filetemp) >>
+>> endobj
+1695 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 680.284 304.407 689.195]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-relogin-everyone) >>
+>> endobj
+1696 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 (trbl-relogin-everyone) >>
+>> endobj
+1697 0 obj <<
+/Type /Annot
+/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) >>
+>> 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) >>
+>> endobj
+1699 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 654.381 348.133 663.293]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-index) >>
+>> 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]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-index) >>
+>> endobj
+1701 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 641.43 489.072 650.341]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-passwd-encryption) >>
+>> 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]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-passwd-encryption) >>
+>> endobj
+1703 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 628.125 117.668 635.108]
+/Subtype /Link
+/A << /S /GoTo /D (patches) >>
+>> endobj
+1704 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 628.125 537.983 635.108]
+/Subtype /Link
+/A << /S /GoTo /D (patches) >>
+>> endobj
+1705 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 612.802 241.901 619.656]
+/Subtype /Link
+/A << /S /GoTo /D (cmdline) >>
+>> endobj
+1706 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 612.802 537.983 619.656]
+/Subtype /Link
+/A << /S /GoTo /D (cmdline) >>
+>> endobj
+1707 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 597.793 292.402 606.705]
+/Subtype /Link
+/A << /S /GoTo /D (cmdline-bugmail) >>
+>> endobj
+1708 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 597.793 537.983 606.705]
+/Subtype /Link
+/A << /S /GoTo /D (cmdline-bugmail) >>
+>> endobj
+1709 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 584.488 238.135 591.472]
+/Subtype /Link
+/A << /S /GoTo /D (install-perlmodules-manual) >>
+>> endobj
+1710 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 584.488 537.983 591.472]
+/Subtype /Link
+/A << /S /GoTo /D (install-perlmodules-manual) >>
+>> endobj
+1711 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 569.166 162.331 576.02]
+/Subtype /Link
+/A << /S /GoTo /D (modules-manual-instructions) >>
+>> endobj
+1712 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 569.166 537.983 576.02]
+/Subtype /Link
+/A << /S /GoTo /D (modules-manual-instructions) >>
+>> endobj
+1713 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 556.214 198.326 563.068]
+/Subtype /Link
+/A << /S /GoTo /D (modules-manual-download) >>
+>> endobj
+1714 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 556.214 537.983 563.068]
+/Subtype /Link
+/A << /S /GoTo /D (modules-manual-download) >>
+>> endobj
+1715 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 541.206 187.516 550.117]
+/Subtype /Link
+/A << /S /GoTo /D (modules-manual-optional) >>
+>> endobj
+1716 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 541.206 537.983 550.117]
+/Subtype /Link
+/A << /S /GoTo /D (modules-manual-optional) >>
+>> endobj
+1717 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 527.9 229.548 534.884]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl) >>
+>> endobj
+1718 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 527.9 537.983 534.884]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl) >>
+>> endobj
+1719 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 512.578 143.232 519.432]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-0) >>
+>> endobj
+1720 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 512.578 537.983 519.432]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-0) >>
+>> endobj
+1721 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 497.569 217.961 506.481]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-1) >>
+>> endobj
+1722 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 497.569 537.983 506.481]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-1) >>
+>> endobj
+1723 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 484.618 178.839 493.529]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-2) >>
+>> endobj
+1724 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 484.618 537.983 493.529]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-2) >>
+>> endobj
+1725 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 471.666 187.426 480.578]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-3) >>
+>> endobj
+1726 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 471.666 537.983 480.578]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-3) >>
+>> endobj
+1727 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 460.772 160.956 467.626]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-4) >>
+>> endobj
+1728 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 460.772 537.983 467.626]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-4) >>
+>> endobj
+1729 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 445.764 198.315 454.675]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-5) >>
+>> endobj
+1730 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 445.764 537.983 454.675]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-5) >>
+>> 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]
+/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]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-6) >>
+>> endobj
+1733 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 419.861 255.401 428.772]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-7) >>
+>> endobj
+1734 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 419.861 537.983 428.772]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-7) >>
+>> 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]
+/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]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-8) >>
+>> endobj
+1737 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 395.895 154.161 402.869]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-9) >>
+>> endobj
+1738 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 395.895 537.983 402.869]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-9) >>
+>> 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]
+/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]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-10) >>
+>> endobj
+1741 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 368.055 271.65 376.966]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-howto) >>
+>> endobj
+1742 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 368.055 537.983 376.966]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl-howto) >>
+>> endobj
+1743 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 352.847 109.369 361.733]
+/Subtype /Link
+/A << /S /GoTo /D (glossary) >>
+>> endobj
+1744 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [523.039 352.847 537.983 361.733]
+/Subtype /Link
+/A << /S /GoTo /D (glossary) >>
+>> endobj
+1690 0 obj <<
+/D [1688 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1687 0 obj <<
+/Font << /F27 1112 0 R /F35 1437 0 R /F32 1119 0 R /F33 1210 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1775 0 obj <<
+/Length 8015      
+/Filter /FlateDecode
+>>
+stream
+xڭ�M��}��;?�����y9�!��a�����
+Z���]����]���dm�S����b�zP�fr�7�����i�N���r����������|L柿�ˉ��8-��x�O�_���r޿y�������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
�V󴻘os�,�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��.ހ�8޻9d�݈�8�9dl݈�8^�9d݈�8�����ʭO6q�qsȘ�)q<ps�ط)q�ns�2n#�6��mX�m j��2fmDJ��26mDJ/�2mDJ����ـ�8޲9dLو�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
+endobj
+1774 0 obj <<
+/Type /Page
+/Contents 1775 0 R
+/Resources 1773 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1745 0 R
+/Annots [ 1777 0 R 1778 0 R 1779 0 R 1780 0 R 1781 0 R 1782 0 R 1783 0 R 1784 0 R 1785 0 R 1786 0 R 1787 0 R 1788 0 R 1789 0 R 1790 0 R ]
+>> endobj
+1777 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 677.798 200.517 686.71]
+/Subtype /Link
+/A << /S /GoTo /D (lifecycle-image) >>
+>> endobj
+1778 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 677.798 537.983 686.71]
+/Subtype /Link
+/A << /S /GoTo /D (lifecycle-image) >>
+>> endobj
+1779 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 612.168 276.242 621.079]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-account-root) >>
+>> endobj
+1780 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 612.168 537.983 621.079]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-account-root) >>
+>> endobj
+1781 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 599.216 256.975 608.128]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-account-anonymous) >>
+>> endobj
+1782 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 599.216 537.983 608.128]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-account-anonymous) >>
+>> endobj
+1783 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 586.265 224.108 595.176]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-network-ex) >>
+>> endobj
+1784 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 586.265 537.983 595.176]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-network-ex) >>
+>> endobj
+1785 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 573.313 232.905 582.225]
+/Subtype /Link
+/A << /S /GoTo /D (security-bugzilla-charset-ex) >>
+>> endobj
+1786 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 573.313 537.983 582.225]
+/Subtype /Link
+/A << /S /GoTo /D (security-bugzilla-charset-ex) >>
+>> endobj
+1787 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 560.362 343.17 569.273]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-relogin-everyone-share) >>
+>> endobj
+1788 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 560.362 537.983 569.273]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-relogin-everyone-share) >>
+>> endobj
+1789 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 547.41 348.43 556.322]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-relogin-everyone-restrict) >>
+>> endobj
+1790 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 547.41 537.983 556.322]
+/Subtype /Link
+/A << /S /GoTo /D (trbl-relogin-everyone-restrict) >>
+>> endobj
+1776 0 obj <<
+/D [1774 0 R /XYZ 71.731 729.265 null]
+>> endobj
+10 0 obj <<
+/D [1774 0 R /XYZ 214.067 703.236 null]
+>> endobj
+14 0 obj <<
+/D [1774 0 R /XYZ 235.902 637.605 null]
+>> endobj
+1773 0 obj <<
+/Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1800 0 obj <<
+/Length 2508      
+/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��jwS�+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
+endobj
+1799 0 obj <<
+/Type /Page
+/Contents 1800 0 R
+/Resources 1798 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1745 0 R
+/Annots [ 1804 0 R ]
+>> endobj
+1804 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [371.655 582.727 414.738 590.748]
+/Subtype /Link
+/A << /S /GoTo /D (gfdl) >>
+>> endobj
+1211 0 obj <<
+/D [1799 0 R /XYZ 71.731 718.306 null]
+>> endobj
+18 0 obj <<
+/D [1799 0 R /XYZ 350.659 703.236 null]
+>> endobj
+1212 0 obj <<
+/D [1799 0 R /XYZ 71.731 692.504 null]
+>> endobj
+22 0 obj <<
+/D [1799 0 R /XYZ 285.389 651.159 null]
+>> endobj
+1801 0 obj <<
+/D [1799 0 R /XYZ 71.731 638.721 null]
+>> endobj
+1802 0 obj <<
+/D [1799 0 R /XYZ 71.731 627.443 null]
+>> endobj
+1803 0 obj <<
+/D [1799 0 R /XYZ 71.731 617.481 null]
+>> endobj
+1805 0 obj <<
+/D [1799 0 R /XYZ 71.731 577.746 null]
+>> endobj
+1213 0 obj <<
+/D [1799 0 R /XYZ 71.731 546.646 null]
 >> endobj
 26 0 obj <<
-/D [1354 0 R /XYZ 191.962 503.549 null]
+/D [1799 0 R /XYZ 191.962 503.549 null]
+>> endobj
+1806 0 obj <<
+/D [1799 0 R /XYZ 71.731 494.726 null]
+>> endobj
+1807 0 obj <<
+/D [1799 0 R /XYZ 71.731 448.949 null]
+>> endobj
+1808 0 obj <<
+/D [1799 0 R /XYZ 71.731 405.113 null]
+>> endobj
+1214 0 obj <<
+/D [1799 0 R /XYZ 71.731 348.326 null]
+>> endobj
+30 0 obj <<
+/D [1799 0 R /XYZ 216.752 305.229 null]
+>> endobj
+1809 0 obj <<
+/D [1799 0 R /XYZ 71.731 296.406 null]
+>> endobj
+1810 0 obj <<
+/D [1799 0 R /XYZ 71.731 263.58 null]
+>> endobj
+1811 0 obj <<
+/D [1799 0 R /XYZ 345.258 252.785 null]
+>> endobj
+1812 0 obj <<
+/D [1799 0 R /XYZ 184.718 239.834 null]
+>> endobj
+1813 0 obj <<
+/D [1799 0 R /XYZ 71.731 226.882 null]
+>> endobj
+1814 0 obj <<
+/D [1799 0 R /XYZ 71.731 206.793 null]
+>> endobj
+1815 0 obj <<
+/D [1799 0 R /XYZ 505.893 195.998 null]
+>> endobj
+1816 0 obj <<
+/D [1799 0 R /XYZ 71.731 175.909 null]
+>> endobj
+1817 0 obj <<
+/D [1799 0 R /XYZ 221.814 152.162 null]
+>> endobj
+1818 0 obj <<
+/D [1799 0 R /XYZ 452.571 152.162 null]
+>> endobj
+1819 0 obj <<
+/D [1799 0 R /XYZ 266.128 139.211 null]
+>> endobj
+1820 0 obj <<
+/D [1799 0 R /XYZ 510.317 139.211 null]
+>> endobj
+1821 0 obj <<
+/D [1799 0 R /XYZ 264.587 126.26 null]
+>> endobj
+1822 0 obj <<
+/D [1799 0 R /XYZ 509.011 126.26 null]
+>> endobj
+1823 0 obj <<
+/D [1799 0 R /XYZ 258.45 113.308 null]
+>> endobj
+1824 0 obj <<
+/D [1799 0 R /XYZ 506.431 113.308 null]
+>> endobj
+1798 0 obj <<
+/Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F33 1210 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1827 0 obj <<
+/Length 2017      
+/Filter /FlateDecode
+>>
+stream
+xڭX�o�6�����PH�zX��l6�>�E6w{h{h����E������7�!��XCr8$�7/2�D��'y�)|�E�̳I�~MV0��M�8N����훷?��d.����n2K�0��<M�"K&�����u���i�EA���R����Zh�>������~~su;���y�(�g��y��䛽�#FE��fvk��07	�d�D<N�(�}SQ#Ӡ���0M���[��X�CF�V7�p׬�T:��-1��*a�lY�Vc��g+�O��5�i'���a���K�;x�ƙ�ڵ��A��v@{���8	N�FY�f�1��[�M�5�\?��(�f�C�/ 2@u�$��$�Pw 1��$ͬ�8�!�y�WΠ݌-eÄ$���E5 {�%��f#���K�'��$lO�sJ�Y�
+�\��R�e��U���H�%N�Q�n���9aaYg8N��α���Y�׉P�_ծC5�Z�
+�kW'$�����c{xQ2:d����{�@
~����� �Im�抎�㧈Ѭu>ݼ'B�]S]�k�'vrn��#
*�8Y��+9�K��{��^���Y1��;;rP0�u�
+�t��<,d�̠�.��o�8�
.�j�]�$k[+���hM�lQ�H�^���eh��淘�E:w~�).d`�,p$�$�l�����wga�$� q�g�spς��鼤^ >rU�
��)�0}O�5R�v=��iM9���}A'i+�Z�]��U�$a�D�&a<��� �S$�	P�7o�9DE����봀��z��1�P��������Z��L��a�Q�j�F$��4C4 
+�w=Q�jl���U?�<��)��Y��y��������Š�EY{~NĿ~���m`.�aO%K�&�46]B�
SӸV�q`.!�T�AX3��m�T��8�q����0���z�B��!�[�?�=�/��ůe�[��,���0U	��i�+�(7�[c�k�í�0I%=�i��~�n��"�����T߶��l�5F�g%M3�ny�"~a�xT�-�8�Q�.��W��9�53�t��i�"��<L����݈Eױ��)ʣb+\�Z�j�>jؕ�0��^	�����ջKn9w!�;�>2��4��TB�&�����,~���{e+�Q��I(�	ny_�˘Z_BtfI�Z�m�Cγ�ei
+��e)��`f�qTA�.!�[2�8
YOB����u>
+ۖ�*m<n�(g�ZC\�\���n�w���jM]��Pex����0�ȗFb���Q���J��)_���p�x&k�}*������Ko?k�	~_�8i��A�U��y�Lv{7{�.��M��]*�|$���q%�ќ���ka/sc�dsXt�Q���������RM�QX��͖�1p<�:�:�:pq�������pY��z�ɠӝb%DŽډww|�6�K�t�mO�]���������C[I]��v�=t�%D�������Y\�i�nӬ�
�x�FK�V�k������VS�Y�=J{�aE$�V`iPژ�]��z�D��H�����~�5�#0Daׅbm����1Nf�7�K�K��x��f��E��`��~��F��(����Fh���w����Etƍ̂\=���
+v\3u_��~�Vj��B�7Δ&�nҍ\
+�kC�K�	]�b_�!�ɑC��@B��0�Y��.��@�~<�E!A��:ث����������-ю��ۀ�1\�*��`��,U��BL���nlך��\�Ixu��r�y���N�~وMz�,��&e�G��ZҲ>{�֓��
@��V:�V���|x1+%�.t�_�3���>5ڞ'�+GVBCi�Ml������P�����'{�v�LYs�
~B|�F��H�[����� ��T�n`#�ps�
+��W�K�~�M
����g��沅'���ڈA�ҾLR�%sJ�x��=-x6V�a%�sO�����,M�(��Γ���Õ�,��endstream
+endobj
+1826 0 obj <<
+/Type /Page
+/Contents 1827 0 R
+/Resources 1825 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1745 0 R
+>> endobj
+1828 0 obj <<
+/D [1826 0 R /XYZ 71.731 741.22 null]
+>> endobj
+1829 0 obj <<
+/D [1826 0 R /XYZ 71.731 718.306 null]
+>> endobj
+1830 0 obj <<
+/D [1826 0 R /XYZ 487.099 708.344 null]
+>> endobj
+1215 0 obj <<
+/D [1826 0 R /XYZ 71.731 688.254 null]
+>> endobj
+34 0 obj <<
+/D [1826 0 R /XYZ 164.538 645.157 null]
+>> endobj
+1831 0 obj <<
+/D [1826 0 R /XYZ 71.731 636.334 null]
+>> endobj
+1832 0 obj <<
+/D [1826 0 R /XYZ 71.731 595.538 null]
+>> endobj
+1833 0 obj <<
+/D [1826 0 R /XYZ 71.731 580.594 null]
+>> endobj
+1834 0 obj <<
+/D [1826 0 R /XYZ 154.5 569.799 null]
+>> endobj
+1835 0 obj <<
+/D [1826 0 R /XYZ 71.731 569.611 null]
+>> endobj
+1836 0 obj <<
+/D [1826 0 R /XYZ 91.656 551.866 null]
+>> endobj
+1837 0 obj <<
+/D [1826 0 R /XYZ 71.731 539.747 null]
+>> endobj
+1838 0 obj <<
+/D [1826 0 R /XYZ 138.849 528.952 null]
+>> endobj
+1839 0 obj <<
+/D [1826 0 R /XYZ 71.731 526.796 null]
+>> endobj
+1840 0 obj <<
+/D [1826 0 R /XYZ 91.656 511.02 null]
+>> endobj
+1841 0 obj <<
+/D [1826 0 R /XYZ 71.731 485.949 null]
+>> endobj
+1842 0 obj <<
+/D [1826 0 R /XYZ 137.315 475.154 null]
+>> endobj
+1843 0 obj <<
+/D [1826 0 R /XYZ 71.731 473.746 null]
+>> endobj
+1844 0 obj <<
+/D [1826 0 R /XYZ 91.656 457.221 null]
+>> endobj
+1845 0 obj <<
+/D [1826 0 R /XYZ 71.731 445.102 null]
+>> endobj
+1846 0 obj <<
+/D [1826 0 R /XYZ 136.508 434.307 null]
+>> endobj
+1847 0 obj <<
+/D [1826 0 R /XYZ 71.731 434.119 null]
+>> endobj
+1848 0 obj <<
+/D [1826 0 R /XYZ 91.656 416.375 null]
+>> endobj
+1849 0 obj <<
+/D [1826 0 R /XYZ 71.731 404.255 null]
+>> endobj
+1850 0 obj <<
+/D [1826 0 R /XYZ 128.578 393.461 null]
+>> endobj
+1851 0 obj <<
+/D [1826 0 R /XYZ 71.731 392.053 null]
+>> endobj
+1852 0 obj <<
+/D [1826 0 R /XYZ 91.656 375.528 null]
+>> endobj
+1853 0 obj <<
+/D [1826 0 R /XYZ 71.731 350.457 null]
+>> endobj
+1854 0 obj <<
+/D [1826 0 R /XYZ 145.324 339.662 null]
+>> endobj
+1855 0 obj <<
+/D [1826 0 R /XYZ 71.731 337.505 null]
+>> endobj
+1856 0 obj <<
+/D [1826 0 R /XYZ 91.656 321.73 null]
+>> endobj
+1857 0 obj <<
+/D [1826 0 R /XYZ 71.731 309.61 null]
+>> endobj
+1858 0 obj <<
+/D [1826 0 R /XYZ 122.291 298.815 null]
+>> endobj
+1859 0 obj <<
+/D [1826 0 R /XYZ 71.731 297.408 null]
+>> endobj
+1860 0 obj <<
+/D [1826 0 R /XYZ 91.656 280.883 null]
+>> endobj
+1861 0 obj <<
+/D [1826 0 R /XYZ 71.731 262.85 null]
+>> endobj
+1862 0 obj <<
+/D [1826 0 R /XYZ 450.945 249.998 null]
+>> endobj
+1863 0 obj <<
+/D [1826 0 R /XYZ 518.615 249.998 null]
+>> endobj
+1864 0 obj <<
+/D [1826 0 R /XYZ 108.346 237.047 null]
+>> endobj
+1865 0 obj <<
+/D [1826 0 R /XYZ 175.219 237.047 null]
+>> endobj
+1866 0 obj <<
+/D [1826 0 R /XYZ 228.813 237.047 null]
+>> endobj
+1867 0 obj <<
+/D [1826 0 R /XYZ 281.858 237.047 null]
+>> endobj
+1868 0 obj <<
+/D [1826 0 R /XYZ 359.541 237.047 null]
+>> endobj
+1869 0 obj <<
+/D [1826 0 R /XYZ 429.483 237.047 null]
+>> endobj
+1870 0 obj <<
+/D [1826 0 R /XYZ 477.557 237.047 null]
+>> endobj
+1871 0 obj <<
+/D [1826 0 R /XYZ 71.731 224.096 null]
+>> endobj
+1872 0 obj <<
+/D [1826 0 R /XYZ 140.493 224.096 null]
+>> endobj
+1873 0 obj <<
+/D [1826 0 R /XYZ 197.219 224.096 null]
+>> endobj
+1874 0 obj <<
+/D [1826 0 R /XYZ 71.731 217.675 null]
+>> endobj
+1875 0 obj <<
+/D [1826 0 R /XYZ 387.15 206.163 null]
+>> endobj
+1216 0 obj <<
+/D [1826 0 R /XYZ 71.731 173.122 null]
+>> endobj
+38 0 obj <<
+/D [1826 0 R /XYZ 297.751 130.024 null]
+>> endobj
+1876 0 obj <<
+/D [1826 0 R /XYZ 71.731 129.809 null]
+>> endobj
+1877 0 obj <<
+/D [1826 0 R /XYZ 71.731 121.202 null]
+>> endobj
+1878 0 obj <<
+/D [1826 0 R /XYZ 71.731 106.308 null]
+>> endobj
+1825 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1881 0 obj <<
+/Length 1292      
+/Filter /FlateDecode
+>>
+stream
+x��Wێ�6}�W�h��@��]R�4��抴@S�)�-ӶITtI�~}�"啭�m�}	�����G$��#ALP�`�)�RY����<[/y�h"s�Z�=e,HQ*Y���R$bČ�D�`�y>ޫ���2����|m��MW��u�g}�������'��`1Jv�i���6:�-�(�A�%b��]�6k��M��q�׵V����!c�0��B|\�}��
��r�K��3�1"i�.%��.�.~����_�;�SeJ����e�C�Ty�;��1�(d �a:�'���up�qL�Ҕ��G�� b���]/7S��D�'p�|z��#ƥ�Ox(�@��BJ�^��h�;{�y�@0�$	
+�	AR���Mu��]����D�}�V��n�fm���i�of	 $"`���;z�)��&`����O����҂2��d���\� ���Q&�$4[�U^ߟGN ��y�d84}�q����v�E��.�[)7���8�`�#o��X�p�����0Z��M���^+s��T@����n;��f_!��×@�Ῠ��)ՐhC�j��>o,��e[�,_�Pn��NWcZ^G:�b��N)"nb�DJ��c(�?y>�+�̋S�~ļ�Z�4�\���i��&�������������"
+�1܉7Q@J&���y�]�Cn�Fg�i��e�J��Lܔ�[Pr%w��^p�̏MY�j��wƍkoF���H�f^�Ã+�ȳ	y[#"�L���"��P��iշ���"�
Cݘ��mD_m�&c�Z[cx�{]����|��n��G�������~�h��^�p��ԅ��a׹��������7�*��85��T�Ms�.�mq�d4�mI��_�8�x��sW��vS:[ӏ����st�ɮ0m� UO���I 
A��k{�Q&����SEּ�~�w^j��P�n�23�9K94�Tƞ1�^B��*�b�J�9�6��9uTF�Ѕ���PD#����Hۉ'fkGZe�F��j�$�ȶˁ��7��&�'���IL@����1�l��6{<Y�=�|/��������"�&�0�_q�����ӫa7	���|T;=ªF��Z��!%�C����ew* �,U�ƺP�;���tne��x;��[K�m����u*ۏ�lvݰ��K�s�w�bth�²�dV�c��,*>:�wX�}�����<��>*��r�(8E���K�l�?�b�����=��T �p��M���R� �n���+!��|W"3�
+��k����n���#���}endstream
+endobj
+1880 0 obj <<
+/Type /Page
+/Contents 1881 0 R
+/Resources 1879 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1745 0 R
+/Annots [ 1885 0 R ]
+>> endobj
+1885 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [310.336 418.223 343.551 433.166]
+/Subtype /Link
+/A << /S /GoTo /D (gloss-bugzilla) >>
+>> endobj
+1882 0 obj <<
+/D [1880 0 R /XYZ 71.731 718.306 null]
+>> endobj
+1886 0 obj <<
+/D [1880 0 R /XYZ 71.731 380.365 null]
+>> endobj
+1887 0 obj <<
+/D [1880 0 R /XYZ 433.454 357.45 null]
+>> endobj
+1879 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R /F35 1437 0 R /F32 1119 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1891 0 obj <<
+/Length 2414      
+/Filter /FlateDecode
+>>
+stream
+xڭ�r+���_���f,�\����'M;��$i�6�I�(i�ծ�+�� ���Ls��YA7��I�S�X�X��O�����N�6���;�A	?�a|aq�X���-F>��=���3_�(Lg/���������G��m�oM=_�q����Oe�fE����6�͋"����%�b�IJ8�2�-5_�)��ͫ�ߖ�4�p�JEꇳ������o��| � 0�P���8Ok ��q�K��p��_��%�a�B/+y�VL-��R$�gj]c��S�He�����]U,+>�4fEK-/�$���V��JC����n�֖�6pGC��f���>�����L	�=��k�&K5�r�P�I�p��O.H:�V��̛��+�em�V���ݤ����0���˥i��4�[�V��=��)�d^��I<ӈ4�b�$��d%/v����y�4�~Ǔ�!8�֭��Vͻ�H��5(���d�k`��M^v�1�i>�����	ߣ�
+ؔ�'�]������5�{�'�rk�o(���^z�e"d��(������p��Gb<!�R|6K� ]	 n_�`ȏ�Sn�@�$��a(�8��
�,F8g�$���'����ue�J$@zu��j�PQ��$G��i�k^�93(�%�ȑw��2ϊ�v�Y�4�=&i���تIr��Y��ܵ�(��M�7u�uU.�������I��vّ�Z�l�D!��Ii�X�p����.[�"���yzV�B�y?I�k+o�0�n���n��חl�4R��Ewk�p�d(�m����p8�Q���j��۴ ��2��|Y����X�<h��� ���a��f���fai��l���q�5X��]�`�h!:��E���y{ȡ����l+Ǧ5;��6�sLB$ho��+�C��M����m��jA������E�kBl[�C# ��qP
����yi�=������fL�VZ%Y!ZvP�����r�C���1ŚƇ��V�n_�"�K�� ���ٷL��/=0��~�YW��\)�GG��^�no֞-:
+
Xc��3i�3[Yo�g���K��8��Ji��,�(�� �z���r����5����;D�/t�ΔHS=��l}�|����W�\��
��xg$�xG!@�87����h��`(Z�k���Y]b�:˔*��BB�	9S���}�A��R�	R��+�RL*�n��`��Zx͚sO�,������-����|��	�G�j�-\i�6A�O��Lh��^��x�fQ$&��(�qқWC!И��C����[�t���r��̨�@��g#%���@֭���x�8ǖ�\|��Љ�V`��eA$)?�0�0Q�WiV�e�ۙre3����;|�߬`��}^��[���M��˹��1]��I��Q`��l�(<�u���7<�F��'��Y�\�֎�5kWz��M��/��9��
+,��>��&@C���'ˬ����;$͇SSr*��D��b.�(��U�2
+���6��4�t���N��27IE���-�g���P�I�{Sg[k�n�Qn�t>7�Z@��&�+�E.eD��ZY�z�r�*��(���y��5!�P$�n��d#�5�K-�+�E������k�??�Ϩ�WN�#�&����׬�^��E�U��G��*R%�:�)(Ej�މo	�O@a�,���D9P������X�$��	����T��>��9�=3i � �s�"�b�\)-�9�
+q��9�x�+'�W9�{k��R$ؽ;�t�J
+����l/�����Y�
+n��9w�+'�W�q܎vժ+���Z^jXL/��U�1	B2$�S����FW%8��=	*	��5����_�3�k�a�['���)��2סWge��f��=n��:��/�������9����F'��|��o�󔈘ج����yO0ZSԘ����y����a�v�q', ��C:e�a\8`q�n�����ɚ֑�^B�
"�^Mr=�
dh7�^�-�'�
n��jp���W
���k��-7�v�9:�K���7]�gs^Z�OR؉����B_�:_\hp���Wp�,|�e�pS�$�
<M�5��o�9+� /�5-����?�n�W��
4�����B��q']¾˘�C�'�'��(��*Ӕ_�UB���)�r�l�Hθ֒�Ѵ�V��<�آ�sۯ$j2�`U�H.0���"(�+�����ј\�)N�����!�F��ndy{�޲��mP��c7��'�ET�����X`�i��ٸz��u���@>
#'�ȳY9��}�f�}SU+^^�QA	I߮��1�&~�(���4m�Ԧ@�q�W�D�@�ߌ�uS������=����g�����endstream
+endobj
+1890 0 obj <<
+/Type /Page
+/Contents 1891 0 R
+/Resources 1889 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1745 0 R
+/Annots [ 1898 0 R 1899 0 R 1909 0 R 1911 0 R 1913 0 R 1915 0 R 1917 0 R 1919 0 R ]
+>> endobj
+1898 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [508.095 566.273 537.983 575.184]
+/Subtype /Link
+/A << /S /GoTo /D (os-specific) >>
+>> endobj
+1899 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 553.321 84.184 562.233]
+/Subtype /Link
+/A << /S /GoTo /D (os-specific) >>
+>> endobj
+1909 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [89.664 319.519 133.11 328.43]
+/Subtype /Link
+/A << /S /GoTo /D (install-perl) >>
+>> endobj
+1911 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [89.664 301.586 191.202 310.498]
+/Subtype /Link
+/A << /S /GoTo /D (install-database) >>
+>> endobj
+1913 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [89.664 285.711 166.176 292.565]
+/Subtype /Link
+/A << /S /GoTo /D (install-webserver) >>
+>> endobj
+1915 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [89.664 265.721 150.823 274.632]
+/Subtype /Link
+/A << /S /GoTo /D (install-bzfiles) >>
+>> endobj
+1917 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [89.664 249.845 169.364 256.699]
+/Subtype /Link
+/A << /S /GoTo /D (install-perlmodules) >>
+>> endobj
+1919 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [92.371 229.855 209.093 238.767]
+/Subtype /Link
+/A << /S /GoTo /D (install-MTA) >>
+>> endobj
+1217 0 obj <<
+/D [1890 0 R /XYZ 71.731 718.306 null]
+>> endobj
+42 0 obj <<
+/D [1890 0 R /XYZ 354.129 703.236 null]
+>> endobj
+1218 0 obj <<
+/D [1890 0 R /XYZ 71.731 692.184 null]
+>> endobj
+46 0 obj <<
+/D [1890 0 R /XYZ 196.111 651.159 null]
+>> endobj
+1892 0 obj <<
+/D [1890 0 R /XYZ 71.731 650.944 null]
+>> endobj
+1893 0 obj <<
+/D [1890 0 R /XYZ 71.731 632.374 null]
+>> endobj
+1894 0 obj <<
+/D [1890 0 R /XYZ 187.629 620.933 null]
+>> endobj
+1897 0 obj <<
+/D [1890 0 R /XYZ 71.731 581.381 null]
+>> endobj
+1900 0 obj <<
+/D [1890 0 R /XYZ 71.731 548.34 null]
+>> endobj
+1901 0 obj <<
+/D [1890 0 R /XYZ 71.731 524.594 null]
+>> endobj
+1902 0 obj <<
+/D [1890 0 R /XYZ 71.731 504.504 null]
+>> endobj
+1903 0 obj <<
+/D [1890 0 R /XYZ 71.731 467.707 null]
+>> endobj
+1904 0 obj <<
+/D [1890 0 R /XYZ 118.555 429.143 null]
+>> endobj
+1905 0 obj <<
+/D [1890 0 R /XYZ 71.731 387.21 null]
+>> endobj
+1906 0 obj <<
+/D [1890 0 R /XYZ 71.731 360.739 null]
+>> endobj
+1907 0 obj <<
+/D [1890 0 R /XYZ 71.731 347.414 null]
+>> endobj
+1908 0 obj <<
+/D [1890 0 R /XYZ 71.731 337.452 null]
+>> endobj
+1910 0 obj <<
+/D [1890 0 R /XYZ 71.731 319.519 null]
+>> endobj
+1912 0 obj <<
+/D [1890 0 R /XYZ 71.731 301.586 null]
+>> endobj
+1914 0 obj <<
+/D [1890 0 R /XYZ 71.731 285.711 null]
+>> endobj
+1916 0 obj <<
+/D [1890 0 R /XYZ 71.731 265.721 null]
+>> endobj
+1918 0 obj <<
+/D [1890 0 R /XYZ 71.731 249.845 null]
+>> endobj
+1920 0 obj <<
+/D [1890 0 R /XYZ 71.731 217.277 null]
+>> endobj
+1219 0 obj <<
+/D [1890 0 R /XYZ 71.731 198.971 null]
+>> endobj
+50 0 obj <<
+/D [1890 0 R /XYZ 138.296 161.756 null]
+>> endobj
+1921 0 obj <<
+/D [1890 0 R /XYZ 71.731 154.403 null]
+>> endobj
+1922 0 obj <<
+/D [1890 0 R /XYZ 163.177 141.631 null]
+>> endobj
+1923 0 obj <<
+/D [1890 0 R /XYZ 71.731 135.242 null]
+>> endobj
+1924 0 obj <<
+/D [1890 0 R /XYZ 164.427 110.747 null]
+>> endobj
+1889 0 obj <<
+/Font << /F23 1105 0 R /F44 1884 0 R /F48 1896 0 R /F27 1112 0 R /F35 1437 0 R /F33 1210 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1927 0 obj <<
+/Length 1961      
+/Filter /FlateDecode
+>>
+stream
+x��Xݓ�
���O�<����L�Nһ|M�����t�LG�i�s�GHi}�__��d���N�З�H� �����"�O.2)��h-�4Y�իp����_I�X��j"��ë���x��4^<�J�b�-�8y-���|(�N��*J� �~[��8M�'��~�os<�_�{��a4�ęX��~
23Ǣx!��U��
3�+�=��ޡ,^]�)�&�M�7�Fg@KvY^�XE��Q��e�
+���⾧"�w�U��۶���.��VoId�Xb����M�hZh�=����$P�[�k\��z�^ց�}\�$��	��R�0hz���x&I�����~ոP�uB�jjM�����1˝]�+���ڪ��v����!\�#�$�X�!��P�t�$o�]����~
+��/�������yXfa�]�)i��LN}���P�.�WT�ݯ��*
�`���ꊅW�΀�
�����mS�a)�#�P,�0�-AN��S-�~x?���JKk��h���(	~è4ő���C����G�S��k?��?�N�4	�_�(�J��%C���ޒ�oϐ���rlq,�X(ɻ�g�`���l��>F^B\�X��T�^�_�N�)u����w�mQ�eL�uN�-$'u6�.0�� �a"?�t�z<Z�r]c���X�⹢���y��'If�C��L%���#�0[�6N3�ꇚ�7��{m>2�,�npͣ	�nؕתBL^n��H׀�p��$�q%y�
+ω%H��#jTf:�1	t�SK*5����|r{��H��pBæ�(���m���44—L|\����(NDy(꽦���<�{�_e��.���]�|�S��!�1L���9n���;B�w��%W�a]N�z�MaCY��0�n���i;:F�'���+^�$�9uʦޙ}o�<�Tr���W�"���P��"�_�1��D�%�($��V@B��Y�u��^AM����Y]�+�Cb�1ї���e�?�I�7�=��0C�`H��՛��k �������$�O����Qy=?-�$�z�`œ��!����=Nu�6��U�Pռ5�m\��H�P��d���!َ!���T֐�8:�v�1�h�U�88t}Q1
]Ϊ�<���o���gj2d�R��&�w��%��U���T�9��Ѵ6#��6���:���ڌ,�ͤcR�q�6#�6�ImF��8�k3$Х<�[�рk`h/Hvr�[���ڸ!�'�~�)&�hg"_,�^�MD�p��-\�����9\�-V㣍�.�.`p�
+.��B)�u�:P�3�H�?b'�ac�C�˰1>�`r�LG؈4~Z��Ć���
,�Q�������r�h�	�������a܊��㤏%]��h�=�
+�����X��?��:�˱LUr�*��Y
i�Q�WPl�CcJ�����Z�1Ƞ;Y����x�E����t�S�
+����v�Spj�}]��y~�^�ywZ�����߃�j"4�/p�������s?��}�9�Y�&M��^�Sk����]���H]��� pe��?"��d|C��'�Z�/w^XS�:��{|M���6U��n� ���sE��"pЃ�
1i�R�{H#hCx��� �fE�##RX����F��Q3�lۗ=�P�w=���(��+M��=�2g\h��( ����C{|1���	����NPy�8+o�����dq��s����l�G��`���8�B�LB�V[��_u8|2���{G��L#��G������&�dm@�nJ�c
�8���&�^3аB�GR5�r���(��_,%ʽ�\;����
V?��k�?LceEӘ-�Vs�;�戒������8C
+{����tKp��H^���{uG��B�w$�—;�Gr�#]�����z7&��P�?*��^��y�X�k)�`���~V�-�a��endstream
+endobj
+1926 0 obj <<
+/Type /Page
+/Contents 1927 0 R
+/Resources 1925 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1949 0 R
+/Annots [ 1945 0 R ]
+>> endobj
+1945 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [487.887 245.191 505.55 254.102]
+/Subtype /Link
+/A << /S /GoTo /D (gloss-cgi) >>
+>> endobj
+1220 0 obj <<
+/D [1926 0 R /XYZ 71.731 718.306 null]
+>> endobj
+54 0 obj <<
+/D [1926 0 R /XYZ 227.213 707.841 null]
+>> endobj
+1928 0 obj <<
+/D [1926 0 R /XYZ 71.731 697.476 null]
+>> endobj
+1221 0 obj <<
+/D [1926 0 R /XYZ 71.731 672.608 null]
+>> endobj
+58 0 obj <<
+/D [1926 0 R /XYZ 156.121 640.294 null]
+>> endobj
+1929 0 obj <<
+/D [1926 0 R /XYZ 71.731 631.842 null]
+>> endobj
+1930 0 obj <<
+/D [1926 0 R /XYZ 163.177 621.365 null]
+>> endobj
+1931 0 obj <<
+/D [1926 0 R /XYZ 71.731 614.976 null]
+>> endobj
+1932 0 obj <<
+/D [1926 0 R /XYZ 367.427 603.432 null]
+>> endobj
+1933 0 obj <<
+/D [1926 0 R /XYZ 71.731 588.324 null]
+>> endobj
+1934 0 obj <<
+/D [1926 0 R /XYZ 71.731 573.38 null]
+>> endobj
+1935 0 obj <<
+/D [1926 0 R /XYZ 363.982 563.881 null]
+>> endobj
+1936 0 obj <<
+/D [1926 0 R /XYZ 331.234 540.568 null]
+>> endobj
+1937 0 obj <<
+/D [1926 0 R /XYZ 71.731 512.673 null]
+>> endobj
+1222 0 obj <<
+/D [1926 0 R /XYZ 71.731 468.738 null]
+>> endobj
+62 0 obj <<
+/D [1926 0 R /XYZ 183.546 433.37 null]
+>> endobj
+1938 0 obj <<
+/D [1926 0 R /XYZ 71.731 424.733 null]
+>> endobj
+1939 0 obj <<
+/D [1926 0 R /XYZ 163.177 414.441 null]
+>> endobj
+1940 0 obj <<
+/D [1926 0 R /XYZ 71.731 408.052 null]
+>> endobj
+1941 0 obj <<
+/D [1926 0 R /XYZ 364.877 396.508 null]
+>> endobj
+1942 0 obj <<
+/D [1926 0 R /XYZ 71.731 376.419 null]
+>> endobj
+1223 0 obj <<
+/D [1926 0 R /XYZ 71.731 324.678 null]
+>> endobj
+66 0 obj <<
+/D [1926 0 R /XYZ 190.186 285.405 null]
+>> endobj
+1943 0 obj <<
+/D [1926 0 R /XYZ 71.731 278.053 null]
+>> endobj
+1944 0 obj <<
+/D [1926 0 R /XYZ 71.731 258.142 null]
+>> endobj
+1946 0 obj <<
+/D [1926 0 R /XYZ 435.451 208.493 null]
+>> endobj
+1947 0 obj <<
+/D [1926 0 R /XYZ 71.731 188.404 null]
+>> endobj
+1948 0 obj <<
+/D [1926 0 R /XYZ 384.386 177.609 null]
+>> endobj
+1224 0 obj <<
+/D [1926 0 R /XYZ 71.731 170.471 null]
+>> endobj
+1925 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
+1953 0 obj <<
+/Length 3073      
+/Filter /FlateDecode
+>>
+stream
+xڥk�۶���
+��!��	&�����vZ�3�s_�v�|�$HbM��\}��z䒦�9s�X,�}�N/|���VI��)G����_�a�͍����f4��o��=���`q�[�:UY�H���,�?z�y��v�2���߷U��eYT{���)�2_�t������M� QY<)����� �Q2w@?Qi�I2��
+Q�$=�V&ӑ����J���|U/M�=Te�oq��r��!��]��x�я��exs�K�m>���[��������,ղM%�5e�����+��(�놢�ץm��n��}\Ƒw����v]1ҬE�[�R�����Q)�mT���z�
+t�u���ԑ�7��s�i�5���{�	r`�������~xx�	<�b웺�2T֛�/��a�Zlr>-m#T�@�B�1'@��'�;'�c=�'�6ӡ�\��q-�ƶ`�`'2� Z�S�d����I����]�OU^�]+�fB��'d���x\�e����'��~"9�	���xPu�aZ*J�E&*�5:��7?��/��i_�Ͽ����C�� �ZeY�h�bw���ۑ�
+.-��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�
]��;�9΍q��=� �C-y�������G�Ǎc�d��~��cY��Q�9�v8Ȧ���o~�43EH�7�����÷��������+F���ڱ)��LU�-Wk˼���To׫^��T'O����4D�QIfTi�k�p���o�'endstream
+endobj
+1952 0 obj <<
+/Type /Page
+/Contents 1953 0 R
+/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 ]
+>> endobj
+1967 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [241.065 466.808 285.896 475.719]
+/Subtype /Link
+/A << /S /GoTo /D (configuration) >>
+>> endobj
+1976 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 <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [71.731 290.768 120.707 299.679]
+/Subtype /Link
+/A << /S /GoTo /D (install-perlmodules-manual) >>
+>> endobj
+70 0 obj <<
+/D [1952 0 R /XYZ 166.615 707.841 null]
+>> endobj
+1954 0 obj <<
+/D [1952 0 R /XYZ 71.731 697.476 null]
+>> endobj
+1955 0 obj <<
+/D [1952 0 R /XYZ 180.572 674.765 null]
+>> endobj
+1956 0 obj <<
+/D [1952 0 R /XYZ 231.734 674.765 null]
+>> endobj
+1957 0 obj <<
+/D [1952 0 R /XYZ 172.004 661.813 null]
+>> endobj
+1958 0 obj <<
+/D [1952 0 R /XYZ 71.731 659.657 null]
+>> endobj
+1959 0 obj <<
+/D [1952 0 R /XYZ 118.555 624.105 null]
+>> endobj
+1960 0 obj <<
+/D [1952 0 R /XYZ 393.169 612.628 null]
+>> endobj
+1961 0 obj <<
+/D [1952 0 R /XYZ 273.304 600.972 null]
+>> endobj
+1962 0 obj <<
+/D [1952 0 R /XYZ 71.731 579.052 null]
+>> endobj
+1963 0 obj <<
+/D [1952 0 R /XYZ 202.34 559.346 null]
+>> endobj
+1225 0 obj <<
+/D [1952 0 R /XYZ 71.731 552.207 null]
+>> endobj
+74 0 obj <<
+/D [1952 0 R /XYZ 200.472 514.992 null]
+>> endobj
+1964 0 obj <<
+/D [1952 0 R /XYZ 71.731 507.64 null]
+>> 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]
+>> endobj
+1968 0 obj <<
+/D [1952 0 R /XYZ 71.731 461.826 null]
+>> endobj
+1969 0 obj <<
+/D [1952 0 R /XYZ 179.188 451.032 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]
+>> 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 <<
+/D [1952 0 R /XYZ 71.731 329.622 null]
+>> endobj
+1978 0 obj <<
+/D [1952 0 R /XYZ 71.731 280.805 null]
+>> endobj
+1979 0 obj <<
+/D [1952 0 R /XYZ 71.731 280.805 null]
+>> endobj
+1980 0 obj <<
+/D [1952 0 R /XYZ 71.731 259.935 null]
+>> endobj
+1981 0 obj <<
+/D [1952 0 R /XYZ 125.419 235.44 null]
+>> endobj
+1982 0 obj <<
+/D [1952 0 R /XYZ 71.731 233.283 null]
+>> endobj
+1983 0 obj <<
+/D [1952 0 R /XYZ 71.731 218.339 null]
+>> endobj
+1984 0 obj <<
+/D [1952 0 R /XYZ 204.375 197.184 null]
+>> endobj
+1985 0 obj <<
+/D [1952 0 R /XYZ 465.976 173.871 null]
+>> endobj
+1986 0 obj <<
+/D [1952 0 R /XYZ 76.712 145.577 null]
+>> endobj
+1987 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 <<
+/Length 2086      
+/Filter /FlateDecode
+>>
+stream
+xڭZm���~��e�̒����˽䂻�5�I?hm�Z�l�$y��_���d�;m\Dɏ�y��HΊ���,,	�"3&c5[�^��#���p���,�7�Wy���eq8[=�"��,�%�d�������m~hu=_H�����i�,�������?EY���~x�nu"Ua²4$��0Ǣh��1:�	�x����U�c���Px&a��jl�`������z���[�8�!G�z.y�{���!}�K�uȃ�h�z�1!���Q�hz]�ƹ\[��hZ0����sl������&��O���k{���Q .H��Eb4�Z
6e�kȇ� R�@9����`1����5���o��K��H�,S�
f�I�G"搧x��8K�6���TqP4���˺�JݺK�Ķ0'x��h��olD-j(��7O�m]7�d�죻j�/��樞��'&?y鼴8���E��$�W�{�k{����b�=�.Y��CU�v��y��H=�"~�_�E�7v||�ui[���x�$K8�,a<���,3N���AOs������z�v���#������]��A�&�߸�)	W���B��=�+����+����Ȭ�??|�C�R�ǂ�,�C�1���Co�S���#���6o����qw��A��A�B��0���=�+���+�W�)�u�Y'�^.�c�U���aw���A*^���`��0!�����ܨQ�����S*h��� d�=��� }�{�u���#�V������Z�}�U�$�0$��>�a!5�u��v�1I(�խ7�����O��DM�[S��0��t�*�%���DP�#��D|9����K�̠}�5!��U(i�z�W$AGS�HS��"�#����(aʺ�S�.��q��hF+�c�
+8z�y�r]W����X���ᶯW�9�B�<�p�X SΌ����0��]‡�yt�V�z2��dSd�����:#�O	�a՝�)x�	�Fp���u�	��^h�c�n������I����fK���@<bt#�w�|����,�΋r������%HK�T���p��w	}����,�ߵU�ߗ�;�6����<k��?��Ø��{�owr�9%�]?���сo's�WT�A	���햒�눇��X{���m^����$@�Lpz�;�xS� �����I |�wG�5Lfo�f���
�Q�w�V���Β3^���9)��ɕa�c�IqrS~����>��۱�\~���v���E����0$)�-K�3���ߧE��{�����KK!	.pݜʇ��.-�k�o��q?I�RL�	�B�!]
+�2=�����8b!�7�7IBb\�=I�#���??�=$
+��
,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 <<
+/Type /Page
+/Contents 1990 0 R
+/Resources 1988 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 ]
+>> endobj
+2007 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 <<
+/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 <<
+/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 <<
+/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
-1361 0 obj <<
-/D [1354 0 R /XYZ 71.731 494.726 null]
+2032 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
-1362 0 obj <<
-/D [1354 0 R /XYZ 71.731 448.949 null]
+2035 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
-1363 0 obj <<
-/D [1354 0 R /XYZ 71.731 405.113 null]
+2038 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
-1164 0 obj <<
-/D [1354 0 R /XYZ 71.731 348.326 null]
+2041 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
-30 0 obj <<
-/D [1354 0 R /XYZ 216.752 305.229 null]
+2044 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
-1364 0 obj <<
-/D [1354 0 R /XYZ 71.731 296.406 null]
+1991 0 obj <<
+/D [1989 0 R /XYZ 140.002 696.687 null]
 >> endobj
-1365 0 obj <<
-/D [1354 0 R /XYZ 71.731 263.58 null]
+1992 0 obj <<
+/D [1989 0 R /XYZ 71.731 668.792 null]
 >> endobj
-1366 0 obj <<
-/D [1354 0 R /XYZ 290.161 252.785 null]
+1993 0 obj <<
+/D [1989 0 R /XYZ 71.731 637.808 null]
 >> endobj
-1367 0 obj <<
-/D [1354 0 R /XYZ 86.396 239.834 null]
+1994 0 obj <<
+/D [1989 0 R /XYZ 170.798 624.956 null]
 >> endobj
-1368 0 obj <<
-/D [1354 0 R /XYZ 71.731 226.882 null]
+1995 0 obj <<
+/D [1989 0 R /XYZ 71.731 617.818 null]
 >> endobj
-1369 0 obj <<
-/D [1354 0 R /XYZ 71.731 206.793 null]
+1996 0 obj <<
+/D [1989 0 R /XYZ 89.664 597.061 null]
 >> endobj
-1370 0 obj <<
-/D [1354 0 R /XYZ 401.7 195.998 null]
+1997 0 obj <<
+/D [1989 0 R /XYZ 71.731 594.904 null]
 >> endobj
-1371 0 obj <<
-/D [1354 0 R /XYZ 71.731 175.909 null]
+1998 0 obj <<
+/D [1989 0 R /XYZ 89.664 579.128 null]
 >> endobj
-1372 0 obj <<
-/D [1354 0 R /XYZ 174.215 152.162 null]
+1999 0 obj <<
+/D [1989 0 R /XYZ 71.731 577.345 null]
 >> endobj
-1373 0 obj <<
-/D [1354 0 R /XYZ 400.723 152.162 null]
+2000 0 obj <<
+/D [1989 0 R /XYZ 89.664 561.196 null]
 >> endobj
-1374 0 obj <<
-/D [1354 0 R /XYZ 252.032 139.211 null]
+2001 0 obj <<
+/D [1989 0 R /XYZ 71.731 559.039 null]
 >> endobj
-1375 0 obj <<
-/D [1354 0 R /XYZ 468.03 139.211 null]
+2002 0 obj <<
+/D [1989 0 R /XYZ 89.664 543.263 null]
 >> endobj
-1376 0 obj <<
-/D [1354 0 R /XYZ 250.369 126.26 null]
+2003 0 obj <<
+/D [1989 0 R /XYZ 71.731 541.48 null]
 >> endobj
-1377 0 obj <<
-/D [1354 0 R /XYZ 466.356 126.26 null]
+2004 0 obj <<
+/D [1989 0 R /XYZ 89.664 525.33 null]
 >> endobj
-1378 0 obj <<
-/D [1354 0 R /XYZ 252.032 113.308 null]
+2005 0 obj <<
+/D [1989 0 R /XYZ 71.731 523.547 null]
 >> endobj
-1379 0 obj <<
-/D [1354 0 R /XYZ 480.762 113.308 null]
+2006 0 obj <<
+/D [1989 0 R /XYZ 89.664 507.397 null]
 >> endobj
-1353 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F33 1160 0 R >>
+2008 0 obj <<
+/D [1989 0 R /XYZ 71.731 505.24 null]
+>> endobj
+2009 0 obj <<
+/D [1989 0 R /XYZ 89.664 489.465 null]
+>> endobj
+2010 0 obj <<
+/D [1989 0 R /XYZ 71.731 487.308 null]
+>> endobj
+2011 0 obj <<
+/D [1989 0 R /XYZ 89.664 471.532 null]
+>> endobj
+2012 0 obj <<
+/D [1989 0 R /XYZ 71.731 469.375 null]
+>> endobj
+2013 0 obj <<
+/D [1989 0 R /XYZ 89.664 453.599 null]
+>> endobj
+2014 0 obj <<
+/D [1989 0 R /XYZ 71.731 451.442 null]
+>> endobj
+2015 0 obj <<
+/D [1989 0 R /XYZ 89.664 435.666 null]
+>> endobj
+2017 0 obj <<
+/D [1989 0 R /XYZ 71.731 433.509 null]
+>> endobj
+2018 0 obj <<
+/D [1989 0 R /XYZ 89.664 417.734 null]
+>> endobj
+2019 0 obj <<
+/D [1989 0 R /XYZ 71.731 415.577 null]
+>> endobj
+2020 0 obj <<
+/D [1989 0 R /XYZ 89.664 399.801 null]
+>> endobj
+2021 0 obj <<
+/D [1989 0 R /XYZ 71.731 398.018 null]
+>> endobj
+2022 0 obj <<
+/D [1989 0 R /XYZ 89.664 381.868 null]
+>> endobj
+2023 0 obj <<
+/D [1989 0 R /XYZ 169.145 363.935 null]
+>> endobj
+2024 0 obj <<
+/D [1989 0 R /XYZ 71.731 356.797 null]
+>> endobj
+2025 0 obj <<
+/D [1989 0 R /XYZ 89.664 336.04 null]
+>> endobj
+2027 0 obj <<
+/D [1989 0 R /XYZ 71.731 333.883 null]
+>> endobj
+2028 0 obj <<
+/D [1989 0 R /XYZ 89.664 318.107 null]
+>> endobj
+2030 0 obj <<
+/D [1989 0 R /XYZ 71.731 315.95 null]
+>> endobj
+2031 0 obj <<
+/D [1989 0 R /XYZ 89.664 300.174 null]
+>> endobj
+2033 0 obj <<
+/D [1989 0 R /XYZ 71.731 298.018 null]
+>> endobj
+2034 0 obj <<
+/D [1989 0 R /XYZ 89.664 282.242 null]
+>> endobj
+2036 0 obj <<
+/D [1989 0 R /XYZ 71.731 280.085 null]
+>> endobj
+2037 0 obj <<
+/D [1989 0 R /XYZ 89.664 264.309 null]
+>> endobj
+2039 0 obj <<
+/D [1989 0 R /XYZ 71.731 262.152 null]
+>> endobj
+2040 0 obj <<
+/D [1989 0 R /XYZ 89.664 246.376 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]
+>> endobj
+1226 0 obj <<
+/D [1989 0 R /XYZ 76.712 210.511 null]
+>> endobj
+78 0 obj <<
+/D [1989 0 R /XYZ 182.984 176.04 null]
+>> endobj
+2045 0 obj <<
+/D [1989 0 R /XYZ 71.731 167.588 null]
+>> endobj
+1988 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
-1382 0 obj <<
-/Length 1835      
+2048 0 obj <<
+/Length 1778      
 /Filter /FlateDecode
 >>
 stream
-xڭXmo�6��_a`f	+J�-Ð����v�l��-1�T��,��;��,�V�
�?H2�G���'��d��2�G�B�"��ۣh���WG�K�x������ы��d�B�E2��������d��(K��u���eIjM��$N�)F�y�F���)��ʰ����~{tuݮ�&K�ʒG�d��/w{G�2������ܸ��q/�3M��
-�Y�[�u_Z���,��pMñ�O�������0����5��U�(�f���/H�Ɛ
U�(Qv�|5��$�F�$vw3��ݽgU��MNp�V����4�Viq��(]tf��^�\la�[O��@�.��%�qjm��I�h�hna\fӗ�����16L�1J��u�AM�(�Vi�������)���,�g7H��(r+�wk��v���T}�Z��;��M�;��)̦l�0������gh���[�=TI�[��{���Rh�����==�(y��^ɛ/݋2u
��U��x -�ɜ�$��.j���i�U���f۷��/��x	�[Ù~8
��e+�{������0�S�Dr���y�V޳�ޓA�f����k'}����z龻�(K~C
-񑟂og����|e�;C���(�c���=�Ya���"vW���#_S���P�O�m�;kSY�Z/�bCa�PQ�Ѵ��JZü���t��y��8�"NM�;���-���|pŸf|2��d�eF�h;�l+�m"!7 VI�OA�1��gC��6
-�������D�C�����n�︧E1��������{7u������@�_��VW���t����B�CpLH�3�M74l~
٥xw��H��+�#�o�c��<�0�Lӯ���@�
-����!����)��=�7�\�wԍ�Dz����և@�X4��H����@��NRZ��Nn��hi��Sw�� 8��vs�p�����j��EqU�C�_H�#��^R��q�#��Bt��%ч�y��?�.^�d�>�;u��z���tI�u��+�)��vk��׈0��ٽ`.��Ɔ*�8��R�B����gi:
�hb˾���Z��g��z��rn�X�cmd� e�W�Bl��8{.�:�Ɛ"=�ִE��*�٭��@6&逧k�w4mj��L{:�5]ИY��_
U�B�)����m�ڏY�4�9:�̃���ӵ�Vtj�5ޒ\�ݔ�Ъ��G�5tN8p�rK������Nb�|6�h��:����[dW�w���Y���O�P#-G8>`_S��������o��PI��*�ҴowO!��S�p�E(˞
���1p��@��������BO\����>�/V����@���.� k��q���j��v7�{�+�i�K�kz�wrQ�R��y(��t�0�w��ķ΄�&��u�H�{#*�IY�@ݶ�=�4�lu����p����.hlw"����g����U�pN�oT�����򒨜T�]@����%����v�<dN���?I(�߱Z�����n�ݡ4.oK���缐���,���oE��Ś����ڦuy� ��+���-阦՚���G��zRIҩt���2�W��ifR�ˊ�3L�s�sp����52x��#^�Ԩ�5�jx9iM9ՀPMQm�ۥ'��*5r�ĝq���u����t2�j��R���k�HajL3�1U�����P�)(��7%��;t{��f���Z�&:/�;9�r{��^�NR�cY%V���d[�K��_�]�h�Wn�Wp�;��	ѱ��t�	d���Q�0��’Ǧe�f��n�ӱ�=C����D�.��$AQ�j�;��n��W��لendstream
+xڽˎ�6�_a�X�"�����y ER���hz�%�"K�(%q��� %y��$mQ���p8��,��"~�"3_&�"?^�=�<��beIV3�Ǜ����"�$\lv�H��,]���ױ\l�?����u�\�8��������z�������������WO7��8L�lޫ���PL��bξ`�QD�=�Q��#$�fǘ�KxU��
+�2���*�p��.d�}�Xv�6}�Y������د���5��T�>R��CU�Q�����4]q}[�]-e�}\���|����I���uo��6�*�0e7��m��JH?��B�Ǥ�y���Iq��W[eHr�}:���^��������
+��fhϒ����}T�.��=b(~�I)�?�)wҵ�Y&���-���u��}�3�]�ְ
+�}�h1��̈��MJ�ީ���f�L���ID$^3.s��k{�3��{�낷1<�+��0�À��v����3˝V �:�ߚC4�Vۊ����^�w(H
U�xu����,ނ�ט;�s݂�0�!؊��+-�4�v:o���Q��8�fޢdA̡�2�f��{��Qoze�ª`��⹿�d�k�S�+TV	n��C��Ǯ*����w�{��]�U��o������'S�	_ߒlWKt�cS�ŕc�U'�:�a(;T��$;^m�=��v�N�P��r�ۦ��d(�$����d�X��O΄_�^�0%<�#���R���2�^/�=�|����d����O�'B��û"�1X�x���fZ�K���쨖!Xno۫G�9?����-�XY��ɋ��^!@���l����������ʫ��E^	c�J��SV�++Ȕ$N�7U�m�܁�
+CY���`�!����}qgd�Yȿ0�9�] d�
%�O�b�	@�*���a*�����‰('�.����ѓWO��;^�Uh�
+}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
-1381 0 obj <<
+2047 0 obj <<
 /Type /Page
-/Contents 1382 0 R
-/Resources 1380 0 R
+/Contents 2048 0 R
+/Resources 2046 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1434 0 R
+/Parent 1949 0 R
 >> endobj
-1383 0 obj <<
-/D [1381 0 R /XYZ 71.731 741.22 null]
+1234 0 obj <<
+/D [2047 0 R /XYZ 71.731 741.22 null]
 >> endobj
-1384 0 obj <<
-/D [1381 0 R /XYZ 71.731 718.306 null]
+2049 0 obj <<
+/D [2047 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1385 0 obj <<
-/D [1381 0 R /XYZ 444.878 708.344 null]
+1227 0 obj <<
+/D [2047 0 R /XYZ 71.731 688.254 null]
 >> endobj
-1165 0 obj <<
-/D [1381 0 R /XYZ 71.731 688.254 null]
+82 0 obj <<
+/D [2047 0 R /XYZ 242.807 654.944 null]
 >> endobj
-34 0 obj <<
-/D [1381 0 R /XYZ 164.538 645.157 null]
+2050 0 obj <<
+/D [2047 0 R /XYZ 71.731 646.492 null]
 >> endobj
-1386 0 obj <<
-/D [1381 0 R /XYZ 71.731 636.334 null]
+1228 0 obj <<
+/D [2047 0 R /XYZ 71.731 602.974 null]
 >> endobj
-1387 0 obj <<
-/D [1381 0 R /XYZ 71.731 595.538 null]
+86 0 obj <<
+/D [2047 0 R /XYZ 167.419 569.664 null]
 >> endobj
-1388 0 obj <<
-/D [1381 0 R /XYZ 71.731 580.594 null]
+2051 0 obj <<
+/D [2047 0 R /XYZ 71.731 561.212 null]
 >> endobj
-1389 0 obj <<
-/D [1381 0 R /XYZ 154.5 569.799 null]
+2052 0 obj <<
+/D [2047 0 R /XYZ 71.731 548.578 null]
 >> endobj
-1390 0 obj <<
-/D [1381 0 R /XYZ 71.731 569.611 null]
+2053 0 obj <<
+/D [2047 0 R /XYZ 71.731 533.634 null]
 >> endobj
-1391 0 obj <<
-/D [1381 0 R /XYZ 91.656 551.866 null]
+2054 0 obj <<
+/D [2047 0 R /XYZ 91.656 512.478 null]
 >> endobj
-1392 0 obj <<
-/D [1381 0 R /XYZ 71.731 539.747 null]
+2055 0 obj <<
+/D [2047 0 R /XYZ 142.208 512.478 null]
 >> endobj
-1393 0 obj <<
-/D [1381 0 R /XYZ 138.849 528.952 null]
+2056 0 obj <<
+/D [2047 0 R /XYZ 76.712 484.184 null]
 >> endobj
-1394 0 obj <<
-/D [1381 0 R /XYZ 71.731 526.796 null]
+2057 0 obj <<
+/D [2047 0 R /XYZ 71.731 464.259 null]
 >> endobj
-1395 0 obj <<
-/D [1381 0 R /XYZ 91.656 511.02 null]
+2058 0 obj <<
+/D [2047 0 R /XYZ 373.496 452.603 null]
 >> endobj
-1396 0 obj <<
-/D [1381 0 R /XYZ 71.731 485.949 null]
+2059 0 obj <<
+/D [2047 0 R /XYZ 193.02 440.946 null]
 >> endobj
-1397 0 obj <<
-/D [1381 0 R /XYZ 137.315 475.154 null]
+1229 0 obj <<
+/D [2047 0 R /XYZ 71.731 413.051 null]
 >> endobj
-1398 0 obj <<
-/D [1381 0 R /XYZ 71.731 473.746 null]
+90 0 obj <<
+/D [2047 0 R /XYZ 210.827 377.584 null]
 >> endobj
-1399 0 obj <<
-/D [1381 0 R /XYZ 91.656 457.221 null]
+2060 0 obj <<
+/D [2047 0 R /XYZ 71.731 369.132 null]
 >> endobj
-1400 0 obj <<
-/D [1381 0 R /XYZ 71.731 445.102 null]
+1230 0 obj <<
+/D [2047 0 R /XYZ 71.731 338.565 null]
 >> endobj
-1401 0 obj <<
-/D [1381 0 R /XYZ 136.508 434.307 null]
+94 0 obj <<
+/D [2047 0 R /XYZ 207.683 305.255 null]
 >> endobj
-1402 0 obj <<
-/D [1381 0 R /XYZ 71.731 434.119 null]
+2061 0 obj <<
+/D [2047 0 R /XYZ 71.731 296.803 null]
 >> endobj
-1403 0 obj <<
-/D [1381 0 R /XYZ 91.656 416.375 null]
+1231 0 obj <<
+/D [2047 0 R /XYZ 71.731 279.188 null]
 >> endobj
-1404 0 obj <<
-/D [1381 0 R /XYZ 71.731 404.255 null]
+98 0 obj <<
+/D [2047 0 R /XYZ 234.008 245.878 null]
 >> endobj
-1405 0 obj <<
-/D [1381 0 R /XYZ 128.578 393.461 null]
+2062 0 obj <<
+/D [2047 0 R /XYZ 71.731 237.24 null]
 >> endobj
-1406 0 obj <<
-/D [1381 0 R /XYZ 71.731 392.053 null]
+1232 0 obj <<
+/D [2047 0 R /XYZ 71.731 219.811 null]
 >> endobj
-1407 0 obj <<
-/D [1381 0 R /XYZ 91.656 375.528 null]
+102 0 obj <<
+/D [2047 0 R /XYZ 216.458 186.501 null]
 >> endobj
-1408 0 obj <<
-/D [1381 0 R /XYZ 71.731 350.457 null]
+2063 0 obj <<
+/D [2047 0 R /XYZ 71.731 178.048 null]
 >> endobj
-1409 0 obj <<
-/D [1381 0 R /XYZ 145.324 339.662 null]
+2064 0 obj <<
+/D [2047 0 R /XYZ 416.404 167.572 null]
 >> endobj
-1410 0 obj <<
-/D [1381 0 R /XYZ 71.731 337.505 null]
+2065 0 obj <<
+/D [2047 0 R /XYZ 193.324 141.669 null]
 >> endobj
-1411 0 obj <<
-/D [1381 0 R /XYZ 91.656 321.73 null]
+1233 0 obj <<
+/D [2047 0 R /XYZ 71.731 134.531 null]
 >> endobj
-1412 0 obj <<
-/D [1381 0 R /XYZ 71.731 309.61 null]
+2046 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
-1413 0 obj <<
-/D [1381 0 R /XYZ 122.291 298.815 null]
+2068 0 obj <<
+/Length 2283      
+/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�]�����%���$_�Cyi9I��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
+endobj
+2067 0 obj <<
+/Type /Page
+/Contents 2068 0 R
+/Resources 2066 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1949 0 R
+/Annots [ 2081 0 R ]
 >> endobj
-1414 0 obj <<
-/D [1381 0 R /XYZ 71.731 297.408 null]
+2081 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [244.495 240.371 283.866 248.853]
+/Subtype /Link
+/A << /S /GoTo /D (security) >>
 >> endobj
-1415 0 obj <<
-/D [1381 0 R /XYZ 91.656 280.883 null]
+2069 0 obj <<
+/D [2067 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1416 0 obj <<
-/D [1381 0 R /XYZ 71.731 262.85 null]
+2070 0 obj <<
+/D [2067 0 R /XYZ 71.731 741.22 null]
 >> endobj
-1417 0 obj <<
-/D [1381 0 R /XYZ 434.078 249.998 null]
+106 0 obj <<
+/D [2067 0 R /XYZ 222.436 708.344 null]
 >> endobj
-1418 0 obj <<
-/D [1381 0 R /XYZ 499.154 249.998 null]
+2071 0 obj <<
+/D [2067 0 R /XYZ 71.731 699.891 null]
 >> endobj
-1419 0 obj <<
-/D [1381 0 R /XYZ 108.802 237.047 null]
+2072 0 obj <<
+/D [2067 0 R /XYZ 453.495 689.415 null]
 >> endobj
-1420 0 obj <<
-/D [1381 0 R /XYZ 176.587 237.047 null]
+110 0 obj <<
+/D [2067 0 R /XYZ 225.412 648.966 null]
 >> endobj
-1421 0 obj <<
-/D [1381 0 R /XYZ 231.092 237.047 null]
+2073 0 obj <<
+/D [2067 0 R /XYZ 71.731 640.514 null]
 >> endobj
-1422 0 obj <<
-/D [1381 0 R /XYZ 285.049 237.047 null]
+1235 0 obj <<
+/D [2067 0 R /XYZ 71.731 599.985 null]
 >> endobj
-1423 0 obj <<
-/D [1381 0 R /XYZ 363.644 237.047 null]
+114 0 obj <<
+/D [2067 0 R /XYZ 287.71 562.77 null]
 >> endobj
-1424 0 obj <<
-/D [1381 0 R /XYZ 434.497 237.047 null]
+2074 0 obj <<
+/D [2067 0 R /XYZ 71.731 552.405 null]
 >> endobj
-1425 0 obj <<
-/D [1381 0 R /XYZ 483.483 237.047 null]
+2075 0 obj <<
+/D [2067 0 R /XYZ 71.731 535.507 null]
 >> endobj
-1426 0 obj <<
-/D [1381 0 R /XYZ 100.523 224.096 null]
+2076 0 obj <<
+/D [2067 0 R /XYZ 71.731 478.72 null]
 >> endobj
-1427 0 obj <<
-/D [1381 0 R /XYZ 169.284 224.096 null]
+2077 0 obj <<
+/D [2067 0 R /XYZ 71.731 447.836 null]
 >> endobj
-1428 0 obj <<
-/D [1381 0 R /XYZ 226.011 224.096 null]
+2078 0 obj <<
+/D [2067 0 R /XYZ 71.731 393.106 null]
 >> endobj
-1429 0 obj <<
-/D [1381 0 R /XYZ 71.731 217.675 null]
+1236 0 obj <<
+/D [2067 0 R /XYZ 71.731 363.153 null]
 >> endobj
-1430 0 obj <<
-/D [1381 0 R /XYZ 244.94 206.163 null]
+118 0 obj <<
+/D [2067 0 R /XYZ 218.078 320.056 null]
 >> endobj
-1166 0 obj <<
-/D [1381 0 R /XYZ 71.731 173.122 null]
+2079 0 obj <<
+/D [2067 0 R /XYZ 71.731 316.226 null]
 >> endobj
-38 0 obj <<
-/D [1381 0 R /XYZ 297.751 130.024 null]
+2080 0 obj <<
+/D [2067 0 R /XYZ 118.555 274.035 null]
 >> endobj
-1431 0 obj <<
-/D [1381 0 R /XYZ 71.731 129.809 null]
+1237 0 obj <<
+/D [2067 0 R /XYZ 71.731 230.408 null]
 >> endobj
-1432 0 obj <<
-/D [1381 0 R /XYZ 71.731 121.202 null]
+122 0 obj <<
+/D [2067 0 R /XYZ 187.345 197.904 null]
+>> endobj
+2082 0 obj <<
+/D [2067 0 R /XYZ 71.731 187.539 null]
 >> endobj
-1433 0 obj <<
-/D [1381 0 R /XYZ 71.731 106.308 null]
+2083 0 obj <<
+/D [2067 0 R /XYZ 154.51 177.78 null]
 >> endobj
-1380 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F35 1229 0 R >>
-/ProcSet [ /PDF /Text ]
+2084 0 obj <<
+/D [2067 0 R /XYZ 338.14 177.78 null]
 >> endobj
-1437 0 obj <<
-/Length 1268      
-/Filter /FlateDecode
->>
-stream
-x��Wmo�6��_�a�*#�J*�I��
��u@[�L�Z%Q�K����(R�l�ِ})���u��ޞ�	{!�a/�(������������a'8�`$s���]S�%(�[�=F��"JP̉�X��oeժz���|���n۬��]�R�����b��i����k� 3���l����Q�{�.U��Y�f�pD�ϫJ�Z��Đ!D!��@|���z+��f"���؇'�W̘�@�9��:��oL��o]�]	Fa��.��ǡ/�2+7��P
-��D��L������:Ȫ@,�FIB�Zy�=�B/�I���]'7Q��ŐA6� f�2a�����(–��L�wg׌y1�p�'�c$xdS��G��؇����J{���[�kҬit�|3)�.�F&>�[F4�@���~7����W�B��}^fek#��E�P����,���4�����N�휆����휘�=��GsT�$�����\�
Ϝ#c�@r2��'���u���^#s�`�!���\�-��ޖ�c���=�W�Zׅ��oU���e�aUl*�fs��ܞe۪r(�c��I�X���qB��S��C��Q�"r�g�rȼ(A1f{�{��+��6|��z�ŕI*97�u2Y�Nqd��CD�!�;�49�d�m��reKF�r��*mu}k��,\�S~��נ�Nn���ธ�뢐���o�]�Ό��R+H���N�Ã+5��yz[,8ƌ�:� �P��h�5�~4��wCU�rcDW��!c)�cX�7[�û� ����#�x�u����[�|����?���\h�Cb&�_��$NW�����e�Ǫ�<'h��e�̈�%�osL�������#�.�����*ֺj%s��t��&�M#�T���
- 
F�3� ��&��"c�E��;�s9e�oS��:�	蔥E""ǘ��X�af�KU>feM9�1��)u)t��Ѕ�de�DBC5�65l�ڬ�7�6���Ԁ
-��͔s�l�����	�s؀4v��
�+�v�xF\���uP�:����=0����z=���;����F9��VC�i\�6�p�nP�#��rW�6�~�4�C9�`��U�6,X7?��f�n�A���3�t�V�$�yV����8��76�f�}��m�V���L�2*�]�
7���U��P�ɞA�Xui�t��zp�K|:����@��dЉ���b���w'2a'�>4vZ�������5�z�endstream
-endobj
-1436 0 obj <<
-/Type /Page
-/Contents 1437 0 R
-/Resources 1435 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 1434 0 R
-/Annots [ 1441 0 R ]
+2085 0 obj <<
+/D [2067 0 R /XYZ 71.731 165.66 null]
 >> endobj
-1441 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [310.336 418.223 343.551 433.166]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-bugzilla) >>
+2086 0 obj <<
+/D [2067 0 R /XYZ 71.731 165.66 null]
 >> endobj
-1438 0 obj <<
-/D [1436 0 R /XYZ 71.731 718.306 null]
+2087 0 obj <<
+/D [2067 0 R /XYZ 71.731 144.791 null]
 >> endobj
-1442 0 obj <<
-/D [1436 0 R /XYZ 71.731 380.365 null]
+2088 0 obj <<
+/D [2067 0 R /XYZ 113.898 133.247 null]
 >> endobj
-1443 0 obj <<
-/D [1436 0 R /XYZ 209.911 357.45 null]
+2089 0 obj <<
+/D [2067 0 R /XYZ 177.702 120.295 null]
 >> endobj
-1435 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F44 1440 0 R /F35 1229 0 R /F32 1071 0 R >>
+2066 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
-1447 0 obj <<
-/Length 2231      
+2092 0 obj <<
+/Length 2232      
 /Filter /FlateDecode
 >>
 stream
-xڭY[��6~�_��:�D���ӧi�����f�Ţ�'Q�8vjٓN})���K�bO1؎�"?R����V#��O���|GWGx�;�~p��y�	DD�X�6��/����b�)	�d�|�PA�W����/O饖�zã���\U�y�G��Es�#��t���W�J����mNh��8aCi��E���$a�����`��pn����;#���$�O������([sꕍy��Q����Y�>�%j�{m�$�Q[������%��g��Ks-J�WH��,�����j���e!�]�˩O�2w�S��0�ψ}Q�\��^�|�D�14�>�u�6���O}0B�j���)ݟ�"Su�f�K��ڰ}�O��߿:�z��I��q�:+��r��
ɗ�O=� �V��P�Tl,J|Jbߠ��j@]��I��U�i-���P���J���	$�iT)y3��6o�Hm�ﳢ�?B�Oe�V�"��!\�Z0֌ոf�-Gk
-H9Y�y�77��ܵ���sW�X�A����قG��#c��	�H��ߓܵ����[f,$A�M[�E��G10�"�
T:�WUw�U�Ĥ5��s�Z�llL��%"-40��"wY�����
�"�P����O�h}}P�s͡&hg�kC�e����5�ޱsMɩ��Q�)zz��i�����CU����)����vd��:<��z
-��3��_qZ��k�\.eU��¡y3�
�bk3�3
詮/�[�z�^�a���j�j�=��-d4��r���6"[!�loA	å_O��d[cj��;�M+�_���}޺���5�����S�`U�4B�M�򌀠�=�
-�lo�Ts�v�SZ��~���P��:���M7��N�=+��D�1gv!��R*���#p�;�Ъ)f���uW2?��kV�ʦ��^vˁ{�?�}'/5*,��,n�q����ȳ�k��߬�N{Q����ՠ��9�v1��ѭ4�t�����J��2폂���E0h}����]��O~�����N��%+��XUru�{���Ӥ�l�4\�a��r�
�>a~�>����RAAA�cf���sӪлԄmX�IL�MB�E��=�Iq�t��~�?��.�ه����),��S*wM%g�:�;p��E�$HxV�ՈGe�mȃ>��N��.z�v �LɄH�P�
�WZ"�"M˓������\��X6�C�'�
-|a_9	�?���qK��O��*��@����)�Zh�?([��C�(�"q��<�e}�y�a��ha�����>6lއ1Q0m%z�����-/K����Yj�����g�ԚYjΝ��F�B)=�v�|��[�p1|��"������QQ�F�꺒{�DԘh�w7�����(\$����䢈��M���ğ�5�vޑ$�1��		C�+�q�zt��oe�O���-EM3@�
#��:$�<��~�ش�7+��B�}_ � uV���Ą��<��ڭ��|�b9��������o�j�Sҿ��M��� �ޞ�{?ɿ���ŋ!�2��Y�	����F�>I!>[��B�x�f�y�En�	%�C�V���>!I.���� E�Er��~ghg-	�2[�O��:���0"��lE���� �z��(.xe��x5��{7�[@I�O����Q��<�g���Aa$~�8�.7���'���
���t�0\��7�TS�%D��.�Ћ���A�Z������5��^�_E�!o�01|n�-�qݚ��i�<�E�Ui��=��6Z	4OB���,����,:��
-�d���O@*ϝW1�z���r������C����
P�P�n�փ�I�2U�Փ)<��P�"0H�
-x��F#��'���M���6�����-�m�+��mM:��ԋ���t�u]�aD�i#��tk�p#�r#��a��Vϒ���Q�7�4��,�Gf&��<E��) ����0،B�������Ro�:s�����F����ܗR��Y���& �}s�.g#����t?c���'�'��rɺc��`���9훧˸T&��`m:_͝f^` L�Ҟ����tJ�O���֞O�\�V\�C�����s��)Ը����D-�9�vO]Qñ,q鰘t8ھH��C7�j�OO�`��s� ���	�5*p�;��V�>�����ܕ�d��a�1�h���"m��;�0YQ�ii������Z��0��endstream
+x��]�ܶ��~��8mq�EI�G
+?�n�:�����1���U���D������Z��Hڗ`���r��=�^?�e�e1Q��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
 endobj
-1446 0 obj <<
+2091 0 obj <<
 /Type /Page
-/Contents 1447 0 R
-/Resources 1445 0 R
+/Contents 2092 0 R
+/Resources 2090 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1434 0 R
-/Annots [ 1454 0 R 1464 0 R 1466 0 R 1468 0 R 1470 0 R 1472 0 R 1474 0 R ]
->> endobj
-1454 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 553.321 116.562 562.233]
-/Subtype /Link
-/A << /S /GoTo /D (os-specific) >>
->> endobj
-1464 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 319.519 133.11 328.43]
-/Subtype /Link
-/A << /S /GoTo /D (install-perl) >>
->> endobj
-1466 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 301.586 149.718 310.498]
-/Subtype /Link
-/A << /S /GoTo /D (install-mysql) >>
+/Parent 1949 0 R
+/Annots [ 2099 0 R 2100 0 R 2101 0 R 2104 0 R ]
 >> endobj
-1468 0 obj <<
+2099 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 285.711 166.176 292.565]
+/Rect [428.768 554.037 488.605 562.949]
 /Subtype /Link
-/A << /S /GoTo /D (install-webserver) >>
+/A << /S /GoTo /D (mysql) >>
 >> endobj
-1470 0 obj <<
+2100 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 265.721 150.823 274.632]
+/Rect [508.095 554.037 537.983 562.949]
 /Subtype /Link
-/A << /S /GoTo /D (install-bzfiles) >>
+/A << /S /GoTo /D (postgresql) >>
 >> endobj
-1472 0 obj <<
+2101 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 249.845 169.364 256.699]
+/Rect [71.731 543.143 99.128 549.997]
 /Subtype /Link
-/A << /S /GoTo /D (install-perlmodules) >>
+/A << /S /GoTo /D (postgresql) >>
 >> endobj
-1474 0 obj <<
+2104 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [92.154 229.855 208.008 238.767]
+/Rect [308.275 456.278 353.582 464.868]
 /Subtype /Link
-/A << /S /GoTo /D (install-MTA) >>
->> endobj
-1167 0 obj <<
-/D [1446 0 R /XYZ 71.731 718.306 null]
->> endobj
-42 0 obj <<
-/D [1446 0 R /XYZ 354.129 703.236 null]
->> endobj
-1168 0 obj <<
-/D [1446 0 R /XYZ 71.731 692.184 null]
->> endobj
-46 0 obj <<
-/D [1446 0 R /XYZ 196.111 651.159 null]
+/A << /S /GoTo /D (security-mysql) >>
 >> endobj
-1448 0 obj <<
-/D [1446 0 R /XYZ 71.731 650.944 null]
+2093 0 obj <<
+/D [2091 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1449 0 obj <<
-/D [1446 0 R /XYZ 71.731 632.374 null]
+2094 0 obj <<
+/D [2091 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1450 0 obj <<
-/D [1446 0 R /XYZ 189.012 620.933 null]
+2095 0 obj <<
+/D [2091 0 R /XYZ 263.826 708.344 null]
 >> endobj
-1453 0 obj <<
-/D [1446 0 R /XYZ 71.731 581.381 null]
+2096 0 obj <<
+/D [2091 0 R /XYZ 71.731 657.37 null]
 >> endobj
-1455 0 obj <<
-/D [1446 0 R /XYZ 71.731 548.34 null]
+2097 0 obj <<
+/D [2091 0 R /XYZ 450.823 633.624 null]
 >> endobj
-1456 0 obj <<
-/D [1446 0 R /XYZ 71.731 524.594 null]
+1238 0 obj <<
+/D [2091 0 R /XYZ 71.731 613.534 null]
 >> endobj
-1457 0 obj <<
-/D [1446 0 R /XYZ 71.731 504.504 null]
+126 0 obj <<
+/D [2091 0 R /XYZ 224.186 576.319 null]
 >> endobj
-1458 0 obj <<
-/D [1446 0 R /XYZ 71.731 467.707 null]
+2098 0 obj <<
+/D [2091 0 R /XYZ 71.731 568.966 null]
 >> endobj
-1459 0 obj <<
-/D [1446 0 R /XYZ 118.555 429.143 null]
+1239 0 obj <<
+/D [2091 0 R /XYZ 71.731 543.143 null]
 >> endobj
-1460 0 obj <<
-/D [1446 0 R /XYZ 71.731 387.21 null]
+130 0 obj <<
+/D [2091 0 R /XYZ 156.121 508.772 null]
 >> endobj
-1461 0 obj <<
-/D [1446 0 R /XYZ 71.731 360.739 null]
+2102 0 obj <<
+/D [2091 0 R /XYZ 71.731 506.297 null]
 >> endobj
-1462 0 obj <<
-/D [1446 0 R /XYZ 71.731 347.414 null]
+2103 0 obj <<
+/D [2091 0 R /XYZ 118.555 469.75 null]
 >> endobj
-1463 0 obj <<
-/D [1446 0 R /XYZ 71.731 337.452 null]
+2105 0 obj <<
+/D [2091 0 R /XYZ 71.731 434.766 null]
 >> endobj
-1465 0 obj <<
-/D [1446 0 R /XYZ 71.731 319.519 null]
+134 0 obj <<
+/D [2091 0 R /XYZ 221.647 407.743 null]
 >> endobj
-1467 0 obj <<
-/D [1446 0 R /XYZ 71.731 301.586 null]
+2106 0 obj <<
+/D [2091 0 R /XYZ 71.731 400.545 null]
 >> endobj
-1469 0 obj <<
-/D [1446 0 R /XYZ 71.731 285.711 null]
+2107 0 obj <<
+/D [2091 0 R /XYZ 173.289 376.859 null]
 >> endobj
-1471 0 obj <<
-/D [1446 0 R /XYZ 71.731 265.721 null]
+2108 0 obj <<
+/D [2091 0 R /XYZ 71.731 369.721 null]
 >> endobj
-1473 0 obj <<
-/D [1446 0 R /XYZ 71.731 249.845 null]
+2109 0 obj <<
+/D [2091 0 R /XYZ 71.731 346.806 null]
 >> endobj
-1475 0 obj <<
-/D [1446 0 R /XYZ 71.731 217.277 null]
+2110 0 obj <<
+/D [2091 0 R /XYZ 71.731 302.624 null]
 >> endobj
-1476 0 obj <<
-/D [1446 0 R /XYZ 71.731 198.971 null]
+2111 0 obj <<
+/D [2091 0 R /XYZ 71.731 278.961 null]
 >> endobj
-50 0 obj <<
-/D [1446 0 R /XYZ 138.296 161.756 null]
+2112 0 obj <<
+/D [2091 0 R /XYZ 71.731 234.779 null]
 >> endobj
-1477 0 obj <<
-/D [1446 0 R /XYZ 71.731 154.403 null]
+2113 0 obj <<
+/D [2091 0 R /XYZ 282.227 210.283 null]
 >> endobj
-1478 0 obj <<
-/D [1446 0 R /XYZ 163.177 141.631 null]
+2114 0 obj <<
+/D [2091 0 R /XYZ 71.731 195.175 null]
 >> endobj
-1479 0 obj <<
-/D [1446 0 R /XYZ 71.731 135.242 null]
+2115 0 obj <<
+/D [2091 0 R /XYZ 71.731 180.231 null]
 >> endobj
-1480 0 obj <<
-/D [1446 0 R /XYZ 163.346 110.747 null]
+2116 0 obj <<
+/D [2091 0 R /XYZ 71.731 131.18 null]
 >> endobj
-1445 0 obj <<
-/Font << /F23 1057 0 R /F44 1440 0 R /F48 1452 0 R /F27 1064 0 R /F35 1229 0 R /F33 1160 0 R >>
+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 ]
 >> endobj
-1488 0 obj <<
-/Length 2417      
+2119 0 obj <<
+/Length 2251      
 /Filter /FlateDecode
 >>
 stream
-xڵYm�۸���Ÿz6s%Ro>�Z�%�\�%��&(��,�6�����:��Ro��!h����33�p��p��$e�A7�&�8�����&D�5��4�������ņl���/�0#�t�2J��.�w�,_�F�v��q���~�����RT��]w��(�|����7��{�1K�&c���hf�Q�#¢Dk�R�E�ь����l��r��_�t8����5
HHcs���;��U�K�JQW���U,�T_[N,^�;#�4	��E~*W�$��s�k$^�`�n|��".ugvu��*̖ʾ�
���0^r���_�j�b��!�U���1j�Z3y;�S�W4^��y�Dy��|a_�tҎJ5_�ޞ��U/��4\��>a��n�hFŝ;}��CJ6�@֦����D!j�&��Y�Lt(��k!�k������V�E=�IP�ۼҒ/6A��TGn���A6ţv��S��X�̣Tu��¥h��.W�}Ү.9�� ���hE$ޠ������0�%)�`���P�������T�$��/�v�i���67
-L�X�t��4Y��:I[��!��k�ZM	�By6K�ᔯz�V�Koj�����;ٷ�>T�����ɮ�ߺC��m.���r�
-5�})�yu��P��ى��vq��_�d>���}fk7��MV3Q�fi�o듋V�|l�䥱w�:���c?s�0n����'ې8�0u��ڋC);K��]�bsc#A��H��ALXD�/h4<����[b�����u��!A/�Ev��XaaJv�OJ�I�fes^~
��o|w����$�@?�Ȅ��v�R���ï�V8ݞ8l��������H�bW�9�B������ g�!z�$E��(�Z�{5걼<���N��Z|R �ȇ8l	x���Bŀq����n8y��ĝ�B�/[@�#tߟ�
��#ߚ���
���N�<��ح��q��5�6��;��.˻�z�ea!�����q���P�k��O��]}W��y߷�]U�X=ű@U@J-_��͕����d�}�h��[���E���wc�mWUzl�j���!�S�B7�6�9���h>AN���������YyH3�7̙(�I��F�dъF�����Y�A�>��X�L��*?�6��.<gWw���C���R�N:�nP��}~(瞟��F.z��E�y�|���
�������ն+�m�E���/Ze���|�ƙ&�[�]a^�ZM�QD���˫A���y_��à4%�����+j�w>�Z�nx+xUp�"���#�]\@`��U����q�5�^�8�R6׻

r3�ɩ��m��`�-p��?���g��w�o��?@�5u��8�pЈ֩BF�žp��t#����������,�������Dv��z���3�,
-Te��F��8��D�v�舺
���Wwj:$��p��3qiS��d�qIvB��-x����9`( ���d.����+c�S��!VAp���+J�P�/���ϰV�lZ�o_�5Z^�E�p�B�����ѨA8��ހ��s�4y�4ڝ�8���g��O�2��u���V������B|9m�R�Q=L�Ǜ<6�L�l�1?Z�>Ah��n~�-X�������7�8b��t��f�-_�o�n~���W�4d��g�n�b��YS�,��_���#�4ѭ�&�˼sP:^c�a۴材��5��/~��Y8�
��Ah�0��Ka�߬����;�j�;��Iq���/`vGE��zw~��|GK$���b�WLc	aY�TW6W����~U�ݎ������"6��',͡�Q��s��B����--s]w�ya�4r�}g��oK�˹�qC�(�k����������M�d�&g��E���3t_^)�4��������4Ƞ�خ��rP�wj�����'�ᬇ����=��u�� zZ˶v�J.��2��_�k<9h����;��m'�3��İ�7u�;�R��UJ���6��<Gel�|4�Yr�5���)%u�i	7�ci�V� ��cg��������k�
-��t,�y��y%��~����%^/�ԧ3࿬��A�߫@�.�� '��wk؏���a|�6K���<M�-M��xb���Ӥ� �[�\b���D�w��I���aAg����$$��2�p�nހS�V�
-�\\����+�i���S'Z��6n��lܦ�br-�|iH^v7�gw��e���q���/q��R]����m��;�I�|�Aa�[�|��?Lh�8�u��(�f���|������p`o1��N��L�a�����#Y�43���1�h�ZJ�Lr���s���Y�c6��u(
-@�A�J���]O2�n�@H�hA�S��K�L�6�endstream
+xڭX{o�F�?����c�-��ɮ��]6�%�k�"P��-T�4����%�Y~4�.<�A���3�Ȇg4s�̃Ɲ7FI��������#&<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
 endobj
-1487 0 obj <<
+2118 0 obj <<
 /Type /Page
-/Contents 1488 0 R
-/Resources 1486 0 R
+/Contents 2119 0 R
+/Resources 2117 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1434 0 R
-/Annots [ 1501 0 R 1518 0 R ]
+/Parent 2157 0 R
+/Annots [ 2145 0 R ]
 >> endobj
-1501 0 obj <<
+2145 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [424.944 455.602 442.607 464.513]
+/Rect [446.952 215.427 499.255 224.339]
 /Subtype /Link
-/A << /S /GoTo /D (gloss-cgi) >>
+/A << /S /GoTo /D (localconfig) >>
 >> endobj
-1518 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [241.065 102.633 285.896 111.545]
-/Subtype /Link
-/A << /S /GoTo /D (configuration) >>
+2120 0 obj <<
+/D [2118 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1489 0 obj <<
-/D [1487 0 R /XYZ 71.731 741.22 null]
+138 0 obj <<
+/D [2118 0 R /XYZ 276.55 708.344 null]
 >> endobj
-1481 0 obj <<
-/D [1487 0 R /XYZ 71.731 718.306 null]
+2121 0 obj <<
+/D [2118 0 R /XYZ 71.731 703.248 null]
 >> endobj
-54 0 obj <<
-/D [1487 0 R /XYZ 161.035 707.841 null]
+2122 0 obj <<
+/D [2118 0 R /XYZ 71.731 670.321 null]
 >> endobj
-1490 0 obj <<
-/D [1487 0 R /XYZ 71.731 697.698 null]
+2123 0 obj <<
+/D [2118 0 R /XYZ 277.08 646.575 null]
 >> endobj
-1491 0 obj <<
-/D [1487 0 R /XYZ 163.177 687.716 null]
+2124 0 obj <<
+/D [2118 0 R /XYZ 71.731 634.456 null]
 >> endobj
-1492 0 obj <<
-/D [1487 0 R /XYZ 71.731 681.327 null]
+2125 0 obj <<
+/D [2118 0 R /XYZ 71.731 590.632 null]
 >> endobj
-1493 0 obj <<
-/D [1487 0 R /XYZ 359.5 669.784 null]
+2126 0 obj <<
+/D [2118 0 R /XYZ 357.781 578.73 null]
 >> endobj
-1494 0 obj <<
-/D [1487 0 R /XYZ 71.731 654.675 null]
+2127 0 obj <<
+/D [2118 0 R /XYZ 71.731 563.622 null]
 >> endobj
-1495 0 obj <<
-/D [1487 0 R /XYZ 71.731 639.731 null]
+2128 0 obj <<
+/D [2118 0 R /XYZ 71.731 548.678 null]
 >> endobj
-1496 0 obj <<
-/D [1487 0 R /XYZ 361.648 630.232 null]
+2129 0 obj <<
+/D [2118 0 R /XYZ 71.731 511.283 null]
 >> endobj
-1497 0 obj <<
-/D [1487 0 R /XYZ 331.234 606.919 null]
+142 0 obj <<
+/D [2118 0 R /XYZ 318.721 478.406 null]
 >> endobj
-1498 0 obj <<
-/D [1487 0 R /XYZ 71.731 579.024 null]
+2130 0 obj <<
+/D [2118 0 R /XYZ 71.731 471.208 null]
 >> endobj
-1482 0 obj <<
-/D [1487 0 R /XYZ 71.731 535.089 null]
+2131 0 obj <<
+/D [2118 0 R /XYZ 71.731 440.384 null]
 >> endobj
-58 0 obj <<
-/D [1487 0 R /XYZ 190.186 495.816 null]
+2132 0 obj <<
+/D [2118 0 R /XYZ 105.494 429.589 null]
 >> endobj
-1499 0 obj <<
-/D [1487 0 R /XYZ 71.731 488.464 null]
+2133 0 obj <<
+/D [2118 0 R /XYZ 71.731 418.219 null]
 >> endobj
-1500 0 obj <<
-/D [1487 0 R /XYZ 71.731 468.553 null]
+2134 0 obj <<
+/D [2118 0 R /XYZ 82.491 407.97 null]
 >> endobj
-1502 0 obj <<
-/D [1487 0 R /XYZ 223.022 418.904 null]
+2135 0 obj <<
+/D [2118 0 R /XYZ 71.731 374.695 null]
 >> endobj
-1503 0 obj <<
-/D [1487 0 R /XYZ 71.731 398.815 null]
+2136 0 obj <<
+/D [2118 0 R /XYZ 71.731 346.635 null]
 >> endobj
-1504 0 obj <<
-/D [1487 0 R /XYZ 384.386 388.02 null]
+2137 0 obj <<
+/D [2118 0 R /XYZ 71.731 331.691 null]
 >> endobj
-1483 0 obj <<
-/D [1487 0 R /XYZ 71.731 380.882 null]
+2138 0 obj <<
+/D [2118 0 R /XYZ 71.731 294.296 null]
 >> endobj
-62 0 obj <<
-/D [1487 0 R /XYZ 166.615 343.666 null]
+146 0 obj <<
+/D [2118 0 R /XYZ 211.285 261.42 null]
 >> endobj
-1505 0 obj <<
-/D [1487 0 R /XYZ 71.731 333.301 null]
+2139 0 obj <<
+/D [2118 0 R /XYZ 71.731 254.341 null]
 >> endobj
-1506 0 obj <<
-/D [1487 0 R /XYZ 177.812 310.591 null]
+2140 0 obj <<
+/D [2118 0 R /XYZ 271.067 230.536 null]
 >> endobj
-1507 0 obj <<
-/D [1487 0 R /XYZ 227.595 310.591 null]
+2141 0 obj <<
+/D [2118 0 R /XYZ 243.475 217.584 null]
 >> endobj
-1508 0 obj <<
-/D [1487 0 R /XYZ 172.004 297.639 null]
+2144 0 obj <<
+/D [2118 0 R /XYZ 375.041 217.584 null]
 >> endobj
-1509 0 obj <<
-/D [1487 0 R /XYZ 71.731 295.482 null]
+2146 0 obj <<
+/D [2118 0 R /XYZ 71.731 210.446 null]
 >> endobj
-1510 0 obj <<
-/D [1487 0 R /XYZ 118.555 259.931 null]
+2147 0 obj <<
+/D [2118 0 R /XYZ 137.593 199.651 null]
 >> endobj
-1511 0 obj <<
-/D [1487 0 R /XYZ 382.513 248.454 null]
+2148 0 obj <<
+/D [2118 0 R /XYZ 262.973 199.651 null]
 >> endobj
-1512 0 obj <<
-/D [1487 0 R /XYZ 273.304 236.798 null]
+2149 0 obj <<
+/D [2118 0 R /XYZ 403.449 199.651 null]
 >> endobj
-1513 0 obj <<
-/D [1487 0 R /XYZ 71.731 214.877 null]
+2150 0 obj <<
+/D [2118 0 R /XYZ 134.388 186.7 null]
 >> endobj
-1514 0 obj <<
-/D [1487 0 R /XYZ 202.34 195.171 null]
+2151 0 obj <<
+/D [2118 0 R /XYZ 344.012 186.7 null]
 >> endobj
-1484 0 obj <<
-/D [1487 0 R /XYZ 71.731 188.033 null]
+2152 0 obj <<
+/D [2118 0 R /XYZ 71.731 166.61 null]
 >> endobj
-66 0 obj <<
-/D [1487 0 R /XYZ 200.472 150.818 null]
+2153 0 obj <<
+/D [2118 0 R /XYZ 105.494 155.816 null]
 >> endobj
-1515 0 obj <<
-/D [1487 0 R /XYZ 71.731 143.465 null]
+2154 0 obj <<
+/D [2118 0 R /XYZ 71.731 149.427 null]
 >> endobj
-1516 0 obj <<
-/D [1487 0 R /XYZ 298.358 130.693 null]
+2155 0 obj <<
+/D [2118 0 R /XYZ 71.731 125.763 null]
 >> endobj
-1517 0 obj <<
-/D [1487 0 R /XYZ 102.166 104.79 null]
+2156 0 obj <<
+/D [2118 0 R /XYZ 82.491 116.264 null]
 >> endobj
-1486 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F44 1440 0 R >>
+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 ]
 >> endobj
-1522 0 obj <<
-/Length 2277      
+2160 0 obj <<
+/Length 2190      
 /Filter /FlateDecode
 >>
 stream
-xڕYm�۸��_a�}8X3"��E/�&��[4�^���6���(e����C��� @DiG��<3��t��?�
-)	]�����_���y����E�=���/ߺ�*&q���+�F$W��H�������9�Լ�l���׻B�I���I߿nN�O�,��o��߷���8r�v��a,�3�9q=O�s���s*��R�E}��ײы��#
-��<p�_��A �R�%a�H���}`����A�RT�e�D�gC��6X�\6�U<O�B�a^��u�v7E�f��������_R�8���UWM�����-�!q�RFI@ce�C"�?N	���(F��Ù>^7rɤ4��[�HL5��Q��!�	��SAxн��d����
��V&�I�ѥN�"A����U^����e��Oi}|�P�+��#������J�+<���oK��%e���
-YX�U��i����+p�u�C�=�/:뵾�T�D�������^��
��O\���m��Mk��_M2Pvěs�a��D�)����	�zo�y>�T~$�lp�2R�LF�A
-�N��]���J  &쯛���Δ��9=��Fm6�\e�tkfi��(m�!e�Cҍw�����o�'�OmiJ��e���e����h{�P�x�,p,��㏼�\��O0\>�t�
i�#4���z�^������^��ob���*,��ߊ��
>������C��eN��Q'+B�-'8���p5�81�m!Ff�����"I�G~�5D���P�&=��I�DV��Հ�"i�,*D�C���s��0�T��Q����lNǍh����0MF�2o���,���i��u�!7FEo����&�׸og"�=�\B��:��d�F#�F��:k�UC�S�:�
��X�NJTO�vgOY�ww�ښ�㬷�o��Sk��?��l�P�Pꇿ� I����O�>=���T]M��<��\	��0�x�m@�(?���s��ȓSz��~���B���4��
-���M�>~32�R���
-\Y}�wX]��1���}l���9��A�]Df���QH$W1����o�����hz�Iv���+��o`�Bm���0�y��α-u�DBeڲ��&d�^p������a���'$PB���E�NX�%�c0�):��~#����L?ꈇ���$��+J|��;p�q�)*�<'z��(^�9(���h!���h^	��nk�*��$L�$�s�Rp�N�J}��
#���'�a���'�ܿ�}������+� �u�|�F7��~�����-�to�]*&�G���^QQRi���-�>��v�i�F���C;R�K�'i��Ld�*3�!��95�ؓ!n5�i�sjkjׂd8,�h?���K�T�����3���>TejJ������ی�~����rYyHЪ�>��_V��
-?9�i�J¥q�!d��g|���n9�4\�›�a�����}﹔D��_f��4l��f'4���W�\�L�򑈶��w�ԓ`K#��I�R���%���q��c��d�, �6 ������fO���,�
4
~G� ��Kf�.�%�(�D��痥c��H��K��\~Q赬�փ��9�@��M>9�
-<�|l�A���`~H͙�E�3��˺=y�ٴ�>�Y�{���N0����s'��dr�a�+*���d���P����1�A��a��-6�b��ũ*�l��%>3_"�(p\�@���Nf��f�E
-�X�S`��U��u�C��Y���y'��8JHlw��)гn[��J%�Nv�7M~1���~�j�� $n��d)@i�����y,�#�H�5�J��*O�~"0j����������,�"���)��<X�Gj�����
l�C��]fw��YtE$|�����)��0R�)x���W�G69�C�cfu��XQ��'r�:רC������Nf�r���"�S�究`��J췩<��.�%�)��Cc���nOf�#"�����z��Hm��~±!�|O�aHB|�Dt2�D��4&^$b���Xl�W_��
-�����Y���[]72V\�b���X�?'���#![Q?&�3�MVKl{"S�JԼ�,>�z�h�HmG�̲��n�{����9P����g(������Ėg
- ��SOf1qQ�:8�`};�F�
�_z�8��_�b��d�K7g�;�����<F58��IU�C���o/"
�߾;����иH�ET�^�I~��'���endstream
+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�c6:�޷���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
-1521 0 obj <<
+2159 0 obj <<
 /Type /Page
-/Contents 1522 0 R
-/Resources 1520 0 R
+/Contents 2160 0 R
+/Resources 2158 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1434 0 R
-/Annots [ 1530 0 R 1531 0 R 1555 0 R 1562 0 R 1568 0 R ]
->> endobj
-1530 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [446.147 586.934 505.908 595.845]
-/Subtype /Link
-/A << /S /GoTo /D (win32-perl-modules) >>
->> endobj
-1531 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 561.031 120.707 569.943]
-/Subtype /Link
-/A << /S /GoTo /D (install-perlmodules-manual) >>
+/Parent 2157 0 R
+/Annots [ 2179 0 R ]
 >> endobj
-1555 0 obj <<
+2179 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 229.375 140.592 238.286]
+/Rect [405.169 389.475 457.472 398.386]
 /Subtype /Link
-/A << /S /GoTo /D (install-modules-dbd-mysql) >>
+/A << /S /GoTo /D (localconfig) >>
 >> endobj
-1562 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 175.577 126.595 184.488]
-/Subtype /Link
-/A << /S /GoTo /D (install-modules-template) >>
+2161 0 obj <<
+/D [2159 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1568 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 111.816 104.05 120.727]
-/Subtype /Link
-/A << /S /GoTo /D (install-modules-gd) >>
+2162 0 obj <<
+/D [2159 0 R /XYZ 71.731 741.22 null]
 >> endobj
-1523 0 obj <<
-/D [1521 0 R /XYZ 71.731 729.265 null]
+2163 0 obj <<
+/D [2159 0 R /XYZ 308.443 696.687 null]
 >> endobj
-1524 0 obj <<
-/D [1521 0 R /XYZ 71.731 718.306 null]
+2164 0 obj <<
+/D [2159 0 R /XYZ 130.909 685.031 null]
 >> endobj
-1525 0 obj <<
-/D [1521 0 R /XYZ 175.511 708.344 null]
+2165 0 obj <<
+/D [2159 0 R /XYZ 71.731 673.802 null]
 >> endobj
-1526 0 obj <<
-/D [1521 0 R /XYZ 71.731 675.354 null]
+2166 0 obj <<
+/D [2159 0 R /XYZ 266.554 662.117 null]
 >> endobj
-1527 0 obj <<
-/D [1521 0 R /XYZ 71.731 675.354 null]
+2167 0 obj <<
+/D [2159 0 R /XYZ 345.631 662.117 null]
 >> endobj
-1528 0 obj <<
-/D [1521 0 R /XYZ 71.731 632.827 null]
+2168 0 obj <<
+/D [2159 0 R /XYZ 71.731 637.046 null]
 >> endobj
-1529 0 obj <<
-/D [1521 0 R /XYZ 71.731 599.886 null]
+2169 0 obj <<
+/D [2159 0 R /XYZ 82.491 627.547 null]
 >> endobj
-1532 0 obj <<
-/D [1521 0 R /XYZ 71.731 551.069 null]
+2170 0 obj <<
+/D [2159 0 R /XYZ 136.289 592.578 null]
 >> endobj
-1533 0 obj <<
-/D [1521 0 R /XYZ 71.731 551.069 null]
+2171 0 obj <<
+/D [2159 0 R /XYZ 130.909 580.922 null]
 >> endobj
-1534 0 obj <<
-/D [1521 0 R /XYZ 71.731 530.199 null]
+1240 0 obj <<
+/D [2159 0 R /XYZ 71.731 559.729 null]
 >> endobj
-1535 0 obj <<
-/D [1521 0 R /XYZ 125.419 505.704 null]
+150 0 obj <<
+/D [2159 0 R /XYZ 183.546 525.529 null]
 >> endobj
-1536 0 obj <<
-/D [1521 0 R /XYZ 71.731 503.547 null]
+2172 0 obj <<
+/D [2159 0 R /XYZ 71.731 522.869 null]
 >> endobj
-1537 0 obj <<
-/D [1521 0 R /XYZ 71.731 488.603 null]
+2173 0 obj <<
+/D [2159 0 R /XYZ 71.731 506.929 null]
 >> endobj
-1538 0 obj <<
-/D [1521 0 R /XYZ 207.59 467.447 null]
+2174 0 obj <<
+/D [2159 0 R /XYZ 76.712 468.344 null]
 >> endobj
-1539 0 obj <<
-/D [1521 0 R /XYZ 523.49 444.135 null]
+154 0 obj <<
+/D [2159 0 R /XYZ 233.392 435.467 null]
 >> endobj
-1540 0 obj <<
-/D [1521 0 R /XYZ 71.731 392.927 null]
+2175 0 obj <<
+/D [2159 0 R /XYZ 71.731 428.269 null]
 >> endobj
-1541 0 obj <<
-/D [1521 0 R /XYZ 71.731 361.943 null]
+2176 0 obj <<
+/D [2159 0 R /XYZ 250.633 404.583 null]
 >> endobj
-1542 0 obj <<
-/D [1521 0 R /XYZ 170.798 349.091 null]
+2177 0 obj <<
+/D [2159 0 R /XYZ 201.693 391.631 null]
 >> endobj
-1543 0 obj <<
-/D [1521 0 R /XYZ 71.731 341.953 null]
+2178 0 obj <<
+/D [2159 0 R /XYZ 333.258 391.631 null]
 >> endobj
-1544 0 obj <<
-/D [1521 0 R /XYZ 89.664 321.196 null]
+2180 0 obj <<
+/D [2159 0 R /XYZ 71.731 384.493 null]
 >> endobj
-1545 0 obj <<
-/D [1521 0 R /XYZ 71.731 319.039 null]
+2181 0 obj <<
+/D [2159 0 R /XYZ 71.731 361.579 null]
 >> endobj
-1546 0 obj <<
-/D [1521 0 R /XYZ 89.664 303.263 null]
+2182 0 obj <<
+/D [2159 0 R /XYZ 77.111 352.08 null]
 >> endobj
-1547 0 obj <<
-/D [1521 0 R /XYZ 71.731 301.48 null]
+2183 0 obj <<
+/D [2159 0 R /XYZ 71.731 340.709 null]
 >> endobj
-1548 0 obj <<
-/D [1521 0 R /XYZ 89.664 285.33 null]
+2184 0 obj <<
+/D [2159 0 R /XYZ 71.731 317.046 null]
 >> endobj
-1549 0 obj <<
-/D [1521 0 R /XYZ 71.731 283.173 null]
+2185 0 obj <<
+/D [2159 0 R /XYZ 77.111 307.547 null]
 >> endobj
-1550 0 obj <<
-/D [1521 0 R /XYZ 89.664 267.397 null]
+2186 0 obj <<
+/D [2159 0 R /XYZ 71.731 296.176 null]
 >> endobj
-1551 0 obj <<
-/D [1521 0 R /XYZ 71.731 265.614 null]
+2187 0 obj <<
+/D [2159 0 R /XYZ 363.851 284.633 null]
 >> endobj
-1552 0 obj <<
-/D [1521 0 R /XYZ 89.664 249.465 null]
+2188 0 obj <<
+/D [2159 0 R /XYZ 425.741 284.633 null]
 >> endobj
-1553 0 obj <<
-/D [1521 0 R /XYZ 71.731 247.681 null]
+2189 0 obj <<
+/D [2159 0 R /XYZ 71.731 264.543 null]
 >> endobj
-1554 0 obj <<
-/D [1521 0 R /XYZ 89.664 231.532 null]
+158 0 obj <<
+/D [2159 0 R /XYZ 215.669 233.823 null]
 >> endobj
-1556 0 obj <<
-/D [1521 0 R /XYZ 71.731 229.375 null]
+2190 0 obj <<
+/D [2159 0 R /XYZ 71.731 226.625 null]
 >> endobj
-1557 0 obj <<
-/D [1521 0 R /XYZ 89.664 213.599 null]
+2191 0 obj <<
+/D [2159 0 R /XYZ 178.553 215.89 null]
 >> endobj
-1558 0 obj <<
-/D [1521 0 R /XYZ 71.731 211.442 null]
+2192 0 obj <<
+/D [2159 0 R /XYZ 347.94 215.89 null]
 >> endobj
-1559 0 obj <<
-/D [1521 0 R /XYZ 89.664 195.666 null]
+2193 0 obj <<
+/D [2159 0 R /XYZ 71.731 197.858 null]
 >> endobj
-1560 0 obj <<
-/D [1521 0 R /XYZ 71.731 193.509 null]
+2194 0 obj <<
+/D [2159 0 R /XYZ 71.731 197.858 null]
 >> endobj
-1561 0 obj <<
-/D [1521 0 R /XYZ 89.664 177.734 null]
+2195 0 obj <<
+/D [2159 0 R /XYZ 71.731 178.617 null]
 >> endobj
-1563 0 obj <<
-/D [1521 0 R /XYZ 71.731 175.577 null]
+2196 0 obj <<
+/D [2159 0 R /XYZ 71.731 146.984 null]
 >> endobj
-1564 0 obj <<
-/D [1521 0 R /XYZ 89.664 159.801 null]
+2197 0 obj <<
+/D [2159 0 R /XYZ 140.901 136.189 null]
 >> endobj
-1565 0 obj <<
-/D [1521 0 R /XYZ 169.145 141.868 null]
+2198 0 obj <<
+/D [2159 0 R /XYZ 431.826 136.189 null]
 >> endobj
-1566 0 obj <<
-/D [1521 0 R /XYZ 71.731 134.73 null]
+2199 0 obj <<
+/D [2159 0 R /XYZ 153.643 123.238 null]
 >> endobj
-1567 0 obj <<
-/D [1521 0 R /XYZ 89.664 113.973 null]
+2200 0 obj <<
+/D [2159 0 R /XYZ 71.731 116.1 null]
 >> endobj
-1569 0 obj <<
-/D [1521 0 R /XYZ 71.731 111.816 null]
+2201 0 obj <<
+/D [2159 0 R /XYZ 71.731 116.1 null]
 >> endobj
-1520 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F23 1057 0 R /F44 1440 0 R /F48 1452 0 R >>
+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 ]
 >> endobj
-1576 0 obj <<
-/Length 2020      
+2204 0 obj <<
+/Length 2524      
 /Filter /FlateDecode
 >>
 stream
-xڭYY��6~ϯ�[l`��>�OIw�M�M��@[�}�e�"K�(�����C�V��|3�\���ً�&�'&N�/��kq�_^�(�F�uK����wo\w�8p��³#���uH�;�����Gz�X�Z;��t�:��yE�,���u}�'�2��{�Ӌ��1�!�#w��Gĉ��ڱH����cZ�hE��<��	�(�Ev���$�EK��5u4��Y=�����}M9냱�� �ch�U-3k�vcb�a��_�o�Ă��8�H�v�X��K<�cF3�-���d�H�"�;Eʈ��I���S/0<���>��|R�/�g��2�Foqt�
-Jh������:��yZ�IZPD��&iں��=����*��L��ͫ,=��|�8n8-3��C:Q��H�����Ijd&IBΟ$ih�z�f0���?���� DK��O��+
-g��2��m~Î�yr�#S'�Q��9���ʶ�4aS4A��;OS#3I���$MC[��4���^`PU��WFw#4�Ȉ`"�y�efM.]?��4�0'�I�U�E����D=�l���g���e�GY���)�`Y	����$mJB�'Y���i�]��������
-��3�k�9öߏږ����\�EN3u�N4�L���e������m����C�������M|�J�hy���i�Z�����n܃�ԉ�
*U�(�t�	�\]<��,C��R'���;�I?��\3.���-���i�v8��95� +Z��hy`��w�,�����w�G�QR;B�\��^4���R]$
-X��6X!B�S�ӀwLUg��������i�=-}d計'(�z�}��N��aI�H�l!�v��9��=����7=F���3��Yƒ>wR�dd����h���mǨ|;�M��cʏh����ޫZ��^p�Y�R�x�X�	[(3����sZ����X9�?!��g��`�����&Rޭ
-����!{���O���qx'tՠx%��]UR{�Jj��RhɊ�f⷗��
�����e99#��U(�"�N���C8k������c
-?Qu�k�7�t��K^�rw�ة(�'�%S�z/��@��,�Po�=I�,�dY�c������
p�/Zѭx����|L�� 
��AN����uv;Ͱa(�]��ժl՛U ��Y����"��V�)b˓��+��7�P�9��0��;�1'�D6�k�_%
>�4�n�>	nh�5�Z��C��RGNL8,
-��m�Z���ZW�?�,�![��$�l�Օӫ��A;81%�qƄ�欗)����L��������9u��T�
���F�{�i=�g���9S�mB���AX��D��%a�JB����4�8�5�fȒ�y��3֍t�g��uZ�>����:�o
-i�7������c�$��جX�%��E�n���5r�˒N4���+��uo�
���z��pŋ�/��R�f�T3G*��0R�o��B)�[>]���ݢ
�_7�P���,�v  ]x�N�,�������$�w����ׇ�X����d�a\����iυl�\;X_L"�ߌ��n�RK�����ث)������1敎C���^C� �����Ww����^��>Īge0m���M�b{���\T�
�A"Z����dK媗]4�	U��!O>��;�b��v��N<v�4�Ic[�r�,D�Gı�X��HI�j��%!�:+y�3���"=V!��03,�R�ƭb��X�E��d�C��Ls�Pa�T�zu����jrD&�k$��N2t<�;������M����	��xW�h�����j[�7����e�/c٦ �?a���ם}�7�:��'��mM�*���L;��ߚA�6���E�SHo��A�v�b�m��R�d�Y�F�!�#kA��w�F����o�{Yk'5�P��BV�m���ذJ�R���6����!>��<�
�������Dv8�DZFd�1�uH�7PD~1��{��ҿ�
-��endstream
+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�I­4[Đ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�ECm3���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
-1575 0 obj <<
+2203 0 obj <<
 /Type /Page
-/Contents 1576 0 R
-/Resources 1574 0 R
+/Contents 2204 0 R
+/Resources 2202 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1434 0 R
-/Annots [ 1580 0 R 1583 0 R 1586 0 R 1589 0 R 1592 0 R 1595 0 R ]
->> endobj
-1580 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 706.187 136.707 715.098]
-/Subtype /Link
-/A << /S /GoTo /D (install-modules-chart-base) >>
->> endobj
-1583 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 688.254 134.485 697.166]
-/Subtype /Link
-/A << /S /GoTo /D (install-modules-gd-graph) >>
+/Parent 2157 0 R
+/Annots [ 2220 0 R ]
 >> endobj
-1586 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 670.321 155.237 679.233]
-/Subtype /Link
-/A << /S /GoTo /D (install-modules-gd-text-align) >>
->> endobj
-1589 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 652.389 142.087 661.3]
-/Subtype /Link
-/A << /S /GoTo /D (install-modules-xml-parser) >>
->> endobj
-1592 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 634.456 139.865 643.367]
-/Subtype /Link
-/A << /S /GoTo /D (install-modules-patchreader) >>
->> endobj
-1595 0 obj <<
+2220 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [89.664 616.523 147.068 625.435]
+/Rect [431.986 369.011 484.289 377.923]
 /Subtype /Link
-/A << /S /GoTo /D (install-modules-mime-parser) >>
->> endobj
-1577 0 obj <<
-/D [1575 0 R /XYZ 71.731 729.265 null]
+/A << /S /GoTo /D (security-webserver-access) >>
 >> endobj
-1578 0 obj <<
-/D [1575 0 R /XYZ 71.731 741.22 null]
+2205 0 obj <<
+/D [2203 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1579 0 obj <<
-/D [1575 0 R /XYZ 89.664 708.344 null]
+2206 0 obj <<
+/D [2203 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1581 0 obj <<
-/D [1575 0 R /XYZ 71.731 706.187 null]
+2207 0 obj <<
+/D [2203 0 R /XYZ 71.731 684.022 null]
 >> endobj
-1582 0 obj <<
-/D [1575 0 R /XYZ 89.664 690.411 null]
+2208 0 obj <<
+/D [2203 0 R /XYZ 240.44 659.527 null]
 >> endobj
-1584 0 obj <<
-/D [1575 0 R /XYZ 71.731 688.254 null]
+2209 0 obj <<
+/D [2203 0 R /XYZ 71.731 646.575 null]
 >> endobj
-1585 0 obj <<
-/D [1575 0 R /XYZ 89.664 672.478 null]
+2210 0 obj <<
+/D [2203 0 R /XYZ 181.256 646.575 null]
 >> endobj
-1587 0 obj <<
-/D [1575 0 R /XYZ 71.731 670.321 null]
+2211 0 obj <<
+/D [2203 0 R /XYZ 336.036 646.575 null]
 >> endobj
-1588 0 obj <<
-/D [1575 0 R /XYZ 89.664 654.545 null]
+2212 0 obj <<
+/D [2203 0 R /XYZ 470.054 646.575 null]
 >> endobj
-1590 0 obj <<
-/D [1575 0 R /XYZ 71.731 652.389 null]
+1241 0 obj <<
+/D [2203 0 R /XYZ 71.731 606.56 null]
 >> endobj
-1591 0 obj <<
-/D [1575 0 R /XYZ 89.664 636.613 null]
+162 0 obj <<
+/D [2203 0 R /XYZ 206.856 569.345 null]
 >> endobj
-1593 0 obj <<
-/D [1575 0 R /XYZ 71.731 634.456 null]
+2213 0 obj <<
+/D [2203 0 R /XYZ 71.731 559.202 null]
 >> endobj
-1594 0 obj <<
-/D [1575 0 R /XYZ 89.664 618.68 null]
+2214 0 obj <<
+/D [2203 0 R /XYZ 120.303 549.22 null]
 >> endobj
-1571 0 obj <<
-/D [1575 0 R /XYZ 76.712 600.747 null]
+2215 0 obj <<
+/D [2203 0 R /XYZ 71.731 516.179 null]
 >> endobj
-70 0 obj <<
-/D [1575 0 R /XYZ 182.984 566.276 null]
+2216 0 obj <<
+/D [2203 0 R /XYZ 71.731 472.344 null]
 >> endobj
-1596 0 obj <<
-/D [1575 0 R /XYZ 71.731 557.824 null]
+2217 0 obj <<
+/D [2203 0 R /XYZ 71.731 472.344 null]
 >> endobj
-1597 0 obj <<
-/D [1575 0 R /XYZ 71.731 490.461 null]
+2218 0 obj <<
+/D [2203 0 R /XYZ 270.634 461.549 null]
 >> endobj
-1572 0 obj <<
-/D [1575 0 R /XYZ 71.731 457.519 null]
+1242 0 obj <<
+/D [2203 0 R /XYZ 71.731 454.411 null]
 >> endobj
-74 0 obj <<
-/D [1575 0 R /XYZ 242.807 424.209 null]
+166 0 obj <<
+/D [2203 0 R /XYZ 188.593 417.196 null]
 >> endobj
-1598 0 obj <<
-/D [1575 0 R /XYZ 71.731 415.757 null]
+2219 0 obj <<
+/D [2203 0 R /XYZ 71.731 409.843 null]
 >> endobj
-1573 0 obj <<
-/D [1575 0 R /XYZ 71.731 372.239 null]
+1243 0 obj <<
+/D [2203 0 R /XYZ 71.731 369.011 null]
 >> endobj
-78 0 obj <<
-/D [1575 0 R /XYZ 167.419 338.929 null]
+170 0 obj <<
+/D [2203 0 R /XYZ 191.198 336.697 null]
 >> endobj
-1599 0 obj <<
-/D [1575 0 R /XYZ 71.731 330.477 null]
+2221 0 obj <<
+/D [2203 0 R /XYZ 71.731 328.245 null]
 >> endobj
-1600 0 obj <<
-/D [1575 0 R /XYZ 71.731 317.843 null]
+2222 0 obj <<
+/D [2203 0 R /XYZ 71.731 315.612 null]
 >> endobj
-1601 0 obj <<
-/D [1575 0 R /XYZ 71.731 302.899 null]
+2223 0 obj <<
+/D [2203 0 R /XYZ 71.731 305.649 null]
 >> endobj
-1602 0 obj <<
-/D [1575 0 R /XYZ 129.53 281.743 null]
+2224 0 obj <<
+/D [2203 0 R /XYZ 115.118 289.873 null]
 >> endobj
-1603 0 obj <<
-/D [1575 0 R /XYZ 178.522 281.743 null]
+2225 0 obj <<
+/D [2203 0 R /XYZ 429.318 289.873 null]
 >> endobj
-1604 0 obj <<
-/D [1575 0 R /XYZ 76.712 253.45 null]
+2226 0 obj <<
+/D [2203 0 R /XYZ 71.731 287.716 null]
 >> endobj
-1605 0 obj <<
-/D [1575 0 R /XYZ 71.731 233.524 null]
+2227 0 obj <<
+/D [2203 0 R /XYZ 147.188 271.94 null]
 >> endobj
-1606 0 obj <<
-/D [1575 0 R /XYZ 371.86 221.868 null]
+2228 0 obj <<
+/D [2203 0 R /XYZ 314.747 246.037 null]
 >> endobj
-1607 0 obj <<
-/D [1575 0 R /XYZ 193.02 210.212 null]
+2229 0 obj <<
+/D [2203 0 R /XYZ 71.731 238.899 null]
 >> endobj
-1608 0 obj <<
-/D [1575 0 R /XYZ 71.731 182.316 null]
+2230 0 obj <<
+/D [2203 0 R /XYZ 71.731 154.481 null]
 >> endobj
-82 0 obj <<
-/D [1575 0 R /XYZ 210.827 146.849 null]
+2231 0 obj <<
+/D [2203 0 R /XYZ 155.056 128.578 null]
 >> endobj
-1609 0 obj <<
-/D [1575 0 R /XYZ 71.731 138.397 null]
+2232 0 obj <<
+/D [2203 0 R /XYZ 89.664 115.626 null]
 >> endobj
-1610 0 obj <<
-/D [1575 0 R /XYZ 71.731 107.831 null]
+2233 0 obj <<
+/D [2203 0 R /XYZ 71.731 113.47 null]
 >> endobj
-1574 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R /F35 1229 0 R >>
+2202 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1616 0 obj <<
-/Length 1643      
+2236 0 obj <<
+/Length 3047      
 /Filter /FlateDecode
 >>
 stream
-xڽXmo�6��_a�Ke ��jI٧�ˊ
Vl�0`�Z�mb�KI�I��w��d+Y�C�H������s<9\�����b�D�m�UY�VGx��E�368e3��z����xU��6^��$��"[eq��i��U�{oN�ST�7Qx�o����9�����㜬�����v�6M��/��Y��Ǣx�~���3`��q��E~��.d�����뷂t'3��i�Q�=�m���j���`�b��;Q����9�b�\ۆ�C����3A+�r0�Ƕ77��0�H���
��p��k��>:7
�K?I�I��I���6��:L�u}}�ٱ���w�l��������@�O �����__X�`Xh吠_>SDH���C��2l��Z���47{�oD`{�d���!�8]��ۭ� NBg
-���������v���h��R�N��w'K$\a��@�a�Òy�6�^ҹ�_�S��<{Y�8Z��g���C|i�JT/�g���%\����<`���Z�d�b��� ��6- *f�AE�I�<rDc`
-�bj 0��D����ia�[��}�`�[P���9�����C����M�촍�P@�bA�k蒸6a@Ս4���������"��Q��u��"C�ݝքq��h�a]�oy[��D�m��$��i�M���m�`�K���괂J����[d$�)�d��Ȉ�B����O�SB�N?�r:��3D�r4�Rc͋-pT�J�
=�`��
�����
�6�{���ct��=x�ޕyA������ܴ<��r3*�
-�wP F�j�ԷQ+�t�uA{.?m&���ڼ$�AE�6{��j�T��
-�p�8�G��II�ۭs�H9��%��x"�w�ux7ORA�E���I�hG��ZŴ�T(P@�V�g
xG��3�Jl����6���T�>��L�C��IzبQ�ȍ��IS����jE�r���/BӪ�W�gM�p圃C��H�����;M�b�.
d�ݘ���f��SÆu��N��tX1�����QI�ٮ�G�>�R�)��O#p.��f*A��tf������W�6�?��`W�����1\�t����!����=�!c�ʌ�q9�z;Y�9B�D�CJ$3�$C�j��M��Xj◢�g|v����_�]��@nR�3�1���k��db^���X��n5��D�3�s��I��BgQ1����DO�T�S:�^��w���w�9Z��SӊS������;:��Za�^���%{�s���w)��yW�RY 2r�(zW�F�-�2O��	q�a���o�F�\������tq�ʽ��v�dC-X�1��Զ�����_��ch�&R?}9�0p�%�i�cmw��n��`��y�z?6�`��"<����(b�a[��Cn{��A�g}�#vR�6�xK�))���Q�BЋ^{d�5vrIf�3�E���ؐ=W�������oWtεϬ��꬘�ء?�9>��8t�$6Y��Ys6�v�a?#9��B\m|*i�	OT�d����sA����נ�j�a��^�j���(-KJ+����eU�vr	�����c>bD���'�$��0{�'�q��/di�A�h��~����o��+endstream
+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�a΃D��#�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��%�+��5Qe�=$`� :�\�|=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
 endobj
-1615 0 obj <<
+2235 0 obj <<
 /Type /Page
-/Contents 1616 0 R
-/Resources 1614 0 R
+/Contents 2236 0 R
+/Resources 2234 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1632 0 R
+/Parent 2157 0 R
 >> endobj
-1617 0 obj <<
-/D [1615 0 R /XYZ 71.731 729.265 null]
+2237 0 obj <<
+/D [2235 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1618 0 obj <<
-/D [1615 0 R /XYZ 71.731 741.22 null]
+2238 0 obj <<
+/D [2235 0 R /XYZ 71.731 741.22 null]
 >> endobj
-86 0 obj <<
-/D [1615 0 R /XYZ 207.683 708.344 null]
+2239 0 obj <<
+/D [2235 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1619 0 obj <<
-/D [1615 0 R /XYZ 71.731 699.891 null]
+2240 0 obj <<
+/D [2235 0 R /XYZ 130.903 696.687 null]
 >> endobj
-90 0 obj <<
-/D [1615 0 R /XYZ 234.008 648.966 null]
+2241 0 obj <<
+/D [2235 0 R /XYZ 74.222 655.442 null]
 >> endobj
-1620 0 obj <<
-/D [1615 0 R /XYZ 71.731 640.329 null]
+2242 0 obj <<
+/D [2235 0 R /XYZ 92.274 632.528 null]
 >> endobj
-1611 0 obj <<
-/D [1615 0 R /XYZ 71.731 622.899 null]
+2243 0 obj <<
+/D [2235 0 R /XYZ 188.676 619.577 null]
 >> endobj
-94 0 obj <<
-/D [1615 0 R /XYZ 216.458 589.589 null]
+2244 0 obj <<
+/D [2235 0 R /XYZ 248.13 619.577 null]
 >> endobj
-1621 0 obj <<
-/D [1615 0 R /XYZ 71.731 581.137 null]
+2245 0 obj <<
+/D [2235 0 R /XYZ 448.319 619.577 null]
 >> endobj
-1622 0 obj <<
-/D [1615 0 R /XYZ 413.586 570.66 null]
+2246 0 obj <<
+/D [2235 0 R /XYZ 134.236 606.625 null]
 >> endobj
-1623 0 obj <<
-/D [1615 0 R /XYZ 193.324 544.757 null]
+2247 0 obj <<
+/D [2235 0 R /XYZ 241.553 606.625 null]
 >> endobj
-1613 0 obj <<
-/D [1615 0 R /XYZ 71.731 537.619 null]
+2248 0 obj <<
+/D [2235 0 R /XYZ 71.731 605.186 null]
 >> endobj
-98 0 obj <<
-/D [1615 0 R /XYZ 222.436 504.309 null]
+2249 0 obj <<
+/D [2235 0 R /XYZ 280.437 575.741 null]
 >> endobj
-1624 0 obj <<
-/D [1615 0 R /XYZ 71.731 495.857 null]
+2250 0 obj <<
+/D [2235 0 R /XYZ 400.465 575.741 null]
 >> endobj
-1625 0 obj <<
-/D [1615 0 R /XYZ 453.495 485.38 null]
+2251 0 obj <<
+/D [2235 0 R /XYZ 71.731 555.651 null]
 >> endobj
-1612 0 obj <<
-/D [1615 0 R /XYZ 71.731 478.242 null]
+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]
+>> endobj
+2253 0 obj <<
+/D [2235 0 R /XYZ 71.731 447.074 null]
+>> endobj
+2254 0 obj <<
+/D [2235 0 R /XYZ 353.774 434.271 null]
+>> endobj
+2255 0 obj <<
+/D [2235 0 R /XYZ 483.407 434.271 null]
+>> endobj
+2256 0 obj <<
+/D [2235 0 R /XYZ 285.361 408.369 null]
+>> endobj
+2257 0 obj <<
+/D [2235 0 R /XYZ 119.533 395.417 null]
+>> endobj
+2258 0 obj <<
+/D [2235 0 R /XYZ 437.069 395.417 null]
+>> endobj
+2259 0 obj <<
+/D [2235 0 R /XYZ 117.159 382.466 null]
+>> endobj
+2260 0 obj <<
+/D [2235 0 R /XYZ 419.102 382.466 null]
+>> endobj
+2261 0 obj <<
+/D [2235 0 R /XYZ 355.405 369.514 null]
+>> endobj
+2262 0 obj <<
+/D [2235 0 R /XYZ 71.731 362.75 null]
+>> endobj
+2263 0 obj <<
+/D [2235 0 R /XYZ 115.56 338.63 null]
+>> endobj
+2264 0 obj <<
+/D [2235 0 R /XYZ 153.506 325.679 null]
+>> endobj
+2265 0 obj <<
+/D [2235 0 R /XYZ 343.016 325.679 null]
 >> endobj
-102 0 obj <<
-/D [1615 0 R /XYZ 225.412 444.931 null]
+2266 0 obj <<
+/D [2235 0 R /XYZ 71.731 312.727 null]
 >> endobj
-1626 0 obj <<
-/D [1615 0 R /XYZ 71.731 436.479 null]
+2267 0 obj <<
+/D [2235 0 R /XYZ 163.765 286.824 null]
 >> endobj
-1485 0 obj <<
-/D [1615 0 R /XYZ 71.731 395.95 null]
+2268 0 obj <<
+/D [2235 0 R /XYZ 71.731 279.686 null]
 >> endobj
-106 0 obj <<
-/D [1615 0 R /XYZ 287.71 358.735 null]
+2269 0 obj <<
+/D [2235 0 R /XYZ 71.731 230.869 null]
 >> endobj
-1627 0 obj <<
-/D [1615 0 R /XYZ 71.731 348.37 null]
+2270 0 obj <<
+/D [2235 0 R /XYZ 71.731 199.751 null]
 >> endobj
-1628 0 obj <<
-/D [1615 0 R /XYZ 71.731 331.472 null]
+2271 0 obj <<
+/D [2235 0 R /XYZ 71.731 174.68 null]
 >> endobj
-1629 0 obj <<
-/D [1615 0 R /XYZ 71.731 274.685 null]
+2272 0 obj <<
+/D [2235 0 R /XYZ 71.731 153.524 null]
 >> endobj
-1630 0 obj <<
-/D [1615 0 R /XYZ 71.731 243.801 null]
+2273 0 obj <<
+/D [2235 0 R /XYZ 71.731 133.599 null]
 >> endobj
-1631 0 obj <<
-/D [1615 0 R /XYZ 71.731 189.071 null]
+2274 0 obj <<
+/D [2235 0 R /XYZ 458.479 121.943 null]
 >> endobj
-1169 0 obj <<
-/D [1615 0 R /XYZ 71.731 159.118 null]
+2275 0 obj <<
+/D [2235 0 R /XYZ 207.921 110.286 null]
 >> endobj
-1614 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R >>
+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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1635 0 obj <<
-/Length 2108      
+2278 0 obj <<
+/Length 2385      
 /Filter /FlateDecode
 >>
 stream
-x��X[�۸~?�B�.P�8fD�ԥ�>4�n���EP� ��h[Ytt������E�l�� ۇ"81E
9Ïs�F4J��rJr?iI�LD��.����/w�I���:�y�p��;Ƣ���6�)�(g))D=�o�W;yU�Z�"�Sb��
�lۦ�����צm�����w�>�J�IY�g��2W��,�9I�@��Ar^�Rb�ɋ���~N�t;�rltwi����GY�MQ�ǻ�k���_��x��N��2��,Yԫhs���y�$Zg)��=�Z'w���[��RF������J�(`@���+�IJ�t8���8��2#��\Y(Ҍd,7+~\��h
wGEܞ����8�>���f����|�橱7mp��N��$��JE��̶�'��>�q��|��T��m��uU�7;j�;�`�ƣ�^��9-9����@)Ʉ;f�䠬'���tO;7T5Y��d�&��q��z3��m��Vh8��Nn=
�iE�$��oԊyT:;���BX�x/��y�]S�~������́����	�������Cۺy�T)wj�8}�"/'�)e)8����"볌q��9/�YfP�/�2����z���2
-�"+B��+������ӍO���ĕ\�9'̢ ��09p�Vdp�F��3U�f(I
-z;͸�*
-.�9�R�6��d�ӆ�:i~.��iBh���t����';�ήb�|-"#9�a1.�v��0�q:�C{�!O	O'{lƝ�W�L�0�t߫j�{]O�	.xhV4�IL��n����ph��	J�R�ܺm壞F��fH�ft��_�q��P�(8����k��Ό+PЁJ��a�47@�!���z��k�!�t�q>\@U�
�XN-��K��q����6�_��M�G_�M��y�T*�
-�y ����) �E�-ko�-cM>��㔩��!�S�M�C�=ّI���߳����`P��픪�q�0Y�DLVDw�����~|�h��������꾾@s���&G��"�Bh�-����l��3��&���(����Ǧ�`_H;1��6<
����>��9ɼ��y�m*�w�0u
$L��˝�Z��ӣ8�˻m��8ik3G{Y�{�2�l��N _������N��\�љ�y�0���}��9J�M��U��9ɀp~F�ePt3k���������F����4+n|U���d���4��J�q��I���-<Ѣ�h�Crh��nlO.� #0A�v�[C��j��S=\����+ۜ��<y\����ާ[������
-��_)4Ycy��ZQt�K�d;�ϱqRE�ix¾C�h�����҉�|�Bv�U�x�(PPF��e65z�
�_;?��F��!H��/����M߲ň6a=ײ�Ѣ����{w�r��ONvc5ͺaK��W�E~����g0b>�.Ӫ=�dJ3�*�#��(r~�;�5NI�u�N͚Ô�3��]���'zGL$+���;
-F��3zG#�?G�4�EQ>�;
�F���$�v����[�Α�=΍�E�fI�{l!]����ͼ����4��<	�[a�!p8���W�i�[��T�A�t4bL��Ko�'������Fx�7@g+9I����pN�W�d�W�c*���Z�[�k�˹5���f.Z(нF�>a������$��+�E��0��K]v9��>��.��޻hn��Is��k�2_�,�7��F� �}{��5`]�#{|L��	�~ˀ�)�7{ �h��0{�n�Eȱ�-��^�$���r�I�0��A��f�M��t�/L��ߌ��Ѿ��K����@ai�e�N����=�%��;��0x��i{�t';?j����kw�ӆl/�4tg�洬���A����j�^�O�����<k��Q���"��=I�H
-+C�qŸfZ7
s��'ɒ�tHal�k4������E�I>ɨ������������:�pD=�!���	|@��_D)���7>����K�D�������@��qp��><��֞Z8�24�-�%�2h��d�v��$�F>"�G�o��^a�I�n8�I�?�	�,r�^0��ɼZV>�U�Z���|�endstream
+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
 endobj
-1634 0 obj <<
+2277 0 obj <<
 /Type /Page
-/Contents 1635 0 R
-/Resources 1633 0 R
+/Contents 2278 0 R
+/Resources 2276 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1632 0 R
-/Annots [ 1639 0 R 1652 0 R ]
+/Parent 2157 0 R
+/Annots [ 2283 0 R 2286 0 R 2289 0 R ]
 >> endobj
-1639 0 obj <<
+2283 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [273.905 626.063 313.275 634.545]
+/Rect [166.345 628.543 218.649 635.397]
 /Subtype /Link
-/A << /S /GoTo /D (security) >>
+/A << /S /GoTo /D (security-webserver-access) >>
 >> endobj
-1652 0 obj <<
+2286 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [305.583 333.427 350.441 342.016]
+/Rect [263.538 536.224 281.201 545.136]
 /Subtype /Link
-/A << /S /GoTo /D (security-mysql) >>
+/A << /S /GoTo /D (gloss-cgi) >>
 >> endobj
-1636 0 obj <<
-/D [1634 0 R /XYZ 71.731 729.265 null]
+2289 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [400.843 505.34 418.596 514.251]
+/Subtype /Link
+/A << /S /GoTo /D (gloss-tcl) >>
 >> endobj
-110 0 obj <<
-/D [1634 0 R /XYZ 218.078 705.748 null]
+2279 0 obj <<
+/D [2277 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1637 0 obj <<
-/D [1634 0 R /XYZ 71.731 701.917 null]
+2280 0 obj <<
+/D [2277 0 R /XYZ 71.731 652.389 null]
 >> endobj
-1638 0 obj <<
-/D [1634 0 R /XYZ 118.555 659.727 null]
+2281 0 obj <<
+/D [2277 0 R /XYZ 358.177 641.594 null]
 >> endobj
-114 0 obj <<
-/D [1634 0 R /XYZ 187.345 583.596 null]
+2282 0 obj <<
+/D [2277 0 R /XYZ 461.001 641.594 null]
 >> endobj
-1640 0 obj <<
-/D [1634 0 R /XYZ 71.731 573.231 null]
+1245 0 obj <<
+/D [2277 0 R /XYZ 71.731 623.562 null]
 >> endobj
-1641 0 obj <<
-/D [1634 0 R /XYZ 128.448 563.472 null]
+178 0 obj <<
+/D [2277 0 R /XYZ 180.354 588.194 null]
 >> endobj
-1642 0 obj <<
-/D [1634 0 R /XYZ 115.725 550.52 null]
+2284 0 obj <<
+/D [2277 0 R /XYZ 71.731 582.067 null]
 >> endobj
-1643 0 obj <<
-/D [1634 0 R /XYZ 71.731 543.382 null]
+2285 0 obj <<
+/D [2277 0 R /XYZ 71.731 551.233 null]
 >> endobj
-1644 0 obj <<
-/D [1634 0 R /XYZ 264.915 532.588 null]
+2287 0 obj <<
+/D [2277 0 R /XYZ 71.731 520.349 null]
 >> endobj
-1645 0 obj <<
-/D [1634 0 R /XYZ 71.731 501.604 null]
+2288 0 obj <<
+/D [2277 0 R /XYZ 228.687 507.497 null]
 >> endobj
-1646 0 obj <<
-/D [1634 0 R /XYZ 169.414 488.752 null]
+2290 0 obj <<
+/D [2277 0 R /XYZ 71.731 494.545 null]
 >> endobj
-1647 0 obj <<
-/D [1634 0 R /XYZ 71.731 468.662 null]
+2291 0 obj <<
+/D [2277 0 R /XYZ 71.731 481.594 null]
 >> endobj
-1648 0 obj <<
-/D [1634 0 R /XYZ 71.731 431.965 null]
+2292 0 obj <<
+/D [2277 0 R /XYZ 71.731 469.475 null]
 >> endobj
-1649 0 obj <<
-/D [1634 0 R /XYZ 71.731 424.827 null]
+2293 0 obj <<
+/D [2277 0 R /XYZ 71.731 320.1 null]
 >> endobj
-118 0 obj <<
-/D [1634 0 R /XYZ 161.035 387.611 null]
+2294 0 obj <<
+/D [2277 0 R /XYZ 118.555 276.554 null]
 >> endobj
-1650 0 obj <<
-/D [1634 0 R /XYZ 71.731 384.642 null]
+2295 0 obj <<
+/D [2277 0 R /XYZ 311.315 256.434 null]
 >> endobj
-1651 0 obj <<
-/D [1634 0 R /XYZ 118.555 346.899 null]
+2296 0 obj <<
+/D [2277 0 R /XYZ 515.483 256.434 null]
 >> endobj
-1653 0 obj <<
-/D [1634 0 R /XYZ 71.731 311.915 null]
+2297 0 obj <<
+/D [2277 0 R /XYZ 434.466 244.777 null]
 >> endobj
-122 0 obj <<
-/D [1634 0 R /XYZ 252.096 283.317 null]
+2298 0 obj <<
+/D [2277 0 R /XYZ 71.731 221.271 null]
 >> endobj
-1654 0 obj <<
-/D [1634 0 R /XYZ 71.731 274.679 null]
+2299 0 obj <<
+/D [2277 0 R /XYZ 71.731 201.346 null]
 >> endobj
-1655 0 obj <<
-/D [1634 0 R /XYZ 173.289 251.436 null]
+2300 0 obj <<
+/D [2277 0 R /XYZ 440.06 194.751 null]
 >> endobj
-1656 0 obj <<
-/D [1634 0 R /XYZ 71.731 244.298 null]
+2301 0 obj <<
+/D [2277 0 R /XYZ 218.914 183.095 null]
 >> endobj
-1657 0 obj <<
-/D [1634 0 R /XYZ 71.731 221.384 null]
+2302 0 obj <<
+/D [2277 0 R /XYZ 71.731 176.226 null]
 >> endobj
-1658 0 obj <<
-/D [1634 0 R /XYZ 71.731 177.202 null]
+2303 0 obj <<
+/D [2277 0 R /XYZ 247.393 166.457 null]
 >> endobj
-1659 0 obj <<
-/D [1634 0 R /XYZ 71.731 153.539 null]
+2304 0 obj <<
+/D [2277 0 R /XYZ 122.052 154.801 null]
 >> endobj
-1633 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F44 1440 0 R /F27 1064 0 R /F35 1229 0 R >>
+2305 0 obj <<
+/D [2277 0 R /XYZ 151.246 154.801 null]
+>> endobj
+2306 0 obj <<
+/D [2277 0 R /XYZ 180.441 154.801 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]
+>> endobj
+1246 0 obj <<
+/D [2277 0 R /XYZ 71.731 116.943 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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1662 0 obj <<
-/Length 2195      
+2312 0 obj <<
+/Length 2467      
 /Filter /FlateDecode
 >>
 stream
-xڥX{�۸�?�������^���E��k����尠%���O���}��𥗳�X`IS��7C҅t��d��$H�EV���r���+�e5�s�}q�&)I�p��/"�!�z�����6���둝$o�� �����m-$+ˢ>��w����,����/^o�8\�t>+��3,X��Y��
	�H	�=�k���#+Ecfz8��U܉_�0Fi/�Z�@���ˊ}aR��X�Z��w�R���~��K
-��R��Wz���k���>�W呙mYS˶)�]7R���*�XbE���@�2��'�nW��`�7�G4��^f��d�n��U�����߁�8M�=�����]C����MN|4գ���'�����i�����(+;�l�
-BJ�85�����Io���Κ#�8�����<�%���Ĩ.(�1���|EE= ���7�-*C��ꧨ��
ӧe�:�?zI����,W��/�~��oe
17(z-H�w(yy���+��M�X�ϪRϔ	`d�wə��o�Vϲ#D�o������A�k���c��h{���Q�{�����|�L��2�=���*胡af�ѫ�c!.$A�:��(�K�~�;:N@�ˊO�dzihÂfBU!ϯ-:de�;L�ʲ+��j/OWF����U�W��
��r�I�Y�1?@�е6l�D��Y똌m���
u��t⺼��Ǫ��Gp���\%0upT�
-���M��N2�yپ�Ѧ^(_6I��\ÅU�j�b)��+^@�$��0J
&�p��Tg���y�%�$�����i{���xZjV�,�bﻹ�'!A��	��:����2���>ʼn����*�}�4OzjP�Oڐ8żL|j�H/��#�kE�z�x�U07Ċ�d����>�k��!�uE��i��_�F������ֿY���da���l�̓�(�黛����e{DY�dMu�n��oހ],�<�)j��]
*�������(X!�A��hG|h$7��~����D~`�e�,�1���	�,ha{S��<�:ҝ�F`Z�Y>. /`�92g
�cq��v�T�V��8x��$L�AAMA��2��n��&U�Q`�)��d;\*��*%`<�j7��;e�3fCS%���o+oᬼ�Ns��2�թ��Ņ�:a�$�)@���A���U��"zfpf@V�=�tj�н���g��f�8 hy[`�߈�%g!y�W�̐��a-��h�
-c�q�A3[@�;�s�Ǯm��f�py+d�e�o�R�z��g�5$l��=4oSZ셼��(��2`�\Y�ՕK��
�d���Z�q��#U)���E$
-��|�n��A������k=4�J�
I���o�|��Ϗ�^����
-�w�ߩ�_k�o��>�
-����4#���
-��t���N%��%[���L1w-4hK��r�kcuP�_�4Lߣm����u�Ӟ��n�G����坭�'�v��n&��da�[:��nY殪�^se�x~�H��?6]��I�hy�L/��wdM��t�QE�[����htLВ�c��J��1��K���ӍN�u��J=��fw�Ԏ��=��M;���Fs3ċ�[��橹H�D00���ON"iơ���L򵍥��P�jIԕx�߻���� C��K=!����ʠ��I�p���ԢZ���Z�}q�;.N	]�v�{Cr?�Y�����F}���.��\T��D>�J�U�(�F��N��9��\��I�At�˂�_�y/�{�씥���F�?�;�ċ��'!���[l+4�e[�.9aC�S����e�F��*EQ�������⫒ݳl��*M	!��<�;U�:c���H�<{��y�B�^�U�ID���3v
-&h:[�m;�@(v�r��X������:ܐ(���|�Y˙׏OA��A�<�Ba1kjf���i�.���>�Mi�Ҝx���T�#{meS��~�t�QΠ>0k��ߔ���oAӝ�R���TvD����l���ɀ\�T=G��Yں�`�s�0��Z�f����r�;9���Kξ[<G��v{!n�N�j�<���Ư3�mh�=o]��|����jCU;����&���D����vy;uֺ�r<�D��_��M=~�K��]�Nɴ�C�0�цl�����~��y>�i,T��_{r�s�/D�Cnendstream
+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���4D���?�Ǻ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���������(!��yF��<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����c򟛯B���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
 endobj
-1661 0 obj <<
+2311 0 obj <<
 /Type /Page
-/Contents 1662 0 R
-/Resources 1660 0 R
+/Contents 2312 0 R
+/Resources 2310 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1632 0 R
-/Annots [ 1689 0 R ]
+/Parent 2157 0 R
+/Annots [ 2316 0 R 2319 0 R 2328 0 R ]
 >> endobj
-1689 0 obj <<
+2316 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [446.952 190.421 499.255 199.332]
+/Rect [291.365 672.608 339.793 681.519]
 /Subtype /Link
-/A << /S /GoTo /D (localconfig) >>
+/A << /S /GoTo /D (troubleshooting) >>
 >> endobj
-1663 0 obj <<
-/D [1661 0 R /XYZ 71.731 729.265 null]
+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
-1664 0 obj <<
-/D [1661 0 R /XYZ 71.731 718.306 null]
+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) >>
 >> endobj
-1665 0 obj <<
-/D [1661 0 R /XYZ 277.327 695.392 null]
+2313 0 obj <<
+/D [2311 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1666 0 obj <<
-/D [1661 0 R /XYZ 71.731 675.303 null]
+182 0 obj <<
+/D [2311 0 R /XYZ 166.615 707.841 null]
 >> endobj
-126 0 obj <<
-/D [1661 0 R /XYZ 326.396 641.993 null]
+2314 0 obj <<
+/D [2311 0 R /XYZ 71.731 697.476 null]
 >> endobj
-1667 0 obj <<
-/D [1661 0 R /XYZ 71.731 635.866 null]
+2315 0 obj <<
+/D [2311 0 R /XYZ 258.543 687.716 null]
 >> endobj
-1668 0 obj <<
-/D [1661 0 R /XYZ 71.731 602.974 null]
+2317 0 obj <<
+/D [2311 0 R /XYZ 71.731 667.627 null]
 >> endobj
-1669 0 obj <<
-/D [1661 0 R /XYZ 277.08 579.228 null]
+2318 0 obj <<
+/D [2311 0 R /XYZ 321.927 656.832 null]
 >> endobj
-1670 0 obj <<
-/D [1661 0 R /XYZ 71.731 567.108 null]
+2320 0 obj <<
+/D [2311 0 R /XYZ 349.018 630.929 null]
 >> endobj
-1671 0 obj <<
-/D [1661 0 R /XYZ 71.731 523.285 null]
+2321 0 obj <<
+/D [2311 0 R /XYZ 415.603 630.929 null]
 >> endobj
-1672 0 obj <<
-/D [1661 0 R /XYZ 71.731 498.431 null]
+2322 0 obj <<
+/D [2311 0 R /XYZ 91.925 617.978 null]
 >> endobj
-1673 0 obj <<
-/D [1661 0 R /XYZ 71.731 496.274 null]
+2323 0 obj <<
+/D [2311 0 R /XYZ 151.7 617.978 null]
 >> endobj
-1674 0 obj <<
-/D [1661 0 R /XYZ 71.731 481.33 null]
+2324 0 obj <<
+/D [2311 0 R /XYZ 71.731 610.974 null]
 >> endobj
-1675 0 obj <<
-/D [1661 0 R /XYZ 71.731 443.935 null]
+2325 0 obj <<
+/D [2311 0 R /XYZ 264.224 600.045 null]
 >> endobj
-130 0 obj <<
-/D [1661 0 R /XYZ 375.843 408.468 null]
+2326 0 obj <<
+/D [2311 0 R /XYZ 95.243 574.142 null]
 >> endobj
-1676 0 obj <<
-/D [1661 0 R /XYZ 71.731 399.831 null]
+2327 0 obj <<
+/D [2311 0 R /XYZ 71.731 567.004 null]
 >> endobj
-1677 0 obj <<
-/D [1661 0 R /XYZ 71.731 369.45 null]
+1247 0 obj <<
+/D [2311 0 R /XYZ 71.731 539.109 null]
 >> endobj
-1678 0 obj <<
-/D [1661 0 R /XYZ 105.494 358.655 null]
+186 0 obj <<
+/D [2311 0 R /XYZ 381.468 496.011 null]
 >> endobj
-1679 0 obj <<
-/D [1661 0 R /XYZ 71.731 347.285 null]
+2329 0 obj <<
+/D [2311 0 R /XYZ 71.731 483.573 null]
 >> endobj
-1680 0 obj <<
-/D [1661 0 R /XYZ 82.491 337.036 null]
+1248 0 obj <<
+/D [2311 0 R /XYZ 71.731 472.295 null]
 >> endobj
-1681 0 obj <<
-/D [1661 0 R /XYZ 71.731 303.761 null]
+190 0 obj <<
+/D [2311 0 R /XYZ 193.715 435.08 null]
 >> endobj
-1682 0 obj <<
-/D [1661 0 R /XYZ 71.731 270.72 null]
+2330 0 obj <<
+/D [2311 0 R /XYZ 71.731 424.715 null]
 >> endobj
-134 0 obj <<
-/D [1661 0 R /XYZ 235.718 237.41 null]
+2331 0 obj <<
+/D [2311 0 R /XYZ 71.731 402.836 null]
 >> endobj
-1683 0 obj <<
-/D [1661 0 R /XYZ 71.731 228.957 null]
+2332 0 obj <<
+/D [2311 0 R /XYZ 71.731 402.836 null]
 >> endobj
-1684 0 obj <<
-/D [1661 0 R /XYZ 270.344 205.529 null]
+2333 0 obj <<
+/D [2311 0 R /XYZ 101.32 393.336 null]
 >> endobj
-1685 0 obj <<
-/D [1661 0 R /XYZ 243.475 192.578 null]
+2336 0 obj <<
+/D [2311 0 R /XYZ 71.731 383.194 null]
 >> endobj
-1688 0 obj <<
-/D [1661 0 R /XYZ 375.041 192.578 null]
+2337 0 obj <<
+/D [2311 0 R /XYZ 416.305 370.422 null]
 >> endobj
-1690 0 obj <<
-/D [1661 0 R /XYZ 71.731 185.44 null]
+2338 0 obj <<
+/D [2311 0 R /XYZ 71.731 345.351 null]
 >> endobj
-1691 0 obj <<
-/D [1661 0 R /XYZ 136.229 174.645 null]
+2339 0 obj <<
+/D [2311 0 R /XYZ 71.731 324.481 null]
 >> endobj
-1692 0 obj <<
-/D [1661 0 R /XYZ 259.904 174.645 null]
+2340 0 obj <<
+/D [2311 0 R /XYZ 71.731 310.781 null]
 >> endobj
-1693 0 obj <<
-/D [1661 0 R /XYZ 398.333 174.645 null]
+2341 0 obj <<
+/D [2311 0 R /XYZ 71.731 295.837 null]
 >> endobj
-1694 0 obj <<
-/D [1661 0 R /XYZ 134.804 161.694 null]
+2342 0 obj <<
+/D [2311 0 R /XYZ 369.099 274.681 null]
 >> endobj
-1695 0 obj <<
-/D [1661 0 R /XYZ 346.299 161.694 null]
+1249 0 obj <<
+/D [2311 0 R /XYZ 71.731 246.786 null]
 >> endobj
-1696 0 obj <<
-/D [1661 0 R /XYZ 71.731 141.604 null]
+194 0 obj <<
+/D [2311 0 R /XYZ 246.48 207.413 null]
 >> endobj
-1697 0 obj <<
-/D [1661 0 R /XYZ 105.494 130.809 null]
+2343 0 obj <<
+/D [2311 0 R /XYZ 71.731 197.271 null]
 >> endobj
-1698 0 obj <<
-/D [1661 0 R /XYZ 71.731 124.42 null]
+2344 0 obj <<
+/D [2311 0 R /XYZ 71.731 156.305 null]
 >> endobj
-1660 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F35 1229 0 R /F44 1440 0 R /F51 1687 0 R /F32 1071 0 R >>
+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]
+>> endobj
+2351 0 obj <<
+/D [2311 0 R /XYZ 71.731 95.468 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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1701 0 obj <<
-/Length 2173      
+2354 0 obj <<
+/Length 2137      
 /Filter /FlateDecode
 >>
 stream
-x��YYo��~�_�����V���,"��6Z{"k6Yd��M�,bx-����S}�������դ������93�Ϝ�&�m��Bdy�,���g���;SJ,�Ȳ#s�{wug۳��=��g��П���ך��o���^,-ט[H|����,K�g�|�>�;�2����w�N+um��}�.%36̝��]����3d;�+i~�~d
-�d�yL�v�c�ř����~�Xz�1�6���R<���-<�왍,˟-My��g}�x��ER�����m�X�����fm��f�fmn�"F���&z������T��LJ�j�������Š��G9�Fw�6�����ý�|j���	=������2�١l�t���w�ut+�]K#.Dp]�\���k;2�H��U�o�c#���������Y�;�iG�6�?�>n׿�7���Q*�m�H^:.22K�B�) ���������A�h(�B|�Y�P�ea�sR7i�0��k���/��\��m��Z�I>D��dB᩠�"�X�C��I�o��X�iy�b���yڀgE#�9Bs-�Ї��EAIO*^^X,0�;�i��2����As(�L��,��9�KMR���.s1bq䃑]Y�PM>J8�_Ƹ!���e��̾#(ջ�y�m�"j�B���ymr�ۆ$ߏ0l�bi�����%	
-��|c�
-��X�����{"	<��c�g������)�dY�fh�y�0����,>7����q�A8,����'�_�J��-&���o*�c�qf}F:�*Q�Z>.��ê�Fe	��A�&�B�&mF�CV5iH��)T�4�I3�=�AǠ���E�,T�aFa�|�9a/㎇4>��2�i�\i�~�<��D�!I
-	O�vZ���L�f�v
�f,`�*�F.}Z�$�2LIs)\�
-Ӧ�MOK0�O�N�23&-~��܁$�PT
��5��;�`Ɖ8!NG�\Y'��	aq/H2�D����-W@����)��Ej�Bh����A��|]�u7�Px9��ύ��Z�M����6�ʫ('yZ@u�1USp�m��nN�T?�N�f4��*2��T��ZOD����h�J"�����1�� $QΪ
-E�*	.h�k�cn�J7=H���d�9��+�t~#��P��1�r�t�U�>(-�V�H�s2��|Ӧ��7���b4��>�� F�5a�yw��"��I�6*t�.L�X�n�_�R4���6�	�`�Zh�ˀ��^��M��O�l�J;�εu�rd�����?��'���|�F�H�nzOz��1(�Z6ǧī8�n�F���ѱn9�6�Ͱ|TU]Vu��I��2�o�k�V��+Z�3Ë.[�:R�@FEL�ڸ7cXƇ
-ڰ���s��A�;]-�+I��vUa�CM�b������:�F��)w�aP�������%쿚v�XR4z�x����&��i��0p�Y��F�|aEM��E�|�@�����zz-\U��	#z��X�
-+eP*�L��͡0�fV�'����]P2ˎ�]��ˣ���
��̑��AV�W/eΫ,$Z8��`��V��u8�A+뛝T7e�3䉆T<(���Lg7=�8�����K�z�T��Չ^U�K�|�N�d�M�WOn���Q��X�� ��tudF1,��`�����3�k��u�)gu�2]��{S��>����m�J����q�	�é��rם��w$)k<�֌��r�A��MZ�_/�o����a�W�MفO.�n}��"4��]M{O_�k��`B�9���k`P""�^Ä�7�pN�CWw7��0q,v�`��ʟnS8�����ƥR�;T?8��[�i��򙷁i�N�����B�J\���\2��]��:
-zȷ�^A�<:�B-I���v����D��~��➊�m�J�Ѵ�R�No��T���
-%K?~؇��R��`ܨzQN���څq��*�p ���0��!U51�-X����u٥z`�>V�).r�(�]}����x��ͳ�'Av%~�8B��]��������ȱ���<��Z��t5rMRk�9��u��.�����2V���s�l�:��|y{����}�C%T&�ݺH�W����l>�oޯ'fj��$1%C�5m+ȑ���u��B�2q������N"��x\+@����|�w������T��endstream
+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
 endobj
-1700 0 obj <<
+2353 0 obj <<
 /Type /Page
-/Contents 1701 0 R
-/Resources 1699 0 R
+/Contents 2354 0 R
+/Resources 2352 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1632 0 R
-/Annots [ 1723 0 R ]
+/Parent 2376 0 R
+/Annots [ 2368 0 R ]
 >> endobj
-1723 0 obj <<
+2368 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [431.986 285.026 484.289 293.938]
+/Rect [235.966 332.05 287.048 340.961]
 /Subtype /Link
-/A << /S /GoTo /D (security-webserver-access) >>
->> endobj
-1702 0 obj <<
-/D [1700 0 R /XYZ 71.731 729.265 null]
->> endobj
-1703 0 obj <<
-/D [1700 0 R /XYZ 71.731 718.306 null]
->> endobj
-1704 0 obj <<
-/D [1700 0 R /XYZ 82.491 708.344 null]
->> endobj
-1705 0 obj <<
-/D [1700 0 R /XYZ 297.683 673.375 null]
->> endobj
-1706 0 obj <<
-/D [1700 0 R /XYZ 82.491 661.719 null]
->> endobj
-1707 0 obj <<
-/D [1700 0 R /XYZ 71.731 650.489 null]
->> endobj
-1708 0 obj <<
-/D [1700 0 R /XYZ 264.158 638.804 null]
->> endobj
-1709 0 obj <<
-/D [1700 0 R /XYZ 342.703 638.804 null]
->> endobj
-1710 0 obj <<
-/D [1700 0 R /XYZ 71.731 602.839 null]
+/A << /S /GoTo /D (whining) >>
 >> endobj
-1711 0 obj <<
-/D [1700 0 R /XYZ 82.491 591.283 null]
+2355 0 obj <<
+/D [2353 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1712 0 obj <<
-/D [1700 0 R /XYZ 125.529 556.314 null]
+2356 0 obj <<
+/D [2353 0 R /XYZ 89.664 708.344 null]
 >> endobj
-1713 0 obj <<
-/D [1700 0 R /XYZ 82.491 544.658 null]
+2357 0 obj <<
+/D [2353 0 R /XYZ 71.731 685.43 null]
 >> endobj
-1714 0 obj <<
-/D [1700 0 R /XYZ 71.731 523.465 null]
+2358 0 obj <<
+/D [2353 0 R /XYZ 255.817 672.478 null]
 >> endobj
-138 0 obj <<
-/D [1700 0 R /XYZ 206.856 485.36 null]
+2359 0 obj <<
+/D [2353 0 R /XYZ 511.98 672.478 null]
 >> endobj
-1715 0 obj <<
-/D [1700 0 R /XYZ 71.731 475.217 null]
+2360 0 obj <<
+/D [2353 0 R /XYZ 482.926 633.624 null]
 >> endobj
-1716 0 obj <<
-/D [1700 0 R /XYZ 119.442 465.235 null]
+1250 0 obj <<
+/D [2353 0 R /XYZ 71.731 613.654 null]
 >> endobj
-1717 0 obj <<
-/D [1700 0 R /XYZ 71.731 432.194 null]
+198 0 obj <<
+/D [2353 0 R /XYZ 234.86 576.319 null]
 >> endobj
-1718 0 obj <<
-/D [1700 0 R /XYZ 71.731 388.359 null]
+2361 0 obj <<
+/D [2353 0 R /XYZ 71.731 565.954 null]
 >> endobj
-1719 0 obj <<
-/D [1700 0 R /XYZ 71.731 388.359 null]
+2362 0 obj <<
+/D [2353 0 R /XYZ 71.731 536.105 null]
 >> endobj
-1720 0 obj <<
-/D [1700 0 R /XYZ 270.634 377.564 null]
+2363 0 obj <<
+/D [2353 0 R /XYZ 71.731 500.239 null]
 >> endobj
-1721 0 obj <<
-/D [1700 0 R /XYZ 71.731 370.426 null]
+2364 0 obj <<
+/D [2353 0 R /XYZ 71.731 489.332 null]
 >> endobj
-142 0 obj <<
-/D [1700 0 R /XYZ 188.593 333.21 null]
+2365 0 obj <<
+/D [2353 0 R /XYZ 71.731 469.407 null]
 >> endobj
-1722 0 obj <<
-/D [1700 0 R /XYZ 71.731 325.858 null]
+2366 0 obj <<
+/D [2353 0 R /XYZ 369.099 447.502 null]
 >> endobj
-1724 0 obj <<
-/D [1700 0 R /XYZ 71.731 285.026 null]
+1251 0 obj <<
+/D [2353 0 R /XYZ 71.731 419.606 null]
 >> endobj
-146 0 obj <<
-/D [1700 0 R /XYZ 191.198 252.712 null]
+202 0 obj <<
+/D [2353 0 R /XYZ 168.193 380.234 null]
 >> endobj
-1725 0 obj <<
-/D [1700 0 R /XYZ 71.731 244.26 null]
+2367 0 obj <<
+/D [2353 0 R /XYZ 71.731 369.869 null]
 >> endobj
-1726 0 obj <<
-/D [1700 0 R /XYZ 71.731 231.627 null]
+2369 0 obj <<
+/D [2353 0 R /XYZ 71.731 316.174 null]
 >> endobj
-1727 0 obj <<
-/D [1700 0 R /XYZ 71.731 221.664 null]
+2370 0 obj <<
+/D [2353 0 R /XYZ 71.731 278.252 null]
 >> endobj
-1728 0 obj <<
-/D [1700 0 R /XYZ 115.118 205.888 null]
+2371 0 obj <<
+/D [2353 0 R /XYZ 71.731 267.345 null]
 >> endobj
-1729 0 obj <<
-/D [1700 0 R /XYZ 429.318 205.888 null]
+2372 0 obj <<
+/D [2353 0 R /XYZ 71.731 247.419 null]
 >> endobj
-1730 0 obj <<
-/D [1700 0 R /XYZ 71.731 203.731 null]
+2373 0 obj <<
+/D [2353 0 R /XYZ 76.712 197.22 null]
 >> endobj
-1731 0 obj <<
-/D [1700 0 R /XYZ 144.717 187.955 null]
+2374 0 obj <<
+/D [2353 0 R /XYZ 71.731 177.295 null]
 >> endobj
-1732 0 obj <<
-/D [1700 0 R /XYZ 314.747 162.052 null]
+2375 0 obj <<
+/D [2353 0 R /XYZ 369.099 153.983 null]
 >> endobj
-1733 0 obj <<
-/D [1700 0 R /XYZ 71.731 154.914 null]
+1252 0 obj <<
+/D [2353 0 R /XYZ 71.731 126.087 null]
 >> endobj
-1699 0 obj <<
-/Font << /F33 1160 0 R /F35 1229 0 R /F51 1687 0 R /F27 1064 0 R /F23 1057 0 R >>
+2352 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R /F44 1884 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1737 0 obj <<
-/Length 2617      
+2379 0 obj <<
+/Length 2863      
 /Filter /FlateDecode
 >>
 stream
-xڭY��۸�=��P�iQO+IS$��m{m�f����h����%A��n��ΐC깻=���i�����/��g�ܘ�a�H�/�����ӎ5mY��|�y���y��š��9,|�eq��<�mwq�����$�FV��8K���y݈,K����=�'�2���͟_|��B/b��{R/�g�X��m���,�E�l���J����i%���ޡ��g7�,qk8.��j��I�R����U�4i�ׯ�XR��`y��~��HN��)�ߪ��K��~��q�L��áh�~���)�ݍ9g�r��q�Z��W|�f�Z=z���݊K�TV�h9�]S��}E�s�ʽvW߿��7����4��{e�ĭ��b'6��_q�EN�<{ 5J96e�Z��J.�62ư�m�x�|$��m��!�
-�e=�p͹�|�'Wqe;5"Id]?c� �F�cB���=�|̊���s)�s
-�5������R����PI�[���z#��nt�;.is����v���oY���0fXQ*�߳��e�JY���I�GI�k�!l�q����=)�����mz��7�yS�`�@))*�7�3P��,��d!���AD^��eG��)�8�#���A*6w��\.�ͩ9g�wSor��nmpδb���4�xfY��^YM�e���s�uԇ.�����"��Fo3F�5A4����C�A[�
�ߢ�Y��DZ-�p�m��ĚxBe%G�	+�~0�,����V��(a+HNE�è���逢��Q������I��N��:ˁ\Ie���;���ɦ���V9�SI \���b�Z<��u9I���1��?�7��r��u:LS����@RQ�m|/|�n�����'��1�'o"kN��9Y�V6�2��'��e<���|&��lڒ�ٔZ#�����D��5į��d;E��?�GM����iU���Nj�1�+%�����\N��8B�˶�
-����g1�e�"w�B
]�Ѥ���sjt�����t�k_�O�}�g��k���47ba��SӔ{\}�)v�bÇ�����z�RDd��t=�*FpX>���v]�@<�Ŀ#���8o5��u|RQ�Q�b�=a�� 2E3+��A����1����F':�Qb�7=~˸
�3���3e��'9��x��H����X�����T��V��k�Qg}}�:���l`ϝ4�jA����&�4������00��j)5�RJO��A�N����]�����;�����d�H�O�	�(��ˇ���O�K���+bo�>f�i_u��m���,
ش�g�V�aN��.��j�?�
E[Y9o���B�eF�
-�"̀Z vp�3�8�w��Y����~$�G�a�����6�����0�&����?|F�_�?�����o�_�M���|������������NP��Uâ=�G�A�n�Q�vj訶�eGC����� ��T�VFA,�ӱQ#y�����yG�����*8u��8����!�0��*g>s��k�T��E]�"B�K�頾��qO�:YHʻ=37��]���hx��(L�3��5F�f�k5���C��Er*�z��,�iʬ~��3N}:(�p06�
ئ��zP7�MV5r� v�P�z�uo�����E��yT�*����=��99�Lh|�c�ul+��z�˪Q�%�-���dA��X�犫�F:�3�פ��[h����ĒȘxu��v?X�u������TTM�@�I%���
fb�܇=��ͦn˲�v6p�6D�7{yP�Y�D]���N��owod�n�7�ld7jn]����� �j�fŷ˯���UoӛUa��At�}��O���J�f�
-��"�^�>s�H�d�����i���F]c?��	�;������x;���������?sǁs��}"7p�ـr6�g�kb����LZ�6���f�)6`�| ���ԡ/E����Q�a~>�(I%q����.���Z#{T���6[����[gb�o]E���L�����;�ڎ����p�U'^��1�;��pL?�9r:���e���|<mvTmX�,�gd�_cu�2�.@#r�MϖW�a�����j�y��mTԢ��0S�A.�F����	F;8�x��r�-*�/�P ���6�,��d �O��9�[?"�b�5�>�_���������� ���9�4���}�z���pb&n���������:�8iB��-�y�Ɲ�lKb����{��?�y
-}b?ZE�=��S.��*e������U?)������q
-���ݖiRQ?Fz�:�׹�q��bKQ��zIYh�N�;�jJs�'޺s}��-�]����Au�t��7i�w�/�{�����5-�%�z��W_��Ļ"`S<�]����.ޟ�}#�.�S�W5�Xo���/�F?��L�~�{����@ی��*X�P��Ҧ����C�4�x�-�듏Bf׮	��)�f�*���Zf�>:�j��.ʾ5�Pڷ���=-��e<w���|&u�I��g��8M13a㯬��\OYo-b��)����*�脘����/���=���,��O�o��v_n�I/�_��G���-���ɋ�n��7���2�����c�sO%���O�endstream
+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��B•d���.�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
 endobj
-1736 0 obj <<
+2378 0 obj <<
 /Type /Page
-/Contents 1737 0 R
-/Resources 1735 0 R
+/Contents 2379 0 R
+/Resources 2377 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1632 0 R
->> endobj
-1738 0 obj <<
-/D [1736 0 R /XYZ 71.731 729.265 null]
+/Parent 2376 0 R
+/Annots [ 2397 0 R ]
 >> endobj
-1739 0 obj <<
-/D [1736 0 R /XYZ 71.731 741.22 null]
+2397 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [272.104 345.806 306.198 354.396]
+/Subtype /Link
+/A << /S /GoTo /D (gloss-contrib) >>
 >> endobj
-1740 0 obj <<
-/D [1736 0 R /XYZ 71.731 691.706 null]
+2380 0 obj <<
+/D [2378 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1741 0 obj <<
-/D [1736 0 R /XYZ 152.189 665.803 null]
+206 0 obj <<
+/D [2378 0 R /XYZ 200.128 707.841 null]
 >> endobj
-1742 0 obj <<
-/D [1736 0 R /XYZ 89.664 652.852 null]
+2381 0 obj <<
+/D [2378 0 R /XYZ 71.731 700.488 null]
 >> endobj
-1743 0 obj <<
-/D [1736 0 R /XYZ 71.731 650.695 null]
+2382 0 obj <<
+/D [2378 0 R /XYZ 99.155 674.765 null]
 >> endobj
-1744 0 obj <<
-/D [1736 0 R /XYZ 71.731 635.751 null]
+2383 0 obj <<
+/D [2378 0 R /XYZ 121.261 674.765 null]
 >> endobj
-1745 0 obj <<
-/D [1736 0 R /XYZ 129.889 614.595 null]
+2384 0 obj <<
+/D [2378 0 R /XYZ 158.738 674.765 null]
 >> endobj
-1746 0 obj <<
-/D [1736 0 R /XYZ 74.222 573.35 null]
+2385 0 obj <<
+/D [2378 0 R /XYZ 71.731 661.813 null]
 >> endobj
-1747 0 obj <<
-/D [1736 0 R /XYZ 92.154 550.436 null]
+2386 0 obj <<
+/D [2378 0 R /XYZ 71.731 655.424 null]
 >> endobj
-1748 0 obj <<
-/D [1736 0 R /XYZ 201.294 537.484 null]
+2387 0 obj <<
+/D [2378 0 R /XYZ 245.988 643.881 null]
 >> endobj
-1749 0 obj <<
-/D [1736 0 R /XYZ 258.36 537.484 null]
+2388 0 obj <<
+/D [2378 0 R /XYZ 268.387 643.881 null]
 >> endobj
-1750 0 obj <<
-/D [1736 0 R /XYZ 89.664 524.533 null]
+2389 0 obj <<
+/D [2378 0 R /XYZ 311.83 643.881 null]
 >> endobj
-1751 0 obj <<
-/D [1736 0 R /XYZ 226.44 524.533 null]
+2390 0 obj <<
+/D [2378 0 R /XYZ 225.31 630.929 null]
 >> endobj
-1752 0 obj <<
-/D [1736 0 R /XYZ 333.757 524.533 null]
+2391 0 obj <<
+/D [2378 0 R /XYZ 215.062 617.978 null]
 >> endobj
-1753 0 obj <<
-/D [1736 0 R /XYZ 71.731 522.969 null]
+1253 0 obj <<
+/D [2378 0 R /XYZ 71.731 610.84 null]
 >> endobj
-1754 0 obj <<
-/D [1736 0 R /XYZ 305.233 493.649 null]
+210 0 obj <<
+/D [2378 0 R /XYZ 254.069 573.624 null]
 >> endobj
-1755 0 obj <<
-/D [1736 0 R /XYZ 424.058 493.649 null]
+2392 0 obj <<
+/D [2378 0 R /XYZ 71.731 566.272 null]
 >> endobj
-1756 0 obj <<
-/D [1736 0 R /XYZ 71.731 473.559 null]
+2393 0 obj <<
+/D [2378 0 R /XYZ 71.731 546.361 null]
 >> endobj
-1757 0 obj <<
-/D [1736 0 R /XYZ 71.731 447.422 null]
+2394 0 obj <<
+/D [2378 0 R /XYZ 71.731 429.799 null]
 >> endobj
-1758 0 obj <<
-/D [1736 0 R /XYZ 71.731 404.419 null]
+2395 0 obj <<
+/D [2378 0 R /XYZ 118.555 394.247 null]
 >> endobj
-150 0 obj <<
-/D [1736 0 R /XYZ 337.12 371.108 null]
+2396 0 obj <<
+/D [2378 0 R /XYZ 118.555 347.801 null]
 >> endobj
-1759 0 obj <<
-/D [1736 0 R /XYZ 71.731 364.981 null]
+2398 0 obj <<
+/D [2378 0 R /XYZ 492.354 347.801 null]
 >> endobj
-1760 0 obj <<
-/D [1736 0 R /XYZ 356.64 352.179 null]
+2399 0 obj <<
+/D [2378 0 R /XYZ 71.731 314.225 null]
 >> endobj
-1761 0 obj <<
-/D [1736 0 R /XYZ 487.229 352.179 null]
+2400 0 obj <<
+/D [2378 0 R /XYZ 71.731 305.313 null]
 >> endobj
-1762 0 obj <<
-/D [1736 0 R /XYZ 314.996 326.276 null]
+2401 0 obj <<
+/D [2378 0 R /XYZ 71.731 290.369 null]
 >> endobj
-1763 0 obj <<
-/D [1736 0 R /XYZ 339.026 313.325 null]
+2402 0 obj <<
+/D [2378 0 R /XYZ 71.731 277.418 null]
 >> endobj
-1764 0 obj <<
-/D [1736 0 R /XYZ 195.138 300.374 null]
+2403 0 obj <<
+/D [2378 0 R /XYZ 91.656 261.642 null]
 >> endobj
-1765 0 obj <<
-/D [1736 0 R /XYZ 335.131 300.374 null]
+2404 0 obj <<
+/D [2378 0 R /XYZ 220.329 261.642 null]
 >> endobj
-1766 0 obj <<
-/D [1736 0 R /XYZ 339.026 287.422 null]
+2405 0 obj <<
+/D [2378 0 R /XYZ 257.513 261.642 null]
 >> endobj
-1767 0 obj <<
-/D [1736 0 R /XYZ 298.678 274.471 null]
+2406 0 obj <<
+/D [2378 0 R /XYZ 162.267 248.691 null]
 >> endobj
-1768 0 obj <<
-/D [1736 0 R /XYZ 71.731 267.706 null]
+2407 0 obj <<
+/D [2378 0 R /XYZ 446.625 235.739 null]
 >> endobj
-1769 0 obj <<
-/D [1736 0 R /XYZ 115.736 243.587 null]
+2408 0 obj <<
+/D [2378 0 R /XYZ 154.759 222.788 null]
 >> endobj
-1770 0 obj <<
-/D [1736 0 R /XYZ 188.243 230.635 null]
+2409 0 obj <<
+/D [2378 0 R /XYZ 71.731 210.668 null]
 >> endobj
-1771 0 obj <<
-/D [1736 0 R /XYZ 375.478 230.635 null]
+2410 0 obj <<
+/D [2378 0 R /XYZ 71.731 199.774 null]
 >> endobj
-1772 0 obj <<
-/D [1736 0 R /XYZ 100.782 217.684 null]
+2411 0 obj <<
+/D [2378 0 R /XYZ 91.656 181.941 null]
 >> endobj
-1773 0 obj <<
-/D [1736 0 R /XYZ 204.064 191.781 null]
+2412 0 obj <<
+/D [2378 0 R /XYZ 71.731 161.851 null]
 >> endobj
-1774 0 obj <<
-/D [1736 0 R /XYZ 71.731 184.643 null]
+2413 0 obj <<
+/D [2378 0 R /XYZ 107.706 151.057 null]
 >> endobj
-1775 0 obj <<
-/D [1736 0 R /XYZ 71.731 135.826 null]
+2414 0 obj <<
+/D [2378 0 R /XYZ 204.851 151.057 null]
 >> endobj
-1735 0 obj <<
-/Font << /F33 1160 0 R /F35 1229 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R /F51 1687 0 R >>
+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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1778 0 obj <<
-/Length 2158      
+2418 0 obj <<
+/Length 1614      
 /Filter /FlateDecode
 >>
 stream
-xڵi��6���
-a�"v�"�3�b�4G�(�.f�Ţ-Z�mm$Q��8Ӣ����d�����D��]|�����b�b
-�"�^V�������bcA6�7�הz)J#�=��'(������{�\}}d���zCBE�y�՝deY��~�~-ʒ�~�����@4�1Jz�/�`��#cN>?A44c��8\	�W���jJ�L1b��E��mFN����O�
oK���["���7��6�
^}4�;'��rz0/�_v�����P$t���sz��"BM�{!o ��IB�XT0G`����y&�k���d�nF�fQ�5�W�fqdk����ʖ��~��]I$yn����k	
-��N�SX�ƒ���I�;��G&-;v�,�b�,�=C}��a����߼z�r��o��K���R���FZw{s���8��VŚ�X��9���twܪ6�\��Aݶ��J����M�&qj��%�,�������Z���*(�]q���Y0�2p�ۛ�P0�F=��i���w7�c�n�Z��;68��`o>J��h����Ʃ�6o��y��fޤ�y_E�dw���^܂���΍���P����}g�$��t��"��<r�W�����s��ء�,o�l=#�҂XL���K�B�A��c�R����V��� /Z�I�>Z��ח���S��(�Oi���'U�G%��� 鞊�8�b��ю������\no�d�o�`�;�j�Q֗����(\Y�����,9h!s����'κ���AP��uFP�AH����������s��݌��p�فev��j{�ע?8UW�v:۷|��g�w
���_�G6��"ce&�}qX:o�/Ž��]b��3ɖ� ���A�ۺ�P:��4@A��YM�3�x���������	G$�}�0T����L�	~�H�t��F��Q���	�+Q�^%�`���#R�ѐ�!?�ah"m�':��)("H�gS�J\o�3�{�`Tx��*e�p��`y����[V�__��;�oD;�S0;0�Lٱu��
-{�CC@�D���y<�G}��Hfp%�x�ڂN=�i�H͜�݅����4�8�;�9r�}���_�%8W�й��.�*/i��;��_8	%�@%������L��������-��� �N��,�Y4�	��Szʙ���ʬ��
�aH 9���	6z�3V�u��l��~<�2�W7��J�C��Մ�K��Y�"\*��%�y�36$�����M*W��e,�!D���DG�2�7��wAۦ�1�?Q9��o�k*W`̌�&!��7�|��%�q0�	��H�tO��wszܬ��=��7UM��(��3Fj�ӿ���j�i�y��zy=J)������(��v[���{�ʬܪ�h_���"X./PU�Q�ݠ+B��|�p{fO��@�������r���r������� ��vZ
-o]��`��$%�<���r��$N7l�VL�]Wv�:O��nV�+i/���n�ߴ9��w-?�蝹�d7���}���K�2�6-��'��]���!.������>7-5��bBP�ω*s��_&��nt?�p�c�uG��S��ܴ �K��u��MJ��ۯ�S��$yՀ��+�E� ��n��������x���VX�;C��ӥ�N�������n-fŸ�~{A�-�}[�Û�[[7L�3�/�Hax�'��J.������吉������F��8���O��ros�0�(I�k8�Y�K�6��ဎ�:�Ӻ��0�d�1��?U���Z���8
-z���
-E4�B7	��ܱ�*J;�3Ջ�=A1"�Z^�
�FtꞺ�`�c)�ҁ�X�>����γ����c�Ͼ��D���U������^�L�
-�J,q3��
-Sf�%|��*6�P��6m���������W�(�3ɎLF+��ގ$qф;�>��>>s���R6϶[{δb�0O��P7����B����{����Ճ�C;�)e�'<�������>���	�.�ZwyH����壑<�;�)�vW�[��Q,�Ÿ_��7�?�P�MT妡��oC퉒���>����H����␀��B(�a��_:F4��Aendstream
+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�ѢZH׉x,��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
 endobj
-1777 0 obj <<
+2417 0 obj <<
 /Type /Page
-/Contents 1778 0 R
-/Resources 1776 0 R
+/Contents 2418 0 R
+/Resources 2416 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1632 0 R
-/Annots [ 1789 0 R 1793 0 R 1796 0 R ]
+/Parent 2376 0 R
 >> endobj
-1789 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [166.345 534.097 218.649 540.951]
-/Subtype /Link
-/A << /S /GoTo /D (security-webserver-access) >>
+2419 0 obj <<
+/D [2417 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1793 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [254.684 441.778 272.347 450.69]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-cgi) >>
+2420 0 obj <<
+/D [2417 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1796 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [385.263 410.894 403.016 419.806]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-tcl) >>
+2421 0 obj <<
+/D [2417 0 R /XYZ 71.731 706.187 null]
 >> endobj
-1779 0 obj <<
-/D [1777 0 R /XYZ 71.731 729.265 null]
+2422 0 obj <<
+/D [2417 0 R /XYZ 91.656 690.411 null]
 >> endobj
-1780 0 obj <<
-/D [1777 0 R /XYZ 71.731 718.306 null]
+2423 0 obj <<
+/D [2417 0 R /XYZ 71.731 657.37 null]
 >> endobj
-1781 0 obj <<
-/D [1777 0 R /XYZ 71.731 675.068 null]
+2424 0 obj <<
+/D [2417 0 R /XYZ 107.706 646.575 null]
 >> endobj
-1782 0 obj <<
-/D [1777 0 R /XYZ 71.731 655.143 null]
+2425 0 obj <<
+/D [2417 0 R /XYZ 71.731 618.68 null]
 >> endobj
-1783 0 obj <<
-/D [1777 0 R /XYZ 456.026 643.487 null]
+2426 0 obj <<
+/D [2417 0 R /XYZ 71.731 605.629 null]
 >> endobj
-1784 0 obj <<
-/D [1777 0 R /XYZ 207.921 631.831 null]
+2427 0 obj <<
+/D [2417 0 R /XYZ 91.656 587.796 null]
 >> endobj
-1785 0 obj <<
-/D [1777 0 R /XYZ 71.731 603.935 null]
+2428 0 obj <<
+/D [2417 0 R /XYZ 71.731 567.706 null]
 >> endobj
-1786 0 obj <<
-/D [1777 0 R /XYZ 71.731 557.943 null]
+2429 0 obj <<
+/D [2417 0 R /XYZ 107.706 556.912 null]
 >> endobj
-1787 0 obj <<
-/D [1777 0 R /XYZ 342.891 547.148 null]
+2430 0 obj <<
+/D [2417 0 R /XYZ 71.731 529.016 null]
 >> endobj
-1788 0 obj <<
-/D [1777 0 R /XYZ 442.189 547.148 null]
+2431 0 obj <<
+/D [2417 0 R /XYZ 71.731 515.965 null]
 >> endobj
-1790 0 obj <<
-/D [1777 0 R /XYZ 71.731 529.116 null]
+2432 0 obj <<
+/D [2417 0 R /XYZ 91.656 498.132 null]
 >> endobj
-154 0 obj <<
-/D [1777 0 R /XYZ 180.354 493.748 null]
+2433 0 obj <<
+/D [2417 0 R /XYZ 71.731 478.042 null]
 >> endobj
-1791 0 obj <<
-/D [1777 0 R /XYZ 71.731 487.622 null]
+2434 0 obj <<
+/D [2417 0 R /XYZ 107.706 467.248 null]
 >> endobj
-1792 0 obj <<
-/D [1777 0 R /XYZ 71.731 456.787 null]
+2435 0 obj <<
+/D [2417 0 R /XYZ 71.731 439.352 null]
 >> endobj
-1794 0 obj <<
-/D [1777 0 R /XYZ 71.731 425.903 null]
+2436 0 obj <<
+/D [2417 0 R /XYZ 71.731 426.301 null]
 >> endobj
-1795 0 obj <<
-/D [1777 0 R /XYZ 222.196 413.051 null]
+2437 0 obj <<
+/D [2417 0 R /XYZ 91.656 408.468 null]
 >> endobj
-1797 0 obj <<
-/D [1777 0 R /XYZ 71.731 400.1 null]
+2438 0 obj <<
+/D [2417 0 R /XYZ 71.731 388.379 null]
 >> endobj
-1798 0 obj <<
-/D [1777 0 R /XYZ 71.731 387.148 null]
+2439 0 obj <<
+/D [2417 0 R /XYZ 107.706 377.584 null]
 >> endobj
-1799 0 obj <<
-/D [1777 0 R /XYZ 71.731 375.029 null]
+1254 0 obj <<
+/D [2417 0 R /XYZ 71.731 354.67 null]
 >> endobj
-1800 0 obj <<
-/D [1777 0 R /XYZ 71.731 213.998 null]
+214 0 obj <<
+/D [2417 0 R /XYZ 460.106 315.298 null]
 >> endobj
-1801 0 obj <<
-/D [1777 0 R /XYZ 118.555 170.452 null]
+2440 0 obj <<
+/D [2417 0 R /XYZ 71.731 304.933 null]
 >> endobj
-1802 0 obj <<
-/D [1777 0 R /XYZ 169.295 150.332 null]
+2441 0 obj <<
+/D [2417 0 R /XYZ 344.279 295.173 null]
 >> endobj
-1803 0 obj <<
-/D [1777 0 R /XYZ 332.365 150.332 null]
+2442 0 obj <<
+/D [2417 0 R /XYZ 197.388 282.222 null]
 >> endobj
-1804 0 obj <<
-/D [1777 0 R /XYZ 340.076 138.675 null]
+2443 0 obj <<
+/D [2417 0 R /XYZ 438.35 282.222 null]
 >> endobj
-1805 0 obj <<
-/D [1777 0 R /XYZ 71.731 115.169 null]
+2444 0 obj <<
+/D [2417 0 R /XYZ 474.766 282.222 null]
 >> endobj
-1776 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F23 1057 0 R /F44 1440 0 R /F48 1452 0 R >>
+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 <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1809 0 obj <<
-/Length 2256      
+2454 0 obj <<
+/Length 2233      
 /Filter /FlateDecode
 >>
 stream
-xڕY[��~�_a�k/VQwm��� 	RM�)���D[�H�*R�x}�CI#yf7�]|tx�߹���Gw)%i� 'A�捿��/?��H�!���������0��$O���hF�t����`w,����b����b{��U�յh/�����I�5;����7��C�0%y�*����;�&I�`9%I��R?#a���Cj����=��(��D~��
͏g�/���C���`X��͠�p{=P�O���������\q�aZ�½�ݏ}]<�G^%?Bφ9��������L�"kC'{��+nUcP�O�!
�.B��T'��V��'9�H�1{R��] }o>�ya��0Kw56LG�g�����]�y�rI�U]���>��(�R�Zr�$�3�d�=X��cڍYD2�i�1ڟ�s@ÊJ���F��
���gB�0�s�g�R˂�-�
��$2��ڹ�~&�>�Qi�}xx�^���ߓ��s�O����:f+ԟp7vz:�ޤ%��N��-���NF+��6q�0O���H��fSD?G��dn<q���}������"m�a$,s���ᕐtѾ��phD�@���1Icwl)z^h�n��6:G0�`���$	F0Nǫ�ސ�X��x
-ߦ3B�g���b���2I��g��U%���������>��%AO������q)�$��Qg8���`�gzjD����_?l�IH2�������_I�8Jg`���3��$4i�k�u�m%�؅�"u��V���0YY���0��r8��z�j
-|	��~]��F!�8�pd�W��� �Uma�5#��Ǯ�m)��º>;s���g;�W�^32g;$M2DR�̐R槿K4ʘ5p�
-S�fC�
+�
-�{0D��3�����ǺnJn�c;B݂�īfJo����FQ��Qq=t���!� 8��Űp9�>v��鄀h�,���Gc�$u5�5ꭲ�r��w�@�6n��2�/L��;S@l��E���e�����}�҅+R���I�\3ݴ��o+o\�r�
���S&����W�c�d_�b�I��KY
o��r0D�o�Gć�&� ���D��^32��j�����0#Y�z��y��5#s�W+�/��f������|���B+Z���tߘ�x�
�('�T
�r�����H1���b>�	J����
�$V7cMa.ݱ��j_����wT4�-w����Q���l5T�\�"���ٔ�
-���aojy�gEx*����!j�t���J����'gC�\�9l�H����
���PB?��UN������Y��v��&	��S�@m�Wp�0Ld���S]�u�l!�Wp��B�B�p�":zp	
-ʪg0�;b�54�g�7j%���`�b|S�7kPѕT��`68�k��uj֣��9�/�<�}�(��_xÛ������hϡ�ܩ[!����Kʖ���O�Z\F��yLF������bʕ���Ig��AE��3����Ex%��E�I <}��@��z+�wǑ�n�-X�1�0p�Iz�N��
���(4�v��� ���Ѧ6$�l2(@z���H���+6����B��=�!�?Y�����4y���ݷϽq��hO^�|n�9�]����။��:��5Ѯ�SE/N.��i*Yv��	�J�P���TOyϛ{���5��Y��#��aW/OV�9X&^���q:n\?3!b�a��(�cy���h�F�C�Կm�b	FX���I�E��5β_�+�������3jL6C��������_����K�H��ha-v:@X�{�N��!��xN�U�\�<�~Rm�V��c2��x�_bp4���c�f4��X��ذC�V;��bY��$�T���x&��t�NFϨ�P�A�e�:LL
�8��QY?~VH�yZ�6�lť���8��7���o/��]��^��}�`���]ܾ�$_�y���>���$>Βk�az)�:���#�t��|Y׫^j�d�$�B�^/��ɮs�1��d��rk��d�@E��I��;�����:\����]����A���oM������i�^�Y������OL=��_��0���ݙ��p��~^���F�v�
-�><|0M�r�jU^.��8n.W���LE_zfI�E��i_)��T�V�7s�iQ;�VkQ�t57%~՛U��{p2g�A�����L@6�px0�5Yw���;2�����d��8��
c5��O��I�I��Iendstream
+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
 endobj
-1808 0 obj <<
+2453 0 obj <<
 /Type /Page
-/Contents 1809 0 R
-/Resources 1807 0 R
+/Contents 2454 0 R
+/Resources 2452 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1853 0 R
-/Annots [ 1824 0 R 1827 0 R 1836 0 R ]
+/Parent 2376 0 R
+/Annots [ 2464 0 R 2465 0 R ]
 >> endobj
-1824 0 obj <<
+2464 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [291.365 555.93 339.793 564.842]
+/Rect [330.238 401.165 383.277 410.076]
 /Subtype /Link
-/A << /S /GoTo /D (troubleshooting) >>
+/A << /S /GoTo /D (install-perlmodules) >>
 >> endobj
-1827 0 obj <<
+2465 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [194.011 512.095 238.843 521.116]
+/Rect [91.377 390.271 112.249 397.125]
 /Subtype /Link
-/A << /S /GoTo /D (parameters) >>
+/A << /S /GoTo /D (gloss-ppm) >>
 >> endobj
-1836 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [474.039 437.375 518.87 446.286]
-/Subtype /Link
-/A << /S /GoTo /D (extraconfig) >>
+2455 0 obj <<
+/D [2453 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1810 0 obj <<
-/D [1808 0 R /XYZ 71.731 729.265 null]
+218 0 obj <<
+/D [2453 0 R /XYZ 350.135 705.748 null]
 >> endobj
-1811 0 obj <<
-/D [1808 0 R /XYZ 71.731 718.306 null]
+2456 0 obj <<
+/D [2453 0 R /XYZ 71.731 693.577 null]
 >> endobj
-1812 0 obj <<
-/D [1808 0 R /XYZ 430.132 708.344 null]
+2457 0 obj <<
+/D [2453 0 R /XYZ 71.731 651.148 null]
 >> endobj
-1813 0 obj <<
-/D [1808 0 R /XYZ 218.914 696.687 null]
+2458 0 obj <<
+/D [2453 0 R /XYZ 440.415 640.353 null]
 >> endobj
-1814 0 obj <<
-/D [1808 0 R /XYZ 71.731 689.819 null]
+1354 0 obj <<
+/D [2453 0 R /XYZ 71.731 625.245 null]
 >> endobj
-1815 0 obj <<
-/D [1808 0 R /XYZ 238.496 680.05 null]
+222 0 obj <<
+/D [2453 0 R /XYZ 242.621 588.029 null]
 >> endobj
-1816 0 obj <<
-/D [1808 0 R /XYZ 122.052 668.394 null]
+2459 0 obj <<
+/D [2453 0 R /XYZ 71.731 580.677 null]
 >> endobj
-1817 0 obj <<
-/D [1808 0 R /XYZ 151.246 668.394 null]
+1355 0 obj <<
+/D [2453 0 R /XYZ 71.731 539.845 null]
 >> endobj
-1818 0 obj <<
-/D [1808 0 R /XYZ 180.441 668.394 null]
+226 0 obj <<
+/D [2453 0 R /XYZ 175.703 507.531 null]
 >> endobj
-1819 0 obj <<
-/D [1808 0 R /XYZ 227.083 668.394 null]
+2460 0 obj <<
+/D [2453 0 R /XYZ 71.731 501.404 null]
+>> endobj
+2461 0 obj <<
+/D [2453 0 R /XYZ 231.715 488.602 null]
+>> endobj
+2462 0 obj <<
+/D [2453 0 R /XYZ 131.551 475.651 null]
+>> endobj
+1356 0 obj <<
+/D [2453 0 R /XYZ 71.731 455.561 null]
+>> endobj
+230 0 obj <<
+/D [2453 0 R /XYZ 245.449 422.251 null]
 >> endobj
-1820 0 obj <<
-/D [1808 0 R /XYZ 278.209 668.394 null]
+2463 0 obj <<
+/D [2453 0 R /XYZ 71.731 416.124 null]
 >> endobj
-1821 0 obj <<
-/D [1808 0 R /XYZ 71.731 630.536 null]
+2466 0 obj <<
+/D [2453 0 R /XYZ 71.731 380.308 null]
 >> endobj
-158 0 obj <<
-/D [1808 0 R /XYZ 166.615 591.163 null]
+2467 0 obj <<
+/D [2453 0 R /XYZ 120.149 368.751 null]
 >> endobj
-1822 0 obj <<
-/D [1808 0 R /XYZ 71.731 580.798 null]
+2468 0 obj <<
+/D [2453 0 R /XYZ 71.731 347.133 null]
 >> endobj
-1823 0 obj <<
-/D [1808 0 R /XYZ 258.543 571.039 null]
+2469 0 obj <<
+/D [2453 0 R /XYZ 71.731 309.11 null]
 >> endobj
-1825 0 obj <<
-/D [1808 0 R /XYZ 71.731 550.949 null]
+2470 0 obj <<
+/D [2453 0 R /XYZ 71.731 309.11 null]
 >> endobj
-1826 0 obj <<
-/D [1808 0 R /XYZ 314.966 540.154 null]
+2471 0 obj <<
+/D [2453 0 R /XYZ 71.731 287.954 null]
 >> endobj
-1828 0 obj <<
-/D [1808 0 R /XYZ 348.142 514.252 null]
+2472 0 obj <<
+/D [2453 0 R /XYZ 71.731 268.029 null]
 >> endobj
-1829 0 obj <<
-/D [1808 0 R /XYZ 414.552 514.252 null]
+2473 0 obj <<
+/D [2453 0 R /XYZ 91.656 233.06 null]
 >> endobj
-1830 0 obj <<
-/D [1808 0 R /XYZ 91.925 501.3 null]
+2474 0 obj <<
+/D [2453 0 R /XYZ 76.712 216.423 null]
 >> endobj
-1831 0 obj <<
-/D [1808 0 R /XYZ 151.7 501.3 null]
+2475 0 obj <<
+/D [2453 0 R /XYZ 71.731 196.497 null]
 >> endobj
-1832 0 obj <<
-/D [1808 0 R /XYZ 71.731 494.296 null]
+1357 0 obj <<
+/D [2453 0 R /XYZ 71.731 133.633 null]
 >> endobj
-1833 0 obj <<
-/D [1808 0 R /XYZ 251.256 483.367 null]
+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 >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-1834 0 obj <<
-/D [1808 0 R /XYZ 95.243 457.465 null]
+2479 0 obj <<
+/Length 1813      
+/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
+endobj
+2478 0 obj <<
+/Type /Page
+/Contents 2479 0 R
+/Resources 2477 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2376 0 R
+/Annots [ 2488 0 R 2489 0 R ]
 >> endobj
-1835 0 obj <<
-/D [1808 0 R /XYZ 71.731 450.326 null]
+2488 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [139.526 252.588 191.829 261.499]
+/Subtype /Link
+/A << /S /GoTo /D (security-webserver-access) >>
 >> endobj
-1170 0 obj <<
-/D [1808 0 R /XYZ 71.731 422.431 null]
+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) >>
 >> endobj
-162 0 obj <<
-/D [1808 0 R /XYZ 381.468 379.333 null]
+2480 0 obj <<
+/D [2478 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1837 0 obj <<
-/D [1808 0 R /XYZ 71.731 366.896 null]
+234 0 obj <<
+/D [2478 0 R /XYZ 339.476 708.344 null]
 >> endobj
-1838 0 obj <<
-/D [1808 0 R /XYZ 71.731 355.618 null]
+2481 0 obj <<
+/D [2478 0 R /XYZ 71.731 699.706 null]
 >> endobj
-166 0 obj <<
-/D [1808 0 R /XYZ 193.715 318.402 null]
+2482 0 obj <<
+/D [2478 0 R /XYZ 161.668 676.463 null]
 >> endobj
-1839 0 obj <<
-/D [1808 0 R /XYZ 71.731 308.037 null]
+2483 0 obj <<
+/D [2478 0 R /XYZ 71.731 651.392 null]
 >> endobj
-1840 0 obj <<
-/D [1808 0 R /XYZ 71.731 286.158 null]
+2484 0 obj <<
+/D [2478 0 R /XYZ 71.731 573.649 null]
 >> endobj
-1841 0 obj <<
-/D [1808 0 R /XYZ 71.731 286.158 null]
+2485 0 obj <<
+/D [2478 0 R /XYZ 71.731 550.635 null]
 >> endobj
-1842 0 obj <<
-/D [1808 0 R /XYZ 101.32 276.659 null]
+2486 0 obj <<
+/D [2478 0 R /XYZ 71.731 365.928 null]
 >> endobj
-1845 0 obj <<
-/D [1808 0 R /XYZ 71.731 266.517 null]
+1358 0 obj <<
+/D [2478 0 R /XYZ 71.731 334.944 null]
 >> endobj
-1846 0 obj <<
-/D [1808 0 R /XYZ 407.848 253.744 null]
+238 0 obj <<
+/D [2478 0 R /XYZ 244.612 299.577 null]
 >> endobj
-1847 0 obj <<
-/D [1808 0 R /XYZ 71.731 228.674 null]
+2487 0 obj <<
+/D [2478 0 R /XYZ 71.731 290.939 null]
 >> endobj
-1848 0 obj <<
-/D [1808 0 R /XYZ 71.731 207.804 null]
+2490 0 obj <<
+/D [2478 0 R /XYZ 71.731 252.588 null]
 >> endobj
-1849 0 obj <<
-/D [1808 0 R /XYZ 71.731 194.103 null]
+2491 0 obj <<
+/D [2478 0 R /XYZ 71.731 237.644 null]
 >> endobj
-1850 0 obj <<
-/D [1808 0 R /XYZ 71.731 179.159 null]
+2492 0 obj <<
+/D [2478 0 R /XYZ 322.74 228.145 null]
 >> endobj
-1851 0 obj <<
-/D [1808 0 R /XYZ 395.011 158.003 null]
+2493 0 obj <<
+/D [2478 0 R /XYZ 317.417 204.832 null]
 >> endobj
-1852 0 obj <<
-/D [1808 0 R /XYZ 71.731 130.108 null]
+1359 0 obj <<
+/D [2478 0 R /XYZ 71.731 166.974 null]
 >> endobj
-1807 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F44 1440 0 R /F35 1229 0 R /F27 1064 0 R /F32 1071 0 R /F55 1844 0 R >>
+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 ]
 >> endobj
-1856 0 obj <<
-/Length 2286      
+2496 0 obj <<
+/Length 2515      
 /Filter /FlateDecode
 >>
 stream
-xڥY[�۸~ϯ�S�.b��Ӣ��f�m����A�-�21�(HT�ɯ�C���3��@�D���;�����_�>IC�;$�*?��V%��鍏;��e;������_�p�#�$\폫���.]�a@�8X���|��d�f��: �������x]����;�*�����o��i�d��/�e��•�0J�dVA/%Y�k�-P��߳����ﭟ�3�\���e����USoo�Ě�Cg����2+�O��m�x�Mn�c�yV�f�-�X3V[[ƺ���U'̪�F���벥͉�e���&��s'�p�v��c�**���o�3h���������
-y54�%*,+���Fi&�1���\V��$��vSf���ǹ�e+�����]�X)��n
m险���5��69YAk�n��_�
�H_��f�i��4�R�V=��M�5ݑ��WI�i��id�l{L��kBF	�)�lG�$Z�5�:��ɋ�'dut[o��
-Lk���yA�l,H��C�?�3���aI��K�-��
-�_7	���뾓�ͻ����I�5ё��'���ٺ�4��m��G�s��%�YK��J���5=��J�p~���x�/_��`�-��-�����W}��	فo���gte˔g���t�o�ks���M!��c�0��D��E�%�r,�_Zv��vL����~q[n���P�	oze��u��f<&:pɡ��Ӥ�L
W��*v����P�Z�xh�Я�aL�$����ڌv�urP�����%���W��ň}a��&@����y
a`��׳����P�v�f�u�<��j��j��5ݠU�a��_��39�n&���Bt���yw���/i�I��k���c��K���{ՐQ��F$�y��@�y�E_VtSߌ:�0�^��hM ��4���z��=�q�x�"�8�ۻ`�SLT�����BG+¤z�o+��%�rPn��t�$If��e�-lx��U�)��ჸ'*'6�X`�l�;r�uP��γ��N`���� ���'�R�����! ���R�w��Ƞ�ޙ���3���ʪO׀����0��P�V�B�=��S-.�4Z���9H�M9L"&7�	_��m*��	��H����Yі��	��3w���[�N
S��Z Z�Z�g��h��TH���U�Y�����3>�f�ߘ:�k(٦��ڤo��^C�ř���>�:᳋��N���;��Tf
�(�İ�gu	�`(am7C��f+c}`T]�'����ˠ�����/?<��̑��J���I�l�-����A���44����`������v��E1$hr���I}�n_�x�*(�cM�¤Bք��%:�P��h�׶ZXfT��q�0(]>�����bC�*8�Ъ�P��qH��8�g[]�L����'���"��f�x��3��/]��\���n�`��{[��P���d���\�=`ͨ�٥#M�J��‡
-�I�
}g�~�eM�� &��غ@��6�t����eV&�aa����;<�S��{kn�=n���q_G�kiK�~���O��3����T�4��ټ�e�ڣ*����s7�����@��
-����O�C|-n�na4Q��F}@��x"��W���<Sv@*}��CV��Qqv�������b�[
��|�^��B,��d
{��z�ֆD�� �\g���|TƤR����r�p���bZ�G�>ƚh�9h�y<:��2W�t�.ƍ�"&�8��<��\����f�?���ޖ�+ʄQN�XG-��s�p����	z\
-��Icj�_N�����w��S��.��Y}[p��X�
�&�eHH�&�� ��9�0"i�{lTp�NK���v�FJ�u�,'>W��Lm�7U�F����� �@�z�����%�x���qrG�r�iLB?C`��g�?��<R4J
}n�{�uFM>�^�Z�D/Ǎ��~<�	��W��J�v�P쑝gC���r�
����%��˃Ð�Pn�/�����'S��@���s��FD��
�#���"�c+bQ5�h������|���R����6(�!k+J^-s��-�c�编������T�E�΢ʾ��M�j���	��*���F�>��G^.�vG�t�Ӧ@%�6�J�J�]���j�z�h�T��A� ���W&����F��oG}�Y�@����|��4U_:��@����K�``����xe$���n��6$�;��v|���9�������endstream
+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
-1855 0 obj <<
+2495 0 obj <<
 /Type /Page
-/Contents 1856 0 R
-/Resources 1854 0 R
+/Contents 2496 0 R
+/Resources 2494 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1853 0 R
+/Parent 2376 0 R
+/Annots [ 2504 0 R ]
 >> endobj
-1857 0 obj <<
-/D [1855 0 R /XYZ 71.731 729.265 null]
+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
-170 0 obj <<
-/D [1855 0 R /XYZ 246.48 707.841 null]
+2497 0 obj <<
+/D [2495 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1858 0 obj <<
-/D [1855 0 R /XYZ 71.731 697.698 null]
+242 0 obj <<
+/D [2495 0 R /XYZ 177.791 707.841 null]
 >> endobj
-1859 0 obj <<
-/D [1855 0 R /XYZ 71.731 656.733 null]
+2498 0 obj <<
+/D [2495 0 R /XYZ 71.731 700.488 null]
 >> endobj
-1860 0 obj <<
-/D [1855 0 R /XYZ 71.731 656.733 null]
+2499 0 obj <<
+/D [2495 0 R /XYZ 71.731 680.578 null]
 >> endobj
-1861 0 obj <<
-/D [1855 0 R /XYZ 71.731 651.751 null]
+2500 0 obj <<
+/D [2495 0 R /XYZ 220.441 656.832 null]
 >> endobj
-1862 0 obj <<
-/D [1855 0 R /XYZ 89.664 628.937 null]
+2501 0 obj <<
+/D [2495 0 R /XYZ 71.731 649.694 null]
 >> endobj
-1863 0 obj <<
-/D [1855 0 R /XYZ 293.368 628.937 null]
+2502 0 obj <<
+/D [2495 0 R /XYZ 455.258 638.899 null]
 >> endobj
-1864 0 obj <<
-/D [1855 0 R /XYZ 71.731 613.828 null]
+2503 0 obj <<
+/D [2495 0 R /XYZ 71.731 631.761 null]
 >> endobj
-1865 0 obj <<
-/D [1855 0 R /XYZ 89.664 598.053 null]
+2505 0 obj <<
+/D [2495 0 R /XYZ 71.731 607.896 null]
 >> endobj
-1866 0 obj <<
-/D [1855 0 R /XYZ 71.731 595.896 null]
+2506 0 obj <<
+/D [2495 0 R /XYZ 71.731 592.952 null]
 >> endobj
-1867 0 obj <<
-/D [1855 0 R /XYZ 89.664 580.12 null]
+2507 0 obj <<
+/D [2495 0 R /XYZ 121.379 569.759 null]
 >> endobj
-1868 0 obj <<
-/D [1855 0 R /XYZ 71.731 557.206 null]
+2508 0 obj <<
+/D [2495 0 R /XYZ 101.884 558.102 null]
 >> endobj
-1869 0 obj <<
-/D [1855 0 R /XYZ 261.367 544.254 null]
+2509 0 obj <<
+/D [2495 0 R /XYZ 156.232 558.102 null]
 >> endobj
-1870 0 obj <<
-/D [1855 0 R /XYZ 71.731 531.303 null]
+2510 0 obj <<
+/D [2495 0 R /XYZ 254.126 558.102 null]
 >> endobj
-1871 0 obj <<
-/D [1855 0 R /XYZ 71.731 492.449 null]
+2511 0 obj <<
+/D [2495 0 R /XYZ 313.316 558.102 null]
 >> endobj
-1872 0 obj <<
-/D [1855 0 R /XYZ 71.731 485.43 null]
+2512 0 obj <<
+/D [2495 0 R /XYZ 138.317 546.446 null]
 >> endobj
-174 0 obj <<
-/D [1855 0 R /XYZ 234.86 448.095 null]
+2513 0 obj <<
+/D [2495 0 R /XYZ 239.635 546.446 null]
 >> endobj
-1873 0 obj <<
-/D [1855 0 R /XYZ 71.731 437.73 null]
+2514 0 obj <<
+/D [2495 0 R /XYZ 71.731 518.551 null]
 >> endobj
-1874 0 obj <<
-/D [1855 0 R /XYZ 71.731 407.881 null]
+2515 0 obj <<
+/D [2495 0 R /XYZ 175.156 505.599 null]
 >> endobj
-1875 0 obj <<
-/D [1855 0 R /XYZ 71.731 372.015 null]
+2516 0 obj <<
+/D [2495 0 R /XYZ 71.731 467.577 null]
 >> endobj
-1876 0 obj <<
-/D [1855 0 R /XYZ 71.731 361.108 null]
+2519 0 obj <<
+/D [2495 0 R /XYZ 71.731 411.452 null]
 >> endobj
-1877 0 obj <<
-/D [1855 0 R /XYZ 71.731 341.183 null]
+2520 0 obj <<
+/D [2495 0 R /XYZ 71.731 401.49 null]
 >> endobj
-1878 0 obj <<
-/D [1855 0 R /XYZ 395.011 319.278 null]
+2521 0 obj <<
+/D [2495 0 R /XYZ 71.731 363.467 null]
 >> endobj
-1879 0 obj <<
-/D [1855 0 R /XYZ 71.731 291.383 null]
+2522 0 obj <<
+/D [2495 0 R /XYZ 390.582 347.691 null]
 >> endobj
-178 0 obj <<
-/D [1855 0 R /XYZ 200.128 252.01 null]
+1360 0 obj <<
+/D [2495 0 R /XYZ 71.731 327.602 null]
 >> endobj
-1880 0 obj <<
-/D [1855 0 R /XYZ 71.731 244.658 null]
+246 0 obj <<
+/D [2495 0 R /XYZ 245.404 290.386 null]
 >> endobj
-1881 0 obj <<
-/D [1855 0 R /XYZ 86.396 218.934 null]
+2523 0 obj <<
+/D [2495 0 R /XYZ 71.731 283.034 null]
 >> endobj
-1882 0 obj <<
-/D [1855 0 R /XYZ 107.517 218.934 null]
+2524 0 obj <<
+/D [2495 0 R /XYZ 125.246 257.31 null]
 >> endobj
-1883 0 obj <<
-/D [1855 0 R /XYZ 143.023 218.934 null]
+2525 0 obj <<
+/D [2495 0 R /XYZ 71.731 244.359 null]
 >> endobj
-1884 0 obj <<
-/D [1855 0 R /XYZ 71.731 205.983 null]
+2526 0 obj <<
+/D [2495 0 R /XYZ 71.731 232.239 null]
 >> endobj
-1885 0 obj <<
-/D [1855 0 R /XYZ 71.731 199.594 null]
+2527 0 obj <<
+/D [2495 0 R /XYZ 71.731 232.239 null]
 >> endobj
-1886 0 obj <<
-/D [1855 0 R /XYZ 237.039 188.05 null]
+2528 0 obj <<
+/D [2495 0 R /XYZ 101.32 222.74 null]
 >> endobj
-1887 0 obj <<
-/D [1855 0 R /XYZ 258.16 188.05 null]
+2529 0 obj <<
+/D [2495 0 R /XYZ 71.731 221.525 null]
 >> endobj
-1888 0 obj <<
-/D [1855 0 R /XYZ 299.047 188.05 null]
+2530 0 obj <<
+/D [2495 0 R /XYZ 101.32 211.084 null]
 >> endobj
-1889 0 obj <<
-/D [1855 0 R /XYZ 226.698 175.099 null]
+2531 0 obj <<
+/D [2495 0 R /XYZ 71.731 209.869 null]
 >> endobj
-1890 0 obj <<
-/D [1855 0 R /XYZ 237.199 162.147 null]
+2532 0 obj <<
+/D [2495 0 R /XYZ 101.32 199.427 null]
 >> endobj
-1891 0 obj <<
-/D [1855 0 R /XYZ 71.731 155.009 null]
+2533 0 obj <<
+/D [2495 0 R /XYZ 71.731 198.212 null]
 >> endobj
-182 0 obj <<
-/D [1855 0 R /XYZ 254.069 117.794 null]
+2534 0 obj <<
+/D [2495 0 R /XYZ 101.32 187.771 null]
 >> endobj
-1892 0 obj <<
-/D [1855 0 R /XYZ 71.731 110.441 null]
+2535 0 obj <<
+/D [2495 0 R /XYZ 71.731 186.556 null]
 >> endobj
-1854 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F44 1440 0 R >>
+2536 0 obj <<
+/D [2495 0 R /XYZ 101.32 176.115 null]
+>> endobj
+2537 0 obj <<
+/D [2495 0 R /XYZ 71.731 164.459 null]
+>> endobj
+2538 0 obj <<
+/D [2495 0 R /XYZ 71.731 154.496 null]
+>> endobj
+1361 0 obj <<
+/D [2495 0 R /XYZ 71.731 114.481 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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1895 0 obj <<
-/Length 2295      
+2542 0 obj <<
+/Length 1799      
 /Filter /FlateDecode
 >>
 stream
-xڭYێ�}���	�p�~1`3����`׋���k,�nJb�"��쌕�O�Yd_5c0�YU�:uX,���M�4�K�� �7���ۜ����|q�C�Gc���~
-�MN�$�<7���<ݤa@�8�<���?�i�X��bos� ZE����y~�N��UEw������)�Ô�Y��]v�° ���2FQo���l���o�U�ک3�Tq)̻v�o�3�णlf��O]�Z�z��Bqeٰ�}�xUր��
-⛫��?���Q�
N�m���l����y��{? 9:�f�R5��[�c���`IEk�Wg.���rf
J�����{�k�h5HZ.�Q��Ë=F��ۖ��
s9��y����28r�v�_�2��R����E���.��E܍Z^���^�_���=N0r
��|�ݰ�m�p��jn\q�J�q(�-�]J�����j���@;fXr�V�*y�
-%���ϳ[���a
-\1��
���yY
غ����^*W]�t�*�HG�Ԯr��՜%|׺P�g�-�����|���<�\����ch�0Z^gl�9�"\��R{m��-�,@�[в�;p�>^�W�+��^�h�ú�6јCz-��ҋ�mb�(n#e�����僘'jA[��3jsΡ
-\W��c:�3l�7%o�^�${���+�����j�ᗞ���h�`M�3/\��f�A��ѬݚǮ7�tn$G�x4�.|�"{o�S;O"=�mO�`�}�*�4�T����h���^i�[���2c���j���
���%�ۅTk)oɊ���c�kz�l��w�����=\oa5��om�k��鰎[��ȼ`����i��s�$�.E��}��mJ�[~����˝A����'yn�9��~��N��d��0sq�BĽ5�>�B���P�?�B(ѥQ=(��4 ~��
0�YV���KP�%��{?�H�e�R��?����8I�I6N(x=P|��^���͐���QFS���)��4-��la��K
-���oQOv�}:&��E�Wg:�%�^5��r�Nl�}|��I��~	i���`A`�a^�	��'�wG��0*�V/�ϷW�TPa���C�m���8�
-����p\O4p��eI�h��4����&W)7c���_U�/�e�G���,�
vm`�ؚ]�kԽ�Z3'u=���ڮ8����iq�_.����>�+|��
-Ȋ�_h�B��ȫ=n�p����06V%�۫(HsXB=�	m�~F[��F�q1Q6�� IH������V�,v��hP���Z��m����2f*C�#L}M��P9^s�QG�D�-�v ��{���(���VV�R���4���?!�
q����$��sM�e��i0����><�<�fi��9=�g���R��>�W^�3�5��G����,�GލB���q��&0fp|���6�<D&�?���vP嶴�}� �弔�>�t�=�qR6��t�$��.�X��,˹/�MaD"?_d@�\ߏ>ͯC�!"Ah�:q/�#v�9��B����
-�,�
-q�gf�<p:� ma��ʨ��'`��	)��я[��$�Й!�8;1��ayҰg���K?�	lZtOk��ID���
-I��e���^��e�Q�e�P�m]�d':�]=���p>�g��{
-sq��.��^�_QSG�CŦV��΁_ܡg� &�N�D�;y�S3gO�gZ�L�Sc@��&���T��0-� 7ls����x�%U���i�De���8ҵt�z��P��^0��8��x���@`�&��,`�o�m5P��K�knpFG$����#q�8��.��p=4[���<,k��C �.�l��ܒ���~�#7=���\����ۚ\o��ܯ�ls����h��"�wE��$�8t
-��a��(���(�����0R�KmF�U��`,��Ѡim��*xK�
-#�d�1Z�\�%��_1$�o 2Hb����B�H�-D�!���兽��vA�	�n2Nx�u��4���Ξy�(�M��<G�J��â:4�V�n�̻�=����F�kF�8G��\�[�	Z��,��<Y�����5룁Z��rV:q�-��`���Xw�4E�e���(���-~���l����	�� 
-��u?D�߭`��u;d����U>����(y�J�[�\�ί�a�_L�mzg�Q*�E�c��g��
n�H�l��6�м��_ ���v��N𯝻/ټ�o�8��8a
��-�w��+���~��"n���H槯��8Y���s��h{���σKU���c�endstream
+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
 endobj
-1894 0 obj <<
+2541 0 obj <<
 /Type /Page
-/Contents 1895 0 R
-/Resources 1893 0 R
+/Contents 2542 0 R
+/Resources 2540 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1853 0 R
-/Annots [ 1901 0 R ]
+/Parent 2556 0 R
+/Annots [ 2545 0 R ]
 >> endobj
-1901 0 obj <<
+2545 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [266.356 518.583 300.451 527.173]
+/Rect [474.611 631.143 519.716 640.054]
 /Subtype /Link
-/A << /S /GoTo /D (gloss-contrib) >>
->> endobj
-1896 0 obj <<
-/D [1894 0 R /XYZ 71.731 729.265 null]
->> endobj
-1897 0 obj <<
-/D [1894 0 R /XYZ 71.731 718.306 null]
->> endobj
-1898 0 obj <<
-/D [1894 0 R /XYZ 71.731 602.575 null]
->> endobj
-1899 0 obj <<
-/D [1894 0 R /XYZ 118.555 567.024 null]
->> endobj
-1900 0 obj <<
-/D [1894 0 R /XYZ 118.555 520.578 null]
->> endobj
-1902 0 obj <<
-/D [1894 0 R /XYZ 476.548 520.578 null]
->> endobj
-1903 0 obj <<
-/D [1894 0 R /XYZ 71.731 487.002 null]
->> endobj
-1904 0 obj <<
-/D [1894 0 R /XYZ 71.731 478.09 null]
->> endobj
-1905 0 obj <<
-/D [1894 0 R /XYZ 71.731 463.146 null]
->> endobj
-1906 0 obj <<
-/D [1894 0 R /XYZ 71.731 450.195 null]
->> endobj
-1907 0 obj <<
-/D [1894 0 R /XYZ 91.656 434.419 null]
->> endobj
-1908 0 obj <<
-/D [1894 0 R /XYZ 218.938 434.419 null]
+/A << /S /GoTo /D (installation) >>
 >> endobj
-1909 0 obj <<
-/D [1894 0 R /XYZ 255.889 434.419 null]
+2543 0 obj <<
+/D [2541 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1910 0 obj <<
-/D [1894 0 R /XYZ 159.73 421.467 null]
+250 0 obj <<
+/D [2541 0 R /XYZ 381.295 705.748 null]
 >> endobj
-1911 0 obj <<
-/D [1894 0 R /XYZ 420.689 408.516 null]
+1362 0 obj <<
+/D [2541 0 R /XYZ 71.731 702.184 null]
 >> endobj
-1912 0 obj <<
-/D [1894 0 R /XYZ 154.759 395.565 null]
+254 0 obj <<
+/D [2541 0 R /XYZ 195.006 666.375 null]
 >> endobj
-1913 0 obj <<
-/D [1894 0 R /XYZ 71.731 383.445 null]
+2544 0 obj <<
+/D [2541 0 R /XYZ 71.731 659.023 null]
 >> endobj
-1914 0 obj <<
-/D [1894 0 R /XYZ 71.731 372.551 null]
+1363 0 obj <<
+/D [2541 0 R /XYZ 71.731 613.21 null]
 >> endobj
-1915 0 obj <<
-/D [1894 0 R /XYZ 91.656 354.718 null]
+258 0 obj <<
+/D [2541 0 R /XYZ 161.035 575.994 null]
 >> endobj
-1916 0 obj <<
-/D [1894 0 R /XYZ 71.731 334.628 null]
+2546 0 obj <<
+/D [2541 0 R /XYZ 71.731 565.852 null]
 >> endobj
-1917 0 obj <<
-/D [1894 0 R /XYZ 107.706 323.834 null]
+2547 0 obj <<
+/D [2541 0 R /XYZ 71.731 540.761 null]
 >> endobj
-1918 0 obj <<
-/D [1894 0 R /XYZ 204.851 323.834 null]
+2548 0 obj <<
+/D [2541 0 R /XYZ 118.555 502.197 null]
 >> endobj
-1919 0 obj <<
-/D [1894 0 R /XYZ 71.731 295.938 null]
+2549 0 obj <<
+/D [2541 0 R /XYZ 281.083 493.733 null]
 >> endobj
-1920 0 obj <<
-/D [1894 0 R /XYZ 71.731 280.83 null]
+2550 0 obj <<
+/D [2541 0 R /XYZ 252.403 458.764 null]
 >> endobj
-1921 0 obj <<
-/D [1894 0 R /XYZ 91.656 265.054 null]
+2551 0 obj <<
+/D [2541 0 R /XYZ 118.555 451.788 null]
 >> endobj
-1922 0 obj <<
-/D [1894 0 R /XYZ 71.731 232.013 null]
+1364 0 obj <<
+/D [2541 0 R /XYZ 71.731 418.62 null]
 >> endobj
-1923 0 obj <<
-/D [1894 0 R /XYZ 107.706 221.218 null]
+262 0 obj <<
+/D [2541 0 R /XYZ 282.307 389.974 null]
 >> endobj
-1924 0 obj <<
-/D [1894 0 R /XYZ 71.731 193.323 null]
+2552 0 obj <<
+/D [2541 0 R /XYZ 71.731 387.314 null]
 >> endobj
-1925 0 obj <<
-/D [1894 0 R /XYZ 71.731 180.272 null]
+266 0 obj <<
+/D [2541 0 R /XYZ 268.211 359.588 null]
 >> endobj
-1926 0 obj <<
-/D [1894 0 R /XYZ 91.656 162.439 null]
+2553 0 obj <<
+/D [2541 0 R /XYZ 71.731 352.39 null]
 >> endobj
-1927 0 obj <<
-/D [1894 0 R /XYZ 71.731 142.349 null]
+2554 0 obj <<
+/D [2541 0 R /XYZ 71.731 329.536 null]
 >> endobj
-1928 0 obj <<
-/D [1894 0 R /XYZ 107.706 131.555 null]
+2555 0 obj <<
+/D [2541 0 R /XYZ 71.731 123.573 null]
 >> endobj
-1893 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R /F35 1229 0 R /F51 1687 0 R >>
+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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1932 0 obj <<
-/Length 1754      
+2559 0 obj <<
+/Length 1895      
 /Filter /FlateDecode
 >>
 stream
-xڭXmo�6��_�O��Ō�e�ti�I7,�Z`F�-.���T�����&ɒ�n���d����sϝ��\��f����.�
-�q4K�w��_ޝxf��lY��Y��]�l�Vq0[of��D�d�>ZF�l������Z�f��#��^U\ࢠ�V߿i�_hQ���Nޮ;�Q���2x��3�'=0럻DA*`���u�ii��h���w�V�1�j�rQ�y� �(\����b�|ߟ-�M��<GqgQ�]�"$�Qï�S��D�6�E�����N�#�Z0s��O�L�]NSx#�w)����V��֬�`�Յ^���>��@j9i8�k���|�����s?rp��j4 ��q�E���M�J�9�z�Ѓ���t�ҫ{�0�Sv9��wIY���*4�Z���[{�1�`s�����~�!#��1绹�:��P�4�G:���T�g� �p	ն����"t�2L��[bZ�+�.J������qG�k���׎�6!�B�H�}��_��J�l�Ӂ�%�s�PX�$�m6���e
�f�b��c����O+K���90��N=(ؖ޳'Ep�U~H�� �`慠j��G��G�2V��(@�|=Y:���Q�����*Pp{ɚ�ovT�z�=�EC���˛������0.���<@#Qܲ���ޤ}KLs,s��ܤ�����ɺ��NM�����@��ra�.������u�|:�	����sIMs��Q���
-��N��ZQ�b��z@�/(DFYz�o?�]�T��k��ݰ��.��=��� ���9W7l+��F���]�9�D� ���r�D�ږ��q���h�T���O7�ch�͓-�F:�m�?��
e-�\.a��UXɍuĴ��|_�9!C)�d�c�4$��<�,I�k�ڪ.;�qb�d��� �@I[�%SG&�����|��������@�F6�(��o��`�"#�!,���L۶
�U�=O{m�-����~�!��*��w��F��xϸ�~*	t e�r�2�;�=[���ݲ�j�A��]�ڋ�A���1����e��x1�����{5��Hb!(b�bWC;ϲ��&��낦*�g�`�s2T�BGOm��SY����/�d����&���#A��^��|�3B�1~�]�J���H�#3�cx�	 ���(Z�3o��Aڟ����V
-'-|���h�o������$#%����&�ض2�3�X��,	m g�J���ܘ�e:����	Zڊ�Ǵ�ę>�1�������1%k��*UR�BX��F�=��Ӊ�r�P-�=�IQ�����-�{6����Q2Jm�VUr�Lr@�C�\ǒ�GA�gpA�3�l0c��J��ڼ�(r���(6MmP��D'�V/*�f>�ˌc�4o}�ִ}h��v�7��خ_�|=o�
|~x�z�Ҷ�iePurȅ�_���Ӿ��-�QV��o�l����م�-�x��kk򛔕5��*��z�Z��G�-�V(H�N�<�R74m�-��ƌ���M�iǏϦ�Q���"t��o��}�~��"�Г��WtT�V��Q��\<l���R:����|ϫoe̻v�3���?�(hz�,��%c=�ؾm�CЬ���������Xv�}����V�S'Pv
-�Z��qy�yGEBV�3��-��e%��<��8��ӑ�^(+b<�/
[8�!���k��Gy�DK/y�?m���?�"?��ߝ"}��c�=���ƬB�endstream
+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
 endobj
-1931 0 obj <<
+2558 0 obj <<
 /Type /Page
-/Contents 1932 0 R
-/Resources 1930 0 R
+/Contents 2559 0 R
+/Resources 2557 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1853 0 R
+/Parent 2556 0 R
 >> endobj
-1933 0 obj <<
-/D [1931 0 R /XYZ 71.731 729.265 null]
->> endobj
-1934 0 obj <<
-/D [1931 0 R /XYZ 71.731 718.306 null]
->> endobj
-1935 0 obj <<
-/D [1931 0 R /XYZ 71.731 708.244 null]
+2560 0 obj <<
+/D [2558 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1936 0 obj <<
-/D [1931 0 R /XYZ 91.656 690.411 null]
+270 0 obj <<
+/D [2558 0 R /XYZ 228.441 708.344 null]
 >> endobj
-1937 0 obj <<
-/D [1931 0 R /XYZ 71.731 670.321 null]
+2561 0 obj <<
+/D [2558 0 R /XYZ 71.731 703.158 null]
 >> endobj
-1938 0 obj <<
-/D [1931 0 R /XYZ 107.706 659.527 null]
+2562 0 obj <<
+/D [2558 0 R /XYZ 427.619 690.411 null]
 >> endobj
-1939 0 obj <<
-/D [1931 0 R /XYZ 71.731 631.631 null]
+2563 0 obj <<
+/D [2558 0 R /XYZ 387.295 677.46 null]
 >> endobj
-1940 0 obj <<
-/D [1931 0 R /XYZ 71.731 618.58 null]
+2564 0 obj <<
+/D [2558 0 R /XYZ 71.731 646.476 null]
 >> endobj
-1941 0 obj <<
-/D [1931 0 R /XYZ 91.656 600.747 null]
+274 0 obj <<
+/D [2558 0 R /XYZ 199.549 613.699 null]
 >> endobj
-1942 0 obj <<
-/D [1931 0 R /XYZ 71.731 580.658 null]
+2565 0 obj <<
+/D [2558 0 R /XYZ 71.731 606.501 null]
 >> endobj
-1943 0 obj <<
-/D [1931 0 R /XYZ 107.706 569.863 null]
+2566 0 obj <<
+/D [2558 0 R /XYZ 71.731 583.646 null]
 >> endobj
-1944 0 obj <<
-/D [1931 0 R /XYZ 71.731 546.949 null]
+2567 0 obj <<
+/D [2558 0 R /XYZ 147.048 574.147 null]
 >> endobj
-186 0 obj <<
-/D [1931 0 R /XYZ 460.106 507.577 null]
+2568 0 obj <<
+/D [2558 0 R /XYZ 147.048 562.491 null]
 >> endobj
-1945 0 obj <<
-/D [1931 0 R /XYZ 71.731 497.212 null]
+2569 0 obj <<
+/D [2558 0 R /XYZ 71.731 540.872 null]
 >> endobj
-1946 0 obj <<
-/D [1931 0 R /XYZ 333.417 487.452 null]
+2570 0 obj <<
+/D [2558 0 R /XYZ 71.731 517.858 null]
 >> endobj
-1947 0 obj <<
-/D [1931 0 R /XYZ 192.098 474.501 null]
+2571 0 obj <<
+/D [2558 0 R /XYZ 147.048 506.301 null]
 >> endobj
-1948 0 obj <<
-/D [1931 0 R /XYZ 422.482 474.501 null]
+2572 0 obj <<
+/D [2558 0 R /XYZ 147.048 494.645 null]
 >> endobj
-1949 0 obj <<
-/D [1931 0 R /XYZ 456.783 474.501 null]
+2573 0 obj <<
+/D [2558 0 R /XYZ 71.731 473.026 null]
 >> endobj
-1950 0 obj <<
-/D [1931 0 R /XYZ 114.062 461.549 null]
+2574 0 obj <<
+/D [2558 0 R /XYZ 361.161 460.075 null]
 >> endobj
-1951 0 obj <<
-/D [1931 0 R /XYZ 71.731 454.411 null]
+2575 0 obj <<
+/D [2558 0 R /XYZ 71.731 444.966 null]
 >> endobj
-1952 0 obj <<
-/D [1931 0 R /XYZ 431.319 443.616 null]
+2576 0 obj <<
+/D [2558 0 R /XYZ 71.731 430.023 null]
 >> endobj
-1953 0 obj <<
-/D [1931 0 R /XYZ 337.671 430.665 null]
+2577 0 obj <<
+/D [2558 0 R /XYZ 76.712 380.573 null]
 >> endobj
-1954 0 obj <<
-/D [1931 0 R /XYZ 86.396 417.714 null]
+2578 0 obj <<
+/D [2558 0 R /XYZ 118.555 337.028 null]
 >> endobj
-1955 0 obj <<
-/D [1931 0 R /XYZ 71.731 410.575 null]
+1365 0 obj <<
+/D [2558 0 R /XYZ 71.731 263.513 null]
 >> endobj
-1956 0 obj <<
-/D [1931 0 R /XYZ 71.731 400.613 null]
+278 0 obj <<
+/D [2558 0 R /XYZ 138.296 231.009 null]
 >> endobj
-1171 0 obj <<
-/D [1931 0 R /XYZ 71.731 341.599 null]
+2579 0 obj <<
+/D [2558 0 R /XYZ 71.731 223.657 null]
 >> endobj
-190 0 obj <<
-/D [1931 0 R /XYZ 350.135 296.345 null]
+2580 0 obj <<
+/D [2558 0 R /XYZ 71.731 185.814 null]
 >> endobj
-1957 0 obj <<
-/D [1931 0 R /XYZ 71.731 284.173 null]
+2581 0 obj <<
+/D [2558 0 R /XYZ 114.77 176.314 null]
 >> endobj
-1958 0 obj <<
-/D [1931 0 R /XYZ 71.731 241.745 null]
+2582 0 obj <<
+/D [2558 0 R /XYZ 114.77 164.658 null]
 >> endobj
-1959 0 obj <<
-/D [1931 0 R /XYZ 442.608 230.95 null]
+2583 0 obj <<
+/D [2558 0 R /XYZ 114.77 153.002 null]
 >> endobj
-1960 0 obj <<
-/D [1931 0 R /XYZ 71.731 215.842 null]
+2584 0 obj <<
+/D [2558 0 R /XYZ 114.77 141.345 null]
 >> endobj
-194 0 obj <<
-/D [1931 0 R /XYZ 242.621 178.626 null]
+2585 0 obj <<
+/D [2558 0 R /XYZ 114.77 129.689 null]
 >> endobj
-1961 0 obj <<
-/D [1931 0 R /XYZ 71.731 171.274 null]
+2586 0 obj <<
+/D [2558 0 R /XYZ 114.77 118.033 null]
 >> endobj
-1962 0 obj <<
-/D [1931 0 R /XYZ 71.731 130.442 null]
+2587 0 obj <<
+/D [2558 0 R /XYZ 114.77 106.376 null]
 >> endobj
-1930 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F35 1229 0 R >>
+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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1965 0 obj <<
-/Length 1940      
+2590 0 obj <<
+/Length 1578      
 /Filter /FlateDecode
 >>
 stream
-xڅX��6�����X�iQ�lys�!ٶw94��@q������U=����P�û)
���-'>��d%�*�G��2���7���_��F2ŌIf���7��p��e8�<M2��d"���f�_�Z��Y�^ ��)�j�$&;��cs��$���o��7?mZ�Q��8|U/G3R,'R�u�f�@?�ba5�BH��
-����da@ˇi�{�LP`����Ofha����������N�g�}>
"�T�˝�h���̷�2S�ez���<�Շ]m��ש�<�X�����G�������t:M��'T��BZ���9�Jv��R�<��Ћ�7ɾ���&��s'�2��A���L
-*H)Lb�_D��d�<�Z��dUUUdc=AV������G�V��j_��@���5-��$�3� xe�QeG�bM��IA�=��jXA��1�s��7�d74U�LҢ��/��D,$����
�M0|�(�_,q�����>��&�m���/�2�L�T"�WpY��SZ!��W��J��*Z���:��Ɇ)���j����pq5eͬCD)۱j��{�6®�H�į"!ׯK'�ׅ�٠lΨ�sS�+�7O��']�l�_
��>ڌ��	@҉��p��XD��JWC��R���$���Rw�*&�uhF�y��ְ��Ca�@�*�ь�u�(���'�T�}?������p�)F��r�<f�P�~<�R,%�ݻ�� (��@�9��t!�)������Xh8��;�7P��?�sj�|f�BD+ˬ��j�Jޔ.�mh��t~��|�U����8^�lv�*�|E�<�GH����t�{�ʏ��v�+��Z���Ee{�Ir�-坳��m����-��ׅ��v��]*���y�֨�ȸ_ݎ����ц���V\$؂��2�^*�� ��7����e*�y[�[�PD�AHظ�k�j�t�R�ג�H�Y�8��h՝B%�����=��g5�t��gK݀����zǥV��^�~EW�|E�*d��ñ�H�7PȞ��Ye��}�V����$����PĒ�����R�`&��"�R����ҴL�M�g"�(��w�?�A}�9�6���$�C9=��/b�Nj�̸~�hؠ�k���7^H!�P��f���:���dc���%�PS̎��X�)D����0�{�ԬAkv�ݪ�Fz��K���e��1�l��13R�d�Y�1ŕ���=-i��VM�Z(z�87
-x��h��XN�X`�*�zIr���]���'���q*�\���6��GϙEÉv����?h�5g�n��c�7�c?����v���uJ��!��EsY)�"�C�nf��_���D0x�G}�F�	@�a�<K!?c�:C�DeE�l��ns��.��5�K���Q�	������w����?��>�5�.~m,����E�:�yȦ��{fFy�Pa�mՅǎ������ӫ<_+�O�'��vƀ4��tC˯�r�vD���������,�^y\�Sl������3�
K��K��i�;�T=��t��xް��Y1�|��܀�K�<�2�X��:^���3��6���O%d�&;q|a*�;�����
-�8G��Pt�<��Hp��3�Q�<���\����,�u}{��y�@�~\��E�Vj#�.h;�j��IML֞H���?���9��ƷHo�Sz��������O�������yS�s�:��Jg{�8~��mU*��f5?�[�<n�}����X-{Euo4˹S�
EUh������4���^���(M�G����K��M�ّ�:\,�$s��$�t����E�r��X�'7�e��W�ozv�M��K�?����{z�������Q�����!��7"s0��@
���L�\����dt=��g
-�@�e��?�cI<�U�endstream
+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�6L�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
 endobj
-1964 0 obj <<
+2589 0 obj <<
 /Type /Page
-/Contents 1965 0 R
-/Resources 1963 0 R
+/Contents 2590 0 R
+/Resources 2588 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1853 0 R
-/Annots [ 1971 0 R 1972 0 R ]
+/Parent 2556 0 R
 >> endobj
-1971 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [322.887 601.978 375.19 610.889]
-/Subtype /Link
-/A << /S /GoTo /D (install-perlmodules) >>
+2591 0 obj <<
+/D [2589 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1972 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [91.377 591.084 112.249 597.938]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-ppm) >>
+2592 0 obj <<
+/D [2589 0 R /XYZ 114.77 708.344 null]
 >> endobj
-1966 0 obj <<
-/D [1964 0 R /XYZ 71.731 729.265 null]
+2593 0 obj <<
+/D [2589 0 R /XYZ 114.77 696.687 null]
 >> endobj
-198 0 obj <<
-/D [1964 0 R /XYZ 175.703 708.344 null]
+2594 0 obj <<
+/D [2589 0 R /XYZ 114.77 685.031 null]
 >> endobj
-1967 0 obj <<
-/D [1964 0 R /XYZ 71.731 702.217 null]
+2595 0 obj <<
+/D [2589 0 R /XYZ 71.731 663.412 null]
 >> endobj
-1968 0 obj <<
-/D [1964 0 R /XYZ 231.281 689.415 null]
+2596 0 obj <<
+/D [2589 0 R /XYZ 307.022 650.461 null]
 >> endobj
-1969 0 obj <<
-/D [1964 0 R /XYZ 148.783 676.463 null]
+1366 0 obj <<
+/D [2589 0 R /XYZ 71.731 630.371 null]
 >> endobj
-1570 0 obj <<
-/D [1964 0 R /XYZ 71.731 656.374 null]
+282 0 obj <<
+/D [2589 0 R /XYZ 200.472 593.156 null]
 >> endobj
-202 0 obj <<
-/D [1964 0 R /XYZ 245.449 623.064 null]
+2597 0 obj <<
+/D [2589 0 R /XYZ 71.731 585.803 null]
 >> endobj
-1970 0 obj <<
-/D [1964 0 R /XYZ 71.731 616.937 null]
+1367 0 obj <<
+/D [2589 0 R /XYZ 71.731 532.02 null]
 >> endobj
-1973 0 obj <<
-/D [1964 0 R /XYZ 71.731 581.121 null]
+286 0 obj <<
+/D [2589 0 R /XYZ 256.412 499.706 null]
 >> endobj
-1974 0 obj <<
-/D [1964 0 R /XYZ 120.149 569.564 null]
+2598 0 obj <<
+/D [2589 0 R /XYZ 71.731 491.254 null]
 >> endobj
-1975 0 obj <<
-/D [1964 0 R /XYZ 71.731 547.945 null]
+2599 0 obj <<
+/D [2589 0 R /XYZ 71.731 460.688 null]
 >> endobj
-1976 0 obj <<
-/D [1964 0 R /XYZ 71.731 509.923 null]
+2600 0 obj <<
+/D [2589 0 R /XYZ 71.731 450.725 null]
 >> endobj
-1977 0 obj <<
-/D [1964 0 R /XYZ 71.731 509.923 null]
+2601 0 obj <<
+/D [2589 0 R /XYZ 136.289 441.225 null]
 >> endobj
-1978 0 obj <<
-/D [1964 0 R /XYZ 71.731 488.767 null]
+2602 0 obj <<
+/D [2589 0 R /XYZ 136.289 429.569 null]
 >> endobj
-1979 0 obj <<
-/D [1964 0 R /XYZ 71.731 468.842 null]
+2603 0 obj <<
+/D [2589 0 R /XYZ 71.731 390.017 null]
 >> endobj
-1980 0 obj <<
-/D [1964 0 R /XYZ 91.656 433.873 null]
+2604 0 obj <<
+/D [2589 0 R /XYZ 71.731 371.985 null]
 >> endobj
-1981 0 obj <<
-/D [1964 0 R /XYZ 76.712 417.235 null]
+2605 0 obj <<
+/D [2589 0 R /XYZ 71.731 362.023 null]
 >> endobj
-1982 0 obj <<
-/D [1964 0 R /XYZ 71.731 397.31 null]
+2606 0 obj <<
+/D [2589 0 R /XYZ 136.289 350.466 null]
 >> endobj
-1983 0 obj <<
-/D [1964 0 R /XYZ 71.731 334.446 null]
+2607 0 obj <<
+/D [2589 0 R /XYZ 136.289 338.809 null]
 >> endobj
-206 0 obj <<
-/D [1964 0 R /XYZ 339.476 298.979 null]
+2608 0 obj <<
+/D [2589 0 R /XYZ 71.731 299.258 null]
 >> endobj
-1984 0 obj <<
-/D [1964 0 R /XYZ 71.731 290.341 null]
+1368 0 obj <<
+/D [2589 0 R /XYZ 71.731 268.274 null]
 >> endobj
-1985 0 obj <<
-/D [1964 0 R /XYZ 184.965 267.098 null]
+290 0 obj <<
+/D [2589 0 R /XYZ 219.101 232.907 null]
 >> endobj
-1986 0 obj <<
-/D [1964 0 R /XYZ 71.731 242.028 null]
+2609 0 obj <<
+/D [2589 0 R /XYZ 71.731 226.78 null]
 >> endobj
-1987 0 obj <<
-/D [1964 0 R /XYZ 71.731 164.284 null]
+2610 0 obj <<
+/D [2589 0 R /XYZ 71.731 195.945 null]
 >> endobj
-1988 0 obj <<
-/D [1964 0 R /XYZ 71.731 141.27 null]
+2611 0 obj <<
+/D [2589 0 R /XYZ 71.731 185.983 null]
 >> endobj
-1963 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F55 1844 0 R /F44 1440 0 R >>
+2588 0 obj <<
+/Font << /F33 1210 0 R /F57 2335 0 R /F35 1437 0 R /F27 1112 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1992 0 obj <<
-/Length 2446      
+2614 0 obj <<
+/Length 1713      
 /Filter /FlateDecode
 >>
 stream
-xڕY��6���0���1-R�	�h�n�,6�f���,���#K�He2�>����n��"Ȉ�������ELI�Å��E�"?��{x��E�
�lz4?ݿھ��EJ��_��MH/b��$d�������$y�ް�[1b�j!��*뽹�������l��������1I�E�,�T�p�D�R���%���w�M�y�O��EQ⢩͕�m�^��hԕ��!��< �1++�z��ߕ��x�Ղײ�%]�����B9���PJ�0��g����Ϯm�9�2�K��_x�h��l��@F�e��{q�'�����py}}���v�R��O_���t����[�����?4k�8�w�]���A��yn݉6<ͳ/��Q��c�k-g���O|�kA�x�r�Rs��y�Q�?6����9�����u��
oȳ�>d��[��b�_(G6�'ފ�6�.�����,�Ad��(��W���߻R���w,>W,��A~n��&+i�r״�n��^�H]����.�츦+�iv���tX�*��J�rMÕ�	*뇬�X9���9�opSB,HWYQ�\�\�#۹��>^��4�n@��#)�+G�=4JK��y����ZyS�����z����#A�h�����&NVwJ-ꭾ3��
-�'�`�l
{M��l�T�e����*���<6"��Ou�ͬ�]a|'���Gqe�l~67F����C�U�糊S2���\������Y�D���y୮FV����:�@�M�'������P�G�tɛS�[~O�����F���S7h�1�.���x�5���P�F𫡓��+�S��V�jY�p���}{����]�����F��4�ݟ��OIȢE�	��NRK���I�ϼ1#���q�r@|B'�SJ���#���G��x��Ǧ��|h]4����M{l^�$_a'���y~1���S=��l���<����F[��3���h1S��:�K�-͋�nj��m�sk�	�=��"bf�
�䵡��(YH�����δ�N�~���D�˺��I��W���At;sc��'V���)�����ʓ�P�z���Z�;�S���
*ן�j��<]o��R��(�H��E��
#����\��zsP2��N��#�Bƙze���U�&T����S٬F�s��fԔ�.8������r�<���
-�����_�(���{����Je��[v��a�щ.��m	{	�N!�m�{�J6?�����mۉv�P�[�RM33��X��`��`�3�K��nĄ�n�3���,~�3�ϳÛy������NȢ,\+�M%��b����l�vU>�Yk'u���a��L����dn�֜0X�0��p*(v�}��Pw���6]�1��5�X��Y�=ޠ=��դ���6��0������we�xe�n��(G�Dz�Z�}�ʮ���oo�)[�y7��.���h�A������%�l�P�sY*�J{��l�4.2��4��I����o�b�*�~���j?MUt5򁲨����\�K�"ԝ�F�=�Թ�#��0\��#�+��
-J��?���m$:���!A�f&}���~���X��V`dXh��n���_�o,�s(�}<��s��u��U;����9d�E��'�y^�v?�^��-s�p-��y�ԓ8�[��	�t�%{�jZ�a�����b�8D;��(��	$l�|��t�X�͙fr�4b�������L$F)���E�H2��O(C��I_�����V
�[5n�f�)�[]�� M<����P�k�&(�Ƕ7�k��y�3�F�~	}Ă+7s���N>�F��v�x�e��Y8}�A�8��Szd]%�a3��p���ZxW��Pc��%h&[���r��Ϡ��u�V<M����)���f�9󎍅@�\tW�s׈�>���<�7�W��Y-�0���TNYי����٥�hV��.�f���Dڂ������I�^�S�3p�:�p��Z�2a�$mK�3��͏��mV;�bn\�.��^B�++�ϯ����}�V�z�C���j�O@p&&t�4�G���.	&���QT��/f:D�1kJ��4٬��U����)�$�Q/���$�G��A�R��> KS�o*u��:�G8K�M��{�!�*�P�'�j#�;����4L{1fo�����`,�X���6�����~S�v��� �07;�KVh�����~}}k��-|�
9���������DŽ�Цv����C+O�1aU��0w��-z�G"g99��S����)g�T4\Ν��ˁ��	�9񫚼�3֣�w0G
-{~�%%���uf�W#�wF>j�t�:�;��1�R�p�L�n���p�C��*HHB��;�L�QȠl�e�\E�K��M%�4�2�endstream
+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�tin���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�A߻j�-�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
 endobj
-1991 0 obj <<
+2613 0 obj <<
 /Type /Page
-/Contents 1992 0 R
-/Resources 1990 0 R
+/Contents 2614 0 R
+/Resources 2612 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1853 0 R
-/Annots [ 1997 0 R 1998 0 R 2010 0 R ]
->> endobj
-1997 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [139.526 456.822 191.829 465.733]
-/Subtype /Link
-/A << /S /GoTo /D (security-webserver-access) >>
->> endobj
-1998 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [478.054 456.822 530.357 465.733]
-/Subtype /Link
-/A << /S /GoTo /D (http) >>
->> endobj
-2010 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [244.482 231.891 269.647 238.765]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-cpan) >>
+/Parent 2556 0 R
 >> endobj
-1993 0 obj <<
-/D [1991 0 R /XYZ 71.731 729.265 null]
->> endobj
-1994 0 obj <<
-/D [1991 0 R /XYZ 71.731 570.162 null]
->> endobj
-1995 0 obj <<
-/D [1991 0 R /XYZ 71.731 539.178 null]
+2615 0 obj <<
+/D [2613 0 R /XYZ 71.731 729.265 null]
 >> endobj
-210 0 obj <<
-/D [1991 0 R /XYZ 244.612 503.811 null]
+2616 0 obj <<
+/D [2613 0 R /XYZ 71.731 552.229 null]
 >> endobj
-1996 0 obj <<
-/D [1991 0 R /XYZ 71.731 495.173 null]
+2617 0 obj <<
+/D [2613 0 R /XYZ 389.403 539.278 null]
 >> endobj
-1999 0 obj <<
-/D [1991 0 R /XYZ 71.731 456.822 null]
+2618 0 obj <<
+/D [2613 0 R /XYZ 410.125 539.278 null]
 >> endobj
-2000 0 obj <<
-/D [1991 0 R /XYZ 71.731 441.878 null]
+2619 0 obj <<
+/D [2613 0 R /XYZ 430.846 539.278 null]
 >> endobj
-2001 0 obj <<
-/D [1991 0 R /XYZ 296.033 432.379 null]
+2620 0 obj <<
+/D [2613 0 R /XYZ 494.944 539.278 null]
 >> endobj
-2002 0 obj <<
-/D [1991 0 R /XYZ 433.35 409.066 null]
+2621 0 obj <<
+/D [2613 0 R /XYZ 71.731 493.285 null]
 >> endobj
-2003 0 obj <<
-/D [1991 0 R /XYZ 71.731 371.208 null]
+2622 0 obj <<
+/D [2613 0 R /XYZ 71.731 475.353 null]
 >> endobj
-214 0 obj <<
-/D [1991 0 R /XYZ 177.791 331.836 null]
+2623 0 obj <<
+/D [2613 0 R /XYZ 71.731 465.39 null]
 >> endobj
-2004 0 obj <<
-/D [1991 0 R /XYZ 71.731 324.483 null]
+2624 0 obj <<
+/D [2613 0 R /XYZ 136.289 455.89 null]
 >> endobj
-2005 0 obj <<
-/D [1991 0 R /XYZ 71.731 304.573 null]
+2625 0 obj <<
+/D [2613 0 R /XYZ 136.289 444.234 null]
 >> endobj
-2006 0 obj <<
-/D [1991 0 R /XYZ 220.441 280.827 null]
+2626 0 obj <<
+/D [2613 0 R /XYZ 71.731 404.682 null]
 >> endobj
-2007 0 obj <<
-/D [1991 0 R /XYZ 71.731 273.689 null]
+2627 0 obj <<
+/D [2613 0 R /XYZ 71.731 373.699 null]
 >> endobj
-2008 0 obj <<
-/D [1991 0 R /XYZ 455.258 262.894 null]
+2628 0 obj <<
+/D [2613 0 R /XYZ 71.731 363.736 null]
 >> endobj
-2009 0 obj <<
-/D [1991 0 R /XYZ 71.731 255.756 null]
+2629 0 obj <<
+/D [2613 0 R /XYZ 136.289 352.179 null]
 >> endobj
-2011 0 obj <<
-/D [1991 0 R /XYZ 71.731 231.891 null]
+2630 0 obj <<
+/D [2613 0 R /XYZ 136.289 340.523 null]
 >> endobj
-2012 0 obj <<
-/D [1991 0 R /XYZ 71.731 216.947 null]
+2631 0 obj <<
+/D [2613 0 R /XYZ 71.731 300.971 null]
 >> endobj
-2013 0 obj <<
-/D [1991 0 R /XYZ 119.568 193.753 null]
+2632 0 obj <<
+/D [2613 0 R /XYZ 71.731 229.076 null]
 >> endobj
-2014 0 obj <<
-/D [1991 0 R /XYZ 91.656 182.097 null]
+2633 0 obj <<
+/D [2613 0 R /XYZ 71.731 219.113 null]
 >> endobj
-2015 0 obj <<
-/D [1991 0 R /XYZ 145.49 182.097 null]
+2634 0 obj <<
+/D [2613 0 R /XYZ 136.289 209.614 null]
 >> endobj
-2016 0 obj <<
-/D [1991 0 R /XYZ 242.613 182.097 null]
+2635 0 obj <<
+/D [2613 0 R /XYZ 136.289 197.958 null]
 >> endobj
-2017 0 obj <<
-/D [1991 0 R /XYZ 301.289 182.097 null]
+2636 0 obj <<
+/D [2613 0 R /XYZ 71.731 158.406 null]
 >> endobj
-2018 0 obj <<
-/D [1991 0 R /XYZ 138.317 170.441 null]
+2637 0 obj <<
+/D [2613 0 R /XYZ 71.731 133.335 null]
 >> endobj
-2019 0 obj <<
-/D [1991 0 R /XYZ 239.635 170.441 null]
+2638 0 obj <<
+/D [2613 0 R /XYZ 125.529 123.836 null]
 >> endobj
-2020 0 obj <<
-/D [1991 0 R /XYZ 71.731 142.546 null]
+2639 0 obj <<
+/D [2613 0 R /XYZ 125.529 112.179 null]
 >> endobj
-2021 0 obj <<
-/D [1991 0 R /XYZ 175.156 129.594 null]
+2640 0 obj <<
+/D [2613 0 R /XYZ 125.529 100.523 null]
 >> endobj
-1990 0 obj <<
-/Font << /F33 1160 0 R /F35 1229 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R >>
+2612 0 obj <<
+/Font << /F33 1210 0 R /F35 1437 0 R /F27 1112 0 R /F57 2335 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2025 0 obj <<
-/Length 1679      
+2643 0 obj <<
+/Length 2156      
 /Filter /FlateDecode
 >>
 stream
-xڵX[o�6~�0Ї�C�HԽ�Ң�2$]�z@�e�L�Bd�#��ޯߡxuqZt�`J"��;�;L���/X�JC��9�I�(/�����"�;<��s��Y��|���I�XoQ��<]�!FY���˷��([y8����놋���f��ߴ���.V�~�nm��a��,|�.�gjX��k�Df��3FQg�˕����HX�V��ۻ�zM^Ք>ʇ`�����뻂q�^I/��Y/����I�����=�������#�V5Aw7�ŻOw+/X^�o���]���?]�Ճ�z�����~���n7D�k���Uu���K�����ԧ?T*I_�q�E�f�ϕ�
-��
:�	�P�gA�����,HGbL��4f)�B<�q�k-�G&ഷ �Q�D�{�JA�N�Jz8�F=<Ay�Ն�p�|jV�-�ga�覭����btg�{�ӐN�޲'F�S%�#�D�,XQ
-"eF����qM���Gʖ1�EܥV:��
-�%e���7#���J���b���8=FD˴{'�jk�}��eծj����AY�C[�<�2g�9��-n���(�𜶳�G&�g�j�}�ȷ�w��&�2%�(�Y��8�:�[�<����A�d�\���=~$e=䤞�1�d󁷑#�a�2n��G���o��yh�>-�w�Zn�޶M)**ǂ��L���C�0R�
-�� �P�-���y���N7F���M��M�H���-�u�V�ϐ��9���wb�h̉�<�-t��<p�#�N��j��6�@��u�|�V�[��>�����/�a��0��A����A‚�ۖ�DH�)�}l���֊��A��PMc�%�f���J���z;j[Z��i~�%��Uħ���+����T�6bo��b�2	�E��I�$E���.�=)94�#:�Ӏ$1��Pĵ�����uQFx��ЋF���+CQ�>K
-7�:�ÞbK��)6�s���`:�v���(�P"��~���<�0LA���P��K=O8�m2������w8��t}ƝY�Ez�/��ߤ�6_�~��ۢ�ה�|:�i��0�s�~
-�,�/����1����0`pz���=��lq���m_���nv�O:��)ȇ)��B;VY�@c��R��x@L	0J�ib�5-�����Z������c�2)��/�bVt<ٽ�@�3$�<�Q��VK���oZŷg9O]�&��`���il��1�Ny�_>���#����fشd�VuQ>[PQ��k���y"�Q.�<������X�n�m�FaIGS���icDe�ɨO����:K�C�P��yk��X$YC3��4�B��٘)_�1ʎl��dF��~@��ۻ��<Z� ������9�&3$���Xp� �%���(�\�"d &L��g����[�因$����w�U���ȤfGzBU1ސQj��s�)<�'A�|8ӡ��1��B'�-�X������&ŻlD����0���7�U�u�ߞ>�z�R?3/LG%�Ÿ@7�ۦ,���jչo�.li�Ì@�Ӷ��_gi��.�OEǺ�9�q��塷jh�m`���{�b�����QBI
-2�ԃi��3/�]���Swv�s�]�;;�ݝ�eA�,=�[&�D�a��"�;:����18��/��6endstream
+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
 endobj
-2024 0 obj <<
+2642 0 obj <<
 /Type /Page
-/Contents 2025 0 R
-/Resources 2023 0 R
+/Contents 2643 0 R
+/Resources 2641 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2059 0 R
-/Annots [ 2054 0 R 2055 0 R ]
->> endobj
-2054 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [504.264 247.045 537.983 255.956]
-/Subtype /Link
-/A << /S /GoTo /D (installation) >>
+/Parent 2556 0 R
+/Annots [ 2657 0 R ]
 >> endobj
-2055 0 obj <<
+2657 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 234.093 84.184 243.005]
+/Rect [288.837 216.479 341.583 225.39]
 /Subtype /Link
-/A << /S /GoTo /D (installation) >>
->> endobj
-2026 0 obj <<
-/D [2024 0 R /XYZ 71.731 729.265 null]
->> endobj
-2027 0 obj <<
-/D [2024 0 R /XYZ 71.731 741.22 null]
->> endobj
-2028 0 obj <<
-/D [2024 0 R /XYZ 71.731 718.306 null]
->> endobj
-2031 0 obj <<
-/D [2024 0 R /XYZ 71.731 661.719 null]
->> endobj
-2032 0 obj <<
-/D [2024 0 R /XYZ 71.731 651.756 null]
->> endobj
-2033 0 obj <<
-/D [2024 0 R /XYZ 71.731 613.734 null]
->> endobj
-2034 0 obj <<
-/D [2024 0 R /XYZ 365.347 597.958 null]
->> endobj
-2035 0 obj <<
-/D [2024 0 R /XYZ 71.731 577.868 null]
->> endobj
-218 0 obj <<
-/D [2024 0 R /XYZ 245.404 540.653 null]
->> endobj
-2036 0 obj <<
-/D [2024 0 R /XYZ 71.731 533.3 null]
->> endobj
-2037 0 obj <<
-/D [2024 0 R /XYZ 110.475 507.577 null]
->> endobj
-2038 0 obj <<
-/D [2024 0 R /XYZ 71.731 494.625 null]
+/A << /S /GoTo /D (install-perlmodules-nonroot) >>
 >> endobj
-2039 0 obj <<
-/D [2024 0 R /XYZ 71.731 482.506 null]
+2644 0 obj <<
+/D [2642 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2040 0 obj <<
-/D [2024 0 R /XYZ 71.731 482.506 null]
+2645 0 obj <<
+/D [2642 0 R /XYZ 125.529 708.344 null]
 >> endobj
-2041 0 obj <<
-/D [2024 0 R /XYZ 101.32 473.006 null]
+2646 0 obj <<
+/D [2642 0 R /XYZ 125.529 696.687 null]
 >> endobj
-2042 0 obj <<
-/D [2024 0 R /XYZ 71.731 471.791 null]
+2647 0 obj <<
+/D [2642 0 R /XYZ 125.529 685.031 null]
 >> endobj
-2043 0 obj <<
-/D [2024 0 R /XYZ 101.32 461.35 null]
+1369 0 obj <<
+/D [2642 0 R /XYZ 71.731 653.45 null]
 >> endobj
-2044 0 obj <<
-/D [2024 0 R /XYZ 71.731 460.135 null]
+294 0 obj <<
+/D [2642 0 R /XYZ 197.861 614.077 null]
 >> endobj
-2045 0 obj <<
-/D [2024 0 R /XYZ 101.32 449.694 null]
+2648 0 obj <<
+/D [2642 0 R /XYZ 71.731 606.725 null]
 >> endobj
-2046 0 obj <<
-/D [2024 0 R /XYZ 71.731 448.479 null]
+1370 0 obj <<
+/D [2642 0 R /XYZ 71.731 565.893 null]
 >> endobj
-2047 0 obj <<
-/D [2024 0 R /XYZ 101.32 438.037 null]
+298 0 obj <<
+/D [2642 0 R /XYZ 284.184 533.579 null]
 >> endobj
-2048 0 obj <<
-/D [2024 0 R /XYZ 71.731 436.822 null]
+2649 0 obj <<
+/D [2642 0 R /XYZ 71.731 524.942 null]
 >> endobj
-2049 0 obj <<
-/D [2024 0 R /XYZ 101.32 426.381 null]
+2650 0 obj <<
+/D [2642 0 R /XYZ 481.532 514.65 null]
 >> endobj
-2050 0 obj <<
-/D [2024 0 R /XYZ 71.731 414.725 null]
+2651 0 obj <<
+/D [2642 0 R /XYZ 71.731 481.609 null]
 >> endobj
-2051 0 obj <<
-/D [2024 0 R /XYZ 71.731 404.762 null]
+2652 0 obj <<
+/D [2642 0 R /XYZ 71.731 444.812 null]
 >> endobj
-1172 0 obj <<
-/D [2024 0 R /XYZ 71.731 364.747 null]
+2653 0 obj <<
+/D [2642 0 R /XYZ 71.731 429.868 null]
 >> endobj
-222 0 obj <<
-/D [2024 0 R /XYZ 381.295 321.65 null]
+2654 0 obj <<
+/D [2642 0 R /XYZ 76.712 378.361 null]
 >> endobj
-2052 0 obj <<
-/D [2024 0 R /XYZ 71.731 318.086 null]
+2655 0 obj <<
+/D [2642 0 R /XYZ 118.555 334.816 null]
 >> endobj
-226 0 obj <<
-/D [2024 0 R /XYZ 195.006 282.277 null]
+1371 0 obj <<
+/D [2642 0 R /XYZ 71.731 271.264 null]
 >> endobj
-2053 0 obj <<
-/D [2024 0 R /XYZ 71.731 274.925 null]
+302 0 obj <<
+/D [2642 0 R /XYZ 166.615 238.76 null]
 >> endobj
-2056 0 obj <<
-/D [2024 0 R /XYZ 71.731 229.112 null]
+2656 0 obj <<
+/D [2642 0 R /XYZ 71.731 228.395 null]
 >> endobj
-230 0 obj <<
-/D [2024 0 R /XYZ 161.035 191.896 null]
+2658 0 obj <<
+/D [2642 0 R /XYZ 71.731 198.546 null]
 >> endobj
-2057 0 obj <<
-/D [2024 0 R /XYZ 71.731 181.754 null]
+2659 0 obj <<
+/D [2642 0 R /XYZ 71.731 188.583 null]
 >> endobj
-2058 0 obj <<
-/D [2024 0 R /XYZ 71.731 156.664 null]
+2660 0 obj <<
+/D [2642 0 R /XYZ 105.494 132.857 null]
 >> endobj
-2023 0 obj <<
-/Font << /F33 1160 0 R /F35 1229 0 R /F58 2030 0 R /F27 1064 0 R /F23 1057 0 R /F32 1071 0 R /F55 1844 0 R >>
+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 ]
 >> endobj
-2062 0 obj <<
-/Length 1658      
+2663 0 obj <<
+/Length 1040      
 /Filter /FlateDecode
 >>
 stream
-xڽX�s�F~�_�Cg�f̉�@�CO�q�M[3m��d��$QG��U���{HH�;�C��9�n|���b���;1g��K��`9�r�;kx�~�i�G[��=o��;!���s�,VN���N,�D���n�ˍ�;�L� �݀���j;Yy���7����(��n����bP����xѮ0Y觎��F���:�����?������.�gi*�F9����� ��`^����!�Eq�xsXp?�
-�T�D87H	�3%�<�Y'=TLCߕMe` f���<���'��/`1gs�'��r8���b����
-����FN�}����I��{�Pe�O:�9�q04^[��b[�%`�`	�0��kLx�����\���Sc��2o�\W�XY�!3��{٪)�\���Vx�����)$KC۷-ٝ��<M��{@�݅1K!5R�"��#�n���R�)���6�i|Li��ec��npb�q�A�6�r����+%3�T��F����2��
O�}�#_7������G������^���w��˼S٬"���.V̀�lA?� ����O�gߓ1_V�X�lF���v�v��-Y�9���!,���Z��&�vg�� ?�<d6��C^�*�Y](t[���V�,	�切�.KP�2W(���`���heNE���hm%��澺%�7Š����Y*�qPL!��]�#���|��0�Vֶ��QK�p�/:�d�T�����-��$p�AN��u��L$�5	iRO�!��>
-��9`�e�P�L$&���o&�}��U���(2YB]5�c&��7`'��V���!��]y�&<��ɾ��̡T+wa�|�m;M�w9�@0�}?Xo���I��6:�b�Gj8ti�v����Z�ň+�+w�9pY��A^�u�l��
P�[��,o�h`gEE��}��mt�f+�Dz�Mϳ��[�?��e�̢�+]�P:d��2��Ήh_��\��ȱo�]����FI��Đ0�j0iV��W�+8q����AuG�[��k1�4���uӽJ���w�`�����Oe��Q5�t�x�o:��iW=Z�����H΍��\�/��G��i�B��n�b����:ϼU^��Asng–�����F�j
-^��7�Wۼ辧~`��DKY���f��,p�˦���P�g���N����gQP-U�6L�hf��gy��~��W�߾����E�QC�e#" �HP�;D��aA�3��i7ٮ� ��5��3?�1s�n�G����	U��+w��ѨP��lk��W4�ôƄPH#$.!�H��[ڇ1�'zeE(|c�!ߵx�t��X4ϣ3��@���E���C�W���G��20��~���"sNVv���)�3z�M�J�J�<�k�C�%YFt��	eO���>�cy�G�WS��s�tA��9�ڨ�,.��cK,�W��
-�c`����7M�"��Q�*��}f�n�Ʉ��7
-���+���B������<k����K��SUf&|�g��a��X�B.��QK`1�-�rY��0�~u������˷���Q?x=�^����	7F�{@�=_�Ŀd���zV4��Q�2&���>=�Ui��~,Β4��	K@�K	�o9�CH��ҧ����)m��endstream
+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�֫>KX�ĖH�����1���Fƥ<��><3t�Ne!���������&����ϯ�`��`�ɂ�������Ԭ��0�<��z�����������rp�endstream
 endobj
-2061 0 obj <<
+2662 0 obj <<
 /Type /Page
-/Contents 2062 0 R
-/Resources 2060 0 R
+/Contents 2663 0 R
+/Resources 2661 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2059 0 R
->> endobj
-2063 0 obj <<
-/D [2061 0 R /XYZ 71.731 729.265 null]
->> endobj
-2064 0 obj <<
-/D [2061 0 R /XYZ 118.555 689.705 null]
->> endobj
-2065 0 obj <<
-/D [2061 0 R /XYZ 277.186 681.241 null]
->> endobj
-2066 0 obj <<
-/D [2061 0 R /XYZ 252.403 646.272 null]
->> endobj
-2067 0 obj <<
-/D [2061 0 R /XYZ 118.555 639.295 null]
->> endobj
-234 0 obj <<
-/D [2061 0 R /XYZ 282.307 577.481 null]
->> endobj
-2068 0 obj <<
-/D [2061 0 R /XYZ 71.731 574.821 null]
->> endobj
-238 0 obj <<
-/D [2061 0 R /XYZ 268.211 547.095 null]
->> endobj
-2069 0 obj <<
-/D [2061 0 R /XYZ 71.731 539.897 null]
->> endobj
-2070 0 obj <<
-/D [2061 0 R /XYZ 71.731 517.043 null]
->> endobj
-2071 0 obj <<
-/D [2061 0 R /XYZ 71.731 311.08 null]
->> endobj
-242 0 obj <<
-/D [2061 0 R /XYZ 228.441 278.204 null]
->> endobj
-2072 0 obj <<
-/D [2061 0 R /XYZ 71.731 273.018 null]
+/Parent 2556 0 R
 >> endobj
-2073 0 obj <<
-/D [2061 0 R /XYZ 422.084 260.271 null]
+2664 0 obj <<
+/D [2662 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2074 0 obj <<
-/D [2061 0 R /XYZ 387.295 247.319 null]
+2665 0 obj <<
+/D [2662 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2075 0 obj <<
-/D [2061 0 R /XYZ 71.731 216.336 null]
+2666 0 obj <<
+/D [2662 0 R /XYZ 131.133 708.344 null]
 >> endobj
-246 0 obj <<
-/D [2061 0 R /XYZ 199.549 183.559 null]
+2667 0 obj <<
+/D [2662 0 R /XYZ 247.791 708.344 null]
 >> endobj
-2076 0 obj <<
-/D [2061 0 R /XYZ 71.731 176.361 null]
+2668 0 obj <<
+/D [2662 0 R /XYZ 431.073 695.392 null]
 >> endobj
-2077 0 obj <<
-/D [2061 0 R /XYZ 71.731 153.506 null]
+2669 0 obj <<
+/D [2662 0 R /XYZ 71.731 680.284 null]
 >> endobj
-2078 0 obj <<
-/D [2061 0 R /XYZ 147.048 144.007 null]
+2670 0 obj <<
+/D [2662 0 R /XYZ 118.555 641.72 null]
 >> endobj
-2079 0 obj <<
-/D [2061 0 R /XYZ 147.048 132.351 null]
+2671 0 obj <<
+/D [2662 0 R /XYZ 189.395 633.256 null]
 >> endobj
-2080 0 obj <<
-/D [2061 0 R /XYZ 71.731 110.732 null]
+2672 0 obj <<
+/D [2662 0 R /XYZ 194.423 621.599 null]
 >> endobj
-2060 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F44 1440 0 R /F48 1452 0 R /F27 1064 0 R /F35 1229 0 R /F55 1844 0 R >>
+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 ]
 >> endobj
-2083 0 obj <<
-/Length 1817      
+2675 0 obj <<
+/Length 2352      
 /Filter /FlateDecode
 >>
 stream
-xڭX[��F~ϯ0����L|�m�>,P�,P"�E�cO�<����3sƎ��[T�V�Ϝ�w��r�ϵ"�E><��y��ʪ�cm���K3"��<^N��|�JX����
-ܘ%���C�Z��O���=�Bg�1�|Q�6-ˢ������sQ���a�r���Kb��z�S�B+fN�z�AĜ �"'f~(�V������B�L$u���E)"���_�^~*���q��/l�E!��Ț��S�kmq�L���0�i����)���k��z��x�$��������*��yf��~��J����ާ�:���ޠ�',��j�����W�S}�
p�4;�T�����X����h?�v�7��B�rc�Ӵ�/�7��E,JB��cI�*��W�wo�K�]��,]M/[e,j���Q�4�gNϛ�����ǫ��9M]2���<��[���u�-�)!�zJ/d��L�.b���bФ,���<�+�-<10�I�JWX�)�4��=d�H^�mߙ2�=��3ܬ_xA�u*?�ِ�lyE$yUԅl�HZь�L�W��?)w��:m:m�u;��q^ri���B�i���jDݦ+2��f`��h��%����^�@fz�صc{�-��EԽu���;Z?�/��X+@��p�����>T��
-#�A�@��4y���r(p/��o��� m��ԏ�eI�[
�֓w��=#����9��,ѝ��ef���j�)��n�Sŷ��c+�b�|к�l,,M�9x�37�>�@iv!y�X�xJ�z�G�c�Aބ��Yr�E�U��/=���pj�a9];Ġ�� �+[]H�[��;���w&�L���h1�C�u����M��C
-�h� �Q�ma��s�P7�VrLu��Q����v��*͠�q&�l�l;Ol>r��{'}?�!���p���|����Utߟf�9����
I��3�:��`>�r��My�cQ�a��g���Q���m����{j`IXe۴V.8�R[�S�j��Cۍ�}�Dw\#C:�5R+q,�\{qĒ��Yn���CW�Ф�#�C�k����>�p*���ҜX����7}��DUA�	�
�J��
-4{�y�Bϟ<?r-����G�:%����,�F��K�
�Og�O�Ő4nr��Sg֍��m����H�����7�������`̪��|>>fy'��š��׷k������2�\3F�f!��{��N�h�G*�$�uaί9�����H�EU@���q\R?3��a�;0��������Q��MאV��,���.P�۟�[Q��Z����kU��=x���N�e{�
��g�7&v���k]m�׊�Q�a�ԦH�T���2��҆��5b�7<N���]�y���|eM}�n�C�C9{�}�۵+�U�R�-L�[yZ>�hc$ţ�#)L��t0m2ԑ���mZ�p��؝��A��ޥ��k�Љ 4x	��	�MH��y���7:��Ga�sE�T2w4rp-��p�ꤱ��b���6mr��Ҧ۞�CH�S)�h�;�m��Ag�;"�P��@����Sqs�hd�]�[>De�Rw��Ss;��J��3M��@͹V3`�����ȺFѧ��t�z���V�٤�d�����`�6#��S0�BPP��^۝~~ꊖ�`\G~�u?�&�K33m��
-�!�3@
���t*��*n�������+ħ	_zV��R��h���WCm4��YG�U������I7�G�\'���X��_��n 9��.���x��*ޗ~�;��//�2�endstream
+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�]/(wd1F��]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�P�e��y	@7�)�X�	�}�5D�dD=�°�;0ia�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���=���.�����tJ@�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
-2082 0 obj <<
+2674 0 obj <<
 /Type /Page
-/Contents 2083 0 R
-/Resources 2081 0 R
+/Contents 2675 0 R
+/Resources 2673 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2059 0 R
+/Parent 2704 0 R
 >> endobj
-2084 0 obj <<
-/D [2082 0 R /XYZ 71.731 729.265 null]
+2676 0 obj <<
+/D [2674 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2085 0 obj <<
-/D [2082 0 R /XYZ 71.731 718.306 null]
+1372 0 obj <<
+/D [2674 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2086 0 obj <<
-/D [2082 0 R /XYZ 147.048 708.344 null]
+306 0 obj <<
+/D [2674 0 R /XYZ 402.325 703.236 null]
 >> endobj
-2087 0 obj <<
-/D [2082 0 R /XYZ 147.048 696.687 null]
+1373 0 obj <<
+/D [2674 0 R /XYZ 71.731 692.184 null]
 >> endobj
-2088 0 obj <<
-/D [2082 0 R /XYZ 71.731 675.068 null]
+310 0 obj <<
+/D [2674 0 R /XYZ 288.867 651.159 null]
 >> endobj
-2089 0 obj <<
-/D [2082 0 R /XYZ 361.161 662.117 null]
+2677 0 obj <<
+/D [2674 0 R /XYZ 71.731 638.721 null]
 >> endobj
-2090 0 obj <<
-/D [2082 0 R /XYZ 71.731 647.009 null]
+2678 0 obj <<
+/D [2674 0 R /XYZ 71.731 601.54 null]
 >> endobj
-2091 0 obj <<
-/D [2082 0 R /XYZ 71.731 632.065 null]
+2679 0 obj <<
+/D [2674 0 R /XYZ 71.731 601.54 null]
 >> endobj
-2092 0 obj <<
-/D [2082 0 R /XYZ 76.712 582.615 null]
+2680 0 obj <<
+/D [2674 0 R /XYZ 71.731 586.596 null]
 >> endobj
-2093 0 obj <<
-/D [2082 0 R /XYZ 118.555 539.07 null]
+2681 0 obj <<
+/D [2674 0 R /XYZ 71.731 575.702 null]
 >> endobj
-2094 0 obj <<
-/D [2082 0 R /XYZ 71.731 465.555 null]
+2682 0 obj <<
+/D [2674 0 R /XYZ 91.656 557.869 null]
 >> endobj
-250 0 obj <<
-/D [2082 0 R /XYZ 138.296 433.051 null]
+2683 0 obj <<
+/D [2674 0 R /XYZ 71.731 532.798 null]
 >> endobj
-2095 0 obj <<
-/D [2082 0 R /XYZ 71.731 425.699 null]
+2684 0 obj <<
+/D [2674 0 R /XYZ 71.731 521.904 null]
 >> endobj
-2096 0 obj <<
-/D [2082 0 R /XYZ 71.731 387.856 null]
+2685 0 obj <<
+/D [2674 0 R /XYZ 91.656 504.071 null]
 >> endobj
-2097 0 obj <<
-/D [2082 0 R /XYZ 114.77 378.356 null]
+2686 0 obj <<
+/D [2674 0 R /XYZ 71.731 496.933 null]
 >> endobj
-2098 0 obj <<
-/D [2082 0 R /XYZ 114.77 366.7 null]
+2687 0 obj <<
+/D [2674 0 R /XYZ 263.545 486.138 null]
 >> endobj
-2099 0 obj <<
-/D [2082 0 R /XYZ 114.77 355.044 null]
+2688 0 obj <<
+/D [2674 0 R /XYZ 500.364 486.138 null]
 >> endobj
-2100 0 obj <<
-/D [2082 0 R /XYZ 114.77 343.388 null]
+2689 0 obj <<
+/D [2674 0 R /XYZ 101.898 473.187 null]
 >> endobj
-2101 0 obj <<
-/D [2082 0 R /XYZ 114.77 331.731 null]
+2690 0 obj <<
+/D [2674 0 R /XYZ 71.731 445.291 null]
 >> endobj
-2102 0 obj <<
-/D [2082 0 R /XYZ 114.77 320.075 null]
+2691 0 obj <<
+/D [2674 0 R /XYZ 71.731 430.183 null]
 >> endobj
-2103 0 obj <<
-/D [2082 0 R /XYZ 114.77 308.419 null]
+2692 0 obj <<
+/D [2674 0 R /XYZ 91.656 414.407 null]
 >> endobj
-2104 0 obj <<
-/D [2082 0 R /XYZ 114.77 296.762 null]
+2693 0 obj <<
+/D [2674 0 R /XYZ 71.731 402.288 null]
 >> endobj
-2105 0 obj <<
-/D [2082 0 R /XYZ 114.77 285.106 null]
+2694 0 obj <<
+/D [2674 0 R /XYZ 71.731 389.336 null]
 >> endobj
-2106 0 obj <<
-/D [2082 0 R /XYZ 114.77 273.45 null]
+2695 0 obj <<
+/D [2674 0 R /XYZ 91.656 373.56 null]
 >> endobj
-2107 0 obj <<
-/D [2082 0 R /XYZ 71.731 251.831 null]
+2696 0 obj <<
+/D [2674 0 R /XYZ 250.874 360.609 null]
 >> endobj
-2108 0 obj <<
-/D [2082 0 R /XYZ 303.251 238.879 null]
+2697 0 obj <<
+/D [2674 0 R /XYZ 71.731 322.587 null]
 >> endobj
-2109 0 obj <<
-/D [2082 0 R /XYZ 71.731 218.79 null]
+2698 0 obj <<
+/D [2674 0 R /XYZ 71.731 311.692 null]
 >> endobj
-254 0 obj <<
-/D [2082 0 R /XYZ 200.472 181.574 null]
+2699 0 obj <<
+/D [2674 0 R /XYZ 91.656 293.859 null]
 >> endobj
-2110 0 obj <<
-/D [2082 0 R /XYZ 71.731 174.222 null]
+2700 0 obj <<
+/D [2674 0 R /XYZ 71.731 209.012 null]
 >> endobj
-2111 0 obj <<
-/D [2082 0 R /XYZ 71.731 120.439 null]
+2701 0 obj <<
+/D [2674 0 R /XYZ 110.407 198.218 null]
 >> endobj
-2081 0 obj <<
-/Font << /F33 1160 0 R /F35 1229 0 R /F55 1844 0 R /F27 1064 0 R /F32 1071 0 R /F23 1057 0 R /F44 1440 0 R >>
+2702 0 obj <<
+/D [2674 0 R /XYZ 71.731 152.225 null]
+>> endobj
+2703 0 obj <<
+/D [2674 0 R /XYZ 376.313 141.431 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 ]
 >> endobj
-2114 0 obj <<
-/Length 1424      
+2707 0 obj <<
+/Length 2384      
 /Filter /FlateDecode
 >>
 stream
-xڕW{o�6�?�B0
-DbF���
I����k�
�2�E[B%��#�7l�}$��,��:I�x����r�[1F�//A^Z��ĵ6b��	�SM2ݣ�\����}+AI�[���Jb+�=4=k��j��ȶ��3�B���׬nHQ�l��v�g^��m���բ�1Jf��z��<��%a(53�3����C!
-�*�3{�Q�\��n)K	k��-m2�J�ϸ7ֵ��\/Q�༰%�J8�����,�>4�d;��9�W�;�x���`��U��D�m�%�z��a�Ӫ8�)�S!�6$/hj�M�ۊJQ�9oki�2�����t�A:�؊Ԧ�پ=Ab��� ��f$���I<��NSd���7وv͋��g�˒��5D��rc�(@a8��^�"�����+ %YE&�E!�g���k�υ���e��ęb[h��=�}3�ʪ9��Ti}z��Q"Ps}%Ⴅ�U�e�]�N���}�_�w��
-]�,-��אUJ{�e���"����z�:�%Oۢ���M�}O�	b[�bk�
�H���uɹ�F%ekK���~�%HF�6�^�dr��e�m���>�p��n�f�m�u5F%��FCyp�~]�A�WR�qI��?;صU�}qAy�Wu��p*9�2j���M��mڊ���e��Y�@_pd.蚑W���9Qh��_�2X�@�z�āX����v��/��a 8C0���'L�]��n��=�א���I��I%�vӌ?�	dD��A6�a��c��Β9������(ĉP�G>�L�E�R�C���Z븭��,U���K�Ҳk.�Q��t��]GiHH�Z�D����l&7חR�����;U��|	[�4[y8ԝ������������:-�(�0�?�q�a�?����s��G=_��w�ȋ�'ƭd"x��<�E]:���v��a�t�	](k�~��O��<1\�`Wژ���2o&�%�{�d��h�9�4!]�Kc�!Q�''����{XP��W���e��pR�di�NXjL�
/jT�z!g����H�]�H��H��?��2J�����NU�6f˝9�*��T�}�C����DJy�������{eb�F�a�T�@�9��xJF*{�{S{�X`/�{z����Δ��B�II5�@enbc�
�@��d��АJ�D��u�K`��|^��t-a=R�T���*�t��0EP\����p��wt�:��*J:�!�d���ڨA~�ZP�wk�;� a�H;�G���A ^-Xo�\=z�O^f����p	|�����n��Cv"0	��A�o*��!
-=��qg>n&���|&�4��{:~�2�[�mY��#���<k@�LG��c�3�j>VK�v�ͩ_���p��K�'9x����=�D���s��CI����endstream
+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����CL����<F
+֬��4@������f�e����GSzڃ/�=�/�j2�LD�Rpfs#)!�x6���OKzř���"��1�|��?o����������.�XZ���rJ�~���A
+�`�������Ql�
���[0��u����s�{�{-�"�?�7���_�4*� rDPq��/�ۓ�Ҷ�endstream
 endobj
-2113 0 obj <<
+2706 0 obj <<
 /Type /Page
-/Contents 2114 0 R
-/Resources 2112 0 R
+/Contents 2707 0 R
+/Resources 2705 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2059 0 R
+/Parent 2704 0 R
 >> endobj
-2115 0 obj <<
-/D [2113 0 R /XYZ 71.731 729.265 null]
+2708 0 obj <<
+/D [2706 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2116 0 obj <<
-/D [2113 0 R /XYZ 71.731 741.22 null]
+2709 0 obj <<
+/D [2706 0 R /XYZ 71.731 718.306 null]
 >> endobj
-258 0 obj <<
-/D [2113 0 R /XYZ 256.412 708.344 null]
+2710 0 obj <<
+/D [2706 0 R /XYZ 71.731 654.545 null]
 >> endobj
-2117 0 obj <<
-/D [2113 0 R /XYZ 71.731 699.891 null]
+2711 0 obj <<
+/D [2706 0 R /XYZ 71.731 641.494 null]
 >> endobj
-2118 0 obj <<
-/D [2113 0 R /XYZ 71.731 669.325 null]
+2712 0 obj <<
+/D [2706 0 R /XYZ 91.656 623.661 null]
 >> endobj
-2119 0 obj <<
-/D [2113 0 R /XYZ 71.731 659.362 null]
+2713 0 obj <<
+/D [2706 0 R /XYZ 71.731 595.602 null]
 >> endobj
-2120 0 obj <<
-/D [2113 0 R /XYZ 136.289 649.863 null]
+2714 0 obj <<
+/D [2706 0 R /XYZ 71.731 580.658 null]
 >> endobj
-2121 0 obj <<
-/D [2113 0 R /XYZ 136.289 638.207 null]
+2715 0 obj <<
+/D [2706 0 R /XYZ 126.726 547.846 null]
 >> endobj
-2122 0 obj <<
-/D [2113 0 R /XYZ 71.731 598.655 null]
+2716 0 obj <<
+/D [2706 0 R /XYZ 71.731 485.38 null]
 >> endobj
-2123 0 obj <<
-/D [2113 0 R /XYZ 71.731 580.623 null]
+2717 0 obj <<
+/D [2706 0 R /XYZ 71.731 470.272 null]
 >> endobj
-2124 0 obj <<
-/D [2113 0 R /XYZ 71.731 570.66 null]
+2718 0 obj <<
+/D [2706 0 R /XYZ 91.656 454.496 null]
 >> endobj
-2125 0 obj <<
-/D [2113 0 R /XYZ 136.289 559.103 null]
+2719 0 obj <<
+/D [2706 0 R /XYZ 71.731 434.406 null]
 >> endobj
-2126 0 obj <<
-/D [2113 0 R /XYZ 136.289 547.447 null]
+2720 0 obj <<
+/D [2706 0 R /XYZ 71.731 382.765 null]
 >> endobj
-2127 0 obj <<
-/D [2113 0 R /XYZ 71.731 507.895 null]
+2721 0 obj <<
+/D [2706 0 R /XYZ 71.731 367.656 null]
 >> endobj
-2128 0 obj <<
-/D [2113 0 R /XYZ 71.731 476.912 null]
+2722 0 obj <<
+/D [2706 0 R /XYZ 91.656 351.88 null]
 >> endobj
-262 0 obj <<
-/D [2113 0 R /XYZ 219.101 441.544 null]
+2723 0 obj <<
+/D [2706 0 R /XYZ 409.936 338.929 null]
 >> endobj
-2129 0 obj <<
-/D [2113 0 R /XYZ 71.731 435.417 null]
+2724 0 obj <<
+/D [2706 0 R /XYZ 71.731 314.575 null]
 >> endobj
-2130 0 obj <<
-/D [2113 0 R /XYZ 71.731 404.583 null]
+2725 0 obj <<
+/D [2706 0 R /XYZ 71.731 300.907 null]
 >> endobj
-2131 0 obj <<
-/D [2113 0 R /XYZ 71.731 394.62 null]
+2726 0 obj <<
+/D [2706 0 R /XYZ 91.656 285.131 null]
 >> endobj
-2132 0 obj <<
-/D [2113 0 R /XYZ 71.731 145.355 null]
+2727 0 obj <<
+/D [2706 0 R /XYZ 71.731 260.06 null]
 >> endobj
-2133 0 obj <<
-/D [2113 0 R /XYZ 396.191 132.404 null]
+2728 0 obj <<
+/D [2706 0 R /XYZ 71.731 249.166 null]
 >> endobj
-2134 0 obj <<
-/D [2113 0 R /XYZ 417.312 132.404 null]
+2729 0 obj <<
+/D [2706 0 R /XYZ 91.656 231.333 null]
 >> endobj
-2135 0 obj <<
-/D [2113 0 R /XYZ 438.433 132.404 null]
+2730 0 obj <<
+/D [2706 0 R /XYZ 71.731 193.31 null]
 >> endobj
-2136 0 obj <<
-/D [2113 0 R /XYZ 71.731 119.452 null]
+2731 0 obj <<
+/D [2706 0 R /XYZ 71.731 180.359 null]
 >> endobj
-2112 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F55 1844 0 R >>
+2732 0 obj <<
+/D [2706 0 R /XYZ 91.656 164.583 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 ]
 >> endobj
-2139 0 obj <<
-/Length 1285      
+2735 0 obj <<
+/Length 2024      
 /Filter /FlateDecode
 >>
 stream
-xڭW�o�F���E�WCycGj�$�GNJɮڪ�k�6(�r��E�_�Y����]�ʒY�x����X>|+	�$�K���El��o�����p��ۓ��\��.����ZD�fo̓��J�$
-�eZ�ݟ�]�j��ㆱo����W���ȫ���m�E���6/�n��8J��2z�/-3q,L:�t|�ҋ��ֱ\��xN*���+ϰ<�d����|eH{�Ǭ$d�Ƕ
-��k̹��������'_���‘4
-��=;�oc-�:����~����F��=9�оy�nz+�'�)�.�K%��J<<4�
V��U4����r d��vy]`,ڑ�t�7���3�_'编0��ŵP
u[K�OD�s/���.������e�I�X�!)
-�E�h�jL�]���>�=	;���֮��~q��^z����QR�)�����T�<U+�L�ױ���Ж8Al_��%1y�_�cY�J)6�4�#�i��`�Z�d���"��6Չ��%�!)�7��9j��5�~�Z�t��	�m�]���e�;.�!���<�_��a�M��5%)f��3��a���.��´�ℱ��ŷ�u�=���!CN�r�Hۍ�#`[���B�
-�����5���I�m�V���G���S0�"�U|T��8|`4vi������9�h����i�Ҽo���g�Z]9��V��~��Y���d`pf�nҨÝi�:/4=aJ�?ꮄ���f�(Nn�[�>��:�a�RL]�5W���L�N����<oh�J�P�P|�޼�W��6���=��Td�Ik�3�	>���
f���/��G����h˯�Pލw�zj���>z��M��Y6��#�zr'��F�iJ�f�d?���V󃚊�1�+���E�
-�=�)>�����'E!��į���"Q啠��nt��¡r���	D�5g3z�1��2�܇z��ΒZ���Ǒ��D�W������y��D��?�`_�fb����?�~�x{}��(�d�"+��J���՘$>T���>�e��?l6O�`Cv�=�d����Tp\!��lL�]��Æ�ު�P�BJ�1�X.��u]
H5Ns]/x��9*�Ҕ��aN�οQf
-��H65j��Nٔ�M
�����������wDQ����Z<�Wq�����՘�Q�����`���Gら@����4�#bʑ^*n	�bM�
�B'F��q��h鱞��ۑ.�ޫA5渆�)qŽ�z�/�e���~ىL^/�:1�J����{e�Z����endstream
+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��>����L׊P����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
-2138 0 obj <<
+2734 0 obj <<
 /Type /Page
-/Contents 2139 0 R
-/Resources 2137 0 R
+/Contents 2735 0 R
+/Resources 2733 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2059 0 R
->> endobj
-2140 0 obj <<
-/D [2138 0 R /XYZ 71.731 729.265 null]
->> endobj
-2141 0 obj <<
-/D [2138 0 R /XYZ 71.731 670.321 null]
->> endobj
-2142 0 obj <<
-/D [2138 0 R /XYZ 71.731 660.359 null]
+/Parent 2704 0 R
 >> endobj
-2143 0 obj <<
-/D [2138 0 R /XYZ 136.289 650.859 null]
->> endobj
-2144 0 obj <<
-/D [2138 0 R /XYZ 136.289 639.203 null]
->> endobj
-2145 0 obj <<
-/D [2138 0 R /XYZ 71.731 599.651 null]
+2736 0 obj <<
+/D [2734 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2146 0 obj <<
-/D [2138 0 R /XYZ 71.731 566.61 null]
+2737 0 obj <<
+/D [2734 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2147 0 obj <<
-/D [2138 0 R /XYZ 71.731 556.648 null]
+2738 0 obj <<
+/D [2734 0 R /XYZ 71.731 708.244 null]
 >> endobj
-2148 0 obj <<
-/D [2138 0 R /XYZ 136.289 547.148 null]
+2739 0 obj <<
+/D [2734 0 R /XYZ 91.656 690.411 null]
 >> endobj
-2149 0 obj <<
-/D [2138 0 R /XYZ 136.289 535.492 null]
+2740 0 obj <<
+/D [2734 0 R /XYZ 71.731 644.419 null]
 >> endobj
-2150 0 obj <<
-/D [2138 0 R /XYZ 71.731 495.94 null]
+2741 0 obj <<
+/D [2734 0 R /XYZ 71.731 618.516 null]
 >> endobj
-2151 0 obj <<
-/D [2138 0 R /XYZ 71.731 424.045 null]
+2742 0 obj <<
+/D [2734 0 R /XYZ 71.731 603.572 null]
 >> endobj
-2152 0 obj <<
-/D [2138 0 R /XYZ 71.731 414.082 null]
+2743 0 obj <<
+/D [2734 0 R /XYZ 71.731 519.95 null]
 >> endobj
-2153 0 obj <<
-/D [2138 0 R /XYZ 136.289 404.583 null]
+2744 0 obj <<
+/D [2734 0 R /XYZ 71.731 504.842 null]
 >> endobj
-2154 0 obj <<
-/D [2138 0 R /XYZ 136.289 392.927 null]
+2745 0 obj <<
+/D [2734 0 R /XYZ 91.656 489.066 null]
 >> endobj
-2155 0 obj <<
-/D [2138 0 R /XYZ 71.731 353.375 null]
+2746 0 obj <<
+/D [2734 0 R /XYZ 233.106 463.163 null]
 >> endobj
-2156 0 obj <<
-/D [2138 0 R /XYZ 71.731 328.304 null]
+2747 0 obj <<
+/D [2734 0 R /XYZ 71.731 440.15 null]
 >> endobj
-2157 0 obj <<
-/D [2138 0 R /XYZ 125.529 318.805 null]
+2748 0 obj <<
+/D [2734 0 R /XYZ 71.731 425.141 null]
 >> endobj
-2158 0 obj <<
-/D [2138 0 R /XYZ 125.529 307.148 null]
+2749 0 obj <<
+/D [2734 0 R /XYZ 91.656 409.365 null]
 >> endobj
-2159 0 obj <<
-/D [2138 0 R /XYZ 125.529 295.492 null]
+1374 0 obj <<
+/D [2734 0 R /XYZ 71.731 376.324 null]
 >> endobj
-2160 0 obj <<
-/D [2138 0 R /XYZ 125.529 283.836 null]
+314 0 obj <<
+/D [2734 0 R /XYZ 269.758 333.226 null]
 >> endobj
-2161 0 obj <<
-/D [2138 0 R /XYZ 125.529 272.179 null]
+1375 0 obj <<
+/D [2734 0 R /XYZ 71.731 333.011 null]
 >> endobj
-2162 0 obj <<
-/D [2138 0 R /XYZ 125.529 260.523 null]
+318 0 obj <<
+/D [2734 0 R /XYZ 283.793 293.854 null]
 >> endobj
-2163 0 obj <<
-/D [2138 0 R /XYZ 71.731 228.942 null]
+2750 0 obj <<
+/D [2734 0 R /XYZ 71.731 283.489 null]
 >> endobj
-266 0 obj <<
-/D [2138 0 R /XYZ 197.861 189.569 null]
+2751 0 obj <<
+/D [2734 0 R /XYZ 71.731 245.67 null]
 >> endobj
-2164 0 obj <<
-/D [2138 0 R /XYZ 71.731 182.217 null]
+2752 0 obj <<
+/D [2734 0 R /XYZ 71.731 230.726 null]
 >> endobj
-2165 0 obj <<
-/D [2138 0 R /XYZ 71.731 141.385 null]
+1376 0 obj <<
+/D [2734 0 R /XYZ 71.731 170.018 null]
 >> endobj
-2137 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F55 1844 0 R /F23 1057 0 R >>
+2733 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2168 0 obj <<
-/Length 2262      
+2755 0 obj <<
+/Length 2825      
 /Filter /FlateDecode
 >>
 stream
-xڭYYs�6~ׯ`�♔���a�%��M�`{U\[Ij�Cbf����ɯ�n��!HJ�uR*� �ݍ�!����wR�MCx�$�S�7�s�/���iŎ��&k����{�N�fI����߻Y�a�����/�|{�ہu�]{��U��~ȫ�7'���x��WU����Ǜ��
�8L�l>+�^�,�w�8Fɴ���
�HJ�1��(R�߼�F�/_�y���͙���W�עٽb@9�Az��sv�{�I�����[�J�"oԠi��%mK��T�XtBl�͠&��y�[�z�0G�M�M=��c%-��V�l�?�Fs������)�"���z^P<Rn��L�#&��%n�`4�yZe���va�qDko5�:�(
-��	��SWOZ�^�{�Ǚ�>l�x�w<?T =���|0)J�K?��|'Z��Mt���'��V��=#���f��"J��߿}��w��7o���6�����޶�G�άcs�J�|��¬�x�� ���k�_=/8������]�ry��DmLڱ��� �-f������2ns't�#�<��Ȕ�c� ���4�	�J>@"�Oޟ���LX\3q�PS����=�鴣
���ܤ�5������([�?Y�ny��7�����:�;"?�FC����|���\Zz��ʳb�Q�?�8k��x�RJ�T�$���!����P$��b`_�uP~ͺ v#O�	��UM����0�B#i
x���;X<м.�e�j�P��`�5{V����Jo�)�;#c^���5��&C�uq�%e��8|>�Ζ2/K#^m>ɪFz���Jbe�)�~c�ft���oՌ�f��P��8�U:JI��d6��Fm/"�j����Yڂ�"�]�f~�OȆ���4�Gwh�T��Jw�|?t�4r��w��ǃ��7���9%����w�}��� �0�8����s����_��K�n���
�W�[!����O������a�wb��i���{Lؼ�pc��#�<y�g|ȝp/w�$�6�b�����pF�����覙q`>[��@o{���p
®�(,�X
3�i��s�/��:�t�O�A8��5��W�`
�|{́MrR����M�5}�n��^55�����$g�{Y�� ��iޏg^�-�D�c��~���QA�L��#;
-=7�#�u�_H�i�x�$��!l�b8446O�^O���<ק=WtJg�9��_BH��-�hT��#�|
-�	�����>�…Y�F��^�3K�A&j�DP���������C�PA�f�W<��&��AG�PBg���lʼ+mh��Z��'�u&�CtL�VqΛ�p���Rkژ����4XSt(���/�+0��8�&{
-�xJ�V�H<�-��l� \/̬����J3\�ï~�Þ�3�>�I��5����!�;
-q�2��G9�(�X)�_'����d�lr�Z��N@�k�	8-�/M�C���L���1�W��n��U���sS�n)��x��a��
˖�6������\v���
Bo�	x���
R+�?�V��u[�h�ϋ�d�>����8��5.u��d-�|i(0kGk���a9��egg�f��{lX�NJ����]y�Mж{�x��hl]���7�؍�x�
�[t,��j�Ǿ��Y�va�U����B�4�i�·���l��I5F��S9 SE{�~ûގ4�Rv��&�x*P�\z��y�ZP�|˝'}��^��b;iʙ�k�xםH
���V�o�n�`��k
-�3���IS�X��
�ʸ̻(s㹏� �,̛��B1PW�0��t~��P9�'�z�'J
-��_��i�&�8��������{��P=���O���g6��v@aΫ��T���IgM��1�:�,|X�ә`�9�
-ë,s8W1
^ԓ<���~D��Sp���	Wt�y����
-h�:�b�����v�;x�Ǫ�����&����re5�K]�ӗ�X[�p�[-J\o�W���ԯh?�d�.��D���vE7��X�\K����T�k-E�[
-�?����^�+�S6
-{�>G93ot>���q�9�nD�;������Ĺ��g7䦗,F�E.������{e5Ӭ�&Z�a`����sy#��7�>�ˆ;�tU�惾2�e�ͮ�&��B��c3�)gJϚ�}�S�v�#����{;T�7+��w������k�"%�Q
-�]�����������Aep��
-���O�'�JFs�	��endstream
+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�rG/�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�oYUK�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
-2167 0 obj <<
+2754 0 obj <<
 /Type /Page
-/Contents 2168 0 R
-/Resources 2166 0 R
+/Contents 2755 0 R
+/Resources 2753 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2059 0 R
-/Annots [ 2179 0 R ]
+/Parent 2704 0 R
 >> endobj
-2179 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [283.963 391.243 336.266 400.155]
-/Subtype /Link
-/A << /S /GoTo /D (install-perlmodules-nonroot) >>
+2756 0 obj <<
+/D [2754 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2169 0 obj <<
-/D [2167 0 R /XYZ 71.731 729.265 null]
+322 0 obj <<
+/D [2754 0 R /XYZ 264.312 707.841 null]
 >> endobj
-270 0 obj <<
-/D [2167 0 R /XYZ 284.184 708.344 null]
+1377 0 obj <<
+/D [2754 0 R /XYZ 71.731 704.649 null]
 >> endobj
-2170 0 obj <<
-/D [2167 0 R /XYZ 71.731 699.706 null]
+326 0 obj <<
+/D [2754 0 R /XYZ 224.863 673.37 null]
 >> endobj
-2171 0 obj <<
-/D [2167 0 R /XYZ 478.403 689.415 null]
+2757 0 obj <<
+/D [2754 0 R /XYZ 71.731 664.733 null]
 >> endobj
-2172 0 obj <<
-/D [2167 0 R /XYZ 71.731 656.374 null]
+2758 0 obj <<
+/D [2754 0 R /XYZ 71.731 626.381 null]
 >> endobj
-2173 0 obj <<
-/D [2167 0 R /XYZ 71.731 619.577 null]
+2759 0 obj <<
+/D [2754 0 R /XYZ 71.731 621.4 null]
 >> endobj
-2174 0 obj <<
-/D [2167 0 R /XYZ 71.731 604.633 null]
+2760 0 obj <<
+/D [2754 0 R /XYZ 89.664 600.643 null]
 >> endobj
-2175 0 obj <<
-/D [2167 0 R /XYZ 76.712 553.126 null]
+2761 0 obj <<
+/D [2754 0 R /XYZ 71.731 598.486 null]
 >> endobj
-2176 0 obj <<
-/D [2167 0 R /XYZ 118.555 509.58 null]
+2762 0 obj <<
+/D [2754 0 R /XYZ 89.664 582.71 null]
 >> endobj
-2177 0 obj <<
-/D [2167 0 R /XYZ 71.731 446.028 null]
+2763 0 obj <<
+/D [2754 0 R /XYZ 71.731 580.553 null]
 >> endobj
-274 0 obj <<
-/D [2167 0 R /XYZ 166.615 413.525 null]
+2764 0 obj <<
+/D [2754 0 R /XYZ 71.731 565.609 null]
 >> endobj
-2178 0 obj <<
-/D [2167 0 R /XYZ 71.731 403.16 null]
+2765 0 obj <<
+/D [2754 0 R /XYZ 244.012 556.11 null]
 >> endobj
-2180 0 obj <<
-/D [2167 0 R /XYZ 71.731 373.31 null]
+2766 0 obj <<
+/D [2754 0 R /XYZ 441.891 532.797 null]
 >> endobj
-2181 0 obj <<
-/D [2167 0 R /XYZ 71.731 363.348 null]
+1378 0 obj <<
+/D [2754 0 R /XYZ 71.731 463.657 null]
 >> endobj
-2182 0 obj <<
-/D [2167 0 R /XYZ 104.657 307.622 null]
+330 0 obj <<
+/D [2754 0 R /XYZ 207.755 428.19 null]
 >> endobj
-2183 0 obj <<
-/D [2167 0 R /XYZ 71.731 287.532 null]
+2767 0 obj <<
+/D [2754 0 R /XYZ 71.731 419.552 null]
 >> endobj
-2184 0 obj <<
-/D [2167 0 R /XYZ 131.133 276.737 null]
+2768 0 obj <<
+/D [2754 0 R /XYZ 71.731 391.228 null]
 >> endobj
-2185 0 obj <<
-/D [2167 0 R /XYZ 247.791 276.737 null]
+2769 0 obj <<
+/D [2754 0 R /XYZ 260.836 365.425 null]
 >> endobj
-2186 0 obj <<
-/D [2167 0 R /XYZ 421.396 263.786 null]
+2770 0 obj <<
+/D [2754 0 R /XYZ 300.296 352.473 null]
 >> endobj
-2187 0 obj <<
-/D [2167 0 R /XYZ 71.731 248.678 null]
+2771 0 obj <<
+/D [2754 0 R /XYZ 71.731 332.384 null]
 >> endobj
-2188 0 obj <<
-/D [2167 0 R /XYZ 118.555 210.114 null]
+2772 0 obj <<
+/D [2754 0 R /XYZ 71.731 319.432 null]
 >> endobj
-2189 0 obj <<
-/D [2167 0 R /XYZ 190.33 201.649 null]
+2773 0 obj <<
+/D [2754 0 R /XYZ 71.731 314.451 null]
 >> endobj
-2190 0 obj <<
-/D [2167 0 R /XYZ 225.559 189.993 null]
+2774 0 obj <<
+/D [2754 0 R /XYZ 81.694 293.694 null]
 >> endobj
-2166 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F32 1071 0 R /F44 1440 0 R /F35 1229 0 R >>
-/ProcSet [ /PDF /Text ]
+2775 0 obj <<
+/D [2754 0 R /XYZ 81.694 293.694 null]
 >> endobj
-2193 0 obj <<
-/Length 2045      
-/Filter /FlateDecode
->>
-stream
-xڭY]��4��_Qq�J�9�h��݂�}��	q�.��m�&q6v(��3{�M�ժij���gf|�U���!�|��(�竢y������%v�n���<���yv�N�l��$|�����4[�q��O���;%΢4ۯ��_�_W�Ӽ�l��q�E��}وV(x/ګy��p�[ԛd]���oߍ��C�&9
-�A�4��Qf%����߾��oq�^��i![+�:E�}fŤI��� �ۜ�k��g��Ҽ9��/kA���^��I�5��ގ���`�z1/XQp�HХ��y�7_|S
-�m���/̻Z��zm��cW�t�=���MF+�4:��h��yo�1zP��O�H��I�5�$�������Taz�%2��l� {R%��Z�v_)�o7'�<_"���ݣ8�ٝPA�:�u��z�4����������U�յ�ܹ)=D�S>�m�h5�7��}��oA��xZʎ4ڝ�y℟.��(MS��$���S	�w'�zo O�9�<�6��Me��D���RdaY'[%ε�X?;��:�Nt�C�11-T�M3�Z>���J�3G�3?kQjPʡ�&�����zP-ٍ�
}}f�?�{��I>[�'qO�n�����#K�\a�#����4�Wp!QP)1��ӌh��ۍ�)��?�&��ʞ$��]��n<�Q�,ք( Y6�-J&D�d�k��[�����O�Qy<52~�����=�49���(�WZw_���n�H3*d�z���z��i��Qq��#9��8Ϭ���H�_'����ifA�;��m�8���?*��#�߃<��>��|J���8:������C���:���d����¿'��i���(4p��v�8@�ƒ��c�(04�]��HE�� �<[�I �˓E��
-*(Jj^��(�[���SJ~A����O�����Ln��=�]���M.�uK�6)2-�Œ|�>p��ٗJ��31�p�%��F��^�^;b����#A�ڲ�
-
W5o�H�c	"�l���"�I���.ω�0��O�d~	E�Y�]-X���5�����Xa�3�C�\��!����jVP��z����I\�e=��S�"����O�B╔�Vq{R��R�3�غ�?���
-ǖ����btn஗熀�����egWE��^X�Ǡf���ӂ��[�8
�8��o8�B5��BU�����	C��,:柭��=�Z�
-�{�̃$5�O��'�3���OT;'�[QQ��w��Z��G���] f�h7�1�Kh��B������O�[�]'{�(�5E-�v��[/��Բ��F&w?8J�(��U�)sb>�vp(�-��`5���3���0g�r��e��	�\w�/p$1Auo�%ix]�K�x	C�����;M#���a�d�y��T Ψ�r��[�-��E,E�ǏR?�$S{)
��4b�ݰ�	���O�SV����վ�K@�V�6���<��W�e&� ��p쯍F�k�b!�Cߎ�X����z	��y֖�r��ݕ�9fK3���y
�.@��D�$K
E�
-�c$ui>E�V	�qیDE�H�H�{����n.�X6Gӹ����9պ��N���ov1M�̺5��s�������>���fL��XkT�\���d�\�Ӝ����4�S��zf� J�ĵ%��W��LZ��@���-��J�'^���9GIjv
b���_&�7����~
!`NL���U�ѥh:^�D�S�+��y��I�����	�◁�~��ؤ@�|�4U�����+
6��?!4�e��&`'<�
x+�f�.��	�3�<a��t8O|G�cװ��!��г&at?�[����-��H�x1R,r�5H-e��y�rDIH��Ϙ�-`�"F\4��4i�(��&�&��յ�`�u�;�aS��yJ޼�Ư���a���{L�]���_��l��
ZGcN���\�mL�k��+V�P�1�R(2��{rYq����]�֮�NKƮ����'}��Ó�/!�G�Nx�xendstream
-endobj
-2192 0 obj <<
-/Type /Page
-/Contents 2193 0 R
-/Resources 2191 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2222 0 R
+2776 0 obj <<
+/D [2754 0 R /XYZ 71.731 266.008 null]
 >> endobj
-2194 0 obj <<
-/D [2192 0 R /XYZ 71.731 729.265 null]
+2777 0 obj <<
+/D [2754 0 R /XYZ 81.694 249.858 null]
 >> endobj
-1173 0 obj <<
-/D [2192 0 R /XYZ 71.731 718.306 null]
+2778 0 obj <<
+/D [2754 0 R /XYZ 81.694 249.858 null]
 >> endobj
-278 0 obj <<
-/D [2192 0 R /XYZ 402.325 703.236 null]
+2779 0 obj <<
+/D [2754 0 R /XYZ 71.731 247.701 null]
 >> endobj
-1174 0 obj <<
-/D [2192 0 R /XYZ 71.731 692.184 null]
+2780 0 obj <<
+/D [2754 0 R /XYZ 81.694 231.926 null]
 >> endobj
-282 0 obj <<
-/D [2192 0 R /XYZ 288.867 651.159 null]
+2781 0 obj <<
+/D [2754 0 R /XYZ 81.694 231.926 null]
 >> endobj
-2195 0 obj <<
-/D [2192 0 R /XYZ 71.731 638.721 null]
+2782 0 obj <<
+/D [2754 0 R /XYZ 71.731 216.817 null]
 >> endobj
-2196 0 obj <<
-/D [2192 0 R /XYZ 71.731 601.54 null]
+2783 0 obj <<
+/D [2754 0 R /XYZ 81.694 201.041 null]
 >> endobj
-2197 0 obj <<
-/D [2192 0 R /XYZ 71.731 601.54 null]
+2784 0 obj <<
+/D [2754 0 R /XYZ 81.694 201.041 null]
 >> endobj
-2198 0 obj <<
-/D [2192 0 R /XYZ 71.731 586.596 null]
+2785 0 obj <<
+/D [2754 0 R /XYZ 71.731 168 null]
 >> endobj
-2199 0 obj <<
-/D [2192 0 R /XYZ 71.731 575.702 null]
+2786 0 obj <<
+/D [2754 0 R /XYZ 362.548 131.303 null]
 >> endobj
-2200 0 obj <<
-/D [2192 0 R /XYZ 91.656 557.869 null]
+2787 0 obj <<
+/D [2754 0 R /XYZ 71.731 129.146 null]
 >> endobj
-2201 0 obj <<
-/D [2192 0 R /XYZ 71.731 532.798 null]
+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 ]
 >> endobj
-2202 0 obj <<
-/D [2192 0 R /XYZ 71.731 521.904 null]
+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 ]
 >> endobj
-2203 0 obj <<
-/D [2192 0 R /XYZ 91.656 504.071 null]
+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) >>
 >> endobj
-2204 0 obj <<
-/D [2192 0 R /XYZ 71.731 496.933 null]
+2791 0 obj <<
+/D [2789 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2205 0 obj <<
-/D [2192 0 R /XYZ 267.615 486.138 null]
+2792 0 obj <<
+/D [2789 0 R /XYZ 71.731 741.22 null]
 >> endobj
-2206 0 obj <<
-/D [2192 0 R /XYZ 91.656 473.187 null]
+2793 0 obj <<
+/D [2789 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2207 0 obj <<
-/D [2192 0 R /XYZ 142.007 473.187 null]
+2794 0 obj <<
+/D [2789 0 R /XYZ 210.667 696.687 null]
 >> endobj
-2208 0 obj <<
-/D [2192 0 R /XYZ 71.731 445.291 null]
+2795 0 obj <<
+/D [2789 0 R /XYZ 76.712 680.05 null]
 >> endobj
-2209 0 obj <<
-/D [2192 0 R /XYZ 71.731 430.183 null]
+2796 0 obj <<
+/D [2789 0 R /XYZ 128.518 636.504 null]
 >> endobj
-2210 0 obj <<
-/D [2192 0 R /XYZ 91.656 414.407 null]
+2797 0 obj <<
+/D [2789 0 R /XYZ 76.712 600.145 null]
 >> endobj
-2211 0 obj <<
-/D [2192 0 R /XYZ 71.731 402.288 null]
+2798 0 obj <<
+/D [2789 0 R /XYZ 81.694 582.212 null]
 >> endobj
-2212 0 obj <<
-/D [2192 0 R /XYZ 71.731 389.336 null]
+2799 0 obj <<
+/D [2789 0 R /XYZ 81.694 582.212 null]
 >> endobj
-2213 0 obj <<
-/D [2192 0 R /XYZ 91.656 373.56 null]
+2800 0 obj <<
+/D [2789 0 R /XYZ 71.731 567.104 null]
 >> endobj
-2214 0 obj <<
-/D [2192 0 R /XYZ 249.373 360.609 null]
+2801 0 obj <<
+/D [2789 0 R /XYZ 81.694 551.328 null]
 >> endobj
-2215 0 obj <<
-/D [2192 0 R /XYZ 71.731 322.587 null]
+2802 0 obj <<
+/D [2789 0 R /XYZ 81.694 551.328 null]
 >> endobj
-2216 0 obj <<
-/D [2192 0 R /XYZ 71.731 311.692 null]
+2803 0 obj <<
+/D [2789 0 R /XYZ 71.731 536.219 null]
 >> endobj
-2217 0 obj <<
-/D [2192 0 R /XYZ 91.656 293.859 null]
+2804 0 obj <<
+/D [2789 0 R /XYZ 81.694 520.444 null]
 >> endobj
-2218 0 obj <<
-/D [2192 0 R /XYZ 71.731 209.012 null]
+2805 0 obj <<
+/D [2789 0 R /XYZ 81.694 520.444 null]
 >> endobj
-2219 0 obj <<
-/D [2192 0 R /XYZ 109.639 198.218 null]
+2806 0 obj <<
+/D [2789 0 R /XYZ 71.731 518.287 null]
 >> endobj
-2220 0 obj <<
-/D [2192 0 R /XYZ 71.731 152.225 null]
+2807 0 obj <<
+/D [2789 0 R /XYZ 81.694 502.511 null]
 >> endobj
-2221 0 obj <<
-/D [2192 0 R /XYZ 362.598 141.431 null]
+2808 0 obj <<
+/D [2789 0 R /XYZ 81.694 502.511 null]
 >> endobj
-2191 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F33 1160 0 R >>
-/ProcSet [ /PDF /Text ]
+2809 0 obj <<
+/D [2789 0 R /XYZ 71.731 487.403 null]
 >> endobj
-2225 0 obj <<
-/Length 2123      
-/Filter /FlateDecode
->>
-stream
-xڭYɒ�6��W(�b)�Ds���<K�=w9{ 	I�M�-k��	 ��"�̡�� ��^.�h�_�:D�!�K|
-�}�ʫw��_��.�[\��������&�������څapO�C�4^������F�v���p���eQ�Z(x/�{�U��֗���d������K/;M�阼�����~�(ا��!<�ng�{�r'��&N׬��Q��U������%�-cP��j���u��++�ts��&�z�`�eLq��/�(�-:�t���������V\O�\��W��ōl�q,�k��	��������݊�/L~�l���wmyS��i!k�B��.�vl,��~�D隼�$i�����4y��,��"�_�.�#;#kg%�V��4]�{����J��^F�̻��z`�Y��J���k&��
-�F��8]mwap��������W]�S�#��q���#����d���W��]��j;�n���(��sP����ed
��Rׄh�����.Cڷ֙#�{��S�h�0B4p_n�����ix�����<��_���-�%썢�7���
�},���0<���5�L�I٬6:�e�:ޮ�V��_u-���"��>!�����V^
�Z��o�~[�:�
-Ք����-!��9?A2~�YM`�GS�Jy3���/��r���{��h��P�r���H��du��
^-���m��ֲR�/�:����8
v�a�Y�e����|��KW��=��[�<��a�(���g�\�e̦����p�m��1hPD}6��,��?�7��7	�z�X[�*�▤�)�.��9����e�dV���\���ᦫ������!g��>w�j��8j�˺��f�1ә]q�5p���eA��X(�
���n����W��.��Z����+w�MR�mx���S-/�v�)�/b��C@�p���
��7�C����w�0T�}�+A�(�h�Mpwq����wCS��7Ҹq �\�v��=r��s�GVk���1
�d��r��@l���)e�p36ȶ�j�,�C��߁����,:�;T�v8�+x���ڱuP]��	:@��>	X^�B�L�r������[���vK5��%���cjU�\)c�ˡ���J�,��ˮ�O�>jP�F��P��qeS]��Нa�����q���(t�^VJ��bx���hI;;�}�/<�w��f�u����)��p����.(����y��[�k�P-��Y�s�E5ҧᲡ��_�4��B�U�����&�������ADU8+�6å�с��u8'�����X%4_�F+�d�&� j��	��x|+2�ݖ��+�hFN��`��0����m
-�����I(!���a /�'�o���,6=w<����'���m�yg
v�����ΌԜpj摂�[/`���WP�J�99NB��b	M"�kh%?�\4�<��!z{���i���Edr����2�R��O&�s������ABu42�Yh�̄1�����.�,����FɛMe��X@K�4�1�&9���%h!�p3G�z�cE�B���O�9�%0����	���z6���:�?����!�~��.�3ӈ>*A4�d|Z�r�f�E.�~�"��&�`ČگB���;ݽ晄�|		I$P��
-	~�E$��1(Њ��=;UV�6��0���ۚQ���՗���
-�2*�F4/��+%s�4���4n{��(�}�C7V�c7`߅?�����������GkT@��/�BO�ج?a(y��?�)�5�5�OϽ��wU����}X-��Vq��׹�����[���I=~��ȸHy�MbjN�ߘnC���d�L`A�v_j	��.H�oF��vK$�%F��\�Nbvǵ?�A���,ࣅ�IG� {��l_�j�w)�������"��P���gw#Q��������7
-�z�!?�C���⌇1����F��Y��ICB�#��z}���?�3mf���7��d���KP�US����
�T���0����d��"�H0#K	��~�^�wgm����iL���95����>|�'2���Q�eK??�g��1:��?�d�/�4>��]�#���?H��)��endstream
-endobj
-2224 0 obj <<
-/Type /Page
-/Contents 2225 0 R
-/Resources 2223 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2222 0 R
+2810 0 obj <<
+/D [2789 0 R /XYZ 81.694 471.627 null]
 >> endobj
-2226 0 obj <<
-/D [2224 0 R /XYZ 71.731 729.265 null]
+2811 0 obj <<
+/D [2789 0 R /XYZ 81.694 471.627 null]
 >> endobj
-2227 0 obj <<
-/D [2224 0 R /XYZ 71.731 718.306 null]
+2812 0 obj <<
+/D [2789 0 R /XYZ 71.731 443.567 null]
 >> endobj
-2228 0 obj <<
-/D [2224 0 R /XYZ 71.731 654.545 null]
+2813 0 obj <<
+/D [2789 0 R /XYZ 81.694 427.791 null]
 >> endobj
-2229 0 obj <<
-/D [2224 0 R /XYZ 71.731 641.494 null]
+2814 0 obj <<
+/D [2789 0 R /XYZ 81.694 427.791 null]
 >> endobj
-2230 0 obj <<
-/D [2224 0 R /XYZ 91.656 623.661 null]
+2815 0 obj <<
+/D [2789 0 R /XYZ 71.731 399.731 null]
 >> endobj
-2231 0 obj <<
-/D [2224 0 R /XYZ 71.731 595.602 null]
+2816 0 obj <<
+/D [2789 0 R /XYZ 81.694 383.955 null]
 >> endobj
-2232 0 obj <<
-/D [2224 0 R /XYZ 71.731 580.658 null]
+2817 0 obj <<
+/D [2789 0 R /XYZ 81.694 383.955 null]
 >> endobj
-2233 0 obj <<
-/D [2224 0 R /XYZ 126.537 547.846 null]
+2818 0 obj <<
+/D [2789 0 R /XYZ 71.731 368.847 null]
 >> endobj
-2234 0 obj <<
-/D [2224 0 R /XYZ 71.731 485.38 null]
+2819 0 obj <<
+/D [2789 0 R /XYZ 81.694 353.071 null]
 >> endobj
-2235 0 obj <<
-/D [2224 0 R /XYZ 71.731 470.272 null]
+2820 0 obj <<
+/D [2789 0 R /XYZ 81.694 353.071 null]
 >> endobj
-2236 0 obj <<
-/D [2224 0 R /XYZ 91.656 454.496 null]
+2821 0 obj <<
+/D [2789 0 R /XYZ 374.742 353.071 null]
 >> endobj
-2237 0 obj <<
-/D [2224 0 R /XYZ 71.731 434.406 null]
+2822 0 obj <<
+/D [2789 0 R /XYZ 71.731 350.914 null]
 >> endobj
-2238 0 obj <<
-/D [2224 0 R /XYZ 71.731 382.765 null]
+2823 0 obj <<
+/D [2789 0 R /XYZ 81.694 335.138 null]
 >> endobj
-2239 0 obj <<
-/D [2224 0 R /XYZ 71.731 367.656 null]
+2824 0 obj <<
+/D [2789 0 R /XYZ 81.694 335.138 null]
 >> endobj
-2240 0 obj <<
-/D [2224 0 R /XYZ 91.656 351.88 null]
+1379 0 obj <<
+/D [2789 0 R /XYZ 71.731 295.124 null]
 >> endobj
-2241 0 obj <<
-/D [2224 0 R /XYZ 402.368 338.929 null]
+334 0 obj <<
+/D [2789 0 R /XYZ 179.498 252.026 null]
 >> endobj
-2242 0 obj <<
-/D [2224 0 R /XYZ 71.731 314.575 null]
+2825 0 obj <<
+/D [2789 0 R /XYZ 71.731 243.203 null]
 >> endobj
-2243 0 obj <<
-/D [2224 0 R /XYZ 71.731 300.907 null]
+2827 0 obj <<
+/D [2789 0 R /XYZ 71.731 197.426 null]
 >> endobj
-2244 0 obj <<
-/D [2224 0 R /XYZ 91.656 285.131 null]
+2828 0 obj <<
+/D [2789 0 R /XYZ 71.731 155.648 null]
 >> endobj
-2245 0 obj <<
-/D [2224 0 R /XYZ 71.731 260.06 null]
+2829 0 obj <<
+/D [2789 0 R /XYZ 71.731 140.639 null]
 >> endobj
-2246 0 obj <<
-/D [2224 0 R /XYZ 71.731 249.166 null]
+2830 0 obj <<
+/D [2789 0 R /XYZ 71.731 135.658 null]
 >> endobj
-2247 0 obj <<
-/D [2224 0 R /XYZ 91.656 231.333 null]
+2831 0 obj <<
+/D [2789 0 R /XYZ 89.664 114.9 null]
 >> endobj
-2248 0 obj <<
-/D [2224 0 R /XYZ 71.731 193.31 null]
+2832 0 obj <<
+/D [2789 0 R /XYZ 71.731 112.744 null]
 >> endobj
-2249 0 obj <<
-/D [2224 0 R /XYZ 71.731 180.359 null]
+2833 0 obj <<
+/D [2789 0 R /XYZ 89.664 96.968 null]
 >> endobj
-2250 0 obj <<
-/D [2224 0 R /XYZ 91.656 164.583 null]
+2834 0 obj <<
+/D [2789 0 R /XYZ 71.731 94.811 null]
 >> endobj
-2223 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R /F35 1229 0 R >>
+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 ]
 >> endobj
-2253 0 obj <<
-/Length 1787      
-/Filter /FlateDecode
->>
-stream
-xڭXI��6�ϯp���Z,[nO�$)�C{�)��@K�͎D�"������S�P �A���]�*�_�ڧ�>�Kv��]��ڛdu�~�I
�Ɛl�77?����!>����i�M�x�V�<��"[=�F��	ܯ7Y�Dy����P��=�g��ͰN��i����_n�=8�E��e��z�f�_���Y3�2η[�^��S���S��xwH�m�.	���A�M��m�e�j���wH�]�s�z��F�#.�c}�9I2��\?��a묈���
���ך���@œ~� ���gl�T��q�ꉈ,�������F*��O��
���$��N���E#>l�f�f�Ц�z�:[�.��ZI,T���iԚ���$0�*��`����9Am���X�P�E���F�3�s����kB�F��D@U�;�Q�3��ѕ��i��w27��O"𑡾^�(�j�~7W��=F�JF
��*�����xɇ=�g ���FZ�l\0�66��bo��3}���]�(��؉���$E�b����[#���m�ȴ�X���@
-9�YӱFz]׻"2���H$|����Jj�ƼG����*���`����8��~��L'��c�Yf6��i{��'ͮ���~B�)_�P�v�8�P���j���]����	����j�(�"Ρ�%�Fa��j��y$�;�(A���_��9<������p������~Wcy��c܀�戏xx0�*:�m)ă!V
e"�w�%w,ɞ�.8��=]�{6��M�����eZ��2��jĖƞҊ�5舸9d���6j���x�2��`(�V�	�}����V�U�Y��W��(�uȫ���R��nk�i1Jc����<��3�3�0"b���5����&����0�@;���~���]�z�RT�x���<�	��7vύ�D���ނ�=u��vFK�I�㶢�6�r�qZ�*L买wW�#��Ө����i���'�E�h�.\��.5���%�`���P��T�{'�ܳ�s�CK�22hk��	4Wl���X�Wg�Qp���I��W�_۟�LG�
-
�א-�\��ǿq%��|l��oQ�ǭZ�Bj*�u
yh:�}β<vx�N�#F���
�!��ゞ�@����M�4�z���Щ\�n�3h}!Xp��R�ZT%��[��wLFeO<6�z�z�����z��ݳ{6�
�J��|���z��F�m��?H�-o<����{k����,?��U����nZA�������+��7�MU&�+��X[���=,�y��c����齄Ɉl�E(��`7���%��!��t������,-T?�!_$q��>��Y����I߽�ː��1���f�D��|�9�ar���m�o�	
�͚-�̒8�tTr��[Qe���f����z�"�<��κ��>"����ˁ�l`
-�a�ݼ���~#7���i�FQ��"х~�f����\� ��+�k]���A|ϸ��ķL��ڍ�49���$��6E��
Ӆr�\�c� ��
-�N��bNQ���F�%�`�>�aJ#��R^���K/���jR�V��-l&)�e��LN:x�2��Nj��񠮿�y�O�6Jt%zf
��t�M���c�.�nC3��%S3ƨ�6�t3P2M�\�`���P�;��=vHk/?m���ap�*���i�&�a+�U+�?�g(%�j��Z���B���Пb��2�]�B#�а8��e���'�}-�2N2�D*���}ϜK�༠�endstream
-endobj
-2252 0 obj <<
-/Type /Page
-/Contents 2253 0 R
-/Resources 2251 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2222 0 R
+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�79���G�|
+�޻�e ��SMh?�
+5�_)�LC�A�.��D0��J7G��,p�2i��0׏n��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
+>> endobj
+2839 0 obj <<
+/D [2837 0 R /XYZ 71.731 729.265 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]
+>> endobj
+2841 0 obj <<
+/D [2837 0 R /XYZ 71.731 602.101 null]
+>> endobj
+2842 0 obj <<
+/D [2837 0 R /XYZ 71.731 546.721 null]
+>> endobj
+2843 0 obj <<
+/D [2837 0 R /XYZ 510.307 497.072 null]
 >> endobj
-2254 0 obj <<
-/D [2252 0 R /XYZ 71.731 729.265 null]
+2844 0 obj <<
+/D [2837 0 R /XYZ 71.731 476.982 null]
 >> endobj
-2255 0 obj <<
-/D [2252 0 R /XYZ 71.731 718.306 null]
+2845 0 obj <<
+/D [2837 0 R /XYZ 71.731 464.031 null]
 >> endobj
-2256 0 obj <<
-/D [2252 0 R /XYZ 71.731 708.244 null]
+2846 0 obj <<
+/D [2837 0 R /XYZ 71.731 459.05 null]
 >> endobj
-2257 0 obj <<
-/D [2252 0 R /XYZ 91.656 690.411 null]
+2847 0 obj <<
+/D [2837 0 R /XYZ 89.664 438.292 null]
 >> endobj
-2258 0 obj <<
-/D [2252 0 R /XYZ 71.731 644.419 null]
+2848 0 obj <<
+/D [2837 0 R /XYZ 71.731 436.136 null]
 >> endobj
-2259 0 obj <<
-/D [2252 0 R /XYZ 71.731 618.516 null]
+2849 0 obj <<
+/D [2837 0 R /XYZ 89.664 420.36 null]
 >> endobj
-2260 0 obj <<
-/D [2252 0 R /XYZ 71.731 603.572 null]
+2850 0 obj <<
+/D [2837 0 R /XYZ 71.731 418.203 null]
 >> endobj
-2261 0 obj <<
-/D [2252 0 R /XYZ 71.731 519.95 null]
+2851 0 obj <<
+/D [2837 0 R /XYZ 89.664 402.427 null]
 >> endobj
-2262 0 obj <<
-/D [2252 0 R /XYZ 71.731 504.842 null]
+1381 0 obj <<
+/D [2837 0 R /XYZ 71.731 369.386 null]
 >> endobj
-2263 0 obj <<
-/D [2252 0 R /XYZ 91.656 489.066 null]
+342 0 obj <<
+/D [2837 0 R /XYZ 176.83 326.288 null]
 >> endobj
-2264 0 obj <<
-/D [2252 0 R /XYZ 263.57 463.163 null]
+2852 0 obj <<
+/D [2837 0 R /XYZ 71.731 317.466 null]
 >> endobj
-2265 0 obj <<
-/D [2252 0 R /XYZ 71.731 438.092 null]
+2853 0 obj <<
+/D [2837 0 R /XYZ 71.731 284.64 null]
 >> endobj
-2266 0 obj <<
-/D [2252 0 R /XYZ 71.731 425.141 null]
+2854 0 obj <<
+/D [2837 0 R /XYZ 71.731 273.746 null]
 >> endobj
-2267 0 obj <<
-/D [2252 0 R /XYZ 91.656 409.365 null]
+2855 0 obj <<
+/D [2837 0 R /XYZ 71.731 268.764 null]
 >> endobj
-1175 0 obj <<
-/D [2252 0 R /XYZ 71.731 376.324 null]
+2856 0 obj <<
+/D [2837 0 R /XYZ 89.664 245.95 null]
 >> endobj
-286 0 obj <<
-/D [2252 0 R /XYZ 269.758 333.226 null]
+2857 0 obj <<
+/D [2837 0 R /XYZ 71.731 243.793 null]
 >> endobj
-2268 0 obj <<
-/D [2252 0 R /XYZ 71.731 333.011 null]
+2858 0 obj <<
+/D [2837 0 R /XYZ 89.664 228.017 null]
 >> endobj
-290 0 obj <<
-/D [2252 0 R /XYZ 283.793 293.854 null]
+2859 0 obj <<
+/D [2837 0 R /XYZ 71.731 212.909 null]
 >> endobj
-2269 0 obj <<
-/D [2252 0 R /XYZ 71.731 283.489 null]
+2860 0 obj <<
+/D [2837 0 R /XYZ 89.664 197.133 null]
 >> endobj
-2270 0 obj <<
-/D [2252 0 R /XYZ 71.731 245.67 null]
+1382 0 obj <<
+/D [2837 0 R /XYZ 71.731 189.995 null]
 >> endobj
-2271 0 obj <<
-/D [2252 0 R /XYZ 71.731 230.726 null]
+346 0 obj <<
+/D [2837 0 R /XYZ 194.2 146.897 null]
 >> endobj
-2272 0 obj <<
-/D [2252 0 R /XYZ 71.731 170.018 null]
+2861 0 obj <<
+/D [2837 0 R /XYZ 71.731 138.074 null]
 >> endobj
-2251 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R >>
+2862 0 obj <<
+/D [2837 0 R /XYZ 71.731 110.23 null]
+>> endobj
+2836 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2275 0 obj <<
-/Length 2482      
+2865 0 obj <<
+/Length 2311      
 /Filter /FlateDecode
 >>
 stream
-xڍY[���~�_�����"l�v;N���J�r��<�@K"���Q~}Nw��p�l��h���C�	�/ܤ���p�r?:$��yl���ooB<��#;�������M��xs<m�A�A�I��ϒhs,��~��+��v%�����l������=�����;���k����o~<�I��y�O���śp����P��~��|��Ȑfޯ�%�0��J*��#�H��������x�n��I"��]����K2D�?t�pC���Ƴ�g��L�)�b��y�K��ކ Ќ�^������{�£l	v���W�)
-6��<ݐL]��S���y�@!�>�������H��׀!���8g
-sRWJ�����3�K}#0����A����$`)��t��nf2���LKu_Ye	*׳���u�w�����!�|��_V&��~<�`��{DR6����uSҾ���p\�fwrFPi�Mū�"k�D$V���8�J�TܟfR�C~����a/�:�sΨ<r�sBF��xe�8�xM��7�r�������d
-�3U���4��?"��;Q�GO��/�ᗁv7�ȑ��9׎����ûui�����$�|(3�<g��9O�Ek~�3z�mw��
-�?A�G�s�wX1��i�!�C{���_�QB��>�d�x��P�9�Tz�ǿg�P����ᩩ��d��<T�l!h%�]t�R�oչ�ޞ�D`�eij?q����J�{2�m�
-'~�Q�3Gh\�U�n�s?��`�y��JR��jO�!���5FLpC��d��_�n$|ⵤ��t�!�+�mA�Y�Q֕��T�*��p��q�M�eI�zP,+�S��g94��������ʌ�]T���T���m8�Qpk
-Y��*�6����y\��j{N�B>׏�}u=�RCR��=��D::
-A�h\H��Q3V�3mA�:����!m��^@�y�FP��XW(�(�����q�q<7�b
]��{����e�a�ZA�ـ��ޱ �Ǻ<����]�u�ͻD?2v�� �}���D�.��n�������t�бɩ���������<�q�5K2(��剃
 e%�h��oŋ�m&��D:�5���0N� �P��Є>ub�PB�TXD���N*�{��	��V��glz��Dz�`20�]��Eut�������jJDP*�&��Ͼy��8a�	�6�q�'��}�֢&��0Lx�~�Y���Ѣy�U�_�\u6|�4��rh��!	�b�Oz��ZF۾�Ż���zn�5Qk�X%���P�R%�ž!iF�Ug��b��#*��y2�2?IClf�6N�����t�q臹nV�E�m�0��kVf�e�e�_���m��m&��.]�!��	ɒQ���H��#�4��	���u�'�u=֘��M#k (� M�jt�tb��g�r��4��a�����S�f*EI9��~��Z�}��b���!�F�wk9yQ��<I?�.<.��?Aٶ#[�X���Pv�@}!�ΐi]�����g���Z6Dy���ݥ�sFCg�1uV�����(�1��I��l��+3�nBg�\�0\�`�П�`�,;`ȼ�w}�0��mbe�ﶉht�
��k�*�BT��L���� !�a>_PY@!�Y�˱����#�j@;T��yn�nj�ߡ�*�D_�}�oQ]1z�����j�
�$�;:��P۲����z��3=�:+�����r�{,xM��R��s	��&�=��0xⵄ�3{=a&̗���O���J�@A�W&����jb+����~�}*��ڇbnDb_��2ajVX��J�`�w���p�w�̚���k��3{�w�K�s����3��\�L���{+(l��L����s�]��D�&g�!���R�Z���ҖI(�$L4�g�J�b����L�?G�זjh��dӐb'.V���}Z�\���Щz�T/G�����={ܦa�:[��X
�Fh%��������g�O��sf����R�;�'f�#ON�/|���`<�䙣��JG�|l��#�C��Dwඨ���
�L����Qn��E���^P��Nb[��[�C���t�SC��QOS	;��j�q�u�\@&r?�'͝�NMG�f�������j݉-݉յE���fӤ5�X}�G��g�is�$�40�Xy�3P
-ؽ���o$f�z�l
?#�]��Zл%@Ԏr<�+��j�\�˨l�m�M���M��U;L��t���4��M#k����2Oװ΍ek`���`
�m�j9D(�=�Zf��4�I�k1�s`kH�,
-��� gW��[J��:[����������s��ߴR�9���19+|�h��<�D�72�Q]Hg�
-�侚�IU� ��-�Z�؉� ��iHWN�o�^Of��S=��5%1T��ݞd�̺Be~i"�O���}���h�]endstream
+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
-2274 0 obj <<
+2864 0 obj <<
 /Type /Page
-/Contents 2275 0 R
-/Resources 2273 0 R
+/Contents 2865 0 R
+/Resources 2863 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2222 0 R
+/Parent 2910 0 R
 >> endobj
-2276 0 obj <<
-/D [2274 0 R /XYZ 71.731 729.265 null]
+2866 0 obj <<
+/D [2864 0 R /XYZ 71.731 729.265 null]
 >> endobj
-294 0 obj <<
-/D [2274 0 R /XYZ 264.312 707.841 null]
+2867 0 obj <<
+/D [2864 0 R /XYZ 71.731 741.22 null]
 >> endobj
-2277 0 obj <<
-/D [2274 0 R /XYZ 71.731 704.649 null]
+2868 0 obj <<
+/D [2864 0 R /XYZ 71.731 718.306 null]
 >> endobj
-298 0 obj <<
-/D [2274 0 R /XYZ 224.863 673.37 null]
+2869 0 obj <<
+/D [2864 0 R /XYZ 71.731 668.792 null]
 >> endobj
-2278 0 obj <<
-/D [2274 0 R /XYZ 71.731 664.733 null]
+2870 0 obj <<
+/D [2864 0 R /XYZ 71.731 654.401 null]
 >> endobj
-2279 0 obj <<
-/D [2274 0 R /XYZ 71.731 626.381 null]
+2871 0 obj <<
+/D [2864 0 R /XYZ 71.731 649.42 null]
 >> endobj
-2280 0 obj <<
-/D [2274 0 R /XYZ 71.731 621.4 null]
+2872 0 obj <<
+/D [2864 0 R /XYZ 89.664 627.945 null]
 >> endobj
-2281 0 obj <<
-/D [2274 0 R /XYZ 89.664 600.643 null]
+2873 0 obj <<
+/D [2864 0 R /XYZ 71.731 625.788 null]
 >> endobj
-2282 0 obj <<
-/D [2274 0 R /XYZ 71.731 598.486 null]
+2874 0 obj <<
+/D [2864 0 R /XYZ 89.664 610.012 null]
 >> endobj
-2283 0 obj <<
-/D [2274 0 R /XYZ 89.664 582.71 null]
+2875 0 obj <<
+/D [2864 0 R /XYZ 71.731 607.856 null]
 >> endobj
-2284 0 obj <<
-/D [2274 0 R /XYZ 71.731 580.553 null]
+2876 0 obj <<
+/D [2864 0 R /XYZ 89.664 592.08 null]
 >> endobj
-2285 0 obj <<
-/D [2274 0 R /XYZ 71.731 565.609 null]
+2877 0 obj <<
+/D [2864 0 R /XYZ 71.731 553.126 null]
 >> endobj
-2286 0 obj <<
-/D [2274 0 R /XYZ 242.218 556.11 null]
+2878 0 obj <<
+/D [2864 0 R /XYZ 89.664 535.293 null]
 >> endobj
-2287 0 obj <<
-/D [2274 0 R /XYZ 440.363 532.797 null]
+1383 0 obj <<
+/D [2864 0 R /XYZ 71.731 515.203 null]
 >> endobj
-2288 0 obj <<
-/D [2274 0 R /XYZ 71.731 463.657 null]
+350 0 obj <<
+/D [2864 0 R /XYZ 150.026 472.106 null]
 >> endobj
-302 0 obj <<
-/D [2274 0 R /XYZ 207.755 428.19 null]
+2879 0 obj <<
+/D [2864 0 R /XYZ 71.731 459.668 null]
 >> endobj
-2289 0 obj <<
-/D [2274 0 R /XYZ 71.731 419.552 null]
+2880 0 obj <<
+/D [2864 0 R /XYZ 366.767 450.546 null]
 >> endobj
-2290 0 obj <<
-/D [2274 0 R /XYZ 71.731 391.228 null]
+2881 0 obj <<
+/D [2864 0 R /XYZ 395.819 450.546 null]
 >> endobj
-2291 0 obj <<
-/D [2274 0 R /XYZ 260.302 365.425 null]
+2882 0 obj <<
+/D [2864 0 R /XYZ 396.191 424.644 null]
 >> endobj
-2292 0 obj <<
-/D [2274 0 R /XYZ 295.689 352.473 null]
+1384 0 obj <<
+/D [2864 0 R /XYZ 71.731 409.535 null]
 >> endobj
-2293 0 obj <<
-/D [2274 0 R /XYZ 71.731 332.384 null]
+354 0 obj <<
+/D [2864 0 R /XYZ 235.992 372.32 null]
 >> endobj
-2294 0 obj <<
-/D [2274 0 R /XYZ 71.731 319.432 null]
+2883 0 obj <<
+/D [2864 0 R /XYZ 71.731 362.177 null]
 >> endobj
-2295 0 obj <<
-/D [2274 0 R /XYZ 71.731 314.451 null]
+2884 0 obj <<
+/D [2864 0 R /XYZ 260.965 352.195 null]
 >> endobj
-2296 0 obj <<
-/D [2274 0 R /XYZ 81.694 293.694 null]
+2885 0 obj <<
+/D [2864 0 R /XYZ 154.091 339.244 null]
 >> endobj
-2297 0 obj <<
-/D [2274 0 R /XYZ 81.694 293.694 null]
+2886 0 obj <<
+/D [2864 0 R /XYZ 71.731 332.106 null]
 >> endobj
-2298 0 obj <<
-/D [2274 0 R /XYZ 71.731 266.008 null]
+2887 0 obj <<
+/D [2864 0 R /XYZ 220.591 321.311 null]
 >> endobj
-2299 0 obj <<
-/D [2274 0 R /XYZ 81.694 249.858 null]
+2888 0 obj <<
+/D [2864 0 R /XYZ 71.731 314.173 null]
 >> endobj
-2300 0 obj <<
-/D [2274 0 R /XYZ 81.694 249.858 null]
+2889 0 obj <<
+/D [2864 0 R /XYZ 89.664 293.416 null]
 >> endobj
-2301 0 obj <<
-/D [2274 0 R /XYZ 71.731 247.701 null]
+2890 0 obj <<
+/D [2864 0 R /XYZ 299.943 293.416 null]
 >> endobj
-2302 0 obj <<
-/D [2274 0 R /XYZ 81.694 231.926 null]
+2891 0 obj <<
+/D [2864 0 R /XYZ 71.731 286.278 null]
 >> endobj
-2303 0 obj <<
-/D [2274 0 R /XYZ 81.694 231.926 null]
+2892 0 obj <<
+/D [2864 0 R /XYZ 164.608 275.483 null]
 >> endobj
-2304 0 obj <<
-/D [2274 0 R /XYZ 71.731 216.817 null]
+2893 0 obj <<
+/D [2864 0 R /XYZ 287.74 275.483 null]
 >> endobj
-2305 0 obj <<
-/D [2274 0 R /XYZ 81.694 201.041 null]
+2894 0 obj <<
+/D [2864 0 R /XYZ 258.748 262.531 null]
 >> endobj
-2306 0 obj <<
-/D [2274 0 R /XYZ 81.694 201.041 null]
+2895 0 obj <<
+/D [2864 0 R /XYZ 276.999 262.531 null]
 >> endobj
-2307 0 obj <<
-/D [2274 0 R /XYZ 71.731 168 null]
+2896 0 obj <<
+/D [2864 0 R /XYZ 311.022 262.531 null]
 >> endobj
-2308 0 obj <<
-/D [2274 0 R /XYZ 362.548 131.303 null]
+2897 0 obj <<
+/D [2864 0 R /XYZ 76.712 244.599 null]
 >> endobj
-2309 0 obj <<
-/D [2274 0 R /XYZ 71.731 129.146 null]
+2898 0 obj <<
+/D [2864 0 R /XYZ 89.664 226.666 null]
 >> endobj
-2273 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F44 1440 0 R /F48 1452 0 R /F32 1071 0 R /F35 1229 0 R >>
+2899 0 obj <<
+/D [2864 0 R /XYZ 208.796 226.666 null]
+>> endobj
+2900 0 obj <<
+/D [2864 0 R /XYZ 71.731 224.509 null]
+>> endobj
+2901 0 obj <<
+/D [2864 0 R /XYZ 89.664 208.733 null]
+>> endobj
+2902 0 obj <<
+/D [2864 0 R /XYZ 178.191 208.733 null]
+>> endobj
+2903 0 obj <<
+/D [2864 0 R /XYZ 284.412 208.733 null]
+>> endobj
+2904 0 obj <<
+/D [2864 0 R /XYZ 71.731 206.576 null]
+>> endobj
+2905 0 obj <<
+/D [2864 0 R /XYZ 89.664 190.8 null]
+>> endobj
+2906 0 obj <<
+/D [2864 0 R /XYZ 89.664 177.849 null]
+>> endobj
+2907 0 obj <<
+/D [2864 0 R /XYZ 202.639 177.849 null]
+>> endobj
+2908 0 obj <<
+/D [2864 0 R /XYZ 71.731 176.41 null]
+>> endobj
+2909 0 obj <<
+/D [2864 0 R /XYZ 89.664 159.916 null]
+>> endobj
+1385 0 obj <<
+/D [2864 0 R /XYZ 71.731 124.051 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 ]
 >> endobj
-2312 0 obj <<
-/Length 2642      
+2913 0 obj <<
+/Length 1860      
 /Filter /FlateDecode
 >>
 stream
-xڭZ[��F~?�B{^j�S�%�Iz�h�f��������XW���_r.�H#YmwQґ�!����C�s\��s�$\�-�����s�_���)���2o^�~Ζl��y98����:I��4�����4�Zo��]D^_gE^�5<�ˣ|��]{�����L׿�|����鎂�l��yZƲ����>��H�}nJ�0���
{��~O:Q?"�������X	�&骭YU����L�����e�~8ѵ��k���^�F��t�"g��'{�~����mwEި�Q�=����T�4'�>�4W�i�P����]���\w�$���K�w6j��%b���
BT�D���G�I�O�=gʵ�� &Q�(ߖ����E$HI��VZ�\v@e�R�ؾ��d^�
 59/�ø��Vb��A��9q�w+����O��N`����]P8�|F���6p*�~|�W���l€x��;k�w�\l/���lb?$[�g/�
-7�� J�8I���[�֡��U��e�u�%��!\c�oy�Uc�R�Z#��U�[�V����������L���]z.	c�
���C|6�GR7����;��.J}�{~����IЗJDK�+��h�$$�ߋ���^�|�RnRm
-��
ڿ9V�0Z��R҂�]F�މ��R�i�$�~w��o�f.O2<�WR<�ԼP����(���ߌ�?�\̛[��:ordA�࣒8�j������ϵ|v�w�ra�(�X��7\2����F��`����hc��\3S[�<.~S�	<��U�
-�&�~��yw�x���ް�E�P��}��2shSKh��-�m�|
-m�v�W{^��~U�PBJ��^N�r7���*�!/Ϸ.0�7���X���T�¶7�e�
-�
mښ�`_.��цx�@�Cy�m$վ%eZ
-Y�uZ��o�̨�
-i��'��aZm��̆��#�T���=ybH�F�ļY�@�K���̡XI,��V����)���:HV�oΎ@�	��R��!�_�װ�kHETF���dX%T* g�,�2{3�E%F���vF{��I�y������KI,��V����x�Y�7]�X1�^#��F���յ������l߉��A64=�c��F��s�Ey=��\i����ij]Z��ѺαЖ�JI�Q{6�b^�+��;�?K�)�����|�g��X��,{�jf�}`1k���!��sh
���]�23h�h�P��ֱ�	�������^c�vݩ�=��d�H�lR2�.�ڽJG4��Ot
-���k��U�n&�D% ��eB�H
-Q,gZ͒O%$����
��M�AŨ���v�y�mvD�Bcޓ�����wЏm���]���B^Ƹ�������nv8�
+�BM�ZA�P#�,�MZ?!��~�1d�VI,%��l9iGʧ��ЎI+IO�2�\��tK����y��G�
-iY�L��
-p�[�i*H����NR�8�ͦhR���ѦBַ:��|ё�\�>�IKn�D�e}������{�į�V?���pO,0���W�Cu;f*��
�K�lƵ����;��x�`�reu`�T63]���Dˣ��{��fұk"�	9�˻ 
@��a�!3�wZb!�&�-��X�Dޙ�1�DH��S�]D�$4�-��Z	w]�����oyQ�;�\�f�z�	� k!=ݕ������A�Q;��W���	S®��w8���U��ت�شT٥ꉐ�F<ԍ�t���U.
2���f�|j���<�-q��Fy�lʁM~�sdã(V��a?��?V�l���yV��,
�|�l���J���x�Q@��~�1d��$��o+[��H��
�͕��Z�)z1Um ��og�W�ž
--�fm�
����?��.qc}DƄ�������I"xZ���a.��|/�?83d��$�m+[�H�T�
��\����Am�(	�Bm����Y�r?�ҙW_�^��f
	�T�8�Z��}��Ou�P6�s��)�rg&��G�@�O�̓���T��T��G�aː���V���X��ߋ�7�M�/�&$P_�>T����4~���[�?�2��f��wˠ�=�,���%I��U�e,�&=���b{@��8�>I�������p6�As�Ө�lX��+ե������Fupzd\��˥k�d�pX�U��S�1@�Ԅ�%����(@u?�)������v߰�k$h�.>�z}��s����>�^�벧��^��x��*�*'�Z��uB��D�ڰ���g~���z*ݞ��r�>��hX=]Ao��H��he����`��N�û:o��_�8�����tH���p��|��Y�G�Z�,4~�(��V}ߡ練Dp3p�����pj�;Em��A�+�W��@��[�T�[?1QY6����(E;���<m]����6��È��q���Y��ⵇ�t���߃#��������������Ad;~��i��Ɔ��ij�>?{e16Т�d;��R`�IX�9X��?��[ǡ�e��P/��:X����Lc�Q'��tt�Αߦݱ�AMz��ȜC����y�V��;������7�3��윗��A:hǛF{M��f�a)I��v'b���O���ED�����P����{;endstream
+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
-2311 0 obj <<
+2912 0 obj <<
 /Type /Page
-/Contents 2312 0 R
-/Resources 2310 0 R
+/Contents 2913 0 R
+/Resources 2911 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2222 0 R
-/Annots [ 2348 0 R ]
+/Parent 2910 0 R
 >> endobj
-2348 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 228.31 109.748 237.222]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-product) >>
+2914 0 obj <<
+/D [2912 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2313 0 obj <<
-/D [2311 0 R /XYZ 71.731 729.265 null]
+358 0 obj <<
+/D [2912 0 R /XYZ 194.361 708.149 null]
 >> endobj
-2314 0 obj <<
-/D [2311 0 R /XYZ 71.731 741.22 null]
+1386 0 obj <<
+/D [2912 0 R /XYZ 71.731 704.957 null]
 >> endobj
-2315 0 obj <<
-/D [2311 0 R /XYZ 71.731 718.306 null]
+362 0 obj <<
+/D [2912 0 R /XYZ 152.762 673.679 null]
 >> endobj
-2316 0 obj <<
-/D [2311 0 R /XYZ 238.166 696.687 null]
+2915 0 obj <<
+/D [2912 0 R /XYZ 71.731 667.552 null]
 >> endobj
-2317 0 obj <<
-/D [2311 0 R /XYZ 76.712 680.05 null]
+2916 0 obj <<
+/D [2912 0 R /XYZ 188.442 654.75 null]
 >> endobj
-2318 0 obj <<
-/D [2311 0 R /XYZ 128.518 636.504 null]
+2917 0 obj <<
+/D [2912 0 R /XYZ 71.731 636.653 null]
 >> endobj
-2319 0 obj <<
-/D [2311 0 R /XYZ 76.712 600.145 null]
+2918 0 obj <<
+/D [2912 0 R /XYZ 71.731 636.653 null]
 >> endobj
-2320 0 obj <<
-/D [2311 0 R /XYZ 81.694 582.212 null]
+2919 0 obj <<
+/D [2912 0 R /XYZ 71.731 625.67 null]
 >> endobj
-2321 0 obj <<
-/D [2311 0 R /XYZ 81.694 582.212 null]
+2920 0 obj <<
+/D [2912 0 R /XYZ 91.656 607.925 null]
 >> endobj
-2322 0 obj <<
-/D [2311 0 R /XYZ 71.731 567.104 null]
+2921 0 obj <<
+/D [2912 0 R /XYZ 71.731 585.011 null]
 >> endobj
-2323 0 obj <<
-/D [2311 0 R /XYZ 81.694 551.328 null]
+2922 0 obj <<
+/D [2912 0 R /XYZ 91.656 567.078 null]
 >> endobj
-2324 0 obj <<
-/D [2311 0 R /XYZ 81.694 551.328 null]
+2923 0 obj <<
+/D [2912 0 R /XYZ 365.427 567.078 null]
 >> endobj
-2325 0 obj <<
-/D [2311 0 R /XYZ 71.731 536.219 null]
+2924 0 obj <<
+/D [2912 0 R /XYZ 71.731 554.959 null]
 >> endobj
-2326 0 obj <<
-/D [2311 0 R /XYZ 81.694 520.444 null]
+2925 0 obj <<
+/D [2912 0 R /XYZ 71.731 554.959 null]
 >> endobj
-2327 0 obj <<
-/D [2311 0 R /XYZ 81.694 520.444 null]
+2926 0 obj <<
+/D [2912 0 R /XYZ 71.731 544.164 null]
 >> endobj
-2328 0 obj <<
-/D [2311 0 R /XYZ 71.731 518.287 null]
+2927 0 obj <<
+/D [2912 0 R /XYZ 91.656 526.231 null]
 >> endobj
-2329 0 obj <<
-/D [2311 0 R /XYZ 81.694 502.511 null]
+2928 0 obj <<
+/D [2912 0 R /XYZ 363.424 526.231 null]
 >> endobj
-2330 0 obj <<
-/D [2311 0 R /XYZ 81.694 502.511 null]
+2929 0 obj <<
+/D [2912 0 R /XYZ 71.731 503.317 null]
 >> endobj
-2331 0 obj <<
-/D [2311 0 R /XYZ 71.731 487.403 null]
+2930 0 obj <<
+/D [2912 0 R /XYZ 273.602 490.366 null]
 >> endobj
-2332 0 obj <<
-/D [2311 0 R /XYZ 81.694 471.627 null]
+1387 0 obj <<
+/D [2912 0 R /XYZ 71.731 460.314 null]
 >> endobj
-2333 0 obj <<
-/D [2311 0 R /XYZ 81.694 471.627 null]
+366 0 obj <<
+/D [2912 0 R /XYZ 244.6 423.098 null]
 >> endobj
-2334 0 obj <<
-/D [2311 0 R /XYZ 71.731 443.567 null]
+2931 0 obj <<
+/D [2912 0 R /XYZ 71.731 412.733 null]
 >> endobj
-2335 0 obj <<
-/D [2311 0 R /XYZ 81.694 427.791 null]
+2932 0 obj <<
+/D [2912 0 R /XYZ 419.444 402.974 null]
 >> endobj
-2336 0 obj <<
-/D [2311 0 R /XYZ 81.694 427.791 null]
+2933 0 obj <<
+/D [2912 0 R /XYZ 129.275 390.022 null]
 >> endobj
-2337 0 obj <<
-/D [2311 0 R /XYZ 71.731 399.731 null]
+2934 0 obj <<
+/D [2912 0 R /XYZ 390.741 390.022 null]
 >> endobj
-2338 0 obj <<
-/D [2311 0 R /XYZ 81.694 383.955 null]
+2935 0 obj <<
+/D [2912 0 R /XYZ 418.487 390.022 null]
 >> endobj
-2339 0 obj <<
-/D [2311 0 R /XYZ 81.694 383.955 null]
+2936 0 obj <<
+/D [2912 0 R /XYZ 71.731 382.884 null]
 >> endobj
-2340 0 obj <<
-/D [2311 0 R /XYZ 71.731 368.847 null]
+2937 0 obj <<
+/D [2912 0 R /XYZ 299.936 359.138 null]
 >> endobj
-2341 0 obj <<
-/D [2311 0 R /XYZ 81.694 353.071 null]
+2938 0 obj <<
+/D [2912 0 R /XYZ 71.731 339.049 null]
 >> endobj
-2342 0 obj <<
-/D [2311 0 R /XYZ 81.694 353.071 null]
+2939 0 obj <<
+/D [2912 0 R /XYZ 120.869 328.254 null]
 >> endobj
-2343 0 obj <<
-/D [2311 0 R /XYZ 374.742 353.071 null]
+2940 0 obj <<
+/D [2912 0 R /XYZ 319.55 315.302 null]
 >> endobj
-2344 0 obj <<
-/D [2311 0 R /XYZ 71.731 350.914 null]
+2941 0 obj <<
+/D [2912 0 R /XYZ 448.374 315.302 null]
 >> endobj
-2345 0 obj <<
-/D [2311 0 R /XYZ 81.694 335.138 null]
+1388 0 obj <<
+/D [2912 0 R /XYZ 71.731 295.213 null]
 >> endobj
-2346 0 obj <<
-/D [2311 0 R /XYZ 81.694 335.138 null]
+370 0 obj <<
+/D [2912 0 R /XYZ 242.592 257.997 null]
 >> endobj
-1176 0 obj <<
-/D [2311 0 R /XYZ 71.731 295.124 null]
+2942 0 obj <<
+/D [2912 0 R /XYZ 71.731 247.632 null]
 >> endobj
-306 0 obj <<
-/D [2311 0 R /XYZ 179.498 252.026 null]
+1389 0 obj <<
+/D [2912 0 R /XYZ 71.731 235.716 null]
 >> endobj
-2347 0 obj <<
-/D [2311 0 R /XYZ 71.731 243.203 null]
+374 0 obj <<
+/D [2912 0 R /XYZ 215 203.402 null]
 >> endobj
-2349 0 obj <<
-/D [2311 0 R /XYZ 71.731 197.426 null]
+2943 0 obj <<
+/D [2912 0 R /XYZ 71.731 194.765 null]
 >> endobj
-2350 0 obj <<
-/D [2311 0 R /XYZ 71.731 155.648 null]
+2944 0 obj <<
+/D [2912 0 R /XYZ 71.731 177.335 null]
 >> endobj
-2351 0 obj <<
-/D [2311 0 R /XYZ 71.731 140.639 null]
+2945 0 obj <<
+/D [2912 0 R /XYZ 361.806 166.54 null]
 >> endobj
-2352 0 obj <<
-/D [2311 0 R /XYZ 71.731 135.658 null]
+2946 0 obj <<
+/D [2912 0 R /XYZ 490.942 153.589 null]
 >> endobj
-2353 0 obj <<
-/D [2311 0 R /XYZ 89.664 114.9 null]
+2947 0 obj <<
+/D [2912 0 R /XYZ 71.731 140.637 null]
 >> endobj
-2354 0 obj <<
-/D [2311 0 R /XYZ 71.731 112.744 null]
+2948 0 obj <<
+/D [2912 0 R /XYZ 71.731 120.548 null]
 >> endobj
-2355 0 obj <<
-/D [2311 0 R /XYZ 89.664 96.968 null]
+2949 0 obj <<
+/D [2912 0 R /XYZ 315.724 109.753 null]
 >> endobj
-2356 0 obj <<
-/D [2311 0 R /XYZ 71.731 94.811 null]
+2950 0 obj <<
+/D [2912 0 R /XYZ 71.731 102.615 null]
 >> endobj
-2310 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F44 1440 0 R /F48 1452 0 R /F27 1064 0 R /F35 1229 0 R >>
+2911 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2360 0 obj <<
-/Length 2030      
+2953 0 obj <<
+/Length 2239      
 /Filter /FlateDecode
 >>
 stream
-xڝY�r�6}�Wh�i�fIJ���)q�֝8I'�N�H�$Lxѐ`�� vA�8�xƺp��={�(���֡�^�K����x�Ϟ�#<��Y��(rّy�����r���W���a�
-lg�e�o�h���9�>�����2����ׯ/�L䢂�E~�_������HS�����g7Fw�\���rҼU��M4����.l�:�l��je\�֭(C"�0�1h����V��>��}5�qɤng[��&7���or����<:�ER�H�?�<�7�%�վg)�#�@K_���A�S\��G�f_�	��Tݿn�]�%`�*�_��E�!s�.B0�,q/�+j�x�]�Eŕ��v~(���"
-�52��|�.P��}Y��O�a���W��o�"^�e��5���f��L�ғ����0�q�8]�Snn����D���dP?8�\&��I���H�59�	~/4��EƤس4E����7^X���\����{�J?�$���z�ϵ�������x�q�#4�K$��
�8�\!M�R�0�_�u ��:�r��("iV��j�Gi9�Ea��~���#�R&�7��";�Z��:��D��[��ZI�&���i9��]��� <i`�L����Ӎ��cD9�3 R�+|}\�s}���cQ�^%��
-�Ԋc�3%��ߟ��m���w^��q���z/��y��|�����)�+�`x6���9޻�>���lB�thPqE���Nb�8p�%�2�LH�ǒe��s�ޝ���9�ϊ�t�W<'��9J���E$��Ŋ=_�X����}Q&���fm
-]L�%Km-U{j�T�H���؉THD嫀��V�}J����"(�*������J�CJڤ}c"bb�?���"��(�th��XB�#�����e�Q@8���pT�Đ�)�`�Ц�o/(P���]T1�Վiթ����x�����խ_OE[�5,��LM�hy+OL:@�U��d���T���O��u�.��c�@.'qeg
-�S�h}M\��~U$�W��b�7���4�Lk��K<c"%���݄OE1���%�J���~��mZ[�}�Z��ˏܧ��r�Si`1���	
F��ʜ�pNaH�^�a��N�^��z�*~h�5m=�"�*UQ��2��@�ƭ~�b�!��$��s۾@[3�Jnv6b&:#5RfHr.E��p��*�#d�8plEхnV{P�G�%���E3C���ǃ���m49etdƦQ��cSƀ�'��)�ζJ���}��I����)���3�de����#��(���0�A�6	�ETK(��Q@{���s\���8�/����]���
-)	�RO�+���1�V+3
-�L����lB����}k���DH���D�JO��]��{�i�f�vû\HA�W��='ckդ����w9<g�ʤ�VJ���cŇ,��^M�����nۡؖՕ�S9"�Gھ�l�P�B
-M����7QI������I��XŇ�5sw`�l1�l�JI�����ɭ;��}����C-w��s�B�LUS_L}�wg9Et��A�~��=�RM�l�� <�\dR��9~��A��U'a�]��U�⑒��i��&�Z��|�Y�
-N����X�9���ʝX;XcAHFK7a�M��B?V��U�M��Vd,u��d��+z2qN(�7m�����]T��Ԃu��Yd�m� ��>�QQd�Z�z�	�ζJ�೪<�`G��v��f@����hf�6�S@��x5du`aJ�Dp���g�K��^B(�K�K�dcn�~�n*���В�dc1����N�v����-��`�ޑSJ��ĥ}$u4�)^���Lw�n@��P�A�\��u�
-��H!#Cs�d��H��ѓ��q�frj�婹�r�r�)sr��.�;	�N�E�V=��P���Eą��)#���A��V����ܞ�����eH940�
��Q�waӌت���&��o������
���X�ş�Z�ޯr�Jum�x������/���-endstream
+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
-2359 0 obj <<
+2952 0 obj <<
 /Type /Page
-/Contents 2360 0 R
-/Resources 2358 0 R
+/Contents 2953 0 R
+/Resources 2951 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2222 0 R
+/Parent 2910 0 R
 >> endobj
-2361 0 obj <<
-/D [2359 0 R /XYZ 71.731 729.265 null]
+2954 0 obj <<
+/D [2952 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2362 0 obj <<
-/D [2359 0 R /XYZ 89.664 708.344 null]
+2955 0 obj <<
+/D [2952 0 R /XYZ 71.731 741.22 null]
 >> endobj
-1177 0 obj <<
-/D [2359 0 R /XYZ 71.731 657.37 null]
+2956 0 obj <<
+/D [2952 0 R /XYZ 89.664 708.344 null]
 >> endobj
-310 0 obj <<
-/D [2359 0 R /XYZ 210.434 614.272 null]
+2957 0 obj <<
+/D [2952 0 R /XYZ 219.624 708.344 null]
 >> endobj
-2363 0 obj <<
-/D [2359 0 R /XYZ 71.731 602.101 null]
+2958 0 obj <<
+/D [2952 0 R /XYZ 71.731 693.235 null]
 >> endobj
-2364 0 obj <<
-/D [2359 0 R /XYZ 71.731 546.721 null]
+2959 0 obj <<
+/D [2952 0 R /XYZ 89.664 677.46 null]
 >> endobj
-2365 0 obj <<
-/D [2359 0 R /XYZ 488.305 497.072 null]
+2960 0 obj <<
+/D [2952 0 R /XYZ 134.39 677.46 null]
 >> endobj
-2366 0 obj <<
-/D [2359 0 R /XYZ 71.731 476.982 null]
+2961 0 obj <<
+/D [2952 0 R /XYZ 109.868 664.508 null]
 >> endobj
-2367 0 obj <<
-/D [2359 0 R /XYZ 71.731 464.031 null]
+1390 0 obj <<
+/D [2952 0 R /XYZ 71.731 641.594 null]
 >> endobj
-2368 0 obj <<
-/D [2359 0 R /XYZ 71.731 459.05 null]
+378 0 obj <<
+/D [2952 0 R /XYZ 172.607 606.127 null]
 >> endobj
-2369 0 obj <<
-/D [2359 0 R /XYZ 89.664 438.292 null]
+2962 0 obj <<
+/D [2952 0 R /XYZ 71.731 597.49 null]
 >> endobj
-2370 0 obj <<
-/D [2359 0 R /XYZ 71.731 436.136 null]
+2963 0 obj <<
+/D [2952 0 R /XYZ 389.137 587.198 null]
 >> endobj
-2371 0 obj <<
-/D [2359 0 R /XYZ 89.664 420.36 null]
+2964 0 obj <<
+/D [2952 0 R /XYZ 472.996 587.198 null]
 >> endobj
-2372 0 obj <<
-/D [2359 0 R /XYZ 71.731 418.203 null]
+2965 0 obj <<
+/D [2952 0 R /XYZ 71.731 580.06 null]
 >> endobj
-2373 0 obj <<
-/D [2359 0 R /XYZ 89.664 402.427 null]
+2966 0 obj <<
+/D [2952 0 R /XYZ 106.6 556.314 null]
 >> endobj
-1178 0 obj <<
-/D [2359 0 R /XYZ 71.731 369.386 null]
+1391 0 obj <<
+/D [2952 0 R /XYZ 71.731 539.213 null]
 >> endobj
-314 0 obj <<
-/D [2359 0 R /XYZ 176.83 326.288 null]
+382 0 obj <<
+/D [2952 0 R /XYZ 249.377 501.997 null]
 >> endobj
-2374 0 obj <<
-/D [2359 0 R /XYZ 71.731 317.466 null]
+2967 0 obj <<
+/D [2952 0 R /XYZ 71.731 491.632 null]
 >> endobj
-2375 0 obj <<
-/D [2359 0 R /XYZ 71.731 284.64 null]
+2968 0 obj <<
+/D [2952 0 R /XYZ 133.174 481.873 null]
 >> endobj
-2376 0 obj <<
-/D [2359 0 R /XYZ 71.731 273.746 null]
+2969 0 obj <<
+/D [2952 0 R /XYZ 311.772 481.873 null]
 >> endobj
-2377 0 obj <<
-/D [2359 0 R /XYZ 71.731 268.764 null]
+2970 0 obj <<
+/D [2952 0 R /XYZ 175.111 468.922 null]
 >> endobj
-2378 0 obj <<
-/D [2359 0 R /XYZ 89.664 245.95 null]
+2971 0 obj <<
+/D [2952 0 R /XYZ 71.731 448.832 null]
 >> endobj
-2379 0 obj <<
-/D [2359 0 R /XYZ 71.731 243.793 null]
+1392 0 obj <<
+/D [2952 0 R /XYZ 71.731 435.881 null]
 >> endobj
-2380 0 obj <<
-/D [2359 0 R /XYZ 89.664 228.017 null]
+386 0 obj <<
+/D [2952 0 R /XYZ 201.18 403.567 null]
 >> endobj
-2381 0 obj <<
-/D [2359 0 R /XYZ 71.731 212.909 null]
+2972 0 obj <<
+/D [2952 0 R /XYZ 71.731 394.929 null]
 >> endobj
-2382 0 obj <<
-/D [2359 0 R /XYZ 89.664 197.133 null]
+2973 0 obj <<
+/D [2952 0 R /XYZ 165.864 384.638 null]
 >> endobj
-1179 0 obj <<
-/D [2359 0 R /XYZ 71.731 189.995 null]
+2974 0 obj <<
+/D [2952 0 R /XYZ 71.731 371.587 null]
 >> endobj
-318 0 obj <<
-/D [2359 0 R /XYZ 194.2 146.897 null]
+390 0 obj <<
+/D [2952 0 R /XYZ 142.614 341.3 null]
 >> endobj
-2383 0 obj <<
-/D [2359 0 R /XYZ 71.731 138.074 null]
+2975 0 obj <<
+/D [2952 0 R /XYZ 71.731 336.115 null]
 >> endobj
-2384 0 obj <<
-/D [2359 0 R /XYZ 71.731 110.23 null]
+2976 0 obj <<
+/D [2952 0 R /XYZ 71.731 303.278 null]
 >> endobj
-2358 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R >>
+394 0 obj <<
+/D [2952 0 R /XYZ 166.016 272.558 null]
+>> endobj
+2977 0 obj <<
+/D [2952 0 R /XYZ 71.731 265.48 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]
+>> endobj
+2979 0 obj <<
+/D [2952 0 R /XYZ 71.731 196.618 null]
+>> endobj
+2980 0 obj <<
+/D [2952 0 R /XYZ 71.731 172.931 null]
+>> endobj
+2981 0 obj <<
+/D [2952 0 R /XYZ 266.731 172.931 null]
+>> endobj
+2982 0 obj <<
+/D [2952 0 R /XYZ 71.731 147.029 null]
+>> endobj
+2983 0 obj <<
+/D [2952 0 R /XYZ 71.731 139.89 null]
+>> endobj
+2984 0 obj <<
+/D [2952 0 R /XYZ 244.236 116.144 null]
+>> endobj
+2985 0 obj <<
+/D [2952 0 R /XYZ 397.391 116.144 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 ]
 >> endobj
-2387 0 obj <<
-/Length 2121      
+2988 0 obj <<
+/Length 2588      
 /Filter /FlateDecode
 >>
 stream
-xڅYK��
�ϯp�dW�l��^sٚM�S��MR;�!�́�h[iYTDy=�_P��䚪�DC�����ݕ��U�Ѓ��Ur����˟?�(�C�]O��ç�7�[�,����;�xz�E>_�m�xe-�����c��%�fE�a=+�v����ݜ�������O_�m�Yy��#������`��_��V�1o�o��WU���������g{��j#�K�K]�B�N�h��:S��w�0.���e)Ee�O[��(|���J�����v�Ts��� |���mSȔ�����e-������5Z��
l����h��6��ڡ�;׀6����Y�@��@iT��JʂY�x���-�W��â}�(<l#p������%xv�-���.h	�P��?�S��[^�H�"���"�����y�Ra��Y��Ix+���؄��<Rc\v��V� �?�5����E�#���7��A�X�m�M���T������P����'q�l>�a�˗��df�C���oj�9|�Gj'�}ISD���>VGU�
��e��/�J�����7�r�����^Ϡ�ǜ9�"x��v(a���A75���C���ע%��X�ީ��'S�P�
-� ���Oh���p���?���Dip��%f�7<�'���֪��
�4��X#��/Yr��h���%�5�b�e��Y���ݼNV-���y�o�T��]��o������A�;D�4K!������J�0mXVs���Xi��)EUg�i���F���6MK��ۮe�V
]�2�|Ɗ ��Z�R��P�)�$�j�u���8��)��fP$�mE�k�K���x͒R��U�|;���s�+T� ?\�ט`S&p7s$�{>㱷\ǝ�l!����~��������Zc�m�&���L�L�����|@Ѝ�� �>3)�s��(�����T��iqT����8�����ý-/�=C����ܐq׷#�Zxw�ø�#��NFo0����t6��e��@�L$CE� ܛY�c�	���r`/e�N��ѵ�oz�&��+o�![Y�W�Of�1�������3�X&���`��=Χ��ף��zIe)���c�fm.��@kYm����oەRq�Z�0މ��i�%�֯v��r�5�D��ke�����J}6S��T�L_���.��0Ph3Cn��R�
-���4NrhF���1�LԈb%�{���|����=:	$^�;W1n�b
-5e�Ʉ0A�}=x͏�:@�`�n��Mkt�\�wJ��0f�����R={4x�?�C�G4�U-�������V�3/�-�H_����ڮ���rK'_��wɒ�RV��f�����mD�ь^pket/]��]���w�����a�G	�+�oU�&�3���tF�����T�x4�����0�����E��9"�����z
-��17vQ�8�m�mr�p��",p^Q�����g4c��t�H����.���S1�����"�����6�c�����b�S������
Ǘ����B"�G����/K�Gj��*��av��J@*Ar�?I�y��(%�4y.Ӯz��Jޡ�Ajw��M��2��[�kn����6�;��y��{�aL���)xlL�՚�t������B��~ֱ�u����}׆Q���C*���R�.mJ�XFG����M��5���9�y�tFǔ.�Bl�"+Zv $7�Em�3�y-kj|�H�˨���F�qkiG����d��dfE?�<����l��
-l�EA��K��c��Y䜈���ɪ'3��,~#y`�9r�Gj�QCF�d/����Ct1���+�i3\��dr������~i������������X<�N�<���@eÖ���C�ð�f5+��@"ڜ�7@��*|�40��Y�kV�j��;"�C;.����`�D��l�ˍ���D� ��Tci���q5�����c�&�3c�=�Du��]�6C�"���7�!>@�d����f	��]��y2��<Sl���?
-�6�41����x4`t��EY�̡E/�Z��{1����ڏ�jQE!e::�C=N��t���0Oh��v��f����>b�.������s8)i���5pj�����endstream
+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�gJ�]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
-2386 0 obj <<
+2987 0 obj <<
 /Type /Page
-/Contents 2387 0 R
-/Resources 2385 0 R
+/Contents 2988 0 R
+/Resources 2986 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2434 0 R
->> endobj
-2388 0 obj <<
-/D [2386 0 R /XYZ 71.731 729.265 null]
->> endobj
-2389 0 obj <<
-/D [2386 0 R /XYZ 71.731 741.22 null]
->> endobj
-2390 0 obj <<
-/D [2386 0 R /XYZ 71.731 718.306 null]
->> endobj
-2391 0 obj <<
-/D [2386 0 R /XYZ 71.731 668.792 null]
->> endobj
-2392 0 obj <<
-/D [2386 0 R /XYZ 71.731 654.401 null]
+/Parent 2910 0 R
 >> endobj
-2393 0 obj <<
-/D [2386 0 R /XYZ 71.731 649.42 null]
+2989 0 obj <<
+/D [2987 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2394 0 obj <<
-/D [2386 0 R /XYZ 89.664 627.945 null]
+2990 0 obj <<
+/D [2987 0 R /XYZ 111.017 708.344 null]
 >> endobj
-2395 0 obj <<
-/D [2386 0 R /XYZ 71.731 625.788 null]
+2991 0 obj <<
+/D [2987 0 R /XYZ 279.62 708.344 null]
 >> endobj
-2396 0 obj <<
-/D [2386 0 R /XYZ 89.664 610.012 null]
+2992 0 obj <<
+/D [2987 0 R /XYZ 71.731 695.392 null]
 >> endobj
-2397 0 obj <<
-/D [2386 0 R /XYZ 71.731 607.856 null]
+2993 0 obj <<
+/D [2987 0 R /XYZ 345.153 695.392 null]
 >> endobj
-2398 0 obj <<
-/D [2386 0 R /XYZ 89.664 592.08 null]
+2994 0 obj <<
+/D [2987 0 R /XYZ 485.41 664.508 null]
 >> endobj
-2399 0 obj <<
-/D [2386 0 R /XYZ 71.731 553.126 null]
+2995 0 obj <<
+/D [2987 0 R /XYZ 71.731 644.419 null]
 >> endobj
-2400 0 obj <<
-/D [2386 0 R /XYZ 89.664 535.293 null]
+2996 0 obj <<
+/D [2987 0 R /XYZ 109.396 633.624 null]
 >> endobj
-1180 0 obj <<
-/D [2386 0 R /XYZ 71.731 515.203 null]
+2997 0 obj <<
+/D [2987 0 R /XYZ 143.754 633.624 null]
 >> endobj
-322 0 obj <<
-/D [2386 0 R /XYZ 150.026 472.106 null]
+2998 0 obj <<
+/D [2987 0 R /XYZ 388.886 633.624 null]
 >> endobj
-2401 0 obj <<
-/D [2386 0 R /XYZ 71.731 459.668 null]
+2999 0 obj <<
+/D [2987 0 R /XYZ 134.644 620.672 null]
 >> endobj
-2402 0 obj <<
-/D [2386 0 R /XYZ 356.968 450.546 null]
+3000 0 obj <<
+/D [2987 0 R /XYZ 226.941 620.672 null]
 >> endobj
-2403 0 obj <<
-/D [2386 0 R /XYZ 384.714 450.546 null]
+3001 0 obj <<
+/D [2987 0 R /XYZ 71.731 607.721 null]
 >> endobj
-2404 0 obj <<
-/D [2386 0 R /XYZ 395.224 424.644 null]
+3002 0 obj <<
+/D [2987 0 R /XYZ 146.719 607.721 null]
 >> endobj
-2405 0 obj <<
-/D [2386 0 R /XYZ 71.731 409.535 null]
+3003 0 obj <<
+/D [2987 0 R /XYZ 71.731 602.62 null]
 >> endobj
-326 0 obj <<
-/D [2386 0 R /XYZ 235.992 372.32 null]
+3004 0 obj <<
+/D [2987 0 R /XYZ 71.731 556.747 null]
 >> endobj
-2406 0 obj <<
-/D [2386 0 R /XYZ 71.731 362.177 null]
+3005 0 obj <<
+/D [2987 0 R /XYZ 71.731 556.747 null]
 >> endobj
-2407 0 obj <<
-/D [2386 0 R /XYZ 255.939 352.195 null]
+3006 0 obj <<
+/D [2987 0 R /XYZ 257.935 545.953 null]
 >> endobj
-2408 0 obj <<
-/D [2386 0 R /XYZ 154.091 339.244 null]
+3007 0 obj <<
+/D [2987 0 R /XYZ 439.391 533.001 null]
 >> endobj
-2409 0 obj <<
-/D [2386 0 R /XYZ 71.731 332.106 null]
+3008 0 obj <<
+/D [2987 0 R /XYZ 146.138 520.05 null]
 >> endobj
-2410 0 obj <<
-/D [2386 0 R /XYZ 220.591 321.311 null]
+3009 0 obj <<
+/D [2987 0 R /XYZ 222.467 520.05 null]
 >> endobj
-2411 0 obj <<
-/D [2386 0 R /XYZ 71.731 314.173 null]
+3010 0 obj <<
+/D [2987 0 R /XYZ 281.244 507.098 null]
 >> endobj
-2412 0 obj <<
-/D [2386 0 R /XYZ 89.664 293.416 null]
+3011 0 obj <<
+/D [2987 0 R /XYZ 435.614 507.098 null]
 >> endobj
-2413 0 obj <<
-/D [2386 0 R /XYZ 299.943 293.416 null]
+3012 0 obj <<
+/D [2987 0 R /XYZ 71.731 499.96 null]
 >> endobj
-2414 0 obj <<
-/D [2386 0 R /XYZ 71.731 286.278 null]
+402 0 obj <<
+/D [2987 0 R /XYZ 154.051 469.24 null]
 >> endobj
-2415 0 obj <<
-/D [2386 0 R /XYZ 164.608 275.483 null]
+3013 0 obj <<
+/D [2987 0 R /XYZ 71.731 462.162 null]
 >> endobj
-2416 0 obj <<
-/D [2386 0 R /XYZ 287.74 275.483 null]
+3014 0 obj <<
+/D [2987 0 R /XYZ 71.731 405.315 null]
 >> endobj
-2417 0 obj <<
-/D [2386 0 R /XYZ 258.748 262.531 null]
+3015 0 obj <<
+/D [2987 0 R /XYZ 71.731 405.315 null]
 >> endobj
-2418 0 obj <<
-/D [2386 0 R /XYZ 276.999 262.531 null]
+3016 0 obj <<
+/D [2987 0 R /XYZ 71.731 374.431 null]
 >> endobj
-2419 0 obj <<
-/D [2386 0 R /XYZ 311.022 262.531 null]
+406 0 obj <<
+/D [2987 0 R /XYZ 142.923 343.711 null]
 >> endobj
-2420 0 obj <<
-/D [2386 0 R /XYZ 76.712 244.599 null]
+3017 0 obj <<
+/D [2987 0 R /XYZ 71.731 338.526 null]
 >> endobj
-2421 0 obj <<
-/D [2386 0 R /XYZ 89.664 226.666 null]
+3018 0 obj <<
+/D [2987 0 R /XYZ 224.195 312.827 null]
 >> endobj
-2422 0 obj <<
-/D [2386 0 R /XYZ 208.796 226.666 null]
+3019 0 obj <<
+/D [2987 0 R /XYZ 71.731 279.786 null]
 >> endobj
-2423 0 obj <<
-/D [2386 0 R /XYZ 71.731 224.509 null]
+410 0 obj <<
+/D [2987 0 R /XYZ 171.774 249.066 null]
 >> endobj
-2424 0 obj <<
-/D [2386 0 R /XYZ 89.664 208.733 null]
+3020 0 obj <<
+/D [2987 0 R /XYZ 71.731 241.988 null]
 >> endobj
-2425 0 obj <<
-/D [2386 0 R /XYZ 178.191 208.733 null]
+3021 0 obj <<
+/D [2987 0 R /XYZ 181.465 231.133 null]
 >> endobj
-2426 0 obj <<
-/D [2386 0 R /XYZ 284.412 208.733 null]
+3022 0 obj <<
+/D [2987 0 R /XYZ 380.939 231.133 null]
 >> endobj
-2427 0 obj <<
-/D [2386 0 R /XYZ 71.731 206.576 null]
+3023 0 obj <<
+/D [2987 0 R /XYZ 473.597 231.133 null]
 >> endobj
-2428 0 obj <<
-/D [2386 0 R /XYZ 89.664 190.8 null]
+3024 0 obj <<
+/D [2987 0 R /XYZ 509.52 231.133 null]
 >> endobj
-2429 0 obj <<
-/D [2386 0 R /XYZ 89.664 177.849 null]
+3025 0 obj <<
+/D [2987 0 R /XYZ 191.511 218.182 null]
 >> endobj
-2430 0 obj <<
-/D [2386 0 R /XYZ 202.639 177.849 null]
+3026 0 obj <<
+/D [2987 0 R /XYZ 71.731 211.044 null]
 >> endobj
-2431 0 obj <<
-/D [2386 0 R /XYZ 71.731 176.41 null]
+414 0 obj <<
+/D [2987 0 R /XYZ 148.701 180.324 null]
 >> endobj
-2432 0 obj <<
-/D [2386 0 R /XYZ 89.664 159.916 null]
+3027 0 obj <<
+/D [2987 0 R /XYZ 71.731 175.138 null]
 >> endobj
-2433 0 obj <<
-/D [2386 0 R /XYZ 71.731 124.051 null]
+3028 0 obj <<
+/D [2987 0 R /XYZ 71.731 142.301 null]
 >> endobj
-2385 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F44 1440 0 R /F27 1064 0 R /F35 1229 0 R >>
+2986 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F48 1896 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2437 0 obj <<
-/Length 1657      
+3031 0 obj <<
+/Length 2335      
 /Filter /FlateDecode
 >>
 stream
-xڭXKs�6��W�fjb!|��%U:M���M��遢`���"���]�� @Qv��xƤH`�~���Y�l�e��dq����]8�����"\��%g�����OI2+Y�'���,
C���2�Y�ų�����}���4_�Y$�\W�c#��7bg}<ϣ`��9����_�~\[�Y�de��h���/NfQʒ4W��a�����%l�beֲVy���'0#
-�]��1R"Vf���I�ҥ�?B	���0�gN��:�-*X����k��J��}5����<�n�����/�83��3��l��e�+J���1��wH�$�1KKu�_*�,����g�v�-#�g�ը�Z?���A�O�o�T��Uo�*s�zFПq��x�|�f�z߈'�S>�����N
-ߌ
�Tݓ�>��3]㽈J��"�Y�ڿ�
Գ|��e�V�;�n�NK�U�=� Z������\�o7�����1
-��<<����+�]��oqo'B���?����q�b���������o+�F�#�o
-�3�<T ��9�aݟ����@r��Yt^�=��������E��0�v����b��,�e���oj�����wA{έ�ɨzs�(�VՈ�#�P
p�_��?r@�)1
- U��c�����}���k{�]GX����6&A��'O����#�����
-��R2�B舚ؤ��ɴ6
-�3�Z��U�?re�v1���~DCK���֙B�:����X���[�(6����M�Ly�aA,,�T��9��Zi�9�����P'���`8Cr[�{=����%���z����A�ӘS��Fl����-f���_Ѥz��|��!��!�`�R��-ꑢ�
-�n9?�_�J�`�;T(H�� A�AoO�7�7ģU�nԊZ�)���7��^n�W�%0I⺶���mn���7Ш�;v7�^;ei"Pױ>Vh4d�Zє�#�e�Pe�8�-}Du$|Z���:\�h('^s��k����c��:!���ٙ�������ډ�)8�����0J2k?���Cբ8��Ч_2�/]j��b#<R�3�{P)Y� �����EK��@�4��J_g"s��QdnZx̅�)��"�4��Iw��!3�� *��̙���\P
-�f��}��Œ�ѳA��,J<�B�Vpxc���r��@0��u[T�CͲfcƃ\�ö#��Q�Լ�����`���y����S"��i��ݹ�[���R5����͘��{T��`ak�Wn��~d���)��:P^��<xnu���:$�՛�y�ܹ�~��%���VgN�0���!_������7{�@9�Ӊz��+s�$��s�^�j���xp8w�Ġ�"1��ŝ	����W�U�_����E#���/mID���v|;�P�E�;U�i�ڶ��l��d^5�rr���l���NT�����0��!An$[����po��܁��;ʸZqs;�~|�	�V���dwb�f(��'�Q�������`�ԇ��8�|�Ȯ�~+�EV��D��'p25��(���F��]�p�5{�h*o�P08Lx۹��v��P&p2S4�e�
t��Tw�D
-�/[�J�O��'�B�6��ӐN�d��sSE�Υ�����9��"-Xg��>�K���fq�˜�誙��lz��nڐ�endstream
+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�
+cL��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+g׉k`	��8���k1]�N<7R��Ѕ�[}+�wǢ�'��<���*�7m>�<ksA�s���\�_��D����	[���|-�C=����uY�S�9oR���8��"�|��u(��*ت86��'�Ñ����|�X���B25��J�����P����DŽ�r��?�%���Lfendstream
 endobj
-2436 0 obj <<
+3030 0 obj <<
 /Type /Page
-/Contents 2437 0 R
-/Resources 2435 0 R
+/Contents 3031 0 R
+/Resources 3029 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2434 0 R
->> endobj
-2438 0 obj <<
-/D [2436 0 R /XYZ 71.731 729.265 null]
->> endobj
-330 0 obj <<
-/D [2436 0 R /XYZ 194.361 708.149 null]
->> endobj
-2439 0 obj <<
-/D [2436 0 R /XYZ 71.731 704.957 null]
->> endobj
-334 0 obj <<
-/D [2436 0 R /XYZ 152.762 673.679 null]
->> endobj
-2440 0 obj <<
-/D [2436 0 R /XYZ 71.731 667.552 null]
->> endobj
-2441 0 obj <<
-/D [2436 0 R /XYZ 188.442 654.75 null]
->> endobj
-2442 0 obj <<
-/D [2436 0 R /XYZ 71.731 636.653 null]
->> endobj
-2443 0 obj <<
-/D [2436 0 R /XYZ 71.731 636.653 null]
->> endobj
-2444 0 obj <<
-/D [2436 0 R /XYZ 71.731 625.67 null]
->> endobj
-2445 0 obj <<
-/D [2436 0 R /XYZ 91.656 607.925 null]
+/Parent 2910 0 R
 >> endobj
-2446 0 obj <<
-/D [2436 0 R /XYZ 71.731 585.011 null]
+3032 0 obj <<
+/D [3030 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2447 0 obj <<
-/D [2436 0 R /XYZ 91.656 567.078 null]
+418 0 obj <<
+/D [3030 0 R /XYZ 224.367 708.344 null]
 >> endobj
-2448 0 obj <<
-/D [2436 0 R /XYZ 365.427 567.078 null]
+3033 0 obj <<
+/D [3030 0 R /XYZ 71.731 701.265 null]
 >> endobj
-2449 0 obj <<
-/D [2436 0 R /XYZ 71.731 554.959 null]
+3034 0 obj <<
+/D [3030 0 R /XYZ 71.731 664.508 null]
 >> endobj
-2450 0 obj <<
-/D [2436 0 R /XYZ 71.731 554.959 null]
+3035 0 obj <<
+/D [3030 0 R /XYZ 71.731 644.419 null]
 >> endobj
-2451 0 obj <<
-/D [2436 0 R /XYZ 71.731 544.164 null]
+422 0 obj <<
+/D [3030 0 R /XYZ 170.649 613.699 null]
 >> endobj
-2452 0 obj <<
-/D [2436 0 R /XYZ 91.656 526.231 null]
+3036 0 obj <<
+/D [3030 0 R /XYZ 71.731 606.62 null]
 >> endobj
-2453 0 obj <<
-/D [2436 0 R /XYZ 363.424 526.231 null]
+3037 0 obj <<
+/D [3030 0 R /XYZ 129.576 595.766 null]
 >> endobj
-2454 0 obj <<
-/D [2436 0 R /XYZ 71.731 503.317 null]
+3038 0 obj <<
+/D [3030 0 R /XYZ 279.855 582.814 null]
 >> endobj
-2455 0 obj <<
-/D [2436 0 R /XYZ 267.744 490.366 null]
+3039 0 obj <<
+/D [3030 0 R /XYZ 349.928 582.814 null]
 >> endobj
-2456 0 obj <<
-/D [2436 0 R /XYZ 71.731 460.314 null]
+1393 0 obj <<
+/D [3030 0 R /XYZ 71.731 552.762 null]
 >> endobj
-338 0 obj <<
-/D [2436 0 R /XYZ 244.6 423.098 null]
+426 0 obj <<
+/D [3030 0 R /XYZ 199.853 519.452 null]
 >> endobj
-2457 0 obj <<
-/D [2436 0 R /XYZ 71.731 412.733 null]
+3040 0 obj <<
+/D [3030 0 R /XYZ 71.731 510.815 null]
 >> endobj
-2458 0 obj <<
-/D [2436 0 R /XYZ 410.746 402.974 null]
+3041 0 obj <<
+/D [3030 0 R /XYZ 159.666 500.523 null]
 >> endobj
-2459 0 obj <<
-/D [2436 0 R /XYZ 129.275 390.022 null]
+3042 0 obj <<
+/D [3030 0 R /XYZ 71.731 480.433 null]
 >> endobj
-2460 0 obj <<
-/D [2436 0 R /XYZ 390.741 390.022 null]
+3043 0 obj <<
+/D [3030 0 R /XYZ 186.589 469.639 null]
 >> endobj
-2461 0 obj <<
-/D [2436 0 R /XYZ 418.487 390.022 null]
+3044 0 obj <<
+/D [3030 0 R /XYZ 71.731 467.482 null]
 >> endobj
-2462 0 obj <<
-/D [2436 0 R /XYZ 71.731 382.884 null]
+3045 0 obj <<
+/D [3030 0 R /XYZ 118.555 428.918 null]
 >> endobj
-2463 0 obj <<
-/D [2436 0 R /XYZ 298.598 359.138 null]
+3046 0 obj <<
+/D [3030 0 R /XYZ 232.228 420.454 null]
 >> endobj
-2464 0 obj <<
-/D [2436 0 R /XYZ 71.731 339.049 null]
+3047 0 obj <<
+/D [3030 0 R /XYZ 378.496 397.141 null]
 >> endobj
-2465 0 obj <<
-/D [2436 0 R /XYZ 120.869 328.254 null]
+1394 0 obj <<
+/D [3030 0 R /XYZ 71.731 375.221 null]
 >> endobj
-2466 0 obj <<
-/D [2436 0 R /XYZ 316.192 315.302 null]
+430 0 obj <<
+/D [3030 0 R /XYZ 193.206 346.574 null]
 >> endobj
-2467 0 obj <<
-/D [2436 0 R /XYZ 443.185 315.302 null]
+3048 0 obj <<
+/D [3030 0 R /XYZ 71.731 337.937 null]
 >> endobj
-2468 0 obj <<
-/D [2436 0 R /XYZ 71.731 295.213 null]
+3049 0 obj <<
+/D [3030 0 R /XYZ 247.76 327.645 null]
 >> endobj
-342 0 obj <<
-/D [2436 0 R /XYZ 242.592 257.997 null]
+3050 0 obj <<
+/D [3030 0 R /XYZ 159.162 314.694 null]
 >> endobj
-2469 0 obj <<
-/D [2436 0 R /XYZ 71.731 247.632 null]
+1395 0 obj <<
+/D [3030 0 R /XYZ 71.731 287.63 null]
 >> endobj
-2470 0 obj <<
-/D [2436 0 R /XYZ 71.731 235.716 null]
+434 0 obj <<
+/D [3030 0 R /XYZ 157.239 244.533 null]
 >> endobj
-346 0 obj <<
-/D [2436 0 R /XYZ 215 203.402 null]
+3051 0 obj <<
+/D [3030 0 R /XYZ 71.731 232.095 null]
 >> endobj
-2471 0 obj <<
-/D [2436 0 R /XYZ 71.731 194.765 null]
+3052 0 obj <<
+/D [3030 0 R /XYZ 71.731 176.981 null]
 >> endobj
-2472 0 obj <<
-/D [2436 0 R /XYZ 71.731 177.335 null]
+3053 0 obj <<
+/D [3030 0 R /XYZ 71.731 164.03 null]
 >> endobj
-2473 0 obj <<
-/D [2436 0 R /XYZ 334.064 166.54 null]
+3054 0 obj <<
+/D [3030 0 R /XYZ 71.731 159.048 null]
 >> endobj
-2474 0 obj <<
-/D [2436 0 R /XYZ 443.244 153.589 null]
+3055 0 obj <<
+/D [3030 0 R /XYZ 89.664 138.291 null]
 >> endobj
-2475 0 obj <<
-/D [2436 0 R /XYZ 71.731 140.637 null]
+3056 0 obj <<
+/D [3030 0 R /XYZ 71.731 136.134 null]
 >> endobj
-2476 0 obj <<
-/D [2436 0 R /XYZ 71.731 120.548 null]
+3057 0 obj <<
+/D [3030 0 R /XYZ 89.664 120.359 null]
 >> endobj
-2477 0 obj <<
-/D [2436 0 R /XYZ 315.724 109.753 null]
+3058 0 obj <<
+/D [3030 0 R /XYZ 89.664 120.359 null]
 >> endobj
-2478 0 obj <<
-/D [2436 0 R /XYZ 71.731 102.615 null]
+3059 0 obj <<
+/D [3030 0 R /XYZ 71.731 118.202 null]
 >> endobj
-2435 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R >>
+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 ]
 >> endobj
-2481 0 obj <<
-/Length 1921      
+3062 0 obj <<
+/Length 3031      
 /Filter /FlateDecode
 >>
 stream
-xڍYK��6���6�V����P$��Mi�lQm��%�b#��De�E|�"��(��A2M��o��`��_���>�G�y�.Y��u�o~�	�޲�y}��]�2/�E���*�}o�g�}zi��?�w%im7�0�ב����3�Y�>����&X��eUE6��t����N�����U��$��4\mC���`م��O?��86.�{�ރ[����f�n�FrP��4������R�ϵ��(�z� j�ՓA��Lk��B���{��0�>�|&�G�	c���[J�[����%'ZLG�#/����z�CѨz$�'���#r�P
-�'K�	��g�Q8��TȠC�A�eK��o���~��\�k����&`��'��D����6�B�x/��
��{�/Z�OO%�a5�E�G	��;v2R
-[J���4>w��ﮢ�n�r�CF6���g!~E�T�T�[�)7ȓp}[0a�	�P�������(A�$����cb�(����9�I�RR<-��[��}��@�5=��W)���x�-u"!�g�l�x�����y��y�����Od�2�H7J���ȃ�z���}*	F��:��J�2)�u6�W'�`d4| ����T��x*C�m�P\�듼�{K}� s��@�DG�����|R8�S�٘Πa�/3Ǝx-�Jy�N��d⫈D�
-��۩�@��AddD(��П�����K2/اz�a
-�;ߋ�y`�T�4"!�m�"�09��	�U�31���l���g�t
x����4I[�:���v��ZV{��4�"?6��%ù���Ύ|�����4�AE%�,�7N����5�=��c�UKM|�����$��`o�%ѵ�C�V
�8A���G���4�C9?7��
0i	�:�2�#e��#q�T=Og�?����+���d��u�0����#�2�I��R�*�2]���T�/*Vr8؁Ӹ�ĨK9|�I��h�nR8��q��bm�@�W:SEsa�{3�G�F[f��x��w�9K�������J.��g����l������~۷,�|�X���dy�:^r�a8$����s��ќN��kG�x����7�&��g�7h���B��uN�Z8�^<��@���)I2������\�K�N)qR�w�b� ��:,U�Z�p�\�}�ii�qw4��gO��,�A�Fp�Uah|id/��g�J�*~q:�_��8�����аs�QGq�T��k�3�cS� 5�΢W����F�JL]\gM�\40���d�Ŵ�j�邁���gzq��n~W��ϲ���ig~��1y�����$7����=\��I�p�|Ca��lAkSL�u�+�Iv���[��3��p8(��1�;r���iW��k��\�7�`�&�V�Q�NQ}��((�`��%8� �,����bL
v�ٛ�W��M����nR���J��@,5�)Zc��r�EW�TL]Yݑ���A���I$ɶ������!9U�d�D �9p������@�u��<��#�L�!���LWݷX��s�"MCI;%���E��ΝU�\�<�ݚ��m7��I��������JE�����/����*,�F���F���r���\΄�u�_t����"�h��5׷d=���6��R'z�W���Y�wi'S�C�P2���q�x*����ۙɤXfڤ`�����Oyb:�-���߆��bKϣ�e���,A��cdP�8�@���P�)`_Xd�74grg>��`�	���˃�0�,L��!n���lG�_�q�\sc��f[�%_���4MRᨹ��z���Ȗ+Ё��^�MB�#���À��Q�1������]�5�tk��1��j��1&��v�����@�z)\n����n��� 	S�Q�@���5�^4Qiendstream
+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�gQY6q΂���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
+�����
;�I޾ao�=�P���s���C^ƥ�|�"�(W�ji	���T������I���Lendstream
 endobj
-2480 0 obj <<
+3061 0 obj <<
 /Type /Page
-/Contents 2481 0 R
-/Resources 2479 0 R
+/Contents 3062 0 R
+/Resources 3060 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2434 0 R
->> endobj
-2482 0 obj <<
-/D [2480 0 R /XYZ 71.731 729.265 null]
->> endobj
-2483 0 obj <<
-/D [2480 0 R /XYZ 71.731 741.22 null]
->> endobj
-2484 0 obj <<
-/D [2480 0 R /XYZ 89.664 708.344 null]
->> endobj
-2485 0 obj <<
-/D [2480 0 R /XYZ 219.445 708.344 null]
->> endobj
-2486 0 obj <<
-/D [2480 0 R /XYZ 71.731 693.235 null]
->> endobj
-2487 0 obj <<
-/D [2480 0 R /XYZ 89.664 677.46 null]
->> endobj
-2488 0 obj <<
-/D [2480 0 R /XYZ 133.38 677.46 null]
->> endobj
-2489 0 obj <<
-/D [2480 0 R /XYZ 109.868 664.508 null]
->> endobj
-2490 0 obj <<
-/D [2480 0 R /XYZ 71.731 641.594 null]
->> endobj
-350 0 obj <<
-/D [2480 0 R /XYZ 172.607 606.127 null]
->> endobj
-2491 0 obj <<
-/D [2480 0 R /XYZ 71.731 597.49 null]
+/Parent 2910 0 R
 >> endobj
-2492 0 obj <<
-/D [2480 0 R /XYZ 389.137 587.198 null]
+3063 0 obj <<
+/D [3061 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2493 0 obj <<
-/D [2480 0 R /XYZ 472.996 587.198 null]
+3064 0 obj <<
+/D [3061 0 R /XYZ 89.664 708.344 null]
 >> endobj
-2494 0 obj <<
-/D [2480 0 R /XYZ 71.731 580.06 null]
+3065 0 obj <<
+/D [3061 0 R /XYZ 89.664 708.344 null]
 >> endobj
-2495 0 obj <<
-/D [2480 0 R /XYZ 86.396 556.314 null]
+3066 0 obj <<
+/D [3061 0 R /XYZ 71.731 682.341 null]
 >> endobj
-2496 0 obj <<
-/D [2480 0 R /XYZ 71.731 539.213 null]
+3067 0 obj <<
+/D [3061 0 R /XYZ 89.664 664.508 null]
 >> endobj
-354 0 obj <<
-/D [2480 0 R /XYZ 249.377 501.997 null]
+3068 0 obj <<
+/D [3061 0 R /XYZ 89.664 664.508 null]
 >> endobj
-2497 0 obj <<
-/D [2480 0 R /XYZ 71.731 491.632 null]
+3069 0 obj <<
+/D [3061 0 R /XYZ 71.731 649.4 null]
 >> endobj
-2498 0 obj <<
-/D [2480 0 R /XYZ 133.908 481.873 null]
+3070 0 obj <<
+/D [3061 0 R /XYZ 89.664 633.624 null]
 >> endobj
-2499 0 obj <<
-/D [2480 0 R /XYZ 313.423 481.873 null]
+1396 0 obj <<
+/D [3061 0 R /XYZ 71.731 626.486 null]
 >> endobj
-2500 0 obj <<
-/D [2480 0 R /XYZ 191.012 468.922 null]
+438 0 obj <<
+/D [3061 0 R /XYZ 154.02 583.388 null]
 >> endobj
-2501 0 obj <<
-/D [2480 0 R /XYZ 71.731 448.832 null]
+3071 0 obj <<
+/D [3061 0 R /XYZ 71.731 571.217 null]
 >> endobj
-2502 0 obj <<
-/D [2480 0 R /XYZ 71.731 435.881 null]
+3072 0 obj <<
+/D [3061 0 R /XYZ 71.731 528.788 null]
 >> endobj
-358 0 obj <<
-/D [2480 0 R /XYZ 201.18 403.567 null]
+3073 0 obj <<
+/D [3061 0 R /XYZ 181.725 517.994 null]
 >> endobj
-2503 0 obj <<
-/D [2480 0 R /XYZ 71.731 394.929 null]
+3074 0 obj <<
+/D [3061 0 R /XYZ 71.731 484.953 null]
 >> endobj
-2504 0 obj <<
-/D [2480 0 R /XYZ 164.423 384.638 null]
+3075 0 obj <<
+/D [3061 0 R /XYZ 71.731 415.214 null]
 >> endobj
-2505 0 obj <<
-/D [2480 0 R /XYZ 71.731 371.587 null]
+3076 0 obj <<
+/D [3061 0 R /XYZ 71.731 371.378 null]
 >> endobj
-362 0 obj <<
-/D [2480 0 R /XYZ 142.614 341.3 null]
+1397 0 obj <<
+/D [3061 0 R /XYZ 71.731 353.446 null]
 >> endobj
-2506 0 obj <<
-/D [2480 0 R /XYZ 71.731 336.115 null]
+442 0 obj <<
+/D [3061 0 R /XYZ 339.876 310.348 null]
 >> endobj
-2507 0 obj <<
-/D [2480 0 R /XYZ 71.731 303.278 null]
+3077 0 obj <<
+/D [3061 0 R /XYZ 71.731 298.177 null]
 >> endobj
-366 0 obj <<
-/D [2480 0 R /XYZ 166.016 272.558 null]
+3078 0 obj <<
+/D [3061 0 R /XYZ 376.087 275.838 null]
 >> endobj
-2508 0 obj <<
-/D [2480 0 R /XYZ 71.731 265.48 null]
+3079 0 obj <<
+/D [3061 0 R /XYZ 71.731 268.699 null]
 >> endobj
-2509 0 obj <<
-/D [2480 0 R /XYZ 71.731 234.536 null]
+3080 0 obj <<
+/D [3061 0 R /XYZ 71.731 237.815 null]
 >> endobj
-370 0 obj <<
-/D [2480 0 R /XYZ 156.761 203.816 null]
+3081 0 obj <<
+/D [3061 0 R /XYZ 353.441 227.021 null]
 >> endobj
-2510 0 obj <<
-/D [2480 0 R /XYZ 71.731 196.618 null]
+3082 0 obj <<
+/D [3061 0 R /XYZ 280.021 214.069 null]
 >> endobj
-2511 0 obj <<
-/D [2480 0 R /XYZ 71.731 172.931 null]
+3083 0 obj <<
+/D [3061 0 R /XYZ 175.77 201.118 null]
 >> endobj
-2512 0 obj <<
-/D [2480 0 R /XYZ 257.295 172.931 null]
+3084 0 obj <<
+/D [3061 0 R /XYZ 397.028 201.118 null]
 >> endobj
-2513 0 obj <<
-/D [2480 0 R /XYZ 71.731 147.029 null]
+3085 0 obj <<
+/D [3061 0 R /XYZ 71.731 198.961 null]
 >> endobj
-2514 0 obj <<
-/D [2480 0 R /XYZ 71.731 139.89 null]
+3086 0 obj <<
+/D [3061 0 R /XYZ 71.731 184.017 null]
 >> endobj
-2515 0 obj <<
-/D [2480 0 R /XYZ 217.045 116.144 null]
+3087 0 obj <<
+/D [3061 0 R /XYZ 462.474 151.205 null]
 >> endobj
-2516 0 obj <<
-/D [2480 0 R /XYZ 365.756 116.144 null]
+1398 0 obj <<
+/D [3061 0 R /XYZ 76.712 121.616 null]
 >> endobj
-2479 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F35 1229 0 R /F48 1452 0 R >>
+3060 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2519 0 obj <<
-/Length 2184      
+3090 0 obj <<
+/Length 2429      
 /Filter /FlateDecode
 >>
 stream
-xڭY�n�H}�W�m$DbD����C;��s���E�"[������[�]}#%[LJjv�N��.��%���ml#�����f=I���~�狐V,h��Ys}��Շ(�\W�hr����e�]^M��*H֫�]���͑�of��z9�u}��y���}^�W��,�����������u�
���I����~���O��L�(��z�y���h��j}�򶚅���/�1V?䕺vG�nn�[֢�UG�.�+^d�C�Y��=YQ���g�3��R!N��
HY�v���r�Ho���,�st�c��+r�����J�>��\}�*�(z�ҧFd �����5�m��smT{��zz�>��ӌ-�m}�CԽ>��c� ʑ��n��r�j�YǵA����$�;�
�.5~��aX���F�6����w�F���;A�g��y&��Z;�0?�w[�4G�'B�����&n�Y��wڑ܋p|5Ăt���坶�l�8��K`���J;w?��Haᨃ΋���������1\.U�K\v���uLK�i�M�M�l7�"����[Z�3)��"�Q$�Gtv�J�b�;2�����z������Xj���<=�N5��h�Ut�>^$I���F��nr�w'���@$<�p�8t�$�W��kL����c
5��6�NJB�p3�Nx,�j̝�г��^�m�L��O�_G'�aH�j������?�fX5?�e=}=�7RK` �sps�����E�؃��fҿf!l�)�d����}ށ��;w��јި���u!X�4�u>=8��0[#^�kU(O�7�.P�j�N��C��D��Y�o�l&k&xk��l���л�d���d�[)m�	�Öb��Y��&�C�M�t2�� L�4����_
��A��M>���‘�cx�W �=l�'͑al��Um�8�%��D�����V�=y�6�ȿ��'4�Յ�qPCϪY�hO���:d��?k��T����v��tѷ@P:o��ΐ�"Uw�� �4�v��@��n�Y�u;c<^�v��}����A�%�fgjP%�,E����3py��ZNF��]�	�5-�i�m�������m��Tp��뾛;ŀ�0f��U6Zչ0�)ΐ�����Oy!TϮ��u���ƒ}EcM-�Z�Ǘ�ㅫ��¶E�}�0�̈́'����c���~���װw�
-�g1h��c�9?�>y$sO.��0�í0S��dl@$]ĉG+�*&�DZ�`����6́���&|�eK^���ԇ�LIhJ@��%~dE�u��x����;4�f���'_9�fO�$��E��=�LE�6������D���[�76 SB�f�3ݭ*���S��VxπB�7kEӍ5e�>r��J�9I��8>-ic��`�-gr0�s�?`��.�ҡ)
-pe@UH�N�`(�Ԧm7ڟ�͐甯�<?��I�S�8�ӌBsQ\�?����&�-���e��"��3\'��%�kd���3.~�y��$:�w���y�^�S;Ch�����I��׎&� ��x��K_L�k"��pH��,:K��`�Y��.%o��W�PbĻ�xͶ
-l�l��r�i^��(�<�G�{��*nf�AS0JZ<��q��T@�ι�����H������+1<�=ֲ}�[3���L؅su�W)R�4�J�hB`��o��q��c����+��f%��0C���J�J�����~�����5��
i�4�[y>������	G��с�UAw�A�B��(#�s}E���Z@s��bD��#���cq$9>:��ɗE�"O�R��N�=����*�Fi�0'�q�I#���,x�u���[r-L�h�+�X�AP�Q�!*���馂�aA^]��?�����d(�x�>r�ռ�ޙ�'ی��[_h[0�
G�Rf����E��W�.��Y�Vm���|��m�E���8�Q�^s�
-9��'�n�~��U�c��R��nA4j�9��d����lΌι8�[
-�͍�����s�|��Nyӱ���=�v�rإ{.g���)G^��e�.�@ko�U��̭$w��f��n�x6%;�
-a�S�d��׬a��,Н����%� �2|��G�n�����&�����~	�[E�ӡ6���M_�I�}�}�]2z��^%�r�7��Z�{79��?���endstream
+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*�wM��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��@057׵Uf��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
-2518 0 obj <<
+3089 0 obj <<
 /Type /Page
-/Contents 2519 0 R
-/Resources 2517 0 R
+/Contents 3090 0 R
+/Resources 3088 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2434 0 R
->> endobj
-2520 0 obj <<
-/D [2518 0 R /XYZ 71.731 729.265 null]
+/Parent 3129 0 R
 >> endobj
-2521 0 obj <<
-/D [2518 0 R /XYZ 111.302 708.344 null]
+3091 0 obj <<
+/D [3089 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2522 0 obj <<
-/D [2518 0 R /XYZ 281.612 708.344 null]
+446 0 obj <<
+/D [3089 0 R /XYZ 232.492 707.841 null]
 >> endobj
-2523 0 obj <<
-/D [2518 0 R /XYZ 94.695 695.392 null]
+3092 0 obj <<
+/D [3089 0 R /XYZ 71.731 697.476 null]
 >> endobj
-2524 0 obj <<
-/D [2518 0 R /XYZ 368.117 695.392 null]
+3093 0 obj <<
+/D [3089 0 R /XYZ 71.731 685.559 null]
 >> endobj
-2525 0 obj <<
-/D [2518 0 R /XYZ 482.019 664.508 null]
+3094 0 obj <<
+/D [3089 0 R /XYZ 71.731 680.578 null]
 >> endobj
-2526 0 obj <<
-/D [2518 0 R /XYZ 71.731 644.419 null]
+3095 0 obj <<
+/D [3089 0 R /XYZ 89.664 659.821 null]
 >> endobj
-2527 0 obj <<
-/D [2518 0 R /XYZ 109.37 633.624 null]
+3096 0 obj <<
+/D [3089 0 R /XYZ 131.167 659.821 null]
 >> endobj
-2528 0 obj <<
-/D [2518 0 R /XYZ 143.7 633.624 null]
+3097 0 obj <<
+/D [3089 0 R /XYZ 71.731 657.664 null]
 >> endobj
-2529 0 obj <<
-/D [2518 0 R /XYZ 388.699 633.624 null]
+3098 0 obj <<
+/D [3089 0 R /XYZ 89.664 641.888 null]
 >> endobj
-2530 0 obj <<
-/D [2518 0 R /XYZ 134.256 620.672 null]
+3099 0 obj <<
+/D [3089 0 R /XYZ 300.451 641.888 null]
 >> endobj
-2531 0 obj <<
-/D [2518 0 R /XYZ 225.972 620.672 null]
+3100 0 obj <<
+/D [3089 0 R /XYZ 450.128 641.888 null]
 >> endobj
-2532 0 obj <<
-/D [2518 0 R /XYZ 71.731 607.721 null]
+3101 0 obj <<
+/D [3089 0 R /XYZ 71.731 639.731 null]
 >> endobj
-2533 0 obj <<
-/D [2518 0 R /XYZ 146.719 607.721 null]
+3102 0 obj <<
+/D [3089 0 R /XYZ 89.664 623.955 null]
 >> endobj
-2534 0 obj <<
-/D [2518 0 R /XYZ 71.731 602.62 null]
+3103 0 obj <<
+/D [3089 0 R /XYZ 135.13 623.955 null]
 >> endobj
-2535 0 obj <<
-/D [2518 0 R /XYZ 71.731 556.747 null]
+3104 0 obj <<
+/D [3089 0 R /XYZ 174.159 623.955 null]
 >> endobj
-2536 0 obj <<
-/D [2518 0 R /XYZ 71.731 556.747 null]
+3105 0 obj <<
+/D [3089 0 R /XYZ 250.842 623.955 null]
 >> endobj
-2537 0 obj <<
-/D [2518 0 R /XYZ 255.092 545.953 null]
+3106 0 obj <<
+/D [3089 0 R /XYZ 341.239 623.955 null]
 >> endobj
-2538 0 obj <<
-/D [2518 0 R /XYZ 431.897 533.001 null]
+3107 0 obj <<
+/D [3089 0 R /XYZ 467.454 611.004 null]
 >> endobj
-2539 0 obj <<
-/D [2518 0 R /XYZ 145.613 520.05 null]
+3108 0 obj <<
+/D [3089 0 R /XYZ 71.731 603.866 null]
 >> endobj
-2540 0 obj <<
-/D [2518 0 R /XYZ 221.418 520.05 null]
+3109 0 obj <<
+/D [3089 0 R /XYZ 71.731 577.963 null]
 >> endobj
-2541 0 obj <<
-/D [2518 0 R /XYZ 281.244 507.098 null]
+3110 0 obj <<
+/D [3089 0 R /XYZ 71.731 563.019 null]
 >> endobj
-2542 0 obj <<
-/D [2518 0 R /XYZ 435.614 507.098 null]
+3111 0 obj <<
+/D [3089 0 R /XYZ 76.712 513.569 null]
 >> endobj
-2543 0 obj <<
-/D [2518 0 R /XYZ 71.731 499.96 null]
+3112 0 obj <<
+/D [3089 0 R /XYZ 136.488 470.024 null]
 >> endobj
-374 0 obj <<
-/D [2518 0 R /XYZ 154.051 469.24 null]
+3113 0 obj <<
+/D [3089 0 R /XYZ 76.712 410.352 null]
 >> endobj
-2544 0 obj <<
-/D [2518 0 R /XYZ 71.731 462.162 null]
+3114 0 obj <<
+/D [3089 0 R /XYZ 89.664 392.419 null]
 >> endobj
-2545 0 obj <<
-/D [2518 0 R /XYZ 71.731 405.315 null]
+3115 0 obj <<
+/D [3089 0 R /XYZ 71.731 377.311 null]
 >> endobj
-2546 0 obj <<
-/D [2518 0 R /XYZ 71.731 405.315 null]
+3116 0 obj <<
+/D [3089 0 R /XYZ 89.664 361.535 null]
 >> endobj
-2547 0 obj <<
-/D [2518 0 R /XYZ 71.731 374.431 null]
+1399 0 obj <<
+/D [3089 0 R /XYZ 71.731 341.445 null]
 >> endobj
-378 0 obj <<
-/D [2518 0 R /XYZ 142.923 343.711 null]
+450 0 obj <<
+/D [3089 0 R /XYZ 304.825 304.23 null]
 >> endobj
-2548 0 obj <<
-/D [2518 0 R /XYZ 71.731 338.526 null]
+3117 0 obj <<
+/D [3089 0 R /XYZ 71.731 293.865 null]
 >> endobj
-2549 0 obj <<
-/D [2518 0 R /XYZ 241.794 312.827 null]
+3118 0 obj <<
+/D [3089 0 R /XYZ 71.731 281.948 null]
 >> endobj
-2550 0 obj <<
-/D [2518 0 R /XYZ 71.731 279.786 null]
+3119 0 obj <<
+/D [3089 0 R /XYZ 71.731 276.967 null]
 >> endobj
-382 0 obj <<
-/D [2518 0 R /XYZ 171.774 249.066 null]
+3120 0 obj <<
+/D [3089 0 R /XYZ 89.664 256.21 null]
 >> endobj
-2551 0 obj <<
-/D [2518 0 R /XYZ 71.731 241.988 null]
+3121 0 obj <<
+/D [3089 0 R /XYZ 71.731 254.053 null]
 >> endobj
-2552 0 obj <<
-/D [2518 0 R /XYZ 176.238 231.133 null]
+3122 0 obj <<
+/D [3089 0 R /XYZ 89.664 238.277 null]
 >> endobj
-2553 0 obj <<
-/D [2518 0 R /XYZ 368.396 231.133 null]
+3123 0 obj <<
+/D [3089 0 R /XYZ 71.731 236.12 null]
 >> endobj
-2554 0 obj <<
-/D [2518 0 R /XYZ 455.827 231.133 null]
+3124 0 obj <<
+/D [3089 0 R /XYZ 89.664 220.344 null]
 >> endobj
-2555 0 obj <<
-/D [2518 0 R /XYZ 489.66 231.133 null]
+1400 0 obj <<
+/D [3089 0 R /XYZ 71.731 200.255 null]
 >> endobj
-2556 0 obj <<
-/D [2518 0 R /XYZ 191.511 218.182 null]
+454 0 obj <<
+/D [3089 0 R /XYZ 381.763 163.039 null]
 >> endobj
-2557 0 obj <<
-/D [2518 0 R /XYZ 71.731 211.044 null]
+3125 0 obj <<
+/D [3089 0 R /XYZ 71.731 152.674 null]
 >> endobj
-386 0 obj <<
-/D [2518 0 R /XYZ 148.701 180.324 null]
+3126 0 obj <<
+/D [3089 0 R /XYZ 275.93 142.915 null]
 >> endobj
-2558 0 obj <<
-/D [2518 0 R /XYZ 71.731 175.138 null]
+3127 0 obj <<
+/D [3089 0 R /XYZ 71.731 109.874 null]
 >> endobj
-2559 0 obj <<
-/D [2518 0 R /XYZ 71.731 142.301 null]
+3128 0 obj <<
+/D [3089 0 R /XYZ 71.731 96.922 null]
 >> endobj
-2517 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F48 1452 0 R >>
+3088 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2562 0 obj <<
-/Length 2050      
+3132 0 obj <<
+/Length 1655      
 /Filter /FlateDecode
 >>
 stream
-xڥYYs�6~����%�L�<$�}JR���$i�yh�������J�q�_�]� x����y��o�=�Sχ��(مp	Rlc/+o|�_���z�F�8c^�߼x�^J�m�������O�]�$������;Kެ7A�B��/�RT����:�W��5]�E����xswoe�ᎤI��zf�L�(�3f�		��W/$;J�l��>�y&~�� cEqQ�>pP������ׁ�*8j��M����

�
\��E��Ú�+�R��'Ѫ�}�Eݘىg8���ݡ��U|īG�����>WO%g�EQ���Ե��+��bn��gu���>����um-Z�*��g�w�h	"��4���T�)�N3���Fp	B�5�%�7s�
Ƿ_�d�j�Z���\þ�
-kC���JG�܂kL��F��`�U����|���Ah4�v=��D��/SԢt�6~���vb�N�=7F��M��ji����K�ǂ���,g�9�����^u&��=k-c_���x��A�����E]
(�|�3���0��)Q!�f��F'�D��D�bV���טY!z�yl=
-�MB&8��Z.$f���T0����z�6Okhj�uc��*E��ʸI�������Ƒ:\`��]�4�a��P�J���l8
-�X�����v�r	b��[g{��)�z����X��5h�Þp�M�jl�O�|6�5��/D)�jV]�7�[TDɇ$�#kL��߯{����ݳ�;�`�B�)y%u��G!�X�<�ID�&���x���<1uy�{\���A�/��f�K�i�
�LNGg���
di^ݯX��['�����!���
o�x�Oɤ�/�̱�^u�W�*�N�����W��85uH.�u�i*�t�P�0���F����*D��Ta�;��s�X�1|ȴe�4$�.�8&1P����n~���rh�~��?���G�,���¥��p�p���g��
a�SK��j�l���e���ζ�H�:�-r3�)	�DP�T���:BN��*����������r�-قd�������W�9x�.�dp<�9��-SV�}�lAǺ�s]��le5����H�F=c��Z���>�F9�T���&6�;����^����5r��+04�"�>c��X��.�}�Dnoh� �o�6V�]�td�z��6l�"�.@M=JE���*c��|�Ñ˩�
-{��m���*�*�J��8����\]k�2��юPl{(r(�ri}�z�}�_�[>��U��Z�h���0�͠����ix5�C�j�MMǏX=3)��u*A�TV�����q��U9Kq�='`�.���'a�paX�?���D|B���V�
&��~�P0C2���ҭ<7mŨ<[DZi�M}��l��2�oE����1��w5ج���ͩ-�3}3/�Я��Ľ)�bɼ�
g�ɳm-
-�ۑg��)O�H@MW�C"��Ȝ��NQi+�ĝ%q������T(to��v�ӱ�\m���p�'���>aI�{<��4`2lZ2V
�d��V��
��k<Ѓ�qv�f�g��s�#��0���	����da+qoO��|��@�O�;�!{�'K�~�0�OOY��&�
-���dȌm�����6'?J�-��c��4��*����	���N�%�1�
-s>1����ny����7?|x{���x��ww�n�ϸ8���^I�C��J�U˧/�n=��isnD�yY��^Sٍ���c�&L�j�%c�\�Ĥ�V�e?�!���ҟ(�.q�-�Д�`G>ñYR.�\���‰�7�Z�K�·�9LH�-��٫�qƨ��$��2����$%[h%dM�V����ɲ(��:����Ħ��;[Ǡ\��V޺�����̟��r��kOcQ�'W0�=�t�$�Ø���!hwp��|"�=k�,��߲/��JK@J�q6Q�7C��W(�'dQ���FM���;=�ŬNj|�3|�=l��������!���(!	�=�χa��e�7�J_�����0�.�G�endstream
-endobj
-2561 0 obj <<
-/Type /Page
-/Contents 2562 0 R
-/Resources 2560 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2434 0 R
->> endobj
-2563 0 obj <<
-/D [2561 0 R /XYZ 71.731 729.265 null]
->> endobj
-390 0 obj <<
-/D [2561 0 R /XYZ 224.367 708.344 null]
->> endobj
-2564 0 obj <<
-/D [2561 0 R /XYZ 71.731 701.265 null]
->> endobj
-2565 0 obj <<
-/D [2561 0 R /XYZ 71.731 664.508 null]
->> endobj
-2566 0 obj <<
-/D [2561 0 R /XYZ 71.731 644.419 null]
->> endobj
-394 0 obj <<
-/D [2561 0 R /XYZ 170.649 613.699 null]
->> endobj
-2567 0 obj <<
-/D [2561 0 R /XYZ 71.731 606.62 null]
->> endobj
-2568 0 obj <<
-/D [2561 0 R /XYZ 128.866 595.766 null]
->> endobj
-2569 0 obj <<
-/D [2561 0 R /XYZ 282.608 582.814 null]
->> endobj
-2570 0 obj <<
-/D [2561 0 R /XYZ 353.432 582.814 null]
->> endobj
-2571 0 obj <<
-/D [2561 0 R /XYZ 71.731 552.762 null]
->> endobj
-398 0 obj <<
-/D [2561 0 R /XYZ 199.853 519.452 null]
+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
+endobj
+3131 0 obj <<
+/Type /Page
+/Contents 3132 0 R
+/Resources 3130 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3129 0 R
 >> endobj
-2572 0 obj <<
-/D [2561 0 R /XYZ 71.731 510.815 null]
+3133 0 obj <<
+/D [3131 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2573 0 obj <<
-/D [2561 0 R /XYZ 154.45 500.523 null]
+3134 0 obj <<
+/D [3131 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2574 0 obj <<
-/D [2561 0 R /XYZ 71.731 480.433 null]
+3135 0 obj <<
+/D [3131 0 R /XYZ 89.664 708.344 null]
 >> endobj
-2575 0 obj <<
-/D [2561 0 R /XYZ 186.589 469.639 null]
+3136 0 obj <<
+/D [3131 0 R /XYZ 71.731 706.187 null]
 >> endobj
-2576 0 obj <<
-/D [2561 0 R /XYZ 71.731 467.482 null]
+3137 0 obj <<
+/D [3131 0 R /XYZ 89.664 690.411 null]
 >> endobj
-2577 0 obj <<
-/D [2561 0 R /XYZ 118.555 428.918 null]
+3138 0 obj <<
+/D [3131 0 R /XYZ 71.731 662.351 null]
 >> endobj
-2578 0 obj <<
-/D [2561 0 R /XYZ 229.019 420.454 null]
+3139 0 obj <<
+/D [3131 0 R /XYZ 89.664 646.575 null]
 >> endobj
-2579 0 obj <<
-/D [2561 0 R /XYZ 400.428 397.141 null]
+3140 0 obj <<
+/D [3131 0 R /XYZ 71.731 605.564 null]
 >> endobj
-2580 0 obj <<
-/D [2561 0 R /XYZ 71.731 375.221 null]
+3141 0 obj <<
+/D [3131 0 R /XYZ 89.664 589.788 null]
 >> endobj
-402 0 obj <<
-/D [2561 0 R /XYZ 193.206 346.574 null]
+3142 0 obj <<
+/D [3131 0 R /XYZ 193.314 589.788 null]
 >> endobj
-2581 0 obj <<
-/D [2561 0 R /XYZ 71.731 337.937 null]
+3143 0 obj <<
+/D [3131 0 R /XYZ 332.302 589.788 null]
 >> endobj
-2582 0 obj <<
-/D [2561 0 R /XYZ 243.605 327.645 null]
+3144 0 obj <<
+/D [3131 0 R /XYZ 71.731 582.65 null]
 >> endobj
-2583 0 obj <<
-/D [2561 0 R /XYZ 159.162 314.694 null]
+3145 0 obj <<
+/D [3131 0 R /XYZ 71.731 533.833 null]
 >> endobj
-1181 0 obj <<
-/D [2561 0 R /XYZ 71.731 287.63 null]
+1497 0 obj <<
+/D [3131 0 R /XYZ 71.731 491.059 null]
 >> endobj
-406 0 obj <<
-/D [2561 0 R /XYZ 157.239 244.533 null]
+458 0 obj <<
+/D [3131 0 R /XYZ 398.777 451.686 null]
 >> endobj
-2584 0 obj <<
-/D [2561 0 R /XYZ 71.731 232.095 null]
+1498 0 obj <<
+/D [3131 0 R /XYZ 71.731 448.717 null]
 >> endobj
-2585 0 obj <<
-/D [2561 0 R /XYZ 71.731 176.981 null]
+462 0 obj <<
+/D [3131 0 R /XYZ 359.858 417.215 null]
 >> endobj
-2586 0 obj <<
-/D [2561 0 R /XYZ 71.731 164.03 null]
+3146 0 obj <<
+/D [3131 0 R /XYZ 71.731 408.763 null]
 >> endobj
-2587 0 obj <<
-/D [2561 0 R /XYZ 71.731 159.048 null]
+3147 0 obj <<
+/D [3131 0 R /XYZ 71.731 373.216 null]
 >> endobj
-2588 0 obj <<
-/D [2561 0 R /XYZ 89.664 138.291 null]
+1499 0 obj <<
+/D [3131 0 R /XYZ 71.731 272.159 null]
 >> endobj
-2589 0 obj <<
-/D [2561 0 R /XYZ 71.731 136.134 null]
+466 0 obj <<
+/D [3131 0 R /XYZ 381.114 236.692 null]
 >> endobj
-2590 0 obj <<
-/D [2561 0 R /XYZ 89.664 120.359 null]
+3148 0 obj <<
+/D [3131 0 R /XYZ 71.731 228.24 null]
 >> endobj
-2591 0 obj <<
-/D [2561 0 R /XYZ 89.664 120.359 null]
+3149 0 obj <<
+/D [3131 0 R /XYZ 71.731 192.693 null]
 >> endobj
-2592 0 obj <<
-/D [2561 0 R /XYZ 71.731 118.202 null]
+1500 0 obj <<
+/D [3131 0 R /XYZ 71.731 138.262 null]
 >> endobj
-2560 0 obj <<
-/Font << /F33 1160 0 R /F48 1452 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R >>
+3130 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2595 0 obj <<
-/Length 2592      
+3152 0 obj <<
+/Length 1679      
 /Filter /FlateDecode
 >>
 stream
-xڝZے�6}�W���RՈ�E����8.o%�Z{�<$�@��k�`x��뷛���4��TE��@��ӧ{��;����G��
I��]�͇W�XӐ�5����~�E�D�`q��ظ��s��.�}�/��?��NqՊz��Cw8��MZde���<�Go���<~��<^���������`�D��y�p��{��]'�y"�ݽl6�g\�1<=��G�#g��,�yx��^�>��m�7���5~ʊ���6���yKي�e�W���.Y��$���kՅz�?h��\����w��=�E��5noǏj�G��9�.OդU-�!��h�FtUvš�?�����gu�/��ڞh�
{-�l�����������
1�'Y�^y�e�nA-��ѷ��/z?��T�7��	ܽ�<}JoKY��cx����)&KR)���E�
�(� ������z�Q6b�I".�	��U�[c.��z�K��Y�E��מ´����G�~�~��
-�������M��i�ҥi3�zܵ���,������G�>�];�B1.�޽�t��G���_��Dtk�VLs*�|g�&�`�ѶZ{�{��X;����f
�!C��ϐ�sD4��z����S$M�P�b�q��{��*�����\g�s��41/�q���l���hZ\�S�`ϲS�!�����tP��QQ�b�Dމ�`2�Z<�Z�2��A�g�7���*V�8ī`�����5\F�J��u�`Ke+B-���겪��T���0���j��&����l��K�h��h�Ʋ��r�&Id��=v�17�*ל���<����I]ע��U���Ɓ��~�=�k3Y��":�[֒/�F��M%�����a"~�Z"�r������(8dm���"�|[�e��׈\$ơ�m�d�b���q���NoUG�qJZ�Ї�L+9��!���D����s�������Ζyσ-d%��_�:�����J�!S�c�Y�0TV0br�B�k��r�4X�������@�� ��)G0�[RRDz����ҲN�}嵅�d��BU��� ��	��z�q���k7���g,|��j.����Q�j!F�t�"kg��r���43�V����
)��W��?,@`m�V��Y�u{�fb�������'X2;�
-t�H���^}Ԝ�D�b��0I�"�y�nV#P���[֦a_)J�O��R��Nt�|bf�i�I�,!��Y{$�HJfd����.7�=�ب4�A�t����C��Y��2�5��C�:�1�&��/��?�ЅJ����ra�M�Y�*r�^�2�jͤ9�'����1N��X?��k��DW�)QP��qE�w���y�$TD����W�O2���C���8�#�q�Jg��kŰ��q�L�r��VU�	�r���A��F���港#0�w�]��9YZ�smZ�L��L���qi���{3Vw.�yW��U�!h��WS����D�QS��SF:�q��ˠ�� &�ՆP;|Yr�y�,���\�Ǩ�w��;��i+A7@~�����1$Ӡ�
��A�����!�l��uR0_�J���w$VN̠�zZjJ�F���0��2c.�䍼}��)���`�(I��^"�fzt˼����`Q�*Qq)JU��0ZVY�tn���+����j�����w�W�_��/"��}~i�������IK�gd�ԝ��52�[1��z/ڟ�LRH����d��z�����LD�ƌx%d�+Sg�%M#����h�zV��l���-P����%s���:2����[l|?x���QP���:�#6s}�/�>Zݶ�wp�zbv(ZMЏƒA��t���>k=Н'o����?ϬB���^t^5��Ί��tGnj�]x�ʇ8�v���:���|�rL�Q���N[��D3[ye+�̵`�4�`K(K���w�8��l�Ci(��r�������y��ņez�8��#4al�̞z2�'�3��-��@�i��[�h�l#ř�#Bk�dĵ��-���5���+w︻���դ�g"�����5n��Q����>��3��b���v�h l�E��8n�}D�&�{��8v�b�?[��vln9S׼�������с�{�j1M=0y�o�c���� �c�l�.��Fn6f�:�';�>�r���U�����e
ܩ�9�74@�_*��	M���o@z q=L����Ϣ€l�ܵ^�������U����bh|��ݯz-����ީ�_�;��W�=P�PU�#�q.r����O|0��Wu��"F��$u
8�]�tE�p����	Ԋ~�\��XPk�l�u��W�*�Cm$t
1���u�hN�0�diʁ�S�:V?Pe� `#�5���-4ayT���1����뗩�G5���Sh�6&(�TPq&�kp�@/2�16*;E���ԯ�ӂ9)���j�.G�BC��r�;t�Y�Id�Q���S;���^B�z���vl_[�y����_��R��a�w���꿄0C&���g��K��a��Y��_endstream
+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ҵ;nt󑓺wĢ���)�����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��CkL�Ɣ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�1T�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��z󰿦1��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
 endobj
-2594 0 obj <<
+3151 0 obj <<
 /Type /Page
-/Contents 2595 0 R
-/Resources 2593 0 R
+/Contents 3152 0 R
+/Resources 3150 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2434 0 R
->> endobj
-2596 0 obj <<
-/D [2594 0 R /XYZ 71.731 729.265 null]
+/Parent 3129 0 R
 >> endobj
-2597 0 obj <<
-/D [2594 0 R /XYZ 89.664 708.344 null]
->> endobj
-2598 0 obj <<
-/D [2594 0 R /XYZ 89.664 708.344 null]
->> endobj
-2599 0 obj <<
-/D [2594 0 R /XYZ 71.731 682.341 null]
->> endobj
-2600 0 obj <<
-/D [2594 0 R /XYZ 89.664 664.508 null]
+3153 0 obj <<
+/D [3151 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2601 0 obj <<
-/D [2594 0 R /XYZ 89.664 664.508 null]
+3154 0 obj <<
+/D [3151 0 R /XYZ 71.731 741.22 null]
 >> endobj
-2602 0 obj <<
-/D [2594 0 R /XYZ 71.731 649.4 null]
+470 0 obj <<
+/D [3151 0 R /XYZ 342.285 708.344 null]
 >> endobj
-2603 0 obj <<
-/D [2594 0 R /XYZ 89.664 633.624 null]
+3155 0 obj <<
+/D [3151 0 R /XYZ 71.731 699.891 null]
 >> endobj
-1182 0 obj <<
-/D [2594 0 R /XYZ 71.731 626.486 null]
+3156 0 obj <<
+/D [3151 0 R /XYZ 71.731 674.306 null]
 >> endobj
-410 0 obj <<
-/D [2594 0 R /XYZ 154.02 583.388 null]
+3157 0 obj <<
+/D [3151 0 R /XYZ 71.731 669.325 null]
 >> endobj
-2604 0 obj <<
-/D [2594 0 R /XYZ 71.731 571.217 null]
+3158 0 obj <<
+/D [3151 0 R /XYZ 89.664 648.568 null]
 >> endobj
-2605 0 obj <<
-/D [2594 0 R /XYZ 71.731 528.788 null]
+3159 0 obj <<
+/D [3151 0 R /XYZ 71.731 646.411 null]
 >> endobj
-2606 0 obj <<
-/D [2594 0 R /XYZ 182.684 517.994 null]
+3160 0 obj <<
+/D [3151 0 R /XYZ 89.664 630.635 null]
 >> endobj
-2607 0 obj <<
-/D [2594 0 R /XYZ 71.731 484.953 null]
+3161 0 obj <<
+/D [3151 0 R /XYZ 71.731 628.478 null]
 >> endobj
-2608 0 obj <<
-/D [2594 0 R /XYZ 71.731 415.214 null]
+3162 0 obj <<
+/D [3151 0 R /XYZ 89.664 612.702 null]
 >> endobj
-2609 0 obj <<
-/D [2594 0 R /XYZ 71.731 360.484 null]
+3163 0 obj <<
+/D [3151 0 R /XYZ 71.731 605.564 null]
 >> endobj
-1183 0 obj <<
-/D [2594 0 R /XYZ 71.731 340.494 null]
+3164 0 obj <<
+/D [3151 0 R /XYZ 71.731 582.65 null]
 >> endobj
-414 0 obj <<
-/D [2594 0 R /XYZ 339.876 297.397 null]
+3165 0 obj <<
+/D [3151 0 R /XYZ 71.731 516.563 null]
 >> endobj
-2610 0 obj <<
-/D [2594 0 R /XYZ 71.731 285.226 null]
+3166 0 obj <<
+/D [3151 0 R /XYZ 71.731 465.589 null]
 >> endobj
-2611 0 obj <<
-/D [2594 0 R /XYZ 422.851 262.886 null]
+1501 0 obj <<
+/D [3151 0 R /XYZ 71.731 332.951 null]
 >> endobj
-2612 0 obj <<
-/D [2594 0 R /XYZ 71.731 255.748 null]
+474 0 obj <<
+/D [3151 0 R /XYZ 341.27 287.697 null]
 >> endobj
-2613 0 obj <<
-/D [2594 0 R /XYZ 71.731 224.864 null]
+3167 0 obj <<
+/D [3151 0 R /XYZ 71.731 275.259 null]
 >> endobj
-2614 0 obj <<
-/D [2594 0 R /XYZ 353.402 214.069 null]
+3168 0 obj <<
+/D [3151 0 R /XYZ 71.731 251.03 null]
 >> endobj
-2615 0 obj <<
-/D [2594 0 R /XYZ 279.809 201.118 null]
+3169 0 obj <<
+/D [3151 0 R /XYZ 71.731 246.048 null]
 >> endobj
-2616 0 obj <<
-/D [2594 0 R /XYZ 175.77 188.166 null]
+3170 0 obj <<
+/D [3151 0 R /XYZ 81.694 225.291 null]
 >> endobj
-2617 0 obj <<
-/D [2594 0 R /XYZ 397.028 188.166 null]
+3171 0 obj <<
+/D [3151 0 R /XYZ 71.731 223.134 null]
 >> endobj
-2618 0 obj <<
-/D [2594 0 R /XYZ 71.731 186.01 null]
+3172 0 obj <<
+/D [3151 0 R /XYZ 81.694 207.358 null]
 >> endobj
-2619 0 obj <<
-/D [2594 0 R /XYZ 71.731 171.066 null]
+1502 0 obj <<
+/D [3151 0 R /XYZ 71.731 205.202 null]
 >> endobj
-2620 0 obj <<
-/D [2594 0 R /XYZ 477.133 138.254 null]
+478 0 obj <<
+/D [3151 0 R /XYZ 249.392 167.986 null]
 >> endobj
-2621 0 obj <<
-/D [2594 0 R /XYZ 76.712 108.664 null]
+3173 0 obj <<
+/D [3151 0 R /XYZ 71.731 160.634 null]
 >> endobj
-2593 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R >>
+3150 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2624 0 obj <<
-/Length 2253      
+3176 0 obj <<
+/Length 3201      
 /Filter /FlateDecode
 >>
 stream
-xڥَ���}�BX	ux������.�l�a^?��-�Y2˓�OUW5oR
�fu�W��&�E���9
-��o���ڜ����!����|�����9����<�6�e��:n���l�㟷�.�Z�r�w|k�
-����$O*XO�3-}�����?I���/��?�ni�n ���ʞ������w@��V B����¶��|��]�dM,���r�Xۢ�V��
-:Q��ށ}���<�B�$A"ġ��c���AM���E����&�}����0B��� #Z�Q����[Vi��"�T����/��ώ㞵�Σ�4ɿ�]���;vৢ@g���XR�g�0ו��,*�A�qgQiSZ���B{����eg[[V��KVd*7�d�j�X�U-�x��$�겉��+Z)�C����I*�Z�?�{xw�&������8��Zw�x�+���n�f�xB�d�)���[�=B��?@�bu7s*j5�ԭ�EU��2���z/ɪ�ceR�?��������T�ٲ�ƕ��
2M���oo9�k�=K6u�A����	�v@R��k*#��bo��m��95)2�A��L5�d.��RUUb�4�
+�\i��A�����?[9.S�oHDu:��tuQ1�8J�����QE��J�3��ǁl�T�LXx��?�W�.#ʱ��y$������ҋ"Mf*{iY*N#:Z;��a���Ԑ�5lM�%��H�E�QCw��
-���&����؆؂�w⠙�$�o	��:8��� :a^��ʳ�J�D��ݟ�"�;G���]Tɯ�g�)���ε�������@U��*f���jCq�ѯ
��n;�+%�+�d��س4{�?�2�q/�u�������uQ�=�l�Z�aV��ÀQ��{:��*��He5d*n���Y]���?��drb��:��$��	v��i��%j���^Ԁ�}�lR�Кh-{N���Q��][�V��-���t����/�&�2�=��
���ǃ�m�G���nJ�9=����(�
-׷�p�^����n���B�η�.�����Ba��y�e�P�F��>x"�*.m���S]U��^[�gw�!�%��u�q�VA��A3h���o��jLľR'���e|�I}p�
��'�RޒJ禧61=��#��?�wgE������{���*s}��v=(C��iFN��k�M�nJ`1�/2��R��,pkm�n&"�2�qKjձ#rU?�.������\�0b5k�qQ��G�Z��$j|��tW=7���=�c:0�����M�u���>�������}\kQ
Z�[jQ{x��E]�=B�F��s�������Ӄ65�%S�MM�^��*NJ8���	Ote�4�4������ל�'�rQ��҄��ii�t���zC/��=�����nُ��	a�A�Cc��������Nz�,t���d��;n�0m�Z-�ɶ{��&V��2����Z:$�����!�������8�u�Wh��"��'�x�q���v����ۇe��'�Wth�Lr��l؝�ŧ�@������WyVO�ȜlB�-c�j�mX�Zɨ�KѤ1�B�1�7���7�Ю�TS�0�r��ƺ�h-9s"�+Ԁ,�kC�=əcy�6�C�H��l����l���Y�s<�{������z�z�s�VJ}"�Z1*�_?T���@��,�ѠD7�tJ2#9Qr�N4�u�XJ������RD:�Aܙ�u K���S�)��ѸBx��O=?��vpl�v�[e��\EFSw�f�ނa�w�>�G�dFw-=<PKf�����:�EC0���o��}S��������"sLH���7��]�ɉ�3rRͅ�ʔՁ8t=o]�̢�duP7C뾪Wh��N���3�7I�a���:\,�D�=ǫF�O�@�R��`8�LzX�$�s�K��|:o�6)��O����wZ���^I�D��8�@
-��]
-�e��Z�Ll��4�B�`:���w���&�ԅ��G<z���T��HC�c��ϰ���R�-��I��+2u��*���x���6-Ѐ-X�b���n^T^1�˗����.xMZ�
-Q@_�cY%����h�kV����X�����˹Q��/cL��A�{2�)@�s����p)���En�<m#{.!n�2�>i6��܈�ƼF�A�ƾj��8굀�;�p�襂����)��d�U��M%�4�ӷN��v��I��|�����������)���ۂ�endstream
+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��Ys•w��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]zkf��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
 endobj
-2623 0 obj <<
+3175 0 obj <<
 /Type /Page
-/Contents 2624 0 R
-/Resources 2622 0 R
+/Contents 3176 0 R
+/Resources 3174 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2665 0 R
+/Parent 3129 0 R
+/Annots [ 3186 0 R 3189 0 R 3192 0 R 3194 0 R ]
 >> endobj
-2625 0 obj <<
-/D [2623 0 R /XYZ 71.731 729.265 null]
+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
-418 0 obj <<
-/D [2623 0 R /XYZ 232.492 707.841 null]
+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
-2626 0 obj <<
-/D [2623 0 R /XYZ 71.731 697.476 null]
+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
-2627 0 obj <<
-/D [2623 0 R /XYZ 71.731 685.559 null]
+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
-2628 0 obj <<
-/D [2623 0 R /XYZ 71.731 680.578 null]
+3177 0 obj <<
+/D [3175 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2629 0 obj <<
-/D [2623 0 R /XYZ 89.664 659.821 null]
+3178 0 obj <<
+/D [3175 0 R /XYZ 71.731 605.564 null]
 >> endobj
-2630 0 obj <<
-/D [2623 0 R /XYZ 131.167 659.821 null]
+3179 0 obj <<
+/D [3175 0 R /XYZ 71.731 540.807 null]
 >> endobj
-2631 0 obj <<
-/D [2623 0 R /XYZ 71.731 657.664 null]
+3180 0 obj <<
+/D [3175 0 R /XYZ 71.731 525.863 null]
 >> endobj
-2632 0 obj <<
-/D [2623 0 R /XYZ 89.664 641.888 null]
+3181 0 obj <<
+/D [3175 0 R /XYZ 108.889 504.707 null]
 >> endobj
-2633 0 obj <<
-/D [2623 0 R /XYZ 300.451 641.888 null]
+1503 0 obj <<
+/D [3175 0 R /XYZ 71.731 453.499 null]
 >> endobj
-2634 0 obj <<
-/D [2623 0 R /XYZ 450.128 641.888 null]
+482 0 obj <<
+/D [3175 0 R /XYZ 367.202 414.127 null]
 >> endobj
-2635 0 obj <<
-/D [2623 0 R /XYZ 71.731 639.731 null]
+3182 0 obj <<
+/D [3175 0 R /XYZ 71.731 403.762 null]
 >> endobj
-2636 0 obj <<
-/D [2623 0 R /XYZ 89.664 623.955 null]
+3183 0 obj <<
+/D [3175 0 R /XYZ 71.731 391.846 null]
 >> endobj
-2637 0 obj <<
-/D [2623 0 R /XYZ 135.89 623.955 null]
+3184 0 obj <<
+/D [3175 0 R /XYZ 71.731 386.864 null]
 >> endobj
-2638 0 obj <<
-/D [2623 0 R /XYZ 175.172 623.955 null]
+3185 0 obj <<
+/D [3175 0 R /XYZ 89.664 366.107 null]
 >> endobj
-2639 0 obj <<
-/D [2623 0 R /XYZ 252.362 623.955 null]
+3187 0 obj <<
+/D [3175 0 R /XYZ 71.731 363.95 null]
 >> endobj
-2640 0 obj <<
-/D [2623 0 R /XYZ 343.519 623.955 null]
+3188 0 obj <<
+/D [3175 0 R /XYZ 89.664 348.174 null]
 >> endobj
-2641 0 obj <<
-/D [2623 0 R /XYZ 490.965 611.004 null]
+3190 0 obj <<
+/D [3175 0 R /XYZ 71.731 346.018 null]
 >> endobj
-2642 0 obj <<
-/D [2623 0 R /XYZ 71.731 603.866 null]
+3191 0 obj <<
+/D [3175 0 R /XYZ 89.664 330.242 null]
 >> endobj
-2643 0 obj <<
-/D [2623 0 R /XYZ 71.731 577.963 null]
+3193 0 obj <<
+/D [3175 0 R /XYZ 71.731 323.103 null]
 >> endobj
-2644 0 obj <<
-/D [2623 0 R /XYZ 71.731 563.019 null]
+3195 0 obj <<
+/D [3175 0 R /XYZ 71.731 266.69 null]
 >> endobj
-2645 0 obj <<
-/D [2623 0 R /XYZ 76.712 513.569 null]
+3196 0 obj <<
+/D [3175 0 R /XYZ 71.731 201.559 null]
 >> endobj
-2646 0 obj <<
-/D [2623 0 R /XYZ 136.488 470.024 null]
+3197 0 obj <<
+/D [3175 0 R /XYZ 118.555 162.995 null]
 >> endobj
-2647 0 obj <<
-/D [2623 0 R /XYZ 76.712 410.352 null]
+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 ]
 >> endobj
-2648 0 obj <<
-/D [2623 0 R /XYZ 89.664 392.419 null]
+3200 0 obj <<
+/Length 2498      
+/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�D3׋0��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',]27%~�^�#ă�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
+endobj
+3199 0 obj <<
+/Type /Page
+/Contents 3200 0 R
+/Resources 3198 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3129 0 R
 >> endobj
-2649 0 obj <<
-/D [2623 0 R /XYZ 71.731 377.311 null]
+3201 0 obj <<
+/D [3199 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2650 0 obj <<
-/D [2623 0 R /XYZ 89.664 361.535 null]
+3202 0 obj <<
+/D [3199 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2651 0 obj <<
-/D [2623 0 R /XYZ 71.731 341.445 null]
+3203 0 obj <<
+/D [3199 0 R /XYZ 364.919 682.441 null]
 >> endobj
-422 0 obj <<
-/D [2623 0 R /XYZ 304.825 304.23 null]
+1504 0 obj <<
+/D [3199 0 R /XYZ 71.731 667.333 null]
 >> endobj
-2652 0 obj <<
-/D [2623 0 R /XYZ 71.731 293.865 null]
+486 0 obj <<
+/D [3199 0 R /XYZ 244.469 635.019 null]
 >> endobj
-2653 0 obj <<
-/D [2623 0 R /XYZ 71.731 281.948 null]
+3204 0 obj <<
+/D [3199 0 R /XYZ 71.731 626.381 null]
 >> endobj
-2654 0 obj <<
-/D [2623 0 R /XYZ 71.731 276.967 null]
+3205 0 obj <<
+/D [3199 0 R /XYZ 71.731 575.079 null]
 >> endobj
-2655 0 obj <<
-/D [2623 0 R /XYZ 89.664 256.21 null]
+3206 0 obj <<
+/D [3199 0 R /XYZ 71.731 560.135 null]
 >> endobj
-2656 0 obj <<
-/D [2623 0 R /XYZ 71.731 254.053 null]
+3207 0 obj <<
+/D [3199 0 R /XYZ 71.731 511.083 null]
 >> endobj
-2657 0 obj <<
-/D [2623 0 R /XYZ 89.664 238.277 null]
+3208 0 obj <<
+/D [3199 0 R /XYZ 71.731 475.118 null]
 >> endobj
-2658 0 obj <<
-/D [2623 0 R /XYZ 71.731 236.12 null]
+3209 0 obj <<
+/D [3199 0 R /XYZ 104.01 463.562 null]
 >> endobj
-2659 0 obj <<
-/D [2623 0 R /XYZ 89.664 220.344 null]
+3210 0 obj <<
+/D [3199 0 R /XYZ 104.01 451.905 null]
 >> endobj
-2660 0 obj <<
-/D [2623 0 R /XYZ 71.731 200.255 null]
+3211 0 obj <<
+/D [3199 0 R /XYZ 147.048 428.593 null]
 >> endobj
-426 0 obj <<
-/D [2623 0 R /XYZ 381.763 163.039 null]
+3212 0 obj <<
+/D [3199 0 R /XYZ 104.01 416.937 null]
 >> endobj
-2661 0 obj <<
-/D [2623 0 R /XYZ 71.731 152.674 null]
+3213 0 obj <<
+/D [3199 0 R /XYZ 71.731 357.247 null]
 >> endobj
-2662 0 obj <<
-/D [2623 0 R /XYZ 277.308 142.915 null]
+3214 0 obj <<
+/D [3199 0 R /XYZ 71.731 335.343 null]
+>> endobj
+3215 0 obj <<
+/D [3199 0 R /XYZ 118.555 294.81 null]
+>> endobj
+3216 0 obj <<
+/D [3199 0 R /XYZ 225.689 283.333 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]
+>> endobj
+3218 0 obj <<
+/D [3199 0 R /XYZ 71.731 200.816 null]
+>> endobj
+3219 0 obj <<
+/D [3199 0 R /XYZ 86.396 177.573 null]
+>> endobj
+3220 0 obj <<
+/D [3199 0 R /XYZ 71.731 170.435 null]
+>> endobj
+3221 0 obj <<
+/D [3199 0 R /XYZ 401.148 146.689 null]
+>> endobj
+3222 0 obj <<
+/D [3199 0 R /XYZ 71.731 121.618 null]
 >> endobj
-2663 0 obj <<
-/D [2623 0 R /XYZ 71.731 109.874 null]
+3223 0 obj <<
+/D [3199 0 R /XYZ 104.01 112.118 null]
 >> endobj
-2664 0 obj <<
-/D [2623 0 R /XYZ 71.731 96.922 null]
+3224 0 obj <<
+/D [3199 0 R /XYZ 104.01 100.462 null]
 >> endobj
-2622 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F44 1440 0 R >>
+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 ]
 >> endobj
-2668 0 obj <<
-/Length 1407      
+3227 0 obj <<
+/Length 2119      
 /Filter /FlateDecode
 >>
 stream
-xڭX[��8~�_��D��sg�2�vw�M�N����gb-�,����������V#
����w�!ذ�F�;B��I~a���VK%���\o.��:���w���p-Vd��B�66����>>T�\,m�2$��4�����u�����e��͟w�ֶ�(
-�Y�\/DvhK�B���C��;q�B�n�t!(-""�h�P!�w��mkxmm�-��j���WӒ�2G;��]ؖY�̑�*��g^�T����\<���̩�h�}*'���ɜ�Za{�*x|8d4����S�=�ru(Y*p�T�,�Z/�\�
-_*J�qN[-%�UI���b�u%��|��vڤ��P���K7j�9dq��j���1Ң�=$r��6�<u���~��g>�PR�[`���������{N@MFz1�v�����'@�<.Ҹb���c��m�2&�L��T��I5^���9�:�,�G^��3��9�,%"�tN2kl�yf����e�V%�`�R� EJ>˺_J9al��:�]8`��=�sA���	8���1=�FY&���pP;z��#�ܓ�mt�����Qwi}1�=�C��L�ɜb�^���<a�Y&����
:ɬL5��I����p�x�Ö�`ز}q�$%�v��� P�>.���G=�m�c�T�"�괝�����-m߂jy�02:�=�Do�Y�e�|\j�*����0W��0y��2��e*�pv\�����q[�#�G�5��N,��Tu�U�7;��L={C�����b�MQ��ڪt��Wq�@5Љ�M����Y��i�&�qK�P�mVdO�i�O�d\	z�X����DD}�����sB۲,�x�|a��|���L�	���(H�I�c�R�T&+>Y^�*��%��+�0�#���xFt� ����or��m��-˼[o>}�������j������W�z{�Z����QLs�§��
\�"�����B��T{X��$!Z�O�#��R�,��l�8�'��a8IO��"782���w� e�ɛϒR�v���~�px��$uI����b"���#YE!�	X恔y�!X��F���%���7˲�1ֽrwM]�+���R��f�g�.���K��NY41m9����n�zۊV{�Ox��c��I���x��Z�A4D9f~�q
-��ԆF��42\��B��������G��X��P��?ޜ���^������>��)�(��p,:�LSs{umܖZ�u���x�96��T��C9�M]�p45�J��������N{��Q+�DY]q�+�>IY�K�[���u���䁼������X��	�U��&����j���G�#��)0�޽]�~���M�F���E�
Q����;��O��"��JrD�~�[�	��Aendstream
+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\��4b�߯�N�z��wzwX�`���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
-2667 0 obj <<
+3226 0 obj <<
 /Type /Page
-/Contents 2668 0 R
-/Resources 2666 0 R
+/Contents 3227 0 R
+/Resources 3225 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2665 0 R
+/Parent 3129 0 R
 >> endobj
-2669 0 obj <<
-/D [2667 0 R /XYZ 71.731 729.265 null]
+3228 0 obj <<
+/D [3226 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2670 0 obj <<
-/D [2667 0 R /XYZ 71.731 718.306 null]
+3229 0 obj <<
+/D [3226 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2671 0 obj <<
-/D [2667 0 R /XYZ 89.664 708.344 null]
+3230 0 obj <<
+/D [3226 0 R /XYZ 104.01 696.687 null]
 >> endobj
-2672 0 obj <<
-/D [2667 0 R /XYZ 71.731 706.187 null]
+3231 0 obj <<
+/D [3226 0 R /XYZ 71.731 660.311 null]
 >> endobj
-2673 0 obj <<
-/D [2667 0 R /XYZ 89.664 690.411 null]
+3232 0 obj <<
+/D [3226 0 R /XYZ 104.01 638.406 null]
 >> endobj
-2674 0 obj <<
-/D [2667 0 R /XYZ 71.731 662.351 null]
+3233 0 obj <<
+/D [3226 0 R /XYZ 104.01 626.75 null]
 >> endobj
-2675 0 obj <<
-/D [2667 0 R /XYZ 89.664 646.575 null]
+3234 0 obj <<
+/D [3226 0 R /XYZ 104.01 615.093 null]
 >> endobj
-2676 0 obj <<
-/D [2667 0 R /XYZ 71.731 605.564 null]
+3235 0 obj <<
+/D [3226 0 R /XYZ 104.01 603.437 null]
 >> endobj
-2677 0 obj <<
-/D [2667 0 R /XYZ 89.664 589.788 null]
+3236 0 obj <<
+/D [3226 0 R /XYZ 104.01 591.781 null]
 >> endobj
-2678 0 obj <<
-/D [2667 0 R /XYZ 193.314 589.788 null]
+3237 0 obj <<
+/D [3226 0 R /XYZ 104.01 580.125 null]
 >> endobj
-2679 0 obj <<
-/D [2667 0 R /XYZ 332.302 589.788 null]
+3238 0 obj <<
+/D [3226 0 R /XYZ 71.731 568.468 null]
 >> endobj
-2680 0 obj <<
-/D [2667 0 R /XYZ 71.731 582.65 null]
+3239 0 obj <<
+/D [3226 0 R /XYZ 118.555 524.923 null]
 >> endobj
-2681 0 obj <<
-/D [2667 0 R /XYZ 71.731 533.833 null]
+3240 0 obj <<
+/D [3226 0 R /XYZ 136.092 516.459 null]
 >> endobj
-2682 0 obj <<
-/D [2667 0 R /XYZ 71.731 491.059 null]
+3241 0 obj <<
+/D [3226 0 R /XYZ 71.731 482.882 null]
 >> endobj
-430 0 obj <<
-/D [2667 0 R /XYZ 398.777 451.686 null]
+3242 0 obj <<
+/D [3226 0 R /XYZ 71.731 443.086 null]
 >> endobj
-2683 0 obj <<
-/D [2667 0 R /XYZ 71.731 448.717 null]
+1506 0 obj <<
+/D [3226 0 R /XYZ 71.731 412.202 null]
 >> endobj
-434 0 obj <<
-/D [2667 0 R /XYZ 359.858 417.215 null]
+494 0 obj <<
+/D [3226 0 R /XYZ 264.948 378.892 null]
 >> endobj
-2684 0 obj <<
-/D [2667 0 R /XYZ 71.731 408.763 null]
+3243 0 obj <<
+/D [3226 0 R /XYZ 71.731 370.255 null]
 >> endobj
-2685 0 obj <<
-/D [2667 0 R /XYZ 71.731 373.216 null]
+3244 0 obj <<
+/D [3226 0 R /XYZ 496.727 347.012 null]
 >> endobj
-2686 0 obj <<
-/D [2667 0 R /XYZ 71.731 272.159 null]
+3245 0 obj <<
+/D [3226 0 R /XYZ 415.635 334.06 null]
 >> endobj
-438 0 obj <<
-/D [2667 0 R /XYZ 381.114 236.692 null]
+3246 0 obj <<
+/D [3226 0 R /XYZ 71.731 275.116 null]
 >> endobj
-2687 0 obj <<
-/D [2667 0 R /XYZ 71.731 228.24 null]
+3247 0 obj <<
+/D [3226 0 R /XYZ 71.731 241.308 null]
 >> endobj
-2688 0 obj <<
-/D [2667 0 R /XYZ 71.731 192.693 null]
+3248 0 obj <<
+/D [3226 0 R /XYZ 104.01 229.751 null]
 >> endobj
-2689 0 obj <<
-/D [2667 0 R /XYZ 71.731 138.262 null]
+3249 0 obj <<
+/D [3226 0 R /XYZ 104.01 218.095 null]
 >> endobj
-2666 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F23 1057 0 R >>
+3250 0 obj <<
+/D [3226 0 R /XYZ 71.731 216.88 null]
+>> endobj
+3251 0 obj <<
+/D [3226 0 R /XYZ 104.01 194.782 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]
+>> 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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2692 0 obj <<
-/Length 1552      
+3257 0 obj <<
+/Length 1387      
 /Filter /FlateDecode
 >>
 stream
-x��XY��8~�_�7�ډ�|�}��P�@����}��J�ű\>f�����d������r��֧��0��.<J<f@L�YD�3c��//�(J�Qdݓ�Ϟ>��E@�Z�ۅm�3��g��w�E���ܳ���jm:��"깉I��0�d;5uQ��r�O��l�W���:l��#�o�4O�L�3��$pi�ާ�˶�,B
b��2�_�-V��qUj�)����OI�W�Kq8��jU�K���81k���p僜�q΋CR�q]�TC��υ�B�p��Y��T{�wҌz��[Q̩:�1�����rNU�,V���sQT����@�CY���t�����NT{Th�Ǯ�j�W;X���q�x�+^�H�����=Y��{2�Sz�6R#-�d���u�9����%'�Gj%�{��3��K�U,ɐ�?ܩ�v�I��OB�h��1�,���s��N�(m("M7��6�z���#�{�x�f�����[��֫[R��Im��(����a�&��9J(���u��)�ㄞ�����UB/~�P��ա¨���M�vy���Dщ"�_��8���Ѽ��\
#�[!R��s�+^�F�J��s��]��I�KU��9p
p*�4ydo�R��6|��\�_on���2|�����M�:�)�����O�L*�eǣ�8rYY�>�\gy~*��镅�N�!��"V<�����r��%�*�]ʇ�Z�c��=/��~�R���4)�s����M�cY5�oi��������[1m�����GI��Ȁ�!N����Ad�)QWe"�?z0ؚ�j�s�E����ИE��	��\�u�_��t��v�_F�hS�f��0�j�[uu�|�AZ�G�ل�.7��W7!�4t�1�����Sl�?仂ŪM�����y˥�ݫ�w�����p.W��;�R��մ���<�.��}+w�GAt/��$�b|nq�/�a�`�|��H�N�v�!�m�(�rV��N7�I��:\x9I%��"�0peP}��{)d�@@ �ah�&�w	��`t��yk��e�{��
{Q%��٤mQ$�t�Г���n�H{�k�����/0�"�,�Ѿ�́w}DI`�o�mq�'�te��m^�L3�k�Ğ����h`3
-s�h�,Th�������y�d����<{��)������X�0D�0|�=�v:����luyn�U�L�Xu>:jy��ǼKdp�����V����X��e3��>�dpRe���T����v$�����aڊ�2O���&��8
Z� �QkZ�m�c�HC%���� J��YK_�3,�<r�b��N���B|�%�.��I��zb
-u�I���+��Ȓ2����������	QSa���������ª$����R��YK��ɯ���z^��5�������a�$ZE&U9���<��U�S -�{-���ϵ�%�7�,�N'�>�������܁����H�w�m�\���dǤ$��a��r�ǥќ�'5Q��}!;�lؤB���3�����O�����|�>��&JH�m��o�S���"Gendstream
+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
-2691 0 obj <<
+3256 0 obj <<
 /Type /Page
-/Contents 2692 0 R
-/Resources 2690 0 R
+/Contents 3257 0 R
+/Resources 3255 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2665 0 R
->> endobj
-2693 0 obj <<
-/D [2691 0 R /XYZ 71.731 729.265 null]
->> endobj
-2694 0 obj <<
-/D [2691 0 R /XYZ 71.731 741.22 null]
->> endobj
-442 0 obj <<
-/D [2691 0 R /XYZ 342.285 708.344 null]
->> endobj
-2695 0 obj <<
-/D [2691 0 R /XYZ 71.731 699.891 null]
->> endobj
-2696 0 obj <<
-/D [2691 0 R /XYZ 71.731 674.306 null]
->> endobj
-2697 0 obj <<
-/D [2691 0 R /XYZ 71.731 669.325 null]
->> endobj
-2698 0 obj <<
-/D [2691 0 R /XYZ 89.664 648.568 null]
->> endobj
-2699 0 obj <<
-/D [2691 0 R /XYZ 71.731 646.411 null]
->> endobj
-2700 0 obj <<
-/D [2691 0 R /XYZ 89.664 630.635 null]
->> endobj
-2701 0 obj <<
-/D [2691 0 R /XYZ 71.731 628.478 null]
+/Parent 3272 0 R
+/Annots [ 3261 0 R ]
 >> endobj
-2702 0 obj <<
-/D [2691 0 R /XYZ 89.664 612.702 null]
+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
-2703 0 obj <<
-/D [2691 0 R /XYZ 71.731 605.564 null]
+3258 0 obj <<
+/D [3256 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2704 0 obj <<
-/D [2691 0 R /XYZ 71.731 582.65 null]
+3259 0 obj <<
+/D [3256 0 R /XYZ 118.555 684.724 null]
 >> endobj
-2705 0 obj <<
-/D [2691 0 R /XYZ 71.731 516.563 null]
+3260 0 obj <<
+/D [3256 0 R /XYZ 421.576 676.259 null]
 >> endobj
-2706 0 obj <<
-/D [2691 0 R /XYZ 71.731 465.589 null]
+1507 0 obj <<
+/D [3256 0 R /XYZ 71.731 632.72 null]
 >> endobj
-1184 0 obj <<
-/D [2691 0 R /XYZ 71.731 332.951 null]
+498 0 obj <<
+/D [3256 0 R /XYZ 295.902 600.324 null]
 >> endobj
-446 0 obj <<
-/D [2691 0 R /XYZ 341.27 287.697 null]
+3262 0 obj <<
+/D [3256 0 R /XYZ 71.731 589.959 null]
 >> endobj
-2707 0 obj <<
-/D [2691 0 R /XYZ 71.731 275.259 null]
+3263 0 obj <<
+/D [3256 0 R /XYZ 355.306 580.199 null]
 >> endobj
-2708 0 obj <<
-/D [2691 0 R /XYZ 71.731 251.03 null]
+3264 0 obj <<
+/D [3256 0 R /XYZ 71.731 555.129 null]
 >> endobj
-2709 0 obj <<
-/D [2691 0 R /XYZ 71.731 246.048 null]
+3265 0 obj <<
+/D [3256 0 R /XYZ 104.01 545.629 null]
 >> endobj
-2710 0 obj <<
-/D [2691 0 R /XYZ 81.694 225.291 null]
+3266 0 obj <<
+/D [3256 0 R /XYZ 104.01 533.973 null]
 >> endobj
-2711 0 obj <<
-/D [2691 0 R /XYZ 71.731 223.134 null]
+3267 0 obj <<
+/D [3256 0 R /XYZ 71.731 522.317 null]
 >> endobj
-2712 0 obj <<
-/D [2691 0 R /XYZ 81.694 207.358 null]
+3268 0 obj <<
+/D [3256 0 R /XYZ 118.555 478.771 null]
 >> endobj
-2713 0 obj <<
-/D [2691 0 R /XYZ 71.731 205.202 null]
+3269 0 obj <<
+/D [3256 0 R /XYZ 297.118 470.307 null]
 >> endobj
-450 0 obj <<
-/D [2691 0 R /XYZ 249.392 167.986 null]
+3270 0 obj <<
+/D [3256 0 R /XYZ 71.731 448.387 null]
 >> endobj
-2714 0 obj <<
-/D [2691 0 R /XYZ 71.731 160.634 null]
+3271 0 obj <<
+/D [3256 0 R /XYZ 462.063 415.729 null]
 >> endobj
-2690 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R >>
+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
-2717 0 obj <<
-/Length 2725      
+3275 0 obj <<
+/Length 2509      
 /Filter /FlateDecode
 >>
 stream
-xڥZY��6~�_��U�h����)�f���==��V�	��y-k&�~@7�KW�\cR���b;��ݑ9G.���p��w������.9��|x�{�g�ߝ�S��λ�u��{�}ωCo�����]ƛ^�������ߦe^�<ϫ�~�aس���yQ��oO?�}�dx���9���x�f!�w��n��A���(�^�N�������LT�C�	}S�O��#8=|ٳ�A�]^㢼��$��E��fMZ�8/���]AQ}��*?��|��W��^�]�i��Z^���U:'�,�!�<�9'tO��lx����ȹ�Lߝ�L�ӗVh�
��WRy|+��^
-�@�E�z�ש%����T�-��R���8‹_�.���3�t�/��ͯnȌ��_��D��DR���P>󹋍_G��kyQ�����S��9ĨU�	z��#7���6'l�Y:u,��o꜠���)�P1�s�W[�1���7�����Tn#{�[��[�'���Դ�2�]���=.�lj�L�}����ї��E=Z�N��kB-$J5 �,Eݔ��:��P
��Ǚb�w�dy�ZԞ���gX�"=�c:W��iӶ��>Q�QZ�2N�/�K�
-��<�Ƈ3����Az�K�!��GP_�NT�p��Ӵ�[�r�f]K�hw�=!�r�y�$1/�Th����PT�����Yrǥ2;�%zh�KwvI&ҡ���C�6�T��/GvIP7#f	,�F]L��V�Y7�{G��u��KN�a*���5�U��V���~M�U�M��n���{J�E�˗[��a���L�1u���@�-]�C�T��9 `�����2ԝ��{\�e(*@�s^H-�\t�oX�<�h�ud�"�,�.������"�Ո�
<�|h�_���ѭ�3��,+1*��0ik:w�n�q&�r2E�����:Ew�r%@�h(?�GU{n*��/��vC�I2�C�%ϥ�e��	8��-4��AO��y
-.R����O$E
`�U��(��n�RV�F��Pn������0*�f��jM�,qS�y{�����UE�N;����������d+Ϡ������ÿս�F���ެ�B'p=N�����0O��E:��xPI�T��P�����.����2��S�-�*�hP�ce�W}����
�1Е1�5lC$��
-z_Xy�J7�ց����:�����Ɯ(<���^����9����_���1"��Еb�RL�KE�CE)d���r�^��HUx����՟A;tH���5��Y\$qU/���Z,p`3�� �~6p�Iɾt���������)��c�FjžZ���'��SF��vD�3�U�X:�.m�boD�̮�����G(A�(����5�3bp��8��n �ll��v�
-c���{�XI�����I�#
����U�Y�R|T(�?Zi�:��K��ә����jZ�	��W�
-�M�D�Y�~Mg�WȤ��^Wx������Mf����9�l�G�����F/9��,�S2R1����(
-�xͯ�7���{FV���3����������A����lJ0#��<�ݹ"�؜��N|:n�5��	as�ny;�asl{ۮ��m\���-o/y���
�3������*j���L����Ϝ��5<x.�
-jՖ�hͦ�sB� �-$�tb���f[��� �P(�mH�57!�Kt���%��!��{FV���i�W��M��ޚ�f���>�F�Ud@��@lى�l
-;'t�B�#tD��-�ٖ`Fh�	o��!Í�����'+��i݌f�f~�������4s�n���w���TW����>�ҵ�%�g;3(tf< �te(Q�5!���F^;��ґ��P��w����)�Q U��EWq0U�k��%
��/��.��ik�^����5���V���b��XZ�i�����l%���.M�с(v2r>
=d�jv=��ʴD�7�&�d|u�
-s|�g+Vc�Ҕ�:�3s,��6��PW��f[?��`�h
-��\p���?��0Z�lf��:lYؑ9'7�f�k���I��
t���0t3A+�:1��~�f`۶��)�Y��]�̓���i�����ΧP�zA�Y�j�'���@+M����r�1FV����^@����/��w*�|���l�G��S����Z��0��$�N�η��eZɜ��\�8ڬ
�G>�#}��>�%�R��|��D!ȹ��LՊõ�m°	p��,�[̫{�%Vz@	20�#ѻ���IO/�F�ݺ�aվ�����z[t��B^���ޜ�S.�%Q(�/y	���-�Q�r�������{T���ܟZ���?Zrg�^��'@�;���;!�5&�BW������7w�B��>���N.|h����ɓ�k��|���%�/�h�wq݂ā�G�?n����e��*c3�>�,]��J�w1;��sbׇ�ȉ|��6zP��dG�t|���*M��p���D�QMGԓ����hX�Db����ϯj�1�xj=�4?3c{�F򍼅�X㐓�[g)aݮM�x/���$#��F*n��4%����]�[FN�UM֘겘�d
�-���v��[ʥ��pG��i`7:���V@�oq�om��Yg�`�߼>�k7��|��
-?�@<X��x��6�B���#!������Ћ���
-i������%C��[Q5Hendstream
+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��pjɛ
䁊� s=ʜa�k�q���g����qs���k��<���o�;=�>P�w�q��&�SL���4�`�?��b%�����eRx���\��T�*	��Pe)��+�:��в����شכz��]}����:�w���	_��v)\�������5n��rX�3*���"�]�%�V8ƒq走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�#���gZR�����]wpY�[l��+<�#)P��w�;��^HnJ�4BT�<w1�kA�O�[I��Y�&endstream
 endobj
-2716 0 obj <<
+3274 0 obj <<
 /Type /Page
-/Contents 2717 0 R
-/Resources 2715 0 R
+/Contents 3275 0 R
+/Resources 3273 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2665 0 R
-/Annots [ 2728 0 R 2731 0 R 2734 0 R 2736 0 R ]
+/Parent 3272 0 R
+/Annots [ 3282 0 R 3287 0 R ]
 >> endobj
-2728 0 obj <<
+3282 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [141.14 363.95 205.897 372.862]
+/Rect [97.498 367.618 132.915 376.529]
 /Subtype /Link
-/A << /S /GoTo /D (upgrade-cvs) >>
+/A << /S /GoTo /D (gloss-daemon) >>
 >> endobj
-2731 0 obj <<
+3287 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [203.157 346.018 267.914 354.929]
+/Rect [258.734 354.666 290.823 363.578]
 /Subtype /Link
-/A << /S /GoTo /D (upgrade-tarball) >>
+/A << /S /GoTo /D (gloss-service) >>
 >> endobj
-2734 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) >>
+3276 0 obj <<
+/D [3274 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2736 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.601 271.671 171.905 280.209]
-/Subtype /Link
-/A << /S /GoTo /D (template-method) >>
+1508 0 obj <<
+/D [3274 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2718 0 obj <<
-/D [2716 0 R /XYZ 71.731 729.265 null]
+502 0 obj <<
+/D [3274 0 R /XYZ 344.957 703.236 null]
 >> endobj
-2719 0 obj <<
-/D [2716 0 R /XYZ 71.731 605.564 null]
+3277 0 obj <<
+/D [3274 0 R /XYZ 71.731 681.855 null]
 >> endobj
-2720 0 obj <<
-/D [2716 0 R /XYZ 71.731 540.807 null]
+3278 0 obj <<
+/D [3274 0 R /XYZ 522.288 634.645 null]
 >> endobj
-2721 0 obj <<
-/D [2716 0 R /XYZ 71.731 525.863 null]
+3279 0 obj <<
+/D [3274 0 R /XYZ 71.731 616.593 null]
 >> endobj
-2722 0 obj <<
-/D [2716 0 R /XYZ 100.623 504.707 null]
+1509 0 obj <<
+/D [3274 0 R /XYZ 71.731 575.701 null]
 >> endobj
-2723 0 obj <<
-/D [2716 0 R /XYZ 71.731 453.499 null]
+506 0 obj <<
+/D [3274 0 R /XYZ 252.56 532.604 null]
 >> endobj
-454 0 obj <<
-/D [2716 0 R /XYZ 367.202 414.127 null]
+1510 0 obj <<
+/D [3274 0 R /XYZ 71.731 528.774 null]
 >> endobj
-2724 0 obj <<
-/D [2716 0 R /XYZ 71.731 403.762 null]
+510 0 obj <<
+/D [3274 0 R /XYZ 198.219 493.231 null]
 >> endobj
-2725 0 obj <<
-/D [2716 0 R /XYZ 71.731 391.846 null]
+3280 0 obj <<
+/D [3274 0 R /XYZ 71.731 485.879 null]
 >> endobj
-2726 0 obj <<
-/D [2716 0 R /XYZ 71.731 386.864 null]
+1511 0 obj <<
+/D [3274 0 R /XYZ 71.731 427.115 null]
 >> endobj
-2727 0 obj <<
-/D [2716 0 R /XYZ 89.664 366.107 null]
+514 0 obj <<
+/D [3274 0 R /XYZ 267.87 389.899 null]
 >> endobj
-2729 0 obj <<
-/D [2716 0 R /XYZ 71.731 363.95 null]
+3281 0 obj <<
+/D [3274 0 R /XYZ 71.731 379.756 null]
 >> endobj
-2730 0 obj <<
-/D [2716 0 R /XYZ 89.664 348.174 null]
+3283 0 obj <<
+/D [3274 0 R /XYZ 209.73 369.774 null]
 >> endobj
-2732 0 obj <<
-/D [2716 0 R /XYZ 71.731 346.018 null]
+3284 0 obj <<
+/D [3274 0 R /XYZ 291.334 369.774 null]
 >> endobj
-2733 0 obj <<
-/D [2716 0 R /XYZ 89.664 330.242 null]
+3285 0 obj <<
+/D [3274 0 R /XYZ 381.061 369.774 null]
 >> endobj
-2735 0 obj <<
-/D [2716 0 R /XYZ 71.731 323.103 null]
+3286 0 obj <<
+/D [3274 0 R /XYZ 419.603 369.774 null]
 >> endobj
-2737 0 obj <<
-/D [2716 0 R /XYZ 71.731 266.69 null]
+3288 0 obj <<
+/D [3274 0 R /XYZ 322.387 356.823 null]
 >> endobj
-2738 0 obj <<
-/D [2716 0 R /XYZ 71.731 201.559 null]
+3289 0 obj <<
+/D [3274 0 R /XYZ 449.982 356.823 null]
 >> endobj
-2739 0 obj <<
-/D [2716 0 R /XYZ 118.555 162.995 null]
+3290 0 obj <<
+/D [3274 0 R /XYZ 489.834 356.823 null]
 >> endobj
-2715 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R /F48 1452 0 R >>
+3291 0 obj <<
+/D [3274 0 R /XYZ 436.781 343.872 null]
+>> endobj
+3292 0 obj <<
+/D [3274 0 R /XYZ 260.699 330.92 null]
+>> endobj
+3293 0 obj <<
+/D [3274 0 R /XYZ 171.642 317.969 null]
+>> endobj
+3294 0 obj <<
+/D [3274 0 R /XYZ 71.731 304.918 null]
+>> endobj
+3295 0 obj <<
+/D [3274 0 R /XYZ 71.731 289.974 null]
+>> endobj
+3296 0 obj <<
+/D [3274 0 R /XYZ 210.778 278.417 null]
+>> endobj
+3297 0 obj <<
+/D [3274 0 R /XYZ 317.348 278.417 null]
+>> endobj
+3298 0 obj <<
+/D [3274 0 R /XYZ 129.377 266.761 null]
+>> endobj
+1512 0 obj <<
+/D [3274 0 R /XYZ 71.731 238.865 null]
+>> endobj
+518 0 obj <<
+/D [3274 0 R /XYZ 215.507 199.493 null]
+>> endobj
+3299 0 obj <<
+/D [3274 0 R /XYZ 71.731 192.062 null]
+>> endobj
+3300 0 obj <<
+/D [3274 0 R /XYZ 401.912 179.368 null]
+>> endobj
+1513 0 obj <<
+/D [3274 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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2746 0 obj <<
-/Length 2335      
+3305 0 obj <<
+/Length 1625      
 /Filter /FlateDecode
 >>
 stream
-xڵY[��6~�_�bcZ%˞}�&�	��zC@K��F����{HR��d�.�D7�\�s��Y��Y���%ْd�͊�]4����w1�X�e������ߔζd�����,�"�G�YN�ɒ�c���Ձu���e�EsJ����X����u[�W/�E<�����-~|s�ݣ�ќl7��5W�%�(�S3���F�����"��رk��o��^�[�M#I6?�'־��P�hq�q񩯕�H�IGJ��� �yN����)o%��n�OZF�K`g?$$ސ��>�	lT#u0#g'd���zQ�r荊���+�Hv�Yo,R-2XU6�/��~{��tయ��E
-5�T�=V�h/�X��>t�n���yÙDJ��{e
^9���in<M�S�8���ε�Eh��X���-��O�Z�֡����3@����)W�Xd�\:P#���T���_-���D�(-1�U6��n��4�I�栆�����tZԱY���2����">|�l�;Q��{'�e6[�4#iD'Xq��B]h���_4�����k(��Y�s6A�{w��a'U��CF�`@r�¦cꀂ�$]�N��k����0��e�2�	�0�֕����
�o�?uU�J�3x��}�������J���w��	���	lp��p�X�FQSx �]�\Q��e>Xx��t����ڠ�_ܛؙ*�XR��Yz�݁!���w�uJ��}��ɰOS�2Pkn���
^�3}G��R7wE��VMp(����E69�w(-��x-�?ki{��E�N��1�^77�l�P�,�l;V|�yI�o���ȹ�@��[OBs/�h~��q��1�8�C09��s��]Ãr�����p_<���{�
-�'r㍫d.f;�#�$�b�Ѻ@��ӑ�/��Ή���p�Fs̤�wuS��˅g)�AZ��܁Sv���g_U%wRj�I��uuh|0j$B��m?�`�`h�4͘3|�!�l�L�dm���{�ˠ���\���kr-$��F�q<��|R$���1��+$�31d��]�η�
-Al����)E��ib4M��`�����}���A�݋�5�x��KH����8��܂��u�\:C��`~��d����H�8mPŦ�#kKW�8/]�s�a��'8�L]
-��S�|μwp��M���Y�"��u��<�������ۚ�c���(�����i���[��\{rY"���y=IˬU�>G�b⭨*�R�O'm}���ׇ���_<`�h�G1��Y+�XՃNK+#�?!�����ď��1)O�/1P�^�<#�Y�J�EY��s~qow�\����3�5gO�W����F|��'�/y��^h�;��O���Z����7��}�y�������]_x�Ar5t�kn�-�����`���U���Z3�Y�B���yU�K�>���S�BP��U���fep
��
-�d'�<QG�q��)I�k�
-���qLI���
-J�&�s�ǻ_�f%�o���;���)X��5����Y�g���~��Zw��hؽ����I�"#]�c-��)L�6%̼����+6��{U� ]�$Ӥ���|R�\��[����K
��Au��}/�7�$Ȳ^oB�Bǯ�I���W�8d��
��I5�8���,%���
�PUb�|��0����_�*9�^�
���;[�uq���2 iJa�~��'X�����!s�h��#'S�l�7s
,u������Rj�^ĩ+�[Sݦ$@)ф5��x[������5hx��1�����̇[��h��E�A���z.Q����;�i�3:�Z�%Z�i�Ln��Z���brP�R��,���v)� �נ�K��0�(�4`?���TmI��p$M�I��a@3��3��������q��~6�'4�x��	[)�{�M���pо�G ��|8��a׵��nF��,��������r�T~^�U��.z2��[�a��`�Ͻ3�Z�8(�=���3�k�G��'�ԪH�Fs�F����q<
�ه�Aurld��%^��l)�v��K7��u�z�����4�t�/O��m<��l������lxzH��sly�Z�p�
��v�.a�.��p��ڣ|�d���vR�������P�Cm��A<�^$_^�����]�:���<!i�G��p7a(א�M�������>m����*�;>���Ǽ�ѕ>���o$��zq��
K�>Z=wA`���ԍS�����u��א?����&w��n��
�fVݰ[����wJ�F��nÖ	���
�	����{X>�
�����\�x�%�^%���>M>�K�5���]�Jendstream
+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�06H�<��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
 endobj
-2745 0 obj <<
+3304 0 obj <<
 /Type /Page
-/Contents 2746 0 R
-/Resources 2744 0 R
+/Contents 3305 0 R
+/Resources 3303 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2665 0 R
+/Parent 3272 0 R
+/Annots [ 3308 0 R 3326 0 R 3328 0 R ]
+>> endobj
+3308 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 <<
+/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 <<
+/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]
+>> endobj
+522 0 obj <<
+/D [3304 0 R /XYZ 164.538 705.748 null]
+>> endobj
+1514 0 obj <<
+/D [3304 0 R /XYZ 71.731 702.184 null]
 >> endobj
-2747 0 obj <<
-/D [2745 0 R /XYZ 71.731 729.265 null]
+526 0 obj <<
+/D [3304 0 R /XYZ 306.92 666.375 null]
 >> endobj
-2748 0 obj <<
-/D [2745 0 R /XYZ 71.731 718.306 null]
+3307 0 obj <<
+/D [3304 0 R /XYZ 71.731 656.233 null]
 >> endobj
-2749 0 obj <<
-/D [2745 0 R /XYZ 388.778 682.441 null]
+1515 0 obj <<
+/D [3304 0 R /XYZ 71.731 626.161 null]
 >> endobj
-2740 0 obj <<
-/D [2745 0 R /XYZ 71.731 667.333 null]
+530 0 obj <<
+/D [3304 0 R /XYZ 408.16 588.946 null]
 >> endobj
-458 0 obj <<
-/D [2745 0 R /XYZ 244.469 635.019 null]
+3309 0 obj <<
+/D [3304 0 R /XYZ 71.731 578.803 null]
 >> endobj
-2750 0 obj <<
-/D [2745 0 R /XYZ 71.731 626.381 null]
+3310 0 obj <<
+/D [3304 0 R /XYZ 213.741 568.821 null]
 >> endobj
-2751 0 obj <<
-/D [2745 0 R /XYZ 71.731 575.079 null]
+3311 0 obj <<
+/D [3304 0 R /XYZ 387.602 568.821 null]
 >> endobj
-2752 0 obj <<
-/D [2745 0 R /XYZ 71.731 560.135 null]
+3312 0 obj <<
+/D [3304 0 R /XYZ 249.294 555.87 null]
 >> endobj
-2753 0 obj <<
-/D [2745 0 R /XYZ 71.731 511.083 null]
+1792 0 obj <<
+/D [3304 0 R /XYZ 71.731 542.819 null]
 >> endobj
-2754 0 obj <<
-/D [2745 0 R /XYZ 71.731 475.118 null]
+3313 0 obj <<
+/D [3304 0 R /XYZ 71.731 503.038 null]
 >> endobj
-2755 0 obj <<
-/D [2745 0 R /XYZ 104.01 463.562 null]
+3314 0 obj <<
+/D [3304 0 R /XYZ 71.731 503.038 null]
 >> endobj
-2756 0 obj <<
-/D [2745 0 R /XYZ 104.01 451.905 null]
+3315 0 obj <<
+/D [3304 0 R /XYZ 71.731 491.996 null]
 >> endobj
-2757 0 obj <<
-/D [2745 0 R /XYZ 147.048 428.593 null]
+3316 0 obj <<
+/D [3304 0 R /XYZ 305.215 481.748 null]
 >> endobj
-2758 0 obj <<
-/D [2745 0 R /XYZ 104.01 416.937 null]
+3317 0 obj <<
+/D [3304 0 R /XYZ 71.731 480.34 null]
 >> endobj
-2759 0 obj <<
-/D [2745 0 R /XYZ 71.731 357.247 null]
+1793 0 obj <<
+/D [3304 0 R /XYZ 71.731 458.435 null]
 >> endobj
-2760 0 obj <<
-/D [2745 0 R /XYZ 71.731 335.343 null]
+3318 0 obj <<
+/D [3304 0 R /XYZ 71.731 413.573 null]
 >> endobj
-2761 0 obj <<
-/D [2745 0 R /XYZ 118.555 294.81 null]
+3319 0 obj <<
+/D [3304 0 R /XYZ 71.731 413.573 null]
 >> endobj
-2762 0 obj <<
-/D [2745 0 R /XYZ 222.223 283.333 null]
+3320 0 obj <<
+/D [3304 0 R /XYZ 71.731 402.532 null]
 >> endobj
-2763 0 obj <<
-/D [2745 0 R /XYZ 326.375 283.333 null]
+3321 0 obj <<
+/D [3304 0 R /XYZ 149.738 392.283 null]
 >> endobj
-2741 0 obj <<
-/D [2745 0 R /XYZ 71.731 238.1 null]
+3322 0 obj <<
+/D [3304 0 R /XYZ 71.731 390.876 null]
 >> endobj
-462 0 obj <<
-/D [2745 0 R /XYZ 277.022 209.453 null]
+3323 0 obj <<
+/D [3304 0 R /XYZ 71.731 379.36 null]
 >> endobj
-2764 0 obj <<
-/D [2745 0 R /XYZ 71.731 200.816 null]
+3324 0 obj <<
+/D [3304 0 R /XYZ 71.731 357.314 null]
 >> endobj
-2765 0 obj <<
-/D [2745 0 R /XYZ 86.396 177.573 null]
+3325 0 obj <<
+/D [3304 0 R /XYZ 71.731 357.314 null]
 >> endobj
-2766 0 obj <<
-/D [2745 0 R /XYZ 71.731 170.435 null]
+1516 0 obj <<
+/D [3304 0 R /XYZ 71.731 311.486 null]
 >> endobj
-2767 0 obj <<
-/D [2745 0 R /XYZ 386.567 146.689 null]
+534 0 obj <<
+/D [3304 0 R /XYZ 222.149 272.114 null]
 >> endobj
-2768 0 obj <<
-/D [2745 0 R /XYZ 71.731 121.618 null]
+3327 0 obj <<
+/D [3304 0 R /XYZ 71.731 264.762 null]
 >> endobj
-2769 0 obj <<
-/D [2745 0 R /XYZ 104.01 112.118 null]
+1794 0 obj <<
+/D [3304 0 R /XYZ 71.731 223.93 null]
 >> endobj
-2770 0 obj <<
-/D [2745 0 R /XYZ 104.01 100.462 null]
+3329 0 obj <<
+/D [3304 0 R /XYZ 71.731 186.206 null]
 >> endobj
-2744 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F23 1057 0 R /F44 1440 0 R /F55 1844 0 R /F51 1687 0 R >>
+3330 0 obj <<
+/D [3304 0 R /XYZ 191.311 175.277 null]
+>> endobj
+3331 0 obj <<
+/D [3304 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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2773 0 obj <<
-/Length 1879      
+3334 0 obj <<
+/Length 1926      
 /Filter /FlateDecode
 >>
 stream
-xڵXKs�6��W�ЙP"��N/I�v�Kۉ�� �АKB��_���ӎ�&�q��}�K`ǃ؉1���S��#'��<��7?_aM��$�ͫ���OA�(����	=�^�ā���wn�w�'��n�~�R�/�լ�}Vj��y��⁕%�|�ys�㍕1J��I��B�;	跗�3�aث�ދ�_Ϣ9��v�y.��4�m,������l1F�(�Hw�FE#"�ݏS��4�������Q�ge��G8�l��02T<,n53%v�Ď�#����f�$(��X!eռ��8��0*�<p��Ǽ0w�h�uF>����]��+~C���z��F	@hgd�J��2�ˎ��VS|Jh��B��RxN����?ߍ��n���>��}e���T0�R�*�`�(�(ڣ��z��sr@�7��7�]�$q��Q�NK���۫�-'�_�O��x���n�bk�نi��X����M�r� J����ImB�%m-Q�w���U���z��$*oNTQoK�+C��+��	xU�:�����=pqR+Z�jqaf��@�#�qC~9�L�d�V��x��#W��{�)����(H-�^Na�&Л��� ��~ѝ`��1��pBP�&�2�i'XM��Z�	>Ui.&;�-5�]6Z����je`��6�1�ia��vF��)˂d���?2{��1J�������u
�=¾I��I���Mђ������������
-�
-��v�ta���zE�OVRR�%�;A�I~4��Ź�=X���#�^)1m�"܋�n7#��{�!z2���y��"C����ZS2�����PY(X��_l0d�":���
�J�|�W}���;cǃTN&�U��A�2V���I���	��F�k�x�r�b�r�ȹ5��sWA��Ԕ�S-%MS�۳��u���g����I˛��|0����l��`��l~��AW�	vͅ�Gu��4c�7�=S`�<:�Z�����Ϸ[�8���#W���c��A�1QL��$v�ͭՓЂ��n�G59���g�ݠ���٬��P�޵��MqIJe���)!*W�{�����z���B�a�+ xX�H��k��1S�!"�q=�N3!�t4$?U�0w;i��h�	d\�̭��l��(�N���R�����	j�O���`bd�ʒ�uL��Π6
-j�u��4
���JE���?��~/V���EQ/aJ�&+o��F�>?H0|j�����eO�R�1u�k.�e��%'��oR/RЕ��'!��v���"��Ვ`[��)ߝ��Xκ�nf���J����A��p�$x���Ns.o*j��f{.%k�|�]���v��2O�*��׳8�L;�e	��"̶�Z���@�]/����(LAL܏r����2��4<P��C F�=�5(�eY�f���p?MI�!�MM��[F&�h�2ٓ�~���T��|Fm֭��`����l�)#p���E+�g>�Ƹרuۨ�44�>RN���l���M��*���~E��	����xmam�
-��`�91;>IE�[H���(�My;J�a�*z�}�=Ɯa�t�PJ�4>;p�E9�zS�(ؾ#Uc�i+:���$:CP�qhm�ٷ�3Kg=�M��RĨ�kL���-�קW����lE��$�P�ؠ3Ȗ_�h��LJ�-�~�%�w���H�����e¥�)�أ1��*����Ů9vz��Ѓ��v�I� o+���@9;�}���lMׯ|Y��֬ݛxR�Ǵ�ְ�_s5�����&�t��ы�+�$��%W}��S,�GM�r���Y�1;yV��O�O�.J�PpZ\�=�OE�L��W�S;A	����HW���
)2�__J�?0�endstream
+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
 endobj
-2772 0 obj <<
+3333 0 obj <<
 /Type /Page
-/Contents 2773 0 R
-/Resources 2771 0 R
+/Contents 3334 0 R
+/Resources 3332 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2665 0 R
->> endobj
-2774 0 obj <<
-/D [2772 0 R /XYZ 71.731 729.265 null]
->> endobj
-2775 0 obj <<
-/D [2772 0 R /XYZ 71.731 718.306 null]
->> endobj
-2776 0 obj <<
-/D [2772 0 R /XYZ 104.01 696.687 null]
+/Parent 3272 0 R
+/Annots [ 3340 0 R 3341 0 R ]
 >> endobj
-2777 0 obj <<
-/D [2772 0 R /XYZ 71.731 660.311 null]
+3340 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
-2778 0 obj <<
-/D [2772 0 R /XYZ 104.01 638.406 null]
+3341 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
-2779 0 obj <<
-/D [2772 0 R /XYZ 104.01 626.75 null]
+3335 0 obj <<
+/D [3333 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2780 0 obj <<
-/D [2772 0 R /XYZ 104.01 615.093 null]
+1517 0 obj <<
+/D [3333 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2781 0 obj <<
-/D [2772 0 R /XYZ 104.01 603.437 null]
+538 0 obj <<
+/D [3333 0 R /XYZ 192.823 706.118 null]
 >> endobj
-2782 0 obj <<
-/D [2772 0 R /XYZ 104.01 591.781 null]
+1518 0 obj <<
+/D [3333 0 R /XYZ 71.731 705.903 null]
 >> endobj
-2783 0 obj <<
-/D [2772 0 R /XYZ 104.01 580.125 null]
+542 0 obj <<
+/D [3333 0 R /XYZ 498.095 666.746 null]
 >> endobj
-2784 0 obj <<
-/D [2772 0 R /XYZ 71.731 568.468 null]
+3336 0 obj <<
+/D [3333 0 R /XYZ 71.731 656.381 null]
 >> endobj
-2785 0 obj <<
-/D [2772 0 R /XYZ 118.555 524.923 null]
+3337 0 obj <<
+/D [3333 0 R /XYZ 494.232 607.767 null]
 >> endobj
-2786 0 obj <<
-/D [2772 0 R /XYZ 136.497 516.459 null]
+3338 0 obj <<
+/D [3333 0 R /XYZ 71.731 592.658 null]
 >> endobj
-2787 0 obj <<
-/D [2772 0 R /XYZ 71.731 482.882 null]
+3339 0 obj <<
+/D [3333 0 R /XYZ 71.731 577.715 null]
 >> endobj
-2788 0 obj <<
-/D [2772 0 R /XYZ 71.731 443.086 null]
+3342 0 obj <<
+/D [3333 0 R /XYZ 76.712 538.626 null]
 >> endobj
-2742 0 obj <<
-/D [2772 0 R /XYZ 71.731 412.202 null]
+3343 0 obj <<
+/D [3333 0 R /XYZ 71.731 528.663 null]
 >> endobj
-466 0 obj <<
-/D [2772 0 R /XYZ 264.948 378.892 null]
+3344 0 obj <<
+/D [3333 0 R /XYZ 81.694 495.787 null]
 >> endobj
-2789 0 obj <<
-/D [2772 0 R /XYZ 71.731 370.255 null]
+3345 0 obj <<
+/D [3333 0 R /XYZ 71.731 493.63 null]
 >> endobj
-2790 0 obj <<
-/D [2772 0 R /XYZ 434.429 347.012 null]
+3346 0 obj <<
+/D [3333 0 R /XYZ 71.731 493.63 null]
 >> endobj
-2791 0 obj <<
-/D [2772 0 R /XYZ 356.41 334.06 null]
+3347 0 obj <<
+/D [3333 0 R /XYZ 91.656 482.835 null]
 >> endobj
-2792 0 obj <<
-/D [2772 0 R /XYZ 71.731 275.116 null]
+3348 0 obj <<
+/D [3333 0 R /XYZ 120.717 482.835 null]
 >> endobj
-2793 0 obj <<
-/D [2772 0 R /XYZ 71.731 241.308 null]
+3349 0 obj <<
+/D [3333 0 R /XYZ 120.717 482.835 null]
 >> endobj
-2794 0 obj <<
-/D [2772 0 R /XYZ 104.01 229.751 null]
+3350 0 obj <<
+/D [3333 0 R /XYZ 147.218 482.835 null]
 >> endobj
-2795 0 obj <<
-/D [2772 0 R /XYZ 104.01 218.095 null]
+3351 0 obj <<
+/D [3333 0 R /XYZ 147.218 482.835 null]
 >> endobj
-2796 0 obj <<
-/D [2772 0 R /XYZ 71.731 216.88 null]
+3352 0 obj <<
+/D [3333 0 R /XYZ 71.731 481.396 null]
 >> endobj
-2797 0 obj <<
-/D [2772 0 R /XYZ 104.01 194.782 null]
+3353 0 obj <<
+/D [3333 0 R /XYZ 91.656 469.884 null]
 >> endobj
-2798 0 obj <<
-/D [2772 0 R /XYZ 104.01 183.126 null]
+3354 0 obj <<
+/D [3333 0 R /XYZ 135.691 469.884 null]
 >> endobj
-2799 0 obj <<
-/D [2772 0 R /XYZ 71.731 146.75 null]
+3355 0 obj <<
+/D [3333 0 R /XYZ 135.691 469.884 null]
 >> endobj
-2800 0 obj <<
-/D [2772 0 R /XYZ 71.731 124.845 null]
+3356 0 obj <<
+/D [3333 0 R /XYZ 215.989 469.884 null]
 >> endobj
-2771 0 obj <<
-/Font << /F33 1160 0 R /F51 1687 0 R /F35 1229 0 R /F55 1844 0 R /F23 1057 0 R /F44 1440 0 R /F27 1064 0 R >>
-/ProcSet [ /PDF /Text ]
+3357 0 obj <<
+/D [3333 0 R /XYZ 215.989 469.884 null]
 >> endobj
-2803 0 obj <<
-/Length 1321      
-/Filter /FlateDecode
->>
-stream
-xڭW[��D~ϯ�Rc�l��o�����P�Jۉ��^חF�_��Ŏ�Zt��{v.��|�!�?��#/�V�;›W+�$6Nd3�yح�/�b��<�1
-q셌�HPo��]?I�筿����wY%k��sY����'��_�,������d[�����q0�!łh���ﰗ��k��	��JKs����GP3�ͽ��i��
-{� �tسN�Jņ�DȽM b�xB�2�p�x��b� &"/��84p��s�N�Z�0l_r�E��9�!Hb��"s�!��h���O>p�=ꋤ���9��[�/�,���Ъj<m�&���n����NQ�o�Z��V+�5-��8�r���!����em�g��Z-�"����:t"L"'��6O{f��5�&v�tFS5����m�G\�"0*�����,]@����A��{ի[H:顛 }|��z1xY�4�/8
- ���y��̄L��!Y*�a=.R9���)"KX����]F��,i dr���2C?��P��9C:�s�|f�q���9-G���=����{��b���(7ؙ+�GU5e�O��V���ͱ�Ud�lLT
-,D1"T��Ԏ����̻�r�:��THӵ��B�J��Be���&-���oOO��vW�;b��v�]�ҳ�4b��m�"O�wy?4�)�C
-������kփvn\�b����h"x����ީJ-�9�q�+V�(1�e�']�3!�	
-5a}LH�z?��ҥ΍��3˿�|�y7��'TU��Ì�aT�cK9�;��!����ÌG�9���̎���M)^=�����멱L/��C)TI��:d�Q!�s*4�C:�<X�����&�}�2�j��0��vj�փ�^̽�MU����S48�3svA���A0�fɟu�#AΡ����xX�Ka�'5��^�T�v��Kӌ�J�&��T&�LN��}Iw椳�g~��'P�����Lf�-���!\:��<^w��|b_��6��z��o��N��_�\w��^c1���������ƣ�.p
-*�|��q:m�i��������6�;�T5&�͓n�%�G.�7(�/��*mܦ2s���O���q�R�5P}��{�v`���v.�g[��f�^$�C�v=��T>0
-&����~	�d1i ���I�tpqÓ�r����6c�.�S�¾x5�,��n�H��ͷ���t���ش�jC����6Si���Ҁ/�H�W�WS��r��
kAcF("���og���o�…��Jt��ص����vEendstream
-endobj
-2802 0 obj <<
-/Type /Page
-/Contents 2803 0 R
-/Resources 2801 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2819 0 R
-/Annots [ 2807 0 R ]
+3358 0 obj <<
+/D [3333 0 R /XYZ 76.712 451.951 null]
 >> endobj
-2807 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [296.096 662.608 360.895 671.198]
-/Subtype /Link
-/A << /S /GoTo /D (upgrade-cvs) >>
+3359 0 obj <<
+/D [3333 0 R /XYZ 81.694 439 null]
 >> endobj
-2804 0 obj <<
-/D [2802 0 R /XYZ 71.731 729.265 null]
+3360 0 obj <<
+/D [3333 0 R /XYZ 92.483 439 null]
 >> endobj
-2805 0 obj <<
-/D [2802 0 R /XYZ 118.555 684.724 null]
+3361 0 obj <<
+/D [3333 0 R /XYZ 71.731 438.811 null]
 >> endobj
-2806 0 obj <<
-/D [2802 0 R /XYZ 427.021 676.259 null]
+3362 0 obj <<
+/D [3333 0 R /XYZ 71.731 438.811 null]
 >> endobj
-2808 0 obj <<
-/D [2802 0 R /XYZ 71.731 632.72 null]
+3363 0 obj <<
+/D [3333 0 R /XYZ 91.656 426.048 null]
 >> endobj
-470 0 obj <<
-/D [2802 0 R /XYZ 295.902 600.324 null]
+3364 0 obj <<
+/D [3333 0 R /XYZ 71.731 423.891 null]
 >> endobj
-2809 0 obj <<
-/D [2802 0 R /XYZ 71.731 589.959 null]
+3365 0 obj <<
+/D [3333 0 R /XYZ 91.656 413.097 null]
 >> endobj
-2810 0 obj <<
-/D [2802 0 R /XYZ 355.146 580.199 null]
+3366 0 obj <<
+/D [3333 0 R /XYZ 135.691 413.097 null]
 >> endobj
-2811 0 obj <<
-/D [2802 0 R /XYZ 71.731 555.129 null]
+3367 0 obj <<
+/D [3333 0 R /XYZ 135.691 413.097 null]
 >> endobj
-2812 0 obj <<
-/D [2802 0 R /XYZ 104.01 545.629 null]
+3368 0 obj <<
+/D [3333 0 R /XYZ 76.712 395.164 null]
 >> endobj
-2813 0 obj <<
-/D [2802 0 R /XYZ 104.01 533.973 null]
+3369 0 obj <<
+/D [3333 0 R /XYZ 81.694 382.213 null]
 >> endobj
-2814 0 obj <<
-/D [2802 0 R /XYZ 71.731 522.317 null]
+3370 0 obj <<
+/D [3333 0 R /XYZ 92.483 382.213 null]
 >> endobj
-2815 0 obj <<
-/D [2802 0 R /XYZ 118.555 478.771 null]
+3371 0 obj <<
+/D [3333 0 R /XYZ 71.731 381.504 null]
 >> endobj
-2816 0 obj <<
-/D [2802 0 R /XYZ 297.118 470.307 null]
+3372 0 obj <<
+/D [3333 0 R /XYZ 71.731 381.504 null]
 >> endobj
-2817 0 obj <<
-/D [2802 0 R /XYZ 71.731 448.387 null]
+3373 0 obj <<
+/D [3333 0 R /XYZ 91.656 369.261 null]
 >> endobj
-2818 0 obj <<
-/D [2802 0 R /XYZ 447.817 415.729 null]
+3374 0 obj <<
+/D [3333 0 R /XYZ 71.731 367.104 null]
 >> endobj
-2801 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F44 1440 0 R /F35 1229 0 R /F27 1064 0 R /F32 1071 0 R /F55 1844 0 R >>
-/ProcSet [ /PDF /Text ]
+3375 0 obj <<
+/D [3333 0 R /XYZ 71.731 367.104 null]
 >> endobj
-2822 0 obj <<
-/Length 2189      
-/Filter /FlateDecode
->>
-stream
-x�}YK��6��W��J�����8�l9����R��(���B�+�~@Azj"A��~}�5&�D�oʘ�)�$'����^E�+|�׫gdEA�<�畏�<-��n��7O�^����$"E~�<]�.QJ���<5���p���CR�1�o��߬m+�������c����A`�9�S�*y���ە(��k),ɣ��>���7`�v{��N���H�N/ՀK�V�6(����d��~��<=v�V��v�}����
-������Ay�o��xA�+����.���]<;�_#�cp�����V{k��!��}A���%�'�|��7���y|�1�O����n�K�7��3����k�k��z��`�$�~����_G�й$��wg����W���{U�(��{|��/���^I� ����ց���`[�K�{�8[P�u�Ī[�B29J�|qk�ZWM�zmc��ІRգQ;�3ɇ)�.ָ�3؀�t:�y��t���֢WΛ���DM-G���&�l[	f�َ5M���ն�C�Oi:A�1T�A�����V.#�H�f:��8�QN�c�a ;���Pu�\�+��2A��|Q�4q������Ϭ1�ԨgM|�ycò�k�^Zt�f��jP�֝���T���������K��3oڳ��V	1�8�ުd�74���Wѭ�]t>3y�������%�Q��R����*;�6ФŚ�@��ˬ�W�]f�oB4L�6�5(�޹��R���n ��8�j�����0#1V��^Q���>#iV���D�2q뭄�>�~��<�e�a��X����\Kq��D��V����(�0F��09���QY8C:����ɞ�jj��}���c����b�461<��`��F���F���H�x����8�)ʣ���/
-��m/mJ��D��`��wo����k^��|�6�Q�?v���q�'`(�[��xt0�2L'Y�tW!��5�HT?%g��B��[���2��������$)߄��X|�n��[�6�3��~P(�p��'
-K����y��V���T�-Ҷ|!���e��*oʱP�p?'4����g
-�m)�ZA,�n��<pD��߶%�����.	��~�MX��}]�	 ��w�0�ՏO��J�����2[�	p����[�|bԎME;�M��q���O^���Yl��
-R{�m�����qj�G�9�(m�� �1C6q��ެ0��N�x����l�%���'��{���ɠGRZ�{�X��l
-�OI��K���\W}���7�y��y���gU\V��H���b��*) ��f��I�I���Z:]��'r�4��XnҼ GH����)o�"1�
_ЈŎ��;��%�Y�9��cI�|��‰�=�����;�7ET��:Jݷ>ID�������uТ
�k�g��/����c�3��C/�K.�hj�Q����Jc�����&}M�^�xƨ
*�k4��Z`�Lz*�e�T�պ�)r�X�@�s��p�������'�D�l}:�e8���_�1��I3��]k�MZ�p�8z5�?���
-j{O�f��ќ?��m�Mw-�����݃���:���� D�YK;�U~_�zS�z"��TYǐ�@�IA�5ӯ\RlD�l���@�cDc�tR���雔2�l�4�A%���@T�ꘒ2�2��Y��:�8@�$�����F2���� )(i��(�]�Rs��$����&�A�Ua�>�~}���`f� �;�a��f�ŨI3L��Wb��c	��,���Psc~ḳbB\-{^�W¡���k���g0�x'�v�p9��x�������Yx��T�Bz	d�0j��g_q��\�Y�D�����6�\��p*�Rm��9<�'&��2lK�������[�fqt0�
�
�<ߨ����Pݤ����*ŊpU����+�.���D�0��,�.�h�f�.m5�{;Y]O0���m�B@�*?�`՜�3=/��ZЭ�7K�5K�|+#�Z�!�%�)w��4�9-�8�b��cW]����ZAuu��L]rx��f�^a�Y���Uaun���w�5�Y�oU�������w��G�4)��������KG���e�qo[&u�T	:�}l�����Bz��Zĺ���t�4I��v$�w����H�q���p�a����y��X!:)�p#����N��-��endstream
-endobj
-2821 0 obj <<
-/Type /Page
-/Contents 2822 0 R
-/Resources 2820 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2819 0 R
-/Annots [ 2831 0 R 2836 0 R ]
+3376 0 obj <<
+/D [3333 0 R /XYZ 101.619 356.31 null]
 >> endobj
-2831 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [97.315 367.618 132.732 376.529]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-daemon) >>
+3377 0 obj <<
+/D [3333 0 R /XYZ 71.731 354.153 null]
 >> endobj
-2836 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [252.87 354.666 284.959 363.578]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-service) >>
+3378 0 obj <<
+/D [3333 0 R /XYZ 101.619 343.358 null]
 >> endobj
-2823 0 obj <<
-/D [2821 0 R /XYZ 71.731 729.265 null]
+3379 0 obj <<
+/D [3333 0 R /XYZ 142.884 343.358 null]
 >> endobj
-1185 0 obj <<
-/D [2821 0 R /XYZ 71.731 718.306 null]
+3380 0 obj <<
+/D [3333 0 R /XYZ 142.884 343.358 null]
 >> endobj
-474 0 obj <<
-/D [2821 0 R /XYZ 344.957 703.236 null]
+3381 0 obj <<
+/D [3333 0 R /XYZ 76.712 325.426 null]
 >> endobj
-2824 0 obj <<
-/D [2821 0 R /XYZ 71.731 681.855 null]
+3382 0 obj <<
+/D [3333 0 R /XYZ 91.656 312.474 null]
 >> endobj
-2825 0 obj <<
-/D [2821 0 R /XYZ 152.986 621.694 null]
+3383 0 obj <<
+/D [3333 0 R /XYZ 71.731 310.317 null]
 >> endobj
-2826 0 obj <<
-/D [2821 0 R /XYZ 71.731 616.593 null]
+3384 0 obj <<
+/D [3333 0 R /XYZ 71.731 310.317 null]
 >> endobj
-1186 0 obj <<
-/D [2821 0 R /XYZ 71.731 575.701 null]
+3385 0 obj <<
+/D [3333 0 R /XYZ 101.619 299.523 null]
 >> endobj
-478 0 obj <<
-/D [2821 0 R /XYZ 252.56 532.604 null]
+3386 0 obj <<
+/D [3333 0 R /XYZ 71.731 297.366 null]
 >> endobj
-2827 0 obj <<
-/D [2821 0 R /XYZ 71.731 528.774 null]
+3387 0 obj <<
+/D [3333 0 R /XYZ 101.619 286.571 null]
 >> endobj
-482 0 obj <<
-/D [2821 0 R /XYZ 198.219 493.231 null]
+3388 0 obj <<
+/D [3333 0 R /XYZ 145.653 286.571 null]
 >> endobj
-2828 0 obj <<
-/D [2821 0 R /XYZ 71.731 485.879 null]
+3389 0 obj <<
+/D [3333 0 R /XYZ 145.653 286.571 null]
 >> endobj
-2829 0 obj <<
-/D [2821 0 R /XYZ 71.731 427.115 null]
+3390 0 obj <<
+/D [3333 0 R /XYZ 177.534 286.571 null]
 >> endobj
-486 0 obj <<
-/D [2821 0 R /XYZ 267.87 389.899 null]
+3391 0 obj <<
+/D [3333 0 R /XYZ 177.534 286.571 null]
 >> endobj
-2830 0 obj <<
-/D [2821 0 R /XYZ 71.731 379.756 null]
+3392 0 obj <<
+/D [3333 0 R /XYZ 209.414 286.571 null]
 >> endobj
-2832 0 obj <<
-/D [2821 0 R /XYZ 208.816 369.774 null]
+3393 0 obj <<
+/D [3333 0 R /XYZ 209.414 286.571 null]
 >> endobj
-2833 0 obj <<
-/D [2821 0 R /XYZ 289.872 369.774 null]
+3394 0 obj <<
+/D [3333 0 R /XYZ 241.294 286.571 null]
 >> endobj
-2834 0 obj <<
-/D [2821 0 R /XYZ 378.867 369.774 null]
+3395 0 obj <<
+/D [3333 0 R /XYZ 241.294 286.571 null]
 >> endobj
-2835 0 obj <<
-/D [2821 0 R /XYZ 417.044 369.774 null]
+3396 0 obj <<
+/D [3333 0 R /XYZ 76.712 268.638 null]
 >> endobj
-2837 0 obj <<
-/D [2821 0 R /XYZ 314.01 356.823 null]
+3397 0 obj <<
+/D [3333 0 R /XYZ 91.656 255.687 null]
 >> endobj
-2838 0 obj <<
-/D [2821 0 R /XYZ 438.253 356.823 null]
+3398 0 obj <<
+/D [3333 0 R /XYZ 71.731 253.53 null]
 >> endobj
-2839 0 obj <<
-/D [2821 0 R /XYZ 476.429 356.823 null]
+3399 0 obj <<
+/D [3333 0 R /XYZ 71.731 253.53 null]
 >> endobj
-2840 0 obj <<
-/D [2821 0 R /XYZ 424.804 343.872 null]
+3400 0 obj <<
+/D [3333 0 R /XYZ 101.619 242.736 null]
 >> endobj
-2841 0 obj <<
-/D [2821 0 R /XYZ 260.352 330.92 null]
+3401 0 obj <<
+/D [3333 0 R /XYZ 76.712 206.87 null]
 >> endobj
-2842 0 obj <<
-/D [2821 0 R /XYZ 173 317.969 null]
+3402 0 obj <<
+/D [3333 0 R /XYZ 81.694 193.919 null]
 >> endobj
-2843 0 obj <<
-/D [2821 0 R /XYZ 71.731 304.918 null]
+3403 0 obj <<
+/D [3333 0 R /XYZ 92.483 193.919 null]
 >> endobj
-2844 0 obj <<
-/D [2821 0 R /XYZ 71.731 289.974 null]
+3404 0 obj <<
+/D [3333 0 R /XYZ 71.731 192.511 null]
 >> endobj
-2845 0 obj <<
-/D [2821 0 R /XYZ 210.778 278.417 null]
+3405 0 obj <<
+/D [3333 0 R /XYZ 71.731 192.511 null]
 >> endobj
-2846 0 obj <<
-/D [2821 0 R /XYZ 317.348 278.417 null]
+3406 0 obj <<
+/D [3333 0 R /XYZ 91.656 180.967 null]
 >> endobj
-2847 0 obj <<
-/D [2821 0 R /XYZ 129.377 266.761 null]
+3407 0 obj <<
+/D [3333 0 R /XYZ 76.712 163.034 null]
 >> endobj
-2848 0 obj <<
-/D [2821 0 R /XYZ 71.731 238.865 null]
+3408 0 obj <<
+/D [3333 0 R /XYZ 81.694 150.083 null]
 >> endobj
-490 0 obj <<
-/D [2821 0 R /XYZ 215.507 199.493 null]
+3409 0 obj <<
+/D [3333 0 R /XYZ 92.483 150.083 null]
 >> endobj
-2849 0 obj <<
-/D [2821 0 R /XYZ 71.731 192.062 null]
+3410 0 obj <<
+/D [3333 0 R /XYZ 71.731 148.675 null]
 >> endobj
-2850 0 obj <<
-/D [2821 0 R /XYZ 397.157 179.368 null]
+3411 0 obj <<
+/D [3333 0 R /XYZ 71.731 148.675 null]
 >> endobj
-1187 0 obj <<
-/D [2821 0 R /XYZ 71.731 136.365 null]
+3412 0 obj <<
+/D [3333 0 R /XYZ 91.656 137.132 null]
 >> endobj
-2820 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F33 1160 0 R /F35 1229 0 R /F44 1440 0 R /F55 1844 0 R >>
+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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2855 0 obj <<
-/Length 1521      
+3416 0 obj <<
+/Length 2406      
 /Filter /FlateDecode
 >>
 stream
-xڭX]o�6}ϯ��������n�"ݲ���bPl�*K�(��~�.�KJ�u�<��/���a����BJB,&,���±�����6�������\׊I�����G|[��H�3k��0�e�*^�m�;3���z�O�e�z[�u]��i�i��b�2���8r'��6���kѐ0���t~�OB/j��������i����V�<�z���X�7t�=���Nm�˓��^�����+����!�y��+����J��o�k��A=�8�g^@�OG�m쎑*D��HF՗�A��|̈���h3
�s$�(�))tIa�I�^&vE�a��?&s:z�<�"�e:g��k��ԟm�!�<�R#J-���?�|�Ϣ.qT�.rQgM+!Ih^�r@b��h�ź�MM��rxqk>bS�
-Q�=��j�F���U$4�`�P��5�*�u�MA�	�����M�#cn9gzQ��S_�|���@���i_Ԣ���Ņҋ��߄�ℵ�s
-=�B?s]��ŀu=��M�m������}����q��E��R�5��u�"��M��`x�fo��bR��A�(�w�׆+����,*X����!�&�����Iw!ݣ�V-�'�Ϣ���B�Z����n�j�h�M*���o��.;'KH�X�e�w�?d8˳)�J�t����U�A��4�����Ĉ��6���8������&�D�~���A����l���$�ds;p�]�hnS��,f��CϮG<���ۗW��r��-G��J
��w�L�M~���C����Υ��B�ā
B������0�'�HLC4��TA��f�~�_JZ^>�CD<�b!��^�W7w�7�����?�o���C2�8Kn���Q�!�^6��&�$�ۂ���J�VOY7�rh	%���N�r���G����;!����y��u�m6�H>�p�"������f�������P�)&�1B0���
�q~u%
-LW
-ƈM
-�M#��q��=7�I��1���EWS���9�Ixg�]*�1�oOH!js*�l�DzQ)j�A�3E�%O6'�V^�7��\
-}�d)��d6}Gcg��<q����h3
�s$��$���X�.+A{5qQ��ʫc#����n��7����@G��B���a���{�-��1B�U�Z(��Oֻ4�C��h���
-��@U���d1�P%�*���߹G���G�
��^s�$��:S]g�J��'�\F��`h�^[�z�墕�R��s`[�-�p�h�e���
X�w4z��܃]6�ix����9�\�p�G��nO��D�T๮�����r)3?T��_�,�er�fi�w�4�p�{ť;���H�$��v�3�,!]�n��Pp������C�e����ֿf��E����zʫ�����e�a�4ߘ>��i<���4 ���ٗ�'���c�<
K�rP/r�4KG�ȥ#��\��].i�l[��(>�]���W/"�ͩ��5�oʗݦ�K�����i�/i�Oendstream
+x�}َ��}���X5�͑�{�$�^�vld�A6�%v���,Q;}�R�3Ѓ��b�X7,|��E�4��ΕN�EѼ�;���U +!Y�м[�����\�I�Xo��T�4�*��b]��{�7���r�cߋ��M�?��6<�l�i����?�_}\���T�Y��X3͕\:=�5��TE$�;�\%���i (�\�gG'��T�%�K��了d����gSv�L�霭��#������v������2�=��b�/[!5����6��hP
(/h��
+��E��?NAZ��p6uѵ_|_��`-ӏ���#�y@��MՎ�xꦁ�J��ƌ��7����v�
+���{��F�@w�Gdf��P�B�����lY�n�]��`�=;]@�s����.�2ϴ%��1�שg$�n�A�2�"�ת��LY
����Yf"+��FY=[ѦAΎ�H��2Kn`6�U<�	��
<h���2^��Ƹ�kA�9x�h-��Yjߛv�
�$�B�����w�{w'4b��8�O��A���@���<�*v�ߪ�/����?����,���'�ܰ̉][W�U����+&Ԕ*��nS�w�7C���[/3�Ԙs�ap����C�'�}2���n��X�a������w<�vBf�"�3��}�,!��l{��Y���q�<1�̉�,AO�,��^��>S��?�O��V�[�`³hV��_��}zbFG����
�}�:ޑ�p>qP�Pi[��8K�a���
+�@�
$�l��VNj�NTB<�U��� ����l7g`�f��Bu������� i��4[$~���vA�iV'DT��`��@B��Zi]n����A���3͋��ꤟ�m�]�>n�^ �a"�FQUo�
+-^�+��JjvC��a8�	�B����`���"(�$�*H�JS�h�BU�HB�����F̛�0N�<�ƅY�R��n����ι���$O��v>ʯ	��b�#����/�����J�3�����2{��t��hl���C����0�|�Đ����BC������NJ��ǽL�
�uV6b
+�•����)f�����	���~!bmduߍcEb��e�"&"AҬ�O��^��WA�������~�U���3ԁ������(ރ[N����U���c<q��6���W��ŭ�=��4I=�هOz�՜�"_eQJ���z�Qo�豶��z@.�?̾(D�{o�y�SA��6��2��8�x[YFifi>�撔�tTHrl���j��S��<x(��Һ�t�+��d�؏����>+Q�G�X�qna�9��4���(��,2�4�~�E>[+x�$F%�Zs�V�(WA.�H�X7��L�:!��~\2£K�8�/�T�_ގI�v;u�0
Ueg����Ur��Cs����Շ�ql3rІ~�I5=��ܨ�u��mA�kG�!�K�77�� �=ݘ'd7�&D윗��+�9YCa:��4Qq�=��O�@m��.����7i���\׶VJ;JF��n��bu�+��Q��Уb���9:*�K���L)��=_���v��IC#7��[����Q�
+䟻���0w�ǿ1�i�a� �o��Pۏez^JjYp4�� �PA�+Ċg֌@�
�L�8&'@�������Wm�s�g�P�ˤ��B�:�����V��y���يxn�<+lc�8���6\��G�m���`�J�	�Utr�:�s��	b<��}�
+��������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
 endobj
-2854 0 obj <<
+3415 0 obj <<
 /Type /Page
-/Contents 2855 0 R
-/Resources 2853 0 R
+/Contents 3416 0 R
+/Resources 3414 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2819 0 R
-/Annots [ 2859 0 R 2878 0 R 2881 0 R ]
+/Parent 3272 0 R
+/Annots [ 3427 0 R 3431 0 R 3438 0 R ]
 >> endobj
-2859 0 obj <<
+3427 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [140.084 644.094 192.387 653.005]
+/Rect [179.678 602.148 232.014 610.63]
 /Subtype /Link
-/A << /S /GoTo /D (security-os-accounts) >>
+/A << /S /GoTo /D (http) >>
 >> endobj
-2878 0 obj <<
+3431 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [318.972 337.225 370.159 346.435]
+/Rect [349.173 440.364 368.62 449.275]
 /Subtype /Link
-/A << /S /GoTo /D (security-mysql-account-root) >>
+/A << /S /GoTo /D (gloss-dos) >>
 >> endobj
-2881 0 obj <<
+3438 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [426.009 236.881 478.312 245.792]
+/Rect [486.332 230.009 537.983 238.92]
 /Subtype /Link
-/A << /S /GoTo /D (security-os-ports) >>
->> endobj
-2856 0 obj <<
-/D [2854 0 R /XYZ 71.731 729.265 null]
->> endobj
-494 0 obj <<
-/D [2854 0 R /XYZ 164.538 705.748 null]
->> endobj
-2857 0 obj <<
-/D [2854 0 R /XYZ 71.731 702.184 null]
+/A << /S /GoTo /D (security-bugzilla-charset-ex) >>
 >> endobj
-498 0 obj <<
-/D [2854 0 R /XYZ 306.92 666.375 null]
+3417 0 obj <<
+/D [3415 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2858 0 obj <<
-/D [2854 0 R /XYZ 71.731 656.233 null]
+3418 0 obj <<
+/D [3415 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2860 0 obj <<
-/D [2854 0 R /XYZ 71.731 626.161 null]
+3419 0 obj <<
+/D [3415 0 R /XYZ 152.136 669.489 null]
 >> endobj
-502 0 obj <<
-/D [2854 0 R /XYZ 408.16 588.946 null]
+3420 0 obj <<
+/D [3415 0 R /XYZ 457.305 669.489 null]
 >> endobj
-2861 0 obj <<
-/D [2854 0 R /XYZ 71.731 578.803 null]
+3421 0 obj <<
+/D [3415 0 R /XYZ 281.996 643.587 null]
 >> endobj
-2862 0 obj <<
-/D [2854 0 R /XYZ 208.606 568.821 null]
+3422 0 obj <<
+/D [3415 0 R /XYZ 518.615 643.587 null]
 >> endobj
-2863 0 obj <<
-/D [2854 0 R /XYZ 375.619 568.821 null]
+3423 0 obj <<
+/D [3415 0 R /XYZ 523.039 643.587 null]
 >> endobj
-2864 0 obj <<
-/D [2854 0 R /XYZ 245.936 555.87 null]
+3424 0 obj <<
+/D [3415 0 R /XYZ 71.731 630.635 null]
 >> endobj
-1347 0 obj <<
-/D [2854 0 R /XYZ 71.731 542.819 null]
+3425 0 obj <<
+/D [3415 0 R /XYZ 71.731 630.536 null]
 >> endobj
-2865 0 obj <<
-/D [2854 0 R /XYZ 71.731 503.038 null]
+3426 0 obj <<
+/D [3415 0 R /XYZ 71.731 615.592 null]
 >> endobj
-2866 0 obj <<
-/D [2854 0 R /XYZ 71.731 503.038 null]
+1519 0 obj <<
+/D [3415 0 R /XYZ 71.731 576.139 null]
 >> endobj
-2867 0 obj <<
-/D [2854 0 R /XYZ 71.731 491.996 null]
+546 0 obj <<
+/D [3415 0 R /XYZ 369.383 536.767 null]
 >> endobj
-2868 0 obj <<
-/D [2854 0 R /XYZ 305.215 481.748 null]
+3428 0 obj <<
+/D [3415 0 R /XYZ 71.731 533.575 null]
 >> endobj
-2869 0 obj <<
-/D [2854 0 R /XYZ 71.731 480.34 null]
+3429 0 obj <<
+/D [3415 0 R /XYZ 71.731 516.439 null]
 >> endobj
-1348 0 obj <<
-/D [2854 0 R /XYZ 71.731 458.435 null]
+3430 0 obj <<
+/D [3415 0 R /XYZ 71.731 468.423 null]
 >> endobj
-2870 0 obj <<
-/D [2854 0 R /XYZ 71.731 413.573 null]
+3432 0 obj <<
+/D [3415 0 R /XYZ 348.289 429.569 null]
 >> endobj
-2871 0 obj <<
-/D [2854 0 R /XYZ 71.731 413.573 null]
+3433 0 obj <<
+/D [3415 0 R /XYZ 301.416 416.618 null]
 >> endobj
-2872 0 obj <<
-/D [2854 0 R /XYZ 71.731 402.532 null]
+3434 0 obj <<
+/D [3415 0 R /XYZ 370.113 403.666 null]
 >> endobj
-2873 0 obj <<
-/D [2854 0 R /XYZ 149.738 392.283 null]
+3435 0 obj <<
+/D [3415 0 R /XYZ 478.765 403.666 null]
 >> endobj
-2874 0 obj <<
-/D [2854 0 R /XYZ 71.731 390.876 null]
+1520 0 obj <<
+/D [3415 0 R /XYZ 71.731 373.614 null]
 >> endobj
-2875 0 obj <<
-/D [2854 0 R /XYZ 71.731 379.36 null]
+550 0 obj <<
+/D [3415 0 R /XYZ 171.235 330.517 null]
 >> endobj
-2876 0 obj <<
-/D [2854 0 R /XYZ 71.731 357.314 null]
+1521 0 obj <<
+/D [3415 0 R /XYZ 71.731 326.686 null]
 >> endobj
-2877 0 obj <<
-/D [2854 0 R /XYZ 71.731 357.314 null]
+554 0 obj <<
+/D [3415 0 R /XYZ 413.668 291.144 null]
 >> endobj
-2879 0 obj <<
-/D [2854 0 R /XYZ 71.731 311.486 null]
+3436 0 obj <<
+/D [3415 0 R /XYZ 71.731 280.779 null]
 >> endobj
-506 0 obj <<
-/D [2854 0 R /XYZ 222.149 272.114 null]
+3437 0 obj <<
+/D [3415 0 R /XYZ 452.81 245.117 null]
 >> endobj
-2880 0 obj <<
-/D [2854 0 R /XYZ 71.731 264.762 null]
+1795 0 obj <<
+/D [3415 0 R /XYZ 71.731 217.057 null]
 >> endobj
-1349 0 obj <<
-/D [2854 0 R /XYZ 71.731 223.93 null]
+3439 0 obj <<
+/D [3415 0 R /XYZ 71.731 179.334 null]
 >> endobj
-2882 0 obj <<
-/D [2854 0 R /XYZ 71.731 186.206 null]
+3440 0 obj <<
+/D [3415 0 R /XYZ 184.656 168.404 null]
 >> endobj
-2883 0 obj <<
-/D [2854 0 R /XYZ 191.311 175.277 null]
+3441 0 obj <<
+/D [3415 0 R /XYZ 71.731 161.266 null]
 >> endobj
-2884 0 obj <<
-/D [2854 0 R /XYZ 71.731 168.139 null]
+3442 0 obj <<
+/D [3415 0 R /XYZ 71.731 136.659 null]
 >> endobj
-2853 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F32 1071 0 R /F35 1229 0 R /F51 1687 0 R /F58 2030 0 R >>
+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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2887 0 obj <<
-/Length 1848      
+3446 0 obj <<
+/Length 2482      
 /Filter /FlateDecode
 >>
 stream
-xڥZ]��6}�_�[�(��6�#RU��M�}�Ԭڇ���H������m�`�7[�a�p�}}��5�x�;!F!�#0'=�x����
���l�����J��u�O|�p섔���q���>O�]�l��y��������(˄������7�<�v�����h�∮Kb�q�������y�8��#�&�ܿ6��ٮ��=�+|�@x@�A�s�4F4$��X<�s�&�
<XՑ��#;�]Ư��4k[~���S�>|{_W�<�/M�u�o~(ʬ���0��0a�0��xyqJ�
f�3���
_�<�T���2I�=�YT��Vi_4Y����"��m��R�hU-n��7�r��Jq��ԧ�S�����������������
-\}�?�/A�&Y���ʚ��J*�g9��ҽ��+����z2�3������O~�y1�\	�<�z'��֧sY�I��E�܉�f�`�b��.��]!�^Y���k��Ե��W7_Z9�"����u���x��\2�.ʲFȫ��A}m9K��C���N��|%��~�$o��Am��t56u݉����_v�1C�XlX�O��;����A��T�Ϻ��{�����!k�
- J��O���!4��b�p�S-����i�4W�1����ؒ��3��;�}W$���veOm^��=].�,��슲��+K���fvNyA� |�d��U@���N"��X�q�!���:��R/D��VI%F#U3D1�.
�X'e)���갡}9�٘�V\�{s/�S�)��(c�_GQDA��n��v�^n[�G0�Q��
-+l\���^Zr���a��I*W1M��]�R_o��h�I`+���X����U@Z^��|��i'$� ama	Ɇ�`�fq�l��u��5~�P�S�:�Y�J� ����#
-��!L!�N�����G�����0��S"�Ͱg��C�ss�&�\_Ts7������������҆ë��R�"�ȶ�7�}�[�+Be�/��p?�5i0C���ޠs�7^����吷z�P"#�MR�uu(�o�P\���(Ts����Z��K���__�	��Hb[$�;H:��H
-����u��a��<IJ��gC�2D�%�����V@�u3����j"�v�&��C0>T��a_#��}�%�/����q�,
-Q@lB���B��5!*�[p)=7o}��.ۯ)	�"/ד0a�  �$�l�$��Z����E\ڕ�����"R0�$�b2�Y�@>/*��E�ulj}����bX��R_4�_p�Ui)�%iI�EZ6���si���Y72�E����(�$����6k�1���.�}!5gK �DK�u��\�З��j1U�	��)�7����]N$��SDY���	����@g��@gד���Vdp"<�����ڠۣc]֕|'2�Ǯ�E�[�V��p�-S0��* �j���ժ�kժ��޿�z*�L�!
-[�����OTr����෥�%q�KW%�`�$+!�ج�5�k�U�_S�$�m��\
-f1b˂�fςήgA�y�Og0��Y�(�_zC����I����C���E�P���
-f�"$�b6�E������W�7��W��U��U��.:�O���kb�,ք��jBg�ׄήׄB�]� �]S�����Yh�%��4ȬM��|�4��֦y|��� ���Hq�~���R�I���l�3��Le�h���h���`�D#6��dv���hv�h��t.���
���d]4fQ4b��f��Fa�h�E8\�5B���H��?��K?��T���c�endstream
+xڝY[�۸~?��o����HQ����n�]`�9�>l�AG�m5��꒳ί��(ɗ�� 809"�ù|3�D��E�4R���+��Myz
+7��קHV�I���0~�qgM���lv+��E��Ub���~>%4J�d�\��?��;�f�U��~Fwj��;0��t�ܴm����G��JGy�p�Va�;�"��M >��b���~.��u�)��*O�0ґ�()0�suj�f�bt��r�E����w�����e<���u�#���bҾ�[&�=S�M�(���nyձ��0��w���cz]5#S�^���h�ɮg�~�AQ�D"���pO���#�rѭO�04[m�O���҆�	�e�A�|yӔ���W8!
+:��q��³�|�J6�E����ƃ^��0��mC�fő�i��Yl�8cH��m�m��ŵ�Hy)\�#j�U���ʢm>�OWg�69�m6U�h襭��t�Jϼ�32I?�BmN��V<�a����`��$+�����s����-d�������-��TxKU5D�1]�/�QJ,4��,����HUL�����
+\��u���[�䆽E�|/�"�����&<���fV���f���V�NV{��.��������������W@���	����(��VʤfƩ/#�wM�@���0���O%�c�
+U�c�D��`�y���3;�=�3��p��SF���m��B��eW���H:c7HG��y��Ԃ�(�,��-b�B�ɲ7"ʱ)�<���J$�)Y���cg�Uad$L4q��#pK�q�bd�T���Z1�������QVިHU�1�!��t��`�Z�ϾZ���2��s£Y�N��v}�!4��p|�^�*21� ��0X��h;5ý	�8UI�m��3
+!V�F��q�*�_�B�𡜆ADgIr�*o�h����c����[�r:��8ް@{W�q����0�ɕ�|]@�$1<���a`�w��S;>���s[,�X�)�Z�I�����[l甆��]B>���g�*y�S��EF�4�ĩQ&����˯������O�86�.�@��f�כ�Ӈ�̜�S�j�
+ދ��{;/�.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
 endobj
-2886 0 obj <<
+3445 0 obj <<
 /Type /Page
-/Contents 2887 0 R
-/Resources 2885 0 R
+/Contents 3446 0 R
+/Resources 3444 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2819 0 R
-/Annots [ 2893 0 R 2894 0 R ]
->> endobj
-2893 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [264.068 566.22 307.645 574.81]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-htaccess) >>
+/Parent 3272 0 R
+/Annots [ 3450 0 R ]
 >> endobj
-2894 0 obj <<
+3450 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [262.114 554.671 321.927 563.154]
+/Rect [390.612 583.608 442.915 592.519]
 /Subtype /Link
-/A << /S /GoTo /D (http-apache) >>
->> endobj
-2888 0 obj <<
-/D [2886 0 R /XYZ 71.731 729.265 null]
->> endobj
-1188 0 obj <<
-/D [2886 0 R /XYZ 71.731 718.306 null]
->> endobj
-510 0 obj <<
-/D [2886 0 R /XYZ 192.823 706.118 null]
->> endobj
-1734 0 obj <<
-/D [2886 0 R /XYZ 71.731 705.903 null]
->> endobj
-514 0 obj <<
-/D [2886 0 R /XYZ 498.095 666.746 null]
->> endobj
-2889 0 obj <<
-/D [2886 0 R /XYZ 71.731 656.381 null]
->> endobj
-2890 0 obj <<
-/D [2886 0 R /XYZ 428.749 607.767 null]
->> endobj
-2891 0 obj <<
-/D [2886 0 R /XYZ 71.731 592.658 null]
->> endobj
-2892 0 obj <<
-/D [2886 0 R /XYZ 71.731 577.715 null]
->> endobj
-2895 0 obj <<
-/D [2886 0 R /XYZ 76.712 538.626 null]
->> endobj
-2896 0 obj <<
-/D [2886 0 R /XYZ 71.731 528.663 null]
->> endobj
-2897 0 obj <<
-/D [2886 0 R /XYZ 81.694 495.787 null]
->> endobj
-2898 0 obj <<
-/D [2886 0 R /XYZ 71.731 493.63 null]
->> endobj
-2899 0 obj <<
-/D [2886 0 R /XYZ 71.731 493.63 null]
->> endobj
-2900 0 obj <<
-/D [2886 0 R /XYZ 91.656 482.835 null]
->> endobj
-2901 0 obj <<
-/D [2886 0 R /XYZ 120.717 482.835 null]
->> endobj
-2902 0 obj <<
-/D [2886 0 R /XYZ 120.717 482.835 null]
->> endobj
-2903 0 obj <<
-/D [2886 0 R /XYZ 147.218 482.835 null]
->> endobj
-2904 0 obj <<
-/D [2886 0 R /XYZ 147.218 482.835 null]
->> endobj
-2905 0 obj <<
-/D [2886 0 R /XYZ 222.137 482.835 null]
->> endobj
-2906 0 obj <<
-/D [2886 0 R /XYZ 222.137 482.835 null]
+/A << /S /GoTo /D (template-http-accept) >>
 >> endobj
-2907 0 obj <<
-/D [2886 0 R /XYZ 71.731 481.396 null]
+3447 0 obj <<
+/D [3445 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2908 0 obj <<
-/D [2886 0 R /XYZ 91.656 469.884 null]
+1522 0 obj <<
+/D [3445 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2909 0 obj <<
-/D [2886 0 R /XYZ 135.691 469.884 null]
+558 0 obj <<
+/D [3445 0 R /XYZ 388.547 703.236 null]
 >> endobj
-2910 0 obj <<
-/D [2886 0 R /XYZ 135.691 469.884 null]
+1523 0 obj <<
+/D [3445 0 R /XYZ 71.731 692.184 null]
 >> endobj
-2911 0 obj <<
-/D [2886 0 R /XYZ 215.989 469.884 null]
+562 0 obj <<
+/D [3445 0 R /XYZ 303.155 651.159 null]
 >> endobj
-2912 0 obj <<
-/D [2886 0 R /XYZ 215.989 469.884 null]
+3448 0 obj <<
+/D [3445 0 R /XYZ 71.731 638.988 null]
 >> endobj
-2913 0 obj <<
-/D [2886 0 R /XYZ 76.712 451.951 null]
+3449 0 obj <<
+/D [3445 0 R /XYZ 71.731 609.511 null]
 >> endobj
-2914 0 obj <<
-/D [2886 0 R /XYZ 81.694 439 null]
+1524 0 obj <<
+/D [3445 0 R /XYZ 71.731 583.608 null]
 >> endobj
-2915 0 obj <<
-/D [2886 0 R /XYZ 92.483 439 null]
+566 0 obj <<
+/D [3445 0 R /XYZ 308.598 546.392 null]
 >> endobj
-2916 0 obj <<
-/D [2886 0 R /XYZ 71.731 438.811 null]
+3451 0 obj <<
+/D [3445 0 R /XYZ 71.731 536.249 null]
 >> endobj
-2917 0 obj <<
-/D [2886 0 R /XYZ 71.731 438.811 null]
+3452 0 obj <<
+/D [3445 0 R /XYZ 363.706 526.268 null]
 >> endobj
-2918 0 obj <<
-/D [2886 0 R /XYZ 91.656 426.048 null]
+3453 0 obj <<
+/D [3445 0 R /XYZ 219.335 500.365 null]
 >> endobj
-2919 0 obj <<
-/D [2886 0 R /XYZ 71.731 423.891 null]
+3454 0 obj <<
+/D [3445 0 R /XYZ 320.961 500.365 null]
 >> endobj
-2920 0 obj <<
-/D [2886 0 R /XYZ 91.656 413.097 null]
+3455 0 obj <<
+/D [3445 0 R /XYZ 71.731 487.413 null]
 >> endobj
-2921 0 obj <<
-/D [2886 0 R /XYZ 135.691 413.097 null]
+3456 0 obj <<
+/D [3445 0 R /XYZ 157.2 487.413 null]
 >> endobj
-2922 0 obj <<
-/D [2886 0 R /XYZ 135.691 413.097 null]
+3457 0 obj <<
+/D [3445 0 R /XYZ 71.731 485.256 null]
 >> endobj
-2923 0 obj <<
-/D [2886 0 R /XYZ 76.712 395.164 null]
+3458 0 obj <<
+/D [3445 0 R /XYZ 118.555 446.692 null]
 >> endobj
-2924 0 obj <<
-/D [2886 0 R /XYZ 81.694 382.213 null]
+3459 0 obj <<
+/D [3445 0 R /XYZ 165.524 438.228 null]
 >> endobj
-2925 0 obj <<
-/D [2886 0 R /XYZ 92.483 382.213 null]
+3460 0 obj <<
+/D [3445 0 R /XYZ 341.284 426.572 null]
 >> endobj
-2926 0 obj <<
-/D [2886 0 R /XYZ 71.731 381.504 null]
+1525 0 obj <<
+/D [3445 0 R /XYZ 71.731 392.995 null]
 >> endobj
-2927 0 obj <<
-/D [2886 0 R /XYZ 71.731 381.504 null]
+570 0 obj <<
+/D [3445 0 R /XYZ 347.534 360.599 null]
 >> endobj
-2928 0 obj <<
-/D [2886 0 R /XYZ 91.656 369.261 null]
+3461 0 obj <<
+/D [3445 0 R /XYZ 71.731 350.234 null]
 >> endobj
-2929 0 obj <<
-/D [2886 0 R /XYZ 71.731 367.104 null]
+3462 0 obj <<
+/D [3445 0 R /XYZ 71.731 307.434 null]
 >> endobj
-2930 0 obj <<
-/D [2886 0 R /XYZ 71.731 367.104 null]
+3463 0 obj <<
+/D [3445 0 R /XYZ 412.638 296.639 null]
 >> endobj
-2931 0 obj <<
-/D [2886 0 R /XYZ 101.619 356.31 null]
+3464 0 obj <<
+/D [3445 0 R /XYZ 111.263 270.736 null]
 >> endobj
-2932 0 obj <<
-/D [2886 0 R /XYZ 71.731 354.153 null]
+3465 0 obj <<
+/D [3445 0 R /XYZ 71.731 268.579 null]
 >> endobj
-2933 0 obj <<
-/D [2886 0 R /XYZ 101.619 343.358 null]
+3466 0 obj <<
+/D [3445 0 R /XYZ 71.731 253.635 null]
 >> endobj
-2934 0 obj <<
-/D [2886 0 R /XYZ 142.884 343.358 null]
+3467 0 obj <<
+/D [3445 0 R /XYZ 71.731 204.584 null]
 >> endobj
-2935 0 obj <<
-/D [2886 0 R /XYZ 142.884 343.358 null]
+3468 0 obj <<
+/D [3445 0 R /XYZ 71.731 178.681 null]
 >> endobj
-2936 0 obj <<
-/D [2886 0 R /XYZ 76.712 325.426 null]
+3469 0 obj <<
+/D [3445 0 R /XYZ 213.956 165.73 null]
 >> endobj
-2937 0 obj <<
-/D [2886 0 R /XYZ 91.656 312.474 null]
+3470 0 obj <<
+/D [3445 0 R /XYZ 71.731 163.573 null]
 >> endobj
-2938 0 obj <<
-/D [2886 0 R /XYZ 71.731 310.317 null]
+3471 0 obj <<
+/D [3445 0 R /XYZ 71.731 148.629 null]
 >> endobj
-2939 0 obj <<
-/D [2886 0 R /XYZ 71.731 310.317 null]
+3472 0 obj <<
+/D [3445 0 R /XYZ 134.999 139.13 null]
 >> endobj
-2940 0 obj <<
-/D [2886 0 R /XYZ 101.619 299.523 null]
+3444 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
-2941 0 obj <<
-/D [2886 0 R /XYZ 71.731 297.366 null]
+3475 0 obj <<
+/Length 2964      
+/Filter /FlateDecode
+>>
+stream
+xڝY����~��4���oRI�4n��/
�8(q%ѦH�\F�����c)�$�E`�9;;;;;;�U0��/�e��E��+/L���p��v���.P���,'4_>�=|E���J���v����,�B/O��c����8Z�-�a��O�/�޶����� �v,�yU�������zwN��[��'�s4W҅�Y:wH?g!I�ǽ��Q0�ͦmJ�����}[
+��
+n#�Qتmtɾj]�V6CoSm����X�g�������N]eE7�������bm6���v'R 0���Bo�w�!pQ�7��ٙ^'�����'L����q_�2	q��%�a�$Eݷ�rbc��	G
+�/+��;���	Ǻ ��_��N�����q�qQєg���|�]+�\Aխ|ŻE�ύ�m;U�2:���귗�n(����/�x�� ]�����o������ƶݓ�~赦A0oZ�p��=�e�`^::����x�(�-#�b��6L�Hd]R�MU�O{Cv$�]"���AI��ˊQ�.�t~R���uaE�4�D�;H�����"L�۶�Ϸ=@� ��̛]��hδ�j��{c��I�j=<���'����#� ����R�Lo� ��{�g���_��EQ�`Z������B�u6���umsvN�]�G�Odqյc�ے������_�}Bu��b���A:/��p�9�W�|ew���M�+5���[�᱓�������@3��X�*�-D�7H$��2�	OЯ�쇛��m��Ӹ=�(`��/�7N�"�qw�ش�)MQ;*��z8pmcF^]oꭲ.j�̰��`�m�W�$b�@����,k��;!�a��ƽ�
�i�e�����yl�\8Ji��M`�	N
+IQ�]��l�ȹ~����;�ֻ{�Hp��P�zd/=��t4ˑ�SJ��u��pR/�������H�yi�g�ͮ����d�I(���i_���J���q�A&6���YM�����_e��(],��W��Z2���L�j��J��6�{�����G�X_1ͼ��*��YIb���2ZE^封�K���)�FYȹ�"�!��h��A���>NS{#�D	��3��0��8Wy\�y0�Ci��P�����
+����T��3��I<=$��I���~���W�U��+g-R�]K����,QU��ڻ�P� �,�%a��1���~�՟��T���[���8Fee�Y� Ogfۻ�w�9���*�Y�t�5���f��� *��p4b��|���(�g�*��0�����;�Fm�B;A���G�`�H�9��E�,�'��z���μ���m�zq��Գ|�Y|ܳߋV�p�Џ.���ţB>TB�TB@cӄ�K��M��#/����EhI�����_/����ӝ�����ԋ��󗔩�|��W3��k��C0�\�+�HgP"�ik� Š���l��Xy�	λJg����G��<ő������B��v�
+� ��@� �����[�cN2x\�T�2�U�cSԱZ�~"��^�
+?��x��\؄��0��	��i1��Y��s]��:�%�9��R�~X*kG���^\I0�E$弰��C_�Օ�b̑�e�j�{�V=�4��b�ź��l�
+I��(�eDu<��b�H��^F\����?/1u{D��B(�����O�����N�ݦ�n�*Ͷ�=���.��_z{{��"p����a�.?�q�����Ѽjl�`iu	g���"�JH������Ը���GT��ZJ>~�xƱ�@���dU����d��uU��"��Aa�$c���Jb���;��㭂�ɳyݶb���j�
+R�K!��
+[�: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
+endobj
+3474 0 obj <<
+/Type /Page
+/Contents 3475 0 R
+/Resources 3473 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3499 0 R
 >> endobj
-2942 0 obj <<
-/D [2886 0 R /XYZ 101.619 286.571 null]
+3476 0 obj <<
+/D [3474 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2943 0 obj <<
-/D [2886 0 R /XYZ 145.653 286.571 null]
+3477 0 obj <<
+/D [3474 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2944 0 obj <<
-/D [2886 0 R /XYZ 145.653 286.571 null]
+3478 0 obj <<
+/D [3474 0 R /XYZ 71.731 649.4 null]
 >> endobj
-2945 0 obj <<
-/D [2886 0 R /XYZ 177.534 286.571 null]
+3479 0 obj <<
+/D [3474 0 R /XYZ 71.731 597.594 null]
 >> endobj
-2946 0 obj <<
-/D [2886 0 R /XYZ 177.534 286.571 null]
+3480 0 obj <<
+/D [3474 0 R /XYZ 71.731 582.65 null]
 >> endobj
-2947 0 obj <<
-/D [2886 0 R /XYZ 209.414 286.571 null]
+3481 0 obj <<
+/D [3474 0 R /XYZ 417.328 573.151 null]
 >> endobj
-2948 0 obj <<
-/D [2886 0 R /XYZ 209.414 286.571 null]
+3482 0 obj <<
+/D [3474 0 R /XYZ 218.704 561.494 null]
 >> endobj
-2949 0 obj <<
-/D [2886 0 R /XYZ 241.294 286.571 null]
+3483 0 obj <<
+/D [3474 0 R /XYZ 508.932 561.494 null]
 >> endobj
-2950 0 obj <<
-/D [2886 0 R /XYZ 241.294 286.571 null]
+3484 0 obj <<
+/D [3474 0 R /XYZ 76.712 533.201 null]
 >> endobj
-2951 0 obj <<
-/D [2886 0 R /XYZ 76.712 268.638 null]
+3485 0 obj <<
+/D [3474 0 R /XYZ 118.555 489.655 null]
 >> endobj
-2952 0 obj <<
-/D [2886 0 R /XYZ 91.656 255.687 null]
+3486 0 obj <<
+/D [3474 0 R /XYZ 135.395 481.191 null]
 >> endobj
-2953 0 obj <<
-/D [2886 0 R /XYZ 71.731 253.53 null]
+3487 0 obj <<
+/D [3474 0 R /XYZ 222.231 481.191 null]
 >> endobj
-2954 0 obj <<
-/D [2886 0 R /XYZ 71.731 253.53 null]
+3488 0 obj <<
+/D [3474 0 R /XYZ 433.177 481.191 null]
 >> endobj
-2955 0 obj <<
-/D [2886 0 R /XYZ 101.619 242.736 null]
+1526 0 obj <<
+/D [3474 0 R /XYZ 71.731 447.614 null]
 >> endobj
-2956 0 obj <<
-/D [2886 0 R /XYZ 76.712 206.87 null]
+574 0 obj <<
+/D [3474 0 R /XYZ 267.224 415.218 null]
 >> endobj
-2957 0 obj <<
-/D [2886 0 R /XYZ 81.694 193.919 null]
+3489 0 obj <<
+/D [3474 0 R /XYZ 71.731 412.249 null]
 >> endobj
-2958 0 obj <<
-/D [2886 0 R /XYZ 92.483 193.919 null]
+3490 0 obj <<
+/D [3474 0 R /XYZ 71.731 395.113 null]
 >> endobj
-2959 0 obj <<
-/D [2886 0 R /XYZ 71.731 192.511 null]
+3491 0 obj <<
+/D [3474 0 R /XYZ 266.919 374.77 null]
 >> endobj
-2960 0 obj <<
-/D [2886 0 R /XYZ 71.731 192.511 null]
+3492 0 obj <<
+/D [3474 0 R /XYZ 71.731 346.874 null]
 >> endobj
-2961 0 obj <<
-/D [2886 0 R /XYZ 91.656 180.967 null]
+3493 0 obj <<
+/D [3474 0 R /XYZ 419.408 320.972 null]
 >> endobj
-2962 0 obj <<
-/D [2886 0 R /XYZ 76.712 163.034 null]
+3494 0 obj <<
+/D [3474 0 R /XYZ 71.731 300.882 null]
 >> endobj
-2963 0 obj <<
-/D [2886 0 R /XYZ 81.694 150.083 null]
+3495 0 obj <<
+/D [3474 0 R /XYZ 71.731 244.095 null]
 >> endobj
-2964 0 obj <<
-/D [2886 0 R /XYZ 92.483 150.083 null]
+3496 0 obj <<
+/D [3474 0 R /XYZ 71.731 187.308 null]
 >> endobj
-2965 0 obj <<
-/D [2886 0 R /XYZ 71.731 148.675 null]
+3497 0 obj <<
+/D [3474 0 R /XYZ 253.921 176.513 null]
 >> endobj
-2966 0 obj <<
-/D [2886 0 R /XYZ 71.731 148.675 null]
+3498 0 obj <<
+/D [3474 0 R /XYZ 311.687 163.562 null]
 >> endobj
-2967 0 obj <<
-/D [2886 0 R /XYZ 91.656 137.132 null]
+1527 0 obj <<
+/D [3474 0 R /XYZ 71.731 143.472 null]
 >> endobj
-2885 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F44 1440 0 R /F51 1687 0 R /F35 1229 0 R >>
+3473 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
-2971 0 obj <<
-/Length 2199      
+3502 0 obj <<
+/Length 3159      
 /Filter /FlateDecode
 >>
 stream
-xڕY[���~�����kĻ(m��d����C��9���H�3�f��s��8���bH��9����p�_�ڇd�%:�(KW��U�:Û�_�f��,�zk�=��}ǫ9d���J����a��#�����u}w��d�f��:!���?�UE��O��;.�7�}��Շ'3����7ղkfzE�A/k^��8I�Z-�����\����B�]I%u�6��<���J}_7����G��	���]ɪg��}m��e�}z����&֬4~�x�krX�����+j��k�95�f��Ѓ��m���?�I������me�|���oa����͆�M�
��0ߴT�'Գ鬢�V�y3��k��:;�^i������@�\t�J�
��MG;������Py������Q�o��Z�ϼ6�(9
-f(����+/�5ޏ9�oF�+f<���^Adc���S�]��Mm\(�yu�D��?/�5̳8���ip��}�ۙTr�k�É���|}ށ����h�����˿��`�Poi�D��]����Y�A��h�׌�ا��hB��;�r�;�0㛇M"���n����F��槰|bG�N�%l�Q���qqר�F�8Y��
-b؛�*0�]����&M�jBRx���	�k�efW�1+F�D߿B?~~6��g���lB�u?��I���Q'A��(PO�jX�u3	~u5^�PW3��!T�(]m��dj�޾�ˠ���.�A�+���^�S��kqa��y����d�|�		��>`�l�E���l��@���i"�d*>�n��M�v�M��y��H�i�l�!��8�J)a\ղ�cċ��4��F5vT���`.��pm�}F�*t��^(���J�m�Ed���f{h���ނW���X7Շi�B��~��d;&G�Gy�)+� �)��֔_:����P}y���v�f@P�('��F�?��.@/JIXan=��ճڶgb��5me}1�D��z���&�Ip�miq3P��{c��".�ZG�u��Uy�&�S6*����m�,�)	E�kޠ����������-��Zq�n�N�Wrbh	U�
-��kME��+��5��)zl'&��Ψu/-�=���5)	H���'DI��2 �L��Q�$X[:�<�l^�q�l�h�����ƻ~4fTc:$����c#�L���7Z[�ib��ϼ�}AQ�v"Q���B�a��8�A�{�m}%�N��	�o� H�,�ޤ��g$�'�$�H���լ�z�f��t#��T_^�$�׷��53y>�b&����@D=bs�R���ٶ�
c�jr�gu����"��=�H���&���Ɖ��z����\�¥M�ۺ
=�k������5��
t� �
	�%馎��n�؄���@�,�b��]�Ɂ�Q2�y��]W
-=��V\��/�P���'�,5�"��������7~7���(�\�CBŔ��ս�0
-	��ƃ̜���2_Zm����X��PP3;�jA��!hav �!t�R1Ne�4�ZB<f���:
-m{%v�g�Z7j&^!	����a9�`�r���թ��x�q�7a�&��Hx�d'1}�%���'��M�>	�4F5�P������rYu����������"E�[9�8Ȏ����y��wÒ�yF͍��S����;SΊ�h�Nu��1�N5��T�z��K��lzt������<��1?��o�p���؛�����K�_G��ʹv��=�*��
-1��W��s��Uo��,�����L��0Ś�4�	�-x%�OD���r��'I���l�)�3�K��v+��݇m2�mH��s������ܳ��d��Qb0[�s�|��#�r~��TT�]����PO�/�g~�4���<��s��e���]�p�C�{�Eq=�$W\�������>��tOR�����E�b�l�E31�����$̙�6��|���͒��c"p�/���V�����4��i�y#br�J�=4�t�"�5#u(�Nw<���������DX~�$��ڪ��b8P���h۵��V~�'�E0�J����I{���$;X�v��*1�"l��b݀�*Xu���؅Y�G1�M�,饰;�!��Y� M�sѯ�?}��9�{�a�vj�`4��IN�p�_Ò{Oa���լPm5��sI��uUendstream
+xڍZY��F~���Ӛ$������qlg�$Xx�X,6�@�-�0�lz2��[W�MI����f������5�ʃ?���]� s�$^�ou�7_��b+K�֚��/^}�U�fI��W��s�(Z���M�`�/��;����6�='v��nt�TC՞x�����w����������~�9wn���
+g��H�+?��h饮e$]��n�B�Rg�N<G5�:׊g>t}��y[Z�.j@Ia��l�o�
<�"b�ϮAFq����r���#眯����cG����+�$��y�t��A��ˮ5S"���Ⱦ�y����y6��jÒ��*��6A�^�E�㩮���V��腲�`1B��eԼ[�A`ߩ�<�^�����s6�A��W�0N��f�n&��/<G?�}��xp�Nݑ�?����_��+:ѐ��y>7 �
+�`�/(ܳ�=�Q�����k�.}���T�2�+��*����3�{k�ա��@%> 4d���m��lA$��r��^󸬎� �}z�ʔ&���'�}Ã�sU��3���:v��g�>�i�ZWh5��Q������Ktd��g�~� ��`������ɢ(,H�ԍL�[�t~�(<0��)��[��}���Z�+2��~��>��Y��ٗG&ȢL�uS���n���B�; ��ڼQo�;�.$������ˌ���~�0�Ǻ�;7��:>}\W�q� J�{��J!�ᡵ��&SO.��z�cښV�BB�g"������|3{[��,�
��N�:���9�/�C{�Y����t�cL@M!�
+�&��<���,@�)�*�u�.NLA(��Eb���A�O���w,��ёt�� ?*-�8�e��A����a�v"��W����}2��|�΁��*f'��&Դ/�~j�����^b�V>T���!|��Y\��@���r�`�A��ܓk����������&N�O��QΏV�`�
+3�^S旋/�
+vg&mX$�7LvM������s8���7��o�%��we���p|'�Q��2����Oֻ�y�����y�����8�=҂W���)��|T*<�VɻG��/h޼�r�A�2�E�K>�d�j)���B���L����0��^%�yx)95?�yUNQ�%��
lׁ��ms��˫(b���ܧ�EW^1!ɲn�_�SԬ��*n�����������$3�DaĜ·,o���xYR-Ńx�~���H�}w�c��\�Y��b0��N�1(:r�8����*��8�ʀCRO�)%��,`�i�=�ճ��gN�����>�C�j`Lي���Š���^�^��Z��u��A���4����cw�����w1"<����f��sӝ)�E#}�5Hvn�%�R��e��G 8�`f��Ή��x!�r�t^����F�'ը栤ІD榩����V�^���G
+�m������d�8��:����6{ĬE̙w*�
�'n������zY���.r��x��Ds���|H>�A����x��/����y�MP�F����#댭_Yr����80��IfS�.��>�T@S�Cʺe]X9���h�Z�M2<UYiiގ$#76@{ֶ6���Ψ�PNM�2�{L"�*���XP�&��)��w�8a�ڀoЋ<:s��C�Im�C)ڳɏ� u�3��4���Qyu�<�HH�w�,%��i�p�:Z|�(�S(*��� ���z`xhZ��[�F	ӂ�$���V&�&�L�-lyT����5�����*`���M���N&��6Ф����~=��@��V�v��o��V�z�j��od����@�,�~�N��Rp������O<[�u�n k:�JV���)�&n.ύ`|���;����ԣ�;�r+xGC&��&,��A� ��0|G0GӅP,B�X� ,:���뼿�)z�(�R�j&V�_�nGeU�zb�Qt�;�
+i�����O���/�N�cS~TO7mG�%LG�r�"O��C��B��jK�����W��@�JM���:�O�����2���;
+�V�'uG���˞S�����E�{�<�9}�L&��\�T��8�Z�"��Lr�:��,�.�1��+�N�&P��:hf�m���K%�L��Uf���v�a�L̜Men�+y/��3�
0S\I�OS�A���ׂ��85U�6KJ_�`ʹ<���ѫ:83H��X����"\
+0Țc�Yہ���?����~���"Cg��&
+�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
 endobj
-2970 0 obj <<
+3501 0 obj <<
 /Type /Page
-/Contents 2971 0 R
-/Resources 2969 0 R
+/Contents 3502 0 R
+/Resources 3500 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2819 0 R
-/Annots [ 2982 0 R 2987 0 R 2995 0 R ]
+/Parent 3499 0 R
 >> endobj
-2982 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) >>
+3503 0 obj <<
+/D [3501 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2987 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [286.374 440.364 305.821 449.275]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-dos) >>
+578 0 obj <<
+/D [3501 0 R /XYZ 308.397 708.149 null]
 >> endobj
-2995 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [257.573 217.057 308.76 225.969]
-/Subtype /Link
-/A << /S /GoTo /D (security-bugzilla-charset-ex) >>
+3504 0 obj <<
+/D [3501 0 R /XYZ 71.731 698.007 null]
 >> endobj
-2972 0 obj <<
-/D [2970 0 R /XYZ 71.731 729.265 null]
+3505 0 obj <<
+/D [3501 0 R /XYZ 366.772 688.025 null]
 >> endobj
-2973 0 obj <<
-/D [2970 0 R /XYZ 71.731 718.306 null]
+3506 0 obj <<
+/D [3501 0 R /XYZ 71.731 667.935 null]
 >> endobj
-2974 0 obj <<
-/D [2970 0 R /XYZ 507.004 682.441 null]
+3507 0 obj <<
+/D [3501 0 R /XYZ 386.497 644.189 null]
 >> endobj
-2975 0 obj <<
-/D [2970 0 R /XYZ 333.328 669.489 null]
+3508 0 obj <<
+/D [3501 0 R /XYZ 71.731 624.1 null]
 >> endobj
-2976 0 obj <<
-/D [2970 0 R /XYZ 249.253 643.587 null]
+3509 0 obj <<
+/D [3501 0 R /XYZ 380.728 613.305 null]
 >> endobj
-2977 0 obj <<
-/D [2970 0 R /XYZ 474.147 643.587 null]
+3510 0 obj <<
+/D [3501 0 R /XYZ 71.731 593.215 null]
 >> endobj
-2978 0 obj <<
-/D [2970 0 R /XYZ 478.57 643.587 null]
+3511 0 obj <<
+/D [3501 0 R /XYZ 71.731 549.38 null]
 >> endobj
-2979 0 obj <<
-/D [2970 0 R /XYZ 71.731 630.635 null]
+3512 0 obj <<
+/D [3501 0 R /XYZ 71.731 531.447 null]
 >> endobj
-2980 0 obj <<
-/D [2970 0 R /XYZ 71.731 630.536 null]
+3513 0 obj <<
+/D [3501 0 R /XYZ 71.731 507.701 null]
 >> endobj
-2981 0 obj <<
-/D [2970 0 R /XYZ 71.731 615.592 null]
+3514 0 obj <<
+/D [3501 0 R /XYZ 228.316 507.701 null]
 >> endobj
-2983 0 obj <<
-/D [2970 0 R /XYZ 71.731 576.139 null]
+3515 0 obj <<
+/D [3501 0 R /XYZ 71.731 492.593 null]
 >> endobj
-518 0 obj <<
-/D [2970 0 R /XYZ 369.383 536.767 null]
+3516 0 obj <<
+/D [3501 0 R /XYZ 71.731 477.649 null]
 >> endobj
-2984 0 obj <<
-/D [2970 0 R /XYZ 71.731 533.575 null]
+3517 0 obj <<
+/D [3501 0 R /XYZ 351.57 468.149 null]
 >> endobj
-2985 0 obj <<
-/D [2970 0 R /XYZ 71.731 516.439 null]
+3518 0 obj <<
+/D [3501 0 R /XYZ 71.731 416.941 null]
 >> endobj
-2986 0 obj <<
-/D [2970 0 R /XYZ 71.731 468.423 null]
+3519 0 obj <<
+/D [3501 0 R /XYZ 154.754 403.99 null]
 >> endobj
-2988 0 obj <<
-/D [2970 0 R /XYZ 253.806 429.569 null]
+3520 0 obj <<
+/D [3501 0 R /XYZ 102.167 391.038 null]
 >> endobj
-2989 0 obj <<
-/D [2970 0 R /XYZ 172.213 416.618 null]
+1528 0 obj <<
+/D [3501 0 R /XYZ 71.731 384.649 null]
 >> endobj
-2990 0 obj <<
-/D [2970 0 R /XYZ 241.622 403.666 null]
+582 0 obj <<
+/D [3501 0 R /XYZ 251.73 346.685 null]
 >> endobj
-2991 0 obj <<
-/D [2970 0 R /XYZ 349.357 403.666 null]
+3521 0 obj <<
+/D [3501 0 R /XYZ 71.731 336.542 null]
 >> endobj
-1189 0 obj <<
-/D [2970 0 R /XYZ 71.731 373.614 null]
+3522 0 obj <<
+/D [3501 0 R /XYZ 71.731 319.422 null]
 >> endobj
-522 0 obj <<
-/D [2970 0 R /XYZ 171.235 330.517 null]
+3523 0 obj <<
+/D [3501 0 R /XYZ 71.731 319.422 null]
 >> endobj
-2992 0 obj <<
-/D [2970 0 R /XYZ 71.731 326.686 null]
+3524 0 obj <<
+/D [3501 0 R /XYZ 71.731 301.489 null]
 >> endobj
-526 0 obj <<
-/D [2970 0 R /XYZ 413.668 291.144 null]
+3525 0 obj <<
+/D [3501 0 R /XYZ 71.731 301.489 null]
 >> endobj
-2993 0 obj <<
-/D [2970 0 R /XYZ 71.731 280.779 null]
+3526 0 obj <<
+/D [3501 0 R /XYZ 71.731 257.654 null]
 >> endobj
-2994 0 obj <<
-/D [2970 0 R /XYZ 286.882 245.117 null]
+3527 0 obj <<
+/D [3501 0 R /XYZ 71.731 257.654 null]
 >> endobj
-1350 0 obj <<
-/D [2970 0 R /XYZ 71.731 217.057 null]
+3528 0 obj <<
+/D [3501 0 R /XYZ 253.534 246.859 null]
 >> endobj
-2996 0 obj <<
-/D [2970 0 R /XYZ 71.731 179.334 null]
+3529 0 obj <<
+/D [3501 0 R /XYZ 71.731 200.867 null]
 >> endobj
-2997 0 obj <<
-/D [2970 0 R /XYZ 184.656 168.404 null]
+3530 0 obj <<
+/D [3501 0 R /XYZ 71.731 200.867 null]
 >> endobj
-2998 0 obj <<
-/D [2970 0 R /XYZ 71.731 161.266 null]
+3531 0 obj <<
+/D [3501 0 R /XYZ 71.731 169.983 null]
 >> endobj
-2999 0 obj <<
-/D [2970 0 R /XYZ 71.731 136.659 null]
+3532 0 obj <<
+/D [3501 0 R /XYZ 71.731 169.983 null]
 >> endobj
-2969 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R /F55 1844 0 R /F35 1229 0 R /F32 1071 0 R >>
+3533 0 obj <<
+/D [3501 0 R /XYZ 439.225 159.188 null]
+>> endobj
+3534 0 obj <<
+/D [3501 0 R /XYZ 191.147 146.236 null]
+>> endobj
+3535 0 obj <<
+/D [3501 0 R /XYZ 307.056 146.236 null]
+>> endobj
+3536 0 obj <<
+/D [3501 0 R /XYZ 71.731 133.285 null]
+>> endobj
+3537 0 obj <<
+/D [3501 0 R /XYZ 71.731 126.147 null]
+>> endobj
+3538 0 obj <<
+/D [3501 0 R /XYZ 71.731 126.147 null]
+>> endobj
+3500 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
-3003 0 obj <<
-/Length 2237      
+3541 0 obj <<
+/Length 2707      
 /Filter /FlateDecode
 >>
 stream
-xڝYK�ܶ�ﯘ[f�4X�o&�HvRr�]I��9�>pI�"�����קt��C�D��l���!~�?d�e|���P�w�������8MY�����9�2V����Ix�xw��0:�K�����N	"F������Z�Fџ�a�f??LèZ9��b�O�/�i��o�?�<c!O���Y�eF\�8�x<��Q����B�r��CI١`E����Dk
-��\����ؗ���Ǫ��Au�Ax�z-:.��U�_�>٧���ó�}R���Yc�����~���08~����Q�OQK��7�7�P�B#P7��i'gW��ӫ���ؖ�p����d�"���y
-���O�������x�呬F<�N��n>^}�ߦۥ/k�4��>�E����~Ё1�[�<��m�Ԇt�"���)�@Sl�Ìg��'��*�[����_D�9{x+N7�yj�;T�<�T����([��`�����$9KIK�`�=�����6b���YWv����
-
-��|z%E�F�A��JO�2�e��j��(ad���w�@�4Jû�lJg�4v���������!���C̙���ME�:]Ҏxլ�ƀt}|���1�:���y�Z�>�͸�(N��sh��X[Ţ,r��u��N�`��+��W��0�S�S���ؖ�I�8;� �ba�F���+d(?�P\){S���"�W�+J��C#f\0蓮�ve�ft��C:/�	���u�܍-qĂ���CU������v�Rv�c���-HX%������A�5� e,�����d6f=z�� ������4]�a����V��!s��@�R-I�}�>}�]9\w���C�"t.|V���z�����A;-�P^����"H톼%�jv΁J
-�u����Be��t��t�{�l���V@ƌ:�]\ߋƂ�V�sX�,.���k"�ؖ@�r�W��rjƝ�:�I��4!�R-�L�`�\�Ew��.�z�d��U�n��sRQ�ak��<bI�,bQ�5(���߂C
����^���8
-�gEzqx�{�������p�2�z_��p&e�q�΋B�g��j�(�q�<�D���w�Z�DZ��,���Qn)�E�ڡr�Qy�o���%�a�ʱ����9'���HP�qѿ��dƫI)x�O�Y�����U�KJ5�M��n~�Ɓ��F������Lߞ���/�<ay�?�ħK��[�{բ�LD�݉���:����Q:����s�K���k�{��� ���Ը�6�"�U�`[E>�+:�i��n�U� 0���K��,�s���i��'��l�B���!��	Ui԰֮�9B˲]&����	��دSb'9ܯ�:s��r����E������ �C��}�Q3J��#_!M�W�����ҏ����q��80��	a�La���!n�������sE-*9�I��v�
4�,i�;�����F�'�Zk�&�A���}Ҩ���шGa�U���6�ݵ\ks��e"so��2Mv
3jM��J��r~{����T��n��lqrZq�ϖdA���ǜ�n�}1�pn�;����W��к0T���uXƛ�Po��[JS������2Qό��G�_e6<Y�3|�1lK75,d,H��Ɇ[��`�|]i�$�G6}_w�r��^2Z��ԥ�Emn\��J���N�)���"���;z�*]Zlc��*��0�i�z�0��̒�Z`�y M���
-���Y�wO37#_��uD�2:��0��r7E�?��Y^$�WÙm�hZ�w�b�zfii
�%�f��I��;�?aq@����;��bC�h�Ⱗ[\�=��bN�͗n�� �]l�����5l!�_���$B��V�I�4��Fڈ�y�5ӧjf`���+j�d"8�����hbe��[?�e����lW�..J���Tc�fͶ�y��&���dKH������9��ޙ���+p[�6u�y<_�R���UO?����M_���(:������kS�=R��O����3�kN�g�N ������\�h�r�R�����%��!`��w��ʀ��\D�8�Y\�[h�m-{��B C�y�ރ��,����<.���n�1�Q_J�Y�+�p����]Ź�j���-:�:�'Z�A���dP:��{`��Cmi�.c��H9n�d�0���{w���<o18�X�C����_i{��a���endstream
+xڍk�۸�{~�v�kl`���z8M���zm�ާ.p(�-�6=�����;/�ay��8�șἇ�|�wi�����.�^�wG���W���Ȗ�d���W�?E����%����n�^��ޥQ�eqx�T���pRg���&��U�����lS���G^x��X+S�j���?_��i�G��ˢ�2��,�ӑ;wI?#&���>�u�>��#�j8ƫ�A�pE׶5��x��:�W�lv�����r�4��ƛѵh��;
�lm�sś^�[�>�z�0^}F2���������d&�}X�J����'��,��@� �Mz;ѓ*��u�7p�,u�s��#�$HWg�E��~�Un��}�k��ׂUՂN��0��~�Ȝt�=dl*��\�r#�R����� [i`�����t��tש��N���J�V��M� �f^D�����ꉯ���'r7�z>k���@wy -׳͙?�A�iA3�
+NZ}nZ�~��3^���a�)6���c}�6s�N�
+}\��J�V���M��]��h�Ԡƞ.�(��NM_���cѥ��W���v&�59���2�20���wb�?7u�^�f����@<�"aX8����(d�A6=��4�Q7�R�v��2V`S�/�Z7���O�>j�X9.�U�*�"��ZT'7`�t�N���PA�f���80��A������a��VG=�6�Q$1���pV�B��)��mg���x`H9�U����`qƃ���6������[cI�	�i:'�O(��~�:6<߫�C��-Q�0���|h���D�$��cK=ÚB�Rp�B}	�6™3<d@	+�?�b����!��<��J�m��V�V��P���ɟ#p���/��G��E����d�$�W���|j����^o�`���;^|Ɛ�P>�2Ǔe<{�xhz��<����̘���o~�_4�Eĭo�^2��0Ժ�fa�PL����d�k
�(C�{�s����j�B��H2�E���]SiXuA�jZ�
+��`�C�^�+��ߡr��F�JJ��e���I�D�]Ji�Ȏ[���ش_���D��c@��d��u����RX�@^��+���B(Z��t��4���SQcnEɒ�j���,��TX��w�tYt<#W�T�n$%��\(l�N��L�d'��J}�uͧ���`7��i��s�n7dL<�7h�VA!����}������Ƴѹ��5�n*�{K25����$:�!�`Ͳ_#�ƞ��P��;�ܨ��D��8d0�&X$_�쥳�Y2pK!��Z8*tg�5W}�����8�X �Rqd�Nr��:���u��D$�2�2�,�����m�
+��x��_����?�~���'a၎W
+��M�%R͟���$e�'��/����9>��B���H~I.<�<�����UlD\p�ʂeBjo
+ڑԫ��X]�SH�R.K�lj�<����)
+-��6e���N�+�L�aWT"�����z<��8"C�ŊP'gX��N�7H}RSJ�W����gT�񾏤X�2�b�I!H#�8������s��2'�;K4��G�׆�'lM
+�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
 endobj
-3002 0 obj <<
+3540 0 obj <<
 /Type /Page
-/Contents 3003 0 R
-/Resources 3001 0 R
+/Contents 3541 0 R
+/Resources 3539 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2819 0 R
-/Annots [ 3007 0 R ]
->> endobj
-3007 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
-3004 0 obj <<
-/D [3002 0 R /XYZ 71.731 729.265 null]
->> endobj
-1190 0 obj <<
-/D [3002 0 R /XYZ 71.731 718.306 null]
->> endobj
-530 0 obj <<
-/D [3002 0 R /XYZ 388.547 703.236 null]
->> endobj
-1191 0 obj <<
-/D [3002 0 R /XYZ 71.731 692.184 null]
->> endobj
-534 0 obj <<
-/D [3002 0 R /XYZ 303.155 651.159 null]
->> endobj
-3005 0 obj <<
-/D [3002 0 R /XYZ 71.731 638.988 null]
+/Parent 3499 0 R
 >> endobj
-3006 0 obj <<
-/D [3002 0 R /XYZ 71.731 609.511 null]
+3542 0 obj <<
+/D [3540 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3008 0 obj <<
-/D [3002 0 R /XYZ 71.731 583.608 null]
+3543 0 obj <<
+/D [3540 0 R /XYZ 71.731 688.254 null]
 >> endobj
-538 0 obj <<
-/D [3002 0 R /XYZ 308.598 546.392 null]
+3544 0 obj <<
+/D [3540 0 R /XYZ 71.731 688.254 null]
 >> endobj
-3009 0 obj <<
-/D [3002 0 R /XYZ 71.731 536.249 null]
+3545 0 obj <<
+/D [3540 0 R /XYZ 71.731 657.37 null]
 >> endobj
-3010 0 obj <<
-/D [3002 0 R /XYZ 349.9 526.268 null]
+3546 0 obj <<
+/D [3540 0 R /XYZ 71.731 657.37 null]
 >> endobj
-3011 0 obj <<
-/D [3002 0 R /XYZ 212.571 500.365 null]
+3547 0 obj <<
+/D [3540 0 R /XYZ 71.731 587.631 null]
 >> endobj
-3012 0 obj <<
-/D [3002 0 R /XYZ 308.56 500.365 null]
+3548 0 obj <<
+/D [3540 0 R /XYZ 71.731 587.631 null]
 >> endobj
-3013 0 obj <<
-/D [3002 0 R /XYZ 71.731 487.413 null]
+3549 0 obj <<
+/D [3540 0 R /XYZ 210.674 576.837 null]
 >> endobj
-3014 0 obj <<
-/D [3002 0 R /XYZ 157.2 487.413 null]
+3550 0 obj <<
+/D [3540 0 R /XYZ 137.035 499.128 null]
 >> endobj
-3015 0 obj <<
-/D [3002 0 R /XYZ 71.731 485.256 null]
+3551 0 obj <<
+/D [3540 0 R /XYZ 71.731 487.726 null]
 >> endobj
-3016 0 obj <<
-/D [3002 0 R /XYZ 118.555 446.692 null]
+3552 0 obj <<
+/D [3540 0 R /XYZ 71.731 449.514 null]
 >> endobj
-3017 0 obj <<
-/D [3002 0 R /XYZ 164.167 438.228 null]
+3553 0 obj <<
+/D [3540 0 R /XYZ 258.006 436.663 null]
 >> endobj
-3018 0 obj <<
-/D [3002 0 R /XYZ 337.547 426.572 null]
+3554 0 obj <<
+/D [3540 0 R /XYZ 394.451 410.76 null]
 >> endobj
-2743 0 obj <<
-/D [3002 0 R /XYZ 71.731 392.995 null]
+3555 0 obj <<
+/D [3540 0 R /XYZ 71.731 397.808 null]
 >> endobj
-542 0 obj <<
-/D [3002 0 R /XYZ 347.534 360.599 null]
+3556 0 obj <<
+/D [3540 0 R /XYZ 71.731 391.419 null]
 >> endobj
-3019 0 obj <<
-/D [3002 0 R /XYZ 71.731 350.234 null]
+3557 0 obj <<
+/D [3540 0 R /XYZ 288.129 379.875 null]
 >> endobj
-3020 0 obj <<
-/D [3002 0 R /XYZ 71.731 307.434 null]
+3558 0 obj <<
+/D [3540 0 R /XYZ 111.088 366.924 null]
 >> endobj
-3021 0 obj <<
-/D [3002 0 R /XYZ 406.571 296.639 null]
+3559 0 obj <<
+/D [3540 0 R /XYZ 325.619 366.924 null]
 >> endobj
-3022 0 obj <<
-/D [3002 0 R /XYZ 111.263 270.736 null]
+3560 0 obj <<
+/D [3540 0 R /XYZ 71.731 346.834 null]
 >> endobj
-3023 0 obj <<
-/D [3002 0 R /XYZ 71.731 268.579 null]
+3561 0 obj <<
+/D [3540 0 R /XYZ 263.437 336.04 null]
 >> endobj
-3024 0 obj <<
-/D [3002 0 R /XYZ 71.731 253.635 null]
+3562 0 obj <<
+/D [3540 0 R /XYZ 71.731 323.088 null]
 >> endobj
-3025 0 obj <<
-/D [3002 0 R /XYZ 71.731 204.584 null]
+3563 0 obj <<
+/D [3540 0 R /XYZ 100.413 310.137 null]
 >> endobj
-3026 0 obj <<
-/D [3002 0 R /XYZ 71.731 178.681 null]
+3564 0 obj <<
+/D [3540 0 R /XYZ 71.731 290.047 null]
 >> endobj
-3027 0 obj <<
-/D [3002 0 R /XYZ 213.956 165.73 null]
+3565 0 obj <<
+/D [3540 0 R /XYZ 71.731 267.133 null]
 >> endobj
-3028 0 obj <<
-/D [3002 0 R /XYZ 71.731 163.573 null]
+3566 0 obj <<
+/D [3540 0 R /XYZ 71.731 222.6 null]
 >> endobj
-3029 0 obj <<
-/D [3002 0 R /XYZ 71.731 148.629 null]
+3567 0 obj <<
+/D [3540 0 R /XYZ 71.731 178.067 null]
 >> endobj
-3030 0 obj <<
-/D [3002 0 R /XYZ 134.999 139.13 null]
+1529 0 obj <<
+/D [3540 0 R /XYZ 71.731 138.516 null]
 >> endobj
-3001 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F44 1440 0 R /F48 1452 0 R /F32 1071 0 R /F33 1160 0 R >>
+3539 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3034 0 obj <<
-/Length 2560      
+3570 0 obj <<
+/Length 3029      
 /Filter /FlateDecode
 >>
 stream
-xڭY[�۶~�_��f���;��/�k'�$�4V��ęDB"� `�ͯ����u�L'����|߹1X��_��/��'�{a���˝�:�_��슝]��yq�{xE���O��ᴊ�̋�x�E��'��P��~Y����f&�:����NH~�E��������&X�MC6���{up''Q�����ᚙta�K�J��R	w��9_Ђ��\_�����'�[h����Ysfߪx�ؕG�S'�}R�w�x��d.$�7A��M�������3�����[R�-�W�!Xl�Boo-�a��V�ap��~Qv������f_���BZ��Z���'sA��Z�tN��MZg��[�^����7Z����ZS�.s'�yG�7���x���9��"�-����8w�%LR�����x $)�b��4�C�uK�ۧ���q96��]Q�Is�]�4$lh"�3������MI�����*�@36�R�f��w=��&L�7ܝ^�
�Ɯ�.�y��g-zR/�x+ݱs_@� _�?�嚡�nwF7a����0ĵo�`��s�B�p���q��	�SQj&$�B��C��ʱ����5+��
-��
]�Ɓ�BJ:p	�ԩ��v�����L
-j)��`��IK��Ewk�Ñ5�X��
%�@��ϵ5�PU~F VI���`H�;RHe��jo��*��:6<���,n�>����B\%�)*8�S��<l�-ݹ��ʅ��>��K�y��@�$(�)�h�/��E/��G��
-�H�[�ĀD؃�a]Li�y'�����$�ZL��,�����9Z吘S��H�a�څ��j}��4� Q�ua�Ei��5?�3iˆ
-uRY3�FU]T�K'p��	A��ܨ��s�M�5u�W�vC�
���
�ag񧛁ya����
-��.F���C�Z����GAew���\�4��Y`�"'�W��Il���@tU@�Ey�~x�4��K��R"�U��x��ͭƄz\Q#G��~��&���_|�졤'�5r.�>����n�����o,���.P���$r�{AhϷ%�L�]b��X,}NXoZ�A�%Y�JBpk�k�w?��J(H������N-������*���h������ݿ�N�����?��yW�K�[�P�]��^�����*�����F~�EI����������M�"2�5��:A���t�'GOo����/��^#JZ��K��}�l�"�,��!��O0)�{�~�?)�|?�))�y~T���a��π\�N�?�\TrFZĚ>��F卺�Z{���vQy���Kn��kS����L`�d�PeGK����m�
-e�`�rk�UrֱqF�$٧���$~����<���?O�!B*_f���� ���!������ź���Um��_��ħ)T����b9`5��<��t13eA�@��:e_.hd.JՅL���[n� �㥖=��P�ܝ6�K����D�٘
-��Y	���a}�5h��
��H,Wv*�RR�첏����ڡԀ�˾d
-�0?�^گ�޿B~�b�ެ��3]\����������vS��4
������_	n���W�K[X�F;t~�{y�MfOL���TT�M�@�O4��>i�	m���.+ϣ�����m*
-z�Ս,+i9.ֈP3(�l�O����.��t�Լ$m8�K�Y�ܵ-er����@���ԭ�Q���X���:�`魼j�S7}}���Ƈ�G���,���W6��;�vRs#	�ҭ��Ф����#b�*m�U����{�O�J�V�Eא��낾�$G�Isi��|�c�cw�8��v=�}s��;s�����dO�+�$���W��~�z����8���0�la�E�7�G.5l7e��k��l=���]��ҢƶΪj���J��Y!���p�>��tҲ �M�`��w�*��\N�M���Lۥ���1}�-�Q1�<�ts�CJ���{@m����_Y�g6b/N.�U49����"K��(��	4���y��k�O�WTal2����ak2�Mo���D-]`m�+�M8Ʌ6I�G�D迹)�j|�Ɯi�)K;$�N�Ѿ��;�,�n�h�p��n����}���8��GZ�!���˴��������	n�Z�G�n`DM���}���L�v]ཊ-.I�i~����Zs��c�h25XZ��,P�/a:u�(�0�zU&V;b �BN��@�&�)d��݃����:�.�6@_���b�Xw9Ο
-�����u�Φ+��Al�)O�Ĉ��ں��v4Tbfe�2&�gw}h#�A����\d�r�If8�a?<p;05;>��Z����]FW����PC�G:�iS
-x!��y�T�W5�?����J�
-�@�������N,���
-�ߑ���3�jF[6��s�c�SK�N�m���.;᷑#��Gwg�]���7��e�6��L�جjTD2��;�-�)G&�K�6]��E�!,Տ����P5�l�[���B;�כ3�`��thH����d�/������ Ѩ�:k��sν<�>�m�_2�4�@[=�]��o��/������endstream
+xڝk�����
+#EZإ��� (6�m��K�s�I��J\[9Yt��v��;/�a9W48�i8�3���\��O%|����h����f����FHn&4��6��Vm�`�{\�n��0\%����_������f}�G�)�����˶��������������O����v��Q��m|�9K���V^<�Ȟ��LC�����bd*I����u�}�0[�B��'u��_�N�����Z��e�N���Y�ﳵ�:���Q.`(��n|Wy~D�L���`j�7-��z:$��/un�\��N�'<~�۽��:+@�@��\��GyV3P�m�U�����*��^
+���+�j��kgu������ny*��(9
+��j��I� �i;��ө1������)�.p��'4��4e��# D,4�b�>ų�C_��^��J$���!��v�y�1��.+e{�y�qc�3��]w�d�yzzZ�pk�uDI�4k��~S��9O��S��P��X��2yV��e]i�yN"�\S��ḅAy��i��c�u%n�gT�i[&���Y��Z����+.�J�A����������!��R=<Dp	H�H�>�B��Im
�,Đ �;��V`���F���9�Xì]W)S��`��8�Z{=� Z�����q�B7N��}��_�~}{��7�����C�|_�I"�����o�g��k<,@���#x6��M�F*M��
+�S���:��K,����r�xw�"_��'t��Ɏ�����G�F[��h�1��D����N��U�~Mn��5Lt�
�b��Rp�=�AlX�z*��|}�;A\�f���͞Q����g�PD(/M�� C5�m
 C�A��F5Xs�Џ���y\>�n�����+����j��{�wz0�
>C���H�P0`dS"ĬD�^D*�nb��T��/!k�ǚ-a^�=���(	�f�*p����'wU@(�
+�~���+$!t�v��6X5z�x����N�£H���H.w���܄I����P��
+�tA����~������h:^
+9�)��8����O�B<b���O��/�_ e�1�����#u�£a�7C���>|fL���|^�^��*�y
+ţ���S��ŨwZI�-$/QL����C^��yJ��E����g�i���=$'v[��˿��g�{T��q�$�
+
.�jq�Z�j!�h�/��YH�*Hc������Nm
H���M���a�*�b�I&���cd7rE�?��y�a����t�&k�YL��c�4�B6������b�<�M�@�VYS\�l�� {%E�w���)��gα\_�G`�������4�VW��|��@��B�'��:�Z�GڼLt��?�ڲMu<�}���%��.�%��	����y�$�
}�hC:?���@���Jgu%�V�0?i�MF�1]B�����d�AqA6��sY~Ԝj������;��T	QZ	��-�0��ڒ�`H���	3ʼnp`�".[F��jӼ�Q�7�m>B�*O���A3��#ï��kY����*�<h�d�0��pY��,B��
5��_0n��B�y9gW�
+/����:�X1�����dь/[���s�q-�6�c`a����ٌ��'���<0�y�b�sdtfJK�Ʒآ���{D���^w4EW��V�W�e9�lA2�d�D�M���d��I��L�b���K�7-}F�5Z+���!��NV���ZEc�.�r���g�a�>heB�my$c��N}��F`K�y�:E.�
+{�O��:�g��b��-�M�<�Ŵg{���ŇX|������@���l��ۀ�T�����Ed/;q���h�fS���AC���z@�nJ<r
+��C	7.:�ٻ͵���^�������r`���S��\2�懺�4����_����`�v�P|�#Rp��B��00�Ȑ�ԝXV��?�@b�U�^3��!_�c6l0j�F l�X����M �h1k����5�����.�Hr��p?�W�)�QA�L
+'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��Lr�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
 endobj
-3033 0 obj <<
+3569 0 obj <<
 /Type /Page
-/Contents 3034 0 R
-/Resources 3032 0 R
+/Contents 3570 0 R
+/Resources 3568 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3060 0 R
+/Parent 3499 0 R
 >> endobj
-3035 0 obj <<
-/D [3033 0 R /XYZ 71.731 729.265 null]
+3571 0 obj <<
+/D [3569 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3036 0 obj <<
-/D [3033 0 R /XYZ 71.731 718.306 null]
+586 0 obj <<
+/D [3569 0 R /XYZ 461.484 707.841 null]
 >> endobj
-3037 0 obj <<
-/D [3033 0 R /XYZ 71.731 649.4 null]
+3572 0 obj <<
+/D [3569 0 R /XYZ 71.731 697.476 null]
 >> endobj
-3038 0 obj <<
-/D [3033 0 R /XYZ 71.731 597.594 null]
+3573 0 obj <<
+/D [3569 0 R /XYZ 71.731 661.813 null]
 >> endobj
-3039 0 obj <<
-/D [3033 0 R /XYZ 71.731 582.65 null]
+3574 0 obj <<
+/D [3569 0 R /XYZ 71.731 643.781 null]
 >> endobj
-3040 0 obj <<
-/D [3033 0 R /XYZ 408.289 573.151 null]
+3575 0 obj <<
+/D [3569 0 R /XYZ 335.135 630.929 null]
 >> endobj
-3041 0 obj <<
-/D [3033 0 R /XYZ 203.16 561.494 null]
+3576 0 obj <<
+/D [3569 0 R /XYZ 117.651 617.978 null]
 >> endobj
-3042 0 obj <<
-/D [3033 0 R /XYZ 485.768 561.494 null]
+3577 0 obj <<
+/D [3569 0 R /XYZ 71.731 605.026 null]
 >> endobj
-3043 0 obj <<
-/D [3033 0 R /XYZ 76.712 533.201 null]
+3578 0 obj <<
+/D [3569 0 R /XYZ 294.096 605.026 null]
 >> endobj
-3044 0 obj <<
-/D [3033 0 R /XYZ 118.555 489.655 null]
+1530 0 obj <<
+/D [3569 0 R /XYZ 71.731 587.926 null]
 >> endobj
-3045 0 obj <<
-/D [3033 0 R /XYZ 134.999 481.191 null]
+590 0 obj <<
+/D [3569 0 R /XYZ 237.169 544.828 null]
 >> endobj
-3046 0 obj <<
-/D [3033 0 R /XYZ 221.044 481.191 null]
+3579 0 obj <<
+/D [3569 0 R /XYZ 71.731 541.265 null]
 >> endobj
-3047 0 obj <<
-/D [3033 0 R /XYZ 430.405 481.191 null]
+3580 0 obj <<
+/D [3569 0 R /XYZ 118.555 499.074 null]
+>> endobj
+3581 0 obj <<
+/D [3569 0 R /XYZ 526.195 490.61 null]
+>> endobj
+3582 0 obj <<
+/D [3569 0 R /XYZ 71.731 457.033 null]
+>> endobj
+3583 0 obj <<
+/D [3569 0 R /XYZ 71.731 393.392 null]
+>> endobj
+3584 0 obj <<
+/D [3569 0 R /XYZ 71.731 321.596 null]
+>> endobj
+3585 0 obj <<
+/D [3569 0 R /XYZ 527.223 297.85 null]
 >> endobj
-3048 0 obj <<
-/D [3033 0 R /XYZ 71.731 447.614 null]
+3586 0 obj <<
+/D [3569 0 R /XYZ 147.048 284.899 null]
 >> endobj
-546 0 obj <<
-/D [3033 0 R /XYZ 267.224 415.218 null]
+3587 0 obj <<
+/D [3569 0 R /XYZ 225.125 284.899 null]
 >> endobj
-3049 0 obj <<
-/D [3033 0 R /XYZ 71.731 412.249 null]
+3588 0 obj <<
+/D [3569 0 R /XYZ 71.731 277.761 null]
 >> endobj
-3050 0 obj <<
-/D [3033 0 R /XYZ 71.731 395.113 null]
+3589 0 obj <<
+/D [3569 0 R /XYZ 179.885 254.015 null]
 >> endobj
-3051 0 obj <<
-/D [3033 0 R /XYZ 266.919 374.77 null]
+3590 0 obj <<
+/D [3569 0 R /XYZ 415.118 254.015 null]
 >> endobj
-3052 0 obj <<
-/D [3033 0 R /XYZ 71.731 346.874 null]
+3591 0 obj <<
+/D [3569 0 R /XYZ 138.304 241.063 null]
 >> endobj
-3053 0 obj <<
-/D [3033 0 R /XYZ 383.539 320.972 null]
+3592 0 obj <<
+/D [3569 0 R /XYZ 71.731 220.974 null]
 >> endobj
-3054 0 obj <<
-/D [3033 0 R /XYZ 71.731 300.882 null]
+3593 0 obj <<
+/D [3569 0 R /XYZ 71.731 220.974 null]
 >> endobj
-3055 0 obj <<
-/D [3033 0 R /XYZ 71.731 244.095 null]
+3594 0 obj <<
+/D [3569 0 R /XYZ 71.731 203.79 null]
 >> endobj
-3056 0 obj <<
-/D [3033 0 R /XYZ 71.731 187.308 null]
+3595 0 obj <<
+/D [3569 0 R /XYZ 440.089 192.246 null]
 >> endobj
-3057 0 obj <<
-/D [3033 0 R /XYZ 244.581 176.513 null]
+3596 0 obj <<
+/D [3569 0 R /XYZ 71.731 161.362 null]
 >> endobj
-3058 0 obj <<
-/D [3033 0 R /XYZ 311.082 163.562 null]
+3597 0 obj <<
+/D [3569 0 R /XYZ 71.731 161.362 null]
 >> endobj
-3059 0 obj <<
-/D [3033 0 R /XYZ 71.731 143.472 null]
+3598 0 obj <<
+/D [3569 0 R /XYZ 71.731 111.888 null]
 >> endobj
-3032 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R /F35 1229 0 R /F48 1452 0 R >>
+3568 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
-3063 0 obj <<
-/Length 2687      
+3601 0 obj <<
+/Length 2776      
 /Filter /FlateDecode
 >>
 stream
-xڝZY��8~ϯ��FڊN�$Yd2�c03Xd<X,6� [�M���tz~�V�,��d'�臖e��㫯9\�.���b�m�h�.ճ`q�o�?Պ�Z�2���{��]/��v/v�Ed~�$�,��M-vſ����ҳv����K}�����M�;^����_���e�/������N��ƙ���7��5�x& ��#-��&[!]�~�Beo�\�.e�3y�]�Vy��y]�.�CI�l4@�XE�F�����bJ���/�����s����2L=��?��|�K�?��`�F^�ZP5�~&��US�-%�2�;<�Q�g��k؝�<N�\�&�&�:�A�|?�J����ħJ�C�ި�-��_�^^�c�Q)�t��ӻ�&�����]��t�Gx0���B=�?.À�?jW��j��_�W��484����Ӆ���8,�mvd������U���������Dg���,����|A���=�;�/�
�$�"x�R;D���X���
�KӪ�~\F)Ҳ�Q��Y�FW6}<��Y�}Z�^�k�)�9��42Z(�zɳmA��+o��ρuJ.R��=I*�E���O��Ȕ_.�����ox4g�^�����G_w�VU��-�ZRپ*�߶�x��q��Y*H���y�^��?��$"�������GGC�ޡ,�3�:�0�x�������[����+k�����u5m���N~�R��iS4�۲he��I&}�0���X�CP�v���h)	tiEE7���ƫ�9A�1��sj�őQt$�>GQ����9�u�^�x��&�׍��XՁyQ`�3B�}.�^����c��~�7���¹Uj�{���㜬�N���j{�������� �N Fķ�Z�&��Gkf$63��O�X0�͆�2��;\�8�����7}�����?�2�g�	x��V��z����2�m�u�TZ�8{E���i�3��P��5��G-�4o������K�u��}�B:ĩ�6�_��(e���U͏m��J�шe9f�Ю~4��n&0|f���?4����P�	µ�5k�vx���9x���$,m�$�`!cj�n),ڇ�bi������t�	H�ms��lN�-C�c�F�Ռ�Mv)؁��Fs���D�	s.����:�J}�!n��2�Xڎ���*��&�Iֶ1IuՋ�M�� n�_�i���O֙J�xXɾ���-ռcI2��3?H6�R!̴Hh猢�/��̠3��1���}?��U{���(��5�a�yƀ:���lQ�W%�u���'����:~�]D���wiL��ȉ�����m�n�c(�(����W��G'���(����H���A����� ��������Ɍ-�u�������Za� �п�E�
<�6v��=ZW�-�J��7�ཁ� �ʼn�lR%�
P��A�կ�B����#[��Hp	u(N׉�@�v�ZB���b�A~Sv
泻�iq���=��W\�սԞ]ԡ��L[���vn8���'d�VPP�։�9�erjs"�`�$Lmx����4U�~�m�����ޟ����԰I2��_��<�M)f�ٚ��뇽hBV�P��U��͖���c�>0J"?��) �q�ONv�"����	lJ�eW1��&���e��ftLR���;����������	��ߌ��T$FG>�h��,Y%p/M��'U���2��@{~ʼ�N�nLzRY��B�Ne9M
-����
��]����(*�t��t��	�z��K[�АH8�0	=�Pqd�c�(x]��>6�W����$��?�\�9�0a�<�m#����f�Y���Z�T6��|q��!�-� h��I���ZP�����Mz�B
�1[9�hR�����P���}^װD��2��l0��OZ���mg�h��C�u�bz��=�O�^Wj?�Ud.�
�1/��d:-~1��#njr�,Ӷc�}������������U&$3.�Y�SR�F-ޝ��J����rC[g5Ĕh��nUi�݈<�
-
�FyeCt
�'r�5q�p�q7�Ѝ�l>@,�哤�\�ݜ��ܒ�B��g#�`G�L���c�G(,�z��>�y�-V��D�l��<ϱJ�ל�;�+f��	yӉB�;� �ݨl�'�����fPt�2�L
-V8!"��l�bS���NK\���G�([����ej����4ҵp:��C]���Ǜ{
Ȍ���w�a�	�V�<�]���(�{�U뛦����f�&��״t���Q�rj���t����CmL%�wQ"J������"���7�B1�b�x������%��/B%5'��fר��D�[@(��C��	��\ƜT{��r
-��7/��[0r��p�\�4�w��<И�va@_����J}�Dm���`�3��Q�Ip�j�������8ﺁ燶�\�?��-�-�$1�R�?ѹ��q��Z��+��$P��MYY~��=�alB�s�ɚ`���D{-�}۔��Yݖ�Y��؄�z������~@����EO�{��/o�|"���Q-���R�D"�LR1U�LN�M9T�X��>FD�U�#/I�X��%s�
���s�U�_y5T��@f��~˫Ot��r*��o�@�F��O����	�����L~\�F�E���c�k�����_�m�endstream
+xڕm�۶�{~���El��#Q�C�	�6C�۳[S�M��#K�D'u��2%�N��x�;�t���/xH/
�rO%��������w/�X
+�ҡy����]>�^��Oۇ�O�0��PyY��6?����|�b{�}{�Ls(���1��i��<��UU�y����=���0��,������N���&���D�>����|���l���g��kj=W��3|��L�]��<�ly�'�yT�v����O�Z0T���VX��i[��zC���M��i�3S�5	l?d��w�?,��b�7����?|��������E�`���G���5n�q�4Ϗ��5�R��!0Ef<,-r��C��y���4_����3���EU�y�0�X��ϱ@�X�i�F@`5W����g�ܗ����胮M7Z�o���"m��*�4�؏����v��ʊ-�)�`m]�U2��G����8�}�:GQ�� �m���P��jri��I�Jv(�`Z�z�-��ar��9��1�-@w��tgx��5�x@&į�U5���=u0�G�Ъ��F�Ɦlx�p��D������ȘZ�M��FP]�c�uV3܁����$B_�]�N�)���T֝�#�y�H.�ZwV�-#w�
+3D�u�O�̥B��L��8���A�	4���0�DgZ�^<D����E���؝F��]���چ���#%�u?3v`�|�#{Pa��[]ivL؍d�΀$i����X�6<�.�j_�!1�`4=��fcѦ�{���|�@r�W�RH�~˱�2LJ�\f��N�f��)�F�Θ�@����S
�?�����sp���VqDm�[c`Y��	���N-�a��rq!��M��i1m��!�̢T���si��Tx�Rj9)�aIe.g!l�P�
+�{=74��<��
+3X.�!�W��p=M��1>z]�s��΀��FЗ��uS�v�i|7ZLJI�D����,x̩
+�`J�g�l�V�a���T�0#���l���?ף.ڑ33�w�)�]��ژ8�.Y���*M!���.
�F[p�6�P����/v=��Ł����m~;Xj��M�cX�7�!Fe���̓��X�ʪ4%N�4�%W4x�7aϋ�<���<�YD�9�5�f+Eq`n�n1pPW=R��^�����Mi��|�w�u�^[��ȥt
+�7GgF��c@��H?�+�S��>�J�+.��Zs�,ws�3m���8E�8_��<p��M	��-��ܞ����9i�����fz�o:��:jLد%#ֽ�P���n�ˁ��?�@����{�HW�PK�.��g���ɦ0�����p�^�Dr����Z��=w��*���k?	�Sĉ�(XM�e��pK�J�
���s��Uͪ�&��e�2/�Á7t��s_�#��:��-�0w�+�/��z;������Pl�z�/�-�e��>�@� �o$�$EJ�8���,���2��b�P�?wX6S�99��
�}2�������P����Cj[���"�˳�
+��h���<p�Th�=�s���c���e�b�/	r�����8@�0©���/ߟ�Z������Vo���%�֙>n�
%̗��e��c��3V1�
+�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
 endobj
-3062 0 obj <<
+3600 0 obj <<
 /Type /Page
-/Contents 3063 0 R
-/Resources 3061 0 R
+/Contents 3601 0 R
+/Resources 3599 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3060 0 R
->> endobj
-3064 0 obj <<
-/D [3062 0 R /XYZ 71.731 729.265 null]
->> endobj
-550 0 obj <<
-/D [3062 0 R /XYZ 308.397 708.149 null]
->> endobj
-3065 0 obj <<
-/D [3062 0 R /XYZ 71.731 698.007 null]
->> endobj
-3066 0 obj <<
-/D [3062 0 R /XYZ 366.334 688.025 null]
+/Parent 3499 0 R
 >> endobj
-3067 0 obj <<
-/D [3062 0 R /XYZ 71.731 667.935 null]
+3602 0 obj <<
+/D [3600 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3068 0 obj <<
-/D [3062 0 R /XYZ 377.452 644.189 null]
+3603 0 obj <<
+/D [3600 0 R /XYZ 71.731 695.392 null]
 >> endobj
-3069 0 obj <<
-/D [3062 0 R /XYZ 71.731 624.1 null]
+3604 0 obj <<
+/D [3600 0 R /XYZ 71.731 689.003 null]
 >> endobj
-3070 0 obj <<
-/D [3062 0 R /XYZ 379.185 613.305 null]
+3605 0 obj <<
+/D [3600 0 R /XYZ 71.731 618.516 null]
 >> endobj
-3071 0 obj <<
-/D [3062 0 R /XYZ 71.731 593.215 null]
+3606 0 obj <<
+/D [3600 0 R /XYZ 71.731 587.631 null]
 >> endobj
-3072 0 obj <<
-/D [3062 0 R /XYZ 71.731 549.38 null]
+3607 0 obj <<
+/D [3600 0 R /XYZ 71.731 556.747 null]
 >> endobj
-3073 0 obj <<
-/D [3062 0 R /XYZ 71.731 531.447 null]
+3608 0 obj <<
+/D [3600 0 R /XYZ 235.228 533.001 null]
 >> endobj
-3074 0 obj <<
-/D [3062 0 R /XYZ 71.731 507.701 null]
+3609 0 obj <<
+/D [3600 0 R /XYZ 71.731 512.912 null]
 >> endobj
-3075 0 obj <<
-/D [3062 0 R /XYZ 227.327 507.701 null]
+3610 0 obj <<
+/D [3600 0 R /XYZ 282.395 502.117 null]
 >> endobj
-3076 0 obj <<
-/D [3062 0 R /XYZ 71.731 492.593 null]
+3611 0 obj <<
+/D [3600 0 R /XYZ 500.324 502.117 null]
 >> endobj
-3077 0 obj <<
-/D [3062 0 R /XYZ 71.731 477.649 null]
+3612 0 obj <<
+/D [3600 0 R /XYZ 300.306 489.166 null]
 >> endobj
-3078 0 obj <<
-/D [3062 0 R /XYZ 351.543 468.149 null]
+3613 0 obj <<
+/D [3600 0 R /XYZ 71.731 476.214 null]
 >> endobj
-3079 0 obj <<
-/D [3062 0 R /XYZ 71.731 416.941 null]
+3614 0 obj <<
+/D [3600 0 R /XYZ 71.731 453.201 null]
 >> endobj
-3080 0 obj <<
-/D [3062 0 R /XYZ 155.496 403.99 null]
+3615 0 obj <<
+/D [3600 0 R /XYZ 71.731 384.868 null]
 >> endobj
-3081 0 obj <<
-/D [3062 0 R /XYZ 116.831 391.038 null]
+3616 0 obj <<
+/D [3600 0 R /XYZ 246.016 372.105 null]
 >> endobj
-3082 0 obj <<
-/D [3062 0 R /XYZ 71.731 384.649 null]
+3617 0 obj <<
+/D [3600 0 R /XYZ 71.731 364.966 null]
 >> endobj
-554 0 obj <<
-/D [3062 0 R /XYZ 251.73 346.685 null]
+3618 0 obj <<
+/D [3600 0 R /XYZ 178.27 354.172 null]
 >> endobj
-3083 0 obj <<
-/D [3062 0 R /XYZ 71.731 336.542 null]
+3619 0 obj <<
+/D [3600 0 R /XYZ 71.731 342.052 null]
 >> endobj
-3084 0 obj <<
-/D [3062 0 R /XYZ 71.731 319.422 null]
+3620 0 obj <<
+/D [3600 0 R /XYZ 71.731 321.183 null]
 >> endobj
-3085 0 obj <<
-/D [3062 0 R /XYZ 71.731 319.422 null]
+3621 0 obj <<
+/D [3600 0 R /XYZ 462.665 309.639 null]
 >> endobj
-3086 0 obj <<
-/D [3062 0 R /XYZ 71.731 301.489 null]
+3622 0 obj <<
+/D [3600 0 R /XYZ 71.731 289.549 null]
 >> endobj
-3087 0 obj <<
-/D [3062 0 R /XYZ 71.731 301.489 null]
+3623 0 obj <<
+/D [3600 0 R /XYZ 71.731 278.655 null]
 >> endobj
-3088 0 obj <<
-/D [3062 0 R /XYZ 71.731 257.654 null]
+3624 0 obj <<
+/D [3600 0 R /XYZ 71.731 273.674 null]
 >> endobj
-3089 0 obj <<
-/D [3062 0 R /XYZ 71.731 257.654 null]
+3625 0 obj <<
+/D [3600 0 R /XYZ 81.694 250.859 null]
 >> endobj
-3090 0 obj <<
-/D [3062 0 R /XYZ 250.628 246.859 null]
+3626 0 obj <<
+/D [3600 0 R /XYZ 81.694 237.908 null]
 >> endobj
-3091 0 obj <<
-/D [3062 0 R /XYZ 71.731 200.867 null]
+3627 0 obj <<
+/D [3600 0 R /XYZ 71.731 235.751 null]
 >> endobj
-3092 0 obj <<
-/D [3062 0 R /XYZ 71.731 200.867 null]
+3628 0 obj <<
+/D [3600 0 R /XYZ 81.694 219.975 null]
 >> endobj
-3093 0 obj <<
-/D [3062 0 R /XYZ 71.731 169.983 null]
+3629 0 obj <<
+/D [3600 0 R /XYZ 344.309 207.024 null]
 >> endobj
-3094 0 obj <<
-/D [3062 0 R /XYZ 71.731 169.983 null]
+3630 0 obj <<
+/D [3600 0 R /XYZ 140.643 194.072 null]
 >> endobj
-3095 0 obj <<
-/D [3062 0 R /XYZ 426.397 159.188 null]
+3631 0 obj <<
+/D [3600 0 R /XYZ 270.568 194.072 null]
 >> endobj
-3096 0 obj <<
-/D [3062 0 R /XYZ 197.338 146.236 null]
+3632 0 obj <<
+/D [3600 0 R /XYZ 333.642 194.072 null]
 >> endobj
-3097 0 obj <<
-/D [3062 0 R /XYZ 311.948 146.236 null]
+3633 0 obj <<
+/D [3600 0 R /XYZ 71.731 173.983 null]
 >> endobj
-3098 0 obj <<
-/D [3062 0 R /XYZ 95.801 133.285 null]
+3634 0 obj <<
+/D [3600 0 R /XYZ 309.019 163.188 null]
 >> endobj
-3099 0 obj <<
-/D [3062 0 R /XYZ 71.731 126.147 null]
+3635 0 obj <<
+/D [3600 0 R /XYZ 179.902 150.237 null]
 >> endobj
-3100 0 obj <<
-/D [3062 0 R /XYZ 71.731 126.147 null]
+3636 0 obj <<
+/D [3600 0 R /XYZ 494.944 150.237 null]
 >> endobj
-3061 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F44 1440 0 R /F32 1071 0 R >>
+3599 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F35 1437 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3103 0 obj <<
-/Length 2316      
+3639 0 obj <<
+/Length 2832      
 /Filter /FlateDecode
 >>
 stream
-xڍYk��6��_���zX~d3]4�+����X�EAK�ED/�Tf�_��ǥDJ�)�al�"�}�{.-B�-�Q�O�O|�]�Ȫ7����ӛȬX�%�њ�o6?&��w���؆� �n�$i�x�[~,H+h�Z�i�L��c�ES1��~�|]EKV�d������hON�}p<$/��5t�~@�F�R�{�H��hAVq��šހm��o� JZ��Q@�?��t�t���ܩ7_J���T6�o��\1�ޞ:J>�5��t�E�A��~��{F�4�̊��W�ח�_��(�^_��88��̘�L��)k��,i��F��h[��VmI5V�:�D�O_�%��ٕ��v��jr�{�xLA;H̐`�Bi�D:1hl�n��lz��*�/��\hP�^Q����z�qJD�CE	�+�{��~�v176fO�6H�h�Rҙ�5|�5��iݜ���JGۦ�(Zi�I��
-���(}w�ڷdXL �M��[в4��mܥ�����z`B������|ձ����	X��d��M�r��{.�BGJ�s.Xq$��k���mm��<����d����M[�ռ?U̘�YuDj��f�� ���Y�w&'�����`�q����%
-Uf����vw�������0�*��a1�T�����&��HVe'YFL�,�K��Ϟ�1����x�bj�RCxO��N����{1;�H�ك�i�n#�/�T�5/0��aw-(�e�`��o{��K��������5����ֵT�LPy�?���Og��uw��ڳΐ;vSV��x������^�˭��Ů�+�x�p{���F�M�إ.�����3��p�5gCS�K�+E�z2OMo���Պ=VEd :ZZ'��u�[�0�z�=R7M~�
+���D�?�m��'vMہ��+����Z������s�ȝ��f�3ѳ7�It��â]p�㊹��J���s� �<���*��j��"��ԍ@��y���r�b=�6�I��`�3(3�;�ƻ0������R���2�n��>��)�F�U�$o*�Y>�-���J��f��U討�Չz��e4��Ur/�mZ���U#28c�?�������6Poi�H�8��P�F��QC\��nS���Z��Lj��6�y%1³�<rBN�l�6j��£5�o�`b�H���;1����#��忘�9tV$*ޣ�Ќ��k�T�Ŀ˴˜pj���~-�]�O�8�����r~1��Ź%.�Xu�H���F[a56�H
-��w
-�s�I���X���b7��O�&��Ӑ��t&��f�M�c��~W"2#�٩�3Y9�4�~¨z���A����K��Ɓɱre	y[Qoޜ�W'��q
-c�%���-#j��� ]��w��a�����V���i���K<��y��_O�_� ��[d�(�EG��{V�=������Ngҝ~1�����;�%�����;	���)�P�#=���g4�rݦ�HN����#琒r�-A2�N�/<�F5YS嗞�ð="Q5p>��j&��*�h�m6%��
-z����������k��
3��Da�]ؿA��}&~]d��G}%�O�"4f)��6�59��͍�`�a���-��$g�FtL�z21��b�2�#9�6�E~�B��z�
-�UƧ)�ɔ��� ��7T�.��z�ToXz�������e�(�w���� �����<U��P>�U�}�G���ńn��<�ռ��	�.^И�ԉ95d����㵡ν��B5���iN�CIpH]�%�m�O#tv���r��$�������\���?�i�����A]&�Tv�o�q*�n��@ҧ.�?���RI)�$�0���į�W��2V��Ӵ�[�7��j��1E�5n�r�֣������ȘcƷ�Ԇ�����\l e[oB9�����H��/��[֨�޼߿�I��eD�a��L�Ú��R���Bl]B3�㤖J����
-�=����Y*Ԏ��l����l-O���r��E��t�96�_aT{�!�C���W�}�%��?3�����~�ǜ�:I�s]�k�j��2@��̍�d���o�w��P���{������J�:Qw��A+�@�kgK��V��%�07���Q�..b�=	<-�f%�\*$w3�\�Q�
-��*�V�/��I���sξ³$|]ڎ~u���D��F_�[[^��A���;
��i�U���sڅ9���F7i�	�%81�>L��c�]�e����ڄ+�_����I������?�K&����a��H�i|�'��I�&��endstream
+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
 endobj
-3102 0 obj <<
+3638 0 obj <<
 /Type /Page
-/Contents 3103 0 R
-/Resources 3101 0 R
+/Contents 3639 0 R
+/Resources 3637 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3060 0 R
->> endobj
-3104 0 obj <<
-/D [3102 0 R /XYZ 71.731 729.265 null]
->> endobj
-3105 0 obj <<
-/D [3102 0 R /XYZ 71.731 688.254 null]
->> endobj
-3106 0 obj <<
-/D [3102 0 R /XYZ 71.731 688.254 null]
->> endobj
-3107 0 obj <<
-/D [3102 0 R /XYZ 71.731 657.37 null]
->> endobj
-3108 0 obj <<
-/D [3102 0 R /XYZ 71.731 657.37 null]
+/Parent 3499 0 R
 >> endobj
-3109 0 obj <<
-/D [3102 0 R /XYZ 71.731 574.68 null]
+3640 0 obj <<
+/D [3638 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3110 0 obj <<
-/D [3102 0 R /XYZ 71.731 574.68 null]
+3641 0 obj <<
+/D [3638 0 R /XYZ 71.731 741.22 null]
 >> endobj
-3111 0 obj <<
-/D [3102 0 R /XYZ 208.955 563.885 null]
+3642 0 obj <<
+/D [3638 0 R /XYZ 71.731 718.306 null]
 >> endobj
-3112 0 obj <<
-/D [3102 0 R /XYZ 184.198 486.177 null]
+3643 0 obj <<
+/D [3638 0 R /XYZ 76.712 664.508 null]
 >> endobj
-3113 0 obj <<
-/D [3102 0 R /XYZ 71.731 474.057 null]
+3644 0 obj <<
+/D [3638 0 R /XYZ 81.694 646.575 null]
 >> endobj
-3114 0 obj <<
-/D [3102 0 R /XYZ 71.731 436.563 null]
+3645 0 obj <<
+/D [3638 0 R /XYZ 198.595 633.624 null]
 >> endobj
-3115 0 obj <<
-/D [3102 0 R /XYZ 221.936 423.711 null]
+3646 0 obj <<
+/D [3638 0 R /XYZ 95.463 620.672 null]
 >> endobj
-3116 0 obj <<
-/D [3102 0 R /XYZ 71.731 384.857 null]
+3647 0 obj <<
+/D [3638 0 R /XYZ 71.731 600.583 null]
 >> endobj
-3117 0 obj <<
-/D [3102 0 R /XYZ 214.834 384.857 null]
+1531 0 obj <<
+/D [3638 0 R /XYZ 71.731 540.971 null]
 >> endobj
-3118 0 obj <<
-/D [3102 0 R /XYZ 71.731 378.468 null]
+594 0 obj <<
+/D [3638 0 R /XYZ 402.85 495.717 null]
 >> endobj
-3119 0 obj <<
-/D [3102 0 R /XYZ 275.644 366.924 null]
+3648 0 obj <<
+/D [3638 0 R /XYZ 71.731 491.887 null]
 >> endobj
-3120 0 obj <<
-/D [3102 0 R /XYZ 91.387 353.973 null]
+3649 0 obj <<
+/D [3638 0 R /XYZ 118.555 449.696 null]
 >> endobj
-3121 0 obj <<
-/D [3102 0 R /XYZ 306.41 353.973 null]
+3650 0 obj <<
+/D [3638 0 R /XYZ 71.731 395.999 null]
 >> endobj
-3122 0 obj <<
-/D [3102 0 R /XYZ 71.731 333.883 null]
+3651 0 obj <<
+/D [3638 0 R /XYZ 71.731 345.309 null]
 >> endobj
-3123 0 obj <<
-/D [3102 0 R /XYZ 184.507 323.088 null]
+3652 0 obj <<
+/D [3638 0 R /XYZ 395.22 319.506 null]
 >> endobj
-3124 0 obj <<
-/D [3102 0 R /XYZ 71.731 310.137 null]
+3653 0 obj <<
+/D [3638 0 R /XYZ 108.148 306.555 null]
 >> endobj
-3125 0 obj <<
-/D [3102 0 R /XYZ 100.234 297.186 null]
+3654 0 obj <<
+/D [3638 0 R /XYZ 441.752 306.555 null]
 >> endobj
-3126 0 obj <<
-/D [3102 0 R /XYZ 71.731 277.096 null]
+3655 0 obj <<
+/D [3638 0 R /XYZ 71.731 286.465 null]
 >> endobj
-3127 0 obj <<
-/D [3102 0 R /XYZ 71.731 254.182 null]
+3656 0 obj <<
+/D [3638 0 R /XYZ 403.654 262.719 null]
 >> endobj
-3128 0 obj <<
-/D [3102 0 R /XYZ 71.731 209.649 null]
+3657 0 obj <<
+/D [3638 0 R /XYZ 71.731 237.648 null]
 >> endobj
-3129 0 obj <<
-/D [3102 0 R /XYZ 71.731 165.116 null]
+3658 0 obj <<
+/D [3638 0 R /XYZ 71.731 163.128 null]
 >> endobj
-3031 0 obj <<
-/D [3102 0 R /XYZ 71.731 125.564 null]
+3659 0 obj <<
+/D [3638 0 R /XYZ 477.684 139.382 null]
 >> endobj
-3101 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F32 1071 0 R /F35 1229 0 R >>
+3637 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
-3132 0 obj <<
-/Length 2672      
+3662 0 obj <<
+/Length 2133      
 /Filter /FlateDecode
 >>
 stream
-xڝZ{��6�?��C�6�����"8l�m�^�����$X�m�+�*)ŷ��7|I�cݴ������fw��w�(����"/
-iy�,����W��Xk��E���j��/�h���a81�`�JBo��>,��p��Z{����|��9ϫ�Z��=��r�yQ�է�W����Џ�6�/2gh&�y��
��H�g�.���܅�E�`*N��i��q�c�[�$ؒ<�o
U�/HC�F���z����*r�\}��c�W�����_"���^]�b�9��BɊu(�D+�2���Kࡕ���R�p:KSR7O�����;�����Z��Y��mշW�!�x��B�Cʺ�
��7�I�~m�.��	�VK��z���Q�,�t=�
���<�	UR���њ���^H���e��H�_�S�7�Q�F3"lY��^S<�V��
h�
�z��Buz�{mUt��k�op.��ET`��Fh���fs>�Wb����JI����,��(�+/\��������[AS\��&���K�6�Kj�@���ݗyӈ�2z��<s(�އ�Qo�錍���؏��M��՜���`TpW��$�E�
-⤛C�m�`�z;�Q�K��N��RF��,�׵ր���8[�.6�^#�C��������7w?�}�������@�P���A�S� �y���r�T�ڏ@A<�i[g�W���(v�E��&��:[MWc�K���GJ+�&>m?�"�z��d��A������X�Ck���f�I�,����O���_��z���K9�h��#�$���),�:�Xa�/kE}�<�T�o���0�pF��E�j!�BI���n��D�=9;�#7�HVd
-�	��AŊ��R%Z�uub���邵�Ƹ�\yI�=P��Q�j������E����+�=_	��
-�o.�n�#�����u'Ap�!���g���.���6̬��G�x�P����0_M@ 	�Y"sUŒRQ�3z�q@��7B��v�V�s�������MNH�K���>��^fE¸Hyr�����d��O��"��x���!�vE�ӧ�8��G����M���M��t��KIq=�^D���gPtJj��q�O���PS����#Ϟ��tf��+���$����h� �m�Eoܿ�%�� ?�@>I��=��7 �-������V�R��!��A�3��]���2��R�>Ӛ�0�Jf�a���1���.��f�2���2<o���ys�m3UJ�凇iQn�$U��@*�)9)>��&��TI%I!��2>�T*�s�Q�N�y�j�m:-fS6;5L1����S��>���
_4���� �*�2'��%�?�Һ V�'
��i`��G�}����M���((H�ц�y�hZ��(�4Om�k�!���
-x�LF�4^)m��Fٽ�ߌrcN�Yym��2?�<���}m����\��G�{3�P���ʊS�
-W�?lD�O*#��霷�W�s~m�E�k,La���)"P<�sA���՜y�>�l>�@��Kp$�\�hJ8'���[���;Ox�L�5�"���>c�u��������5�ڰU�ЙH�������d�V�
4��8���`�n&;���.}�6h�9�j�#ۦ�U��>ۍ:rh����`.��j҆����
�/����O� ԩ*�ǰ���xҐ�,3ٛd����{;RY[�.$&���`Fx�BQe|�V<�ѝ���T8:.m3	t5.�׽�1�a��^���o9�c>��>,p32����8�G0Vv�w�c��2Tj�8
;���&��Ȫk��#�5@���(�q�gL����XW��ȅ�fK�̴�A��0�
�'j`V�9����+�0'�0а룠����.�p�iw�R�=r��O��؋P�5��k��L��]�������䓱d�C������tnv�^ݐ~f#o��A�P����	��ո=T>���`8�rS�s�\���Ԍǘ`~ߞ������5$���D�~�ڥ9��&5R��
-;�'1�ڮVB*��oEo6��z����	�b�sG�UI=3*�Z������Ǻy>�-ی�
MӖ�}S�����uP��x�r��	LpP���Q�����!g�L�;�q�zrq��!��6Ĕ�����L$z e���p=�f��*`jZ);ho�RdΤĢP���/
-��t��!�~dJؐ����^���޽������w��7�^����f�����������۷�TO��^fr�Lլ藕M�����慒��))R)�z
-G��fLdC�~�Z��4��3#٥��}���(�����)-R�3�b��e��l�����5I�B:�xJ����_W�&��`�_d�2�
-}���d �i��<�j�&��d-�`���I{9�K���t\���j�=a�����h'�d�fҚ�
-�m#���V����u3�o���S�[[����[_���XcL�xl�AT����`=ߋ�����d-����Y�i"3Xgs���џd1 FE;h��|��9W�ֈ|=��u��n���+
-�Y�W��X��j]#"XW�Ҥ�j
��&�6AD���pmw�
`z?:ϼ
o�40_�O�=����@F�g�/,��^�Oo�?w��endstream
+xڭXm��6���B��>،(��J�"M��-��zY�P4ł�h[]It���{h��pF��r��A�XpH�f��g�3���K�HA*�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�AAWg6{����zBA5B�H��@�#U�A��:Ɵ4*������Wb����q:x�h�?Ŝ��
 u�N��k�sz���|��x�P1�T�^� =K���f��$A�ƘrW�Y��	l�I�{�s��;���#b?y����[����b�,��b��
+�`�i��_V����J�endstream
 endobj
-3131 0 obj <<
+3661 0 obj <<
 /Type /Page
-/Contents 3132 0 R
-/Resources 3130 0 R
+/Contents 3662 0 R
+/Resources 3660 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3060 0 R
+/Parent 3680 0 R
 >> endobj
-3133 0 obj <<
-/D [3131 0 R /XYZ 71.731 729.265 null]
+3663 0 obj <<
+/D [3661 0 R /XYZ 71.731 729.265 null]
 >> endobj
-558 0 obj <<
-/D [3131 0 R /XYZ 461.484 707.841 null]
+1533 0 obj <<
+/D [3661 0 R /XYZ 71.731 741.22 null]
 >> endobj
-3134 0 obj <<
-/D [3131 0 R /XYZ 71.731 697.476 null]
+3664 0 obj <<
+/D [3661 0 R /XYZ 71.731 718.306 null]
 >> endobj
-3135 0 obj <<
-/D [3131 0 R /XYZ 93.589 661.813 null]
+3665 0 obj <<
+/D [3661 0 R /XYZ 71.731 536.224 null]
 >> endobj
-3136 0 obj <<
-/D [3131 0 R /XYZ 71.731 643.781 null]
+3666 0 obj <<
+/D [3661 0 R /XYZ 71.731 513.31 null]
 >> endobj
-3137 0 obj <<
-/D [3131 0 R /XYZ 318.832 630.929 null]
+3667 0 obj <<
+/D [3661 0 R /XYZ 71.731 360.882 null]
 >> endobj
-3138 0 obj <<
-/D [3131 0 R /XYZ 115.447 617.978 null]
+3668 0 obj <<
+/D [3661 0 R /XYZ 118.555 322.318 null]
 >> endobj
-3139 0 obj <<
-/D [3131 0 R /XYZ 71.731 605.026 null]
+3669 0 obj <<
+/D [3661 0 R /XYZ 211.992 313.853 null]
 >> endobj
-3140 0 obj <<
-/D [3131 0 R /XYZ 294.096 605.026 null]
+3670 0 obj <<
+/D [3661 0 R /XYZ 71.731 268.728 null]
 >> endobj
-1192 0 obj <<
-/D [3131 0 R /XYZ 71.731 587.926 null]
+3671 0 obj <<
+/D [3661 0 R /XYZ 242.937 261.974 null]
 >> endobj
-562 0 obj <<
-/D [3131 0 R /XYZ 237.169 544.828 null]
+3672 0 obj <<
+/D [3661 0 R /XYZ 410.176 261.974 null]
 >> endobj
-3141 0 obj <<
-/D [3131 0 R /XYZ 71.731 541.265 null]
+1532 0 obj <<
+/D [3661 0 R /XYZ 71.731 241.884 null]
 >> endobj
-3142 0 obj <<
-/D [3131 0 R /XYZ 118.555 499.074 null]
+598 0 obj <<
+/D [3661 0 R /XYZ 369.417 198.787 null]
 >> endobj
-3143 0 obj <<
-/D [3131 0 R /XYZ 506.319 490.61 null]
+3673 0 obj <<
+/D [3661 0 R /XYZ 71.731 186.349 null]
 >> endobj
-3144 0 obj <<
-/D [3131 0 R /XYZ 71.731 457.033 null]
+3674 0 obj <<
+/D [3661 0 R /XYZ 413.928 177.227 null]
 >> endobj
-3145 0 obj <<
-/D [3131 0 R /XYZ 71.731 393.392 null]
+3675 0 obj <<
+/D [3661 0 R /XYZ 86.396 164.276 null]
 >> endobj
-3146 0 obj <<
-/D [3131 0 R /XYZ 71.731 321.596 null]
+3676 0 obj <<
+/D [3661 0 R /XYZ 71.731 157.138 null]
 >> endobj
-3147 0 obj <<
-/D [3131 0 R /XYZ 519.885 297.85 null]
+3677 0 obj <<
+/D [3661 0 R /XYZ 492.055 146.343 null]
 >> endobj
-3148 0 obj <<
-/D [3131 0 R /XYZ 147.048 284.899 null]
+3678 0 obj <<
+/D [3661 0 R /XYZ 119.931 133.392 null]
 >> endobj
-3149 0 obj <<
-/D [3131 0 R /XYZ 225.125 284.899 null]
+3679 0 obj <<
+/D [3661 0 R /XYZ 525.26 133.392 null]
 >> endobj
-3150 0 obj <<
-/D [3131 0 R /XYZ 71.731 277.761 null]
+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 >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+3683 0 obj <<
+/Length 3286      
+/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�[��65'��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$���bQNF󴜣a*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�2V����_%��zp�����__��ͩ�\����
+��l�{�l�޸�G��g:�UoL˶�篹ᡁ8+��t#��i!e�����M���2��3�Y�wQ�zzɂ`�����?
+�ׂt���O�>1
���D��U�A櫯��z������endstream
+endobj
+3682 0 obj <<
+/Type /Page
+/Contents 3683 0 R
+/Resources 3681 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]
+>> 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]
+>> endobj
+3688 0 obj <<
+/D [3682 0 R /XYZ 71.731 632.719 null]
+>> endobj
+3689 0 obj <<
+/D [3682 0 R /XYZ 71.731 579.662 null]
+>> endobj
+3690 0 obj <<
+/D [3682 0 R /XYZ 71.731 507.867 null]
+>> endobj
+3691 0 obj <<
+/D [3682 0 R /XYZ 71.731 476.982 null]
+>> endobj
+3692 0 obj <<
+/D [3682 0 R /XYZ 71.731 409.301 null]
+>> endobj
+3693 0 obj <<
+/D [3682 0 R /XYZ 71.731 377.077 null]
+>> endobj
+3694 0 obj <<
+/D [3682 0 R /XYZ 71.731 307.339 null]
 >> endobj
-3151 0 obj <<
-/D [3131 0 R /XYZ 210.409 254.015 null]
+3695 0 obj <<
+/D [3682 0 R /XYZ 71.731 249.834 null]
 >> endobj
-3152 0 obj <<
-/D [3131 0 R /XYZ 440.125 254.015 null]
+1534 0 obj <<
+/D [3682 0 R /XYZ 71.731 223.931 null]
 >> endobj
-3153 0 obj <<
-/D [3131 0 R /XYZ 183.531 241.063 null]
+606 0 obj <<
+/D [3682 0 R /XYZ 284.626 186.716 null]
 >> endobj
-3154 0 obj <<
-/D [3131 0 R /XYZ 71.731 220.974 null]
+3696 0 obj <<
+/D [3682 0 R /XYZ 71.731 176.351 null]
 >> endobj
-3155 0 obj <<
-/D [3131 0 R /XYZ 71.731 220.974 null]
+3697 0 obj <<
+/D [3682 0 R /XYZ 445.066 153.64 null]
 >> endobj
-3156 0 obj <<
-/D [3131 0 R /XYZ 71.731 203.79 null]
+3698 0 obj <<
+/D [3682 0 R /XYZ 503.263 153.64 null]
 >> endobj
-3157 0 obj <<
-/D [3131 0 R /XYZ 439.488 192.246 null]
+3699 0 obj <<
+/D [3682 0 R /XYZ 270.523 140.688 null]
 >> endobj
-3158 0 obj <<
-/D [3131 0 R /XYZ 71.731 161.362 null]
+3700 0 obj <<
+/D [3682 0 R /XYZ 71.731 120.599 null]
 >> endobj
-3159 0 obj <<
-/D [3131 0 R /XYZ 71.731 161.362 null]
+3701 0 obj <<
+/D [3682 0 R /XYZ 71.731 120.599 null]
 >> endobj
-3160 0 obj <<
-/D [3131 0 R /XYZ 71.731 111.888 null]
+3702 0 obj <<
+/D [3682 0 R /XYZ 71.731 115.618 null]
 >> endobj
-3130 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F44 1440 0 R /F32 1071 0 R >>
+3681 0 obj <<
+/Font << /F33 1210 0 R /F35 1437 0 R /F27 1112 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3163 0 obj <<
-/Length 2291      
+3705 0 obj <<
+/Length 1455      
 /Filter /FlateDecode
 >>
 stream
-xڭY[��~�_�,�
�9�lIv�.�	����H��l�m+#K�H����=y(��<����m�:��\�"�ij<&�
-��-I�t�?��fG����X�X�#K�����w��lK��j�x�������Y�J�&Mf����oN�"X�X&i4O�����9������Cw�c�˪��_���o��s���v��)�I��t�d�酔�}Z�霵�lj%GsP����v�TT�e-�H�ӏw���c�2s֐�7m�����nQ�l/���d��`�t�i3)m4[�	�j+>���������_�����A�x~��{��`�T���4O����z�D$�W@T#��l��1o���{�`�N�u�Z��"�:�*��
-A�'�[}]� T�E4�1�n�D�N��|*�`	��3������=���V
-c�e��ίM�rVi�уAؙ��$��Ɨz����K�H|��h��:����N��&�(����g���s
�GT�P�z�U�p晕w�#���5���_��P0uG0����i{!��T�:��Jw�蕗܅�4��U3V�M}��z�=�{�9r�����6=���U��L�
-���l�h#	`���q{�=�G&�	3)��t�"�3��Sj��Tu#�\_���d}�dz#��	�QD�F��.?ۀ�A�k�vwo?�c¢bPлBrr�ð��;��'*=���vW2rA�Ό	�6�[f�U/��C,��q-�Z6Wp��*9���Q
~�`��Œ�<��c�9�nj�eB���"{����T��n.��Ac���MW�{i���OT��Y��Q�P?�k�������s��ȅD)`�-But�Ԃ�� �؇k:nXq7mj�9�d�0z6�ޱ@"0ı��A۔Рd�8��@��\m=�+落�#3�EO�S1��k���^��ǚ�'=�2�l����8��,�@c��G(�`J�xO/tWV�('r%�:lO��-��vȕT�N+�� S.ݳq/g1Ibl_XQ�������;ۘ��\��Ӧ��s��E�LP������=�����
%N9�<.����j�҄d��;�N�n����5+c�N�Z���ʋ85\_��?�O�*�P��ɶ��O��.Y�[5<�3&͠{��
nU��D�漻�l�?FQR�D�n�q���UK�9NN�\D�0�c��ʼnݜr���)�H�mN�d�	�fG�@;�\'	Y������	fU�Rd��K�k��&-`([��X!�
-��XQ���,�@��㵙'z� 540�,W�I��U&�%,0���MU�Z�4�V�ٹ���޺*�E�[�'X΄?
-o����/��/�Io�i��3���%�D2 $o���b�E��͝�����S�}-��t%�>7m����o�������7�p��H+M9�)��(ɔA�m�]8���Ӓ���N|���6W���CZ�rI�z�����Gg�����i$�@'��<idgh�#Ʒ�u�?'q�|���
-��Ү��[C�n����r݁��	�v�A5��
-�3]m5����K���޺��\���v]����A6��I2��S��#(�$O�&Ju�l-/Dž��i ^��*0���(��q�
�k�N�1��������ˊ~�m	���֝��Q�Bc!�r�e�f輴c(�q���
--ba�7��;�xv�'��{,�Ҿ�������T��7�z����<pkki��� \ȭ� ���>B>1[�4	2���sc�
`w�v�O�����e����2o6'>F���Z�;b,ƌ�K��ˡin{x$��=�z�a�Q4�JdU�`c)g�,�M���1H�*_U��K��s�Ud
-�QN"h	o�s83�N}�%t�����1�:-��/�<z����@S��
-���kf%����Vy	���<ԕ����p��{~j��p�d��鶼�lSc��_ؾ�!���ը�?|vN
7�}�g7���f$ΰc$Ȝ���}�!�&����4���y�s�j�zC�<!�+���N��JN���`�lH�Ŏ?��;�`�E�/z9��%��/��vVr�P�q��s�� M�����3�#	�U�u5���Xؙ����,�;�^%:�n����L?����ec�䯷=�d�\|F+��I���Mץ#Й�nI	
-B�n�`S;+f��&'���u��{'k%,�.��=�j����Ϫ��O{���G��M�m/�)�?#b�0$n<�V&�� x�;z=L��dY�Ld�`X�Z�H/���ů'�fj����1��V�����z���b
�`��l*�#���)��(A"R�t=��}�鿒Q�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�"�^~���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
-3162 0 obj <<
+3704 0 obj <<
 /Type /Page
-/Contents 3163 0 R
-/Resources 3161 0 R
+/Contents 3705 0 R
+/Resources 3703 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3060 0 R
->> endobj
-3164 0 obj <<
-/D [3162 0 R /XYZ 71.731 729.265 null]
->> endobj
-3165 0 obj <<
-/D [3162 0 R /XYZ 71.731 695.392 null]
->> endobj
-3166 0 obj <<
-/D [3162 0 R /XYZ 71.731 689.003 null]
+/Parent 3680 0 R
 >> endobj
-3167 0 obj <<
-/D [3162 0 R /XYZ 71.731 618.516 null]
->> endobj
-3168 0 obj <<
-/D [3162 0 R /XYZ 71.731 587.631 null]
->> endobj
-3169 0 obj <<
-/D [3162 0 R /XYZ 71.731 556.747 null]
->> endobj
-3170 0 obj <<
-/D [3162 0 R /XYZ 232.944 533.001 null]
->> endobj
-3171 0 obj <<
-/D [3162 0 R /XYZ 71.731 512.912 null]
+3706 0 obj <<
+/D [3704 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3172 0 obj <<
-/D [3162 0 R /XYZ 278.723 502.117 null]
+3707 0 obj <<
+/D [3704 0 R /XYZ 71.731 741.22 null]
 >> endobj
-3173 0 obj <<
-/D [3162 0 R /XYZ 494.203 502.117 null]
+3708 0 obj <<
+/D [3704 0 R /XYZ 89.664 708.344 null]
 >> endobj
-3174 0 obj <<
-/D [3162 0 R /XYZ 280.087 489.166 null]
+3709 0 obj <<
+/D [3704 0 R /XYZ 119.054 690.411 null]
 >> endobj
-3175 0 obj <<
-/D [3162 0 R /XYZ 71.731 476.214 null]
+3710 0 obj <<
+/D [3704 0 R /XYZ 147.008 690.411 null]
 >> endobj
-3176 0 obj <<
-/D [3162 0 R /XYZ 71.731 453.201 null]
+3711 0 obj <<
+/D [3704 0 R /XYZ 71.731 683.407 null]
 >> endobj
-3177 0 obj <<
-/D [3162 0 R /XYZ 71.731 384.868 null]
+3712 0 obj <<
+/D [3704 0 R /XYZ 284.172 672.478 null]
 >> endobj
-3178 0 obj <<
-/D [3162 0 R /XYZ 71.731 359.153 null]
+3713 0 obj <<
+/D [3704 0 R /XYZ 399.456 646.575 null]
 >> endobj
-3179 0 obj <<
-/D [3162 0 R /XYZ 71.731 352.764 null]
+3714 0 obj <<
+/D [3704 0 R /XYZ 76.712 615.691 null]
 >> endobj
-3180 0 obj <<
-/D [3162 0 R /XYZ 178.27 341.22 null]
+3715 0 obj <<
+/D [3704 0 R /XYZ 89.664 597.758 null]
 >> endobj
-3181 0 obj <<
-/D [3162 0 R /XYZ 71.731 329.101 null]
+3716 0 obj <<
+/D [3704 0 R /XYZ 71.731 590.62 null]
 >> endobj
-3182 0 obj <<
-/D [3162 0 R /XYZ 71.731 308.231 null]
+3717 0 obj <<
+/D [3704 0 R /XYZ 71.731 590.62 null]
 >> endobj
-3183 0 obj <<
-/D [3162 0 R /XYZ 71.731 283.736 null]
+3718 0 obj <<
+/D [3704 0 R /XYZ 71.731 573.437 null]
 >> endobj
-3184 0 obj <<
-/D [3162 0 R /XYZ 71.731 276.598 null]
+3719 0 obj <<
+/D [3704 0 R /XYZ 159.123 561.893 null]
 >> endobj
-3185 0 obj <<
-/D [3162 0 R /XYZ 71.731 265.704 null]
+3720 0 obj <<
+/D [3704 0 R /XYZ 304.466 561.893 null]
 >> endobj
-3186 0 obj <<
-/D [3162 0 R /XYZ 71.731 260.722 null]
+3721 0 obj <<
+/D [3704 0 R /XYZ 71.731 554.755 null]
 >> endobj
-3187 0 obj <<
-/D [3162 0 R /XYZ 81.694 237.908 null]
+3722 0 obj <<
+/D [3704 0 R /XYZ 71.731 554.755 null]
 >> endobj
-3188 0 obj <<
-/D [3162 0 R /XYZ 81.694 224.956 null]
+3723 0 obj <<
+/D [3704 0 R /XYZ 119.054 543.96 null]
 >> endobj
-3189 0 obj <<
-/D [3162 0 R /XYZ 71.731 222.8 null]
+1535 0 obj <<
+/D [3704 0 R /XYZ 76.712 508.095 null]
 >> endobj
-3190 0 obj <<
-/D [3162 0 R /XYZ 81.694 207.024 null]
+610 0 obj <<
+/D [3704 0 R /XYZ 257.368 473.624 null]
 >> endobj
-3191 0 obj <<
-/D [3162 0 R /XYZ 81.694 181.121 null]
+3724 0 obj <<
+/D [3704 0 R /XYZ 71.731 464.986 null]
 >> endobj
-3192 0 obj <<
-/D [3162 0 R /XYZ 336.139 181.121 null]
+3725 0 obj <<
+/D [3704 0 R /XYZ 71.731 447.557 null]
 >> endobj
-3193 0 obj <<
-/D [3162 0 R /XYZ 464.726 181.121 null]
+3726 0 obj <<
+/D [3704 0 R /XYZ 71.731 447.557 null]
 >> endobj
-3194 0 obj <<
-/D [3162 0 R /XYZ 81.694 168.169 null]
+3727 0 obj <<
+/D [3704 0 R /XYZ 106.501 436.762 null]
 >> endobj
-3195 0 obj <<
-/D [3162 0 R /XYZ 71.731 148.08 null]
+3728 0 obj <<
+/D [3704 0 R /XYZ 71.731 429.758 null]
 >> endobj
-3196 0 obj <<
-/D [3162 0 R /XYZ 298.906 137.285 null]
+3729 0 obj <<
+/D [3704 0 R /XYZ 234.877 418.829 null]
 >> endobj
-3197 0 obj <<
-/D [3162 0 R /XYZ 178.828 124.334 null]
+3730 0 obj <<
+/D [3704 0 R /XYZ 71.731 411.691 null]
 >> endobj
-3198 0 obj <<
-/D [3162 0 R /XYZ 490.915 124.334 null]
+3731 0 obj <<
+/D [3704 0 R /XYZ 71.731 388.777 null]
 >> endobj
-3161 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R >>
+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
-3201 0 obj <<
-/Length 2466      
+3734 0 obj <<
+/Length 1686      
 /Filter /FlateDecode
 >>
 stream
-xڝYm��6������
��z�|�p�]t�-��M�.�k���h��D:U�9�����	P�E��33�P�‡�bx�.���d�W7���O��	̌�����yx��{����ۦ��e������b�^�������㑜$�W�0񗉧��m#E��z�=|^KV�d����7߾���h�m����9��M']x���3%$
-���T �D�;�
-����kV8IxAj��0���TI����Q�Q|����a���=�Uh71Cњg5����*L�gk��*���yF�F車|X�[�=j��C�y�A�m�3��q�l-��GR�O�,���Z��Y��6R��L4��i.��rc��s�<2���d���d�b,|"5L.�Ob������
-�Z�F���v�9mR_V)�3�Ar�^��2�{s,��hD�h�}&��b/	g7_���+s������y�S�-���h�x�̭�;�H3^���$\��{!>4=/��]|䢰�d�&.��ӟUl�c����0��}a�����s��a6)�M��Y�3�HH�"3��L~��*���?����?����͛�;+��,��6��y���;�SoFf%��5��*)�C���`�9�a����zE^��;j�U����S+�^�#�zu��X cuچ�� �s>��S�@������fp؃f?0�L'���<0T\��N%j&���}�`*
-C�-H�%ԝ�]�)���~
�Φ�k���j�\�9�	?�Ѻ���F���Ϗ���X�J	�����ugց7�I�s&�{��4o`�VjZ���i������$�TPu�*���<����=�[��a�+�k�,�� %
�%OGO��|�A�BR�:ͼ ͔���7��/G0��(�e�A?B��ܪ�9�AA���v�BL�o~��_P���?��|��c�T�f���6Z�t�����g��;��M���~�̛,��Ҭct]�v�iR�*�/J�E�l�l��n^jnH��Ы.��ASBꥑ6��e���������h�B����a�O���ҧ�J���@>�.~�������2�� �R�?�0c�:�9׊��E�Dq�R��D�b��9I
�2.��^�%\+�6��P+�TY�R$���T�
-U�/>�w
-s��Z�D4J��Q9c�Y��A|���	����V��[��	=���}�5&*�>�����}5��������몡�Nxc�M��=�a��V�6
-@q�z	d��|����=�N�i_�U�,�vɸo�#�E/��bXƑ�EY
-�U��z����m�h�Zbe�IŚZ>��D�#1b/�k�c��RȺ-�<�v'l�r>��6HP��B]���*/I�t;]AC]�Yx��NŦ[���4��HwT��qT�\��]�m/
�tSx�Pm+�.��dI ���p�WXw��m؁K0��|o�d)-��
-��vc��:��[����ӿ�w�FrJA���[Y?k�;U��IM��^F�����f��k�V�O[���ńũŖ��u���>��<r#j9�a��%g5���	s���Q�O�j�2H���1���:���+�S�>�"��т�	��c�'Z��h�.�h������5k"]P
-ĵ�s|@Z�rzv2�\v-�uU�'Ty�U�D'9�9�_ׄٞE�,X�g��aZL��hM�g�Gz<��8E���e��O|���U�6ؤ���ёl�ڡ8�xq,���6�F	�k{�S-�(���mN���E^�Ylr�BjH�mGe�E���^#…�8Q>�
-0�J:ұ����E�{h��v���-��hXsF���I�j˲�6vƒs�f1�]G&���Ibp�C�ط��OQUX2�N�0�`׮����4�\U�6��!�a��U��H7֢�����͖�@���:\��DߩL4�"B��Q9�q������"��"�~�99������!��Â�w1O�.�ؾ��k�h+���j�a0�
-��M�E3�=�\��
�u��>��3��f�ݲ��O�
g�W�dZ��Oc>�$�.�pMኚ�m�N}yP<�[�ވ3����^�sp���b7�+Gʌs0�}��a������@��{j�j%2475����9�ks�4���i�Z;��u�>�����WԚնl�W�G�g�4��<P����_ĭ=��ef�C����lv�VY��v�-�?��wx�I����0��3�Sl`U�*�h,m�]l(�.҉pB#4�@�=
�)ie�+G���|�i/sA���G.�䰞�G*���)p�[�����8\�c���q&�ls�K읬�ޙ`���"7^����+�g�Wx�%gOU��o)t��Ә�n�Q
,ڜhΈ�>5;]�����e�ڗ�k��^|��S�tG�\�z�,���Wixg��lj�����8�`��O5ݔ�g�$�<?�������W��N�l}�(endstream
+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
-3200 0 obj <<
+3733 0 obj <<
 /Type /Page
-/Contents 3201 0 R
-/Resources 3199 0 R
+/Contents 3734 0 R
+/Resources 3732 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3060 0 R
->> endobj
-3202 0 obj <<
-/D [3200 0 R /XYZ 71.731 729.265 null]
->> endobj
-3203 0 obj <<
-/D [3200 0 R /XYZ 71.731 741.22 null]
->> endobj
-3204 0 obj <<
-/D [3200 0 R /XYZ 71.731 718.306 null]
->> endobj
-3205 0 obj <<
-/D [3200 0 R /XYZ 76.712 664.508 null]
->> endobj
-3206 0 obj <<
-/D [3200 0 R /XYZ 81.694 646.575 null]
->> endobj
-3207 0 obj <<
-/D [3200 0 R /XYZ 162.749 633.624 null]
->> endobj
-3208 0 obj <<
-/D [3200 0 R /XYZ 81.694 620.672 null]
->> endobj
-3209 0 obj <<
-/D [3200 0 R /XYZ 71.731 600.583 null]
->> endobj
-1193 0 obj <<
-/D [3200 0 R /XYZ 71.731 540.971 null]
->> endobj
-566 0 obj <<
-/D [3200 0 R /XYZ 402.85 495.717 null]
->> endobj
-3210 0 obj <<
-/D [3200 0 R /XYZ 71.731 491.887 null]
->> endobj
-3211 0 obj <<
-/D [3200 0 R /XYZ 118.555 449.696 null]
->> endobj
-3212 0 obj <<
-/D [3200 0 R /XYZ 71.731 395.999 null]
+/Parent 3680 0 R
 >> endobj
-3213 0 obj <<
-/D [3200 0 R /XYZ 71.731 345.309 null]
->> endobj
-3214 0 obj <<
-/D [3200 0 R /XYZ 386.239 319.506 null]
->> endobj
-3215 0 obj <<
-/D [3200 0 R /XYZ 107.706 306.555 null]
+3735 0 obj <<
+/D [3733 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3216 0 obj <<
-/D [3200 0 R /XYZ 438.434 306.555 null]
+3732 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-3217 0 obj <<
-/D [3200 0 R /XYZ 71.731 286.465 null]
+3738 0 obj <<
+/Length 1554      
+/Filter /FlateDecode
+>>
+stream
+xڅXێ�6}߯��e%`W�dkm��$�6[�C�E��D[�J�#Rq���PR7�~���̙3)Y��K�$Z/�n��>[��U�8�??^%����
ּ�]}��r��F���bwX��u�\��em�t�+�
+ޗ�hޥYd�9�o�5��͍w��k���H������-��v�|�]3C��{t��xӁ����"gD���83U�Y�r<݇i����&̲@F)؇��6^vV��x.���[�ĮdҜ��
�s�Y�%L28K��b�v��S��l1	�ّ[�J��E��� ����7I�-F�&y�8u��g����i�x��W�^�1�h 4�v�n�heu	���T���
+aI"\��N:�%�G��$twg��H6�#"�@Z�H����8N+\�8c��
+�	��ઔ���]9�Z���>?�>�<tP}��鬶:L�\#�,v�r��i�g�� -�)L`SX�LBQ�_ңI��~��cAe�՞�Z툧���Q}e簍ZI|�F���"U�B�<�kʕ�]٥Xq����0�<
+���;�H���+�|QV�'gZK���3ϔ�	�RP��V&�������G�(�C��4 r��J2�ٻ�lH���|�Њ�-��Bi�µ��"�:�'�߱=$̜�s�ql7S�����c})C.��ɽ�u��t��t�k�0������x�4�KŴ"j�s���Ol�zP�'U
+ ��U�	�)�:,(Ns�BgÒ���BW��T�}!�G�m�*��ۓ�iP�������u5u�whY_z
+_�׬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
+endobj
+3737 0 obj <<
+/Type /Page
+/Contents 3738 0 R
+/Resources 3736 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3680 0 R
 >> endobj
-3218 0 obj <<
-/D [3200 0 R /XYZ 399.678 262.719 null]
+3739 0 obj <<
+/D [3737 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3219 0 obj <<
-/D [3200 0 R /XYZ 71.731 237.648 null]
+3736 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-3220 0 obj <<
-/D [3200 0 R /XYZ 71.731 163.128 null]
+3742 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�(&/�؞��*qkP��,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
+endobj
+3741 0 obj <<
+/Type /Page
+/Contents 3742 0 R
+/Resources 3740 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3680 0 R
 >> endobj
-3221 0 obj <<
-/D [3200 0 R /XYZ 475.693 139.382 null]
+3743 0 obj <<
+/D [3741 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3199 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F23 1057 0 R /F44 1440 0 R >>
+3740 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3224 0 obj <<
-/Length 1975      
+3746 0 obj <<
+/Length 2060      
 /Filter /FlateDecode
 >>
 stream
-xڭX�ܶ��O!F:SxhI�m\4p�8N�i�� �3�ZǤ�ͦh����&�4�mc� �"yn߹1
-B���<"9�!ޒ8K���
-�|y}��e3������7�[��hp��0'4I��ƤH���e���N=��M�������z�֪�f��p�}��a�_���zu�)�4'ۂ>Ȝ۳�.�Ga��D�~�Jў����ov���;�k�u�,3w����Cy4�#�H��++���5��:KWO�ڝ�MUe'�����ʹ���-1Y����xjX��ٹ�8�,��p�
-5m��l�Q�ޛ؛]�q� g�v
Ws�%�a�
���l�AP����ܲ��e{8Y����JtZG��nh��
-`v�@^n;.��ݻ�6�_�:�#SsĮguǫ3EDZ{)ڙ��َ)n��yEp���d�N^Y8#/�$T����T)��V��c�p#y?H����4�	�]���&.{��9�vU�v�ô����� :
���il�0$[�vz���dd�9�gHbF��ze�4�3�2��k�T�7�`�GȻހX�?2$�ÿ�dxc���i��#
��͗��r��A�m��I��G����
Sj��+���	dzB�h�l���wm.l��W>��z�7������u�f��|�p��`�xx}��=�S�1�7�"�u}.�,a���A����Bg�TYw�3'��+�(D�6v>�~�kb�s;�A�a�w����k��>X�>���ZV����$!W��$<��_,pi�r	��euc������?%~��9��a��9�����������O<M��5������@~~��gC~~�χ|v=>�V��2���wa�x��Ȉi������������YFBJ�VjB��p��@T<I�@�n��G��,�J�#�p~g
-
���DZ6�bY7[CuiAeS�WB�d#���'S�vfh���Y�"�z1�(I�$�	�3�J�W��ԍ���?���
-7'P��|Dd���������O�&�TF����Ü��Wl7��HI6�Li%P��CÈд(
I�5���:�<�!�4��f�jPb�P�F�h�O|���0xl+�a*�����w�6��/+B����KNR�\��D��P/I�)�b�Y$�9���[��5�����5�`4�3L�w�܀E嗘ݨa����Wn!F"�����3���Ǜ7?��o^~�՛ׯ�Xj�5���Bn���0.S�0�b�0���]�[x9���q�f/ij
-�<Y��/��ęE�Mu�z(���JoIB�q23�8��xo-7��]_K��_H
-f&��D'�LZd@Z��t��:���jq��&@�vKX�0Ԫ?�APw���Q��z���ɼ٨�ee	!ʱ#x�*0Uɠ^��-�9)���cӇΑQlM'rN0ے.4<����R4C��� �5L���Z��ێg�����O
-�#ol�v��g.����~���[`�	H�P@󦛆�4ʮ�d�N
�h�.�
BaN�(E���iHb�
����_���/��g
x�M���C��oo�T�ۥ�B���㸺ˊr�kh������e8���&*P����}4x�Y�j�nX.�Z�#��}�'�"��ؠI�ځ�a f9	=�
��/Yϫ)�D���$���*� �XҎ��:�Qî��T��\Z�*��FA��$���A� -�		���tLwSķ�=L>{V��`b�FM\%���M�ݑ[�40��G]¨�C> �:
�b���7_p�.�)4����W�#�P���fu4KR��(*�?1�ZEN��$P8�͟�nkr\�8��(����K`��a�_+zH\V9��`�P�*��zu�=+r<�A��O'�l-�(O:��&�k�<�XyF�z�ZXnD�A��Ծ��\�h߭���,k���k�>Ǝ[o�i��7���}o�KR��'endstream
+xڝXݏ۸�_��K$���ӲR�E��zנ�E�-Ӗ��������w�3�e��} 9
�o:\�����b�܏6�h^�#�2��,ބ��Ë���x���&^=VI��q���8�i�z���-ũ���Ei�>�oݫ��U{$›���:U]����_�{ON��Ϸ�7�Y��(�����$��Q�Q�<��@�Y
4�+��ү?b�usֿ�"]NE��V��Щ�f;7
+���h�%�9�'�t���k*�E z;����d}ѽ�>�� �@���Ӻ�!Z���o}'hy���ǿ�I��ͅ��w�c�vh.�t����ǘ�����`��+�]T������`b��Q}�q�s�xV!�$��Z�'{0vnˢ�|!Վ&b��u�ݙ�'qd�m�e��#>I�Vϛ����H۝g
+o�50�&���y���0�J1
O��W3�d�J�S�c]��aVu�hU�y�I���U�GFPW��Srv�VZ�Z4Gw�x�&t����Ϫ�5���sd|���:p�/)�
+U!�w�9T��ĜdW۰��L&k�X�>��3��3gwG�3��=�R�֝�
AQK���S�P	��Y���S_�ƙ�֦)�:c�A#��C'�H'X���S�VW}u��M!�+J�7�uݗj8��O<��:c�0ʫ�� Hh[�x\�S�4�|u%�iK��ŞK\C�W�C#��T���X��󏪿�wmR�zƇ�H��Z]�.E�m�I[_Z9Q.���W����Q�~8��zm�*�Zb�*zy�
���h\�o1OZ�������
+L��q����9�pgw�:����eoRT�xf~�X��v�9U��� �l�|h{y�������S՗4{(��g�}tc8#�y�݂T�/G'P�7|t��q�G�|��jQ�'���~��Qj�`./NsS�p4<ɝ��h�Ӳ7g&[��8r���8Q��i�]�Y�'�Q��q,�7aZ�8sA���i͈��q�V���uੴ��!�
��5�G⧳�e3�����7�Z�oBM��϶�T�N��A����7UU<Duܑ�I�����M�������R'���"Ec�����NJ��9g?�D9�=;YuQ��^��O+,��l��K.���&ꮃ�Y�q���i���,�KՂ�Ɯ�����ʶ(H�F�F`�D&Pm!�H���������o�F�D��L��ig
+�c��@�c�hĄ�ܥr��x����O��(f�.<K����zp�`�e�S����"���ȉ�e��$���2�u±,C�h��h��Y���$��,����M���=D��o^�Ã"����8�d؈����s\b3�ت��l�m�Nj��(
+耜�TW���X�Γ��;\��'�V�a��{��m�I���3�����bUu=V�,d�u��P�=4m�N,��P�3��]�«�RxU�`�c�Fڕ�|���.�{8��hf��ɸ�{���ṆM�����1.����$Um$�d�]�����“��Aj5Q�řQ��a�ox��dJ���'8�X�	��)Y�.%%BC��\򓑺@�3<�
+��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
 endobj
-3223 0 obj <<
+3745 0 obj <<
 /Type /Page
-/Contents 3224 0 R
-/Resources 3222 0 R
+/Contents 3746 0 R
+/Resources 3744 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3242 0 R
+/Parent 3760 0 R
+/Annots [ 3749 0 R 3750 0 R 3751 0 R ]
 >> endobj
-3225 0 obj <<
-/D [3223 0 R /XYZ 71.731 729.265 null]
+3749 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
-1195 0 obj <<
-/D [3223 0 R /XYZ 71.731 741.22 null]
+3750 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
-3226 0 obj <<
-/D [3223 0 R /XYZ 71.731 718.306 null]
+3751 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
-3227 0 obj <<
-/D [3223 0 R /XYZ 71.731 536.224 null]
+3747 0 obj <<
+/D [3745 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3228 0 obj <<
-/D [3223 0 R /XYZ 71.731 513.31 null]
+1536 0 obj <<
+/D [3745 0 R /XYZ 71.731 484.184 null]
 >> endobj
-3229 0 obj <<
-/D [3223 0 R /XYZ 71.731 360.882 null]
+614 0 obj <<
+/D [3745 0 R /XYZ 449.605 438.93 null]
 >> endobj
-3230 0 obj <<
-/D [3223 0 R /XYZ 118.555 322.318 null]
+1537 0 obj <<
+/D [3745 0 R /XYZ 71.731 435.1 null]
 >> endobj
-3231 0 obj <<
-/D [3223 0 R /XYZ 199.108 313.853 null]
+618 0 obj <<
+/D [3745 0 R /XYZ 159.442 399.558 null]
 >> endobj
-3232 0 obj <<
-/D [3223 0 R /XYZ 71.731 268.728 null]
+3748 0 obj <<
+/D [3745 0 R /XYZ 71.731 392.205 null]
 >> endobj
-3233 0 obj <<
-/D [3223 0 R /XYZ 236.521 261.974 null]
+1538 0 obj <<
+/D [3745 0 R /XYZ 71.731 333.441 null]
 >> endobj
-3234 0 obj <<
-/D [3223 0 R /XYZ 400.196 261.974 null]
+622 0 obj <<
+/D [3745 0 R /XYZ 141.108 296.225 null]
 >> endobj
-1194 0 obj <<
-/D [3223 0 R /XYZ 71.731 241.884 null]
+3752 0 obj <<
+/D [3745 0 R /XYZ 71.731 288.873 null]
 >> endobj
-570 0 obj <<
-/D [3223 0 R /XYZ 369.417 198.787 null]
+3753 0 obj <<
+/D [3745 0 R /XYZ 71.731 268.962 null]
 >> endobj
-3235 0 obj <<
-/D [3223 0 R /XYZ 71.731 186.349 null]
+3754 0 obj <<
+/D [3745 0 R /XYZ 331.48 245.216 null]
 >> endobj
-3236 0 obj <<
-/D [3223 0 R /XYZ 412.808 177.227 null]
+3755 0 obj <<
+/D [3745 0 R /XYZ 86.396 219.314 null]
 >> endobj
-3237 0 obj <<
-/D [3223 0 R /XYZ 86.396 164.276 null]
+3756 0 obj <<
+/D [3745 0 R /XYZ 71.731 212.175 null]
 >> endobj
-3238 0 obj <<
-/D [3223 0 R /XYZ 71.731 157.138 null]
+3757 0 obj <<
+/D [3745 0 R /XYZ 225.881 188.429 null]
 >> endobj
-3239 0 obj <<
-/D [3223 0 R /XYZ 478.87 146.343 null]
+3758 0 obj <<
+/D [3745 0 R /XYZ 71.731 181.291 null]
 >> endobj
-3240 0 obj <<
-/D [3223 0 R /XYZ 117.658 133.392 null]
+3759 0 obj <<
+/D [3745 0 R /XYZ 373.626 157.545 null]
 >> endobj
-3241 0 obj <<
-/D [3223 0 R /XYZ 504.804 133.392 null]
+1539 0 obj <<
+/D [3745 0 R /XYZ 71.731 150.407 null]
 >> endobj
-3222 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F23 1057 0 R /F44 1440 0 R /F32 1071 0 R >>
+3744 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3245 0 obj <<
-/Length 2847      
+3763 0 obj <<
+/Length 1277      
 /Filter /FlateDecode
 >>
 stream
-xڅZ�s۸�_���Ҍ̈�����&��u|��K'n;�� 	�8���q������?��L������o�/��_�찅��ls��(�W���۫�ϸ�S��9�������^�ew7ۋ���n}ȶ���a��n�����?��kv6\-�7��b���?���Vhѝ��}����i�򿏿���1������w��9S��� �
JG�\�Z!Q�/\i!���5�}���9������v��'n��U�e���W���
�Č(YӼ���n�\Ô�f����I�\-���_����}25��R�-{��T+��eԗU�����)ٯ}�ފ'������7ٝ�M'A`��KحIN�X��ؚ7GX�R,7�Eo��wp���k��q-�O�ϐ�ĩ��J�����/F'=��6%�EJ3\�65�Kgެۋ��m�=�u
�Yg�*a�YTn��|��{���>�c�Ls��3
-O/��4��)p`�M��o������Q*��–�%=k�:@P�Q��cī�G���!կ_�.	���3Є�x���T��vqZ�Q��N|%��xn49/YO�Ѣj��;<	s���|�s��3�:J;7��ТK�9@��KU�e=,�kr��B5C}	����!��k^�p�����[����b�Z�7�^��J��@��{/�_���$�	��gJ�]�5dC��{�|�s�GnU��Q����3����k�2~�� ��Hٲ�2\,���g
�c��!���)��vH1��G����08J����C̍�i�N��B�4�.?�!�ir勆���?yG���2ǣ���>��y'i������^ڷg�]�[R�&��q�O���p�������H����yð�)��ȑ�*�����.�6\��X���Ks�����F:��!�y�)hB,v�aNz(i˞P%���!`L4>QN����Sל��]�\�D�	ti���_��;qOc(���
�<�R͌f�J�qQ��#��jpC3s|�j���;����+po�m˝d�l
-��T��

��l�����6Y�3��)	M
B��}�b�3sZ�*!d�)����d5���k�t�����Œ-�x�E�?�N�S�I��f����
-nX��X�y���"$�`��r��Ũiَ���ݢ�?�����p�R��.|�q�v`I������s�-�õ8kW	x`��oi��[�"vĜ�,�pD�XZ�yp�n�ځ�b���4�l
-•�w^���{��b�ٌڴ��u y0��"
-���y	�ʟyӼv��׷��(�ML*E*�;b�ϵ(�$0���;��J���r+)���7�F#�6��L��Kȴ�6�n��Ͻ�D{�͝�Q2��h1š��R�"���
-q4a��|�U)f8M�B�֩��p<�`�`	�qH�J��jL�6����*D�H>G1V�,P9�����&�&>!(򲘣����_�db��SM�zv�Њ��
-��A����dU�B
-��ш�O�䂃G������i��!,�2� ��;2qyv�u��������;��`̲�
P:=L�?se�5<���_��	"�D��t�s8݋|�H4E����%D��W�|���ʐR�.��8>��@�B�PRb���y��h$ᛪ[]�egR7��Zs�]�;� &�]�"�]aZZ��P��>%yAyx�]Θ�NT���ͧw�kju��B���Vǚ7���A�ح����k����J]2���I�&Z�B����>��k��
�:���
-�V�������6��'���~�s�
-��q�O���t'��<l���HWE�cQg']&a>BVZ���rlnU�F_�k7��G5�va��?|pVlj��0<gu���Ct����4��3 B�ab�{�JBL��=��d;�D0��{,�hC�]
�K?e �Â�M�!,�EoD��o%�+l���&]�Ir)2�$d���<�c3|Mx@�?�9�M�Y:��qw��c#�(#MP$�@����W�*!����k��я��9K �PP��<.o׋��@D�n��q�C������*�״���a�p���+.1N��G
-e,�$�m�m��j�o�&X��%���4�1�Oձjq��jX����a����pCƅ���N�.R�<��>n���y�
-���,.�ş�(�����e'�I�g��^ )�H!N��M���{pc-g��߽�>5�-:�Y2zE����~��,�n@o��~�=v��vY��}��u5"T��a�ʲ,�]F�����C���"?�bz��aJ�AF#Җ�H�M8/�Pg� �u�ƌ���`l-�Qe?�RDG���C��e"�,BK��8�f�֏5E���pʱ���w�L�y��6li�Ҷf��I�\p����J!ab�D���:��F��Y��>��`1��KX
-���dӷݤ�F�WP����m����tIo�
-{���$�	*�I���.��n����.�6��(�~|Qtϴ(����:�7����8�5�$��-93��,-rͰ����sP�p��NL�#�{ٱf�7��
���CGM}��i��<(�4pQ+LT��v�n�4���-0h����ݘ��N�3iSE�p���W<�QoF[TµlBec@�����6̍}�l��A}��KZ-ٵÜP�Y�ٹ3]��P[�ȟ�eR9�Kٶ�mr!��1\�����f��.^r%��Zs�˛7��6#d�2��M{�|�M��lư�@���Ԅ�9�x^l��T�|��+M���
j^>���:DHV��|�G�����и�`��ӂ�mv����8e�������*6���k��V�J���endstream
+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
 endobj
-3244 0 obj <<
+3762 0 obj <<
 /Type /Page
-/Contents 3245 0 R
-/Resources 3243 0 R
+/Contents 3763 0 R
+/Resources 3761 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3242 0 R
->> endobj
-3246 0 obj <<
-/D [3244 0 R /XYZ 71.731 729.265 null]
+/Parent 3760 0 R
 >> endobj
-3247 0 obj <<
-/D [3244 0 R /XYZ 71.731 741.22 null]
->> endobj
-3248 0 obj <<
-/D [3244 0 R /XYZ 71.731 718.306 null]
->> endobj
-3249 0 obj <<
-/D [3244 0 R /XYZ 71.731 718.306 null]
->> endobj
-574 0 obj <<
-/D [3244 0 R /XYZ 421.51 645.157 null]
->> endobj
-3250 0 obj <<
-/D [3244 0 R /XYZ 71.731 632.719 null]
->> endobj
-3251 0 obj <<
-/D [3244 0 R /XYZ 71.731 579.662 null]
+3764 0 obj <<
+/D [3762 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3252 0 obj <<
-/D [3244 0 R /XYZ 71.731 507.867 null]
+626 0 obj <<
+/D [3762 0 R /XYZ 204.675 707.841 null]
 >> endobj
-3253 0 obj <<
-/D [3244 0 R /XYZ 71.731 476.982 null]
+3765 0 obj <<
+/D [3762 0 R /XYZ 71.731 700.488 null]
 >> endobj
-3254 0 obj <<
-/D [3244 0 R /XYZ 71.731 409.301 null]
+3766 0 obj <<
+/D [3762 0 R /XYZ 71.731 674.765 null]
 >> endobj
-3255 0 obj <<
-/D [3244 0 R /XYZ 71.731 377.077 null]
+3767 0 obj <<
+/D [3762 0 R /XYZ 249.701 674.765 null]
 >> endobj
-3256 0 obj <<
-/D [3244 0 R /XYZ 71.731 306.621 null]
+3768 0 obj <<
+/D [3762 0 R /XYZ 273.821 661.813 null]
 >> endobj
-3257 0 obj <<
-/D [3244 0 R /XYZ 71.731 249.834 null]
+3769 0 obj <<
+/D [3762 0 R /XYZ 71.731 654.675 null]
 >> endobj
-3258 0 obj <<
-/D [3244 0 R /XYZ 71.731 223.931 null]
+1540 0 obj <<
+/D [3762 0 R /XYZ 71.731 597.888 null]
 >> endobj
-578 0 obj <<
-/D [3244 0 R /XYZ 284.626 186.716 null]
+630 0 obj <<
+/D [3762 0 R /XYZ 189.239 560.673 null]
 >> endobj
-3259 0 obj <<
-/D [3244 0 R /XYZ 71.731 176.351 null]
+3770 0 obj <<
+/D [3762 0 R /XYZ 71.731 553.32 null]
 >> endobj
-3260 0 obj <<
-/D [3244 0 R /XYZ 445.066 153.64 null]
+3771 0 obj <<
+/D [3762 0 R /XYZ 350.294 514.645 null]
 >> endobj
-3261 0 obj <<
-/D [3244 0 R /XYZ 503.263 153.64 null]
+1541 0 obj <<
+/D [3762 0 R /XYZ 71.731 507.507 null]
 >> endobj
-3262 0 obj <<
-/D [3244 0 R /XYZ 261.538 140.688 null]
+634 0 obj <<
+/D [3762 0 R /XYZ 261.414 470.292 null]
 >> endobj
-3263 0 obj <<
-/D [3244 0 R /XYZ 71.731 120.599 null]
+3772 0 obj <<
+/D [3762 0 R /XYZ 71.731 462.939 null]
 >> endobj
-3264 0 obj <<
-/D [3244 0 R /XYZ 71.731 120.599 null]
+3773 0 obj <<
+/D [3762 0 R /XYZ 71.731 437.216 null]
 >> endobj
-3265 0 obj <<
-/D [3244 0 R /XYZ 71.731 115.618 null]
+3774 0 obj <<
+/D [3762 0 R /XYZ 365.641 437.216 null]
 >> endobj
-3243 0 obj <<
-/Font << /F33 1160 0 R /F35 1229 0 R /F27 1064 0 R /F23 1057 0 R >>
+3761 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3268 0 obj <<
-/Length 1420      
+3777 0 obj <<
+/Length 2396      
 /Filter /FlateDecode
 >>
 stream
-xڥXێ�6}߯PӇHH���S�E�v�-� ~)�"�%�V�Z�E>�C��e��@wt�p���-������$�Y"GN����V~��FbaD�w���� p�hΪpB?AA:I@Pg���/�V��[��w#���{!yS������Ϳv����?�_�~^��� A�4�
-.�RDR�,����w`�_]�t�i ��#cE~���%��Й豶��Ѷ�r��L����R��:Bo[�I� ��=�Mds*�
-�F���DN
-�c��wB�R:A�����un�Q%��ŗZ�Dx"J���,zo���q.��ԗE�aj�CH���e%�qw��G�v�,y/���8@��/ޙU���B%�k�Ӥ�2D��Ģ�
��y{P|�������𧇕�^o����JI=�O�\���٣���шA-X�w��맜{$rwJ]�M
-�q�Q�[`1�Y2���B��j�ü��LV�B��F��J�+�TiQ��o�'�ٔ3I��貆�oc�N��"����3��ۇV��$t�zQ�~���ۚ?�+&�:h��-�����R̋O,�C�_�~m\0�
����U��$=�a-�h]Ɋ�n����>�f��.+�fG^���<���I��R�����n�ű���Co�����mOk����M�����RA��
-�܆}{!Y8��'\e-Z&(���Ƌ�K�hE�G�/��u��ٞ�U���wlG�ouMꇵ�5	6���x�hf	���5�&�c/��w�UɁ28%�c�}+g���
-�
-S��27�C�j�Rm���Ѧ-���\۝�'8D�O�A_�&LQmN}�1$��E�1P؞:��qg�����Q��FԂ$1
-|���4�z뫍�w~�`�
�CF��/
-�x��a���I:E
O?�Q���Lת j`��?�R��n����LaibS��:�F��"Ķc4%cR�@�vN�z�/=���$7�B��n��R���3�cx�����<fLb�� DI2Nd��n��:���S^��|r�
�ojп�U�X`]��ӓ`l֏CCaw~jU�r�E�I9��bu����F<=��qT�䡳~��L�-����'5��$�';��0�젢V�e8um����#�
-�;�������.�E� �U�#W&��^�K]אsE�p��hg�L����f� 4$�~��NOM's��&��pl��J��[,�20xk@����l����fa74�� ��E7� �܈�#���譕�	irFX���ښ�fP}����&g";����M�óe�{�VQA��7l|���p$�ʖ�U�VrRa7PH���g��u�~(���ĥ���֎ʬ�"v�U�Ϊ�C��'W�ADN>AD$Ep�1èO/}Q8��dO?endstream
+xڝko�����ྜ\؊����(���m���r(�nQ0m+��(�6��o^�%YN�"@4r΋tx�_x��~�'���:�ɏ=�||ʊd���4xfr�ƙ���7�����~��(�����i�K	b?��7O�?���:��Y��l�}��l�z���������O"na�Ga���A���
+�C�6�(�L��mij!�n��ve�)*�O��.VI{V3
rS���Se-�e�3�Q�W��]���F�~�^w��O�ha%+x!��j�:��U��.E1��GUY�9������ߦ!��s���=���V��u�3��)�7����������v(����t(T�o���Q���R/2]�B���s,��i�Y��N(����"J�+���S"	�%�֦��E�NDD��KhT֫�)"2�َ�B���7��Y#T�\[���za�A��X+�(��,G;�ڮ��\��Ni)$u�@րM�@2x�����5]�ӎV
��J��f9s��%J��I!� �,�G<,Ⱥ��+[\���!|�/<�lO.Pa��Ⱥ�Hۼ)����i�G;�	��̥V�P���<7�x#x0ւ-;ij��
+uC4:'b!:�,���v£�h��fs�8!��S����{8��f���QDz.mۨ�2́����_a�˳̀ ���1	C0�F�RnB4�`~��1π��a�)xH6"��Ă��M"�a�s�x�F�c�ZMI1L�{��r*�|��~z��	��2o2t�U[�n�
����W�l�gV���x�~ɒ�`
����Mؠ�ᅬ��_��9Y�o/[H^�=aK��*s�Є���Q��1u�T]YS^�ƃA����_ KQ���%SC|S],�B���Jh��!��AM� �yB�/}Y�So9�Q���[���I�{v�N�����,8�RF�^��
�����x��w�?�Z����q^s�?d	�]��KYo��+�'lQ�߰����!� ��`���%#8�@y�`��9��\����8���&�L2�q1��M�
�\s vY
+$R�%t
C��;��eP���c�kݐ���u(����!
+K�h�m�Xk�� �5�R<>)k�$>��g�5�I�+EX|̑�
+<V�e�,粖9����mr���cE"�Tv��R�M#.��c�q���m�'��p�暫�%�a|��gd���ɞ���8v-!��͞5�?˜�"��쌡���j'�Ϧm͑a���ɓ��1S��x�=7ؤQ����H���G�tT<���
+�׼��/��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 w1��Ŵ��=�/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
 endobj
-3267 0 obj <<
+3776 0 obj <<
 /Type /Page
-/Contents 3268 0 R
-/Resources 3266 0 R
+/Contents 3777 0 R
+/Resources 3775 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3242 0 R
+/Parent 3760 0 R
 >> endobj
-3269 0 obj <<
-/D [3267 0 R /XYZ 71.731 729.265 null]
->> endobj
-3270 0 obj <<
-/D [3267 0 R /XYZ 71.731 741.22 null]
->> endobj
-3271 0 obj <<
-/D [3267 0 R /XYZ 89.664 708.344 null]
->> endobj
-3272 0 obj <<
-/D [3267 0 R /XYZ 119.054 690.411 null]
->> endobj
-3273 0 obj <<
-/D [3267 0 R /XYZ 147.008 690.411 null]
+3778 0 obj <<
+/D [3776 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3274 0 obj <<
-/D [3267 0 R /XYZ 71.731 683.407 null]
+1640 0 obj <<
+/D [3776 0 R /XYZ 71.731 718.306 null]
 >> endobj
-3275 0 obj <<
-/D [3267 0 R /XYZ 284.172 672.478 null]
+638 0 obj <<
+/D [3776 0 R /XYZ 320.829 703.236 null]
 >> endobj
-3276 0 obj <<
-/D [3267 0 R /XYZ 401.68 646.575 null]
+1641 0 obj <<
+/D [3776 0 R /XYZ 71.731 692.184 null]
 >> endobj
-3277 0 obj <<
-/D [3267 0 R /XYZ 76.712 615.691 null]
+642 0 obj <<
+/D [3776 0 R /XYZ 205.304 651.159 null]
 >> endobj
-3278 0 obj <<
-/D [3267 0 R /XYZ 89.664 597.758 null]
+3779 0 obj <<
+/D [3776 0 R /XYZ 71.731 642.336 null]
 >> endobj
-3279 0 obj <<
-/D [3267 0 R /XYZ 71.731 590.62 null]
+3780 0 obj <<
+/D [3776 0 R /XYZ 506.431 629.6 null]
 >> endobj
-3280 0 obj <<
-/D [3267 0 R /XYZ 71.731 590.62 null]
+1642 0 obj <<
+/D [3776 0 R /XYZ 71.731 583.608 null]
 >> endobj
-3281 0 obj <<
-/D [3267 0 R /XYZ 71.731 573.437 null]
+646 0 obj <<
+/D [3776 0 R /XYZ 317.599 540.51 null]
 >> endobj
-3282 0 obj <<
-/D [3267 0 R /XYZ 159.123 561.893 null]
+3781 0 obj <<
+/D [3776 0 R /XYZ 71.731 528.072 null]
 >> endobj
-3283 0 obj <<
-/D [3267 0 R /XYZ 304.466 561.893 null]
+3782 0 obj <<
+/D [3776 0 R /XYZ 71.731 493.048 null]
 >> endobj
-3284 0 obj <<
-/D [3267 0 R /XYZ 71.731 554.755 null]
+3783 0 obj <<
+/D [3776 0 R /XYZ 71.731 490.891 null]
 >> endobj
-3285 0 obj <<
-/D [3267 0 R /XYZ 71.731 554.755 null]
+3784 0 obj <<
+/D [3776 0 R /XYZ 71.731 485.91 null]
 >> endobj
-3286 0 obj <<
-/D [3267 0 R /XYZ 119.054 543.96 null]
+3785 0 obj <<
+/D [3776 0 R /XYZ 89.664 465.153 null]
 >> endobj
-3287 0 obj <<
-/D [3267 0 R /XYZ 76.712 508.095 null]
+3786 0 obj <<
+/D [3776 0 R /XYZ 128.486 465.153 null]
 >> endobj
-582 0 obj <<
-/D [3267 0 R /XYZ 257.368 473.624 null]
+3787 0 obj <<
+/D [3776 0 R /XYZ 171.417 452.201 null]
 >> endobj
-3288 0 obj <<
-/D [3267 0 R /XYZ 71.731 464.986 null]
+3788 0 obj <<
+/D [3776 0 R /XYZ 71.731 450.045 null]
 >> endobj
-3289 0 obj <<
-/D [3267 0 R /XYZ 71.731 447.557 null]
+3789 0 obj <<
+/D [3776 0 R /XYZ 89.664 434.269 null]
 >> endobj
-3290 0 obj <<
-/D [3267 0 R /XYZ 71.731 447.557 null]
+3790 0 obj <<
+/D [3776 0 R /XYZ 71.731 406.209 null]
 >> endobj
-3291 0 obj <<
-/D [3267 0 R /XYZ 106.501 436.762 null]
+3791 0 obj <<
+/D [3776 0 R /XYZ 89.664 390.433 null]
 >> endobj
-3292 0 obj <<
-/D [3267 0 R /XYZ 71.731 429.758 null]
+3792 0 obj <<
+/D [3776 0 R /XYZ 130.164 390.433 null]
 >> endobj
-3293 0 obj <<
-/D [3267 0 R /XYZ 234.877 418.829 null]
+3793 0 obj <<
+/D [3776 0 R /XYZ 269.817 377.482 null]
 >> endobj
-3294 0 obj <<
-/D [3267 0 R /XYZ 71.731 411.691 null]
+3794 0 obj <<
+/D [3776 0 R /XYZ 71.731 370.343 null]
 >> endobj
-3295 0 obj <<
-/D [3267 0 R /XYZ 71.731 388.777 null]
+1643 0 obj <<
+/D [3776 0 R /XYZ 71.731 339.459 null]
 >> endobj
-3266 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F32 1071 0 R /F51 1687 0 R /F23 1057 0 R >>
-/ProcSet [ /PDF /Text ]
+650 0 obj <<
+/D [3776 0 R /XYZ 252.009 296.362 null]
 >> endobj
-3298 0 obj <<
-/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
-3297 0 obj <<
-/Type /Page
-/Contents 3298 0 R
-/Resources 3296 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3242 0 R
+3795 0 obj <<
+/D [3776 0 R /XYZ 71.731 283.924 null]
 >> endobj
-3299 0 obj <<
-/D [3297 0 R /XYZ 71.731 729.265 null]
+3796 0 obj <<
+/D [3776 0 R /XYZ 71.731 261.851 null]
 >> endobj
-3296 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R >>
-/ProcSet [ /PDF /Text ]
+3797 0 obj <<
+/D [3776 0 R /XYZ 71.731 233.791 null]
 >> endobj
-3302 0 obj <<
-/Length 1554      
-/Filter /FlateDecode
->>
-stream
-xڅXێ�6}߯��e%`W�dkm��$�6[�C�E��D[�J�#Rq���PR7�~���̙3)Y��K�$Z/�n��>[��U�8�??^%����
ּ�]}��r��F���bwX��u�\��em�t�+�
-ޗ�hޥYd�9�o�5��͍w��k���H������-��v�|�]3C��{t��xӁ����"gD���83U�Y�r<݇i����&̲@F)؇��6^vV��x.���[�ĮdҜ��
�s�Y�%L28K��b�v��S��l1	�ّ[�J��E��� ����7I�-F�&y�8u��g����i�x��W�^�1�h 4�v�n�heu	���T���
-aI"\��N:�%�G��$twg��H6�#"�@Z�H����8N+\�8c��
-�	��ઔ���]9�Z���>?�>�<tP}��鬶:L�\#�,v�r��i�g�� -�)L`SX�LBQ�_ңI��~��cAe�՞�Z툧���Q}e簍ZI|�F���"U�B�<�kʕ�]٥Xq����0�<
-���;�H���+�|QV�'gZK���3ϔ�	�RP��V&�������G�(�C��4 r��J2�ٻ�lH���|�Њ�-��Bi�µ��"�:�'�߱=$̜�s�ql7S�����c})C.��ɽ�u��t��t�k�0������x�4�KŴ"j�s���Ol�zP�'U
- ��U�	�)�:,(Ns�BgÒ���BW��T�}!�G�m�*��ۓ�iP�������u5u�whY_z
-_�׬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?�9in�?Z��endstream
-endobj
-3301 0 obj <<
-/Type /Page
-/Contents 3302 0 R
-/Resources 3300 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3242 0 R
+3798 0 obj <<
+/D [3776 0 R /XYZ 71.731 228.81 null]
 >> endobj
-3303 0 obj <<
-/D [3301 0 R /XYZ 71.731 729.265 null]
+3799 0 obj <<
+/D [3776 0 R /XYZ 89.664 208.053 null]
 >> endobj
-3300 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R >>
-/ProcSet [ /PDF /Text ]
+3800 0 obj <<
+/D [3776 0 R /XYZ 89.664 208.053 null]
 >> endobj
-3306 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={�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���Ѱ�;��joT3��㫴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�����Byp��t���_XM&�endstream
-endobj
-3305 0 obj <<
-/Type /Page
-/Contents 3306 0 R
-/Resources 3304 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3242 0 R
+3801 0 obj <<
+/D [3776 0 R /XYZ 89.664 177.169 null]
 >> endobj
-3307 0 obj <<
-/D [3305 0 R /XYZ 71.731 729.265 null]
+3802 0 obj <<
+/D [3776 0 R /XYZ 71.731 177.169 null]
 >> endobj
-3304 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R >>
+3775 0 obj <<
+/Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3310 0 obj <<
-/Length 1921      
+3806 0 obj <<
+/Length 3459      
 /Filter /FlateDecode
 >>
 stream
-xڝXێ�F}�Wh��$ R����Y�^�p�I�X1F�j��Cv3�'��~{�od����<�[u=u���*��x���]
-��&�|U4ϢU	O�>�͉�	�3���6ߥ�����xYe�.L�l�K�p�'���W�u�Z�;?H���C}}�s��	-����?�H]#����go���<݅�}��q��ºd7Zg����Hi܏�Or�A�@.�ze��93}�/�Y��Q�~�\�o����\Q���r��ұFߝ�$�����e`r<���q�յ����	{�Y������)��"���s��D��q��.:�?޽|��g?���|���Ϳ��1�7���~�{\���$<䱲I;�J��ѩ����<�3V����3f�4-;L\#�y��G).61:�� �wW}ۢ��q�-e���a
�Y�G��:8�6�`��zh�k<00Ӯ�15�P�f�u^� \�u�yQ��e'���.�g��ؽ��&�Sx�3�6�֚�\O��`{�T

�Yg�0��eF׃��:#��twD����31-�j[Vg<�A�b
��ه
-w*]F��wi}�,ϢB�������jێIZ�����<h}�+0ۨ�񋽡��An�x��E-j
��
-L9dt�R�
-���
`��E����;�����P����  ��gX.�c
VH��d8mi���c��SA�

C݈��ʶ��������\d�������b�jn��B�\�/>1����X�m��klR�l�Z(x�������^�I�	F��nS3!P��_��H�wU厮�6���)+�(
-:q��wa��U�}t�í4j���Q����Nyç"*}w�H'����S�*+,�����j>�Π�o�����dP�刘�8s�l�Q'���95�S�}�)8A5Q�p`�QT�wg�$݆�8]��C��DukƱg��bƙR����_3Z�]HՖ��憎p�}�r�����a&�Ӧ�3O��E�cSS
6qC�6�B�KBX���R�$��Xh���Q��,��MQ�!A��n�,:��zA���.
-�\�	�F�ڑ�qFI��4��(��Jl��:��z�7
-�H*��0���F���+���iM�A�yBt�9փK�4�2"NK�S��e�&��i�:�u�l#��2�����}fY�J�4�o��	�3KLM��`�43θ;���f��pg3j4.��,�8${v{6Q�
-)�3nt��ެ�d�wI�J�(�w���m�Ρeq��YR\`�8@�e�]>�lb��q��,i,3H��m��-jPQ�jښ�
-�A`�=[��~,�!��ç7
���-d�O���eƉ�?� �I[Y]O֮/�|:�"����=Y̙��n3YWG+q0�9�)�7�8���NJq�Q�>���#�E0ȭ�fX�F��q�b����҇�M��a+t:ޟ���t���$鯠A��}����r6>J���zqg�rC(��!E�w�v`�ۮ�w
-��lr�n���P1���s��O�:��� ��ث��h���Pchؙ\�7�9��8�W{�bU���m'��GN�������C����Ȭ�D]jA���)��Q�Z�qh�4d��cԺ�I4��7�L}k)Fn
-�C��G��Z���i��2��s�
М
-U���e��/����HM�u�N�վ����c�;2;n#��d\���fS�����Ӊ�%�!�c���T]n�4��yI����3��%̴N_�=O��X�Ӏ،~(�i�Bw��2�z5�!خ�'��V���c;��{?�r�,{��?�
oډ'��X�w;	��ٹtj;��DH���x%r��!�	r;�yӘ��}�{�m�xd�25O`CJ��m�ػѥ�?�ձendstream
+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��
+Ş3w՘0C��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
 endobj
-3309 0 obj <<
+3805 0 obj <<
 /Type /Page
-/Contents 3310 0 R
-/Resources 3308 0 R
+/Contents 3806 0 R
+/Resources 3804 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3327 0 R
-/Annots [ 3314 0 R 3315 0 R 3316 0 R ]
->> endobj
-3314 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [236.913 377.276 398.243 386.188]
-/Subtype /Link
-/A << /S /GoTo /D (cvs) >>
+/Parent 3760 0 R
+/Annots [ 3860 0 R ]
 >> endobj
-3315 0 obj <<
+3860 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [485.445 351.373 537.983 360.285]
+/Rect [447.961 136.764 491.62 145.675]
 /Subtype /Link
-/A << /S /GoTo /D (tinderbox) >>
+/A << /S /GoTo /D (lifecycle-image) >>
 >> endobj
-3316 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) >>
+3807 0 obj <<
+/D [3805 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3311 0 obj <<
-/D [3309 0 R /XYZ 71.731 729.265 null]
+1645 0 obj <<
+/D [3805 0 R /XYZ 71.731 741.22 null]
 >> endobj
-1196 0 obj <<
-/D [3309 0 R /XYZ 71.731 484.184 null]
+3808 0 obj <<
+/D [3805 0 R /XYZ 71.731 683.941 null]
 >> endobj
-586 0 obj <<
-/D [3309 0 R /XYZ 449.605 438.93 null]
+3809 0 obj <<
+/D [3805 0 R /XYZ 89.664 666.008 null]
 >> endobj
-3312 0 obj <<
-/D [3309 0 R /XYZ 71.731 435.1 null]
+3810 0 obj <<
+/D [3805 0 R /XYZ 89.664 666.008 null]
 >> endobj
-590 0 obj <<
-/D [3309 0 R /XYZ 159.442 399.558 null]
+3811 0 obj <<
+/D [3805 0 R /XYZ 71.731 637.948 null]
 >> endobj
-3313 0 obj <<
-/D [3309 0 R /XYZ 71.731 392.205 null]
+3812 0 obj <<
+/D [3805 0 R /XYZ 89.664 622.172 null]
 >> endobj
-3317 0 obj <<
-/D [3309 0 R /XYZ 71.731 333.441 null]
+3813 0 obj <<
+/D [3805 0 R /XYZ 89.664 622.172 null]
 >> endobj
-594 0 obj <<
-/D [3309 0 R /XYZ 141.108 296.225 null]
+3814 0 obj <<
+/D [3805 0 R /XYZ 71.731 620.015 null]
 >> endobj
-3318 0 obj <<
-/D [3309 0 R /XYZ 71.731 288.873 null]
+3815 0 obj <<
+/D [3805 0 R /XYZ 89.664 604.239 null]
 >> endobj
-3319 0 obj <<
-/D [3309 0 R /XYZ 71.731 268.962 null]
+3816 0 obj <<
+/D [3805 0 R /XYZ 89.664 604.239 null]
 >> endobj
-3320 0 obj <<
-/D [3309 0 R /XYZ 315.106 245.216 null]
+3817 0 obj <<
+/D [3805 0 R /XYZ 71.731 602.083 null]
 >> endobj
-3321 0 obj <<
-/D [3309 0 R /XYZ 86.396 219.314 null]
+3818 0 obj <<
+/D [3805 0 R /XYZ 89.664 586.307 null]
 >> endobj
-3322 0 obj <<
-/D [3309 0 R /XYZ 71.731 212.175 null]
+3819 0 obj <<
+/D [3805 0 R /XYZ 89.664 586.307 null]
 >> endobj
-3323 0 obj <<
-/D [3309 0 R /XYZ 225.881 188.429 null]
+3820 0 obj <<
+/D [3805 0 R /XYZ 71.731 584.15 null]
 >> endobj
-3324 0 obj <<
-/D [3309 0 R /XYZ 71.731 181.291 null]
+3821 0 obj <<
+/D [3805 0 R /XYZ 89.664 568.374 null]
 >> endobj
-3325 0 obj <<
-/D [3309 0 R /XYZ 373.626 157.545 null]
+3822 0 obj <<
+/D [3805 0 R /XYZ 89.664 568.374 null]
 >> endobj
-3326 0 obj <<
-/D [3309 0 R /XYZ 71.731 150.407 null]
+3823 0 obj <<
+/D [3805 0 R /XYZ 71.731 566.217 null]
 >> endobj
-3308 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F35 1229 0 R >>
-/ProcSet [ /PDF /Text ]
+3824 0 obj <<
+/D [3805 0 R /XYZ 89.664 550.441 null]
 >> endobj
-3331 0 obj <<
-/Length 1122      
-/Filter /FlateDecode
->>
-stream
-xڍV�n�6}�W�$1u�e�^��Q�����h�]�Hj���w(^,YNR�$��9�̐i��_lR����P�.��{H�~��!�3Vv�j2���������yp8E�AyQ�<C�2�_���{ED���$,�y��xG%e�x��4�m����?�|��|�v��]pn�]�i����Pn�tDW�5�5��6|��$$�eIȅ�_�����F�m��&�*KP���FFi
-��N��y��$�ͻ:��������>q`@\������m�"���73������)�e��(� ʤ/jE�%�;*��Y'��H3�+
!g���q|�\�u"�5������PŻ��|L"7�ͮVݯY��xYVX\�<��2���̓�������m�Q9�=�Ԟ�z������ݜ���~���ߗ�Ӝ�����
-ދ]���d���n�����ע�nhx���Ö?��Q�WtV]��t��ܹA��=}��;V�Pu�f�p�O�#�ܬ��L�:X�T����~��'�y-����\̀ �����&t��`��	�#�:�HکG�2@_G��Pt�ج	�l�G�ա���B"���	#���6g��4!�/I����:�*7@�k"�)�u�);�<eRA
�����ӡ&�B䆹�P|V26��U�o�[s�-�t�T7;y[4P�����J����P�j�bL�=9�Bw~n	�^I&�mS�:�� {H� ���k"�z���A�.ba9d{���T|�������/�h���������Da'v�������$t�t��X�(�m��R����R�	%��oJaA��鄠5jɹ����;v|�ͼ��m8��y	8>z.%=:C�����l�>Θ3��?��_}7
c�~���{ ~��=�-�=g�Lh���/��1;��Z4֡k�Z��Tn��9eh�=	7GXEB�sG�B���jn
-2�~���ٺ��>�E@����5�}e��ehW����v,eXme����K�.g꺴?��z�;�N,�rݘ||e���A{H�a3r���4�y6���z^{S��o��
j6��a�"�<��騩%�zǃ�w
-(G�
[��6��m�E�t���:eqi/�-J2�����ߺ�/#�|�O�endstream
-endobj
-3330 0 obj <<
-/Type /Page
-/Contents 3331 0 R
-/Resources 3329 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3327 0 R
+3825 0 obj <<
+/D [3805 0 R /XYZ 89.664 550.441 null]
 >> endobj
-3332 0 obj <<
-/D [3330 0 R /XYZ 71.731 729.265 null]
+3826 0 obj <<
+/D [3805 0 R /XYZ 71.731 535.333 null]
 >> endobj
-598 0 obj <<
-/D [3330 0 R /XYZ 204.675 707.841 null]
+3827 0 obj <<
+/D [3805 0 R /XYZ 89.664 519.557 null]
 >> endobj
-3333 0 obj <<
-/D [3330 0 R /XYZ 71.731 700.488 null]
+3828 0 obj <<
+/D [3805 0 R /XYZ 89.664 519.557 null]
 >> endobj
-3334 0 obj <<
-/D [3330 0 R /XYZ 71.731 674.765 null]
+3829 0 obj <<
+/D [3805 0 R /XYZ 71.731 517.4 null]
 >> endobj
-3335 0 obj <<
-/D [3330 0 R /XYZ 247.56 674.765 null]
+3830 0 obj <<
+/D [3805 0 R /XYZ 89.664 501.624 null]
 >> endobj
-3336 0 obj <<
-/D [3330 0 R /XYZ 273.821 661.813 null]
+3831 0 obj <<
+/D [3805 0 R /XYZ 89.664 501.624 null]
 >> endobj
-3337 0 obj <<
-/D [3330 0 R /XYZ 71.731 654.675 null]
+3832 0 obj <<
+/D [3805 0 R /XYZ 71.731 486.516 null]
 >> endobj
-3338 0 obj <<
-/D [3330 0 R /XYZ 71.731 597.888 null]
+3833 0 obj <<
+/D [3805 0 R /XYZ 89.664 470.74 null]
 >> endobj
-602 0 obj <<
-/D [3330 0 R /XYZ 189.239 560.673 null]
+3834 0 obj <<
+/D [3805 0 R /XYZ 89.664 470.74 null]
 >> endobj
-3339 0 obj <<
-/D [3330 0 R /XYZ 71.731 553.32 null]
+3835 0 obj <<
+/D [3805 0 R /XYZ 71.731 455.632 null]
 >> endobj
-3340 0 obj <<
-/D [3330 0 R /XYZ 373.815 514.645 null]
+3836 0 obj <<
+/D [3805 0 R /XYZ 89.664 439.856 null]
 >> endobj
-3328 0 obj <<
-/D [3330 0 R /XYZ 71.731 507.507 null]
+3837 0 obj <<
+/D [3805 0 R /XYZ 89.664 439.856 null]
 >> endobj
-606 0 obj <<
-/D [3330 0 R /XYZ 261.414 470.292 null]
+3838 0 obj <<
+/D [3805 0 R /XYZ 71.731 424.748 null]
 >> endobj
-3341 0 obj <<
-/D [3330 0 R /XYZ 71.731 462.939 null]
+3839 0 obj <<
+/D [3805 0 R /XYZ 89.664 408.972 null]
 >> endobj
-3342 0 obj <<
-/D [3330 0 R /XYZ 71.731 437.216 null]
+3840 0 obj <<
+/D [3805 0 R /XYZ 89.664 408.972 null]
 >> endobj
-3343 0 obj <<
-/D [3330 0 R /XYZ 358.612 437.216 null]
+3841 0 obj <<
+/D [3805 0 R /XYZ 71.731 380.912 null]
 >> endobj
-3329 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R >>
-/ProcSet [ /PDF /Text ]
+3842 0 obj <<
+/D [3805 0 R /XYZ 89.664 365.136 null]
 >> endobj
-3346 0 obj <<
-/Length 2077      
-/Filter /FlateDecode
->>
-stream
-xڝYmo�6��_a�K�!V�b�%�0�Y�e�nH1�0�c�%M��f�~w�(�r��@-�$�����h¿h���M�.���,;�g��݋H�X��A�����q�&�`�MfK���/.���,�u���?)a��zv��9�9�Z�f��7��:��8+��u{��Y�u�SwZ�	�(��B�f��"����"�U�f�U�ں���:Q;�(HQ)�ydv��S��{ɪRV��X�P5�E4'�
-�F>�2_��6jm� ?��|�?҆���J2\(�� Gh�\�	�^(����������0���Dâ8إQg��0
�B�W���Y��7Z3� ��� VGJ��#ˎ��j��Z�ϴȪ�z����~fBmE�L���W�4�+���)��X-�N��?-�thX�sTe����r=��8R�{�������f,a�̒�2�9iX�9t���Qa�JD�P��@��Ip�|��`�
-��'�jӖ��|]�+�[�4^�O�#d�:�ԅ���?-��\�<*���4R�*kOT�S�5lOy0���Ip`
��7
8��g�dw�v�eU+m=���4;݉�MCr�
�0�4\8ǔTg�>"�w�T�RI�p~[��$?��1."4_�Xj���(��2�'�6N�c�!6
-|���1����i��:����H��Ũ�!*���eng����^���u��ׯd+�2�_.�/;�xso
-�flB,Zi���d�%Kk��X�cP�h$k���O��id�-ge;�vŲ`٣���q��R�rPPʎM?��@�(�Ε��`�ㅦ/Y�5�'�
-
�1�0�mU��$��\�����hNb�c�	�������>��*l���w������5p�
-���y|�k&񡖠��$>Ʋ����α(�w,�9_1~���/��\�Ќ����Ί�&��, ��=��	�Ra��.<�꠵�2�Z����E�W_��صS�UfԄsU	sӵiβ�q
�S�$��/����@�����2tO=T�Iyp����6ʺ�gl8����`��g@k����0�B�Gֳ?'�9��U�5���\ʁ ��[�#�9s_	�7�598T��x��v��]�U��x�X=�����"S�� j�����a
-�����d����5�c�xw$(+��@&��2t8?���kR��~��4���}6�8��D�ea1�l�:����uWQo<�����'l2w=|�a0M�i���h�
gm9,�9AwN�۩��o_�1��&�ȃ�����8J{��x2�����bmp3N��!�F��-Hc�A7���Qm9TUn���q Y�������q�SFkS
x�[)�D��r4t�A�(pf���54�P����[���,���Vy�z�)��9�X�o~b�Ї8�h� {Zpg9Uz4B3(&mΝ�;�j� ��o-:15
-d��1[�G�/����=�ֈ%�F$1jN������
�`�k �]��2x6�q#S.���%����.��f֚ؗO��z�_��p��/֚�ҭ��^<��-ݮl�n�e�����K9��T'��o��m��.�x•��\͠��`� �WQx߀`��I��O��ِ�
�a��}g�UO��
@#����o9�R��5�,�FR��T
���ȗ\/=V0SyA��Q����1)O�+';�i�����`����o>��O��5/̶��J�����
-�h#��
-�j-��eQ,q�=�|�Mz�]�Qm�
-��N�V�'��9'�(/_a,�N�	k��
-@i�h:������P$
-���Y�t���i�f�1h~y���1��cx�A��tc5l��:��դ�'&o�[ �U��Z����q,��$[�����wpM	g`ϥ��Y�mn,�����HJ��}���G��/<�J��ҍ5
-p��X3ؠZ8�)�R���$�ãf�4u}9�U0���}�� Oj�ζ��k��L( �}��-��x�S�dj!�æ��؛�����ԏ�����jl�����~ɨ$�1��Xҵ�+W��3�X���1lendstream
-endobj
-3345 0 obj <<
-/Type /Page
-/Contents 3346 0 R
-/Resources 3344 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3327 0 R
+3843 0 obj <<
+/D [3805 0 R /XYZ 89.664 365.136 null]
 >> endobj
-3347 0 obj <<
-/D [3345 0 R /XYZ 71.731 729.265 null]
+3844 0 obj <<
+/D [3805 0 R /XYZ 71.731 362.979 null]
 >> endobj
-1197 0 obj <<
-/D [3345 0 R /XYZ 71.731 718.306 null]
+3845 0 obj <<
+/D [3805 0 R /XYZ 89.664 347.203 null]
 >> endobj
-610 0 obj <<
-/D [3345 0 R /XYZ 320.829 703.236 null]
+3846 0 obj <<
+/D [3805 0 R /XYZ 89.664 347.203 null]
 >> endobj
-1198 0 obj <<
-/D [3345 0 R /XYZ 71.731 692.184 null]
+3847 0 obj <<
+/D [3805 0 R /XYZ 71.731 345.046 null]
 >> endobj
-614 0 obj <<
-/D [3345 0 R /XYZ 205.304 651.159 null]
+3848 0 obj <<
+/D [3805 0 R /XYZ 89.664 329.271 null]
 >> endobj
-3348 0 obj <<
-/D [3345 0 R /XYZ 71.731 642.336 null]
+3849 0 obj <<
+/D [3805 0 R /XYZ 89.664 329.271 null]
 >> endobj
-3349 0 obj <<
-/D [3345 0 R /XYZ 482.087 629.6 null]
+3850 0 obj <<
+/D [3805 0 R /XYZ 71.731 290.317 null]
 >> endobj
-1199 0 obj <<
-/D [3345 0 R /XYZ 71.731 583.608 null]
+3851 0 obj <<
+/D [3805 0 R /XYZ 89.664 272.483 null]
 >> endobj
-618 0 obj <<
-/D [3345 0 R /XYZ 317.599 540.51 null]
+3852 0 obj <<
+/D [3805 0 R /XYZ 89.664 272.483 null]
 >> endobj
-3350 0 obj <<
-/D [3345 0 R /XYZ 71.731 528.072 null]
+3853 0 obj <<
+/D [3805 0 R /XYZ 71.731 257.375 null]
 >> endobj
-3351 0 obj <<
-/D [3345 0 R /XYZ 71.731 493.048 null]
+3854 0 obj <<
+/D [3805 0 R /XYZ 89.664 241.599 null]
 >> endobj
-3352 0 obj <<
-/D [3345 0 R /XYZ 71.731 490.891 null]
+3855 0 obj <<
+/D [3805 0 R /XYZ 89.664 241.599 null]
 >> endobj
-3353 0 obj <<
-/D [3345 0 R /XYZ 71.731 485.91 null]
+3856 0 obj <<
+/D [3805 0 R /XYZ 71.731 239.442 null]
 >> endobj
-3354 0 obj <<
-/D [3345 0 R /XYZ 89.664 465.153 null]
+3857 0 obj <<
+/D [3805 0 R /XYZ 89.664 223.667 null]
 >> endobj
-3355 0 obj <<
-/D [3345 0 R /XYZ 128.408 465.153 null]
+3858 0 obj <<
+/D [3805 0 R /XYZ 89.664 223.667 null]
 >> endobj
-3356 0 obj <<
-/D [3345 0 R /XYZ 171.417 452.201 null]
+1644 0 obj <<
+/D [3805 0 R /XYZ 71.731 203.577 null]
 >> endobj
-3357 0 obj <<
-/D [3345 0 R /XYZ 71.731 450.045 null]
+654 0 obj <<
+/D [3805 0 R /XYZ 259.687 160.48 null]
 >> endobj
-3358 0 obj <<
-/D [3345 0 R /XYZ 89.664 434.269 null]
+3859 0 obj <<
+/D [3805 0 R /XYZ 71.731 148.042 null]
 >> endobj
-3359 0 obj <<
-/D [3345 0 R /XYZ 71.731 406.209 null]
+3861 0 obj <<
+/D [3805 0 R /XYZ 460.835 125.969 null]
 >> endobj
-3360 0 obj <<
-/D [3345 0 R /XYZ 89.664 390.433 null]
+3862 0 obj <<
+/D [3805 0 R /XYZ 220.262 113.017 null]
 >> endobj
-3361 0 obj <<
-/D [3345 0 R /XYZ 128.408 390.433 null]
+1791 0 obj <<
+/D [3805 0 R /XYZ 71.731 110.861 null]
 >> endobj
-3362 0 obj <<
-/D [3345 0 R /XYZ 269.817 377.482 null]
+3804 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-3363 0 obj <<
-/D [3345 0 R /XYZ 71.731 370.343 null]
+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)���K׏k���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
-1200 0 obj <<
-/D [3345 0 R /XYZ 71.731 339.459 null]
+3803 0 obj <<
+/Type /XObject
+/Subtype /Image
+/Width 496
+/Height 579
+/BitsPerComponent 8
+/ColorSpace /DeviceRGB
+/Length 50668     
+/Filter /FlateDecode
+>>
+stream
+x��wT���dAT@ńi
�YPEE��5�9c��b\eͺ����sVT�	s�0g����O�=3�0��~��ӡ������[�U�RR�a�a�`߾}���W�V-�
+�a�s�a���a�a=g�aX��aX��a�s�a���a�a=g�
��#G�v�ܹ5�D��w�^�re~�9�h���k�J�޿��z���.9����O�a=g�tI��ٳ'O�,��͛7k׮���W�J�����'"��׫W�W�^�8p��
đ�����ݻz��>>>�Ν�(<m�9sgkԨѯ_?�_���occ�_��K�.�}��j?�x�"��ٳ������ݣGlL�:U�w�ȪU�"%�=t�?_���1+=���s�
+�K�p��Il\�~�}nҤɧO��֭��q��۷oő888>|��*�sDu��Ql��UY�8u��)l �&�3[�l���o޼����}�66
+*$��իW�q���ҥK��eX���s�N�4iΜ9��+W.�xyy%''�,Yrǎ�ƍkӦ
ԘT]�����I���"�s���$�����
!N��6�y֭[�"�ٳg��˰�3���߿�T����+��/_��0������Ѿ|�rl�3F	��#G�`�СCdK,X����8v�Y�U�VU�>6�E�_qCϓ'O�q��
'''~��9cnz"""Hfo߾ݠA������dF{RRҳg�,,,�?.�����|����KJ�(��A�-���*y=G<U�T��S���z�F���K�0����S�Flll�
+8C�s�1Q>}�T�N�jժyzz�����a�a=g�aX��aX��a�s�a���a�JXXm���҆�.�t��QH$ð�3�I��L��(]5j���s�1=b�7�����v�$NSD�
oݺEW�xV�%~���dɒ+V�����˸���/�H�zAD���b�\x��E���K�Ir@���q��d2�߿���;u��ҥK�]�I�9קO�b#))I�D1E��P@Ƴ��Y�ˏ;��H�B�cbbRDSD�zAT�Ar���E�7U�6ᯩ㤑�d��-Zt���+���Ç���F�������'�={�����[�N�D1���(�N�򬨨�bg)���,��P�Q1Ʌ2Sd�����:N��GDD���B�.�s(���#vs�ȁ���1B=&&&�����y��Ut��T�TyV�w�%�������)��k�^c�\(�qQ>Ijc2���?�1ӱcGlT�P6�p|����Q�q����y͚5��S�LQt��T�TyV7k֬aÆ�z~��%�/��C�>}JQ�Q1Ʌ2Y��Mt��x�q�0c*&z���U�9��3�d�{��a2����9�0L&0��8g��&:��0��Dg�a&s��l�3���-�gLztT��LfeȐ!��l�3&�N|�D�.��@�����2��8gL��%�ST�9�%]�v��������B$۷o��̙r��!���p����b_�����bo�薄�������`�ʕ+��~�ƹ���-[�O�>���g?�f�RW���)*�
+��Ç+�D?�!$��Q����%������LF�<{������K^^^,� �7�nݺ��٢�P�}b�
+?���Ϊ"��/��Qt��hQ"�ZztT�׊i`=��C]]]!>Y�d��[�|����>|��I?O�>EsϞ=�F�*S��z����ucnȻ"ˠ��C�}~��l *I$���+��sE�J-Jn��GG����s}�s�N[[[hNPPЙ3g]�����|C�1cJ/���o߾qy37�]
+(�s(6h{��U�zu��\�D?^a�AȮ]�
+�(:xTt�(�g�ƣ��VL�қ2���Ԧs��U��h���޽{Q���}���"�h�۱�:���BgPE*�����J���m����,--�Va�sF��<yb���͛j������ÇS���a�ӭ[7�e�.]b4�sT��r傉N3����dwww���8�s�9hٲ%*����s�cF�<|�ڒ'O
t��L�###��hq�cF�P�y�r�X�
��.D�Ӛ��0�b߾}�???V`��z�j�y�Z����Jg�;88�9Rr0::�Z�j�����С�Y��→T���U�V����R������|��x�F��˗߸q#̖-ۀh����U�g͚5‘����իO�4)))I�/��Ndϊ���Lf�sWW�J�*��^88{��-[
+S���݋����y��t����s窊!E��F�S>,X��p�nݺ��
u�A2ڷo?~�x5�rz�2���i�96 ��'O�)S���ǒkq�+�b���KUj��ٳgK�*%4hйs�pp����ē���dɒ��ƍ�\�2�v�ډ}'*���޼y�v��P!�>��⸜����3��簺+T��_:�'OuLY!�b�~����+�)W�����o��G�9rdDDıcǔ�ۜ8qB1%�Ժ���X\�+uIgN�<���ׯCҹ�����3�����4iҜ9s��sU��$5�����&''ÊƆ��9�[���={����!�u�։+uIgs��%TŸb���3P�.mw��AiH�4$$��������ͭq��©+V��f�
+6�+�_i�_�0HT���-[���͛�����w��=���j�lii�bY�Z5���:T�^�L\X��k����+U�������Y�f���[�hA+M(�AM=OIu�x��e�`�T�췡��	&��&&&�����y��ģ�:R��)
����C�ϝ;'9�c���v��mƌÆ
+Y�� �I���T��]A�e��~�?�*��6
+.,��3gb���sTTԐ!CP2�
����I���8�7[E�(/""Bp!���K�[:v�H�[�M���~�%VQ`�1������_�֭�+�o��o�nL�8Q2��y͚5��)S���|'*uIgo߾ݠA���8^��sGGG����Q2����.pj�ҥ��d����'m_�A||����@�!+]|�bŊh3������9�F�z�0L&��޽{g͚�ҥK�S8�m��#��S�nݢ]�'�iƩfy�ܹ؀�#>N|`	���,I$�9�0�Rϡ��^(���+��(�sl(��8i��=zT��
�ӧO���2/V�6�Kԏ���1ŷ�K �Z�3����vΜ9%�޵kWGGG����ӧ��oY�l�bC��Ei���EU��bŊ��l4m�Tf��������U1ϙ3G�a�9�z������2e��Z����v�V�$�w��Yaui:�}�v�{�̙3G�Q�T)��P77�1�`C�{��8��s��E��l٢��J��bw���T�̞=���a=gLW�oܸ��o�A����ۮ];�E,�:tP�ؠA���ťQ�F���i�"6�+*�S}=�R����1G�a���<^�a=gLZ��Oİ�3����61���9�9ð�3����z�zΰ�3���9�zΰ�3����zΨ��'x=h���10�$O�<���s��ԭ[7.~�9�C������-,,���X�
���'a���\��sF��P��=z4���֭[�N���^
+.���_�B���7��v��%cK/
�z��'N�ẹ�)�I�z�[=���ߑۍ5��aA������ʕ+�0H֚a=g=gL���P<߆
>|���\z�m�6;;;��Ν�F�_�|���.>"��޽{K�*պuk���I�&U�X1((h�֭�e˖mٲe�-N�<���������ʕ+_���#G�͛7���<x�8�jӦ����ܹsSR��gcbb��V�Z)&�a=gt�͛7əy�Νo���s(m�ܹ��}����IQKɒ%�2�y�FQ�k׮}��=�˅
+R��>>>�^�JI�t">[�@�[�na��~��	"�_�~@@�ņh)�����p;G���$�tU���]c=g�Ν;mmm�������sHٌ3h%��S�j�����6n�X|�z`HNI��^�w9,,2+�υ�Ŋ��V�T	�0�i�jժ�`8^\����$�a=g�Ѵ�4�m۶˗/?~��b�O�>�t�l�ѣG�)S�\�Ci�����b�
+��66�$~qG�ϩ���>�	�_\"QW!���`�V����>�w����yݺu���	�H]%$	)�׍���7�*����P�H�.$��]��7I0+++oo�]�v����f͚��m۶�Htt���g�6mHQ���U�V���f͚���ի�B�z~��9��Q�F�-8P�lYDu��!�$oٲ%n��~q0E=��$5m�Tb�3h���pVdn�O5!!a֬Y0�`�����\�rA�����:�s�̩4���uժUO�>��'cr��⡓�0�#""�]�@hH���H1�lٲEC�~_�~5�dw��Q�"���
+
+�O����+\��O?mܸ�8���p.\�@mF�
+cC�	&�bРAd�i?-E'���kג�����QG�����u�{{{{}2�P��|pV��`"P�Z5��5�������9sP&�-J�G�tLB�Uɸ����ٳg�`3�/�������o�87�P�5�`�}�Z����p�����4�B8"�_��B�;t����ݱcG\8o޼��Hn-�V��c�B��v�bigg�#G�6h�����F�Ț6m���*U�s��g�`�z��۷osVa�L }ǎ�k�����Q-�/�@IIɆ�����ѣGؠ���+Q���N�1��A�ѤIl�6quu�Fpp�O����!�v�g�c�c@Æ
Q�6o��Ya��yJ�'����Jf�(-S�sq�Bx��G�y%�[�9��
+�}��c}Μ9O�:E��Qw���,Y�J�?beee䒮�_��1�@~�ƍ�Ya�z��	&�ϡ�����,�9"1�깸�DUx�y%�\rky���Q �}}}�V�|�2Y�m۶��g7*�֭+�9�/H� �6mRuհaÎ9ooo��\�x�ܹs��������w�ܙ��=����={?~���?`���c��/��c4f׮](o(��F�ߢ���x�V�x�B2sDWz.?��PukPC�4�ϟ�vi��%KB�a�g˖
�C�1ڧv��Us[[[:I�������۷GFF.Z��^�z���]�v�:��K}�ܳ��WA�����v�ܓ8fQ��2��:Fc>|�`gg���`�ߛ1z�`�Q��7k֌v�}��(�4�u���F�� G=+IS�!n
6�ԩL�����]�v-uzѢEST�g��R�jկ_��WrJi�����1��]覈^'�d4+G��ϤI�pF�._��y\�r�q��#z������I���7�ZVq�Z���!u�M���K`��Y���;`���Ç����K��S�h^
���͛sV0�,O�<н�����ׯ�x�Aa��ɓ�Cc�޽F�/�9���x\^���éo$$$dƌ؈����
+;��4ݳ(��a�ԩSh/\�xQ񔢞OO�
�>}ʕ+���
�c�
&�P�)�}��8>b���Nqrr���3�?r��I��Ӵ�F'��ə��)
+��ի%�>LI��.X�0\ij�ݻwM�?�%]f��hóg�ЪE�����FB��󛢑�&U֩<gΜ��A���0G�H�|���h�S߲�p��YA����?.�>�y֕*U2�v��^��5=�`nHrrr�5P�fΜ�4��������y�D�8޺uk��UX�4,X���F�|��駟~2�񽦋�ey%38$3>HKef�(�c"���d�H�>a�&����T��utt�����SU�a�����)RDՌ��O����Z[[?�\|�ʕ+NNN�vڴi�Unܸ��C���cm8uꔍ�
��K�.���-J������� Q���t���z��I"i��Q�EBHR%�V���L��ɴ��'���P��={����
Pb��111�U$�߿�׍$=22��F�DGG�t��ٱ�fݢtY^�Ɍ[�Y!J�ȯ�+�$��OUK�IR%�V�fRSR?� �\�Ν�3�F�*���?p�����h��ûF����	�s����a����B鲼��f|���t���z��I"i��QE, N�8Z�)�I�˗/���j�S�����d���c�)4mhlRkZ�F)��;�߿?�)��6l}2d�F׭���SHfp���jV��9&���J&���FF�ũG�2�z�{���I���y�b�f�:y�x���Hx��
}�!Q�����lj�3zb����+/�k�8C����ٹs'��-]�4�RT�����___�g�\�B+I>ݚhVЇ]�!�E��9ǎ+^�8ͭ��3��1�O�gϞ�nݚ��~���_�V��O�>A��lT�r!֭[�ha�^�~��2�˗/9s������%��s֬YQƲe����K�F>|�0cƌ\�r�,9;;���h|�r;�йsgӝF���wj��T�\f}�q׮]i����]���w��!L�fyn߾=l�02>a]���2��d�ҥ��lRUkPG:}�5E
+(@�.#�0:�ƍ���B�0o޼m۶���~�'c>��?{���ѣ˕+',���o�]�pA�h�?nee�������'O��� Xll����7�ŋ����G�V�
+&,�2e�t��a���111/^��\2��>}���2�s�����/]��_X�<HHH�Sx���Ǐ
6<	�1�zݺu0�kժE�&�…�1BW�>9�U�T1n�8����U~L��U�R�s[��7h2/Y��M�6����ժUkѢŠA�fΜ�w|����Ν�{�.ޯ�����4=}��޽{�������;p���m�֬Y�4���?�'O�)8dȐ^�z�f��_�$�_�~�:u�����h��-[fO�b�
+,�
+6 50�J�,���S�f�
�lٲK�.Ç�5k����?�̨5+�WW�\Y�zuddd�n��֭���?~�faa�ί�����S�<y�߽���AAA����{�F��9��6m��ٳ/^�*{�ƍ�S��M�6�8�"2|�С�:u
+C�x�t;T���#""`��6OƏ���l��9�19�.b�իG��#G�M�0М�/.X��O�>�����K�K�,Y������ ME��駟 �E��6�P�B��a#Ot��j
+(�ѣG50z���*$nAV�0�M{{{d�����lD�!K!�x
+�(8	�7�bPY4i�z�o߾w��驼�B������lɞ=;B�X��t_.rL�k�m
�t��e}�ȑ���o�ĉ���x�a$�<���K�D���A� �0�!Y0P+U��a~7mڴm۶ݻw0`�LAX���7j��+Wnذ��ݻa�#10��@�|��7�Lx�
+6n߾�#W�^���;x��֭[��ϙ3��?��ٳ'��*U�@!%�'�m�Q'[��E"Ѿȗ/�p#�m�f͚�����޵k��>��Y�5�)HHH�?E&>|xϞ=ȟ�˗�Θ1c„	�F��-���۵k��~��y�桡��R	�A�F�pg���͛�&��5�5ap#�L����-[�<̙3�I���$����1B{��Ǐ�_��[i�u�����!5���؆BBf��^�B0#q0����cǎ͟?�W�Z5��E��*@�c@5�P�i#h8��P����&�RP�!��qN!MqҨ�1c�P�@�Û��at+�[�l��.\�^4�Ç�@~�.@s�"A��2�8�ay���Ԝ����U�q.6�>�(�L�Va&Ͷƞ={Z�lI�������5{�l�رt����U�x��\�|�V�dIu�P]�e*�A{D�ƍ���������Ȃ����r�|xX�4d�С<z!]$''�Ν�����N�Kc�"""L���x$ݤ��2�����E�dV�}��m�
+h��G�r�i@�ƍ���֭S'�s笭����2�g�ӧO#
+����$0�����c����ӕR�߿�S�M�3����	& ѴQ3���i9���J�C�kՍ=���7`ԨQ4�]��/ M��s��6=�rZ��ÇB�
+�ŋg��/^�(<<����Z����E<f����x
a\��k#���������ۛ7o�e�޾}�	r�͛7�*���+	��III����`ӦMqd����?�C~���z�M�������������ϟ�ɓ�-=��5KK˼y���3G{h.|�V��y󦍍M֬Y3�DK���⚀������M��믿8[trR��N�^�pU�N�2SV�(Q�$�T�R\0FO|���hѢ/^tss���6_"��Y�fϞ=e܉+",�123Տ|˖-P����t�����heeu����T҄Y�������a��w���_��4��	�9mڴ�#G�[�Ůxdzԏ�֭[��"E��7%��Q�F���������\c��׮]�+Fn�ǎk�z���W___�̐Y<p��,��Ǐ����� >%\[�\����9r��n޼������%�˖-۲e�-Z������#aaa~~~+V֧��-ZԣG�'N�L�4	� Y[�n*��Y�ZZZ&&&����!o޼x�o���a�L�0�@p��{�n#����p~���'O��y�~����۷/�w���ԩS�S…hkܻw��Ç�k�NI]��vNE�`K�o-�����իWRկ_?l�����y��U�o�j��3g����̙��3��"	ݺu<�?{���>��X����a��+&�7�q�F�ϋ+��������S…X��R�J�����Ix!����]���-Z���H���dzo�>d#�]��A�֭��˖-K�����щd�8l�0*o666<m�a�����x��֭+���A����DGG�̙300��|�̙�F�
+�o��l��Ç��ڒS��V�Z�-X�����=z�?�4������Ǐ_�|	�R[�^=ǃ]l$&&�k�����oذז+W.��`�����Z���0fN͚5�m"U�剝��H�y�L�0��G��?>w�\���kԨAݧN��\�x1%՟����ʖ-u=t�PJj�y˖-===i�X��b�ҠA��ݻC�+V�تU���ˋk�]�v���"
B<͚5CR���Y�`r�C�����	پ}{�,��-\��7�a43��k��LƬY�
+��2���1j�޽{��ԁ��֭��&2k9ܴi�`<�۷�_L���DWE��C���㑓B�{zIJJ*Y�$b���+�Q���?=0�.]������9�4|��������V�uf.\��Ѱa�L�K'O�$��(�k֬�b�0:4�3��<3A�K4�ǂ!��4�7�҅�����-Y���
���Dg�\���� K���4�aڴi��u�֙;��^�*��!���0��&:�iҥK�׭[�����>|ȕ+�.�������r8y�d.i����ƹn!�8����6��zR��ϣG�lmm�(�3���hl�g2�\�E��E�kE�-��*L�j�0mڴ���;w�8
�x�������/_:88899�V���ٳg�Zu��(�hl�g2�\�E��E�kE�����7�R�0�
+��Ǐ���4�\-��ر#�?�9�I�_Y�d�2�/)èOժU3�s���;���*,�,J��H%󰢣���ݺu���xG�Ԫ���T,�N��/)ä�D�|=�b�-bw.b_+�mU�X$�Y����+I�|ٲe����P��҅����(~O#!!!r���Q�r��c�
+���R�l�>}��߿?����>[��\ľV��b�.�¤���J�i�~�&M�/E�2�M�gϞ	�G�̙�J�dx���(j��\���啮)�2�_Ž;�rT��G��ݻlٲ��JO�<1.Z��%��(<���J��`V�վs�N���4s`�?�f�i�mo߾��yhz�2�C�Z�;wFl�!4��G�	S�V�X��cxv��IMŐ���r�hIRRҒ%K`����o߾�D�O�:�K�h��ӧ�1�S�� �6m�ׁ1$������({}���������imMZo���x�"R[�L]E1G�vs{��n�"/'O��w�1���(x͛7ϔ��d,'N�������<w���ҥK(	�����p�̙f2WT�.�\	;{�`
Γ'�9���"##Mŋ������Ǩ��H1�v߮]�H�mmm��0�Q�
+�ZN�fd@E���
+Y���f��)?\4<x�<�>����ί�?������aBh��QS�����s0k�,�ٳgO�}�#G�$IG;��F<|��,_�|�z�T&��C�������c��i���I�u��#���ld7nD>���y:ϟ?�tz{{�6ڀ��D��~s.u��!I
+
+�7�����C#���ѣG��jժ�6ڨ�(DۣG3/^^^$�C�嗂a=�|�+{��ч���++�ܹs�A��
�o����z���?6mڄt6j�H�1�#f䃙����ߓ�KKKTs�j0���zbŊHg˖-u�3s�޽�0�>}��g˖�s���:C
RaR!튷F�ٿ���/�M�r�
+v׮]���m�r>�����Ύ;�<�k׮!�%J�K��c�,(]�4�#ϼy�-Zo�z�%Kj�*���\�xqÆ
8��/���O?Z
������O�2�D���,���ݻ�o(hڴ����s��!!!����c��ٳJ?E��;99
8P��?�Abb"~�!�
�l��˗/�SW�^e=W��C�"�&L�G�f���:)R�=�3�O���8I�D��ك�����σ~�����|���/^���o��R�Ja����ժUC�յkW�)�޽���rqq1�d*z�W�]�j��_�|���y�6�&�v�Rlmm���`�BލV�axC���wE=��[�n�`�.]pp����_h�����]�p!~7nl<z����]�6j�H.�Q5[ZZ�ʕ�}2���ggg�
F�k���q�96��䤨��q�%h������'O6='K,,,�ҥK�Y`��A"�=���+V���O�:���M�
4��`��^м��s�f�z���`oo/�=�޽+qaW�P!:r��	��s�
+-r�ݶm�۷o[�)V��w��M=�?|�p�3��M1���T\���?�
F)�޽7nY���e���{c�?�����4��A�he7�mݺ5-�j$�	���W�^��~����+���chA$&&��������Sr9cmm����
FLRRҼy�Ŋ2��0y>����v�ܹӮ];Z�,w��˖-3����>}�������+*2�U&��˗��ԭ�y��9���|�Q������nɒ%�t�1���0͂���>��0�6���p�Çs��@+ˀ��h�
�oZX<���֭����b��ȑ#i�c=�.��˗�D������Ǐ��5k� M�6��]��뇻L�:�K�"...��%�cܼy��?`��a�BA̽���޽���0��s����ݻw�[�0E��ԹcҤIH�����s�	��>
_ԹzƄX�t���#��O?�t��i�8jy����Ѳ���'N��	�ha�9��_r{�ꅻ����z�K||<U[\*�"�`��f����{��M�]�v�>p����'�1�9=�ѣGS������4�:�w���]���s��+�ŋ\0�Bs.�d��YaV@�CBB�����a�+�8q���"�ޜaH�zsG�%�x��>V=�/_>���Ç��Qpp0n�c�.J9~�8Yh�Z���0?~\�\9<tWWWU�^�~-	�mһ�۷o۴iC/u˖-������:��?p�1c�p�PE�5h6�=cb^�dI<q��������H�h��j�ʕ4����Ν;zM��VUʖ-[p/4-�`������}�|���h/9'�}�}'$�z�>}:g����񣛛^ϧO������xOOO��u���%R+Y(����H�eCZ�\�|�s#����3s�|Q:q�b˛7/����_��͢�o߾mذ!b�����L�!����<�M-hΊLɧO�h�'Za/_��U������f�g2P]����8?w�Ƒ$%%
6�F&w����ׯ:Og͚5���
�-�?�%D�%K����QS��mѢ����n
��7oR?m߾}�7�9�<�+dl�>}��mŊd�խ[�Ç:L���߳e�feee�6�U�&9r��3gE&#""�F ��{�Ν;��_HH�F��C��
+"I��A�N�ʓ'����Ks���D��A
<���<4ҕM�Lƞ={�f���ٻw��n�����Md@�~ǎw�����3g�������ӧO���V��m޸q����+WN��JY�h�G3X^�*�F�z���3gN�E�L<y򄬲�'��FϞ='C�t�II^yyymݺU�����4Z�D���>�=z ���(��+W����J��;M6m�D%J��Ɍ�X}?��3�fpp���WR�			�f���<<<*W��B����ʕ��ۻO�>�����ÂeN�G���_��el�_�˗/VVV�h=)F���c�3��q޼yuո6u����͛�ի��^mf!Hk���
,�E�E����H�	������ՋL�gϞ��ã�S˝�ܤILLDn+V�*�"A�ʐň�ի�^Շ�����/��K۶m
��������;�-����l)ҁ�rX�N9��1c?Duh֬-z�Y�HRR�q�j�|}}
��A�*T��ҥKz#9~�8ZXh�s�s�?^�ti����J�*�ړ'O8�&L�}��OP���E���������Ɔ�>��E=׀ڵk��z�>������b}����������K҇������Srh\�xq�
+	0�K&11�F�Æ
;r�H||���=ވŋϝ;g˕+צM///څS�J�59G*[�l˖-[�h��*��AAA�э�:v�(\%Vx�j޼�������{���.\�������͛7iP+���We�8�m۶������g�&4M�mv$o?C�ъ���D�իW����P�k׮�T�B�`�������?���ɓ7o�P9,P��
+����K�&�J|G\r��=�ET2)�Z�*���j�猘s�����ɓ'�yI�Ν^�:��ӧqk��d�4��i���笐�ϫW��nذa�N�bccǏ�#tV�	��o�b��@2.�LXXD��s�Ub=��.(��䡥��V�ti��Y��ŦM�,--���ܹ3���=Є���!<x��?~~j����MK�pV��2e��A}�͚5KJJ�VCJ&e�q��
"��)NU)��*�޿�ѣGu��U�<�eȵ�X�3
�ƍ#??i�3����iP�N�A�Jlmm٫g��k�*ʖ��F�~�h|ˀ�fxxx߾}�"|��(3��0�kԨ��EEP�fM�"�2z^�\��-[zzz�߿_��bcc�'O���z��G�V�T)�:�T���=��J�It���|�\2�1b��0ē��9r$��f|���֖mذ���K�h�;�Q�D��\�r�Yz3�=蚄����?~KKKX�W��s��]WWW����߷��(P�@vw ����RfΜI�\8+����aլY����\Kv�؁������ŋ�g�N��l�ׯ_��I�&Húu��a����ߩ}׮]�F��=���gb���C�{?}�$9��-��_E���_~R�F��u�Y!!]���1VV�`J5�������Rd=�	�q�9�$(>~��]��
+�ر%:t@�,X�x�p���+4T{�왮��Ю�%�~<����e˖�K�6�[�O�8��T�re�j�s]q��{{{��xD:�_8p�ѶF�wmڴi��?=��ˮ]��˅��ҧ/��Oܺu����;��TIf񇅅�,.��s��{��*U�u��t������jժ����?�hذa�\4����d�Y����ӧӈa�"����	�߿?�1e��|�����������=~�8N�߿��tall,^����Ӳ�'�E����;::���y��(x�Ύ�����4PY�+����Ai����'4h �.��u�,~z;hY
+&	P�vm�ڏ�)����<z:U�`A�8�g�g�~.蹁-:�6�����nݺ�4(aJFO#3|�p���?��Ϸ�U��ߝC�Q�Q׮]O�:%q�A�f���`���
�t��{������#l��D%y��>e�+Y�d���&�����oI`�,��kעؠ�.Z������zwľ$�RR�������TSFc=׹E��	�pk�rSl�Q�-�ѣlj'�xl�ݾ};k֬VVV���pd�̙33�Q�3)fj�<M�̈́��8y̐���.�T�R���
�=�6�z��2z�T@�
+yHΝ;7������s������0���_�|�b )�����`��}.��S4�N��g�Ң��P��s�[t���)��M6DE���ޢ��<hTΜ9���aV�ĉ��A���9�Q�FI�l�R�mOs$����&���
�����<�,U
��^A�B�Y[[� (>�l}�,J̭���/^(>߈��X�Z��qI��?G�z�b_t�iӦµK�,�j۶-?���:��T9aS�s�&[�T޽{'���-:hu@�	�Q���O	_CЮ������*e�5h\�Rh��'��<E�Ɇ*=W�̓�26^�����r��v�b�~K��*�5`r���)��,:Uf��`�)m����֫W���ޢ#�#X�r�1<ʹs�"1�;w6�ٖ��O�
ꠠ��~�i�ƍiFcOG7�����[tnѩ2��MU�m׮]���H���-:p���֭[ã�3gc�!ܙR�mmmӻ|	c0�7��z�
+�&�q�uY�d���T��x�[�4ɝ;7r&g��={v<y��Ƽ~�������q����@�2<IF2��D�V�r��Yal|����g���y�c���d'&&�͛7Ý���c�"#F�ৣ4�!���x4 ��\�|�������Ғ-���Bfl���HT]�ԠA�h�L��S�4�Ԝ�O�'��Dn������q�qr��y<�L�NX�t)2��ϧ��)R���޽;S�F&N���3A�8u�犁�Jϟ={�C��S�N��F���q��[����k;�o%�-[����z��t�
GGG�!^�Q�M%E�����4�&�aÆ9rmd{{{�t�/�k)��m�$r18��˔)C.b�NE\9�
+�s�ce���G��hl���32�]�9���'yr���jеkW$`���2V� �o*)*|�H���4	l߾=22rѢE���;|�0�ڵkB�b�\1
1�S�Ů�t���%2p̘1\ȍ�������CF3={\;c�o�m��*L�j�.[�h��!��1���Կ����]ڵk�@H��s�7��S$��&P��
v��	Oy���b_
=WL���E��lj�������!��������x.��`��\l �����7�*o*{O�w;�؀���EG1_�~E��ƻq�F���E�Hۊ+��s�I�J}�H��;M��m֬�,(WM�6�/vۢ���$	�)
+��tE�lٌ�6#�&�*U��Bc=Hbg,b�M��ʛ���S��E�N3N�|�ڵJ���_�]�S�NUs���s�L[I0y�I����-$$D�ϧ��n[d�M�֭[�)S�\� 1h*�G�H\9�
+d`ٲeY�
+{x.�����@;c�o�mU�T��{�.2�Q�j�*7%��.-�x�n	C�Ξ=��m�\9��}d`�…Y������|"-�\�qE�El���Ŗ��0)*��������x���+y�4-e„	�Oa�<ypk�\�/��r�>�E��͍e�تo�9���F�3��m oWi�7nܰ��̗/�ߐ�C���������ׯ��4����g��AU�3g8+Xϵ'11���E
+y��i��:����ʕ����n�!�7ƣY�f
g�fzΈ5jr)$$D���/6�"�.]�1�ZҠAr��Yal�z������Zr��ݬY�Z[[���ݻw�� ����s��1M�6E���qV���ǣiժg빖4k�YԫW/�/iݺ5.�7o���r�Jܱy����4r�<��������t�����⌎��,�Y����N�z������B���d׮]��F�K�3�[�0:u�<����F�0:���V��IIINNNϟ?��z�߾}��J�������|���ݾ}[�)L���aÐ�q���S�r����ӰաC�.ct�������X�l�]�����g&h�
+
|������&����t�?�[���������ѣ�q�ر�y�3UИ�V\PY�5�֭[Y�f���$�a�u����&�49������4�}����9u���U�l?s����O\PY�5��
+
+Bΐ�
���k��٭��^�xa�Ԣ�Aj߾}��NcȡY��CY�3D�Q���ˇ0�(�z�>�-B��ϟ_���1˗/�wj�߿��ɓ��6�����������1i�$.�‹���;u��ҥKf�KO�<ə3'�e����W
+-[��w���݋լY�K�6����3�\��y��-[�l�bŦL���p�֠��~�I|\��%�b���VL���9�s��.��ի�E��?^PuE=?|�pPP��ѣ�6�BCCu2�����%�}/I��?� ��:u��
������9���ի�����\u�<&&FK=/U�����III�6'�jAYG�.�s(���#vs��a����͛�puu%��ZR�R%5��hC߾}q�������6���Y��W�A�%f̘C�x��f��֭����0a�x[|	�p�@�B�8�gH.��O�.�;�a�k��,���.�)9��G8%��u��-R�Ȁ�+I��Lzu��3��YHLta��\�:v�HM��G<�<3��͛�H͆
t����ۨQ���lr<��4�'?~����Lϗ,YR�|�r�ʭZ�j͚5؆<n޼�,j�X`���(<*}�8�ׯ_�u��*U����W�X!	 �Y|w=��tJra�ܹ��s�N�8v%��X��z�����楅����j�4ο}��wD�[�lA������.�/_沭1��|z�[�����f3�,Y��ԩSkԨ���V�-X���Q�ti�x�|���@,wB�����wW��t\Q�%
+�R���sмys��9s&Z�DϞ=�*=7۞s����|�����|��9�GgggUKiObb������͗/_�lk�0����^��������G�yo+��k׮�X��p�r��hgacϞ=J����1��.�B��%O�<�h+��%��Koz~��Y�SdW�i��f�s��$�q�cǎ���|��aZ��K�6���Z����Ӌ-�Ǎ�!  �F���W�~��ے��:u�.\xڴi�����#$�S�����c�]�<<<�֭KGZ�lY�j���P!��I�%����s�~�����r+o���q���cZ�m�ر:��M�6�y��zJ<ZĈ�[�n\�5�'X�����L��9�0�������^U&�y�߾}�Y�&�~pp�>zE���y�Ν��~X\z�/́S�N!a��|"��sP�^=�1b�^U&�y�
�/X���&����!~�X��~4����Hk�������$���իxRY�d�{�.`E�<��
6��
�����������էO�t9� �?[�l��������������f=7~=}���%
6��h���q~��y�?%�H_'�,Ywч��;w�L-y��%
i޴i2۬�&��/777\�p�B.�Đ!C('��8��i�B�����7}ߋ�[�NO䒬1K�,A�m�v�����9�H=z���̛7�Z�j�طo_�2eV�^-Y�jU��r��y{{7n�x��ݬ�i�~�z\��޽{\��܌�ϟ?S������u�O�0A�1����W�Z�%Yc��111�ر���F�Uye������۷o�N�T�X����f�:��1<D�t9&$$DEE{xxT�\�W	TX/}����Y+V�2�'�'-iB>aڷo��s�΍����]&�֭[E�A�IL����7n,��`x����={<==Y���������7@+�ٳg���vvvb�b�V_�Ż^^^�Z:�D���h�1!����X��ʕ+��@�,�3b�a��cMSU��o!�Zb�F�nѢ�b����+*<9`=W��G������+W꩜<x��Օ��t��mǎw��1@�>��{�����Ν�6m���0q��ùs������ڲe���˓'O�x47t-�v�ЁK�f�������)?|G���f�yddd�
���֭c�\�z�̙�����t^Nv��I�EHH�Ç��ђ���%K���úu�~��M�x֯_������/P�%��h	�UԟM��ٶm2�^�z�+蹼'
��\�T��7N�4	�KS�Ѯo׮�y��ҥbpss��t�����Έ�o߾���d��?MT�X
.?p������&��	��G��U������h�p�ЌZ�j��	z.�U=�ڵ+$�����������[4x#���in����uUHhpZ���u�	�'N��&C�Ν;���F�g�'|��Cg_�
+��[Cr�+&��z.�`�ǟ������^�:�)Q���Ǐ�/$'O���y�Q�����T5)�ѣGJ/�x�"}�hѢEF���oD����R�СC�Hh��<o�<ሠ�_�f=7E=OI��6�*R�����nݺ!��ӧ���'PQB�a�+5�����
+Zr����4��~���!�]�v���F+����p����]�@q����˗��&��)�N0ha���mȋINNvwwG9Qe(2:��ȓx?>�<r^��ʕ+�788X�S�g���:\�%5������Z�fƌ⃂���`=7r=�߿�[�."tvv޶m�f�<|�������W���=~{{{K<�\�v�����f������)�V��`��l�
�j���=���I�yJ��Qr%�g=f�
:Z��
a~e��ƍ�ϡ��‘�W�RyhР�p�u��ұhM�p�h۶my	E��Q��=���z��E<�EX���+Vlʔ)�F����@�<==[͚5i�7�]�ڦ2Y�f�U6c�zN&'N�!�
6|��U�.��P�V-~e�b>��}P�bE�;v,gΜ$�=�²eː�֭[k��ϟъ���S4��n�ϟ_qĂ���C#��(�`Q��tp���gUz�`�Б�nݺk׮
��>�U:��l��ػw���"wwwO�s������xkkka��m۶988`;,,�x��W�X�$���>�͛7#��իsIH/_�~��!��.]��\��_j�0�SF����׬J�˔)#���z�;vl�&M���j����N���@��/Y����N�:�=����PφQ-�@=�͛7�>*��٢3f�@�U�RE��A�i���z.�`���%K��/_^����K@�w��=k�,��E��naXϩ�eΜ9��A�ܹ�Ν��>��^��ݻG��t����&s��������2�O�>999YZZ�d��Y��ŋ�9s�B;z��L���k�/^\8[�dI��z{{GGG��s\.��׬Y���Z)�����ܹs�q��t/d����YύJ�{���1k֬}��5��e�o�������� �t��Y�믿ʗ+ �$��z.�`�Z����x�b___y�]���-Z�u�V5jAY�A�s
���\�U�Pa���Jmu}���K�(
���p���˸#���:��B�^�qI�?~�2ggg+X�`�V�$��R�B�~�9R8�1G��
6�[�a��KUԮ]�H��ݲe�g�2�≊�b}N���(�Y�d���=��'����d�L�20�����,Y�TuqU�T�����o�[1lڴ�.3f��墴��Ƿ��G%K+���f̘!�w�o=�en��� bB�>1��ҥK�,\�o����Al,22�t�Ғr�W��o)���\�xQ8�bŊq�ƑG2T|z��~����G�C�hge���ر��5i�ǏQ�X��'11/,����i�+p��-���1	='�~�
+�CmKw���
ۼy3�֫��BA����0`���e�ܹt�>��9sF^�qq�H����PH'''�����@c�`�Ӈ'��y�5dd��ť@��;wFus�ڵwt�n�:��I�&�G��.���O�Q����7o�d=7='����n݊�i&-vӸqc2���d�n������%�DP�-
+�\Ш:.η�Y�
+��PU	�,	��ȋ/��o,"�����B[�ȟ?�F����7�Ⰻ-B"۵k�M$M�6E$�g�f�V�cǎ�Ecggw��eu��q�����ӧO�N�Z�|yAX�����"_�`��;wh-Yh̙3�~��OZ��«:.�7�Mz.d���`�����=?���8�����C[�h1a„]�v�O�6h�\�޽5��ɓ'h�Y�9z�IID/�����,W�
:�s3�s�̝;�\��C��
++~���?H�)�ݻw�H�s����Fc�ɱիW��̊���899)=��'g���خ\��^��MHXƎ�4�1B�Ps!��;�J�����i�:kZ	z~���ss�s}�*��!��+W�E��ᑜ��;w�~��-Y����˖-K��:.η���lٲ������s�ҥtE�NHHj�)��C��"�_�j�9A߲'N����IIIE�A'O�d�V��;wZZZ��ٝ?^�r�{fd��ᨨ(l�!c�.\8&&mI�T���.����t��I<@E�K�=�q/��ͫV�6��2e��vb=7-����C�(��r�|hӦ
+49K�,5k�����|�z�j˖-!�VVVٳg�R�
+u�KB����?^񠩲~�z��g�ѵkWm��w�څ�˗/�*�&�=rssC�M�2%]�
+�/@)���i����`___��������W�^��Bl@���
+�hѢ;v�8�L.�6l�022�o߾B��z�:c��b>���+Vhv9}�6�2�&����i�VHH��3�=�_�FF�.\�
Th����;w�YN�
`�	>�`&���@�7n�X2�L��(�9�	���F�5�����hg9::�{����:DDD �(��ŋ��+m�� �սi�&�����!CPO�6M"ˤ�8�fLt(�*=�[�O�.�w�-Zp�9����o��*��o�0��ѫY<������:�A���W�
+��~��F��e.�Ͻ��q�Jz�����
�.]zݺu��3��n�����|��U�ki�}\\?�4y��-J���EUz.?�V^�[�n
�{���خT�9��b������q��#|�b����={� �ƍ'M�T�^=�s��sCr��}j�kp-���i�����S�ʕi�A
f�d�9�#Y�f�,���
6��(͚5��-͛7���Vw�����E}=GK�j���7g��s��s�����+P����ڵk��s�'99�U�V4!:]��z.�0�?g=g�9�5^l����m��?c��|+''�4�����o߾e=g=���
��|��q��!����{z/���.\�=�^)KKK++�t-�J��לe=7=��!��/_>~��Jtt4-Bd*	�媕�Y)C\\���E�4��jV\�p���x��D�嗝e=7=ONNvww�;(��,�%;v�Θ�`��"�O���qՌ3��ː��P�padT۶muҏ��겞����H�����E�?~tssC���ӧ��`kk�,Y���J�ƍVVV����m3��۷�pX�j��juػw�:��+�-4W�x��#F�_ٱc���7���'M�U�ľ\Ԍ�U�V�8I�J�)�FƩ�'N�@��]䄖�9��r�Q�F��`*�u5٩S'\5v�X~⪀�"�J�(!Y)L3v�ލ�о�X���E��z�g�Z$Ƿoߎ�
6H�.�!��|���|Ra5j#\c�8����"ah,���h���=��s�ΙJ�5�������������9s&))�V�ȗ/������C9��<��[H�i�(�o@@��A�hWM�:�lo��!����-N�$�lg=W��7o��}���af:���������>}��P��t�^WZ�۷��_����G�Ȣ9r\�pAWqn۶����X��必:="##�8�w����ڝ?>�|�4i�ė��"��>�)S�z.DU�~}�s��R<���kkkr����C~��-�:ٲe�����pȳ��~�!P�X'}��ѣG��W���:�v˖-�o��z����ٳg׮][�߈���{�
+�Y��t�����L�����X�����d�\M����4h �_�r%�_F��޽;2�Ν;��1+
��lrX#����0�<LLL���˚5��ɮW��f�ḠY�f��nܸQ�1�r��J^��yz���*U��]�V<���������)��+BX����\X�0ФB�(Y��x����C8.��&��B&k3U$��.ٟ�Y��4d�n4�X�����HE�UW�X�̷���F�5��2|�pg��:��.S�L���nj#��F(���[�
+���jѢEΜ9Ui6������"88��Ã�1j�y�\��������m��ӵ��#Z�<!Ts��%1������E���Pcm��1=?x𠟟������<��0*��^)_�<��̙3�����%"?��<��dii	1���9s� �Y���>�����?��\�K�癒/^@���Pg���ϟi��m�8�-g�$2g�ԩ���̙3q��ٳ���U�9^Ϙ���m�:88(��޽{Y��f��mӦM�	����%K���O�4I�7B�4�����B��߲���֘s�s�A�����������laaq��i�71,����H}���?�č\\\X��Mϓ���v�d˖-k֬���1´��s�U����a���_~�O�M�6�ob�L��:93a�܎V�vss�Fυ!%�:u�$X���&�P��������͛7o�r��q�ƻw�f=�!�{��O�111aaa����7o��3)�Y�hǎ�3gNS�0f�C*�Y�f�C�k��E�)Z�(��!=�ٳ��N
+ƢE���v����@�4�\�@<���빮�Ah����v�JI��N��lA1��L	�\d�̙3�%&&��G�y��q�	M�^�zѤ�e˖�t�����Dϱ�2�V���0�˖-���۷/^\�5v��&M�,\�PM=߳g���'��[[�-[�P�ˣG�(1����z������e�������Q�{o#�}�F��^ڴi�!oM~�=<<t���`��ܹS������nݺ�����J�*�w�FD8������z�%�p�<�q4����Lh�9�^9x� r�f͚��.^�hcc�@�%/3�>}"�����111�;}ŀ�J�ib>��x߾}���������Z)�������<y2�_[�r���ުU+S|�X��AϞ=������}}}5[W4S��ŋ�ի#Cr��u��	�'���%J�P�a���(V�\�v-�X�N���N=�i�yxxx�v�Xϵ����x�bųǏG��z�P�A�<yЈKHH�	6{�l�<�tvՒ�:SzE#~/]��!i
+
+BJ�.�C=]�tqqqxyy	]+�޴im�3���͛�|*H���-P~ߢ
6l�Y=�;���2QW��:g����Ұ�0�0w��%'�x19ǎ=���܀�=~�8�����4@0��s���<666K�,�u�/�s�S�Ny����{͚5M�5��X�f
�_!!!�J#�_r�z�Y���ŋ9r���z��)�&�s�r��u���F��2~�x�y�B�^�~m��5y�d�ˏ�+ý��(Q)�T��y���{���ϟ�\pd֕�X�uK�����S�LQ�ԩS666VVV4����+�=׷c5���U��z����ŋ�J��-2�B��:��Ǐ9s�̒%�˗/�����Æ
3�z��y`` �޵f�#I-h��(S�sݲu�V}�ybb"�i�_�l�7o�d�7��\�̝;�ٮ];Uhm�+�:5�\:{������TYU}���7��� ���O���G�!>"^��յU�V�ݶm[���%��oY�v-L �ԓ��Ɇ���L����znZ��+VLf��7⬃������6����?�2���'?���<{��$EK=���!�t~�ڗ/_��}||hyPy�/���?��ӧO��y�3*Msx�T�y�…��D�IWwS�
+��T�:	��Hrr�ҥ����@�g�]4$��B脤��aÆ�
ܹs�/_�U�^��C=߰a����*=Ǒ���ũ���**���3���N��Q2C�x�\��iӦ�9���J�*F��߿��q�Lų_�~����Y���)�o޼�_�>r����������:�s�]��DFFJ�[��2�j�ʔ)S�깢�s��R�N>SԪ����1�9�����1�8������8��0`���)�����r�ʡQy�ȑ�ԑ�͛7�QA�:��F���wtttǎaɐwAIT֦M��;w.v��-Z�PL�I�*V��u���FZ�F�Jϒ��
+<��<;̋/N�ōvT��͛uh�Ϟ=�v��2�9�;�X��{�*�sE�/�`�?y�9���;��:����j�f��jժ?��3����C������<u���pa@@��{�>|�R�]H�"0v,�ݏ?:;;?z�d{K�*T�.�Y�|U�9��ūW�RR�]fHO�%d�R�hS��@��9�b�w׍�n��\�h���'�]�V���7$$�^�zJ{T��~1�-x�`����_ڼˏ?�� B؍f���i��P������q�"���X`�r��[�RRW���ʕ+��R$Q	�謌��_������|ժU��-C�I� ���߿d�[��Z<T�z>|�p��d|�D�U������oy����A�4���BCO���^�gΜ9jԨ��`Z=��g��(��PrJb�S�0��߿S�nݺ����
�Q	g�Nܣ0��*111���:����0���۷o���!#�W�^�&�.]��NNN�3�\���D��'�={��;w��am�hт��a�f��[z���:w�\���kԨA��0;���.^��m�)�� ����]uXU���ѥ" *b*�#�X02���-�:�c��X�b�	���1�(&�:������������npϹ���>�{ξ;�~�Z;�:}�f����h�O��L��5((�m۶Æ
���.]� �xW�����ܹseΜsk�Ș��6������hw�D`�L	����P&˔)�����S�"��E����?z8�������R�x��E�…


/_�,�E��~�WQA������G}s������B�9���s<�O'����e```llL�@�3>��� qݺu��;������Ӊ�B�
+mٲEX��m���eȐ!����#\�t�֪�@\o�\��x�"4�"E��&+411ѫ5М���ӧC/B�4h �9>ȍ*�s������Q�F)0uSSSɉ�X�2>�(rss)���o���D:Ϯ?Q�>|HUadd4y��/_������]��[8Ԯ]�HD],--�B��i0��9>|X��ׯ_[�nMN$��3��|c�ʕ�7t:���;w�С�����Nx�cÆ
�PP���˟9sF��x���P�dI����;<<<�ԩ#s�����|0��9=z�$1�9e�j�gϞ�9/���q��5i��B)2Rf�\ɓ��>��$��)zh��
+200@��n>��Fqv����o޼�ڵ+uC�>|nY(r���<  `ƌ�:uZ�~}������9 m(K�b�Wj���������t���L��WUx5O�X���C��w7lF��`5����^lv��Eڬ��Ͷmۄ^hѴ�T�|�=r�Ȋ+�)	>���"���L�}
1-|,\����<>o޼y�…����<)�M��)x�\��c|�,����={Jpopp�ٳg�߿onn������Hz��m�H����k֬I�k{��KF�^�T�}�M
+C�i��h�[�j�RSS�-0)))ݻw��
+z��
+�h�"
+C�^>�������������|0��e�UӧO'�@]�tѓ��|��V���7�or|�H<�w�ΧC� C�<x�HDDD�6mΜ9ƾ}�6�>_?��	1|��A�"U����4��mp��ɡ�h������U�xqR�1슦\tX`Ĉ��s$8m�4������+��|0��e�O�>x�R�J�?E(>���M�����.Y8�8��o߾���O�:5{�l������y� �"��6�����y���|4��ӣG:�v��5�ɫW��Q�Cc�l�C�(׌3��/��w@{�L�ٳ��C��\dηH{w�<�0>�8��x�fU�F���PF�y�s�C�2}�H<�w�%���H+����_�"'0{���ݶH灃��8���NNN��?y�D�_+�ɓ'���ʹ|��f�)Bn�Ŋ�[�+V%���ݴi��
+:E�(\ ���|~��e333�������a�J�|.�;E�1�K��]sj6���@��ۮ]��K����mQ�箮��z��Y�&��Af���������={�[??x� -���|vv6�����Ν�xܿ�v���t*B��
+�.��\���������߹sʛ^��V��E�ۇ~�M��	������wzd޹sg�fk+�S3gδ��@1K�.-������i\V�/0>/X>''0��}�bD^�|9�s��9�1OO�*U������ݬ����듂�qRԱcGZk��'N��[##��~�M�{���(����s�����hrt��]y�@݂��g@���U��a��((9�9�����J�TRRR���KQ��]�tI��K�,hV��:��=����JKKk۶mϞ=�3H`�ڵ�KK�k׮���CN�����ʕ+"+�ׯ_׬YC�JE�Y�lYNN�>4qHH�<j�(%�4�R�J��NB-`�Ν}IA�C�nԨ�G��3m�3����C���D��^�jР��+]d%=s�L�z�HG�ҥ�^��:t(J�d_ {��ܼ��@~n%B�H��?��3*TP~��t���纙�&p���…�r Hw�ޥ�r�;w��?���	ggg�!��
���d_x��]����90�Z`ddԭ[����˫s��x������Ը���^E{d|.o� y�:{�,��vssS�����?�������._�\?��P0I��>~�x�AMPQ.55:<�f����n���׿y�Fd�eL������7������_ݾ};��k߾��O�DSF��\�r(��#F���Z�mC,77��6�	ί�ׯ_�����U�&����o�V�X����2|��OOOhn�)<���M�4�
l���344��=�,&$$4mڔ���T����ŋ���٪���[�����������w2^��|�ӌ������,8ͦ:::<P��Ν+��ݺu��LJ��+U��k�.F�7oFm��6�纆/^І���(u�ٵk���`UT}]Sѹe�ՀpQ�^=���}�&z(<iii�n�T�R�����A=AѠ�`x�%�%J����yX.�g����u���h�Ν;�1͔��>}��{�N|*�L@�C�dN�+]�4]�:uJ��BSN�8�=a|M�6
%eD���P3���NaӦMh{{{
mB8r��͛7š��1+��Ù�?Ҝ���-tr\����B߃����h�"ڙcjj ��9ꂳ�3�V���EI��4�8h˖-,nݺ%b]g�1�Qx�B�
+Q%
+z:LB�-amu�������"dV������m�d|�;h׮ڂ��iw���������t�<]ߔ���DR˭��}��d���}||�w�U��ona|�;����	ϔ�M��]�C�Bw:'���r�����=���R�����Z���̥K�rLޱcǫW�2fP�5k֠���\w���rG���W0�a��q����W�9��V	�`
������tȑ�\|��4����T�1��.���KI�[���)h�Tt�R�/^L�h�e��B����:}�t{{{brooo��y-��>}�� **�6���K�.�)S�6;	]E�r���zff&�7!����drr�ȑ#���h���Ϗ͓���)�q��8e|^�x��]ɒ%�;v�(�<<����tGDPP1�h�s�s�ƍe�t���jժQy��O�0A:d����ߟ��ZZZ�HdT�<x��frw�,���o۶m���…�j��0R�E��C�.Z�hժUe�r�f���={VX��cǼ��贾��ݔ)S^�~�H �عs'j�S�N��u�ϟ���ѣG�������+WJ���Ehhh�֭�����ܘ�c%Q�N�bŊ����9������%����5j�ofeeu�ޝKy��򔈬B����DK�.��ǂ����Q����c|^���勫��Ds�`�oܸ�H�S`` ml&@odD�$$�
+����'L�@����M'ڔ@u?t�P����ѣi�ЬY����tQ�	�{�K���E�Q׵Ykpx�������'O����:t��{?!!��
+T����صk׎1�r���i���������"�
+D��ڵ+w�[�n�p�e ..�]�v����b���l�S��l�bMLL222�,���*i��)������כ��B65j���K�.1�V/^���ッ�)�D˖-�u���T��P�^�;v��_:h��I�e<}�t�̙�prr� ��*��h�a�^*�s태(4Hg�d��}}}AD|�b|�?>'�[���!�5J��+U�ğ��<��;Vǝ3@WܵkW۶m�[�I���{�n�D��A,Y�U=r�H������ŋ��BÍ����3>W�ρ��0>0������2g�k׮���]�[�n�7���/]���I���,-�[�n����h�����
+z�i�&]��lmm:$MG��U�s���oߞ�)��4\\\tV-���e�5jDs�&&&>>>���g
+����舚ONNf|^��>}:U�Ξ�:t(r ������(�-
+�իW< WZ2������cݑ����GDD�lْ�s�j��ϟzg][�x��)YC��k�������t��6Fp��;v0>���'<<��*�󇯼Q�<t�ԉ;�T�D������!:��mۆV�ڵ+��D�޽Q�P�u|�/V��<"b|�>=z4�L�2Jne/���w��mٲ��m�����۷��Ç��M٭^�Z|^�|yww�f͚�1"O���ի��챆OLL��C[��8��9�h����3gҸ٨Q�:u�ԭ[��ťf͚5jԨZ�j�J���/nhhe���~ܸqڑ����e˖�hт\��r__ߝ;wfff2.�T�P����A�9ǜ!!!S�N�4��W�4h�	>�Y���?��-Z��rB���al�Q,^�X����F�iӦ���K�=z�����Ǐ�Bu�n������٠A(��Y�<q�4�����'t�1c���^<uꔫ�+t:��k،���'O��xJ���?�L��͛㎏�O�ƍ�駸�8~�"""�e�Kg��x���S�i�[�R�����\���������-7�� 00�رc��@*b���L��
6lժ�˗/߿���u��i:�1d�h������a3>}�6#��-[�������I�f��sr���&M�p�
+

=z4����޾}�Mʱ���t��y�޽:.*��E�穩�111�>d�s�w����r�
+[��qt��M�}�v���*Uj� l`x����긟�AG�:��U�74H<�=)��;v�����*V�Hw�~ٞ�tP�P�A����?����믿꾨0>�����͛k֬�߿��չ��١��ّ|���igg��Wf���e˖M�6�u�֯^�����>nj3q��I�&�Z�'	��������Ϟ=kٲ������!Ԯ];##r��ru�ԩ6m��>?�%\zt��=6������� �j��9&111��b�
+���>}��fdd$rbfffdddoo�f��Y�`�i����J��Ok֬�;�f���j"���W�pa�3f��_�~}��(Tν!l���j�*��4��ŋш0��_���2|�𬬬���&M�4mڔ&�Q"tp�G����O�8�n* F���~~~����G2��#((�m۶Æ
�2e
+*�gϞu���2����F�t`� ��&]��}���Q���LX4gΜQ�/�v�|��ɰhhÞ�}����9��޽{pp0��͍#s�)���W�ҥ�
+��/�������x��K7������S��2���\�zuÆ
cǎ��R�T)>�C��Q����Q����M�s��A�N�0A@|���x-v.��y�G166��a��+W��t钼�.��9.0,��ο����p�!���K$B�6��Ξ=�<�������~ǁ�C���[���S�r���ի����q�ƾ}�`��=�cǎ�jnc!�3���+t�C�	��.����y��\k�ԩiw^	����naaѸq���=::�I;|�6my�V0�B�K��۵k�e�z��k������������㡓/^כ7o����$W/�{xxdff~���͛7�^�z��)��֭[gϞݳg�0�Z��5j��?���CMb���(�?�xO���@?�����·j.\@�+V�}��+�}����(`�C!hg��&r�o�ο��?lݺ7�=:f̘
�W�\9�|>o�<*͙C�W����j����00�"�ݻw�d�k֬�`|W<_��\��K\�#����+�Z+����4�c�pww��
+H|N0"𫱱1�e�ܹ���[��9���+�	�o¶R|`V�|N�(K�ڵ����2s�����cǎ���:�&�AE�۟0>�2h��L�2:uD:==�~��
+�̠��s(��!44T�z���M�.]����v�_+V��_���
�\H����ӧO��\<eSS����+X��n������Rs�?~LIIy�������i_�|9!!��hѢI�&
>��ϯU�Vnnn�*U�,Ʉ�����+J:mڴ����W���Yg *��q)p���<O�y&K&6lHky��y���~�
$)�
+���z�Jk로O*�B�9�M[5��C����[���_Z:�Wą�~E�A�z�;�vyK�W=B��F�ߒ���������o߾��0>����g׍��jԨѻw�e˖a��ǚd�J�fg|��ٳ��{u�
�>�2(���%z���)r�<���}��	��-[�L�����RB�711qqq�݁���Ç��
+d`���C>��l�s��Z�_����{�|�0���P�H���+�X�Z�T8hn�zH���w��-A�F���]���|hNN΍7"##`3J�[wrr�ׯ�ƍ�ծ|��͛7GO���9��[���)�����*R�����b�s���;����<,�Yd��)W��a�ҡ-
+�/��)d�����Ycc�6m�l߾���6l��Wԗ.]*-����%;;��իk֬�۷/�=�P�J���J�#�nnn-�^���}��F�ڵS��X��ﳅ�΅�k�-���o��a����+�J�Z�ЉV�^]�zu��G���^��z�xll�Ly`|�?�׮]۳g�ҥKs�nkk۫W�������|��7o$����رcQ��4!��K�UTW�ƍ�M��icY���D1�(��P��K��ﳅ�΅�k�-���o��a��i�&�4��-��2dG�Lӌ�2#w0>�+>�����!!!�m.6���9�m۶�i�ͷT�V
�#'�|ˑ��|.�ai۶mϝ;G�d�J��,n0<=Z"��Ph�6����9�-|w.|_+�k�_y�|���/�5j�@}�ڵK�k˗/�.�mSA�g2CLLL*W�|��=���\��Cjj�
:u�dee��<x�3g����uh�;v�ߡNۑ�_GO�tXZ�vmy�/���[�
+�Q��(�R�|^ �Վ;��vfγ����árP�kԨ�ѣG���M:�L�xsj���y{{�r'��g��4ܒ:Hr���0{��z3"R|���[0I?��	����e:,�~���ȭ�4��Y��G�֥�Q@�F�'$$0>��*dݺuQ��X���EGGs�PXG�$lj��XY<h��9�������>TD�
+�o755�ѣǮ2�[`Ղ�I,�.,e�4޳gOy��L����Aݍ7��� ���Ʋ<�����ח[��gQ�U�VU�a��\]8x� )0�\�T-19��]�v��*�rpp@�����\s|N�׮]+8n�8q���=�_Æ
�����=���2��AP�佟�6�5�f��Nl6�N�)S��&&v�4"��������8CCC�233ׯ_���J�^�t�|��Iym��ӳJ�*�۫$����QINNf|�5�!�e�j(��/_�/_NA{���'M��|��+`G��#X��5��C�A
w��A�25e���ې�΅2w1��������r��l�2M$~��e�`�„y{{S@���x�����0SSSp`RR�8����뾾��/^��y�Qh^N��r��ե�B��.�YYYP�i?p����}E]�w��D?��t�����u�+��9r��z���ݹsgZ0upp���d��Tĝ;w0J:99)�$��\]��9s�>L8;;��ɓ'kh&G��5��A���0>W��1,����-[ꂣ6M�ڵkm۶%[��͍;Đ�5��s�UY�����pj��q��Ѻg�:u�^��M};0�wyt��I:pjff�1k޼yQQQ			���ą�����r���r���S�eT8t�P�j��簿��ӧOQ���Bߑ���UD`` *��~SW�`o�P�g̘�m+�R�_�FIQ'T�Z��A��jժU ^}
+�ې�����Ʀ_�E���F������8�BV���;>�W�X���ܜ�]�~�����"��|���%��Hq:
+�C}�ŋ�X�֭���`D3�V��(0�ȑ#���!������Iu-,�999�˗G�ݾ}���P�l<�UթS'2QG�%=[.��H�/_������#�V�?>���Ɔ	�n"..��RXYY-[��9�!v�څ�jӦM^_d|��
+}��bR�Ν�����ٳG�3Ү�d������#�?"���!�͛��\���Ç���������D�Q�N���8��\k �[...*��p�B$դI�Ǐ�{L�U���"	�G|D��zC̘1���3��q;v�L�2��׬Bd"66��%�3��|�iӦ������;����޽{#CCÉ'*��&��H�m���#�?"���!���h��ɤ�#%%�M�6k�ԩ�vv$D�)�޽;�3>�.]��z+^�x�����$7��޻w/��|�������_�~�3g��kѢb�[�u���������W�^�7(�{�ʕ+e˖E
+�˗���W4lؐ����f�!�>}���U�\��ݻ�Bh��Y�&�d߾}�K��y>���sX�fff�[։����/͚5����SE��H�"���Š:�={F����j�QQQt�6�)0>��O��J����w,X@����~Q��͛�L��=m�4V!�§O�|||h�#22R��"''�"�:t��6m"�[x�ԩ�j��rghh�jR-

E���|�
+b�7n��X�h���Æ
P	?���*�0>�+0z���<-X`��BNε�nݪ�|*���	:t�FFF0��~	�b�ʕ�qwƌzX�>�*U
+�Wq'��Nq�I�����ܹ3޲��<x���s�߿733���F
Ӫ(s�'\DFF����`}+��1c�b`2>�^�x��:fZZ���'`<{�l�������ϯ[�n|�,|7,�N�ruu�[�.����#Ο?��{%�����x
+�[ ��ԂիW�b����3g�zҤILJ��m۶��:Ȫ����͛�*���b|�'̙3�ս{w�ɜ�˜Rq7]ٲeɝ�1�
���{rr�ӧO[�h����ӧG���!C�\�x��.Fz���Q�mS�֏�\����=200prrb~��={��?O��xA�U�*��\y�(*U���B�)�|zz:8ϗ+WNu�r��|�c�����s|�<7l�0;;��B��HYX���f͚qw<<<pG�-��Ν;i�e�ʕ�/����QR�Tj9
��\y;vuJTF��̤��eʔ������͊���ݰp�9�&�<L׉'���Z��Ǐ�={��FpmÇd�c�W:>�3k֬��ehh-�b~��<O��Ĩ%A��ʣ{��s���I�%��+Y��;w���?���ݰ�8q����~��i��/^��C�P��bx�^����oݺu�C�E��j�Jb�J�*�/�G%��@n3���N�<)�2B�B===Օ �s%����211y���'���;v�H�\nܸ��N�ؽ{7�7+++��#�sdCA�a%tЮ��G���tP�LMMA)����s-#$$թS'ŏ���k[[[��7��F�…Qá��2�����A��]�v�<Vd4�>�]��2>W~�CC��"E�\�x�U��q���p�>}�=s��mKKK(�[�la5&t|���v1u��YL;��M��B9;;�788�sep��-R�{\Y�f
��=|�0�4��ڵkD�-Z����T�dxx8����ԫ��޽{�zhЅ��D�.]K_�pA�)3>W�'OF-
2D�3qqq��yݺu��Ԏ�{��EȪ2;�F�A��iu�A�@�244455�ٛ��F���8������W�bE�����hR��?�`5�^@5j9��ի����ׯ_���񊹹����Y5
+�Ǐ'g�?~tA��뇂���O�p�����8w��	�7}������a��;�n۶��Y���.]�Wh���wb������x�D�A�����~���y��*�0a�<1��q̟�q��yکB��(N�W�.T����*V���>͹���
+1��n�"+~Æ
�����˗�ŋ+�eF`�
+ȏ
+�����ܴi��?�LL�Z�����
+�
�i�&!!�ճ@�F�9���{a��!m��ݻ�����b<x�S�vm���yh��b�7���v��=hРbŊ��W�Z�.�'''��+W�oѢŖ-[ؙ#!�e˖h���(Ϲ�����ȶ��+��`|^ �ٳ'�g޼y�?]�v����FDD���>|�p������{zz���Ӛ�����K��
+��!<<�����U���7oޜ��̚C(x�����@@�Qg͚E�U����<߀�V�P!CCC�����;�xc�h��&������5{��=zT�Z���P�;v�j!@6t�}�����QTn���ᐐ�C��1���v�٪�b�amgg�/_��~n�oߎ����H�?�+nTNӦM�"-nnn�=�%�_��ڵk���&L��t����ݽnݺSJ�(Q�hQPT\�!q���imm]�X��%K�)S�|��+V�V���F���۴iӹsg����Ǝ;y�d�.\�t�ʕ+׮]�a����;����;v�ةS�N�>�O
+��;����ݺu�u�I�3����
���A�U�^���$P�H�bܸqG��B5J|��g�\5�˫F��"����ϙ3gŊ0�bbb�+�aŧ�@'B͠ 0�6mB%��,Y�z�6m����Q�����֭[���[�hѰa�ڵkW�R-��F���١6,,,���-���؇W�X�'N��f�d��ÇzK��!��p����fEV�2���/�l��'5d�C?\�~�ȑ#��ѝ��|��t�.ݻw�oٲ�����K;>A��F�ժU�r���m-C����mٲ�I�0�fgg�U��H�Z�P�R��L>x���5Zjذa��G������g(��	�nh#�6�0��B<x0�]����L]jE�T��Ǐ_�|�޽{/_��H���!bH����L��O)))ϟ?��	(�ߺu�ʕ+			h��O7o��z����O��3f�o��!0`���0�x�[������6o����w�*���~~~���G&�rϞ=;<<U�~��?�k�7��7o�Da�Y�h̢#F������z���'
+��SU���fP]�t�ի*U����ԩS���n1@GGG�ݻ�{�ܹk׮ݹs-����/^���~��!##��@�Ezz�۷o�+�>�����̙3aL!����occ���`b
+B-@m�ఞt3{h8�����(���!..�֣%=�
�Y]����������"}���?t�ˠ�x����Ç��R)�&��_�b�Z���80������aLԵ�A�rqqAsԯ__���sy2dj��?��߄�I]ڔ���ؠA�K���W�VK0#}4|n0�Hi�M�l�2���`	js6CI���Ն�U�^]����t�R�J�f`s7�\�bjjjdd������-���EL^�fM��菬�T�իW�w�N����!�H���
+�)d޼ys���\1>����TKŊ�;�?vvv�͠� UR��ə<y2mc(]�tddd>�(�2v��F�������ϡY�fH<OI��c'�a�:�/A3��+&	0M�ȑ#��p����
�G1���IKKC�������<�vܘ1c�;t"���E��>|� ��so��'B��x��ٳgݺu�J����Į?|C�z�Q�&���D>��L��M�x��=m�211Q�ڽn��/^�(؜�w�[��e��3>��ʕ+�ZΜ9C_<x`aaahhx��9U�9rpp�R�@A�X���N;�A�w����ߤ]W������תU+<<����^�S�nݳg�B�y���{x��?���������}||7n��qqq���0ś�?��������<�״S�z��={��U,�8&rD^�6M�Ԅ	�ԭ��֐+]UFa����+�2/�%0�����NJ�(���6mڨh�A�wwwG"U�TQ}JS�6l�O//���,t�)S�H<_�\��O�fdd�{�9INNƝ-ZHk�u��!�b`�z�OR5�S���_[�j���K������Ou���4&�1����8~�8�6�8��������Ü⡍?j������3o޼e��P����W�Jsx��!i�j�݌�Ջ3f�N
D_�(�]��B�.]Z-G�$���.S�L��V��9��:@���~���|��Z��ر��i)A���K�y�J���J��^��Әx���Q�F}�����ŋ�q
+7A��_.YC�� �i����
+��L2k4��v�Z����+Wh�$����[�ϥA�����Ksb�r����N011Q�Ѳ�s`|
		����;Ç�q�L�"���s�;(]"q���a�S�vm|�^f&��H���4��n�v(�'�?~���3:��+A� ���l�}�8%1B��s�+�������222�u�(�,�t�Z�ji�w��E^� ޺ph���8A���iii����R%M:�4w�\ue�[˫Q�FϞ=��5i҄��s�N	�R�d`򻸸���v�mۖ���K�.͚5C�aaaHZ��4|�Ô&�aiKJJ���ݺu;v�X���}}}9c�`��1q̘1'N�4i��8%����s�+��v@�j<�k�P�jm��C��ٳ�/Āt$�
�s	�G���o�����ܹ��O�:Ek�h�����.���Y�uL�m������㔒|�Eb�`i-Z���L�������iR�ʞ���"�h�"ݩ�#G� W���+����K�(�5TtU$?��L�0h�3&°�O�|XVVVE��t���7oB@MZ[[km�LI8p��e�o߷��B�\�r������۷oMLLlllXhQ��ѣG!Ҟ��b-`�޽5�زeM�����&sؽ{7�ֱcG&�4�B[Yrss)��̙3UI��鈁J"##�����¢���i�=~�����?��0`�F���۶mC��v�ʤ���52�F�^�v��ET�Sׯ_?��~�zV���777dbb�(K���cooodd��}�����?�ƍu�(�1�����ۏQ���U�V�Ś5k�������h���͛��'�:Z�����Ø�^���]��L8P�`kN&�H&
+�z�ju%��ӧQ�F�>��͛��\|����Ť<���(���ŋQ'�b�ʿ���ۊ+Ξ=��Ax����;�̙3���>x��S?j�s��U�#�[Mɶ��ə3gB�iץ6eRkP�����ӂ���قt���U�t0�q��رc��AGw����”)Shz�z�#:gM�������!zU|��������9f!�{YAq�yn��?r�w��'��w��[$^��#>>�ˆF��.>��I���^��@w���566Vq[�gϺv�JU���~��mAٲe�o�ȧb��	JϓrΩC\�!;;�����y���?^��<xp�ܹmڴA�c���;����#�|w.
+�\Z�xQ��&�9��%ޕv��>|xbb�*>�$d�W�^�\�2�;@�O#@�a�*T�j#���n/\�P�1�ނBQȿ<͜�T���U�"�Dڷo?p�@p�.r�%��%<�p�9�s��fnnn��8��(�t��d���J8�	

=z�7u�4ӎL�P�(W߾}��"$!**�&X���LGz�9s� �&L�s2����u�/�|oEPi�P�,%ؠK�.0���___>�H{Y��X��s�;�+ %<�����If��^�ksD�9�J��?�_�;h�[u�fZ�I����1H�*U*Oz5�\T/�	FX~`2���K{X�7��9Y!!!�$%OR�,e`` y�k׮�ҥK�$#�eE�a�G���\���'gggy��{Q|��Mz���.]����#�j�i���P,椤$e>z�(��#�^�O��4i��fD��S�R�+VL�����!�)B���G4��W޻���Ç���/^���O3}���~�
�������Ktt4���b�U����e���wC�f�6m��I�CbU����I�Y�![�>|X�d	l.��*U�lڴ)�tZ�x����ζ���H�j�B(�1圡`�W2���s�T�R�/\�0p�@�V7n�k�.���|���={�賨�?��Wހ��:Ĕs]S�E/��Q�By����\���{R4�Ν;�2�*��0�z����SC���kBb�9���袗I�@7|��m���R;::N�>��ӧb-���+�y��U}�srR��
N?DPPIS�t� ��_�����U�g����w������$W�Z(ؘ�p8
�jߴI�S�tME�L~���ʕ+s��mܸ1�"!���FDD�BE��5�CCx��Ehhh�֭1*��͠�ԩS�X1��#G?~\@Ǚ�L2��kb7o�\�bto;;;.)KK����/]�������F�;--��Ѥ
+433������WX��6K�f��L��ee QW�d����'Onժto�++V<x�޽{�He˖��Ǐ�޿��AX�>y򤽽=
�C�=t�УG�����(?Ŕ������q{�~�X�.����:t�7o^TTTBB�q�p�…��صk׎1��R`��g�FDD�3&O�2e$F�����2ݒ�ϱ�G����Pޟ�Y@y���355E�۵k'�ujmN<nذ�v�l��˗/�N�-��5����8�ҥK����ŋ�������`i5�p��AAA�v��a�'�˗/�9��j>>>2(�-�<�5JL��
+׮]+U�U,���ɤ��/���Q�����u������T�̙3���������x��'���:T(����h�l	O�HLL477744Tҋ_&���%Ȝ�|��`��[&:��iݺ������q]�p�-Y��@w��>�Ν�n߾=��<ɤ��-�C��������͟Lb��...z"��dӦM��-��vɒ%�F4����P��ƿ`e�L.b|�:�c�,Z�h�d��u�/�'�شiS��ԩS�����\�gϞ1���X�v-�
+�erǎ��5�瀗�W�d��ׯ&&&���ↀ�g>}�Y-]�4��B�%����7o޼^�z[�l�뻰���y
�A2Y�X1yD��\-|>z��|ˤ�lAǘedd��K>
h�� �A���E={{{��u
+Đ��A���nj�+��LV�V��F�|�̙��I
+
+|��y�����*TDn���/�"s1�l=��y������cK��ӫW/��tg��?��������@??�nݺ�E�x��N�ruu�[��ٳg�}w.׵kWgg�'O������kժNT���,���S:K��U�:uk�/ηLv����޽[�=�"fRlq�����/_�HΦ���H�� I�9䍂fJG��",�}��f�%gh ���{.'�1������{?��p��T������rttd|.2>>|8�


}��f{��:U�`���׷o�^b�cop/T#���Q���D|||@��9�<?�=w�&�~�׆
��.�&
+�_d����|ڴixw�ԩ��#F�@IW�X���A�z��^��_GEE���o���O�3==�ٳgNNN��?y�Df�zn��xE�]�����9��2����H�e˖�Ǥ�����%�%��B�s:R$����AI!����saffj�bTI����Ç7i���;p���I�������䗗]��-�z&���x�W'i��Y�f��|��a�����ߟ���{��)O?�ҥ^G��E�|����Ż?qℋ��:}�4M��V�w �c�|������������5k��͚5��S�B�			��>}��W�IժU���[t�-��>�.\�0j~ƌ:��K�,��#G�=�����ϟ3>�!�C%�>�+W��O�~�:����a��ŗ|.�t7�2
���L�nbP�s~Aճ4��7o�G�4+et����uAS-u�>3f����k�%���-&�4Ǻ����CN������1`�����C��|ժUxwȐ!�&�w�ޡ�E��:��������������t�lܸ1nr�����W�������G\����K�n)Rd�ر��2��Q�F���}���ӳJ�*����ϕ$��;`��k���ɗ,G���!..�O��%HK����^T�(縆i��|Iƅ���ܹs(fÆ
�+��٘�ґ̷��OΝ>��tl��^�xA�2y�W0�2q�D++���T��<&�7s��k
ڙ?������C'��G���Y�0�����w���Ó���|�m�6��'nQ\�r%�9l�0��JΟO�<��?�h+���B��9X[[�&/3)�����6M�|�K�3H{��ϛ7���4��5k�Yw�غu����m߾]��|Q��{�����={�n����s�Q�|��K�.d�JO�p��Zp!=��>v�؅8ڗ�ws̘1E�a|��|�v3ЁGH�4Es��,�9IaJ����|����㱺��4�7��C1�^���\�����tZA>w���В%K.�\H��*Xr�^��=����9�o���nڜ�]`�)��G��CCC����VZ���oii�����癙�&&&`	�+p>����*�BW�_Z:�Wą�~E�S:���@``�h�C��T�h	V0�Mάh
+=|.o����U�Z��O�����a�%11eԐ�$��~r���+2>g`���C��B=+s���9�N���
��^�D߾}QF�o���Zϊ��3>g�)>'Y-p��E���QƇ2>g�_=����������&?~��-[V�<à�z����������&6mڄ��Ջ�9�g����s�$?m�4�
+�A�P@��" �xsځ����
+,ޜ��xs��
+�T�Z�}������Ak*ƃ�+�x���sU�Aw��	��ܹS����s��T�R��ynn��������g��h�s�2�c����s//�|�d�F��.�@d�#f}��b�1@#�K�,aL�!ddd��v��à�L0>���������[&����@�=���S��۷1�t��EZZcM�������e���������5��C�ɷL€277����)>���ζ��611���B���7�ޕ�Πj��CJJJb��W�tww���g|�^>355ͷL�y�Mckk+J���T�-½{��-�R�5���R#�]����'�5$�������\>_�n]�b�T��7n�ugggQ
+E!\�p��K�!i׮�ӧO��X:6l�X�-[������|�d�F�bbb�������):�*2y��Q����)J��V�Jw��-���ɓr->lذC�=z�(++������
+�|ɒ%u��!g,���cu��L���y{{ϛ7/***!!����p�ž={��T�\Y-2)b�-w��AѪT�"��~�:00��".L���|H��Z�jq1��(�tփAHԕZd���GR�-�����(ڔ)SD�a~��gŊ�[�vrrrssc�By>����]��ȑ#���e&����v��!�}��������[kkk���*t 7Z{҇�V�R��s���u���<kAAA�{w�(�Ȱc�d�ΝE_���t###KK˜��m���h�y��1yֲrN|�Tt��u� ����}Iϟ?��6h�@d����utt400HNNf�5L�2�����a*:�.@���9�Z�
+%2d���u��i��I�&L�D9g*:��|.^�X�%%�:aaa"+����I9g*:���Ɗ��?��Jz��E�)� ���&���3�AG���Q�qㆸ����nbbbii���-�r�����&���3�A��,Od,'��Ǐ��41*77�Z�jl�y�+�LEg(p$$$��їt֬Y(�ĉ�T(8T�rN���Tt��‚ �cǎ}I[�j����ʼn�P���(Ttt4�d�)�u���Q,Z�H�������dz�b(�h�x��1q3++������,==]4������qɒ%?��$Y����ٳ?~����v�̙…�Yt���gmm-z/�����8MӧOg��5�B�
+��th�8�X�:�Eg�>���!��
}I���I�M��?nnn&�0I����9&�@�k޽{ǿ)��b:�z��A�Q�II/]�$��;%7n�E�ƍ��1�2>9��Ze``���(/��ɡ�C?���$�`AK�+V�`U�PP��������l�X�lJ(�M�>%:t(�������]�taU�PP

������s�4<<<P���x�(綶����<`�\�HMM511�����<�Ľ{����DCq����M4a�i���ߟI���M�6h���`�2���j׮-֘��,��Ç��8���������٣G��0�h�EO"|1�`R�Mggg�>�aÆ(�s��Q�^�z�8cƌa¬;��W�\9�			�x�|��͛7�W�ޖ-[��n�ke�#|���s��tN�����P�wU�\Y;[._�lhhhcc���&�:h֯_?�z��,##���My���+�s����N��AzR�ɓ'��%9gX�`�g�|�U��֙:uj��=�����c�cǎU�^����b���駟<==����������ϯ[�n.\@Rx�ĉ�N�ruu�[��ٳg���v�
+���ɓ���'�Z�j����+����xd�gϞ���Y�p�СҥKC�𙔔�?Vp�2e����>}*�⠫����233�H� Ν;a��s��|̷`8��_���cONN��+WN&�שS��	Kءe˖�MP�Z�z��%���^G�!Yz�����1����},$��Ao9::���>~�8d�P�@̦$v�؁Rw��Ie�����ټy3�j�y+���8x�`^�s��۱cG���!:%ޖ��_�������Ϲ�+U���?p7�ׯ�O����aÆ��p:<X��� K���f͚U�X1���Պ+Ds:RI@����1cƠ,�G�ֈ�C`` Z���t���J6��б�'񙞞���3⤟?y�_���j�H�+�r�֭_�z���"������Ǐ#�-[��6��"K��t�ԋk׮���@��������d����ׯ�*�^���ʕ+0����X"��m„	d{{{���*9�ҬY3�8mbsvv���'F���={��ϻt�כ4i"�#䤤$�ڴi�nݺ�8q���I�>}���IrP������Ǥ���+e��ח��Ԉ���S�NM�6�F��лw�;w��g�@�Q	Б�^���
+c��er.�۷�L�%K.]�T�%�I��N՞U��I5��]@?�Ǐ/^��q�F(���͹�(�kמ3g4�m�`8C������Bឡ��G�����SR�K�.�hѢ|;O{�����g�*Ubcc��iii.\ؾ}��y�
֩S'X%�ʕ���+\�������!�	�&&&VVV������NNN+V���ZͶj�
+��n2d��ѣ'N�8k֬�Bo\�zudd�֭[w�܉��ȑ#��`�<y��_�u��Q4ߖ-[���ŋ'O�<hР:����)S���v�ԩSo޼ɺ�h=��ᅤ
+B[C*X�
+�.]j۶-uR##�-Z��'%%�6(z$''�\��o߾��Ψ��)�����)�����=l`��#�CNNT����Y�
+�n�ȑ#K�*��_//���ǯ[��ԩS/^�P����”{��҄>p���k׮%&&�%�4<x��8t�tH�7n�x����3g�1��]hD����ҥj$�9>>��ի����ԏ?�����k���իW`$x��=(�/^D����ƍW�Z�}̘1��ӧ����v�����͛7oҤ	�����/����ۻG�x�=�����={��i�Gl��<0@����OV�D���˗/0�G����"�
B�,Q�D͚5=<<ڷoߵkW��СC�
�TCۄ�B�֭���oǎ[�nM��5j�prr*^�8�K=��ʪB�
+?��3��bll�ÇQ��/_F�p����#�-""C�L�Z󱐏�,v��?���6-R���ׯ]�3g�mB`�Yp�](��o޼����߿?�80��}
+
+\�dI(U�T�]�6ԦM�BilӦ
�6�ѪU+���1`,�������ݻwQ�*F���`��?Tw5�c��Z���:c�A�
+9�b{Z�J{������w��m۶�B���V�\�z��k�Bۄ�}2:::&&f���0�O�<	��y��G�^�z����ʼͧO�<xp��Y�WPPP�����w��#�� �e˖�� 3E��Y��X@����/�7vww''K�0���E�BAPi�CL��Z`k� P��!���#99#Tt:�T�T)**�`�|���U����СC�:��!m۶�\�ҨG�},�_d.�7...h_ӂ.Ⱥu�h��˚�Aw����u�VZ����
+�
5Ȝ�p/^�ȑ#�L����B�ڵ�?}�_�>�E�BAh�6�S�q�`YXX� 0�Y�2�&���G�MLL�z/i�NNN����_"���<11�����a�_d.d�P�HX^gΜt) �#F�`�������	�m����צ5g����޽��D4�c�>������z���>�/2
+2�*"�n0j�C)0L�&�)��+�v����G;��P���͍�����/���F},0(@tt4]�E����4��C�����-Z�5�m��њ�#��X`P0Gakk+t��3g�D������֦�����


MMM5�l�Ν;��%J|���U�������L���+�R�ڵR
+2OAt�ƍ��B���r���ٳY����dɒ)))-‰'hC�v�UM ==�\�rc�mH���4scc�/_�
+.\�`fff``�w�^�!11�p���Çg
� hй	�Y��|(D�j�!55����]�E���i�W�^�{*�Б��egggjj�LH�|��?��+i��ڴi��mҤIvv��p��ݒ%K�;vd�āA�A����5�x˖-���ÇY=����h�%J<{�L����1���+�:� l߾RݥK�;�Ǐ%n��x�O7n�`�.h`����Ǐb�!�U�TA7n,�px�_A�9����۷o+V�8{�l��322�����̙3g<==���OV��šC����Ѳ�ׯb��߿_�B�nݺ�Ս�AL�(ت�7�2e
+y�"V����w��i���
�D��իW�'O�,��_�v�l�
hh͈��`ѰaCH��~��s~����F����U�B'��?�U�@q����ŋ�n!��;{�,���@� P#�L���@�w�ڥzR��.L9(n߾M�m�֭?�,��<x��Ғv�P�o߾��Փ��nmm-���̹@q�޽ҥK�f���)��GEE���"�d�������s�j掎�hA���t�����7((H��DyB�>} 푑�jIM��Δs!����\޴iS�m�����ѣ2>���d����2�a�u%(��3�\�8x� E�n߾��4����u�\ẗa`�+H�ٴi���Vљr.8�^311�~(+���ɓ��jժ�n�b�ɠ?���qqqjL���3�\X�{�����v'Nܜshh(�D^^^�޽c
ʠW����
��Wљr. ������/h5333
y��222@;c�����D}�/r��ծ�� �s���/_&/U�K�V�|��q�ʕ�ի#�VVV۶mc�ɠ�x���T{ʤ�3�\�*�x�bsssr����ae~޼y�üN�:�����	�Ӆ���n���������]�X�b...#G�<~�8ۓ��ɓ-Z�4��ѣ�u�399��ݝ6%�?^�gW��_�433�8�jժ����D]ժUk���z+K����դt��G�V�n�Z�hQd���Q��{�'O������:�С,ͨ��������…���k׮1bD�ʕ�����on=�ْ��k׮o޼P�[�g����},BD\\�6j�(&&��K�.1�V/^���ッ�iE�e˖zw,;;{����
+B��l޼Y@���͍��$����ZX�g`�p��}�.}}}AD|�b|�?>'�[����;j�(}��j֬I�C��Z~�ƍf͚�Z��ɓ'�
+ooo������3>W�ρ��0>����$��ȐD��ϟ?/����i���tP�|������ \�p�lkk{��!i:b|�"��&_%��G�������,U�/a��ݽ{7�xĘ;iҤ��F��СC!�2����|���hѢP�_�z%�INN�B�t�g���Ļw�b�%��_~a�XD���\�;v0>��^^^���k׊@f�\�ңG��laa1~�xaM��~��M��,Yr˖-�ā�O�B��+&������G��z�)$\Q������������S�N7
+�� f͚U�H����rҤI>|`$� ��y�j��k��gΜ�z��������ӦMsrr"&�T��ʕ+��<33sɒ%�Ƒ##����C�aݟAd�믿hOcc�b���4O+ ��cGGG�lْ���׻v�֊gVVVhh(E)500�ԩ����Y�g`|Π5>/@�/�߿߲eK�Ν)�P�\��S�>z�HX����'��e˖%&o߾��˗Y�g`|Π5>?w�\�޽?~��eIx��ɚ5k����0�0w�����Âs���͛�ӧS|R0y�v�Ygg`|Π5>?y�d����؜9s������;v�6lߓ���u�=p_pa��}?�<r��…� ���(ȵk�X7g`|�Q�_���ݽhѢFFFvvv-Z���D)��/X��V�Zf߁|�~���D�qI���#Y~R����݄Ά.���2c�]��#G�p��5�4�۷oo޼�W�n]�'�)Sf����c���xooo*,��C�>x��up����իA�&&&0烃�
T�B|������Q:��+ݻwGR={�tss�'5�?`�n��� �QS�N-(>���ݿÆ
��������ʺy��m�ƍ���A[�8`$�ܹ�ʕ+A����߇��b���-[v�ܹ���� h>�W��4((����������iΜ9�u����]�������p��(���'�>�s\W�^]�|=y�ΝА%��|9��̄F��5j���WŊ�$>��U�VŨ�dɒ˗/:fbb"enѶq�����z�ǒ�Aw����<xP�'�|N�ʉ�\PXa�ڴiS�۵k�e˖η�LG;|���E#�4V�X!�F`��/_޽{�ҥK��ݻwoذaٲe'N�۷o˖-����-l�Q�5jt��u���xW�g�?N�o�l�����$9C��L�_���G��3�A��X�ʕ�I-�[�n�H�2��Z�{--Z�p��P;QK&&&�)n���*T���:thHHȁ�߿/���
+����q�M�6�����v�Z!.�20�o�e„	y�o�;w.}��|N0�iW����7�N���l����Ea���%J`�B���;v�ػw����Y�fEDD>|����o޼e����L�#~~~��A^ǎ��������|�j�*n=t�ĉC��X���O�έ�Bw
��[��Cmll�t�ܵkW�[�b����k���---������+W�qEi��ļ{���ǏP;Ae��ق���7222�������-ࢱ�w�~��A�X������4o������аhѢP;eNz�jՊ��-��+₿_�e˖�٠��ڵk#ee�+ZYYAç�B���ꐐh��lڴ�>KcJJJdd�����inn{d�֭iii��20�&���D߾H�7o��p\Ϣ����&%%͝;�Y�f�ܸ��E���7n���200>��Џ?�L����X�͛7���}���mōe(;̨]�v�UN���=����ۀ������Q
+�������;z�hWWWnߎ�����KPP�ɓ'��8�s���JII?~|�ΝE#`/_���=v�؟~�����ֶ[�nϟ?gݐ���(�+
+��#r������_�bE�Ҁ��u���QW�^��};����υ����7nDFF6j���‚��%J����Y�`�ŋ�t
+�F��ͩb�7'��oߞ8qb���
jР���`ll���2t�Ѝ7޿�u1��Ń��7�/���պuk
+�Ç�����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]
 >> endobj
-622 0 obj <<
-/D [3345 0 R /XYZ 252.009 296.362 null]
+3867 0 obj <<
+/D [3864 0 R /XYZ 71.731 696.359 null]
 >> endobj
-3364 0 obj <<
-/D [3345 0 R /XYZ 71.731 283.924 null]
+658 0 obj <<
+/D [3864 0 R /XYZ 263.164 254.019 null]
 >> endobj
-3365 0 obj <<
-/D [3345 0 R /XYZ 111.571 261.851 null]
+3868 0 obj <<
+/D [3864 0 R /XYZ 71.731 241.581 null]
 >> endobj
-3366 0 obj <<
-/D [3345 0 R /XYZ 71.731 233.791 null]
+3869 0 obj <<
+/D [3864 0 R /XYZ 245.796 219.509 null]
 >> endobj
-3367 0 obj <<
-/D [3345 0 R /XYZ 71.731 228.81 null]
+3870 0 obj <<
+/D [3864 0 R /XYZ 71.731 212.371 null]
 >> endobj
-3368 0 obj <<
-/D [3345 0 R /XYZ 89.664 208.053 null]
+3871 0 obj <<
+/D [3864 0 R /XYZ 71.731 168.535 null]
 >> endobj
-3369 0 obj <<
-/D [3345 0 R /XYZ 89.664 208.053 null]
+1646 0 obj <<
+/D [3864 0 R /XYZ 71.731 155.583 null]
 >> endobj
-3370 0 obj <<
-/D [3345 0 R /XYZ 89.664 177.169 null]
+662 0 obj <<
+/D [3864 0 R /XYZ 217.917 118.368 null]
 >> endobj
-3371 0 obj <<
-/D [3345 0 R /XYZ 71.731 177.169 null]
+3872 0 obj <<
+/D [3864 0 R /XYZ 71.731 111.016 null]
 >> endobj
-3344 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F33 1160 0 R >>
-/ProcSet [ /PDF /Text ]
+3863 0 obj <<
+/Font << /F33 1210 0 R /F32 1119 0 R /F23 1105 0 R /F27 1112 0 R >>
+/XObject << /Im1 3803 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
 >> endobj
-3375 0 obj <<
-/Length 2985      
+3875 0 obj <<
+/Length 2003      
 /Filter /FlateDecode
 >>
 stream
-xڍZK�۶��W�xS�g��bv�Ӥi��Ԟ4�i����5E*������x��YH#^⻸��w���<DyQ��,ݕ�W��W~x
-��92�>���>�w*�x��K��Y�����h�P�g���ב�c���ϟiӝ��o���M�������
-0�sT��M��̦RE���	N(N�Y����#�p��_�a���G��$����G��0�N�?OC1vr��ė3�8���a��(�W��Jü-�~�F��#KPx*�o�C��_�Z)��i�_/��g}�LT�0��ؚ�5��d��!M�bsW2�+)����/����Q ~��O�Mdh��������&���wZ�+����~��D۟�@Ӊ_�X��+�ĭ�X���>ᒸ��,�1wd����t"�5߮Rg��g�>�b�܌�ÖRw�v*����BƦ���A��s�:�x��_�J(Vkve;UJ	������_>���˵ţ�"�g�Z^�<wY�� 8�ݟ�
���LSZ�0�F+�S��,qaٟ
-[ܲ�6	`-˰?�x���q'H��о��y\("���5��*�kD���0���ؾ��k,��$s7�
-��<�d2����G���:!�H���R�E����wl�����1�P!�X�t��|6���_M�V6T�b"�ݯ��}�1�T�h:ஔ��A.V5Ol�Od 2B]{J�ǖp��.�V��S/��>h��@�5_�:���/��|Ύ�!��eZ�S+7#�����M�cTF3��"㑒�6f�ф�W���
-�$\^K�nE(̣m7�2^7"�>��M�X����v���
�hΝ4�á����7���\��NP�B�}'	cd�2T�?�=�k� AQ\l�Z�xM-D����k�ۦ��]�6�����ôP<e��0D���+�/��nf:�T���}��8W+�,��,��2���
����A곰릅ml��M�O�傇���%q�4r�"F�ɺ����e��E����/^sfP��ɶ9��לB��y͹ƺmN�eN����!,>�x8���rW챪�YI��g��uw�K��2�r�X�"��RvQp��0�èR7�+���2��?{�4@In����a6ɽG�ƺ}���(
�7;�,Ɛu�{~��v'�[�؎�4]C���Jܹ��χ0�%ڋj(d�֔����"�L���ج�,1�Ź��{tQ�t��
p
-�0�`bcfY���,����Z-�oP��`�XR�m�e�qaZ[:\cH��/���� �e�T"lk'/��X��fa��f`��x�Ų��?9��(��u��tU3�]�]���i�$��<am��wU�>�P�nu��AbU�N]�=� ���Z�{0B��������Xخ�1��	�9#`��݂�)J��v���Nv�k]�Y�˦j��k�̋r��
-ݼ�W7�O��)���q4jc�!{�jϖ`���+A�n�Fɨ"��V̀�d����40�ʉn��+6�*���b��|���"=��� ��<@�:d8j�5m�%�]����5�M�Z���?

���U��9��¦��p��6z"$+����a�e��r\�h�
�Ƶ�.�$RΏ�9��>��dc%k5f��l"�Z$b먺摁r��ܽ���\k�H\�S�mrD��H"$f��^���n���v����4g�/�O�<9)��!wx9f�٨�Y=7P	�k�m�g����%�=k|��ז�Q��M�r�uu<���8�F#��
-P���lo�p�1��W$�7�s��]�����ޮȖ�b{�3ɨ\o��$&�j6�d����D�7�'T��/��Z��[!1��;%u@�歅���f����<�dt��"O=����Ě�Cx��!L��i��������i'Ig#�-G�F�۞����jj�Vո\�?sbd[��"x���vl��"�d �-��ae]ׯS7��
-Ow�k��1
-�Y�Ҝ�*�C��f�CS�Q��M7]A�;5f���蘒o6Gr��h��7��x�C��<>Y�V,�y<*�Rƛ���x���=�;�t@��(��Q&8�HWs�(J����u��ܒ��+�	�ho�Q���($f;z����v��]v4�߽�].u����b��D��1�J,۪(u�M�z2H��Vș�X�9�A�������Bb��w�逺m{�e{��8ⒹwͲ�kN�&�P�6_>g��&���:.C`B���+K�ɭ��Q��1��*B.b�h�ӝ>�0S��]�I�?J:����@?�������Î�8����;����X�u�6��&���ȕt�ʆ8_Y����i�˫p�r�#��괝�5��N�jƸj�Z55�UwK�yt��{�B�j�<�6S���T��\�SCX�T�f=6$ks)����0��X��(
6+UC��:!1��;Av@�f���b����؈ݕBt����	𜩚�.��&��+�mP���">�
-�٢�A��E-l�E
�U��7MX��!�/�P�f�:��]<�'{(���᧑�� [[�.~�~�g�V
-'*���(~�/͏��nM�����d�&Ř6ڋ��XC[��Fې�2�P�Y���>
-��=#�Z�U�i�"Q�e(ai(?��7Or��{)�j��w�H����V�z<
-Q���m���y�j�9hT�����e������g�b1b�
�9ǟ�6���Z���x�ʾ��@H�ɷ�V�N��]�%��
-U�
��Y�0+}ߜU��pZ�����Bf:ƄKl��nT_':�"@�i���<�+��r�2�+{�k�_z�%u�s��U�^���֫<�Aci~_MQ�>�oHH��έɝUW
�
\�Bn�>Fj,����<����h��^ZQ��"Ͼ���iZ�^ܐ��w
6����7����3�ѹgG=�=�_yO�+��X��^���/��{T����krB�0�|%V���n��/!1G��������f�\endstream
+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
 endobj
-3374 0 obj <<
+3874 0 obj <<
 /Type /Page
-/Contents 3375 0 R
-/Resources 3373 0 R
+/Contents 3875 0 R
+/Resources 3873 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3327 0 R
-/Annots [ 3429 0 R ]
->> endobj
-3429 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [417.94 162.666 459.723 171.578]
-/Subtype /Link
-/A << /S /GoTo /D (lifecycle-image) >>
->> endobj
-3376 0 obj <<
-/D [3374 0 R /XYZ 71.731 729.265 null]
->> endobj
-1202 0 obj <<
-/D [3374 0 R /XYZ 71.731 741.22 null]
->> endobj
-3377 0 obj <<
-/D [3374 0 R /XYZ 71.731 683.941 null]
+/Parent 3760 0 R
 >> endobj
-3378 0 obj <<
-/D [3374 0 R /XYZ 89.664 666.008 null]
+3876 0 obj <<
+/D [3874 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3379 0 obj <<
-/D [3374 0 R /XYZ 89.664 666.008 null]
+3877 0 obj <<
+/D [3874 0 R /XYZ 71.731 718.306 null]
 >> endobj
-3380 0 obj <<
-/D [3374 0 R /XYZ 71.731 637.948 null]
+3878 0 obj <<
+/D [3874 0 R /XYZ 71.731 690.311 null]
 >> endobj
-3381 0 obj <<
-/D [3374 0 R /XYZ 89.664 622.172 null]
+3879 0 obj <<
+/D [3874 0 R /XYZ 427.586 677.46 null]
 >> endobj
-3382 0 obj <<
-/D [3374 0 R /XYZ 89.664 622.172 null]
+3880 0 obj <<
+/D [3874 0 R /XYZ 113.491 664.508 null]
 >> endobj
-3383 0 obj <<
-/D [3374 0 R /XYZ 71.731 620.015 null]
+3881 0 obj <<
+/D [3874 0 R /XYZ 205.945 664.508 null]
 >> endobj
-3384 0 obj <<
-/D [3374 0 R /XYZ 89.664 604.239 null]
+3882 0 obj <<
+/D [3874 0 R /XYZ 71.731 644.419 null]
 >> endobj
-3385 0 obj <<
-/D [3374 0 R /XYZ 89.664 604.239 null]
+3883 0 obj <<
+/D [3874 0 R /XYZ 71.731 633.524 null]
 >> endobj
-3386 0 obj <<
-/D [3374 0 R /XYZ 71.731 602.083 null]
+3884 0 obj <<
+/D [3874 0 R /XYZ 71.731 628.543 null]
 >> endobj
-3387 0 obj <<
-/D [3374 0 R /XYZ 89.664 586.307 null]
+3885 0 obj <<
+/D [3874 0 R /XYZ 81.694 605.729 null]
 >> endobj
-3388 0 obj <<
-/D [3374 0 R /XYZ 89.664 586.307 null]
+3886 0 obj <<
+/D [3874 0 R /XYZ 81.694 605.729 null]
 >> endobj
-3389 0 obj <<
-/D [3374 0 R /XYZ 71.731 584.15 null]
+3887 0 obj <<
+/D [3874 0 R /XYZ 71.731 603.572 null]
 >> endobj
-3390 0 obj <<
-/D [3374 0 R /XYZ 89.664 568.374 null]
+3888 0 obj <<
+/D [3874 0 R /XYZ 81.694 587.796 null]
 >> endobj
-3391 0 obj <<
-/D [3374 0 R /XYZ 89.664 568.374 null]
+3889 0 obj <<
+/D [3874 0 R /XYZ 81.694 587.796 null]
 >> endobj
-3392 0 obj <<
-/D [3374 0 R /XYZ 71.731 566.217 null]
+3890 0 obj <<
+/D [3874 0 R /XYZ 71.731 585.639 null]
 >> endobj
-3393 0 obj <<
-/D [3374 0 R /XYZ 89.664 550.441 null]
+3891 0 obj <<
+/D [3874 0 R /XYZ 81.694 569.863 null]
 >> endobj
-3394 0 obj <<
-/D [3374 0 R /XYZ 89.664 550.441 null]
+3892 0 obj <<
+/D [3874 0 R /XYZ 81.694 569.863 null]
 >> endobj
-3395 0 obj <<
-/D [3374 0 R /XYZ 71.731 535.333 null]
+1647 0 obj <<
+/D [3874 0 R /XYZ 71.731 567.706 null]
 >> endobj
-3396 0 obj <<
-/D [3374 0 R /XYZ 89.664 519.557 null]
+666 0 obj <<
+/D [3874 0 R /XYZ 236.902 535.392 null]
 >> endobj
-3397 0 obj <<
-/D [3374 0 R /XYZ 89.664 519.557 null]
+3893 0 obj <<
+/D [3874 0 R /XYZ 71.731 529.265 null]
 >> endobj
-3398 0 obj <<
-/D [3374 0 R /XYZ 71.731 517.4 null]
+1648 0 obj <<
+/D [3874 0 R /XYZ 71.731 457.519 null]
 >> endobj
-3399 0 obj <<
-/D [3374 0 R /XYZ 89.664 501.624 null]
+670 0 obj <<
+/D [3874 0 R /XYZ 166.08 424.209 null]
 >> endobj
-3400 0 obj <<
-/D [3374 0 R /XYZ 89.664 501.624 null]
+3894 0 obj <<
+/D [3874 0 R /XYZ 71.731 415.572 null]
 >> endobj
-3401 0 obj <<
-/D [3374 0 R /XYZ 71.731 486.516 null]
+3895 0 obj <<
+/D [3874 0 R /XYZ 344.894 405.28 null]
 >> endobj
-3402 0 obj <<
-/D [3374 0 R /XYZ 89.664 470.74 null]
+3896 0 obj <<
+/D [3874 0 R /XYZ 71.731 391.168 null]
 >> endobj
-3403 0 obj <<
-/D [3374 0 R /XYZ 89.664 470.74 null]
+3897 0 obj <<
+/D [3874 0 R /XYZ 155.277 368.717 null]
 >> endobj
-3404 0 obj <<
-/D [3374 0 R /XYZ 71.731 455.632 null]
+3898 0 obj <<
+/D [3874 0 R /XYZ 71.731 358.655 null]
 >> endobj
-3405 0 obj <<
-/D [3374 0 R /XYZ 89.664 439.856 null]
+3899 0 obj <<
+/D [3874 0 R /XYZ 154.779 334.147 null]
 >> endobj
-3406 0 obj <<
-/D [3374 0 R /XYZ 89.664 439.856 null]
+3900 0 obj <<
+/D [3874 0 R /XYZ 71.731 322.745 null]
 >> endobj
-3407 0 obj <<
-/D [3374 0 R /XYZ 71.731 424.748 null]
+3901 0 obj <<
+/D [3874 0 R /XYZ 426.159 299.577 null]
 >> endobj
-3408 0 obj <<
-/D [3374 0 R /XYZ 89.664 408.972 null]
+3902 0 obj <<
+/D [3874 0 R /XYZ 71.731 287.457 null]
 >> endobj
-3409 0 obj <<
-/D [3374 0 R /XYZ 89.664 408.972 null]
+3903 0 obj <<
+/D [3874 0 R /XYZ 103.272 239.103 null]
 >> endobj
-3410 0 obj <<
-/D [3374 0 R /XYZ 71.731 380.912 null]
+3904 0 obj <<
+/D [3874 0 R /XYZ 71.731 229.041 null]
 >> endobj
-3411 0 obj <<
-/D [3374 0 R /XYZ 89.664 365.136 null]
+3905 0 obj <<
+/D [3874 0 R /XYZ 425.163 204.533 null]
 >> endobj
-3412 0 obj <<
-/D [3374 0 R /XYZ 89.664 365.136 null]
+3906 0 obj <<
+/D [3874 0 R /XYZ 71.731 192.414 null]
 >> endobj
-3413 0 obj <<
-/D [3374 0 R /XYZ 71.731 362.979 null]
+1649 0 obj <<
+/D [3874 0 R /XYZ 71.731 162.824 null]
 >> endobj
-3414 0 obj <<
-/D [3374 0 R /XYZ 89.664 347.203 null]
+3873 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-3415 0 obj <<
-/D [3374 0 R /XYZ 89.664 347.203 null]
+3909 0 obj <<
+/Length 2792      
+/Filter /FlateDecode
+>>
+stream
+xڭY[��6~ϯ�60��b�v���\�b�펧�.�� K��F]Q�d���9<��d��X0&)�\?�\��\�o�O���$���g����{��oY���zxv�6��6�&���W�(�$�ZE���ë��_��czjD=_��?K<��E��@�W��?�(���~|���1����YG����	FWA�m�����k/Z.�P�{��4���}[4�T���(�?k4��V����"X{�pc�<�$������G�eE�~Pقw�j�&��}o_2۩y0S�H+�gG��uC��fiQ� S�n�TV
�V�����Đk�6�G�x�I�L�2+��@���^ՖX�#+��ws�Y�^m�iC�c�y��<�g�&�ܣ��o<	u}��0Ͳo渑fF3��͵e x�d�A%�n�K��6F6��F3,��x��7S��|� "a�%A`��ݏ��Y��^z�i�5ډ˴��i7���9�0����A�V����-�9H��g�;B��%�y���h��?��g�i늦�*�h�F1VtZ7j��ݡ��}�Ob�ѳ�[H�x���om}��Q��jD>��(j&��V��%�J�*^T��G���]���x S��D.�qZ1�4T�械@�>��e���`��~ȿ��B)\���S�z1���3�hm�l���?|���`�5�z�9�'&�Y�~�&��aC��;���`�g���L�C�nk�VX'ArZyasBY�^����I�L$��;����qL�5秏��ex�6�a<��u�W�:��Ɏ�gZ�lU�8!r���2T��Qh�g�����)
+2.�8�㋏���~��:�`6��v@�i��ɧ���}ͯ3���1�j�m&�Qfȓ��-+E�����'�5��5)b��d/R0�`�e��Z��Y&���k�B��B��>X5g�v�iT9t\�E
�͠�_���r��$�zC��S�)��GÂ�^�q��$\���T6,�Ab�~D/XM�,�R:�,�)�#Hx��+U-D.�7#�-˴~��'"D�>���\ol�k��1����:��fB�
+�U����Ħ;I���H��5�8�u���#�--Z����*��j��z���A>ՀJ}��R��%���o�c���M�����hF�f���Ϻ�fx��`�ҕ��������d}����T-ё�!'����Y�b_
+"ٰ�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
+endobj
+3908 0 obj <<
+/Type /Page
+/Contents 3909 0 R
+/Resources 3907 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3927 0 R
 >> endobj
-3416 0 obj <<
-/D [3374 0 R /XYZ 71.731 345.046 null]
+3910 0 obj <<
+/D [3908 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3417 0 obj <<
-/D [3374 0 R /XYZ 89.664 329.271 null]
+674 0 obj <<
+/D [3908 0 R /XYZ 201.526 708.344 null]
 >> endobj
-3418 0 obj <<
-/D [3374 0 R /XYZ 89.664 329.271 null]
+3911 0 obj <<
+/D [3908 0 R /XYZ 71.731 699.891 null]
 >> endobj
-3419 0 obj <<
-/D [3374 0 R /XYZ 71.731 316.22 null]
+3912 0 obj <<
+/D [3908 0 R /XYZ 463.469 676.463 null]
 >> endobj
-3420 0 obj <<
-/D [3374 0 R /XYZ 89.664 298.386 null]
+3913 0 obj <<
+/D [3908 0 R /XYZ 71.731 662.351 null]
 >> endobj
-3421 0 obj <<
-/D [3374 0 R /XYZ 89.664 298.386 null]
+3914 0 obj <<
+/D [3908 0 R /XYZ 514.935 626.949 null]
 >> endobj
-3422 0 obj <<
-/D [3374 0 R /XYZ 71.731 283.278 null]
+3915 0 obj <<
+/D [3908 0 R /XYZ 71.731 614.829 null]
 >> endobj
-3423 0 obj <<
-/D [3374 0 R /XYZ 89.664 267.502 null]
+3916 0 obj <<
+/D [3908 0 R /XYZ 71.731 598.408 null]
 >> endobj
-3424 0 obj <<
-/D [3374 0 R /XYZ 89.664 267.502 null]
+1650 0 obj <<
+/D [3908 0 R /XYZ 71.731 548.678 null]
 >> endobj
-3425 0 obj <<
-/D [3374 0 R /XYZ 71.731 265.345 null]
+678 0 obj <<
+/D [3908 0 R /XYZ 183.664 505.58 null]
 >> endobj
-3426 0 obj <<
-/D [3374 0 R /XYZ 89.664 249.569 null]
+3917 0 obj <<
+/D [3908 0 R /XYZ 71.731 493.142 null]
 >> endobj
-3427 0 obj <<
-/D [3374 0 R /XYZ 89.664 249.569 null]
+3918 0 obj <<
+/D [3908 0 R /XYZ 71.731 476.883 null]
 >> endobj
-1201 0 obj <<
-/D [3374 0 R /XYZ 71.731 229.48 null]
+3919 0 obj <<
+/D [3908 0 R /XYZ 71.731 435.204 null]
 >> endobj
-626 0 obj <<
-/D [3374 0 R /XYZ 259.687 186.382 null]
+3920 0 obj <<
+/D [3908 0 R /XYZ 71.731 435.204 null]
 >> endobj
-3428 0 obj <<
-/D [3374 0 R /XYZ 71.731 173.944 null]
+3921 0 obj <<
+/D [3908 0 R /XYZ 71.731 330.114 null]
 >> endobj
-3430 0 obj <<
-/D [3374 0 R /XYZ 444.847 151.872 null]
+1651 0 obj <<
+/D [3908 0 R /XYZ 71.731 258.219 null]
 >> endobj
-3431 0 obj <<
-/D [3374 0 R /XYZ 241.851 138.92 null]
+682 0 obj <<
+/D [3908 0 R /XYZ 198.969 215.121 null]
 >> endobj
-1346 0 obj <<
-/D [3374 0 R /XYZ 71.731 136.764 null]
+3922 0 obj <<
+/D [3908 0 R /XYZ 71.731 202.683 null]
 >> endobj
-3373 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R >>
-/ProcSet [ /PDF /Text ]
+3923 0 obj <<
+/D [3908 0 R /XYZ 434.226 193.562 null]
 >> endobj
-3434 0 obj <<
-/Length 270       
-/Filter /FlateDecode
->>
-stream
-x�}�MO�0���>��zq�|�:`�������R��`��dm�"S"9��&~bH�,�eT��h��BB�kA��K�ó,�b���l!gF6,+tZA���\�To�.͔���)>����t\~����W屠f���L��J�P�o�!��ȴ��.%�4+��v׷M�YAشS�"kJI���C9��O[��rЏ�)/��VXiQ�nj#�NI��͚�r#��{���TH|~r�����ie�F,���D�wb�o^&|aendstream
-endobj
-3433 0 obj <<
-/Type /Page
-/Contents 3434 0 R
-/Resources 3432 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3327 0 R
+3924 0 obj <<
+/D [3908 0 R /XYZ 71.731 134.618 null]
 >> endobj
-3372 0 obj <<
-/Type /XObject
-/Subtype /Image
-/Width 501
-/Height 580
-/BitsPerComponent 8
-/ColorSpace /DeviceRGB
-/Length 49962     
-/Filter /FlateDecode
->>
-stream
-x��}wT����E�,�]Q�,�L�k^sX�(f]#*�5cX3�0�9VW��5��\#fI��=���ӿ�f����s����k��n������7��`0�	��ѣ�����ԩ�E�`0L���`zg0�;��`0������`0L���`zg0,h&:�0i�$;;;��a0����+V腢u�e77���Ka0�3z�w���������`zg0�H�׮]kذ�ׯ_����U����/^��ɓ������;|�0��ǹs�$5|�p'''oo�ӧOK蚎O�:�����#F������t����ܹs��������p�]
suuE6m�4f��̙s�ڵ��ϟ׮]��L�K�w�Ι3g���bB�P�BDDDbb�}�J�(������Ǐ�wԨQ�7>v�Xݺu%I-Z���Ǐ���eʔQI��}��o���8�)�ՅDFF~���H
-	~���`x��`��O�>:t]�9rD���|��������ΰ@z��ޠAX���Z�i+++��7�y�b�@�E��qHH�$)�,�޸]L׸��mll�8�����"�D�,b��ũ�;(X�������w���;p���Z�j��w��`T!��������M���)S��x�ʕ��`���.\Hֻ��섄�ŋ��w�I�z�[��`��o�ӻ��#��w��ų��w���;�|�r��֭[u��C
-��>���{��)����`��9sF��СC�s�� r�ʕ-[�I�&	s������Bz�S����e�;wNsz?~|���]]]'N����`zg0�����Y�fa��E�`zg02�x��ʪX�b��4L���`zg0�;��`0�sQ0�;�a	PX����'y=$����ɛ���$���Ȕ��F;��a��;q�D��ą\R��(@�\���PȔ)S�gϞ+W�իW��p႟�����xw�X�Q~���ꑒ[$���#��&�7o�LJJ҄�cbb��fG�Y�d���LLL�@�2�X�Q�:�H1�
-O!	��������'ϛ7Ox4A��(�Wr��z��qq�?J��$#�!>>���k�ԩ�޽SG�'N��4i�\�]�lܸqc�j�`��;��*eH�Z��ur�*�]��#�%�(�+:��ܒ�z�:z���j��̊���Sm'��;F� v��ȑ�͛7\V�\��p��yGG�o��!U�:�H��Ӹ�8u�uֻ\�Q~��
�#���0�az�4^<����?���ߟ����;�, �l�
-ڧ:,W�TIt��")�����������p2���T):��ܢ�z$�;C^�tg0�L`�K��;��`dJ�Mw���|<����)
x6�#�𡡡\,���x6��t�MS��a�<�����]~�}�:w
-�q�Ʊ��`0�32��={v6�f
-�*�rM�o2�Fq���Ý�����O�>-IA�>� ����#��KAJ4'�"S��_K��ʇ2�_�=zt�ԩ-[�����X����DÆ
�W�>p��������s�bH�ReQ�	I�7��pѢE?~D
-HM��<}��5�Qɱ��T��ג<0��.]*W������3]��p�c{{�ɓ'�����*��J"�o��B
-���!"�+%R�*�V�J��Z��wC 99944\��E��ѣ�����ѣ8F:q���
6���/0������\��ՌAPVY �o����`�+��8BŔWJ�w���]d*幒�A�C:N�ԬY�;�[�n�o�f��6o�\�P!��N�8����--�Er�F1a:T2���>ͽ#��a�(�\�R")֜��L�<W�<�|(C,Z��r>v���q�޽�� ��~���� ��Y���,_����@���-U�
-yРA\�L��nݺ�*͚5c6(<�Q���
Kàx��9���ٙ�ۍ�޽{��`0������p*W���kDEE����1C#,,�\�2����/J;k֬*w�0�1|�p�\��k(P������\��AA��ׯ_��kЦ��Ǐsݳ(�W�+V�����u���Ŋ���+Z�hDD�'%%���/{*������\�Er������kӦMB��͛�tf͚�2)I�������ԩS��*/���@���m۶1��+Wfzgz�c�:ua"!����w��9��;w�w�N�G�
-
-z���ӧO4h0v�X�td�� %%eϞ=9r��oCx4Y#
-�K��y���*U��3������;\�v�aÆ0���E�Q�bQ�@�[�n��͛7,�����^�P!!�R�\�z��Q�4�w2��I"L�8���M��$6�ISr�U�Z���ŋ�<y���;�;����s�̙={�8���V�����0�$̥�N��3@ٲecbb��۷o�W�M�t��a��3B�`���%K���HJ���j�
-"""p�}�J�(�U���a�ppp��������QLw��
�^M�z���Ui��L'M���ǏC�9x�8�iӦ�nٲ��@@x��u���q��jժ�̙�����z���)��D���`zgzg��֭~{��1c�ԫWOB���߯U��x�����…0�q�G�>bĈƍ?KEÆ
�s�*�I�ށ��??���x!��?�j��s�/^�^��/�����?�z4� �\S|�;�~�h2�S�.��K�.���c��ϝ;׮]�ܹsch�#G�5j�Ξ=۶m�<y��o�6m"y����z
-q`�������bF��'��N5�=1r�ׯ�իW����֭_��S*@���X1g._�\�rf޼y�r��ˋDw����>}�d˖-{�������Q��&�N� �4㫛<-�,Y2,,L>�D���&M�������a��޺u}"��v�d
-��ʯ��A��m޼966��ѣ��
������}�v\����!�+�,ϕB4�ٳg�MF|	����M!�N���>R$���\�p�˗/3�3��G��	f��*�vϙ3G�,��.B�ϟ/���SN�w�ޥ5��K?����U�ђ���L��ӎ;2�3��G�7n�l�U�8Vi�ҥ+W�!���󚤬��(�4a�X�O��
�'���/^�(�6�;�\Mk�(�ޕ)�jժdf���t�Ç���/�B,�k�r��ޅ�׮]_�}����k�ڷo�#G����w�����0=z���]z߾};m�N�����
-!���ֻ���e��?u�ӧO�\:t�m*�
����p���0�3���E�0ki[�����4gΜr��]�6�%�̽ϝ;W����ŋ����p��m�V���;��.��ήp���\����%������P�v�ԉ����0/z�޽;������͛7nܠ�=zȹ���!0��+g�;��?�W���ݱc.�DW�rF]��w�Q�F8]�l�v��\93k�,'''^9�`zg�#��{�R�hQ�T�`�С<P�Pɺw��=[�l�u��q����*׽�KY~^�jN����u���w+++gg�bŊ��Ӈ׽3���H�޵�`zg0�3��L��w�w�������`0�3�E�QQQL��Aٲe��L�#�]i�J����0����r��g&^#���Eig͚5M���;CG�^�ʕ+3�QQQbW��`qo�w�^���s�\gg�۷o3��{�Fi4H��T\�n]�$O�w�w��P�n]�_���@8x𠝝��ܹs:Rߗ/_>�-[6��L�ܻw/k֬���$l ��ƒ�.�����*�+&�C� **
-�K�.
-��&N����2Bpp0z"j�
-ȑ#�֭[��={r�b�޽B�Ν;���lٲE`�]�3`��GG�ɓ'���ۑH׮]�ޙ�z��ŋ�s��u��1�b�hPPJ���[G����
�L������R�@���Α���)�V�^M}||���Ϟ=[�H����'�΅BJ�,I!�g���/^tuuU�D�Hd�ΝL�L�=��ׯ��=���֭���0J*D�0z�,Y�������L+	����>)))11Q��׬YS�R%__ߗ/_J"�mRa�
-!�R����S�������?]G!��w�.HNN

Eû.X�`�=�ϟ���4:#]�y��
ƌӰaC2�����o
-Fa�"���.̽gϞ�…0��e�0�6nܨ.ll$+��ѧP��΅B`~��K>���)^�8�����E�ǥK�ʕ+'ֿE+�#��q�1'O�{��$��2e�:tH��<bժU�,���c���b\�n]֬Y۷o/��*��^���/���ɓ'�SPL
-ٵk�{*��B��;�q�6mRw��@��ԩ�<2�p8s�ʹjժ\2Q�}�ԩ-[�����X�"�uz��y��}�ls�̩2>H�J�*�ϟ��ܾ}�`Q�#a�w#�ڵk(g�	��ဥ'pc�5�"�?���r����x��]�p#�ᨨ(�w����rQX��������f���˖-�Ilb��������_�o޼�������z�*WE����@v�1���D����F�Wz�d���̙3�f�ҥ�%K�V�V-))��_����:Vwtt�S��ŋ��3�	T<T?��2��D��O4�X[�i�7�v�X[[��ȗ/Nk֬�����Z��;�~塢�V�̍"E��Ю]��Ea|z�z�ʕ+.��r(�N(��Y�6F������9<<�{��-���k�ʜOI����~#��ի�88�]����1Ʃr�
�Y��+�Y3=�EDDpQyrF������s��vT��P��P�b6a#�w�؁�666t�+W.���}�*s"<%M�/_�O�<��?�����t�R���qܨQ#��qrr^n�z�lmm�XX�hi6�駙�AS�}���0r��e"xC2��rˡd;��a�8�.�U�Dx�2
�<�ݻw�����ܹsoݺE"*M�65e�~���?}������/]�T�Ƽy���?~�8bn߾�ٳgJe�!�*��(h��z�*gΜϟ?G8�1BT
-���Y�<Td(��?�D����qQd�k�?���y�Ħ��-��(_M�>D������D.Z�(��������hM��P�c��q���B>|HS���E���ؤIp;��#G�,[�,J�7���
-z2��/�z��0aƏ߻w�ojd��,S*2�#�]�۷o�4�<9������ϣ���A
-Q��P_���>D
-9I�ܢE:����4q�&�����ѣG���%���B�r���ϟ��.ohh(h�ޭC� a�b��Ίb*��(���G�ގ��ǫ�ř*d��,S*2�D�:uPn�/�0Ag����~�X��g�FH����t�޽D�
-�pƢz��Ȟd��ӧO����3g��B���f6ȋ"l�o��Е���_���(����z�ꩋ��?My��H�OCB.
-��?�����ٳg�@�q��
-ټy3��l۶������M���s��M�&�
-���P��Çqܻwo0|߾}5דQsC
-_�d�e��H�1jC�����\���ʕ+i��$��J�9R�:u*�;��L���>}Ze��W�hr	

�7�0�vP�ڴi�E��(��%H^��@�����#0O�<b]/���FB`ܸq��F��G�h�x��.
D�{�mۆ<`��Ra���m߾]III�U���*Js��7o���F���0h|�"EL�7Sh&���dɒ
-L�k�f�$<I�ߤI�BAS�0gggb�aÆq�`�������.
�z��5̛7�����d��>}jgggccCs����bxS^*��>}"�4�}p3����˴�n�ܹ\rS�2/�٧rK�����L��O�������<�o��幕�/WQ�Cu�E�_�E����W(�舳p�By�P�ݲe��1� 2ٯ_?nbC#22�6X�JF����e^��O��o�mT�3Q?�*wJ��a���UH?]�����҄		Q.tI$,�4�|ZAjvR�IIIٳg'��ٳ'�2��A��v�Z.
1�+x�W��O�%�f���L��O�|Gᷴ�l��T�Ve��r���/^����H
2MQ�>����KбcG�lv��Q��R���{]#t���V�6�dc�|g�–�47~S�3Q?������(ll��V�>:A�\��r��u�Ff4��Ԯ];ğ5k��RBBy�1�Ž(�U+�)nkC#""�>�xzz���\ �^��;��j�yP��DM���wj�f�@����8p ����� Z�]�J�T�֭[��WoݺE�,��y�`x�B�mۖ�������a�
3�����f�����Q�f���&���x�����W���p��sdx�<γ4� 99��_~���)S��\M��Y��͛7G�<3=�|-��[�h�,ׯ_?D@�e���Ã>00�k)��{�.����x��O�>q�04��c����#ȭ���*?�j���H�аaCuʔ)�8ݻw7�������r�aϞ=		��a��n�z�ҥZ7UF&�ׯ_����aÆ.\�*����K�/_��X=�x
�<�o������M��wg�K����׿��[�J���Y���ڵk7k֬C�!������Gt�^���ܹs���� @��K��=zt���M�6
:4  @���m߾}���?�<�jժ��uX�`⸹�=y��L�l�*U�����k�>�����[�dI�V�hW�E����Q�F]�v1b��ٳ׭[�|�2�xz�jRR�۷oAb��n޼�D@#0� ���͛׬Y�lٲ���_�uҤI���ː!C����y�����G�v�ڠ???�|===�d
-,����]U͚5�ׯߴiӶm�v����;6""���� ̌u�?s��ʕ+���m���Ņ��Yٲe˝;w�B��/.��mڴ�ܹs�޽8r��	&L�6m�ܹx����7nܱc�޽{�u�V��_�~�����k�/FW>`���-�̗/M�IP�|y�oJ��0����S��iذ!�5h��|��0R6q�L<GF�G��Q��=Q����,:���wȕ+X��?~pz#\�w>aoo��r�&M�����߾}�A�)�!z����7n�E������(:tX�K�.Z�(
-�)��
�$^Y�
-�݃~8��Rv-��OVݫ�ӧOi��Y₩�Z���7o�m������gϞ=0�`������[�n�2e�E*-=ev[�H�r���G�ի��?�nݺS�N={�>|��q����0^X�h������z��ѿ������W�^�{�.���X���c��H�Ta��vŽ`�:��֪���	��ԩSq��
v2�;���lٲ��s�N�[���h���Q�)�#D:�6m�5[}޼yӧO�8q�Q�
{��b`�5k֬e˖8����Q�^����;x�`ܸe˖S�N=|�И�x-�A5S��1#M
�[Hi�Kj��}��0M�:�|��	�'>>��˗`�����\t��}��MdqNBB�q۶m�f���+WNlQ���-\��Յ�@�HGH���	��7n�0/�[�y����H1ج��������;W��px����͛{��!|@Đ�[�nZ|V�r�
-I��jpXњ��X�����0�H3&��6d��j1�j�i� d02ax7hЀf�\]]gΜ��fO������Ǔ�����ҥK�󙆸t��&�Ʌ������]oܸ����=x� W�8�����@�R�Ҝ���S�Z��:thBB��������j8�NE���?��?r���6l���`
gϞ%A-؊��h?~�S�-i�y�&���E�:i�ƍ�D� s���ϟ',X��k�a4�}��q��d���5���W2&�������&MB2D���ǏG��e˦),o��u���'N���`s�o߾�$On.�_�ܹs?z��Jk8p���a���///��	��ӧO������02z�W�`A�D������zF�����T�;w��߆�reL�y�Fؿ־}{��ѐ���M/((H�ϯ���c�	��cbb4��v�ڸ�O�>���	n�T4�!FФ�p�ԩo�����u��вeK�m�<_�v��������}��ׯ_�9P�~}���0v�XA�j���8�ի�^0e���СC�uWpp��K��Q�D	a�3W�8x��	[�9s��d.]�d�y��[5�'�\zz�o���:t(3�4ZjK�������%�G&���$�#G�Ν;�}�6����;wpc��{�3�.2����Sd��5�a!8r��r7�6"�gϞ�iӦgϞ&E��ij��/_�Ч���eIII���Ǎ�o��?�@�3gNָ`0�����%_�~�l����<y���ѣGa�¤ߺu�W���?N���"� IgϞ=�S�w�^��...[�l��/�A/fgg'V�GGGa	:��X�b���*Ӝ8q�����(W����³pc���3�.'	ڷoOE�-[6v��`�����w��]q�Ν;
A�,:��񉎎>{�l�"EpګW�	&|K��ٻwoyq:���{R!x��%
-)Y����)��ի%
-�rf���ɛ7�p5""bԨQ��tvv����/qoݺ5�]�n]z�
-Enǽ���W���#x{a' �q��=خ
4}�GkkkaFt���0��ԩch��&V� R�5���~��Uyq:��?11���V�D!*ӧ8r�XL��Y�s��� ��<�5k�T�T�����˗�dnj�{��J/���Hv2999�U�#FN@�����Y�&5."yb!'''\����h+
-���Çz���ϟ�k׮G��%�{�n�݋�D����ի�.��zߗ
-��.QH�%Ҽ]{{{�Ӑ���������/�\��Ç�5kF6�<�o�NO6n�($�_���!}<(��@XX��u7M	S���/�p=�l���Я������]]];v�(89y�$�X
-\
-�9u��]�v�����x֬Y�F���8p }��*׀� Y�-�Y���2M������ѣG��T�#�P�B�t&hL����!�1=��_��80��Ieܽ{��Y��a���A����֬Y#�y:s�7LC��z7�-�ޓ���������H�j�*�왉��رCp���Mà�9��	www���������ɴ>skx����s�a0d����n�����Ν�:��s��2�o.8}����i͚5\sC�l��
4��<Z����;WWW���W�^����J�9ܚ0&e���Z��w�ԉ6R����#GZ�S���X;;;��aaa\�=�l��C�A�Κ5K�D�Rlmm�{���L�#�9s�pb0�b����.ז���Ht`$�i��HN��n���8y�dyVI���_~��/����q�,�N~��I`�3fp#e0t7���t�k���g$:0��4uc$��B7�w�x񢫫�<�.D�������O�8�t<<<2�F�o޼A�I�r�ܹ�H�
x+++3�uW�-#џ���HN�ԍ��*�Тt���k׮Ex�t��eʔAR†�L�W�^	6����2L�?a
-W�V-((��P�J//�V�ZM�6
ƶ��G�-#ן�&Ӂ�j�#>U����c��7k�L�Z�h�"$U�vm�i8ϟ?����ʰt�Rf�IC���P���u�m
Q�ti񩿿?���k˨ԟ��HN�ԍ��*<H��:����@��һw�H����ۖӂ�>}*�����`Ja�.]����G5�E�ӧO?|�0)����u�z��.\ň��>V��_@?��bԦ�Ժv��F�mQ� ..��֖�Q��`�0G���������رc\ :��������"��M�Ν�q�;�El����ój#ù���Z�n�����/��ϕ+
-vٲef��˗/#�����J��8`i�O����o�`����G=,_���,c3&6n�H�:<x`���v�r��㣯'O����8f�+W�����Ɔ��12gΜA%�����ƥa�jՊ\M�~Voܸ��
-+|t��ǏQ����?~�h��������h_징�Q��ȑ#�(��������xK�w   �i�_��2�>i�...�Տ�dQ�J�=vL`PT�Z�|������בOaw�^@��4ib�o„	���FCJJ
-��;Q�!0`���$���A>K�*��4߼yckkk�ݺu6Gps`��ݳ���dhڣF�2�|^�p�����o�u��e����#�o޼9��p��QԷ�U�rQ{��1��ӧO#��+W�o��/F�M�6��j@:<���aLzg�\΄cǎ•�ӧO������>|�`�5��ْ�(����Ѱw�^�3((H�)���m۶YxMx��=��X[[[������`��ʹyY�)O�>)w�ڕ+�?��C��f�ʥ�`��r6V�\�|v��]�)_�z)�Ν���gTb���4E��EJK��Y�"""�ܹc^�C�\�rb�t��N��/^��*Bkoo��/��C i3�k^s��!C�"�"E� �g�rZ�lIոK�.\������˗�M�6��� :�;�L�ށ�۷��w�]:t<�mݺ������9sLD��\�}̘1ȧJ7���o߾H|ҤI�B	������d�Jаað���Ǐ'$$�,�W�\Y0�5��%K���v�7�:u�)q	��5D�>}��E�"�;w"��n�X\NNN�*���s.��ضm��k��ի�5j�ԩ�F�xM�Ds�ȑ���;w��ȕ+Wrr2q��ի&B����ӧM�δh��ܲe�!�������������k�̊����H`�+��suu55z����O�&s����S�;�� ̄k w��jL���;C���%�/���~�jՐ�������4�d04��m۶����7**���ĉ�FZ�h޼9.�ɓ�,����;88���x���{zzR
-����qㆩUoood�p7n��>ݚ/|||�z���_\M���2{��,Y�����M��Mp6lX�lY
�>���H���)d֬Y�C���GGG���������˗�c�T0*��q��=:��4HJJ"�}0K�4�����ҥKs�έ�n9r$-?6Yz'����ٳg%d.�+>s�I�;����w�ޝ&]������)� ����:�=��Ǐ���666<�.}w6��#3���۾��TUj֬IZ�b�^�Z��?���&s�ԝe͚!׮]���w�����ֲ	�;!&&FP�A��9i�U�2e��~�@�i"((�*�ʕ+�4$$$�,�Q^�"E6oތ�#F�)Q2�ǻV3��	۷o���ӳg�O�>eT&�c�?�`Ч6O?~<�
-9�J���=�1Ā���wߑ�ޡC�
-�-Iʉ>����jN;��;�J�۷/��,X�ĉ�Iڲ:h� #t"���\+�u��V�e.
!**�>��(Q����bް���$*��1���.\����G�[HH����h�]����3�S�?��dϞ��gT�cǎ��ǎ�Ұp�����7���i������h��y�w�֤�k
-

���%._�l�L�O�}���A��Aׯ_犡(�lٲqQX2޼yS�V-Zb^��_H�����{��њD>w�-�vtt\�x��2Y�@<��ݻ�~퍵p�|
-X�nlVF�óg�ʕ+G�yN�:�2N��ٕ�q�^W�0�i��LLL4t߽{G뮍0gBR!!!\1��Zkk뤤$.
K�ÇK�(�
-���!�`�.T�R�=z�K�p��G�I�]�6mʞ=;n�1o詌����Ԙ�P���ó0�䊡h�Թ�yriX�<yB��~~~��uL�����נx��=
�����{�ݻwK�.�dgg�k�.�er���F�=A&8�
-���/�%�ŋ�J��K�X��^W�9s�cooo�y��V�Z�}5h�@��?~�غuk�k>��^�k�HG�"��J��h����% 11���}}}_�z��dɀ/_�|rr2�~�q�FZ���]ҙ6m�I�i�F�gAZ��2N�Ԯ]�ۿ?�������i=���˗/�����K�_B߿�4ɇ���Ybbbr�ʅ�]�l�I �~����lAբ���d�[����2h?K޼y�(27�Q����!�Z����5	���z�1���u��їb�ٳg���C�@���H~�.l��!q�=zpUQFhh(�W�\��Ȭسg�����p��˗/ӮI�E�ӧO?|�0+������z���*Q����S�Lѯ�Yll,���(QB�	�V�����ʊ��kԨ��&M��١��+�E�)���#rHd�/_��ɰHǀ@.��������7�����3�s��!֠��z�Bj�g�6f��s��ͭ;M�\ ..�K#��zZ�ިQ#㨂߻w/22288�Z�j��,F��k���jժմiӢ��
��^�~]�zu<4���n��1�2e��U
-�|���P�W����sQd2�,����R'��Ç��=����]%�W�^�=@�F��N��K�.q�N������p��2-CK�n�ʥ��.gxZaX�`A�7/�ڵ)��0r�4iBu�=����$�L_�n].���:�qZ�VBb�ϥ���?~���G�x{{?y�D����ǎk���ȹs��K��1��Ɔ�B%^�|���P�^=-���B��>���z�O*L�
-x��m�
-ȏ�^~h�\tt���=c�<wȐ!�5��~��w.
9z��ѷo_X;����ݻ��[�_�~-[�,��2e
-�;��4M��y�Xj׮��)��ϟ[[[;99;[TT��Wc�;hS[��Ź(�ȓ'�����������Z��Ǐ�жo����3��S�'O�,PJ�r��!́#Npp����'N�H�K��ŗ:w����e���n޼��P
-`z�������#g��/�ٰan�x���vW�zu~w⧟~��\r����)�&M����j�j�ȑ0�Ϟ=۸qc"�ݻw_�x��Օ�������)"��իI����922Rʖ�.��=�(Y��BV��U[�d	�8�w
����lٲ�p&L���-062J���-Z�_��x��
���9r��-X��q�V���
�F5�С9pG��#вM*�R!��q͚5�*U����Y���t.;88(d��
*T�����Ӆ}��QE���fdX$qp��5�g��dɒ�ߚ�ȑ#9j䢐�[�n}�����S�~�~���o�K²f�JS(aaa(�;v��eX�h/bG6�	vt7nT�����T�(QB!���y���֘�Ӌ���|0�LS'�̙34�QYE&���`�L�3�P
5k�x��`oo_�n]2����`�к:&j9-�<y�X�b42��;�W�^����cǎ�S6mڤ.��.]"W򼡏�];���E���I�\~�����Q�$��:��(�Չm�ʥaj�dQM�޽mРA\\L��!11�R�J��F�3+��@-qR�9�<�2�A�s���Eav�I�k�P�ez�<z����5m�4�n޼I�D�
-Z�G#����9��:��1G�GUX5\L�:b߾}���666gϞ�_�2e
-��K�.��-Z��Fz���{��a�f�6m�Y���=c�ȑ4	���[�%�4�gϞ�^׮]��U�Ve���@
-�?���pӬ!*LNN�`�h'��]G�FU�X�6Ӊï_�N��2pf8p �1�|um�4�yy�dF���-Z�]l뱴�C�������Qһ����O�q�mf߾}�H�iypbԨQ
-_�X�={�!mϞ=���Y���x���5��Y�#F�@8~����w�5���E��y��u�_�~��>y;i�$dcܸq��K����� �^�ʙ3'�A@/�c�����={��N�޽{�K��������9<<�{��aaa�G���#b�.*��D�Dk����S�^�ʄ��ڨ+�.�+W�<��|�B BP
�4***k֬]�t���"�%�r�g�Z�j߿?�#���d�=�4
M��s���СN�����8ο0s�L�dذa�Œ��"�J�Az��E
-�Ǐ'�@��!t���M� ��R�H�m�x�"�H�D�)��Q�G$�%��٣M4L�-m__�9s�5���C*d���H�u�ԇ%J�.�ܹS^
Чh�����Qƞ�֜xX!�'6(|Ŋ��!OSw���Ç�E���d�_�]�y��)l�P�B%� h�xA������dʪ��%I[[[�D$D�(��2�:��D�^��;�:�r�QW�x�?~��"y�h�$�$�k{{{�*
-�AG��S����ґލi�)k�)��b��W#""F��.M�X}d*{zz�gA��s�N��J�5�۷�B;Ewܮ]�=z�#�	�^�� z���J�K��-�
-)h�r��/V/��:ub�i��U�68v�X�K��FΟ?��_	!*�wI}(^�8" P�ޗ.]*_����z7����5����
����i���C��
"jժe
-�rٲeȌ��4�*��;v|��5��A�5	+<�Cv���
-AoM.�@�
-)trrR7�.Q/�����Ϩkk�J���@�
սG�~`xBȺu�POڷo/���>�A�y%��Eb���+� ]����^�Zsr�Nn���f͚QS���/��ܹsT�y!S��\�c�K��U�_cb����j�������yZл�=e�9q�-ur�@�{'u/�i���	@�y���*�/_���5��*{34fmAۏ������ŋg��v�wf�4A�~0�����Ǚ�����D��ʠ�
,��n ���������:�r���0��~CN���õZ*T���pQ�8���I���”�ݬA;U[�n�����Z^,�%*��������;b]zm�{
m�ngwWf��w�Ң5.
-�wC���3gNA\���R�J�e��֘3g�1x�`�W���<x���ޕ״�އ�k#�䡉�3����(�jժ�irr2l	��_�>sE0G�mL�Z�I<�e�9rD.��0A�<y��FpQ���K�JII!����ʕ+R�x���'��&MRY�w)h�����\!$o޼qqqǏ�{��m@2#ɛ\�Dȃ\�Fr W2��c��ׯ3-�2�.լY����w�#""%���#���1�7oΨ��G�Y�f)���u/����+�4i���U�V#G�,[�,niܸ�75���J������B��7G��&�Dp��	�����.
-��]n,�Ec$6��4M�����A
-F�����׮]+�D3������^�z!K�.՜��i�H6�j��N!d„	������Tt:t - u�.y���\��[�›X�@�J�&�5���0Y�Faj���K�%�h��Ɠ��)�"7�=H��32֭[��.\X�{=!!���#w>�k�OW�ODaϸJ�o��D1F�BȮ]��f�J�2}رc�75�2
-���{��g�~���u��i�\PPӂ)<��Vu�w� �D4Fb�IN�{�����`�)))�].""Be��&M�dH��K
-�E��(ƨSu����Ç���Q�w�g��0��߿���I�@�E5j�`Z0e������]b,�Ec���[ħ����4U�Өk��ͺ���9������oݺe��U�R�;uꔅWi��Lr�ʅ,_�<ӂ)��۷xM...\�л�XR)#��ħi���3U>(����…#0�����
-���,nܸa��Y%ڞ&�F2Lȓ(�.^�޹pĠMC����{�._��h9s���铑sH�'9Xah///���Ea�(U���ӻ������&��*U"/$��arr������m����!x7`�,�3�Ν;�(��w���\Ý+V�0���Ǐ����FŊ�}<��cРAxSӧO�`z�w�ܱ������p�&�߽{�%K�����3Z&ϟ?��X�\9~_Z����(L�V�›j׮ӻ�h֬��[�n��ұcGu��m�5ۺ�y���]�ۿ~��7^�^�b���Cj"�Aƌ��WZ�w]@{d�e����i~���i	���x�b<�W�^�ʴ��`����3f� ���ch*:c�E���D�W�^q�ez��?����g�N׍)))������?z�h#�2z��2�����v�4hPDD�ZF:�B�u�&�M��bY?�{�J:�r	�4ѻwo�;v�X�d�<y�N&C�Νu�wX�r劎����Pt(@�IL�0/+$$��-ӻ�u떣�#���Q%��R�J'�U�V�����O~qZ�M�6�L����.�\rU�L/��L���ׯ_�U����޽�v)$''���"�;w�!äfFr.�дiS�� ���n��5��^�v��.�{��t�R�Y�o74a2w�\C��ݻwx����i�
4`z7z�w�ԩS��n޼����	����Xl)���eɒ�"��h���($R�~}Cg�։�)S�k�.0Az��i�N$���t�;iAm���������:z?q�D``�Ů����+Yq�5�1��ϟ[[[èNHH0h�7l؀�hтk�.����A���N�ٲe6l��k��������SRR��Ƀ�gΜ��K?~<�!���މ�i_��7o,�|�钛�[���C���ڡC���Nnj��[�n�t�z��E�\\\2��nЧ�כ9����ݛ+�`��������?;�bM�����Y���e�#���ѣ
��V�Z�)�ׯ��5<x@�_���%K
-�6m�k*�O�N!]�v͞=�p��T|P�~}�j�ĉ�Ks��qwwG*�I��lmmUF�<K�7���W���)������ݻwW������۷���P8��!6���2M���d{l߾���ܳg�������)/^亭����uȐ!�?�i�(P���888�5JX'/9'E7*THr�p� �%K�xxx�yF��*�I�%ϛ:z�вp�2��S�._���ʇ��z5j�Xx	,�t���E��c����kkkkTl�M������vZbb"�m�j������z����Ç�ˢԷ�%Kzyy�ܹS~*N�n����$n�
-�w)��#G���&y�<o�?NV�w�)�q$���$���_�2Mw�LTQTο��[�)�-[�z��I����A��}��j]ТE��zY9#�wط�S�!�u�2e����ƂʭwX�*�aqTF?K�7��,Y�,[��!0$�n�*��ե Ή���ށ
-*ங3gr5V6�-�t��	}�7��'%í~G�C�:t�Z�˼M�����hvT)�2��;v�Py*D�W����ӄ	$�/X��@�*d�C��$�R�7a���ޞ�4)� �H2�������e�~Z!,d�4�-�t���39�4Ķ��˗#�~��@�'q��1�8~�8ʐ8�E	�e[���|ԨQ\��𡡡XÆ
������SC���E�_�D	�����k'�� �P�$쯵��{���3g�#�͛7�>�4�-�t'9w�h�͍'%%!}��?bV���
���\�r45�_[[[�w��w�G���v��\�����/_�U����7�ʔ)�����?zO�ԩS,G�#��⬬��dɲm�6&:b�ws���o��̙��\��k�Ā�4��ŋE���ҥ���E�bzOy����IG�sG6mڔ�rL�fJ�����I���\�ɀϞ=����5j�@M�\���a��'h�j˖-��U��&k
Z��e˖������.��),�W�����)dذa8U��Iկ_�޽L��-�jժ)))F�<��݋���V�ZPP{T�U�T���lժմiӢ��5q��!�T�N��www�ˤ	��D��o��#���֭[����ܹsT���h�������]e��|i*0�$�Vy����j�jҤ	ӻ¨�t��i��$''�*���(�P�B���t�������_�rE��t֬Y�����ٳx"�D�&{��u$�7o^fi�ѯ_?��������z�����K�,)�
-�y�ƍ9r�`zW�ɓ'����JU�˗/���Qn[�h1}�t���^s|��%&&f���,\�0-H�2e��c��+W���}��s�����7Y�9Ҷm[�-��ӧO�Q���ӻ�u����-�E�]h�ȑ#���L�ʘ3g��b=�	A�^^^ǎ�v�#޿߷o_*�:u�h=Q��acc�D`&�/���o��1M�
j���i�n�:`�J��T�w��C[�!!!իW���4i[�z�w��ps�ʥ�Ϭ�"�:Rnݺ5���0��P�˖-���'N���رc��yuԣ,�q���H����\7�+@R���@��F�[�n͓'~׮]���nþ0��&((��]������#5��=z��jӿ�����F�_�t�n�x�������S�_i5G�ڵI�O_	^�p	�˗�k�v�e�y���N	��h� ��8p`�Z�V�d͚�^�z�w�fz��޽���E�Ŋ��"�3g�XYY���_�|�[�!@�+4h ���W��Ν��S�M��v�����	آ��*�ȳ�XfP��ׯ_��Ƨ�o��i���w�^L��#Gr�1`Y999�ŋ�\jٲ�|o��[�`��T�VM�9U����~u#���{$�A=W	-p��1�����z���=s�;���2a����;�D=�d8T�ZU>с�8������۷o�ϟ��֭�݄��0a�d�zI��۷v�����-@����|��x��=��;��:u�r�֫%SRRȰ�np�����1c�8���,^�X�y�&q{͚53�;�v�$$$D/��7VO��.]�/8��@�ϟ?gz�L�N�L[����̙�E
-��ݳ������dPDDDH��i��x.v���q�)���V�Bf�u릗�:t���ZݽJ��޵��fz7ez���V*,,�G4n��ٳg麝�GժU����-!�D�
-*|K�iN�ѐ3p�]�
6�kF"9r�@jw���ʐ^lٲE�;wn���@�O�<�;���Q鷔bbp1l�0��n��C�5m�4K�,ٳg�ׯ��I*O*�A�d�|M���;a߾}NNNx
-Q�V�Q������;wĕ�����X�~0�\��رc9��=���sU�����n/�@��`�H�r�u��E��/P��v��U�Re�֭�v�jժ���W�Xv΂�b�ֻ�G��Be�b��\�{��;mO@� a�G2NC�;H��9��7~�x�	��&���U�>V�w�v�h��]��T��a�+�;���ׯ�<�u��!!!�
�ӻ�D
�A�
-{{�	&��d���������YϞ=
�5U`M>�uL}�������G[��-l�]�m�һX4FarY2d�2�#�Y� �͛7oڴ)o޼*�b�3bܻw=�p��;w�dz7)z��r��y������f��M�,Y��Azѭ[7��1��ccc�c����<x���KSp&M�}�ҥŊ�coo�e˖���&�mۆB�G�+W=�J��������eU�}�j�TM�޻w������VVV�+̫����F
��Ţ1�K�4h�=88�L�2�wa�}Ϟ=8F-�бcG�wM����)S��kN���9s�dw�������$�����ߚ7o�q���
�r???�p�
-����Æ
C�e��B�
-5j�Hݙ �"�WΥ�p�U��#Fh�Pz��5M�xE��'yR8iذ�.�$$$���;w����|�jXXX��J�%I������,_�L�F�ߕ+W*лd��|�̀��.|c-\�0O�h���$����h��=��3��]�Vx)�	���ܹ311�̙3��S]����?^�hQT9��޽{��~���D���]]%���ׯQcQ�Puӻ�Tz'oz�N
��ˆ
n޼��S�zY9�y�fa�'Cs�>����+m�];N^�n��.X�
5nܘ����.���Ç��aQ�
-%����˯|���p	-���Nj-R���+W�t�;a��z��L͐||(X� ,�	&�HMБ�M���6m��� �7o3��8~�8�0MT�z�=��n��.�ѣG3g΄5%�����/lmm���]��~�t��tww�޽��e˄yEu��͗/��IeRL�4&^z��q���R3tqqi۶����<��.rcw��5�գh��b����#}5��k�@�7n�`zgzp��}��ժU3�#e�h�YaS,UbrLЈB��~�k�]���E��*NH��s�B�1�	pC̽�ϐ�̠A��N��_E
-$2ik���Z���e��aG1�3��v��ذa�ׯ_O��b�<q��ԩS�-J�����HJ��q�D�tp�m�6-�wp�?~����P�yܸqZ����v��Ť�!���K~uϝ;�y�bzgz7�`\@>F�@�|z�ѣG����..@��b�
-ez�QCٲe���y���w��N�:꽓>9�h�ڊk�@�'�!������>���v�ZW�R�k֬ɒ%�w����m�
-�q7q�D�*M�c�^�z��aÆ��ݔi�7�l׮�B~�O��c��7n|��)ƞ��Ds8��%��vu�9v�ؑ��(,#�DŽ��<	#��ׯ_��pvv6���w�5���O,D�9�	�ªF�i�{Q�w�֝*X��LHHҷ��߽{7���u�"<((�Y�f�/Z�@qh2 �%����c����4E��˘�M�v���;ɐ�)S��4h�������]�.]軛�p��'={�̗/���
,��%Kv��Ye��Q�w�/����Lí{7#�AsF�:�Ž�(��>|�ԭ	ƌCS����n�]�#F��Ó��…�U�F�9,�
6� ***gΜš
���Gz�,YR 8���s�9�3z:�������ɓ'�GÚ>V
z�cǎiQ�!)�m۶lٲ�=���v�С������#����+��U�3�PG�*'gH�hѢ~~~<�δ��n�~g��x�HNN&�S�Ҧ�X<~��t�&M��]�RX*�5��+W.((�t�Ұ�)</X�ɐ�t�ZX︱z��0'PL�L�L�F||<9h��^4|�[�xq��-�޽��Z�S6�3�nݺa@�z�j�1b6j�H�{oܸ���ћ)R$���u��<y��w�ڵ���ޙޙ�
-�0���Ž�inٲe�ޕ���B�BJ�(�����%>X�B�x���q��X~~~����˗߹s���a~���ѯ	+gX�V-�w��;�34v��m^�N��[�h���?N�!M��ɢW�^TVZ�(���۷z�w���;��.Z�(�5�B�J��1e����Ơ� Z�/]ӧOGA999����:�g�Ǐ�ޙ���CT0++�ׯ_s�3H�P��*R�t!4ĥK�h}�˗/��+`ӦM֩غu��o 11���]�*U�(x�b���p��asɰ��/2|�̙t�E[�BBB��+��ɓ���(�ٳg똔@�i��dz�Lz'�p#G��vg ����Hz�-e�1���=l�>h~׍7llllmmMʥ���֭[�<�v�{j�kw;�{��wXh`MĥڡU�V�����j2��흮�:u�w��L�/^��o�&M���% ?�h���w-4gȯSpp�d�̈#:w3fxzz��/P���1c��u�<�=z�1y{T���ӻ`����%''s��,+- 7A��@J�bՠ4q��M�Z�������DBBB����tzI����M��{z5gH[���Y2z��~��Bh���ׯ_�n�����͛�p*
-,(�	�ֻx�����lݺ�v�h*�+W.�[޷o_�y�̙��B���uq�����׶mۢ�
-*��%�vػw/y^�;��Ws��������2v�X��� �v��H
-ԭ�^��1�#0�S���
-T��͛��/x>���=f�~��H�ԩc^�7Ʌ����5��`@:88���:�5
-E�={v�4|ԁ��lmm�N��՜!sz���B����ƍ�׮]۴i�bŊ�G���R4Oݺu�SAd������/nܸ����!�k��2}�t��w�mj�/_���V�^��,�U��vʔ)�%x���[X����O�4����_sP	����K;�M�t6^���=��3����۷�9-��_�*UJ.�b�
-ts�m���o�ڵiʈ��o�+"���Oeʔ�H�7������P�!c��14Z������ʕ+f�ED�T��a|r����_��L��3gR}@����a��(C�{z5gPs`���P
-���~��ѣ8���nܸq�-��8]��'y,��_�x����Qu�?�w�^dddpp0^
mBdhP���g�V��M�c�L�hA����*U�m��@����
���ҒCл�3Æ
k޼�8d�ȑ-Z���/���?~�
-�
���ӛ���-gr����hԮ4�I;͊ˠ+VD��|�$2M{���y9`��wOKzDxx8M����o�߹sՌ�:աcǎf�j��
�7o��GRM4L@���8�J`�C=�����_�Oə3'ӻ%ok���Kttt�ΝUһy�]`z7H(Rò�6m��e�N��ׯ_
D�Ru��I���x���;�;�ZMIIiӦ���*����L	�y:k֬4c>~���9���_\nbn�]��
�G���1�w�wp8��ʞ=���ǎk^-���p�Dr(7n�H3r����e˖\n�&F䝜����o�'<�˗/ӻ�O�t�҅�Ȟ>}����֭[L���&R3�iee�΃s���ϟ;v�̒%��f;i�P�`ACлx9
-mY�)�m�6aN����*W�H����ԯ__�*��]��]�v����ɓY�b�*  ���ӻ�@���+GKJJ���A�)S�p����i������]�v�C����w///�LJ�:t2d]��ZxxxŊ+T��`��4��۷o�U�V�&M��u}�qvv�x�"����Q��/_���  o޼(�s��)Ǥ��%K��s�Q'L{�:uʘ�&�Mkok��{�Ν���#.]�LNW����-[ֺu됐P��3��Σ�7
-�R�޵}|qpp8x�8�|�� |3Z���nP9rD��y�&���a #!!�v�ڴ:��ٳF~z�f����ŋ�����W�@�;v�8ݕ
-����c��͛6m���!���	�2L�Z��9����ٳGriܸqa�c�bz7�u�R?~�������#Z��ݹĀ�O���3ww�K�.?
4��}||M���qN�
-��>jԨ�#G���|�b�(����<[��Q�ܰa����ӧ�.p��n�S�ٲeK�;;Ic�ɓ�\�N�/_&E&77��ׯgH�����@�0�iw$���W�V�jժ, ϼ�m��̽�	1�kP:����
-��_�|1SQ�w�#22E�������...�f��ܦ��;wҲP\j���Oٲe�@���I�����h�T����^��…��_$+gPz���۽{7�{zq��R}�1cF�kYL�zG@@��t�ʕ
-�25j�@�6m�pq��믤�ԩS���!���˗7�3L��ϟ?�%K<q��ᙲq1��׮]#w�
-���ϟO3���-^�HJJ�����������
-*0�[�߸q�6���O���1��}��Ay���O]��ׯ;99!Ύ;,��^�xQ�fMڸ��ᅴB���ɓ��{��ׯ_���&M���� ��������
-6�:{�|xY�j��W�-Z�P�@�M$W����������ݻw�ʕ��Z��fz��42
-�^�z�":���[�[��RSŊ���L$W�߿'nѺ-0���w��m���˗��@<�D�/_���m��nʮ��;��?~ڴ�2Btt4{;;�ӧO[,��������ge���w��5(�K\����!�pУG:&9�4�j2�����E���{��e��@�T�9r��ܹ�.3�ލ��U�V�`��O�0Ss�΍S�N�LbOII!�.�q�Ǐ7����s
M��]�d����ʍ��7o�é�O%�K�j2��09����������ŨY�d1��h�w�>{��VϞ=͂�3�+Am,^�8��v�Z�W�V���������_�n]R�U�10ñk�.#��o�����@���cǎ3�u��*�]�W��6�
-�N���9�����aZ���X�f�4����| ~�P��n���ի�9s>��z#DA�Ξ={r�CH��+ƕ[�lB����x�O����"0�q&O�,�/���[Z
-��b�M����*�9���3p�N�̙3�9iDl�S+W�4�����˗+Lά[��t*��&z5�IvF�x�߿�_��>y�$}:_�f��4=M���.��}||���1�!��^�zM�0n���[A��oO*�+&\���%K
-!��/^�� W�\*M�w�ލ8���
-ֻ�^#22R���ׯ_�t����_Ũ6������miĎ��1c���
-�������&�Ur�hPzG�m߾=�s���k��HG�}�R�&SZ��ƅ>�H�ټ�O��]lQ
0�ֻM*�R�Ә�X�zc�y��Uyq:ǘ+11\'\�t�B�G��G���L��+U�����/�d�yzz�;�Ǐ�*�ٳg[��Mկ_�&ۇb����Г3�m�k�.zW�1P�W��dgT.�DE���U��!z��65�&�?��]�v=z�Lh��R
-�^��0K&� ����B�aD�M�D�������{{{�Z;q����s@@��}`BB}����\z��
F%4�ji��]B���-%2)�s(C�;0l�0���&g4�w�^Mf��Q^��p�BP}zG�
6$�8�$���WWW�|aX}��Iڻ-��(�cQA8���
-a]+	�fnڴ)MzWHY88p �	UI�t/:�/^��i������0@��)Eki
-2���G�A22u��}��Yd���ݔ�}ɒ%9r�H�0�v�������~�<d�&s_���3�{���>|8����zu���ʕ+���چ����X��12����U�4���z�j�}���o	�w]гgO�s/�	lgg�k9uiÆ
��)R��~�tmIcz7Q�^�zu��IyU������:w�w�Ξ=kcc�y�HIA�}�j�>��у�f�V�Ly���ZzeL�fA�			�o����"<}��@���~L�u���s�
-Pt#F����ĸ��"|ذaR�/_���-Kfj)�(h3#ӻyI�:t�����M��X�F���d�w�U:,,�V,z�E�)�{
:�p�B�_�P!�g�/^�*�֭[[�,�
����;tmf�/0��_��C��!DGG�I���Cݢ�d
�;�[���$EDo��F�Ƥw�ۃ��PCл�vc�;��\鉗��.�)S��*U����Ǐ͚5��ػwo��K/N�8�!��6����W�X��#�[/��az#M����֭[�����%�iB�2�u�8~��{�F�h�YIII�^�:K�*��]c�)EDD�̙���
-��R� �ơw��BBB
���],Y��.��ի�T�6C�g�S5�w�x�xݸX��z9yL�bh6p׮]%/4o޼qqqǏG���۟={��Ya���A.h#9�����}wT���G�����9�,�.�#kD�#�E�P0c΂�9�(��(P1`Z�\@�`���;�>�aƁI�=u��=�5]կn�W]�ށ*oT�G�����V�ر#��BY�o<z��eS��gϞ��R.��Z�wkk����cX�m�J�N�H��a�.%90\R���3bW^�K~��E*��왲c�U�v���G�J=�N�:�ۡ�����ի�K@�?�D��!ɯd�H}����m�JURRM˄��pvE��Yu��=�
-<�%K��:Be�h��A;�m	ã�U�Tٴi�2�]*d
�w)p�S�t�7�ˋ�"�E��1&&&pF�Ξ={�ܹ0��_�V�\�o߾���
-�]�$��
hC�,� �{��h|NG0���aiiɟ�r���k������O��~��-Z�^�Y�����hO%'g$C�0z���GO����n�gĸ=�.�Ï�?��2c�V�
-�L1
$�kaaA�-,�N�XFA01ـ6 aД�/�I�cܡ�����1b�@Њ�=NFF�(J��+""B|u��N�G4�P�B�U�Vq�X+V����T�F��C7RNv���$^Я�yE�R�\�����4޿�
-��'��4��k`��.�fΜ9fffcƌ�NF��	�y� ����#-FJ~�ȑ��"ޚ7
-�D�Ǐ/��9_�|100�?�>}��{�����֖��$��*常8F�z��)44�S��"99�
5k�,�����p�Νe�@�:�������ܹsu��P�/0z�	�w�ޝҲˆ��h�VF����
��!;;��̵h����ׯ �~��Q�Ɂh8�����'�e����]�v��G��֭�7_�=�wNNN�̙3�m�3����MT�\9hx������нx�۬�����¬�+V����ޅE�nݢIZ.�g�HOOoٲe߾}�3Ha���h��/~��u�֤Ο?/��B�̙3�"k��6lP%���0v�XTy���*�����;w�d,�?��ЀhFeZ;##�V�>��'Ò<x���{F�P:E�	
-
-���c�f�(p�իWEV���PJ���_����i�ѣGU��H�S�L�ry���Q�֦0Z��@��-[v׮]���ݻG��'O���͛�5kҒ6��]�r劋�{�*UN�<�o�Ƶ۷o��RRR����/�?�|�

� �/��Ǐ(P�������yzF���J��E�ׯ_S��֭['$$к��ի�7�n���3�:e�+Y��ڵksrr��ACљ���+ ��>}�t�!_Pr�-��'�t��|?�
6����̘1xI-�g��
�:RSSk׮�fiҤɹs�(~{���E+,--mƌ�Z���l�ԩ�F-}��Ǐ)X�:BA�.]�el�.dʔ)�K��r|vvv.D�G�111�Z��7o�~��ϟi��Z�j�ׯ����;�)�/���ƍaب$k�޽�o��gΜ�5B��Z�P�h��ϟ�X�Ç�W�����/�t�K�4;��~ʹ��l
-?R�BZ�N��đ���ɓ���b��t.� �w���`�J^ѫW/�$ߡ�c�
��\�W@?�{ff&-�(Y�$�8��ܺu�����жm[z�p���߯'��q��&~~~��y00�,< 7775��Ç�={����O�˃J���"��ŋ�z�%JDGG�^�_�>|���!9eK�.��6�nݺ�e(�w>c����^C�N�:%���R^
-z(�?}�D�K�"E(�r�:u޾}+�JA�һ����Ӳu���
�w>#11�VP@?M���Ö��III���&ݳ��(����E�rwwth�7o�L�:�f)i�z��\s<qsssZ�蝷�:p�@��
--��`y^ߤ;�1z�H��
hV�x�왧�'�
-��ޟ*���-3��蝟��@e˖Վ��ҥ��g�s�z%��ݻG�aij���&66V�uy����aøA�k׮⋜�vP��q��1z�->|H�ǎ��/fgg�+ݺuKd~�ܹz��,--���m�V��]�Q��ۗ�)a��ӧ��-Sk� (�6��;����wggg<��{|���X����#�׬YC����E����5>>�[�nT���C�RX<%Q�\94���;߰e�<�R�J}��Y��~��Mkkk�@x1Iw�233i�?�|��BL�۾}{z\�`��c�>}���A����k
-}̍������-��MLyūW�h[�@߷r^4�=!!�Y�f�~���V�~}�-]�+I�ji�ϔ)S���Q]����
-�z��x :���w�֩S��N�C��F������*�ĩǏ�w4�w),,L@��x���������j0.�u�`���q��;�g����3>�Ϻ��=���������ܡC�YI899���������?**J�M�D�5k֔�Ɓr%w��]@���@A��!� b�C�+Pgܿ?�w�
-ǽ|�r��آE��svv6T1�U#P�>e@ϗCÆ
ik������𤸃7n�(S�/\�phh�P,����m۶�^�%ٹs�hb�(Ѫ�������ԋ�f��޽�]M�8�ҠA�͛7���X�t�'XFE%žm�60v�n�hX�@���'��MB�����A4y�dz�0@�?�?>{�l�mss�����I��ӧO)���	1z�-�ܹcllU�������;�U�W�����Ԥ���D���﹭�������ڝVG�>}��V����ɓ�&�`jԨ�Q&7C^q��!����W@צ��Q�F�����)N���X����T�H4�ƍ�ڼJ�*�39te�4h�E{rrr@@��9)�{����f1{5�iӦ��gΜ��W		��?~��R
-o{{���H���-�{?y�kp�P/�Z�j�y� �&�����������Y7�4(@�ѣG��iii���B��w�hll�u�V�ƚ�|"�! 9�����}y�֭ٳgW�Z�n��������ɓ쵩�V��{��%�w�`ҤIh�ƍ��o%�����xXs�𦦦CSRR=z�`�Mٲey�h�p�ƍ�3gV�^��C�#�g�d�<x@�!u�ѻq��=�bCC�k׮��&���h�&�a���|��iZۦЭI���������s�T�xqܿ"K۷o�0���wܶ���1�����Z�`A�cǎ1�(П$a*�T����˗�N�ʽ0�]�F��0V�-�e�ʕ+uN�����UM��N"@��޽��$%%�����X��]�˗wvvvtttpp�_�~�ڵkԨQ�Z�ʕ+���V�P�\�rx Ւ%KΙ3G;�~�…�'R�Vn�h̘1���_�2j���;ms��<:��?�N���k��ἢw�e������=T`` �-'**�^�1�(���y�D��-""bܸq\�������׹s��S^�Nc���;]�;�����6`<�����C�b�(�/F|����9~�x����ӆ�…s���^���ill,�V�#fff�V����-[�����Z&���e#P�lh���l>[�G�
kd���ϟ?�qö]\\`�\_����
�V����xL�����uB�999p��3�B�ʕ+�*U¿�g���3�+MMK� YN�*U�����=��^�z���9۷o��.e�##�۠��iӦ�+���<88�����b��F������S�NM�>�iӦ���
-(P�^��c����1V�9:u�Dl�+z�T�?Q�'�T��SRR�޹sG��rp<+++33��Ȉ�������Z>�#�>H��1��VA�K0�p�d�ܱc���cݺu�5�ϋ�ڴi��a�.>z�CWx{{;99�{�(������~���Cx���I�x�-��}��w��C���c�$uo�V��(Z�n-�I�~�'�����pQ�\.	������ǟ?^r�&22��Օ4�l�?~�gi֬�޽{�U����t����3zg���z���ɓ�&MjԨe���A�L�2��^�
bbbd�E��++�~��q��ccc�Uat������}+�\�i|��-,,������%���Eq��yĈ`�Q�FI]�e�OOOye�,��ٳ'���5� **Jɠ%��w��B�
-A1�I���@�<�A����������.Y �r���/���v�����q������pG(���������u�G�J��L`u���ϟ?_�re�֭�ǏG���G)������ODDDZZcHA��Z��xB�ڜ���P@�/^��6�}�	�W�>p��u��������\��S��sŊs�bP��ɧO�^�~=PIn/Z�(X}ժU(p�ʕŊ���ʤ��0x���A+���w��q�L�2���:���������G��7�K�.NNN\�`I�޲e�Y�f���|��XQ4�T�'N�`��sPt�3f��N@�R�Μ8q�޽{?~�z  IO*�w�"����
-Z��qG(��Z�={�~�����@��/����;u�^z�@������Û7o��,���_�����/^������k�-�d94W�ڵ���������*�����D��233����	ʵW�D	�Lr�s��)�t��Ё~~~K�,���9s��{�&M�;-4���j߾��I�$yZ_I
-i|�m��ʤ�ӧO�Ƃ�u�*���ɟP��kԨѡC�1c�,]��СC�.]bk]�d6�{�V<���]�@�C7�U��o߾�^x(\����޹T��<���o4\&�j��@_ыB�1W>�4Α��4����oܴ��7 U&ɟ�!����͛8p�ܹ;v����#yу��(X���];سg�:��F��?&~����`ͩ�P�	&(�Ĩ�V�6lXٲeI�K��#G�(��q2-j
-
-�_������z�#�^zwqqINN~��э7@��!���ի���g̘���5dȐ^�z��������δs9��t��	W���o��g�Q���zMMM�g���Y���J��u�V���ܹs��0Wr���~4=�*�bԋ��RL����/9]Os�f��N�>}:���06
+�+W�_gggy4.��رc�o�Ν��r��ׯO�<Anٲu���![޴<Ƃ�5kb�ܶm[bb"S��7h����]kχLYYY�ׯ/W���\�	t�ڕd����
-ſs��U��u�����=|�pdd�9s$9�V�@HC��[(|�v+g$��JV�ޏ;6e�H&���Q��:xh��K��=�]�j�p��@�.]bbbĴ�F-�+x�B�бcG���͛�Jﲱed��HŁ����qc��U��bx���RtZ�R%|�g��6W\\\����nii�[�|����?�۫�z���㢖ɛ�nܸ���5������U۶m%gc����Ŋ������{�*��P�Έ��'s�!}�|+V������u��K�.��w�Na%��:99M�4�СCjL��5]���CBB�C���w��0E��D�B�w��2��g���H��˸1R�*tiw��u���M�[�_ծ][Wq�rrr���K�\.fn�-%� 2��Zw̙��$P�Q��ի'���f��HE��.�BPT�"E�zWv�܉ۃ��4�ӻll��3Rq`���e�����LI��	-�f[��w{ժU*T�7dڴiR�n;ף!�s5F��1255�ԩS�g�nݺ5E[�6��q���y��aK�ZH���ݻ-,,0�Ȓ�<W�õk��ׯ�N/�����
-.	�gz���7n7�KŖ��?�C&���č��Wq��A��;����aa�Y�h��Px76l��Ȑ=�Q�FtN\\�<�`���.	�����}}}%�x�)S���3666O</�ي�1"�Y��ԡл���P_h@�5i
-��_�� ���Q����g�0����qA]�J�R�er�?#F��_ƍ��W�I}��@o0:��I��rAJ�*�?Bޣ����+0��5k2�(x�
oܸ1}�tZ�E�C:a�%�OQw�����RZ��bbbB�z���ԂO^�/�ww�,\�������3�N�|�=�N4뮝��A�X��[��~ŗ@�������(��e����J�����g{�z��)Sh����f�ԩ���J�;7�niiy��5
-��z�!'"+�:00P2J�/���{ժUq���
p�ęa�������,4�J���e��999�*s����'Af����>�h�"�w:�ŋ�޹��ݻw�|����kk�m۶q�fffcƌ�pHH��>}�p2[��ˋ����]R��ҝ���A��JN�����Deʤ/g��5Z��qV�fΞ=�͟�ȹ�Mu��R`$�9P�3g�����111�yn�h�ԩS��ʽGc��|���ʜ��]��S��\3d�/^��ի��AC��Ib���3����͑���kooo�ylذ!p>v��Z��ݻw3Q0K����
-�B�V�TIC��1|��CCC((�m9����oݺ�Q�&@a�۶m+h������R�+W^�~=�-�^`�T���k�7F��]�V����֮]�:QϞ=�͛���}dd$cc����)R�ɓ'"�|��ƍ��l8�.di��ڜ�i�&F�BTTv���U
-���WH��� ��(==��ΎB�>}�q��D��ﰂ�ׯ_������������Y�2q��E
-��<�0zW;(��T��^�=&&&&�f�Ҳ�M�
-����@�̪Ϸ���R������`����D���ǽ{�?����y]=��]�HHH@������铺����������4j�����?4�(Tq�7o�lР�F����G,]�4<<�q���[�m�6t�nݺ�.]�Fj???eV�	� �!�Q_SSә3g�ݫ��x���'�?��]W�P���W�^���S�N�$�dQnvv�ܹsAJ�i��Ǡ$7J�>|�0|�p
-S�r刈�y��Vf�*�w
����FFF�������	߾}[�p!-*�W��ȋ�$/���J�,S
-�]pp���'��:0�VNNNvvv=z�������ù����׭[�ZL���+F�����.0z�f̘A�Y�2R4lؐ���]E,/Β����J�,SX��-Ra�x����%K�*T�2�^��9nx�͛7���z!�w����(*mmmMS��Xyq�r�`,�I6��/��͛GI��M�O�>uuu%ߢE� ���GMw����]WشiS�FX)�\��+ԪU�͛7�NSgI�_��M��@�e��̙3)
�I��ȑ#�
�bŊ���Ar�����+xF��B�:uВ�l����000�1c�b�U�Ʋ��dc(��Laa�ĉ����$�����&M��p�s�N� R��S(���7a���V��e��;
-��'OhY{�B�"##Y�������m�233=<<�<��^&�Wl۶��{��
�w��[�nhƹs�����������ի��↓=UsS�K�a�ƍ��E�o߾e
���:dZ��YwF�����ύ��`���/��ccc<x�Lp�4������e&J^�…���*T�p��U� ��f͚�^���]uл<ww�|\@;�nj��R�A�L��ǎ�DXx��1055�I�y� ++��X�|@��Uw�h�fLLL^��7�P�6l��m�c�+�S���q�]�t!7�٧imĈ��c���z�k֬�=�l?a��"��ߏ�S�N^m���
���8p@��-Vz�e�6m9*TH*�2�PD[36oެ�����m�	

Uݙe��o�l�
��V�K�9mڴ�E2/^��m����ܹC{!�”C�СC�D���@�mA��V�ѣG����a��
-<x@*Q� x��锝�T�R׮]S��===����FF*h����K�Dxx8w9B�b�h�Brr2>�lQp.
-.L��x�8h��ȑ#�y����ܷo_f���ҥKi�^-�-���ڐ+��uooo������<�����7G����D�����i5�l��1U�T9�����R���c�������;bĈ\��V�.<z�(��=++�F4�<�}��)���Lf���L�i(�0������M����*����=���Φ��J�q�n�(a+V��>�­��
##4߂�@tFFF��~��mH�����%K�T�-��Ą��9��ҫU�w�Z{۶m�V
-"���[*-���椦�2z�!BCCiC���N�����T�uI��5��d���?�R��j�
-7ֺukyEU�ZJF��!�={faa�;<y�$wp׮]��JhΠ5PFZccc_5��t�%y�����;wF�-[�L�O�����c���$�ʆ��
-V�'��R�o?~\^Q ������3�w���ףGɃ� �q\��N��ou��
��q„	�#T��r0z����


al��@
n�ر#E��S"-%q��a����������+-��e���>���H��ťK�(�����U&���aɒ%h��]����޽{�L(�w�vS;�������M�
-�x)a� D���hт�r�l���O��V���M�2E��2z�j׮�v;r�2�V�"EX
M !!��ʊֈ�;�ѣG���yݛ��O�~����x{{��^#G��=��]���=��������-[��fϝ;�M�HLL�d={�T�q��hΜ9��M�@o266.P��/ŕP�ꘚ��=�:��|`���h�q��)~d?�'�u��͛7�;�{(e��aQ���0�zB-���������ݻw�R�,Y�����999�x����˗/����ŋ�S{�S�N�	����߿{zz���Ç�f4�4i�T�z���0�OPEZ�h������󊈈ʻ!��ϟ.\�>�5��߶mI���#=����i\0`�ǏY�
-����.rРA­Epp0��~��&�g��W��b������/_�4jԈ֜���jđ#G*W�L�7o��_9;v�Y��%K�f�V?q�֭B�
-	7pl����/�*�w��`�"E
-(����\O�۷/�Z��2��/_^�Z5"�
-*�ڵK�M���7�2d�8q���@�n�:<������IXw���;J����_a��'���~�-�oW�^�o1"��
��!--
4޻woJ�G�K�1�+���o�-ZD�ppp�Q�%��6��Hβ��IŒi?�D����	=z�@sAO�~u��E���e�`�O����wvv600 �Ňv��9r$���o�ҥ�����o�~�ڵ���g�C(�|�2�]O��Z�s/[��˗/5�C�ޕGzz���9lI6���ϟ�!�%Ǐ�7y�Ö|��=��'Onٲ��׷gϞvvv���zk�֭W�X��=
-����s��:q7��W�^���ۻw�K�t�^]H�
-�����(A���Y\\���ѻ�سg-���}��~�&D�,�6�ϟ߱c��ٳЭ[7�N�{���u�ԩR�
-�AѢEi�~��H�"%J��������V�Zݺuq����m۶�ܹ3�>}�4hĈ����&M���3g�4$�ʕ+ׯ_6޾};�����aaa��3g���ƞ={622�ĉ�����ߵkWPPЦM�֬YO%L�8�w��͛7�\��$�J����3u�T������1zٲehz�%{{5j�@;�5j�…z��� P�G��5�����S�LM�o�nݺnݺ�������ӧOGێ3fذa����ϡ�1������O�bŊ�)�����(83n�t��qB�&MZ�j���ڿ< ���۷�cx�ćJ�,�g�����;w�||ͽNe��?�
-U��q��bŊ=}�T�{��]�x7P�~}"m%f����Y�&8
�	����[�x�h��→V����/���R�!�I1X����o���m�Fa����?���Çi;�J;���]I|��	�Mjf‰کw��':)�Y�Ă��q����3g����r��.]��������/^����[8�������[OJJ�w��͛7�\��	�)~��R�6l��A�/X�����i�`�^^^p���[����9۵k�iڴ)�g˖-�l!)9/`���Ш�ǏG	�/		�޿_'�\udff�m�Ph�5�d<
-�gϞp���Bk�/ZGp�o߾C����ƍ����5k����#��͛I���S�N���~��
�,�?~��5�`FF���HKK��܅�+���B�m�C�׸�h��]��۷���s�����ۊ����~p�h��\-F�J���8;;Kuy8�\~O�X)8�Q�`A��bXE�@��/_���3{R��ξv��P��NNN��/U������a�.>###T\�4���˗/1�v���t��.�w%E*bʔ)8hoo��e������qh����[�n��g�+>~��v�Z�x��
<�+y8���a�xuW���5jԠwsZ�;b�����(��d�T�Ȕ��ҥK*����B=�|��pᵰbD�X�`������x��爊�j۶-�V�f�D�KP;tISSS��.���z��Q�_��P�ޕř�c�|��z��8Q�J�߿���Ӓ%KBq������[�j�nݺuJJ
-�Z���Z0&��K�(A����n��{��6u!<<�¤[XX\�xQ�]�W�^�|w�����@�+���ޕmC����L�6
Gj֬�J��ϟ?����T̨Q�T��:t(J@��U.�YLL�[�6mbcc�HΪ_����Ƅ"�Z�ihS#`]�����^�]�ڵk�M�枠]~ggg
-Q���K��U��ʕC+q� � �aK�.ゃ�m��2Y��K������$|��&L�;�f͚�'ʲ�رc��̸�h��R?A�n%�aH^8g���AZ��j�*٫��$����!�hѢ�#@'����yК"y�`�6l���ž]�&�����={F	�*T���h���եhI-�G'�Sf��ڵ+
-�T����dy�Zp���t�?��fkk+K2ǎ�~�����R��񟰷�W@D�~���R/�n߾͵���zw��P�F����+W����H�j�p3G��*?D~��X�b�EN7>��EFB�#OC���F�B���KI���?4թ�5f�V666�X����0zW�͛�&1b�K{��U�@5w�\����&P�5C��hР}[�~���x)z���C

14��022R@�;v�͕�߿ǿ����>h~I�K]%K�?A;4鈉�	ݏ��=OC�����ٳ��6dG(ڜH��e��`h�uU���SE��NNN� y�ZFDD�{hѢ��s
-0z�%H�C���9=K����ߟ�/\����<yR]79x��Q�Fedd�=z֬Y?$RWf̘���r��O�G������5k�w�^|633��q��y�ɫ$�Y�\)-,IhU�V�����=OC$�����H��dG(�9��\��^(5jB^�1���A�}644ͫ�E[�l���}�����=F�����=
-^ԪU+U�lٲ%
-���>߾}����ԩ�U���cbb�[|�*������?A���E���.���޽ÿ�`x�,�i�WI���U��koo/9Տ���¢��Z����0Ԩu���F�\e�6��P�8q"n`�����`uJ�r��)��"�#fÓ�f��:
-�Ӯ]�?ߨ�?��w���w��Ν��+�p����
I>�#�C$y�kq�JIz��B��P��K�Ь���-h�S;�WZZl�2�nڴ�?�p��i�娈���΅�N�g�SU
-�B�̙�ږ�П!�cǎ"�����Z!���.\�T�-��۞���p�X�X���eZ�p��}j(Z#��SRR 1��9�������0�-[����Us\��P�kGGG�,�S/��_�Ŭ]�/_F�����9R�\�4)�C��+uֶ:Ǜ7o`�зb��j�*T�s�Κ(��˗��'%�:u���D�������ՋY�,���(�Ν;�E�*{T���W��J�򦒅(��͛7EY���dHk�O�;v��zkk�ӧO�������L]����*T����`�MLL�]Eaj�&�n߾�M&���u�[���:S�&����͛��לMj�۷G׭[�����i�/���I$�AYN��\
-�>}¸ohhH.^�*U��æ�����-\�0--�;H+�w=����Z��7o�6y@C��žo�[^�]�&}}}�^����h�&�����\h�߾}�8H�̰t�R��vݰa��L'O�D�4nܘ^���
��:�
-��;m\U�5k�2e^�|y��Y
-EA!�6�s�JE�� �^*
-����䅚ɵy�.hz���Wzf͚%i�+V��2���&y�������kUʹr�
-mo�e䴑�� i*�������СŎ��q�%Iޛ:u*��.]�:A-2�S�N��=zx{{׫W�رc�\��Gn�f8H�W�F����NX����Ρ��M���k	Rql�l�B�L�	�&e���m߾��m�?h׮�*Y�߿���A!�Ѽ�[��	���Oxd^�Q�Fh
-
�{����	xyP�L�={�ܹsi��r��}����.�{���p��� 
-
}@9��=����Ρ��M���k	�ql����M�F_)����I�`��Ũ�СC�q-��%��@�i3��Z���,��������G�0�rLJ,IA]2),,��‚�P�#G$y&�80���^x�(4�%���׮]���O((������M���k	�ql@�\h;%òi�&���W��^�AS ;;{�֭\fL�6���b�i�d�
-�������7nT�(^]2	��~M�J��={&�!������J�B#����l̘1�BA	�|���M��������J�C��l
-��6ܡA�+��%%%��䌌�իW�J9�vn�)h�nWb��'O����E���%��$�C����ZA	?$���ݙ�a���&�u�ڡ������x�bkkkj�Z�j����/3&@��֬Y�z�$���j	���gq	t�\�Xm������'�o?|��nneeE�ШQ�Çk(ؾ�A�g��:X������)#���KL�3�ze�w�ޥ�k�+ա����{��ijjJ-���GDD���{<22�<
-�0@]eJ	x&��&�El�`up;�H��o߾=e�:B��\]]oݺ%��SZ.URB���՘nXR,1���7/z��޽;�oܸ1W��ի����x�B��.W����|�|��X��z��<��|S2"�ɗ/_�[��[�H�tF�ɷ�욀T�o߾Q�瀀���%KKK&�x%�Ei��>}:~��رc��D��%K�ݻWŵpBXUË�:III���������L�A899�������jTT�%	�&����Mj�&oݺ�x��-[���pEa��ի�&P�K�g<}��)�"���s�Ε|����_�V�Z��:88$$$0fV�&�̙C��=�ؔ��Sl�h�7oBэ7���/R�w���!�ٳg_�p��|�/tl��gj�ڵkh�z��	�x�
4��ڭ[������H�0������پ}����
E�������ƍ�M6o����c�ҥ����0((vx=>>>�ѥK�&��p�v��aÆ���*W�<dȐ}��嚧�aÆ8����zb��A�o)�*�0"Sʼ��hF,*"==}���Ԥ06Q��M�-[600�q��8qÅ�+5�$���{���������U6l�;ܻw��3���BϞ=UL�� �۷o/^
�i�&���I�ӧO3rV �.��uvv^�r�s���qɒ%�YOL���5J��OA?�s�3����"E�<y�F^m��1�d�b��٪�����qy۶m��)��@�����_311k"`��r=�OwP�Moݺ���&@��g�ׯ_ǵu���k�@j
8C2��ۛ����h���Xk(o���57ojj
-�LII���y��
�N�%��i{�իW�x�NNN���������ФI4�3gXSȃd�]���˗3�ho>l�۷op�04dee��,��^�P!��G���!a��
-(ua�ر��E���(dS���CBBT$O��;g�ǎc$�9t��5�6I1X��u�˗/i��o>))��аr�ʌ�5��� Ur5�A5EFF)RD��l��Ɔ1�F���6�����âxb�m�Ҳ����S�^�޼�@�
�3��w</	�w��maaA˒��9sJ�(��	���p��* ϊ-z��A��K�Dxx8w��
-.�%Y����ϙ��Qv�\���(dРA�-EEE�`���…�m������СC��[�nEM���/\z�,�����322d'g��/�V���)��z777�͡��o��%�^�r�R�J�m�*U�����BG�W�NGd��9ǎ�~������s�U��B�=��!�U�
k˗/�w�9r��$��w��Ν;��;��휓��m۶Ν;K�/Qh?::Z*4J�������T@�;v�ptt�[�����N��'�D����P�FFF��t���T�U8���r�.{��=3z�?�SPn�d��9z�쉚�ڵ��;C�ۙ��r��8mϞ=��3�;7�niiy��5��<��?�B5k�Lj��	��(Vr���B%K.t�[�U����9U�VE!��`��zГ���H�	����K;P�f�\gN���8��E733�%�t$$$��¢O�>��Εi��M��{�N����r��HXXXɟ�s����?�o�>yW�~�=�
-�߿?�w�{`` �7n��{.p���;GP��!;[�ju��
��8pW={�l���e˖566��A��l�@��Ň�����L�\�~}.Ɨ�/j����� +����PNQk�j��4Gﶶ�(����angg�ϲ�C�Hp�B��l�"���i�^��9�T�R�޽1���7l؀kG�!nn�
\Ŋ�����������2~�b���.]����u��YhW�^���ӧ�3���2��!��J��{^�bx��݌��aذa�,�#���xxxH�$�㑑���bŊ�[��ʜ	?׬L�20T�{pp0-�7�Ӫ��~��ѻ��ddd�3�W1��b9ɗ;v������Ǐ�l��;�'�L��]]�]4Y��w42����'$���۷OI~�������w�����ԩ�m%��J�bc
-�I�>���H��nS1�:��}��;���Lѿe/�l�J�;��'�Mz��"����ѹwڏ��i�[ݺu���3gΐzoҤ�F�����4��Cz���]�t7�w��Մ���]ɹw.��H�<9e⦕�|����&g��ݕ�{�������ǏON>;::��ĉ���L�M��wI�#�����~��)\ۦMq�;�$������]I����J��~�zeԻ�(yY�N(V�������?��;>������Ç�䌾M��G���AAA�
-͕�s������&LЂz/Q��w��ɓ'�=	7՚N�ޓ��MLL����5��wI�۹s'���s�2��k׮^�z"{���]IE�#pvv�DZ�

ňP�L���(��;���ܹ3���	(Oǎ�ޕ�L��E���#�W�������feeAo�C�r&�~��U٥��lg
-�d��h6����'z�7oN{�5�rfʔ)����]9��VǍ'�$M��wx�\(3��ޡ᭭�!��7�u��L��νK�2���\I�	x��;-��,X0""B�c91�^��=�����
-���U�X��͍��޷o�.����RF�9خU������x�����C�F���CCô�4F�jigy!��3�0(����X�066�W��>��6�Y6 0�w��:u�X�P��$�K�iPDD6�*o�5k�d�Q�����&gϞ�k�W�Fح[7Aoh"�d|ځ����
-,�v�J2�Q�F��իW��������e����Si�X*m�@�T�����Y|x���74qprrB]�3b��4i"�EVڷ��˗3�t����$m
-;��(�oٲe�]�޽EP���Wt���t��\�el��ݝ��F����&+V�����$J�k֬j��~�%..O�����͛�X4�=z�Zڶm˚"O6ill�u�VFŚ���K�m����#L��^�~MU���$�6l���͸E���E�y��)k��ڤ��}dd$cc��ֽ��&߿�ˋ-*J�[�~����`����C�z�왙�ɸE]�}�v���Ѱ�6mb��?���<}�4�du!((Į�M޺u�V����Z�n-�%�R�s�;L'������N�G��&���?E�
-^�6Y�L���@�̪Ϸ����n�
�e˖�3����h�l�q�F�
(�Q�n��:䂖���7���۷{yyѻ'??����8��d���=<<�.]θZIDEEA�����G�.]Z-6�r�J���Pi��M���s�΅H�Ub����4��������(Zu��3gװDSʠR�Jj�I;�ɋ���ݠj�֭q�JJJ
-���tvv��J������ֶG����PMlBF�6	�l�6ٴiSQ��^�b=N��c����2XS0���ނ���*�����k����/f�:���/).�*�n�y�f�СCE_�/^PX�U���U[�l�gJw��d��'���Ǐ}Miٌ����ꕙ�I�EźWXҝ	x��J�r�����e���"�%oР3f>Hw&��OOO��&��25]�v���թS'�kɒ%̘y"ݙ�g�	���O�bxx��kZ�fM��…b�ԓ'O

MMM߽{nj�'ҝ	x��dɒ0�gϞ������
-(T��ȂS͘1��o߾̒y%ݙ�g�9޼y#����NZ:(�M�����Q���f̼��L�3����0�f͚����s�����ԩ�,��ҝ	x�b�̙�@OOO�ה�n��Ɗ�R��d͚5̒� �'N����ʕkժ�:�m��w5߾}[�@ss�,�T���먔��ŧO��%�V�/\�0---99�K�,��bbb��-�<��q��]J�,���@M���T)777R�̒u%�����������1w�<������a��}Mǎ�������F��ߧ��/^�`��$&&�:������ׯ_K�}�6k.m�I���a�;�����a�P��Ç3K����<���0�:��U�ַo��]�k׮�����_�~G���MLL�ޡ�%�
-���0�Y�f��`��|�R�\9������Ǎ3F45�0aj����,�o8t�M۶mYS0�
-�-�֯__���PA[[[T�ܹs����W�P�
-\�~�Y2����k<��~������G9+����W�ҥK�Y4sP�F�B�\]]�%��[��Z�z5k
--��Ԭ>xh�Ʉ	�Q�����'�ݻnj�����u��eM��h"��Evvv�-а���b��#P��˗G}/^�(����_�Έ#�1��Y�J�ReMm�*P���7$$D����]�HOO�=�%J�HNNև*��Ġ��*U�+�����Բj�����򷡘��$22�H�"L�3(����)�Jٲe�ܹ�'�=z4�<u�T�#����3g�f�<GNN���C��s�������K�!�a����(K��X�\�'xzz�[�J�r�-ʭ�;~�x����?`��…8p���^�sƎkff6�|y��r2h� F��BXX����x���:%%�711Qա]<Gxa̤����x###�_PPP>����ʣw0���P@���������
-p����i'H�5����\�~�o�T�r�'$:R�zu:"{�9v����׭���S�Z5B�#���.�L���W�i�g�6mDP���TTg�ƍ̪��-[���r�7O��Ztt4�V� G�&&&YYY���
-�}ǎ���u��H��E�2��?���1Bq��SSSyW���~]��̠<����N�
-��f,X���+D�;U��ٴo+""Bա�9NNNz�E�y��������$I��ܻ���k� ���H�f͚�ݻW�	��(VҴ0�Pɒ����w��!{NժUQ�d-�L��ٳC�ŠI�}ĈR�> $$u�]��^�^�t����~zBB�p�aҤI�۷o�d>\nr���z۶mtpΜ9fff���3r�>}�p;W��6m*�Ӓ����Τ#aaa%<̝߯_?�ܾ}��]%�A��2(������$VO�>
����VU���^�zU?�aÆhx�"x��Qf�ő#G�/N���ϟ�VBCC9E�9��P������6l���vtt���F|�iӦ����h�ҥK��E�u	@]*W�����xR��ݽ{w���jY�Lew����]y�壢�֬Y3|��=z�������W�^�|y����r�…K�(Q�\9t�Z�jA4:;;��矸�k׮�{�4h�ȑ#Ǎ�������lٲիWoڴ)88xϞ=�:~�8�7H)&&�/�mܸqժUK�,�={6Jsrr*S���T>G�;H~ƌ.\`]�K�.�H����cP�>������?͛7�m�F�-Z����@��w����5
-4�����X���аJ�*�Z�:t(��p��C$<|��b:�}�V������ݿ�Xń'N<�P�B�dR�R%Bh����gϞ�����}������O�<����͸��s�΁7��á ,ϟ?����ׯ߾};11g��j:m�4ڷ.	sss��aÆ-_��p��٫W�޻w-�����RMKK{�������*h����p�'x��aR��ׯ_�b��9s���&N�8f��� �֭[ǎ[�n���iӦ m������8������s���P�;w�o�>̣*�m��^�Y�f�"0N�{���o0$%\rcccY�/[�l�5pB۶m{���1bĠA����ӽ{�N�:�i���ťI�&
6�]����}Ŋ����-�ˍ���!1����������u��i�n�Dۂ��2\]��oA����8\-�]z�N����%�m���fʊ1�����׻w��ڵkʔ)xeʔQ��O���
-\
�V�Zݺu�7oII��l�ƍ�ׯ_�V-�p%��N`������b��;P;nS��ѣ���_.'�I�F�y�#�����_��\'�r�̙����>}z��%h�…'O�ܻw/HuÆ
AAA<v��)�N�������>�
�&��U��%>�<&&t�������ބ��>(�ݻw���nxٲe�po�J�Z�`��!�u��{���Gemmm�����X@Pq�
-x���č7��ۗ�Y�߲e�n3]fee�k׎�gȐ!���� I���v��#Z�(u�l��BX���%K�AzA��������njLx���4x�/��*U}fffǎqŋ��?
�� ?h��˗�Ve/���#U�Ci;\\\]���8Z	�g�F �����a�vvvč�V���
�m��uw��MU�84�������Ϲ^"�G�=�����H��x���m�=������@oc�ͥ}k׮%���ѣ|�� ?����@�$J��]*T!z��A
6L�U���hԨj���]Bľ}�h1��}��)j�C�T)GA~�����4J]�k��B�9t7Y���"\�w��|@�1�/^��6l���u�������:j'�p��sss�OVϟ?U�W�?��Ċ�۷�rM�JLLį���jSi-�×/_�ԩ�<x�pk+544�w�e^aԨQ�;v�诌?^�S�
-@�T�(�/a1��?��F�%K��� �}��(�Zs{�322(8����Y�����x�p̈́�|����DG��(��@�[�֜.B�
4`M-><���#
-�
-			Ŋ�$8,������i( ���?��رcYS�_�~�����p;u�$�����߷��F���/y�A��������(�r:�ڵ����0t�P��d�J���ӧ+V$�Ur�2���n�:0*����(��P�ti.�����۬�
JNghh#�������M�
-��0�/���C�y�r�T,'%%���n�…\�Z8�
-022�����V�Z� A�>c���x�R~d���aÆ�G+e`"�~�jbb��z�`___ڳI$��p�N�����?�����)����x�7oޤ4
,�>�jժ0x��L �%S�L�4��"v���Edd���)��������LOOg�Aо}{��ѣGU/������@G����H�8q�EN�޽;{�ʠ?�|AAA�%%����@q��]J\��@��ž={(Q�a�t�ц�Aˠ�F�Z�@�3�.D<������s��B\>m�42��S�
-t�>����}�v��&O�3�.DDDDXZZ��5i�Dps�?��
-X�|9{�zx�j�wy�Iw�a�ڵFFFxvnnn�K���ɓ
P�_��Wb`"���^�s�Nu(+��t�~����E�w֬Y��ӈ��������,~;�>�.�
Wc�R�Iw!--�������q��֬YC/R۷o�6.1�9h��ݻw�X���g�]@x��iݺu��J�(!��������#���ۛ-�a�s��\j���Iwa!>>�T�Rxd5j�x��n����$T������A]HNN�B�𖖖L�YYY���4�ѪU+a�i@������c`b��"@RRRpp������3��fPNNN���=z�������bk��{k׮Ms>>>�Jl�^ЬY3ܼ���ĉَT�#;;���Ą�,
-�ˠ*U�$�oÆ
�Ӑ222�L�BQªV�z��9a�����)����Mdd$c��ƍ��h޼����ҥK����aPP�۶m�L�֭
�(���[��9MV��A����ԳgO�p�X�G��&]�L���@��*�ĉ���Ԥ����LԤ���;������]���˗t�߾}[�~=�~�t�P�1��J�D���r��iF��BPP���6m�:t�|ccc___�[|F||�o��F�������njā1c��F���H�����ٳI
>}�T���$<<��ɉ������͛����T///zMP�\��2B`
���
-(�ŵu�V�ƚ�|"PG۶m�G�G�mԨ����ҥK��<fϞ=�e���h�ĉ\�G1Iwwww�Ú��755����"��:t�~��D�`�e˖}��Y@U�3����;;;��``P�V/_����P�V-4�3gD@�����S�����ʕ+��6����nnn�ֻx��[�la;D������ԏ;�HXs�ڵ+�dѢE�5��_�����/_���B�
-k׮�f�/^xxxP,b�S�'Of�D���$CCCh0�����7(eڴiB�'O��߿�…��mmm7m�$��1�߿�2e
-A�>�����3���7�V�Z��5���x�����/\�0v�X
-�E]X�d���%���ϟ?��&x��z�JLLd�A�A���5��˗��u������3f̠}�5j�!=z$,�~�ꕏ�mS��K����30zg��_�x������Z�����/Z��^�z��+Wn���׮]�Uc�2d���)U�S�N�n�b����;�����ٳ�����_�>33��x��.]��(Q�c�bŊyxxDGGk;!**�C��*��а{��.Y7g`�Π+z?}����N�Z�T)�'@�������0oo�f͚���IƷ,X�`�>}�=*��h��={�888P]���nj#��!¥�����o߾x��E�Ag���%s�d߾}t�����k�G�o<�B_F��������W��z%��|�Y�J�z��
����������v~²e���{������Ç�Y�&�Z��ԩ3r�ȝ;w&%%	Ԁ�<y2k�,.~��y�0������5z���A� ����m۶���;��hѢ�jժU�d�ʕŊ���q��~ׯ_ߴiS)z�-�;~�ر�S�B��)S&44T��N�>6l(;�o�Pjj�͛7���J&L�ڵk�������
-Ǡ���2}����pA'�F+�ڵ��
XU�VݴiK����}z���QP���q|�̙��q����A�+_��q///z��5z����={(��,֬Y����˗���W�^AT߹s'>>����gΜ��GeCBB6o��4iR����a��a������_�)�t�"ϣ5F�ͭ���6`����h��AW�N��N�G���R��3m$���C�b���I��K$�4�׬Y�Z�j����@j>\y��Px�@}�/��t�ʕw�މ�P?|��z�j�a�ۆ
X:u��;\��)Oﲗ��ѿ~~~����w�x�+�X�@M�{���+V��K�ɣ^eʔ���i7l����ʿcǎ��}��6l���g@@�޽{��߼y#V�LNN޸qc�6m�SJ�(1~�x��r�� &�~��y��yժU���e˒�χzchmr&++kݺu��رc�&��ϟ㱺���ON۶m�$;;���޽���:�>k�,�����qE���r���ǎ�;w��W�_�|Y�b�,�7o�\����Ç�/vrr�^����v��)((���b`�-�8p@r�Lppp˖-�Y9i�z�j\9�$W�ԭ[��������vΜ9�[��3S�L{�d��ӧO�-�b���h�������g�N�0��*T�{��w����]F��^�^�X1��
*�''����%p��Wj�{�ƍ�����Q����wn&G��;ġ��YŊ���t���6o�<�>1��������6�С,��;F��}�:tHX�A��]�
-����̜9�X�…�4��ϟ��1(s����v��P�g�����;�weB��{�nʔ)=z���=x� $$��˫F��Δ�����w�����k�
��C��?�d
-w�·"""�ΝۡC��VE��ܹ�U��޽˺�v�f͚��5
-a��P���W�\Y�fM����V�*ֆ��]]]W�X��^�	J�W�lY���p��I���ãG�b��ׯ�>�ȓ͚5�8q�}��<yº���RikM�
2��QXXX@@��yÆ
��ͥ�$�x�W�>p��u����dzmG��]�|9#a͡V�Zh���Hޚ��/_�ܹs��	�4|
77�-Zp�F%Q�\��m�N�0a˖-/^dK�x�1cƠϺ��3������P�|�z	6NHH� _�z��I�z��Ѹq�%Kʋ�`ccӺu����o޼�…,����166޺u+�bM���<٦MM?ʴ��G�]�t�رc۶m[�h��ɓءCpx�J�
-*$��MLL�V�
-&>|���_HHHtt�300�noo��X�����5����}��������HOO���������?~|��-���}���ݻwC<�X��������9d�77��;�h���ѱ|��ʄ�׬Y�}��#G�سg�ŋ_�z��30��;;;�}��ӧO3NV���h�}����������R�sڪ�
�����1����Y;��\D+�˔)ȘY���.]�H-������C�[YY/^�T�R`�Z�jA���矝;wvww6lظq�f̘�p�•+Wnݺu�޽��)..�[U��� 7o�lР����c�ҥ��ጫ�DTT����O�n�J�.M����{��mjj*\�ϟ?gfffgg�����6�3g��R���A9@rK�۰aC�T����WHJJ
-
-
-���tvv�С�m%���dggףG(y���������Eendstream
-endobj
-3435 0 obj <<
-/D [3433 0 R /XYZ 71.731 729.265 null]
+3925 0 obj <<
+/D [3908 0 R /XYZ 71.731 121.667 null]
 >> endobj
-3436 0 obj <<
-/D [3433 0 R /XYZ 71.731 696.359 null]
+3926 0 obj <<
+/D [3908 0 R /XYZ 71.731 116.686 null]
 >> endobj
-3432 0 obj <<
-/Font << /F33 1160 0 R /F32 1071 0 R >>
-/XObject << /Im1 3372 0 R >>
-/ProcSet [ /PDF /Text /ImageC ]
+3907 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-3439 0 obj <<
-/Length 2020      
+3930 0 obj <<
+/Length 2276      
 /Filter /FlateDecode
 >>
 stream
-xڥY[��6~ϯ0��G�]y����Y$n��>�m�EG�rz��wxu�OE�c�qf���8�����*�(
�'�Q�ī���_�������i��#�~���C�r�'�j\Ea��$Y�a��8X���x�gr������~���.������&���~���*���Yx�&#33*W8E��U�9?Fi�I�K���LI�	|��`�;+�`�(�X�n��N������j`ǹ�q��ؾ8��+9i����(W�p���UP�)��KOg���g֫��4��w��R]���gus���^Y˷�]v�Іo��Xk���Ңo[����U�����(�;�=w�^t��������+cc�Sŵ֊�_��[}�����CM�R�Z�H;&5"0g���]���
-�?|�i��Ib�
-Y�!a cG[�љt�����!;�:Zӂ�4.+H��;R�ދu]u��~_�cR�Tok7"u�q�d�p���LٍAFA�q4���+��@MZ�ȋ��E��a����z�.#�e�w��5�;qL�����-u.�d��uԼ�Q��8�Z����ƹ��nV+%��
$��/"��b
�����1�5��W��)u�����ܰu�*'Z����Dj_��M1�Ǜ���q����R���|Ղ�p�0ek��0�#X���5A�Lё��ts����1�z����5#�G(�M�a��4�$�5Ϳg��K��#I�;�A�>�A$���:�

�R��I��`B\2���wN:k�xw���|!�5}账T:P�۪�4���Bwn�Oϣ�
��]t�
8�37{&�����2�|i�k�i
|�n��r��+f���R��C�і��0ʼ����V�����xJᡰY�,���
+���R��J�k��3��Q�]A��*U@`�ԾZ�鑫�s[�0�����~8�5�R��,�ZJ�/|�z��+i����]��(��q'./әMQ��,���&�!"<��(�]�r�Ң��sq�|�R/~l&���� A6�;}�M����ܮ���v���%�WZ����yװ���E�v�s�ĭB')JF�)�
-�>�E��:���{a�)����.T=�a��u�Mj~\~������ee^2��-��c�(���<�2��Oc�٩ZBӑ@7�4���)őQA�7Rg0�̂ �)�P,*����+3�n�g%y4��a�^��]��������Sj�@Py5�Q�q�A�jZ�%���^Fm�|	5G�G�����w��bƪc:��"[�,�C𲻘92703/`���E̦�0s������R���Q<E̶���٬{[h\���IP{,��
s�}'y?��E�ӽ���rHg
�u��?t��h
�8��<P��gjxu��ƨ�Q}:����a�kGo�[s�8H�X��i�h�F4�z���3��~�ۖW?�$GsZ�T"x:�����s��m������a�7�{�ׇ$`��O?<�$ �-�����_����zw��h5|k��'u��v�{�5��ZJ<2*�q6G�T�������[��2^��ׯ��Y�BdܮI��3�k�V�{�\W��dr$��hCE�<6i��?FYvL�޵��!�����F�!F��9
?�B�۾l�S%?o@A�#{��Z��AUu��-d����Pm�V���x�	F���E�ir;gF������/4:b�����@t�T����Q�9�z"�Bg��`Ek��S-�ҭ�3���8+f�*zj
-x�oJ�H?����y܈Y��N��$r�VV�%X%�/E<����]������4��=;.�Y#s�ZP�v��Nks2�~b)Xo�y:��4�H��Qknm�̗!���h�f�=Ew�}P���:c*����Mig��n}�7��ӑ\���*�Q[ed�)0O������V�:�����§?u��;��������SV�=g��K����{\7���)����ѥ�=CN�7�Vd����%��ERNz�?Z���®endstream
+xڝY[��8~����'>�%��=��(��4-f03X��J"Ա��<��_��H���Y,�`��H��x�����M�obxD��W���&��a�㛐w,y�r������8�e~��g��,�c?^�g�8��U4�xOq2�^,�U�}z~mT���v�U�b���o�o;��x�gi|W�d��Q͖Q�gQx]����R?N�N�h���{�T;��
+���^'�'k��d󑻲'lQ�G�X&q�x����$��� �ʒ���`���Dz[�Qോ�#{��^���$:�F��xH�TEϳnk=�z���F2�� /U���y_�n�����	�I-O��gМ`�e�C��=Ɨ�����ƿ���{��p�v�����.B�-���;P��>.�
+�;��LQ�Y��P�z�j]����j��3M4��^Xa��B�4�*�W��]k�{n������M{]�z�`wdOآ��^9J-��ih�h�!�dY4>ѻddg�A�eAq�7U��Q<��ht%�K��[�4�S?�Y4��a{Ҭ�]��ԋ$p�v��z�ϥ0@>�i.�D�el���e�n��iY���H����H����=QL��];�Ժ�?�8?�j/�Ǜ(�R���Q�﹉"ނ�Jn��R��(�#{�vx�'}<*3w�VР�v�d4�����.+��fEc/^�BU�=Q�v����Nm��Q|_���̚��9C#��	������^�
+Y��P���(�$��S���~2���Ic���a�9�\�V��G�w%ߚ���,�SSa�5 wƅ�4.��&+6��ԺVX1T%x��0d�Q���8A���=�!lD�ߩ�!5~_�`{ݒƅ�g�
�
p�/�Z^�s*���kz6�J�&�g54�-������ސ�ؾ6ji���j�^��$s���	'�4:W��%+����c��ه+n)�8!��z2���@n��6�8�,i�	8K13�f��5L^0$DCU庮!J�O��ࣘ��n#����g0��_�ނwCo��V����l�2���ڍ��!�3�P�q*t��4�hg���5Ck
+��4K(�6�1��'�"Bs��@���{-�����ԧwjdݸPx9��N��^\���RB	,Ν4��8$�x.��fU��*�:��������������"}SV�����3��B��,�o�5hJ
(g���jʉ��H;�I�
�� ���KT�؀jK���/6ʜ��3�Ъ�u~�f~���$9�mv�M2ܝz7��q��:�����+�B��gU*�^�,��i��������Ƚ
pR#w(`6{�3��4Z�[Y�qQ��YAs��#jI�5-l�B6j_Y��!]0�U���3=�5���F7^�$�~���'FJ����{�
+���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
 endobj
-3438 0 obj <<
+3929 0 obj <<
 /Type /Page
-/Contents 3439 0 R
-/Resources 3437 0 R
+/Contents 3930 0 R
+/Resources 3928 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3327 0 R
+/Parent 3927 0 R
 >> endobj
-3440 0 obj <<
-/D [3438 0 R /XYZ 71.731 729.265 null]
+3931 0 obj <<
+/D [3929 0 R /XYZ 71.731 729.265 null]
 >> endobj
-630 0 obj <<
-/D [3438 0 R /XYZ 263.164 705.748 null]
+3932 0 obj <<
+/D [3929 0 R /XYZ 89.664 708.344 null]
 >> endobj
-3441 0 obj <<
-/D [3438 0 R /XYZ 71.731 693.31 null]
+3933 0 obj <<
+/D [3929 0 R /XYZ 118.177 708.344 null]
 >> endobj
-3442 0 obj <<
-/D [3438 0 R /XYZ 245.796 671.237 null]
+3934 0 obj <<
+/D [3929 0 R /XYZ 435.626 708.344 null]
 >> endobj
-3443 0 obj <<
-/D [3438 0 R /XYZ 71.731 664.099 null]
+3935 0 obj <<
+/D [3929 0 R /XYZ 71.731 693.235 null]
 >> endobj
-3444 0 obj <<
-/D [3438 0 R /XYZ 71.731 620.263 null]
+3936 0 obj <<
+/D [3929 0 R /XYZ 89.664 677.46 null]
 >> endobj
-3445 0 obj <<
-/D [3438 0 R /XYZ 71.731 607.312 null]
+3937 0 obj <<
+/D [3929 0 R /XYZ 71.731 675.303 null]
 >> endobj
-634 0 obj <<
-/D [3438 0 R /XYZ 217.917 570.096 null]
+3938 0 obj <<
+/D [3929 0 R /XYZ 89.664 659.527 null]
 >> endobj
-3446 0 obj <<
-/D [3438 0 R /XYZ 71.731 562.744 null]
+3939 0 obj <<
+/D [3929 0 R /XYZ 71.731 644.419 null]
 >> endobj
-3447 0 obj <<
-/D [3438 0 R /XYZ 71.731 542.834 null]
+3940 0 obj <<
+/D [3929 0 R /XYZ 89.664 628.643 null]
 >> endobj
-3448 0 obj <<
-/D [3438 0 R /XYZ 71.731 514.007 null]
+3941 0 obj <<
+/D [3929 0 R /XYZ 71.731 621.504 null]
 >> endobj
-3449 0 obj <<
-/D [3438 0 R /XYZ 432.663 501.155 null]
+3942 0 obj <<
+/D [3929 0 R /XYZ 71.731 590.62 null]
 >> endobj
-3450 0 obj <<
-/D [3438 0 R /XYZ 120.418 488.204 null]
+3943 0 obj <<
+/D [3929 0 R /XYZ 71.731 561.793 null]
 >> endobj
-3451 0 obj <<
-/D [3438 0 R /XYZ 212.92 488.204 null]
+1652 0 obj <<
+/D [3929 0 R /XYZ 71.731 528.852 null]
 >> endobj
-3452 0 obj <<
-/D [3438 0 R /XYZ 71.731 468.114 null]
+686 0 obj <<
+/D [3929 0 R /XYZ 211.45 485.754 null]
 >> endobj
-3453 0 obj <<
-/D [3438 0 R /XYZ 71.731 457.22 null]
+3944 0 obj <<
+/D [3929 0 R /XYZ 71.731 476.932 null]
 >> endobj
-3454 0 obj <<
-/D [3438 0 R /XYZ 71.731 452.238 null]
+3945 0 obj <<
+/D [3929 0 R /XYZ 71.731 431.154 null]
 >> endobj
-3455 0 obj <<
-/D [3438 0 R /XYZ 81.694 429.424 null]
+3946 0 obj <<
+/D [3929 0 R /XYZ 71.731 402.427 null]
 >> endobj
-3456 0 obj <<
-/D [3438 0 R /XYZ 81.694 429.424 null]
+3947 0 obj <<
+/D [3929 0 R /XYZ 71.731 402.427 null]
 >> endobj
-3457 0 obj <<
-/D [3438 0 R /XYZ 71.731 427.267 null]
+1653 0 obj <<
+/D [3929 0 R /XYZ 71.731 324.565 null]
 >> endobj
-3458 0 obj <<
-/D [3438 0 R /XYZ 81.694 411.491 null]
+690 0 obj <<
+/D [3929 0 R /XYZ 333.287 285.192 null]
 >> endobj
-3459 0 obj <<
-/D [3438 0 R /XYZ 81.694 411.491 null]
+3948 0 obj <<
+/D [3929 0 R /XYZ 71.731 274.827 null]
 >> endobj
-3460 0 obj <<
-/D [3438 0 R /XYZ 71.731 409.334 null]
+1654 0 obj <<
+/D [3929 0 R /XYZ 71.731 234.084 null]
 >> endobj
-3461 0 obj <<
-/D [3438 0 R /XYZ 81.694 393.558 null]
+694 0 obj <<
+/D [3929 0 R /XYZ 411.1 194.811 null]
 >> endobj
-3462 0 obj <<
-/D [3438 0 R /XYZ 81.694 393.558 null]
+3949 0 obj <<
+/D [3929 0 R /XYZ 71.731 184.446 null]
 >> endobj
-3463 0 obj <<
-/D [3438 0 R /XYZ 71.731 391.402 null]
+1655 0 obj <<
+/D [3929 0 R /XYZ 71.731 141.646 null]
 >> endobj
-638 0 obj <<
-/D [3438 0 R /XYZ 236.902 359.088 null]
+3928 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-3464 0 obj <<
-/D [3438 0 R /XYZ 71.731 352.961 null]
+3952 0 obj <<
+/Length 1979      
+/Filter /FlateDecode
+>>
+stream
+xڭXm��6��_a����z1%8HҤ��(r��m?жl�%������{�3�({�r�b��p8�λ����4��K���DͶ��쀓�_�Bq'$wͫ�?�����_'��a?[ű'�,�#?S��a������.?/�"x���c[T_���e�>��ś�A��S��_����(ųp�ǫ����R?[�F�����tI3���Xl~��9C�����>w�(*^5/�.����vޑ���t4E0��?����������C�1pZ���f;���ĩ�k �dԥ�h�nBT��
�z��E�e��!���뮉�"�3�+�#���"	�"_D�{���T0����|��(�� ~�*���C2 �,���b�j�I��2	���@R�����X�=%x��9��'�3�
�Ѽ�����»���I�=��b���[ t�{�m� ��y<�>�ꐋ�/KU�s�"u/�Dyˉ���+�A����2�R5��{-J�9y�H<��pl����Ҙ�<��c�=�ƕ|����0\\�����L@��Dhb#�Jc
+l�e��������"�Q>��B��+��s��τ��剟
hW�FԎ��Xv��O�%2�Nts_�-��F��ʱ�m�@�jڡx��������ʷ]QW-��:��֑,�>I�.�^��ϝ6��ikjN&э���l,��l$�
�
+�|�n֧�̗rq�܋��֛�.�.g�����TfS��>Ό�u%�v���a�\��V�gR��g��Rrī@J�mW�r*<K�JI
$�0�g�:"h��ksaV휓;�iEMcW9�=�+����ĉ)�ɛAL!����n9s�TR@Z�?�W/s��:����&��$]��k�4ի�%�b������e9ƃ��8�p�BB5�u���f�9i4U��Ix%	9CV�y,I��x�b��DZ�WH�AZ,�x
+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
+endobj
+3951 0 obj <<
+/Type /Page
+/Contents 3952 0 R
+/Resources 3950 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3927 0 R
 >> endobj
-3465 0 obj <<
-/D [3438 0 R /XYZ 71.731 281.215 null]
+3953 0 obj <<
+/D [3951 0 R /XYZ 71.731 729.265 null]
 >> endobj
-642 0 obj <<
-/D [3438 0 R /XYZ 166.08 247.905 null]
+698 0 obj <<
+/D [3951 0 R /XYZ 328.439 707.841 null]
 >> endobj
-3466 0 obj <<
-/D [3438 0 R /XYZ 71.731 239.267 null]
+3954 0 obj <<
+/D [3951 0 R /XYZ 71.731 697.476 null]
 >> endobj
-3467 0 obj <<
-/D [3438 0 R /XYZ 344.894 228.976 null]
+1656 0 obj <<
+/D [3951 0 R /XYZ 71.731 641.724 null]
 >> endobj
-3468 0 obj <<
-/D [3438 0 R /XYZ 71.731 214.864 null]
+702 0 obj <<
+/D [3951 0 R /XYZ 427.527 604.508 null]
 >> endobj
-3469 0 obj <<
-/D [3438 0 R /XYZ 155.277 192.413 null]
+3955 0 obj <<
+/D [3951 0 R /XYZ 71.731 594.143 null]
 >> endobj
-3470 0 obj <<
-/D [3438 0 R /XYZ 71.731 182.351 null]
+1657 0 obj <<
+/D [3951 0 R /XYZ 71.731 551.343 null]
 >> endobj
-3471 0 obj <<
-/D [3438 0 R /XYZ 154.779 157.842 null]
+706 0 obj <<
+/D [3951 0 R /XYZ 319.902 514.127 null]
 >> endobj
-3472 0 obj <<
-/D [3438 0 R /XYZ 71.731 146.44 null]
+3956 0 obj <<
+/D [3951 0 R /XYZ 71.731 503.762 null]
 >> endobj
-3473 0 obj <<
-/D [3438 0 R /XYZ 426.159 123.272 null]
+1658 0 obj <<
+/D [3951 0 R /XYZ 71.731 460.962 null]
 >> endobj
-3474 0 obj <<
-/D [3438 0 R /XYZ 71.731 111.153 null]
+710 0 obj <<
+/D [3951 0 R /XYZ 284.583 423.746 null]
 >> endobj
-3437 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R >>
+3957 0 obj <<
+/D [3951 0 R /XYZ 71.731 413.381 null]
+>> endobj
+3958 0 obj <<
+/D [3951 0 R /XYZ 71.731 372.638 null]
+>> endobj
+1659 0 obj <<
+/D [3951 0 R /XYZ 71.731 339.696 null]
+>> endobj
+714 0 obj <<
+/D [3951 0 R /XYZ 262.26 302.481 null]
+>> endobj
+3959 0 obj <<
+/D [3951 0 R /XYZ 71.731 292.116 null]
+>> endobj
+1660 0 obj <<
+/D [3951 0 R /XYZ 71.731 252.304 null]
+>> endobj
+718 0 obj <<
+/D [3951 0 R /XYZ 223.845 209.207 null]
+>> endobj
+3960 0 obj <<
+/D [3951 0 R /XYZ 71.731 197.035 null]
+>> endobj
+1661 0 obj <<
+/D [3951 0 R /XYZ 71.731 185.491 null]
+>> endobj
+722 0 obj <<
+/D [3951 0 R /XYZ 223.569 148.275 null]
+>> endobj
+3961 0 obj <<
+/D [3951 0 R /XYZ 71.731 140.923 null]
+>> endobj
+3950 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3477 0 obj <<
-/Length 2422      
+3964 0 obj <<
+/Length 2378      
 /Filter /FlateDecode
 >>
 stream
-xڽYko����_!(*ˇ�G�M���N�ZjѢ�5���&�v}��}����:��E��vwfΜy-�����&�6�
-w^��gI�ʟ���^z�R/Y:k�^}sE���[G��q��"/Z�g�(��q8;��ϯΤlh�X��?_{���5+N��m{��2������#0�6�n=��(n�Rh�����J����9o�T���~��0�?,�xN�'���"��V��L+���کI�>/�O�^^�����J��X���\=�L��!���n*�M�g�"���T��b�/{��Z?���Z���>)�0��a�"�j�HI��55*��Ȓ[�F��sYѺ��za�w�Q6�5��q9�!כ>�~���'*P�
-�O�ZMWw�j8>��f�����-��*�mr��Zɞ-�g-أh�o��揟+~�Ï}����x�&ͅ:�~nI��-SP�h0r�&�Y0�K^�b�w<is�V�%ϑg����K���et�Ko�etٙh�$uA���� ���J���Uvk��;\"����Q�b��YԷ���!�XZ���j�
-J�r�hw��b_�b9���?}<3���mR�M�qs��X�񡴍fA���B]����V
-ص{��@�l�ڬaeF�_��Ł�B=�Z�8,TQq@%��~*!!�6H�^Y�E��ԉy�]w�yF	���d�I��!]b���KF��Q��$�o��o{�2��M�:"��Hf��
-^�W�*=����sG(#%�%d;T8I�􈖱Ʀ���3�#��cS
-:�����77H������\�F�*���J0�t%�GK.:r���o>�sCT����s.�	�
���ŋ#��T�i�qϞ�ҧ෱���M@��&`�|��1<*�mCDuƿV5�SHm�
-��mI4Ԇ��E��\�!4C�
�p��o�
���
����/(�׬2f�]��d�r�"�kom��=�#����O��/'���]	o#�����S^5_���777}�I���hS�ԩH/�"m|/X�"�u5z+3)<܀��%<�ʳ���^)�"�]v>��NJ k�$gC�~���R�B�ZI�J`,��3'=I,�3]wj����V�.�:M\�*�H���sz��Ao��@k^�L�=�d,�e�z�g��l}™�au�d�C(,�6I$GJ����$�������
��Xq��iz�����3X�VTqG��[mv@����)��p
-��Up��!�⍷W`������]W�o�*D�*v��p���,�!MY#���I�Bv
-n�,��_S�[��B��-�%B�ӫ�/b�1?�Q~k�a<��B��&vn��̬iI*b�� `#YK��^?Š�>�9�穇3/F1̝$�ϔ6c�i}�qjܿ��vA��/��,�����jF�+��'�\V[b�m�h�������[G��	�!�x>ٸ�J��P���}�[m����ZA��\e�/l@�}/�iu���3q����/G �h}��a�U=4��Y��E��aF�(�f��0�
-�"i�$|��{a?5�_�ps�Ϸ7c$��t#�]��)��T^E�j���×SY-=e���9��9�[�**.���T{�h8L�X�h>�)��m�J�\��!D��N;�T�#{����E=��6+�W��]t3,@Ў�OZ�����eI�����(%�3������9FN�S	14}/
-�N��L-�m�k>�V�	�b+(zq���Gh���D��{�
-�$�ݡŜ�&�f��\FYB/{�d�I�n�a�Қ�N�t������e��O�9\�P��0�W�i׈#�3��Fۺ{�a��B�_JE��k��S�^P;����y�C
-=?��3���ע�ǙZ���~5+�4�6k���#���Y��I>����ӟZsӯ;4I�����t�&�.��ܸ�R�rl�����e�D��_-�:�:of��iĜW��n+s;[)�F�?�N�Dsj�`��z�c������-9���?
Jzg�v�&=(p���k��[���2�Mw����Te�$#ש��Zwn�zҌ�,D��@�i���y����{�vbj�݀d��K��.�h$��y�p^"�\Y�hQ:03R4x;�'���a���X�8w]"��9b�P�3�_�7�y�dz/���I�T����
�=�m�ǫ�U����R�n�&��d*����JM2Z����帉S��&�۲t� �
-$97)�����
-õ3`���	�^9)L��A\]N�}��%�����5�v��<�w'UqG�B7���/|�Jx���>�X�W�v�/t��v�?��v���e@&1�Z���$����5d�d�E�h-�5oj���.2Dq,��o~�p303=
-���m�Jz�����ٷ�v��e{n=?�C���v�%�P�a�\#endstream
+xڍXm�����_A�!�"	l*U�7�;�|���ۇY4�b��ѭ�*?>O�����v�����z���Q2��/,�x�ᑮ�4�6�W��3߾JTb�"�3���Ww�d�`��l��fYgy>Xdi����u��ao��6�I:�Fy,ϏmY�|��~)�ʌ���뫿��
��"^-�_�)�\�.NF�w�.�l6c��{��wwOOO�|ŏ�t��kF�2�
a�b=�G�2z���]S�B��Nf�0���t/�/�1J��6�����GP���i���/7{���Q�{:M-4�+k5noɑp�$I㕞�{%����u�8�`�:��i�=���r5����U���f�K�l6�'1�,�q����-��� ����|,���yvC���l�'�Y�&�LYyw���R�'K������7^:�P�E�[�[>K��w&7d�w����TA����|��$��=����e<�D�H���P�W�,C(�\!�Z����B�[y>�N���V(#��9`Pw�D�֭4|N�z2�*۽�B�c���8�<��[��C�n��ۭkT��[�ܑE��y�K �λS��?hBL���G�i�3��K[C��^z�Ϥ�i�D6Hf����[�0�F�1 E���]�����Z���wݫ�3���t�@���p
+'���=��F����x�@?yt�i"�~�,;d�s�P
0ߵV5,%�i�0��,�mX��x�s�`�l�jy2��/��"�7d{�>I���� ��s��8'��p�E!�fX�	�����+���J���La6_��V�'�'�	���%D 3�~�LX���,���@����p�����A�7�A4gl���yq��Dy�o��W�2O/��(�*x�]Y�/f����Wt���*N�3�A�S~�S(��Y(~oN ��*:����2>IPf��1JX�k�ϥ1[F���l�>̖/��m��P�_��s��m�h�hvv,��r�)p�J����}g�c0c>��;��t�;��C��DdET�&TH!������(�ß�)'O�����6(�JZۯa�;S�O|�0�D �����D02VE+#rq�'�#j,��$��
+%��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�zcR7���������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
 endobj
-3476 0 obj <<
+3963 0 obj <<
 /Type /Page
-/Contents 3477 0 R
-/Resources 3475 0 R
+/Contents 3964 0 R
+/Resources 3962 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3495 0 R
+/Parent 3927 0 R
 >> endobj
-3478 0 obj <<
-/D [3476 0 R /XYZ 71.731 729.265 null]
+3965 0 obj <<
+/D [3963 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3479 0 obj <<
-/D [3476 0 R /XYZ 134.535 682.441 null]
+3966 0 obj <<
+/D [3963 0 R /XYZ 282.496 708.344 null]
 >> endobj
-3480 0 obj <<
-/D [3476 0 R /XYZ 71.731 670.321 null]
+3967 0 obj <<
+/D [3963 0 R /XYZ 71.731 675.268 null]
 >> endobj
-3481 0 obj <<
-/D [3476 0 R /XYZ 425.163 647.87 null]
+3968 0 obj <<
+/D [3963 0 R /XYZ 71.731 675.268 null]
 >> endobj
-3482 0 obj <<
-/D [3476 0 R /XYZ 71.731 635.751 null]
+3969 0 obj <<
+/D [3963 0 R /XYZ 71.731 587.473 null]
 >> endobj
-3483 0 obj <<
-/D [3476 0 R /XYZ 71.731 606.162 null]
+1662 0 obj <<
+/D [3963 0 R /XYZ 71.731 556.489 null]
 >> endobj
-646 0 obj <<
-/D [3476 0 R /XYZ 201.526 572.852 null]
+726 0 obj <<
+/D [3963 0 R /XYZ 197.015 517.216 null]
 >> endobj
-3484 0 obj <<
-/D [3476 0 R /XYZ 71.731 564.4 null]
+3970 0 obj <<
+/D [3963 0 R /XYZ 71.731 509.297 null]
 >> endobj
-3485 0 obj <<
-/D [3476 0 R /XYZ 463.469 540.971 null]
+3971 0 obj <<
+/D [3963 0 R /XYZ 103.934 484.14 null]
 >> endobj
-3486 0 obj <<
-/D [3476 0 R /XYZ 71.731 526.859 null]
+3972 0 obj <<
+/D [3963 0 R /XYZ 105.405 471.189 null]
 >> endobj
-3487 0 obj <<
-/D [3476 0 R /XYZ 514.935 491.457 null]
+3973 0 obj <<
+/D [3963 0 R /XYZ 71.731 464.051 null]
 >> endobj
-3488 0 obj <<
-/D [3476 0 R /XYZ 71.731 479.338 null]
+3974 0 obj <<
+/D [3963 0 R /XYZ 352.773 453.256 null]
 >> endobj
-3489 0 obj <<
-/D [3476 0 R /XYZ 71.731 462.916 null]
+1663 0 obj <<
+/D [3963 0 R /XYZ 71.731 435.224 null]
 >> endobj
-1203 0 obj <<
-/D [3476 0 R /XYZ 71.731 413.186 null]
+730 0 obj <<
+/D [3963 0 R /XYZ 185.739 395.951 null]
 >> endobj
-650 0 obj <<
-/D [3476 0 R /XYZ 183.664 370.088 null]
+3975 0 obj <<
+/D [3963 0 R /XYZ 71.731 388.599 null]
 >> endobj
-3490 0 obj <<
-/D [3476 0 R /XYZ 71.731 357.65 null]
+3976 0 obj <<
+/D [3963 0 R /XYZ 71.731 316.883 null]
 >> endobj
-3491 0 obj <<
-/D [3476 0 R /XYZ 71.731 341.391 null]
+1664 0 obj <<
+/D [3963 0 R /XYZ 71.731 288.056 null]
 >> endobj
-3492 0 obj <<
-/D [3476 0 R /XYZ 71.731 299.712 null]
+734 0 obj <<
+/D [3963 0 R /XYZ 198.349 248.783 null]
 >> endobj
-3493 0 obj <<
-/D [3476 0 R /XYZ 71.731 299.712 null]
+3977 0 obj <<
+/D [3963 0 R /XYZ 71.731 241.431 null]
 >> endobj
-3494 0 obj <<
-/D [3476 0 R /XYZ 71.731 194.622 null]
+3978 0 obj <<
+/D [3963 0 R /XYZ 71.731 197.675 null]
 >> endobj
-1204 0 obj <<
-/D [3476 0 R /XYZ 71.731 122.727 null]
+3979 0 obj <<
+/D [3963 0 R /XYZ 71.731 177.685 null]
 >> endobj
-3475 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R >>
+3980 0 obj <<
+/D [3963 0 R /XYZ 71.731 133.849 null]
+>> endobj
+3981 0 obj <<
+/D [3963 0 R /XYZ 71.731 97.152 null]
+>> endobj
+3962 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F35 1437 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3498 0 obj <<
-/Length 2208      
+3984 0 obj <<
+/Length 2505      
 /Filter /FlateDecode
 >>
 stream
-xڥYmo������'�I~?�(ns��+R\�����,1ITEjs��$��-���,��33����,��h����
->�Co7��|�N�ͧw>��G��g�?����Z��a��=��֫U��ng�U�7��9���>OjŚ�2ބ�m`?�H^������o^���~���)ܬv�a��j=32*^͢]Gm9n��zo��;m�n?��k
-\�)R���:���2����`���"
-�9Ki�/���y�>�5\9�"���Y�Y�."�����pd��W�
-�`���E jg��UÒ�	��ȶAy�R�^�nmB
-�Ç������qW{���[�	s����~ø(�τ*�â��t������wurbAz�����%��,@|�Y�k��^����05��$��S�a���:e�R��Lo�D�'�H�"n
�R�y!lX-f8�>��Y��c�n��'�nwyK։"�v����	��<�ൺn�w�.�0i$��q�P�/�^���X���r��V���<�d�;J���|K>�[��%>	�a/~���9�t����&`٢V6p�(O��e�W�I���?a�'����:qF�bo��֠��*�J�<�x7LzRg���c��.iJW�]���@���+�;�?p���j���}H��e�9���bg(�g��R�$�ʢ���|���]����M��}d�{�m�(=1ڥ(�u��v�����t�񕫺=�Z�'�n�����9�9H�kT7�9�cļ>M����+���髵�h�\g�hV̦�8������c?���x[�%��l��.��"�3�)��h�����~�\��պ�X���W{Q/)z�ޑD�J�Z8�Iɔ�I�`F٭��!랙��f�&!��>dWt{b�n���a�;�әNJL�`g�I�-2}t�}3$j�I�܄#E�8�=�LJF��8MGm-&��Ko�o�8���ͅ�r�z���
��2��Q�Q`@����s�K�D���|�'Չ9����	�0K���O��d��#ڽ�d��u}?�����%w�I�ՍǑ��+H��:�D�J���b��7]��T{��͝��v}�P����r]��se³��mY&��u�B�ᄅ릑�<H`��
-�����4m�\/�����``ɮ%2�!�������|�E�OfN\��2���$A����&�S=%
'���&�\�ĕ�넢�GEMA�[J��2����H��89�����5w�)�VQԼi��%a��"�xV�������'�.Fh'
-���zi^$���c�
��=f&g���	9��h(Q�,$�-�l8P����<>�|��YU�?ה"�xج���Z�y��Wjr�"]�\��c���f��]�a2|tؽ4zeÄ���Bk�$��r1��l:����л��i��#���f� ^m�c�����^�R�gno}�F%�^�;���؂�v�������}
�r�a�z}�WQ=����dʪ-A�!^$zP�S*`T5�)��r}h�[MS�e*�~3^�J�.e�?9�+��%��ZC�D�Pn0�4:2h]�ۏ�I�5-��d��2�)+ݮNXhH5�9T3&���YӮ���y��>�D��uk/�R=z��1օ!���h�(�JX����G��W�/=�����.��O�z���7�ĭ��)a����?@�C����Om/�SQ�>�u��n���񼔜�o��B��JW�y��ƭ�T��F0"�2ʉS2cuYD1�\�{K�E���z�G�0y)C�b��P��A���R4l�:C��I3��{�]S{p��秽��$\G<����{c?d�yp�zI��^��pŁ�ܴ�����i+{�x�%b����x��P���� i��.E���%�6m��ˆafLqiH�4�[���?��
-!^�G��|�� )6��w�Xmef��yyi(y��hf���׏������;�yst��0��Ӥ�&�(���V�n�K�5t����w{��-b��M঩���ه]w�X&T��)��һ����dL
�D��=F��0^7�o��A�G�����?*����Ҧ\X�3$����RP�r���e�ad��D�+<Np}��h��͸Ku���%zXZw�r��o�m�x*�5H�X5>��?����>�]��{d���&�aLBL}�~k���d)endstream
+xڝYK��8��W4���e�-�M/f�y�ۋ�b�ڢm�%Q�Iz~�ԋ����E\,��b��*u��_�P�a��OR�I�?�7��f��&����V2�޼{LӇ*��������i��C�&�>O���?\�����%y!���6�������m��O�x��i�0O˰ڧi���1*)��٢}�f���	�.���LL\�&���6qh�(��j��[5n�}p�Ω�ӽ�2�n��t�]�l�q嘪��L�FX�ֵ��=h��ь��=�Qo�\���)�#%;c�k�h*
ԨA2ޢs�e�8	+�>�>	��G"
:5>3�F��,C{"�>4g�?6��2オS�.���hYYw���o��3#s��J,����5F̺�=u�-y�4��OZ�b7�:�:fL�d��,�U�^a�;H!�unwt� B��>3��i%�dv���1���ʩ���ܩ��d ^P�����h�h������qk�3]?�;�Y�	6���N}m���$���)�~�d_#i��*�x_��f�$�a4�d2�v�)Q�m;��!��*>��G]!�o��a��p�"
+�jO�*�8ƒ�{@��_G}�����pͬd�#��<�H�/ ��S�,(^#�>��m�����d
d&~cE�o��jl�d�����%��"���<��FɅ"��cM����D|���m�?{�^-�Y��1a�&σ{���o�{��2c��L������G-"�����2@�B\�VaZ�˵�rq�G3�����9��?�4X�drix�h�|�y˔\K�6�BC��/�Ѣ���92�f3�x�<���s��T��U��/n��"�;մ���Gm�D�}D	�գ��+��}��#h�����46�G�ޚ�ny���F`����b��#0;hS���%�0�Uޏ@I��E~DU�Do
+����ȗ�~��4�����	��q��>7�	UA�$"�v�?�?��i|J��W<���a;�/²������S%�lU�J;3�q<
0�y2%o�<MuB�Hx�&����`^�=��@���U[�*ӣ�r7k�n���w����˝ؙa�бs{��T?|.��i$.W-�KH��d�5c6��#�ΐ2�����n{�aX�5tHx|���E�gu|��
��K�|/���Gq�7�K.P�-P�O�F��WT������ۺ�e��}-
+ 2����5MW���#%3�(4��g+P��(%*����Ed
��2M�_��L��y��(�q �.�Y��e'#�Ό�9��S;�b�^+�w��_J�X�읗���N\^�e�=����X��,#N�5 �Q��1lE��|�2��X_�B�%�n���i�sG�p����%kxi�w.�
+���3���	 �������D���9�E,�����5�C��̔x�i�I��z<M-sNSDLQ���Kg��V]�/LA5����ۊz���8�`~�;�|4���ށ$3��1J�%����6�z�R�P��!G)�c�VHP�*,H���i�5�������E2j�C#�JI�=&ANI�C�R��r���ڤ	��
���+E,�VQ8p�\r5�"5H������Ƣ!!K�;�/��󰄖�+;[-�=
+�Z�7q=��N�����e�
+�~�`�ִ\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
 endobj
-3497 0 obj <<
+3983 0 obj <<
 /Type /Page
-/Contents 3498 0 R
-/Resources 3496 0 R
+/Contents 3984 0 R
+/Resources 3982 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3495 0 R
+/Parent 3927 0 R
 >> endobj
-3499 0 obj <<
-/D [3497 0 R /XYZ 71.731 729.265 null]
+3985 0 obj <<
+/D [3983 0 R /XYZ 71.731 729.265 null]
 >> endobj
-654 0 obj <<
-/D [3497 0 R /XYZ 198.969 705.748 null]
+3986 0 obj <<
+/D [3983 0 R /XYZ 71.731 718.306 null]
 >> endobj
-3500 0 obj <<
-/D [3497 0 R /XYZ 71.731 693.31 null]
+1665 0 obj <<
+/D [3983 0 R /XYZ 71.731 652.389 null]
 >> endobj
-3501 0 obj <<
-/D [3497 0 R /XYZ 408.485 684.189 null]
+738 0 obj <<
+/D [3983 0 R /XYZ 256.243 609.291 null]
 >> endobj
-3502 0 obj <<
-/D [3497 0 R /XYZ 71.731 625.245 null]
+3987 0 obj <<
+/D [3983 0 R /XYZ 71.731 600.468 null]
 >> endobj
-3503 0 obj <<
-/D [3497 0 R /XYZ 71.731 612.293 null]
+1666 0 obj <<
+/D [3983 0 R /XYZ 71.731 572.624 null]
 >> endobj
-3504 0 obj <<
-/D [3497 0 R /XYZ 71.731 607.312 null]
+742 0 obj <<
+/D [3983 0 R /XYZ 237.557 535.408 null]
 >> endobj
-3505 0 obj <<
-/D [3497 0 R /XYZ 89.664 586.555 null]
+3988 0 obj <<
+/D [3983 0 R /XYZ 71.731 525.043 null]
 >> endobj
-3506 0 obj <<
-/D [3497 0 R /XYZ 114.57 586.555 null]
+3989 0 obj <<
+/D [3983 0 R /XYZ 406.408 502.332 null]
 >> endobj
-3507 0 obj <<
-/D [3497 0 R /XYZ 417.59 586.555 null]
+3990 0 obj <<
+/D [3983 0 R /XYZ 512.678 502.332 null]
 >> endobj
-3508 0 obj <<
-/D [3497 0 R /XYZ 71.731 571.446 null]
+1667 0 obj <<
+/D [3983 0 R /XYZ 71.731 469.291 null]
 >> endobj
-3509 0 obj <<
-/D [3497 0 R /XYZ 89.664 555.671 null]
+746 0 obj <<
+/D [3983 0 R /XYZ 218.447 432.076 null]
 >> endobj
-3510 0 obj <<
-/D [3497 0 R /XYZ 71.731 553.514 null]
+3991 0 obj <<
+/D [3983 0 R /XYZ 71.731 421.711 null]
 >> endobj
-3511 0 obj <<
-/D [3497 0 R /XYZ 89.664 537.738 null]
+3992 0 obj <<
+/D [3983 0 R /XYZ 71.731 404.813 null]
 >> endobj
-3512 0 obj <<
-/D [3497 0 R /XYZ 71.731 522.629 null]
+3993 0 obj <<
+/D [3983 0 R /XYZ 219.242 394.018 null]
 >> endobj
-3513 0 obj <<
-/D [3497 0 R /XYZ 89.664 506.854 null]
+3994 0 obj <<
+/D [3983 0 R /XYZ 71.731 353.007 null]
 >> endobj
-3514 0 obj <<
-/D [3497 0 R /XYZ 71.731 499.715 null]
+3995 0 obj <<
+/D [3983 0 R /XYZ 71.731 338.063 null]
 >> endobj
-3515 0 obj <<
-/D [3497 0 R /XYZ 71.731 468.831 null]
+3996 0 obj <<
+/D [3983 0 R /XYZ 71.731 289.012 null]
 >> endobj
-3516 0 obj <<
-/D [3497 0 R /XYZ 71.731 440.004 null]
+3997 0 obj <<
+/D [3983 0 R /XYZ 317.393 263.109 null]
 >> endobj
-1289 0 obj <<
-/D [3497 0 R /XYZ 71.731 407.063 null]
+3998 0 obj <<
+/D [3983 0 R /XYZ 232.347 250.158 null]
 >> endobj
-658 0 obj <<
-/D [3497 0 R /XYZ 211.45 363.965 null]
+3999 0 obj <<
+/D [3983 0 R /XYZ 71.731 248.001 null]
 >> endobj
-3517 0 obj <<
-/D [3497 0 R /XYZ 71.731 355.143 null]
+4000 0 obj <<
+/D [3983 0 R /XYZ 71.731 233.057 null]
 >> endobj
-3518 0 obj <<
-/D [3497 0 R /XYZ 71.731 309.365 null]
+4001 0 obj <<
+/D [3983 0 R /XYZ 91.656 211.901 null]
 >> endobj
-3519 0 obj <<
-/D [3497 0 R /XYZ 71.731 280.638 null]
+4002 0 obj <<
+/D [3983 0 R /XYZ 71.731 172.35 null]
 >> endobj
-3520 0 obj <<
-/D [3497 0 R /XYZ 71.731 280.638 null]
+4003 0 obj <<
+/D [3983 0 R /XYZ 475.448 159.398 null]
+>> endobj
+4004 0 obj <<
+/D [3983 0 R /XYZ 71.731 118.387 null]
+>> endobj
+4005 0 obj <<
+/D [3983 0 R /XYZ 71.731 113.406 null]
+>> endobj
+3982 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      
+/Filter /FlateDecode
+>>
+stream
+xڝْ��}�Bo��F4��~ڝ�Jʼn=>R�<`DHB-E*<v<���93.�4ݍ�FP�	�n���c�D�e�f~l���w�`�e��|xx���8ޔ~�ś��&�c?βMG~�F������I]�mwQx��ߟ{�y�a<��Ե�����{��q�E��LI����E�_F��r�'�$w�o�A�b��J�)��[���O��av����5�Ҋ��������v�����'�~݆�Iw�g��ȫ�!�7�d颻�m�tjy`3U��<�C�;dk�=n���>���
��kǎ�u�_+�b�o�f`��\��z��FPċ�m���	���#����+�q6LVD~��n^��Z�7̻��M�0�5���}ߛc�AGa�y�2�~=��4�ȼ��:A#��5/ɼ88��W���J#EF&J�!�B�md����6�y�ph���1p�8b�c��p�r���/	�K�%y��b�ö��@�=���Ix�nhL��Bi�q��8/��`��BKfo�В�…��|���m�ǻ��'!�Z���L�F�.��˯=�xh��%�@���h�_9.�)J���s��K��c̰|{�
S��a����'�!�,~=�98/9�`��Kfo;Ò�����|���L���FK������6A�ث:��!X��q��e��w�e�g��~V$��u�yɮ��]��޶��®�_�aTz��-\���Q)_P�6��jo3;_z�sk+�/���<=X�)y��o��B�,���=s�oߞ�$Ⱦ6��`d�.�+���',u�m�zO+��J�+W5����>V����-�t�t+0J�)�(���e�g�����F�RmB�R?	"q~��b,+�}[����Ym��{�I�<x�/�/�Q���q�M���+���S�i�;W������\��ۛA��3�V������DΪ���]��1�vI�INǔ���Rs�wÈFF�31đ���L}ǐJ�M%xduh46;q�	ad��|:�'�Qi��O$2� �Y:��f����ۉs��=V���2-FT��F8�gñ9ڧ 
t����9��Oz�����a਩{fb�d@(�c�+�0�&�ϊ#�`Js8�����edG������5g���G��Z�;��
+9��e䪡G�„�J�mo��"�!}�|D�-&'u��p9	B�'_�AL�|�
�0�f����KkfxwM-�X�0��L�b�*�+��I�{]39���%���`�������<���/.�
���]ptЩ��x��ٗ���T�Io��瀉k0����=�(Z'LEtT~�ˠ���h�s3����TsQ
+�F� �����7�Z��RD3Kjq>1�Z��ekOg�#��@WԊ٪;�M���va�;�Qd��:�I�αZ��N_��<f�c��//k�mW�>d�pSOI�&��=��b>C�X5��I��Ro%���F��%�8K$�N�B��OUU�#�:�o;���Q+h�E$X>iU���V��E����B��=$�y�sh���㦞y����^j.�՜P��x��ɹv!xi>�E��>@���4	�k������\�a�2<��,�:>���O)_��J��A0D�1?@�\���J'Y��x�u�jd�l{t��&|+�F���p�ZԳ�1�Z�G-dӫOM�-*�9��yn�}ص@� ��0��
+a
�X�2HJr�>��w���z�%	�[�²�?�>[r»��P1�+[x"����c(ES�WH���1E($*�.mFo8(���W��4^��5-I���rb(9q-g�s�0y�v.
h��)��twr|���#�1��m
+E���h(��:e��N�rvշ�5ࡁ�)h�|S�!��b�t�϶[v�o�@�"�-1P����hl*�ޭ
_��nV=�(�ܺa��
+������@��i>`�Tb� I�#AT�nĄu�d4lǁ1��X�摬$bYȫq��VƸ�R�X�a���>O�1�a� 5~�.m�Wڶ�q�qs�҈G���*��8�a,
+�pH�������B�)�y�����Ū�*C���̈́h�Y6�}Cg!]{��wL�oZ#��Һ�%[�E�;�zay�Ϫ�������&Ӣj��/���
������i+[
+�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
+endobj
+4007 0 obj <<
+/Type /Page
+/Contents 4008 0 R
+/Resources 4006 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3927 0 R
+>> endobj
+4009 0 obj <<
+/D [4007 0 R /XYZ 71.731 729.265 null]
+>> endobj
+4010 0 obj <<
+/D [4007 0 R /XYZ 71.731 741.22 null]
+>> endobj
+4011 0 obj <<
+/D [4007 0 R /XYZ 81.694 708.344 null]
+>> endobj
+4012 0 obj <<
+/D [4007 0 R /XYZ 491.507 708.344 null]
+>> endobj
+4013 0 obj <<
+/D [4007 0 R /XYZ 71.731 695.293 null]
+>> endobj
+4014 0 obj <<
+/D [4007 0 R /XYZ 81.694 682.441 null]
+>> endobj
+4015 0 obj <<
+/D [4007 0 R /XYZ 139.516 669.489 null]
+>> endobj
+4016 0 obj <<
+/D [4007 0 R /XYZ 71.731 667.333 null]
 >> endobj
-3521 0 obj <<
-/D [3497 0 R /XYZ 71.731 202.776 null]
+4017 0 obj <<
+/D [4007 0 R /XYZ 81.694 656.538 null]
 >> endobj
-662 0 obj <<
-/D [3497 0 R /XYZ 333.287 163.403 null]
+4018 0 obj <<
+/D [4007 0 R /XYZ 478.291 656.538 null]
 >> endobj
-3522 0 obj <<
-/D [3497 0 R /XYZ 71.731 153.038 null]
+4019 0 obj <<
+/D [4007 0 R /XYZ 71.731 641.43 null]
 >> endobj
-3523 0 obj <<
-/D [3497 0 R /XYZ 71.731 112.295 null]
+4020 0 obj <<
+/D [4007 0 R /XYZ 81.694 630.635 null]
 >> endobj
-3496 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R >>
-/ProcSet [ /PDF /Text ]
+4021 0 obj <<
+/D [4007 0 R /XYZ 373.716 630.635 null]
 >> endobj
-3526 0 obj <<
-/Length 1666      
-/Filter /FlateDecode
->>
-stream
-xڭXKo�8��W>��D����ؤ�]�@Ѻ�m�L�DdR���_�C�)щ���Sə�f��!�I�t�L�e�:�Ť<^$�=|y{��Wzʕ7�zs��M�O��z�O6�d��q�XL�y��l��}�n���]eE-b����W��n��k4�������
-,�e�^�O�d�Je�$���|!�2�%�x5O{��*Τ.�U�	c�����+RU�4�p�i��]cq�1U��"��gY1���,O"$J�ꀹ4�X:p��U��iV�lf+�t�Dc5P�a�#�,+�
-pK#���Z
��{)Joрd�z��X�ǎ���{�dm���,��I��m�,���v�0K�Ƚ�[�@쪢�b�as0Zr\�R�����
-�I�f�P�1B!2���H-���e͎��z��?e��k�V�7h�Gߓ"���K������o��Zݙm	W{���g:�R֤�sJ��*nX�Z���NF5O6J��#j��:o�]-'f	�N�hh�D�X+H�"?
-�e�R`��ܲ)�lz���tz�Z͝F���K�D��`ϳ�*��dI�<3�g�z�6�̣�qk��2��ש@��q ��)���ͦ��/��R���o�?T����x ZEL�c�#Q�'R��r{lp�:c�1�����jB
��Ձ7������������*V��/Az
�(�j��lQ�,����9��N������Op���Pՙ�FA����_��ƹ�HtFKFk�	U�;=�gP�B#Dm�Ǯ����r�1�\���&�O>�7}*g�mΘ�&9@�o�M
-k����ؾ���0��S��og�y�A�b8@Pg���q<r��N�A�d��ԮLV�FǦ�:vI��B�M���6���.y66]1�( jR���&[�C�4�Yj�&IA�X&���FEP���l:bW����"���Gc�#�
-c����/kN1�VE���B*���guېP�퐡��g�Pp�!N�g��ۛ��u`���e�	�>_�}��_h�߂�s��5��_�{)�
—[i�e#���%��mM@lk<�V[Ύ�Q<P���[��*;�����!EO��VSdr�@����h�:�:Z;��#DKc������X���Ԡ�\p�h7�M���$ĻZX%>��lԪ'z���{��e�9�����
=x�A��,�e%rJ�-�3u�=Y�M���:6��Y�,LW��\C!DdT0o�|�Z��0�~h������t.���G����Ȗs�P����c��|�r����#+f�V6V�5�C�bG_:L	^�+�k�t�ֆ�Z�ڱ�A���]U!.
;�M�ȓ\@��]-
-i���gP�x���l@A<~v�
f�)jC���>}7J�v�����0<x�H������f��bs�4niq	'��a�t��|Y5��o���C�Z����䅥�[��]߬�>S"A�;�*�̉��gD+e�������da���oc�|������a��<��c�H��Q^�i�K#�t�����	ߺ���;�e���{`�Wځk��w`)��
i�<L�X+��<4(�P� �:���b�{�G��XoZ��a���ݔߡl�=��K5k�$T<��շ��U�J�O�0�)�s���$3�H(��cǡ����Qendstream
-endobj
-3525 0 obj <<
-/Type /Page
-/Contents 3526 0 R
-/Resources 3524 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3495 0 R
+4022 0 obj <<
+/D [4007 0 R /XYZ 71.731 628.478 null]
 >> endobj
-3527 0 obj <<
-/D [3525 0 R /XYZ 71.731 729.265 null]
+4023 0 obj <<
+/D [4007 0 R /XYZ 81.694 617.684 null]
 >> endobj
-666 0 obj <<
-/D [3525 0 R /XYZ 411.1 707.841 null]
+4024 0 obj <<
+/D [4007 0 R /XYZ 511.114 617.684 null]
 >> endobj
-3528 0 obj <<
-/D [3525 0 R /XYZ 71.731 697.476 null]
+4025 0 obj <<
+/D [4007 0 R /XYZ 71.731 602.575 null]
 >> endobj
-3529 0 obj <<
-/D [3525 0 R /XYZ 71.731 654.675 null]
+4026 0 obj <<
+/D [4007 0 R /XYZ 71.731 587.631 null]
 >> endobj
-670 0 obj <<
-/D [3525 0 R /XYZ 328.439 617.46 null]
+4027 0 obj <<
+/D [4007 0 R /XYZ 71.731 550.237 null]
 >> endobj
-3530 0 obj <<
-/D [3525 0 R /XYZ 71.731 607.095 null]
+4028 0 obj <<
+/D [4007 0 R /XYZ 339.03 498.431 null]
 >> endobj
-3531 0 obj <<
-/D [3525 0 R /XYZ 71.731 551.343 null]
+4029 0 obj <<
+/D [4007 0 R /XYZ 96.637 472.528 null]
 >> endobj
-674 0 obj <<
-/D [3525 0 R /XYZ 427.527 514.127 null]
+4030 0 obj <<
+/D [4007 0 R /XYZ 276.322 472.528 null]
 >> endobj
-3532 0 obj <<
-/D [3525 0 R /XYZ 71.731 503.762 null]
+4031 0 obj <<
+/D [4007 0 R /XYZ 71.731 470.371 null]
 >> endobj
-3533 0 obj <<
-/D [3525 0 R /XYZ 71.731 460.962 null]
+4032 0 obj <<
+/D [4007 0 R /XYZ 71.731 455.427 null]
 >> endobj
-678 0 obj <<
-/D [3525 0 R /XYZ 319.902 423.746 null]
+4033 0 obj <<
+/D [4007 0 R /XYZ 187.678 445.928 null]
 >> endobj
-3534 0 obj <<
-/D [3525 0 R /XYZ 71.731 413.381 null]
+4034 0 obj <<
+/D [4007 0 R /XYZ 71.731 394.72 null]
 >> endobj
-3535 0 obj <<
-/D [3525 0 R /XYZ 71.731 370.581 null]
+4035 0 obj <<
+/D [4007 0 R /XYZ 180.774 381.768 null]
 >> endobj
-682 0 obj <<
-/D [3525 0 R /XYZ 284.583 333.365 null]
+4036 0 obj <<
+/D [4007 0 R /XYZ 391.53 381.768 null]
 >> endobj
-3536 0 obj <<
-/D [3525 0 R /XYZ 71.731 323 null]
+4037 0 obj <<
+/D [4007 0 R /XYZ 71.731 348.727 null]
 >> endobj
-3537 0 obj <<
-/D [3525 0 R /XYZ 71.731 282.257 null]
+4038 0 obj <<
+/D [4007 0 R /XYZ 104 312.03 null]
 >> endobj
-3538 0 obj <<
-/D [3525 0 R /XYZ 71.731 249.315 null]
+1668 0 obj <<
+/D [4007 0 R /XYZ 71.731 304.892 null]
 >> endobj
-686 0 obj <<
-/D [3525 0 R /XYZ 262.26 212.1 null]
+750 0 obj <<
+/D [4007 0 R /XYZ 204.474 267.676 null]
 >> endobj
-3539 0 obj <<
-/D [3525 0 R /XYZ 71.731 201.735 null]
+4039 0 obj <<
+/D [4007 0 R /XYZ 71.731 260.324 null]
 >> endobj
-1290 0 obj <<
-/D [3525 0 R /XYZ 71.731 161.923 null]
+1669 0 obj <<
+/D [4007 0 R /XYZ 71.731 217.499 null]
 >> endobj
-690 0 obj <<
-/D [3525 0 R /XYZ 223.845 118.826 null]
+754 0 obj <<
+/D [4007 0 R /XYZ 275.232 174.402 null]
 >> endobj
-3540 0 obj <<
-/D [3525 0 R /XYZ 71.731 106.654 null]
+4040 0 obj <<
+/D [4007 0 R /XYZ 71.731 162.231 null]
 >> endobj
-3541 0 obj <<
-/D [3525 0 R /XYZ 71.731 95.11 null]
+1670 0 obj <<
+/D [4007 0 R /XYZ 71.731 125.157 null]
 >> endobj
-3524 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R >>
+4006 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F44 1884 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3544 0 obj <<
-/Length 1912      
+4043 0 obj <<
+/Length 2640      
 /Filter /FlateDecode
 >>
 stream
-xڍXY��6~ϯ��%��a��v:�l�t��y�}�%�R#��D�q�?� 	�:�I&�5%B ���2��/�mC�O���M2K���3߾Qb�"��̫�w���l��7���8[DZo6�m��$�=ex�9;K�,VQx���i��d���ӿEY��_O߿���.��[��?h�L���Y����FYE���nj�6���-۝������,�şA�L�V�����]0[E�F�Va�ֻHEU�Z��5��%+�W�'�a⽗�ie~Z��׳���7_��V@M�ȺՖ�mW2g����SÙ�:R�COI���ɜ|��vu��6φ��j�j�a����wb%ޅ���(1P���ȉ#��Z�%�h���j�V��"<�L�H��Y��b$�/o$+jB�!�i~�,	��2���%&�
��%_4|�����y.�����r�,6��ڸ}T�;�4�8�ŁTw���%z�S�#,_7���m+aԞ�K^�9��n
��
-�����AA�O!���W״����w{ȏ���wh���x�X�!$Q��0m�Ж@	��D�ұY��<$�
�LJ��NhG�t����'���/{Q�Ьn(V���Q;����o �ֲ?��B���i������
-�w~��} �k5�s��h-P��ҫ�ng�Bs����d�ϐ	������J�3��ͷ������C(��(��h��6������N�h����[]�� �%ȵCZ�B����kxHֶ�DX[~�T����L�r�6�?_[�
-������|���Y�e��[�{3����s)D9ၮ��\ekX
-5���`�3`l���h��{y6��)����^�p�d�pL�M���MB�w`�B�6���c��@jB�Ƥ�R����Ce�,?�R�Q�U��9V�r�d�(Y�`�:��`�K<�����_f��
-�x!��ؿ?��ANK�ڎ���
-B"j��n�Н�vjw~��_h�bC��/B���Z�����q⫃�����/I�!��Fݟى�����2@�/�dI���g�WmX��*a2tճ�SS�� ��-�M�4�HA"�O���䑺̏����#��
)�{}��c��XfTd\�:���8e��/\��L�0K�[[��Њ�����]U�fa��0�@�������N���O���x6���bW3hϬ2�3@Of�A��B�͚�DA�#���W�.Հ���zZ��zF��7Ի�݃�["C�
-�7/���=�$<(r2�=�^�����;a�[���Ttc`��K{6�Mw��zR�,e��A9M���wG�
-p��*x���8zT)l�=>��E����C�g�������aY,��]�BLC}���f��a��,3�k`G�7�~s�Fo`��
(�[������]3 �M��x�@|�&&K>>Ηv�FAҴ����n�,��s#f[����j����}WU�� (���k|D��v��q��+Q�T��a[����z�7���T[�P>�v�U�E������m�Ҕ�%;ض��d6j*MJ���Q��5щ��*�4��w�>4_�U+�%���lW�o3z�8����k�lT��C}!���B->X=b[=�tѡND����"��NR���u�+�娋�s�9.Q��Y�}p[Ϙd��w�����U�M(�qd	W��k���)����Q�ӍAY�_�ls�`P�(>2��A$J��oDvt��.�jI������N�H�!��l��2�J���{���p��9zR�k����0����"N����a��˹�H��.�Ƭ�ۋ'a��v)w�P��Ϥ��vSd׏���	|�P��F�ݱ9T��*/�;n?x9�D&w�IG�(��sw�ӕ����endstream
+xڝ˒۸��P��T�D�/�̞����[���L�Jes�HHb-E*�c���/����M�t ��h4�B+Xl�,��O#���n�Eqz�Y���@(�B��мy|��(Z�~����EE~��.�(��$\<�������n�������wS5�ߪ�V�?�����m�D��g��di�	F� ��x�R��m2?�sj���0i�}����x�A)`y:�i����1-|�Bw���qe����{��a�=���?jC��e�5�����ߡ�-A�A�T�^��>��RpvP>J��e��(��+T���놆!���������k`Y�5�-e	l�$�]��C��ǪP5Ck8E��W�J�کe]G��S~m�}^�H�P��DazT���e�x�.�=�o�u�AM����'���o��ĉW�_7���=�ӊ�Þ��-��m�`���k��M!��vx�L&��U
+ӦdZ{���Q����%�t�1OU_EX�?i�X���1`S=�k9C�:c�]����m�9���f�,zG���7m��������/g���*`��CT"yK�U�V��3D4ɱ d���~J���`=���7jJ���F������MNz��|e��aPql[C}��8ӞHo���Y=�Y�pQa����\��������vշ��ɟ�sS�"��1�[׋�!�+���Ӊ�Ì�	�j#�$tŹ�o�ӵ�Ѻ�N��C�
�{���s-�.�PW.��Q7����P�չ�Y�O�h��(�9�{h�	���̿������]�l �k�$��IЭ��	���y41�m�q����Q�wp�]+��][E��Ȧ�˄���P�U7�ۆ�W��E����z�Ε�hOg�1�gC����� z�Ԏ��ʛ�5�����������dKqn_^�,3M�����o���co�}{��*�2ILj���I��ư�q�z���nt�������"�aP(L�<v��ch���;e��×e�ފ1o@[�������P�������ޯ�d���_x
+Pq�a�/</Q�5������0���K��^�c��8���&� �keV2���V��,�+�7Οq�S8K�G�*Y�[6��g8L��L��ĒG�#5�!u�_s<8ת�[����#cY��##@@�� �ضa`�o��d�ST���q���i�"KY�2���;�r��}9XA+��d�J�t7@Mefl�5B��ZW��t��T��B�0I����*��K�dZ�1�?��x!l�o��TVA���V�</悻��n"4TÃ��IJ��`f.��'�[��#��Y' ���8�����]��a����c,�yD
+����8F���=�n91���ǢC��$�.��@T?W�0�Ӧ�����˾EW�]*)ou��"��{mqR��y���Y��r������euh���z&�ztw�2[�q�ɵ<�xO��|�c��Q��6,8�[�g!���A��Q��p�k��[�`[$`M>��Ǣ�n��V�	72��&@m/k��pC�q.�<�f"ǵ�rE4Ɖܝ�D����������.�G�0��t
+�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
 endobj
-3543 0 obj <<
+4042 0 obj <<
 /Type /Page
-/Contents 3544 0 R
-/Resources 3542 0 R
+/Contents 4043 0 R
+/Resources 4041 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3495 0 R
->> endobj
-3545 0 obj <<
-/D [3543 0 R /XYZ 71.731 729.265 null]
->> endobj
-3546 0 obj <<
-/D [3543 0 R /XYZ 71.731 741.22 null]
->> endobj
-694 0 obj <<
-/D [3543 0 R /XYZ 223.569 707.841 null]
->> endobj
-3547 0 obj <<
-/D [3543 0 R /XYZ 71.731 700.488 null]
->> endobj
-3548 0 obj <<
-/D [3543 0 R /XYZ 280.576 661.813 null]
+/Parent 4057 0 R
 >> endobj
-3549 0 obj <<
-/D [3543 0 R /XYZ 71.731 628.737 null]
+4044 0 obj <<
+/D [4042 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3550 0 obj <<
-/D [3543 0 R /XYZ 71.731 628.737 null]
+4045 0 obj <<
+/D [4042 0 R /XYZ 71.731 741.22 null]
 >> endobj
-3551 0 obj <<
-/D [3543 0 R /XYZ 71.731 540.943 null]
+758 0 obj <<
+/D [4042 0 R /XYZ 174.075 708.149 null]
 >> endobj
-3552 0 obj <<
-/D [3543 0 R /XYZ 71.731 509.959 null]
+4046 0 obj <<
+/D [4042 0 R /XYZ 71.731 698.007 null]
 >> endobj
-698 0 obj <<
-/D [3543 0 R /XYZ 197.015 470.686 null]
+4047 0 obj <<
+/D [4042 0 R /XYZ 71.731 639.108 null]
 >> endobj
-3553 0 obj <<
-/D [3543 0 R /XYZ 71.731 462.767 null]
+4048 0 obj <<
+/D [4042 0 R /XYZ 71.731 593.215 null]
 >> endobj
-3554 0 obj <<
-/D [3543 0 R /XYZ 142.336 437.61 null]
+4049 0 obj <<
+/D [4042 0 R /XYZ 71.731 562.331 null]
 >> endobj
-3555 0 obj <<
-/D [3543 0 R /XYZ 143.113 424.659 null]
+1671 0 obj <<
+/D [4042 0 R /XYZ 71.731 507.601 null]
 >> endobj
-3556 0 obj <<
-/D [3543 0 R /XYZ 71.731 417.521 null]
+762 0 obj <<
+/D [4042 0 R /XYZ 165.31 468.329 null]
 >> endobj
-3557 0 obj <<
-/D [3543 0 R /XYZ 354.159 406.726 null]
+4050 0 obj <<
+/D [4042 0 R /XYZ 71.731 460.976 null]
 >> endobj
-3558 0 obj <<
-/D [3543 0 R /XYZ 71.731 388.694 null]
+4051 0 obj <<
+/D [4042 0 R /XYZ 71.731 441.066 null]
 >> endobj
-702 0 obj <<
-/D [3543 0 R /XYZ 185.739 349.421 null]
+4052 0 obj <<
+/D [4042 0 R /XYZ 71.731 391.318 null]
 >> endobj
-3559 0 obj <<
-/D [3543 0 R /XYZ 71.731 342.068 null]
+4053 0 obj <<
+/D [4042 0 R /XYZ 71.731 376.374 null]
 >> endobj
-3560 0 obj <<
-/D [3543 0 R /XYZ 71.731 270.352 null]
+4054 0 obj <<
+/D [4042 0 R /XYZ 71.731 325.265 null]
 >> endobj
-3561 0 obj <<
-/D [3543 0 R /XYZ 71.731 239.468 null]
+4055 0 obj <<
+/D [4042 0 R /XYZ 71.731 279.273 null]
 >> endobj
-706 0 obj <<
-/D [3543 0 R /XYZ 198.349 202.253 null]
+1672 0 obj <<
+/D [4042 0 R /XYZ 71.731 229.524 null]
 >> endobj
-3562 0 obj <<
-/D [3543 0 R /XYZ 71.731 194.9 null]
+766 0 obj <<
+/D [4042 0 R /XYZ 211.497 195.153 null]
 >> endobj
-3563 0 obj <<
-/D [3543 0 R /XYZ 71.731 151.144 null]
+4056 0 obj <<
+/D [4042 0 R /XYZ 71.731 186.516 null]
 >> endobj
-3542 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R >>
+4041 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3566 0 obj <<
-/Length 2196      
+4060 0 obj <<
+/Length 2418      
 /Filter /FlateDecode
 >>
 stream
-xڍYYo�6~�_a����X�$�G�>��ݢǢ����H�͍$
-$�I��;$g���.�����}3���
-~�lG�.�>J6�,�^�f'��ݫG,qȲ7�ë��4����&���u�F�f3ۦI�˒١�k~{f��j�L��|��oZ�'�M{�W�%[�s����CX0K��~�~T'3Q*�vJ�m�]���N�oe}��ws�U`ư��ﵨ���{�5���"�k���߫lţ�"k���i�*)������w�ϸv]Ѝ����8��k\��˟�Ǜ�}1�śZ�
-\�mJ�P�9�
-E����e�D{���$�X�ٜ+�ZIUPȂ��&H�7�9(�T�f�4-i8�M�u��S#EM�H�	/�R5�z8t��"���A�&�_�d��G��R=�'b�	QU`#3�De���q$�~���!H
-�!��J	��}`���	�lC&�[0Aֆ�fyX�V���9J�	�=Sqr�0�s�9���YD>�b�Ʌ��K�*��X|�S��h%�
-�o/�1ԑ5�pS��!�'��O^]��l)r���va�*QP�C*���S�r�V��P�
-��)V��H��B;�o���9�a�^6��l��������s4ޮ�����\,�9���R������t��ęY��v��l�YE�~�n�xe����:#��-��&�
D��t1�*��,�;�������f���S�Ӊ�'��qY��y)^	���L	�R���Fq4���F���u��FY�9��P+Q?2Nj�7	5��7��х��K_�1��"��4��͡@O�S�{�e�5Ԗ
z:�G�6�c���s�:���;nd���II��g:��"J�3�O��7#a1-r�2�������M^�E�HQ�_��>���ʒ�(QpQ�׍�Nq��k�]t�F�l��i��J��0Y�Z_CN�	ҏ
-G�pp�-2�12BN��%Kpb�R�0������6'M�Q� rA]�H��f��L�h��8����\rH?�4�9���w��o�M=�n�G^��K��M{�c}�P�p�����Qq%�
-90J��
箶Y%1�&�(&��ځ)n�9����lʶ�u3�}��15����1�����#�I���������F%4�֡��
-ŵųx�����2���![w�� ��FO~���{d�4J�z܇U� d�w/t�f�ׅ�q�9�ܻ�]�*�7x�u����T�C��Q��b���E:l)����p�����)�����>�׮;�\c�no�E%��eU�e�![84��r�i�$ĸ6�K����e%5�S�pݵ��	��n�wv(�����Ӹ<BL�@s.��"�|�<�͌����ja;��QLZ����"� l1$xM�q�U%��u��߽v��{W��-jrl���
-+�P^���VaUʒQ��t �=lq�BK�����(���3�(S���$���,KQ0�Y�@���
-U�l����3�1�c��5�K�h�����g�=�.{��誆q{x�����[(�Ox�%6(�$�7������(�ˇ?��l���A=Jp���O̻;�v��������ril�qu�Q�cW��e55�:�Vq�d�8�QW���%Ib�¢5�8\�-+{:2L��]��D-�Q�g ��hʼK
-�����̇��b��$q��8++�������0�n�(�z�jii�(/
�$2e��b����˄oO^�&<_d���<�bO�j�P�@�P6/T�Fj-��L[͇�D[4^;���_��R���S�q[��%��iR�v��
����k�JV��-�z�/����[�?�Xk�G�i2=����8�9L!�^�݌šo^	�Bh{�l�ޱ|�oi�U�܋gZ�
�ze��th�)C�cs�[����z@G�3즖n�[�,�ftT��db��,�&�9ڸ�s
-o��5��Jl�C����z�������x��>y�(	%q�.@�\\�\xɗ���输D]@����T}(Rv?���q��|��@�n����7�C$B�1�Ä���f�pY��V���GL���������hCBC� ��������;��Hhшq�!gS�M�����æC9�]��x�G�e��@w}��}�J����y���aho͂[���{��:ڄ��pnqfM��nl��\��&����.��ۏ�q�
��o�%�넄XGo����������sendstream
+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�(j޶kt^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
 endobj
-3565 0 obj <<
+4059 0 obj <<
 /Type /Page
-/Contents 3566 0 R
-/Resources 3564 0 R
+/Contents 4060 0 R
+/Resources 4058 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3495 0 R
->> endobj
-3567 0 obj <<
-/D [3565 0 R /XYZ 71.731 729.265 null]
->> endobj
-3568 0 obj <<
-/D [3565 0 R /XYZ 71.731 718.306 null]
->> endobj
-1291 0 obj <<
-/D [3565 0 R /XYZ 71.731 621.504 null]
->> endobj
-710 0 obj <<
-/D [3565 0 R /XYZ 256.243 578.407 null]
->> endobj
-3569 0 obj <<
-/D [3565 0 R /XYZ 71.731 569.584 null]
->> endobj
-3570 0 obj <<
-/D [3565 0 R /XYZ 71.731 541.74 null]
->> endobj
-714 0 obj <<
-/D [3565 0 R /XYZ 237.557 504.524 null]
+/Parent 4057 0 R
 >> endobj
-3571 0 obj <<
-/D [3565 0 R /XYZ 71.731 494.159 null]
+4061 0 obj <<
+/D [4059 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3572 0 obj <<
-/D [3565 0 R /XYZ 399.051 471.448 null]
+4062 0 obj <<
+/D [4059 0 R /XYZ 71.731 718.306 null]
 >> endobj
-3573 0 obj <<
-/D [3565 0 R /XYZ 71.731 458.497 null]
+4063 0 obj <<
+/D [4059 0 R /XYZ 71.731 644.419 null]
 >> endobj
-3574 0 obj <<
-/D [3565 0 R /XYZ 71.731 438.407 null]
+4064 0 obj <<
+/D [4059 0 R /XYZ 71.731 613.534 null]
 >> endobj
-718 0 obj <<
-/D [3565 0 R /XYZ 218.447 401.192 null]
+1673 0 obj <<
+/D [4059 0 R /XYZ 71.731 595.602 null]
 >> endobj
-3575 0 obj <<
-/D [3565 0 R /XYZ 71.731 390.827 null]
+770 0 obj <<
+/D [4059 0 R /XYZ 255.599 562.291 null]
 >> endobj
-3576 0 obj <<
-/D [3565 0 R /XYZ 71.731 373.929 null]
+4065 0 obj <<
+/D [4059 0 R /XYZ 71.731 553.654 null]
 >> endobj
-3577 0 obj <<
-/D [3565 0 R /XYZ 219.242 363.134 null]
+4066 0 obj <<
+/D [4059 0 R /XYZ 71.731 510.321 null]
 >> endobj
-3578 0 obj <<
-/D [3565 0 R /XYZ 71.731 322.123 null]
+1674 0 obj <<
+/D [4059 0 R /XYZ 71.731 459.512 null]
 >> endobj
-3579 0 obj <<
-/D [3565 0 R /XYZ 71.731 307.179 null]
+774 0 obj <<
+/D [4059 0 R /XYZ 159.597 416.414 null]
 >> endobj
-3580 0 obj <<
-/D [3565 0 R /XYZ 71.731 258.128 null]
+4067 0 obj <<
+/D [4059 0 R /XYZ 71.731 403.976 null]
 >> endobj
-3581 0 obj <<
-/D [3565 0 R /XYZ 312.346 232.225 null]
+4068 0 obj <<
+/D [4059 0 R /XYZ 71.731 374.766 null]
 >> endobj
-3582 0 obj <<
-/D [3565 0 R /XYZ 232.347 219.274 null]
+4069 0 obj <<
+/D [4059 0 R /XYZ 71.731 343.882 null]
 >> endobj
-3583 0 obj <<
-/D [3565 0 R /XYZ 71.731 217.117 null]
+4070 0 obj <<
+/D [4059 0 R /XYZ 71.731 287.094 null]
 >> endobj
-3584 0 obj <<
-/D [3565 0 R /XYZ 71.731 202.173 null]
+4071 0 obj <<
+/D [4059 0 R /XYZ 71.731 269.162 null]
 >> endobj
-3585 0 obj <<
-/D [3565 0 R /XYZ 91.656 181.017 null]
+4072 0 obj <<
+/D [4059 0 R /XYZ 71.731 238.278 null]
 >> endobj
-3586 0 obj <<
-/D [3565 0 R /XYZ 71.731 141.466 null]
+4073 0 obj <<
+/D [4059 0 R /XYZ 71.731 207.393 null]
 >> endobj
-3587 0 obj <<
-/D [3565 0 R /XYZ 471.906 128.514 null]
+1675 0 obj <<
+/D [4059 0 R /XYZ 71.731 163.558 null]
 >> endobj
-3564 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F23 1057 0 R /F44 1440 0 R >>
+4058 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3590 0 obj <<
-/Length 2151      
+4076 0 obj <<
+/Length 2596      
 /Filter /FlateDecode
 >>
 stream
-xڭYɒ�6��W�f)B��UT�Ԯ����Ŗ=31�EB"�I�C�]��z'�nRy�:��L�{�|��7G��7'�;���� �7Y���o��8�CΘ//�>�:7g��u��&��^�K���SA����C�����������,����_�}u������Of�̩�48e�vL�0��O]慶_��;�����tɊ��_?S���Y��4��kNwA�}�7Y]�?2_T$��AW���eu˺W�� �&��[H��t1�du�W�g|2aG�K*a9��w������1�8������c5k���p��I�w�q���O��x&�ɋΧ�\q�X�����!��)♱ȋ�Ec�����dɸ�D�{�9Y��6uk�z�?�*h;D9`�@�|Û���FX^����:F���D]Y�'�a����|`�E���~N���y��!MCI���ahV�n�VHN�2�ր�|/���v�,�x���c`��g�:�?�n��?؂؍N�]N�b�5#,2�ن-
l=&��zpku�FV�p�j}�Hۋ+.K0,��e����1z�&	�~]�n�B~0��)4�Y��xD������Qȱ��z�O5��Ѝ�d��p�­b���)S&�#l�73B۝�p����d���ѝo���/��qz�Niz�Θ2�Ȱ`�!�O��Zzz��(�L <j`�_�?�]����}m�4f ��^\O�����3f
W�׹�Ǹ΍�pu�����J�1��A�$ch
-DI2���M�j������&2�57�!~��h-5���%�>�VJ~|eM)ٹTX������J�?N�
��� nR@$��Hh��!H�D���}���j�Â؋��)�|K�yO����"�꺾�u�/�q�'�W�Q⃫�V7�j�=����oE"N	�~�ӆ�\k|�U�}+XG?�I@��\���e�ә08�<D�ƒCt��H3S�.sz������V��{Sj2ٽ�t���\4����,+&��E�l��F�d�٩f^|a��$��1�a캙y=Z����(�ig�*��c|��ȌWN�4�h��������`.����>|��}]���d�C�f��jc�>��O�x��7x:����r������Q��TM	�sǜ�����n�7�'F�fG��8]`����j+AK=�[��0����C��O��$k$o�U��x%��Z��=f��SA�i��I1�p:I��;�߯�����ƪ��iq3����fbbi�����B,W5�
a� I?,�/�ǜ�=?,��L�7V��*? �	�;�ͪ4�������ٰh�b
���b����Z��I�](�>ԍ ~S����=q���-$��^\�u��`���Z`t	^��Y�gQ �B7��7*7ï��)�"��ڠ&��+��0�5��PA�qv��8�>ȹ8�Ӎ�hz�H:Y9��+�:�Aq�J����
���g�C;��B�+���K
-A�ԏtR��ԕspw�z	����" |,Mz�h�̗��G��q)�s���-"�p�g<���2����4y��H������	Ѓ�*/R�׿z��Ú�d�%}�B��
-_a>�+���k"�8�Ǖ�m��~k
-�Q��1�����
-�3���Rͷ�4G�6)H7~%�܃V���čL��QFM�@�r�mC��O*�^�����Tw����Ki��Sѵ�݊V��lsTo�(Nf��M����0n�����/��<7�2�	K�+y��/n8A|�L�����@3�:)�$��Ӿ4��I��i�`����<CI4^�CD����P#�
<ϛ����Ry�C�~�X�,�QN[H��C�0,k^N��ꐩsa��ۙ"�G�0�Z�&��u5m{p���r�(�9�ۜ�iG�\f��[��D������&�S��q�z`nCkr2��ݏ�0RE܋�&��؉����?de�mŠ�INϒ;|=?��^l�n~��M5՜p G,���!7:k
뾓�UL�����f�7���d�B�L�{���;'H��᦭�ޜ��ںo���>�{��s���2�1�0gݒ�-���=쑻�ս	w^1�d��ET�B�����[�z���m2�wl��10�� �µ��-�
-ʰ�endstream
+xڥk�۸���
+c?�Ś�Dђ�-w�= m��CQ�
+Y�ںȒ�G6�_�yQ�eg[�l4�g���<�`�ÿ`*��	Sn�*?���`�|�FH63��vw|��*U�V�vϫHk���U�C��p�+~��?f�޶�Mh|o���SW��_˪�ֿ�~�{܍��U��7ur4WJ�z�*j�6�G	)�U�FU���籬Q��i3�jʘ�V8�MF^��7Ï��m��\��q_4�Y��y&� 0�a���z~uݬߓ��ٶ�U�:���_|?��0.O�S;�}t:�r�Ѥ�����:��ޢ1p�A�R9�.[�����Ptb��fm~��HC�u�<&��7~	�U�;Z�j��SS;�q*��<{�Ȫ��bf[�(k����H��6�*q����)���h��6�v	�.
15��P�k�*)���RT�����/u�K/�����^(��
+<�u�{<�%`ZY����JV�SVV���g4�S"�zg0��2���0��Yp��f�*/%���9Y�
+��my���̌���z����PG��T�x�?�����* ������Gnt����z������ݏ#'�·��&^+tW,6N��	!���E�����2�(m���'1<���bL��1�`$)}�`�Vm5�ݱm�ñ�"��]�tN��%zJA�@�ᙽ�o�u�	o)��z�vt�zxh��u'{��lB����v���1d@x���/��9 T?��7q�����Ƅ��<c�1c�&�qY��|��9Gشyz(������1��{�z{R���:��h�e�˺�#0���#nKx��H�d1:CͷȧM�;ND�fV��"'�1-�_�l�����SG6�����E֒=�{��p��7���G>

3Un�~��wU�t��T�X
�4��MO�E���ۛ��#�_x����p�&d������o�̊��Z��8@}X��6dr@���<`Hn�Y*�� Y@��(�Ko�fF
ХD�3��x��DA~�UYNQ��{���	��|��SFƜVV9O%�����u:�����Iч#�2�d����|n�3�vX���칂Mw��ei���Y��?x�}��-���~O6����`�	Ƹ���Ei�"�ȿ�Y�t������4�G�I��������`��<��
+�����א[-��T�z]��%�?�<y��ya�C����&��ֺ�
+�pӜ'V��^@~hZ��.�D�i1�++Ҳ�n�4s���˳�-+��Z�rll›���̈�4�g�d��<�T���aTt%>��:x[�м-~��+�Wf>�IS姴�|�v����@�n��Ehf����4\h�^��ْ������-j��J���)�y�vi.��T�p�"e���e.G��]�k���P8��^���D�$zS��yS|8�����Q��.ED�ϭK��v�bAwAC��uz���B\����'��JRp1�x����������\l~��-��6�WAh�Y�n�f�ɸ*���b��%�������\���� ���Z��}�4ضt��v7oX%<!Þ�����.z?hZ:�<[�T���q�蹖
{���uYI�i<�2䢫|f&N� �u��jD:�0�8�MW�R҅��l.XGW�-�-�p]$��_��We�q�E�k�{��
+[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
 endobj
-3589 0 obj <<
+4075 0 obj <<
 /Type /Page
-/Contents 3590 0 R
-/Resources 3588 0 R
+/Contents 4076 0 R
+/Resources 4074 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3495 0 R
->> endobj
-3591 0 obj <<
-/D [3589 0 R /XYZ 71.731 729.265 null]
->> endobj
-3592 0 obj <<
-/D [3589 0 R /XYZ 71.731 693.235 null]
->> endobj
-3593 0 obj <<
-/D [3589 0 R /XYZ 71.731 688.254 null]
->> endobj
-3594 0 obj <<
-/D [3589 0 R /XYZ 81.694 667.497 null]
->> endobj
-3595 0 obj <<
-/D [3589 0 R /XYZ 490.427 667.497 null]
->> endobj
-3596 0 obj <<
-/D [3589 0 R /XYZ 71.731 654.446 null]
->> endobj
-3597 0 obj <<
-/D [3589 0 R /XYZ 81.694 641.594 null]
->> endobj
-3598 0 obj <<
-/D [3589 0 R /XYZ 197.339 628.643 null]
->> endobj
-3599 0 obj <<
-/D [3589 0 R /XYZ 71.731 626.486 null]
->> endobj
-3600 0 obj <<
-/D [3589 0 R /XYZ 81.694 615.691 null]
->> endobj
-3601 0 obj <<
-/D [3589 0 R /XYZ 474.398 615.691 null]
->> endobj
-3602 0 obj <<
-/D [3589 0 R /XYZ 71.731 600.583 null]
+/Parent 4057 0 R
+/Annots [ 4085 0 R 4088 0 R ]
 >> endobj
-3603 0 obj <<
-/D [3589 0 R /XYZ 81.694 589.788 null]
+4085 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
-3604 0 obj <<
-/D [3589 0 R /XYZ 373.716 589.788 null]
+4088 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
-3605 0 obj <<
-/D [3589 0 R /XYZ 71.731 587.631 null]
+4077 0 obj <<
+/D [4075 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3606 0 obj <<
-/D [3589 0 R /XYZ 81.694 576.837 null]
+4078 0 obj <<
+/D [4075 0 R /XYZ 71.731 741.22 null]
 >> endobj
-3607 0 obj <<
-/D [3589 0 R /XYZ 509.636 576.837 null]
+778 0 obj <<
+/D [4075 0 R /XYZ 182.7 705.748 null]
 >> endobj
-3608 0 obj <<
-/D [3589 0 R /XYZ 71.731 561.729 null]
+4079 0 obj <<
+/D [4075 0 R /XYZ 71.731 693.31 null]
 >> endobj
-3609 0 obj <<
-/D [3589 0 R /XYZ 71.731 546.785 null]
+4080 0 obj <<
+/D [4075 0 R /XYZ 71.731 643.177 null]
 >> endobj
-3610 0 obj <<
-/D [3589 0 R /XYZ 71.731 509.39 null]
+4081 0 obj <<
+/D [4075 0 R /XYZ 118.555 604.613 null]
 >> endobj
-3611 0 obj <<
-/D [3589 0 R /XYZ 357.835 457.584 null]
+4082 0 obj <<
+/D [4075 0 R /XYZ 118.555 565.86 null]
 >> endobj
-3612 0 obj <<
-/D [3589 0 R /XYZ 173.678 431.681 null]
+4083 0 obj <<
+/D [4075 0 R /XYZ 71.731 520.929 null]
 >> endobj
-3613 0 obj <<
-/D [3589 0 R /XYZ 353.363 431.681 null]
+4084 0 obj <<
+/D [4075 0 R /XYZ 71.731 501.003 null]
 >> endobj
-3614 0 obj <<
-/D [3589 0 R /XYZ 71.731 429.524 null]
+4086 0 obj <<
+/D [4075 0 R /XYZ 76.712 466.115 null]
 >> endobj
-3615 0 obj <<
-/D [3589 0 R /XYZ 71.731 414.58 null]
+4087 0 obj <<
+/D [4075 0 R /XYZ 71.731 446.189 null]
 >> endobj
-3616 0 obj <<
-/D [3589 0 R /XYZ 187.678 405.081 null]
+1676 0 obj <<
+/D [4075 0 R /XYZ 76.712 404.944 null]
 >> endobj
-3617 0 obj <<
-/D [3589 0 R /XYZ 71.731 353.873 null]
+782 0 obj <<
+/D [4075 0 R /XYZ 188.149 365.572 null]
 >> endobj
-3618 0 obj <<
-/D [3589 0 R /XYZ 180.774 340.922 null]
+4089 0 obj <<
+/D [4075 0 R /XYZ 71.731 358.219 null]
 >> endobj
-3619 0 obj <<
-/D [3589 0 R /XYZ 391.53 340.922 null]
+4090 0 obj <<
+/D [4075 0 R /XYZ 71.731 325.358 null]
 >> endobj
-3620 0 obj <<
-/D [3589 0 R /XYZ 71.731 307.881 null]
+4091 0 obj <<
+/D [4075 0 R /XYZ 71.731 268.571 null]
 >> endobj
-3621 0 obj <<
-/D [3589 0 R /XYZ 104 271.183 null]
+1677 0 obj <<
+/D [4075 0 R /XYZ 71.731 238.06 null]
 >> endobj
-3622 0 obj <<
-/D [3589 0 R /XYZ 71.731 264.045 null]
+786 0 obj <<
+/D [4075 0 R /XYZ 243.797 200.471 null]
 >> endobj
-722 0 obj <<
-/D [3589 0 R /XYZ 204.474 226.829 null]
+4092 0 obj <<
+/D [4075 0 R /XYZ 71.731 190.106 null]
 >> endobj
-3623 0 obj <<
-/D [3589 0 R /XYZ 71.731 219.477 null]
+4093 0 obj <<
+/D [4075 0 R /XYZ 71.731 147.305 null]
 >> endobj
-1292 0 obj <<
-/D [3589 0 R /XYZ 71.731 176.653 null]
+4094 0 obj <<
+/D [4075 0 R /XYZ 71.731 108.451 null]
 >> endobj
-3588 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R >>
+4074 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F27 1112 0 R /F44 1884 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3626 0 obj <<
-/Length 2168      
+4097 0 obj <<
+/Length 2907      
 /Filter /FlateDecode
 >>
 stream
-xڝY[�۸~ϯ0����K�is�ݶ�f�i���-�6���J�z�_�!9C��4-p$Q���9Z��/Z���%>��>[�՛��
-o�����=^߼�]��N�i��^/�4I�d�_�8<f���������Mg��>�׿t�������(K�����|��f�!<�/�D{fB��*:�q�i�H�]ңjF��p\��7RK�[�ή���7 �{�ك�u�
-�(̲�!�mg���wWԍۛNa��������l'�0O7G⾉vki*�"A���I^���7q��;w\M� ���
-"�x�T�w���BD㟻lw����-����	]}��/�([��B\�҅��Vc�&29ny߂<~?�M�'{�ؙu��P�훃��2�Ǧ�j��ƀi}�xBԸ���/Y��l92Gd�!�!�5���6� J�0I�O�)L���]�]ũ
ġ�P�����`���?*?vF�LəXu���t�Ȃ�y�o���-��^�����s�M��)#ۑrז5�i�IX���o���	C#=Ys�Rl�qp�yX�=�0I�~�4�4[����z��־�6Tv�&���po.{@�ήvM�9n|���&�o�W�DMN�^�{a��=a�a��%0~���.�I-,Ww�k��y>���9 �D��q��I����K��A��<�գ��v�6�#i�8y���l,
Z�a)s0��S����8ks
�7P!/�s�� ��b,�I��t�"�����Q�AW'��S0��D�l�gY+J&��=�š��~5KTT�2���C�W�mz�m夞���g�	Yǡ��r�
-�;�iW}�DS��+�П�Ty��x�$�NjD0M�WVA|�p�˾,(2`L��mj�h�;�2�.�'������(��_+�P�+�,�\�]�yu�BVwܗ�V(�<�n�5��FT
DW�v�O�u�z_��n��Ɗɍ�R����D<�:S1�wfŒ�l�L�j�u���u�oǨ뱂H–�5���C�w��r|�=�y�J�)��M�Y�t���|2UO�|��&�Okj.�Z鎞~�ʸ�['�O����>J��^��
-Y�6�b(
�Թ�/-
-Q�����r�6eaD�7׍��v��Q>b0O~]�}���4m���4�٢%t��	��t�L����3/���sN+�����2 �ĨƄ�!V`�[�;䮃I��/<<h��Pء��EIIb;\��.��)<d��7�rӝo6�|M$�?�/5��D_���M:�򗚔�tg��ZQ�,{�G�3���N�
-���#U��A�D�8T�����9�Y��9Dc����ȥ����tUL�1��c�qF��:8�����N��Թ�b�6��w�r��xF*3�V:(��03�J5-�!F�)����YR;�hJׁ���l#A/��8�@K�C�>;��_/�e�[�8ZB�ݰ�Bo�s6���ҫ���x��5
"�i"�,/�N��h�E�9�L0���׺#�Pq��7HA�C��>�2�0�}i���Y��b`9�Mr�&��?#&,]6	5|�
-?���߽0��k.�Y��D-:��*sF�������-<���ƌ��,ʂ��.DžF!���b���ƈZrV�SĈ¸��
P���s��qB m;�q�����l����8�?����� �X�5��i�%��'�9.�tӃE�Z��~%E?���3�@2a9t���<����[j�G/��J��Q�~�Y"����AMJ\a�S�����~�"!� 
-Nf3��;ǴW�b����	�S?Y��n�U����e~�o.�s�˸��T:Gfr��6�K��I�XK�ؚ��|����p�$Y
��1���yB�߇[
-���v�z�qiQ܏/K�����؃J(��\�|<g�����?�&��w�W<d�fErƐ�Rd�f�R���#�`�n?�����qc��H��y`hQLQJap�,R��zg�����/�Y���eT
-�P)��J�v�G���[�4�n��`f����E�:w2N�#x����|�|���W�|�~��&�1�<&Pc�9Zc`|�O��A�q�K��~sQ�u���ce��SJ4�]�͑��i8��V�N��m�cx�_�A�o������"����ߙ��b+�endstream
+xڥk��6����`>9@����o�C�������aqh�B����;k;�f}���HvZ�a0#��(�"ER����I}7
�	r7H�Mqz�6�0��_(�B��Ѽ}zx�.7��'��鸉��
�d����������[�Σ�� �����_C�>3�����n��������q��y�*SDn�国�y�#�營~�6%�~���ߗ��@�0�7����כ��LJ����'���k<x��ݰ��~��i�����Ī(7~�Q�:
+=�
�l�䩛�ѧm�9�oQ)��7�h��Ri���@�^@�&aJ3���>3�P�>^�N}���
<���}�ˆA��Kϓ�6��߶A��VƎ���K�خe�XiF�X�z��
�A�u���S�ڙj��B��<�v��"����|�Mb���]c����yAeT���u1��e�{4ȍ,f,�H
+���µ�@@�������I�*��F
2���B:�@�IU�(�n@b�?���\��bs�$���n�����[�R�+ո7�`���u�����f	�t���s���.�N���\	���m����-H˱s��N�j�;
+��7<u�������]2��Nj������|��A'�KUՊZ�J�1[K�������AH�K��-v���4"@�!�@���b��>	/%k�D2���f ����Y>O��$� ��#����8��2P-�����{���F��v�UmX��y�M^>��'�G�����EW�R��_g��
+ޙ4���!���|R����k`�LO
eĖ]��!�D[�dt-kyb�x!q����e��`WT(|y1�����刀�-�N�,.�^�\�P��4��r-I%p9��]"��]��c)�n�k5�ҁ~z��H���]]�6��ԉ��W�<��x�L�ZP�s�E.@b�DJ�/�'�	���X2LD���Հ���N���aWu���^N�^�h��51�������C�|��=Q;��z�u�V����qPs)��X�l���aI,Qze ;��Ǒ���9�'�*'�$�9�d���G gP�"s��C�*]+�A՜
+��=C1"�͌�Fn_*4?�5qW�.�U@�n60L\Ğ=��:8a�35��l��C�	�
X��x,�?�Qs����Ŭ���{`�:�9i4%�;���؝:�/����m\�|p��0�-�������X�
cr	f�ޑ��rY@:�z���{���HJ��(�y����
�����T��s��G�!S �����$N�=���n������5�f����+�g݂����@p�+�6	�H�DZ�}��,�IF�a��-(�����;���	a�ߧ ������B3�K�e�L�kd�,�SY™�4�g���l\8���Z2�Lh�v�Fݧ�ϵ������NzJ܌�����,y*9%�v�}x�HXҌ������c�s�35<�**�\�5ڮj&�L;���~*����JU.�R��e6���e�·��k�0��,Om��#d�����l�]����NL釮�1�`��
+���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���|.I֋a�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
 endobj
-3625 0 obj <<
+4096 0 obj <<
 /Type /Page
-/Contents 3626 0 R
-/Resources 3624 0 R
+/Contents 4097 0 R
+/Resources 4095 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3643 0 R
+/Parent 4057 0 R
+/Annots [ 4106 0 R ]
 >> endobj
-3627 0 obj <<
-/D [3625 0 R /XYZ 71.731 729.265 null]
+4106 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
-726 0 obj <<
-/D [3625 0 R /XYZ 275.232 705.748 null]
+4098 0 obj <<
+/D [4096 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3628 0 obj <<
-/D [3625 0 R /XYZ 71.731 693.577 null]
+4099 0 obj <<
+/D [4096 0 R /XYZ 118.555 689.705 null]
 >> endobj
-3629 0 obj <<
-/D [3625 0 R /XYZ 71.731 656.502 null]
+4100 0 obj <<
+/D [4096 0 R /XYZ 71.731 596.992 null]
 >> endobj
-730 0 obj <<
-/D [3625 0 R /XYZ 174.075 618.913 null]
+4101 0 obj <<
+/D [4096 0 R /XYZ 71.731 545.186 null]
 >> endobj
-3630 0 obj <<
-/D [3625 0 R /XYZ 71.731 608.771 null]
+4102 0 obj <<
+/D [4096 0 R /XYZ 71.731 530.242 null]
 >> endobj
-3631 0 obj <<
-/D [3625 0 R /XYZ 71.731 591.651 null]
+1678 0 obj <<
+/D [4096 0 R /XYZ 71.731 457.878 null]
 >> endobj
-3632 0 obj <<
-/D [3625 0 R /XYZ 71.731 549.872 null]
+790 0 obj <<
+/D [4096 0 R /XYZ 233.582 418.506 null]
 >> endobj
-3633 0 obj <<
-/D [3625 0 R /XYZ 71.731 503.979 null]
+4103 0 obj <<
+/D [4096 0 R /XYZ 71.731 408.141 null]
 >> endobj
-3634 0 obj <<
-/D [3625 0 R /XYZ 71.731 473.095 null]
+4104 0 obj <<
+/D [4096 0 R /XYZ 71.731 365.34 null]
 >> endobj
-3635 0 obj <<
-/D [3625 0 R /XYZ 71.731 418.365 null]
+4105 0 obj <<
+/D [4096 0 R /XYZ 71.731 334.456 null]
 >> endobj
-734 0 obj <<
-/D [3625 0 R /XYZ 165.31 379.093 null]
+4107 0 obj <<
+/D [4096 0 R /XYZ 71.731 269.699 null]
 >> endobj
-3636 0 obj <<
-/D [3625 0 R /XYZ 71.731 371.74 null]
+4108 0 obj <<
+/D [4096 0 R /XYZ 71.731 254.755 null]
 >> endobj
-3637 0 obj <<
-/D [3625 0 R /XYZ 71.731 351.83 null]
+4109 0 obj <<
+/D [4096 0 R /XYZ 71.731 205.704 null]
 >> endobj
-3638 0 obj <<
-/D [3625 0 R /XYZ 71.731 302.082 null]
+4110 0 obj <<
+/D [4096 0 R /XYZ 71.731 159.711 null]
 >> endobj
-3639 0 obj <<
-/D [3625 0 R /XYZ 71.731 287.138 null]
+4111 0 obj <<
+/D [4096 0 R /XYZ 71.731 135.866 null]
 >> endobj
-3640 0 obj <<
-/D [3625 0 R /XYZ 71.731 236.029 null]
+4095 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-3641 0 obj <<
-/D [3625 0 R /XYZ 71.731 190.037 null]
+4114 0 obj <<
+/Length 953       
+/Filter /FlateDecode
+>>
+stream
+xڝVK��8��Whs���Fo�=��.��-v�bQ�=���xǏ4v����K�J�6��(�@����ȏ�9a��$�4����
+�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-_�q׹q��(�|��)�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�25��ʝ��̇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
+endobj
+4113 0 obj <<
+/Type /Page
+/Contents 4114 0 R
+/Resources 4112 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 4057 0 R
 >> endobj
-3642 0 obj <<
-/D [3625 0 R /XYZ 71.731 140.288 null]
+4115 0 obj <<
+/D [4113 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3624 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F44 1440 0 R >>
+4116 0 obj <<
+/D [4113 0 R /XYZ 118.555 689.705 null]
+>> endobj
+1679 0 obj <<
+/D [4113 0 R /XYZ 71.731 647.664 null]
+>> endobj
+794 0 obj <<
+/D [4113 0 R /XYZ 266.363 615.268 null]
+>> endobj
+4117 0 obj <<
+/D [4113 0 R /XYZ 71.731 604.903 null]
+>> endobj
+4118 0 obj <<
+/D [4113 0 R /XYZ 71.731 580.035 null]
+>> endobj
+4119 0 obj <<
+/D [4113 0 R /XYZ 71.731 565.091 null]
+>> endobj
+4112 0 obj <<
+/Font << /F33 1210 0 R /F23 1105 0 R /F44 1884 0 R /F27 1112 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3646 0 obj <<
-/Length 2173      
+4122 0 obj <<
+/Length 2433      
 /Filter /FlateDecode
 >>
 stream
-xڥY[��6~ϯ0�R�Uɲ�v_i2)�6�dZ�h�@K�M�.^Q�t������&*Mw1�P����!��R��f�,�������nVԯ�����*�+�z��Y���o��������y���$�����Mr�mf�寋�Wr�i�\ov��.Qϟ8k.j��p��*�����W��F�.�'�C�E�p�H�M>˲��	�и���ۭT�.�כ$����%��H�w%B�t�s�춷&��uvH�����e���vP�b��DO�^��^ԓӊ=[ft�^��	՞ճ$=��@9:wm�F�UK��Wz��T�[G�u�RO?.٢U��޳Ղ))�:HM �.�x���؀�U��)]����u�Yi0�W�J%a��t
-Ҩ�%�-M7
U�J$*r�Α^�5��)j�)�^^��d	��c��TM�&�W���n�ЊVT,�Ц�**?�A�[=�Oj��Y��~�y��:�9�t����t���C�bR�j�J�PI�ء�"��M�?���a������w:M~����������h��퇏��$�Y��9��
�NJ�"&[[�Ύ^�ׅ�^���p�җ�X���JT+z!.�WU�U(fF`�\��p6�,p�E@��چ��4bIY��/Z�v�`�P�������|R\i�tj��\T�xR��D�Vh�T։�)h�2_���|���64�N+����Q@
�h�-�=�з5�iQD��n�t:T c��{$4D��A�id�s`c�6�,��B��I>3G��ڌa�y���Cx MnoQ�V�E#�צ�`Ig]�x��GjHM�i�vdJ�-�~�݀K1x =����u�v=A���JAL/4,(�j�8.u�8TH6k��w��cMEi�	7��a�#OoE[n�$pT�T��+�'�z�@\�Rog;;��M��T�хɽ����T��ʷ*!�U^����z5��Ԕ�L�A|�j5��H���~˅"�*'��n=b/�2�$\DH�>�V�d�x7�A_PG2�@�6�d�ƍ��{a�i(�U�Bs���%Y��H;5Z�HM��t�g3+���HN�B���U7qs}��wvhوttSY�j@Gz�$�R�n�z� ����n��K��ֺ���pۥ!9��*&��u{ePm�&���m�7�6��2������H�~�m�Q��I7������m���8`�%�h�\a��ǟ�?�H+?����O>"�~o��T���w#��6�=y�a)���@#�AX�S �gY1ɞ� �����]����ݖ����L�I_��f�ޏ�<*��#�PU��t&�Q|۹`��i]��+��	��J�X�%_n(��!D�r;
-�b�$[3.(Y0�j*25q��I��p���zG����]��O���gV��m$|7M���(��B�P][{��~�-�M���O��.CZBJz��^┳ɒ�NQ�,iN.~��F>1�:�������x�
<����&X.H�CTC๏a��
-��w�r?p΅;���
-{\����h�Y�4��'c
��m�����3��X6t���4����.P������&]���&	��OvJ�IZm�����?c���� )��ю��W�6�TQ`he�,��N�V8��?��}�F7A�q/Ǒm*�4U�c�q+0.<_��dʬ��kPq�{~��Oއ�]{[�^�B���EK:uh��B�É�ztt�s{�7�<v��)i���ʒ�
���jPg��E�&�l��7Z0YP�\����j�v�h^t�D�bk��-��h:�mW��$�������ۀ-?h(���޹�S�����9��u96y�����}�W��!��y7�!
-��`�S���WVY�&� �D����(,:�����+h:\��(� �&5�5C~.��Y���$��Q���&h4bN�[�D�t2/�;|����@��b#�qj��x6-���P��T �Y����c��$�{�)ȇ���������@W����]��Bn����D��ӫ����b~nO0�5���N${ 
-���i�?_7�na#>��A�1�Σ�Q�����W\�8-ȏ�l��$ʷ�D�xW���`|���[q�EYI��������@���������KF?M�6�$��&�����O�cI�{]��endstream
+xڕYm�۶��_�|25s��]b�Ml'�{�8���t�N!�E($hE���7P�ċݹ��b,v�P8�/�-C�'��(Kg���`���7�B�d�����4^��*�-F^=>�ų(�4�=n�U�؏�l�X��{y8覨��/���{�����L��w��V�z=_��yx?��������~��(<�-`���},�&�LZ&0)Ma1�fS�����{���4�Lr�1��3S��ӭ.���Nϣ�;��s��kKa��B��_]��y��~�/�u�[Us�A�=�b=[đ�Zf2)�o
��2��CޕJ���n:��X;�'[T�m��<
+��:����W��BD/B��8�FFr'��>]���X�Co��c�-�������eJ���jYřVZ{�����x�g���
kz�i����ݿ���?كD�}ʝ7�ݢ���vz��^���mc��i�Z]x�i�^Y�[Ó�:�z�����U��K�����$N=��6�)��/�{PME�M�<��D�G���*zU��cixX�P�b���6!)
+n�"��I�������d"D�^�s�B5��rG�?�:{��0V�r'�D"�256�8����E���W�(Ն
j;f����H�!���@��ƃnך��|�؅NGXf�f��ŋ
K���tͶ��M�5A�����v�'�������$��v����~Q7�N���:���\e��F�.����;�#?�֦��u�P<��I௒��f��P�W�݂�؆&�A�Ck�덋/��{ӷ�nl-����K�쑄\�b?��.6�!-���gS��_汘R���Q���:{1}Q�X���Zl+[2udE�l
+��ʺ����#c�%���<�h`�+YY��H����D3/�g�,c?��b諪E��1Rk���H�
+��lJLh��G�F�d��^S���I���*``f,(�}�����'�3��2\B˸���e�t��"�E�^0}-ͺZ�;�]K[�.�]��Ҋ��Nd��-7*���	�b���02j �U�-'����7��0V�0Og+��#8��0�����rX�.�n�}���r)ÿ���E�Y�]�ɧ����@A�t�{ �t�� �j%�ׯA<u^˙�B�J��s���D�5�Zwtt���N ��~�����B
+���Y��=��
|1��g�E��Y�n
+4!�VXA��`�n���t�݆�u
+\E��j�:�=�I
+AFnT�m@S�
I�9	8hU�VkD�d�Ӷ��:@�#P0J`4���H2�
+��sfd2;����p�̺˜����ަ)}��wLV*,�c��v`V�H`G����~p<�(�*�D���U�ud�+�6�j��V���
+ṷ%�� W�R��LeÌ~W�M����9�[.��ă��ՠh8���m�n�:�,7EeO�,U[�M��km�vbڊ��[�w��N]`�	��Ig��Z�\���V+۷t��,��
�ng
ݜ��K)�x�D�<�ܵt��>Sb
e�n|��;�LA���|c���F����L��ZPL��%ȭ�����Ei���7�.���OH���M��jF��p}t����j&�9�7����9�����i5��q�_�vPS���:�B+�w�p�Z݉`�L��Ol�O��:]��W�B%)��2b�*�D��m����:Q�幫߸Q�
���9.�I����$MMF�U�(��%�h�/�t(u7�jn
+��!���>Q�qn����r�58pFp����:З�A7:9�$��"1�-��s>.�x؋���Ȏϸ�d��Q�t8�#u8�nO��rc��.�fv�	�\v�}�%-'!]x� �|4CT��O�����
��rb�v(	��D	��L�P"~��������P�%}'�+R|���dO����'-���Y@V�g�]Y�2a�zx��Ҋ��sA�>��z��p2�(����x�s���\Ea�7��p�n�B��̒��p7%�ZME��q�_�Z�%
+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
 endobj
-3645 0 obj <<
+4121 0 obj <<
 /Type /Page
-/Contents 3646 0 R
-/Resources 3644 0 R
+/Contents 4122 0 R
+/Resources 4120 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3643 0 R
+/Parent 4057 0 R
 >> endobj
-3647 0 obj <<
-/D [3645 0 R /XYZ 71.731 729.265 null]
+4123 0 obj <<
+/D [4121 0 R /XYZ 71.731 729.265 null]
 >> endobj
-738 0 obj <<
-/D [3645 0 R /XYZ 211.497 708.344 null]
+1680 0 obj <<
+/D [4121 0 R /XYZ 71.731 718.306 null]
 >> endobj
-3648 0 obj <<
-/D [3645 0 R /XYZ 71.731 699.706 null]
+798 0 obj <<
+/D [4121 0 R /XYZ 366.546 703.236 null]
 >> endobj
-3649 0 obj <<
-/D [3645 0 R /XYZ 71.731 643.422 null]
+4124 0 obj <<
+/D [4121 0 R /XYZ 71.731 681.855 null]
 >> endobj
-3650 0 obj <<
-/D [3645 0 R /XYZ 71.731 599.587 null]
+4125 0 obj <<
+/D [4121 0 R /XYZ 71.731 671.343 null]
 >> endobj
-3651 0 obj <<
-/D [3645 0 R /XYZ 71.731 568.702 null]
+4126 0 obj <<
+/D [4121 0 R /XYZ 71.731 666.361 null]
 >> endobj
-3652 0 obj <<
-/D [3645 0 R /XYZ 71.731 537.818 null]
+4127 0 obj <<
+/D [4121 0 R /XYZ 71.731 661.38 null]
 >> endobj
-3653 0 obj <<
-/D [3645 0 R /XYZ 71.731 519.886 null]
+4128 0 obj <<
+/D [4121 0 R /XYZ 71.731 638.889 null]
 >> endobj
-742 0 obj <<
-/D [3645 0 R /XYZ 255.599 486.575 null]
+4129 0 obj <<
+/D [4121 0 R /XYZ 71.731 615.552 null]
 >> endobj
-3654 0 obj <<
-/D [3645 0 R /XYZ 71.731 477.938 null]
+4130 0 obj <<
+/D [4121 0 R /XYZ 354.338 599.776 null]
 >> endobj
-3655 0 obj <<
-/D [3645 0 R /XYZ 71.731 434.605 null]
+4131 0 obj <<
+/D [4121 0 R /XYZ 71.731 597.619 null]
 >> endobj
-1293 0 obj <<
-/D [3645 0 R /XYZ 71.731 383.796 null]
+4132 0 obj <<
+/D [4121 0 R /XYZ 71.731 574.705 null]
 >> endobj
-746 0 obj <<
-/D [3645 0 R /XYZ 159.597 340.698 null]
+4133 0 obj <<
+/D [4121 0 R /XYZ 71.731 569.724 null]
 >> endobj
-3656 0 obj <<
-/D [3645 0 R /XYZ 71.731 328.26 null]
+4134 0 obj <<
+/D [4121 0 R /XYZ 71.731 538.84 null]
 >> endobj
-3657 0 obj <<
-/D [3645 0 R /XYZ 71.731 299.05 null]
+4135 0 obj <<
+/D [4121 0 R /XYZ 74.222 497.161 null]
 >> endobj
-3658 0 obj <<
-/D [3645 0 R /XYZ 71.731 268.165 null]
+4136 0 obj <<
+/D [4121 0 R /XYZ 71.731 472.09 null]
 >> endobj
-3659 0 obj <<
-/D [3645 0 R /XYZ 71.731 211.378 null]
+4137 0 obj <<
+/D [4121 0 R /XYZ 138.434 456.314 null]
 >> endobj
-3660 0 obj <<
-/D [3645 0 R /XYZ 71.731 193.446 null]
+4138 0 obj <<
+/D [4121 0 R /XYZ 288.63 443.363 null]
 >> endobj
-3661 0 obj <<
-/D [3645 0 R /XYZ 71.731 162.561 null]
+4139 0 obj <<
+/D [4121 0 R /XYZ 95.641 417.46 null]
 >> endobj
-3644 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R >>
-/ProcSet [ /PDF /Text ]
+4140 0 obj <<
+/D [4121 0 R /XYZ 71.731 416.052 null]
 >> endobj
-3664 0 obj <<
-/Length 384       
-/Filter /FlateDecode
->>
-stream
-xڕS�n�0��>�T\lc�TM�T�LOIn�	(	��4U��&64�"UƏagv�KP�?���i�	�G����yu�e���pF�s?f%8�ʖ(d�(B�Qs����}�e�@���n�
���\��h��.6�Ͳ�y�zA�Nb6��\����T�[c�GOOF���=�f;
&�+YU ke6����*L�&s�W]J�|w3ZO=
[�PA��9�n)�`Tey�|.��w��-�.�O(Nl.���4�2x���c[���9�J�W�l�����&���Kn�
ܙ�bi0��r��N�����bV�.F
��gq��q�՜U�+q�ۮj�Vz��x61�h`f�2
xк�H�����.�qL��D�R��S���(�{�5)�R?���endstream
-endobj
-3663 0 obj <<
-/Type /Page
-/Contents 3664 0 R
-/Resources 3662 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3643 0 R
+4141 0 obj <<
+/D [4121 0 R /XYZ 71.731 392.389 null]
 >> endobj
-3665 0 obj <<
-/D [3663 0 R /XYZ 71.731 729.265 null]
+4142 0 obj <<
+/D [4121 0 R /XYZ 105.325 376.613 null]
 >> endobj
-3666 0 obj <<
-/D [3663 0 R /XYZ 71.731 718.306 null]
+4143 0 obj <<
+/D [4121 0 R /XYZ 71.731 374.456 null]
 >> endobj
-3662 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R >>
+4144 0 obj <<
+/D [4121 0 R /XYZ 71.731 351.542 null]
+>> endobj
+4145 0 obj <<
+/D [4121 0 R /XYZ 71.731 276.822 null]
+>> endobj
+4146 0 obj <<
+/D [4121 0 R /XYZ 296.767 253.076 null]
+>> endobj
+4147 0 obj <<
+/D [4121 0 R /XYZ 74.222 222.192 null]
+>> endobj
+4148 0 obj <<
+/D [4121 0 R /XYZ 71.731 197.121 null]
+>> endobj
+4149 0 obj <<
+/D [4121 0 R /XYZ 71.731 148.304 null]
+>> endobj
+4150 0 obj <<
+/D [4121 0 R /XYZ 378.741 137.509 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 ]
 >> endobj
-3669 0 obj <<
-/Length 2137      
+4153 0 obj <<
+/Length 3235      
 /Filter /FlateDecode
 >>
 stream
-xڝYk��6��_�~�
\˖dI�b�&�&ݻ����"(��-�2S=\������3��r�����̙!�������KB�;/��YZ>[�rx��3��ıD�'^.�0�v�p��Ix��z��`���n�?�U֡��l��g��|�U&~_,�d;�������U�E��ݛ�v=�ج��/���HOf;o�Z�z�����?		��5LJ60)�`�y ��h3��k�T����f7�je������?���>�� �_N���٫:ჯ[�q��C�o�GF?�ïy�V؛�.0{���l�6�q�����(�A���퉡�Hy%IK���O06R5���V��m���K��E/}�n�zzr'�u��\�T�f�@K;�ƪ�n��㔌+&
-\�L;)u��ju�\q4���j�Ͻ�Y��y�z����`��>���&ܨKm����s���M*(�4i����G�j����YfCc'9�$�����JT�wRe1�	#Hԣ>:}Ϭ���ʙ��Y�
-L��	�>1��
1N��.|H
-�S�1|탯#��ih(i>�c�`��c�iO��Nh�}���6A��o?�F�*%}{����Ԡ�8�K�"8�s쪲| �n������+�2n��I�]o�_�K��P�X�`�����k.���Vv���b�S0���0�7W�D��B'�\J���ht1$89N60+0f��&�E[)�'O'�f�m7	&i��W�w����1�|n�w<%���m��JW��3g�w�8�̥j�4��TJS �憝)`k��Д���-��������}k/B���)0�NY#��rim��DyS�.
-��Z�%B뭮��.YX�`�6`�s���8�5�\q{� ����IR�l�6����a8	'#�N���b�@���d�g'=��Z�(eh����k�f�*'2{G�텺-2"��AtΙ�<ˈ�n�T��@d��1L��:����+��^��Z��K	�)K�R��1���|�;�=�mʱ�r��>�=�Y/�|C8�[�oco�$��l���^��G�}�q�p,*h1*��%�%ee���/�h}��۾�a.땩���$W�N���A��)� �G��ꫛ�z�)�Z�w��BT������*��(E�Q�r�o�#�V	q�/tJW�M��;fY�;0��}��sQʪ��VE�Y�t���tꉳl�꥾v]����&������
?B�� A��$=Td�G�m��V}����ZZWQ�ɨ�w�����MO�̸���(�ڣ��OL��:-^����i�91u#rQQ��Zu"
-!a��ʀ{���aF��>ʚ :�F
ZbP�V����:֙Su�z�	E1gMFAx �U��
-'H����p�YO��r��I��Ywy�̀.o�v�L�
��.!@þX����`�
-��&�k�{��L��7��<�*�J��tM>�[n�)����p���)�b]�
?����
�Wh�mq3˩4�����$IJ%�Cݪz�M3�u�=�4S@����É=�MΝ�>��Ww�����Ȁc�
Ӱ�s�=��N@��R(����m`Xf{'�v9��j����#��v�v-�î#p��MP�1Tv�����F�k{Ӷ����������Ot~��	��b�@m���v�%� �����u�.�H��P�q�~D�΋;>ak�MY����ꠒ��D(����m��|���}��v���I�*@Z�,�Q}�6?�jv�ځ	\QA3�Gҝ����%�!��i2U�L��.�]�i[ad�~}����7
}O����X�Y0ʳ��'Q���������>_�G������[vM[��R|���N��C>�g�Մ��u��JM�M��0FH��Fp+9���=ꬤ�w�<~KA�"�3��c�]b4������q�	�>�o䓙�wx>Fbl�= x$���}�6-���,�n3�G3W�0�`����\|�t�9�KW�q
�j�P?���\����B�7�1ϱ�y����n1jh����H�(�'��?�y���C��Z�E�tEf�)l�~�������O���a��{k�X�Չ�>�����uɡ9�f={�w?U�o�����o�Ų�����?���ċ#'E�*I�+�o"�K�'�wendstream
+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[�LjjS<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�K՗G6�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
-3668 0 obj <<
+4152 0 obj <<
 /Type /Page
-/Contents 3669 0 R
-/Resources 3667 0 R
+/Contents 4153 0 R
+/Resources 4151 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3643 0 R
->> endobj
-3670 0 obj <<
-/D [3668 0 R /XYZ 71.731 729.265 null]
->> endobj
-1294 0 obj <<
-/D [3668 0 R /XYZ 71.731 718.306 null]
->> endobj
-750 0 obj <<
-/D [3668 0 R /XYZ 366.546 703.236 null]
->> endobj
-3671 0 obj <<
-/D [3668 0 R /XYZ 71.731 681.855 null]
+/Parent 4180 0 R
 >> endobj
-3672 0 obj <<
-/D [3668 0 R /XYZ 71.731 671.343 null]
+4154 0 obj <<
+/D [4152 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3673 0 obj <<
-/D [3668 0 R /XYZ 71.731 666.361 null]
+4155 0 obj <<
+/D [4152 0 R /XYZ 71.731 741.22 null]
 >> endobj
-3674 0 obj <<
-/D [3668 0 R /XYZ 71.731 661.38 null]
+4156 0 obj <<
+/D [4152 0 R /XYZ 71.731 675.303 null]
 >> endobj
-3675 0 obj <<
-/D [3668 0 R /XYZ 71.731 638.889 null]
+4157 0 obj <<
+/D [4152 0 R /XYZ 429.028 651.557 null]
 >> endobj
-3676 0 obj <<
-/D [3668 0 R /XYZ 71.731 615.552 null]
+4158 0 obj <<
+/D [4152 0 R /XYZ 153.769 612.702 null]
 >> endobj
-3677 0 obj <<
-/D [3668 0 R /XYZ 354.338 599.776 null]
+4159 0 obj <<
+/D [4152 0 R /XYZ 453.126 612.702 null]
 >> endobj
-3678 0 obj <<
-/D [3668 0 R /XYZ 71.731 597.619 null]
+4160 0 obj <<
+/D [4152 0 R /XYZ 74.222 581.818 null]
 >> endobj
-3679 0 obj <<
-/D [3668 0 R /XYZ 71.731 574.705 null]
+4161 0 obj <<
+/D [4152 0 R /XYZ 71.731 556.747 null]
 >> endobj
-3680 0 obj <<
-/D [3668 0 R /XYZ 71.731 569.724 null]
+4162 0 obj <<
+/D [4152 0 R /XYZ 71.731 522.939 null]
 >> endobj
-3681 0 obj <<
-/D [3668 0 R /XYZ 71.731 538.84 null]
+4163 0 obj <<
+/D [4152 0 R /XYZ 105.883 497.136 null]
 >> endobj
-3682 0 obj <<
-/D [3668 0 R /XYZ 74.222 484.209 null]
+4164 0 obj <<
+/D [4152 0 R /XYZ 71.731 489.998 null]
 >> endobj
-3683 0 obj <<
-/D [3668 0 R /XYZ 71.731 459.138 null]
+4165 0 obj <<
+/D [4152 0 R /XYZ 132.174 427.397 null]
 >> endobj
-3684 0 obj <<
-/D [3668 0 R /XYZ 136.02 443.363 null]
+4166 0 obj <<
+/D [4152 0 R /XYZ 71.731 420.259 null]
 >> endobj
-3685 0 obj <<
-/D [3668 0 R /XYZ 282.001 430.411 null]
+4167 0 obj <<
+/D [4152 0 R /XYZ 71.731 350.894 null]
 >> endobj
-3686 0 obj <<
-/D [3668 0 R /XYZ 95.641 404.508 null]
+4168 0 obj <<
+/D [4152 0 R /XYZ 71.731 350.894 null]
 >> endobj
-3687 0 obj <<
-/D [3668 0 R /XYZ 71.731 403.101 null]
+4169 0 obj <<
+/D [4152 0 R /XYZ 74.222 308.842 null]
 >> endobj
-3688 0 obj <<
-/D [3668 0 R /XYZ 71.731 379.437 null]
+4170 0 obj <<
+/D [4152 0 R /XYZ 148.772 285.928 null]
 >> endobj
-3689 0 obj <<
-/D [3668 0 R /XYZ 105.325 363.661 null]
+4171 0 obj <<
+/D [4152 0 R /XYZ 71.731 284.52 null]
 >> endobj
-3690 0 obj <<
-/D [3668 0 R /XYZ 71.731 361.505 null]
+4172 0 obj <<
+/D [4152 0 R /XYZ 368.158 267.995 null]
 >> endobj
-3691 0 obj <<
-/D [3668 0 R /XYZ 71.731 338.59 null]
+4173 0 obj <<
+/D [4152 0 R /XYZ 95.641 229.141 null]
 >> endobj
-3692 0 obj <<
-/D [3668 0 R /XYZ 71.731 263.871 null]
+4174 0 obj <<
+/D [4152 0 R /XYZ 71.731 201.081 null]
 >> endobj
-3693 0 obj <<
-/D [3668 0 R /XYZ 338.877 240.125 null]
+4175 0 obj <<
+/D [4152 0 R /XYZ 202.524 180.324 null]
 >> endobj
-3694 0 obj <<
-/D [3668 0 R /XYZ 74.222 209.24 null]
+4176 0 obj <<
+/D [4152 0 R /XYZ 340.43 180.324 null]
 >> endobj
-3695 0 obj <<
-/D [3668 0 R /XYZ 71.731 184.17 null]
+4177 0 obj <<
+/D [4152 0 R /XYZ 71.731 167.273 null]
 >> endobj
-3696 0 obj <<
-/D [3668 0 R /XYZ 71.731 135.353 null]
+4178 0 obj <<
+/D [4152 0 R /XYZ 385.027 149.44 null]
 >> endobj
-3697 0 obj <<
-/D [3668 0 R /XYZ 302.952 124.558 null]
+4179 0 obj <<
+/D [4152 0 R /XYZ 71.731 111.417 null]
 >> endobj
-3667 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F32 1071 0 R /F33 1160 0 R /F35 1229 0 R >>
+4151 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F35 1437 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3700 0 obj <<
-/Length 2739      
+4183 0 obj <<
+/Length 2321      
 /Filter /FlateDecode
 >>
 stream
-xڭZmo����_�,%R�9�8�\S�yq�K��(V�J��*����_�ٗ�7��}(D�M���<��3C�s��^l�d���l�d��E~z1�8�o~~��;�斩w��݋����b��֋����2]%[��"K���������L���}<�V���DޕT_\u��VuM����4]�^������������Z�Zl��v�xO��l�ܭ����o��r����D�-h�Wu%�O��|��������ܹ[��l>��KK��j�[�>��a%̹�p"�ՙ��5��@im�wޣY���X��}���r����<���AY�3A�(\�W��y��!���hK�Z���Z���5�
67�qAD�q|
�K�i������b3��i��01q���E�-ۓ}
{�_��~?�����Hc��T�O���&�^��~���_��}����wo������ى��,�4W%1N9��F(��D1Z�9k�����x�[a���Ry�==��Nb���v��~�N��&��A���
�����O�߽y
9���'�s
2ϬjmC'�C�1="����1v��D���=d�B��Z#�	���j�=R�r�8P>�1g
-Fys9N�#�%����nj�r"�}a�ձ��=4��rG:�)��{_���1��S%0nMw�c��qL�ݮ^3�9>�1��}�j�W�D���'I�����������b1_&�l
�K��w`�����,K���{rv:��IQ�A�! �i�_��l�����YA�%ɿ٘q�F'�<<�kk��1�%��=,�_�1e���x��ar���P���Ȼ���n�~�]�H��
-�-6I$�w�^�$��4,-4jrֈ��tha��T,����L��Ь�Ɯ��h))�ϫ��S������������r6����ף��-n��>�
-��Y/df'�8Վ^-��������Ɔ��2�/��D{��;��%&�2�?`�r�l�eȶ��c)\�<���ʛ�/�߿2�<Y��ʑ��u�Sj
-q�v�T7���[
-�Ͼ<���-�er�f7�{=����d?5j�_(3�i�V��Q���V��*
�UaP��I�#J�̃��"N��ԫ�3uW�`g�K�%RՠG�>U�}�X���Ob?@Y��y@��MK%�N<kº��t�*3�ږ6ݣ�`P�8�[_Ο�ja�å�q�*a��'�#l����e��j�JTDT.U������e��,<��	�K�4�̍I~�^Uŏj5��C:D#�MQw���a)��bB����y��^2��bX� <kD�R�$���*�_�o%)�C뚺2�倵��w�H�.֨��)�[+8���
�j�������E�� ��H<�]B��u��Ō�xC��u�T�7�1��J�ecz���=l����\�����l��`A�Y����o���J�DŽc��m,:�^������W���8JR�z�~`��ai��tj�^�{�OZq���%�Kxj�y]�D
-L�c��ҙC�D�DrZtJ6G��?�-������C]М��-3���:�:Ij��Q�çn���J�\�`�f�.�������GvCŏ�Z�H�'ן�ip���@^V�FDW`�[��_��*�	G�җ��6<��Nr�W"T��M��?���TsǠwi�;2�2*�E�ؾGd`�J�%[��<�v,���"�\�<�PXi���	G�]cJ��au��9�'eS�]���0q"Y�y����<��	H���6��~P�8m�]�:b�D��D5��d��`�Ç{_I
vXST�I��6a̾P;�����E���G�7��dX�6���L�Hj�a�0����̇r��S�%�
ˈTg7�۴�0R<�h(��ނ��h40{�E2i��E�
-�l�ٮ���R����7����]���
eo��Z�"�43=fۓ�[J�Z�9�qY4����H'(
-"�S
J��̋e��|O�}�'#�%���b���e�ds��:����ᤂ�_�پjf�YLA^��,��r��2��v���~+�z�cQ�%8uO�<��섥��f�%��]!�p��=d�e�e�8��^t�:�m���%��.M�4 ݗ����@\��O��[Ll���ܷнx*ߞU��>Q".8qrO�?V�?Y[Jg�.��,�y���vP	�ћ������W5�`5�Ց[U�\�Z.�!ز�����|m�p��5���i�e���:1���`jx%{��B��H��@��[��)�x�3m`m=hB(������2~��r��p�|��8���
-;�ƙ
-��~�[z�j��%$N�+7��p�^(����է��TQ�8��9�4� �Je�)�>T��[�&��7B�W|b��R������^%�`�ti*��Jp��g�ac���2Y�2�!�#��N��d3ߘG�76���4`ߧsf���h�i)�M3u�&�u
��%U״G~CU\ʷ#m1��]���Y�+�j-��ㆴe���O�U����ߥ��e',����mL��e��N`�QM�揠@��	㙠��}�3����~&�T;��a���$��X]kj�L���/v�����OZ}�Ha�f9�6�C��>_<��n�\D��I��S;$��)�tOC	R��sg�A���_]]��O�q9��

Rn��ixk>;ш�_��a�Fd�M���ɿ"q����d�m�y��H�n���-H��:�0�endstream
+xڅk�����
+7)�r����|h���{m��r�A�+�D��ɢ#J�s}g8#[~�&9�=C���~�h�iC4Q���ͳ`���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
-3699 0 obj <<
+4182 0 obj <<
 /Type /Page
-/Contents 3700 0 R
-/Resources 3698 0 R
+/Contents 4183 0 R
+/Resources 4181 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3643 0 R
+/Parent 4180 0 R
 >> endobj
-3701 0 obj <<
-/D [3699 0 R /XYZ 71.731 729.265 null]
+4184 0 obj <<
+/D [4182 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3702 0 obj <<
-/D [3699 0 R /XYZ 71.731 662.351 null]
+4185 0 obj <<
+/D [4182 0 R /XYZ 71.731 660.359 null]
 >> endobj
-3703 0 obj <<
-/D [3699 0 R /XYZ 400.167 638.605 null]
+4186 0 obj <<
+/D [4182 0 R /XYZ 71.731 639.203 null]
 >> endobj
-3704 0 obj <<
-/D [3699 0 R /XYZ 95.641 599.751 null]
+4187 0 obj <<
+/D [4182 0 R /XYZ 71.731 619.278 null]
 >> endobj
-3705 0 obj <<
-/D [3699 0 R /XYZ 376.884 599.751 null]
+4188 0 obj <<
+/D [4182 0 R /XYZ 115.567 595.965 null]
 >> endobj
-3706 0 obj <<
-/D [3699 0 R /XYZ 74.222 568.867 null]
+4189 0 obj <<
+/D [4182 0 R /XYZ 71.731 568.07 null]
 >> endobj
-3707 0 obj <<
-/D [3699 0 R /XYZ 71.731 543.796 null]
+4190 0 obj <<
+/D [4182 0 R /XYZ 376.59 555.118 null]
 >> endobj
-3708 0 obj <<
-/D [3699 0 R /XYZ 71.731 509.988 null]
+4191 0 obj <<
+/D [4182 0 R /XYZ 216.969 542.167 null]
 >> endobj
-3709 0 obj <<
-/D [3699 0 R /XYZ 105.883 484.184 null]
+4192 0 obj <<
+/D [4182 0 R /XYZ 200.218 529.215 null]
 >> endobj
-3710 0 obj <<
-/D [3699 0 R /XYZ 71.731 477.046 null]
+4193 0 obj <<
+/D [4182 0 R /XYZ 71.731 504.862 null]
 >> endobj
-3711 0 obj <<
-/D [3699 0 R /XYZ 213.092 414.446 null]
+4194 0 obj <<
+/D [4182 0 R /XYZ 71.731 452.937 null]
 >> endobj
-3712 0 obj <<
-/D [3699 0 R /XYZ 71.731 394.356 null]
+4195 0 obj <<
+/D [4182 0 R /XYZ 439.725 442.142 null]
 >> endobj
-3713 0 obj <<
-/D [3699 0 R /XYZ 71.731 324.991 null]
+4196 0 obj <<
+/D [4182 0 R /XYZ 95.641 403.288 null]
 >> endobj
-3714 0 obj <<
-/D [3699 0 R /XYZ 71.731 324.991 null]
+4197 0 obj <<
+/D [4182 0 R /XYZ 336.678 390.336 null]
 >> endobj
-3715 0 obj <<
-/D [3699 0 R /XYZ 74.222 282.939 null]
+4198 0 obj <<
+/D [4182 0 R /XYZ 455.543 390.336 null]
 >> endobj
-3716 0 obj <<
-/D [3699 0 R /XYZ 148.772 260.025 null]
+4199 0 obj <<
+/D [4182 0 R /XYZ 74.222 359.452 null]
 >> endobj
-3717 0 obj <<
-/D [3699 0 R /XYZ 71.731 258.617 null]
+4200 0 obj <<
+/D [4182 0 R /XYZ 71.731 334.381 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]
+>> endobj
+4203 0 obj <<
+/D [4182 0 R /XYZ 71.731 293.534 null]
 >> endobj
-3718 0 obj <<
-/D [3699 0 R /XYZ 349.866 242.092 null]
+4204 0 obj <<
+/D [4182 0 R /XYZ 486.265 264.807 null]
 >> endobj
-3719 0 obj <<
-/D [3699 0 R /XYZ 95.641 203.238 null]
+4205 0 obj <<
+/D [4182 0 R /XYZ 71.731 239.736 null]
 >> endobj
-3720 0 obj <<
-/D [3699 0 R /XYZ 71.731 175.178 null]
+4206 0 obj <<
+/D [4182 0 R /XYZ 71.731 239.736 null]
 >> endobj
-3721 0 obj <<
-/D [3699 0 R /XYZ 199.959 154.421 null]
+4207 0 obj <<
+/D [4182 0 R /XYZ 71.731 216.956 null]
 >> endobj
-3722 0 obj <<
-/D [3699 0 R /XYZ 336.766 154.421 null]
+4208 0 obj <<
+/D [4182 0 R /XYZ 71.731 183.014 null]
 >> endobj
-3723 0 obj <<
-/D [3699 0 R /XYZ 71.731 141.37 null]
+4209 0 obj <<
+/D [4182 0 R /XYZ 71.731 165.081 null]
 >> endobj
-3724 0 obj <<
-/D [3699 0 R /XYZ 393.541 123.537 null]
+4210 0 obj <<
+/D [4182 0 R /XYZ 71.731 127.158 null]
 >> endobj
-3698 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F32 1071 0 R /F35 1229 0 R >>
+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 ]
 >> endobj
-3727 0 obj <<
-/Length 1937      
+4213 0 obj <<
+/Length 2713      
 /Filter /FlateDecode
 >>
 stream
-xڍX��۶���w���"��i�Ϗ\��qt�N��x �C�L��տ�`��(;͈ 	,v����Y�?:[R����H�&���$���͛'g�8��y��d�:�f+�J���vӄdZN�,	g���w�#����I0�#����v�����ٻ����΋��;ᅬ�?y��i�DK�ʢ�*��L�Lfh�j-W	IcP2�H�F�#���A0��%��ި�?��F���ӹ���Z��sx&d�D��Ʈ�6�it��Qh{��eW0�$KjtX�B��4��Z,�}��(���
-_��v�h0�ՍG�y��>�?�	���i(˪�^��O(��W8>���PҎ����'<��ݟw��B�}geq�o'�z����ڣ�w?t�s�
׶Ґ�k�l�����r�>�"&/,\Q�ÕQ��H����(XΧ�F	W	�<��|�$#,�t�����3�q��Ҙ��j懔�te��?�n?��G����Ԩ���7O-+��t��v�~6X;��������;Q�c�t��`j���)�F�L��0!q@��-ػ��g�b����n's���xF��pU�G�c���\(nGl���֎kUcG[/�BH��@L��B��l�f�'�|�����p^⤪��z�c�`i\�f��H��Ƹ+�8�c�8[:n���1 F�S�EtȔs�+1��$��F��*�]��x�8��(
��.E7��#�Z@@qu;����a[q'������g���a
-�2��f���,4p����E�f���U�:1�%e�{�+�eMo�N~�PBu%���f�3u���F��ǖ�κ�!4�6P�F�75#�Q�� �$x�]#k��ۺ���>��t9�]����d;Rm�p�����<wɹmFN(�	��`ZLl�d�c-�u���x�+QV�� !�bB���ƾ{Ӗ�
�7���bq:�t�!M},�D�ĺ[2W�b ����oz�����Z�I���a����_HW�t}C���ҚϲQ\l�$�`���
-Œf:m�!�V]��O��H����jk~��?�#qaV�B
-�jA�������>_뒭JwG�;y_(����AW����TW���R����������4�fU���<6�y}�5�`���eSv�|k̀|�Rfl��A	��"� �tO�٦�m�_�=z�e��c}*n~���TM}���)_�h�:��}�ۏz@�""���`�Q�_7u�77�����D����S���vi�]��+=��|F���տ���p�^�Z��Y������=��7����\����g�d~��A���6D�c�R2��m]�F~u=�6�*�
\���
�lD?������H!���jM�Yq�-�j��;�ӱ�&-i���вV���u������eۺX��i����ov�?j�PN4!H/�6�?M�C2��
-V*�v�����\i\`�*p
�CW��K{.w@);N�<�2��N���~�˥�P⛊�s[�P��"x��E\�o����4vf��3�eǙa�(FmU@xO��
-��]?
Y���.��2�L��$��?h'f�lp�s'B%l��a��G��{j~���O�;!7����n��Տ��.��v�^U\�|	{�x����y׻��oLڊ�p�}۾�BD����ם����Y�[�aR�������U�_�T#���d��.[�A��
-��������O��B�����D����_��>�;}*Mkp����Ty�T��u�"�3W�+1�D�(0B��GV�W#��Zh�@�=��:�g��k��q���o�
4����p:�_|~�~th��9Bynz��嶱9�Q��Į/Э,�f�uV��v��f�O��'�C��Q�f���G*`p�7�X��t��.��g$�˯~��L��%!�C'D��\}��t����=�endstream
+xڅi�۸�{~�|*d`���,Xrn�ȶh2�Mp$�F׊R&�_�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�ȳ\7j7A�=�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{�:����3BU ���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����>��;VA�-΄�`��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
-3726 0 obj <<
+4212 0 obj <<
 /Type /Page
-/Contents 3727 0 R
-/Resources 3725 0 R
+/Contents 4213 0 R
+/Resources 4211 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3643 0 R
->> endobj
-3728 0 obj <<
-/D [3726 0 R /XYZ 71.731 729.265 null]
->> endobj
-3729 0 obj <<
-/D [3726 0 R /XYZ 71.731 741.22 null]
->> endobj
-3730 0 obj <<
-/D [3726 0 R /XYZ 71.731 718.306 null]
->> endobj
-3731 0 obj <<
-/D [3726 0 R /XYZ 71.731 686.725 null]
+/Parent 4180 0 R
+/Annots [ 4220 0 R ]
 >> endobj
-3732 0 obj <<
-/D [3726 0 R /XYZ 176.985 660.822 null]
+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) >>
 >> endobj
-3733 0 obj <<
-/D [3726 0 R /XYZ 71.731 648.702 null]
+4214 0 obj <<
+/D [4212 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3734 0 obj <<
-/D [3726 0 R /XYZ 71.731 627.547 null]
+4215 0 obj <<
+/D [4212 0 R /XYZ 71.731 718.306 null]
 >> endobj
-3735 0 obj <<
-/D [3726 0 R /XYZ 71.731 607.621 null]
+4216 0 obj <<
+/D [4212 0 R /XYZ 523.238 708.344 null]
 >> endobj
-3736 0 obj <<
-/D [3726 0 R /XYZ 115.567 584.309 null]
+4217 0 obj <<
+/D [4212 0 R /XYZ 74.222 677.46 null]
 >> endobj
-3737 0 obj <<
-/D [3726 0 R /XYZ 71.731 556.413 null]
+4218 0 obj <<
+/D [4212 0 R /XYZ 71.731 639.437 null]
 >> endobj
-3738 0 obj <<
-/D [3726 0 R /XYZ 363.584 543.462 null]
+4219 0 obj <<
+/D [4212 0 R /XYZ 146.578 623.661 null]
 >> endobj
-3739 0 obj <<
-/D [3726 0 R /XYZ 201.055 530.511 null]
+4221 0 obj <<
+/D [4212 0 R /XYZ 71.731 603.572 null]
 >> endobj
-3740 0 obj <<
-/D [3726 0 R /XYZ 199.122 517.559 null]
+4222 0 obj <<
+/D [4212 0 R /XYZ 74.222 535.99 null]
 >> endobj
-3741 0 obj <<
-/D [3726 0 R /XYZ 71.731 493.206 null]
+4223 0 obj <<
+/D [4212 0 R /XYZ 71.731 510.919 null]
 >> endobj
-3742 0 obj <<
-/D [3726 0 R /XYZ 71.731 441.28 null]
+4224 0 obj <<
+/D [4212 0 R /XYZ 71.731 480.035 null]
 >> endobj
-3743 0 obj <<
-/D [3726 0 R /XYZ 408.097 430.486 null]
+4225 0 obj <<
+/D [4212 0 R /XYZ 71.731 457.121 null]
 >> endobj
-3744 0 obj <<
-/D [3726 0 R /XYZ 95.641 391.631 null]
+4226 0 obj <<
+/D [4212 0 R /XYZ 428.12 442.64 null]
 >> endobj
-3745 0 obj <<
-/D [3726 0 R /XYZ 330.04 378.68 null]
+4227 0 obj <<
+/D [4212 0 R /XYZ 71.731 425.539 null]
 >> endobj
-3746 0 obj <<
-/D [3726 0 R /XYZ 445.585 378.68 null]
+4228 0 obj <<
+/D [4212 0 R /XYZ 450.21 404.384 null]
 >> endobj
-3747 0 obj <<
-/D [3726 0 R /XYZ 74.222 347.796 null]
+4229 0 obj <<
+/D [4212 0 R /XYZ 71.731 353.176 null]
 >> endobj
-3748 0 obj <<
-/D [3726 0 R /XYZ 71.731 322.725 null]
+4230 0 obj <<
+/D [4212 0 R /XYZ 325.465 317.31 null]
 >> endobj
-3749 0 obj <<
-/D [3726 0 R /XYZ 71.731 304.792 null]
+4231 0 obj <<
+/D [4212 0 R /XYZ 71.731 302.202 null]
 >> endobj
-3750 0 obj <<
-/D [3726 0 R /XYZ 218.849 284.035 null]
+4232 0 obj <<
+/D [4212 0 R /XYZ 71.731 253.385 null]
 >> endobj
-3751 0 obj <<
-/D [3726 0 R /XYZ 71.731 281.878 null]
+4233 0 obj <<
+/D [4212 0 R /XYZ 353.315 242.59 null]
 >> endobj
-3752 0 obj <<
-/D [3726 0 R /XYZ 379.743 253.151 null]
+4234 0 obj <<
+/D [4212 0 R /XYZ 71.731 211.607 null]
 >> endobj
-3753 0 obj <<
-/D [3726 0 R /XYZ 71.731 228.08 null]
+4235 0 obj <<
+/D [4212 0 R /XYZ 378.982 198.755 null]
 >> endobj
-3754 0 obj <<
-/D [3726 0 R /XYZ 71.731 228.08 null]
+4236 0 obj <<
+/D [4212 0 R /XYZ 340.628 185.803 null]
 >> endobj
-3755 0 obj <<
-/D [3726 0 R /XYZ 71.731 205.3 null]
+4237 0 obj <<
+/D [4212 0 R /XYZ 71.731 165.714 null]
 >> endobj
-3756 0 obj <<
-/D [3726 0 R /XYZ 71.731 171.358 null]
+4238 0 obj <<
+/D [4212 0 R /XYZ 244.777 154.919 null]
 >> endobj
-3757 0 obj <<
-/D [3726 0 R /XYZ 71.731 153.425 null]
+4239 0 obj <<
+/D [4212 0 R /XYZ 74.222 124.035 null]
 >> endobj
-3725 0 obj <<
-/Font << /F33 1160 0 R /F35 1229 0 R /F27 1064 0 R /F32 1071 0 R /F23 1057 0 R /F44 1440 0 R >>
+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 ]
 >> endobj
-3760 0 obj <<
-/Length 2519      
+4242 0 obj <<
+/Length 2755      
 /Filter /FlateDecode
 >>
 stream
-xڝYY��F~����BFޒ_�8pv{�6��lI��vӲ�뷺���<���c��u~u(X���v�����0MVY��_��??��b�$[���Ë��(Z�C���8H�����>	W��ׯږ�y�u�
��3ׇ377��ӟEY2�t�	�d�j��_7�y��Ż+A���>���D3�2�<$^���ދ�Xz��λ�wa�wa
-��ۆ�%�YY6�0Y_�c�D��k|X��w�kԶ�;�џ��튦+dA�:77%Wd_6`^�;��mc��yf��G"�&k���	��yS9b)�3�O\��ڢ�� ��4I�)�#��2�U)��|*��*&͙D
-|��	�坝�"�c�,�x+�c��(��砽�1�ő�_����\�����Oƪ��:I7�U��kQ�̣h*n�H���6�����gynRv�d����1�Ge���]s�ES�1� ֬
q��/:d����BZɔ�H��%�3C7�ͩ�&��Z0���D73�r�72e��CBvHT�gk���oקּ�Kyn�G8����$9��,*�P�NTf�����Ɖ���д��:�h��ș�6ȏ��Z6Ъ?ڑ2���}y{��Z�j�6�����V��t����N�]��������<pl�{�x����������9%�z���<X�M'��� S��+2z��j���ev�䖧}�&�IP�k��i/dT� ��Pc�_�����βx��^s1o�)^^�q'��}h��q�-:Le|k�qe;��I��`u��3����q����а��Q�8Ov��A]������ze-&c6a���m�O�h��`��x��
-.UQ��:D����:e����3�
-�N� ��E>���7O'�o�>e�N7��
��z:*��[����cp9�k�)�~	ƾ��d���Vֳ���&�YW�����c�m���9Xz��ܷ4���h
-+�nY��fx�>;#/<�Mw�Z��~tU��񷷯�`L�M
-r
->������~�K�!	�-F���P�� ���ɡW��^ș:�=2)�X�5�=���h��z��D��"�IF�������c�GQ�>��,�6uy�;w�Lx�(aUq������ ��U�ZS�]�9R=C��|�J�r�߫\�aH^���IW��A�d���1%��)�R$YsCA r��
-�e�r}�ݤ
���3������0�qR+�Sߩf#���z��7ˮE���7}U��:���*�U�7$4��>�3��y�=燚���l��l��Qq��Lk���XΗ�(A���7@���s����F�h�!X,�K֍:G�8��0���K#�č���5Ō��
!N��Hz�vD�:���!Kk��ŽD�v�R
-�pL�%8ZA�LS�����
����������R���e���n��-���g��{����^�����>���}QK~R���l�l�5&��TN9�;0�<:.p��L4]N��w��F���
/MRlFI6}W
@�&+p�ԺY�KŔ�W�Ps���˔���ŏ;k�n��Јf�)::�0]�C�{FF�|��?V�;�=�z��6��z�&��˹�˄VM]�
�k�k�O(�̫{�V�?S�M��nbܴ���T76~z��
-�N�s5!sT�,T���٥�pf�ɭ�s�VU^��a=�f1�Ȇ -���[�Ǎ(桄���M$�h��Y��0 �q�r��H���@}���2���d<YƩ+?<��,xT���Kpۑ��M_�?���BR4+�43��3�4p�����6�
-<���(h����tc<uر���"���/�,X+u�����^`�PM%�~R��0�/s�1�M,��>�zE���y*H*!25ɩ</L&=�Xh�0�����X<�QT�M9��H��s�+l�18k�*��)�`V-ϻ�/�Vz?�����Œ�[�C�@(���hDnQ����^1���.�	��\���[j9pc����ߑ}g��ޫ�m�1(��ɼ:��E�0�I_��,;õ�䱑������v����w�X��d��o�Y@Ђƍ�E���k�GqC�iնc�Ҫ)F�9����#	oaA��3��p+(������>��s��he;gR�������L��&�v�B�_2�����9v&���H8�~����hD�Uܮ
-�G\�G`G�ٳb
-,��q؄;�s���ZlC�x#�C�#��3C�R��x�;f�����L5�%Ŗhf��tk�+�<�bhe1�F�]�b��A�M�uPK�~�t��5N�1mY�[gM0�"k*x��Y��o+�4�[�J�ȋb��w_��k�y0�)X#FRj�b���XBԒĦ�C�@��Ȩ���dYiD�{w/¬�r:�~�N��I`��&�����C�-Ĺ�|~4��w�S*�QkmGn�ӴLW��T�Qc
?��]4J�W���@� 
-���x	fqTWF�R�ӋO�km��<I����u������o��:��~QM½��Di����at~����v��endstream
+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}B؂r��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ʴaV�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
-3759 0 obj <<
+4241 0 obj <<
 /Type /Page
-/Contents 3760 0 R
-/Resources 3758 0 R
+/Contents 4242 0 R
+/Resources 4240 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3783 0 R
-/Annots [ 3766 0 R ]
+/Parent 4180 0 R
+/Annots [ 4262 0 R ]
 >> endobj
-3766 0 obj <<
+4262 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [281.174 546.785 330.987 555.696]
+/Rect [453.197 148.279 505.5 157.19]
 /Subtype /Link
-/A << /S /GoTo /D (reporting) >>
+/A << /S /GoTo /D (template-specific) >>
 >> endobj
-3761 0 obj <<
-/D [3759 0 R /XYZ 71.731 729.265 null]
+4243 0 obj <<
+/D [4241 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3762 0 obj <<
-/D [3759 0 R /XYZ 71.731 693.235 null]
+4244 0 obj <<
+/D [4241 0 R /XYZ 71.731 706.187 null]
 >> endobj
-3763 0 obj <<
-/D [3759 0 R /XYZ 74.222 615.691 null]
+4245 0 obj <<
+/D [4241 0 R /XYZ 95.641 677.46 null]
 >> endobj
-3764 0 obj <<
-/D [3759 0 R /XYZ 71.731 577.669 null]
+4246 0 obj <<
+/D [4241 0 R /XYZ 273.207 651.557 null]
 >> endobj
-3765 0 obj <<
-/D [3759 0 R /XYZ 148.323 561.893 null]
+4247 0 obj <<
+/D [4241 0 R /XYZ 71.731 638.506 null]
 >> endobj
-3767 0 obj <<
-/D [3759 0 R /XYZ 71.731 541.803 null]
+4248 0 obj <<
+/D [4241 0 R /XYZ 71.731 613.534 null]
 >> endobj
-3768 0 obj <<
-/D [3759 0 R /XYZ 74.222 474.222 null]
+4249 0 obj <<
+/D [4241 0 R /XYZ 71.731 595.602 null]
 >> endobj
-3769 0 obj <<
-/D [3759 0 R /XYZ 71.731 449.151 null]
+4250 0 obj <<
+/D [4241 0 R /XYZ 71.731 572.688 null]
 >> endobj
-3770 0 obj <<
-/D [3759 0 R /XYZ 71.731 418.267 null]
+4251 0 obj <<
+/D [4241 0 R /XYZ 196.632 543.96 null]
 >> endobj
-3771 0 obj <<
-/D [3759 0 R /XYZ 71.731 395.353 null]
+4252 0 obj <<
+/D [4241 0 R /XYZ 71.731 541.803 null]
 >> endobj
-3772 0 obj <<
-/D [3759 0 R /XYZ 428.12 380.872 null]
+4253 0 obj <<
+/D [4241 0 R /XYZ 417.183 495.143 null]
 >> endobj
-3773 0 obj <<
-/D [3759 0 R /XYZ 71.731 363.771 null]
+4254 0 obj <<
+/D [4241 0 R /XYZ 71.731 492.986 null]
 >> endobj
-3774 0 obj <<
-/D [3759 0 R /XYZ 458.122 342.615 null]
+4255 0 obj <<
+/D [4241 0 R /XYZ 71.731 457.121 null]
 >> endobj
-3775 0 obj <<
-/D [3759 0 R /XYZ 71.731 279.751 null]
+4256 0 obj <<
+/D [4241 0 R /XYZ 74.222 402.491 null]
 >> endobj
-3776 0 obj <<
-/D [3759 0 R /XYZ 323.764 243.885 null]
+4257 0 obj <<
+/D [4241 0 R /XYZ 71.731 351.517 null]
 >> endobj
-3777 0 obj <<
-/D [3759 0 R /XYZ 71.731 228.777 null]
+4258 0 obj <<
+/D [4241 0 R /XYZ 71.731 283.836 null]
 >> endobj
-3778 0 obj <<
-/D [3759 0 R /XYZ 71.731 179.96 null]
+4259 0 obj <<
+/D [4241 0 R /XYZ 71.731 247.97 null]
 >> endobj
-3779 0 obj <<
-/D [3759 0 R /XYZ 351.43 169.166 null]
+4260 0 obj <<
+/D [4241 0 R /XYZ 71.731 202.077 null]
 >> endobj
-3780 0 obj <<
-/D [3759 0 R /XYZ 71.731 138.182 null]
+4261 0 obj <<
+/D [4241 0 R /XYZ 71.731 179.163 null]
 >> endobj
-3781 0 obj <<
-/D [3759 0 R /XYZ 378.982 125.33 null]
+4263 0 obj <<
+/D [4241 0 R /XYZ 71.731 138.316 null]
 >> endobj
-3782 0 obj <<
-/D [3759 0 R /XYZ 333.866 112.379 null]
+4264 0 obj <<
+/D [4241 0 R /XYZ 71.731 138.316 null]
 >> endobj
-3758 0 obj <<
-/Font << /F33 1160 0 R /F32 1071 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R /F35 1229 0 R >>
+4265 0 obj <<
+/D [4241 0 R /XYZ 71.731 115.826 null]
+>> endobj
+4240 0 obj <<
+/Font << /F33 1210 0 R /F32 1119 0 R /F27 1112 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3786 0 obj <<
-/Length 2487      
+4268 0 obj <<
+/Length 3031      
 /Filter /FlateDecode
 >>
 stream
-xڕYm�۸��_�b�V�-�]�6�]��-z�EE�(h��ٕDI�q~}gD���l��d���g�yQ2�����~
_�>J��,��ų���w�[�rKV�5�����^���~��=g�$�v��:�vY:{*�5�\x]���U����~?����؜���d���E�d��&�����ӟ����%����~�~UHZ3�2�R�h�!�]��lZ!A�b����^�\����F�y�|��z`�
�"�E�����Y�f%���crY%wv]W�Mek����F����(��h��O���*&J�����I)��T�d�U�Y�ZF_��U��D�li�w.;,R8�x�4����S-�ʼQ��`S:�usA������
����h�VfV��F]��:r�M����jG��}+q�Gc�&p�n�U��Hp1��d��� ޾�S��vm�d@
-\�M��S�N�����c|���_s� ��`�?���k)sV�o�P��V�U _[W�s��`8����d�J��&���jM����_i6`�N#�j]2oë���0oA�����l���ww��u���œ�]�%��鮐xص.%Š�l��3JJ:=ʊ"��D�3WGP~�r�wv:���vAb��H�_�,�c��S#i��J��j׉����<��Π��
�U0����6<n����S)��mZC8����Ғ��wŜ�J�5\_�q{��v�9xfJs6����y	��N&���7I�M�m00��B��J�����q���$>����v�,�%�
-���4O��P�q<��O|b5E�0�������i����w`A�Jz*t�$~^�)T�G�����ל���o���IwAσ�:��P^����`��e�o0��{~ ǙNҭ;�9���������l��(�K�HS���3�z{��/ˁJ3��(��)+޺��ң+J�M�iV]�ڈw{�-�Ɓ���K�4@���d;?	r����@:��q8�8��k(K�Nl�"�n��2�e��}�cwۍZ�}�o�x¹�&���ι?��
�����TdŵlT��k('8���0�R�҆�+��2Q�e9�P��j�(�Z�bV/����z��2�+��b݌p}E=�����V��*�4��j���/*	^Z���J�/��K'�G�A�4�v�.Z��n�+�8r"�5$B����M~���xs�����c���g���C�;�/�s6��BaC�k0�JW-�W�n��d���j���q�Dbm�C1S��TX��E0R�����Se�>|��/oW^�:�b$P	L�lvO72��s���m™S�凉B�oK��dUq���z˟��0u@��@T؀sV��Xh��J!=4��b��ߥ�2�c��׽i|@��*�}�%��c]�'r^k�5�.G�mJ�������
-:��%
-��W��x�����$����#4x��P�u�^�	U�r�8*&�mxV���J����E�gհ���.%�(@���PuBj����"o�pd�Y�984ac�a�4D(܅��ʳgĩoH �������[d��k��>���TQuz����-*���s_`�FYA3�����#��>eD��p^P
-�4d�^ʦ��cCz��W��x� _��Ү��3n������`�3(�/"n���6�l�-��n�TU	S��tRϪ!���'����
-��9��4��D��F#et��)��k<�k	�P�w/�6[����GN��.}:�s�x��ƣ��f�ه�e00�����8��n�EǙ)W�`���:�ks=�/o�[n�g�x�h[��� >�����z�՘�R������[�-'��~��*Q
-J܆`q�w�-�}�ië>j�gс��q�U��(�;�eOJ@��~��5Xڅuh�Y�N�b957�}���T6C�� ���DOo�����������f}/鑦od�0����˳�AFy��
-Ћ�m�0������&+�+��/u'�։���K��/�A�FcL�~R0��Þ�iqj�l
-���B��Œ�����)�/��TCX�D���Qf�È�5�8����i��8w�hG
-�r�r��mr������>��w
@��6��.��i<N�:�b�yX������m�"x��n[Ŗ
��r��.hl����l‹�F��:�j(�n���o����E�%��߭N��z�SGC����G�T(줷�G����z�N���>*`�N�;p��:�!�h,�G�֠��z��. (��Y��-T�
-6ҩ/��M�����:%���ˊ��rV��^L��0�ލ����'���9��d�`:��ޠ�O�D2�!�r��D��\w�A����=�&[G��~���(��'�CҚUg��=�p#��#σ�Y�D��5h�E٫�����������]�K�_}#��^g�.�S���%/����?��%�endstream
+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
-3785 0 obj <<
+4267 0 obj <<
 /Type /Page
-/Contents 3786 0 R
-/Resources 3784 0 R
+/Contents 4268 0 R
+/Resources 4266 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3783 0 R
-/Annots [ 3809 0 R ]
+/Parent 4180 0 R
+/Annots [ 4293 0 R ]
 >> endobj
-3809 0 obj <<
+4293 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [453.197 107.432 505.5 116.344]
+/Rect [204.95 216.02 269.707 222.874]
 /Subtype /Link
-/A << /S /GoTo /D (template-specific) >>
+/A << /S /GoTo /D (upgrade-cvs) >>
 >> endobj
-3787 0 obj <<
-/D [3785 0 R /XYZ 71.731 729.265 null]
+4269 0 obj <<
+/D [4267 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3788 0 obj <<
-/D [3785 0 R /XYZ 71.731 718.306 null]
+4270 0 obj <<
+/D [4267 0 R /XYZ 71.731 693.235 null]
 >> endobj
-3789 0 obj <<
-/D [3785 0 R /XYZ 244.77 708.344 null]
+4271 0 obj <<
+/D [4267 0 R /XYZ 71.731 649.4 null]
 >> endobj
-3790 0 obj <<
-/D [3785 0 R /XYZ 74.222 677.46 null]
+4272 0 obj <<
+/D [4267 0 R /XYZ 71.731 626.486 null]
 >> endobj
-3791 0 obj <<
-/D [3785 0 R /XYZ 71.731 652.389 null]
+4273 0 obj <<
+/D [4267 0 R /XYZ 71.731 569.699 null]
 >> endobj
-3792 0 obj <<
-/D [3785 0 R /XYZ 95.641 623.661 null]
+4274 0 obj <<
+/D [4267 0 R /XYZ 71.731 546.785 null]
 >> endobj
-3793 0 obj <<
-/D [3785 0 R /XYZ 175.87 597.758 null]
+4275 0 obj <<
+/D [4267 0 R /XYZ 71.731 541.803 null]
 >> endobj
-3794 0 obj <<
-/D [3785 0 R /XYZ 71.731 595.602 null]
+4276 0 obj <<
+/D [4267 0 R /XYZ 71.731 539.313 null]
 >> endobj
-3795 0 obj <<
-/D [3785 0 R /XYZ 71.731 572.688 null]
+4277 0 obj <<
+/D [4267 0 R /XYZ 113.574 521.046 null]
 >> endobj
-3796 0 obj <<
-/D [3785 0 R /XYZ 71.731 554.755 null]
+4278 0 obj <<
+/D [4267 0 R /XYZ 149.15 508.095 null]
 >> endobj
-3797 0 obj <<
-/D [3785 0 R /XYZ 71.731 531.841 null]
+4279 0 obj <<
+/D [4267 0 R /XYZ 71.731 480.035 null]
 >> endobj
-3798 0 obj <<
-/D [3785 0 R /XYZ 216.836 503.113 null]
+4280 0 obj <<
+/D [4267 0 R /XYZ 113.574 464.259 null]
 >> endobj
-3799 0 obj <<
-/D [3785 0 R /XYZ 71.731 500.956 null]
+4281 0 obj <<
+/D [4267 0 R /XYZ 71.731 462.102 null]
 >> endobj
-3800 0 obj <<
-/D [3785 0 R /XYZ 417.183 454.296 null]
+4282 0 obj <<
+/D [4267 0 R /XYZ 113.574 446.326 null]
 >> endobj
-3801 0 obj <<
-/D [3785 0 R /XYZ 71.731 452.14 null]
+4283 0 obj <<
+/D [4267 0 R /XYZ 131.461 446.326 null]
 >> endobj
-3802 0 obj <<
-/D [3785 0 R /XYZ 71.731 416.274 null]
+4284 0 obj <<
+/D [4267 0 R /XYZ 349.56 446.326 null]
 >> endobj
-3803 0 obj <<
-/D [3785 0 R /XYZ 74.222 361.644 null]
+4285 0 obj <<
+/D [4267 0 R /XYZ 71.731 413.659 null]
 >> endobj
-3804 0 obj <<
-/D [3785 0 R /XYZ 71.731 310.67 null]
+4286 0 obj <<
+/D [4267 0 R /XYZ 100.623 358.655 null]
 >> endobj
-3805 0 obj <<
-/D [3785 0 R /XYZ 71.731 240.932 null]
+4287 0 obj <<
+/D [4267 0 R /XYZ 113.574 340.722 null]
 >> endobj
-3806 0 obj <<
-/D [3785 0 R /XYZ 71.731 207.123 null]
+4288 0 obj <<
+/D [4267 0 R /XYZ 419.902 340.722 null]
 >> endobj
-3807 0 obj <<
-/D [3785 0 R /XYZ 71.731 161.23 null]
+4289 0 obj <<
+/D [4267 0 R /XYZ 71.731 325.614 null]
 >> endobj
-3808 0 obj <<
-/D [3785 0 R /XYZ 71.731 138.316 null]
+4290 0 obj <<
+/D [4267 0 R /XYZ 164.384 287.05 null]
 >> endobj
-3810 0 obj <<
-/D [3785 0 R /XYZ 71.731 97.47 null]
+4291 0 obj <<
+/D [4267 0 R /XYZ 222.306 266.929 null]
 >> endobj
-3784 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F32 1071 0 R >>
+4292 0 obj <<
+/D [4267 0 R /XYZ 71.731 229.071 null]
+>> endobj
+4294 0 obj <<
+/D [4267 0 R /XYZ 74.222 198.187 null]
+>> endobj
+4295 0 obj <<
+/D [4267 0 R /XYZ 71.731 173.116 null]
+>> endobj
+4296 0 obj <<
+/D [4267 0 R /XYZ 421.753 157.34 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]
+>> 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 ]
 >> endobj
-3813 0 obj <<
-/Length 2597      
+4302 0 obj <<
+/Length 2389      
 /Filter /FlateDecode
 >>
 stream
-xڝZY��6~�_����F0oQO��c{'�c�wk7N� #1C�2����mh��4�T�!)6���>8�̃����'�.��I<��W�lo�]��biH��W�W/ކ�lM�I8��E~LR�O�4f�����Á��s�bo~K��~��ͫf�WQ�T?�]�~<�]D���������[	�pE�ixQH�K8)QY/%a�B�F��|_�BȚ�b�{�'�?#��	YT|�υ�m�d
<������'�Ջ������.H@@E�S�Ĕ懺Z��OEn��,�_�u��*{,�V?w��;�c�YP�}E�oJI9���2&̽��BCN���<l�7o�/���UQ+��F���u�	�)��mˤa�/��E�p?�^Fk'�a�ץ0{5�PU���EϏ�A͜�`ēc�����l��@lppX%v���UV9����sA��wrtbf�ȗ�0fUY�@k�L�L���O��vf5�\�Q�aR��Q9"����Rw<�Tg����,�=����}��s{�E昂����Z�qYC�):���B��;���"��g��>����9G�:����Uʓ��jW���e��猖F/���>��R8�&���|��#\���k�\ܠ�a��d{}��%멻��cs�p�m
��r�����&n�a&'�t�9�tCܙ���#�T�eQ�����g�۠R���)�;�U���ӡ�h�>��b�է	/{ :�6"�/�~��%��ԗ.wx�c�7�������L ����O�q��0|N��[��AT�U����My)Yͩdcw����{c�_��
"SB��P��U��AW�ls�x��}�B5����Qj_�5l�sc�o^��4�m*>q��M֔Ø�p���=�w&�"�w�D����;|.���M?��������b$UD>k�l#��_����a%�{!I|�)��d%�4�Q[	�tl�T�L���xM�^{��2��Ɗ��
�	D��T�.��(wxR@��U}�����֟�uw9]��=Um�����,��Ũ�B(x�:�;�1Y�b�j��{Y+�z�RG��/dF;����̶F��t��k���7�t�`v�̾K��l2~u֊����\L�C�lR�~A�‹HSGY��0!���p<�}S��6���|�[@�)TN�?(�S�,4�]��z^�ǩ�mU�Q��N�}�'�t%PGf����dR�CF��8>(����U1e+���Х���P)G�.9c�O�4x��y34�~�y����~���.#I}�ފ�CS���G��zΈ D?cCKsބ�����,8���������U�1,BQ�JX|jc�滺�.��n��0��|��W<hRO��S|E�ߣN.
-��pS��б�aD�ޏ����~���
-j�}TQ|�����	����4�c�U@b/�a�8��퐳^M�V���ˆ�4zh��V���9LRE%�������V�AcFm��%�N�]M���&�q�}�d���w���.�������`Щ�!��up�-�%�C}h�La�Ͱ��e�o�lۢ���{�s�t������m�$���u�Y���s#�X�ƳM)�	�Eu�ޙ���b���Iky��3���\GHUvL�&�ŖG69
-q�:qz�B���r��!��h��M�����~�X��z[��m�)o\#�a`o���M�:��Y�=��(�����`�4�<�Y��`�<�_d?ظ�?H,A�ݪ��V=��w[^�o�ݺۊUVS7��2��Yn�n8���}����َe����@�������Pt��A��e]��k�Vzk��^��F��F�.��S1a�΄�5��@ɑ��������X<�s�5�����ر�5� �GV���~��o�,������W�8�R�@���lZ���՗��v'�p��^�C�5t�-�(�2���v��̏H�����6�I�W=����`�v^E�ܠ]��#�v
7	I´]�)p��
-?�X��p���K��>��#�ٍ~�n�|���"ԝ����uk��}N����6Au(!�Ơ.�f��>Ib�����z��#�TF��Է߂ ��a�LQж����E4�jG�j%�J��k���e�v_	�{V�Y����5��y	�ù����@TԶT�o�N�"�j'�1I"�[�H�)_�����k.d�d�޻�CK���r*��e�f$�`-Y���>	�?b���
-j��
�e����‹��h?<H5��.���{���M
�V���g�84�c�qa�o�~|���ۻ_>���VK����q�H!��ȬGLm�����������Zq��<��%��6�ZCQn�`��
-�O\ź����Ӑ�+^�
-�qfV�;��N�������!ɶ�D��8I
��n٠�s��J}�����]��5Gd���ɇ������md�����⡊l�P�з��|a�n�N�9�o��
>���_���O�ޟ��O�U;�A7@BS�
-��NC�3PU,1_�hSu�/��� %�ÆB2
��������jhMendstream
+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;wQ��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
-3812 0 obj <<
+4301 0 obj <<
 /Type /Page
-/Contents 3813 0 R
-/Resources 3811 0 R
+/Contents 4302 0 R
+/Resources 4300 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3783 0 R
-/Annots [ 3840 0 R ]
+/Parent 4180 0 R
+/Annots [ 4316 0 R ]
 >> endobj
-3840 0 obj <<
+4316 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [204.95 183.144 269.707 189.998]
+/Rect [312.894 353.147 351.505 362.058]
 /Subtype /Link
-/A << /S /GoTo /D (upgrade-cvs) >>
->> endobj
-3814 0 obj <<
-/D [3812 0 R /XYZ 71.731 729.265 null]
->> endobj
-3815 0 obj <<
-/D [3812 0 R /XYZ 71.731 718.306 null]
->> endobj
-3816 0 obj <<
-/D [3812 0 R /XYZ 71.731 696.648 null]
->> endobj
-3817 0 obj <<
-/D [3812 0 R /XYZ 71.731 660.359 null]
->> endobj
-3818 0 obj <<
-/D [3812 0 R /XYZ 71.731 616.523 null]
->> endobj
-3819 0 obj <<
-/D [3812 0 R /XYZ 71.731 593.609 null]
->> endobj
-3820 0 obj <<
-/D [3812 0 R /XYZ 71.731 536.822 null]
->> endobj
-3821 0 obj <<
-/D [3812 0 R /XYZ 71.731 513.908 null]
->> endobj
-3822 0 obj <<
-/D [3812 0 R /XYZ 71.731 508.927 null]
+/A << /S /GoTo /D (installing-bugzilla) >>
 >> endobj
-3823 0 obj <<
-/D [3812 0 R /XYZ 71.731 506.436 null]
+4303 0 obj <<
+/D [4301 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3824 0 obj <<
-/D [3812 0 R /XYZ 113.574 488.169 null]
+4304 0 obj <<
+/D [4301 0 R /XYZ 71.731 718.306 null]
 >> endobj
-3825 0 obj <<
-/D [3812 0 R /XYZ 149.549 475.218 null]
+4305 0 obj <<
+/D [4301 0 R /XYZ 485.041 695.392 null]
 >> endobj
-3826 0 obj <<
-/D [3812 0 R /XYZ 71.731 447.158 null]
+4306 0 obj <<
+/D [4301 0 R /XYZ 74.222 664.508 null]
 >> endobj
-3827 0 obj <<
-/D [3812 0 R /XYZ 113.574 431.382 null]
+4307 0 obj <<
+/D [4301 0 R /XYZ 71.731 639.437 null]
 >> endobj
-3828 0 obj <<
-/D [3812 0 R /XYZ 71.731 429.225 null]
+4308 0 obj <<
+/D [4301 0 R /XYZ 71.731 600.648 null]
 >> endobj
-3829 0 obj <<
-/D [3812 0 R /XYZ 113.574 413.45 null]
+4309 0 obj <<
+/D [4301 0 R /XYZ 128.474 554.521 null]
 >> endobj
-3830 0 obj <<
-/D [3812 0 R /XYZ 131.461 413.45 null]
+4310 0 obj <<
+/D [4301 0 R /XYZ 71.731 539.412 null]
 >> endobj
-3831 0 obj <<
-/D [3812 0 R /XYZ 349.56 413.45 null]
+4311 0 obj <<
+/D [4301 0 R /XYZ 142.466 500.848 null]
 >> endobj
-3832 0 obj <<
-/D [3812 0 R /XYZ 71.731 380.782 null]
+4312 0 obj <<
+/D [4301 0 R /XYZ 142.466 469.071 null]
 >> endobj
-3833 0 obj <<
-/D [3812 0 R /XYZ 100.623 325.778 null]
+4313 0 obj <<
+/D [4301 0 R /XYZ 180.841 457.415 null]
 >> endobj
-3834 0 obj <<
-/D [3812 0 R /XYZ 113.574 307.846 null]
+4314 0 obj <<
+/D [4301 0 R /XYZ 142.466 446.185 null]
 >> endobj
-3835 0 obj <<
-/D [3812 0 R /XYZ 423.868 307.846 null]
+4315 0 obj <<
+/D [4301 0 R /XYZ 71.731 362.058 null]
 >> endobj
-3836 0 obj <<
-/D [3812 0 R /XYZ 71.731 292.737 null]
+4317 0 obj <<
+/D [4301 0 R /XYZ 264.01 303.498 null]
 >> endobj
-3837 0 obj <<
-/D [3812 0 R /XYZ 164.384 254.173 null]
+4318 0 obj <<
+/D [4301 0 R /XYZ 375.655 303.498 null]
 >> endobj
-3838 0 obj <<
-/D [3812 0 R /XYZ 241.063 234.053 null]
+4319 0 obj <<
+/D [4301 0 R /XYZ 71.731 288.39 null]
 >> endobj
-3839 0 obj <<
-/D [3812 0 R /XYZ 71.731 196.195 null]
+4320 0 obj <<
+/D [4301 0 R /XYZ 71.731 273.446 null]
 >> endobj
-3841 0 obj <<
-/D [3812 0 R /XYZ 74.222 165.31 null]
+4321 0 obj <<
+/D [4301 0 R /XYZ 71.731 224.395 null]
 >> endobj
-3842 0 obj <<
-/D [3812 0 R /XYZ 71.731 140.239 null]
+4322 0 obj <<
+/D [4301 0 R /XYZ 111.412 198.492 null]
 >> endobj
-3843 0 obj <<
-/D [3812 0 R /XYZ 426.089 124.464 null]
+4323 0 obj <<
+/D [4301 0 R /XYZ 71.731 170.596 null]
 >> endobj
-3844 0 obj <<
-/D [3812 0 R /XYZ 110.306 111.512 null]
+4324 0 obj <<
+/D [4301 0 R /XYZ 71.731 170.596 null]
 >> endobj
-3845 0 obj <<
-/D [3812 0 R /XYZ 265.274 111.512 null]
+4325 0 obj <<
+/D [4301 0 R /XYZ 71.731 145.66 null]
 >> endobj
-3811 0 obj <<
-/Font << /F33 1160 0 R /F32 1071 0 R /F27 1064 0 R /F23 1057 0 R /F44 1440 0 R /F35 1229 0 R >>
+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 ]
 >> endobj
-3848 0 obj <<
-/Length 2078      
+4328 0 obj <<
+/Length 2326      
 /Filter /FlateDecode
 >>
 stream
-xڝXYo�6~�����,Zԭ6's�A<�;؇$X�-v�vtt$*���o�(�'Im�u}U��ƃt�P���3���f_]x�#���5+\��������Cl2������	iDRyN��4�7��������xڹ~�9�D?�O\�|��W�%�_v�F��.��ϻ���xo5���di𪒸f���Zf�CP�KI�J���V�N�!��;��@u���??}���vG����o�`��߼��~>7�~��qu#�ۋ����B�Vf;S��g%�%̜?w��4��zhZ�A���1����'xɥ>�Ll�q9��;�ffϹm�~/.�Wə<��g��|?�gܲ���+�����־tM
;B��=�g��z[b���Z[�LkV���uM��T�GtyͧN���=�s�bL'5.m�j�|+Qz[#��8�2Pq���xzу���h��]��Ƣ�0�b#r��l��DZF�����}'1~�s�c˻n�^��Acߋ��jT�x�NB��7WWf�V�j����s������?f!���E�}��O(�����r6�H&JfH֊���m!���f�,0	n���IN�͏�&�䇱�0o�c�T�	�1���g`�	�����.P�A�BlwQ�'�
Ċ�P@�V�[�5���7M���p�<�|�:��-d�B�t�k,Ǭ�WvA�a�bl>��@C��"��j6N�@	���^)�/2�PB�,��Q��	G���Q]��R��c���u+����i@�/�JX�[^���N���Z�Qs�P!3gWL��-c�(� A�	��%4�D@��
���7��h���4X$0�b�u |�*�V�&N�.��������6�+]�^d�K)��0
7���Sm�_�69�������\�!��tCI���ow��I��������u�#\��
���?t�`CChұ�_�Q�"<�8S���d
-����*���S����(%i&|�DT���ٳz+��j����j�r�x�����Wx�|2s�Υ3�!���k�*�B����$�c�)7�~�Fnp�;Z��46z~�����<(!<��e�7k^�$����+X��T��g*%q�â�qf����$��;��а���.��#)t��є�h�^�̵4P��6#��M���&�u?�ƹ�R�����
}�����_����|���1�k�Mu,�+$[�8M���Y'��~����V׾ιf��A;bX��Eh	��N��,��٪�?�JKB������=����(�bOӚ�����t�%3��
���ӎ�0�P�:Y�.�$L�kl�Rl�棶5��e�Yf��O�*�����nLk��E���qƌ�rm$@�V�&�>�Ju��P�\�����P^��GE?^�����-Z��+V���_%�7����F���p¹��]����q|"�mNj+	X5��\�1Af3�k����x|P�f�Z8Y�0T�	��x��]a�6��K��΅O�c,��䕀�IX��1-�'��2,GB��<)G��?j�sL�s�rN1���-��p��xm���\��٬��^V��
�����fY5YjN)����;5����h�-������%DS�� �K�5SSMa�eei�
(bU+����,��
-���@h�H�T;g�]�
zz�}1P�W�K>����/ia/d��z�'MS`�A�^k$\Lmn����5�OHD�I�;V@��Y�y7�6���F(��t�ɝd��#�eV
-�7��_m�7�
-����P.L��J�Nشu��ey�V�Ĵ�a������Ѥ�
�/��X�@�Wj~���Ke�G�J���B�@�t5���I�.���nW�<������[o;탼�dl%�<�x)ʨJ��Rn412(�d5��=o��ЬLB��`~���/el��積 ?&O�K�↙�AQ�)s�n˟��,�7?"�G��_�f$h�S˸4#Չ�G;*��D�g�@��(x)����r�08���{�a��<�A�R���쥤����endstream
+xڭXQ��6~�_��q��ֲ-�n�[L���)n��9�C�%V��Vj+����G�T�$3s@qX�F�(�ɏ��,�r��b��OR�$W�M{�v���F2ǒY���n޼O�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��"Q‘X�<�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
-3847 0 obj <<
+4327 0 obj <<
 /Type /Page
-/Contents 3848 0 R
-/Resources 3846 0 R
+/Contents 4328 0 R
+/Resources 4326 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3783 0 R
-/Annots [ 3861 0 R ]
+/Parent 4357 0 R
+/Annots [ 4335 0 R ]
 >> endobj
-3861 0 obj <<
+4335 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [426.041 482.937 470.899 491.526]
+/Rect [422.465 613.447 467.048 622.037]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql) >>
 >> endobj
-3849 0 obj <<
-/D [3847 0 R /XYZ 71.731 729.265 null]
+4329 0 obj <<
+/D [4327 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3850 0 obj <<
-/D [3847 0 R /XYZ 216.437 695.392 null]
+4330 0 obj <<
+/D [4327 0 R /XYZ 71.731 693.235 null]
 >> endobj
-3851 0 obj <<
-/D [3847 0 R /XYZ 71.731 688.254 null]
+4331 0 obj <<
+/D [4327 0 R /XYZ 184.704 677.46 null]
 >> endobj
-3852 0 obj <<
-/D [3847 0 R /XYZ 332.521 664.508 null]
+4332 0 obj <<
+/D [4327 0 R /XYZ 387.861 677.46 null]
 >> endobj
-3853 0 obj <<
-/D [3847 0 R /XYZ 71.731 623.661 null]
+4333 0 obj <<
+/D [4327 0 R /XYZ 71.731 662.471 null]
 >> endobj
-3854 0 obj <<
-/D [3847 0 R /XYZ 71.731 623.661 null]
+4334 0 obj <<
+/D [4327 0 R /XYZ 142.466 623.907 null]
 >> endobj
-3855 0 obj <<
-/D [3847 0 R /XYZ 71.731 598.725 null]
+4336 0 obj <<
+/D [4327 0 R /XYZ 74.222 575.891 null]
 >> endobj
-3856 0 obj <<
-/D [3847 0 R /XYZ 71.731 562.725 null]
+4337 0 obj <<
+/D [4327 0 R /XYZ 71.731 550.82 null]
 >> endobj
-3857 0 obj <<
-/D [3847 0 R /XYZ 186.878 546.949 null]
+4338 0 obj <<
+/D [4327 0 R /XYZ 71.731 497.021 null]
 >> endobj
-3858 0 obj <<
-/D [3847 0 R /XYZ 392.754 546.949 null]
+4339 0 obj <<
+/D [4327 0 R /XYZ 71.731 497.021 null]
 >> endobj
-3859 0 obj <<
-/D [3847 0 R /XYZ 71.731 531.96 null]
+4340 0 obj <<
+/D [4327 0 R /XYZ 71.731 474.242 null]
 >> endobj
-3860 0 obj <<
-/D [3847 0 R /XYZ 142.466 493.396 null]
+4341 0 obj <<
+/D [4327 0 R /XYZ 71.731 440.299 null]
 >> endobj
-3862 0 obj <<
-/D [3847 0 R /XYZ 74.222 445.38 null]
+4342 0 obj <<
+/D [4327 0 R /XYZ 204.252 396.563 null]
 >> endobj
-3863 0 obj <<
-/D [3847 0 R /XYZ 71.731 420.309 null]
+4343 0 obj <<
+/D [4327 0 R /XYZ 71.731 381.455 null]
 >> endobj
-3864 0 obj <<
-/D [3847 0 R /XYZ 71.731 366.511 null]
+4344 0 obj <<
+/D [4327 0 R /XYZ 71.731 358.541 null]
 >> endobj
-3865 0 obj <<
-/D [3847 0 R /XYZ 71.731 366.511 null]
+4345 0 obj <<
+/D [4327 0 R /XYZ 71.731 331.363 null]
 >> endobj
-3866 0 obj <<
-/D [3847 0 R /XYZ 71.731 343.731 null]
+4346 0 obj <<
+/D [4327 0 R /XYZ 197.727 298.232 null]
 >> endobj
-3867 0 obj <<
-/D [3847 0 R /XYZ 71.731 309.789 null]
+4347 0 obj <<
+/D [4327 0 R /XYZ 328.437 298.232 null]
 >> endobj
-3868 0 obj <<
-/D [3847 0 R /XYZ 231.49 266.053 null]
+4348 0 obj <<
+/D [4327 0 R /XYZ 71.731 296.075 null]
 >> endobj
-3869 0 obj <<
-/D [3847 0 R /XYZ 71.731 250.944 null]
+4349 0 obj <<
+/D [4327 0 R /XYZ 71.731 281.131 null]
 >> endobj
-3870 0 obj <<
-/D [3847 0 R /XYZ 71.731 228.03 null]
+4350 0 obj <<
+/D [4327 0 R /XYZ 71.731 259.674 null]
 >> endobj
-3871 0 obj <<
-/D [3847 0 R /XYZ 71.731 200.852 null]
+4351 0 obj <<
+/D [4327 0 R /XYZ 115.567 206.247 null]
 >> endobj
-3872 0 obj <<
-/D [3847 0 R /XYZ 197.727 167.721 null]
+4352 0 obj <<
+/D [4327 0 R /XYZ 71.731 178.351 null]
 >> endobj
-3873 0 obj <<
-/D [3847 0 R /XYZ 328.437 167.721 null]
+4353 0 obj <<
+/D [4327 0 R /XYZ 71.731 153.281 null]
 >> endobj
-3874 0 obj <<
-/D [3847 0 R /XYZ 71.731 165.564 null]
+4354 0 obj <<
+/D [4327 0 R /XYZ 187.785 120.867 null]
 >> endobj
-3875 0 obj <<
-/D [3847 0 R /XYZ 71.731 150.621 null]
+4355 0 obj <<
+/D [4327 0 R /XYZ 71.731 118.71 null]
 >> endobj
-3876 0 obj <<
-/D [3847 0 R /XYZ 71.731 129.163 null]
+4356 0 obj <<
+/D [4327 0 R /XYZ 71.731 113.729 null]
 >> endobj
-3846 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F32 1071 0 R /F23 1057 0 R /F44 1440 0 R /F35 1229 0 R >>
+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 ]
 >> endobj
-3879 0 obj <<
-/Length 2277      
+4360 0 obj <<
+/Length 2690      
 /Filter /FlateDecode
 >>
 stream
-xڕYYo�~�_�	��hݭ�A���z�Iv��\�Zbwk-��D����SE�t�����J���*�۸��m�����G��|�nN��o<K�XgD�����A�9�ClЋX��>K"s��g{Sע��w���f~���,��N��E��Ӈ��Eۛ]�n����������D����E!�f!en�2F)����f�&,�(���"쓭��g����.p�"U��a���T�xgv�ͲW"3J�ߚ�-���-�y��R�g^�D�m�g�,k|y���a�����1�g�
�	M�q<���^+��X�̬#��_>�%*k�)����Q��gѳ�+>�FpT�Sr�y��,Q"m'����hvW�����5$���*dy˵�
-�f�H�]�%�zWۄ�7�d%��Śr��`�c#K��2��-t�2���;؅����63����I�K?F)@��]����Q����M�Qt���n��*36�gtyf�Y�@������egyf�t��n���*Hs���L�^�
p��ˬ5����>�;h]#*�P���O(��@HZ�J���i�V�*D�����J`�<� �N��/BCR�B��<r��Q���o��t�XJ!NB����%qF4�@/��=�5;u������*�����|�Ƽ7��{7���u�ӑ�L��������_Ν�ZΘ�����%~��KƲ�k��uc-�/�5b�0���eC��
-����@Q=�l��䒉�kZpz�@�K��o2�|Nf㷅z��|�������ߓ��4�L��AI�V��©����Xmxe���W�+-��)>!T��U�~�J�	�>YX�in����i?�z���`ZTnm{�G9�$C	���I��ou}�K�NL~@��VYd$�ߦ�e�N��j���gЖ���T:Hy@�qx]S}�s�	.?4"W���.��-�J������TA˔��.���5��2����L��$�Qvd޼��<���0dzR���kC��X)�/��%��u{6��b�b�)�6�~��a��.��T��|_rr8w�����̛��r�V��]׽�`#���������ni�<^�W
-�Y����vEG*���B�Lb|��h���+Ԭ��ص�fP�l���7�O�ZB�����<������ͤ1*����.��cc;"}�,S����tU��=/re�E��n�#�֜�T/�8�a�n`��h�X	t/�܃{!�m�CX��P7�
�b��}O�vڵh�+�%��l�|�Վ�zh�)o�q0?u��	��x�
ʮƉ�+�,�X�Z�Xb0�Zn����B
8�>t��Q��¡��\]�ylZ,V�|t�e��7���v�Nz��t^�������nAF�瓙�3Bw��^�TV�����8/��y�X��"8�X����j�K��]	�������t����u����_s���@�U*g������ȍ�����ꄺv \�q���`�jD)�[;d�b�
��?{�r|g�(0����8����:a�ճ�M[E�&�C���Y͋b��|k1:��OK��0�ʼn���Z��2?��pZӳW�г<mݝ��Ĭ�3z��"��1"�����_�B&!'�>R)=�b�st,9fNڷ�5:��+yE���uc�.��R�"���qT��"	�I�L�ٸT�\1h9��Gj`�E$_֒��>���:��P�t&x]e$�Ǖd��v����\Q�
3��—F˄y�`$��9?A>T*�h���jvi��[h�CS�vHV+J�lO�q5-�h��w��Q&���x`��1������,�``�0[�u~U�S%���Š;}��b�faJd�{�qFD����A(�{�лY��@�2KC��8v�옑o�i�5b�R�VH���*p!;�g����xc��r-lB�w	���<N7#�	�xA�MBft���b-W(aS^�{�l�ls�=nΆ�
n:xU�j�_MT�&�.iR-A�Q����фaa�:i>􉥸\	�����8�1��ަ,fW�@d�^��1�:�GA��� =`_c8lY3�4vU7∾�~0zƇ����\nJ��J��<�5�v�FJi~��+�R/Sl�~��mn]s������<�������5T��^ۉVS�b}�
-Q�m7�rꨆEZ���:��A��n[mk,�mk�&#��4<*�Ƴ�ŏ}U�q�p7��(���W46G"�O�0a	�/�l Y _�'����/	/�3k����'endstream
+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�ތ1׵ec�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������cq5�ǖ 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�Qt–z��C�tA�Q�w��&�0vj�0u�ڡ���*;��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
-3878 0 obj <<
+4359 0 obj <<
 /Type /Page
-/Contents 3879 0 R
-/Resources 3877 0 R
+/Contents 4360 0 R
+/Resources 4358 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3783 0 R
-/Annots [ 3916 0 R ]
+/Parent 4357 0 R
+/Annots [ 4390 0 R ]
 >> endobj
-3916 0 obj <<
+4390 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [209.623 222.899 229.05 231.811]
+/Rect [208.787 359.487 228.214 368.398]
 /Subtype /Link
 /A << /S /GoTo /D (gloss-mta) >>
 >> endobj
-3880 0 obj <<
-/D [3878 0 R /XYZ 71.731 729.265 null]
+4361 0 obj <<
+/D [4359 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3881 0 obj <<
-/D [3878 0 R /XYZ 71.731 741.22 null]
+4362 0 obj <<
+/D [4359 0 R /XYZ 105.604 708.344 null]
 >> endobj
-3882 0 obj <<
-/D [3878 0 R /XYZ 516.411 696.687 null]
+4363 0 obj <<
+/D [4359 0 R /XYZ 140.184 708.344 null]
 >> endobj
-3883 0 obj <<
-/D [3878 0 R /XYZ 71.731 657.136 null]
+4364 0 obj <<
+/D [4359 0 R /XYZ 184.766 708.344 null]
 >> endobj
-3884 0 obj <<
-/D [3878 0 R /XYZ 71.731 632.065 null]
+4365 0 obj <<
+/D [4359 0 R /XYZ 71.731 706.187 null]
 >> endobj
-3885 0 obj <<
-/D [3878 0 R /XYZ 187.785 599.651 null]
+4366 0 obj <<
+/D [4359 0 R /XYZ 105.604 690.411 null]
 >> endobj
-3886 0 obj <<
-/D [3878 0 R /XYZ 71.731 597.494 null]
+4367 0 obj <<
+/D [4359 0 R /XYZ 140.184 690.411 null]
 >> endobj
-3887 0 obj <<
-/D [3878 0 R /XYZ 71.731 592.513 null]
+4368 0 obj <<
+/D [4359 0 R /XYZ 185.563 690.411 null]
 >> endobj
-3888 0 obj <<
-/D [3878 0 R /XYZ 105.604 571.756 null]
+4369 0 obj <<
+/D [4359 0 R /XYZ 71.731 688.254 null]
 >> endobj
-3889 0 obj <<
-/D [3878 0 R /XYZ 140.184 571.756 null]
+4370 0 obj <<
+/D [4359 0 R /XYZ 105.604 672.478 null]
 >> endobj
-3890 0 obj <<
-/D [3878 0 R /XYZ 184.766 571.756 null]
+4371 0 obj <<
+/D [4359 0 R /XYZ 132.164 672.478 null]
 >> endobj
-3891 0 obj <<
-/D [3878 0 R /XYZ 71.731 569.599 null]
+4372 0 obj <<
+/D [4359 0 R /XYZ 74.222 654.545 null]
 >> endobj
-3892 0 obj <<
-/D [3878 0 R /XYZ 105.604 553.823 null]
+4373 0 obj <<
+/D [4359 0 R /XYZ 71.731 629.475 null]
 >> endobj
-3893 0 obj <<
-/D [3878 0 R /XYZ 140.184 553.823 null]
+4374 0 obj <<
+/D [4359 0 R /XYZ 433.301 613.699 null]
 >> endobj
-3894 0 obj <<
-/D [3878 0 R /XYZ 185.563 553.823 null]
+4375 0 obj <<
+/D [4359 0 R /XYZ 159.09 600.747 null]
 >> endobj
-3895 0 obj <<
-/D [3878 0 R /XYZ 71.731 551.666 null]
+4376 0 obj <<
+/D [4359 0 R /XYZ 71.731 567.706 null]
 >> endobj
-3896 0 obj <<
-/D [3878 0 R /XYZ 105.604 535.89 null]
+4377 0 obj <<
+/D [4359 0 R /XYZ 95.641 543.96 null]
 >> endobj
-3897 0 obj <<
-/D [3878 0 R /XYZ 132.164 535.89 null]
+4378 0 obj <<
+/D [4359 0 R /XYZ 74.222 513.076 null]
 >> endobj
-3898 0 obj <<
-/D [3878 0 R /XYZ 74.222 517.958 null]
+4379 0 obj <<
+/D [4359 0 R /XYZ 71.731 488.005 null]
 >> endobj
-3899 0 obj <<
-/D [3878 0 R /XYZ 71.731 492.887 null]
+4380 0 obj <<
+/D [4359 0 R /XYZ 71.731 457.121 null]
 >> endobj
-3900 0 obj <<
-/D [3878 0 R /XYZ 423.509 477.111 null]
+4381 0 obj <<
+/D [4359 0 R /XYZ 71.731 434.207 null]
 >> endobj
-3901 0 obj <<
-/D [3878 0 R /XYZ 159.83 464.159 null]
+4382 0 obj <<
+/D [4359 0 R /XYZ 162.252 418.431 null]
 >> endobj
-3902 0 obj <<
-/D [3878 0 R /XYZ 71.731 431.118 null]
+4383 0 obj <<
+/D [4359 0 R /XYZ 254.556 418.431 null]
 >> endobj
-3903 0 obj <<
-/D [3878 0 R /XYZ 110.854 407.372 null]
+4384 0 obj <<
+/D [4359 0 R /XYZ 327.124 418.431 null]
 >> endobj
-3904 0 obj <<
-/D [3878 0 R /XYZ 74.222 376.488 null]
+4385 0 obj <<
+/D [4359 0 R /XYZ 499.517 418.431 null]
 >> endobj
-3905 0 obj <<
-/D [3878 0 R /XYZ 71.731 351.417 null]
+4386 0 obj <<
+/D [4359 0 R /XYZ 207.161 392.528 null]
 >> endobj
-3906 0 obj <<
-/D [3878 0 R /XYZ 71.731 320.533 null]
+4387 0 obj <<
+/D [4359 0 R /XYZ 270.687 392.528 null]
 >> endobj
-3907 0 obj <<
-/D [3878 0 R /XYZ 71.731 297.619 null]
+4388 0 obj <<
+/D [4359 0 R /XYZ 476.12 392.528 null]
 >> endobj
-3908 0 obj <<
-/D [3878 0 R /XYZ 160.936 281.843 null]
+4389 0 obj <<
+/D [4359 0 R /XYZ 71.731 372.438 null]
 >> endobj
-3909 0 obj <<
-/D [3878 0 R /XYZ 252.253 281.843 null]
+4391 0 obj <<
+/D [4359 0 R /XYZ 356.244 361.644 null]
 >> endobj
-3910 0 obj <<
-/D [3878 0 R /XYZ 324.163 281.843 null]
+4392 0 obj <<
+/D [4359 0 R /XYZ 122.471 348.692 null]
 >> endobj
-3911 0 obj <<
-/D [3878 0 R /XYZ 494.911 281.843 null]
+4393 0 obj <<
+/D [4359 0 R /XYZ 74.222 330.76 null]
 >> endobj
-3912 0 obj <<
-/D [3878 0 R /XYZ 206.604 255.94 null]
+4394 0 obj <<
+/D [4359 0 R /XYZ 71.731 305.689 null]
 >> endobj
-3913 0 obj <<
-/D [3878 0 R /XYZ 269.796 255.94 null]
+4395 0 obj <<
+/D [4359 0 R /XYZ 179.627 276.961 null]
 >> endobj
-3914 0 obj <<
-/D [3878 0 R /XYZ 474.337 255.94 null]
+4396 0 obj <<
+/D [4359 0 R /XYZ 416.129 276.961 null]
 >> endobj
-3915 0 obj <<
-/D [3878 0 R /XYZ 71.731 235.851 null]
+4397 0 obj <<
+/D [4359 0 R /XYZ 71.731 256.872 null]
 >> endobj
-3917 0 obj <<
-/D [3878 0 R /XYZ 358.055 225.056 null]
+4398 0 obj <<
+/D [4359 0 R /XYZ 71.731 225.988 null]
 >> endobj
-3918 0 obj <<
-/D [3878 0 R /XYZ 145.982 212.105 null]
+4399 0 obj <<
+/D [4359 0 R /XYZ 236.948 215.193 null]
 >> endobj
-3919 0 obj <<
-/D [3878 0 R /XYZ 74.222 194.172 null]
+4400 0 obj <<
+/D [4359 0 R /XYZ 289.53 215.193 null]
 >> endobj
-3920 0 obj <<
-/D [3878 0 R /XYZ 71.731 169.101 null]
+4401 0 obj <<
+/D [4359 0 R /XYZ 434.503 215.193 null]
 >> endobj
-3921 0 obj <<
-/D [3878 0 R /XYZ 179.627 140.374 null]
+4402 0 obj <<
+/D [4359 0 R /XYZ 71.731 187.298 null]
 >> endobj
-3922 0 obj <<
-/D [3878 0 R /XYZ 416.129 140.374 null]
+4403 0 obj <<
+/D [4359 0 R /XYZ 71.731 187.298 null]
 >> endobj
-3877 0 obj <<
-/Font << /F33 1160 0 R /F44 1440 0 R /F48 1452 0 R /F27 1064 0 R /F35 1229 0 R /F32 1071 0 R >>
+4404 0 obj <<
+/D [4359 0 R /XYZ 71.731 162.361 null]
+>> endobj
+4405 0 obj <<
+/D [4359 0 R /XYZ 71.731 139.313 null]
+>> endobj
+4406 0 obj <<
+/D [4359 0 R /XYZ 131.018 123.537 null]
+>> endobj
+4407 0 obj <<
+/D [4359 0 R /XYZ 223.917 123.537 null]
+>> endobj
+4408 0 obj <<
+/D [4359 0 R /XYZ 145.843 110.585 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 ]
 >> endobj
-3926 0 obj <<
-/Length 2433      
+4412 0 obj <<
+/Length 2715      
 /Filter /FlateDecode
 >>
 stream
-xڥYY��6~�_��K������l9�N֕�z���"!	k`0���A��s�W�Ƣ }}�u7n�n!9��I����~6������ػ-�ў������͑�x�|�$aJrsN�<�6��/�WM�D�?��Ql_��|e������*j�}��t�j�۷�_�|���k��r���*�{ZF�A�cJ��r'I��볕��}l���w�
k�R�
-ƇU�XS^٧s+kg�.�:��Jq��`ʾ�-�	+�*�}��]L�(�� ����S�ڧ��@�n�¹�[�:^��È]D�gU#�����t�>P���[�q[V�U-g�uA��8Zw��H����5g���1DX}����G�Țw`��
-�L79=3A��b����٭c|d!ɲ���Ж��֝r�9��ht�Rb����)R,ń1�RT=-�W7���j���ӌ�A8��&N�h���br��I@������Z���jz��Jp_2I|�ܗB�b<E���5:�:�
wo<ۮ���x-9z7�m�F�r�B
-M�𚘜��Ҋ;��-gʙ��J�4�^��?[�9�-�^�wb�M��!�bE�w�^V|��āT��~&|�`lQB�$F��g����—~��n7��2Ź��N�4��)�1��du�<��)� \]1�o\_e��g����L0��V��ѫ��gAg���Q���%�V�詺/M�s�h��?���5-%S��]�o5"�v�9����矆pˆ�
`�;R��IŴf�2�}��F���S�v���E�r�w��ۃȸ*�-)���HH���r���\e����P���?wgwZ���!e'�p�
[D�ji8���n�Z��`*��*Z�\L�3^�5��ɻ�a\(M�
-cB������^�}�f8�^�<�Q�cލ���f�dZ�_��t3�|)K����J��3�'^RM��X|i�BY��?�g�ΨP���4םƨdX7L�ɅЀ/9d�n�樦��2^.0��/�%�$�ߔ�A�o�?��Vz�?])��Q/�8C�
�3�h�C�0%m:���3X�=j����X�`��S�j5힦�9�h�ɢ�&�F�a=�f��u��P�JĦ2)�T��T�yQu���V������w�8�M����C�E�Q�:��
XLy����[Dv�ܖ���B�״�#������E�<�����b���Ш��ws6,%(0#^+T�D	�D{l�{�W_V�<�4��Äz��� "A���9w	�b�b_�;y��-��M�������!SACYz��%�aY�3
E�3df�s�0�-*���Z�gv\/&����\�d�Da�+��Y���A|�����;c^!���@
-�=1h��7��6o��r�:�4�j�|��t��vY�%�������������|s为�n+��~�c�\�Ä��DWv�VO�jQ<���u��f�i� �ΪkV�T��������1�R�a�΅
-;}H�2�|��lJ*��9��a�
-��8�a(
-_M�-�Y3��,��H3&g�#�x��@V?�.�5L`L�mo�𲫛eƦf��Ao���3�ʮ�xA1��y������bg9$����5ւ��Ir��7�Y-u�y1��G��=�N/04�y�����(`5̄�'jPj0���
��ɳ��H��+�.N�-N�ޅ#��#�������ְq$Y�O�a��߫���_Z�	��?`+�xe1z�S*W�[��wӚ�@3}��3 ����=�YD�C2I�^��#5�cԗ����G�m鬠jo�4��'��e�����XO����@���L,.�F-��3t�z���H��D`�Ƅ���x<O��N����P��.Q���	��O�(���eC�$$)�,h^:��
-Ix�=�f�a| I�l"ؖg��;���_�M�l~������l��i�	��oZ�9?�{x�O�B�9@���3�w�}+G�Q�}�$2�W�1��k|����$Q���5�
-��I2xk�9ɏ<d}��; ������C�0,:����r��k�`Y6nx�U��7)&̱�W�dZ���6�s�����rgJQ��'���(�f@��
I���9�HrL�.�G�y�Ql�O��������:��?ۏv�Ot��ie�3���Ш,�sZ��ãP�t��f��q�43�
����cde$LG?eD�	B��8�\%L�]%�aLųKHuŵ�������2�φ>������+�dC����34�Bf�e����.����^�U����� ���9MlÁ�?kd�P��q\���na+wC��Kz�kl��S|\�a�l̹�&��������`��w�+�^������-j�5�pB�p�Ժ�n5i?�4|~y�Y� ������-����('A��/��K?�-%���e�endstream
+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�&�l޶a���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
-3925 0 obj <<
+4411 0 obj <<
 /Type /Page
-/Contents 3926 0 R
-/Resources 3924 0 R
+/Contents 4412 0 R
+/Resources 4410 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3783 0 R
->> endobj
-3927 0 obj <<
-/D [3925 0 R /XYZ 71.731 729.265 null]
->> endobj
-3928 0 obj <<
-/D [3925 0 R /XYZ 71.731 741.22 null]
+/Parent 4357 0 R
 >> endobj
-3929 0 obj <<
-/D [3925 0 R /XYZ 71.731 718.306 null]
+4413 0 obj <<
+/D [4411 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3930 0 obj <<
-/D [3925 0 R /XYZ 292.272 677.46 null]
+4414 0 obj <<
+/D [4411 0 R /XYZ 71.731 741.22 null]
 >> endobj
-3931 0 obj <<
-/D [3925 0 R /XYZ 438.891 677.46 null]
+4415 0 obj <<
+/D [4411 0 R /XYZ 71.731 667.333 null]
 >> endobj
-3932 0 obj <<
-/D [3925 0 R /XYZ 71.731 636.613 null]
+4416 0 obj <<
+/D [4411 0 R /XYZ 71.731 644.419 null]
 >> endobj
-3933 0 obj <<
-/D [3925 0 R /XYZ 71.731 636.613 null]
+4417 0 obj <<
+/D [4411 0 R /XYZ 394.879 615.691 null]
 >> endobj
-3934 0 obj <<
-/D [3925 0 R /XYZ 71.731 611.676 null]
+4418 0 obj <<
+/D [4411 0 R /XYZ 236.4 589.788 null]
 >> endobj
-3935 0 obj <<
-/D [3925 0 R /XYZ 71.731 588.628 null]
+4419 0 obj <<
+/D [4411 0 R /XYZ 441.444 589.788 null]
 >> endobj
-3936 0 obj <<
-/D [3925 0 R /XYZ 129.404 572.852 null]
+4420 0 obj <<
+/D [4411 0 R /XYZ 71.731 569.699 null]
 >> endobj
-3937 0 obj <<
-/D [3925 0 R /XYZ 219.884 572.852 null]
+4421 0 obj <<
+/D [4411 0 R /XYZ 217.135 545.953 null]
 >> endobj
-3938 0 obj <<
-/D [3925 0 R /XYZ 151.85 559.9 null]
+4422 0 obj <<
+/D [4411 0 R /XYZ 74.222 528.02 null]
 >> endobj
-3939 0 obj <<
-/D [3925 0 R /XYZ 71.731 492.986 null]
+4423 0 obj <<
+/D [4411 0 R /XYZ 71.731 502.949 null]
 >> endobj
-3940 0 obj <<
-/D [3925 0 R /XYZ 71.731 470.072 null]
+4424 0 obj <<
+/D [4411 0 R /XYZ 248.221 487.173 null]
 >> endobj
-3941 0 obj <<
-/D [3925 0 R /XYZ 397.697 441.345 null]
+4425 0 obj <<
+/D [4411 0 R /XYZ 439.947 461.27 null]
 >> endobj
-3942 0 obj <<
-/D [3925 0 R /XYZ 267.515 415.442 null]
+4426 0 obj <<
+/D [4411 0 R /XYZ 71.731 459.113 null]
 >> endobj
-3943 0 obj <<
-/D [3925 0 R /XYZ 469.715 415.442 null]
+4427 0 obj <<
+/D [4411 0 R /XYZ 142.466 420.549 null]
 >> endobj
-3944 0 obj <<
-/D [3925 0 R /XYZ 71.731 395.353 null]
+4428 0 obj <<
+/D [4411 0 R /XYZ 74.222 372.533 null]
 >> endobj
-3945 0 obj <<
-/D [3925 0 R /XYZ 239.55 371.606 null]
+4429 0 obj <<
+/D [4411 0 R /XYZ 71.731 347.462 null]
 >> endobj
-3946 0 obj <<
-/D [3925 0 R /XYZ 74.222 340.722 null]
+4430 0 obj <<
+/D [4411 0 R /XYZ 71.731 311.597 null]
 >> endobj
-3947 0 obj <<
-/D [3925 0 R /XYZ 71.731 315.651 null]
+4431 0 obj <<
+/D [4411 0 R /XYZ 71.731 269.819 null]
 >> endobj
-3948 0 obj <<
-/D [3925 0 R /XYZ 245.279 299.875 null]
+4432 0 obj <<
+/D [4411 0 R /XYZ 411.009 256.967 null]
 >> endobj
-3949 0 obj <<
-/D [3925 0 R /XYZ 439.947 273.973 null]
+4433 0 obj <<
+/D [4411 0 R /XYZ 71.731 216.12 null]
 >> endobj
-3950 0 obj <<
-/D [3925 0 R /XYZ 71.731 271.816 null]
+4434 0 obj <<
+/D [4411 0 R /XYZ 71.731 216.12 null]
 >> endobj
-3951 0 obj <<
-/D [3925 0 R /XYZ 142.466 233.252 null]
+4435 0 obj <<
+/D [4411 0 R /XYZ 71.731 191.183 null]
 >> endobj
-3952 0 obj <<
-/D [3925 0 R /XYZ 74.222 185.236 null]
+4436 0 obj <<
+/D [4411 0 R /XYZ 71.731 168.135 null]
 >> endobj
-3953 0 obj <<
-/D [3925 0 R /XYZ 71.731 160.165 null]
+4437 0 obj <<
+/D [4411 0 R /XYZ 71.731 145.221 null]
 >> endobj
-3924 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F32 1071 0 R /F23 1057 0 R /F44 1440 0 R >>
+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 ]
 >> endobj
-3956 0 obj <<
-/Length 2244      
+4440 0 obj <<
+/Length 2512      
 /Filter /FlateDecode
 >>
 stream
-xڝY�o��}���C�6f��#8���n��^{����^Z�m^$Q�����Ň$Jr��+K"����7Cſ������*�K�A�2�J�7��޼���d�Y�v���]^m�f^m�W����hW��_���$EJ��A��n�D�x[~�Y��ݻ��dz�y��~������[kA��f^4ҬX�Z+71ZF`��Fa5F>��~�I�p�\��,�6�s�+V�߰��3�
-�|O��+����7�i&�~-��_3,�wE2�9����4����T��;��m��[Ya�3�"7�Tp,��mth10�d��ͨ��xW�ڈ�bs��g��Լ�>��΂]A<;�C��R=2�Y󪿑���=I�?>K�$;kO��@(�z���������
�6�!Q u��
��Z�K�� �i�a��'U7�`�A���Xn��q#L.s�F=I�$yQ	 4?A��04��2�G��7��AK�����B�R.*����5�@Qm�,�m��"��U�k���&a�����F��.)ae��ZO�,}�,�>���h��;�@�P[FM`+Y�ܪ.�L4�,Qo,T�z��m�����
�
-��?5,�eݜ��F�'4U�m+[�������"��_3]z�A�jO�Y�*Ki�Y�R�J��N�.��	tL��-�땂�'RQVs������Qgg�_hq��,����6DFƉ��(>��r�b���$ǿ2���+��G�/�dH71��*!��Jۜ@lgy	
-�MÆMu�NH�>%���;�Ȏ�ʄ��r�<n�pv����&(�0 �!�Yx^c=�_�~�tW��:]��Ŕ���P�</H�̒�q�*-��L�r3�gU��p��i�Ngo��������D	�sbHX����@����&1-]��2#�6�=˲�rB>��i-*%!=��%�"o6W�"�G��f�Y4�[\A�`�֚�E���,��.��k.�wI���Bk�a��{T�|���Y�,qpvc�ײM�y%��'�#DLvE�J����KG�Ȼ/	�2(\�5�-��س��'��p��{�I�8ۋ��-(IG!ʻ����4_�3�Z�!w�O��۔%��$[��*ty�2���Bm�N���\�X���m��7{�7�e�vr�i��k]�al0l.߼��4#ww�N���j=�������m�c�U����MI]A�P�L���L��6��-����qT���p�'�>�����?T=�3$�N��M�	.F�<��BC6��(�Ǔ�T�]S0������t)ݝ�P��^>?����5E�y��~��"|-/����z�3�7�fN���2��c�0��#,CɁ��„�
-o҈�ه�u3�I�v:&U��.��|�C����'͙�xa��d���|
�w:vm��=��45q7NSjg�#���N�6Y���Cm$Y�hD{Z!��j���-�f�.`�es����v��ׇ'ן��n���p���1bpj�/�Y�b	;�]�]����0����m�w �����s�lg{R7ňF&�'L}-��gj&�&s�
H3����A�"t�;[wk��e�)�Eࣥ�i,�%�d�d'�|��,��ӣ�����ɪA��o?q±�T2tsHv=ޙ]ݘ�}E�A|�W�����$tm��2���Q�M˜��p����}w>��4Tt�����Sɚ�yy�g�d����z�O��m4e�8�{Jڜ��5*��>ecΙj.n�J�O(54g� %�U���>�"�N��`8���eEcL��d���9�/Br�HL����q�e8U���͈�m���#�g���1=�Õ��o�#+�@Py��n֛���-i�����@Y����
-��ɑNy��	IJ\�ړ;C�򺣅�E�ː����id�4�J3?j��ol��8zu"��{
�65Q��V�ۮ����r�ֶ�Z|�cǟ��[*�܊��	�M1P�3��_c��?�~3'V#&��s��ԕ��-���D'0��;s���:߹gP��K�q�� =��5�΢��$}Q�{��ūhL�{m��=��;�����9�F�9��s�}R�������
9O�.Q�޼Z�h4�FZL�6T��]R�nl���Xߺ���F!��e<�E�x�5Ҡp������zG�T�����lK��X�ƃQ,<EA�
-��i,�iL4��P�W`qI�#X���c͹��s]���k��[d�Fku���+�`��z�����P��ypendstream
+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
-3955 0 obj <<
+4439 0 obj <<
 /Type /Page
-/Contents 3956 0 R
-/Resources 3954 0 R
+/Contents 4440 0 R
+/Resources 4438 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3989 0 R
-/Annots [ 3964 0 R ]
+/Parent 4357 0 R
+/Annots [ 4442 0 R ]
 >> endobj
-3964 0 obj <<
+4442 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [444.599 500.956 496.902 509.868]
+/Rect [380.968 693.235 433.271 702.147]
 /Subtype /Link
 /A << /S /GoTo /D (os-win32) >>
 >> endobj
-3957 0 obj <<
-/D [3955 0 R /XYZ 71.731 729.265 null]
+4441 0 obj <<
+/D [4439 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3958 0 obj <<
-/D [3955 0 R /XYZ 71.731 718.306 null]
+4443 0 obj <<
+/D [4439 0 R /XYZ 74.222 646.575 null]
 >> endobj
-3959 0 obj <<
-/D [3955 0 R /XYZ 71.731 623.661 null]
+4444 0 obj <<
+/D [4439 0 R /XYZ 71.731 621.504 null]
 >> endobj
-3960 0 obj <<
-/D [3955 0 R /XYZ 71.731 623.661 null]
+4445 0 obj <<
+/D [4439 0 R /XYZ 71.731 590.62 null]
 >> endobj
-3961 0 obj <<
-/D [3955 0 R /XYZ 71.731 598.725 null]
+4446 0 obj <<
+/D [4439 0 R /XYZ 212.034 569.863 null]
 >> endobj
-3962 0 obj <<
-/D [3955 0 R /XYZ 71.731 575.676 null]
+4447 0 obj <<
+/D [4439 0 R /XYZ 71.731 567.706 null]
 >> endobj
-3963 0 obj <<
-/D [3955 0 R /XYZ 71.731 552.762 null]
+4448 0 obj <<
+/D [4439 0 R /XYZ 71.731 520.947 null]
 >> endobj
-3965 0 obj <<
-/D [3955 0 R /XYZ 71.731 495.975 null]
+4449 0 obj <<
+/D [4439 0 R /XYZ 297.791 508.095 null]
 >> endobj
-3966 0 obj <<
-/D [3955 0 R /XYZ 370.02 485.181 null]
+4450 0 obj <<
+/D [4439 0 R /XYZ 71.731 496.692 null]
 >> endobj
-3967 0 obj <<
-/D [3955 0 R /XYZ 74.222 454.296 null]
+4451 0 obj <<
+/D [4439 0 R /XYZ 71.731 496.692 null]
 >> endobj
-3968 0 obj <<
-/D [3955 0 R /XYZ 71.731 429.225 null]
+4452 0 obj <<
+/D [4439 0 R /XYZ 422.619 439.851 null]
 >> endobj
-3969 0 obj <<
-/D [3955 0 R /XYZ 71.731 398.341 null]
+4453 0 obj <<
+/D [4439 0 R /XYZ 74.222 421.918 null]
 >> endobj
-3970 0 obj <<
-/D [3955 0 R /XYZ 212.034 377.584 null]
+4454 0 obj <<
+/D [4439 0 R /XYZ 71.731 396.847 null]
 >> endobj
-3971 0 obj <<
-/D [3955 0 R /XYZ 71.731 375.427 null]
+4455 0 obj <<
+/D [4439 0 R /XYZ 300.601 381.071 null]
 >> endobj
-3972 0 obj <<
-/D [3955 0 R /XYZ 71.731 328.668 null]
+4456 0 obj <<
+/D [4439 0 R /XYZ 71.731 376.424 null]
 >> endobj
-3973 0 obj <<
-/D [3955 0 R /XYZ 297.791 315.816 null]
+4457 0 obj <<
+/D [4439 0 R /XYZ 113.574 358.157 null]
 >> endobj
-3974 0 obj <<
-/D [3955 0 R /XYZ 71.731 304.414 null]
+4458 0 obj <<
+/D [4439 0 R /XYZ 71.731 356 null]
 >> endobj
-3975 0 obj <<
-/D [3955 0 R /XYZ 71.731 304.414 null]
+4459 0 obj <<
+/D [4439 0 R /XYZ 113.574 340.224 null]
 >> endobj
-3976 0 obj <<
-/D [3955 0 R /XYZ 105.604 235.915 null]
+4460 0 obj <<
+/D [4439 0 R /XYZ 71.731 340.125 null]
 >> endobj
-3977 0 obj <<
-/D [3955 0 R /XYZ 74.222 217.983 null]
+4461 0 obj <<
+/D [4439 0 R /XYZ 113.574 322.291 null]
 >> endobj
-3978 0 obj <<
-/D [3955 0 R /XYZ 71.731 192.912 null]
+4462 0 obj <<
+/D [4439 0 R /XYZ 71.731 320.135 null]
 >> endobj
-3979 0 obj <<
-/D [3955 0 R /XYZ 300.601 177.136 null]
+4463 0 obj <<
+/D [4439 0 R /XYZ 113.574 304.359 null]
 >> endobj
-3980 0 obj <<
-/D [3955 0 R /XYZ 71.731 172.488 null]
+4464 0 obj <<
+/D [4439 0 R /XYZ 71.731 302.202 null]
 >> endobj
-3981 0 obj <<
-/D [3955 0 R /XYZ 113.574 154.222 null]
+4465 0 obj <<
+/D [4439 0 R /XYZ 113.574 286.426 null]
 >> endobj
-3982 0 obj <<
-/D [3955 0 R /XYZ 71.731 152.065 null]
+4466 0 obj <<
+/D [4439 0 R /XYZ 113.574 286.426 null]
 >> endobj
-3983 0 obj <<
-/D [3955 0 R /XYZ 113.574 136.289 null]
+4467 0 obj <<
+/D [4439 0 R /XYZ 137.584 286.426 null]
 >> endobj
-3984 0 obj <<
-/D [3955 0 R /XYZ 71.731 136.189 null]
+4468 0 obj <<
+/D [4439 0 R /XYZ 214.923 255.542 null]
 >> endobj
-3985 0 obj <<
-/D [3955 0 R /XYZ 113.574 118.356 null]
+4469 0 obj <<
+/D [4439 0 R /XYZ 71.731 243.422 null]
 >> endobj
-3986 0 obj <<
-/D [3955 0 R /XYZ 71.731 116.199 null]
+4470 0 obj <<
+/D [4439 0 R /XYZ 71.731 243.422 null]
 >> endobj
-3987 0 obj <<
-/D [3955 0 R /XYZ 113.574 100.423 null]
+4471 0 obj <<
+/D [4439 0 R /XYZ 71.731 220.643 null]
 >> endobj
-3988 0 obj <<
-/D [3955 0 R /XYZ 71.731 98.267 null]
+4472 0 obj <<
+/D [4439 0 R /XYZ 71.731 197.594 null]
 >> endobj
-3954 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F32 1071 0 R >>
+4473 0 obj <<
+/D [4439 0 R /XYZ 71.731 168.767 null]
+>> endobj
+4474 0 obj <<
+/D [4439 0 R /XYZ 71.731 143.796 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 ]
 >> endobj
-3992 0 obj <<
-/Length 2550      
+4477 0 obj <<
+/Length 3083      
 /Filter /FlateDecode
 >>
 stream
-xڭYYo#�~�_�7I��V_:$�:�q��8�� ,�nZ"�m�=�O��b���a��>D�}|�gk���mlc�D� ڤ��|����߅�b�KVޚO�?��l�7���e��i��t�(إ��)����t�U.�.WQ�^���t���C{�C�O�a�.n��z���������ON�4��]�M!�8	�m4[E�`��k�ulB��z�I�4���&���hM�`(R�A�Mf%b7�v�qψ}��v�~c�k�?�M�+�N�(	֚�^!*�XQXS�}����U�*��?�Y"���$�I�����nx�y�u��[��B���)� �rd����[���<�ƾ��ם�:�;E�g��(]|Y��9�)0<�q�<[���yv���i��h��G�D���^�F�
�Z�Q�OC��e�ف�n��A;2%Hkulj��5�_��G�N7����y�IA_#�E	����]c7��8�CtD \��v�T�|�@¨�;t�m7�#��
�.�`����ҝ-����{�.�h���^[I��X	��]�k^2�1���R�ې,ؗ���x���a�3��mQn���^(��G���R�n-`�y�~�~h�ox�q9hgA��;���!��"�������8в��u�����Ԅ����}ϑ������ub�>���0��A��VIT��^V�e�[(g��r�R�<g]	�k�F��v��J���PȸOOz��6��w�_<��D��q�s)��V
j��m�&H�=@�i���<鴦l-u��Xbd�3/t
�B�/#H
-�s��sg_��gUɲ�(Fz�l�T��`�L�WSO#mPl��ݠ��j�>��VȺg��2M���8v��9k2
-j��-!�>{.8Z�V
�Iէ�����T����U���֕(�os��4���!
�a�*f:�x�����~)
-��mQ��_��#�b_��W�I͆xFk������O<�1�*c��6�D�x�jȣl��ʤ��q�I=��y�ד���!?�6S�F��Z+�NP»�
-�!%�1)�u�ԍ��j«\?��\�*��$k���9S��f��PN���e��y�R�wmgz	
�0�?�eɚ׹�S�0��U��4�(ry50f�U�T=�B�~bٲs�]��EΕ��R�U�}����Q(y
�	0����f�
9h�PP�]���^mO~�����ҺuQ
-�� �ON�mj��M���f_�bp�}�~����? U{���rL+�xT{Hꬾ���+`�g-C�X��vգJ�
LDm���tkQf�2���|��	�H;RoG����b��W���"s�#^��Kaژ�vެ�P2�b��Q
-�s᦬���5!���y�dM@��u�K�����uH�(�?ޏ���Y>��p��i�e��;W�}�|)�T�,|n���5L��X{rt��9^������_c�M#�'������A�e
���k؋��T��ӡa9���3w`�,a��Ʒ[��4P��(����)F�ɱ3���j%�/�Q36�C��qo�*�!��Ia�;-,S&&��0�u����OL"��`�2��~9.�J��\���i�xeR��y�.�Z}��S`�܋!��ŌB�!���8:k8��Q�}{���P�0\?�PZ��AY�+�e�����	9:5�|��B�J��lO�d
Ux�,ձ���Հ�}����Z���p�$��@��3K�d:	���J�]��>��	�};��3յĠ�
��_
�.�$�����y?Eu@A�l�=���y�8��z�-�'wQ������Y���J1x��+Q��_Q�ܭ��w,72�6�M��'d��>��Ԕ;K�Ίu#�bEA'ۆ�Hw%�U�~�Rt�:
-��P�}o��*ih=��T���Ÿw�:gN�Q�����eQJƃ��n���	oM���;]�IZ���AuA��K}�������`����C�Þ�;x�I@�Y}�h���A�&u7*p�[U�QM�E���$1Q۞�����e'L�p��R.�T�ً;|����i�)���0�6���uU���,8A���W�z�i��tmK�e�
Ȫ�ME�|c\�F�e�ֽ!�����P~<�.(�G�7�#�{	D��PÎQq��7��������O{*j�UzmI���
è\�5d�=3��/�
�Mw� i�}��L��u����\Z3��v����:�az��B�4s���r8tM�w]8�m��F��^��C��@Tz6�Mw��m�x�Np�|�����l�𸳬�n�3~f'LB�a^8e��4=bn�Lj��55�*/�?�IM��o������&�ª���3���l��OEXL��?�Y��'��B]��a��7����ssÔ=8���0<C(uQWFhK7*��ц������s�	�x�O�Ɵ�X��7Nh���U'������Sb�s�
-�ƀ8�m�j��:�7[&�*�^
�xgz�
��p�?��J�}Z����.؅�o~��G��6ؤ��ɍ����cV��endstream
+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�����MG��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
-3991 0 obj <<
+4476 0 obj <<
 /Type /Page
-/Contents 3992 0 R
-/Resources 3990 0 R
+/Contents 4477 0 R
+/Resources 4475 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3989 0 R
->> endobj
-3993 0 obj <<
-/D [3991 0 R /XYZ 71.731 729.265 null]
->> endobj
-3994 0 obj <<
-/D [3991 0 R /XYZ 71.731 741.22 null]
->> endobj
-3995 0 obj <<
-/D [3991 0 R /XYZ 113.574 708.344 null]
+/Parent 4357 0 R
 >> endobj
-3996 0 obj <<
-/D [3991 0 R /XYZ 113.574 708.344 null]
+4478 0 obj <<
+/D [4476 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3997 0 obj <<
-/D [3991 0 R /XYZ 137.584 708.344 null]
+4479 0 obj <<
+/D [4476 0 R /XYZ 71.731 741.22 null]
 >> endobj
-3998 0 obj <<
-/D [3991 0 R /XYZ 253.926 677.46 null]
+4480 0 obj <<
+/D [4476 0 R /XYZ 71.731 718.306 null]
 >> endobj
-3999 0 obj <<
-/D [3991 0 R /XYZ 71.731 665.34 null]
+4481 0 obj <<
+/D [4476 0 R /XYZ 493.42 708.344 null]
 >> endobj
-4000 0 obj <<
-/D [3991 0 R /XYZ 71.731 665.34 null]
+4482 0 obj <<
+/D [4476 0 R /XYZ 429.405 695.392 null]
 >> endobj
-4001 0 obj <<
-/D [3991 0 R /XYZ 71.731 642.56 null]
+4483 0 obj <<
+/D [4476 0 R /XYZ 71.731 654.381 null]
 >> endobj
-4002 0 obj <<
-/D [3991 0 R /XYZ 71.731 619.512 null]
+4484 0 obj <<
+/D [4476 0 R /XYZ 71.731 639.437 null]
 >> endobj
-4003 0 obj <<
-/D [3991 0 R /XYZ 71.731 590.685 null]
+4485 0 obj <<
+/D [4476 0 R /XYZ 71.731 590.386 null]
 >> endobj
-4004 0 obj <<
-/D [3991 0 R /XYZ 71.731 565.714 null]
+4486 0 obj <<
+/D [4476 0 R /XYZ 74.222 546.55 null]
 >> endobj
-4005 0 obj <<
-/D [3991 0 R /XYZ 71.731 529.848 null]
+4487 0 obj <<
+/D [4476 0 R /XYZ 259.97 523.636 null]
 >> endobj
-4006 0 obj <<
-/D [3991 0 R /XYZ 479.956 519.054 null]
+4488 0 obj <<
+/D [4476 0 R /XYZ 71.731 508.528 null]
 >> endobj
-4007 0 obj <<
-/D [3991 0 R /XYZ 421.526 506.102 null]
+4489 0 obj <<
+/D [4476 0 R /XYZ 95.641 464.359 null]
 >> endobj
-4008 0 obj <<
-/D [3991 0 R /XYZ 71.731 465.091 null]
+4490 0 obj <<
+/D [4476 0 R /XYZ 71.731 464.359 null]
 >> endobj
-4009 0 obj <<
-/D [3991 0 R /XYZ 71.731 450.147 null]
+4491 0 obj <<
+/D [4476 0 R /XYZ 71.731 414.053 null]
 >> endobj
-4010 0 obj <<
-/D [3991 0 R /XYZ 71.731 401.096 null]
+4492 0 obj <<
+/D [4476 0 R /XYZ 309.199 393.295 null]
 >> endobj
-4011 0 obj <<
-/D [3991 0 R /XYZ 74.222 357.26 null]
+4493 0 obj <<
+/D [4476 0 R /XYZ 71.731 391.139 null]
 >> endobj
-4012 0 obj <<
-/D [3991 0 R /XYZ 259.97 334.346 null]
+4494 0 obj <<
+/D [4476 0 R /XYZ 71.731 360.254 null]
 >> endobj
-4013 0 obj <<
-/D [3991 0 R /XYZ 71.731 319.238 null]
+4495 0 obj <<
+/D [4476 0 R /XYZ 71.731 337.34 null]
 >> endobj
-4014 0 obj <<
-/D [3991 0 R /XYZ 95.641 275.068 null]
+4496 0 obj <<
+/D [4476 0 R /XYZ 336.008 308.613 null]
 >> endobj
-4015 0 obj <<
-/D [3991 0 R /XYZ 71.731 275.068 null]
+4497 0 obj <<
+/D [4476 0 R /XYZ 71.731 306.456 null]
 >> endobj
-4016 0 obj <<
-/D [3991 0 R /XYZ 71.731 224.762 null]
+4498 0 obj <<
+/D [4476 0 R /XYZ 246.006 285.699 null]
 >> endobj
-4017 0 obj <<
-/D [3991 0 R /XYZ 309.199 204.005 null]
+4499 0 obj <<
+/D [4476 0 R /XYZ 71.731 283.542 null]
 >> endobj
-4018 0 obj <<
-/D [3991 0 R /XYZ 71.731 201.848 null]
+4500 0 obj <<
+/D [4476 0 R /XYZ 71.731 260.628 null]
 >> endobj
-4019 0 obj <<
-/D [3991 0 R /XYZ 71.731 170.964 null]
+4501 0 obj <<
+/D [4476 0 R /XYZ 279.615 236.882 null]
 >> endobj
-4020 0 obj <<
-/D [3991 0 R /XYZ 71.731 148.05 null]
+4502 0 obj <<
+/D [4476 0 R /XYZ 521.375 223.93 null]
 >> endobj
-4021 0 obj <<
-/D [3991 0 R /XYZ 336.008 119.323 null]
+4503 0 obj <<
+/D [4476 0 R /XYZ 71.731 203.841 null]
 >> endobj
-4022 0 obj <<
-/D [3991 0 R /XYZ 71.731 117.166 null]
+4504 0 obj <<
+/D [4476 0 R /XYZ 71.731 160.005 null]
 >> endobj
-3990 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F35 1229 0 R /F32 1071 0 R /F23 1057 0 R /F44 1440 0 R >>
+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 ]
 >> endobj
-4025 0 obj <<
-/Length 1771      
+4507 0 obj <<
+/Length 2115      
 /Filter /FlateDecode
 >>
 stream
-xڝXmS�8�ίȗ�d�۱��e(��
-0�ܴ���(�/���d ����V�ߠ��|p��v�}_����szǚ���N-w�����݋`�Þ�;��eX���n��l4�M��xԻ[�<Ƿ�g�Z����_�Ǜ
���`��v���ϻ��?��g��D��
��<�����ݟ{���?�X�`�,H����ݡ�����v`�<O���%�����F��c�,�|�~�a�${9p��ЯHMG�����o˜��7���7���$����\�?��iN��6ȁ���,�p��o�wvo�P����o��&E�$�4?�/[V�j(�A����7)���q�-��R	)9�4\
�>­*��YD�$Y�S�p�P0�\PA�u��
Tr���8\QJ����+�@EQ,K	�����K�]k�;J��iX&r��(f�&�q���sB��E���H��*����L˛N1��v��X� tG���m5#�.#6�+����K���w�JZz$�F��|۲��:�v-Ϟ�	u�s���>�,m�ΰ!��8h���cf"x���r���\��(߅e�kLRa"�l!�FR�j�C�D�ˁkIJ�޴"��PR0p��H�YۗC��sF��6�o���
-�1f�y�?x2G�ֹT�43F��f����D�
�l#�Y<.JV$IX���4�ZS��"���I�|Qz��&�
-��H�
-W���'�W��Ӄf1�h�;KT+�v��IW�P���*�.�����fv{u	n���g�z�������م�6����ޣ��N)\S2&��	W�״��n����DP��!�XUFC3
�RdUk��P�(ɟ1Y=F�z�ɉ�E��m�!9�U##ٲ!�
��ˁ�@������e�U�T!"i��nq��R/
����@N8�����l�q�XW��,���ɰ�v��g�j��%Hz���,���F骦�#�9�EY��oT�(���3���,	)f�	n���г�����S�k�<'�J*'��9�N���S�	�U�hL�q�5&���l�:_
-3��.��"������4��<LDzN��v�)����BS���C�!�g�
PB?�+X��L�s�XH"ǐ-(�����5]W	�$G�����댣I�b䩆D� �:�}��d��.���~/�g��3���Xcg���^�t���X-|}1���^���1���w�۱��Oh߿���9NgW7��s��o�Nft+�;]�5����%�X[�}��X�?��h�;%�o�'�"f�N%䩭vJ�z&I灿}��1��0S<r
-#����9q9v+�T�of?Nί>^?Q�0�L'���S�^�aȩ�3��S�M%4I~~�񲣂�f�"˨�L�iPYU����S��iهZ�ޚT|LdF���BK�K5���n@c�õFl:*/��@�7���zjD�~��hO3xd]��d�ε�3g��р؍���u�S��3��LO����!�h����̙�@U�d���4���h#v�����
�fN�aY1/O�X��b�U�q6�|5��v�vPcWf��B,����!"Rb�5�Oh=Б#�W�H��(y���Kt��|�}�o��oo/>|����QC��]]�$.d�"o��j4xb,��u��pI�iK�-s�o��l�4�Y$���t�b�t�J�8�lJ�w�.Pu�!�Ӣ!ǵ\�J+���5��_5ͻ/��Iŏ5�n\���Ve���?��?��Nd��^��S�O�X��q
��y\O'�~��mi}�����]�D}W���ז�n�X�endstream
+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-u݌t)�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���8F���	��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
-4024 0 obj <<
+4506 0 obj <<
 /Type /Page
-/Contents 4025 0 R
-/Resources 4023 0 R
+/Contents 4507 0 R
+/Resources 4505 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3989 0 R
->> endobj
-4026 0 obj <<
-/D [4024 0 R /XYZ 71.731 729.265 null]
->> endobj
-4027 0 obj <<
-/D [4024 0 R /XYZ 246.006 708.344 null]
->> endobj
-4028 0 obj <<
-/D [4024 0 R /XYZ 71.731 706.187 null]
->> endobj
-4029 0 obj <<
-/D [4024 0 R /XYZ 515.452 646.575 null]
->> endobj
-4030 0 obj <<
-/D [4024 0 R /XYZ 71.731 626.486 null]
->> endobj
-4031 0 obj <<
-/D [4024 0 R /XYZ 71.731 582.65 null]
+/Parent 4357 0 R
 >> endobj
-4032 0 obj <<
-/D [4024 0 R /XYZ 71.731 518.057 null]
+4508 0 obj <<
+/D [4506 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4033 0 obj <<
-/D [4024 0 R /XYZ 71.731 518.057 null]
+4509 0 obj <<
+/D [4506 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4034 0 obj <<
-/D [4024 0 R /XYZ 71.731 493.121 null]
+4510 0 obj <<
+/D [4506 0 R /XYZ 71.731 696.359 null]
 >> endobj
-4035 0 obj <<
-/D [4024 0 R /XYZ 71.731 470.072 null]
+4511 0 obj <<
+/D [4506 0 R /XYZ 71.731 673.31 null]
 >> endobj
-4036 0 obj <<
-/D [4024 0 R /XYZ 71.731 431.283 null]
+4512 0 obj <<
+/D [4506 0 R /XYZ 71.731 634.521 null]
 >> endobj
-4037 0 obj <<
-/D [4024 0 R /XYZ 71.731 280.836 null]
+4513 0 obj <<
+/D [4506 0 R /XYZ 71.731 484.074 null]
 >> endobj
-4038 0 obj <<
-/D [4024 0 R /XYZ 71.731 248.503 null]
+4514 0 obj <<
+/D [4506 0 R /XYZ 71.731 451.741 null]
 >> endobj
-4039 0 obj <<
-/D [4024 0 R /XYZ 74.222 206.824 null]
+4515 0 obj <<
+/D [4506 0 R /XYZ 74.222 410.062 null]
 >> endobj
-4040 0 obj <<
-/D [4024 0 R /XYZ 71.731 181.754 null]
+4516 0 obj <<
+/D [4506 0 R /XYZ 71.731 384.991 null]
 >> endobj
-4041 0 obj <<
-/D [4024 0 R /XYZ 112.169 165.978 null]
+4517 0 obj <<
+/D [4506 0 R /XYZ 111.572 369.215 null]
 >> endobj
-4042 0 obj <<
-/D [4024 0 R /XYZ 71.731 132.937 null]
+4518 0 obj <<
+/D [4506 0 R /XYZ 71.731 349.126 null]
 >> endobj
-4043 0 obj <<
-/D [4024 0 R /XYZ 269.677 122.142 null]
+4519 0 obj <<
+/D [4506 0 R /XYZ 272.368 338.331 null]
 >> endobj
-4023 0 obj <<
-/Font << /F33 1160 0 R /F32 1071 0 R /F27 1064 0 R /F35 1229 0 R >>
-/ProcSet [ /PDF /Text ]
+4520 0 obj <<
+/D [4506 0 R /XYZ 169.456 312.428 null]
 >> endobj
-4046 0 obj <<
-/Length 1810      
-/Filter /FlateDecode
->>
-stream
-xڭXK��6��p�Cd`��Ӷ�$M�-zض��E[�D��Ғ J񺿾C�!J��9t� Z����G�����G�.A��U�HW�"�'?\�J�U"�%�����C.�����n�1�=a�6q�x��t�T)2��t��s� y}��x���Rư��a����fy��˿~�z�`<��5J6�E'����`�{��h����Q�9I����ҋ�2�6W�ve-��9@�'W5a��-���c������aV���	B
-����N,Sr�Z�{�>.}�<�ES�ջ�~U��:��oY�;A\(J 8~���a����I�K����]�훦z&nn���r;H�S� <���o@�E,#
�LűTޗ� v����ޫ\�uM
-�
/�p[�:5e��;	#)��ڛ��͞�Vi��\r T��?Ύr����^SP�A_T�<��֝��H�؅��*X���h��xv�Á����.#;Q
�e���eM��0�*�E˘\}�0kɭ���Y�op����{`̃+�[]7A���H�E��΋�1̧x�>��v/B\}�i@��Þ�<��0�fe��f�F�2J�(٬�QU��J�PK��Z�GI�4��4{-T��Q�?��pC�It�
-%m^.��Q�B�����{2��5�h��"o��N<xq�+��lXP�*ɬL1tbVm32��1���.�lI����֨犼�Ea������PŮ���6�
-�ȧ[}�ȴ��L'�F˅�I�Q���W-H2�T��.;��L1?T�h��
��\��#���s����]f�[�՞�]Fm���A�B�7v�Z��=yK3�h�!��Յq��1������|1nC�$��cV˸��d̎���hb�Q��Ι_{����G�������"`���	*@�-`�#�K�h����Ž����@;fmڼ����p�=E�ل+D�l�B��T2b?�|6��!��̏�*V���CA�#DU�P�$392���F��|�Z��H�P�m���|	�U���r�`�B�($g����
�t�@!�K��cZhs�nֆ�D�`H��'��Q�+� 	.�d:�
-�R&� }4�Qyc���3Jq��t/�s/���!'������PH/��?`%_Z��!�>�rr�D+���`[��$��OkZ5����q�7v��\�'i����|���km��X����"$+����"�ﴑ,�{_�nH%W�I��ַD������jZ=�)I�QTR���ږOÑC�薚p<5&;�#(WđO�	�aנ/�*�V(�Iy�,�Y��2"B�,P�1�<P]4?R����l��\�*���%S��ԳO���?�W� �׿wݙmZQ�����>��D��<��|���+H�S\T�[�B�ۑl��d�����_��K�=�Ȓ�fP6���t7/�L�����eg��@�L���1��Un�#��P1Q�
-���(q��qOu�T;�W��WB�l�ju;�f�����MMRb)�����n�;�س�-�%�&Aq�\�7Kh�ߴ��)���3�﷋�G�����>~�tq������Gڨ�D�8���ʬ�
-��GUR���K�/�f�A���wFg��'�Ϥ�&����[=�M�rB�)�R1��C���4W'�����:���DɈ
��u25�
ur��Hq781������i������L����$�V����:��R�ަ����U�WV�pm*���}jl�/^�yN�əj�p���B��+��v��'�h���ŏ����pl�h%‘M2�)wj�?S��endstream
-endobj
-4045 0 obj <<
-/Type /Page
-/Contents 4046 0 R
-/Resources 4044 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3989 0 R
+4521 0 obj <<
+/D [4506 0 R /XYZ 74.222 281.544 null]
 >> endobj
-4047 0 obj <<
-/D [4045 0 R /XYZ 71.731 729.265 null]
+4522 0 obj <<
+/D [4506 0 R /XYZ 488.744 258.63 null]
 >> endobj
-4048 0 obj <<
-/D [4045 0 R /XYZ 95.641 695.392 null]
+4523 0 obj <<
+/D [4506 0 R /XYZ 106.431 245.679 null]
 >> endobj
-4049 0 obj <<
-/D [4045 0 R /XYZ 74.222 664.508 null]
+4524 0 obj <<
+/D [4506 0 R /XYZ 71.731 245.579 null]
 >> endobj
-4050 0 obj <<
-/D [4045 0 R /XYZ 494.253 641.594 null]
+4525 0 obj <<
+/D [4506 0 R /XYZ 207.151 227.746 null]
 >> endobj
-4051 0 obj <<
-/D [4045 0 R /XYZ 137.145 628.643 null]
+4526 0 obj <<
+/D [4506 0 R /XYZ 171.988 214.795 null]
 >> endobj
-4052 0 obj <<
-/D [4045 0 R /XYZ 71.731 628.543 null]
+4527 0 obj <<
+/D [4506 0 R /XYZ 337.682 201.843 null]
 >> endobj
-4053 0 obj <<
-/D [4045 0 R /XYZ 206.883 610.71 null]
+4528 0 obj <<
+/D [4506 0 R /XYZ 71.731 199.686 null]
 >> endobj
-4054 0 obj <<
-/D [4045 0 R /XYZ 170.898 597.758 null]
+4529 0 obj <<
+/D [4506 0 R /XYZ 71.731 176.772 null]
 >> endobj
-4055 0 obj <<
-/D [4045 0 R /XYZ 337.682 584.807 null]
+4530 0 obj <<
+/D [4506 0 R /XYZ 71.731 171.791 null]
 >> endobj
-4056 0 obj <<
-/D [4045 0 R /XYZ 71.731 582.65 null]
+4531 0 obj <<
+/D [4506 0 R /XYZ 71.731 169.3 null]
 >> endobj
-4057 0 obj <<
-/D [4045 0 R /XYZ 71.731 559.736 null]
+4532 0 obj <<
+/D [4506 0 R /XYZ 113.574 151.034 null]
 >> endobj
-4058 0 obj <<
-/D [4045 0 R /XYZ 71.731 554.755 null]
+4533 0 obj <<
+/D [4506 0 R /XYZ 286.733 151.034 null]
 >> endobj
-4059 0 obj <<
-/D [4045 0 R /XYZ 71.731 552.264 null]
+4534 0 obj <<
+/D [4506 0 R /XYZ 291.157 151.034 null]
 >> endobj
-4060 0 obj <<
-/D [4045 0 R /XYZ 113.574 533.998 null]
+4535 0 obj <<
+/D [4506 0 R /XYZ 71.731 135.925 null]
 >> endobj
-4061 0 obj <<
-/D [4045 0 R /XYZ 290.917 533.998 null]
+4536 0 obj <<
+/D [4506 0 R /XYZ 113.574 120.149 null]
 >> endobj
-4062 0 obj <<
-/D [4045 0 R /XYZ 295.341 533.998 null]
+4537 0 obj <<
+/D [4506 0 R /XYZ 307.174 120.149 null]
 >> endobj
-4063 0 obj <<
-/D [4045 0 R /XYZ 71.731 518.889 null]
+4538 0 obj <<
+/D [4506 0 R /XYZ 388.314 120.149 null]
 >> endobj
-4064 0 obj <<
-/D [4045 0 R /XYZ 113.574 503.113 null]
+4539 0 obj <<
+/D [4506 0 R /XYZ 239.479 107.198 null]
 >> endobj
-4065 0 obj <<
-/D [4045 0 R /XYZ 308.193 503.113 null]
+4505 0 obj <<
+/Font << /F33 1210 0 R /F32 1119 0 R /F27 1112 0 R /F35 1437 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-4066 0 obj <<
-/D [4045 0 R /XYZ 389.786 503.113 null]
+4542 0 obj <<
+/Length 1024      
+/Filter /FlateDecode
+>>
+stream
+xڍVێ�6}��pч��Dc�;�L�-��C/iѢS����ؖaɛ�����<�:�l��}H���h�?
+J��.Ɇ$�<��M�v��-V�dub󰽹{����l�i���I	8iB�<	�����0����U���=�u����l[�Oo#J��>�����7�o_"�ӂl��j���Y�Iq��Ҕ�EqI�,sQʞ�S1����������r0R�����0�v,����
�k᭞Մڎ=��cO�Cq�z������(�éF���@z�u�Q�^�^mĀ�/)AՃ��ٔ�hB6�z}�Y_��[ɟP4sA�$����؇̛�}��t��U��rf��*,��O�
�z�A)��ch������X֟�)YS���d�W�?���6���2��3_�"羖�ѷ��Oa]{���zn�B7)�i)��ҕ�\��Zqi��@���?���qc����������GxD5F��;ݨ(��ÿސ�Z~#���t?Dro_8�S%5���}UK����f��C����� 8D/��ld�v��.6� vF�V�k� ى�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
+endobj
+4541 0 obj <<
+/Type /Page
+/Contents 4542 0 R
+/Resources 4540 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 4551 0 R
 >> endobj
-4067 0 obj <<
-/D [4045 0 R /XYZ 261.638 490.162 null]
+4543 0 obj <<
+/D [4541 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4068 0 obj <<
-/D [4045 0 R /XYZ 199.621 464.259 null]
+4544 0 obj <<
+/D [4541 0 R /XYZ 186.062 695.392 null]
 >> endobj
-4069 0 obj <<
-/D [4045 0 R /XYZ 71.731 462.102 null]
+4545 0 obj <<
+/D [4541 0 R /XYZ 71.731 693.235 null]
 >> endobj
-4070 0 obj <<
-/D [4045 0 R /XYZ 113.574 446.326 null]
+4546 0 obj <<
+/D [4541 0 R /XYZ 113.574 677.46 null]
 >> endobj
-4071 0 obj <<
-/D [4045 0 R /XYZ 71.731 405.315 null]
+4547 0 obj <<
+/D [4541 0 R /XYZ 71.731 638.506 null]
 >> endobj
-4072 0 obj <<
-/D [4045 0 R /XYZ 113.574 389.539 null]
+4548 0 obj <<
+/D [4541 0 R /XYZ 113.574 620.672 null]
 >> endobj
-4073 0 obj <<
-/D [4045 0 R /XYZ 71.731 374.431 null]
+4549 0 obj <<
+/D [4541 0 R /XYZ 71.731 605.564 null]
 >> endobj
-4074 0 obj <<
-/D [4045 0 R /XYZ 113.574 358.655 null]
+4550 0 obj <<
+/D [4541 0 R /XYZ 113.574 589.788 null]
 >> endobj
-4044 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F32 1071 0 R >>
+4540 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4077 0 obj <<
-/Length 1962      
+4554 0 obj <<
+/Length 2470      
 /Filter /FlateDecode
 >>
 stream
-xڍX[��F~ϯp�J����N�r�6J[�Qꪪ��°�Q�E,����w�������,,s�o��ol��M�Y�Ÿ3'�7i��ޜ���W�����9��+w��8r7����ë����ql���p��.s�`s���^׵����v焑����a�V�ulKv�-��B���m^���~��&fq�T{���x��
-����D��ҋs�u|�������p.��j���ʲ����yQ$z�W�M`u�Z7�X�R1�|w��������N{�rK��uI^
&�0�DO�9��ΕI�^��g�5#����Sh�΢MR�I�9O3at7<d�M=r���7�x;����E�'�3s
(`�	lR}��՚��V�p�M"���%��~R��jVKu��<'2{){MW
�tօ�����-%�)!)��g}C�g_�"�+���K�~��}�֍��a�L�/�i���m;_Hݬ80��w}E���B�/�OS�e�W����D;��E���]���Uy
-�{�#���W
��id���g+Ѫ4���c�jRVʾUؓ8�RjR��w����/��~O�ë�8��+XJQ�L�R΍�B���z!^D���S&���b�r���ـ���/��������^̢8^�Jڳm�P9��� ���1n8�/��>�r���0�'�1u�F�w�?v��^����YB{�Z2�g�<vY��׭��W��|�7�휻f�#UG哦B)����o{��XM�b:f�����ȤP�x`���T�hSs��ZI�L}�<"��'
-4��n�f����gi?�������0��:���T+$`�0x��L����E������m��{����8�������ec�ar aə���0�	#��g�VzX�v�ܨ�V64L�&�U�ڀ?4���I:���ɹ�J�F�h��$����"4-O���E@�R�9P�05��
��[8fjZ�7��"��a%�/�
-�h�@6�_r�r���� ��.��.u�}�ý�^�B�/�����^;Vu�"���n#�x��'��Έ�,��cG��\ �=a{�#�s`7��B��2�M�9�m�hk��`|?c:�3T�@$�3Y�w͊u�0��3�jl^6���4zF��Q8��"�I���F��"&�7�?唍�������D]�]��A�(&�ٛ BQ�ql7���";�2v$��9�i�k�Z�k��8�7�s������?���6.�m��r�W���7�*�==O2�3�_��o�H܌L���/��\�y�v�v1};�j���E�];X���;��17��(��Eu�w�1
-/�6�f�|y��=N�j딟o���xhP�5(�����Q}E�Ҁ�����f�Y�̺B������A�p ����Ž�c���P�‘�T��b�8�" B�o�SE`[sP��楓��HäȦ#4M:E�y4-9=>#���g�n��s��,��s�Z��5�g��F{�o&��l�+���5]��A�y��X��ז��7��$2���1���^�����@��J��>U�4b��c���>��!!8d�a�VqXO>���:� ��㢄�
h�i��tO����m�X���<�W�"����K�����W��W�>3FO���u�θ�	(�jdI�BJ����/���Ǘ�8\�᜼R�r2�L>���������H�4��ݳ�Ξ6��b�1�]�
i�y��w;p��V��ܹՁ+�^��{�gb5z�M��qs-Z�ȑ�7	����Ӫlr
-�H9�9�
�>��
-��Sv�H|2�̦��w�B$�VBX�"�<&;o9���]Q#r��;jj0�<�@7�9�k'>��LKc��]��v�E,���Z[z�O/��!�����y���p���"�����?�
�:endstream
+xڝk�۸�{~�p2��ER+��
rAڢ
�(�^Q�m'���l}g8CY��͡X`E�3伇����*�"��Q�PI�*�7��+�Hƈ�D�X����&֩�vz��Qx|z��I�
+Eg����%�B�d�T�+xw>�����7*����O�]tkvܯeԦ?Y;T�q��?�t��,�H5\m�i��NUD�.�M1T��I����/kƯ�zD����m��q<����V��r�y�����}m�^���[�Y�'3;�Z����%�j:2�>N��P���xU�Dj���ر�8��x�Y4iDlap4���&Q�嗪0�%�W2J�,�(5G��������v��+Q�H�.��Q�@����E�������h�rQ��jT��d"��@�'S�֛a<�s}�1�0R��BC�����@���\���*>Ek���B3���z��
+
!ϧ|�q'��w��
��ɢy=_3�5�W�K�@�HP�iG�R����+1�Ȃ��7Z�j�� ���Tx���{S���plI��V���%������� 1�u�cRUK0^L��}���8���*Dc���g���m�_٭t��5�CpX�v���i7�.�0�o2@�@J��{*�΂�L\!,i=�%IY�*8�`����䥡52B�.h஌+N�������7��p�t�ݭ�(�,�1=�f�Dsf�KBx�_|X�(!o��B�U�3g�י�4��W�Qu�fa���$��8��c�B,y�$�Փ,	��Z2�B)��ux�W���
+�1��ۇ�8vI�ѬƁ�%/
+�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
 endobj
-4076 0 obj <<
+4553 0 obj <<
 /Type /Page
-/Contents 4077 0 R
-/Resources 4075 0 R
+/Contents 4554 0 R
+/Resources 4552 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3989 0 R
-/Annots [ 4084 0 R 4085 0 R ]
+/Parent 4551 0 R
+/Annots [ 4561 0 R 4562 0 R ]
 >> endobj
-4084 0 obj <<
+4561 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [230.933 547.742 275.764 556.654]
+/Rect [235.548 547.742 280.892 556.654]
 /Subtype /Link
 /A << /S /GoTo /D (installation) >>
 >> endobj
-4085 0 obj <<
+4562 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [349.088 547.742 393.92 556.654]
+/Rect [355.754 547.742 401.098 556.654]
 /Subtype /Link
 /A << /S /GoTo /D (configuration) >>
 >> endobj
-4078 0 obj <<
-/D [4076 0 R /XYZ 71.731 729.265 null]
+4555 0 obj <<
+/D [4553 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1295 0 obj <<
-/D [4076 0 R /XYZ 71.731 718.306 null]
+1681 0 obj <<
+/D [4553 0 R /XYZ 71.731 718.306 null]
 >> endobj
-754 0 obj <<
-/D [4076 0 R /XYZ 358.696 703.236 null]
+802 0 obj <<
+/D [4553 0 R /XYZ 358.696 703.236 null]
 >> endobj
-4079 0 obj <<
-/D [4076 0 R /XYZ 71.731 681.855 null]
+4556 0 obj <<
+/D [4553 0 R /XYZ 71.731 681.855 null]
 >> endobj
-1296 0 obj <<
-/D [4076 0 R /XYZ 71.731 658.391 null]
+1682 0 obj <<
+/D [4553 0 R /XYZ 71.731 658.391 null]
 >> endobj
-758 0 obj <<
-/D [4076 0 R /XYZ 233.175 615.294 null]
+806 0 obj <<
+/D [4553 0 R /XYZ 233.175 615.294 null]
 >> endobj
-4080 0 obj <<
-/D [4076 0 R /XYZ 71.731 606.471 null]
+4557 0 obj <<
+/D [4553 0 R /XYZ 71.731 606.471 null]
 >> endobj
-4081 0 obj <<
-/D [4076 0 R /XYZ 135.183 593.735 null]
+4558 0 obj <<
+/D [4553 0 R /XYZ 141.316 593.735 null]
 >> endobj
-4082 0 obj <<
-/D [4076 0 R /XYZ 361.601 580.783 null]
+4559 0 obj <<
+/D [4553 0 R /XYZ 405.441 580.783 null]
 >> endobj
-4083 0 obj <<
-/D [4076 0 R /XYZ 71.731 560.694 null]
+4560 0 obj <<
+/D [4553 0 R /XYZ 71.731 560.694 null]
 >> endobj
-4086 0 obj <<
-/D [4076 0 R /XYZ 112.677 523.996 null]
+4563 0 obj <<
+/D [4553 0 R /XYZ 82.138 523.996 null]
 >> endobj
-1297 0 obj <<
-/D [4076 0 R /XYZ 71.731 490.955 null]
+4564 0 obj <<
+/D [4553 0 R /XYZ 71.731 490.955 null]
 >> endobj
-762 0 obj <<
-/D [4076 0 R /XYZ 537.833 447.858 null]
+4565 0 obj <<
+/D [4553 0 R /XYZ 430.969 467.209 null]
 >> endobj
-4087 0 obj <<
-/D [4076 0 R /XYZ 71.731 435.42 null]
+4566 0 obj <<
+/D [4553 0 R /XYZ 71.731 454.258 null]
 >> endobj
-4088 0 obj <<
-/D [4076 0 R /XYZ 149.399 426.298 null]
+4567 0 obj <<
+/D [4553 0 R /XYZ 468.549 428.355 null]
 >> endobj
-4089 0 obj <<
-/D [4076 0 R /XYZ 252.063 426.298 null]
+1683 0 obj <<
+/D [4553 0 R /XYZ 71.731 421.217 null]
 >> endobj
-4090 0 obj <<
-/D [4076 0 R /XYZ 71.731 401.228 null]
+810 0 obj <<
+/D [4553 0 R /XYZ 537.833 378.119 null]
 >> endobj
-4091 0 obj <<
-/D [4076 0 R /XYZ 71.731 401.228 null]
+4568 0 obj <<
+/D [4553 0 R /XYZ 71.731 365.681 null]
 >> endobj
-1298 0 obj <<
-/D [4076 0 R /XYZ 71.731 333.733 null]
+4569 0 obj <<
+/D [4553 0 R /XYZ 149.514 356.56 null]
 >> endobj
-766 0 obj <<
-/D [4076 0 R /XYZ 207.49 267.506 null]
+4570 0 obj <<
+/D [4553 0 R /XYZ 252.264 356.56 null]
 >> endobj
-4092 0 obj <<
-/D [4076 0 R /XYZ 71.731 258.683 null]
+4571 0 obj <<
+/D [4553 0 R /XYZ 71.731 331.489 null]
 >> endobj
-4093 0 obj <<
-/D [4076 0 R /XYZ 71.731 243.79 null]
+4572 0 obj <<
+/D [4553 0 R /XYZ 71.731 331.489 null]
 >> endobj
-4094 0 obj <<
-/D [4076 0 R /XYZ 71.731 238.809 null]
+1684 0 obj <<
+/D [4553 0 R /XYZ 71.731 263.994 null]
 >> endobj
-4095 0 obj <<
-/D [4076 0 R /XYZ 89.664 218.051 null]
+814 0 obj <<
+/D [4553 0 R /XYZ 207.49 197.767 null]
 >> endobj
-4096 0 obj <<
-/D [4076 0 R /XYZ 89.664 192.149 null]
+4573 0 obj <<
+/D [4553 0 R /XYZ 71.731 188.945 null]
 >> endobj
-4097 0 obj <<
-/D [4076 0 R /XYZ 71.731 189.992 null]
+4574 0 obj <<
+/D [4553 0 R /XYZ 71.731 174.051 null]
 >> endobj
-4098 0 obj <<
-/D [4076 0 R /XYZ 89.664 174.216 null]
+4575 0 obj <<
+/D [4553 0 R /XYZ 71.731 169.07 null]
 >> endobj
-1299 0 obj <<
-/D [4076 0 R /XYZ 71.731 154.126 null]
+4576 0 obj <<
+/D [4553 0 R /XYZ 89.664 148.313 null]
 >> endobj
-4099 0 obj <<
-/D [4076 0 R /XYZ 71.731 48.817 null]
+4577 0 obj <<
+/D [4553 0 R /XYZ 89.664 122.41 null]
 >> endobj
-4075 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F32 1071 0 R /F55 1844 0 R /F33 1160 0 R >>
+4578 0 obj <<
+/D [4553 0 R /XYZ 71.731 120.253 null]
+>> endobj
+1685 0 obj <<
+/D [4553 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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4102 0 obj <<
-/Length 1773      
+4581 0 obj <<
+/Length 1771      
 /Filter /FlateDecode
 >>
 stream
-x��XYo�F~���CS@�ⵤ�A})lר�AS+r%mC���n���ٝYJ��8�T��3�ߜKo�����h�����w���W�і�ƞ�ۃ�E�D��v>}�%^2��M�?���p��J���|�:'��!�N=�Sv�\6˲lU��y����mϕ1K&�W�{v$�3��Z4{C��8��NX���'�IWd�<::��<8�dC]�mW-j�Ѡ-���#�G�E�����54�`�p�ַ�����Xȡǝ{�O��E��קy�B}�B^prtuz3�C�����CU4��i�z���`^1>���(2<�.e���,@��b��`�%!sC@�M@��ܩ�[��	��<���F�'s��Qe���W�v@���+�r[�y#[\������ܹ[
-Z+����7�Y���4�-M�\k&oE�^�Y&�p�w�8�l���\�ۃ=�%d��2�����l�S�y.	OU)YM8�5���h���V���:`
-%�`^��1���W���P-�Ų��n2������z�#���\ٟ)�}�͛{��]�/A���D+���5A�//E��F�LAǗtʪc/@H�����:�I�4T-�ε���M�-��.q�e�+uR�5��-��D����J��_��v(���S��Y?�������ءv�-l
- ��.I�N���M�N��GZO��
-��UA �&�{
LA��r��w���{Kdl�h
-��.�)�@zvrvt4�J}5���W�ZV���9J;�sA��b~�V�c&����
--�S+k�Ҏ�Y'�"�泰�������[H�����[��1ؐ=�;�@�+�-�f��zQ�	':�B����%>��:�I,��"Z�M@G�K@����@��pp*�B�'��d+�1
=�~s�������/Ϧ8%4�}v4�>:nT+ǹ������Īn�{Z~8�d�2{ 3G[���;~�L//5�oMl��{�s-B�aך֯��׷[��=�..�_M�vi�7�g'o�o_@{����1G0aG�9hH۽I�p����=�ya�ok;�b6	9��*�.Gm9���%A�o{6n�N5���:Y�ӰF�Pv��TB5�X����&��T�
-�6f�GV�e��A���VJ�Y���1J2_C��huoF/?�U�k�e~Y+��!�],zSek^[z��5�5�0�5�C���y󤜚����3��_��HQ�2T����e��$	�Vh������?���������7+D��R>
-�Sr�,���M+׺�l#��˚��fDY3��l��zZf���ǟt��e>^}�d'��*J����yHX[iRP��(�xteD�Ŋi7=��%���l�5�8��.��ڵy\�����r�(tE�2�D>�j)u��9M,Tj_Z�M����d��[��P�z�(46i�*��WsS����b��{���F�M׊$%jS�T$����,�05�)t!��T ����|S�n$�i'!x����2��L���yבi[ڗ+���
-���Pw8'���=���~d�vY�������`������oc2��qw��D�9n�	.���oY�7��7�yL�yg�6�/�ڊ@O��"����i�+��6�t��z�V�4,t��� ��c�vE����R��7�t�ž���b�g*G�um���f�W�,G�a;�څ�w!����f��lʔ��K3�옙y4=�(D�r�Ĝx�W�U���|������%��&�S_�v9�λ�_endstream
+x��X[o��~ϯ�C�H�E�~q{�ڱ�p\�rZ'Ŋ\�ے\���j��ޙ�!%YJ҇z���ٙ�onK9~�$r�ȃ�M,7&i�žl`���9��2��|x���Ib%�7yXO|ױ'�D�kŁ;y��;��kYe�i6w{zi��0�i3��W�ls�;Umf�{����è5�"+��������d��V�:��O���ю-��G��hg<�,h�k=7(N�0�'{r]��Q7���gbQ�C.gsώ��lJն3g�t�MW4nu�ЬP��jD��u��v�Q�������숢�T7�Ulga0���z�`�%�o�3�Ǻ���|rPXH1�����"�^�2g��@��;��p�<�U+Kqҷ�L�it_s��hTpG�O@_���Mf���fõp���8sPr�샽���!o�D���9L�y`[��/--���e_e�<?��7��D-����J�zӈ����~��p�V�Z[�#��WRt�<����ٓ�-�4��tw����d��T����W��ȟ^��qy���s1����]�ZA�lQ��ˊf�����2���oپÐ��_ɦ
+O`M(2�v��b�l�i��!N��ĥ+�v�uaB�e#��j��L)"`�
+	����J���k�=�$��y@�'�\꬇f�g�8�
����8��2�(�t�;�6�(L(�2�Ĝ��,����-Smר�̅���
+��M�	�3"�A#����ݠBt�U�d�$�7b��l�F�t�G̽�r����s��F�l�מf��4#����۹�f$�T|<�S�G�S� յ�X�)L�I�T�E�;)!����D,�”˳A�j�x�
+�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
 endobj
-4101 0 obj <<
+4580 0 obj <<
 /Type /Page
-/Contents 4102 0 R
-/Resources 4100 0 R
+/Contents 4581 0 R
+/Resources 4579 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3989 0 R
->> endobj
-4103 0 obj <<
-/D [4101 0 R /XYZ 71.731 729.265 null]
->> endobj
-770 0 obj <<
-/D [4101 0 R /XYZ 505.555 705.748 null]
+/Parent 4551 0 R
 >> endobj
-4104 0 obj <<
-/D [4101 0 R /XYZ 71.731 693.31 null]
->> endobj
-4105 0 obj <<
-/D [4101 0 R /XYZ 129.185 684.189 null]
->> endobj
-1300 0 obj <<
-/D [4101 0 R /XYZ 71.731 620.263 null]
->> endobj
-774 0 obj <<
-/D [4101 0 R /XYZ 370.33 577.166 null]
->> endobj
-4106 0 obj <<
-/D [4101 0 R /XYZ 71.731 564.728 null]
+4582 0 obj <<
+/D [4580 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4107 0 obj <<
-/D [4101 0 R /XYZ 71.731 530.909 null]
+4583 0 obj <<
+/D [4580 0 R /XYZ 89.664 708.344 null]
 >> endobj
-4108 0 obj <<
-/D [4101 0 R /XYZ 71.731 475.056 null]
+818 0 obj <<
+/D [4580 0 R /XYZ 505.555 645.157 null]
 >> endobj
-4109 0 obj <<
-/D [4101 0 R /XYZ 139.576 463.153 null]
+4584 0 obj <<
+/D [4580 0 R /XYZ 71.731 632.719 null]
 >> endobj
-4110 0 obj <<
-/D [4101 0 R /XYZ 71.731 451.034 null]
+4585 0 obj <<
+/D [4580 0 R /XYZ 129.185 623.597 null]
 >> endobj
-4111 0 obj <<
-/D [4101 0 R /XYZ 71.731 383.898 null]
+4586 0 obj <<
+/D [4580 0 R /XYZ 71.731 616.459 null]
 >> endobj
-4112 0 obj <<
-/D [4101 0 R /XYZ 71.731 361.933 null]
+1686 0 obj <<
+/D [4580 0 R /XYZ 71.731 559.672 null]
 >> endobj
-4113 0 obj <<
-/D [4101 0 R /XYZ 71.731 292.74 null]
+822 0 obj <<
+/D [4580 0 R /XYZ 370.33 516.575 null]
 >> endobj
-1301 0 obj <<
-/D [4101 0 R /XYZ 71.731 274.073 null]
+4587 0 obj <<
+/D [4580 0 R /XYZ 71.731 504.137 null]
 >> endobj
-778 0 obj <<
-/D [4101 0 R /XYZ 374.461 230.602 null]
+4588 0 obj <<
+/D [4580 0 R /XYZ 71.731 482.896 null]
 >> endobj
-4114 0 obj <<
-/D [4101 0 R /XYZ 71.731 218.43 null]
+4589 0 obj <<
+/D [4580 0 R /XYZ 71.731 427.416 null]
 >> endobj
-4115 0 obj <<
-/D [4101 0 R /XYZ 384.246 209.042 null]
+4590 0 obj <<
+/D [4580 0 R /XYZ 139.576 415.514 null]
 >> endobj
-4116 0 obj <<
-/D [4101 0 R /XYZ 71.731 183.971 null]
+4591 0 obj <<
+/D [4580 0 R /XYZ 71.731 403.394 null]
 >> endobj
-4117 0 obj <<
-/D [4101 0 R /XYZ 71.731 146.577 null]
+4592 0 obj <<
+/D [4580 0 R /XYZ 71.731 336.258 null]
 >> endobj
-4118 0 obj <<
-/D [4101 0 R /XYZ 155.845 133.625 null]
+4593 0 obj <<
+/D [4580 0 R /XYZ 71.731 314.293 null]
 >> endobj
-4119 0 obj <<
-/D [4101 0 R /XYZ 346.349 133.625 null]
+4594 0 obj <<
+/D [4580 0 R /XYZ 71.731 245.1 null]
 >> endobj
-4120 0 obj <<
-/D [4101 0 R /XYZ 427.296 133.625 null]
+1746 0 obj <<
+/D [4580 0 R /XYZ 71.731 226.433 null]
 >> endobj
-4121 0 obj <<
-/D [4101 0 R /XYZ 71.731 120.674 null]
+826 0 obj <<
+/D [4580 0 R /XYZ 374.461 182.962 null]
 >> endobj
-4122 0 obj <<
-/D [4101 0 R /XYZ 71.731 107.722 null]
+4595 0 obj <<
+/D [4580 0 R /XYZ 71.731 170.791 null]
 >> endobj
-4123 0 obj <<
-/D [4101 0 R /XYZ 107.048 107.722 null]
+4596 0 obj <<
+/D [4580 0 R /XYZ 402.991 161.403 null]
 >> endobj
-1302 0 obj <<
-/D [4101 0 R /XYZ 71.731 100.584 null]
+4597 0 obj <<
+/D [4580 0 R /XYZ 71.731 136.332 null]
 >> endobj
-4100 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F32 1071 0 R /F35 1229 0 R /F55 1844 0 R >>
+4579 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
-4126 0 obj <<
-/Length 1670      
+4600 0 obj <<
+/Length 1560      
 /Filter /FlateDecode
 >>
 stream
-x��Xmo�6��_a`�"/�,J�dy�$K�li2d�bZbl"�hPRҬ��_,�v��
-��I���C��?ҋ���׏�^���zs�9�#f��,��O��gA�K�$
-zӻ��'nB�^��8�{���h�bE���~�9Ǯ~N�a���(tD=�Y���ż������z�0��d|�0�f�2?���I��Y�ЍGceٱ�5��y�'��H���#/h��BTZ��;����׳��r-.i*�>(B7���ﻁ������������'���	�$n���/u��3�u�vy���Լ�v�ܬ/��Z0F���'��dɅ�w�y�s6�L�����~E��/+���5��W-��̵���ľ�����t�K�~�P�i�]�*tۄ��n
&��zA���1�d+!�Ɖn��ܨ	nU��ު$G�m�d�U�QPIF!�-�s�U�q��EL��b+��zD������R�wX�r����K^��n�u��8����w���`��|o쮋+p�7^��~y}���q�x_ť���_�o�n�~������P�d�����L����$V9{��m���nz�^�%�9u	�i���q���|��\�\��!���y�����������~���j_����{ض�b��.�X��j�?m�q'��E �<��]�*]`Z�t�UH�Ҫ��D��9��8Ӳ��J]c�]��=��_��P�T*��f��O�3Lu�j���#d�@��,`3�A����&~4�<�^Щ�X�?88����>G�<�Z7�˗zz�{�����X�0���;N�Η��l��'���	����"��i_�vq��������ۏz�|��g�����w�`[Ǜ��+��h%޶����ޱ��ߝ\ߜN&��LjG��I�Y˾�wh~1�U�o_��E�%����/38�����2����g��GM���e-�Y��Y��}֢���=]�0a(6�tl���5񜧙�,��qn�i
-t��x�5s3�a�;�������*���d��L?GJ�İR�KQV���cv��i�P7�|�D�ڀ�w��B�sع���E^I�����Dsn<��R!%K+���=���<�vu�p=�������O��[ۋ���o-�s֢�듀��$���:�;g�2�
-k̀#����X-�@�b���J�t�9���V<pڊ�|H�vM�����oeld���6��p��!#$<XMJ�X�ٳ����H�g�u�:J�˴���P�8�H�'�
-I�(�@U�HNj����j�0S��@��-C7��֧hZ�?*�`�nF���v6���JU�c��&��:�0���K�x��M%]����%OH�z��i�`�.Oj�e	���Q:����Yw�ڟ��6(���Ҧ��Y'G�N�g�XQ��j�~�V��&��Y�Z�Eύ�����)T��5hRe�0�O����	@�i,L�jv��a�B���߼��@�3ZV�PV��6k��Fʲan�xDL�zH�_ެy�z�������6��e<�����:mYϤ&˥�J� �%�7��O��UD�{�p��z�u�\D�䫂n㑾н��X�a��}ўnal+��h�a�W�K9�|�U���Y����5K�����P�o���é���Ś%[�����|������ӵ���e��endstream
+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
 endobj
-4125 0 obj <<
+4599 0 obj <<
 /Type /Page
-/Contents 4126 0 R
-/Resources 4124 0 R
+/Contents 4600 0 R
+/Resources 4598 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4139 0 R
+/Parent 4551 0 R
 >> endobj
-4127 0 obj <<
-/D [4125 0 R /XYZ 71.731 729.265 null]
+4601 0 obj <<
+/D [4599 0 R /XYZ 71.731 729.265 null]
 >> endobj
-782 0 obj <<
-/D [4125 0 R /XYZ 189.38 683.368 null]
+4602 0 obj <<
+/D [4599 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4128 0 obj <<
-/D [4125 0 R /XYZ 71.731 672.694 null]
+4603 0 obj <<
+/D [4599 0 R /XYZ 175.682 708.344 null]
 >> endobj
-4129 0 obj <<
-/D [4125 0 R /XYZ 234.639 661.808 null]
+4604 0 obj <<
+/D [4599 0 R /XYZ 395.942 708.344 null]
 >> endobj
-4130 0 obj <<
-/D [4125 0 R /XYZ 71.731 636.738 null]
+4605 0 obj <<
+/D [4599 0 R /XYZ 486.807 708.344 null]
 >> endobj
-4131 0 obj <<
-/D [4125 0 R /XYZ 71.731 534.274 null]
+4606 0 obj <<
+/D [4599 0 R /XYZ 71.731 695.392 null]
 >> endobj
-4132 0 obj <<
-/D [4125 0 R /XYZ 357.795 509.779 null]
+4607 0 obj <<
+/D [4599 0 R /XYZ 71.731 682.441 null]
 >> endobj
-4133 0 obj <<
-/D [4125 0 R /XYZ 71.731 497.659 null]
+4608 0 obj <<
+/D [4599 0 R /XYZ 107.048 682.441 null]
 >> endobj
-1303 0 obj <<
-/D [4125 0 R /XYZ 71.731 278.991 null]
+1747 0 obj <<
+/D [4599 0 R /XYZ 71.731 675.303 null]
 >> endobj
-786 0 obj <<
-/D [4125 0 R /XYZ 496.414 234.786 null]
+830 0 obj <<
+/D [4599 0 R /XYZ 189.38 609.825 null]
 >> endobj
-4134 0 obj <<
-/D [4125 0 R /XYZ 71.731 222.348 null]
+4609 0 obj <<
+/D [4599 0 R /XYZ 71.731 599.152 null]
 >> endobj
-4135 0 obj <<
-/D [4125 0 R /XYZ 203.346 213.227 null]
+4610 0 obj <<
+/D [4599 0 R /XYZ 236.591 588.266 null]
 >> endobj
-4136 0 obj <<
-/D [4125 0 R /XYZ 71.731 193.137 null]
+4611 0 obj <<
+/D [4599 0 R /XYZ 71.731 563.195 null]
 >> endobj
-4137 0 obj <<
-/D [4125 0 R /XYZ 497.232 182.343 null]
+4612 0 obj <<
+/D [4599 0 R /XYZ 71.731 460.731 null]
 >> endobj
-4138 0 obj <<
-/D [4125 0 R /XYZ 71.731 123.399 null]
+4613 0 obj <<
+/D [4599 0 R /XYZ 321.183 436.236 null]
 >> endobj
-4124 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R >>
+4614 0 obj <<
+/D [4599 0 R /XYZ 71.731 424.117 null]
+>> endobj
+1748 0 obj <<
+/D [4599 0 R /XYZ 71.731 205.449 null]
+>> endobj
+834 0 obj <<
+/D [4599 0 R /XYZ 496.414 161.243 null]
+>> endobj
+4615 0 obj <<
+/D [4599 0 R /XYZ 71.731 148.805 null]
+>> endobj
+4616 0 obj <<
+/D [4599 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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4142 0 obj <<
-/Length 1862      
+4619 0 obj <<
+/Length 2158      
 /Filter /FlateDecode
 >>
 stream
-xڭYK��6��W�Dlْ,��$��Ҡ�[�-�6��RT����-Q�n�"������7Cm��¿dqH�C����}�(�w�����.1;�f�z������c�-���g���b�&q��C���<]<UF��-�yY��|=������/wy��S��+c������}xrZ����U�잉e��[f��l�S�=���]��2�z}E�t}]&y��
-���f�A�r���5���T�?���(�X/t�k���6Z駈V������1z�!z�3�+���Hiۚ�HF�{�Qc��0��L��u�ƅ��7"�:>D��	k�p� N�N0}��]Ъ��d��N�~��[�[.��\�L}���-�ļ���k��uf'9뫓�)@RHa���7�1�g5#BwE��@=H����<F�$�W�����pn��6o���1�SW4�p��l�U���ݟ6?�
F1��ȼԟ�i�ئ%g���
-���>���U���Pi��v���'*���t��ڥʼֶ&"%������biK��M�ȕ�^P��d|X'�S�r7���)_�P�7!�-"��VYe�ԬمБ}�<`�#�������>�+{�Ѡbt\�h�lN�7q��TC�_6.,I��JVh����Y�%�zcu77Y�����!ZXL
-|��kO�&�f��Sұ3ad���•�W��5p�����`�X�X���*��>a�l��bc��4HSK5
-Z����HE�=�P�Q8pD��-e�cΈAKqd+�6���+��iZ\���5�"I��%���È��
Ŷ��������Vʐ�:R��TU�g̱eS]�K"�L�vz�;oᓚ��O5 Du�avy���s$����� +�0��L����ϊx�[����kAZY�c{�CcV�~���4/N��G���wC�@ț$�8e��;���4�6�pݙ4����:3-��iJ�6<Ίu��^�:�$0@Ҋ��4�4��l�Y�Ú�dDbϰ��f�y�_���!�t�z/k��Q�)�
��{�{7|X;���Ҁ��$Zs\#GI��v��}�ę��[ԚC$�T{��,.����R/@��>��q.q4̔f���In�)��i�s�!.$��g�1�NB%#��z��M0�F�j�fp{V����
-2XSP�pTl4�Y�I�煲�#�0�oг�-:=�3QжA2`*�$՝����T�M#e	\�K�*�=�b���5/ayqv4~�Ԡ���3��B3?2Bd�h��u�y�3�|ʴ\�/��P�<�Gm�%e��?�ב1;h2�ц5�?�+�*��_�;>��C;����3Hb�5j�w�y����+i�M�CK���5jr�
-��S�;i�U0N�=�~���>Z�d3I(�i$�R{�jqI����ք�`f�#;
-҄Sӽ)�����*_��L�Y~����1�ͤ�︸�e�G��׊�����\�z��b\�o����y���dA7��p���΢�bѠ�Y����a>�����0l�B�7'�F�)P'"��X|���9���
[X`����j����I�R	�3��0	��a�����B����,���� ���Jp��e��ttp�|>1C�g�52�c��0[W�[�0B��OV�c�@NWr��j��ӫ�z�_y�ZH*'Ts��q��>��j|��0[�Q���~�Hf��=8��U�ʾx���x���W$���b��p��4*�)“n��Bq��>��1�=��MЛ$'��-��Y㳰�
-+<����L�d��;t�R����ؼ��i���IǑ����$q�+5��7�o����19���e��<=���
-��ٽo�SM�(ΗJendstream
+xڭX[��
~�_��q��ߒ�/E8�ݢ@�E�J�$�ؖ+۝M}y�c;�]�=IER��r���/Z�p�@�a�����fq��?~��c%,�����/I���|�,^O�4��<��$�Y�x-���it]�o�U�m�����e�n�f���n/�v�>/����O?�Z�d��仆y�;����2���>LҔ{���*�����8T��О��x>�־�e�Fu&5ʩ
+I�vL��e�+z"!
Ա�U���8}쬻��h�N��N���^��LY*����:c�gt����6̶�ܚjyQ�u�����_Eq����l��Q8�U�j��L7A˴w}�΁O��Y�ؽQ���n+�C^��
+���.D�S��m�ڋ]ʉ!p+��6������
D����eM�Z���~��F��Yo����o:{&�
��(����9^xdZn�`�CA��(t�e`rt�@������l��^��O�g�)q� 9F�ˣ��/��_�?���������
+�I68�qHt��v���]�ɥV�t7
HS�3�8�T�[®u"K��/�Gr�Bro!�&�w���%��i�*�<*��3��Vn�n;g�$D���D�-�yd��Y�}�i�
+2v
+GC��E"�:�pp�<8���lM6�9E��=A�v��^��2j��#ܲ��;o�xڜf��JUw7r8��>���M|�rj���v�~��t[���?0�3aw�����E-�
�+S,��B}�%�=@p}�x��O&�5�KڱL�(�̳�.8���J1�3�W�9�n
+@�)MS�#Al��vU�٭F�zS����lv��4�t�=�=¤��Z���
+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�pk�T�xo�S������N������x�{pZ�0��#�vE�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ɴ'Ҡ�
+��yZN8�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
-4141 0 obj <<
+4618 0 obj <<
 /Type /Page
-/Contents 4142 0 R
-/Resources 4140 0 R
+/Contents 4619 0 R
+/Resources 4617 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4139 0 R
->> endobj
-4143 0 obj <<
-/D [4141 0 R /XYZ 71.731 729.265 null]
+/Parent 4551 0 R
 >> endobj
-4144 0 obj <<
-/D [4141 0 R /XYZ 71.731 718.306 null]
+4620 0 obj <<
+/D [4618 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1351 0 obj <<
-/D [4141 0 R /XYZ 71.731 667.333 null]
+4621 0 obj <<
+/D [4618 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4145 0 obj <<
-/D [4141 0 R /XYZ 71.731 634.59 null]
+4622 0 obj <<
+/D [4618 0 R /XYZ 508.292 708.344 null]
 >> endobj
-4146 0 obj <<
-/D [4141 0 R /XYZ 71.731 624.628 null]
+4623 0 obj <<
+/D [4618 0 R /XYZ 71.731 649.4 null]
 >> endobj
-4147 0 obj <<
-/D [4141 0 R /XYZ 135.985 614.994 null]
+4624 0 obj <<
+/D [4618 0 R /XYZ 71.731 631.467 null]
 >> endobj
-4148 0 obj <<
-/D [4141 0 R /XYZ 135.985 580.025 null]
+1796 0 obj <<
+/D [4618 0 R /XYZ 71.731 579.661 null]
 >> endobj
-4149 0 obj <<
-/D [4141 0 R /XYZ 71.731 523.437 null]
+4625 0 obj <<
+/D [4618 0 R /XYZ 71.731 546.919 null]
 >> endobj
-1352 0 obj <<
-/D [4141 0 R /XYZ 71.731 484.483 null]
+4626 0 obj <<
+/D [4618 0 R /XYZ 71.731 536.956 null]
 >> endobj
-4150 0 obj <<
-/D [4141 0 R /XYZ 71.731 449.684 null]
+4627 0 obj <<
+/D [4618 0 R /XYZ 135.985 527.323 null]
 >> endobj
-4151 0 obj <<
-/D [4141 0 R /XYZ 71.731 439.721 null]
+4628 0 obj <<
+/D [4618 0 R /XYZ 135.985 492.354 null]
 >> endobj
-4152 0 obj <<
-/D [4141 0 R /XYZ 135.985 430.087 null]
+4629 0 obj <<
+/D [4618 0 R /XYZ 71.731 435.766 null]
 >> endobj
-4153 0 obj <<
-/D [4141 0 R /XYZ 135.985 395.118 null]
+1797 0 obj <<
+/D [4618 0 R /XYZ 71.731 396.812 null]
 >> endobj
-4154 0 obj <<
-/D [4141 0 R /XYZ 71.731 361.843 null]
+4630 0 obj <<
+/D [4618 0 R /XYZ 71.731 362.013 null]
 >> endobj
-4155 0 obj <<
-/D [4141 0 R /XYZ 185.175 348.892 null]
+4631 0 obj <<
+/D [4618 0 R /XYZ 71.731 352.05 null]
 >> endobj
-4156 0 obj <<
-/D [4141 0 R /XYZ 71.731 335.94 null]
+4632 0 obj <<
+/D [4618 0 R /XYZ 135.985 342.416 null]
 >> endobj
-1304 0 obj <<
-/D [4141 0 R /XYZ 71.731 315.851 null]
+4633 0 obj <<
+/D [4618 0 R /XYZ 135.985 307.447 null]
 >> endobj
-790 0 obj <<
-/D [4141 0 R /XYZ 517.296 272.753 null]
+4634 0 obj <<
+/D [4618 0 R /XYZ 71.731 274.172 null]
 >> endobj
-4157 0 obj <<
-/D [4141 0 R /XYZ 71.731 260.315 null]
+4635 0 obj <<
+/D [4618 0 R /XYZ 181.691 261.22 null]
 >> endobj
-4158 0 obj <<
-/D [4141 0 R /XYZ 71.731 244.773 null]
+4636 0 obj <<
+/D [4618 0 R /XYZ 485.889 261.22 null]
 >> endobj
-4159 0 obj <<
-/D [4141 0 R /XYZ 71.731 187.269 null]
+1749 0 obj <<
+/D [4618 0 R /XYZ 71.731 228.179 null]
 >> endobj
-4160 0 obj <<
-/D [4141 0 R /XYZ 304.117 176.474 null]
+838 0 obj <<
+/D [4618 0 R /XYZ 517.296 185.082 null]
 >> endobj
-4161 0 obj <<
-/D [4141 0 R /XYZ 292.96 150.571 null]
+4637 0 obj <<
+/D [4618 0 R /XYZ 71.731 172.644 null]
 >> endobj
-1305 0 obj <<
-/D [4141 0 R /XYZ 71.731 104.579 null]
+4638 0 obj <<
+/D [4618 0 R /XYZ 71.731 157.102 null]
 >> endobj
-4140 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F32 1071 0 R /F23 1057 0 R >>
+4617 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F32 1119 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4164 0 obj <<
-/Length 1193      
+4641 0 obj <<
+/Length 1812      
 /Filter /FlateDecode
 >>
 stream
-xڍV[o�6~ϯ�	�i�u�[��C��Zð-1�YTtI��ÛdY�[���ttn���x~�KJBXh�h̼�p�����X��5Y���m������P���ދ(Aɼ$�(e���o�F�E��(��2�&`�o���r�V��Kٗ�.�g���ϛ1*����Ĝ�"3z$A�0���3�D����T��{�<�P�E�
-��|+��.��w����LS1gXH���=T��>��?�Cc�
-��E#��+�T�AY����[�0B�*�RXu�/�>�4���,b���+ CKM��Vn��:��б`�K�v�7�!�G�����?�b���'U��/t�����͎�/�m�~ϭ�Ү�eU�yt��y.�zn:nj���ξ�]�3{k��@US����@���T�����N�No�6<ߋ�3˜C|��.��汵���>0/�����P@[ʒo`��Fά]/���1y?�Y������lE����A]L���We=5X�/���E(�,���KY;
-��Jh�e^B54z���fubd�z�ܹ#�3��Ml�(�Y$��(�^[\>s�B�W��"$�e ?�Μ�dh�+*�EP�?�φ5�yՊF*&�1Z1x�SUBs�%$fWK''C3~��=��p49�
�/�V�����q]��f���{ElH�	���7ߑ����Ѷ�ɂ}$�|hۑW[��� �y�$5�y�uZ[d[8F�����1�M.����J�o��|4[@���󾬦��%��e�1��{w{{8v��+�M���c#�ݘ]!m|0����N?W6YNn��vc�NtIv�.$�ob-�
-1L�(vJ�E���3� ���i��罯�m����W̰�O���
��
>��w{2i�9@�t�s]����7�v��������Ns%"}v�g���QC���	c�s%7���jݙ3���G7�y�]��Wv������3,�Yǀ39\��P�����R������J�kَM��B!�뀤��e���(ͫx.�����rur��<��B4��N&����Bn�Qpzg��o��,��A�+�|R��e)��}+s
-�e��̻[���}s�^�OR�:(��Bp�k0]k�E���*���P@��P�:{��R�����d���3�"L��x}�����?���endstream
+xڕ�n�6�=_a���@̈�e�m�m�-�h���(�E!K��F��_��P��$E����ܗ,g!��,�"�`Q�Pi2+w�l7�_H�X0�b�ss{q�]�r����v=����gY��2Q�����~���<�*	�A��<I�v'�V�������������ۑke"_F�
+�q�$Sٓd^�p)�8v�}X�(y�@��մ:e�a��\�K����}]�����s�����-��-v��Xu�+&�TTۍi����1�{ؚrK�2@q_������N��$�i���s�k�+Xk!���/+ӣ�Q��n�����[t#|��֢�Z�1б�d�����z
+��wE_n��px��	
���MY8�s/��3�̛�#/��Tủ(�݁�4\Q�x���K�~�u�̖A��꙳�Hؠ%��� ��+�ޘ�J��s��iA�uy���\���
�����֔�gj�nG,��uw�+��O>�`!�mF�	0!ҕ��
���|\\��B��s�n�]Ld��I�ӕ����~����j]�UȦxBpwl�hJ� 7��S�!��k����ezd��� ��se*�L�/�"�b5v�?�Q
+��y����4!�
+����i��`���
�[�+?�l\��4�	�G�ތ�|h�F�ۀ/GP�e�Gh)�`��3?��DO&��n���<�T��l�’p倕kI��6�^�`�%�S`� SZcu�ZJ�m��<c�	h4.�G�}T�4��P2��*%�PQ�T�2d�$��D�y�W"�p�4�~%$�9��RĉG��=��֢3�x�ymj�3b�Y�l�3)9h���ba;S
+V���O?���:A�M�ܡ�>��W���֮�������
+'"�
J9�ʣ��������{���z�w�nx弞R<	4�KGgr�3s��>(�����F�1xa��dl�JrTB=�n�{�/ �.�0e�������rǁ7�A �xj�A(�-�9):G�J��z!�&^��Le�x��G��M�>J����Ȳ�i��^\��=|@���L$Ƅ\���Q�b;l˶��q��)��QA� 8Җ0�ej�ȥH����Q�������>WB�X�S�2��.^�������
+�\1Yd��g'%E
+J�s�8��;H�a/�5]�z��#��7��,N,%�k�/(�~|����.L�(�ud�"c��Ҏ\�9|�Y����cf��_aM�@��
+�-�@�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
 endobj
-4163 0 obj <<
+4640 0 obj <<
 /Type /Page
-/Contents 4164 0 R
-/Resources 4162 0 R
+/Contents 4641 0 R
+/Resources 4639 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4139 0 R
-/Annots [ 4170 0 R ]
+/Parent 4551 0 R
+/Annots [ 4650 0 R ]
 >> endobj
-4170 0 obj <<
+4650 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [126.525 630.825 186.3 637.679]
+/Rect [81.972 518.428 141.748 525.282]
 /Subtype /Link
 /A << /S /GoTo /D (http-apache) >>
 >> endobj
-4165 0 obj <<
-/D [4163 0 R /XYZ 71.731 729.265 null]
+4642 0 obj <<
+/D [4640 0 R /XYZ 71.731 729.265 null]
 >> endobj
-794 0 obj <<
-/D [4163 0 R /XYZ 107.109 683.368 null]
+4643 0 obj <<
+/D [4640 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4166 0 obj <<
-/D [4163 0 R /XYZ 71.731 674.545 null]
+4644 0 obj <<
+/D [4640 0 R /XYZ 310.001 708.344 null]
 >> endobj
-4167 0 obj <<
-/D [4163 0 R /XYZ 71.731 654.67 null]
+4645 0 obj <<
+/D [4640 0 R /XYZ 278.636 682.441 null]
 >> endobj
-4168 0 obj <<
-/D [4163 0 R /XYZ 277.588 643.876 null]
+1750 0 obj <<
+/D [4640 0 R /XYZ 71.731 636.448 null]
+>> endobj
+842 0 obj <<
+/D [4640 0 R /XYZ 107.109 570.971 null]
+>> endobj
+4646 0 obj <<
+/D [4640 0 R /XYZ 71.731 562.148 null]
+>> endobj
+4647 0 obj <<
+/D [4640 0 R /XYZ 71.731 542.274 null]
+>> endobj
+4648 0 obj <<
+/D [4640 0 R /XYZ 274.373 531.479 null]
 >> endobj
-4169 0 obj <<
-/D [4163 0 R /XYZ 395.734 643.876 null]
+4649 0 obj <<
+/D [4640 0 R /XYZ 390.766 531.479 null]
 >> endobj
-1306 0 obj <<
-/D [4163 0 R /XYZ 71.731 625.843 null]
+1751 0 obj <<
+/D [4640 0 R /XYZ 71.731 513.447 null]
 >> endobj
-798 0 obj <<
-/D [4163 0 R /XYZ 452.394 558.309 null]
+846 0 obj <<
+/D [4640 0 R /XYZ 452.394 445.912 null]
 >> endobj
-4171 0 obj <<
-/D [4163 0 R /XYZ 71.731 546.137 null]
+4651 0 obj <<
+/D [4640 0 R /XYZ 71.731 433.741 null]
 >> endobj
-4172 0 obj <<
-/D [4163 0 R /XYZ 71.731 523.798 null]
+4652 0 obj <<
+/D [4640 0 R /XYZ 71.731 411.401 null]
 >> endobj
-4173 0 obj <<
-/D [4163 0 R /XYZ 432.366 523.798 null]
+4653 0 obj <<
+/D [4640 0 R /XYZ 437.99 411.401 null]
 >> endobj
-4174 0 obj <<
-/D [4163 0 R /XYZ 71.731 503.708 null]
+4654 0 obj <<
+/D [4640 0 R /XYZ 71.731 391.312 null]
 >> endobj
-4175 0 obj <<
-/D [4163 0 R /XYZ 130.401 467.011 null]
+4655 0 obj <<
+/D [4640 0 R /XYZ 130.401 354.614 null]
 >> endobj
-4162 0 obj <<
-/Font << /F33 1160 0 R /F23 1057 0 R /F55 1844 0 R /F27 1064 0 R /F35 1229 0 R >>
+4639 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R /F57 2335 0 R /F35 1437 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4178 0 obj <<
-/Length 2679      
+4658 0 obj <<
+/Length 3017      
 /Filter /FlateDecode
 >>
 stream
-xڝYi��F�>�B��[<%*��v�	�u�X`� h�-�^�nZ��}��/y�Ƙ�GuիW������#��.����h��7��o����p�!~�����Nl�.�`�������`�d�����
�l����]Ӱ*�?�/֕��a���{Xb�ؑ�&�܅l��}�8�����F]��<0��룺�������I��P/^���E���4u�J�y��2cJ� Z� ����
��1H��|�����zx��_�ޯ��+�[��x0Շjj�s�Ț_V�hIԎ�,�2x��.�p��'q-�';�G7�NڒURXYK��ޖ�^��F`İ�tO<����U�y�ԓ7���.���.3�졒�i®[�#�i��6�ll��Ug|4��0J.s�r�����I�W�k�:����$�D���6`+/Z^�;�|¾���H��‡uR���fz����6��Jf��[j�.�>��D�����{�o���8&
-�vg�����:�~}hOE.�|��%�%5<�gC���_F��@��zDӛ��-�x^@�m���n6[y���/���H�{����788|lw��v��������Ov%�U�{����Ps�����Ɖ�]��?�5/$A؝9p=D�"
-c�k�\�h�
-1�i {%9^N�]��6Al�Fh�Sv�G�R�_)��
+���\Ў�g��n�.h~TO�ڸ45ˁg; �T?;7��o��8+����5:����";|@��ӪZ/x`LK�6(v:3q���@��:a�� ހ�q*C;� ���ym�"�^.\?�o@��1�*h^�	O��i,��<V��7hV3������*Z��T���EmH��0��槶k�

�p7Z�3d��C�{����3�)܆=A�n5Kk1s�guk�=�#�Qq���f��AO���#T�޹����S?
{�̺]�?�>W.u��"�Jc�G�s�Ĩ���G��wO�NG&( (�w�m�25��Ge*t����z�n��3rh`f�g�m�
-�∄�U25jeީ�@�����9D�)�9m!-�����J�5��憍�L�Vj�>XQ���R(��S
U|�efq�����h=��^����X�=tMjѽ��@9��A�g�9R=t�'�r���b�D?~��]p'8	�/ۓ���='�F���IF9M�4ۥ��*C	"��(����{�@���5͏��g��@�B�>v�h���[8)�&�̼���c#�}�SmYOS��V#�Yuݿ~����zx�׼P!k}�y]!���]4򤇂�Rpse�[�1�`8Ha�2�g��he�ߝBt`���R��A{�6��J��1���z�pf`��V?�a$9������*-���V�*�@MP
 ���}`�9w�`on�]?�"@'�#�!����Lk9���\0���%D{-g
��}�dsH�ؓ�{Ʋ#7d�ТW2� �rA��e�.K�(��Ĭ
>,����kZ;57�����R�a]��j�����Β�L���Zo߅R��
-����	v_O��W���<}�Ӧly���P�h���j�h�Q`�_=��l�Ǟc+�c�V)���{xч���������~�6<�������nO���?h�1d���
�ڳU�]���Z�\�����je$����h�y��4���񵯮_������Ht�(C��{|�����,��z�C��'��N�(��[;��$�H�I�q��(v���Ԅs�����!�G��d���I۲��aq�xe���`�-�'-��0SS���"/�RuJ`�g�8���]�A�	a���E�0%���Hu}�b�3��1b�&��Q���):�u[0�2.�/��s0�LlN3o�m��

�]�vH��HsEe��%�n;l>`O,"�v;�h�z4-oj1�Y�Uʐ��.
��#B��Ӱe��6p��;�}ʅ�����j�Xd�tH؈x����pȧ����]��ք� 	��I!��L�i��:��U����������b%�W�T��D�_hs�%nll��4���A.]�$��WµP���4yI2`<�b�i*�<���R���I��x*ZM����܄��J�L���N�.�1�8L�)zҥ�b
-�>�/ij�j[*Æ��8W�Ϋ���TO�6�ֹo�����XL���<�;�yK���
��OΩ��>h�C8��O0]�N�#�1�+l��g%��Jff�1��B5�m�&ݠ�A�W�P(=g���vF�o'�,:����sG�������.�AUu��Z�U�'T|8��4�S����L%���c�x�).�	
-��
��T��"��1k�hI�.�{LR��3�N$=
␖��)�3��!$�W���1�2ͦZ�C:GA��{08X@Y�<�D�j[\���pR�)�Wm }�%u���|��i���6j����ʭl��_�d����شҳ��0$6�N�@K�ćUFv;uʒY�3#�j삃��t��t����Q�4@�[Aq�Iu��E~3_7�1��F���}�QW�-�+%`�L˓A�$m�OD������qXb:�Vj�5�
-B�u5�}p�q��'��K����3��ȑz��%��	�ׇ0}�1&n(`��ٷ�sc{۫_�����D~L\�,���E����|���vendstream
-endobj
-4177 0 obj <<
+xڝk��6���
+�W 6�֊z�Ap�w����lp�5EAK���^��l|��~3��,��\Q
�����ʅb'��㥎����rW���J0EE�z�_�܆~줉���8�������<׉�tu��vq}���}�����T���6[/N֯���������E�J�4򑃻��1/�/T�`E�%�ZҸ��	n�456�/\�w]/+eE/�ÿʪ�2Ϸm3Рl�D��B�@~�J@��<��(�P��_����w�_���ӛ7�7c�k8���,��T�Ҽ�U�����µC��%�1�\ٲ,y��[�����a��
+�IA;ȩV��e��օ���_���D������,x����Z6��*E��J��]g���5Z�{����N����Y?�gK��?Z�k��f�eU�R
4ܷ=/a��l4��
���&NM@Fǡ��!�ڈp}�h���A"}I�~�V[F�z�չ��ōl-�\Ee���e(-��^1�[��kV�v)���	S��è����B���	^/9���n<T堗L�k""��<���щͰ���1�1ԫ��OQE�	�`B�b�1���Ͽ�������=^!q�{��+ᤩ���j���lj��{�x�Z�[��Zi�!�m�y�'��:\����a�L1���uڠ���%mE�9���+��8; �}�A׫m.5O��#�ꮒ�$	�=n�5�
X�a��:������ ���q�9_�A�����\3�W���G�!^ִ�p�K3v(v�Pq�p�ٕ�A����I�h�������P��is&!������;��g!C��`�ا�F��]gB(�!�v�SK��70F�������� ���[h
f�S�C��c��s_���|��{���������
�tM���o�y\�c��S�s:��Z�%�7^�)�D����73���
�%r LcY��������v$�ޱ���x�0��J¾���Fyk����!+ ۇ��Z���|�|�&��e��]�����v��r8�H��n.ϣl���UU����4�n�n'�]]��u�Hc�<o�({��e��#�c�)U��^�Ƀ��F︱��Q;4��,��umo�ٵ����N9�r��WE�u4È�c���L�C,\��v߶l����M���e��lZ0C�Ҫ5G�䘈�o��V	���a(��u���n�������-Lq�4w{Z��dt��"�`
���̴)~ah�:� �����2=�w�f=#�z�Wr�]��rN�8�1��P�O�#y�c���f�|�N�p�J��͝�h��͈�J�_Uc��G0Xl���	�&�	��՛��~��뻷�D��>�}�`d!"�� ~�E@���6��>�\<"}5�7�M�7!�
+��x
+`���*��a��ƾ=�0��+�
+�$�ca����W��`fF%2ɜ�P:4K��[6��Њ"T`���`�����J^sAT��:�2T�2�ڰ	��6����Ja�a�����(2t\�l�{V�����4��q/U�P��<�&�	�	$��1E(zmC/���D@g����s�����*<�Yn؛J��@0�.d�0�',��,={˜sG���y�>��Mnn"��F��|Z3Zw�����&�8uK_0�����A��ǿ���@���D^�b~.����l��zXC�h�:��m�vϔS�>�h�X��vlr��W�y]�\�?1��Y45%Щ�{٩���b"�,�Q��v<l)��!!H�۾o��v�L�m�x=�\��������p@�Ά�����ѓ���k��_�~�|��g�]+��nd#��*c��<�5����(����̧�tRvSu�)�a�P���~5��D�=uٗ/6N`]�ѯ�Z9|h�I�����uw�<$�nڃZڅ�0��/.��*�Z�k�^�C`���q�ֶ�g�_fm'd[�����׌ 4�5g��.��ʰ�P7���k���s$%}+�Aa(Q��_p�)�E\`:�LS)��ئ�T���a��M��䣹D�
+�=����7'\�t�x�Me�;q$�\�
+�(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
+endobj
+4657 0 obj <<
 /Type /Page
-/Contents 4178 0 R
-/Resources 4176 0 R
+/Contents 4658 0 R
+/Resources 4656 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4139 0 R
+/Parent 4700 0 R
 >> endobj
-4179 0 obj <<
-/D [4177 0 R /XYZ 71.731 729.265 null]
+4659 0 obj <<
+/D [4657 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1307 0 obj <<
-/D [4177 0 R /XYZ 71.731 718.306 null]
+1752 0 obj <<
+/D [4657 0 R /XYZ 71.731 718.306 null]
 >> endobj
-802 0 obj <<
-/D [4177 0 R /XYZ 271.435 703.236 null]
+850 0 obj <<
+/D [4657 0 R /XYZ 271.435 703.236 null]
 >> endobj
-4180 0 obj <<
-/D [4177 0 R /XYZ 71.731 682.175 null]
+4660 0 obj <<
+/D [4657 0 R /XYZ 71.731 682.175 null]
 >> endobj
-4181 0 obj <<
-/D [4177 0 R /XYZ 298.359 673.5 null]
+4661 0 obj <<
+/D [4657 0 R /XYZ 297.998 673.5 null]
 >> endobj
-1308 0 obj <<
-/D [4177 0 R /XYZ 71.731 660.449 null]
+1753 0 obj <<
+/D [4657 0 R /XYZ 71.731 660.449 null]
 >> endobj
-806 0 obj <<
-/D [4177 0 R /XYZ 365.87 615.294 null]
+854 0 obj <<
+/D [4657 0 R /XYZ 365.87 615.294 null]
 >> endobj
-4182 0 obj <<
-/D [4177 0 R /XYZ 71.731 606.471 null]
+4662 0 obj <<
+/D [4657 0 R /XYZ 71.731 606.471 null]
 >> endobj
-4183 0 obj <<
-/D [4177 0 R /XYZ 71.731 580.783 null]
+4663 0 obj <<
+/D [4657 0 R /XYZ 457.285 593.735 null]
 >> endobj
-4184 0 obj <<
-/D [4177 0 R /XYZ 282.908 580.783 null]
+4664 0 obj <<
+/D [4657 0 R /XYZ 199.72 580.783 null]
 >> endobj
-4185 0 obj <<
-/D [4177 0 R /XYZ 341.687 580.783 null]
+4665 0 obj <<
+/D [4657 0 R /XYZ 258.499 580.783 null]
 >> endobj
-4186 0 obj <<
-/D [4177 0 R /XYZ 398.713 580.783 null]
+4666 0 obj <<
+/D [4657 0 R /XYZ 315.525 580.783 null]
 >> endobj
-4187 0 obj <<
-/D [4177 0 R /XYZ 71.731 578.626 null]
+4667 0 obj <<
+/D [4657 0 R /XYZ 71.731 578.626 null]
 >> endobj
-4188 0 obj <<
-/D [4177 0 R /XYZ 118.555 540.062 null]
+4668 0 obj <<
+/D [4657 0 R /XYZ 118.555 540.062 null]
 >> endobj
-4189 0 obj <<
-/D [4177 0 R /XYZ 71.731 509.785 null]
+4669 0 obj <<
+/D [4657 0 R /XYZ 71.731 509.785 null]
 >> endobj
-4190 0 obj <<
-/D [4177 0 R /XYZ 71.731 509.785 null]
+4670 0 obj <<
+/D [4657 0 R /XYZ 71.731 509.785 null]
 >> endobj
-4191 0 obj <<
-/D [4177 0 R /XYZ 71.731 490.079 null]
+4671 0 obj <<
+/D [4657 0 R /XYZ 71.731 490.079 null]
 >> endobj
-4192 0 obj <<
-/D [4177 0 R /XYZ 165.11 477.128 null]
+4672 0 obj <<
+/D [4657 0 R /XYZ 165.11 477.128 null]
 >> endobj
-4193 0 obj <<
-/D [4177 0 R /XYZ 71.731 469.99 null]
+4673 0 obj <<
+/D [4657 0 R /XYZ 71.731 469.99 null]
 >> endobj
-4194 0 obj <<
-/D [4177 0 R /XYZ 71.731 469.99 null]
+4674 0 obj <<
+/D [4657 0 R /XYZ 71.731 469.99 null]
 >> endobj
-4195 0 obj <<
-/D [4177 0 R /XYZ 183.531 446.244 null]
+4675 0 obj <<
+/D [4657 0 R /XYZ 164.065 446.244 null]
 >> endobj
-4196 0 obj <<
-/D [4177 0 R /XYZ 229.448 446.244 null]
+4676 0 obj <<
+/D [4657 0 R /XYZ 210.352 446.244 null]
 >> endobj
-4197 0 obj <<
-/D [4177 0 R /XYZ 370.558 446.244 null]
+4677 0 obj <<
+/D [4657 0 R /XYZ 352.569 446.244 null]
 >> endobj
-4198 0 obj <<
-/D [4177 0 R /XYZ 460.28 446.244 null]
+4678 0 obj <<
+/D [4657 0 R /XYZ 442.661 446.244 null]
 >> endobj
-4199 0 obj <<
-/D [4177 0 R /XYZ 227.505 433.292 null]
+4679 0 obj <<
+/D [4657 0 R /XYZ 203.715 433.292 null]
 >> endobj
-4200 0 obj <<
-/D [4177 0 R /XYZ 395.852 433.292 null]
+4680 0 obj <<
+/D [4657 0 R /XYZ 372.061 433.292 null]
 >> endobj
-4201 0 obj <<
-/D [4177 0 R /XYZ 71.731 426.154 null]
+4681 0 obj <<
+/D [4657 0 R /XYZ 71.731 426.154 null]
 >> endobj
-4202 0 obj <<
-/D [4177 0 R /XYZ 460.101 415.36 null]
+4682 0 obj <<
+/D [4657 0 R /XYZ 460.217 415.36 null]
 >> endobj
-4203 0 obj <<
-/D [4177 0 R /XYZ 71.731 382.318 null]
+4683 0 obj <<
+/D [4657 0 R /XYZ 71.731 382.318 null]
 >> endobj
-4204 0 obj <<
-/D [4177 0 R /XYZ 71.731 382.318 null]
+4684 0 obj <<
+/D [4657 0 R /XYZ 71.731 382.318 null]
 >> endobj
-4205 0 obj <<
-/D [4177 0 R /XYZ 234.379 371.524 null]
+4685 0 obj <<
+/D [4657 0 R /XYZ 237.451 371.524 null]
 >> endobj
-4206 0 obj <<
-/D [4177 0 R /XYZ 71.731 358.572 null]
+4686 0 obj <<
+/D [4657 0 R /XYZ 71.731 358.572 null]
 >> endobj
-4207 0 obj <<
-/D [4177 0 R /XYZ 260.452 345.621 null]
+4687 0 obj <<
+/D [4657 0 R /XYZ 220.87 345.621 null]
 >> endobj
-4208 0 obj <<
-/D [4177 0 R /XYZ 71.731 338.483 null]
+4688 0 obj <<
+/D [4657 0 R /XYZ 71.731 338.483 null]
 >> endobj
-4209 0 obj <<
-/D [4177 0 R /XYZ 257.124 327.688 null]
+4689 0 obj <<
+/D [4657 0 R /XYZ 257.124 327.688 null]
 >> endobj
-4210 0 obj <<
-/D [4177 0 R /XYZ 358.713 327.688 null]
+4690 0 obj <<
+/D [4657 0 R /XYZ 358.713 327.688 null]
 >> endobj
-1309 0 obj <<
-/D [4177 0 R /XYZ 71.731 320.55 null]
+1754 0 obj <<
+/D [4657 0 R /XYZ 71.731 320.55 null]
 >> endobj
-810 0 obj <<
-/D [4177 0 R /XYZ 462 277.453 null]
+858 0 obj <<
+/D [4657 0 R /XYZ 462 277.453 null]
 >> endobj
-4211 0 obj <<
-/D [4177 0 R /XYZ 71.731 265.015 null]
+4691 0 obj <<
+/D [4657 0 R /XYZ 71.731 265.015 null]
 >> endobj
-4212 0 obj <<
-/D [4177 0 R /XYZ 116.164 255.893 null]
+4692 0 obj <<
+/D [4657 0 R /XYZ 117.29 255.893 null]
 >> endobj
-4213 0 obj <<
-/D [4177 0 R /XYZ 420.011 255.893 null]
+4693 0 obj <<
+/D [4657 0 R /XYZ 427.895 255.893 null]
 >> endobj
-4214 0 obj <<
-/D [4177 0 R /XYZ 71.731 224.91 null]
+4694 0 obj <<
+/D [4657 0 R /XYZ 71.731 224.91 null]
 >> endobj
-4215 0 obj <<
-/D [4177 0 R /XYZ 170.28 212.058 null]
+4695 0 obj <<
+/D [4657 0 R /XYZ 171.098 212.058 null]
 >> endobj
-4216 0 obj <<
-/D [4177 0 R /XYZ 410.966 212.058 null]
+4696 0 obj <<
+/D [4657 0 R /XYZ 413.216 212.058 null]
 >> endobj
-4217 0 obj <<
-/D [4177 0 R /XYZ 71.731 166.065 null]
+4697 0 obj <<
+/D [4657 0 R /XYZ 71.731 166.065 null]
 >> endobj
-4218 0 obj <<
-/D [4177 0 R /XYZ 71.731 122.23 null]
+4698 0 obj <<
+/D [4657 0 R /XYZ 71.731 122.23 null]
 >> endobj
-4219 0 obj <<
-/D [4177 0 R /XYZ 71.731 122.23 null]
+4699 0 obj <<
+/D [4657 0 R /XYZ 71.731 122.23 null]
 >> endobj
-4176 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F44 1440 0 R /F32 1071 0 R /F33 1160 0 R >>
+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 ]
 >> endobj
-4222 0 obj <<
-/Length 1407      
+4703 0 obj <<
+/Length 1514      
 /Filter /FlateDecode
 >>
 stream
-xڵWY��6~�_a����uZA`�m�-���
�ざ�6�Tu쑇��9�,{
d���)q8�73�Pt.rJ����DY�(��p����.��H��Di�3�A�Xŋ`����b�c/��di���NV˜Dq��T�{�m�e%� �Wޕ���
�>
����|-���5���M�[�Y�S���?7?�;A��U��oT5ּ�;�������K#湑CÔLuc�-���� Eۓ%�	N^k'��{T#.$����=LJ�vԬ�S��g&!����R������Գ"{�G�wo��JINpy�R�V�y��Φ6���^���~-�g\�Vr������q��PӈPɵ�À2=7��8�<8b����P�K�BL(�D��Ll��
-uJ
�13q�XA]b2��߲~��L��2-ՙ�
-��2�� C/x�rw����7d`~@���<�X-�P�ϷWV�6����ԔV}�>�[Qs�~�����7��j�W���Z�l��'�� Y�,�d���A
ܖQ��4�$	#��Z"'���.M_���V�n��^�]��FeW��N}�R�E�ua���яB�0<܋�r�吙-����0�{A���hk��4'���S ⌒��m|��9qHV���8ͺ�84���2j;ٝ�����y\����퀏��~��w/_�a�5䅷u����q\Z��C���'��4S�yeAӼ�K�a�"�4A���OJ33�0���1��5��'W��j�x���G��n�S��`Qۋr��=�	��a�6x.����b��z�z�~�W��K9]�������o��,�V��׶x�����o`Js�?<�iG�sipe�v<�mSM3����Л�{���N�C�g��lrס����4j���hM��i�&��qR�����ڢ2�Cp
N;c�1���y��:�C�XY��
8���.�����a�P�lOu@�e�6����mzB+�]��@7=�Z�>�%X4
4WƉ���<+-��6���P+�Nڶzs��9I�4a
-��bv[�l�_���7�U�旷YoS��E)4cH�(��e�r���q���}��:���ڟdp4ɏ���t4�.<�LK㫔�u�v�����,Us�+�3;�*K�6�y�~�p�+�ߥr�\��e�'�����x��r%~s`�c2�H�
-�w��_BB]}�&�
L���� �����W#	P|��ϔwJ�ؙR��(�0M�R��K�Zۄ�{m���о^.����ܓ�e�@V)Ĺ�ry���rf8���lY���%i�3wq����c���'+��5��b�O�@�m�#��R�c���$J"�9����n�?l��M�!	$����R+D��h�F9쁖�$��DPd��܇�SS�Ȅ��endstream
-endobj
-4221 0 obj <<
+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 4222 0 R
-/Resources 4220 0 R
+/Contents 4703 0 R
+/Resources 4701 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4139 0 R
+/Parent 4700 0 R
 >> endobj
-4223 0 obj <<
-/D [4221 0 R /XYZ 71.731 729.265 null]
+4704 0 obj <<
+/D [4702 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1310 0 obj <<
-/D [4221 0 R /XYZ 71.731 718.306 null]
+1755 0 obj <<
+/D [4702 0 R /XYZ 71.731 718.306 null]
 >> endobj
-814 0 obj <<
-/D [4221 0 R /XYZ 155.521 676.38 null]
+862 0 obj <<
+/D [4702 0 R /XYZ 155.521 676.38 null]
 >> endobj
-1311 0 obj <<
-/D [4221 0 R /XYZ 71.731 669.666 null]
+1756 0 obj <<
+/D [4702 0 R /XYZ 71.731 669.666 null]
 >> endobj
-818 0 obj <<
-/D [4221 0 R /XYZ 206.096 624.303 null]
+866 0 obj <<
+/D [4702 0 R /XYZ 206.096 624.303 null]
 >> endobj
-4224 0 obj <<
-/D [4221 0 R /XYZ 71.731 615.48 null]
+4705 0 obj <<
+/D [4702 0 R /XYZ 71.731 615.48 null]
 >> endobj
-4225 0 obj <<
-/D [4221 0 R /XYZ 71.731 582.654 null]
+4706 0 obj <<
+/D [4702 0 R /XYZ 71.731 582.654 null]
 >> endobj
-4226 0 obj <<
-/D [4221 0 R /XYZ 71.731 572.692 null]
+4707 0 obj <<
+/D [4702 0 R /XYZ 71.731 572.692 null]
 >> endobj
-4227 0 obj <<
-/D [4221 0 R /XYZ 71.731 572.692 null]
+4708 0 obj <<
+/D [4702 0 R /XYZ 71.731 572.692 null]
 >> endobj
-4228 0 obj <<
-/D [4221 0 R /XYZ 71.731 561.784 null]
+4709 0 obj <<
+/D [4702 0 R /XYZ 71.731 561.784 null]
 >> endobj
-4229 0 obj <<
-/D [4221 0 R /XYZ 71.731 551.348 null]
+4710 0 obj <<
+/D [4702 0 R /XYZ 71.731 551.348 null]
 >> endobj
-4230 0 obj <<
-/D [4221 0 R /XYZ 71.731 538.472 null]
+4711 0 obj <<
+/D [4702 0 R /XYZ 71.731 538.472 null]
 >> endobj
-4231 0 obj <<
-/D [4221 0 R /XYZ 71.731 528.035 null]
+4712 0 obj <<
+/D [4702 0 R /XYZ 71.731 528.035 null]
 >> endobj
-4232 0 obj <<
-/D [4221 0 R /XYZ 71.731 516.379 null]
+4713 0 obj <<
+/D [4702 0 R /XYZ 71.731 516.379 null]
 >> endobj
-4233 0 obj <<
-/D [4221 0 R /XYZ 76.712 483.292 null]
+4714 0 obj <<
+/D [4702 0 R /XYZ 76.712 483.292 null]
 >> endobj
-4234 0 obj <<
-/D [4221 0 R /XYZ 71.731 468.348 null]
+4715 0 obj <<
+/D [4702 0 R /XYZ 71.731 468.348 null]
 >> endobj
-4235 0 obj <<
-/D [4221 0 R /XYZ 478.451 456.692 null]
+4716 0 obj <<
+/D [4702 0 R /XYZ 486.228 456.692 null]
 >> endobj
-4236 0 obj <<
-/D [4221 0 R /XYZ 447.921 445.035 null]
+4717 0 obj <<
+/D [4702 0 R /XYZ 451.424 445.035 null]
 >> endobj
-4237 0 obj <<
-/D [4221 0 R /XYZ 71.731 403.09 null]
+4718 0 obj <<
+/D [4702 0 R /XYZ 71.731 403.09 null]
 >> endobj
-4238 0 obj <<
-/D [4221 0 R /XYZ 71.731 393.127 null]
+4719 0 obj <<
+/D [4702 0 R /XYZ 71.731 393.127 null]
 >> endobj
-4239 0 obj <<
-/D [4221 0 R /XYZ 140.075 384.632 null]
+4720 0 obj <<
+/D [4702 0 R /XYZ 140.075 384.632 null]
 >> endobj
-1312 0 obj <<
-/D [4221 0 R /XYZ 71.731 324.627 null]
+1757 0 obj <<
+/D [4702 0 R /XYZ 71.731 324.627 null]
 >> endobj
-822 0 obj <<
-/D [4221 0 R /XYZ 275.663 279.373 null]
+870 0 obj <<
+/D [4702 0 R /XYZ 275.663 279.373 null]
 >> endobj
-4240 0 obj <<
-/D [4221 0 R /XYZ 71.731 279.157 null]
+4721 0 obj <<
+/D [4702 0 R /XYZ 71.731 279.157 null]
 >> endobj
-4241 0 obj <<
-/D [4221 0 R /XYZ 71.731 260.587 null]
+4722 0 obj <<
+/D [4702 0 R /XYZ 71.731 260.587 null]
 >> endobj
-4242 0 obj <<
-/D [4221 0 R /XYZ 71.731 209.594 null]
+4723 0 obj <<
+/D [4702 0 R /XYZ 71.731 209.594 null]
 >> endobj
-4243 0 obj <<
-/D [4221 0 R /XYZ 71.731 184.523 null]
+4724 0 obj <<
+/D [4702 0 R /XYZ 71.731 184.523 null]
 >> endobj
-4244 0 obj <<
-/D [4221 0 R /XYZ 188.024 173.729 null]
+4725 0 obj <<
+/D [4702 0 R /XYZ 188.024 173.729 null]
 >> endobj
-4245 0 obj <<
-/D [4221 0 R /XYZ 181.907 160.777 null]
+4726 0 obj <<
+/D [4702 0 R /XYZ 181.907 160.777 null]
 >> endobj
-4246 0 obj <<
-/D [4221 0 R /XYZ 158.345 147.826 null]
+4727 0 obj <<
+/D [4702 0 R /XYZ 158.345 147.826 null]
 >> endobj
-4247 0 obj <<
-/D [4221 0 R /XYZ 71.731 48.817 null]
+4728 0 obj <<
+/D [4702 0 R /XYZ 71.731 48.817 null]
 >> endobj
-4220 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F44 1440 0 R /F33 1160 0 R >>
+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 ]
 >> endobj
-4250 0 obj <<
-/Length 646       
+4731 0 obj <<
+/Length 647       
 /Filter /FlateDecode
 >>
 stream
-xڽ�I��0����o�a�%���T�ʥ��������@�N����d�,�t�8���}?ۘX^�ptly��#fD��+��0 :��!�A�$��m�F�>�C[�96�.�F�L�8�aZ�a��>�����y��
�7i��7C�]��t1H*7/�Hj�k�a�>�e�lz�}5�>�${���M�.���6�w3_�"�(3,J�Gt���(��
-�2��E��>y��_%~�\7M�#T�$���0*y��$.X�8�$i��PĆE$K��X�/a���H���՛)H���T�Ҥl���FZXPD�,ɛ� ��o�[s��,9d%�"�Q��RֈAb$�e+c�d���c6t<���[�&���q��{w�*B�G�`>�Dj��A�
�BB	�/�Ҙ���J!^e���Q+�r�Wb��go�w\ �/P��S���2�5<a��E�i3�fI 3��� r�%��K4��^G���<~˜
-���~�rk�AK�>��,�3������QK�}���|�����s���{�-Q��/�~��'^D5��_���K�]����j����j��XJ�f��u��v 
�<_���{̧2��跂Z�y��w�����Uj�R������qf�B�8W�t������(*kϹt;E����endstream
+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
-4249 0 obj <<
+4730 0 obj <<
 /Type /Page
-/Contents 4250 0 R
-/Resources 4248 0 R
+/Contents 4731 0 R
+/Resources 4729 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4139 0 R
+/Parent 4700 0 R
 >> endobj
-4251 0 obj <<
-/D [4249 0 R /XYZ 71.731 729.265 null]
+4732 0 obj <<
+/D [4730 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4252 0 obj <<
-/D [4249 0 R /XYZ 71.731 741.22 null]
+4733 0 obj <<
+/D [4730 0 R /XYZ 71.731 741.22 null]
 >> endobj
-4253 0 obj <<
-/D [4249 0 R /XYZ 71.731 718.306 null]
+4734 0 obj <<
+/D [4730 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4254 0 obj <<
-/D [4249 0 R /XYZ 158.345 659.527 null]
+4735 0 obj <<
+/D [4730 0 R /XYZ 158.345 659.527 null]
 >> endobj
-4255 0 obj <<
-/D [4249 0 R /XYZ 71.731 618.68 null]
+4736 0 obj <<
+/D [4730 0 R /XYZ 71.731 618.68 null]
 >> endobj
-4256 0 obj <<
-/D [4249 0 R /XYZ 71.731 593.609 null]
+4737 0 obj <<
+/D [4730 0 R /XYZ 71.731 593.609 null]
 >> endobj
-4257 0 obj <<
-/D [4249 0 R /XYZ 188.024 582.814 null]
+4738 0 obj <<
+/D [4730 0 R /XYZ 188.024 582.814 null]
 >> endobj
-4258 0 obj <<
-/D [4249 0 R /XYZ 158.345 556.912 null]
+4739 0 obj <<
+/D [4730 0 R /XYZ 158.345 556.912 null]
 >> endobj
-4259 0 obj <<
-/D [4249 0 R /XYZ 71.731 516.065 null]
+4740 0 obj <<
+/D [4730 0 R /XYZ 71.731 516.065 null]
 >> endobj
-4260 0 obj <<
-/D [4249 0 R /XYZ 71.731 490.994 null]
+4741 0 obj <<
+/D [4730 0 R /XYZ 71.731 490.994 null]
 >> endobj
-4261 0 obj <<
-/D [4249 0 R /XYZ 188.024 480.199 null]
+4742 0 obj <<
+/D [4730 0 R /XYZ 188.024 480.199 null]
 >> endobj
-4262 0 obj <<
-/D [4249 0 R /XYZ 181.907 467.248 null]
+4743 0 obj <<
+/D [4730 0 R /XYZ 181.907 467.248 null]
 >> endobj
-4263 0 obj <<
-/D [4249 0 R /XYZ 158.345 454.296 null]
+4744 0 obj <<
+/D [4730 0 R /XYZ 158.345 454.296 null]
 >> endobj
-4264 0 obj <<
-/D [4249 0 R /XYZ 71.731 413.45 null]
+4745 0 obj <<
+/D [4730 0 R /XYZ 71.731 413.45 null]
 >> endobj
-4265 0 obj <<
-/D [4249 0 R /XYZ 71.731 390.436 null]
+4746 0 obj <<
+/D [4730 0 R /XYZ 71.731 390.436 null]
 >> endobj
-4266 0 obj <<
-/D [4249 0 R /XYZ 188.024 377.584 null]
+4747 0 obj <<
+/D [4730 0 R /XYZ 188.024 377.584 null]
 >> endobj
-4267 0 obj <<
-/D [4249 0 R /XYZ 181.907 364.633 null]
+4748 0 obj <<
+/D [4730 0 R /XYZ 181.907 364.633 null]
 >> endobj
-4268 0 obj <<
-/D [4249 0 R /XYZ 158.345 351.681 null]
+4749 0 obj <<
+/D [4730 0 R /XYZ 158.345 351.681 null]
 >> endobj
-4269 0 obj <<
-/D [4249 0 R /XYZ 71.731 310.834 null]
+4750 0 obj <<
+/D [4730 0 R /XYZ 71.731 310.834 null]
 >> endobj
-4270 0 obj <<
-/D [4249 0 R /XYZ 71.731 285.763 null]
+4751 0 obj <<
+/D [4730 0 R /XYZ 71.731 285.763 null]
 >> endobj
-4271 0 obj <<
-/D [4249 0 R /XYZ 188.024 274.969 null]
+4752 0 obj <<
+/D [4730 0 R /XYZ 188.024 274.969 null]
 >> endobj
-4272 0 obj <<
-/D [4249 0 R /XYZ 181.907 262.017 null]
+4753 0 obj <<
+/D [4730 0 R /XYZ 181.907 262.017 null]
 >> endobj
-4273 0 obj <<
-/D [4249 0 R /XYZ 158.345 249.066 null]
+4754 0 obj <<
+/D [4730 0 R /XYZ 158.345 249.066 null]
 >> endobj
-4274 0 obj <<
-/D [4249 0 R /XYZ 71.731 208.219 null]
+4755 0 obj <<
+/D [4730 0 R /XYZ 71.731 208.219 null]
 >> endobj
-4275 0 obj <<
-/D [4249 0 R /XYZ 71.731 183.148 null]
+4756 0 obj <<
+/D [4730 0 R /XYZ 71.731 183.148 null]
 >> endobj
-4276 0 obj <<
-/D [4249 0 R /XYZ 188.024 172.354 null]
+4757 0 obj <<
+/D [4730 0 R /XYZ 188.024 172.354 null]
 >> endobj
-4277 0 obj <<
-/D [4249 0 R /XYZ 158.345 146.451 null]
+4758 0 obj <<
+/D [4730 0 R /XYZ 158.345 146.451 null]
 >> endobj
-4248 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R >>
+4729 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4280 0 obj <<
-/Length 685       
+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���ĺ$��r#�LC��endstream
+B4Sr���a�\Ч�mg���_�U����CUF���ս="h6��6���K���TE�87�DO��cR#�Ѐ7�J
��߿	���u�^��!Gw8�8�wY
J��.]�X���O�Iendstream
 endobj
-4279 0 obj <<
+4760 0 obj <<
 /Type /Page
-/Contents 4280 0 R
-/Resources 4278 0 R
+/Contents 4761 0 R
+/Resources 4759 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4307 0 R
+/Parent 4700 0 R
 >> endobj
-4281 0 obj <<
-/D [4279 0 R /XYZ 71.731 729.265 null]
+4762 0 obj <<
+/D [4760 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4282 0 obj <<
-/D [4279 0 R /XYZ 71.731 718.306 null]
+4763 0 obj <<
+/D [4760 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4283 0 obj <<
-/D [4279 0 R /XYZ 158.345 659.527 null]
+4764 0 obj <<
+/D [4760 0 R /XYZ 158.345 659.527 null]
 >> endobj
-4284 0 obj <<
-/D [4279 0 R /XYZ 71.731 618.68 null]
+4765 0 obj <<
+/D [4760 0 R /XYZ 71.731 618.68 null]
 >> endobj
-4285 0 obj <<
-/D [4279 0 R /XYZ 71.731 593.609 null]
+4766 0 obj <<
+/D [4760 0 R /XYZ 71.731 593.609 null]
 >> endobj
-4286 0 obj <<
-/D [4279 0 R /XYZ 188.024 582.814 null]
+4767 0 obj <<
+/D [4760 0 R /XYZ 188.024 582.814 null]
 >> endobj
-4287 0 obj <<
-/D [4279 0 R /XYZ 181.907 569.863 null]
+4768 0 obj <<
+/D [4760 0 R /XYZ 181.907 569.863 null]
 >> endobj
-4288 0 obj <<
-/D [4279 0 R /XYZ 158.345 556.912 null]
+4769 0 obj <<
+/D [4760 0 R /XYZ 158.345 556.912 null]
 >> endobj
-4289 0 obj <<
-/D [4279 0 R /XYZ 71.731 516.065 null]
+4770 0 obj <<
+/D [4760 0 R /XYZ 71.731 516.065 null]
 >> endobj
-4290 0 obj <<
-/D [4279 0 R /XYZ 71.731 490.994 null]
+4771 0 obj <<
+/D [4760 0 R /XYZ 71.731 490.994 null]
 >> endobj
-4291 0 obj <<
-/D [4279 0 R /XYZ 188.024 480.199 null]
+4772 0 obj <<
+/D [4760 0 R /XYZ 188.024 480.199 null]
 >> endobj
-4292 0 obj <<
-/D [4279 0 R /XYZ 158.345 454.296 null]
+4773 0 obj <<
+/D [4760 0 R /XYZ 158.345 454.296 null]
 >> endobj
-4293 0 obj <<
-/D [4279 0 R /XYZ 71.731 413.45 null]
+4774 0 obj <<
+/D [4760 0 R /XYZ 71.731 413.45 null]
 >> endobj
-4294 0 obj <<
-/D [4279 0 R /XYZ 71.731 390.436 null]
+4775 0 obj <<
+/D [4760 0 R /XYZ 71.731 390.436 null]
 >> endobj
-4295 0 obj <<
-/D [4279 0 R /XYZ 188.024 377.584 null]
+4776 0 obj <<
+/D [4760 0 R /XYZ 188.024 377.584 null]
 >> endobj
-4296 0 obj <<
-/D [4279 0 R /XYZ 181.907 364.633 null]
+4777 0 obj <<
+/D [4760 0 R /XYZ 181.907 364.633 null]
 >> endobj
-4297 0 obj <<
-/D [4279 0 R /XYZ 158.345 351.681 null]
+4778 0 obj <<
+/D [4760 0 R /XYZ 158.345 351.681 null]
 >> endobj
-1313 0 obj <<
-/D [4279 0 R /XYZ 71.731 310.834 null]
+1758 0 obj <<
+/D [4760 0 R /XYZ 71.731 310.834 null]
 >> endobj
-826 0 obj <<
-/D [4279 0 R /XYZ 252.009 265.58 null]
+874 0 obj <<
+/D [4760 0 R /XYZ 252.009 265.58 null]
 >> endobj
-4298 0 obj <<
-/D [4279 0 R /XYZ 71.731 253.409 null]
+4779 0 obj <<
+/D [4760 0 R /XYZ 71.731 253.409 null]
 >> endobj
-4299 0 obj <<
-/D [4279 0 R /XYZ 71.731 233.959 null]
+4780 0 obj <<
+/D [4760 0 R /XYZ 71.731 233.959 null]
 >> endobj
-4300 0 obj <<
-/D [4279 0 R /XYZ 188.024 221.107 null]
+4781 0 obj <<
+/D [4760 0 R /XYZ 188.024 221.107 null]
 >> endobj
-4301 0 obj <<
-/D [4279 0 R /XYZ 182.306 208.155 null]
+4782 0 obj <<
+/D [4760 0 R /XYZ 182.306 208.155 null]
 >> endobj
-4302 0 obj <<
-/D [4279 0 R /XYZ 158.345 195.204 null]
+4783 0 obj <<
+/D [4760 0 R /XYZ 158.345 195.204 null]
 >> endobj
-4303 0 obj <<
-/D [4279 0 R /XYZ 71.731 154.357 null]
+4784 0 obj <<
+/D [4760 0 R /XYZ 71.731 154.357 null]
 >> endobj
-4304 0 obj <<
-/D [4279 0 R /XYZ 71.731 129.286 null]
+4785 0 obj <<
+/D [4760 0 R /XYZ 71.731 129.286 null]
 >> endobj
-4305 0 obj <<
-/D [4279 0 R /XYZ 188.024 118.492 null]
+4786 0 obj <<
+/D [4760 0 R /XYZ 188.024 118.492 null]
 >> endobj
-4306 0 obj <<
-/D [4279 0 R /XYZ 181.907 105.54 null]
+4787 0 obj <<
+/D [4760 0 R /XYZ 181.907 105.54 null]
 >> endobj
-4278 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R >>
+4759 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4310 0 obj <<
-/Length 713       
+4790 0 obj <<
+/Length 714       
 /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�abdy=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�؇*����I�d���3�!��0c1endstream
+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
-4309 0 obj <<
+4789 0 obj <<
 /Type /Page
-/Contents 4310 0 R
-/Resources 4308 0 R
+/Contents 4790 0 R
+/Resources 4788 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4307 0 R
+/Parent 4700 0 R
 >> endobj
-4311 0 obj <<
-/D [4309 0 R /XYZ 71.731 729.265 null]
+4791 0 obj <<
+/D [4789 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4312 0 obj <<
-/D [4309 0 R /XYZ 158.345 708.344 null]
+4792 0 obj <<
+/D [4789 0 R /XYZ 158.345 708.344 null]
 >> endobj
-4313 0 obj <<
-/D [4309 0 R /XYZ 71.731 667.497 null]
+4793 0 obj <<
+/D [4789 0 R /XYZ 71.731 667.497 null]
 >> endobj
-4314 0 obj <<
-/D [4309 0 R /XYZ 71.731 642.426 null]
+4794 0 obj <<
+/D [4789 0 R /XYZ 71.731 642.426 null]
 >> endobj
-4315 0 obj <<
-/D [4309 0 R /XYZ 188.024 631.631 null]
+4795 0 obj <<
+/D [4789 0 R /XYZ 188.024 631.631 null]
 >> endobj
-4316 0 obj <<
-/D [4309 0 R /XYZ 182.306 618.68 null]
+4796 0 obj <<
+/D [4789 0 R /XYZ 182.306 618.68 null]
 >> endobj
-4317 0 obj <<
-/D [4309 0 R /XYZ 158.345 605.729 null]
+4797 0 obj <<
+/D [4789 0 R /XYZ 158.345 605.729 null]
 >> endobj
-4318 0 obj <<
-/D [4309 0 R /XYZ 71.731 564.882 null]
+4798 0 obj <<
+/D [4789 0 R /XYZ 71.731 564.882 null]
 >> endobj
-4319 0 obj <<
-/D [4309 0 R /XYZ 71.731 539.811 null]
+4799 0 obj <<
+/D [4789 0 R /XYZ 71.731 539.811 null]
 >> endobj
-4320 0 obj <<
-/D [4309 0 R /XYZ 188.024 529.016 null]
+4800 0 obj <<
+/D [4789 0 R /XYZ 188.024 529.016 null]
 >> endobj
-4321 0 obj <<
-/D [4309 0 R /XYZ 175.332 516.065 null]
+4801 0 obj <<
+/D [4789 0 R /XYZ 175.332 516.065 null]
 >> endobj
-4322 0 obj <<
-/D [4309 0 R /XYZ 158.345 503.113 null]
+4802 0 obj <<
+/D [4789 0 R /XYZ 158.345 503.113 null]
 >> endobj
-4323 0 obj <<
-/D [4309 0 R /XYZ 71.731 462.267 null]
+4803 0 obj <<
+/D [4789 0 R /XYZ 71.731 462.267 null]
 >> endobj
-4324 0 obj <<
-/D [4309 0 R /XYZ 71.731 439.253 null]
+4804 0 obj <<
+/D [4789 0 R /XYZ 71.731 439.253 null]
 >> endobj
-4325 0 obj <<
-/D [4309 0 R /XYZ 188.024 426.401 null]
+4805 0 obj <<
+/D [4789 0 R /XYZ 188.024 426.401 null]
 >> endobj
-4326 0 obj <<
-/D [4309 0 R /XYZ 158.345 400.498 null]
+4806 0 obj <<
+/D [4789 0 R /XYZ 158.345 400.498 null]
 >> endobj
-4327 0 obj <<
-/D [4309 0 R /XYZ 71.731 359.651 null]
+4807 0 obj <<
+/D [4789 0 R /XYZ 71.731 359.651 null]
 >> endobj
-4328 0 obj <<
-/D [4309 0 R /XYZ 71.731 336.638 null]
+4808 0 obj <<
+/D [4789 0 R /XYZ 71.731 336.638 null]
 >> endobj
-4329 0 obj <<
-/D [4309 0 R /XYZ 188.024 323.786 null]
+4809 0 obj <<
+/D [4789 0 R /XYZ 188.024 323.786 null]
 >> endobj
-4330 0 obj <<
-/D [4309 0 R /XYZ 181.907 310.834 null]
+4810 0 obj <<
+/D [4789 0 R /XYZ 181.907 310.834 null]
 >> endobj
-4331 0 obj <<
-/D [4309 0 R /XYZ 158.345 297.883 null]
+4811 0 obj <<
+/D [4789 0 R /XYZ 158.345 297.883 null]
 >> endobj
-4308 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R >>
+4788 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4334 0 obj <<
-/Length 2241      
+4814 0 obj <<
+/Length 2688      
 /Filter /FlateDecode
 >>
 stream
-xڭYK���ϯ0|�
���ܲۛ�<�tor��@K�͌$
-�4���)�ŗ$�sh��bU}U��-R���,�o��|W,��]�8Ó_�e8�q�K�"�����b�OO��&X��˻����E�&��x99)�6ɷ��K������m��\o����sb����ws�EPj�>�rhhۯ��o�诬������
d����*Q�b;٣���,[Q!͋E�ʒ���}#����<MS��,�SK�57y�첃^�#��Y��
-v����?�"���`%}���3?���="p��:+V|h����=}m���s}Y��m�_��&%����qx�Mq���[��{sMs��&ۦ{���g|����
-W���jL*k([f�|���wT4��ie���\K���EZ|\1�v\��j��DYGиq/3�DK�p�ÑmE,�v�:.u!홵gԠw��k�q��5_���V	�|���I���t�c��z����%�Q�Z��]����w�
��v�S�~
�ckgk܆|Wq���@j����g��;q���B��U(ϵ�ͯ�	�V������J�A��L�x�I� C(��Ɖ��E;U��8ss�I=?Ѳg�|�#A�����Xye�%6��=
+T�t
�oR���i]K�4T� u��nyk¢�|W�0��i�ۊfF�b�TRal��OV�� @5�x���cͤC�b��kl�3���S��2���¢���l�j�1��#u�%����c�SCG���������y�s����p��jt�����;����o>�dd����"{�����5=�K��-
%v;�����3��g&9.�j�f� {7���������L$��&Mʈ¯6mrU[A�vfʱ��-����UF�Zjdj�`W�g�۩d��b�AAk9�j����~ri�BTJ=˚=@�̈́\T6�l�P��0�Y�)a\��V1Z��
-���a�P޵���:l~���?^��*!֕C��H%xY���\X��
�4:�H�S'�U�J�懡���ݐv�f�R�k�h~Kj��؏%i� nj	S�׸�68FYQU�=弆� ���Q���?P�쮠LWL�~�P_��$Ǧ���`���E'X�؛�h�0T�u���(J�-Y����V�Q�{�8���_z���P���[�z��іt���E
-]E��Ȑ�AwɅY���2�Q5T���iAo�Y�<q�*�j�ݦdh�q5�*�����
�ђ���JV	r�Mʅ�.�Ir��d��Clļ
-%C�B�<�۬�py�!��q�m�.#"G���=��A���C������4��]��u�Q�S㪌JjS�#cnfU��]^���+cإ-�!!�/�}���N?)(�L? /��b$"����S��ye�U�b�4Ϣ}�W�X>l�l}J��^��'GS�Z�V�|3A��2�Lo��q�ZZ�~5����P�菏Ư0J̥�
-X�'�"4��馞�y��=L����P�p23��&p�<s��󣢦B�,S��z��q�hE\u�ֆr_Xw/�t_�#]�}�-����c��/�pk�a@��L�k�:��#�����7F���f�9�q�U0	b�g�V�"�=M)��*峷5Q��7���[)u��9 �V%��? 5�o[�m���{�1c��!v��D)�hV��aa�Z��m0)3"�r�-����I�Q������g���و�)��NP�z.����m�wp�/#���$m����6>�A��g��GS.u��
-p��n�K�ҍ����e������b^3�Pm�-m�h[������[���:]b2�VR�;O?�eJ{�זR��@7jڶ�eDNN���m�婹�^n}��ˇ�Ty�:9x#"��Y�4�G�\�1� ��	��
-\�/��!C�6-H	�o��q��~nE�����3��r�����} ��7_���4�o8�
/�1����#����+EB �*f;wt9S!���lr)��Ѝ��"��̭�e}t�(��ek�Q�(�-����6�m(���j��I]?�GG��*�0��ʯ?��4�?�c��V���������J
Q�����UX�g��޷e�qP(���_������-u�����;����I_�"�n�4�d���u�H��5ep�S)*ʾ���>��׹ǧ�)��~��?E�����"�&��`W�͸��������q+�;endstream
-endobj
-4333 0 obj <<
+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��,=ݼ�9y�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
+endobj
+4813 0 obj <<
 /Type /Page
-/Contents 4334 0 R
-/Resources 4332 0 R
+/Contents 4814 0 R
+/Resources 4812 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4307 0 R
+/Parent 4700 0 R
 >> endobj
-4335 0 obj <<
-/D [4333 0 R /XYZ 71.731 729.265 null]
+4815 0 obj <<
+/D [4813 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1314 0 obj <<
-/D [4333 0 R /XYZ 71.731 718.306 null]
+1759 0 obj <<
+/D [4813 0 R /XYZ 71.731 718.306 null]
 >> endobj
-830 0 obj <<
-/D [4333 0 R /XYZ 530.903 703.236 null]
+878 0 obj <<
+/D [4813 0 R /XYZ 530.903 703.236 null]
 >> endobj
-4336 0 obj <<
-/D [4333 0 R /XYZ 71.731 682.175 null]
+4816 0 obj <<
+/D [4813 0 R /XYZ 71.731 682.175 null]
 >> endobj
-4337 0 obj <<
-/D [4333 0 R /XYZ 71.731 672.06 null]
+4817 0 obj <<
+/D [4813 0 R /XYZ 71.731 672.06 null]
 >> endobj
-4338 0 obj <<
-/D [4333 0 R /XYZ 71.731 662.097 null]
+4818 0 obj <<
+/D [4813 0 R /XYZ 71.731 662.097 null]
 >> endobj
-1315 0 obj <<
-/D [4333 0 R /XYZ 71.731 638.283 null]
+1760 0 obj <<
+/D [4813 0 R /XYZ 71.731 638.283 null]
 >> endobj
-834 0 obj <<
-/D [4333 0 R /XYZ 168.205 594.97 null]
+882 0 obj <<
+/D [4813 0 R /XYZ 168.205 594.97 null]
 >> endobj
-4339 0 obj <<
-/D [4333 0 R /XYZ 71.731 586.147 null]
+4819 0 obj <<
+/D [4813 0 R /XYZ 71.731 586.147 null]
 >> endobj
-4340 0 obj <<
-/D [4333 0 R /XYZ 71.731 527.418 null]
+4820 0 obj <<
+/D [4813 0 R /XYZ 71.731 527.418 null]
 >> endobj
-4341 0 obj <<
-/D [4333 0 R /XYZ 71.731 485.64 null]
+4821 0 obj <<
+/D [4813 0 R /XYZ 71.731 485.64 null]
 >> endobj
-1316 0 obj <<
-/D [4333 0 R /XYZ 71.731 415.902 null]
+1761 0 obj <<
+/D [4813 0 R /XYZ 71.731 415.902 null]
 >> endobj
-838 0 obj <<
-/D [4333 0 R /XYZ 312.796 370.747 null]
+886 0 obj <<
+/D [4813 0 R /XYZ 312.796 370.747 null]
 >> endobj
-4342 0 obj <<
-/D [4333 0 R /XYZ 71.731 358.576 null]
+4822 0 obj <<
+/D [4813 0 R /XYZ 71.731 358.576 null]
 >> endobj
-4343 0 obj <<
-/D [4333 0 R /XYZ 71.731 316.147 null]
+4823 0 obj <<
+/D [4813 0 R /XYZ 71.731 316.147 null]
 >> endobj
-4344 0 obj <<
-/D [4333 0 R /XYZ 71.731 285.262 null]
+4824 0 obj <<
+/D [4813 0 R /XYZ 71.731 285.262 null]
 >> endobj
-4345 0 obj <<
-/D [4333 0 R /XYZ 71.731 202.573 null]
+4825 0 obj <<
+/D [4813 0 R /XYZ 71.731 202.573 null]
 >> endobj
-4346 0 obj <<
-/D [4333 0 R /XYZ 71.731 171.688 null]
+4826 0 obj <<
+/D [4813 0 R /XYZ 71.731 171.688 null]
 >> endobj
-4347 0 obj <<
-/D [4333 0 R /XYZ 71.731 140.804 null]
+4827 0 obj <<
+/D [4813 0 R /XYZ 71.731 140.804 null]
 >> endobj
-4332 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F33 1160 0 R >>
+4812 0 obj <<
+/Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4350 0 obj <<
-/Length 2519      
+4830 0 obj <<
+/Length 3081      
 /Filter /FlateDecode
 >>
 stream
-xڭZK��6��W�|�T%)�8�����o9���Jj�DB"vH�@���A��"9�V�� 
�l��믛�-v�-n��m�����aQ4�v���ݳ�ޱ��l�{~<>��m�/��/����o�����ۻ�~q,��|�u�-���f�-�l����|y�:�b��.)5W^�_eˆ��(�[s�+h+����?��9:�����.Rs�g���֫���m�As���_V�Ò���j�_)�*;,Y{1h����rm.��4_�Qe~a�|ʞ)/�O�?�]o�T�~R}�W��l�RTX9���@z��m�Xa��:�"J&��'UW+�n�d�����9�����~V{�/�G��U�[��RR�������G&ퟏ���눠���\�c���5��NJ�
}g�WDFg��'J��%����2�K��u&Bő(!�X�r�讓��{�e{8/�ֱ�r��
-�ct1[Z�R��m�zʑj�vZ�8��cG���C�k���/�N.0���I��ʍ�7_I��T�D�N�l)��I�p1��ڢ�17��`z�����{b�*�I8ԁ����B��g>JZ��z�C�y���g�_>���C�
����^:��u�����/N�����O���D���k#��Ɖ�L��|��g��:�f���o�ʂ�鐡6� ���쩸|�R}*��)_�]�9X��4�q5�$��-P����=1�`����V,��X�(�N��lY�;
-*%r:�����X��B�}Ȝ���Z:��X)�kk6��t}��]hK�\��:��h�(*�ҍ��<4$jV�^GI���Q��&��ΕE׋�V�xqXƐ��QY�BLa�~ԅ
-jѨ���ۙ�жδ���ʋ�,3%i}Ƽ�{��0�g^�\�ٷ��.hŏ�2m���DT��.�d|��
���%��2�����@�l]|�4��ao�E,!LD$q�v8d�<4B貁�A/��U��������)��'AI�/؜�Z�q)�� &뿘&:�[�&@�CZ㛨T��\���d<Iڂ�M�=	~ʴ���$V�u�G��|�Wt�m�dh[w��/�3r�e�ƀ��(�}vм�:����p�^G��n����,�1W^i���:)9!�l{8�B~�u�c�^��C$ EJ��N�^�ΕDO�����|i��}c}J�f�xd�PQ0��-o5���f¬�a�`u��Ɩ�M�����f��9����K��U��]ڛ�'§j�E�n6�%���fh��V`�Ն��x"<��Mf�	���$�?.<����׸�`��b�����:
-��O3]�M��S
�DʬM����op�,���8��HQ���D����^ ���)�	�[t�	^'��/]��z����|��\��zЏјW�e��iV�g�@�%�C�|F��v�t70��`<A�78ST���ӟ�ު����1��������Җ��Tھ9Qk2�k�K=�7�%����#��ى5 ia��=�"/3(8�`l�X4Q)���B�6!I����;�CN����y)��\&ax��Q�o���|;nÅ�_��kOZh{���a��(1�d���0�z�I�%n&U\q5\�>��D���Re+Ls���{�6�Š�v�S�U1�<�\��.�A�a_H��)��L�OB�������i_��!��w�o�߲�K"`�&�y��I������	c��l?��6�Rr�)�N:���m��	�.���	i	i���	|�6���p�ʠ�H˷#D>~ӫ�!�[��.��%���z�փ�u<9�9��@1
�l�')G~a�����p
�ILH��j*���Qi`y�%����a��DڤC��/(<ՙ�b�q�k��HAFx�<�M�cה���`�M����Vԟ��:��(`D�eI�56��c�Eb�(x`^�YN����+P����tq1L���V���nkj�=$'�ꨗg�)�uE-+�׸Z��Z�r�E���'�t��cwء�hd��k�A�$o	�2��j ��q�M����=����6�I�N��O�t�/K���eؑ��e�&�F*a�m<�N��(�$�fA����v�`G��k�)��L��u�,D�
�2�71!U�'OXh!�Ѝ1���~��!��MK.���W$:�k�=��RSE�z�������	�FA���0ct�>�%����e�����ə�	^7�WRn*�	��f�ik�7��Խ�|�G��aBsא�Q˜>��T������n���𮫞����ި��ֹ���<V�����S�N���2@b']��]:�&��	�p	�Y���J#2��_^.���@T�ј{���#h���{�>J_[d�E�4�q2.�̨��`t �U�A%g5�ck���y�W6���^OMb�nt%t�B��>U	�3���h0�Jޚ
-�R�
-��9���^�u��-(�m�_	��	n�w���M�o�3�a�ow�=Jцd�l� �g�C�,�endstream
-endobj
-4349 0 obj <<
+xڅ˒۸��%T���S�r���Ny���$�T�DB#�$�%H����HH�����h��[=��=��>�O|�ƻ�h^�O���E$;6�e������O���=쒇��C���,��I�ͳ���W��r�mY}[m�,�n�������U��*�Z3�)�U4��U_����B�V�����oG��d�=��)w{f����tǁ0�&iJ�W�ܽ���zӭ�0X3@�%���q�*�;T�:֚g'8F�����1�ի(����F����O���Qr�S���<��?_Wq����U�!��<G�D4s�e�(�Dz|}:= ��қ���xş�\VQ\y�(���'�|M��see�q��j�3/�e`��0��%���ƝkT�e����,�Z�-���P��r|����ޟ��l�!�$gy$���la�N=i���h���Ɣ�X8�����:�J0�+ A����w/���+^�	���B���-��������+��@)�50`.�]���v\�Ix��7�\j�Xv�(�z*�Ө\<A-�ː�8�BFJ�VmQ�`�Ԋ4��>������U6��0aQ�y���U{2tz;R&�?�����gԋdR��iZD������GlI���~�h�i\�c]���P����m�~��Fp�s����z�����EFԶBA���Gw7�6����;�F�-'hC�&��[u�2�5�ǣ82XN~7��Tt�YJ�7�V9�H�]:sA����&v�8*)G��V�#�D���#/�մ��$J�����Ͱ@�l�r\.�O�tv�0�'�%�0�˹*μ~�a 5���?��|��{cj+�:9H���'���� ����9����H�A��s��
�6��k�"�#��
+'�_k�11Jv�;y,��1����!��}Cw�+�H�,��	��-��?U}-���j����i��s���T7C��H�����h���;����B�GUou}�� �z��I���k��~f��i٧ܷ|�֥#C"�=��\/��&��T�7D��.IЍAܬT����'=(P�wi�N�*_
+�����U�cǁp.��l�)2rF���6��3�p��r3k1΢��Rn���u�`��8�D88�0��$�5�|���#8e�Cly�g$9xd	�yC���"(7xS�Cx?�PA�,�6��П0_���[;|����8W���A��F4�ӝMy�������2���+�2La�,��Ɏ�1{���?VpRwGp�
C^c"�A���8�fف��s�8x��)������r�����
+C�y���EL��7�)�ԩ	�͚Wt�� /�itW���B���ִ�����پpd�ؿVd�x���R�G�Q�2c�3&>��az:����V6K��N�R�x�yl�U"9�v��t� �\�J�
+'�r����p���F��s�#ӎ!��sx�I=#�3	���tE�Ceɐ�0���
+�I�DX^z���h���d_ozJ���� r|�>l>i!��"��@F�Iqn��<o.fpv �!1��Z;��:^������L(�&,9o�i�DU�ܑ]�8��6/gب/xL�1��֠���Ǩ�Ji
+G&����*
+}��x��չ��SsV�eoS�UK^z�Q:�o@�v��É�|5f~�`������<puk��3�ۡ9j�ϥ��+}3X!_��8�H��5�.>�WS�W�_����
�R���BJ��K
0��K�F���Т9��Ι[�|�$�O��:�#9��~�1^�3���PF]}�~:2zi��
+����A����
�H1���1y���1��	�M������­8x�]�����E�(vr����aQ�y�Q&(�Q
+�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
+endobj
+4829 0 obj <<
 /Type /Page
-/Contents 4350 0 R
-/Resources 4348 0 R
+/Contents 4830 0 R
+/Resources 4828 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4307 0 R
+/Parent 4839 0 R
 >> endobj
-4351 0 obj <<
-/D [4349 0 R /XYZ 71.731 729.265 null]
+4831 0 obj <<
+/D [4829 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4352 0 obj <<
-/D [4349 0 R /XYZ 71.731 662.351 null]
+4832 0 obj <<
+/D [4829 0 R /XYZ 71.731 662.351 null]
 >> endobj
-4353 0 obj <<
-/D [4349 0 R /XYZ 71.731 592.613 null]
+4833 0 obj <<
+/D [4829 0 R /XYZ 71.731 592.613 null]
 >> endobj
-1317 0 obj <<
-/D [4349 0 R /XYZ 71.731 535.826 null]
+1762 0 obj <<
+/D [4829 0 R /XYZ 71.731 535.826 null]
 >> endobj
-842 0 obj <<
-/D [4349 0 R /XYZ 237.066 492.728 null]
+890 0 obj <<
+/D [4829 0 R /XYZ 237.066 492.728 null]
 >> endobj
-4354 0 obj <<
-/D [4349 0 R /XYZ 71.731 480.29 null]
+4834 0 obj <<
+/D [4829 0 R /XYZ 71.731 480.29 null]
 >> endobj
-4355 0 obj <<
-/D [4349 0 R /XYZ 71.731 401.331 null]
+4835 0 obj <<
+/D [4829 0 R /XYZ 71.731 401.331 null]
 >> endobj
-1318 0 obj <<
-/D [4349 0 R /XYZ 71.731 381.341 null]
+1763 0 obj <<
+/D [4829 0 R /XYZ 71.731 381.341 null]
 >> endobj
-846 0 obj <<
-/D [4349 0 R /XYZ 254.178 338.244 null]
+894 0 obj <<
+/D [4829 0 R /XYZ 254.178 338.244 null]
 >> endobj
-4356 0 obj <<
-/D [4349 0 R /XYZ 71.731 325.806 null]
+4836 0 obj <<
+/D [4829 0 R /XYZ 71.731 325.806 null]
 >> endobj
-4357 0 obj <<
-/D [4349 0 R /XYZ 71.731 231.838 null]
+4837 0 obj <<
+/D [4829 0 R /XYZ 71.731 231.838 null]
 >> endobj
-4358 0 obj <<
-/D [4349 0 R /XYZ 71.731 200.953 null]
+4838 0 obj <<
+/D [4829 0 R /XYZ 71.731 200.953 null]
 >> endobj
-4348 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R >>
+4828 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4361 0 obj <<
-/Length 2675      
+4842 0 obj <<
+/Length 3186      
 /Filter /FlateDecode
 >>
 stream
-xڥَ���}�B��H��IQG�l�ᵽ��I8dk�,E�$���}����d�3v��R�ww����x���}
-�1Jv٢���,��ͧw��XK����ûo>���w���H��(K��>M�C�,�-��^YSV��I�Y~���_~|\eٲ[��%c��������5C>Tm#��\����??������}t<�����z�׬�6�(�n9�A���g����~`����J6˛j�ACU���s.߽�7�Gтp�@���m8���֞���T�����Z��N-���/�~�*�]�<I��*Ζ/�K�����'hi'�Q��]Yg3Q�׊�$O+>��U�-�D�L�z����e.wΛ��?�v-��Ϫd�V��ᬘ執k����A��O��H�N�����E���8C���&J�AQ�-�����Җտ7��������?K�(��_�s�@Yr|�_��V���ؗ,[� +
Y���8�O{��)�L
-�����Ya<M.S��Q������nX��v�j���a��eV`C�kNJ�g�� �y�����Q·u�b�۵5�����d���<r�p��H(�_,���
-��2Q|=�[�����=���~��.L<T��؟��Rxؽc�� ^Jo([%�vP�$_5��������h{8.�l���b%@����m4�VE.��1���c��OE[�d���i�N���J3�9�h����'g�L� ܍|�#���]����b�������[5T�N]{q�~<4����P왿o{[�/B�s�Z
-,#��Z��sU��
-��ґ������b�˖T�p�
-�g��e���9�Q��&	T�"�z�i��%�>�0�4yo�klИ��tW=UM.�����?��_��Ch6���+�.U� ^(��&�/�8�6q2�dm��ak�A�}[��|�N�v�"��%��{E��;�Î��}��G��J�-h�׵]����T��_�z$�'������k x/~/�x�R�j�0!ʷ�FO*{�A�f����v���+��l猩A�N<iR��+]����$��J�=�Qk��*|dR��Ia<D��c���!b��B�@���C!2Bk6D�h;h��o0DZ���U�5jkT�� ��^�y?��E���4
-t[0_��T�a���A=��ȧ5o�	�Z��+�
֙!���h&D�U㬦^L^В�
�c����6M�4�C�� kf��M4(ʇ�}Z�j�����
dY�l~��	���W���-j����Ww�9Yv����φ֭�:�j�`*�p�j�Y@:)΢th�9����b!A�|\6ˠ]|j�v� �嫜��o%���ra%�����扗�k�����j��2 �ɚ3u�*ܖ�6������[�iE[�����x�{pϋn�A��&�	����&�A����q�Rjz�F��tJ5`B)�@PI�B>7Bk��h;h�S�V�j{���S����F���t0�o�5��f(#�f-|�&���2ߛӡ0��j%>��(�]���}Ϥ��7��}8D�'di���A��@@ G?��#4�a�6R#�8KM���0�w�#���q��E�f�.�,J���3m��\��Ӛ��m�x��1����S�5�xp'��;w��z><�os�ؔv��'kU����<���\t�5�����_&Ҡ5�d�M%���q�p�����.��)�
-���O7�a� 4;rxNSk$�~>	(ڪ��J"oZ�J�	
-3s�F�����p�g�Zt̘$�|���J�#�r��a�8[�G����6.�zZ��᝽�l��]�d}�j�}���U�u�+�E��^1��6�a�_$ЏC��Eb�A�t`!A���D>��D4E�B:��6<c�n��2�ؚ�C3�a5֌3�t�GM�gD�E�7�ՌrW����׼Sx����܍����8D�zoT׌jC��a�E��7g���1�Z�G#y�A�R�=�_k��FcV5�*P�]�`�*̤?Q�����i��V���Y��l���r�1���f��\ً�x��s|K���<�
��է{��	����D��X3�73��K��2#>I�c'F�q��Ow
`�8n0�$��M:�a0��@P�?S�Ok>WM�vЊ6s��]R�ҷ2Vldx��Ш���Y�{c��`j�����j���k����X6���R��
-��f��N�z�����΋��w2�A�
-�⫧%%�7�^�ZU�dǛ��	���c%�qrf��va�O'BN9Bk�)�h;h_�RN�x���c������6 r�u��� �tF��G�(-�5��O`�b�X�Q[��JW뾱cΕ�l�|�%��:`�8u=*��n�6W�%@���Q6�v
-z�Okޣ&h;hy[�j6�7�:,���}��Ȥ7��U���U����;ƙ�T�*F�6���d�0�bD ��_�V�i�[i���V4�ލ8��ڴ��I~�@N1��Y�^��mF�LQa�O+��P5ޡ�u�L�N2�D-�:�G�4U����<{q����!��K>4��7�TY�*չ�n���5t`����+Yڦ�����.��HJlZ
-`��sW~/P����2��_�~ظ@F��U��T=5j��ۋl��&�c\�ʑ�����O������'/�j��k���&=T\�IB�T}Z�'��endstream
-endobj
-4360 0 obj <<
+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�TTф'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
+endobj
+4841 0 obj <<
 /Type /Page
-/Contents 4361 0 R
-/Resources 4359 0 R
+/Contents 4842 0 R
+/Resources 4840 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4307 0 R
+/Parent 4839 0 R
 >> endobj
-4362 0 obj <<
-/D [4360 0 R /XYZ 71.731 729.265 null]
+4843 0 obj <<
+/D [4841 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4363 0 obj <<
-/D [4360 0 R /XYZ 71.731 741.22 null]
+4844 0 obj <<
+/D [4841 0 R /XYZ 71.731 741.22 null]
 >> endobj
-4364 0 obj <<
-/D [4360 0 R /XYZ 71.731 718.306 null]
+4845 0 obj <<
+/D [4841 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1319 0 obj <<
-/D [4360 0 R /XYZ 71.731 688.254 null]
+1764 0 obj <<
+/D [4841 0 R /XYZ 71.731 688.254 null]
 >> endobj
-850 0 obj <<
-/D [4360 0 R /XYZ 201.827 645.157 null]
+898 0 obj <<
+/D [4841 0 R /XYZ 201.827 645.157 null]
 >> endobj
-4365 0 obj <<
-/D [4360 0 R /XYZ 71.731 636.334 null]
+4846 0 obj <<
+/D [4841 0 R /XYZ 71.731 636.334 null]
 >> endobj
-4366 0 obj <<
-/D [4360 0 R /XYZ 71.731 582.586 null]
+4847 0 obj <<
+/D [4841 0 R /XYZ 71.731 582.586 null]
 >> endobj
-4367 0 obj <<
-/D [4360 0 R /XYZ 71.731 577.605 null]
+4848 0 obj <<
+/D [4841 0 R /XYZ 71.731 577.605 null]
 >> endobj
-4368 0 obj <<
-/D [4360 0 R /XYZ 89.664 556.848 null]
+4849 0 obj <<
+/D [4841 0 R /XYZ 89.664 556.848 null]
 >> endobj
-4369 0 obj <<
-/D [4360 0 R /XYZ 71.731 528.788 null]
+4850 0 obj <<
+/D [4841 0 R /XYZ 71.731 528.788 null]
 >> endobj
-4370 0 obj <<
-/D [4360 0 R /XYZ 89.664 513.012 null]
+4851 0 obj <<
+/D [4841 0 R /XYZ 89.664 513.012 null]
 >> endobj
-4371 0 obj <<
-/D [4360 0 R /XYZ 71.731 485.326 null]
+4852 0 obj <<
+/D [4841 0 R /XYZ 71.731 485.326 null]
 >> endobj
-4372 0 obj <<
-/D [4360 0 R /XYZ 89.664 469.177 null]
+4853 0 obj <<
+/D [4841 0 R /XYZ 89.664 469.177 null]
 >> endobj
-4373 0 obj <<
-/D [4360 0 R /XYZ 71.731 467.02 null]
+4854 0 obj <<
+/D [4841 0 R /XYZ 71.731 467.02 null]
 >> endobj
-4374 0 obj <<
-/D [4360 0 R /XYZ 89.664 451.244 null]
+4855 0 obj <<
+/D [4841 0 R /XYZ 89.664 451.244 null]
 >> endobj
-4375 0 obj <<
-/D [4360 0 R /XYZ 71.731 449.087 null]
+4856 0 obj <<
+/D [4841 0 R /XYZ 71.731 449.087 null]
 >> endobj
-4376 0 obj <<
-/D [4360 0 R /XYZ 89.664 433.311 null]
+4857 0 obj <<
+/D [4841 0 R /XYZ 89.664 433.311 null]
 >> endobj
-4377 0 obj <<
-/D [4360 0 R /XYZ 71.731 431.154 null]
+4858 0 obj <<
+/D [4841 0 R /XYZ 71.731 431.154 null]
 >> endobj
-4378 0 obj <<
-/D [4360 0 R /XYZ 89.664 415.378 null]
+4859 0 obj <<
+/D [4841 0 R /XYZ 89.664 415.378 null]
 >> endobj
-4379 0 obj <<
-/D [4360 0 R /XYZ 71.731 400.987 null]
+4860 0 obj <<
+/D [4841 0 R /XYZ 71.731 400.987 null]
 >> endobj
-4380 0 obj <<
-/D [4360 0 R /XYZ 89.664 384.494 null]
+4861 0 obj <<
+/D [4841 0 R /XYZ 89.664 384.494 null]
 >> endobj
-4381 0 obj <<
-/D [4360 0 R /XYZ 71.731 371.443 null]
+4862 0 obj <<
+/D [4841 0 R /XYZ 71.731 371.443 null]
 >> endobj
-4382 0 obj <<
-/D [4360 0 R /XYZ 89.664 353.61 null]
+4863 0 obj <<
+/D [4841 0 R /XYZ 89.664 353.61 null]
 >> endobj
-4383 0 obj <<
-/D [4360 0 R /XYZ 71.731 351.453 null]
+4864 0 obj <<
+/D [4841 0 R /XYZ 71.731 351.453 null]
 >> endobj
-4384 0 obj <<
-/D [4360 0 R /XYZ 89.664 335.677 null]
+4865 0 obj <<
+/D [4841 0 R /XYZ 89.664 335.677 null]
 >> endobj
-4385 0 obj <<
-/D [4360 0 R /XYZ 71.731 294.666 null]
+4866 0 obj <<
+/D [4841 0 R /XYZ 71.731 294.666 null]
 >> endobj
-4386 0 obj <<
-/D [4360 0 R /XYZ 89.664 278.89 null]
+4867 0 obj <<
+/D [4841 0 R /XYZ 89.664 278.89 null]
 >> endobj
-4387 0 obj <<
-/D [4360 0 R /XYZ 71.731 237.879 null]
+4868 0 obj <<
+/D [4841 0 R /XYZ 71.731 237.879 null]
 >> endobj
-4388 0 obj <<
-/D [4360 0 R /XYZ 89.664 222.103 null]
+4869 0 obj <<
+/D [4841 0 R /XYZ 89.664 222.103 null]
 >> endobj
-4389 0 obj <<
-/D [4360 0 R /XYZ 71.731 206.995 null]
+4870 0 obj <<
+/D [4841 0 R /XYZ 71.731 206.995 null]
 >> endobj
-4390 0 obj <<
-/D [4360 0 R /XYZ 89.664 191.219 null]
+4871 0 obj <<
+/D [4841 0 R /XYZ 89.664 191.219 null]
 >> endobj
-4391 0 obj <<
-/D [4360 0 R /XYZ 71.731 176.111 null]
+4872 0 obj <<
+/D [4841 0 R /XYZ 71.731 176.111 null]
 >> endobj
-4392 0 obj <<
-/D [4360 0 R /XYZ 89.664 160.335 null]
+4873 0 obj <<
+/D [4841 0 R /XYZ 89.664 160.335 null]
 >> endobj
-4393 0 obj <<
-/D [4360 0 R /XYZ 71.731 158.178 null]
+4874 0 obj <<
+/D [4841 0 R /XYZ 71.731 158.178 null]
 >> endobj
-4394 0 obj <<
-/D [4360 0 R /XYZ 89.664 142.402 null]
+4875 0 obj <<
+/D [4841 0 R /XYZ 89.664 142.402 null]
 >> endobj
-4395 0 obj <<
-/D [4360 0 R /XYZ 71.731 135.264 null]
+4876 0 obj <<
+/D [4841 0 R /XYZ 71.731 135.264 null]
 >> endobj
-4359 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R >>
+4840 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4398 0 obj <<
-/Length 2139      
+4879 0 obj <<
+/Length 2664      
 /Filter /FlateDecode
 >>
 stream
-xڥYߓ�6~��"�/%3�i��I��w��k�m�����]Ԇ�K��ʶd�!��vvf�H����d�����:^�S�I���6���g����{��r��yy��۷i:�.����~7KW�E�f�u�,6Y2�/��^4
�
-�y~�d��������{�v�e����s;�λyyղVԕ�A�R|�������;��t��nҋ�Ӝ��ɺ7�<��,���X.��j}�'YĤ`U����7˨�������%+
-�B��j��-��a�
-.���W���ޅ����<�A9�
-伯�a�L8��u�Iĥ�w��nV�Ϻ��Tu����.����b�1��?vd��(�~Q�8����.�U�8�N�40S�Ke�����B�Z�����^�j�)p/���y���՛����M�
-#��Z[�Q4M��y
��a��AT{\�<YF]Kz�T��F�Twr��Suxb��%R��%7L�����h�Q8�k�̎M�q]
-6�0���zɵ���|�Y�p���Q�Ձ��l`8G�YC���ț������,�śh?�V�o�3hg]{��h,��p�Qǵg+���2獪`�b+�l5L)��C�]��c��6#4��\���.
ž����W��$1˚���T_k�&�o��%/Y�2�U#�d&�t��^i_\��0m!�������\�V�6�r�(8� g��	w�� G$
-�s�ç�ٲߟ����.%���f?������b�=��G���m���¨����;-����4�h���+LzXeX�N�!�L�nWӰQ	���e
^�������Z�D�����ֆ�B<��t�7e� ���:�6�-$$������;�εK*-�
ɨ2���DK��)Y΃p�e���e6*
��?�Q�>3aRG�c�aA!��|����⢵�6o���)A�
-�c�t�	��~N=��n*������ajn��t���kC����jPk`�T�
&ܩ�[��a��������EIC$���'H�>1\�U�j�tI�L�`m�\$魱6�$��D��ヨ,��<�P�Wl��I�Ȳ��d�q|2n��1lj�0*1�7Eə��uU��2ﵛb6���G5(?\YM��4]��|r�����3�t ����\�����Q�Z��*K��|R+2��L����X��ۃz|�b��U�p��p��b�
-;�C��0M�ÞɞQX���c�GF٭W==��G�)ZE���j����@g����H�;R�ݜ���t(AB��F�|
-�nݎ0�]�
-�&��s9C(��=!�~)3����p�R�tQ���GI)�.��?	��z�oL�M;7�e��rw`C�5��Y�Gm�z�Н�0@��h��ܕ����H���*
-Wa���Q).�j'�@;	��^��w/Cj��w&iz�%c�}Ʊj�^�< H����kӠV����Kʦl윪;>��́�=�\�Y�W�Z���f���b�hv�ׁN�s���Ll��d�~����DZ�����	���I�F_=���5�#[����w��Z���8�u��An����Ty���S���6q��Ș�6ޥ@�h�	�'�A���
-d���0�ܸ9�}�$����k^�5��W��nr�r7'`-r�E��s��Յ�/3�ܺ��,{�0`p���U
-D�ͯ�v��EP��a b���ž�ljO	d�_�kA��H\�c�3�|);╌0�JF#U�H�&�6����˺�2}��a���e�m#D��B\M�q������0����|}��B
-��lEIa��l%+8�$D5)�m
۲��I?���ԫ��#	Gz�)Ҏb���{�HбKD���0
�O��B�_	՜I�]
���#G<����'bS�_D�v���8C����R`aÇ��!�'�J���c�$}�ʞ^�b}�"���������]gz{��QO���&�y�Vj��([��l��zkFe�Y���/2����^��K���q���R�����淦B8Oж�ảF�$z���Y�?xs��M4K���8m��Ҧ� gA��Z�b���j�2�zK���9-����s�j�����C�)�ϡY�.�閤ho����'̱���4endstream
-endobj
-4397 0 obj <<
+xڝYݏ۸�_�ؗʀ׵�e�S�\Sܵٶ(z}�-�f#K�(%���;�%;�E�������̏t�����!7yM��DY�p���>�`��7�p<	˓��������f���LJ8)6i�>�q�)����G��z5Me]=E�6x����?��;Vit�8�aʻ�0���b���m�0�'{0�3�>�����Q�4�7�"�M͕�F�(�TWl�M�$��mV�6���Ҡ�l���{��ϫb�ܯ���֭�[Vt�m��W���dd�����p\h�S[�s�=r�q�?�?�����������/�md*�u�a`:k~��v��M��pê=��lk��Smv�L����0���
+>�6����,Ҭ�4xar�v�u�%<`ћqS�Y̛����
�'��+_�O��6�'h?xA�0=�o��s#�=�yɵkQ�/�R6��̡���hg���ζ9��~m���}D*l���>���:^�����t�Ԏ?$K���	���p-����tl;���_�˵6�}Y88D�4�H7\n�,���b���4ٟ�^{�����ϥ��7F4.�jV�G_�}Gو�*,��
+)�?%�
+��7EH�(%�X�Cn;����]$
�� 
+�!1w�uw}�TeW̓-^[��4�p�a��k�\y2< �yW���5����+�UNĹ������:�x^�[�n��%M��~[��F�(}]�"��<|~����хVqs^Ö�t�G|$f3��S�G���c�<������ų��aҟ��E�kD��d�w}�T�)eSMo�%fl��ٍ���-�RJ�H���O���`��6ݶ"�?w�p:oו�IO:�����zX
+�fd�92ʘ��
+��	���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�{�&CAQ;�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!�BOt��#:�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
+endobj
+4878 0 obj <<
 /Type /Page
-/Contents 4398 0 R
-/Resources 4396 0 R
+/Contents 4879 0 R
+/Resources 4877 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4307 0 R
+/Parent 4839 0 R
 >> endobj
-4399 0 obj <<
-/D [4397 0 R /XYZ 71.731 729.265 null]
+4880 0 obj <<
+/D [4878 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4400 0 obj <<
-/D [4397 0 R /XYZ 71.731 644.419 null]
+4881 0 obj <<
+/D [4878 0 R /XYZ 71.731 646.476 null]
 >> endobj
-4401 0 obj <<
-/D [4397 0 R /XYZ 71.731 561.729 null]
+4882 0 obj <<
+/D [4878 0 R /XYZ 71.731 561.729 null]
 >> endobj
-1320 0 obj <<
-/D [4397 0 R /XYZ 71.731 530.844 null]
+1765 0 obj <<
+/D [4878 0 R /XYZ 71.731 530.844 null]
 >> endobj
-854 0 obj <<
-/D [4397 0 R /XYZ 279.296 487.747 null]
+902 0 obj <<
+/D [4878 0 R /XYZ 279.296 487.747 null]
 >> endobj
-4402 0 obj <<
-/D [4397 0 R /XYZ 71.731 475.309 null]
+4883 0 obj <<
+/D [4878 0 R /XYZ 71.731 475.309 null]
 >> endobj
-4403 0 obj <<
-/D [4397 0 R /XYZ 71.731 422.253 null]
+4884 0 obj <<
+/D [4878 0 R /XYZ 71.731 433.147 null]
 >> endobj
-4404 0 obj <<
-/D [4397 0 R /XYZ 71.731 352.514 null]
+4885 0 obj <<
+/D [4878 0 R /XYZ 71.731 365.466 null]
 >> endobj
-1321 0 obj <<
-/D [4397 0 R /XYZ 71.731 308.679 null]
+1766 0 obj <<
+/D [4878 0 R /XYZ 71.731 321.63 null]
 >> endobj
-858 0 obj <<
-/D [4397 0 R /XYZ 303.224 263.524 null]
+906 0 obj <<
+/D [4878 0 R /XYZ 303.224 276.475 null]
 >> endobj
-4405 0 obj <<
-/D [4397 0 R /XYZ 71.731 254.701 null]
+4886 0 obj <<
+/D [4878 0 R /XYZ 71.731 267.652 null]
 >> endobj
-4406 0 obj <<
-/D [4397 0 R /XYZ 71.731 208.924 null]
+4887 0 obj <<
+/D [4878 0 R /XYZ 71.731 221.875 null]
 >> endobj
-1322 0 obj <<
-/D [4397 0 R /XYZ 71.731 165.088 null]
+1767 0 obj <<
+/D [4878 0 R /XYZ 71.731 178.039 null]
 >> endobj
-862 0 obj <<
-/D [4397 0 R /XYZ 394.793 121.991 null]
+910 0 obj <<
+/D [4878 0 R /XYZ 394.793 134.942 null]
 >> endobj
-4407 0 obj <<
-/D [4397 0 R /XYZ 71.731 109.553 null]
+4888 0 obj <<
+/D [4878 0 R /XYZ 71.731 122.504 null]
 >> endobj
-4396 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R >>
+4877 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4410 0 obj <<
-/Length 1922      
+4891 0 obj <<
+/Length 2503      
 /Filter /FlateDecode
 >>
 stream
-xڝYMs�6��Wh|)5#Ӥ(ZRnic'��c&v;�iz�HHBCAFѿ��� HZj�~o߾݅�Y��l��.˭�|�gI~���7�q���Yc��������>D���,Zm�8�g�h�o���%��{[��Hٷ��2�G_]�����y�DZWͣ�G�z�'�<�rZԤf�Pof	-�������1+���v�j9���\w�#�ƏV����e��ɵa|��D]D�+r��U�2QWl7_�^��Ӕ5�B�T����zFћ�t䙞7�M1>���OA���z�c��G�J�����h�+�]H ��p�o��ʊ�����R���hE^���F��yx��z����i�����#4�k6͆�&9�6�_p���&Y�3m�-9**M?�c���v���6�v��'CNM��,��6�ɝ}p��{4��%�
-4�$��g��5�ޜ���$��I-��J��sY5��e�ajq=1�����"�Cr��W9�J)0`�P���{9`�I:��|�H���^�^
��=��+��e����o�zS�/
�h;��~��L�&�"�Xp��f	�ez���Յ~�g2�DVc�;�g�=�wjd߄L�,Ĉ'�#r��/
�j���W��Uz17:>�N*�v�5���֣r����S�I�םT�S��	�y%��R��L��H�Z���a��!g�U�3�Ɉ=1�>��FtqOI��6P�-���x�0r�o��'�ӗa,Sl0�e��np#m]o��M�U�Z�wVƂϖ������y������^�T��`3�k�:�$�<�,Bkߙ7��M� �!�����T�'���������]<��J��#�,4��c1_Z��lEp�g�����z�)�I�4a$ӌe��1d_��f'a�l	<�-��L��œI֤.�2i��
-�;
-��1`&P��"i�:��A&����@X0N��"��C�^0G;�O(r`� ���	x�5b�@�J/�Lt�@�6��!c�8�f����g�
-�6����4�v�����RW%�����}��n����C�,���Z�Đ�%�)=XvYY�FY �A�W)��L]��=��E��{��hv�$����e�t\$U�Mh��=�"fO��_:��{j���4��V���^R�4Gk��jL���x`��N����!s���<���<VdiJP�ڠV��8���8��%)O�+�+�nڶ*7�����܄]<W4�VE�h�c�CJ�ʅ���n]�r7C���V���-���™�K��cjF�
-�����"�`��뾑Erֵ2��䊪*t�?5u�V�p��*��4�Z
��V`��^����Od<�}�6@{�'������J)�ŵh�s��E���9�=e�������t��Y��F����K��}pl�7�Wp�M�`9����cQ��ՃV�(�0ݓ��n�����7�>Ұ=��Rhڳ�JP�H-�oh����\�c��V�dyF䏵T�������:�?�/K��w�G��达��Q��#I.'^:�Nl/��n�PC����L�<X�h�`="#����,K�ՠ�#V�'�t��pj���V,�Jw~k�^;}A̓���|�a���ƈ�j��.���=�2���^�3z^�X|R�7&{����M���w48����
-|�u���;SZj���?q0ușVd_ÀPOsvpi%kH�K�:MN	��ϑ󾶳۟{fN���~"�S�[r����9X�WL��[*�����u9�~hϓΣ\]A�k��o+�J=��VU�O��q�d`�tg<��s�ˊ#����x2�F�NS�^�ν�L棞��:�l��c1%#
-3r�`fkoyj���
�?�AؾʰϷJr�o�_d�)���	ׯ���
��/#?��8���VS?����;3endstream
-endobj
-4409 0 obj <<
+xڍY[�۶~����%Ԍ/�H�Onj'�I�>�L��D��Tx��߽�)��X,w��o8�*��*
�4��h�G�d����#�|�&�'ayrx�����C���~�^�U���$NVi�Y�^�{�.]��S��{����'|X'�׮��Ӛ)k�azg]��7M���\ם^����o޿�f%q�����[�;ӣt2�z ��x�%�/m��wS�b��W7�xys��J�Å��������x�d:᭔9[e��?�;Q>/}���+�X4hU৪�•,�U�c����:�T��nX���x�)���PByQ���A ���E�e�nz���\����I�$40j���|�8AS�y�|E5����l�?fK���O����S�-y�u/��~�[0�l�!m��M}�h�I0*��Ԕ��x�����dW0���;�i�V�֬#��N�����`�8���ǝ�����ah�Gd���px���I/�4���?z�������L+�F$u:��I�?��mru�D�6k�Ao@��ͥ�����tQe^㜛P��]��$��"X�B,���A�=��%ů[ܺi�s�fބ�aw}���1y�m����p�Ս�"�R��B��eZ��z��j7�-�5XP0����d�};����1�"�{��	��I{5�~���Z���M��6�M/گ���S&-�O�`� أ0A4�
&�A)�
fhk�����kU�	�w��gQ�';��e'.�S��rl���p����b򯆌���+yxn
+�KD9���]Ë�f.:yX)L׷氎o�5/�-nܚ"6P��l��� �~�@�%F8��G9A���Ij�l�s[��)�"# P>��m 8�����,�c	�0�'_ʚ`�̺�΍�xr���t�hH�6gsBt��j�r��mm��#g�k����T<S��Ph�`��-�J�oל5�)��x0s�0���cHPEa�����.�o��V"�&���Y\]Z`�X��io��~^�X[�%���~���k��gF�4J��b$��Cs�����(1��B/��q�����t'^r|3��#���'���<�h;1�i��v�W����ќ`H9���u=k�"7������2m�7�K�M�V�ٽ��ޟ���uS�t>�.����|��ρu?�
+dl����ial�/��(��z
��&���%tá�����=��&S�$̸���"sչtpF�Ub�"v�RZ�fI�xF����j��q��]/U��3Z�D�]xI3o a���Kg�ܓ&g�����qz�)6<���u��r�3�s����n����㖡"?�2$8:)�z������];y����ƫ�:��mëhڌi�&��p�cߌJu��f�`*6��#��ff�����A��.֡)����������i��4�)r}+��$06�J������&��Zxe�:�[U5�b*�T���a ��a��a�Is���J�L3�4s��_j�(a�=����$��M��H��(�e(	p�C.�X�`R�����Z�e�:�\fY��H̏�=��v�Q٘E�S��\"aX��e�v������30�U&�~��-E�d�6�{R:s�;�<p"^Lkzf5��<���
+�Ɇ�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����@�����fN׋t��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
+endobj
+4890 0 obj <<
 /Type /Page
-/Contents 4410 0 R
-/Resources 4408 0 R
+/Contents 4891 0 R
+/Resources 4889 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4420 0 R
+/Parent 4839 0 R
 >> endobj
-4411 0 obj <<
-/D [4409 0 R /XYZ 71.731 729.265 null]
+4892 0 obj <<
+/D [4890 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4412 0 obj <<
-/D [4409 0 R /XYZ 71.731 662.351 null]
+4893 0 obj <<
+/D [4890 0 R /XYZ 71.731 675.303 null]
 >> endobj
-1323 0 obj <<
-/D [4409 0 R /XYZ 71.731 618.516 null]
+1768 0 obj <<
+/D [4890 0 R /XYZ 71.731 631.467 null]
 >> endobj
-866 0 obj <<
-/D [4409 0 R /XYZ 182.287 575.418 null]
+914 0 obj <<
+/D [4890 0 R /XYZ 182.287 588.37 null]
 >> endobj
-4413 0 obj <<
-/D [4409 0 R /XYZ 71.731 566.595 null]
+4894 0 obj <<
+/D [4890 0 R /XYZ 71.731 579.547 null]
 >> endobj
-1324 0 obj <<
-/D [4409 0 R /XYZ 71.731 481.964 null]
+1769 0 obj <<
+/D [4890 0 R /XYZ 71.731 494.915 null]
 >> endobj
-870 0 obj <<
-/D [4409 0 R /XYZ 188.364 438.866 null]
+918 0 obj <<
+/D [4890 0 R /XYZ 188.364 451.818 null]
 >> endobj
-4414 0 obj <<
-/D [4409 0 R /XYZ 71.731 430.043 null]
+4895 0 obj <<
+/D [4890 0 R /XYZ 71.731 442.995 null]
 >> endobj
-1325 0 obj <<
-/D [4409 0 R /XYZ 71.731 371.315 null]
+1770 0 obj <<
+/D [4890 0 R /XYZ 71.731 384.266 null]
 >> endobj
-874 0 obj <<
-/D [4409 0 R /XYZ 365.182 328.217 null]
+922 0 obj <<
+/D [4890 0 R /XYZ 365.182 341.169 null]
 >> endobj
-4415 0 obj <<
-/D [4409 0 R /XYZ 71.731 319.394 null]
+4896 0 obj <<
+/D [4890 0 R /XYZ 71.731 332.346 null]
 >> endobj
-4416 0 obj <<
-/D [4409 0 R /XYZ 179.356 280.755 null]
+4897 0 obj <<
+/D [4890 0 R /XYZ 179.356 293.707 null]
 >> endobj
-4417 0 obj <<
-/D [4409 0 R /XYZ 71.731 273.617 null]
+4898 0 obj <<
+/D [4890 0 R /XYZ 71.731 286.568 null]
 >> endobj
-1326 0 obj <<
-/D [4409 0 R /XYZ 71.731 203.879 null]
+1771 0 obj <<
+/D [4890 0 R /XYZ 71.731 216.83 null]
 >> endobj
-878 0 obj <<
-/D [4409 0 R /XYZ 433.251 160.781 null]
+926 0 obj <<
+/D [4890 0 R /XYZ 433.251 173.732 null]
 >> endobj
-4418 0 obj <<
-/D [4409 0 R /XYZ 71.731 148.61 null]
+4899 0 obj <<
+/D [4890 0 R /XYZ 71.731 161.561 null]
 >> endobj
-4419 0 obj <<
-/D [4409 0 R /XYZ 71.731 124.114 null]
+4900 0 obj <<
+/D [4890 0 R /XYZ 71.731 137.065 null]
 >> endobj
-4408 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R /F23 1057 0 R >>
+4901 0 obj <<
+/D [4890 0 R /XYZ 71.731 127.102 null]
+>> endobj
+4889 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R /F23 1105 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4423 0 obj <<
-/Length 861       
+4904 0 obj <<
+/Length 789       
 /Filter /FlateDecode
 >>
 stream
-xڕVQo�0~�WD<%RI�P�hG;���F:i��`VC�N)�~vl�Q!�q���;���pb�Ǒ|�#?@']wg)�<t���3[z{{n���}9#4��d�D��#��Q�a�$�ow\���ț�a�N|�|x|փ{B�yQ�b�W>Ѵ�ƅ@��B�~%).8��&_:�����
�w��=G���J�}������Џ���-=�[F�+�Q�	`��?���&�f�E��������o6�'̼���p��C�~.*��DP�L�go��+��.�{a�V�0���2=^ӌ,����Z�$��H=��3������bUr�����Ek�.cl?S��d@������~:�
};*<�]>G‚|U˘��,�yN���5߶0���Bl���w���ho�ↈ�A��:�����
-G�!�,�3�*#��9&�҄?�%z�|�L����?�:�]�ym#����Q҄m>����j�M����H� �z�E��(�����G#�qK�:�m��x�O�4�2�K g�o��XO�Ȉ�m޻�b�W���T==�y2�L�85���҃RŦ��+�D���6ь�Z��Rr�޵4q�Qv�,G�&#���HRc����(�����Ɉm�CAM��_�Ն��a�c6ޣ�����0�5ܽ��|Q�Ŋ�
�
��Dw��=�.(!����Im�Ss*#AĞ'��I��(L��jh]�6Ö��Q�F��Vf�ߍa�ᔮ���Ns��>!��lu{��Y"���'D��Xv!�+*�颩W�h��i~�:xe���N��,=O�7���P�U�#������18+��A��Z�߾��ۑ��A���i������������������3ڇ�endstream
+xڕUQo�0~ϯ@y2R��C�����.S4M+{�����X%82di���|m���)��l�>>Ƒ�/�(�8qijԫ6�л���Q�VLݒ�5�����^3�+�'y����x�i��/v��ʶV�4NC6h�����+?M��yƤ$䳮v~�6��E�tK�RU������:����gA��7�֜P�3/�3��G��H�,��$�y�FF9g������)F��'�FVȯ�,a�R�w4�\ܔ�_���r9���W��`�$aWF������Z��4����L"��w���+�^Y�&4#�������wd�F�G�Y�p\7��4Tz�G!{�L�h��4n�l�:7�U��%�M#�^<ӑ���T��ڐ���c�{�a�������S�����K@��	{�;
+�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
 endobj
-4422 0 obj <<
+4903 0 obj <<
 /Type /Page
-/Contents 4423 0 R
-/Resources 4421 0 R
+/Contents 4904 0 R
+/Resources 4902 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4420 0 R
+/Parent 4839 0 R
 >> endobj
-4424 0 obj <<
-/D [4422 0 R /XYZ 71.731 729.265 null]
->> endobj
-4425 0 obj <<
-/D [4422 0 R /XYZ 71.731 718.306 null]
+4905 0 obj <<
+/D [4903 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4426 0 obj <<
-/D [4422 0 R /XYZ 71.731 666.452 null]
+4906 0 obj <<
+/D [4903 0 R /XYZ 71.731 689.765 null]
 >> endobj
-4427 0 obj <<
-/D [4422 0 R /XYZ 71.731 624.458 null]
+4907 0 obj <<
+/D [4903 0 R /XYZ 71.731 647.771 null]
 >> endobj
-4421 0 obj <<
-/Font << /F33 1160 0 R /F27 1064 0 R >>
+4902 0 obj <<
+/Font << /F33 1210 0 R /F27 1112 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4430 0 obj <<
-/Length 1717      
+4910 0 obj <<
+/Length 1875      
 /Filter /FlateDecode
 >>
 stream
-xڭXێ�6}߯0���W��y˥I���l��"�%�""��D�������@�XX�F3�3g����&�(	��d��Ѧ8]��#<�x��ELjD�WzQ��,
6���ۻ��$��Q��;�(~�Ho�ʿ�k��y��}��s���� R�}/��y$I�;V�*�Ƥ�r��,�wx����Q%�}o����������M�����н��iw��іv���^�yS�.*x�.?����7^�Om��F<�7^����7��^�FF����~�?�=k����\�^gƴd-��-��i`���i�Q�S@%���Xa�?�^��ό��:dG{ѱ�lܼ�7f,
-ډ\�0���a�H?�5�~{>���:� �ώZ�h9u�}䡴�`B�KŊJǿ�7��V0�i�3Q�Rɽ��%��v��?�s�0��^����+OPtD�V��,Ai$k����q�y�Q[���[$���Dm��z���
-���/s���"
���p4e˹c��#WnC5{���X�����R�\�䙺���+^��'��es$���J=��'���o�9��^uuwn�|��C��#�;Xg�w���Jly{�saOkF׳��]���Q�f�
�֭�VGi>/LTs�M��U+'l
�[z}R�H�+���B��67�S�����>b�Y]Q@RAs�����&v���:@��=�5${r�4�ʅ}�%�O_		\zT?�	��-���u�@C����̏��.�+�'����(SQ��c0�&E}3��K��p�u�{����+
�6�
-�@
-��Sen9>�HͲ����Z�(��TF~%D���h��pY"M?Ļ�Mɋ�#ȿ9����q���RZW�8�2��own6�@��x��A�6=�9��O7hd!�a��F���1��7J�)�{�K@��z)c
-��i2����B9��!ʻ��F������r��x�y]���{�u@��E����K�\z�ƛE~F�ϭ�J�2��!}�$oug�>�D~I�8�?+�#w���ڨ�V�6g=����|�r+V�q�f���۞��L.����:���m0*����m3��
WZƹkyO�y1��vT��T�e[�H8.cҚE�RSq&��"�F���	�K�F%QWk��1��T��[0o����2X���s��� #H�٥�I�Oq��4~�w�s�ؘ0�p��yq�5?	8�˝v��M�f���&�\#@� @�dV���#{���I���e�dg^�r2�_�U��aIb3��ܜœ��ہM,�F�.�W��oR����G��%.�j�/�Sc�s㊌������u��rnQ���EY`�/̒@�p3�r�T[�NҸD$τI7�� �P�Nƻ�������} O<O��6v�uVС I&j�Ei�-�
����"���]AWdt�	�����Z8�	�d�G8N�	5�! ?KMF�Uk3U3<�A�q����Zo{^hJ�5LN�y����K��9���t+��D�
-&�vp{�1�������G:tp�Q���|�scN�v��P��~>�'>$��N�����W�i�w�O3w�%|�y#��jD����g��G�q�W5k㍌9�;R�  �#��fh��0�P��O.��<���#W��h�?��'����7��H�规
->%�&�Q�@؏��o��X��<\�endstream
-endobj
-4429 0 obj <<
+xڭXK��6��0���5W�[�m�6�Hٞ�"�%�&"��(�����ᐲ���!X,4�FCr�o����,�,���,��Y��
+gkx��;�$�X�F _x�H㜕E<[L,�����=�gQȲ��ݯ�U˜Eq6���	>6���<����	�i�x���ᢼ�/��6j�!I�J)Ե�KVf1Z�#0\p�!����1N1?(r���#V��j�v��H0�f�^.I0���4��<	�F����6�Š���]Tz�5J�Ñ�tb�\�/��M~�J���kCkC���ΨvM��0�ih�Zz֪�ՠ{%��%�C��J4��������?��e9F����Ee��
Ke�K3��h�>��רd?�C�m3�ap�f��������K�x����%	;#�c����);Y�r8Z����6���л9�	@, 7��Q�=�
�^X7N0*ۮ��q��w=I�58UP�pfA���ܞ���a�Ҵp�l4DB�R�s�g�`L�t*���jhd!�B'��C��ہ>�v-�F2�@���1Vv��;��4;d���O���f��t��]yo���<�c)Cע��pM3c΂�?A��$��x���-n��mi���J[�$0���Rƈ��DXQ#h�k�]`�
���[���	�X0��n��ߝg�R6J��l1/��6�e{���G��a�E�;�f4M��}�����E�VJ"i�����r�������Gi�9
�n%��h�B�Z�����(v�(&��ё)�j0q�ky5�`Hh�V����#�1%L!����	C�kz����(����
+�[`.�)�ΎmCǶ�ŀPת
���'�辁�׋���±~8���!�8�ӧGi3)J됿�\��r,��Kb0�odK��R�B�<��SͥbW�@k;Y�	�p3�ۛ@@����~}S��,"�lu}S�^B��6���F�
�#W���~lJ���ℳ����%%?�)N�c�Q&�'�l11G-ƔJ��i�K�q��9��E�P��#ؼ�89�|�˽��j�����w.�U���3�������M���d�LN܎^׿���-Кvּ�O��s�Uɜ�h�5k�*�3񍊜�e���;1�d|����F��\&���p��y�B�@,���F|Zd�e:"g�@lԁXdToj�-���eu�x�?|,���/4��~��Xfp��C�y$�]�i#�}�q�m��LX�󣃫��I�#�S��Lu�:��
#�ak{ުp���+�Ð��o5�v����%Q�1S��ɻ��?���0|�R���7#"��Qh�9�1��䧡�`�i;G�H�%5��i���bD&��-g�4��8�G�y/�#8{�"K�҄��(@��,ԗ���,���պ�Uku1���f`���(���nLѨ��$�4�=���J�/	�Ԩ�!+`7Ӷ�#�`�5\8��_n~�'���v����5<2˩���˹e�8$ɫz��e���h
+���
��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
+endobj
+4909 0 obj <<
 /Type /Page
-/Contents 4430 0 R
-/Resources 4428 0 R
+/Contents 4910 0 R
+/Resources 4908 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4420 0 R
-/Annots [ 4476 0 R ]
+/Parent 4839 0 R
+/Annots [ 4956 0 R ]
 >> endobj
-4476 0 obj <<
+4956 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [375.699 108.101 435.474 117.012]
+/Rect [375.699 134.004 435.474 142.915]
 /Subtype /Link
 /A << /S /GoTo /D (http-apache) >>
 >> endobj
-4431 0 obj <<
-/D [4429 0 R /XYZ 71.731 729.265 null]
+4911 0 obj <<
+/D [4909 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1327 0 obj <<
-/D [4429 0 R /XYZ 71.731 718.306 null]
+1772 0 obj <<
+/D [4909 0 R /XYZ 71.731 718.306 null]
 >> endobj
-882 0 obj <<
-/D [4429 0 R /XYZ 160.355 703.236 null]
+930 0 obj <<
+/D [4909 0 R /XYZ 160.355 703.236 null]
 >> endobj
-4432 0 obj <<
-/D [4429 0 R /XYZ 71.731 692.504 null]
+4912 0 obj <<
+/D [4909 0 R /XYZ 71.731 692.504 null]
 >> endobj
-886 0 obj <<
-/D [4429 0 R /XYZ 208.364 644.101 null]
+934 0 obj <<
+/D [4909 0 R /XYZ 208.364 644.101 null]
 >> endobj
-2968 0 obj <<
-/D [4429 0 R /XYZ 71.731 629.175 null]
+3413 0 obj <<
+/D [4909 0 R /XYZ 71.731 629.175 null]
 >> endobj
-890 0 obj <<
-/D [4429 0 R /XYZ 117.14 620.82 null]
+938 0 obj <<
+/D [4909 0 R /XYZ 117.14 620.82 null]
 >> endobj
-4433 0 obj <<
-/D [4429 0 R /XYZ 71.731 615.714 null]
+4913 0 obj <<
+/D [4909 0 R /XYZ 71.731 615.714 null]
 >> endobj
-4434 0 obj <<
-/D [4429 0 R /XYZ 71.731 610.733 null]
+4914 0 obj <<
+/D [4909 0 R /XYZ 71.731 610.733 null]
 >> endobj
-4435 0 obj <<
-/D [4429 0 R /XYZ 117.937 584.955 null]
+4915 0 obj <<
+/D [4909 0 R /XYZ 118.328 584.955 null]
 >> endobj
-4436 0 obj <<
-/D [4429 0 R /XYZ 289.502 572.003 null]
+4916 0 obj <<
+/D [4909 0 R /XYZ 296.214 572.003 null]
 >> endobj
-4437 0 obj <<
-/D [4429 0 R /XYZ 71.731 536.138 null]
+4917 0 obj <<
+/D [4909 0 R /XYZ 71.731 536.138 null]
 >> endobj
-894 0 obj <<
-/D [4429 0 R /XYZ 86.646 483.825 null]
+942 0 obj <<
+/D [4909 0 R /XYZ 86.646 483.825 null]
 >> endobj
-4438 0 obj <<
-/D [4429 0 R /XYZ 71.731 473.496 null]
+4918 0 obj <<
+/D [4909 0 R /XYZ 71.731 473.496 null]
 >> endobj
-898 0 obj <<
-/D [4429 0 R /XYZ 107.616 460.544 null]
+946 0 obj <<
+/D [4909 0 R /XYZ 107.616 460.544 null]
 >> endobj
-4439 0 obj <<
-/D [4429 0 R /XYZ 71.731 453.501 null]
+4919 0 obj <<
+/D [4909 0 R /XYZ 71.731 453.501 null]
 >> endobj
-4440 0 obj <<
-/D [4429 0 R /XYZ 71.731 448.519 null]
+4920 0 obj <<
+/D [4909 0 R /XYZ 71.731 448.519 null]
 >> endobj
-4441 0 obj <<
-/D [4429 0 R /XYZ 287.509 411.727 null]
+4921 0 obj <<
+/D [4909 0 R /XYZ 256.795 411.727 null]
 >> endobj
-4442 0 obj <<
-/D [4429 0 R /XYZ 422.881 411.727 null]
+4922 0 obj <<
+/D [4909 0 R /XYZ 392.166 411.727 null]
 >> endobj
-4443 0 obj <<
-/D [4429 0 R /XYZ 71.731 398.676 null]
+4923 0 obj <<
+/D [4909 0 R /XYZ 71.731 409.57 null]
 >> endobj
-4444 0 obj <<
-/D [4429 0 R /XYZ 71.731 384.728 null]
+4924 0 obj <<
+/D [4909 0 R /XYZ 71.731 395.623 null]
 >> endobj
-902 0 obj <<
-/D [4429 0 R /XYZ 320.85 369.286 null]
+950 0 obj <<
+/D [4909 0 R /XYZ 320.85 382.238 null]
 >> endobj
-4445 0 obj <<
-/D [4429 0 R /XYZ 71.731 356.664 null]
+4925 0 obj <<
+/D [4909 0 R /XYZ 71.731 369.615 null]
 >> endobj
-4446 0 obj <<
-/D [4429 0 R /XYZ 71.731 356.664 null]
+4926 0 obj <<
+/D [4909 0 R /XYZ 71.731 369.615 null]
 >> endobj
-4447 0 obj <<
-/D [4429 0 R /XYZ 71.731 356.664 null]
+4927 0 obj <<
+/D [4909 0 R /XYZ 71.731 369.615 null]
 >> endobj
-4448 0 obj <<
-/D [4429 0 R /XYZ 71.731 344.965 null]
+4928 0 obj <<
+/D [4909 0 R /XYZ 71.731 357.916 null]
 >> endobj
-4449 0 obj <<
-/D [4429 0 R /XYZ 111.582 328.439 null]
+4929 0 obj <<
+/D [4909 0 R /XYZ 111.582 341.391 null]
 >> endobj
-4450 0 obj <<
-/D [4429 0 R /XYZ 71.731 316.32 null]
+4930 0 obj <<
+/D [4909 0 R /XYZ 71.731 329.271 null]
 >> endobj
-4451 0 obj <<
-/D [4429 0 R /XYZ 71.731 316.32 null]
+4931 0 obj <<
+/D [4909 0 R /XYZ 71.731 329.271 null]
 >> endobj
-4452 0 obj <<
-/D [4429 0 R /XYZ 71.731 316.32 null]
+4932 0 obj <<
+/D [4909 0 R /XYZ 71.731 329.271 null]
 >> endobj
-4453 0 obj <<
-/D [4429 0 R /XYZ 71.731 304.118 null]
+4933 0 obj <<
+/D [4909 0 R /XYZ 71.731 317.069 null]
 >> endobj
-4454 0 obj <<
-/D [4429 0 R /XYZ 71.731 304.118 null]
+4934 0 obj <<
+/D [4909 0 R /XYZ 71.731 317.069 null]
 >> endobj
-4455 0 obj <<
-/D [4429 0 R /XYZ 71.731 304.118 null]
+4935 0 obj <<
+/D [4909 0 R /XYZ 71.731 317.069 null]
 >> endobj
-4456 0 obj <<
-/D [4429 0 R /XYZ 71.731 291.166 null]
+4936 0 obj <<
+/D [4909 0 R /XYZ 71.731 304.118 null]
 >> endobj
-4457 0 obj <<
-/D [4429 0 R /XYZ 111.582 274.641 null]
+4937 0 obj <<
+/D [4909 0 R /XYZ 111.582 287.593 null]
 >> endobj
-4458 0 obj <<
-/D [4429 0 R /XYZ 326.852 261.69 null]
+4938 0 obj <<
+/D [4909 0 R /XYZ 326.852 274.641 null]
 >> endobj
-4459 0 obj <<
-/D [4429 0 R /XYZ 71.731 249.57 null]
+4939 0 obj <<
+/D [4909 0 R /XYZ 71.731 262.522 null]
 >> endobj
-4460 0 obj <<
-/D [4429 0 R /XYZ 71.731 249.57 null]
+4940 0 obj <<
+/D [4909 0 R /XYZ 71.731 262.522 null]
 >> endobj
-4461 0 obj <<
-/D [4429 0 R /XYZ 71.731 249.57 null]
+4941 0 obj <<
+/D [4909 0 R /XYZ 71.731 262.522 null]
 >> endobj
-4462 0 obj <<
-/D [4429 0 R /XYZ 71.731 237.368 null]
+4942 0 obj <<
+/D [4909 0 R /XYZ 71.731 250.319 null]
 >> endobj
-4463 0 obj <<
-/D [4429 0 R /XYZ 111.582 220.843 null]
+4943 0 obj <<
+/D [4909 0 R /XYZ 111.582 233.794 null]
 >> endobj
-4464 0 obj <<
-/D [4429 0 R /XYZ 358.633 220.843 null]
+4944 0 obj <<
+/D [4909 0 R /XYZ 352.018 233.794 null]
 >> endobj
-4465 0 obj <<
-/D [4429 0 R /XYZ 156.682 207.892 null]
+4945 0 obj <<
+/D [4909 0 R /XYZ 135.374 220.843 null]
 >> endobj
-4466 0 obj <<
-/D [4429 0 R /XYZ 246.306 207.892 null]
+4946 0 obj <<
+/D [4909 0 R /XYZ 224.983 220.843 null]
 >> endobj
-4467 0 obj <<
-/D [4429 0 R /XYZ 319.322 207.892 null]
+4947 0 obj <<
+/D [4909 0 R /XYZ 297.992 220.843 null]
 >> endobj
-4468 0 obj <<
-/D [4429 0 R /XYZ 441.073 207.892 null]
+4948 0 obj <<
+/D [4909 0 R /XYZ 419.728 220.843 null]
 >> endobj
-4469 0 obj <<
-/D [4429 0 R /XYZ 158.615 194.94 null]
+4949 0 obj <<
+/D [4909 0 R /XYZ 111.582 207.892 null]
 >> endobj
-4470 0 obj <<
-/D [4429 0 R /XYZ 71.731 183.57 null]
+4950 0 obj <<
+/D [4909 0 R /XYZ 71.731 196.521 null]
 >> endobj
-4471 0 obj <<
-/D [4429 0 R /XYZ 71.731 183.57 null]
+4951 0 obj <<
+/D [4909 0 R /XYZ 71.731 196.521 null]
 >> endobj
-4472 0 obj <<
-/D [4429 0 R /XYZ 71.731 183.57 null]
+4952 0 obj <<
+/D [4909 0 R /XYZ 71.731 196.521 null]
 >> endobj
-4473 0 obj <<
-/D [4429 0 R /XYZ 71.731 157.667 null]
+4953 0 obj <<
+/D [4909 0 R /XYZ 71.731 183.57 null]
 >> endobj
-4474 0 obj <<
-/D [4429 0 R /XYZ 111.582 141.142 null]
+4954 0 obj <<
+/D [4909 0 R /XYZ 111.582 167.045 null]
 >> endobj
-4475 0 obj <<
-/D [4429 0 R /XYZ 71.731 121.052 null]
+4955 0 obj <<
+/D [4909 0 R /XYZ 71.731 146.955 null]
 >> endobj
-4477 0 obj <<
-/D [4429 0 R /XYZ 71.731 48.817 null]
+4957 0 obj <<
+/D [4909 0 R /XYZ 71.731 113.246 null]
 >> endobj
-4428 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F32 1071 0 R /F33 1160 0 R >>
+4908 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
-4480 0 obj <<
-/Length 1126      
+4960 0 obj <<
+/Length 1473      
 /Filter /FlateDecode
 >>
 stream
-xڕWMo�8��W=I@��(��S�A�Xߚ=�m�D-I%u��!e�օ���|�y�Hg�>�l�%�d��e1+�tv���-�eB
-�7�E�J6�|6���e���7��H�,��l��Q�E���l[�����l��6�f�[�t6'yB֙3�h�L2x#ؑd�-z��xN�4z#$��$���.܏�qO���A�7��Li�n�{�8�Иk�1�����3ol��^QCwT㷏#/���H�?E�TkYrj�AMWi�9��CSCP�ٖnɠP��Z��\n�L��߲���2�����ʀ���)ά=�%�`��Я�93T_���SD?
n�O��|iv�1
����M�P�N'ה�����$/��s�ZG��{H��Ό�����C����c���j(V�5�ߎ	��W������%F–m=���$������8��hC\q�Sz��0N�	�}v�{�s:r
��s�,|�<��Hs_�^�z„w�C��4XuK�P\4�7���Kp�h����M�	ɟ�ŵ���y��$�;+R�j.�\@��b��roz�@�Q����)��ڰz(c�PǪH�lS{�?�|e���g�f���g���1+�dw����2�	�c�����,	I�,}�p�Q�O�:aa|�2����&A����&Ũ�EL5T�J�
-^R�!�kA������L!�㢈�[�1��֭`c=�-ԋ��2�����w��a�M���fe�K
-��]ɪ+
���n�Qv����H��t}wr� G�b(2��l:�N
��8[G�����_�T��(�
��T�º�f8��W/�0��j,Fk�M���"��yTiM��廌�4��T� �А�T�9�B�d���x6��n]| ��PO�lS���ߙS��qn��QYq)�,���䕁�����4�{�!������ɸ����^k 1K37���K�2D�ǫ�>�^�O�J�d�PS,[ƭ�q1U��pZ���(V���5A;���p���e��7`ܳ8^;���['�›��u�osS-i�;A�͡<v�I;e�Y��b�[�S��)Q[������qf��g���m���~�e����b>���
.(�˕wb����4���q�?�"Q�endstream
-endobj
-4479 0 obj <<
+xڕWM��8�ϯz���ג?�`O�A[t���[��Qbcl++ɝ��~I�v����,r�HQ$��D�b��O,V"Ye�'7�,�E�ݤ�#�|�l��e"	�W&�E�J6�l��yx������2M�b���(i����v�5z���#Xm�M��Q�X�,�<?�bu�0���d#�`w/�4��I��b�F��9*e��4	�~6m�H���cYG�7��ظqfM�z�S=���<�W^�c�n��,j��*�L�(��G������4��l�c�APw��GH�a���xn)�4ҾJh���4�T��`��ɳV����1��d8a����t�����gpVs���<�(����B\D��5`x�4,{p���a�3�K^�b9�<['YQN�X��:�B���'yX�Aaed!fl@�I�Ƒ��e
+�q�����Ӓ�o�t{&}���4��Tjwm9EJH��r��I���O�����J���?EQWj�0���%���D��u�	؆=�e1Vl���*��������;�=�ᤎl��I>5������p��G���w���x;K��o�ǜ)�`��c����jO;�7�U=��|0��=�8��z�6����K����*	)cj���)�+���'E��Ia�3)?c�f�*���z��3�9����@V�O+)�$����eHB�:�rL"�,Z��)�(T�	�U�Wv$��;� 0g�qҶW-;;�ڦR���
+: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���4‹I�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���b5�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��>���@�
�_��NM�� �%%j���g���U����6��z�V@�ܞ�@	=.�Y�)6ޱ������33����،=+6��	
?"�f�0.l���v���o�N�X��
�ˋI����K)�96A$�Ȟ�?f_���a�eendstream
+endobj
+4959 0 obj <<
 /Type /Page
-/Contents 4480 0 R
-/Resources 4478 0 R
+/Contents 4960 0 R
+/Resources 4958 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4420 0 R
+/Parent 4990 0 R
 >> endobj
-4481 0 obj <<
-/D [4479 0 R /XYZ 71.731 729.265 null]
+4961 0 obj <<
+/D [4959 0 R /XYZ 71.731 729.265 null]
 >> endobj
-906 0 obj <<
-/D [4479 0 R /XYZ 86.646 651.05 null]
+954 0 obj <<
+/D [4959 0 R /XYZ 86.646 703.68 null]
 >> endobj
-4482 0 obj <<
-/D [4479 0 R /XYZ 71.731 640.72 null]
+4962 0 obj <<
+/D [4959 0 R /XYZ 71.731 693.351 null]
 >> endobj
-910 0 obj <<
-/D [4479 0 R /XYZ 91.098 627.769 null]
+958 0 obj <<
+/D [4959 0 R /XYZ 91.098 680.4 null]
 >> endobj
-4483 0 obj <<
-/D [4479 0 R /XYZ 71.731 620.571 null]
+4963 0 obj <<
+/D [4959 0 R /XYZ 71.731 673.202 null]
 >> endobj
-4484 0 obj <<
-/D [4479 0 R /XYZ 71.731 615.59 null]
+4964 0 obj <<
+/D [4959 0 R /XYZ 71.731 668.22 null]
 >> endobj
-4485 0 obj <<
-/D [4479 0 R /XYZ 101.34 604.855 null]
+4965 0 obj <<
+/D [4959 0 R /XYZ 101.865 657.485 null]
 >> endobj
-4486 0 obj <<
-/D [4479 0 R /XYZ 236.362 591.903 null]
+4966 0 obj <<
+/D [4959 0 R /XYZ 236.362 644.534 null]
 >> endobj
-4487 0 obj <<
-/D [4479 0 R /XYZ 284.401 591.903 null]
+4967 0 obj <<
+/D [4959 0 R /XYZ 284.401 644.534 null]
 >> endobj
-4488 0 obj <<
-/D [4479 0 R /XYZ 71.731 566.499 null]
+4968 0 obj <<
+/D [4959 0 R /XYZ 71.731 619.129 null]
 >> endobj
-914 0 obj <<
-/D [4479 0 R /XYZ 131.506 553.547 null]
+962 0 obj <<
+/D [4959 0 R /XYZ 131.506 606.178 null]
 >> endobj
-4489 0 obj <<
-/D [4479 0 R /XYZ 71.731 546.349 null]
+4969 0 obj <<
+/D [4959 0 R /XYZ 71.731 598.98 null]
 >> endobj
-4490 0 obj <<
-/D [4479 0 R /XYZ 71.731 541.368 null]
+4970 0 obj <<
+/D [4959 0 R /XYZ 71.731 593.999 null]
 >> endobj
-1444 0 obj <<
-/D [4479 0 R /XYZ 71.731 492.277 null]
+1888 0 obj <<
+/D [4959 0 R /XYZ 71.731 544.908 null]
 >> endobj
-918 0 obj <<
-/D [4479 0 R /XYZ 109.927 479.326 null]
+966 0 obj <<
+/D [4959 0 R /XYZ 109.927 531.956 null]
 >> endobj
-4491 0 obj <<
-/D [4479 0 R /XYZ 71.731 472.128 null]
+4971 0 obj <<
+/D [4959 0 R /XYZ 71.731 524.758 null]
 >> endobj
-4492 0 obj <<
-/D [4479 0 R /XYZ 71.731 467.146 null]
+4972 0 obj <<
+/D [4959 0 R /XYZ 71.731 519.777 null]
 >> endobj
-4493 0 obj <<
-/D [4479 0 R /XYZ 71.731 433.497 null]
+4973 0 obj <<
+/D [4959 0 R /XYZ 71.731 486.128 null]
 >> endobj
-922 0 obj <<
-/D [4479 0 R /XYZ 86.646 381.185 null]
+970 0 obj <<
+/D [4959 0 R /XYZ 86.646 433.815 null]
 >> endobj
-1519 0 obj <<
-/D [4479 0 R /XYZ 71.731 370.597 null]
+1950 0 obj <<
+/D [4959 0 R /XYZ 71.731 423.228 null]
 >> endobj
-926 0 obj <<
-/D [4479 0 R /XYZ 202.589 357.904 null]
+974 0 obj <<
+/D [4959 0 R /XYZ 202.589 410.535 null]
 >> endobj
-4494 0 obj <<
-/D [4479 0 R /XYZ 71.731 350.86 null]
+4974 0 obj <<
+/D [4959 0 R /XYZ 71.731 403.491 null]
 >> endobj
-4495 0 obj <<
-/D [4479 0 R /XYZ 71.731 345.879 null]
+4975 0 obj <<
+/D [4959 0 R /XYZ 71.731 398.51 null]
 >> endobj
-4496 0 obj <<
-/D [4479 0 R /XYZ 71.731 345.879 null]
+4976 0 obj <<
+/D [4959 0 R /XYZ 71.731 398.51 null]
 >> endobj
-4497 0 obj <<
-/D [4479 0 R /XYZ 277.567 322.038 null]
+4977 0 obj <<
+/D [4959 0 R /XYZ 257.363 374.669 null]
 >> endobj
-4498 0 obj <<
-/D [4479 0 R /XYZ 71.731 296.634 null]
+4978 0 obj <<
+/D [4959 0 R /XYZ 71.731 349.264 null]
 >> endobj
-930 0 obj <<
-/D [4479 0 R /XYZ 127.073 283.682 null]
+978 0 obj <<
+/D [4959 0 R /XYZ 127.073 336.313 null]
 >> endobj
-4499 0 obj <<
-/D [4479 0 R /XYZ 71.731 276.639 null]
+4979 0 obj <<
+/D [4959 0 R /XYZ 71.731 329.269 null]
 >> endobj
-4500 0 obj <<
-/D [4479 0 R /XYZ 71.731 271.657 null]
+4980 0 obj <<
+/D [4959 0 R /XYZ 71.731 324.288 null]
 >> endobj
-2022 0 obj <<
-/D [4479 0 R /XYZ 71.731 209.461 null]
+2539 0 obj <<
+/D [4959 0 R /XYZ 71.731 262.091 null]
 >> endobj
-934 0 obj <<
-/D [4479 0 R /XYZ 248.655 196.509 null]
+982 0 obj <<
+/D [4959 0 R /XYZ 248.655 249.14 null]
 >> endobj
-4501 0 obj <<
-/D [4479 0 R /XYZ 71.731 189.466 null]
+4981 0 obj <<
+/D [4959 0 R /XYZ 71.731 242.096 null]
 >> endobj
-4502 0 obj <<
-/D [4479 0 R /XYZ 71.731 184.484 null]
+4982 0 obj <<
+/D [4959 0 R /XYZ 71.731 237.115 null]
 >> endobj
-4503 0 obj <<
-/D [4479 0 R /XYZ 71.731 184.484 null]
+4983 0 obj <<
+/D [4959 0 R /XYZ 71.731 237.115 null]
 >> endobj
-4504 0 obj <<
-/D [4479 0 R /XYZ 175.969 173.595 null]
+4984 0 obj <<
+/D [4959 0 R /XYZ 180.012 226.226 null]
 >> endobj
-4505 0 obj <<
-/D [4479 0 R /XYZ 118.495 160.644 null]
+4985 0 obj <<
+/D [4959 0 R /XYZ 118.495 213.274 null]
 >> endobj
-4478 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F33 1160 0 R >>
+2415 0 obj <<
+/D [4959 0 R /XYZ 71.731 187.87 null]
+>> endobj
+4986 0 obj <<
+/D [4959 0 R /XYZ 71.731 187.87 null]
+>> endobj
+986 0 obj <<
+/D [4959 0 R /XYZ 109.39 174.918 null]
+>> endobj
+4987 0 obj <<
+/D [4959 0 R /XYZ 71.731 169.757 null]
+>> endobj
+4988 0 obj <<
+/D [4959 0 R /XYZ 71.731 164.776 null]
+>> endobj
+4989 0 obj <<
+/D [4959 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 >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4508 0 obj <<
-/Length 1502      
+4993 0 obj <<
+/Length 1535      
 /Filter /FlateDecode
 >>
 stream
-xڕXKo�6��W�V��"���ۦ�.Z���nQ�2-�גT��wH�Ȓ�-� ����fF�!�c�
6<�6�i���pQ�/�J�i������I�	�Y�X�4<���}H�El�t�;F�,��x�;����ƨr��k���|�؂lde��d��,H����N��E#��2�՛��07[�:�J�U�՚�Ѳ��)��j�[
-S��?0�v��/:Weg�9	<>���+�,�?ك")Q
�2�������*A�����6�lZ3q�
-�#��Հ�l�*���.h����S��'!$B_\�xy�ҿj������ˋ*�q�����S���:WJ���i-Pr�jJ�P���E�.��e�(�)P���B?�$��D�}�!F�qce�^�#U�t[үW�	�p(mj(eu{�+��<����UˆRv	�;�o��Bd8�
-�^ ��h�˓x���?�F~��c�O�8dȀ�܅ba7��<̈́c��^M� NnRll J�(Kf[��py��}��^�#F[����^�!3�"p�?_�s/������5�i�f-V�{%��!V�Ơ�Eل&{i^V,Dڂ�-�T��-�.%�!������6��5�����>y���	Y����Cg��#�
e��m
��Pة�P�5��T�'h��)|R-�E��Pm��fߡD!�1�n���/d!&i��Hzbᾅ�M!�ħ��5�z.1���6]���-
�$�G`���)�	|/0�߾I)wO����v�4V6,�I��47��R�Ƴ �F(t?K��_@;R��V���Ko����`��)�Dq�Yt"�׉�3R>s��"�o���a��3�R��zR������"��Ȥǟ�<����?����Y}e3L.�OS��h�����"/'T��^Q�z����6P��Da*D�K=���[�M�E%;)�8@f���u�M1Q��$�Ʈes�jK��ت�l����U'G�Ol�1O	�iB���n������%ht���y30�B�]DW�Z8�3Lҿ-e��n�:��D����yO�|��v7��zrF�(�����M�d�#!��N�4S䆦M��8�F~e~ÃM��me�6?Sd�cՈ�o�$��ϾM�7Yc�>�GfƂ0�@x�=�C���Zl�u_������t۫|�ͬ]jA��\��o��o�� L�Q���j�cu�&�[:;���
-|���(}�T�d)�F��3�Z�&	8����G��]�ڴ}��S'�QR�F��j���裲Z�-�g'1]���G�I��eﯥh�nBy�O�`��W�chj<�3h���p&}V=칥�/0�CS��mW�|�����NR���g��0[�����J���y���k�|+���B���s�����S��q�Z`�#ԍ=!�c4��'�>77
-
#2d��w��- ���M�6|)^+N\��F�]q�y��op����P(�����4�,L�і�X�,�����m�9 >endstream
+xڍWK�"7�ϯ���jp����v3�T���M�Lc�5�`��"�>�%3�d��m�^��O"���Kfe"�YY䳦��g;��x�0GVB��7>.�u��ޯ��V��Z�E:[mgu"����q%�,��6Dn��|!�8R����i=豽�����SGڬ���I��g�^��3l�V[:#������4�Qw�w6P}�
�5�@g�̣�q,�`mc��z.�hB/�����x:���^<��b���(��_���鯈Bq��4��"˲�<2t3�R\�*$�� �(����E���>]�gJe0�� 4��ёT�g�M?8�H�2_�e;(�Ah�h��dzw~�~��m�V��U�6z����ly=j�D�pO�|�Hd,��*��A��ڽ̓8�_���g|=Z��C����"��ڋ�U����E��pb<eho�
+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
 endobj
-4507 0 obj <<
+4992 0 obj <<
 /Type /Page
-/Contents 4508 0 R
-/Resources 4506 0 R
+/Contents 4993 0 R
+/Resources 4991 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4420 0 R
-/Annots [ 4525 0 R ]
+/Parent 4990 0 R
+/Annots [ 5007 0 R ]
 >> endobj
-4525 0 obj <<
+5007 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [220.403 348.372 272.706 356.566]
+/Rect [221.059 393.303 273.526 401.497]
 /Subtype /Link
 /A << /S /GoTo /D (security-webserver-mod-throttle) >>
 >> endobj
-4509 0 obj <<
-/D [4507 0 R /XYZ 71.731 729.265 null]
+4994 0 obj <<
+/D [4992 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1929 0 obj <<
-/D [4507 0 R /XYZ 71.731 718.306 null]
+4995 0 obj <<
+/D [4992 0 R /XYZ 71.731 741.22 null]
 >> endobj
-4510 0 obj <<
-/D [4507 0 R /XYZ 71.731 718.306 null]
+4996 0 obj <<
+/D [4992 0 R /XYZ 524.797 708.344 null]
 >> endobj
-938 0 obj <<
-/D [4507 0 R /XYZ 109.39 708.344 null]
+4997 0 obj <<
+/D [4992 0 R /XYZ 71.731 691.243 null]
 >> endobj
-4511 0 obj <<
-/D [4507 0 R /XYZ 71.731 703.183 null]
+4998 0 obj <<
+/D [4992 0 R /XYZ 195.191 681.743 null]
 >> endobj
-4512 0 obj <<
-/D [4507 0 R /XYZ 71.731 698.202 null]
+4999 0 obj <<
+/D [4992 0 R /XYZ 71.731 606.326 null]
 >> endobj
-4513 0 obj <<
-/D [4507 0 R /XYZ 109.568 686.725 null]
+990 0 obj <<
+/D [4992 0 R /XYZ 86.646 554.013 null]
 >> endobj
-4514 0 obj <<
-/D [4507 0 R /XYZ 524.797 663.412 null]
+3301 0 obj <<
+/D [4992 0 R /XYZ 71.731 543.684 null]
 >> endobj
-4515 0 obj <<
-/D [4507 0 R /XYZ 71.731 646.311 null]
+994 0 obj <<
+/D [4992 0 R /XYZ 109.927 530.733 null]
 >> endobj
-4516 0 obj <<
-/D [4507 0 R /XYZ 191.435 636.812 null]
+5000 0 obj <<
+/D [4992 0 R /XYZ 71.731 525.627 null]
 >> endobj
-4517 0 obj <<
-/D [4507 0 R /XYZ 71.731 561.395 null]
+5001 0 obj <<
+/D [4992 0 R /XYZ 71.731 520.646 null]
 >> endobj
-942 0 obj <<
-/D [4507 0 R /XYZ 86.646 509.082 null]
+5002 0 obj <<
+/D [4992 0 R /XYZ 408.876 494.867 null]
 >> endobj
-2851 0 obj <<
-/D [4507 0 R /XYZ 71.731 498.753 null]
+5003 0 obj <<
+/D [4992 0 R /XYZ 91.656 481.916 null]
 >> endobj
-946 0 obj <<
-/D [4507 0 R /XYZ 109.927 485.801 null]
+3443 0 obj <<
+/D [4992 0 R /XYZ 71.731 456.511 null]
 >> endobj
-4518 0 obj <<
-/D [4507 0 R /XYZ 71.731 480.695 null]
+998 0 obj <<
+/D [4992 0 R /XYZ 126.336 443.56 null]
 >> endobj
-4519 0 obj <<
-/D [4507 0 R /XYZ 71.731 475.714 null]
+5004 0 obj <<
+/D [4992 0 R /XYZ 71.731 438.454 null]
 >> endobj
-4520 0 obj <<
-/D [4507 0 R /XYZ 400.225 449.936 null]
+5005 0 obj <<
+/D [4992 0 R /XYZ 71.731 433.473 null]
 >> endobj
-4521 0 obj <<
-/D [4507 0 R /XYZ 91.656 436.984 null]
+5006 0 obj <<
+/D [4992 0 R /XYZ 91.656 394.743 null]
 >> endobj
-3000 0 obj <<
-/D [4507 0 R /XYZ 71.731 411.58 null]
+5008 0 obj <<
+/D [4992 0 R /XYZ 71.731 345.926 null]
 >> endobj
-950 0 obj <<
-/D [4507 0 R /XYZ 126.336 398.628 null]
+1002 0 obj <<
+/D [4992 0 R /XYZ 87.803 293.613 null]
 >> endobj
-4522 0 obj <<
-/D [4507 0 R /XYZ 71.731 393.522 null]
+5009 0 obj <<
+/D [4992 0 R /XYZ 71.731 283.026 null]
 >> endobj
-4523 0 obj <<
-/D [4507 0 R /XYZ 71.731 388.541 null]
+1006 0 obj <<
+/D [4992 0 R /XYZ 106.959 270.332 null]
 >> endobj
-4524 0 obj <<
-/D [4507 0 R /XYZ 91.656 349.811 null]
+5010 0 obj <<
+/D [4992 0 R /XYZ 71.731 263.289 null]
 >> endobj
-4526 0 obj <<
-/D [4507 0 R /XYZ 71.731 300.994 null]
+5011 0 obj <<
+/D [4992 0 R /XYZ 71.731 258.307 null]
 >> endobj
-954 0 obj <<
-/D [4507 0 R /XYZ 87.803 248.681 null]
+5012 0 obj <<
+/D [4992 0 R /XYZ 135.305 247.418 null]
 >> endobj
-4527 0 obj <<
-/D [4507 0 R /XYZ 71.731 238.094 null]
+5013 0 obj <<
+/D [4992 0 R /XYZ 477.105 234.467 null]
 >> endobj
-958 0 obj <<
-/D [4507 0 R /XYZ 106.959 225.401 null]
+5014 0 obj <<
+/D [4992 0 R /XYZ 91.656 221.515 null]
 >> endobj
-4528 0 obj <<
-/D [4507 0 R /XYZ 71.731 218.357 null]
+5015 0 obj <<
+/D [4992 0 R /XYZ 71.731 198.601 null]
 >> endobj
-4529 0 obj <<
-/D [4507 0 R /XYZ 71.731 213.376 null]
+1010 0 obj <<
+/D [4992 0 R /XYZ 83.217 146.288 null]
 >> endobj
-4530 0 obj <<
-/D [4507 0 R /XYZ 132.503 202.487 null]
+5016 0 obj <<
+/D [4992 0 R /XYZ 71.731 135.701 null]
 >> endobj
-4531 0 obj <<
-/D [4507 0 R /XYZ 473.769 189.535 null]
+1014 0 obj <<
+/D [4992 0 R /XYZ 121.773 123.008 null]
 >> endobj
-4532 0 obj <<
-/D [4507 0 R /XYZ 91.656 176.584 null]
+5017 0 obj <<
+/D [4992 0 R /XYZ 71.731 115.964 null]
 >> endobj
-4533 0 obj <<
-/D [4507 0 R /XYZ 71.731 153.67 null]
+5018 0 obj <<
+/D [4992 0 R /XYZ 71.731 110.983 null]
 >> endobj
-4506 0 obj <<
-/Font << /F55 1844 0 R /F27 1064 0 R /F35 1229 0 R /F23 1057 0 R /F44 1440 0 R /F33 1160 0 R >>
+4991 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
-4536 0 obj <<
-/Length 1259      
+5021 0 obj <<
+/Length 1470      
 /Filter /FlateDecode
 >>
 stream
-xڭWK��6��Э2S")Jbn^�)t�6�CS�-[�J��G��w(��dy�9�^3Ù���v"�"
-�	��-|��_~{�F"CD���F��ԙ,<����:�G!��zߟ�S��z���a���C'���9����b���uF|W��Uvl�BtQ�pGh�1�j�j�W��Y��[)�7����k��6���f�]�?����UoP��%��u b���s��帰H�b���l��Q�g��V�����7ʓ���H���k�����;�`B\�(��MD�CR�	��։�AZ�ʦ��y�k�|�J��I?˽�&�Ȍ�,
��s�$2��RQ{�Om�}�w�}�V1��g*v�$�H!U�uR�.G~�6���N�Y�\��l�#������?Ͷ�89N�0�<���Y����c�m�1>�)���.�+vE�7��:ʜ�MVt���ں��MVz}T�y�b��R�	��*�a=��c��2c̵1BX�N�)��7���*���YaU��K�U���I|�2sjܵQ��4
,�(��<�JR[�I��3�<@��r���l�#crqZ7>���<�B81F�E�pϫ����Ԓ��V\~��%�(d�=�~�uݷVB���������B]���`�
)�~������"D���Ffr���m0:q/�qm�����x�ɝn3e.��6�}%�
8r�x�
W�8�_r������f��}������-�<U��p�U��{[@MzU�����-t�M&K3qjY�4;#G���V��MT�[��DPJz�=��s{|�������%��UP�y���X�P},th h� ������������
-�bn�Г�I��M*w�Z�\ـ�Yy0S�x�Cs8n�;ш
Ld҃��ǣbCK��L���j(-�Z��j���*�0�i��s/�idT����b!.���t8�/�.Up�ֶ�Am���a���F��I�3ږ�i���h�nU#Q��YV���*R?v}Yu��m��A�[�&f>���HL��gQ60�"eV�+��.$������}YG�ړn�����=�Z��V�:dȕ�^�s+s7�kC*��J��P���ahhw72��24�M�b�J��끾|mU_�(,U�W��Il՚�<]�a��~hQ0�,�c�@�e�JY O4I����b���{7����I/�Io�|�6����8�	���_D&�H|��FD9�}~}��!8=���oendstream
-endobj
-4535 0 obj <<
+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�e׫z�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
+endobj
+5020 0 obj <<
 /Type /Page
-/Contents 4536 0 R
-/Resources 4534 0 R
+/Contents 5021 0 R
+/Resources 5019 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4420 0 R
-/Annots [ 4551 0 R 4567 0 R ]
+/Parent 4990 0 R
+/Annots [ 5032 0 R 5048 0 R ]
 >> endobj
-4551 0 obj <<
+5032 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [224.746 433.782 257.473 442.694]
+/Rect [222.931 515.525 255.658 524.436]
 /Subtype /Link
 /A << /S /GoTo /D (gloss-rdbms) >>
 >> endobj
-4567 0 obj <<
+5048 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [342.364 280.358 387.195 289.269]
+/Rect [342.364 375.052 387.195 383.963]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql) >>
 >> endobj
-4537 0 obj <<
-/D [4535 0 R /XYZ 71.731 729.265 null]
->> endobj
-962 0 obj <<
-/D [4535 0 R /XYZ 83.217 703.68 null]
->> endobj
-4538 0 obj <<
-/D [4535 0 R /XYZ 71.731 693.093 null]
+5022 0 obj <<
+/D [5020 0 R /XYZ 71.731 729.265 null]
 >> endobj
-966 0 obj <<
-/D [4535 0 R /XYZ 121.773 680.4 null]
+1018 0 obj <<
+/D [5020 0 R /XYZ 88.939 651.05 null]
 >> endobj
-4539 0 obj <<
-/D [4535 0 R /XYZ 71.731 673.356 null]
+4409 0 obj <<
+/D [5020 0 R /XYZ 71.731 640.72 null]
 >> endobj
-4540 0 obj <<
-/D [4535 0 R /XYZ 71.731 668.375 null]
+1022 0 obj <<
+/D [5020 0 R /XYZ 193.573 627.769 null]
 >> endobj
-4541 0 obj <<
-/D [4535 0 R /XYZ 71.731 634.571 null]
+5023 0 obj <<
+/D [5020 0 R /XYZ 71.731 620.571 null]
 >> endobj
-970 0 obj <<
-/D [4535 0 R /XYZ 88.939 582.259 null]
+5024 0 obj <<
+/D [5020 0 R /XYZ 71.731 615.59 null]
 >> endobj
-3923 0 obj <<
-/D [4535 0 R /XYZ 71.731 571.929 null]
+5025 0 obj <<
+/D [5020 0 R /XYZ 91.656 591.903 null]
 >> endobj
-974 0 obj <<
-/D [4535 0 R /XYZ 193.573 558.978 null]
+5026 0 obj <<
+/D [5020 0 R /XYZ 438.655 591.903 null]
 >> endobj
-4542 0 obj <<
-/D [4535 0 R /XYZ 71.731 551.78 null]
+5027 0 obj <<
+/D [5020 0 R /XYZ 322.568 578.952 null]
 >> endobj
-4543 0 obj <<
-/D [4535 0 R /XYZ 71.731 546.799 null]
+5028 0 obj <<
+/D [5020 0 R /XYZ 447.32 578.952 null]
 >> endobj
-4544 0 obj <<
-/D [4535 0 R /XYZ 91.656 523.112 null]
+5029 0 obj <<
+/D [5020 0 R /XYZ 71.731 553.547 null]
 >> endobj
-4545 0 obj <<
-/D [4535 0 R /XYZ 91.656 510.161 null]
+1026 0 obj <<
+/D [5020 0 R /XYZ 106.052 540.596 null]
 >> endobj
-4546 0 obj <<
-/D [4535 0 R /XYZ 424.386 510.161 null]
+5030 0 obj <<
+/D [5020 0 R /XYZ 71.731 533.552 null]
 >> endobj
-4547 0 obj <<
-/D [4535 0 R /XYZ 101.898 497.209 null]
+5031 0 obj <<
+/D [5020 0 R /XYZ 71.731 528.571 null]
 >> endobj
-4548 0 obj <<
-/D [4535 0 R /XYZ 71.731 471.805 null]
+5033 0 obj <<
+/D [5020 0 R /XYZ 444.255 517.682 null]
 >> endobj
-978 0 obj <<
-/D [4535 0 R /XYZ 106.052 458.853 null]
+5034 0 obj <<
+/D [5020 0 R /XYZ 71.731 502.573 null]
 >> endobj
-4549 0 obj <<
-/D [4535 0 R /XYZ 71.731 451.81 null]
+5035 0 obj <<
+/D [5020 0 R /XYZ 71.731 487.629 null]
 >> endobj
-4550 0 obj <<
-/D [4535 0 R /XYZ 71.731 446.828 null]
+5036 0 obj <<
+/D [5020 0 R /XYZ 71.731 487.629 null]
 >> endobj
-4552 0 obj <<
-/D [4535 0 R /XYZ 91.656 422.988 null]
+5037 0 obj <<
+/D [5020 0 R /XYZ 71.731 474.678 null]
 >> endobj
-4553 0 obj <<
-/D [4535 0 R /XYZ 71.731 409.937 null]
+5038 0 obj <<
+/D [5020 0 R /XYZ 111.582 458.902 null]
 >> endobj
-4554 0 obj <<
-/D [4535 0 R /XYZ 71.731 394.993 null]
+5039 0 obj <<
+/D [5020 0 R /XYZ 71.731 446.783 null]
 >> endobj
-4555 0 obj <<
-/D [4535 0 R /XYZ 71.731 394.993 null]
+5040 0 obj <<
+/D [5020 0 R /XYZ 71.731 446.783 null]
 >> endobj
-4556 0 obj <<
-/D [4535 0 R /XYZ 71.731 379.984 null]
+5041 0 obj <<
+/D [5020 0 R /XYZ 71.731 433.831 null]
 >> endobj
-4557 0 obj <<
-/D [4535 0 R /XYZ 111.582 364.208 null]
+5042 0 obj <<
+/D [5020 0 R /XYZ 111.582 418.055 null]
 >> endobj
-4558 0 obj <<
-/D [4535 0 R /XYZ 71.731 352.089 null]
+5043 0 obj <<
+/D [5020 0 R /XYZ 315.276 418.055 null]
 >> endobj
-4559 0 obj <<
-/D [4535 0 R /XYZ 71.731 352.089 null]
+5044 0 obj <<
+/D [5020 0 R /XYZ 71.731 405.936 null]
 >> endobj
-4560 0 obj <<
-/D [4535 0 R /XYZ 71.731 339.137 null]
+5045 0 obj <<
+/D [5020 0 R /XYZ 71.731 405.936 null]
 >> endobj
-4561 0 obj <<
-/D [4535 0 R /XYZ 111.582 323.361 null]
+5046 0 obj <<
+/D [5020 0 R /XYZ 71.731 392.984 null]
 >> endobj
-4562 0 obj <<
-/D [4535 0 R /XYZ 315.276 323.361 null]
+5047 0 obj <<
+/D [5020 0 R /XYZ 111.582 377.208 null]
 >> endobj
-4563 0 obj <<
-/D [4535 0 R /XYZ 71.731 311.242 null]
+5049 0 obj <<
+/D [5020 0 R /XYZ 71.731 354.294 null]
 >> endobj
-4564 0 obj <<
-/D [4535 0 R /XYZ 71.731 311.242 null]
+1030 0 obj <<
+/D [5020 0 R /XYZ 85.51 301.982 null]
 >> endobj
-4565 0 obj <<
-/D [4535 0 R /XYZ 71.731 298.291 null]
+2476 0 obj <<
+/D [5020 0 R /XYZ 71.731 291.652 null]
 >> endobj
-4566 0 obj <<
-/D [4535 0 R /XYZ 111.582 282.515 null]
+1034 0 obj <<
+/D [5020 0 R /XYZ 176.696 278.701 null]
 >> endobj
-4568 0 obj <<
-/D [4535 0 R /XYZ 71.731 259.601 null]
+5050 0 obj <<
+/D [5020 0 R /XYZ 71.731 271.503 null]
 >> endobj
-982 0 obj <<
-/D [4535 0 R /XYZ 85.51 207.288 null]
+5051 0 obj <<
+/D [5020 0 R /XYZ 71.731 266.522 null]
 >> endobj
-1989 0 obj <<
-/D [4535 0 R /XYZ 71.731 196.958 null]
+5052 0 obj <<
+/D [5020 0 R /XYZ 71.731 266.522 null]
 >> endobj
-986 0 obj <<
-/D [4535 0 R /XYZ 176.696 184.007 null]
+2835 0 obj <<
+/D [5020 0 R /XYZ 71.731 230.382 null]
 >> endobj
-4569 0 obj <<
-/D [4535 0 R /XYZ 71.731 176.809 null]
+1038 0 obj <<
+/D [5020 0 R /XYZ 109.17 217.431 null]
 >> endobj
-4570 0 obj <<
-/D [4535 0 R /XYZ 71.731 171.828 null]
+5053 0 obj <<
+/D [5020 0 R /XYZ 71.731 212.325 null]
 >> endobj
-4571 0 obj <<
-/D [4535 0 R /XYZ 71.731 171.828 null]
+5054 0 obj <<
+/D [5020 0 R /XYZ 71.731 207.344 null]
 >> endobj
-4534 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F35 1229 0 R /F33 1160 0 R >>
+5019 0 obj <<
+/Font << /F23 1105 0 R /F27 1112 0 R /F35 1437 0 R /F33 1210 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4575 0 obj <<
-/Length 1157      
+5058 0 obj <<
+/Length 1292      
 /Filter /FlateDecode
 >>
 stream
-xڕVIo�6��W��jF�奷$3SL�Ij���F�%b(R �f2���q�%ۙI ��Ƿ|�ޒ�R��f댬��[���Y�^��N~�ʂ�r�"y�����,�d�)f����������m�vU�v��H�!�r9������$O�j�W6�g�ȯ����r��s�ͼ�M�����+�7�K��Y+��ˊZ�d�V���|�۹}�m�=�������T��B�{�u�&-��Ě�
����bS��ܾ$���P�/���ɪ���Y"��"��l�f�i*�[�aQ͠ϰ$/��b�(�7�T�;%�J�Ԫ���`��-
���S��M��Z��_>�e�`?��eê^C�p���P��X3k|�6(�2��c<��6$�gķE$P�+W�pI��x�>qm/�S�*�ߩ���+ٸ��3݃Oh�A5k��B��hUk���ʺ�5���j��>�-�Q�ud� ���c�W��m�Lz�k�ۈ��4��y��ꦯ��0xh&��6�~��R�3�Q��͉Ӧc�ʰ���b���p�P��`��ۻ��bě͒d���i���o\zN��$�t���0��y��=��H�<%�r�9Zl�z	�[�$�����V^�|��z�y��x���K������r<"7�‘�/�0���/Cj�^�ƍ1���b������[e�}Au�m�uԬ��;�Q-�k���/&%�̿Q˕�R}��y�w��$�F��T��I�#����&���X�Z.y����T�MLS�,���]�AsH�]}<:��c�Pa��
!�&����(��՗s��z
���v��M
<,?mJ�V�
��?�Q�M[¤<9n�Br� g*��kW��I
-ѷ���
-	1J��%�#�Z���7���[j����$E���L����X����E�� �ʳ��J���̓	d�7q��ӻcA��x�MD�
�L�`��ŦdNos�s�b�r����0�G�w��GV�X���eп�ZNQu�^P�޸�7���'Oe�����0��Ca��2����cPU���^�>�)k�_��;h{UhZn]��5�w?5#�m�O��`��#$�MS`���n��h�ܐM��8���Q����WB"��6jAdz,=5G�s[�{�=gendstream
-endobj
-4574 0 obj <<
+xڍ�n�6�=_a`/2`3�X����m�n��$��h��D
+$U7����C�Nb�A���xn<:����6	�d�IK���Y�_ų8�]%Ab�^�4O��\�ن�E6[�i��^]ߥ٬d�:�m�G#q���j����>ϳ8������7'��4�-Ӕ�		�Ic�|�e��`�sB�{��ܘ��=/�w݂��h�C�җ�Ljy��|�Ni0�1�'��y#����5�
�vB�/q��������X}�;�I��\�+L$s�@��gX*'�`��QF�2rpR5�N��%�c;V-a�?ҊbO!�b�
+@2Y����Ry@8H4x׽�ALp�A��<:C(���G���@�u�t�,��G|�c����CvV<��%���۱�!���.�,g�x�d��s�$1.}�,�)��4f�D%˲`���j�Y
+�Q��Q�h�H3���͛��K�f�7��7�����BI�X�!/�� ���8�ڜ����	7֎��J�F�������|��<)�fҬ��0O⓭Z�]���z��IM�9�,p'���n*��*3�����N`�!4I�HS�����
+���C�0Kߪ�X9��B8@�d?�$d䓛:�v����P�Hr�J�ҭ��݃wV_���������>s>AG���^}
�����7|w������sJ<4�9j���^T��SՉE�܎���<RbJ+U�9����w`JC�T.��a���&ķ|����_쪩κ��g]� :_WoaSD���
+�>q�Uq�y���O։�M݈!��3+��`eGV�빂��nI��}���_:x.�Z>wP��Tp��=�8.$���*���0\�^�4��������y�^'�x'��|Rތ8|.?|�Hѿ7�3ɡ�_uAP��v�Q1{�����Gl�X���롁�����rX���$�n������(��;�e�������������ᜭ�l�ڣF����/gQA��Sr,��7����j��*��7Y�7e�����W�
+�[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
+endobj
+5057 0 obj <<
 /Type /Page
-/Contents 4575 0 R
-/Resources 4573 0 R
+/Contents 5058 0 R
+/Resources 5056 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4600 0 R
+/Parent 4990 0 R
 >> endobj
-4576 0 obj <<
-/D [4574 0 R /XYZ 71.731 729.265 null]
+5059 0 obj <<
+/D [5057 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2357 0 obj <<
-/D [4574 0 R /XYZ 71.731 718.306 null]
+5060 0 obj <<
+/D [5057 0 R /XYZ 71.731 718.306 null]
 >> endobj
-990 0 obj <<
-/D [4574 0 R /XYZ 109.17 708.344 null]
+1042 0 obj <<
+/D [5057 0 R /XYZ 90.261 708.344 null]
 >> endobj
-4577 0 obj <<
-/D [4574 0 R /XYZ 71.731 703.238 null]
+5061 0 obj <<
+/D [5057 0 R /XYZ 71.731 703.238 null]
 >> endobj
-4578 0 obj <<
-/D [4574 0 R /XYZ 71.731 698.257 null]
+5062 0 obj <<
+/D [5057 0 R /XYZ 71.731 698.257 null]
 >> endobj
-4579 0 obj <<
-/D [4574 0 R /XYZ 71.731 634.122 null]
+5063 0 obj <<
+/D [5057 0 R /XYZ 134.824 659.527 null]
 >> endobj
-994 0 obj <<
-/D [4574 0 R /XYZ 90.261 621.171 null]
+5064 0 obj <<
+/D [5057 0 R /XYZ 71.731 636.613 null]
 >> endobj
-4580 0 obj <<
-/D [4574 0 R /XYZ 71.731 616.065 null]
+1046 0 obj <<
+/D [5057 0 R /XYZ 87.803 584.3 null]
 >> endobj
-4581 0 obj <<
-/D [4574 0 R /XYZ 71.731 611.083 null]
+5065 0 obj <<
+/D [5057 0 R /XYZ 71.731 572.897 null]
 >> endobj
-4582 0 obj <<
-/D [4574 0 R /XYZ 175.77 572.354 null]
+1050 0 obj <<
+/D [5057 0 R /XYZ 86.675 561.019 null]
 >> endobj
-4583 0 obj <<
-/D [4574 0 R /XYZ 71.731 549.44 null]
+5066 0 obj <<
+/D [5057 0 R /XYZ 71.731 555.52 null]
 >> endobj
-998 0 obj <<
-/D [4574 0 R /XYZ 87.803 497.127 null]
+5067 0 obj <<
+/D [5057 0 R /XYZ 71.731 550.539 null]
 >> endobj
-4584 0 obj <<
-/D [4574 0 R /XYZ 71.731 485.723 null]
+5068 0 obj <<
+/D [5057 0 R /XYZ 71.731 550.539 null]
 >> endobj
-1002 0 obj <<
-/D [4574 0 R /XYZ 86.675 473.846 null]
+5069 0 obj <<
+/D [5057 0 R /XYZ 119.841 538.105 null]
 >> endobj
-4585 0 obj <<
-/D [4574 0 R /XYZ 71.731 468.347 null]
+5070 0 obj <<
+/D [5057 0 R /XYZ 167.644 538.105 null]
 >> endobj
-4586 0 obj <<
-/D [4574 0 R /XYZ 71.731 463.365 null]
+5071 0 obj <<
+/D [5057 0 R /XYZ 249.411 538.105 null]
 >> endobj
-4587 0 obj <<
-/D [4574 0 R /XYZ 71.731 463.365 null]
+5072 0 obj <<
+/D [5057 0 R /XYZ 442.122 512.202 null]
 >> endobj
-4588 0 obj <<
-/D [4574 0 R /XYZ 119.841 450.932 null]
+5073 0 obj <<
+/D [5057 0 R /XYZ 71.731 476.337 null]
 >> endobj
-4589 0 obj <<
-/D [4574 0 R /XYZ 167.644 450.932 null]
+1054 0 obj <<
+/D [5057 0 R /XYZ 86.646 424.024 null]
 >> endobj
-4590 0 obj <<
-/D [4574 0 R /XYZ 249.411 450.932 null]
+5055 0 obj <<
+/D [5057 0 R /XYZ 71.731 413.695 null]
 >> endobj
-4591 0 obj <<
-/D [4574 0 R /XYZ 434.537 425.029 null]
+1058 0 obj <<
+/D [5057 0 R /XYZ 263.739 400.743 null]
 >> endobj
-4592 0 obj <<
-/D [4574 0 R /XYZ 71.731 389.164 null]
+5074 0 obj <<
+/D [5057 0 R /XYZ 71.731 393.545 null]
 >> endobj
-1006 0 obj <<
-/D [4574 0 R /XYZ 86.646 336.851 null]
+5075 0 obj <<
+/D [5057 0 R /XYZ 71.731 388.564 null]
 >> endobj
-4572 0 obj <<
-/D [4574 0 R /XYZ 71.731 326.522 null]
+5076 0 obj <<
+/D [5057 0 R /XYZ 71.731 339.473 null]
 >> endobj
-1010 0 obj <<
-/D [4574 0 R /XYZ 263.739 313.57 null]
+1062 0 obj <<
+/D [5057 0 R /XYZ 165.299 326.522 null]
 >> endobj
-4593 0 obj <<
-/D [4574 0 R /XYZ 71.731 306.372 null]
+5077 0 obj <<
+/D [5057 0 R /XYZ 71.731 319.324 null]
 >> endobj
-4594 0 obj <<
-/D [4574 0 R /XYZ 71.731 301.391 null]
+5078 0 obj <<
+/D [5057 0 R /XYZ 71.731 314.342 null]
 >> endobj
-4595 0 obj <<
-/D [4574 0 R /XYZ 71.731 252.3 null]
+5079 0 obj <<
+/D [5057 0 R /XYZ 476.554 303.607 null]
 >> endobj
-1014 0 obj <<
-/D [4574 0 R /XYZ 165.299 239.348 null]
+5080 0 obj <<
+/D [5057 0 R /XYZ 71.731 267.742 null]
 >> endobj
-4596 0 obj <<
-/D [4574 0 R /XYZ 71.731 232.151 null]
+1066 0 obj <<
+/D [5057 0 R /XYZ 85.51 215.429 null]
 >> endobj
-4597 0 obj <<
-/D [4574 0 R /XYZ 71.731 227.169 null]
+3302 0 obj <<
+/D [5057 0 R /XYZ 71.731 204.842 null]
 >> endobj
-4598 0 obj <<
-/D [4574 0 R /XYZ 349.905 216.434 null]
+1070 0 obj <<
+/D [5057 0 R /XYZ 107.277 192.148 null]
 >> endobj
-4599 0 obj <<
-/D [4574 0 R /XYZ 71.731 180.569 null]
+5081 0 obj <<
+/D [5057 0 R /XYZ 71.731 187.043 null]
 >> endobj
-4573 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F33 1160 0 R >>
+5082 0 obj <<
+/D [5057 0 R /XYZ 71.731 182.061 null]
+>> endobj
+5083 0 obj <<
+/D [5057 0 R /XYZ 383.963 156.283 null]
+>> endobj
+5056 0 obj <<
+/Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4603 0 obj <<
-/Length 1612      
+5086 0 obj <<
+/Length 1982      
 /Filter /FlateDecode
 >>
 stream
-xڍX˲�6��+��=c��l�Ѯ��ɴ��t&�$��Z�e�ʤJR�����"@=�4w��A@J&1���&�6K�KwQ��&��Y<)���g	Z���(�R8�qs�-7�n��,z+��?��U���q��v��1x��Q�\O����w����f�h�^:�x�H�`�x�g�$�>������M�(���4�%�����l�f���lO�,�,ͦ��_|���\��B+y����U��j�L�]Xq�x����V�,а�+�3+:���G�9ZY��f���
&�F����
:bJ.�fUuq1;H�0󐜙depr�}�':��s%�V�?��g����IThV�2,$�h�t����g�EW��t�sqR��U.���j7���Y�M�g�jv��������� ��ǧ!�J�[��!0�T���j�wy3ـS�pJ��{�Nj�|b�r-3���7O�^k�sl�,pG�� {�n0����mb ��+�������o�,ȵ�a{�9�㜅���6~>˲�R����� �_��	���˥����gr�ޙ	i�/T޸2b�zWfh�MM19�IHc9Cu��B5�Z��w����q�X�����fWWգ���0Ka����l��� �*�l�����q'Y��-w����p�4��(�� �;w9����
-�P]�rp��y�*;��n�@%��F�A�)��זE�YE�&�����8���v�I�����:]���ڑ�����QT!�}�!�E�2��b�`�Q���8��zV�8"��Sd�"�϶�LM�zvJ�u� 5�,J�$nk�o�C��u����m[���f;�M�b�O�a�-4�|X����VE�[O�Rz��v��P�.���@���ITCS�R[tK{�����6���,�(�F�m��|R�i�Y%N8��pW�v+pv����������9�A�-���5>���\�aB�D��
Az?�x���y�5ʨ:wdB�nH�E��Z���ڋ��*�
-A>����:$��PnC��n�8�@:T���H(��[��_�-��9��B�h9?���#��:�^�KR�
-��@�	D��&��}�n�� èL�ZG�!��F�x�PЖ�jG,(���|��'�k;��F�V�/��"P5���y'��\��q�]sr���LI�D�bFFӜ���U��XH���K(S�%^7h��+^�4�b���-�'!H��c�d��q�Ӽ�n���
-M�F�:�����(�_1�[�f�Sش��F����n*`�Ԟ��;=�#ӭ�*ϾJ���j�X�D����?7 �T*E��zBj��M���0d�4�1I�OqF�k�6?�5y�o��e�����}�D��{����n5VP�I��̍��S7���Z_h��G�~P8_A����Ǐ�-`�v��$,�$Z';��
-�z�3��B�~<�%
-!��9:@���w䝏y��[oi|P4�Imљ0گ��)�š0�zA��!7|�!�&%PAy����4�e����pm~E��p;� 0/u�00�!����ηĹS4��>>9�/�>�7�@�àJ�(�s7���̳_��~9Ym�m���-�I����~��f��~�&�*'��}ʹ���nĬendstream
-endobj
-4602 0 obj <<
+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
+endobj
+5085 0 obj <<
 /Type /Page
-/Contents 4603 0 R
-/Resources 4601 0 R
+/Contents 5086 0 R
+/Resources 5084 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4600 0 R
->> endobj
-4604 0 obj <<
-/D [4602 0 R /XYZ 71.731 729.265 null]
->> endobj
-1018 0 obj <<
-/D [4602 0 R /XYZ 85.51 703.236 null]
->> endobj
-2852 0 obj <<
-/D [4602 0 R /XYZ 71.731 692.649 null]
->> endobj
-1022 0 obj <<
-/D [4602 0 R /XYZ 107.277 679.955 null]
->> endobj
-4605 0 obj <<
-/D [4602 0 R /XYZ 71.731 674.85 null]
->> endobj
-4606 0 obj <<
-/D [4602 0 R /XYZ 71.731 669.868 null]
->> endobj
-4607 0 obj <<
-/D [4602 0 R /XYZ 378.867 644.09 null]
->> endobj
-4608 0 obj <<
-/D [4602 0 R /XYZ 71.731 605.734 null]
->> endobj
-4609 0 obj <<
-/D [4602 0 R /XYZ 71.731 605.734 null]
+/Parent 4990 0 R
 >> endobj
-1026 0 obj <<
-/D [4602 0 R /XYZ 103.282 592.782 null]
+5087 0 obj <<
+/D [5085 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4610 0 obj <<
-/D [4602 0 R /XYZ 71.731 587.676 null]
+5088 0 obj <<
+/D [5085 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4611 0 obj <<
-/D [4602 0 R /XYZ 71.731 582.695 null]
+5089 0 obj <<
+/D [5085 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4612 0 obj <<
-/D [4602 0 R /XYZ 71.731 582.695 null]
+1074 0 obj <<
+/D [5085 0 R /XYZ 103.282 708.344 null]
 >> endobj
-4613 0 obj <<
-/D [4602 0 R /XYZ 163.327 569.868 null]
+5090 0 obj <<
+/D [5085 0 R /XYZ 71.731 703.238 null]
 >> endobj
-4614 0 obj <<
-/D [4602 0 R /XYZ 403.504 556.917 null]
+5091 0 obj <<
+/D [5085 0 R /XYZ 71.731 698.257 null]
 >> endobj
-4615 0 obj <<
-/D [4602 0 R /XYZ 238.405 543.965 null]
+5092 0 obj <<
+/D [5085 0 R /XYZ 71.731 698.257 null]
 >> endobj
-4616 0 obj <<
-/D [4602 0 R /XYZ 240.895 543.965 null]
+5093 0 obj <<
+/D [5085 0 R /XYZ 166.836 685.43 null]
 >> endobj
-4617 0 obj <<
-/D [4602 0 R /XYZ 289.632 543.965 null]
+5094 0 obj <<
+/D [5085 0 R /XYZ 408.475 672.478 null]
 >> endobj
-4618 0 obj <<
-/D [4602 0 R /XYZ 434.219 543.965 null]
+5095 0 obj <<
+/D [5085 0 R /XYZ 243.467 659.527 null]
 >> endobj
-4619 0 obj <<
-/D [4602 0 R /XYZ 163.915 531.014 null]
+5096 0 obj <<
+/D [5085 0 R /XYZ 246.801 659.527 null]
 >> endobj
-4620 0 obj <<
-/D [4602 0 R /XYZ 476.31 531.014 null]
+5097 0 obj <<
+/D [5085 0 R /XYZ 298.91 659.527 null]
 >> endobj
-4621 0 obj <<
-/D [4602 0 R /XYZ 132.363 518.062 null]
+5098 0 obj <<
+/D [5085 0 R /XYZ 448.559 659.527 null]
 >> endobj
-4622 0 obj <<
-/D [4602 0 R /XYZ 71.731 495.148 null]
+5099 0 obj <<
+/D [5085 0 R /XYZ 164.884 646.575 null]
 >> endobj
-1030 0 obj <<
-/D [4602 0 R /XYZ 84.353 442.835 null]
+5100 0 obj <<
+/D [5085 0 R /XYZ 481.157 646.575 null]
 >> endobj
-4623 0 obj <<
-/D [4602 0 R /XYZ 71.731 432.506 null]
+5101 0 obj <<
+/D [5085 0 R /XYZ 132.363 633.624 null]
 >> endobj
-1034 0 obj <<
-/D [4602 0 R /XYZ 150.047 419.555 null]
+5102 0 obj <<
+/D [5085 0 R /XYZ 71.731 610.71 null]
 >> endobj
-4624 0 obj <<
-/D [4602 0 R /XYZ 71.731 412.357 null]
+1078 0 obj <<
+/D [5085 0 R /XYZ 84.353 558.397 null]
 >> endobj
-4625 0 obj <<
-/D [4602 0 R /XYZ 71.731 407.376 null]
+5103 0 obj <<
+/D [5085 0 R /XYZ 71.731 548.068 null]
 >> endobj
-4626 0 obj <<
-/D [4602 0 R /XYZ 192.963 383.689 null]
+1082 0 obj <<
+/D [5085 0 R /XYZ 150.047 535.116 null]
 >> endobj
-1806 0 obj <<
-/D [4602 0 R /XYZ 71.731 332.382 null]
+5104 0 obj <<
+/D [5085 0 R /XYZ 71.731 527.918 null]
 >> endobj
-1038 0 obj <<
-/D [4602 0 R /XYZ 193.264 319.43 null]
+5105 0 obj <<
+/D [5085 0 R /XYZ 71.731 522.937 null]
 >> endobj
-4627 0 obj <<
-/D [4602 0 R /XYZ 71.731 312.232 null]
+5106 0 obj <<
+/D [5085 0 R /XYZ 192.963 499.251 null]
 >> endobj
-4628 0 obj <<
-/D [4602 0 R /XYZ 71.731 307.251 null]
+2309 0 obj <<
+/D [5085 0 R /XYZ 71.731 447.943 null]
 >> endobj
-4629 0 obj <<
-/D [4602 0 R /XYZ 71.731 247.699 null]
+1086 0 obj <<
+/D [5085 0 R /XYZ 193.264 434.992 null]
 >> endobj
-1042 0 obj <<
-/D [4602 0 R /XYZ 84.353 195.386 null]
+5107 0 obj <<
+/D [5085 0 R /XYZ 71.731 427.794 null]
 >> endobj
-4630 0 obj <<
-/D [4602 0 R /XYZ 71.731 185.057 null]
+5108 0 obj <<
+/D [5085 0 R /XYZ 71.731 422.813 null]
 >> endobj
-1046 0 obj <<
-/D [4602 0 R /XYZ 163.964 172.106 null]
+5109 0 obj <<
+/D [5085 0 R /XYZ 71.731 363.261 null]
 >> endobj
-4631 0 obj <<
-/D [4602 0 R /XYZ 71.731 164.908 null]
+1090 0 obj <<
+/D [5085 0 R /XYZ 84.353 310.948 null]
 >> endobj
-4632 0 obj <<
-/D [4602 0 R /XYZ 71.731 159.927 null]
+5110 0 obj <<
+/D [5085 0 R /XYZ 71.731 300.619 null]
 >> endobj
-4633 0 obj <<
-/D [4602 0 R /XYZ 71.731 134.083 null]
+1094 0 obj <<
+/D [5085 0 R /XYZ 163.964 287.667 null]
 >> endobj
-4634 0 obj <<
-/D [4602 0 R /XYZ 71.731 124.121 null]
+5111 0 obj <<
+/D [5085 0 R /XYZ 71.731 280.469 null]
 >> endobj
-4601 0 obj <<
-/Font << /F23 1057 0 R /F27 1064 0 R /F33 1160 0 R >>
-/ProcSet [ /PDF /Text ]
+5112 0 obj <<
+/D [5085 0 R /XYZ 71.731 275.488 null]
 >> endobj
-4637 0 obj <<
-/Length 616       
-/Filter /FlateDecode
->>
-stream
-x�mTMs�0��W0�e���=53m�9����L�T,�\I����%ap<�e�ݷoK���	�h�iƂ�[��"_ĝH�SF���X��H�h��Z��L��e��: 1�)�<.p��A����|�=���8l�n'z���}�Y\5�����Xc���������"
-�k�s��'Rp_wD�Χi�~��9(��[�XK �����P(�_˵�#�\��;%�EmП���0��S�_o����	]>!z,�~����p@�6��EGJl�?����F�JF�i�qm����~�ەØ�Ѽ]�v;1al۾��,7��1�����+%g�d'B���7��A�kY�3�P���M���Ў������Q��F��?��<b�p�ء}��־��A��-z�����w#��K�w"w�6Œr�#�����E՚�g�̋����Zvx֪���uJt-L\!�B��7�ᮖ����~�m/�Q��+�u��gu�b5%����H:4���!m�H:��/������"�vr	�U��$�Di^�Ԥ��~��V���k�Oո��VL\����s'����K�������	���g9� �^���m�W�3l{endstream
-endobj
-4636 0 obj <<
-/Type /Page
-/Contents 4637 0 R
-/Resources 4635 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4600 0 R
+5113 0 obj <<
+/D [5085 0 R /XYZ 71.731 249.645 null]
 >> endobj
-4638 0 obj <<
-/D [4636 0 R /XYZ 71.731 729.265 null]
+5114 0 obj <<
+/D [5085 0 R /XYZ 71.731 239.682 null]
 >> endobj
-4639 0 obj <<
-/D [4636 0 R /XYZ 71.731 678.109 null]
+5115 0 obj <<
+/D [5085 0 R /XYZ 71.731 176.635 null]
 >> endobj
-4640 0 obj <<
-/D [4636 0 R /XYZ 469.856 645.081 null]
+5116 0 obj <<
+/D [5085 0 R /XYZ 469.856 143.607 null]
 >> endobj
-4635 0 obj <<
-/Font << /F27 1064 0 R /F33 1160 0 R >>
+5084 0 obj <<
+/Font << /F23 1105 0 R /F27 1112 0 R /F33 1210 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2030 0 obj <<
+2518 0 obj <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /ZapfDingbats
 >> endobj
-4641 0 obj <<
+5117 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
-1844 0 obj <<
+2335 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 4641 0 R
+/Encoding 5117 0 R
 /BaseFont /Courier-Bold
 >> endobj
-1687 0 obj <<
+2143 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 4641 0 R
+/Encoding 5117 0 R
 /BaseFont /Courier-Oblique
 >> endobj
-1452 0 obj <<
+1896 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 4641 0 R
+/Encoding 5117 0 R
 /BaseFont /Helvetica-Oblique
 >> endobj
-1440 0 obj <<
+1884 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 4641 0 R
+/Encoding 5117 0 R
 /BaseFont /Helvetica
 >> endobj
-1229 0 obj <<
+1437 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 4641 0 R
+/Encoding 5117 0 R
 /BaseFont /Courier
 >> endobj
-1160 0 obj <<
+1210 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 4641 0 R
+/Encoding 5117 0 R
 /BaseFont /Times-Italic
 >> endobj
-1071 0 obj <<
+1119 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 4641 0 R
+/Encoding 5117 0 R
 /BaseFont /Times-Bold
 >> endobj
-1064 0 obj <<
+1112 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 4641 0 R
+/Encoding 5117 0 R
 /BaseFont /Times-Roman
 >> endobj
-1057 0 obj <<
+1105 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 4641 0 R
+/Encoding 5117 0 R
 /BaseFont /Helvetica-Bold
 >> endobj
-1058 0 obj <<
+1106 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4642 0 R
-/Kids [1050 0 R 1060 0 R 1066 0 R 1206 0 R 1329 0 R 1354 0 R]
+/Parent 5118 0 R
+/Kids [1098 0 R 1108 0 R 1114 0 R 1257 0 R 1402 0 R 1543 0 R]
 >> endobj
-1434 0 obj <<
+1745 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4642 0 R
-/Kids [1381 0 R 1436 0 R 1446 0 R 1487 0 R 1521 0 R 1575 0 R]
+/Parent 5118 0 R
+/Kids [1688 0 R 1774 0 R 1799 0 R 1826 0 R 1880 0 R 1890 0 R]
 >> endobj
-1632 0 obj <<
+1949 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4642 0 R
-/Kids [1615 0 R 1634 0 R 1661 0 R 1700 0 R 1736 0 R 1777 0 R]
+/Parent 5118 0 R
+/Kids [1926 0 R 1952 0 R 1989 0 R 2047 0 R 2067 0 R 2091 0 R]
 >> endobj
-1853 0 obj <<
+2157 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4642 0 R
-/Kids [1808 0 R 1855 0 R 1894 0 R 1931 0 R 1964 0 R 1991 0 R]
+/Parent 5118 0 R
+/Kids [2118 0 R 2159 0 R 2203 0 R 2235 0 R 2277 0 R 2311 0 R]
 >> endobj
-2059 0 obj <<
+2376 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4642 0 R
-/Kids [2024 0 R 2061 0 R 2082 0 R 2113 0 R 2138 0 R 2167 0 R]
+/Parent 5118 0 R
+/Kids [2353 0 R 2378 0 R 2417 0 R 2453 0 R 2478 0 R 2495 0 R]
 >> endobj
-2222 0 obj <<
+2556 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4642 0 R
-/Kids [2192 0 R 2224 0 R 2252 0 R 2274 0 R 2311 0 R 2359 0 R]
+/Parent 5118 0 R
+/Kids [2541 0 R 2558 0 R 2589 0 R 2613 0 R 2642 0 R 2662 0 R]
 >> endobj
-2434 0 obj <<
+2704 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4643 0 R
-/Kids [2386 0 R 2436 0 R 2480 0 R 2518 0 R 2561 0 R 2594 0 R]
+/Parent 5119 0 R
+/Kids [2674 0 R 2706 0 R 2734 0 R 2754 0 R 2789 0 R 2837 0 R]
 >> endobj
-2665 0 obj <<
+2910 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4643 0 R
-/Kids [2623 0 R 2667 0 R 2691 0 R 2716 0 R 2745 0 R 2772 0 R]
+/Parent 5119 0 R
+/Kids [2864 0 R 2912 0 R 2952 0 R 2987 0 R 3030 0 R 3061 0 R]
 >> endobj
-2819 0 obj <<
+3129 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4643 0 R
-/Kids [2802 0 R 2821 0 R 2854 0 R 2886 0 R 2970 0 R 3002 0 R]
+/Parent 5119 0 R
+/Kids [3089 0 R 3131 0 R 3151 0 R 3175 0 R 3199 0 R 3226 0 R]
 >> endobj
-3060 0 obj <<
+3272 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4643 0 R
-/Kids [3033 0 R 3062 0 R 3102 0 R 3131 0 R 3162 0 R 3200 0 R]
+/Parent 5119 0 R
+/Kids [3256 0 R 3274 0 R 3304 0 R 3333 0 R 3415 0 R 3445 0 R]
 >> endobj
-3242 0 obj <<
+3499 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4643 0 R
-/Kids [3223 0 R 3244 0 R 3267 0 R 3297 0 R 3301 0 R 3305 0 R]
+/Parent 5119 0 R
+/Kids [3474 0 R 3501 0 R 3540 0 R 3569 0 R 3600 0 R 3638 0 R]
 >> endobj
-3327 0 obj <<
+3680 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4643 0 R
-/Kids [3309 0 R 3330 0 R 3345 0 R 3374 0 R 3433 0 R 3438 0 R]
+/Parent 5119 0 R
+/Kids [3661 0 R 3682 0 R 3704 0 R 3733 0 R 3737 0 R 3741 0 R]
 >> endobj
-3495 0 obj <<
+3760 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4644 0 R
-/Kids [3476 0 R 3497 0 R 3525 0 R 3543 0 R 3565 0 R 3589 0 R]
+/Parent 5120 0 R
+/Kids [3745 0 R 3762 0 R 3776 0 R 3805 0 R 3864 0 R 3874 0 R]
 >> endobj
-3643 0 obj <<
+3927 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4644 0 R
-/Kids [3625 0 R 3645 0 R 3663 0 R 3668 0 R 3699 0 R 3726 0 R]
+/Parent 5120 0 R
+/Kids [3908 0 R 3929 0 R 3951 0 R 3963 0 R 3983 0 R 4007 0 R]
 >> endobj
-3783 0 obj <<
+4057 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4644 0 R
-/Kids [3759 0 R 3785 0 R 3812 0 R 3847 0 R 3878 0 R 3925 0 R]
+/Parent 5120 0 R
+/Kids [4042 0 R 4059 0 R 4075 0 R 4096 0 R 4113 0 R 4121 0 R]
 >> endobj
-3989 0 obj <<
+4180 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4644 0 R
-/Kids [3955 0 R 3991 0 R 4024 0 R 4045 0 R 4076 0 R 4101 0 R]
+/Parent 5120 0 R
+/Kids [4152 0 R 4182 0 R 4212 0 R 4241 0 R 4267 0 R 4301 0 R]
 >> endobj
-4139 0 obj <<
+4357 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4644 0 R
-/Kids [4125 0 R 4141 0 R 4163 0 R 4177 0 R 4221 0 R 4249 0 R]
+/Parent 5120 0 R
+/Kids [4327 0 R 4359 0 R 4411 0 R 4439 0 R 4476 0 R 4506 0 R]
 >> endobj
-4307 0 obj <<
+4551 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4644 0 R
-/Kids [4279 0 R 4309 0 R 4333 0 R 4349 0 R 4360 0 R 4397 0 R]
+/Parent 5120 0 R
+/Kids [4541 0 R 4553 0 R 4580 0 R 4599 0 R 4618 0 R 4640 0 R]
 >> endobj
-4420 0 obj <<
+4700 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 4645 0 R
-/Kids [4409 0 R 4422 0 R 4429 0 R 4479 0 R 4507 0 R 4535 0 R]
+/Parent 5121 0 R
+/Kids [4657 0 R 4702 0 R 4730 0 R 4760 0 R 4789 0 R 4813 0 R]
 >> endobj
-4600 0 obj <<
+4839 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]
+>> endobj
+4990 0 obj <<
 /Type /Pages
-/Count 3
-/Parent 4645 0 R
-/Kids [4574 0 R 4602 0 R 4636 0 R]
+/Count 5
+/Parent 5121 0 R
+/Kids [4959 0 R 4992 0 R 5020 0 R 5057 0 R 5085 0 R]
 >> endobj
-4642 0 obj <<
+5118 0 obj <<
 /Type /Pages
 /Count 36
-/Parent 4646 0 R
-/Kids [1058 0 R 1434 0 R 1632 0 R 1853 0 R 2059 0 R 2222 0 R]
+/Parent 5122 0 R
+/Kids [1106 0 R 1745 0 R 1949 0 R 2157 0 R 2376 0 R 2556 0 R]
 >> endobj
-4643 0 obj <<
+5119 0 obj <<
 /Type /Pages
 /Count 36
-/Parent 4646 0 R
-/Kids [2434 0 R 2665 0 R 2819 0 R 3060 0 R 3242 0 R 3327 0 R]
+/Parent 5122 0 R
+/Kids [2704 0 R 2910 0 R 3129 0 R 3272 0 R 3499 0 R 3680 0 R]
 >> endobj
-4644 0 obj <<
+5120 0 obj <<
 /Type /Pages
 /Count 36
-/Parent 4646 0 R
-/Kids [3495 0 R 3643 0 R 3783 0 R 3989 0 R 4139 0 R 4307 0 R]
+/Parent 5122 0 R
+/Kids [3760 0 R 3927 0 R 4057 0 R 4180 0 R 4357 0 R 4551 0 R]
 >> endobj
-4645 0 obj <<
+5121 0 obj <<
 /Type /Pages
-/Count 9
-/Parent 4646 0 R
-/Kids [4420 0 R 4600 0 R]
+/Count 17
+/Parent 5122 0 R
+/Kids [4700 0 R 4839 0 R 4990 0 R]
 >> endobj
-4646 0 obj <<
+5122 0 obj <<
 /Type /Pages
-/Count 117
-/Kids [4642 0 R 4643 0 R 4644 0 R 4645 0 R]
+/Count 125
+/Kids [5118 0 R 5119 0 R 5120 0 R 5121 0 R]
 >> endobj
-4647 0 obj <<
+5123 0 obj <<
 /Type /Outlines
 /First 3 0 R
-/Last 1043 0 R
+/Last 1091 0 R
 /Count 30
 >> endobj
+1095 0 obj <<
+/Title 1096 0 R
+/A 1093 0 R
+/Parent 1091 0 R
+>> endobj
+1091 0 obj <<
+/Title 1092 0 R
+/A 1089 0 R
+/Parent 5123 0 R
+/Prev 1079 0 R
+/First 1095 0 R
+/Last 1095 0 R
+/Count -1
+>> endobj
+1087 0 obj <<
+/Title 1088 0 R
+/A 1085 0 R
+/Parent 1083 0 R
+>> endobj
+1083 0 obj <<
+/Title 1084 0 R
+/A 1081 0 R
+/Parent 1079 0 R
+/First 1087 0 R
+/Last 1087 0 R
+/Count -1
+>> endobj
+1079 0 obj <<
+/Title 1080 0 R
+/A 1077 0 R
+/Parent 5123 0 R
+/Prev 1067 0 R
+/Next 1091 0 R
+/First 1083 0 R
+/Last 1083 0 R
+/Count -1
+>> endobj
+1075 0 obj <<
+/Title 1076 0 R
+/A 1073 0 R
+/Parent 1071 0 R
+>> endobj
+1071 0 obj <<
+/Title 1072 0 R
+/A 1069 0 R
+/Parent 1067 0 R
+/First 1075 0 R
+/Last 1075 0 R
+/Count -1
+>> endobj
+1067 0 obj <<
+/Title 1068 0 R
+/A 1065 0 R
+/Parent 5123 0 R
+/Prev 1055 0 R
+/Next 1079 0 R
+/First 1071 0 R
+/Last 1071 0 R
+/Count -1
+>> endobj
+1063 0 obj <<
+/Title 1064 0 R
+/A 1061 0 R
+/Parent 1059 0 R
+>> endobj
+1059 0 obj <<
+/Title 1060 0 R
+/A 1057 0 R
+/Parent 1055 0 R
+/First 1063 0 R
+/Last 1063 0 R
+/Count -1
+>> endobj
+1055 0 obj <<
+/Title 1056 0 R
+/A 1053 0 R
+/Parent 5123 0 R
+/Prev 1047 0 R
+/Next 1067 0 R
+/First 1059 0 R
+/Last 1059 0 R
+/Count -1
+>> endobj
+1051 0 obj <<
+/Title 1052 0 R
+/A 1049 0 R
+/Parent 1047 0 R
+>> endobj
 1047 0 obj <<
 /Title 1048 0 R
 /A 1045 0 R
-/Parent 1043 0 R
+/Parent 5123 0 R
+/Prev 1031 0 R
+/Next 1055 0 R
+/First 1051 0 R
+/Last 1051 0 R
+/Count -1
 >> endobj
 1043 0 obj <<
 /Title 1044 0 R
 /A 1041 0 R
-/Parent 4647 0 R
-/Prev 1031 0 R
-/First 1047 0 R
-/Last 1047 0 R
-/Count -1
+/Parent 1035 0 R
+/Prev 1039 0 R
 >> endobj
 1039 0 obj <<
 /Title 1040 0 R
 /A 1037 0 R
 /Parent 1035 0 R
+/Next 1043 0 R
 >> endobj
 1035 0 obj <<
 /Title 1036 0 R
 /A 1033 0 R
 /Parent 1031 0 R
 /First 1039 0 R
-/Last 1039 0 R
-/Count -1
+/Last 1043 0 R
+/Count -2
 >> endobj
 1031 0 obj <<
 /Title 1032 0 R
 /A 1029 0 R
-/Parent 4647 0 R
+/Parent 5123 0 R
 /Prev 1019 0 R
-/Next 1043 0 R
+/Next 1047 0 R
 /First 1035 0 R
 /Last 1035 0 R
 /Count -1
@@ -16722,8 +19887,8 @@ endobj
 1019 0 obj <<
 /Title 1020 0 R
 /A 1017 0 R
-/Parent 4647 0 R
-/Prev 1007 0 R
+/Parent 5123 0 R
+/Prev 1011 0 R
 /Next 1031 0 R
 /First 1023 0 R
 /Last 1023 0 R
@@ -16737,7 +19902,9 @@ endobj
 1011 0 obj <<
 /Title 1012 0 R
 /A 1009 0 R
-/Parent 1007 0 R
+/Parent 5123 0 R
+/Prev 1003 0 R
+/Next 1019 0 R
 /First 1015 0 R
 /Last 1015 0 R
 /Count -1
@@ -16745,77 +19912,74 @@ endobj
 1007 0 obj <<
 /Title 1008 0 R
 /A 1005 0 R
-/Parent 4647 0 R
-/Prev 999 0 R
-/Next 1019 0 R
-/First 1011 0 R
-/Last 1011 0 R
-/Count -1
+/Parent 1003 0 R
 >> endobj
 1003 0 obj <<
 /Title 1004 0 R
 /A 1001 0 R
-/Parent 999 0 R
+/Parent 5123 0 R
+/Prev 991 0 R
+/Next 1011 0 R
+/First 1007 0 R
+/Last 1007 0 R
+/Count -1
 >> endobj
 999 0 obj <<
 /Title 1000 0 R
 /A 997 0 R
-/Parent 4647 0 R
-/Prev 983 0 R
-/Next 1007 0 R
-/First 1003 0 R
-/Last 1003 0 R
-/Count -1
+/Parent 995 0 R
 >> endobj
 995 0 obj <<
 /Title 996 0 R
 /A 993 0 R
-/Parent 987 0 R
-/Prev 991 0 R
+/Parent 991 0 R
+/First 999 0 R
+/Last 999 0 R
+/Count -1
 >> endobj
 991 0 obj <<
 /Title 992 0 R
 /A 989 0 R
-/Parent 987 0 R
-/Next 995 0 R
+/Parent 5123 0 R
+/Prev 971 0 R
+/Next 1003 0 R
+/First 995 0 R
+/Last 995 0 R
+/Count -1
 >> endobj
 987 0 obj <<
 /Title 988 0 R
 /A 985 0 R
-/Parent 983 0 R
-/First 991 0 R
-/Last 995 0 R
-/Count -2
+/Parent 975 0 R
+/Prev 983 0 R
 >> endobj
 983 0 obj <<
 /Title 984 0 R
 /A 981 0 R
-/Parent 4647 0 R
-/Prev 971 0 R
-/Next 999 0 R
-/First 987 0 R
-/Last 987 0 R
-/Count -1
+/Parent 975 0 R
+/Prev 979 0 R
+/Next 987 0 R
 >> endobj
 979 0 obj <<
 /Title 980 0 R
 /A 977 0 R
 /Parent 975 0 R
+/Next 983 0 R
 >> endobj
 975 0 obj <<
 /Title 976 0 R
 /A 973 0 R
 /Parent 971 0 R
 /First 979 0 R
-/Last 979 0 R
-/Count -1
+/Last 987 0 R
+/Count -3
 >> endobj
 971 0 obj <<
 /Title 972 0 R
 /A 969 0 R
-/Parent 4647 0 R
-/Prev 963 0 R
-/Next 983 0 R
+/Parent 5123 0 R
+/Prev 955 0 R
+/Next 991 0 R
 /First 975 0 R
 /Last 975 0 R
 /Count -1
@@ -16823,29 +19987,29 @@ endobj
 967 0 obj <<
 /Title 968 0 R
 /A 965 0 R
-/Parent 963 0 R
+/Parent 959 0 R
+/Prev 963 0 R
 >> endobj
 963 0 obj <<
 /Title 964 0 R
 /A 961 0 R
-/Parent 4647 0 R
-/Prev 955 0 R
-/Next 971 0 R
-/First 967 0 R
-/Last 967 0 R
-/Count -1
+/Parent 959 0 R
+/Next 967 0 R
 >> endobj
 959 0 obj <<
 /Title 960 0 R
 /A 957 0 R
 /Parent 955 0 R
+/First 963 0 R
+/Last 967 0 R
+/Count -2
 >> endobj
 955 0 obj <<
 /Title 956 0 R
 /A 953 0 R
-/Parent 4647 0 R
+/Parent 5123 0 R
 /Prev 943 0 R
-/Next 963 0 R
+/Next 971 0 R
 /First 959 0 R
 /Last 959 0 R
 /Count -1
@@ -16866,8 +20030,8 @@ endobj
 943 0 obj <<
 /Title 944 0 R
 /A 941 0 R
-/Parent 4647 0 R
-/Prev 923 0 R
+/Parent 5123 0 R
+/Prev 935 0 R
 /Next 955 0 R
 /First 947 0 R
 /Last 947 0 R
@@ -16876,241 +20040,236 @@ endobj
 939 0 obj <<
 /Title 940 0 R
 /A 937 0 R
-/Parent 927 0 R
-/Prev 935 0 R
+/Parent 935 0 R
 >> endobj
 935 0 obj <<
 /Title 936 0 R
 /A 933 0 R
-/Parent 927 0 R
+/Parent 5123 0 R
 /Prev 931 0 R
-/Next 939 0 R
+/Next 943 0 R
+/First 939 0 R
+/Last 939 0 R
+/Count -1
 >> endobj
 931 0 obj <<
 /Title 932 0 R
 /A 929 0 R
-/Parent 927 0 R
+/Parent 5123 0 R
+/Prev 879 0 R
 /Next 935 0 R
 >> endobj
 927 0 obj <<
 /Title 928 0 R
 /A 925 0 R
-/Parent 923 0 R
-/First 931 0 R
-/Last 939 0 R
-/Count -3
+/Parent 879 0 R
+/Prev 923 0 R
 >> endobj
 923 0 obj <<
 /Title 924 0 R
 /A 921 0 R
-/Parent 4647 0 R
-/Prev 907 0 R
-/Next 943 0 R
-/First 927 0 R
-/Last 927 0 R
-/Count -1
+/Parent 879 0 R
+/Prev 919 0 R
+/Next 927 0 R
 >> endobj
 919 0 obj <<
 /Title 920 0 R
 /A 917 0 R
-/Parent 911 0 R
+/Parent 879 0 R
 /Prev 915 0 R
+/Next 923 0 R
 >> endobj
 915 0 obj <<
 /Title 916 0 R
 /A 913 0 R
-/Parent 911 0 R
+/Parent 879 0 R
+/Prev 911 0 R
 /Next 919 0 R
 >> endobj
 911 0 obj <<
 /Title 912 0 R
 /A 909 0 R
-/Parent 907 0 R
-/First 915 0 R
-/Last 919 0 R
-/Count -2
+/Parent 879 0 R
+/Prev 907 0 R
+/Next 915 0 R
 >> endobj
 907 0 obj <<
 /Title 908 0 R
 /A 905 0 R
-/Parent 4647 0 R
-/Prev 895 0 R
-/Next 923 0 R
-/First 911 0 R
-/Last 911 0 R
-/Count -1
+/Parent 879 0 R
+/Prev 903 0 R
+/Next 911 0 R
 >> endobj
 903 0 obj <<
 /Title 904 0 R
 /A 901 0 R
-/Parent 899 0 R
+/Parent 879 0 R
+/Prev 899 0 R
+/Next 907 0 R
 >> endobj
 899 0 obj <<
 /Title 900 0 R
 /A 897 0 R
-/Parent 895 0 R
-/First 903 0 R
-/Last 903 0 R
-/Count -1
+/Parent 879 0 R
+/Prev 895 0 R
+/Next 903 0 R
 >> endobj
 895 0 obj <<
 /Title 896 0 R
 /A 893 0 R
-/Parent 4647 0 R
-/Prev 887 0 R
-/Next 907 0 R
-/First 899 0 R
-/Last 899 0 R
-/Count -1
+/Parent 879 0 R
+/Prev 891 0 R
+/Next 899 0 R
 >> endobj
 891 0 obj <<
 /Title 892 0 R
 /A 889 0 R
-/Parent 887 0 R
+/Parent 879 0 R
+/Prev 887 0 R
+/Next 895 0 R
 >> endobj
 887 0 obj <<
 /Title 888 0 R
 /A 885 0 R
-/Parent 4647 0 R
+/Parent 879 0 R
 /Prev 883 0 R
-/Next 895 0 R
-/First 891 0 R
-/Last 891 0 R
-/Count -1
+/Next 891 0 R
 >> endobj
 883 0 obj <<
 /Title 884 0 R
 /A 881 0 R
-/Parent 4647 0 R
-/Prev 831 0 R
+/Parent 879 0 R
 /Next 887 0 R
 >> endobj
 879 0 obj <<
 /Title 880 0 R
 /A 877 0 R
-/Parent 831 0 R
-/Prev 875 0 R
+/Parent 5123 0 R
+/Prev 863 0 R
+/Next 931 0 R
+/First 883 0 R
+/Last 927 0 R
+/Count -12
 >> endobj
 875 0 obj <<
 /Title 876 0 R
 /A 873 0 R
-/Parent 831 0 R
+/Parent 863 0 R
 /Prev 871 0 R
-/Next 879 0 R
 >> endobj
 871 0 obj <<
 /Title 872 0 R
 /A 869 0 R
-/Parent 831 0 R
+/Parent 863 0 R
 /Prev 867 0 R
 /Next 875 0 R
 >> endobj
 867 0 obj <<
 /Title 868 0 R
 /A 865 0 R
-/Parent 831 0 R
-/Prev 863 0 R
+/Parent 863 0 R
 /Next 871 0 R
 >> endobj
 863 0 obj <<
 /Title 864 0 R
 /A 861 0 R
-/Parent 831 0 R
-/Prev 859 0 R
-/Next 867 0 R
+/Parent 5123 0 R
+/Prev 851 0 R
+/Next 879 0 R
+/First 867 0 R
+/Last 875 0 R
+/Count -3
 >> endobj
 859 0 obj <<
 /Title 860 0 R
 /A 857 0 R
-/Parent 831 0 R
+/Parent 851 0 R
 /Prev 855 0 R
-/Next 863 0 R
 >> endobj
 855 0 obj <<
 /Title 856 0 R
 /A 853 0 R
-/Parent 831 0 R
-/Prev 851 0 R
+/Parent 851 0 R
 /Next 859 0 R
 >> endobj
 851 0 obj <<
 /Title 852 0 R
 /A 849 0 R
-/Parent 831 0 R
-/Prev 847 0 R
-/Next 855 0 R
+/Parent 5123 0 R
+/Prev 803 0 R
+/Next 863 0 R
+/First 855 0 R
+/Last 859 0 R
+/Count -2
 >> endobj
 847 0 obj <<
 /Title 848 0 R
 /A 845 0 R
-/Parent 831 0 R
+/Parent 803 0 R
 /Prev 843 0 R
-/Next 851 0 R
 >> endobj
 843 0 obj <<
 /Title 844 0 R
 /A 841 0 R
-/Parent 831 0 R
+/Parent 803 0 R
 /Prev 839 0 R
 /Next 847 0 R
 >> endobj
 839 0 obj <<
 /Title 840 0 R
 /A 837 0 R
-/Parent 831 0 R
+/Parent 803 0 R
 /Prev 835 0 R
 /Next 843 0 R
 >> endobj
 835 0 obj <<
 /Title 836 0 R
 /A 833 0 R
-/Parent 831 0 R
+/Parent 803 0 R
+/Prev 831 0 R
 /Next 839 0 R
 >> endobj
 831 0 obj <<
 /Title 832 0 R
 /A 829 0 R
-/Parent 4647 0 R
-/Prev 815 0 R
-/Next 883 0 R
-/First 835 0 R
-/Last 879 0 R
-/Count -12
+/Parent 803 0 R
+/Prev 827 0 R
+/Next 835 0 R
 >> endobj
 827 0 obj <<
 /Title 828 0 R
 /A 825 0 R
-/Parent 815 0 R
+/Parent 803 0 R
 /Prev 823 0 R
+/Next 831 0 R
 >> endobj
 823 0 obj <<
 /Title 824 0 R
 /A 821 0 R
-/Parent 815 0 R
+/Parent 803 0 R
 /Prev 819 0 R
 /Next 827 0 R
 >> endobj
 819 0 obj <<
 /Title 820 0 R
 /A 817 0 R
-/Parent 815 0 R
+/Parent 803 0 R
+/Prev 815 0 R
 /Next 823 0 R
 >> endobj
 815 0 obj <<
 /Title 816 0 R
 /A 813 0 R
-/Parent 4647 0 R
-/Prev 803 0 R
-/Next 831 0 R
-/First 819 0 R
-/Last 827 0 R
-/Count -3
+/Parent 803 0 R
+/Prev 811 0 R
+/Next 819 0 R
 >> endobj
 811 0 obj <<
 /Title 812 0 R
 /A 809 0 R
 /Parent 803 0 R
 /Prev 807 0 R
+/Next 815 0 R
 >> endobj
 807 0 obj <<
 /Title 808 0 R
@@ -17121,73 +20280,72 @@ endobj
 803 0 obj <<
 /Title 804 0 R
 /A 801 0 R
-/Parent 4647 0 R
-/Prev 755 0 R
-/Next 815 0 R
+/Parent 5123 0 R
+/Prev 799 0 R
+/Next 851 0 R
 /First 807 0 R
-/Last 811 0 R
-/Count -2
+/Last 847 0 R
+/Count -11
 >> endobj
 799 0 obj <<
 /Title 800 0 R
 /A 797 0 R
-/Parent 755 0 R
-/Prev 795 0 R
+/Parent 5123 0 R
+/Prev 639 0 R
+/Next 803 0 R
 >> endobj
 795 0 obj <<
 /Title 796 0 R
 /A 793 0 R
-/Parent 755 0 R
+/Parent 779 0 R
 /Prev 791 0 R
-/Next 799 0 R
 >> endobj
 791 0 obj <<
 /Title 792 0 R
 /A 789 0 R
-/Parent 755 0 R
+/Parent 779 0 R
 /Prev 787 0 R
 /Next 795 0 R
 >> endobj
 787 0 obj <<
 /Title 788 0 R
 /A 785 0 R
-/Parent 755 0 R
+/Parent 779 0 R
 /Prev 783 0 R
 /Next 791 0 R
 >> endobj
 783 0 obj <<
 /Title 784 0 R
 /A 781 0 R
-/Parent 755 0 R
-/Prev 779 0 R
+/Parent 779 0 R
 /Next 787 0 R
 >> endobj
 779 0 obj <<
 /Title 780 0 R
 /A 777 0 R
-/Parent 755 0 R
+/Parent 639 0 R
 /Prev 775 0 R
-/Next 783 0 R
+/First 783 0 R
+/Last 795 0 R
+/Count -4
 >> endobj
 775 0 obj <<
 /Title 776 0 R
 /A 773 0 R
-/Parent 755 0 R
-/Prev 771 0 R
+/Parent 639 0 R
+/Prev 755 0 R
 /Next 779 0 R
 >> endobj
 771 0 obj <<
 /Title 772 0 R
 /A 769 0 R
-/Parent 755 0 R
+/Parent 763 0 R
 /Prev 767 0 R
-/Next 775 0 R
 >> endobj
 767 0 obj <<
 /Title 768 0 R
 /A 765 0 R
-/Parent 755 0 R
-/Prev 763 0 R
+/Parent 763 0 R
 /Next 771 0 R
 >> endobj
 763 0 obj <<
@@ -17195,7 +20353,9 @@ endobj
 /A 761 0 R
 /Parent 755 0 R
 /Prev 759 0 R
-/Next 767 0 R
+/First 767 0 R
+/Last 771 0 R
+/Count -2
 >> endobj
 759 0 obj <<
 /Title 760 0 R
@@ -17206,778 +20366,778 @@ endobj
 755 0 obj <<
 /Title 756 0 R
 /A 753 0 R
-/Parent 4647 0 R
-/Prev 751 0 R
-/Next 803 0 R
+/Parent 639 0 R
+/Prev 739 0 R
+/Next 775 0 R
 /First 759 0 R
-/Last 799 0 R
-/Count -11
+/Last 763 0 R
+/Count -2
 >> endobj
 751 0 obj <<
 /Title 752 0 R
 /A 749 0 R
-/Parent 4647 0 R
-/Prev 611 0 R
-/Next 755 0 R
+/Parent 739 0 R
+/Prev 747 0 R
 >> endobj
 747 0 obj <<
 /Title 748 0 R
 /A 745 0 R
-/Parent 611 0 R
-/Prev 727 0 R
+/Parent 739 0 R
+/Prev 743 0 R
+/Next 751 0 R
 >> endobj
 743 0 obj <<
 /Title 744 0 R
 /A 741 0 R
-/Parent 735 0 R
-/Prev 739 0 R
+/Parent 739 0 R
+/Next 747 0 R
 >> endobj
 739 0 obj <<
 /Title 740 0 R
 /A 737 0 R
-/Parent 735 0 R
-/Next 743 0 R
+/Parent 639 0 R
+/Prev 719 0 R
+/Next 755 0 R
+/First 743 0 R
+/Last 751 0 R
+/Count -3
 >> endobj
 735 0 obj <<
 /Title 736 0 R
 /A 733 0 R
-/Parent 727 0 R
+/Parent 719 0 R
 /Prev 731 0 R
-/First 739 0 R
-/Last 743 0 R
-/Count -2
 >> endobj
 731 0 obj <<
 /Title 732 0 R
 /A 729 0 R
-/Parent 727 0 R
+/Parent 719 0 R
+/Prev 727 0 R
 /Next 735 0 R
 >> endobj
 727 0 obj <<
 /Title 728 0 R
 /A 725 0 R
-/Parent 611 0 R
-/Prev 711 0 R
-/Next 747 0 R
-/First 731 0 R
-/Last 735 0 R
-/Count -2
+/Parent 719 0 R
+/Prev 723 0 R
+/Next 731 0 R
 >> endobj
 723 0 obj <<
 /Title 724 0 R
 /A 721 0 R
-/Parent 711 0 R
-/Prev 719 0 R
+/Parent 719 0 R
+/Next 727 0 R
 >> endobj
 719 0 obj <<
 /Title 720 0 R
 /A 717 0 R
-/Parent 711 0 R
-/Prev 715 0 R
-/Next 723 0 R
+/Parent 639 0 R
+/Prev 687 0 R
+/Next 739 0 R
+/First 723 0 R
+/Last 735 0 R
+/Count -4
 >> endobj
 715 0 obj <<
 /Title 716 0 R
 /A 713 0 R
-/Parent 711 0 R
-/Next 719 0 R
+/Parent 687 0 R
+/Prev 711 0 R
 >> endobj
 711 0 obj <<
 /Title 712 0 R
 /A 709 0 R
-/Parent 611 0 R
-/Prev 691 0 R
-/Next 727 0 R
-/First 715 0 R
-/Last 723 0 R
-/Count -3
+/Parent 687 0 R
+/Prev 707 0 R
+/Next 715 0 R
 >> endobj
 707 0 obj <<
 /Title 708 0 R
 /A 705 0 R
-/Parent 691 0 R
+/Parent 687 0 R
 /Prev 703 0 R
+/Next 711 0 R
 >> endobj
 703 0 obj <<
 /Title 704 0 R
 /A 701 0 R
-/Parent 691 0 R
+/Parent 687 0 R
 /Prev 699 0 R
 /Next 707 0 R
 >> endobj
 699 0 obj <<
 /Title 700 0 R
 /A 697 0 R
-/Parent 691 0 R
+/Parent 687 0 R
 /Prev 695 0 R
 /Next 703 0 R
 >> endobj
 695 0 obj <<
 /Title 696 0 R
 /A 693 0 R
-/Parent 691 0 R
+/Parent 687 0 R
+/Prev 691 0 R
 /Next 699 0 R
 >> endobj
 691 0 obj <<
 /Title 692 0 R
 /A 689 0 R
-/Parent 611 0 R
-/Prev 659 0 R
-/Next 711 0 R
-/First 695 0 R
-/Last 707 0 R
-/Count -4
+/Parent 687 0 R
+/Next 695 0 R
 >> endobj
 687 0 obj <<
 /Title 688 0 R
 /A 685 0 R
-/Parent 659 0 R
+/Parent 639 0 R
 /Prev 683 0 R
+/Next 719 0 R
+/First 691 0 R
+/Last 715 0 R
+/Count -7
 >> endobj
 683 0 obj <<
 /Title 684 0 R
 /A 681 0 R
-/Parent 659 0 R
+/Parent 639 0 R
 /Prev 679 0 R
 /Next 687 0 R
 >> endobj
 679 0 obj <<
 /Title 680 0 R
 /A 677 0 R
-/Parent 659 0 R
-/Prev 675 0 R
+/Parent 639 0 R
+/Prev 659 0 R
 /Next 683 0 R
 >> endobj
 675 0 obj <<
 /Title 676 0 R
 /A 673 0 R
-/Parent 659 0 R
+/Parent 663 0 R
 /Prev 671 0 R
-/Next 679 0 R
 >> endobj
 671 0 obj <<
 /Title 672 0 R
 /A 669 0 R
-/Parent 659 0 R
+/Parent 663 0 R
 /Prev 667 0 R
 /Next 675 0 R
 >> endobj
 667 0 obj <<
 /Title 668 0 R
 /A 665 0 R
-/Parent 659 0 R
-/Prev 663 0 R
+/Parent 663 0 R
 /Next 671 0 R
 >> endobj
 663 0 obj <<
 /Title 664 0 R
 /A 661 0 R
 /Parent 659 0 R
-/Next 667 0 R
+/First 667 0 R
+/Last 675 0 R
+/Count -3
 >> endobj
 659 0 obj <<
 /Title 660 0 R
 /A 657 0 R
-/Parent 611 0 R
+/Parent 639 0 R
 /Prev 655 0 R
-/Next 691 0 R
+/Next 679 0 R
 /First 663 0 R
-/Last 687 0 R
-/Count -7
+/Last 663 0 R
+/Count -1
 >> endobj
 655 0 obj <<
 /Title 656 0 R
 /A 653 0 R
-/Parent 611 0 R
+/Parent 639 0 R
 /Prev 651 0 R
 /Next 659 0 R
 >> endobj
 651 0 obj <<
 /Title 652 0 R
 /A 649 0 R
-/Parent 611 0 R
-/Prev 631 0 R
+/Parent 639 0 R
+/Prev 647 0 R
 /Next 655 0 R
 >> endobj
 647 0 obj <<
 /Title 648 0 R
 /A 645 0 R
-/Parent 635 0 R
+/Parent 639 0 R
 /Prev 643 0 R
+/Next 651 0 R
 >> endobj
 643 0 obj <<
 /Title 644 0 R
 /A 641 0 R
-/Parent 635 0 R
-/Prev 639 0 R
+/Parent 639 0 R
 /Next 647 0 R
 >> endobj
 639 0 obj <<
 /Title 640 0 R
 /A 637 0 R
-/Parent 635 0 R
-/Next 643 0 R
+/Parent 5123 0 R
+/Prev 559 0 R
+/Next 799 0 R
+/First 643 0 R
+/Last 779 0 R
+/Count -13
 >> endobj
 635 0 obj <<
 /Title 636 0 R
 /A 633 0 R
-/Parent 631 0 R
-/First 639 0 R
-/Last 647 0 R
-/Count -3
+/Parent 615 0 R
+/Prev 631 0 R
 >> endobj
 631 0 obj <<
 /Title 632 0 R
 /A 629 0 R
-/Parent 611 0 R
+/Parent 615 0 R
 /Prev 627 0 R
-/Next 651 0 R
-/First 635 0 R
-/Last 635 0 R
-/Count -1
+/Next 635 0 R
 >> endobj
 627 0 obj <<
 /Title 628 0 R
 /A 625 0 R
-/Parent 611 0 R
+/Parent 615 0 R
 /Prev 623 0 R
 /Next 631 0 R
 >> endobj
 623 0 obj <<
 /Title 624 0 R
 /A 621 0 R
-/Parent 611 0 R
+/Parent 615 0 R
 /Prev 619 0 R
 /Next 627 0 R
 >> endobj
 619 0 obj <<
 /Title 620 0 R
 /A 617 0 R
-/Parent 611 0 R
-/Prev 615 0 R
+/Parent 615 0 R
 /Next 623 0 R
 >> endobj
 615 0 obj <<
 /Title 616 0 R
 /A 613 0 R
-/Parent 611 0 R
-/Next 619 0 R
+/Parent 559 0 R
+/Prev 603 0 R
+/First 619 0 R
+/Last 635 0 R
+/Count -5
 >> endobj
 611 0 obj <<
 /Title 612 0 R
 /A 609 0 R
-/Parent 4647 0 R
-/Prev 531 0 R
-/Next 751 0 R
-/First 615 0 R
-/Last 747 0 R
-/Count -12
+/Parent 607 0 R
 >> endobj
 607 0 obj <<
 /Title 608 0 R
 /A 605 0 R
-/Parent 587 0 R
-/Prev 603 0 R
+/Parent 603 0 R
+/First 611 0 R
+/Last 611 0 R
+/Count -1
 >> endobj
 603 0 obj <<
 /Title 604 0 R
 /A 601 0 R
-/Parent 587 0 R
+/Parent 559 0 R
 /Prev 599 0 R
-/Next 607 0 R
+/Next 615 0 R
+/First 607 0 R
+/Last 607 0 R
+/Count -1
 >> endobj
 599 0 obj <<
 /Title 600 0 R
 /A 597 0 R
-/Parent 587 0 R
+/Parent 559 0 R
 /Prev 595 0 R
 /Next 603 0 R
 >> endobj
 595 0 obj <<
 /Title 596 0 R
 /A 593 0 R
-/Parent 587 0 R
+/Parent 559 0 R
 /Prev 591 0 R
 /Next 599 0 R
 >> endobj
 591 0 obj <<
 /Title 592 0 R
 /A 589 0 R
-/Parent 587 0 R
+/Parent 559 0 R
+/Prev 563 0 R
 /Next 595 0 R
 >> endobj
 587 0 obj <<
 /Title 588 0 R
 /A 585 0 R
-/Parent 531 0 R
-/Prev 575 0 R
-/First 591 0 R
-/Last 607 0 R
-/Count -5
+/Parent 563 0 R
+/Prev 583 0 R
 >> endobj
 583 0 obj <<
 /Title 584 0 R
 /A 581 0 R
-/Parent 579 0 R
+/Parent 563 0 R
+/Prev 579 0 R
+/Next 587 0 R
 >> endobj
 579 0 obj <<
 /Title 580 0 R
 /A 577 0 R
-/Parent 575 0 R
-/First 583 0 R
-/Last 583 0 R
-/Count -1
+/Parent 563 0 R
+/Prev 575 0 R
+/Next 583 0 R
 >> endobj
 575 0 obj <<
 /Title 576 0 R
 /A 573 0 R
-/Parent 531 0 R
+/Parent 563 0 R
 /Prev 571 0 R
-/Next 587 0 R
-/First 579 0 R
-/Last 579 0 R
-/Count -1
+/Next 579 0 R
 >> endobj
 571 0 obj <<
 /Title 572 0 R
 /A 569 0 R
-/Parent 531 0 R
+/Parent 563 0 R
 /Prev 567 0 R
 /Next 575 0 R
 >> endobj
 567 0 obj <<
 /Title 568 0 R
 /A 565 0 R
-/Parent 531 0 R
-/Prev 563 0 R
+/Parent 563 0 R
 /Next 571 0 R
 >> endobj
 563 0 obj <<
 /Title 564 0 R
 /A 561 0 R
-/Parent 531 0 R
-/Prev 535 0 R
-/Next 567 0 R
+/Parent 559 0 R
+/Next 591 0 R
+/First 567 0 R
+/Last 587 0 R
+/Count -6
 >> endobj
 559 0 obj <<
 /Title 560 0 R
 /A 557 0 R
-/Parent 535 0 R
-/Prev 555 0 R
+/Parent 5123 0 R
+/Prev 503 0 R
+/Next 639 0 R
+/First 563 0 R
+/Last 615 0 R
+/Count -6
 >> endobj
 555 0 obj <<
 /Title 556 0 R
 /A 553 0 R
-/Parent 535 0 R
-/Prev 551 0 R
-/Next 559 0 R
+/Parent 551 0 R
 >> endobj
 551 0 obj <<
 /Title 552 0 R
 /A 549 0 R
-/Parent 535 0 R
-/Prev 547 0 R
-/Next 555 0 R
+/Parent 503 0 R
+/Prev 539 0 R
+/First 555 0 R
+/Last 555 0 R
+/Count -1
 >> endobj
 547 0 obj <<
 /Title 548 0 R
 /A 545 0 R
-/Parent 535 0 R
+/Parent 539 0 R
 /Prev 543 0 R
-/Next 551 0 R
 >> endobj
 543 0 obj <<
 /Title 544 0 R
 /A 541 0 R
-/Parent 535 0 R
-/Prev 539 0 R
+/Parent 539 0 R
 /Next 547 0 R
 >> endobj
 539 0 obj <<
 /Title 540 0 R
 /A 537 0 R
-/Parent 535 0 R
-/Next 543 0 R
+/Parent 503 0 R
+/Prev 523 0 R
+/Next 551 0 R
+/First 543 0 R
+/Last 547 0 R
+/Count -2
 >> endobj
 535 0 obj <<
 /Title 536 0 R
 /A 533 0 R
-/Parent 531 0 R
-/Next 563 0 R
-/First 539 0 R
-/Last 559 0 R
-/Count -6
+/Parent 523 0 R
+/Prev 531 0 R
 >> endobj
 531 0 obj <<
 /Title 532 0 R
-/A 529 0 R
-/Parent 4647 0 R
-/Prev 475 0 R
-/Next 611 0 R
-/First 535 0 R
-/Last 587 0 R
-/Count -6
+/A 529 0 R
+/Parent 523 0 R
+/Prev 527 0 R
+/Next 535 0 R
 >> endobj
 527 0 obj <<
 /Title 528 0 R
 /A 525 0 R
 /Parent 523 0 R
+/Next 531 0 R
 >> endobj
 523 0 obj <<
 /Title 524 0 R
 /A 521 0 R
-/Parent 475 0 R
-/Prev 511 0 R
+/Parent 503 0 R
+/Prev 507 0 R
+/Next 539 0 R
 /First 527 0 R
-/Last 527 0 R
-/Count -1
+/Last 535 0 R
+/Count -3
 >> endobj
 519 0 obj <<
 /Title 520 0 R
 /A 517 0 R
-/Parent 511 0 R
+/Parent 507 0 R
 /Prev 515 0 R
 >> endobj
 515 0 obj <<
 /Title 516 0 R
 /A 513 0 R
-/Parent 511 0 R
+/Parent 507 0 R
+/Prev 511 0 R
 /Next 519 0 R
 >> endobj
 511 0 obj <<
 /Title 512 0 R
 /A 509 0 R
-/Parent 475 0 R
-/Prev 495 0 R
-/Next 523 0 R
-/First 515 0 R
-/Last 519 0 R
-/Count -2
+/Parent 507 0 R
+/Next 515 0 R
 >> endobj
 507 0 obj <<
 /Title 508 0 R
 /A 505 0 R
-/Parent 495 0 R
-/Prev 503 0 R
+/Parent 503 0 R
+/Next 523 0 R
+/First 511 0 R
+/Last 519 0 R
+/Count -3
 >> endobj
 503 0 obj <<
 /Title 504 0 R
 /A 501 0 R
-/Parent 495 0 R
-/Prev 499 0 R
-/Next 507 0 R
+/Parent 5123 0 R
+/Prev 307 0 R
+/Next 559 0 R
+/First 507 0 R
+/Last 551 0 R
+/Count -4
 >> endobj
 499 0 obj <<
 /Title 500 0 R
 /A 497 0 R
-/Parent 495 0 R
-/Next 503 0 R
+/Parent 475 0 R
+/Prev 483 0 R
 >> endobj
 495 0 obj <<
 /Title 496 0 R
 /A 493 0 R
-/Parent 475 0 R
-/Prev 479 0 R
-/Next 511 0 R
-/First 499 0 R
-/Last 507 0 R
-/Count -3
+/Parent 483 0 R
+/Prev 491 0 R
 >> endobj
 491 0 obj <<
 /Title 492 0 R
 /A 489 0 R
-/Parent 479 0 R
+/Parent 483 0 R
 /Prev 487 0 R
+/Next 495 0 R
 >> endobj
 487 0 obj <<
 /Title 488 0 R
 /A 485 0 R
-/Parent 479 0 R
-/Prev 483 0 R
+/Parent 483 0 R
 /Next 491 0 R
 >> endobj
 483 0 obj <<
 /Title 484 0 R
 /A 481 0 R
-/Parent 479 0 R
-/Next 487 0 R
+/Parent 475 0 R
+/Prev 479 0 R
+/Next 499 0 R
+/First 487 0 R
+/Last 495 0 R
+/Count -3
 >> endobj
 479 0 obj <<
 /Title 480 0 R
 /A 477 0 R
 /Parent 475 0 R
-/Next 495 0 R
-/First 483 0 R
-/Last 491 0 R
-/Count -3
+/Next 483 0 R
 >> endobj
 475 0 obj <<
 /Title 476 0 R
 /A 473 0 R
-/Parent 4647 0 R
-/Prev 279 0 R
-/Next 531 0 R
+/Parent 307 0 R
+/Prev 443 0 R
 /First 479 0 R
-/Last 523 0 R
-/Count -4
+/Last 499 0 R
+/Count -3
 >> endobj
 471 0 obj <<
 /Title 472 0 R
 /A 469 0 R
-/Parent 447 0 R
-/Prev 455 0 R
+/Parent 459 0 R
+/Prev 467 0 R
 >> endobj
 467 0 obj <<
 /Title 468 0 R
 /A 465 0 R
-/Parent 455 0 R
+/Parent 459 0 R
 /Prev 463 0 R
+/Next 471 0 R
 >> endobj
 463 0 obj <<
 /Title 464 0 R
 /A 461 0 R
-/Parent 455 0 R
-/Prev 459 0 R
+/Parent 459 0 R
 /Next 467 0 R
 >> endobj
 459 0 obj <<
 /Title 460 0 R
 /A 457 0 R
-/Parent 455 0 R
-/Next 463 0 R
+/Parent 443 0 R
+/Prev 455 0 R
+/First 463 0 R
+/Last 471 0 R
+/Count -3
 >> endobj
 455 0 obj <<
 /Title 456 0 R
 /A 453 0 R
-/Parent 447 0 R
+/Parent 443 0 R
 /Prev 451 0 R
-/Next 471 0 R
-/First 459 0 R
-/Last 467 0 R
-/Count -3
+/Next 459 0 R
 >> endobj
 451 0 obj <<
 /Title 452 0 R
 /A 449 0 R
-/Parent 447 0 R
+/Parent 443 0 R
+/Prev 447 0 R
 /Next 455 0 R
 >> endobj
 447 0 obj <<
 /Title 448 0 R
 /A 445 0 R
-/Parent 279 0 R
-/Prev 415 0 R
-/First 451 0 R
-/Last 471 0 R
-/Count -3
+/Parent 443 0 R
+/Next 451 0 R
 >> endobj
 443 0 obj <<
 /Title 444 0 R
 /A 441 0 R
-/Parent 431 0 R
+/Parent 307 0 R
 /Prev 439 0 R
+/Next 475 0 R
+/First 447 0 R
+/Last 459 0 R
+/Count -4
 >> endobj
 439 0 obj <<
 /Title 440 0 R
 /A 437 0 R
-/Parent 431 0 R
+/Parent 307 0 R
 /Prev 435 0 R
 /Next 443 0 R
 >> endobj
 435 0 obj <<
 /Title 436 0 R
 /A 433 0 R
-/Parent 431 0 R
+/Parent 307 0 R
+/Prev 351 0 R
 /Next 439 0 R
 >> endobj
 431 0 obj <<
 /Title 432 0 R
 /A 429 0 R
-/Parent 415 0 R
+/Parent 383 0 R
 /Prev 427 0 R
-/First 435 0 R
-/Last 443 0 R
-/Count -3
 >> endobj
 427 0 obj <<
 /Title 428 0 R
 /A 425 0 R
-/Parent 415 0 R
-/Prev 423 0 R
+/Parent 383 0 R
+/Prev 387 0 R
 /Next 431 0 R
 >> endobj
 423 0 obj <<
 /Title 424 0 R
 /A 421 0 R
-/Parent 415 0 R
+/Parent 387 0 R
 /Prev 419 0 R
-/Next 427 0 R
 >> endobj
 419 0 obj <<
 /Title 420 0 R
 /A 417 0 R
-/Parent 415 0 R
+/Parent 387 0 R
+/Prev 415 0 R
 /Next 423 0 R
 >> endobj
 415 0 obj <<
 /Title 416 0 R
 /A 413 0 R
-/Parent 279 0 R
+/Parent 387 0 R
 /Prev 411 0 R
-/Next 447 0 R
-/First 419 0 R
-/Last 431 0 R
-/Count -4
+/Next 419 0 R
 >> endobj
 411 0 obj <<
 /Title 412 0 R
 /A 409 0 R
-/Parent 279 0 R
+/Parent 387 0 R
 /Prev 407 0 R
 /Next 415 0 R
 >> endobj
 407 0 obj <<
 /Title 408 0 R
 /A 405 0 R
-/Parent 279 0 R
-/Prev 323 0 R
+/Parent 387 0 R
+/Prev 403 0 R
 /Next 411 0 R
 >> endobj
 403 0 obj <<
 /Title 404 0 R
 /A 401 0 R
-/Parent 355 0 R
+/Parent 387 0 R
 /Prev 399 0 R
+/Next 407 0 R
 >> endobj
 399 0 obj <<
 /Title 400 0 R
 /A 397 0 R
-/Parent 355 0 R
-/Prev 359 0 R
+/Parent 387 0 R
+/Prev 395 0 R
 /Next 403 0 R
 >> endobj
 395 0 obj <<
 /Title 396 0 R
 /A 393 0 R
-/Parent 359 0 R
+/Parent 387 0 R
 /Prev 391 0 R
+/Next 399 0 R
 >> endobj
 391 0 obj <<
 /Title 392 0 R
 /A 389 0 R
-/Parent 359 0 R
-/Prev 387 0 R
+/Parent 387 0 R
 /Next 395 0 R
 >> endobj
 387 0 obj <<
 /Title 388 0 R
 /A 385 0 R
-/Parent 359 0 R
-/Prev 383 0 R
-/Next 391 0 R
+/Parent 383 0 R
+/Next 427 0 R
+/First 391 0 R
+/Last 423 0 R
+/Count -9
 >> endobj
 383 0 obj <<
 /Title 384 0 R
 /A 381 0 R
-/Parent 359 0 R
-/Prev 379 0 R
-/Next 387 0 R
+/Parent 351 0 R
+/Prev 371 0 R
+/First 387 0 R
+/Last 431 0 R
+/Count -3
 >> endobj
 379 0 obj <<
 /Title 380 0 R
 /A 377 0 R
-/Parent 359 0 R
+/Parent 371 0 R
 /Prev 375 0 R
-/Next 383 0 R
 >> endobj
 375 0 obj <<
 /Title 376 0 R
 /A 373 0 R
-/Parent 359 0 R
-/Prev 371 0 R
+/Parent 371 0 R
 /Next 379 0 R
 >> endobj
 371 0 obj <<
 /Title 372 0 R
 /A 369 0 R
-/Parent 359 0 R
+/Parent 351 0 R
 /Prev 367 0 R
-/Next 375 0 R
+/Next 383 0 R
+/First 375 0 R
+/Last 379 0 R
+/Count -2
 >> endobj
 367 0 obj <<
 /Title 368 0 R
 /A 365 0 R
-/Parent 359 0 R
-/Prev 363 0 R
+/Parent 351 0 R
+/Prev 359 0 R
 /Next 371 0 R
 >> endobj
 363 0 obj <<
 /Title 364 0 R
 /A 361 0 R
 /Parent 359 0 R
-/Next 367 0 R
 >> endobj
 359 0 obj <<
 /Title 360 0 R
 /A 357 0 R
-/Parent 355 0 R
-/Next 399 0 R
+/Parent 351 0 R
+/Prev 355 0 R
+/Next 367 0 R
 /First 363 0 R
-/Last 395 0 R
-/Count -9
+/Last 363 0 R
+/Count -1
 >> endobj
 355 0 obj <<
 /Title 356 0 R
 /A 353 0 R
-/Parent 323 0 R
-/Prev 343 0 R
-/First 359 0 R
-/Last 403 0 R
-/Count -3
+/Parent 351 0 R
+/Next 359 0 R
 >> endobj
 351 0 obj <<
 /Title 352 0 R
 /A 349 0 R
-/Parent 343 0 R
+/Parent 307 0 R
 /Prev 347 0 R
+/Next 435 0 R
+/First 355 0 R
+/Last 383 0 R
+/Count -5
 >> endobj
 347 0 obj <<
 /Title 348 0 R
 /A 345 0 R
-/Parent 343 0 R
+/Parent 307 0 R
+/Prev 343 0 R
 /Next 351 0 R
 >> endobj
 343 0 obj <<
 /Title 344 0 R
 /A 341 0 R
-/Parent 323 0 R
+/Parent 307 0 R
 /Prev 339 0 R
-/Next 355 0 R
-/First 347 0 R
-/Last 351 0 R
-/Count -2
+/Next 347 0 R
 >> endobj
 339 0 obj <<
 /Title 340 0 R
 /A 337 0 R
-/Parent 323 0 R
-/Prev 331 0 R
+/Parent 307 0 R
+/Prev 335 0 R
 /Next 343 0 R
 >> endobj
 335 0 obj <<
 /Title 336 0 R
 /A 333 0 R
-/Parent 331 0 R
+/Parent 307 0 R
+/Prev 315 0 R
+/Next 339 0 R
 >> endobj
 331 0 obj <<
 /Title 332 0 R
 /A 329 0 R
 /Parent 323 0 R
 /Prev 327 0 R
-/Next 339 0 R
-/First 335 0 R
-/Last 335 0 R
-/Count -1
 >> endobj
 327 0 obj <<
 /Title 328 0 R
@@ -17988,180 +21148,178 @@ endobj
 323 0 obj <<
 /Title 324 0 R
 /A 321 0 R
-/Parent 279 0 R
+/Parent 315 0 R
 /Prev 319 0 R
-/Next 407 0 R
 /First 327 0 R
-/Last 355 0 R
-/Count -5
+/Last 331 0 R
+/Count -2
 >> endobj
 319 0 obj <<
 /Title 320 0 R
 /A 317 0 R
-/Parent 279 0 R
-/Prev 315 0 R
+/Parent 315 0 R
 /Next 323 0 R
 >> endobj
 315 0 obj <<
 /Title 316 0 R
 /A 313 0 R
-/Parent 279 0 R
+/Parent 307 0 R
 /Prev 311 0 R
-/Next 319 0 R
+/Next 335 0 R
+/First 319 0 R
+/Last 323 0 R
+/Count -2
 >> endobj
 311 0 obj <<
 /Title 312 0 R
 /A 309 0 R
-/Parent 279 0 R
-/Prev 307 0 R
+/Parent 307 0 R
 /Next 315 0 R
 >> endobj
 307 0 obj <<
 /Title 308 0 R
 /A 305 0 R
-/Parent 279 0 R
-/Prev 287 0 R
-/Next 311 0 R
+/Parent 5123 0 R
+/Prev 43 0 R
+/Next 503 0 R
+/First 311 0 R
+/Last 475 0 R
+/Count -11
 >> endobj
 303 0 obj <<
 /Title 304 0 R
 /A 301 0 R
-/Parent 295 0 R
-/Prev 299 0 R
+/Parent 251 0 R
+/Prev 295 0 R
 >> endobj
 299 0 obj <<
 /Title 300 0 R
 /A 297 0 R
 /Parent 295 0 R
-/Next 303 0 R
 >> endobj
 295 0 obj <<
 /Title 296 0 R
 /A 293 0 R
-/Parent 287 0 R
-/Prev 291 0 R
+/Parent 251 0 R
+/Prev 283 0 R
+/Next 303 0 R
 /First 299 0 R
-/Last 303 0 R
-/Count -2
+/Last 299 0 R
+/Count -1
 >> endobj
 291 0 obj <<
 /Title 292 0 R
 /A 289 0 R
-/Parent 287 0 R
-/Next 295 0 R
+/Parent 283 0 R
+/Prev 287 0 R
 >> endobj
 287 0 obj <<
 /Title 288 0 R
 /A 285 0 R
-/Parent 279 0 R
-/Prev 283 0 R
-/Next 307 0 R
-/First 291 0 R
-/Last 295 0 R
-/Count -2
+/Parent 283 0 R
+/Next 291 0 R
 >> endobj
 283 0 obj <<
 /Title 284 0 R
 /A 281 0 R
-/Parent 279 0 R
-/Next 287 0 R
+/Parent 251 0 R
+/Prev 279 0 R
+/Next 295 0 R
+/First 287 0 R
+/Last 291 0 R
+/Count -2
 >> endobj
 279 0 obj <<
 /Title 280 0 R
 /A 277 0 R
-/Parent 4647 0 R
-/Prev 43 0 R
-/Next 475 0 R
-/First 283 0 R
-/Last 447 0 R
-/Count -11
+/Parent 251 0 R
+/Prev 259 0 R
+/Next 283 0 R
 >> endobj
 275 0 obj <<
 /Title 276 0 R
 /A 273 0 R
-/Parent 223 0 R
-/Prev 267 0 R
+/Parent 263 0 R
+/Prev 271 0 R
 >> endobj
 271 0 obj <<
 /Title 272 0 R
 /A 269 0 R
-/Parent 267 0 R
+/Parent 263 0 R
+/Prev 267 0 R
+/Next 275 0 R
 >> endobj
 267 0 obj <<
 /Title 268 0 R
 /A 265 0 R
-/Parent 223 0 R
-/Prev 255 0 R
-/Next 275 0 R
-/First 271 0 R
-/Last 271 0 R
-/Count -1
+/Parent 263 0 R
+/Next 271 0 R
 >> endobj
 263 0 obj <<
 /Title 264 0 R
 /A 261 0 R
-/Parent 255 0 R
-/Prev 259 0 R
+/Parent 259 0 R
+/First 267 0 R
+/Last 275 0 R
+/Count -3
 >> endobj
 259 0 obj <<
 /Title 260 0 R
 /A 257 0 R
-/Parent 255 0 R
-/Next 263 0 R
+/Parent 251 0 R
+/Prev 255 0 R
+/Next 279 0 R
+/First 263 0 R
+/Last 263 0 R
+/Count -1
 >> endobj
 255 0 obj <<
 /Title 256 0 R
 /A 253 0 R
-/Parent 223 0 R
-/Prev 251 0 R
-/Next 267 0 R
-/First 259 0 R
-/Last 263 0 R
-/Count -2
+/Parent 251 0 R
+/Next 259 0 R
 >> endobj
 251 0 obj <<
 /Title 252 0 R
 /A 249 0 R
-/Parent 223 0 R
-/Prev 231 0 R
-/Next 255 0 R
+/Parent 43 0 R
+/Prev 219 0 R
+/First 255 0 R
+/Last 303 0 R
+/Count -6
 >> endobj
 247 0 obj <<
 /Title 248 0 R
 /A 245 0 R
-/Parent 235 0 R
+/Parent 219 0 R
 /Prev 243 0 R
 >> endobj
 243 0 obj <<
 /Title 244 0 R
 /A 241 0 R
-/Parent 235 0 R
-/Prev 239 0 R
+/Parent 219 0 R
+/Prev 223 0 R
 /Next 247 0 R
 >> endobj
 239 0 obj <<
 /Title 240 0 R
 /A 237 0 R
-/Parent 235 0 R
-/Next 243 0 R
+/Parent 223 0 R
+/Prev 235 0 R
 >> endobj
 235 0 obj <<
 /Title 236 0 R
 /A 233 0 R
-/Parent 231 0 R
-/First 239 0 R
-/Last 247 0 R
-/Count -3
+/Parent 223 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
 /Prev 227 0 R
-/Next 251 0 R
-/First 235 0 R
-/Last 235 0 R
-/Count -1
+/Next 235 0 R
 >> endobj
 227 0 obj <<
 /Title 228 0 R
@@ -18172,181 +21330,186 @@ endobj
 223 0 obj <<
 /Title 224 0 R
 /A 221 0 R
-/Parent 43 0 R
-/Prev 191 0 R
+/Parent 219 0 R
+/Next 243 0 R
 /First 227 0 R
-/Last 275 0 R
-/Count -6
+/Last 239 0 R
+/Count -4
 >> endobj
 219 0 obj <<
 /Title 220 0 R
 /A 217 0 R
-/Parent 191 0 R
-/Prev 215 0 R
+/Parent 43 0 R
+/Prev 187 0 R
+/Next 251 0 R
+/First 223 0 R
+/Last 247 0 R
+/Count -3
 >> endobj
 215 0 obj <<
 /Title 216 0 R
 /A 213 0 R
-/Parent 191 0 R
-/Prev 195 0 R
-/Next 219 0 R
+/Parent 187 0 R
+/Prev 211 0 R
 >> endobj
 211 0 obj <<
 /Title 212 0 R
 /A 209 0 R
-/Parent 195 0 R
+/Parent 187 0 R
 /Prev 207 0 R
+/Next 215 0 R
 >> endobj
 207 0 obj <<
 /Title 208 0 R
 /A 205 0 R
-/Parent 195 0 R
+/Parent 187 0 R
 /Prev 203 0 R
 /Next 211 0 R
 >> endobj
 203 0 obj <<
 /Title 204 0 R
 /A 201 0 R
-/Parent 195 0 R
+/Parent 187 0 R
 /Prev 199 0 R
 /Next 207 0 R
 >> endobj
 199 0 obj <<
 /Title 200 0 R
 /A 197 0 R
-/Parent 195 0 R
+/Parent 187 0 R
+/Prev 195 0 R
 /Next 203 0 R
 >> endobj
 195 0 obj <<
 /Title 196 0 R
 /A 193 0 R
-/Parent 191 0 R
-/Next 215 0 R
-/First 199 0 R
-/Last 211 0 R
-/Count -4
+/Parent 187 0 R
+/Prev 191 0 R
+/Next 199 0 R
 >> endobj
 191 0 obj <<
 /Title 192 0 R
 /A 189 0 R
-/Parent 43 0 R
-/Prev 163 0 R
-/Next 223 0 R
-/First 195 0 R
-/Last 219 0 R
-/Count -3
+/Parent 187 0 R
+/Next 195 0 R
 >> endobj
 187 0 obj <<
 /Title 188 0 R
 /A 185 0 R
-/Parent 163 0 R
-/Prev 183 0 R
+/Parent 43 0 R
+/Prev 119 0 R
+/Next 219 0 R
+/First 191 0 R
+/Last 215 0 R
+/Count -7
 >> endobj
 183 0 obj <<
 /Title 184 0 R
 /A 181 0 R
-/Parent 163 0 R
-/Prev 179 0 R
-/Next 187 0 R
+/Parent 119 0 R
+/Prev 167 0 R
 >> endobj
 179 0 obj <<
 /Title 180 0 R
 /A 177 0 R
-/Parent 163 0 R
+/Parent 167 0 R
 /Prev 175 0 R
-/Next 183 0 R
 >> endobj
 175 0 obj <<
 /Title 176 0 R
 /A 173 0 R
-/Parent 163 0 R
+/Parent 167 0 R
 /Prev 171 0 R
 /Next 179 0 R
 >> endobj
 171 0 obj <<
 /Title 172 0 R
 /A 169 0 R
-/Parent 163 0 R
-/Prev 167 0 R
+/Parent 167 0 R
 /Next 175 0 R
 >> endobj
 167 0 obj <<
 /Title 168 0 R
 /A 165 0 R
-/Parent 163 0 R
-/Next 171 0 R
+/Parent 119 0 R
+/Prev 163 0 R
+/Next 183 0 R
+/First 171 0 R
+/Last 179 0 R
+/Count -3
 >> endobj
 163 0 obj <<
 /Title 164 0 R
 /A 161 0 R
-/Parent 43 0 R
-/Prev 111 0 R
-/Next 191 0 R
-/First 167 0 R
-/Last 187 0 R
-/Count -6
+/Parent 119 0 R
+/Prev 127 0 R
+/Next 167 0 R
 >> endobj
 159 0 obj <<
 /Title 160 0 R
 /A 157 0 R
-/Parent 111 0 R
-/Prev 143 0 R
+/Parent 151 0 R
+/Prev 155 0 R
 >> endobj
 155 0 obj <<
 /Title 156 0 R
 /A 153 0 R
-/Parent 143 0 R
-/Prev 151 0 R
+/Parent 151 0 R
+/Next 159 0 R
 >> endobj
 151 0 obj <<
 /Title 152 0 R
 /A 149 0 R
-/Parent 143 0 R
-/Prev 147 0 R
-/Next 155 0 R
+/Parent 127 0 R
+/Prev 131 0 R
+/First 155 0 R
+/Last 159 0 R
+/Count -2
 >> endobj
 147 0 obj <<
 /Title 148 0 R
 /A 145 0 R
-/Parent 143 0 R
-/Next 151 0 R
+/Parent 131 0 R
+/Prev 143 0 R
 >> endobj
 143 0 obj <<
 /Title 144 0 R
 /A 141 0 R
-/Parent 111 0 R
+/Parent 131 0 R
 /Prev 139 0 R
-/Next 159 0 R
-/First 147 0 R
-/Last 155 0 R
-/Count -3
+/Next 147 0 R
 >> endobj
 139 0 obj <<
 /Title 140 0 R
 /A 137 0 R
-/Parent 111 0 R
-/Prev 119 0 R
+/Parent 131 0 R
+/Prev 135 0 R
 /Next 143 0 R
 >> endobj
 135 0 obj <<
 /Title 136 0 R
 /A 133 0 R
-/Parent 119 0 R
-/Prev 131 0 R
+/Parent 131 0 R
+/Next 139 0 R
 >> endobj
 131 0 obj <<
 /Title 132 0 R
 /A 129 0 R
-/Parent 119 0 R
-/Prev 127 0 R
-/Next 135 0 R
+/Parent 127 0 R
+/Next 151 0 R
+/First 135 0 R
+/Last 147 0 R
+/Count -4
 >> endobj
 127 0 obj <<
 /Title 128 0 R
 /A 125 0 R
 /Parent 119 0 R
 /Prev 123 0 R
-/Next 131 0 R
+/Next 163 0 R
+/First 131 0 R
+/Last 151 0 R
+/Count -2
 >> endobj
 123 0 obj <<
 /Title 124 0 R
@@ -18357,118 +21520,114 @@ endobj
 119 0 obj <<
 /Title 120 0 R
 /A 117 0 R
-/Parent 111 0 R
-/Prev 115 0 R
-/Next 139 0 R
+/Parent 43 0 R
+/Prev 47 0 R
+/Next 187 0 R
 /First 123 0 R
-/Last 135 0 R
-/Count -4
+/Last 183 0 R
+/Count -5
 >> endobj
 115 0 obj <<
 /Title 116 0 R
 /A 113 0 R
-/Parent 111 0 R
-/Next 119 0 R
+/Parent 47 0 R
+/Prev 75 0 R
 >> endobj
 111 0 obj <<
 /Title 112 0 R
 /A 109 0 R
-/Parent 43 0 R
-/Prev 47 0 R
-/Next 163 0 R
-/First 115 0 R
-/Last 159 0 R
-/Count -5
+/Parent 75 0 R
+/Prev 107 0 R
 >> endobj
 107 0 obj <<
 /Title 108 0 R
 /A 105 0 R
-/Parent 47 0 R
-/Prev 67 0 R
+/Parent 75 0 R
+/Prev 103 0 R
+/Next 111 0 R
 >> endobj
 103 0 obj <<
 /Title 104 0 R
 /A 101 0 R
-/Parent 67 0 R
+/Parent 75 0 R
 /Prev 99 0 R
+/Next 107 0 R
 >> endobj
 99 0 obj <<
 /Title 100 0 R
 /A 97 0 R
-/Parent 67 0 R
+/Parent 75 0 R
 /Prev 95 0 R
 /Next 103 0 R
 >> endobj
 95 0 obj <<
 /Title 96 0 R
 /A 93 0 R
-/Parent 67 0 R
+/Parent 75 0 R
 /Prev 91 0 R
 /Next 99 0 R
 >> endobj
 91 0 obj <<
 /Title 92 0 R
 /A 89 0 R
-/Parent 67 0 R
+/Parent 75 0 R
 /Prev 87 0 R
 /Next 95 0 R
 >> endobj
 87 0 obj <<
 /Title 88 0 R
 /A 85 0 R
-/Parent 67 0 R
+/Parent 75 0 R
 /Prev 83 0 R
 /Next 91 0 R
 >> endobj
 83 0 obj <<
 /Title 84 0 R
 /A 81 0 R
-/Parent 67 0 R
+/Parent 75 0 R
 /Prev 79 0 R
 /Next 87 0 R
 >> endobj
 79 0 obj <<
 /Title 80 0 R
 /A 77 0 R
-/Parent 67 0 R
-/Prev 75 0 R
+/Parent 75 0 R
 /Next 83 0 R
 >> endobj
 75 0 obj <<
 /Title 76 0 R
 /A 73 0 R
-/Parent 67 0 R
+/Parent 47 0 R
 /Prev 71 0 R
-/Next 79 0 R
+/Next 115 0 R
+/First 79 0 R
+/Last 111 0 R
+/Count -9
 >> endobj
 71 0 obj <<
 /Title 72 0 R
 /A 69 0 R
-/Parent 67 0 R
+/Parent 47 0 R
+/Prev 67 0 R
 /Next 75 0 R
 >> endobj
 67 0 obj <<
 /Title 68 0 R
 /A 65 0 R
 /Parent 47 0 R
-/Prev 63 0 R
-/Next 107 0 R
-/First 71 0 R
-/Last 103 0 R
-/Count -9
+/Prev 55 0 R
+/Next 71 0 R
 >> endobj
 63 0 obj <<
 /Title 64 0 R
 /A 61 0 R
-/Parent 47 0 R
+/Parent 55 0 R
 /Prev 59 0 R
-/Next 67 0 R
 >> endobj
 59 0 obj <<
 /Title 60 0 R
 /A 57 0 R
-/Parent 47 0 R
-/Prev 55 0 R
+/Parent 55 0 R
 /Next 63 0 R
 >> endobj
 55 0 obj <<
@@ -18476,7 +21635,10 @@ endobj
 /A 53 0 R
 /Parent 47 0 R
 /Prev 51 0 R
-/Next 59 0 R
+/Next 67 0 R
+/First 59 0 R
+/Last 63 0 R
+/Count -2
 >> endobj
 51 0 obj <<
 /Title 52 0 R
@@ -18488,19 +21650,19 @@ endobj
 /Title 48 0 R
 /A 45 0 R
 /Parent 43 0 R
-/Next 111 0 R
+/Next 119 0 R
 /First 51 0 R
-/Last 107 0 R
+/Last 115 0 R
 /Count -6
 >> endobj
 43 0 obj <<
 /Title 44 0 R
 /A 41 0 R
-/Parent 4647 0 R
+/Parent 5123 0 R
 /Prev 19 0 R
-/Next 279 0 R
+/Next 307 0 R
 /First 47 0 R
-/Last 223 0 R
+/Last 251 0 R
 /Count -5
 >> endobj
 39 0 obj <<
@@ -18539,7 +21701,7 @@ endobj
 19 0 obj <<
 /Title 20 0 R
 /A 17 0 R
-/Parent 4647 0 R
+/Parent 5123 0 R
 /Prev 15 0 R
 /Next 43 0 R
 /First 23 0 R
@@ -18549,4714 +21711,5190 @@ endobj
 15 0 obj <<
 /Title 16 0 R
 /A 13 0 R
-/Parent 4647 0 R
+/Parent 5123 0 R
 /Prev 11 0 R
 /Next 19 0 R
 >> endobj
 11 0 obj <<
 /Title 12 0 R
 /A 9 0 R
-/Parent 4647 0 R
+/Parent 5123 0 R
 /Prev 7 0 R
 /Next 15 0 R
 >> endobj
 7 0 obj <<
 /Title 8 0 R
 /A 5 0 R
-/Parent 4647 0 R
+/Parent 5123 0 R
 /Prev 3 0 R
 /Next 11 0 R
 >> endobj
 3 0 obj <<
 /Title 4 0 R
 /A 1 0 R
-/Parent 4647 0 R
+/Parent 5123 0 R
 /Next 7 0 R
 >> endobj
-4648 0 obj <<
-/Names [(1.0) 2 0 R (10.0) 610 0 R (10.32.1) 614 0 R (10.33.1) 618 0 R (10.34.1) 622 0 R (10.35.1) 626 0 R (10.36.1) 630 0 R (10.36.62.2) 634 0 R (10.36.62.40.3) 638 0 R (10.36.62.41.3) 642 0 R (10.36.62.42.3) 646 0 R (10.37.1) 650 0 R (10.38.1) 654 0 R (10.39.1) 658 0 R (10.39.63.2) 662 0 R (10.39.64.2) 666 0 R (10.39.65.2) 670 0 R (10.39.66.2) 674 0 R (10.39.67.2) 678 0 R (10.39.68.2) 682 0 R (10.39.69.2) 686 0 R (10.40.1) 690 0 R (10.40.70.2) 694 0 R (10.40.71.2) 698 0 R (10.40.72.2) 702 0 R (10.40.73.2) 706 0 R (10.41.1) 710 0 R (10.41.74.2) 714 0 R (10.41.75.2) 718 0 R (10.41.76.2) 722 0 R (10.42.1) 726 0 R (10.42.77.2) 730 0 R (10.42.78.2) 734 0 R (10.42.78.43.3) 738 0 R (10.42.78.44.3) 742 0 R (10.43.1) 746 0 R (100) 1422 0 R (1001) 2269 0 R (1002) 2270 0 R (1003) 2271 0 R (1008) 2278 0 R (1009) 2279 0 R (101) 1423 0 R (1010) 2280 0 R (1011) 2281 0 R (1012) 2282 0 R (1013) 2283 0 R (1014) 2284 0 R (1015) 2285 0 R (1016) 2286 0 R (1017) 2287 0 R (102) 1424 0 R (1020) 2289 0 R (1021) 2290 0 R (1022) 2291 0 R (1023) 2292 0 R (1024) 2293 0 R (1025) 2294 0 R (1026) 2295 0 R (1027) 2296 0 R (1028) 2297 0 R (1029) 2298 0 R (103) 1425 0 R (1030) 2299 0 R (1031) 2300 0 R (1032) 2301 0 R (1033) 2302 0 R (1034) 2303 0 R (1035) 2304 0 R (1036) 2305 0 R (1037) 2306 0 R (1038) 2307 0 R (1039) 2308 0 R (104) 1426 0 R (1040) 2309 0 R (1041) 2315 0 R (1042) 2316 0 R (1043) 2317 0 R (1044) 2318 0 R (1045) 2319 0 R (1046) 2320 0 R (1047) 2321 0 R (1048) 2322 0 R (1049) 2323 0 R (105) 1427 0 R (1050) 2324 0 R (1051) 2325 0 R (1052) 2326 0 R (1053) 2327 0 R (1054) 2328 0 R (1055) 2329 0 R (1056) 2330 0 R (1057) 2331 0 R (1058) 2332 0 R (1059) 2333 0 R (106) 1428 0 R (1060) 2334 0 R (1061) 2335 0 R (1062) 2336 0 R (1063) 2337 0 R (1064) 2338 0 R (1065) 2339 0 R (1066) 2340 0 R (1067) 2341 0 R (1068) 2342 0 R (1069) 2343 0 R (107) 1429 0 R (1070) 2344 0 R (1071) 2345 0 R (1072) 2346 0 R (1075) 2347 0 R (1077) 2349 0 R (1078) 2350 0 R (1079) 2351 0 R (108) 1430 0 R (1080) 2352 0 R (1081) 2353 0 R (1082) 2354 0 R (1083) 2355 0 R (1084) 2356 0 R (1085) 2362 0 R (1086) 2314 0 R (1089) 2363 0 R (1090) 2364 0 R (1091) 2365 0 R (1092) 2366 0 R (1093) 2367 0 R (1094) 2368 0 R (1095) 2369 0 R (1096) 2370 0 R (1097) 2371 0 R (1098) 2372 0 R (1099) 2373 0 R (11.0) 750 0 R (1102) 2374 0 R (1103) 2375 0 R (1104) 2376 0 R (1105) 2377 0 R (1106) 2378 0 R (1107) 2379 0 R (1108) 2380 0 R (1109) 2381 0 R (111) 1431 0 R (1110) 2382 0 R (1113) 2383 0 R (1114) 2384 0 R (1115) 2390 0 R (1116) 2391 0 R (1117) 2392 0 R (1118) 2393 0 R (1119) 2394 0 R (1120) 2395 0 R (1121) 2396 0 R (1122) 2397 0 R (1123) 2398 0 R (1124) 2399 0 R (1125) 2400 0 R (1128) 2401 0 R (1129) 2402 0 R (113) 1432 0 R (1130) 2403 0 R (1131) 2404 0 R (1134) 2406 0 R (1135) 2407 0 R (1136) 2408 0 R (1137) 2409 0 R (1138) 2410 0 R (1139) 2411 0 R (114) 1433 0 R (1140) 2412 0 R (1141) 2413 0 R (1142) 2414 0 R (1143) 2415 0 R (1144) 2416 0 R (1145) 2417 0 R (1146) 2418 0 R (1147) 2419 0 R (1148) 2420 0 R (1149) 2421 0 R (115) 1383 0 R (1150) 2422 0 R (1151) 2423 0 R (1152) 2424 0 R (1153) 2425 0 R (1154) 2426 0 R (1155) 2427 0 R (1156) 2428 0 R (1157) 2429 0 R (1158) 2430 0 R (1159) 2431 0 R (1160) 2432 0 R (1165) 2440 0 R (1166) 2441 0 R (1168) 2442 0 R (1169) 2443 0 R (1170) 2444 0 R (1171) 2445 0 R (1173) 2389 0 R (1175) 2446 0 R (1176) 2447 0 R (1177) 2448 0 R (1179) 2449 0 R (1180) 2450 0 R (1181) 2451 0 R (1182) 2452 0 R (1183) 2453 0 R (1184) 2454 0 R (1185) 2455 0 R (1188) 2457 0 R (1189) 2458 0 R (1190) 2459 0 R (1191) 2460 0 R (1192) 2461 0 R (1193) 2462 0 R (1194) 2463 0 R (1195) 2464 0 R (1196) 2465 0 R (1197) 2466 0 R (1198) 2467 0 R (12.0) 754 0 R (12.44.1) 758 0 R (12.45.1) 762 0 R (12.46.1) 766 0 R (12.47.1) 770 0 R (12.48.1) 774 0 R (12.49.1) 778 0 R (12.50.1) 782 0 R (12.51.1) 786 0 R (12.52.1) 790 0 R (12.53.1) 794 0 R (12.54.1) 798 0 R (1201) 2469 0 R (1204) 2471 0 R (1205) 2472 0 R (1206) 2473 0 R (1207) 2474 0 R (1208) 2475 0 R (1209) 2476 0 R (1210) 2477 0 R (1211) 2478 0 R (1212) 2484 0 R (1213) 2485 0 R (1214) 2486 0 R (1215) 2487 0 R (1216) 2488 0 R (1217) 2489 0 R (1220) 2491 0 R (1221) 2492 0 R (1222) 2493 0 R (1223) 2494 0 R (1224) 2495 0 R (1227) 2497 0 R (1228) 2498 0 R (1229) 2499 0 R (1230) 2500 0 R (1231) 2501 0 R (1234) 2503 0 R (1235) 2504 0 R (1238) 2506 0 R (1241) 2508 0 R (1244) 2510 0 R (1245) 2511 0 R (1246) 2512 0 R (1247) 2513 0 R (1248) 2514 0 R (1249) 2515 0 R (1250) 2516 0 R (1251) 2521 0 R (1252) 2522 0 R (1253) 2523 0 R (1254) 2524 0 R (1255) 2483 0 R (1257) 2525 0 R (1258) 2526 0 R (1259) 2527 0 R (1260) 2528 0 R (1261) 2529 0 R (1262) 2530 0 R (1263) 2531 0 R (1264) 2532 0 R (1265) 2533 0 R (1266) 2534 0 R (1267) 2535 0 R (1268) 2536 0 R (1269) 2537 0 R (1270) 2538 0 R (1271) 2539 0 R (1272) 2540 0 R (1273) 2541 0 R (1274) 2542 0 R (1277) 2544 0 R (1278) 2545 0 R (1279) 2546 0 R (1282) 2548 0 R (1283) 2549 0 R (1286) 2551 0 R (1287) 2552 0 R (1288) 2553 0 R (1289) 2554 0 R (1290) 2555 0 R (1291) 2556 0 R (1294) 2558 0 R (1297) 2564 0 R (1298) 2565 0 R (13.0) 802 0 R (13.55.1) 806 0 R (13.56.1) 810 0 R (1301) 2567 0 R (1302) 2568 0 R (1303) 2569 0 R (1304) 2570 0 R (1307) 2572 0 R (1308) 2573 0 R (1309) 2574 0 R (1310) 2575 0 R (1311) 2576 0 R (1312) 2577 0 R (1313) 2578 0 R (1314) 2579 0 R (1317) 2581 0 R (1318) 2582 0 R (1319) 2583 0 R (1322) 2584 0 R (1323) 2585 0 R (1324) 2586 0 R (1325) 2587 0 R (1326) 2588 0 R (1327) 2589 0 R (1328) 2590 0 R (1329) 2591 0 R (1330) 2592 0 R (1331) 2597 0 R (1332) 2598 0 R (1333) 2599 0 R (1334) 2600 0 R (1335) 2601 0 R (1336) 2602 0 R (1337) 2603 0 R (1340) 2604 0 R (1341) 2605 0 R (1342) 2606 0 R (1343) 2607 0 R (1344) 2608 0 R (1345) 2609 0 R (1348) 2610 0 R (1349) 2611 0 R (1350) 2612 0 R (1351) 2613 0 R (1352) 2614 0 R (1353) 2615 0 R (1354) 2616 0 R (1355) 2617 0 R (1356) 2618 0 R (1357) 2619 0 R (1358) 2620 0 R (1359) 2621 0 R (1361) 2626 0 R (1362) 2627 0 R (1363) 2628 0 R (1364) 2629 0 R (1365) 2630 0 R (1366) 2631 0 R (1367) 2632 0 R (1368) 2633 0 R (1369) 2634 0 R (1370) 2635 0 R (1371) 2636 0 R (1372) 2637 0 R (1373) 2638 0 R (1374) 2639 0 R (1375) 2640 0 R (1376) 2641 0 R (1377) 2642 0 R (1378) 2643 0 R (1379) 2644 0 R (1380) 2645 0 R (1381) 2646 0 R (1382) 2647 0 R (1383) 2648 0 R (1384) 2649 0 R (1385) 2650 0 R (1386) 2651 0 R (1388) 2652 0 R (1389) 2653 0 R (1390) 2654 0 R (1391) 2655 0 R (1392) 2656 0 R (1393) 2657 0 R (1394) 2658 0 R (1395) 2659 0 R (1396) 2660 0 R (1398) 2661 0 R (1399) 2662 0 R (14.0) 814 0 R (14.57.1) 818 0 R (14.58.1) 822 0 R (14.59.1) 826 0 R (1400) 2663 0 R (1401) 2664 0 R (1402) 2670 0 R (1403) 2671 0 R (1404) 2672 0 R (1405) 2673 0 R (1406) 2674 0 R (1407) 2675 0 R (1408) 2676 0 R (1409) 2677 0 R (1410) 2678 0 R (1411) 2679 0 R (1412) 2680 0 R (1413) 2681 0 R (1414) 2682 0 R (1416) 2683 0 R (1418) 2684 0 R (1419) 2685 0 R (1420) 2686 0 R (1422) 2687 0 R (1423) 2688 0 R (1424) 2689 0 R (1426) 2695 0 R (1427) 2696 0 R (1428) 2697 0 R (1429) 2698 0 R (1430) 2699 0 R (1431) 2700 0 R (1432) 2701 0 R (1433) 2702 0 R (1434) 2703 0 R (1435) 2704 0 R (1436) 2705 0 R (1437) 2706 0 R (1440) 2707 0 R (1441) 2708 0 R (1442) 2709 0 R (1443) 2710 0 R (1444) 2711 0 R (1445) 2712 0 R (1448) 2714 0 R (1449) 2694 0 R (1450) 2719 0 R (1451) 2720 0 R (1452) 2721 0 R (1453) 2722 0 R (1456) 2724 0 R (1457) 2725 0 R (1458) 2726 0 R (1459) 2727 0 R (1461) 2729 0 R (1462) 2730 0 R (1464) 2732 0 R (1465) 2733 0 R (1467) 2735 0 R (1469) 2737 0 R (1470) 2738 0 R (1471) 2739 0 R (1472) 2748 0 R (1473) 2749 0 R (1476) 2750 0 R (1477) 2751 0 R (1478) 2752 0 R (1479) 2753 0 R (1480) 2754 0 R (1481) 2755 0 R (1482) 2756 0 R (1483) 2757 0 R (1484) 2758 0 R (1485) 2759 0 R (1486) 2760 0 R (1487) 2761 0 R (1488) 2762 0 R (1489) 2763 0 R (1492) 2764 0 R (1493) 2765 0 R (1494) 2766 0 R (1495) 2767 0 R (1496) 2768 0 R (1497) 2769 0 R (1498) 2770 0 R (1499) 2775 0 R (15.0) 830 0 R (15.60.1) 834 0 R (15.61.1) 838 0 R (15.62.1) 842 0 R (15.63.1) 846 0 R (15.64.1) 850 0 R (15.65.1) 854 0 R (15.66.1) 858 0 R (15.67.1) 862 0 R (15.68.1) 866 0 R (15.69.1) 870 0 R (15.70.1) 874 0 R (15.71.1) 878 0 R (1500) 2776 0 R (1501) 2777 0 R (1502) 2778 0 R (1503) 2779 0 R (1504) 2780 0 R (1505) 2781 0 R (1506) 2782 0 R (1507) 2783 0 R (1508) 2784 0 R (1509) 2785 0 R (1510) 2786 0 R (1511) 2787 0 R (1512) 2788 0 R (1515) 2789 0 R (1516) 2790 0 R (1517) 2791 0 R (1518) 2792 0 R (1519) 2793 0 R (1520) 2794 0 R (1521) 2795 0 R (1522) 2796 0 R (1523) 2797 0 R (1524) 2798 0 R (1525) 2799 0 R (1526) 2800 0 R (1527) 2805 0 R (1528) 2806 0 R (1532) 2809 0 R (1533) 2810 0 R (1534) 2811 0 R (1535) 2812 0 R (1536) 2813 0 R (1537) 2814 0 R (1538) 2815 0 R (1539) 2816 0 R (1540) 2817 0 R (1541) 2818 0 R (1544) 2824 0 R (1545) 2825 0 R (1546) 2826 0 R (1551) 2828 0 R (1554) 2830 0 R (1556) 2832 0 R (1557) 2833 0 R (1558) 2834 0 R (1559) 2835 0 R (1561) 2837 0 R (1562) 2838 0 R (1563) 2839 0 R (1564) 2840 0 R (1565) 2841 0 R (1566) 2842 0 R (1567) 2843 0 R (1568) 2844 0 R (1569) 2845 0 R (1570) 2846 0 R (1571) 2847 0 R (1575) 2849 0 R (1576) 2850 0 R (1581) 2858 0 R (1587) 2861 0 R (1588) 2862 0 R (1589) 2863 0 R (1590) 2864 0 R (1594) 2865 0 R (1595) 2866 0 R (1596) 2867 0 R (1597) 2868 0 R (1598) 2869 0 R (16.0) 882 0 R (1602) 2870 0 R (1603) 2871 0 R (1605) 2872 0 R (1606) 2873 0 R (1607) 2874 0 R (1608) 2875 0 R (1609) 2876 0 R (1610) 2877 0 R (1615) 2880 0 R (1619) 2882 0 R (1620) 2883 0 R (1621) 2884 0 R (1626) 2889 0 R (1627) 2890 0 R (1628) 2891 0 R (1629) 2892 0 R (1633) 2895 0 R (1634) 2896 0 R (1635) 2897 0 R (1636) 2898 0 R (1637) 2899 0 R (1638) 2900 0 R (1640) 2901 0 R (1641) 2902 0 R (1642) 2903 0 R (1643) 2904 0 R (1644) 2905 0 R (1645) 2906 0 R (1646) 2907 0 R (1647) 2908 0 R (1649) 2909 0 R (1650) 2910 0 R (1651) 2911 0 R (1652) 2912 0 R (1653) 2913 0 R (1654) 2914 0 R (1655) 2915 0 R (1656) 2916 0 R (1657) 2917 0 R (1658) 2918 0 R (1659) 2919 0 R (1660) 2920 0 R (1662) 2921 0 R (1663) 2922 0 R (1664) 2923 0 R (1665) 2924 0 R (1666) 2925 0 R (1667) 2926 0 R (1668) 2927 0 R (1669) 2928 0 R (1670) 2929 0 R (1671) 2930 0 R (1672) 2931 0 R (1673) 2932 0 R (1674) 2933 0 R (1676) 2934 0 R (1677) 2935 0 R (1678) 2936 0 R (1679) 2937 0 R (1680) 2938 0 R (1681) 2939 0 R (1682) 2940 0 R (1683) 2941 0 R (1684) 2942 0 R (1686) 2943 0 R (1687) 2944 0 R (1688) 2945 0 R (1689) 2946 0 R (1690) 2947 0 R (1691) 2948 0 R (1692) 2949 0 R (1693) 2950 0 R (1694) 2951 0 R (1695) 2952 0 R (1696) 2953 0 R (1697) 2954 0 R (1698) 2955 0 R (1699) 2956 0 R (17.0) 886 0 R (17.71.79.2) 890 0 R (1700) 2957 0 R (1701) 2958 0 R (1702) 2959 0 R (1703) 2960 0 R (1704) 2961 0 R (1705) 2962 0 R (1706) 2963 0 R (1707) 2964 0 R (1708) 2965 0 R (1709) 2966 0 R (1710) 2967 0 R (1711) 2973 0 R (1712) 2974 0 R (1713) 2975 0 R (1714) 2976 0 R (1715) 2977 0 R (1716) 2978 0 R (1717) 2979 0 R (1718) 2980 0 R (1719) 2981 0 R (1724) 2984 0 R (1725) 2985 0 R (1726) 2986 0 R (1728) 2988 0 R (1729) 2989 0 R (1730) 2990 0 R (1731) 2991 0 R (1736) 2993 0 R (1737) 2994 0 R (1741) 2996 0 R (1742) 2997 0 R (1743) 2998 0 R (1744) 2999 0 R (1749) 3005 0 R (1750) 3006 0 R (1754) 3009 0 R (1755) 3010 0 R (1756) 3011 0 R (1757) 3012 0 R (1758) 3013 0 R (1759) 3014 0 R (176) 1442 0 R (1760) 3015 0 R (1761) 3016 0 R (1762) 3017 0 R (1763) 3018 0 R (1766) 3019 0 R (1767) 3020 0 R (1768) 3021 0 R (1769) 3022 0 R (177) 1443 0 R (1770) 3023 0 R (1771) 3024 0 R (1772) 3025 0 R (1773) 3026 0 R (1774) 3027 0 R (1775) 3028 0 R (1776) 3029 0 R (1777) 3030 0 R (1778) 3036 0 R (1779) 3037 0 R (1780) 3038 0 R (1781) 3039 0 R (1782) 3040 0 R (1783) 3041 0 R (1784) 3042 0 R (1785) 3043 0 R (1786) 3044 0 R (1787) 3045 0 R (1788) 3046 0 R (1789) 3047 0 R (1792) 3049 0 R (1793) 3050 0 R (1794) 3051 0 R (1795) 3052 0 R (1796) 3053 0 R (1797) 3054 0 R (1798) 3055 0 R (1799) 3056 0 R (18.0) 894 0 R (18.71.80.2) 898 0 R (18.71.80.45.3) 902 0 R (1800) 3057 0 R (1801) 3058 0 R (1804) 3065 0 R (1805) 3066 0 R (1806) 3067 0 R (1807) 3068 0 R (1808) 3069 0 R (1809) 3070 0 R (1810) 3071 0 R (1811) 3072 0 R (1812) 3073 0 R (1813) 3074 0 R (1814) 3075 0 R (1815) 3076 0 R (1816) 3077 0 R (1817) 3078 0 R (1818) 3079 0 R (1819) 3080 0 R (182) 1448 0 R (1820) 3081 0 R (1823) 3083 0 R (1824) 3084 0 R (1825) 3085 0 R (1826) 3086 0 R (1827) 3087 0 R (1828) 3088 0 R (1829) 3089 0 R (183) 1449 0 R (1830) 3090 0 R (1831) 3091 0 R (1832) 3092 0 R (1833) 3093 0 R (1834) 3094 0 R (1835) 3095 0 R (1836) 3096 0 R (1837) 3097 0 R (1838) 3098 0 R (1839) 3099 0 R (184) 1450 0 R (1840) 3100 0 R (1841) 3105 0 R (1842) 3106 0 R (1843) 3107 0 R (1844) 3108 0 R (1845) 3109 0 R (1846) 3110 0 R (1847) 3111 0 R (1848) 3112 0 R (1849) 3113 0 R (185) 1453 0 R (1850) 3114 0 R (1851) 3115 0 R (1852) 3116 0 R (1853) 3117 0 R (1854) 3118 0 R (1855) 3119 0 R (1856) 3120 0 R (1857) 3121 0 R (1858) 3122 0 R (1859) 3123 0 R (1860) 3124 0 R (1861) 3125 0 R (1862) 3126 0 R (1863) 3127 0 R (1864) 3128 0 R (1865) 3129 0 R (1868) 3134 0 R (1869) 3135 0 R (187) 1455 0 R (1870) 3136 0 R (1871) 3137 0 R (1872) 3138 0 R (1873) 3139 0 R (1874) 3140 0 R (1877) 3141 0 R (1878) 3142 0 R (1879) 3143 0 R (188) 1456 0 R (1880) 3144 0 R (1881) 3145 0 R (1882) 3146 0 R (1883) 3147 0 R (1884) 3148 0 R (1885) 3149 0 R (1886) 3150 0 R (1887) 3151 0 R (1888) 3152 0 R (1889) 3153 0 R (189) 1457 0 R (1890) 3154 0 R (1891) 3155 0 R (1892) 3156 0 R (1893) 3157 0 R (1894) 3158 0 R (1899) 3160 0 R (19.0) 906 0 R (19.71.81.2) 910 0 R (19.71.82.2) 914 0 R (19.71.83.2) 918 0 R (190) 1458 0 R (1900) 3165 0 R (1901) 3166 0 R (1902) 3167 0 R (1903) 3168 0 R (1904) 3169 0 R (1905) 3170 0 R (1906) 3171 0 R (1907) 3172 0 R (1908) 3173 0 R (1909) 3174 0 R (191) 1459 0 R (1910) 3175 0 R (1911) 3176 0 R (1912) 3177 0 R (1913) 3178 0 R (1914) 3179 0 R (1915) 3180 0 R (1916) 3181 0 R (1917) 3182 0 R (1918) 3183 0 R (1919) 3184 0 R (192) 1460 0 R (1920) 3185 0 R (1921) 3186 0 R (1922) 3187 0 R (1923) 3188 0 R (1924) 3189 0 R (1925) 3190 0 R (1926) 3191 0 R (1927) 3192 0 R (1928) 3193 0 R (1929) 3194 0 R (193) 1461 0 R (1930) 3195 0 R (1931) 3196 0 R (1932) 3197 0 R (1933) 3198 0 R (1934) 3204 0 R (1935) 3205 0 R (1936) 3206 0 R (1937) 3207 0 R (1938) 3208 0 R (1939) 3209 0 R (194) 1462 0 R (1942) 3210 0 R (1943) 3211 0 R (1944) 3212 0 R (1945) 3213 0 R (1946) 3214 0 R (1947) 3215 0 R (1948) 3216 0 R (1949) 3217 0 R (195) 1463 0 R (1950) 3218 0 R (1951) 3219 0 R (1952) 3220 0 R (1953) 3221 0 R (1954) 3226 0 R (1955) 3203 0 R (1956) 3227 0 R (1957) 3228 0 R (1958) 3229 0 R (1959) 3230 0 R (1960) 3231 0 R (1961) 3232 0 R (1962) 3233 0 R (1963) 3234 0 R (1966) 3235 0 R (1967) 3236 0 R (1968) 3237 0 R (1969) 3238 0 R (1970) 3239 0 R (1971) 3240 0 R (1972) 3241 0 R (1973) 3248 0 R (1974) 3249 0 R (1977) 3250 0 R (1978) 3251 0 R (1979) 3252 0 R (198) 1465 0 R (1980) 3253 0 R (1981) 3254 0 R (1982) 3255 0 R (1983) 3256 0 R (1984) 3257 0 R (1985) 3258 0 R (1987) 3259 0 R (1988) 3260 0 R (1989) 3261 0 R (1990) 3262 0 R (1991) 3263 0 R (1992) 3264 0 R (1993) 3265 0 R (1994) 3271 0 R (1995) 3247 0 R (1997) 3272 0 R (1998) 3273 0 R (1999) 3274 0 R (2.0) 6 0 R (20.0) 922 0 R (20.71.84.2) 926 0 R (20.71.85.2) 930 0 R (20.71.86.2) 934 0 R (20.71.87.2) 938 0 R (2000) 3275 0 R (2001) 3276 0 R (2002) 3277 0 R (2003) 3278 0 R (2004) 3279 0 R (2005) 3280 0 R (2006) 3281 0 R (2007) 3282 0 R (2008) 3283 0 R (2009) 3284 0 R (201) 1467 0 R (2010) 3285 0 R (2011) 3286 0 R (2012) 3287 0 R (2014) 3288 0 R (2015) 3289 0 R (2016) 3290 0 R (2017) 3291 0 R (2018) 3292 0 R (2019) 3293 0 R (2020) 3294 0 R (2021) 3295 0 R (2022) 3270 0 R (2027) 3313 0 R (2032) 3318 0 R (2033) 3319 0 R (2034) 3320 0 R (2035) 3321 0 R (2036) 3322 0 R (2037) 3323 0 R (2038) 3324 0 R (2039) 3325 0 R (204) 1469 0 R (2042) 3333 0 R (2043) 3334 0 R (2044) 3335 0 R (2045) 3336 0 R (2046) 3337 0 R (2049) 3339 0 R (2050) 3340 0 R (2053) 3341 0 R (2054) 3342 0 R (2055) 3343 0 R (2060) 3348 0 R (2061) 3349 0 R (2064) 3350 0 R (2065) 3351 0 R (2066) 3352 0 R (2067) 3353 0 R (2068) 3354 0 R (2069) 3355 0 R (207) 1471 0 R (2070) 3356 0 R (2071) 3357 0 R (2072) 3358 0 R (2073) 3359 0 R (2074) 3360 0 R (2075) 3361 0 R (2076) 3362 0 R (2077) 3363 0 R (2080) 3364 0 R (2081) 3365 0 R (2082) 3366 0 R (2083) 3367 0 R (2084) 3368 0 R (2085) 3369 0 R (2086) 3370 0 R (21.0) 942 0 R (21.71.88.2) 946 0 R (21.71.89.2) 950 0 R (210) 1473 0 R (2107) 3377 0 R (2108) 3378 0 R (2109) 3379 0 R (2110) 3380 0 R (2111) 3381 0 R (2112) 3382 0 R (2113) 3383 0 R (2114) 3384 0 R (2115) 3385 0 R (2116) 3386 0 R (2117) 3387 0 R (2118) 3388 0 R (2119) 3389 0 R (2120) 3390 0 R (2121) 3391 0 R (2122) 3392 0 R (2123) 3393 0 R (2124) 3394 0 R (2125) 3395 0 R (2126) 3396 0 R (2127) 3397 0 R (2128) 3398 0 R (2129) 3399 0 R (213) 1475 0 R (2130) 3400 0 R (2131) 3401 0 R (2132) 3402 0 R (2133) 3403 0 R (2134) 3404 0 R (2135) 3405 0 R (2136) 3406 0 R (2137) 3407 0 R (2138) 3408 0 R (2139) 3409 0 R (2140) 3410 0 R (2141) 3411 0 R (2142) 3412 0 R (2143) 3413 0 R (2144) 3414 0 R (2145) 3415 0 R (2146) 3416 0 R (2147) 3417 0 R (2148) 3418 0 R (2149) 3419 0 R (2150) 3420 0 R (2151) 3421 0 R (2152) 3422 0 R (2153) 3423 0 R (2154) 3424 0 R (2155) 3425 0 R (2156) 3426 0 R (2157) 3427 0 R (2160) 3428 0 R (2162) 3430 0 R (2163) 3431 0 R (2166) 3436 0 R (217) 1477 0 R (2171) 3441 0 R (2172) 3442 0 R (2173) 3443 0 R (2174) 3444 0 R (2177) 3446 0 R (2178) 3447 0 R (2179) 3448 0 R (218) 1478 0 R (2180) 3449 0 R (2181) 3450 0 R (2182) 3451 0 R (2183) 3452 0 R (2184) 3453 0 R (2185) 3454 0 R (2186) 3455 0 R (2187) 3456 0 R (2188) 3457 0 R (2189) 3458 0 R (219) 1479 0 R (2190) 3459 0 R (2191) 3460 0 R (2192) 3461 0 R (2193) 3462 0 R (2196) 3464 0 R (2199) 3466 0 R (22.0) 954 0 R (22.71.90.2) 958 0 R (220) 1480 0 R (2200) 3467 0 R (2201) 3468 0 R (2202) 3469 0 R (2203) 3470 0 R (2204) 3471 0 R (2205) 3472 0 R (2206) 3473 0 R (2207) 3474 0 R (2208) 3479 0 R (2209) 3480 0 R (2210) 3481 0 R (2211) 3482 0 R (2214) 3484 0 R (2215) 3485 0 R (2216) 3486 0 R (2217) 3487 0 R (2218) 3488 0 R (2219) 3489 0 R (2222) 3490 0 R (2223) 3491 0 R (2224) 3492 0 R (223) 1490 0 R (224) 1491 0 R (2243) 3494 0 R (2246) 3500 0 R (2247) 3501 0 R (2248) 3502 0 R (2249) 3503 0 R (225) 1492 0 R (2250) 3504 0 R (2251) 3505 0 R (2252) 3506 0 R (2253) 3507 0 R (2254) 3508 0 R (2255) 3509 0 R (2256) 3510 0 R (2257) 3511 0 R (2258) 3512 0 R (2259) 3513 0 R (226) 1493 0 R (2260) 3514 0 R (2261) 3515 0 R (2262) 3516 0 R (2265) 3517 0 R (2266) 3518 0 R (2267) 3519 0 R (227) 1494 0 R (2277) 3522 0 R (228) 1495 0 R (2280) 3528 0 R (2283) 3530 0 R (2286) 3532 0 R (2289) 3534 0 R (229) 1496 0 R (2292) 3536 0 R (2293) 3537 0 R (2296) 3539 0 R (2299) 3540 0 R (23.0) 962 0 R (23.71.91.2) 966 0 R (230) 1497 0 R (2300) 3541 0 R (2302) 3547 0 R (2303) 3548 0 R (2304) 3549 0 R (231) 1498 0 R (2313) 3551 0 R (2316) 3553 0 R (2317) 3554 0 R (2318) 3555 0 R (2319) 3556 0 R (2320) 3557 0 R (2323) 3559 0 R (2324) 3560 0 R (2327) 3562 0 R (2328) 3563 0 R (2329) 3568 0 R (2330) 3546 0 R (2334) 3569 0 R (2337) 3571 0 R (2338) 3572 0 R (2339) 3573 0 R (234) 1499 0 R (2342) 3575 0 R (2343) 3576 0 R (2344) 3577 0 R (2345) 3578 0 R (2346) 3579 0 R (2347) 3580 0 R (2348) 3581 0 R (2349) 3582 0 R (235) 1500 0 R (2350) 3583 0 R (2351) 3584 0 R (2352) 3585 0 R (2353) 3586 0 R (2354) 3587 0 R (2355) 3592 0 R (2356) 3593 0 R (2357) 3594 0 R (2358) 3595 0 R (2359) 3596 0 R (2360) 3597 0 R (2361) 3598 0 R (2362) 3599 0 R (2363) 3600 0 R (2364) 3601 0 R (2365) 3602 0 R (2366) 3603 0 R (2367) 3604 0 R (2368) 3605 0 R (2369) 3606 0 R (237) 1502 0 R (2370) 3607 0 R (2371) 3608 0 R (2372) 3609 0 R (2373) 3610 0 R (2374) 3611 0 R (2375) 3612 0 R (2376) 3613 0 R (2377) 3614 0 R (2378) 3615 0 R (2379) 3616 0 R (238) 1503 0 R (2380) 3617 0 R (2381) 3618 0 R (2382) 3619 0 R (2383) 3620 0 R (2384) 3621 0 R (2387) 3623 0 R (239) 1504 0 R (2390) 3628 0 R (2393) 3630 0 R (2394) 3631 0 R (2395) 3632 0 R (2396) 3633 0 R (2397) 3634 0 R (24) 1356 0 R (24.0) 970 0 R (24.71.92.2) 974 0 R (24.71.93.2) 978 0 R (2400) 3636 0 R (2401) 3637 0 R (2402) 3638 0 R (2403) 3639 0 R (2404) 3640 0 R (2405) 3641 0 R (2406) 3642 0 R (2408) 3648 0 R (2409) 3649 0 R (2410) 3650 0 R (2411) 3651 0 R (2412) 3652 0 R (2413) 3653 0 R (2415) 3654 0 R (2416) 3655 0 R (2419) 3656 0 R (242) 1505 0 R (2420) 3657 0 R (2421) 3658 0 R (2422) 3659 0 R (2423) 3660 0 R (2424) 3661 0 R (2425) 3666 0 R (2428) 3671 0 R (2429) 3672 0 R (243) 1506 0 R (2431) 3674 0 R (2435) 3676 0 R (2437) 3677 0 R (244) 1507 0 R (2441) 3679 0 R (2443) 3680 0 R (2444) 3681 0 R (2448) 3683 0 R (245) 1508 0 R (2450) 3684 0 R (2451) 3685 0 R (2452) 3686 0 R (2456) 3688 0 R (2458) 3689 0 R (246) 1509 0 R (2462) 3691 0 R (2464) 3692 0 R (2465) 3693 0 R (2469) 3695 0 R (247) 1510 0 R (2471) 3696 0 R (2472) 3697 0 R (2473) 3702 0 R (2474) 3703 0 R (2475) 3704 0 R (2476) 3705 0 R (248) 1511 0 R (2480) 3707 0 R (2482) 3708 0 R (2483) 3709 0 R (2484) 3710 0 R (2485) 3711 0 R (2486) 3712 0 R (2487) 3713 0 R (2488) 3714 0 R (249) 1512 0 R (2492) 3716 0 R (2493) 3717 0 R (2495) 3718 0 R (2496) 3719 0 R (25) 1357 0 R (25.0) 982 0 R (25.71.94.2) 986 0 R (25.71.95.2) 990 0 R (25.71.96.2) 994 0 R (250) 1513 0 R (2500) 3721 0 R (2501) 3722 0 R (2502) 3723 0 R (2504) 3724 0 R (2505) 3730 0 R (2506) 3731 0 R (2507) 3732 0 R (2508) 3733 0 R (2509) 3734 0 R (251) 1514 0 R (2510) 3735 0 R (2511) 3736 0 R (2512) 3737 0 R (2513) 3738 0 R (2514) 3739 0 R (2515) 3740 0 R (2516) 3741 0 R (2517) 3742 0 R (2518) 3743 0 R (2519) 3744 0 R (2520) 3745 0 R (2521) 3746 0 R (2525) 3748 0 R (2530) 3750 0 R (2531) 3751 0 R (2533) 3752 0 R (2535) 3754 0 R (2539) 3756 0 R (254) 1515 0 R (2544) 3762 0 R (2546) 3729 0 R (255) 1516 0 R (2551) 3764 0 R (2553) 3765 0 R (2555) 3767 0 R (2559) 3769 0 R (256) 1517 0 R (2564) 3771 0 R (2566) 3772 0 R (2567) 3773 0 R (2568) 3774 0 R (2572) 3776 0 R (2573) 3777 0 R (2575) 3778 0 R (2576) 3779 0 R (2577) 3780 0 R (2578) 3781 0 R (2579) 3782 0 R (258) 1524 0 R (2580) 3788 0 R (2581) 3789 0 R (2585) 3791 0 R (2587) 3792 0 R (2588) 3793 0 R (259) 1525 0 R (2592) 3795 0 R (2597) 3797 0 R (2599) 3798 0 R (26) 1358 0 R (26.0) 998 0 R (26.71.97.2) 1002 0 R (260) 1489 0 R (2603) 3800 0 R (2604) 3801 0 R (2606) 3802 0 R (2610) 3804 0 R (2615) 3806 0 R (262) 1526 0 R (2620) 3808 0 R (2624) 3815 0 R (2628) 3817 0 R (263) 1527 0 R (2633) 3819 0 R (2638) 3821 0 R (264) 1528 0 R (2640) 3822 0 R (2641) 3823 0 R (2642) 3824 0 R (2643) 3825 0 R (2644) 3826 0 R (2645) 3827 0 R (2646) 3828 0 R (2647) 3829 0 R (2648) 3830 0 R (2649) 3831 0 R (265) 1529 0 R (2650) 3832 0 R (2651) 3833 0 R (2652) 3834 0 R (2653) 3835 0 R (2654) 3836 0 R (2655) 3837 0 R (2656) 3838 0 R (2657) 3839 0 R (2662) 3842 0 R (2664) 3843 0 R (2665) 3844 0 R (2666) 3845 0 R (2667) 3850 0 R (2668) 3851 0 R (2669) 3852 0 R (2671) 3854 0 R (2675) 3856 0 R (2677) 3857 0 R (2678) 3858 0 R (2679) 3859 0 R (268) 1532 0 R (2680) 3860 0 R (2685) 3863 0 R (2688) 3865 0 R (269) 1533 0 R (2692) 3867 0 R (2694) 3868 0 R (2698) 3870 0 R (27.0) 1006 0 R (27.71.98.2) 1010 0 R (27.71.99.2) 1014 0 R (270) 1534 0 R (2700) 3871 0 R (2701) 3872 0 R (2702) 3873 0 R (2703) 3874 0 R (2704) 3875 0 R (2705) 3876 0 R (2706) 3882 0 R (2707) 3883 0 R (2708) 3884 0 R (2709) 3885 0 R (271) 1535 0 R (2710) 3886 0 R (2711) 3887 0 R (2712) 3888 0 R (2713) 3889 0 R (2714) 3890 0 R (2715) 3891 0 R (2716) 3892 0 R (2717) 3893 0 R (2718) 3894 0 R (2719) 3895 0 R (272) 1536 0 R (2720) 3896 0 R (2721) 3897 0 R (2725) 3899 0 R (2727) 3900 0 R (2728) 3901 0 R (2729) 3902 0 R (273) 1537 0 R (2730) 3903 0 R (2734) 3905 0 R (2739) 3907 0 R (274) 1538 0 R (2741) 3908 0 R (2742) 3909 0 R (2743) 3910 0 R (2744) 3911 0 R (2745) 3912 0 R (2746) 3913 0 R (2747) 3914 0 R (2748) 3915 0 R (275) 1539 0 R (2750) 3917 0 R (2751) 3918 0 R (2755) 3920 0 R (2757) 3921 0 R (2758) 3922 0 R (2759) 3929 0 R (276) 1540 0 R (2760) 3881 0 R (2762) 3930 0 R (2763) 3931 0 R (2765) 3933 0 R (2769) 3935 0 R (277) 1541 0 R (2771) 3936 0 R (2772) 3937 0 R (2773) 3938 0 R (2777) 3940 0 R (2779) 3941 0 R (278) 1542 0 R (2780) 3942 0 R (2781) 3943 0 R (2782) 3944 0 R (2783) 3945 0 R (2787) 3947 0 R (2789) 3948 0 R (279) 1543 0 R (2790) 3949 0 R (2791) 3950 0 R (2792) 3951 0 R (2796) 3953 0 R (2798) 3958 0 R (2799) 3928 0 R (28) 1360 0 R (28.0) 1018 0 R (28.71.100.2) 1022 0 R (28.71.101.2) 1026 0 R (280) 1544 0 R (2802) 3960 0 R (2806) 3962 0 R (2808) 3963 0 R (281) 1545 0 R (2810) 3965 0 R (2811) 3966 0 R (2815) 3968 0 R (282) 1546 0 R (2820) 3970 0 R (2821) 3971 0 R (2823) 3972 0 R (2824) 3973 0 R (2825) 3974 0 R (2826) 3975 0 R (2827) 3976 0 R (283) 1547 0 R (2831) 3978 0 R (2833) 3979 0 R (2834) 3980 0 R (2835) 3981 0 R (2836) 3982 0 R (2837) 3983 0 R (2838) 3984 0 R (2839) 3985 0 R (284) 1548 0 R (2840) 3986 0 R (2841) 3987 0 R (2842) 3988 0 R (2843) 3995 0 R (2844) 3996 0 R (2845) 3997 0 R (2846) 3998 0 R (2848) 4000 0 R (285) 1549 0 R (2852) 4002 0 R (2857) 4004 0 R (2859) 4005 0 R (286) 1550 0 R (2860) 4006 0 R (2861) 4007 0 R (2862) 4008 0 R (2863) 4009 0 R (2864) 4010 0 R (2868) 4012 0 R (2869) 4013 0 R (287) 1551 0 R (2871) 4014 0 R (288) 1552 0 R (2882) 4017 0 R (2883) 4018 0 R (2888) 4020 0 R (289) 1553 0 R (2890) 4021 0 R (2894) 4027 0 R (2895) 4028 0 R (2897) 3994 0 R (2899) 4029 0 R (29.0) 1030 0 R (29.71.102.2) 1034 0 R (29.71.103.2) 1038 0 R (290) 1554 0 R (2900) 4030 0 R (2901) 4031 0 R (2903) 4033 0 R (2907) 4035 0 R (2909) 4036 0 R (2910) 4037 0 R (2911) 4038 0 R (2915) 4040 0 R (2917) 4041 0 R (2918) 4042 0 R (2919) 4043 0 R (292) 1556 0 R (2920) 4048 0 R (2924) 4050 0 R (2925) 4051 0 R (2926) 4052 0 R (2928) 4053 0 R (2929) 4054 0 R (293) 1557 0 R (2930) 4055 0 R (2934) 4057 0 R (2936) 4058 0 R (2937) 4059 0 R (2938) 4060 0 R (2939) 4061 0 R (294) 1558 0 R (2940) 4062 0 R (2941) 4063 0 R (2942) 4064 0 R (2943) 4065 0 R (2944) 4066 0 R (2945) 4067 0 R (2946) 4068 0 R (2947) 4069 0 R (2948) 4070 0 R (2949) 4071 0 R (295) 1559 0 R (2950) 4072 0 R (2951) 4073 0 R (2952) 4074 0 R (2955) 4079 0 R (2958) 4080 0 R (2959) 4081 0 R (296) 1560 0 R (2960) 4082 0 R (2961) 4083 0 R (2964) 4086 0 R (2967) 4087 0 R (2968) 4088 0 R (2969) 4089 0 R (297) 1561 0 R (2970) 4090 0 R (2971) 4091 0 R (2975) 4092 0 R (2976) 4093 0 R (2977) 4094 0 R (2978) 4095 0 R (2979) 4096 0 R (2980) 4097 0 R (2981) 4098 0 R (2984) 4104 0 R (2985) 4105 0 R (2986) 4099 0 R (2989) 4106 0 R (299) 1563 0 R (2990) 4107 0 R (2991) 4108 0 R (2992) 4109 0 R (2993) 4110 0 R (2994) 4111 0 R (2995) 4112 0 R (2996) 4113 0 R (2999) 4114 0 R (3.0) 10 0 R (30.0) 1042 0 R (30.71.104.2) 1046 0 R (300) 1564 0 R (3000) 4115 0 R (3001) 4116 0 R (3002) 4117 0 R (3003) 4118 0 R (3004) 4119 0 R (3005) 4120 0 R (3006) 4121 0 R (3007) 4122 0 R (3008) 4123 0 R (301) 1565 0 R (3011) 4128 0 R (3012) 4129 0 R (3013) 4130 0 R (3014) 4131 0 R (3015) 4132 0 R (3016) 4133 0 R (3019) 4134 0 R (302) 1566 0 R (3020) 4135 0 R (3021) 4136 0 R (3022) 4137 0 R (3023) 4138 0 R (3024) 4144 0 R (3027) 4145 0 R (3028) 4146 0 R (3029) 4147 0 R (303) 1567 0 R (3030) 4148 0 R (3031) 4149 0 R (3034) 4150 0 R (3035) 4151 0 R (3036) 4152 0 R (3037) 4153 0 R (3038) 4154 0 R (3039) 4155 0 R (3040) 4156 0 R (3041) 1304 0 R (3043) 4157 0 R (3044) 4158 0 R (3045) 4159 0 R (3046) 4160 0 R (3047) 4161 0 R (305) 1569 0 R (3051) 4166 0 R (3052) 4167 0 R (3053) 4168 0 R (3054) 4169 0 R (3058) 4171 0 R (3059) 4172 0 R (306) 1579 0 R (3060) 4173 0 R (3061) 4174 0 R (3062) 4175 0 R (3065) 4180 0 R (3066) 4181 0 R (3069) 4182 0 R (3070) 4183 0 R (3071) 4184 0 R (3072) 4185 0 R (3073) 4186 0 R (3074) 4187 0 R (3075) 4188 0 R (3076) 4189 0 R (3077) 4190 0 R (3078) 4191 0 R (3079) 4192 0 R (308) 1581 0 R (3080) 4193 0 R (3081) 4194 0 R (3082) 4195 0 R (3083) 4196 0 R (3084) 4197 0 R (3085) 4198 0 R (3086) 4199 0 R (3087) 4200 0 R (3088) 4201 0 R (3089) 4202 0 R (309) 1582 0 R (3090) 4203 0 R (3091) 4204 0 R (3092) 4205 0 R (3093) 4206 0 R (3094) 4207 0 R (3095) 4208 0 R (3096) 4209 0 R (3097) 4210 0 R (31) 1361 0 R (3100) 4211 0 R (3101) 4212 0 R (3102) 4213 0 R (3103) 4214 0 R (3104) 4215 0 R (3105) 4216 0 R (3106) 4217 0 R (3107) 4218 0 R (3108) 4219 0 R (311) 1584 0 R (3113) 4224 0 R (3114) 4225 0 R (3115) 4226 0 R (3116) 4227 0 R (3117) 4228 0 R (3118) 4229 0 R (3119) 4230 0 R (312) 1585 0 R (3120) 4231 0 R (3121) 4232 0 R (3122) 4233 0 R (3123) 4234 0 R (3124) 4235 0 R (3125) 4236 0 R (3126) 4237 0 R (3127) 4238 0 R (3128) 4239 0 R (3131) 4240 0 R (3132) 4241 0 R (3133) 4242 0 R (3134) 4243 0 R (3135) 4244 0 R (3136) 4245 0 R (3137) 4246 0 R (3138) 4253 0 R (3139) 4247 0 R (314) 1587 0 R (3141) 4254 0 R (3142) 4255 0 R (3143) 4256 0 R (3144) 4257 0 R (3145) 4258 0 R (3146) 4259 0 R (3147) 4260 0 R (3148) 4261 0 R (3149) 4262 0 R (315) 1588 0 R (3150) 4263 0 R (3151) 4264 0 R (3152) 4265 0 R (3153) 4266 0 R (3154) 4267 0 R (3155) 4268 0 R (3156) 4269 0 R (3157) 4270 0 R (3158) 4271 0 R (3159) 4272 0 R (3160) 4273 0 R (3161) 4274 0 R (3162) 4275 0 R (3163) 4276 0 R (3164) 4277 0 R (3165) 4282 0 R (3166) 4252 0 R (3168) 4283 0 R (3169) 4284 0 R (317) 1590 0 R (3170) 4285 0 R (3171) 4286 0 R (3172) 4287 0 R (3173) 4288 0 R (3174) 4289 0 R (3175) 4290 0 R (3176) 4291 0 R (3177) 4292 0 R (3178) 4293 0 R (3179) 4294 0 R (318) 1591 0 R (3180) 4295 0 R (3181) 4296 0 R (3182) 4297 0 R (3185) 4298 0 R (3186) 4299 0 R (3187) 4300 0 R (3188) 4301 0 R (3189) 4302 0 R (3190) 4303 0 R (3191) 4304 0 R (3192) 4305 0 R (3193) 4306 0 R (3194) 4312 0 R (3195) 4313 0 R (3196) 4314 0 R (3197) 4315 0 R (3198) 4316 0 R (3199) 4317 0 R (32) 1362 0 R (320) 1593 0 R (3200) 4318 0 R (3201) 4319 0 R (3202) 4320 0 R (3203) 4321 0 R (3204) 4322 0 R (3205) 4323 0 R (3206) 4324 0 R (3207) 4325 0 R (3208) 4326 0 R (3209) 4327 0 R (321) 1594 0 R (3210) 4328 0 R (3211) 4329 0 R (3212) 4330 0 R (3213) 4331 0 R (3216) 4336 0 R (3217) 4337 0 R (3218) 4338 0 R (3221) 4339 0 R (3222) 4340 0 R (3223) 4341 0 R (3226) 4342 0 R (3227) 4343 0 R (3228) 4344 0 R (3229) 4345 0 R (3230) 4346 0 R (3231) 4347 0 R (3232) 4352 0 R (3233) 4353 0 R (3236) 4354 0 R (3237) 4355 0 R (3240) 4356 0 R (3241) 4357 0 R (3242) 4358 0 R (3243) 4364 0 R (3246) 4365 0 R (3247) 4366 0 R (3248) 4367 0 R (3249) 4368 0 R (325) 1596 0 R (3250) 4369 0 R (3251) 4370 0 R (3252) 4371 0 R (3253) 4372 0 R (3254) 4373 0 R (3255) 4374 0 R (3256) 4375 0 R (3257) 4376 0 R (3258) 4377 0 R (3259) 4378 0 R (326) 1597 0 R (3260) 4379 0 R (3261) 4380 0 R (3262) 4381 0 R (3263) 4382 0 R (3264) 4383 0 R (3265) 4384 0 R (3266) 4385 0 R (3267) 4386 0 R (3268) 4387 0 R (3269) 4388 0 R (3270) 4389 0 R (3271) 4390 0 R (3272) 4391 0 R (3273) 4392 0 R (3274) 4393 0 R (3275) 4394 0 R (3276) 4395 0 R (3277) 4363 0 R (3278) 4400 0 R (3279) 4401 0 R (3282) 4402 0 R (3283) 4403 0 R (3284) 4404 0 R (3287) 4405 0 R (3288) 4406 0 R (329) 1598 0 R (3291) 4407 0 R (3292) 4412 0 R (3295) 4413 0 R (3298) 4414 0 R (33) 1363 0 R (3301) 4415 0 R (3302) 4416 0 R (3303) 4417 0 R (3306) 4418 0 R (3307) 4419 0 R (3308) 4425 0 R (3309) 4426 0 R (3310) 4427 0 R (3312) 4432 0 R (3316) 4433 0 R (3317) 4434 0 R (3318) 4435 0 R (3319) 4436 0 R (332) 1599 0 R (3324) 4439 0 R (3325) 4440 0 R (3326) 4441 0 R (3327) 4442 0 R (3328) 4443 0 R (3329) 4444 0 R (333) 1600 0 R (3331) 4445 0 R (3332) 4446 0 R (3333) 4447 0 R (3334) 4448 0 R (3335) 4449 0 R (3337) 4450 0 R (3338) 4451 0 R (3339) 4452 0 R (334) 1601 0 R (3340) 4453 0 R (3341) 4454 0 R (3342) 4455 0 R (3343) 4456 0 R (3344) 4457 0 R (3345) 4458 0 R (3347) 4459 0 R (3348) 4460 0 R (3349) 4461 0 R (335) 1602 0 R (3350) 4462 0 R (3351) 4463 0 R (3352) 4464 0 R (3353) 4465 0 R (3354) 4466 0 R (3355) 4467 0 R (3356) 4468 0 R (3357) 4469 0 R (3359) 4470 0 R (336) 1603 0 R (3360) 4471 0 R (3361) 4472 0 R (3362) 4473 0 R (3363) 4474 0 R (3364) 4475 0 R (3369) 4482 0 R (337) 1604 0 R (3370) 4483 0 R (3371) 4484 0 R (3372) 4485 0 R (3373) 4486 0 R (3374) 4487 0 R (3376) 4488 0 R (3377) 4489 0 R (3378) 4490 0 R (338) 1605 0 R (3381) 4491 0 R (3382) 4492 0 R (3388) 4494 0 R (3389) 4495 0 R (339) 1606 0 R (3390) 4496 0 R (3391) 4497 0 R (3394) 4499 0 R (3395) 4500 0 R (3399) 4501 0 R (340) 1607 0 R (3400) 4502 0 R (3401) 4503 0 R (3402) 4504 0 R (3403) 4505 0 R (3406) 4510 0 R (3407) 4511 0 R (3408) 4512 0 R (3409) 4513 0 R (3410) 4514 0 R (3411) 4515 0 R (3412) 4516 0 R (3417) 4518 0 R (3418) 4519 0 R (3419) 4520 0 R (3420) 4521 0 R (3423) 4522 0 R (3424) 4523 0 R (3425) 4524 0 R (343) 1609 0 R (3431) 4528 0 R (3432) 4529 0 R (3433) 4530 0 R (3434) 4531 0 R (3435) 4532 0 R (3440) 4539 0 R (3441) 4540 0 R (3447) 4542 0 R (3448) 4543 0 R (3449) 4544 0 R (3450) 4545 0 R (3451) 4546 0 R (3452) 4547 0 R (3455) 4549 0 R (3456) 4550 0 R (3458) 4552 0 R (3459) 4553 0 R (346) 1619 0 R (3461) 4554 0 R (3462) 4555 0 R (3463) 4556 0 R (3464) 4557 0 R (3466) 4558 0 R (3467) 4559 0 R (3468) 4560 0 R (3469) 4561 0 R (3470) 4562 0 R (3472) 4563 0 R (3473) 4564 0 R (3474) 4565 0 R (3475) 4566 0 R (3482) 4569 0 R (3483) 4570 0 R (3484) 4571 0 R (3487) 4577 0 R (3488) 4578 0 R (349) 1620 0 R (3490) 4579 0 R (3491) 4580 0 R (3492) 4581 0 R (3493) 4582 0 R (3497) 4584 0 R (3498) 4585 0 R (3499) 4586 0 R (3500) 4587 0 R (3501) 4588 0 R (3502) 4589 0 R (3503) 4590 0 R (3504) 4591 0 R (3510) 4593 0 R (3511) 4594 0 R (3515) 4596 0 R (3516) 4597 0 R (3517) 4598 0 R (352) 1621 0 R (3522) 4605 0 R (3523) 4606 0 R (3524) 4607 0 R (3526) 4608 0 R (3527) 4609 0 R (3528) 4610 0 R (3529) 4611 0 R (353) 1622 0 R (3530) 4612 0 R (3531) 4613 0 R (3532) 4614 0 R (3533) 4615 0 R (3534) 4616 0 R (3535) 4617 0 R (3536) 4618 0 R (3537) 4619 0 R (3538) 4620 0 R (3539) 4621 0 R (354) 1623 0 R (3544) 4624 0 R (3545) 4625 0 R (3546) 4626 0 R (3550) 4627 0 R (3551) 4628 0 R (3556) 4631 0 R (3557) 4632 0 R (3558) 4633 0 R (3559) 4640 0 R (3560) 4634 0 R (3561) 4639 0 R (357) 1624 0 R (358) 1625 0 R (36) 1364 0 R (361) 1626 0 R (364) 1627 0 R (365) 1628 0 R (366) 1629 0 R (367) 1630 0 R (368) 1631 0 R (37) 1365 0 R (371) 1637 0 R (372) 1638 0 R (376) 1640 0 R (377) 1641 0 R (378) 1642 0 R (379) 1643 0 R (38) 1366 0 R (380) 1644 0 R (381) 1645 0 R (382) 1646 0 R (383) 1647 0 R (384) 1648 0 R (387) 1650 0 R (388) 1651 0 R (39) 1367 0 R (392) 1654 0 R (393) 1655 0 R (394) 1656 0 R (395) 1657 0 R (396) 1658 0 R (397) 1659 0 R (398) 1664 0 R (399) 1665 0 R (4.0) 14 0 R (40) 1368 0 R (400) 1666 0 R (402) 1667 0 R (403) 1668 0 R (404) 1669 0 R (405) 1670 0 R (406) 1671 0 R (407) 1672 0 R (408) 1673 0 R (409) 1674 0 R (41) 1369 0 R (410) 1675 0 R (412) 1676 0 R (413) 1677 0 R (414) 1678 0 R (415) 1679 0 R (416) 1680 0 R (417) 1681 0 R (42) 1370 0 R (420) 1683 0 R (421) 1684 0 R (422) 1685 0 R (423) 1688 0 R (425) 1690 0 R (426) 1691 0 R (427) 1692 0 R (428) 1693 0 R (429) 1694 0 R (43) 1371 0 R (430) 1695 0 R (431) 1696 0 R (432) 1697 0 R (433) 1698 0 R (434) 1703 0 R (435) 1704 0 R (436) 1705 0 R (437) 1706 0 R (438) 1707 0 R (439) 1708 0 R (44) 1372 0 R (440) 1709 0 R (441) 1710 0 R (442) 1711 0 R (443) 1712 0 R (444) 1713 0 R (445) 1714 0 R (447) 1715 0 R (448) 1716 0 R (449) 1717 0 R (45) 1373 0 R (450) 1718 0 R (451) 1719 0 R (452) 1720 0 R (455) 1722 0 R (46) 1374 0 R (460) 1725 0 R (461) 1726 0 R (462) 1727 0 R (464) 1728 0 R (465) 1729 0 R (466) 1730 0 R (468) 1731 0 R (469) 1732 0 R (47) 1375 0 R (470) 1733 0 R (471) 1740 0 R (472) 1741 0 R (473) 1742 0 R (474) 1743 0 R (475) 1744 0 R (476) 1745 0 R (477) 1746 0 R (479) 1747 0 R (48) 1376 0 R (480) 1748 0 R (481) 1749 0 R (482) 1750 0 R (483) 1751 0 R (484) 1752 0 R (485) 1753 0 R (487) 1754 0 R (488) 1755 0 R (489) 1756 0 R (49) 1377 0 R (490) 1757 0 R (494) 1759 0 R (495) 1760 0 R (496) 1761 0 R (497) 1762 0 R (498) 1763 0 R (499) 1764 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) 1378 0 R (500) 1765 0 R (501) 1766 0 R (502) 1767 0 R (503) 1768 0 R (504) 1769 0 R (505) 1770 0 R (506) 1771 0 R (507) 1772 0 R (508) 1773 0 R (509) 1774 0 R (51) 1379 0 R (510) 1775 0 R (511) 1780 0 R (512) 1739 0 R (513) 1781 0 R (514) 1782 0 R (515) 1783 0 R (516) 1784 0 R (517) 1785 0 R (518) 1786 0 R (519) 1787 0 R (52) 1384 0 R (520) 1788 0 R (524) 1791 0 R (525) 1792 0 R (527) 1794 0 R (528) 1795 0 R (53) 1385 0 R (530) 1797 0 R (531) 1798 0 R (532) 1799 0 R (533) 1800 0 R (534) 1801 0 R (535) 1802 0 R (536) 1803 0 R (537) 1804 0 R (538) 1805 0 R (539) 1811 0 R (540) 1812 0 R (541) 1813 0 R (542) 1814 0 R (543) 1815 0 R (544) 1816 0 R (545) 1817 0 R (546) 1818 0 R (547) 1819 0 R (548) 1820 0 R (551) 1822 0 R (552) 1823 0 R (554) 1825 0 R (555) 1826 0 R (557) 1828 0 R (558) 1829 0 R (559) 1830 0 R (56) 1386 0 R (560) 1831 0 R (561) 1832 0 R (562) 1833 0 R (563) 1834 0 R (564) 1835 0 R (568) 1837 0 R (569) 1838 0 R (57) 1387 0 R (571) 1839 0 R (572) 1840 0 R (573) 1841 0 R (574) 1842 0 R (575) 1845 0 R (576) 1846 0 R (577) 1847 0 R (578) 1848 0 R (579) 1849 0 R (580) 1850 0 R (581) 1851 0 R (582) 1852 0 R (584) 1858 0 R (585) 1859 0 R (586) 1860 0 R (587) 1861 0 R (588) 1862 0 R (589) 1863 0 R (59) 1388 0 R (590) 1864 0 R (591) 1865 0 R (592) 1866 0 R (593) 1867 0 R (594) 1868 0 R (595) 1869 0 R (596) 1870 0 R (597) 1871 0 R (598) 1872 0 R (6.0) 42 0 R (6.10.1) 222 0 R (6.10.21.2) 226 0 R (6.10.22.2) 230 0 R (6.10.22.21.1.4) 238 0 R (6.10.22.21.2.4) 242 0 R (6.10.22.21.3) 234 0 R (6.10.22.21.3.4) 246 0 R (6.10.23.2) 250 0 R (6.10.24.2) 254 0 R (6.10.24.22.3) 258 0 R (6.10.24.23.3) 262 0 R (6.10.25.2) 266 0 R (6.10.25.24.3) 270 0 R (6.10.26.2) 274 0 R (6.6.1) 46 0 R (6.6.1.2) 50 0 R (6.6.2.2) 54 0 R (6.6.3.2) 58 0 R (6.6.4.2) 62 0 R (6.6.5.1.3) 70 0 R (6.6.5.2) 66 0 R (6.6.5.2.3) 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) 106 0 R (6.7.1) 110 0 R (6.7.10.14.3) 146 0 R (6.7.10.15.3) 150 0 R (6.7.10.16.3) 154 0 R (6.7.10.2) 142 0 R (6.7.11.2) 158 0 R (6.7.7.2) 114 0 R (6.7.8.10.3) 122 0 R (6.7.8.11.3) 126 0 R (6.7.8.12.3) 130 0 R (6.7.8.13.3) 134 0 R (6.7.8.2) 118 0 R (6.7.9.2) 138 0 R (6.8.1) 162 0 R (6.8.12.2) 166 0 R (6.8.13.2) 170 0 R (6.8.14.2) 174 0 R (6.8.15.2) 178 0 R (6.8.16.2) 182 0 R (6.8.17.2) 186 0 R (6.9.1) 190 0 R (6.9.18.17.3) 198 0 R (6.9.18.18.3) 202 0 R (6.9.18.19.3) 206 0 R (6.9.18.2) 194 0 R (6.9.18.20.3) 210 0 R (6.9.19.2) 214 0 R (6.9.20.2) 218 0 R (60) 1389 0 R (600) 1873 0 R (601) 1874 0 R (602) 1875 0 R (603) 1876 0 R (604) 1877 0 R (605) 1878 0 R (608) 1880 0 R (609) 1881 0 R (61) 1390 0 R (610) 1882 0 R (611) 1883 0 R (612) 1884 0 R (613) 1885 0 R (614) 1886 0 R (615) 1887 0 R (616) 1888 0 R (617) 1889 0 R (618) 1890 0 R (62) 1391 0 R (621) 1892 0 R (622) 1897 0 R (623) 1898 0 R (624) 1899 0 R (625) 1900 0 R (628) 1902 0 R (629) 1903 0 R (630) 1904 0 R (633) 1906 0 R (634) 1907 0 R (635) 1908 0 R (636) 1909 0 R (637) 1910 0 R (638) 1911 0 R (639) 1912 0 R (64) 1392 0 R (642) 1914 0 R (643) 1915 0 R (644) 1916 0 R (645) 1917 0 R (646) 1918 0 R (649) 1920 0 R (65) 1393 0 R (650) 1921 0 R (651) 1922 0 R (652) 1923 0 R (655) 1925 0 R (656) 1926 0 R (657) 1927 0 R (658) 1928 0 R (66) 1394 0 R (661) 1935 0 R (662) 1936 0 R (663) 1937 0 R (664) 1938 0 R (667) 1940 0 R (668) 1941 0 R (669) 1942 0 R (67) 1395 0 R (670) 1943 0 R (673) 1945 0 R (674) 1946 0 R (675) 1947 0 R (676) 1948 0 R (677) 1949 0 R (678) 1950 0 R (679) 1951 0 R (680) 1952 0 R (681) 1953 0 R (682) 1954 0 R (683) 1955 0 R (684) 1956 0 R (687) 1957 0 R (688) 1958 0 R (689) 1959 0 R (69) 1396 0 R (692) 1961 0 R (695) 1967 0 R (696) 1968 0 R (697) 1969 0 R (7.0) 278 0 R (7.11.1) 282 0 R (7.12.1) 286 0 R (7.12.27.2) 290 0 R (7.12.28.2) 294 0 R (7.12.28.25.3) 298 0 R (7.12.28.26.3) 302 0 R (7.13.1) 306 0 R (7.14.1) 310 0 R (7.15.1) 314 0 R (7.16.1) 318 0 R (7.17.1) 322 0 R (7.17.29.2) 326 0 R (7.17.30.2) 330 0 R (7.17.30.27.3) 334 0 R (7.17.31.2) 338 0 R (7.17.32.2) 342 0 R (7.17.32.28.3) 346 0 R (7.17.32.29.3) 350 0 R (7.17.33.2) 354 0 R (7.17.33.30.10.4) 386 0 R (7.17.33.30.11.4) 390 0 R (7.17.33.30.12.4) 394 0 R (7.17.33.30.3) 358 0 R (7.17.33.30.4.4) 362 0 R (7.17.33.30.5.4) 366 0 R (7.17.33.30.6.4) 370 0 R (7.17.33.30.7.4) 374 0 R (7.17.33.30.8.4) 378 0 R (7.17.33.30.9.4) 382 0 R (7.17.33.31.3) 398 0 R (7.17.33.32.3) 402 0 R (7.18.1) 406 0 R (7.19.1) 410 0 R (7.20.1) 414 0 R (7.20.34.2) 418 0 R (7.20.35.2) 422 0 R (7.20.36.2) 426 0 R (7.20.37.2) 430 0 R (7.20.37.33.3) 434 0 R (7.20.37.34.3) 438 0 R (7.20.37.35.3) 442 0 R (7.21.1) 446 0 R (7.21.38.2) 450 0 R (7.21.39.2) 454 0 R (7.21.39.36.3) 458 0 R (7.21.39.37.3) 462 0 R (7.21.39.38.3) 466 0 R (7.21.40.2) 470 0 R (70) 1397 0 R (700) 1970 0 R (703) 1973 0 R (704) 1974 0 R (705) 1975 0 R (706) 1976 0 R (707) 1977 0 R (708) 1978 0 R (709) 1979 0 R (71) 1398 0 R (710) 1980 0 R (711) 1981 0 R (712) 1982 0 R (715) 1984 0 R (716) 1985 0 R (717) 1986 0 R (718) 1987 0 R (719) 1988 0 R (72) 1399 0 R (720) 1994 0 R (723) 1996 0 R (726) 1999 0 R (727) 2000 0 R (728) 2001 0 R (729) 2002 0 R (733) 2004 0 R (734) 2005 0 R (735) 2006 0 R (736) 2007 0 R (737) 2008 0 R (738) 2009 0 R (74) 1400 0 R (740) 2011 0 R (741) 2012 0 R (742) 2013 0 R (743) 2014 0 R (744) 2015 0 R (745) 2016 0 R (746) 2017 0 R (747) 2018 0 R (748) 2019 0 R (749) 2020 0 R (75) 1401 0 R (750) 2021 0 R (751) 2028 0 R (755) 2031 0 R (756) 2032 0 R (758) 2033 0 R (76) 1402 0 R (760) 2034 0 R (763) 2036 0 R (764) 2037 0 R (765) 2038 0 R (766) 2039 0 R (767) 2040 0 R (768) 2041 0 R (769) 2042 0 R (77) 1403 0 R (770) 2043 0 R (771) 2044 0 R (772) 2045 0 R (773) 2046 0 R (774) 2047 0 R (776) 2048 0 R (777) 2049 0 R (778) 2050 0 R (779) 2051 0 R (783) 2052 0 R (785) 2053 0 R (787) 2056 0 R (789) 2057 0 R (79) 1404 0 R (790) 2058 0 R (791) 2064 0 R (792) 2065 0 R (793) 2066 0 R (794) 2067 0 R (795) 2027 0 R (797) 2068 0 R (799) 2069 0 R (8.0) 474 0 R (8.22.1) 478 0 R (8.22.41.2) 482 0 R (8.22.42.2) 486 0 R (8.22.43.2) 490 0 R (8.23.1) 494 0 R (8.23.44.2) 498 0 R (8.23.45.2) 502 0 R (8.23.46.2) 506 0 R (8.24.1) 510 0 R (8.24.47.2) 514 0 R (8.24.48.2) 518 0 R (8.25.1) 522 0 R (8.25.49.2) 526 0 R (80) 1405 0 R (800) 2070 0 R (801) 2071 0 R (803) 2072 0 R (804) 2073 0 R (805) 2074 0 R (806) 2075 0 R (808) 2076 0 R (809) 2077 0 R (81) 1406 0 R (810) 2078 0 R (811) 2079 0 R (812) 2080 0 R (813) 2085 0 R (814) 2086 0 R (815) 2087 0 R (816) 2088 0 R (817) 2089 0 R (818) 2090 0 R (819) 2091 0 R (82) 1407 0 R (820) 2092 0 R (821) 2093 0 R (822) 2094 0 R (824) 2095 0 R (825) 2096 0 R (826) 2097 0 R (827) 2098 0 R (828) 2099 0 R (829) 2100 0 R (830) 2101 0 R (831) 2102 0 R (832) 2103 0 R (833) 2104 0 R (834) 2105 0 R (835) 2106 0 R (836) 2107 0 R (837) 2108 0 R (84) 1408 0 R (840) 2110 0 R (841) 2111 0 R (843) 2117 0 R (844) 2118 0 R (845) 2119 0 R (846) 2120 0 R (847) 2121 0 R (848) 2122 0 R (849) 2123 0 R (85) 1409 0 R (850) 2124 0 R (851) 2125 0 R (852) 2126 0 R (853) 2127 0 R (854) 2128 0 R (856) 2129 0 R (857) 2130 0 R (858) 2131 0 R (859) 2132 0 R (86) 1410 0 R (860) 2133 0 R (861) 2134 0 R (862) 2135 0 R (863) 2136 0 R (864) 2116 0 R (865) 2141 0 R (866) 2142 0 R (867) 2143 0 R (868) 2144 0 R (869) 2145 0 R (87) 1411 0 R (870) 2146 0 R (871) 2147 0 R (872) 2148 0 R (873) 2149 0 R (874) 2150 0 R (875) 2151 0 R (876) 2152 0 R (877) 2153 0 R (878) 2154 0 R (879) 2155 0 R (880) 2156 0 R (881) 2157 0 R (882) 2158 0 R (883) 2159 0 R (884) 2160 0 R (885) 2161 0 R (886) 2162 0 R (887) 2163 0 R (889) 2164 0 R (89) 1412 0 R (890) 2165 0 R (892) 2170 0 R (893) 2171 0 R (894) 2172 0 R (895) 2173 0 R (896) 2174 0 R (897) 2175 0 R (898) 2176 0 R (899) 2177 0 R (9.0) 530 0 R (9.26.1) 534 0 R (9.26.50.2) 538 0 R (9.26.51.2) 542 0 R (9.26.52.2) 546 0 R (9.26.53.2) 550 0 R (9.26.54.2) 554 0 R (9.26.55.2) 558 0 R (9.27.1) 562 0 R (9.28.1) 566 0 R (9.29.1) 570 0 R (9.30.1) 574 0 R (9.30.56.2) 578 0 R (9.30.56.39.3) 582 0 R (9.31.1) 586 0 R (9.31.57.2) 590 0 R (9.31.58.2) 594 0 R (9.31.59.2) 598 0 R (9.31.60.2) 602 0 R (9.31.61.2) 606 0 R (90) 1413 0 R (901) 2178 0 R (903) 2180 0 R (904) 2181 0 R (905) 2182 0 R (906) 2183 0 R (907) 2184 0 R (908) 2185 0 R (909) 2186 0 R (91) 1414 0 R (910) 2187 0 R (911) 2188 0 R (912) 2189 0 R (913) 2190 0 R (918) 2195 0 R (919) 2196 0 R (92) 1415 0 R (921) 2197 0 R (923) 2198 0 R (924) 2199 0 R (925) 2200 0 R (927) 2201 0 R (928) 2202 0 R (929) 2203 0 R (93) 1416 0 R (930) 2204 0 R (931) 2205 0 R (932) 2206 0 R (933) 2207 0 R (935) 2208 0 R (936) 2209 0 R (937) 2210 0 R (939) 2211 0 R (940) 2212 0 R (941) 2213 0 R (942) 2214 0 R (944) 2215 0 R (945) 2216 0 R (946) 2217 0 R (947) 2218 0 R (948) 2219 0 R (949) 2220 0 R (95) 1417 0 R (950) 2221 0 R (951) 2227 0 R (953) 2228 0 R (954) 2229 0 R (955) 2230 0 R (956) 2231 0 R (957) 2232 0 R (958) 2233 0 R (96) 1418 0 R (960) 2234 0 R (961) 2235 0 R (962) 2236 0 R (963) 2237 0 R (965) 2238 0 R (966) 2239 0 R (967) 2240 0 R (968) 2241 0 R (97) 1419 0 R (970) 2242 0 R (971) 2243 0 R (972) 2244 0 R (974) 2245 0 R (975) 2246 0 R (976) 2247 0 R (978) 2248 0 R (979) 2249 0 R (98) 1420 0 R (980) 2250 0 R (982) 2255 0 R (983) 2256 0 R (984) 2257 0 R (985) 2258 0 R (986) 2259 0 R (987) 2260 0 R (989) 2261 0 R (99) 1421 0 R (990) 2262 0 R (991) 2263 0 R (992) 2264 0 R (994) 2265 0 R (995) 2266 0 R (996) 2267 0 R (Doc-Start) 1054 0 R (about) 1161 0 R (accountsettings) 3570 0 R (administration) 1173 0 R (apache-addtype) 1944 0 R (attachments) 3561 0 R (bonsai) 3312 0 R (boolean) 3445 0 R (bug_page) 1200 0 R (bugreports) 1204 0 R (bzldap) 1891 0 R (charts) 3635 0 R (cmdline) 1308 0 R (cmdline-bugmail) 1309 0 R (commenting) 3558 0 R (components) 1177 0 R (configuration) 1169 0 R (conventions) 1166 0 R (copyright) 1162 0 R (createnewusers) 2277 0 R (credits) 1165 0 R (cust-change-permissions) 1193 0 R (cust-hooks) 1192 0 R (cust-templates) 1191 0 R (customization) 1190 0 R (cvs) 3317 0 R (dbdoc) 1195 0 R (dbmodify) 1194 0 R (defaultuser) 2268 0 R (disclaimer) 1163 0 R (emailsettings) 3574 0 R (extraconfig) 1170 0 R (faq) 1294 0 R (faq-admin) 3810 0 R (faq-admin-cvsupdate) 3820 0 R (faq-admin-enable-unconfirmed) 3841 0 R (faq-admin-livebackup) 3818 0 R (faq-admin-midair) 3816 0 R (faq-db) 3932 0 R (faq-db-corrupted) 3934 0 R (faq-db-manualedit) 3939 0 R (faq-db-permissions) 3946 0 R (faq-db-synchronize) 3952 0 R (faq-email) 3864 0 R (faq-email-mailif) 3904 0 R (faq-email-nomail) 3866 0 R (faq-email-nonreceived) 3919 0 R (faq-email-sendmailnow) 3906 0 R (faq-email-testing) 3869 0 R (faq-email-whine) 3898 0 R (faq-general) 3673 0 R (faq-general-bonsaitools) 3715 0 R (faq-general-bzmissing) 3694 0 R (faq-general-companies) 3682 0 R (faq-general-compare) 3690 0 R (faq-general-cookie) 3747 0 R (faq-general-license) 3675 0 R (faq-general-maintainers) 3687 0 R (faq-general-mysql) 3706 0 R (faq-general-perlpath) 3720 0 R (faq-general-support) 3678 0 R (faq-hacking) 4032 0 R (faq-hacking-bugzillabugs) 4039 0 R (faq-hacking-patches) 4056 0 R (faq-hacking-priority) 4049 0 R (faq-hacking-templatestyle) 4034 0 R (faq-mod-perl) 3749 0 R (faq-nt) 3959 0 R (faq-nt-bundle) 3967 0 R (faq-nt-dbi) 3977 0 R (faq-nt-easiest) 3961 0 R (faq-nt-mappings) 3969 0 R (faq-phb) 3753 0 R (faq-phb-backup) 3796 0 R (faq-phb-client) 3755 0 R (faq-phb-cost) 3805 0 R (faq-phb-data) 3775 0 R (faq-phb-email) 3768 0 R (faq-phb-emailapp) 3770 0 R (faq-phb-installtime) 3803 0 R (faq-phb-l10n) 3790 0 R (faq-phb-maintenance) 3799 0 R (faq-phb-priorities) 3757 0 R (faq-phb-renameBugs) 3807 0 R (faq-phb-reporting) 3763 0 R (faq-phb-reports) 3794 0 R (faq-security) 3853 0 R (faq-security-knownproblems) 3862 0 R (faq-security-mysql) 3855 0 R (faq-use) 3999 0 R (faq-use-accept) 4011 0 R (faq-use-attachment) 4016 0 R (faq-use-changeaddress) 4001 0 R (faq-use-close) 4022 0 R (faq-use-keyword) 4019 0 R (faq-use-query) 4003 0 R (flag-askto) 2456 0 R (flag-type-attachment) 2470 0 R (flag-type-bug) 2490 0 R (flag-types) 2468 0 R (flag-values) 2439 0 R (flags) 1293 0 R (flags-about) 2433 0 R (flags-admin) 2496 0 R (flags-create) 2502 0 R (flags-create-field-active) 2547 0 R (flags-create-field-category) 2509 0 R (flags-create-field-cclist) 2557 0 R (flags-create-field-description) 2507 0 R (flags-create-field-multiplicable) 2566 0 R (flags-create-field-name) 2505 0 R (flags-create-field-requestable) 2550 0 R (flags-create-field-sortkey) 2543 0 R (flags-create-field-specific) 2559 0 R (flags-delete) 2571 0 R (flags-edit) 2580 0 R (flags-overview) 1180 0 R (flags-simpleexample) 2405 0 R (general-advice) 1296 0 R (gfdl) 1314 0 R (gfdl-0) 1315 0 R (gfdl-1) 1316 0 R (gfdl-10) 1325 0 R (gfdl-2) 1317 0 R (gfdl-3) 1318 0 R (gfdl-4) 1319 0 R (gfdl-5) 1320 0 R (gfdl-6) 1321 0 R (gfdl-7) 1322 0 R (gfdl-8) 1323 0 R (gfdl-9) 1324 0 R (gfdl-howto) 1326 0 R (gloss-a) 4437 0 R (gloss-apache) 4438 0 R (gloss-b) 4477 0 R (gloss-bugzilla) 1444 0 R (gloss-c) 4493 0 R (gloss-cgi) 1519 0 R (gloss-component) 4498 0 R (gloss-contrib) 1929 0 R (gloss-cpan) 2022 0 R (gloss-d) 4517 0 R (gloss-daemon) 2851 0 R (gloss-dos) 3000 0 R (gloss-g) 4526 0 R (gloss-groups) 4527 0 R (gloss-htaccess) 2968 0 R (gloss-j) 4533 0 R (gloss-javascript) 4538 0 R (gloss-m) 4541 0 R (gloss-mta) 3923 0 R (gloss-mysql) 4548 0 R (gloss-p) 4568 0 R (gloss-ppm) 1989 0 R (gloss-product) 2357 0 R (gloss-q) 4583 0 R (gloss-r) 4592 0 R (gloss-rdbms) 4572 0 R (gloss-regexp) 4595 0 R (gloss-s) 4599 0 R (gloss-service) 2852 0 R (gloss-t) 4622 0 R (gloss-target-milestone) 4623 0 R (gloss-tcl) 1806 0 R (gloss-z) 4629 0 R (gloss-zarro) 4630 0 R (glossary) 1327 0 R (groups) 1183 0 R (hintsandtips) 1290 0 R (http) 1721 0 R (http-aol) 1790 0 R (http-apache) 1724 0 R (http-iis) 1758 0 R (index) 1055 0 R (install-MTA) 1485 0 R (install-bzfiles) 1483 0 R (install-config-bugzilla) 1821 0 R (install-modules-chart-base) 1608 0 R (install-modules-dbd-mysql) 1571 0 R (install-modules-gd) 1573 0 R (install-modules-gd-graph) 1610 0 R (install-modules-gd-text-align) 1578 0 R (install-modules-mime-parser) 1613 0 R (install-modules-patchreader) 1612 0 R (install-modules-template) 1572 0 R (install-modules-xml-parser) 1611 0 R (install-mysql) 1481 0 R (install-perl) 1476 0 R (install-perlmodules) 1484 0 R (install-perlmodules-manual) 1310 0 R (install-perlmodules-nonroot) 2109 0 R (install-setupdatabase) 1653 0 R (install-setupdatabase-adduser) 1682 0 R (install-webserver) 1482 0 R (installation) 1168 0 R (installing-bugzilla) 1167 0 R (integration) 1196 0 R (lifecycle) 1201 0 R (lifecycle-image) 1346 0 R (list) 1203 0 R (localconfig) 1618 0 R (manageusers) 2272 0 R (milestones) 1179 0 R (modifyusers) 2288 0 R (modules-manual-download) 1312 0 R (modules-manual-instructions) 1311 0 R (modules-manual-optional) 1313 0 R (multiplecharts) 3483 0 R (myaccount) 1199 0 R (mysql) 1649 0 R (negation) 3465 0 R (newversions) 1164 0 R (nonroot) 1172 0 R (os-macosx) 2003 0 R (os-mandrake) 2035 0 R (os-specific) 1171 0 R (os-win32) 1960 0 R (page.1) 1053 0 R (page.10) 1663 0 R (page.100) 4335 0 R (page.101) 4351 0 R (page.102) 4362 0 R (page.103) 4399 0 R (page.104) 4411 0 R (page.105) 4424 0 R (page.106) 4431 0 R (page.107) 4481 0 R (page.108) 4509 0 R (page.109) 4537 0 R (page.11) 1702 0 R (page.110) 4576 0 R (page.111) 4604 0 R (page.112) 4638 0 R (page.12) 1738 0 R (page.13) 1779 0 R (page.14) 1810 0 R (page.15) 1857 0 R (page.16) 1896 0 R (page.17) 1933 0 R (page.18) 1966 0 R (page.19) 1993 0 R (page.2) 1062 0 R (page.20) 2026 0 R (page.21) 2063 0 R (page.22) 2084 0 R (page.23) 2115 0 R (page.24) 2140 0 R (page.25) 2169 0 R (page.26) 2194 0 R (page.27) 2226 0 R (page.28) 2254 0 R (page.29) 2276 0 R (page.3) 1068 0 R (page.30) 2313 0 R (page.31) 2361 0 R (page.32) 2388 0 R (page.33) 2438 0 R (page.34) 2482 0 R (page.35) 2520 0 R (page.36) 2563 0 R (page.37) 2596 0 R (page.38) 2625 0 R (page.39) 2669 0 R (page.4) 1208 0 R (page.40) 2693 0 R (page.41) 2718 0 R (page.42) 2747 0 R (page.43) 2774 0 R (page.44) 2804 0 R (page.45) 2823 0 R (page.46) 2856 0 R (page.47) 2888 0 R (page.48) 2972 0 R (page.49) 3004 0 R (page.5) 1331 0 R (page.50) 3035 0 R (page.51) 3064 0 R (page.52) 3104 0 R (page.53) 3133 0 R (page.54) 3164 0 R (page.55) 3202 0 R (page.56) 3225 0 R (page.57) 3246 0 R (page.58) 3269 0 R (page.59) 3299 0 R (page.6) 1523 0 R (page.60) 3303 0 R (page.61) 3307 0 R (page.62) 3311 0 R (page.63) 3332 0 R (page.64) 3347 0 R (page.65) 3376 0 R (page.66) 3435 0 R (page.67) 3440 0 R (page.68) 3478 0 R (page.69) 3499 0 R (page.7) 1577 0 R (page.70) 3527 0 R (page.71) 3545 0 R (page.72) 3567 0 R (page.73) 3591 0 R (page.74) 3627 0 R (page.75) 3647 0 R (page.76) 3665 0 R (page.77) 3670 0 R (page.78) 3701 0 R (page.79) 3728 0 R (page.8) 1617 0 R (page.80) 3761 0 R (page.81) 3787 0 R (page.82) 3814 0 R (page.83) 3849 0 R (page.84) 3880 0 R (page.85) 3927 0 R (page.86) 3957 0 R (page.87) 3993 0 R (page.88) 4026 0 R (page.89) 4047 0 R (page.9) 1636 0 R (page.90) 4078 0 R (page.91) 4103 0 R (page.92) 4127 0 R (page.93) 4143 0 R (page.94) 4165 0 R (page.95) 4179 0 R (page.96) 4223 0 R (page.97) 4251 0 R (page.98) 4281 0 R (page.99) 4311 0 R (param-LDAPBaseDN) 1924 0 R (param-LDAPbinddn) 1919 0 R (param-LDAPmailattribute) 1939 0 R (param-LDAPserver) 1913 0 R (param-LDAPuidattribute) 1934 0 R (param-loginmethod) 1905 0 R (parameters) 1174 0 R (paranoid-security) 1301 0 R (patch-viewer) 1879 0 R (patches) 1307 0 R (patchviewer) 1289 0 R (patchviewer_bonsai_lxr) 3535 0 R (patchviewer_collapse) 3531 0 R (patchviewer_context) 3529 0 R (patchviewer_diff) 3523 0 R (patchviewer_link) 3533 0 R (patchviewer_unified_diff) 3538 0 R (patchviewer_view) 3521 0 R (permissionsettings) 3622 0 R (products) 1176 0 R (pronouns) 3463 0 R (query) 1202 0 R (quicksearch) 3552 0 R (quips) 1182 0 R (reporting) 1292 0 R (reports) 3629 0 R (scm) 3326 0 R (security) 1185 0 R (security-bugzilla) 1189 0 R (security-bugzilla-charset) 2992 0 R (security-bugzilla-charset-ex) 1350 0 R (security-mysql) 1187 0 R (security-mysql-account) 2857 0 R (security-mysql-account-anonymous) 1348 0 R (security-mysql-account-root) 1347 0 R (security-mysql-network) 2879 0 R (security-mysql-network-ex) 1349 0 R (security-mysql-root) 2860 0 R (security-os) 1186 0 R (security-os-accounts) 2829 0 R (security-os-chroot) 2848 0 R (security-os-ports) 2827 0 R (security-webserver) 1188 0 R (security-webserver-access) 1734 0 R (security-webserver-mod-throttle) 2983 0 R (svn) 3338 0 R (table.1) 1438 0 R (table.2) 3159 0 R (table.3) 3371 0 R (table.4) 3493 0 R (table.5) 3520 0 R (table.6) 3550 0 R (table.7) 4015 0 R (template-directory) 3008 0 R (template-edit) 3048 0 R (template-formats) 3059 0 R (template-http-accept) 3031 0 R (template-method) 2743 0 R (template-specific) 3082 0 R (tinderbox) 3328 0 R (trbl-bundleBugzilla) 1299 0 R (trbl-dbdSponge) 1300 0 R (trbl-index) 1305 0 R (trbl-passwd-encryption) 1306 0 R (trbl-perlmodule) 1298 0 R (trbl-relogin-everyone) 1303 0 R (trbl-relogin-everyone-restrict) 1352 0 R (trbl-relogin-everyone-share) 1351 0 R (trbl-testserver) 1297 0 R (trouble-filetemp) 1302 0 R (troubleshooting) 1295 0 R (upgrade-cvs) 2740 0 R (upgrade-patches) 2742 0 R (upgrade-tarball) 2741 0 R (upgrading) 1184 0 R (upgrading-completion) 2808 0 R (upgrading-methods) 2723 0 R (upgrading-version-defns) 2713 0 R (useradmin) 1175 0 R (userpreferences) 1291 0 R (using) 1197 0 R (using-intro) 1198 0 R (versions) 1178 0 R (voting) 1181 0 R (win32-code-changes) 1983 0 R (win32-http) 1995 0 R (win32-perl) 1962 0 R (win32-perl-modules) 1570 0 R]
+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]
 /Limits [(1.0) (win32-perl-modules)]
 >> endobj
-4649 0 obj <<
-/Kids [4648 0 R]
+5125 0 obj <<
+/Kids [5124 0 R]
 >> endobj
-4650 0 obj <<
-/Dests 4649 0 R
+5126 0 obj <<
+/Dests 5125 0 R
 >> endobj
-4651 0 obj <<
+5127 0 obj <<
 /Type /Catalog
-/Pages 4646 0 R
-/Outlines 4647 0 R
-/Names 4650 0 R
+/Pages 5122 0 R
+/Outlines 5123 0 R
+/Names 5126 0 R
 /PageMode /UseOutlines /URI<</Base()>>  /ViewerPreferences<<>> 
-/OpenAction 1049 0 R
+/OpenAction 1097 0 R
 /PTEX.Fullbanner (This is pdfTeX, Version 3.14159-1.10b)
 >> endobj
-4652 0 obj <<
+5128 0 obj <<
 /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.10b)/Keywords()
-/CreationDate (D:20050511213600)
+/CreationDate (D:20050930183400)
 >> endobj
 xref
-0 4653
-0000001056 65535 f 
+0 5129
+0000001104 65535 f 
 0000000009 00000 n 
-0000024499 00000 n 
-0000724755 00000 n 
+0000025630 00000 n 
+0000974063 00000 n 
 0000000048 00000 n 
-0000000111 00000 n 
-0000100605 00000 n 
-0000724670 00000 n 
-0000000150 00000 n 
-0000000185 00000 n 
-0000173439 00000 n 
-0000724583 00000 n 
-0000000224 00000 n 
-0000000258 00000 n 
-0000173501 00000 n 
-0000724494 00000 n 
-0000000298 00000 n 
-0000000333 00000 n 
-0000176267 00000 n 
-0000724368 00000 n 
-0000000373 00000 n 
-0000000419 00000 n 
-0000176392 00000 n 
-0000724294 00000 n 
-0000000461 00000 n 
-0000000506 00000 n 
-0000176769 00000 n 
-0000724207 00000 n 
-0000000548 00000 n 
-0000000582 00000 n 
-0000177083 00000 n 
-0000724120 00000 n 
-0000000624 00000 n 
-0000000660 00000 n 
-0000180565 00000 n 
-0000724033 00000 n 
-0000000702 00000 n 
-0000000733 00000 n 
-0000183538 00000 n 
-0000723959 00000 n 
-0000000775 00000 n 
-0000000819 00000 n 
-0000189561 00000 n 
-0000723831 00000 n 
-0000000859 00000 n 
-0000000908 00000 n 
-0000189686 00000 n 
-0000723718 00000 n 
-0000000950 00000 n 
-0000000986 00000 n 
-0000191008 00000 n 
-0000723644 00000 n 
-0000001030 00000 n 
-0000001060 00000 n 
-0000194555 00000 n 
-0000723557 00000 n 
-0000001104 00000 n 
-0000001135 00000 n 
-0000195249 00000 n 
-0000723470 00000 n 
-0000001179 00000 n 
-0000001215 00000 n 
-0000195690 00000 n 
-0000723383 00000 n 
-0000001259 00000 n 
-0000001293 00000 n 
-0000196451 00000 n 
-0000723257 00000 n 
-0000001337 00000 n 
-0000001375 00000 n 
-0000207175 00000 n 
-0000723183 00000 n 
-0000001421 00000 n 
-0000001459 00000 n 
-0000207426 00000 n 
-0000723096 00000 n 
-0000001505 00000 n 
-0000001558 00000 n 
-0000207614 00000 n 
-0000723009 00000 n 
-0000001604 00000 n 
-0000001643 00000 n 
-0000208306 00000 n 
-0000722922 00000 n 
-0000001689 00000 n 
-0000001736 00000 n 
-0000210597 00000 n 
-0000722835 00000 n 
-0000001782 00000 n 
-0000001827 00000 n 
-0000210722 00000 n 
-0000722748 00000 n 
-0000001873 00000 n 
-0000001924 00000 n 
-0000210910 00000 n 
-0000722661 00000 n 
-0000001970 00000 n 
-0000002017 00000 n 
-0000211225 00000 n 
-0000722572 00000 n 
-0000002063 00000 n 
-0000002112 00000 n 
-0000211476 00000 n 
-0000722495 00000 n 
-0000002159 00000 n 
-0000002209 00000 n 
-0000211664 00000 n 
-0000722418 00000 n 
-0000002254 00000 n 
-0000002308 00000 n 
-0000214935 00000 n 
-0000722288 00000 n 
-0000002351 00000 n 
-0000002389 00000 n 
-0000215125 00000 n 
-0000722209 00000 n 
-0000002434 00000 n 
-0000002472 00000 n 
-0000215821 00000 n 
-0000722077 00000 n 
-0000002517 00000 n 
-0000002549 00000 n 
-0000216074 00000 n 
-0000721998 00000 n 
-0000002597 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 
-0000219475 00000 n 
-0000721905 00000 n 
-0000002697 00000 n 
-0000002763 00000 n 
-0000220104 00000 n 
-0000721812 00000 n 
-0000002811 00000 n 
-0000002883 00000 n 
-0000220607 00000 n 
-0000721733 00000 n 
-0000002931 00000 n 
-0000002979 00000 n 
-0000225044 00000 n 
-0000721640 00000 n 
-0000003024 00000 n 
-0000003064 00000 n 
-0000225549 00000 n 
-0000721508 00000 n 
-0000003110 00000 n 
-0000003147 00000 n 
-0000225737 00000 n 
-0000721429 00000 n 
-0000003196 00000 n 
-0000003237 00000 n 
-0000230649 00000 n 
-0000721336 00000 n 
-0000003286 00000 n 
-0000003354 00000 n 
-0000235511 00000 n 
-0000721257 00000 n 
-0000003403 00000 n 
-0000003442 00000 n 
-0000240269 00000 n 
-0000721178 00000 n 
-0000003488 00000 n 
-0000003523 00000 n 
-0000241151 00000 n 
-0000721047 00000 n 
-0000003566 00000 n 
-0000003624 00000 n 
-0000241340 00000 n 
-0000720968 00000 n 
-0000003670 00000 n 
-0000003707 00000 n 
-0000244873 00000 n 
-0000720875 00000 n 
-0000003753 00000 n 
-0000003797 00000 n 
-0000245880 00000 n 
-0000720782 00000 n 
-0000003843 00000 n 
-0000003886 00000 n 
-0000246383 00000 n 
-0000720689 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 
-0000003971 00000 n 
-0000247204 00000 n 
-0000720596 00000 n 
-0000004017 00000 n 
-0000004063 00000 n 
-0000255023 00000 n 
-0000720517 00000 n 
-0000004109 00000 n 
-0000004186 00000 n 
-0000255912 00000 n 
-0000720386 00000 n 
-0000004229 00000 n 
-0000004283 00000 n 
-0000256227 00000 n 
-0000720268 00000 n 
-0000004329 00000 n 
-0000004373 00000 n 
-0000259084 00000 n 
-0000720189 00000 n 
-0000004422 00000 n 
-0000004461 00000 n 
-0000259401 00000 n 
-0000720096 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 
-0000004560 00000 n 
-0000260220 00000 n 
-0000720003 00000 n 
-0000004609 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 
-0000264092 00000 n 
-0000719924 00000 n 
-0000004724 00000 n 
-0000004774 00000 n 
-0000264534 00000 n 
-0000719831 00000 n 
-0000004820 00000 n 
-0000004855 00000 n 
-0000268534 00000 n 
-0000719752 00000 n 
-0000004901 00000 n 
-0000004945 00000 n 
-0000269666 00000 n 
-0000719635 00000 n 
-0000004989 00000 n 
-0000005049 00000 n 
-0000269791 00000 n 
-0000719556 00000 n 
-0000005096 00000 n 
-0000005135 00000 n 
-0000269980 00000 n 
-0000719424 00000 n 
-0000005182 00000 n 
-0000005214 00000 n 
-0000272509 00000 n 
-0000719320 00000 n 
-0000005264 00000 n 
-0000005317 00000 n 
-0000272635 00000 n 
-0000719241 00000 n 
-0000005369 00000 n 
-0000005431 00000 n 
-0000272886 00000 n 
-0000719148 00000 n 
-0000005483 00000 n 
-0000005537 00000 n 
-0000273203 00000 n 
-0000719069 00000 n 
-0000005589 00000 n 
-0000005639 00000 n 
-0000276459 00000 n 
-0000718976 00000 n 
-0000005686 00000 n 
-0000005717 00000 n 
-0000277464 00000 n 
-0000718844 00000 n 
-0000005764 00000 n 
-0000005803 00000 n 
-0000279565 00000 n 
-0000718765 00000 n 
-0000005853 00000 n 
-0000005904 00000 n 
-0000280387 00000 n 
-0000718686 00000 n 
-0000005954 00000 n 
-0000005999 00000 n 
-0000284098 00000 n 
-0000718554 00000 n 
-0000006046 00000 n 
-0000006084 00000 n 
-0000287139 00000 n 
-0000718489 00000 n 
-0000006134 00000 n 
-0000006188 00000 n 
-0000287707 00000 n 
-0000718410 00000 n 
-0000006235 00000 n 
-0000006270 00000 n 
-0000291050 00000 n 
-0000718277 00000 n 
-0000006311 00000 n 
-0000006364 00000 n 
-0000291176 00000 n 
-0000718198 00000 n 
-0000006408 00000 n 
-0000006455 00000 n 
-0000300025 00000 n 
-0000718066 00000 n 
-0000006499 00000 n 
-0000006543 00000 n 
-0000300151 00000 n 
-0000717987 00000 n 
-0000006590 00000 n 
-0000006642 00000 n 
-0000303331 00000 n 
-0000717869 00000 n 
-0000006689 00000 n 
-0000006736 00000 n 
-0000303457 00000 n 
-0000717790 00000 n 
-0000006786 00000 n 
-0000006833 00000 n 
-0000304210 00000 n 
-0000717711 00000 n 
-0000006883 00000 n 
-0000006927 00000 n 
-0000310981 00000 n 
-0000717618 00000 n 
-0000006971 00000 n 
-0000007004 00000 n 
-0000314174 00000 n 
-0000717525 00000 n 
-0000007048 00000 n 
-0000007083 00000 n 
-0000314992 00000 n 
-0000717432 00000 n 
-0000007127 00000 n 
-0000007160 00000 n 
-0000315682 00000 n 
-0000717339 00000 n 
-0000007204 00000 n 
-0000007239 00000 n 
-0000319175 00000 n 
-0000717207 00000 n 
-0000007283 00000 n 
-0000007313 00000 n 
-0000319556 00000 n 
-0000717128 00000 n 
-0000007360 00000 n 
-0000007403 00000 n 
-0000323446 00000 n 
-0000716996 00000 n 
-0000007450 00000 n 
-0000007488 00000 n 
-0000323572 00000 n 
-0000716931 00000 n 
-0000007538 00000 n 
-0000007573 00000 n 
-0000324708 00000 n 
-0000716838 00000 n 
-0000007620 00000 n 
-0000007666 00000 n 
-0000325533 00000 n 
-0000716706 00000 n 
-0000007713 00000 n 
-0000007758 00000 n 
-0000325722 00000 n 
-0000716627 00000 n 
-0000007808 00000 n 
-0000007853 00000 n 
-0000329095 00000 n 
-0000716548 00000 n 
-0000007903 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 
-0000329536 00000 n 
-0000716430 00000 n 
-0000007988 00000 n 
-0000008034 00000 n 
-0000329980 00000 n 
-0000716312 00000 n 
-0000008084 00000 n 
-0000008128 00000 n 
-0000330232 00000 n 
-0000716233 00000 n 
-0000008180 00000 n 
-0000008215 00000 n 
-0000330419 00000 n 
-0000716140 00000 n 
-0000008267 00000 n 
-0000008309 00000 n 
-0000330607 00000 n 
-0000716047 00000 n 
-0000008361 00000 n 
-0000008400 00000 n 
-0000335153 00000 n 
-0000715954 00000 n 
-0000008452 00000 n 
-0000008491 00000 n 
-0000335467 00000 n 
-0000715861 00000 n 
-0000008543 00000 n 
-0000008580 00000 n 
-0000335720 00000 n 
-0000715768 00000 n 
-0000008632 00000 n 
-0000008674 00000 n 
-0000336228 00000 n 
-0000715675 00000 n 
-0000008727 00000 n 
-0000008765 00000 n 
-0000338837 00000 n 
-0000715582 00000 n 
-0000008818 00000 n 
-0000008873 00000 n 
-0000339089 00000 n 
-0000715503 00000 n 
-0000008926 00000 n 
-0000008970 00000 n 
-0000339469 00000 n 
-0000715410 00000 n 
-0000009020 00000 n 
-0000009064 00000 n 
-0000340103 00000 n 
-0000715331 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 
-0000009157 00000 n 
-0000340419 00000 n 
-0000715238 00000 n 
-0000009201 00000 n 
-0000009232 00000 n 
-0000344540 00000 n 
-0000715145 00000 n 
-0000009276 00000 n 
-0000009306 00000 n 
-0000345044 00000 n 
-0000715013 00000 n 
-0000009350 00000 n 
-0000009401 00000 n 
-0000348504 00000 n 
-0000714934 00000 n 
-0000009448 00000 n 
-0000009491 00000 n 
-0000350213 00000 n 
-0000714841 00000 n 
-0000009538 00000 n 
-0000009591 00000 n 
-0000350840 00000 n 
-0000714748 00000 n 
-0000009638 00000 n 
-0000009702 00000 n 
-0000353766 00000 n 
-0000714630 00000 n 
-0000009749 00000 n 
-0000009814 00000 n 
-0000353892 00000 n 
-0000714551 00000 n 
-0000009864 00000 n 
-0000009933 00000 n 
-0000354144 00000 n 
-0000714458 00000 n 
-0000009983 00000 n 
-0000010056 00000 n 
-0000356393 00000 n 
-0000714379 00000 n 
-0000010106 00000 n 
-0000010171 00000 n 
-0000357274 00000 n 
-0000714261 00000 n 
-0000010215 00000 n 
-0000010266 00000 n 
-0000357776 00000 n 
-0000714182 00000 n 
-0000010313 00000 n 
-0000010360 00000 n 
-0000362005 00000 n 
-0000714050 00000 n 
-0000010407 00000 n 
-0000010466 00000 n 
-0000365746 00000 n 
-0000713971 00000 n 
-0000010516 00000 n 
-0000010565 00000 n 
-0000366755 00000 n 
-0000713878 00000 n 
-0000010615 00000 n 
-0000010672 00000 n 
-0000370511 00000 n 
-0000713799 00000 n 
-0000010722 00000 n 
-0000010775 00000 n 
-0000373441 00000 n 
-0000713720 00000 n 
-0000010822 00000 n 
-0000010873 00000 n 
-0000377157 00000 n 
-0000713587 00000 n 
-0000010914 00000 n 
-0000010962 00000 n 
-0000377473 00000 n 
-0000713469 00000 n 
-0000011006 00000 n 
-0000011047 00000 n 
-0000377598 00000 n 
-0000713390 00000 n 
-0000011094 00000 n 
-0000011133 00000 n 
-0000377787 00000 n 
-0000713297 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 
-0000011227 00000 n 
-0000378927 00000 n 
-0000713218 00000 n 
-0000011274 00000 n 
-0000011316 00000 n 
-0000381648 00000 n 
-0000713086 00000 n 
-0000011360 00000 n 
-0000011390 00000 n 
-0000381774 00000 n 
-0000713007 00000 n 
-0000011437 00000 n 
-0000011488 00000 n 
-0000381962 00000 n 
-0000712914 00000 n 
-0000011535 00000 n 
-0000011596 00000 n 
-0000383286 00000 n 
-0000712835 00000 n 
-0000011643 00000 n 
-0000011684 00000 n 
-0000386342 00000 n 
-0000712703 00000 n 
-0000011728 00000 n 
-0000011762 00000 n 
-0000386468 00000 n 
-0000712624 00000 n 
-0000011809 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 
-0000395151 00000 n 
-0000712545 00000 n 
+0000595498 00000 n 
+0000961844 00000 n 
 0000011938 00000 n 
-0000011999 00000 n 
-0000395722 00000 n 
-0000712427 00000 n 
-0000012043 00000 n 
-0000012076 00000 n 
-0000395848 00000 n 
-0000712362 00000 n 
-0000012123 00000 n 
-0000012194 00000 n 
-0000399265 00000 n 
-0000712229 00000 n 
-0000012235 00000 n 
-0000012286 00000 n 
-0000399391 00000 n 
-0000712111 00000 n 
-0000012330 00000 n 
-0000012377 00000 n 
-0000399643 00000 n 
-0000712032 00000 n 
-0000012424 00000 n 
-0000012479 00000 n 
-0000400401 00000 n 
-0000711939 00000 n 
-0000012526 00000 n 
-0000012584 00000 n 
-0000405030 00000 n 
-0000711846 00000 n 
-0000012631 00000 n 
-0000012679 00000 n 
-0000408888 00000 n 
-0000711753 00000 n 
-0000012726 00000 n 
-0000012779 00000 n 
-0000410088 00000 n 
-0000711660 00000 n 
-0000012826 00000 n 
-0000012873 00000 n 
-0000418713 00000 n 
-0000711581 00000 n 
-0000012920 00000 n 
-0000012997 00000 n 
-0000419283 00000 n 
-0000711488 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 
-0000013080 00000 n 
-0000428802 00000 n 
-0000711395 00000 n 
-0000013124 00000 n 
-0000013180 00000 n 
-0000432694 00000 n 
-0000711302 00000 n 
-0000013224 00000 n 
-0000013278 00000 n 
-0000436648 00000 n 
-0000711170 00000 n 
-0000013322 00000 n 
-0000013383 00000 n 
-0000437277 00000 n 
-0000711066 00000 n 
-0000013430 00000 n 
-0000013481 00000 n 
-0000440722 00000 n 
-0000711001 00000 n 
-0000013531 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 
-0000450046 00000 n 
-0000710883 00000 n 
-0000013628 00000 n 
-0000013695 00000 n 
-0000450169 00000 n 
-0000710804 00000 n 
-0000013742 00000 n 
-0000013775 00000 n 
-0000450358 00000 n 
-0000710711 00000 n 
-0000013822 00000 n 
-0000013852 00000 n 
-0000452497 00000 n 
-0000710618 00000 n 
-0000013899 00000 n 
-0000013938 00000 n 
-0000452939 00000 n 
-0000710525 00000 n 
-0000013985 00000 n 
-0000014022 00000 n 
-0000453191 00000 n 
-0000710446 00000 n 
-0000014069 00000 n 
-0000014116 00000 n 
-0000455954 00000 n 
-0000710312 00000 n 
-0000014158 00000 n 
-0000014203 00000 n 
-0000456080 00000 n 
-0000710233 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 
-0000014285 00000 n 
-0000456331 00000 n 
-0000710140 00000 n 
-0000014330 00000 n 
-0000014380 00000 n 
-0000457341 00000 n 
-0000710047 00000 n 
-0000014425 00000 n 
-0000014466 00000 n 
-0000464773 00000 n 
-0000709954 00000 n 
-0000014511 00000 n 
-0000014555 00000 n 
-0000518345 00000 n 
-0000709822 00000 n 
-0000014600 00000 n 
-0000014643 00000 n 
-0000518723 00000 n 
-0000709718 00000 n 
-0000014691 00000 n 
-0000014732 00000 n 
-0000519921 00000 n 
-0000709639 00000 n 
-0000014783 00000 n 
-0000014832 00000 n 
-0000520110 00000 n 
-0000709546 00000 n 
-0000014883 00000 n 
-0000014920 00000 n 
-0000523850 00000 n 
-0000709467 00000 n 
-0000014971 00000 n 
-0000015015 00000 n 
-0000524354 00000 n 
-0000709374 00000 n 
-0000015060 00000 n 
-0000015094 00000 n 
-0000527372 00000 n 
-0000709281 00000 n 
-0000015139 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 
-0000528569 00000 n 
-0000709149 00000 n 
-0000015220 00000 n 
-0000015257 00000 n 
-0000528946 00000 n 
-0000709070 00000 n 
-0000015305 00000 n 
-0000015363 00000 n 
-0000531171 00000 n 
-0000708977 00000 n 
-0000015411 00000 n 
-0000015479 00000 n 
-0000531358 00000 n 
-0000708884 00000 n 
-0000015527 00000 n 
-0000015585 00000 n 
-0000531546 00000 n 
-0000708791 00000 n 
-0000015633 00000 n 
-0000015704 00000 n 
-0000531735 00000 n 
-0000708698 00000 n 
-0000015752 00000 n 
-0000015810 00000 n 
-0000531924 00000 n 
-0000708605 00000 n 
-0000015858 00000 n 
-0000015908 00000 n 
-0000532172 00000 n 
-0000708526 00000 n 
-0000015956 00000 n 
-0000016006 00000 n 
-0000532358 00000 n 
-0000708394 00000 n 
-0000016051 00000 n 
-0000016090 00000 n 
-0000534889 00000 n 
-0000708315 00000 n 
-0000016138 00000 n 
-0000016182 00000 n 
-0000535331 00000 n 
-0000708222 00000 n 
-0000016230 00000 n 
-0000016268 00000 n 
-0000535774 00000 n 
-0000708129 00000 n 
-0000016316 00000 n 
-0000016351 00000 n 
-0000536026 00000 n 
-0000708050 00000 n 
-0000016399 00000 n 
-0000016437 00000 n 
-0000538919 00000 n 
-0000707918 00000 n 
-0000016482 00000 n 
-0000016524 00000 n 
-0000539107 00000 n 
-0000707839 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 
-0000016616 00000 n 
-0000539423 00000 n 
-0000707746 00000 n 
-0000016664 00000 n 
-0000016706 00000 n 
-0000544816 00000 n 
-0000707667 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 
-0000016793 00000 n 
-0000547557 00000 n 
-0000707535 00000 n 
-0000016838 00000 n 
-0000016882 00000 n 
-0000547746 00000 n 
-0000707456 00000 n 
-0000016930 00000 n 
-0000016965 00000 n 
-0000548187 00000 n 
-0000707338 00000 n 
-0000017013 00000 n 
-0000017047 00000 n 
-0000551245 00000 n 
-0000707259 00000 n 
-0000017098 00000 n 
-0000017143 00000 n 
-0000551686 00000 n 
-0000707180 00000 n 
-0000017194 00000 n 
-0000017246 00000 n 
-0000551938 00000 n 
-0000707101 00000 n 
-0000017291 00000 n 
-0000017322 00000 n 
-0000555750 00000 n 
-0000707007 00000 n 
-0000017364 00000 n 
-0000017412 00000 n 
-0000613779 00000 n 
-0000706873 00000 n 
-0000017454 00000 n 
-0000017501 00000 n 
-0000613968 00000 n 
-0000706794 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 
-0000017585 00000 n 
-0000614412 00000 n 
-0000706701 00000 n 
-0000017630 00000 n 
-0000017705 00000 n 
-0000614854 00000 n 
-0000706608 00000 n 
-0000017750 00000 n 
-0000017846 00000 n 
-0000617666 00000 n 
-0000706515 00000 n 
-0000017891 00000 n 
-0000017963 00000 n 
-0000617918 00000 n 
-0000706422 00000 n 
-0000018008 00000 n 
-0000018063 00000 n 
-0000618547 00000 n 
-0000706329 00000 n 
-0000018108 00000 n 
-0000018166 00000 n 
-0000621389 00000 n 
-0000706236 00000 n 
-0000018211 00000 n 
-0000018286 00000 n 
-0000621894 00000 n 
-0000706143 00000 n 
-0000018331 00000 n 
-0000018403 00000 n 
-0000625531 00000 n 
-0000706050 00000 n 
-0000018448 00000 n 
-0000018522 00000 n 
-0000627724 00000 n 
-0000705957 00000 n 
-0000018567 00000 n 
-0000018646 00000 n 
-0000628103 00000 n 
-0000705878 00000 n 
-0000018691 00000 n 
-0000018811 00000 n 
-0000631623 00000 n 
-0000705745 00000 n 
-0000018853 00000 n 
-0000018892 00000 n 
-0000631874 00000 n 
-0000705666 00000 n 
-0000018937 00000 n 
-0000018990 00000 n 
-0000633836 00000 n 
-0000705587 00000 n 
-0000019035 00000 n 
-0000019098 00000 n 
-0000636344 00000 n 
-0000705454 00000 n 
-0000019140 00000 n 
-0000019207 00000 n 
-0000636469 00000 n 
-0000705375 00000 n 
-0000019252 00000 n 
-0000019289 00000 n 
-0000637604 00000 n 
-0000705282 00000 n 
-0000019334 00000 n 
-0000019377 00000 n 
-0000642985 00000 n 
-0000705203 00000 n 
-0000019422 00000 n 
-0000019463 00000 n 
-0000648632 00000 n 
-0000705069 00000 n 
-0000019505 00000 n 
-0000019567 00000 n 
-0000648946 00000 n 
-0000704990 00000 n 
-0000019612 00000 n 
-0000019643 00000 n 
-0000649259 00000 n 
-0000704897 00000 n 
-0000019688 00000 n 
-0000019739 00000 n 
-0000652778 00000 n 
-0000704804 00000 n 
-0000019784 00000 n 
-0000019823 00000 n 
-0000653029 00000 n 
-0000704711 00000 n 
-0000019868 00000 n 
-0000019910 00000 n 
-0000656514 00000 n 
-0000704618 00000 n 
-0000019955 00000 n 
-0000019991 00000 n 
-0000661225 00000 n 
-0000704525 00000 n 
-0000020036 00000 n 
-0000020078 00000 n 
-0000661540 00000 n 
-0000704432 00000 n 
-0000020123 00000 n 
-0000020170 00000 n 
-0000661792 00000 n 
-0000704339 00000 n 
-0000020215 00000 n 
-0000020272 00000 n 
-0000664336 00000 n 
-0000704246 00000 n 
-0000020317 00000 n 
-0000020351 00000 n 
-0000664525 00000 n 
-0000704153 00000 n 
-0000020396 00000 n 
-0000020430 00000 n 
-0000664714 00000 n 
-0000704060 00000 n 
-0000020475 00000 n 
-0000020531 00000 n 
-0000665030 00000 n 
-0000703981 00000 n 
-0000020576 00000 n 
-0000020638 00000 n 
-0000668950 00000 n 
-0000703887 00000 n 
-0000020680 00000 n 
-0000020708 00000 n 
-0000669076 00000 n 
-0000703754 00000 n 
-0000020750 00000 n 
-0000020784 00000 n 
-0000669202 00000 n 
-0000703689 00000 n 
-0000020832 00000 n 
-0000020861 00000 n 
-0000669580 00000 n 
-0000703556 00000 n 
-0000020903 00000 n 
-0000020924 00000 n 
-0000669705 00000 n 
-0000703452 00000 n 
-0000020972 00000 n 
-0000020998 00000 n 
-0000670148 00000 n 
-0000703387 00000 n 
-0000021049 00000 n 
-0000021112 00000 n 
-0000673749 00000 n 
-0000703254 00000 n 
-0000021154 00000 n 
-0000021175 00000 n 
-0000673872 00000 n 
-0000703150 00000 n 
-0000021223 00000 n 
-0000021246 00000 n 
-0000674313 00000 n 
-0000703071 00000 n 
-0000021294 00000 n 
-0000021324 00000 n 
-0000674565 00000 n 
-0000702992 00000 n 
-0000021372 00000 n 
-0000021400 00000 n 
-0000674817 00000 n 
-0000702859 00000 n 
-0000021442 00000 n 
-0000021463 00000 n 
-0000674942 00000 n 
-0000702755 00000 n 
-0000021511 00000 n 
-0000021555 00000 n 
-0000675320 00000 n 
-0000702676 00000 n 
-0000021603 00000 n 
-0000021632 00000 n 
-0000675572 00000 n 
-0000702583 00000 n 
-0000021680 00000 n 
-0000021734 00000 n 
-0000678146 00000 n 
-0000702504 00000 n 
-0000021782 00000 n 
-0000021809 00000 n 
-0000678652 00000 n 
-0000702371 00000 n 
-0000021851 00000 n 
-0000021872 00000 n 
-0000678777 00000 n 
-0000702267 00000 n 
-0000021920 00000 n 
-0000021946 00000 n 
-0000679155 00000 n 
-0000702202 00000 n 
-0000021994 00000 n 
-0000022024 00000 n 
-0000679470 00000 n 
-0000702069 00000 n 
-0000022066 00000 n 
-0000022087 00000 n 
-0000679595 00000 n 
-0000702004 00000 n 
-0000022135 00000 n 
-0000022161 00000 n 
-0000682051 00000 n 
-0000701871 00000 n 
-0000022203 00000 n 
-0000022224 00000 n 
-0000682175 00000 n 
-0000701806 00000 n 
-0000022272 00000 n 
-0000022302 00000 n 
-0000682425 00000 n 
-0000701673 00000 n 
-0000022344 00000 n 
-0000022365 00000 n 
-0000682550 00000 n 
-0000701569 00000 n 
-0000022413 00000 n 
-0000022456 00000 n 
-0000683055 00000 n 
-0000701504 00000 n 
-0000022504 00000 n 
-0000022529 00000 n 
-0000684255 00000 n 
-0000701371 00000 n 
-0000022571 00000 n 
-0000022592 00000 n 
-0000684379 00000 n 
-0000701267 00000 n 
-0000022640 00000 n 
-0000022680 00000 n 
-0000686235 00000 n 
-0000701188 00000 n 
-0000022728 00000 n 
-0000022755 00000 n 
-0000686486 00000 n 
-0000701109 00000 n 
-0000022803 00000 n 
-0000022827 00000 n 
-0000686799 00000 n 
-0000700972 00000 n 
-0000022869 00000 n 
-0000022891 00000 n 
-0000686924 00000 n 
-0000700904 00000 n 
-0000022940 00000 n 
-0000022963 00000 n 
-0000687495 00000 n 
-0000700765 00000 n 
-0000023006 00000 n 
-0000023028 00000 n 
-0000687621 00000 n 
-0000700655 00000 n 
-0000023077 00000 n 
-0000023134 00000 n 
-0000687871 00000 n 
-0000700586 00000 n 
-0000023183 00000 n 
-0000023222 00000 n 
-0000690170 00000 n 
-0000700446 00000 n 
-0000023265 00000 n 
-0000023287 00000 n 
-0000690295 00000 n 
-0000700336 00000 n 
-0000023337 00000 n 
-0000023365 00000 n 
-0000690673 00000 n 
-0000700267 00000 n 
-0000023415 00000 n 
-0000023441 00000 n 
-0000691564 00000 n 
-0000700127 00000 n 
-0000023484 00000 n 
-0000023506 00000 n 
-0000691690 00000 n 
-0000700017 00000 n 
-0000023556 00000 n 
-0000023593 00000 n 
-0000692007 00000 n 
-0000699948 00000 n 
-0000023643 00000 n 
-0000023685 00000 n 
-0000692259 00000 n 
-0000699823 00000 n 
-0000023728 00000 n 
-0000023750 00000 n 
-0000692385 00000 n 
-0000699754 00000 n 
-0000023800 00000 n 
-0000023838 00000 n 
-0000024186 00000 n 
-0000024560 00000 n 
-0000023892 00000 n 
-0000024310 00000 n 
-0000024373 00000 n 
-0000024436 00000 n 
-0000001063 00000 f 
-0000696547 00000 n 
-0000696644 00000 n 
-0000025413 00000 n 
-0000025226 00000 n 
-0000024634 00000 n 
-0000025350 00000 n 
-0000001070 00000 f 
-0000696453 00000 n 
-0000100666 00000 n 
-0000086155 00000 n 
-0000025501 00000 n 
-0000100542 00000 n 
-0000087083 00000 n 
-0000001159 00000 f 
-0000696360 00000 n 
-0000087230 00000 n 
-0000087378 00000 n 
-0000087530 00000 n 
-0000087683 00000 n 
-0000087836 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 
+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 
+0000001111 00000 f 
+0000944476 00000 n 
+0000944573 00000 n 
+0000026571 00000 n 
+0000026384 00000 n 
+0000025765 00000 n 
+0000026508 00000 n 
+0000001118 00000 f 
+0000944382 00000 n 
+0000098583 00000 n 
+0000083332 00000 n 
+0000026659 00000 n 
+0000098459 00000 n 
+0000084278 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 
-0000088143 00000 n 
-0000088297 00000 n 
-0000088447 00000 n 
-0000088598 00000 n 
-0000088752 00000 n 
-0000088907 00000 n 
-0000089069 00000 n 
-0000089232 00000 n 
-0000089387 00000 n 
-0000089543 00000 n 
-0000089699 00000 n 
-0000089856 00000 n 
-0000090010 00000 n 
-0000090164 00000 n 
-0000090317 00000 n 
-0000090471 00000 n 
-0000090621 00000 n 
-0000090771 00000 n 
-0000090928 00000 n 
-0000091085 00000 n 
-0000091238 00000 n 
-0000091391 00000 n 
-0000091543 00000 n 
-0000091695 00000 n 
-0000091846 00000 n 
-0000091997 00000 n 
-0000092149 00000 n 
-0000092301 00000 n 
-0000092451 00000 n 
-0000092601 00000 n 
-0000092754 00000 n 
-0000092907 00000 n 
-0000093064 00000 n 
-0000093221 00000 n 
-0000093370 00000 n 
-0000093519 00000 n 
-0000093667 00000 n 
-0000093815 00000 n 
-0000093964 00000 n 
-0000094113 00000 n 
-0000094264 00000 n 
-0000094415 00000 n 
-0000094565 00000 n 
-0000094716 00000 n 
-0000094870 00000 n 
-0000095024 00000 n 
-0000095181 00000 n 
-0000095338 00000 n 
-0000095498 00000 n 
-0000095658 00000 n 
-0000095818 00000 n 
-0000095978 00000 n 
-0000096132 00000 n 
-0000096286 00000 n 
-0000096443 00000 n 
-0000096600 00000 n 
-0000096752 00000 n 
-0000096905 00000 n 
-0000097071 00000 n 
-0000097237 00000 n 
-0000097388 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 
+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 
-0000097687 00000 n 
-0000097835 00000 n 
-0000097988 00000 n 
-0000098141 00000 n 
-0000098289 00000 n 
-0000098437 00000 n 
-0000098591 00000 n 
-0000098745 00000 n 
-0000098897 00000 n 
-0000099049 00000 n 
-0000099200 00000 n 
-0000099351 00000 n 
-0000099502 00000 n 
-0000099653 00000 n 
-0000099799 00000 n 
-0000099945 00000 n 
-0000100092 00000 n 
-0000100239 00000 n 
-0000100390 00000 n 
-0000001228 00000 f 
-0000696265 00000 n 
-0000176204 00000 n 
-0000176329 00000 n 
-0000176706 00000 n 
-0000177020 00000 n 
-0000180502 00000 n 
-0000183475 00000 n 
-0000189498 00000 n 
-0000189623 00000 n 
-0000212040 00000 n 
-0000241088 00000 n 
-0000255849 00000 n 
-0000269603 00000 n 
-0000290987 00000 n 
-0000291113 00000 n 
-0000299962 00000 n 
-0000310918 00000 n 
-0000314112 00000 n 
-0000314929 00000 n 
-0000315619 00000 n 
-0000319112 00000 n 
-0000340357 00000 n 
-0000344477 00000 n 
-0000344981 00000 n 
-0000357211 00000 n 
-0000377094 00000 n 
-0000377410 00000 n 
-0000379117 00000 n 
-0000386279 00000 n 
-0000395659 00000 n 
-0000399202 00000 n 
-0000399328 00000 n 
-0000419220 00000 n 
-0000428739 00000 n 
-0000432631 00000 n 
-0000431999 00000 n 
-0000449983 00000 n 
-0000455891 00000 n 
-0000456017 00000 n 
-0000456268 00000 n 
-0000457278 00000 n 
-0000464711 00000 n 
-0000461442 00000 n 
-0000524291 00000 n 
-0000524731 00000 n 
-0000162545 00000 n 
-0000149584 00000 n 
-0000100782 00000 n 
-0000162482 00000 n 
-0000150422 00000 n 
-0000150576 00000 n 
-0000150730 00000 n 
-0000150885 00000 n 
-0000151040 00000 n 
-0000151198 00000 n 
-0000151356 00000 n 
-0000151507 00000 n 
-0000151659 00000 n 
-0000151807 00000 n 
-0000151955 00000 n 
-0000152100 00000 n 
-0000152245 00000 n 
-0000152403 00000 n 
-0000152561 00000 n 
-0000152718 00000 n 
-0000152875 00000 n 
-0000153033 00000 n 
-0000153191 00000 n 
-0000001439 00000 f 
-0000696175 00000 n 
-0000153349 00000 n 
-0000153507 00000 n 
-0000153669 00000 n 
-0000153831 00000 n 
-0000153988 00000 n 
-0000154145 00000 n 
-0000154304 00000 n 
-0000154464 00000 n 
-0000154622 00000 n 
-0000154781 00000 n 
-0000154945 00000 n 
-0000155109 00000 n 
-0000155256 00000 n 
-0000155403 00000 n 
-0000155556 00000 n 
-0000155709 00000 n 
-0000155874 00000 n 
-0000156039 00000 n 
-0000156189 00000 n 
-0000156339 00000 n 
-0000156489 00000 n 
-0000156639 00000 n 
-0000156797 00000 n 
-0000156955 00000 n 
-0000157124 00000 n 
-0000157293 00000 n 
-0000157462 00000 n 
-0000157631 00000 n 
-0000157797 00000 n 
-0000157963 00000 n 
-0000158129 00000 n 
-0000158295 00000 n 
-0000158441 00000 n 
-0000158588 00000 n 
-0000158737 00000 n 
-0000158887 00000 n 
-0000159035 00000 n 
-0000159184 00000 n 
-0000159333 00000 n 
-0000159483 00000 n 
-0000159632 00000 n 
-0000159782 00000 n 
-0000159931 00000 n 
-0000160081 00000 n 
-0000160230 00000 n 
-0000160380 00000 n 
-0000160529 00000 n 
-0000160679 00000 n 
-0000160827 00000 n 
-0000160976 00000 n 
-0000161124 00000 n 
-0000161273 00000 n 
-0000161422 00000 n 
-0000161572 00000 n 
-0000161722 00000 n 
-0000161873 00000 n 
-0000162025 00000 n 
-0000162179 00000 n 
-0000162330 00000 n 
-0000528506 00000 n 
-0000532295 00000 n 
-0000538856 00000 n 
-0000544942 00000 n 
-0000551875 00000 n 
-0000555687 00000 n 
-0000613716 00000 n 
-0000613905 00000 n 
-0000614349 00000 n 
-0000614791 00000 n 
-0000615356 00000 n 
-0000617855 00000 n 
-0000618484 00000 n 
-0000619244 00000 n 
-0000621831 00000 n 
-0000625468 00000 n 
-0000625910 00000 n 
-0000628040 00000 n 
-0000631560 00000 n 
-0000631811 00000 n 
-0000633774 00000 n 
-0000636281 00000 n 
-0000636406 00000 n 
-0000637541 00000 n 
-0000642922 00000 n 
-0000648569 00000 n 
-0000648883 00000 n 
-0000649196 00000 n 
-0000652715 00000 n 
-0000652966 00000 n 
-0000656451 00000 n 
-0000661162 00000 n 
-0000661477 00000 n 
-0000661729 00000 n 
-0000664273 00000 n 
-0000664462 00000 n 
-0000664651 00000 n 
-0000664967 00000 n 
-0000668887 00000 n 
-0000173563 00000 n 
-0000170750 00000 n 
-0000162661 00000 n 
-0000173376 00000 n 
+0000097688 00000 n 
+0000097837 00000 n 
+0000097995 00000 n 
+0000098152 00000 n 
+0000098305 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 
-0000171169 00000 n 
-0000171326 00000 n 
-0000171496 00000 n 
-0000171666 00000 n 
-0000171841 00000 n 
-0000172016 00000 n 
-0000172184 00000 n 
-0000172352 00000 n 
-0000172523 00000 n 
-0000172694 00000 n 
-0000172863 00000 n 
-0000173033 00000 n 
-0000173204 00000 n 
-0000465026 00000 n 
-0000382278 00000 n 
-0000382656 00000 n 
-0000383412 00000 n 
-0000396038 00000 n 
-0000624583 00000 n 
-0000624962 00000 n 
-0000178157 00000 n 
-0000175911 00000 n 
-0000173665 00000 n 
-0000176454 00000 n 
-0000176517 00000 n 
-0000176580 00000 n 
-0000176056 00000 n 
-0000176643 00000 n 
-0000176831 00000 n 
-0000176894 00000 n 
-0000176957 00000 n 
-0000177145 00000 n 
-0000177208 00000 n 
-0000177270 00000 n 
-0000177334 00000 n 
-0000177397 00000 n 
-0000177460 00000 n 
-0000177523 00000 n 
-0000177585 00000 n 
-0000177648 00000 n 
-0000177712 00000 n 
-0000177776 00000 n 
-0000177840 00000 n 
-0000177903 00000 n 
-0000177966 00000 n 
-0000178029 00000 n 
-0000178093 00000 n 
-0000183789 00000 n 
-0000180189 00000 n 
-0000178273 00000 n 
-0000180313 00000 n 
-0000180375 00000 n 
-0000180438 00000 n 
-0000180627 00000 n 
-0000180690 00000 n 
-0000180753 00000 n 
-0000180816 00000 n 
-0000180878 00000 n 
-0000180941 00000 n 
-0000181004 00000 n 
-0000181067 00000 n 
-0000181131 00000 n 
-0000181194 00000 n 
-0000181256 00000 n 
-0000181319 00000 n 
-0000181383 00000 n 
-0000181446 00000 n 
-0000181509 00000 n 
-0000181572 00000 n 
-0000181636 00000 n 
-0000181699 00000 n 
-0000181762 00000 n 
-0000181825 00000 n 
-0000181889 00000 n 
-0000181952 00000 n 
-0000182015 00000 n 
-0000182078 00000 n 
-0000182142 00000 n 
-0000182205 00000 n 
-0000182267 00000 n 
-0000182329 00000 n 
-0000182393 00000 n 
-0000182456 00000 n 
-0000182519 00000 n 
-0000182581 00000 n 
-0000182645 00000 n 
-0000182709 00000 n 
-0000182773 00000 n 
-0000182837 00000 n 
-0000182901 00000 n 
-0000182965 00000 n 
-0000183029 00000 n 
-0000183093 00000 n 
-0000183157 00000 n 
-0000183221 00000 n 
-0000183285 00000 n 
-0000183349 00000 n 
-0000183412 00000 n 
-0000183600 00000 n 
-0000183663 00000 n 
-0000183726 00000 n 
-0000696769 00000 n 
-0000185746 00000 n 
-0000185254 00000 n 
-0000183905 00000 n 
-0000185557 00000 n 
-0000001451 00000 f 
-0000696083 00000 n 
-0000185399 00000 n 
-0000185620 00000 n 
-0000185683 00000 n 
-0000674502 00000 n 
-0000191324 00000 n 
-0000188202 00000 n 
-0000185890 00000 n 
-0000189748 00000 n 
-0000189811 00000 n 
-0000189874 00000 n 
-0000001686 00000 f 
-0000695983 00000 n 
-0000189938 00000 n 
-0000188401 00000 n 
-0000190001 00000 n 
-0000190063 00000 n 
-0000190126 00000 n 
-0000190189 00000 n 
-0000190252 00000 n 
-0000190316 00000 n 
-0000190378 00000 n 
-0000190441 00000 n 
-0000190504 00000 n 
-0000188555 00000 n 
-0000190567 00000 n 
-0000188708 00000 n 
-0000190630 00000 n 
-0000188864 00000 n 
-0000190693 00000 n 
-0000189024 00000 n 
-0000190756 00000 n 
-0000189182 00000 n 
-0000190819 00000 n 
-0000189344 00000 n 
-0000190882 00000 n 
-0000190945 00000 n 
-0000191070 00000 n 
-0000191133 00000 n 
-0000191197 00000 n 
-0000191260 00000 n 
-0000194492 00000 n 
-0000195186 00000 n 
-0000195627 00000 n 
-0000196388 00000 n 
-0000211602 00000 n 
-0000196703 00000 n 
-0000193966 00000 n 
-0000191468 00000 n 
-0000194430 00000 n 
-0000194617 00000 n 
-0000194680 00000 n 
-0000194744 00000 n 
-0000194807 00000 n 
-0000194869 00000 n 
-0000194932 00000 n 
-0000194995 00000 n 
-0000195059 00000 n 
-0000195123 00000 n 
-0000195311 00000 n 
-0000195374 00000 n 
-0000194120 00000 n 
-0000195437 00000 n 
-0000195501 00000 n 
-0000195564 00000 n 
-0000195752 00000 n 
-0000195815 00000 n 
-0000195879 00000 n 
-0000195943 00000 n 
-0000196007 00000 n 
-0000196070 00000 n 
-0000196134 00000 n 
-0000196198 00000 n 
-0000196262 00000 n 
-0000196325 00000 n 
-0000196513 00000 n 
-0000196576 00000 n 
-0000196640 00000 n 
-0000194273 00000 n 
-0000674879 00000 n 
-0000202845 00000 n 
-0000199191 00000 n 
-0000196833 00000 n 
-0000200198 00000 n 
-0000200261 00000 n 
-0000200324 00000 n 
-0000200388 00000 n 
-0000200451 00000 n 
-0000200514 00000 n 
-0000200577 00000 n 
-0000199372 00000 n 
-0000199534 00000 n 
-0000200640 00000 n 
-0000200703 00000 n 
-0000200766 00000 n 
-0000200829 00000 n 
-0000200893 00000 n 
-0000200956 00000 n 
-0000201019 00000 n 
-0000201082 00000 n 
-0000201145 00000 n 
-0000201208 00000 n 
-0000201271 00000 n 
-0000201335 00000 n 
-0000201398 00000 n 
-0000201461 00000 n 
-0000201524 00000 n 
-0000201587 00000 n 
-0000201649 00000 n 
-0000201711 00000 n 
-0000201774 00000 n 
-0000201837 00000 n 
-0000201900 00000 n 
-0000201963 00000 n 
-0000202026 00000 n 
-0000199703 00000 n 
-0000202089 00000 n 
-0000202152 00000 n 
-0000202215 00000 n 
-0000202278 00000 n 
-0000202341 00000 n 
-0000202404 00000 n 
-0000199871 00000 n 
-0000202467 00000 n 
-0000202530 00000 n 
-0000202593 00000 n 
-0000202657 00000 n 
-0000202719 00000 n 
-0000200038 00000 n 
-0000202782 00000 n 
-0000259338 00000 n 
-0000207112 00000 n 
-0000207363 00000 n 
-0000207551 00000 n 
-0000208494 00000 n 
-0000205090 00000 n 
-0000202989 00000 n 
-0000206295 00000 n 
-0000206358 00000 n 
-0000206420 00000 n 
-0000205280 00000 n 
-0000206483 00000 n 
-0000206546 00000 n 
-0000205449 00000 n 
-0000206609 00000 n 
-0000206672 00000 n 
-0000205616 00000 n 
-0000206735 00000 n 
-0000206798 00000 n 
-0000205788 00000 n 
-0000206861 00000 n 
-0000206924 00000 n 
-0000205955 00000 n 
-0000206987 00000 n 
-0000207050 00000 n 
-0000206125 00000 n 
-0000207237 00000 n 
-0000207300 00000 n 
-0000207488 00000 n 
-0000207676 00000 n 
-0000207739 00000 n 
-0000207802 00000 n 
-0000207865 00000 n 
-0000207928 00000 n 
-0000207992 00000 n 
-0000208054 00000 n 
-0000208117 00000 n 
-0000208180 00000 n 
-0000208243 00000 n 
-0000208368 00000 n 
-0000208431 00000 n 
-0000210847 00000 n 
-0000211413 00000 n 
-0000211162 00000 n 
-0000212103 00000 n 
-0000210348 00000 n 
-0000208624 00000 n 
-0000210472 00000 n 
-0000210535 00000 n 
-0000210659 00000 n 
-0000210784 00000 n 
-0000210972 00000 n 
-0000211035 00000 n 
-0000211098 00000 n 
-0000211287 00000 n 
-0000211350 00000 n 
-0000211539 00000 n 
-0000211726 00000 n 
-0000211788 00000 n 
-0000211851 00000 n 
-0000211914 00000 n 
-0000211977 00000 n 
-0000696894 00000 n 
-0000216516 00000 n 
-0000214408 00000 n 
-0000212219 00000 n 
-0000214872 00000 n 
-0000214998 00000 n 
-0000215061 00000 n 
-0000214562 00000 n 
-0000215188 00000 n 
-0000215251 00000 n 
-0000215315 00000 n 
-0000215378 00000 n 
-0000215441 00000 n 
-0000215505 00000 n 
-0000215568 00000 n 
-0000215632 00000 n 
-0000215695 00000 n 
-0000215758 00000 n 
-0000215884 00000 n 
-0000215947 00000 n 
-0000214714 00000 n 
-0000216011 00000 n 
-0000216137 00000 n 
-0000216200 00000 n 
-0000216264 00000 n 
-0000216327 00000 n 
-0000216390 00000 n 
-0000216453 00000 n 
-0000221495 00000 n 
-0000218922 00000 n 
-0000216646 00000 n 
-0000219222 00000 n 
-0000219285 00000 n 
-0000219348 00000 n 
-0000219412 00000 n 
-0000219538 00000 n 
-0000219601 00000 n 
-0000219664 00000 n 
-0000219727 00000 n 
-0000219790 00000 n 
-0000219853 00000 n 
-0000219916 00000 n 
-0000219979 00000 n 
-0000220041 00000 n 
-0000220167 00000 n 
-0000220230 00000 n 
-0000220292 00000 n 
-0000220356 00000 n 
-0000220419 00000 n 
-0000220482 00000 n 
-0000220545 00000 n 
-0000220669 00000 n 
-0000220732 00000 n 
-0000220796 00000 n 
-0000001843 00000 f 
-0000695885 00000 n 
-0000220860 00000 n 
-0000219067 00000 n 
-0000220924 00000 n 
-0000220986 00000 n 
-0000221050 00000 n 
-0000221114 00000 n 
-0000221178 00000 n 
-0000221242 00000 n 
-0000221306 00000 n 
-0000221369 00000 n 
-0000221433 00000 n 
-0000226370 00000 n 
-0000223907 00000 n 
-0000221653 00000 n 
-0000224221 00000 n 
-0000224284 00000 n 
-0000224347 00000 n 
-0000224410 00000 n 
-0000224474 00000 n 
-0000224537 00000 n 
-0000224600 00000 n 
-0000224664 00000 n 
-0000224728 00000 n 
-0000224791 00000 n 
-0000224854 00000 n 
-0000224918 00000 n 
-0000224981 00000 n 
-0000225106 00000 n 
-0000225169 00000 n 
-0000225233 00000 n 
-0000225296 00000 n 
-0000225359 00000 n 
-0000225422 00000 n 
-0000225486 00000 n 
-0000225611 00000 n 
-0000224052 00000 n 
-0000225674 00000 n 
-0000225800 00000 n 
-0000225862 00000 n 
-0000225925 00000 n 
-0000225988 00000 n 
-0000226052 00000 n 
-0000226116 00000 n 
-0000226179 00000 n 
-0000226243 00000 n 
-0000226307 00000 n 
-0000386405 00000 n 
-0000231794 00000 n 
-0000229198 00000 n 
-0000226500 00000 n 
-0000229322 00000 n 
-0000229385 00000 n 
-0000229447 00000 n 
-0000229510 00000 n 
-0000229574 00000 n 
-0000229637 00000 n 
-0000229700 00000 n 
-0000229763 00000 n 
-0000229827 00000 n 
-0000229889 00000 n 
-0000229952 00000 n 
-0000230016 00000 n 
-0000230079 00000 n 
-0000230142 00000 n 
-0000230205 00000 n 
-0000230269 00000 n 
-0000230332 00000 n 
-0000230396 00000 n 
-0000230460 00000 n 
-0000230523 00000 n 
-0000230586 00000 n 
-0000230711 00000 n 
-0000230774 00000 n 
-0000230837 00000 n 
-0000230901 00000 n 
-0000230965 00000 n 
-0000231029 00000 n 
-0000231093 00000 n 
-0000231157 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 
+0000001883 00000 f 
+0000944104 00000 n 
+0000230417 00000 n 
+0000230578 00000 n 
+0000230735 00000 n 
+0000230892 00000 n 
+0000231057 00000 n 
 0000231221 00000 n 
-0000231285 00000 n 
-0000231348 00000 n 
-0000231412 00000 n 
-0000231476 00000 n 
-0000231540 00000 n 
-0000231604 00000 n 
-0000231668 00000 n 
-0000231731 00000 n 
-0000236396 00000 n 
-0000234177 00000 n 
-0000231938 00000 n 
-0000234814 00000 n 
-0000234877 00000 n 
-0000234940 00000 n 
-0000235003 00000 n 
-0000235066 00000 n 
-0000235130 00000 n 
-0000235194 00000 n 
-0000235257 00000 n 
-0000235320 00000 n 
-0000235384 00000 n 
-0000234340 00000 n 
-0000235448 00000 n 
-0000235574 00000 n 
-0000235637 00000 n 
-0000234509 00000 n 
-0000235700 00000 n 
-0000235763 00000 n 
-0000234661 00000 n 
-0000235827 00000 n 
-0000235888 00000 n 
-0000235951 00000 n 
-0000236014 00000 n 
-0000236077 00000 n 
-0000236141 00000 n 
-0000236205 00000 n 
-0000236269 00000 n 
-0000236333 00000 n 
-0000691944 00000 n 
-0000242161 00000 n 
-0000238877 00000 n 
-0000236540 00000 n 
-0000239506 00000 n 
-0000239569 00000 n 
-0000239632 00000 n 
-0000239696 00000 n 
-0000239760 00000 n 
-0000239823 00000 n 
-0000239886 00000 n 
-0000239950 00000 n 
-0000240014 00000 n 
-0000240078 00000 n 
-0000240142 00000 n 
-0000240206 00000 n 
-0000240332 00000 n 
-0000240395 00000 n 
-0000239040 00000 n 
-0000240459 00000 n 
-0000240522 00000 n 
-0000239198 00000 n 
-0000240586 00000 n 
-0000240650 00000 n 
-0000240714 00000 n 
-0000240775 00000 n 
-0000240835 00000 n 
-0000240898 00000 n 
-0000240962 00000 n 
-0000241025 00000 n 
-0000239352 00000 n 
-0000241214 00000 n 
-0000241277 00000 n 
-0000241403 00000 n 
-0000241466 00000 n 
-0000241529 00000 n 
-0000241592 00000 n 
-0000002029 00000 f 
-0000695790 00000 n 
-0000241655 00000 n 
-0000241718 00000 n 
-0000241782 00000 n 
-0000241845 00000 n 
-0000241908 00000 n 
-0000241971 00000 n 
-0000242034 00000 n 
-0000242098 00000 n 
-0000697019 00000 n 
-0000247330 00000 n 
-0000244686 00000 n 
-0000242319 00000 n 
-0000244810 00000 n 
-0000244935 00000 n 
-0000244998 00000 n 
-0000245061 00000 n 
-0000245124 00000 n 
-0000245187 00000 n 
-0000245250 00000 n 
-0000245314 00000 n 
-0000245377 00000 n 
-0000245440 00000 n 
-0000245503 00000 n 
-0000245565 00000 n 
-0000245628 00000 n 
-0000245692 00000 n 
-0000245755 00000 n 
-0000245818 00000 n 
-0000245942 00000 n 
-0000246004 00000 n 
-0000246067 00000 n 
-0000246130 00000 n 
-0000246193 00000 n 
-0000246256 00000 n 
-0000246320 00000 n 
-0000246445 00000 n 
-0000246508 00000 n 
-0000246571 00000 n 
-0000246635 00000 n 
-0000246699 00000 n 
-0000246762 00000 n 
-0000246825 00000 n 
-0000246888 00000 n 
-0000246950 00000 n 
-0000247013 00000 n 
-0000247077 00000 n 
-0000247141 00000 n 
-0000247267 00000 n 
-0000252163 00000 n 
-0000249836 00000 n 
-0000247460 00000 n 
-0000250138 00000 n 
-0000250201 00000 n 
-0000250264 00000 n 
-0000250327 00000 n 
-0000250391 00000 n 
-0000249981 00000 n 
-0000250455 00000 n 
-0000250519 00000 n 
-0000250582 00000 n 
-0000250644 00000 n 
-0000250707 00000 n 
-0000250770 00000 n 
-0000250833 00000 n 
-0000250897 00000 n 
-0000250961 00000 n 
-0000251024 00000 n 
-0000251088 00000 n 
-0000251152 00000 n 
-0000251215 00000 n 
-0000251278 00000 n 
-0000251341 00000 n 
-0000251404 00000 n 
-0000251468 00000 n 
-0000251532 00000 n 
-0000251595 00000 n 
-0000251657 00000 n 
-0000251720 00000 n 
-0000251783 00000 n 
-0000251847 00000 n 
-0000251910 00000 n 
-0000251973 00000 n 
-0000252036 00000 n 
-0000252099 00000 n 
-0000678020 00000 n 
-0000256416 00000 n 
-0000254142 00000 n 
-0000252307 00000 n 
-0000254266 00000 n 
-0000254329 00000 n 
-0000254392 00000 n 
-0000254455 00000 n 
-0000254518 00000 n 
-0000254581 00000 n 
-0000254645 00000 n 
-0000254708 00000 n 
-0000254770 00000 n 
-0000254833 00000 n 
-0000254896 00000 n 
-0000254960 00000 n 
-0000255086 00000 n 
-0000255149 00000 n 
-0000255213 00000 n 
-0000255277 00000 n 
-0000255341 00000 n 
-0000255405 00000 n 
-0000255469 00000 n 
-0000255532 00000 n 
-0000255596 00000 n 
-0000255660 00000 n 
-0000255723 00000 n 
-0000255786 00000 n 
-0000255975 00000 n 
-0000256038 00000 n 
-0000256101 00000 n 
-0000256164 00000 n 
-0000256290 00000 n 
-0000256353 00000 n 
-0000260598 00000 n 
-0000258553 00000 n 
-0000256532 00000 n 
-0000259021 00000 n 
-0000259147 00000 n 
-0000259210 00000 n 
-0000259274 00000 n 
-0000259464 00000 n 
-0000258707 00000 n 
-0000258869 00000 n 
-0000259527 00000 n 
-0000259590 00000 n 
-0000259654 00000 n 
-0000259717 00000 n 
-0000259780 00000 n 
-0000259843 00000 n 
-0000259906 00000 n 
-0000259969 00000 n 
-0000260032 00000 n 
-0000260095 00000 n 
-0000260157 00000 n 
-0000260283 00000 n 
-0000260346 00000 n 
-0000260410 00000 n 
-0000260473 00000 n 
-0000260536 00000 n 
-0000684316 00000 n 
-0000265676 00000 n 
-0000263269 00000 n 
-0000260742 00000 n 
-0000263903 00000 n 
-0000263966 00000 n 
-0000264029 00000 n 
-0000264155 00000 n 
-0000263432 00000 n 
-0000263601 00000 n 
-0000264218 00000 n 
-0000264281 00000 n 
-0000264344 00000 n 
-0000264408 00000 n 
-0000264471 00000 n 
-0000264597 00000 n 
-0000264660 00000 n 
-0000264723 00000 n 
-0000264787 00000 n 
-0000264850 00000 n 
-0000264914 00000 n 
-0000263749 00000 n 
-0000264977 00000 n 
-0000265040 00000 n 
-0000265103 00000 n 
-0000265167 00000 n 
-0000265230 00000 n 
-0000265293 00000 n 
-0000265357 00000 n 
-0000265421 00000 n 
-0000265485 00000 n 
-0000265549 00000 n 
-0000265612 00000 n 
-0000675509 00000 n 
-0000270169 00000 n 
-0000267566 00000 n 
-0000265806 00000 n 
-0000268030 00000 n 
-0000268093 00000 n 
-0000268155 00000 n 
-0000000000 00000 f 
-0000693902 00000 n 
-0000268218 00000 n 
-0000268281 00000 n 
-0000268344 00000 n 
-0000268407 00000 n 
-0000268471 00000 n 
-0000268597 00000 n 
-0000268658 00000 n 
-0000268722 00000 n 
-0000268785 00000 n 
-0000268848 00000 n 
-0000268911 00000 n 
-0000268974 00000 n 
-0000269037 00000 n 
-0000269099 00000 n 
-0000269162 00000 n 
-0000269225 00000 n 
-0000269288 00000 n 
-0000269351 00000 n 
-0000269414 00000 n 
-0000269477 00000 n 
-0000269540 00000 n 
-0000269728 00000 n 
-0000269854 00000 n 
-0000267720 00000 n 
-0000267876 00000 n 
-0000269917 00000 n 
-0000270043 00000 n 
-0000270106 00000 n 
-0000697144 00000 n 
-0000273583 00000 n 
-0000272066 00000 n 
-0000270327 00000 n 
-0000272190 00000 n 
-0000272253 00000 n 
-0000272317 00000 n 
-0000272381 00000 n 
-0000272445 00000 n 
-0000272572 00000 n 
-0000272698 00000 n 
-0000272761 00000 n 
-0000272824 00000 n 
-0000272949 00000 n 
-0000273012 00000 n 
-0000273076 00000 n 
-0000273140 00000 n 
-0000273266 00000 n 
-0000273329 00000 n 
-0000273392 00000 n 
-0000273456 00000 n 
-0000273520 00000 n 
-0000277653 00000 n 
-0000275639 00000 n 
-0000273741 00000 n 
-0000275763 00000 n 
-0000275826 00000 n 
-0000275889 00000 n 
-0000275953 00000 n 
-0000276017 00000 n 
-0000276080 00000 n 
-0000276144 00000 n 
-0000276207 00000 n 
-0000276270 00000 n 
-0000276333 00000 n 
-0000276396 00000 n 
-0000276522 00000 n 
-0000276585 00000 n 
-0000276648 00000 n 
-0000276711 00000 n 
-0000276772 00000 n 
-0000276835 00000 n 
-0000276898 00000 n 
-0000276961 00000 n 
-0000277024 00000 n 
-0000277087 00000 n 
-0000277150 00000 n 
-0000277213 00000 n 
-0000277275 00000 n 
-0000277338 00000 n 
-0000277402 00000 n 
-0000277527 00000 n 
-0000277590 00000 n 
-0000280956 00000 n 
-0000279316 00000 n 
-0000277811 00000 n 
-0000279440 00000 n 
-0000279503 00000 n 
-0000279628 00000 n 
-0000279691 00000 n 
-0000279754 00000 n 
-0000279817 00000 n 
-0000279881 00000 n 
-0000279945 00000 n 
-0000280008 00000 n 
-0000280071 00000 n 
-0000280133 00000 n 
-0000280197 00000 n 
-0000280261 00000 n 
-0000280324 00000 n 
-0000280450 00000 n 
-0000280513 00000 n 
-0000280576 00000 n 
-0000280638 00000 n 
-0000280701 00000 n 
-0000280765 00000 n 
-0000280829 00000 n 
-0000280893 00000 n 
-0000284287 00000 n 
-0000282452 00000 n 
-0000281086 00000 n 
-0000282576 00000 n 
-0000282639 00000 n 
-0000282702 00000 n 
-0000282765 00000 n 
-0000282829 00000 n 
-0000282893 00000 n 
-0000282956 00000 n 
-0000283018 00000 n 
-0000283081 00000 n 
-0000283145 00000 n 
-0000283209 00000 n 
-0000283271 00000 n 
-0000283334 00000 n 
-0000283397 00000 n 
-0000283461 00000 n 
-0000283525 00000 n 
-0000283588 00000 n 
-0000283651 00000 n 
-0000283715 00000 n 
-0000283779 00000 n 
-0000283843 00000 n 
-0000283907 00000 n 
-0000283971 00000 n 
-0000284035 00000 n 
-0000284161 00000 n 
-0000284224 00000 n 
-0000288530 00000 n 
-0000286760 00000 n 
-0000284417 00000 n 
-0000287076 00000 n 
-0000287202 00000 n 
-0000287265 00000 n 
-0000287329 00000 n 
-0000287392 00000 n 
-0000287455 00000 n 
-0000287518 00000 n 
-0000287581 00000 n 
-0000287644 00000 n 
-0000287770 00000 n 
-0000286905 00000 n 
-0000287832 00000 n 
-0000287894 00000 n 
-0000287957 00000 n 
-0000288021 00000 n 
-0000288084 00000 n 
-0000288148 00000 n 
-0000288212 00000 n 
-0000288276 00000 n 
-0000288339 00000 n 
-0000288403 00000 n 
-0000288466 00000 n 
-0000292942 00000 n 
-0000290800 00000 n 
-0000288674 00000 n 
-0000290924 00000 n 
-0000291239 00000 n 
-0000291302 00000 n 
-0000291364 00000 n 
-0000291426 00000 n 
-0000291489 00000 n 
-0000291552 00000 n 
-0000291615 00000 n 
-0000291678 00000 n 
-0000291741 00000 n 
-0000291804 00000 n 
-0000291867 00000 n 
-0000291931 00000 n 
-0000291994 00000 n 
-0000292058 00000 n 
-0000292121 00000 n 
-0000292184 00000 n 
-0000292247 00000 n 
-0000292310 00000 n 
-0000292373 00000 n 
-0000292435 00000 n 
-0000292499 00000 n 
-0000292562 00000 n 
-0000292625 00000 n 
-0000292688 00000 n 
-0000292751 00000 n 
-0000292815 00000 n 
-0000292878 00000 n 
-0000697269 00000 n 
-0000296959 00000 n 
-0000295262 00000 n 
-0000293058 00000 n 
-0000295386 00000 n 
-0000295449 00000 n 
-0000295512 00000 n 
-0000295575 00000 n 
-0000295638 00000 n 
-0000295701 00000 n 
-0000295764 00000 n 
-0000295827 00000 n 
-0000295891 00000 n 
-0000295953 00000 n 
-0000296016 00000 n 
-0000296079 00000 n 
-0000296142 00000 n 
-0000296205 00000 n 
-0000296268 00000 n 
-0000296330 00000 n 
-0000296394 00000 n 
-0000296457 00000 n 
-0000296520 00000 n 
-0000296583 00000 n 
-0000296645 00000 n 
-0000296708 00000 n 
-0000296771 00000 n 
-0000296833 00000 n 
-0000296896 00000 n 
-0000300465 00000 n 
-0000298957 00000 n 
-0000297089 00000 n 
-0000299081 00000 n 
-0000299144 00000 n 
-0000299207 00000 n 
-0000299270 00000 n 
-0000299333 00000 n 
-0000299396 00000 n 
-0000299459 00000 n 
-0000299522 00000 n 
-0000299584 00000 n 
-0000299647 00000 n 
-0000299710 00000 n 
-0000299773 00000 n 
-0000299836 00000 n 
-0000299899 00000 n 
-0000300088 00000 n 
-0000300214 00000 n 
-0000300277 00000 n 
-0000300339 00000 n 
-0000300402 00000 n 
-0000305594 00000 n 
-0000303144 00000 n 
-0000300581 00000 n 
-0000303268 00000 n 
-0000303394 00000 n 
-0000303519 00000 n 
-0000303582 00000 n 
-0000303645 00000 n 
-0000303706 00000 n 
-0000303769 00000 n 
-0000303832 00000 n 
-0000303894 00000 n 
-0000303957 00000 n 
-0000304020 00000 n 
-0000304083 00000 n 
-0000304147 00000 n 
-0000304272 00000 n 
-0000304335 00000 n 
-0000304398 00000 n 
-0000304462 00000 n 
-0000304526 00000 n 
-0000304589 00000 n 
-0000304652 00000 n 
-0000304715 00000 n 
-0000304778 00000 n 
-0000304841 00000 n 
-0000304904 00000 n 
-0000304967 00000 n 
-0000305030 00000 n 
-0000305093 00000 n 
-0000305156 00000 n 
-0000305219 00000 n 
-0000305282 00000 n 
-0000305345 00000 n 
-0000305408 00000 n 
-0000305467 00000 n 
-0000305531 00000 n 
-0000311607 00000 n 
-0000308475 00000 n 
-0000305752 00000 n 
-0000308775 00000 n 
-0000308838 00000 n 
-0000308900 00000 n 
-0000308963 00000 n 
-0000309027 00000 n 
-0000309089 00000 n 
-0000309153 00000 n 
-0000309216 00000 n 
-0000309279 00000 n 
-0000309342 00000 n 
-0000309405 00000 n 
-0000309468 00000 n 
-0000309531 00000 n 
-0000309594 00000 n 
-0000309657 00000 n 
-0000309720 00000 n 
-0000309783 00000 n 
-0000309846 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 
-0000309972 00000 n 
-0000310035 00000 n 
-0000310098 00000 n 
-0000310161 00000 n 
-0000310224 00000 n 
-0000310287 00000 n 
+0000310056 00000 n 
+0000310202 00000 n 
 0000310350 00000 n 
-0000310413 00000 n 
-0000310476 00000 n 
-0000310539 00000 n 
-0000310602 00000 n 
-0000310665 00000 n 
-0000310729 00000 n 
-0000310792 00000 n 
-0000310855 00000 n 
-0000311044 00000 n 
-0000308620 00000 n 
-0000311107 00000 n 
-0000311170 00000 n 
-0000311233 00000 n 
-0000311296 00000 n 
-0000311359 00000 n 
-0000311420 00000 n 
-0000311483 00000 n 
-0000311545 00000 n 
-0000686172 00000 n 
-0000315868 00000 n 
-0000313862 00000 n 
-0000311751 00000 n 
-0000313986 00000 n 
-0000314049 00000 n 
-0000314237 00000 n 
-0000314300 00000 n 
-0000314363 00000 n 
-0000314427 00000 n 
-0000314490 00000 n 
-0000314553 00000 n 
-0000314615 00000 n 
-0000314678 00000 n 
-0000314741 00000 n 
-0000314803 00000 n 
-0000314866 00000 n 
-0000315054 00000 n 
-0000315117 00000 n 
-0000315179 00000 n 
-0000315242 00000 n 
-0000315305 00000 n 
-0000315367 00000 n 
-0000315430 00000 n 
-0000315493 00000 n 
-0000315556 00000 n 
-0000315743 00000 n 
-0000315806 00000 n 
-0000321391 00000 n 
-0000318172 00000 n 
-0000315970 00000 n 
-0000318296 00000 n 
-0000318359 00000 n 
-0000318421 00000 n 
-0000318484 00000 n 
-0000318547 00000 n 
-0000318610 00000 n 
-0000318672 00000 n 
-0000318735 00000 n 
-0000318798 00000 n 
-0000318861 00000 n 
-0000318924 00000 n 
-0000318986 00000 n 
-0000319049 00000 n 
-0000319238 00000 n 
-0000319301 00000 n 
-0000319365 00000 n 
-0000319429 00000 n 
-0000319493 00000 n 
-0000319618 00000 n 
-0000319681 00000 n 
-0000319745 00000 n 
-0000319809 00000 n 
-0000319872 00000 n 
-0000319936 00000 n 
-0000319999 00000 n 
-0000320062 00000 n 
-0000320126 00000 n 
-0000320189 00000 n 
-0000320253 00000 n 
-0000320316 00000 n 
-0000320380 00000 n 
-0000320444 00000 n 
-0000320508 00000 n 
-0000320571 00000 n 
-0000320634 00000 n 
-0000320698 00000 n 
-0000320761 00000 n 
-0000320824 00000 n 
-0000320888 00000 n 
-0000320952 00000 n 
-0000321015 00000 n 
-0000321076 00000 n 
-0000321139 00000 n 
-0000321203 00000 n 
-0000321265 00000 n 
-0000321328 00000 n 
-0000697394 00000 n 
-0000326287 00000 n 
-0000323259 00000 n 
-0000321521 00000 n 
-0000323383 00000 n 
-0000323509 00000 n 
-0000323635 00000 n 
-0000323698 00000 n 
-0000323761 00000 n 
-0000323824 00000 n 
-0000323887 00000 n 
-0000323949 00000 n 
-0000324012 00000 n 
-0000324075 00000 n 
-0000324138 00000 n 
-0000324202 00000 n 
-0000324265 00000 n 
-0000324328 00000 n 
-0000324391 00000 n 
-0000324454 00000 n 
-0000324518 00000 n 
-0000324581 00000 n 
-0000324645 00000 n 
-0000324769 00000 n 
-0000324832 00000 n 
-0000324896 00000 n 
-0000324960 00000 n 
-0000325024 00000 n 
-0000325088 00000 n 
-0000325151 00000 n 
-0000325215 00000 n 
-0000325278 00000 n 
-0000325342 00000 n 
-0000325406 00000 n 
-0000325470 00000 n 
-0000325596 00000 n 
-0000325659 00000 n 
-0000325781 00000 n 
-0000325844 00000 n 
-0000325907 00000 n 
-0000325970 00000 n 
-0000326034 00000 n 
-0000326097 00000 n 
-0000326160 00000 n 
-0000326224 00000 n 
-0000331113 00000 n 
-0000328405 00000 n 
-0000326403 00000 n 
-0000328529 00000 n 
-0000328592 00000 n 
-0000328654 00000 n 
-0000328717 00000 n 
-0000328781 00000 n 
-0000328844 00000 n 
-0000328906 00000 n 
-0000328968 00000 n 
-0000329032 00000 n 
-0000329158 00000 n 
-0000329220 00000 n 
-0000329284 00000 n 
-0000329348 00000 n 
-0000329410 00000 n 
-0000329473 00000 n 
-0000329599 00000 n 
-0000329662 00000 n 
-0000329726 00000 n 
-0000329790 00000 n 
-0000329854 00000 n 
-0000329917 00000 n 
-0000330042 00000 n 
-0000330105 00000 n 
-0000330169 00000 n 
-0000330293 00000 n 
-0000330356 00000 n 
-0000330482 00000 n 
-0000330544 00000 n 
-0000330670 00000 n 
-0000330733 00000 n 
-0000330796 00000 n 
-0000330860 00000 n 
-0000330923 00000 n 
-0000330985 00000 n 
-0000331049 00000 n 
-0000336417 00000 n 
-0000333508 00000 n 
-0000331243 00000 n 
-0000333632 00000 n 
-0000333695 00000 n 
-0000333759 00000 n 
-0000333823 00000 n 
-0000333886 00000 n 
-0000333950 00000 n 
-0000334014 00000 n 
-0000334077 00000 n 
-0000334140 00000 n 
-0000334202 00000 n 
-0000334266 00000 n 
-0000334330 00000 n 
-0000334394 00000 n 
-0000334457 00000 n 
-0000334521 00000 n 
-0000334583 00000 n 
-0000334646 00000 n 
-0000334709 00000 n 
-0000334773 00000 n 
-0000334837 00000 n 
-0000334900 00000 n 
-0000334963 00000 n 
-0000335027 00000 n 
-0000335091 00000 n 
-0000335215 00000 n 
-0000335278 00000 n 
-0000335341 00000 n 
-0000335404 00000 n 
-0000335530 00000 n 
-0000335593 00000 n 
-0000335657 00000 n 
-0000335783 00000 n 
-0000335846 00000 n 
-0000335910 00000 n 
-0000335974 00000 n 
-0000336038 00000 n 
-0000336101 00000 n 
-0000336165 00000 n 
-0000336291 00000 n 
-0000336354 00000 n 
-0000341048 00000 n 
-0000338650 00000 n 
-0000336519 00000 n 
-0000338774 00000 n 
-0000338900 00000 n 
-0000338963 00000 n 
-0000339026 00000 n 
-0000339152 00000 n 
-0000339214 00000 n 
-0000339278 00000 n 
-0000339342 00000 n 
-0000339406 00000 n 
-0000339532 00000 n 
-0000339595 00000 n 
-0000339658 00000 n 
-0000339721 00000 n 
-0000339785 00000 n 
-0000339848 00000 n 
-0000339912 00000 n 
-0000339976 00000 n 
-0000340040 00000 n 
-0000340166 00000 n 
-0000340229 00000 n 
-0000340293 00000 n 
-0000340482 00000 n 
-0000340545 00000 n 
-0000340608 00000 n 
-0000340670 00000 n 
-0000340733 00000 n 
-0000340796 00000 n 
-0000340859 00000 n 
-0000340922 00000 n 
-0000340985 00000 n 
-0000345867 00000 n 
-0000343851 00000 n 
-0000341178 00000 n 
-0000343975 00000 n 
-0000344038 00000 n 
-0000344101 00000 n 
-0000344164 00000 n 
-0000344227 00000 n 
-0000344290 00000 n 
-0000344353 00000 n 
-0000344414 00000 n 
-0000344602 00000 n 
-0000344665 00000 n 
-0000344728 00000 n 
-0000344792 00000 n 
-0000344855 00000 n 
-0000344918 00000 n 
-0000345107 00000 n 
-0000345170 00000 n 
-0000345234 00000 n 
-0000345297 00000 n 
-0000345360 00000 n 
-0000345424 00000 n 
-0000345488 00000 n 
-0000345551 00000 n 
-0000345615 00000 n 
-0000345677 00000 n 
-0000345740 00000 n 
-0000345804 00000 n 
-0000351155 00000 n 
-0000348317 00000 n 
-0000345983 00000 n 
-0000348441 00000 n 
-0000348567 00000 n 
-0000348630 00000 n 
-0000348693 00000 n 
-0000348756 00000 n 
-0000348819 00000 n 
-0000348883 00000 n 
-0000348946 00000 n 
-0000349009 00000 n 
-0000349073 00000 n 
-0000349137 00000 n 
-0000349200 00000 n 
-0000349263 00000 n 
-0000349326 00000 n 
-0000349390 00000 n 
-0000349454 00000 n 
-0000349518 00000 n 
-0000349582 00000 n 
-0000349645 00000 n 
-0000349708 00000 n 
-0000349771 00000 n 
-0000349834 00000 n 
-0000349898 00000 n 
-0000349961 00000 n 
-0000350024 00000 n 
-0000350087 00000 n 
-0000350150 00000 n 
-0000350275 00000 n 
-0000350338 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 
-0000350464 00000 n 
-0000350526 00000 n 
-0000350589 00000 n 
-0000350652 00000 n 
-0000350714 00000 n 
-0000350777 00000 n 
-0000350903 00000 n 
-0000350966 00000 n 
-0000351030 00000 n 
-0000351093 00000 n 
-0000697519 00000 n 
-0000354395 00000 n 
-0000352759 00000 n 
-0000351271 00000 n 
-0000352883 00000 n 
-0000352946 00000 n 
-0000353009 00000 n 
-0000353072 00000 n 
-0000353135 00000 n 
-0000353198 00000 n 
-0000353261 00000 n 
-0000353324 00000 n 
-0000353387 00000 n 
-0000353450 00000 n 
-0000353514 00000 n 
-0000353578 00000 n 
-0000353640 00000 n 
-0000353703 00000 n 
-0000353829 00000 n 
-0000353955 00000 n 
-0000354018 00000 n 
-0000354081 00000 n 
-0000354207 00000 n 
-0000354269 00000 n 
-0000354332 00000 n 
-0000357902 00000 n 
-0000356144 00000 n 
-0000354511 00000 n 
-0000356268 00000 n 
-0000356331 00000 n 
-0000356456 00000 n 
-0000356519 00000 n 
-0000356582 00000 n 
-0000356645 00000 n 
-0000356708 00000 n 
-0000356771 00000 n 
-0000356834 00000 n 
-0000356897 00000 n 
-0000356960 00000 n 
-0000357023 00000 n 
-0000357085 00000 n 
-0000357148 00000 n 
-0000357336 00000 n 
-0000357399 00000 n 
-0000357461 00000 n 
-0000357524 00000 n 
-0000357587 00000 n 
-0000357650 00000 n 
-0000357713 00000 n 
-0000357839 00000 n 
-0000362823 00000 n 
-0000360824 00000 n 
-0000358018 00000 n 
-0000361626 00000 n 
-0000361689 00000 n 
-0000361752 00000 n 
-0000361815 00000 n 
-0000361878 00000 n 
-0000361942 00000 n 
-0000362068 00000 n 
-0000362131 00000 n 
-0000362194 00000 n 
-0000362257 00000 n 
-0000360996 00000 n 
-0000362320 00000 n 
-0000362382 00000 n 
-0000361149 00000 n 
-0000362445 00000 n 
-0000362508 00000 n 
-0000361308 00000 n 
-0000362571 00000 n 
-0000361467 00000 n 
-0000362634 00000 n 
-0000362696 00000 n 
-0000362759 00000 n 
-0000365683 00000 n 
-0000366694 00000 n 
-0000370448 00000 n 
-0000400338 00000 n 
-0000367260 00000 n 
-0000365369 00000 n 
-0000362953 00000 n 
-0000365493 00000 n 
-0000365556 00000 n 
-0000365619 00000 n 
-0000365809 00000 n 
-0000365872 00000 n 
-0000365935 00000 n 
-0000365998 00000 n 
-0000366061 00000 n 
-0000366124 00000 n 
-0000366187 00000 n 
-0000366250 00000 n 
-0000366314 00000 n 
-0000366377 00000 n 
-0000366440 00000 n 
-0000366503 00000 n 
-0000366566 00000 n 
-0000366630 00000 n 
-0000366818 00000 n 
-0000366881 00000 n 
-0000366944 00000 n 
-0000367007 00000 n 
-0000367071 00000 n 
-0000367134 00000 n 
-0000367197 00000 n 
-0000371328 00000 n 
-0000369378 00000 n 
-0000367418 00000 n 
-0000369502 00000 n 
-0000369565 00000 n 
-0000369628 00000 n 
-0000369691 00000 n 
-0000369754 00000 n 
-0000369817 00000 n 
-0000369879 00000 n 
-0000369942 00000 n 
-0000370005 00000 n 
-0000370068 00000 n 
-0000370131 00000 n 
-0000370194 00000 n 
-0000370258 00000 n 
-0000370322 00000 n 
-0000370385 00000 n 
-0000370574 00000 n 
-0000370637 00000 n 
-0000370701 00000 n 
-0000370763 00000 n 
-0000370826 00000 n 
-0000370889 00000 n 
-0000370952 00000 n 
-0000371015 00000 n 
-0000371077 00000 n 
-0000371140 00000 n 
-0000371203 00000 n 
-0000371265 00000 n 
-0000374138 00000 n 
-0000372888 00000 n 
-0000371486 00000 n 
-0000373188 00000 n 
-0000373251 00000 n 
-0000373315 00000 n 
-0000373033 00000 n 
-0000373379 00000 n 
-0000373504 00000 n 
-0000373567 00000 n 
-0000373631 00000 n 
-0000373694 00000 n 
-0000373757 00000 n 
-0000373820 00000 n 
-0000373883 00000 n 
-0000373947 00000 n 
-0000374011 00000 n 
-0000374074 00000 n 
-0000697644 00000 n 
-0000379180 00000 n 
-0000376566 00000 n 
-0000374296 00000 n 
-0000377031 00000 n 
-0000377220 00000 n 
-0000377283 00000 n 
-0000377347 00000 n 
-0000377535 00000 n 
-0000377661 00000 n 
-0000377724 00000 n 
-0000377849 00000 n 
-0000376720 00000 n 
-0000377912 00000 n 
-0000377976 00000 n 
-0000378040 00000 n 
-0000378104 00000 n 
-0000376875 00000 n 
-0000378168 00000 n 
-0000378231 00000 n 
-0000378295 00000 n 
-0000378359 00000 n 
-0000378423 00000 n 
-0000378486 00000 n 
-0000378546 00000 n 
-0000378609 00000 n 
-0000378672 00000 n 
-0000378736 00000 n 
-0000378800 00000 n 
-0000378864 00000 n 
-0000378990 00000 n 
-0000379053 00000 n 
-0000678714 00000 n 
-0000690232 00000 n 
-0000383664 00000 n 
-0000380926 00000 n 
-0000379324 00000 n 
-0000381585 00000 n 
-0000381711 00000 n 
-0000381836 00000 n 
-0000381089 00000 n 
-0000381899 00000 n 
-0000382024 00000 n 
-0000382087 00000 n 
-0000382151 00000 n 
-0000382215 00000 n 
-0000382341 00000 n 
-0000382404 00000 n 
-0000382467 00000 n 
-0000382530 00000 n 
-0000382594 00000 n 
-0000382719 00000 n 
-0000382782 00000 n 
-0000382845 00000 n 
-0000382908 00000 n 
-0000382972 00000 n 
-0000383035 00000 n 
-0000383097 00000 n 
-0000383160 00000 n 
-0000381253 00000 n 
-0000383223 00000 n 
-0000383349 00000 n 
-0000381424 00000 n 
-0000383474 00000 n 
-0000383537 00000 n 
-0000383601 00000 n 
-0000391396 00000 n 
-0000385751 00000 n 
-0000383822 00000 n 
-0000386216 00000 n 
-0000386531 00000 n 
-0000386594 00000 n 
-0000386658 00000 n 
-0000386721 00000 n 
-0000385905 00000 n 
-0000386061 00000 n 
-0000386784 00000 n 
-0000386847 00000 n 
-0000386910 00000 n 
-0000386973 00000 n 
-0000387035 00000 n 
-0000387097 00000 n 
-0000387160 00000 n 
-0000387224 00000 n 
-0000387288 00000 n 
-0000387352 00000 n 
-0000387416 00000 n 
-0000387480 00000 n 
-0000387544 00000 n 
-0000387607 00000 n 
-0000387670 00000 n 
-0000387734 00000 n 
-0000387798 00000 n 
-0000387862 00000 n 
-0000387926 00000 n 
-0000387989 00000 n 
-0000388048 00000 n 
-0000388107 00000 n 
-0000388170 00000 n 
-0000388233 00000 n 
-0000388296 00000 n 
-0000388359 00000 n 
-0000388422 00000 n 
-0000388486 00000 n 
-0000388550 00000 n 
-0000388613 00000 n 
-0000388676 00000 n 
-0000388739 00000 n 
-0000388802 00000 n 
-0000388865 00000 n 
-0000388928 00000 n 
-0000388991 00000 n 
-0000389054 00000 n 
-0000389117 00000 n 
-0000389180 00000 n 
-0000389244 00000 n 
-0000389308 00000 n 
-0000389372 00000 n 
-0000389435 00000 n 
-0000389498 00000 n 
-0000389561 00000 n 
-0000389624 00000 n 
-0000389688 00000 n 
-0000389751 00000 n 
-0000389815 00000 n 
-0000389879 00000 n 
-0000389943 00000 n 
-0000390007 00000 n 
-0000390071 00000 n 
-0000390135 00000 n 
-0000390199 00000 n 
-0000390263 00000 n 
-0000390327 00000 n 
-0000390390 00000 n 
-0000390453 00000 n 
-0000390515 00000 n 
-0000390577 00000 n 
-0000390641 00000 n 
-0000390703 00000 n 
-0000390766 00000 n 
-0000390829 00000 n 
-0000390892 00000 n 
-0000390955 00000 n 
-0000391018 00000 n 
-0000391081 00000 n 
-0000391144 00000 n 
-0000391207 00000 n 
-0000391270 00000 n 
-0000391333 00000 n 
-0000669139 00000 n 
-0000396354 00000 n 
-0000393820 00000 n 
-0000391540 00000 n 
-0000394454 00000 n 
-0000394517 00000 n 
-0000394580 00000 n 
-0000394644 00000 n 
-0000394708 00000 n 
-0000394772 00000 n 
-0000394836 00000 n 
-0000394899 00000 n 
-0000394962 00000 n 
-0000395025 00000 n 
-0000393983 00000 n 
-0000395088 00000 n 
-0000395214 00000 n 
-0000395277 00000 n 
-0000395340 00000 n 
-0000394130 00000 n 
-0000395403 00000 n 
-0000395467 00000 n 
-0000395531 00000 n 
-0000395595 00000 n 
-0000395785 00000 n 
-0000395911 00000 n 
-0000395974 00000 n 
-0000394283 00000 n 
-0000396101 00000 n 
-0000396164 00000 n 
-0000396228 00000 n 
-0000396291 00000 n 
-0000679093 00000 n 
-0000401222 00000 n 
-0000398830 00000 n 
-0000396512 00000 n 
-0000399139 00000 n 
-0000399454 00000 n 
-0000399517 00000 n 
-0000398975 00000 n 
-0000399580 00000 n 
-0000399706 00000 n 
-0000399769 00000 n 
-0000399831 00000 n 
-0000399895 00000 n 
-0000399958 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 
+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 
+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 
-0000400083 00000 n 
-0000400146 00000 n 
-0000400210 00000 n 
-0000400274 00000 n 
-0000400464 00000 n 
-0000400527 00000 n 
-0000400590 00000 n 
-0000400654 00000 n 
-0000400718 00000 n 
-0000400781 00000 n 
-0000400844 00000 n 
-0000400907 00000 n 
-0000400970 00000 n 
-0000401033 00000 n 
-0000401096 00000 n 
-0000401159 00000 n 
-0000415594 00000 n 
-0000405789 00000 n 
-0000404021 00000 n 
-0000401380 00000 n 
-0000404145 00000 n 
-0000404208 00000 n 
-0000404271 00000 n 
-0000404332 00000 n 
-0000404395 00000 n 
-0000404457 00000 n 
-0000404521 00000 n 
-0000404584 00000 n 
-0000404648 00000 n 
-0000404711 00000 n 
-0000404775 00000 n 
-0000404839 00000 n 
-0000404903 00000 n 
-0000404967 00000 n 
-0000405093 00000 n 
-0000405156 00000 n 
-0000405219 00000 n 
-0000405282 00000 n 
-0000405345 00000 n 
-0000405409 00000 n 
-0000405472 00000 n 
-0000405535 00000 n 
-0000405598 00000 n 
-0000405662 00000 n 
-0000405726 00000 n 
-0000697769 00000 n 
-0000411288 00000 n 
-0000408701 00000 n 
-0000405933 00000 n 
-0000408825 00000 n 
-0000408951 00000 n 
-0000409014 00000 n 
-0000409078 00000 n 
-0000409141 00000 n 
-0000409205 00000 n 
-0000409266 00000 n 
-0000409330 00000 n 
-0000409393 00000 n 
-0000409455 00000 n 
-0000409518 00000 n 
-0000409581 00000 n 
-0000409645 00000 n 
-0000409708 00000 n 
-0000409771 00000 n 
-0000409835 00000 n 
-0000409898 00000 n 
-0000409961 00000 n 
-0000410025 00000 n 
-0000410150 00000 n 
-0000410213 00000 n 
-0000410276 00000 n 
-0000410339 00000 n 
-0000410402 00000 n 
-0000410465 00000 n 
-0000410528 00000 n 
-0000410591 00000 n 
-0000410655 00000 n 
-0000410718 00000 n 
-0000410781 00000 n 
-0000410844 00000 n 
-0000410907 00000 n 
-0000410971 00000 n 
-0000411035 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 
-0000411225 00000 n 
-0000415657 00000 n 
-0000413829 00000 n 
-0000411432 00000 n 
-0000413953 00000 n 
-0000414016 00000 n 
-0000414079 00000 n 
-0000414142 00000 n 
-0000414204 00000 n 
-0000414266 00000 n 
-0000414328 00000 n 
-0000414390 00000 n 
-0000414454 00000 n 
-0000414518 00000 n 
-0000414581 00000 n 
-0000414644 00000 n 
-0000414708 00000 n 
-0000414771 00000 n 
-0000414835 00000 n 
-0000414898 00000 n 
-0000414962 00000 n 
-0000415025 00000 n 
-0000415088 00000 n 
-0000415151 00000 n 
-0000415215 00000 n 
-0000415278 00000 n 
-0000415342 00000 n 
-0000415405 00000 n 
-0000415468 00000 n 
-0000415531 00000 n 
-0000420612 00000 n 
-0000418526 00000 n 
-0000415773 00000 n 
-0000418650 00000 n 
-0000418776 00000 n 
-0000418839 00000 n 
-0000418902 00000 n 
-0000418965 00000 n 
-0000419029 00000 n 
-0000419093 00000 n 
-0000419156 00000 n 
-0000419346 00000 n 
-0000419409 00000 n 
-0000419473 00000 n 
-0000419536 00000 n 
-0000419599 00000 n 
-0000419662 00000 n 
-0000419725 00000 n 
-0000419788 00000 n 
-0000419852 00000 n 
-0000419916 00000 n 
-0000419979 00000 n 
-0000420043 00000 n 
-0000420107 00000 n 
-0000420171 00000 n 
-0000420234 00000 n 
-0000420297 00000 n 
-0000420359 00000 n 
-0000420423 00000 n 
-0000420486 00000 n 
-0000420549 00000 n 
-0000425462 00000 n 
-0000423128 00000 n 
-0000420756 00000 n 
-0000423252 00000 n 
-0000423315 00000 n 
-0000423378 00000 n 
-0000423441 00000 n 
-0000423504 00000 n 
-0000423567 00000 n 
-0000423630 00000 n 
-0000423694 00000 n 
-0000423757 00000 n 
-0000423821 00000 n 
-0000423885 00000 n 
-0000423949 00000 n 
-0000424012 00000 n 
-0000424075 00000 n 
-0000424138 00000 n 
-0000424201 00000 n 
-0000424264 00000 n 
-0000424326 00000 n 
-0000424389 00000 n 
-0000424452 00000 n 
-0000424515 00000 n 
-0000424578 00000 n 
-0000424641 00000 n 
-0000424704 00000 n 
-0000424767 00000 n 
-0000424830 00000 n 
-0000424891 00000 n 
-0000424954 00000 n 
-0000425017 00000 n 
-0000425081 00000 n 
-0000425145 00000 n 
-0000425208 00000 n 
-0000425270 00000 n 
-0000425334 00000 n 
-0000425398 00000 n 
-0000429626 00000 n 
-0000428111 00000 n 
-0000425564 00000 n 
-0000428235 00000 n 
-0000428298 00000 n 
-0000428360 00000 n 
-0000428423 00000 n 
-0000428486 00000 n 
-0000428549 00000 n 
-0000428613 00000 n 
-0000428676 00000 n 
-0000428864 00000 n 
-0000428927 00000 n 
-0000428991 00000 n 
-0000429054 00000 n 
-0000429117 00000 n 
-0000429181 00000 n 
-0000429245 00000 n 
-0000429309 00000 n 
-0000429372 00000 n 
-0000429436 00000 n 
-0000429499 00000 n 
-0000429562 00000 n 
-0000433201 00000 n 
-0000431812 00000 n 
-0000429756 00000 n 
-0000431936 00000 n 
-0000432061 00000 n 
-0000432124 00000 n 
-0000432187 00000 n 
-0000432249 00000 n 
-0000432312 00000 n 
-0000432376 00000 n 
-0000432440 00000 n 
-0000432503 00000 n 
-0000432567 00000 n 
-0000432757 00000 n 
-0000432820 00000 n 
-0000432884 00000 n 
-0000432947 00000 n 
-0000433010 00000 n 
-0000433073 00000 n 
-0000433137 00000 n 
-0000697894 00000 n 
-0000437782 00000 n 
-0000436273 00000 n 
-0000433345 00000 n 
-0000436397 00000 n 
-0000436460 00000 n 
-0000436522 00000 n 
-0000436585 00000 n 
-0000436710 00000 n 
-0000436773 00000 n 
-0000436836 00000 n 
-0000436899 00000 n 
-0000436962 00000 n 
-0000437025 00000 n 
-0000437088 00000 n 
-0000437151 00000 n 
-0000437214 00000 n 
-0000437340 00000 n 
-0000437403 00000 n 
-0000437466 00000 n 
-0000437529 00000 n 
-0000437593 00000 n 
-0000437656 00000 n 
-0000437719 00000 n 
-0000441291 00000 n 
-0000439399 00000 n 
-0000437898 00000 n 
-0000439523 00000 n 
-0000439586 00000 n 
-0000439648 00000 n 
-0000439711 00000 n 
-0000439775 00000 n 
-0000439839 00000 n 
-0000439902 00000 n 
-0000439966 00000 n 
-0000440029 00000 n 
-0000440092 00000 n 
-0000440155 00000 n 
-0000440217 00000 n 
-0000440279 00000 n 
-0000440342 00000 n 
-0000440406 00000 n 
-0000440470 00000 n 
-0000440533 00000 n 
-0000440596 00000 n 
-0000440659 00000 n 
-0000440785 00000 n 
-0000440848 00000 n 
-0000440911 00000 n 
-0000440974 00000 n 
-0000441038 00000 n 
-0000441101 00000 n 
-0000441165 00000 n 
-0000441228 00000 n 
-0000443388 00000 n 
-0000443201 00000 n 
-0000441435 00000 n 
-0000443325 00000 n 
-0000445298 00000 n 
-0000445111 00000 n 
-0000443476 00000 n 
-0000445235 00000 n 
-0000447215 00000 n 
-0000447028 00000 n 
-0000445386 00000 n 
-0000447152 00000 n 
-0000450991 00000 n 
-0000449305 00000 n 
-0000447303 00000 n 
-0000449920 00000 n 
-0000450108 00000 n 
-0000450232 00000 n 
-0000449468 00000 n 
-0000449615 00000 n 
-0000449768 00000 n 
-0000450295 00000 n 
-0000450421 00000 n 
-0000450484 00000 n 
-0000450547 00000 n 
-0000450611 00000 n 
-0000450674 00000 n 
-0000450737 00000 n 
-0000450801 00000 n 
-0000450864 00000 n 
-0000450928 00000 n 
-0000698019 00000 n 
-0000453128 00000 n 
-0000453444 00000 n 
-0000452310 00000 n 
-0000451107 00000 n 
-0000452434 00000 n 
-0000452560 00000 n 
-0000452623 00000 n 
-0000452686 00000 n 
-0000452749 00000 n 
-0000452813 00000 n 
-0000452876 00000 n 
-0000453002 00000 n 
-0000453064 00000 n 
-0000453254 00000 n 
-0000453317 00000 n 
-0000453380 00000 n 
-0000457908 00000 n 
-0000455704 00000 n 
-0000453546 00000 n 
-0000455828 00000 n 
-0000456143 00000 n 
-0000456206 00000 n 
-0000456393 00000 n 
-0000456456 00000 n 
-0000456519 00000 n 
-0000456582 00000 n 
-0000456644 00000 n 
-0000456707 00000 n 
-0000456771 00000 n 
-0000456835 00000 n 
-0000456898 00000 n 
-0000456961 00000 n 
-0000457024 00000 n 
-0000457087 00000 n 
-0000457151 00000 n 
-0000457215 00000 n 
-0000457404 00000 n 
-0000457467 00000 n 
-0000457531 00000 n 
-0000457594 00000 n 
-0000457656 00000 n 
-0000457719 00000 n 
-0000457782 00000 n 
-0000457845 00000 n 
-0000465666 00000 n 
-0000465089 00000 n 
-0000461076 00000 n 
-0000458010 00000 n 
-0000461379 00000 n 
-0000461504 00000 n 
-0000461567 00000 n 
-0000461630 00000 n 
-0000461693 00000 n 
-0000461756 00000 n 
-0000461819 00000 n 
-0000461882 00000 n 
-0000461945 00000 n 
-0000462008 00000 n 
-0000462071 00000 n 
-0000462134 00000 n 
-0000462197 00000 n 
-0000462260 00000 n 
-0000462322 00000 n 
-0000462385 00000 n 
-0000462448 00000 n 
-0000462511 00000 n 
-0000462574 00000 n 
-0000462637 00000 n 
-0000462700 00000 n 
-0000462763 00000 n 
-0000462826 00000 n 
-0000462887 00000 n 
-0000462950 00000 n 
-0000463013 00000 n 
-0000463076 00000 n 
-0000463138 00000 n 
-0000463200 00000 n 
-0000463263 00000 n 
-0000463326 00000 n 
-0000463389 00000 n 
-0000463452 00000 n 
-0000463515 00000 n 
-0000463578 00000 n 
-0000463641 00000 n 
-0000463704 00000 n 
-0000463767 00000 n 
-0000463830 00000 n 
-0000463893 00000 n 
-0000463956 00000 n 
-0000464019 00000 n 
-0000464082 00000 n 
-0000464145 00000 n 
-0000464207 00000 n 
-0000464270 00000 n 
-0000464333 00000 n 
-0000464396 00000 n 
-0000464459 00000 n 
-0000464522 00000 n 
-0000464585 00000 n 
-0000464648 00000 n 
-0000464836 00000 n 
-0000461221 00000 n 
-0000464899 00000 n 
-0000464963 00000 n 
-0000515932 00000 n 
-0000465542 00000 n 
-0000465191 00000 n 
-0000515806 00000 n 
-0000515869 00000 n 
-0000520742 00000 n 
-0000518158 00000 n 
-0000516057 00000 n 
-0000518282 00000 n 
-0000518408 00000 n 
-0000518470 00000 n 
-0000518534 00000 n 
-0000518597 00000 n 
-0000518660 00000 n 
-0000518786 00000 n 
-0000518849 00000 n 
-0000518912 00000 n 
-0000518975 00000 n 
-0000519039 00000 n 
-0000519103 00000 n 
-0000519166 00000 n 
-0000519229 00000 n 
-0000519291 00000 n 
-0000519354 00000 n 
-0000519417 00000 n 
-0000519480 00000 n 
-0000519543 00000 n 
-0000519606 00000 n 
-0000519669 00000 n 
-0000519732 00000 n 
-0000519795 00000 n 
-0000519858 00000 n 
-0000519984 00000 n 
-0000520047 00000 n 
-0000520172 00000 n 
-0000520235 00000 n 
-0000520299 00000 n 
-0000520362 00000 n 
-0000520426 00000 n 
-0000520489 00000 n 
-0000520553 00000 n 
-0000520615 00000 n 
-0000520679 00000 n 
-0000524794 00000 n 
-0000523347 00000 n 
-0000520844 00000 n 
-0000523471 00000 n 
-0000523534 00000 n 
-0000523598 00000 n 
-0000523661 00000 n 
-0000523724 00000 n 
-0000523787 00000 n 
-0000523913 00000 n 
-0000523974 00000 n 
-0000524038 00000 n 
-0000524101 00000 n 
-0000524165 00000 n 
-0000524228 00000 n 
-0000524417 00000 n 
-0000524479 00000 n 
-0000524542 00000 n 
-0000524605 00000 n 
-0000524668 00000 n 
-0000698144 00000 n 
-0000529135 00000 n 
-0000527185 00000 n 
-0000524896 00000 n 
-0000527309 00000 n 
-0000527435 00000 n 
-0000527497 00000 n 
-0000527561 00000 n 
-0000527624 00000 n 
-0000527687 00000 n 
-0000527750 00000 n 
-0000527813 00000 n 
-0000527876 00000 n 
-0000527939 00000 n 
-0000528002 00000 n 
-0000528065 00000 n 
-0000528128 00000 n 
-0000528191 00000 n 
-0000528254 00000 n 
-0000528317 00000 n 
-0000528380 00000 n 
-0000528443 00000 n 
-0000528631 00000 n 
-0000528694 00000 n 
-0000528757 00000 n 
-0000528820 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 
+0000438490 00000 n 
+0000438552 00000 n 
+0000438616 00000 n 
+0000438680 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 
+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 
+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 
-0000529009 00000 n 
-0000529072 00000 n 
-0000532545 00000 n 
-0000530984 00000 n 
-0000529237 00000 n 
-0000531108 00000 n 
-0000531232 00000 n 
-0000531295 00000 n 
-0000531420 00000 n 
-0000531483 00000 n 
-0000531609 00000 n 
-0000531672 00000 n 
-0000531798 00000 n 
-0000531861 00000 n 
-0000531987 00000 n 
-0000532046 00000 n 
-0000532109 00000 n 
-0000532232 00000 n 
-0000532421 00000 n 
-0000532484 00000 n 
-0000536213 00000 n 
-0000534640 00000 n 
-0000532647 00000 n 
-0000534764 00000 n 
-0000534827 00000 n 
-0000534952 00000 n 
-0000535015 00000 n 
-0000535079 00000 n 
-0000535142 00000 n 
-0000535205 00000 n 
-0000535268 00000 n 
-0000535394 00000 n 
-0000535457 00000 n 
-0000535520 00000 n 
-0000535584 00000 n 
-0000535647 00000 n 
-0000535711 00000 n 
-0000535837 00000 n 
-0000535900 00000 n 
-0000535963 00000 n 
-0000536089 00000 n 
-0000536150 00000 n 
-0000540309 00000 n 
-0000538606 00000 n 
-0000536329 00000 n 
-0000538730 00000 n 
-0000538793 00000 n 
-0000538982 00000 n 
-0000539045 00000 n 
-0000539170 00000 n 
-0000539233 00000 n 
-0000539297 00000 n 
-0000539360 00000 n 
-0000539486 00000 n 
-0000539549 00000 n 
-0000539612 00000 n 
-0000539676 00000 n 
-0000539739 00000 n 
-0000539802 00000 n 
-0000539865 00000 n 
-0000539929 00000 n 
-0000539993 00000 n 
-0000540056 00000 n 
-0000540119 00000 n 
-0000540182 00000 n 
-0000540245 00000 n 
-0000545005 00000 n 
-0000542671 00000 n 
-0000540439 00000 n 
-0000542795 00000 n 
-0000542858 00000 n 
-0000542921 00000 n 
-0000542984 00000 n 
-0000543047 00000 n 
-0000543111 00000 n 
-0000543174 00000 n 
-0000543237 00000 n 
-0000543301 00000 n 
-0000543364 00000 n 
-0000543427 00000 n 
-0000543491 00000 n 
-0000543554 00000 n 
-0000543617 00000 n 
-0000543681 00000 n 
-0000543744 00000 n 
-0000543807 00000 n 
-0000543871 00000 n 
-0000543934 00000 n 
-0000543997 00000 n 
-0000544059 00000 n 
-0000544123 00000 n 
-0000544187 00000 n 
-0000544251 00000 n 
-0000544314 00000 n 
-0000544376 00000 n 
-0000544440 00000 n 
-0000544503 00000 n 
-0000544567 00000 n 
-0000544630 00000 n 
-0000544693 00000 n 
-0000544753 00000 n 
-0000544879 00000 n 
-0000548688 00000 n 
-0000547370 00000 n 
-0000545121 00000 n 
-0000547494 00000 n 
-0000547620 00000 n 
-0000547683 00000 n 
-0000547809 00000 n 
-0000547872 00000 n 
-0000547935 00000 n 
-0000547998 00000 n 
-0000548061 00000 n 
-0000548124 00000 n 
-0000548249 00000 n 
-0000548311 00000 n 
-0000548373 00000 n 
-0000548436 00000 n 
-0000548499 00000 n 
-0000548562 00000 n 
-0000548625 00000 n 
-0000698269 00000 n 
-0000552377 00000 n 
-0000551058 00000 n 
-0000548804 00000 n 
-0000551182 00000 n 
-0000551308 00000 n 
-0000551371 00000 n 
-0000551434 00000 n 
-0000551497 00000 n 
-0000551560 00000 n 
-0000551623 00000 n 
-0000551749 00000 n 
-0000551812 00000 n 
-0000552001 00000 n 
-0000552063 00000 n 
-0000552125 00000 n 
-0000552188 00000 n 
-0000552251 00000 n 
-0000552314 00000 n 
-0000553194 00000 n 
-0000552944 00000 n 
-0000552479 00000 n 
-0000553068 00000 n 
-0000553131 00000 n 
-0000557514 00000 n 
-0000555500 00000 n 
-0000553282 00000 n 
-0000555624 00000 n 
-0000555813 00000 n 
-0000555876 00000 n 
-0000555939 00000 n 
-0000556002 00000 n 
-0000556064 00000 n 
-0000556127 00000 n 
-0000556190 00000 n 
-0000556254 00000 n 
-0000556317 00000 n 
-0000556380 00000 n 
-0000556443 00000 n 
-0000556505 00000 n 
-0000556568 00000 n 
-0000556631 00000 n 
-0000556694 00000 n 
-0000556758 00000 n 
-0000556821 00000 n 
-0000556884 00000 n 
-0000556947 00000 n 
-0000557011 00000 n 
-0000557074 00000 n 
-0000557136 00000 n 
-0000557199 00000 n 
-0000557263 00000 n 
-0000557325 00000 n 
-0000557387 00000 n 
-0000557450 00000 n 
-0000562108 00000 n 
-0000560464 00000 n 
-0000557644 00000 n 
-0000560588 00000 n 
-0000560651 00000 n 
-0000560714 00000 n 
-0000560778 00000 n 
-0000560841 00000 n 
-0000560905 00000 n 
-0000560968 00000 n 
-0000561031 00000 n 
-0000561094 00000 n 
-0000561158 00000 n 
-0000561221 00000 n 
-0000561285 00000 n 
-0000561348 00000 n 
-0000561411 00000 n 
-0000561474 00000 n 
-0000561537 00000 n 
-0000561601 00000 n 
-0000561664 00000 n 
-0000561728 00000 n 
-0000561791 00000 n 
-0000561854 00000 n 
-0000561918 00000 n 
-0000561982 00000 n 
-0000562044 00000 n 
-0000566257 00000 n 
-0000564242 00000 n 
-0000562224 00000 n 
-0000564366 00000 n 
-0000564429 00000 n 
-0000564491 00000 n 
-0000564554 00000 n 
-0000564617 00000 n 
-0000564681 00000 n 
-0000564744 00000 n 
-0000564807 00000 n 
-0000564870 00000 n 
-0000564934 00000 n 
-0000564997 00000 n 
-0000565061 00000 n 
-0000565125 00000 n 
-0000565189 00000 n 
-0000565252 00000 n 
-0000565314 00000 n 
-0000565378 00000 n 
-0000565441 00000 n 
-0000565503 00000 n 
-0000565566 00000 n 
-0000565629 00000 n 
-0000565692 00000 n 
-0000565755 00000 n 
-0000565819 00000 n 
-0000565882 00000 n 
-0000565946 00000 n 
-0000566008 00000 n 
-0000566070 00000 n 
-0000566131 00000 n 
-0000566194 00000 n 
-0000570625 00000 n 
-0000569001 00000 n 
-0000566401 00000 n 
-0000569299 00000 n 
-0000569362 00000 n 
-0000569425 00000 n 
-0000569488 00000 n 
-0000569551 00000 n 
-0000569146 00000 n 
-0000569615 00000 n 
-0000569678 00000 n 
-0000569741 00000 n 
-0000569804 00000 n 
-0000569867 00000 n 
-0000569930 00000 n 
-0000569993 00000 n 
-0000570056 00000 n 
-0000570120 00000 n 
-0000570183 00000 n 
-0000570247 00000 n 
-0000570310 00000 n 
-0000570372 00000 n 
-0000570435 00000 n 
-0000570498 00000 n 
-0000570561 00000 n 
-0000698394 00000 n 
-0000575086 00000 n 
-0000573337 00000 n 
-0000570769 00000 n 
-0000573641 00000 n 
-0000573704 00000 n 
-0000573767 00000 n 
-0000573830 00000 n 
-0000573892 00000 n 
-0000573955 00000 n 
-0000574018 00000 n 
-0000574081 00000 n 
-0000574144 00000 n 
-0000574207 00000 n 
-0000574270 00000 n 
-0000574333 00000 n 
-0000574397 00000 n 
-0000574460 00000 n 
-0000574524 00000 n 
-0000574586 00000 n 
-0000574649 00000 n 
-0000574712 00000 n 
-0000574774 00000 n 
-0000574837 00000 n 
-0000574900 00000 n 
-0000574962 00000 n 
-0000573482 00000 n 
-0000575025 00000 n 
-0000580141 00000 n 
-0000577880 00000 n 
-0000575202 00000 n 
-0000578179 00000 n 
-0000578242 00000 n 
-0000578305 00000 n 
-0000578368 00000 n 
-0000578431 00000 n 
-0000578494 00000 n 
-0000578557 00000 n 
-0000578620 00000 n 
-0000578683 00000 n 
-0000578746 00000 n 
-0000578809 00000 n 
-0000578873 00000 n 
-0000578937 00000 n 
-0000579000 00000 n 
-0000579064 00000 n 
-0000579127 00000 n 
-0000579190 00000 n 
-0000579253 00000 n 
-0000579315 00000 n 
-0000579378 00000 n 
-0000579442 00000 n 
-0000579506 00000 n 
-0000579570 00000 n 
-0000579633 00000 n 
-0000579697 00000 n 
-0000579761 00000 n 
-0000578025 00000 n 
-0000579824 00000 n 
-0000579886 00000 n 
-0000579949 00000 n 
-0000580013 00000 n 
-0000580077 00000 n 
-0000584452 00000 n 
-0000582444 00000 n 
-0000580285 00000 n 
-0000582747 00000 n 
-0000582810 00000 n 
-0000582874 00000 n 
-0000582937 00000 n 
-0000583001 00000 n 
-0000583064 00000 n 
-0000583127 00000 n 
-0000583190 00000 n 
-0000583253 00000 n 
-0000583317 00000 n 
-0000583381 00000 n 
-0000583443 00000 n 
-0000582589 00000 n 
-0000583507 00000 n 
-0000583569 00000 n 
-0000583632 00000 n 
-0000583695 00000 n 
-0000583758 00000 n 
-0000583821 00000 n 
-0000583884 00000 n 
-0000583947 00000 n 
-0000584010 00000 n 
-0000584072 00000 n 
-0000584135 00000 n 
-0000584199 00000 n 
-0000584263 00000 n 
-0000584326 00000 n 
-0000584389 00000 n 
-0000589914 00000 n 
-0000586954 00000 n 
-0000584596 00000 n 
-0000587251 00000 n 
-0000587314 00000 n 
-0000587376 00000 n 
-0000587440 00000 n 
-0000587503 00000 n 
-0000587566 00000 n 
-0000587630 00000 n 
-0000587693 00000 n 
-0000587756 00000 n 
-0000587820 00000 n 
-0000587884 00000 n 
-0000587948 00000 n 
-0000588011 00000 n 
-0000588075 00000 n 
-0000588139 00000 n 
-0000588203 00000 n 
-0000588266 00000 n 
-0000588329 00000 n 
-0000588392 00000 n 
-0000588455 00000 n 
-0000588518 00000 n 
-0000588582 00000 n 
-0000588645 00000 n 
-0000588708 00000 n 
-0000588772 00000 n 
-0000588835 00000 n 
-0000588898 00000 n 
-0000588961 00000 n 
-0000589024 00000 n 
-0000589088 00000 n 
-0000589152 00000 n 
-0000589216 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 
-0000589343 00000 n 
-0000589406 00000 n 
-0000589469 00000 n 
-0000587099 00000 n 
-0000589532 00000 n 
-0000589596 00000 n 
-0000589660 00000 n 
-0000589723 00000 n 
-0000589786 00000 n 
-0000589850 00000 n 
-0000682487 00000 n 
-0000594402 00000 n 
-0000592572 00000 n 
-0000590058 00000 n 
-0000592696 00000 n 
-0000592759 00000 n 
-0000592821 00000 n 
-0000592884 00000 n 
-0000592947 00000 n 
-0000593010 00000 n 
-0000593073 00000 n 
-0000593136 00000 n 
-0000593199 00000 n 
-0000593262 00000 n 
-0000593326 00000 n 
-0000593390 00000 n 
-0000593451 00000 n 
-0000593514 00000 n 
-0000593577 00000 n 
-0000593641 00000 n 
-0000593705 00000 n 
-0000593769 00000 n 
-0000593832 00000 n 
-0000593895 00000 n 
-0000593958 00000 n 
-0000594021 00000 n 
-0000594085 00000 n 
-0000594149 00000 n 
-0000594212 00000 n 
-0000594276 00000 n 
-0000594339 00000 n 
-0000599128 00000 n 
-0000596871 00000 n 
-0000594546 00000 n 
-0000597168 00000 n 
-0000597231 00000 n 
-0000597294 00000 n 
-0000597357 00000 n 
-0000597420 00000 n 
-0000597483 00000 n 
-0000597546 00000 n 
-0000597016 00000 n 
-0000597609 00000 n 
-0000597672 00000 n 
-0000597735 00000 n 
-0000597798 00000 n 
-0000597861 00000 n 
-0000597924 00000 n 
-0000597988 00000 n 
-0000598051 00000 n 
-0000598114 00000 n 
-0000598178 00000 n 
-0000598241 00000 n 
-0000598304 00000 n 
-0000598368 00000 n 
-0000598431 00000 n 
-0000598494 00000 n 
-0000598558 00000 n 
-0000598621 00000 n 
-0000598685 00000 n 
-0000598748 00000 n 
-0000598812 00000 n 
-0000598875 00000 n 
-0000598939 00000 n 
-0000599002 00000 n 
-0000599066 00000 n 
-0000698519 00000 n 
-0000603876 00000 n 
-0000601861 00000 n 
-0000599230 00000 n 
-0000601985 00000 n 
-0000602048 00000 n 
-0000602110 00000 n 
-0000602174 00000 n 
-0000602238 00000 n 
-0000602302 00000 n 
-0000602365 00000 n 
-0000602427 00000 n 
-0000602489 00000 n 
-0000602551 00000 n 
-0000602614 00000 n 
-0000602677 00000 n 
-0000602740 00000 n 
-0000602803 00000 n 
-0000602867 00000 n 
-0000602931 00000 n 
-0000602994 00000 n 
-0000603057 00000 n 
-0000603120 00000 n 
-0000603182 00000 n 
-0000603245 00000 n 
-0000603308 00000 n 
-0000603371 00000 n 
-0000603434 00000 n 
-0000603497 00000 n 
-0000603561 00000 n 
-0000603624 00000 n 
-0000603687 00000 n 
-0000603749 00000 n 
-0000603813 00000 n 
-0000607133 00000 n 
-0000605872 00000 n 
-0000604020 00000 n 
-0000605996 00000 n 
-0000606059 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 
-0000606250 00000 n 
+0000606249 00000 n 
 0000606313 00000 n 
-0000606375 00000 n 
-0000606438 00000 n 
-0000606501 00000 n 
-0000606564 00000 n 
-0000606627 00000 n 
-0000606690 00000 n 
-0000606753 00000 n 
-0000606816 00000 n 
-0000606879 00000 n 
-0000606942 00000 n 
-0000607006 00000 n 
-0000607069 00000 n 
-0000611042 00000 n 
-0000609140 00000 n 
-0000607249 00000 n 
-0000609264 00000 n 
-0000609327 00000 n 
-0000609390 00000 n 
-0000609453 00000 n 
-0000609517 00000 n 
-0000609581 00000 n 
-0000609644 00000 n 
-0000609707 00000 n 
-0000609771 00000 n 
-0000609835 00000 n 
-0000609897 00000 n 
-0000609960 00000 n 
-0000610023 00000 n 
-0000610086 00000 n 
-0000610150 00000 n 
-0000610214 00000 n 
-0000610278 00000 n 
-0000610341 00000 n 
-0000610405 00000 n 
-0000610469 00000 n 
-0000610533 00000 n 
-0000610597 00000 n 
-0000610661 00000 n 
-0000610724 00000 n 
-0000610788 00000 n 
-0000610851 00000 n 
-0000610915 00000 n 
-0000610978 00000 n 
-0000615481 00000 n 
-0000613187 00000 n 
-0000611144 00000 n 
-0000613653 00000 n 
-0000613842 00000 n 
-0000614031 00000 n 
-0000614094 00000 n 
-0000614158 00000 n 
-0000614222 00000 n 
-0000613341 00000 n 
-0000613497 00000 n 
-0000614285 00000 n 
-0000614475 00000 n 
-0000614537 00000 n 
-0000614601 00000 n 
-0000614665 00000 n 
-0000614728 00000 n 
-0000614916 00000 n 
-0000614979 00000 n 
-0000615041 00000 n 
-0000615104 00000 n 
-0000615167 00000 n 
-0000615230 00000 n 
-0000615293 00000 n 
-0000615419 00000 n 
-0000619307 00000 n 
-0000617479 00000 n 
-0000615625 00000 n 
-0000617603 00000 n 
-0000617729 00000 n 
-0000617791 00000 n 
-0000617980 00000 n 
-0000618043 00000 n 
-0000618106 00000 n 
-0000618169 00000 n 
-0000618233 00000 n 
-0000618296 00000 n 
-0000618359 00000 n 
-0000618422 00000 n 
-0000618610 00000 n 
-0000618672 00000 n 
-0000618736 00000 n 
-0000618799 00000 n 
-0000618862 00000 n 
-0000618926 00000 n 
-0000618990 00000 n 
-0000619054 00000 n 
-0000619117 00000 n 
-0000619180 00000 n 
-0000622274 00000 n 
-0000621202 00000 n 
-0000619451 00000 n 
-0000621326 00000 n 
-0000621451 00000 n 
-0000621514 00000 n 
-0000621578 00000 n 
-0000621641 00000 n 
-0000621704 00000 n 
-0000621768 00000 n 
-0000621957 00000 n 
-0000622020 00000 n 
-0000622084 00000 n 
-0000622147 00000 n 
-0000622211 00000 n 
-0000698644 00000 n 
-0000625973 00000 n 
-0000624333 00000 n 
-0000622390 00000 n 
-0000624457 00000 n 
-0000624520 00000 n 
-0000624646 00000 n 
-0000624708 00000 n 
-0000624771 00000 n 
-0000624835 00000 n 
-0000624899 00000 n 
-0000625025 00000 n 
-0000625088 00000 n 
-0000625151 00000 n 
-0000625215 00000 n 
-0000625279 00000 n 
-0000625342 00000 n 
-0000625406 00000 n 
-0000625594 00000 n 
-0000625657 00000 n 
-0000625720 00000 n 
-0000625783 00000 n 
-0000625847 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 
-0000627363 00000 n 
-0000626089 00000 n 
-0000627661 00000 n 
-0000627787 00000 n 
-0000627850 00000 n 
-0000627912 00000 n 
-0000627976 00000 n 
-0000627508 00000 n 
-0000628166 00000 n 
-0000628229 00000 n 
-0000628292 00000 n 
-0000628356 00000 n 
-0000628419 00000 n 
-0000634462 00000 n 
-0000631373 00000 n 
-0000628613 00000 n 
-0000631497 00000 n 
-0000631686 00000 n 
-0000631749 00000 n 
-0000631936 00000 n 
-0000631999 00000 n 
-0000632062 00000 n 
-0000632126 00000 n 
-0000632190 00000 n 
-0000632254 00000 n 
-0000632317 00000 n 
-0000632381 00000 n 
-0000632444 00000 n 
-0000632507 00000 n 
-0000632570 00000 n 
-0000632633 00000 n 
-0000632695 00000 n 
-0000632757 00000 n 
-0000632821 00000 n 
-0000632885 00000 n 
-0000632949 00000 n 
-0000633012 00000 n 
-0000633076 00000 n 
-0000633140 00000 n 
-0000633203 00000 n 
-0000633266 00000 n 
-0000633329 00000 n 
-0000633392 00000 n 
-0000633456 00000 n 
-0000633519 00000 n 
-0000633583 00000 n 
-0000633646 00000 n 
-0000633710 00000 n 
-0000633895 00000 n 
-0000633958 00000 n 
-0000634022 00000 n 
-0000634086 00000 n 
-0000634148 00000 n 
-0000634211 00000 n 
-0000634275 00000 n 
-0000634338 00000 n 
-0000634400 00000 n 
-0000638173 00000 n 
-0000636094 00000 n 
-0000634606 00000 n 
-0000636218 00000 n 
-0000636532 00000 n 
-0000636594 00000 n 
-0000636657 00000 n 
-0000636720 00000 n 
-0000636783 00000 n 
-0000636846 00000 n 
-0000636909 00000 n 
-0000636972 00000 n 
-0000637035 00000 n 
-0000637098 00000 n 
-0000637161 00000 n 
-0000637224 00000 n 
-0000637288 00000 n 
-0000637352 00000 n 
-0000637414 00000 n 
-0000637477 00000 n 
-0000637667 00000 n 
-0000637730 00000 n 
-0000637793 00000 n 
-0000637856 00000 n 
-0000637919 00000 n 
-0000637983 00000 n 
-0000638047 00000 n 
-0000638111 00000 n 
-0000640866 00000 n 
-0000639030 00000 n 
-0000638303 00000 n 
-0000639154 00000 n 
-0000639217 00000 n 
-0000639279 00000 n 
-0000639342 00000 n 
-0000639406 00000 n 
-0000639468 00000 n 
-0000639531 00000 n 
-0000639595 00000 n 
-0000639659 00000 n 
-0000639722 00000 n 
-0000639785 00000 n 
-0000639849 00000 n 
-0000639913 00000 n 
-0000639977 00000 n 
-0000640039 00000 n 
-0000640102 00000 n 
-0000640166 00000 n 
-0000640230 00000 n 
-0000640294 00000 n 
-0000640357 00000 n 
-0000640420 00000 n 
-0000640484 00000 n 
-0000640548 00000 n 
-0000640612 00000 n 
-0000640675 00000 n 
-0000640738 00000 n 
-0000640802 00000 n 
-0000643618 00000 n 
-0000641720 00000 n 
-0000640954 00000 n 
-0000641844 00000 n 
-0000641907 00000 n 
-0000641970 00000 n 
-0000642034 00000 n 
-0000642096 00000 n 
-0000642159 00000 n 
-0000642223 00000 n 
-0000642287 00000 n 
-0000642351 00000 n 
-0000642414 00000 n 
-0000642477 00000 n 
-0000642541 00000 n 
-0000642605 00000 n 
-0000642667 00000 n 
-0000642730 00000 n 
-0000642794 00000 n 
-0000642858 00000 n 
-0000643047 00000 n 
-0000643110 00000 n 
-0000643173 00000 n 
-0000643237 00000 n 
-0000643301 00000 n 
-0000643365 00000 n 
-0000643428 00000 n 
-0000643491 00000 n 
-0000643555 00000 n 
-0000698769 00000 n 
-0000645972 00000 n 
-0000644514 00000 n 
-0000643720 00000 n 
-0000644638 00000 n 
-0000644701 00000 n 
-0000644765 00000 n 
-0000644828 00000 n 
-0000644891 00000 n 
-0000644955 00000 n 
-0000645018 00000 n 
-0000645082 00000 n 
-0000645145 00000 n 
-0000645208 00000 n 
-0000645272 00000 n 
-0000645336 00000 n 
-0000645400 00000 n 
-0000645463 00000 n 
-0000645526 00000 n 
-0000645590 00000 n 
-0000645654 00000 n 
-0000645717 00000 n 
-0000645780 00000 n 
-0000645844 00000 n 
-0000645908 00000 n 
-0000649700 00000 n 
-0000648382 00000 n 
-0000646060 00000 n 
-0000648506 00000 n 
-0000648695 00000 n 
-0000648758 00000 n 
-0000648820 00000 n 
-0000649008 00000 n 
-0000649071 00000 n 
-0000649134 00000 n 
-0000649322 00000 n 
-0000649385 00000 n 
-0000649448 00000 n 
-0000649511 00000 n 
-0000649574 00000 n 
-0000649637 00000 n 
-0000653281 00000 n 
-0000652402 00000 n 
-0000649802 00000 n 
-0000652526 00000 n 
-0000652589 00000 n 
-0000652652 00000 n 
-0000652841 00000 n 
-0000652903 00000 n 
-0000653092 00000 n 
-0000653155 00000 n 
-0000653218 00000 n 
-0000658527 00000 n 
-0000656139 00000 n 
-0000653383 00000 n 
-0000656263 00000 n 
-0000656326 00000 n 
-0000656388 00000 n 
-0000656577 00000 n 
-0000656640 00000 n 
-0000656703 00000 n 
-0000656766 00000 n 
-0000656829 00000 n 
-0000656892 00000 n 
-0000656955 00000 n 
-0000657018 00000 n 
-0000657081 00000 n 
-0000657143 00000 n 
-0000657206 00000 n 
-0000657269 00000 n 
-0000657332 00000 n 
-0000657395 00000 n 
-0000657458 00000 n 
-0000657521 00000 n 
-0000657584 00000 n 
-0000657647 00000 n 
-0000657709 00000 n 
-0000657772 00000 n 
-0000657835 00000 n 
-0000657898 00000 n 
-0000657960 00000 n 
-0000658023 00000 n 
-0000658086 00000 n 
-0000658149 00000 n 
-0000658212 00000 n 
-0000658275 00000 n 
-0000658338 00000 n 
-0000658401 00000 n 
-0000658464 00000 n 
-0000661918 00000 n 
-0000660849 00000 n 
-0000658629 00000 n 
-0000660973 00000 n 
-0000661036 00000 n 
-0000661099 00000 n 
-0000661288 00000 n 
-0000661351 00000 n 
-0000661414 00000 n 
-0000661603 00000 n 
-0000661666 00000 n 
-0000661855 00000 n 
-0000665218 00000 n 
-0000664023 00000 n 
-0000662020 00000 n 
-0000664147 00000 n 
-0000664210 00000 n 
-0000664399 00000 n 
-0000664588 00000 n 
-0000664777 00000 n 
-0000664840 00000 n 
-0000664904 00000 n 
-0000665093 00000 n 
-0000665155 00000 n 
-0000698894 00000 n 
-0000666638 00000 n 
-0000666262 00000 n 
-0000665320 00000 n 
-0000666386 00000 n 
-0000666449 00000 n 
-0000666512 00000 n 
-0000666575 00000 n 
-0000672225 00000 n 
-0000668524 00000 n 
-0000666726 00000 n 
-0000668824 00000 n 
-0000669013 00000 n 
-0000669263 00000 n 
-0000669326 00000 n 
-0000669389 00000 n 
-0000669453 00000 n 
-0000669517 00000 n 
-0000669642 00000 n 
-0000669768 00000 n 
-0000669831 00000 n 
-0000669894 00000 n 
-0000669958 00000 n 
-0000670022 00000 n 
-0000670085 00000 n 
-0000670210 00000 n 
-0000670273 00000 n 
-0000670336 00000 n 
-0000670399 00000 n 
-0000670462 00000 n 
-0000670526 00000 n 
-0000670588 00000 n 
-0000670650 00000 n 
-0000670712 00000 n 
-0000670775 00000 n 
-0000670838 00000 n 
-0000670901 00000 n 
-0000670964 00000 n 
-0000671028 00000 n 
-0000671091 00000 n 
-0000671153 00000 n 
-0000671215 00000 n 
-0000671277 00000 n 
-0000671340 00000 n 
-0000671404 00000 n 
-0000671468 00000 n 
-0000671532 00000 n 
-0000671596 00000 n 
-0000671660 00000 n 
-0000671724 00000 n 
-0000671787 00000 n 
-0000671849 00000 n 
-0000671911 00000 n 
-0000671973 00000 n 
-0000672036 00000 n 
-0000672100 00000 n 
-0000668669 00000 n 
-0000672163 00000 n 
-0000675952 00000 n 
-0000673562 00000 n 
-0000672355 00000 n 
-0000673686 00000 n 
-0000673810 00000 n 
-0000673934 00000 n 
-0000673997 00000 n 
-0000674059 00000 n 
-0000674122 00000 n 
-0000674186 00000 n 
-0000674250 00000 n 
-0000674376 00000 n 
-0000674439 00000 n 
-0000674628 00000 n 
-0000674691 00000 n 
-0000674754 00000 n 
-0000675005 00000 n 
-0000675067 00000 n 
-0000675130 00000 n 
-0000675193 00000 n 
-0000675257 00000 n 
-0000675383 00000 n 
-0000675446 00000 n 
-0000675635 00000 n 
-0000675698 00000 n 
-0000675761 00000 n 
-0000675824 00000 n 
-0000675888 00000 n 
-0000680037 00000 n 
-0000677637 00000 n 
-0000676054 00000 n 
-0000677957 00000 n 
-0000678083 00000 n 
-0000678208 00000 n 
-0000678271 00000 n 
-0000678334 00000 n 
-0000678398 00000 n 
-0000678462 00000 n 
-0000678525 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 
+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 
-0000678840 00000 n 
-0000678903 00000 n 
-0000678966 00000 n 
-0000679030 00000 n 
-0000679218 00000 n 
-0000679281 00000 n 
-0000679344 00000 n 
-0000677782 00000 n 
-0000679407 00000 n 
-0000679532 00000 n 
-0000679658 00000 n 
-0000679721 00000 n 
-0000679784 00000 n 
-0000679848 00000 n 
-0000679912 00000 n 
-0000679975 00000 n 
-0000684631 00000 n 
-0000681521 00000 n 
-0000680181 00000 n 
-0000681988 00000 n 
-0000682112 00000 n 
-0000682236 00000 n 
-0000682299 00000 n 
-0000682362 00000 n 
-0000682613 00000 n 
-0000682675 00000 n 
-0000682738 00000 n 
-0000682801 00000 n 
-0000682864 00000 n 
-0000682928 00000 n 
-0000682992 00000 n 
-0000683118 00000 n 
-0000683180 00000 n 
-0000681675 00000 n 
-0000683243 00000 n 
-0000683306 00000 n 
-0000683369 00000 n 
-0000683432 00000 n 
-0000683495 00000 n 
-0000683558 00000 n 
-0000683622 00000 n 
-0000683685 00000 n 
-0000683748 00000 n 
-0000683811 00000 n 
-0000683875 00000 n 
-0000683939 00000 n 
-0000684002 00000 n 
-0000684065 00000 n 
-0000684128 00000 n 
-0000681830 00000 n 
-0000684192 00000 n 
-0000684442 00000 n 
-0000684505 00000 n 
-0000684568 00000 n 
-0000687558 00000 n 
-0000688188 00000 n 
-0000685985 00000 n 
-0000684747 00000 n 
-0000686109 00000 n 
-0000686297 00000 n 
-0000686360 00000 n 
-0000686423 00000 n 
-0000686548 00000 n 
-0000686611 00000 n 
-0000686674 00000 n 
-0000686737 00000 n 
-0000686861 00000 n 
-0000686987 00000 n 
-0000687050 00000 n 
-0000687113 00000 n 
-0000687176 00000 n 
-0000687240 00000 n 
-0000687304 00000 n 
-0000687368 00000 n 
-0000687432 00000 n 
-0000687684 00000 n 
-0000687747 00000 n 
-0000687810 00000 n 
-0000687935 00000 n 
-0000687998 00000 n 
-0000688061 00000 n 
-0000688125 00000 n 
-0000699019 00000 n 
-0000692701 00000 n 
-0000689983 00000 n 
-0000688290 00000 n 
-0000690107 00000 n 
-0000690359 00000 n 
-0000690421 00000 n 
-0000690484 00000 n 
-0000690547 00000 n 
-0000690610 00000 n 
-0000690737 00000 n 
-0000690800 00000 n 
-0000690863 00000 n 
-0000690926 00000 n 
-0000690990 00000 n 
-0000691054 00000 n 
-0000691118 00000 n 
-0000691182 00000 n 
-0000691246 00000 n 
-0000691310 00000 n 
-0000691374 00000 n 
-0000691437 00000 n 
-0000691501 00000 n 
-0000691627 00000 n 
-0000691754 00000 n 
-0000691817 00000 n 
-0000691880 00000 n 
-0000692070 00000 n 
-0000692133 00000 n 
-0000692196 00000 n 
-0000692322 00000 n 
-0000692449 00000 n 
-0000692512 00000 n 
-0000692575 00000 n 
-0000692638 00000 n 
-0000693814 00000 n 
-0000693500 00000 n 
-0000692803 00000 n 
-0000693624 00000 n 
-0000693687 00000 n 
-0000693750 00000 n 
-0000693978 00000 n 
-0000699117 00000 n 
-0000699243 00000 n 
-0000699369 00000 n 
-0000699495 00000 n 
-0000699584 00000 n 
-0000699676 00000 n 
-0000724827 00000 n 
-0000779740 00000 n 
-0000779781 00000 n 
-0000779821 00000 n 
-0000780053 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 
+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 
 trailer
 <<
-/Size 4653
-/Root 4651 0 R
-/Info 4652 0 R
+/Size 5129
+/Root 5127 0 R
+/Info 5128 0 R
 >>
 startxref
-780209
+1032143
 %%EOF
diff --git a/docs/rel_notes.txt b/docs/rel_notes.txt
index f6d9860734e8e49c3139b19698e599c5ea10b614..efde41c58dbe3741de36a48b27826f77a7140477 100644
--- a/docs/rel_notes.txt
+++ b/docs/rel_notes.txt
@@ -1,5 +1,599 @@
+***************************************
+*** The Bugzilla 2.20 Release Notes ***
+***************************************
+
+Table of Contents
+*****************
+
+- Introduction
+- Minimum Requirements
+    * Perl
+    * For MySQL Users
+    * For PostgreSQL Users
+    * Required Perl Modules
+    * Optional Perl Modules
+- What's New?
+    * Experimental PostgreSQL Support
+    * New User-Interface Color/Style
+    * Higher-Level Categorization of Bugs (above "Product")
+    * Regular Reports by Email of Complex Queries ("Whining")
+    * "Environment Variable" Authentication Method
+    * User-List Drop-Down Menus
+    * Server-Side Comment Wrapping
+    * UI for Editing Priority, OS, Platform, and Severity
+    * Bugzilla Queries as RSS
+    * Choice of E-Mail Sending Methods
+    * "User Preferences"
+    * "Large Attachment" Storage
+    * "User Visibility" Controls
+    * Miscellaneous Improvements
+    * All Changes
+- Deprecated Features
+- Outstanding Issues (<======================== IMPORTANT, PLEASE READ)
+- How to Upgrade From An Older Bugzilla
+    * Steps for Upgrading
+- Code Changes Which May Affect Customizations
+    * The New Database-Compatibility Layer
+    * If You Customize Your Database...
+    * Many Functions Renamed
+    * User Preferences
+    * Other Changes
+- Security Fixes In 2.20 Releases
+- Release Notes for Previous Versions
+
+
+Introduction
+************
+
+This document contains the release notes for Bugzilla 2.20.
+In this document, recently added, changed, and removed features
+of Bugzilla are described. If you are upgrading from an older version,
+you will definitely want to read these release notes in detail, so that
+you have an idea of what has changed.
+
+If you are upgrading from a version before 2.18, also read the 2.18 release
+notes (lower in this file) and any previous release notes.
+
+If you are installing a new Bugzilla, you will still want to look over
+the release notes to see if there is any particularly important information
+that affects your installation.
+
+The 2.20 release is our current stable series. It has had about nine 
+months of development since 2.18, but they were nearly the most active
+nine months in Bugzilla's history. We hope that users will appreciate 
+our many external changes, and that Bugzilla administators will find 
+that our internal changes make their lives easier.
+
+If you would like to contribute code to Bugzilla, read our 
+Contributor's Guide at:
+
+http://www.bugzilla.org/docs/contributor.html
+
+
+Minimum Requirements
+********************
+
+Perl
+----
+
+  Perl v5.6.1            (changed from 2.18)  (Non-Windows platforms)
+  ActiveState Perl v5.8.1                     (Windows only)
+
+For MySQL Users
+---------------
+
+  MySQL v3.23.41                   (Note: 2.22 will require MySQL 4.x)
+  perl module: DBD::mysql v2.9003  (changed from 2.18)
+
+For PostgreSQL Users       (new in 2.20)
+--------------------
+
+  PostgreSQL 7.3.x          (8.x has received less testing)
+  perl module: DBD::Pg 1.31 (1.41 required for PostgreSQL 8+)
+
+Required Perl Modules
+---------------------
+
+  AppConfig v1.52
+  CGI v2.93
+  Data::Dumper (any)
+  Date::Format v2.21
+  DBI v1.38              (changed from 2.18)
+  File::Spec v0.84       (changed from 2.18)
+  File::Temp (any)
+  Template Toolkit v2.08
+  Text::Wrap v2001.0131
+  Mail::Mailer 1.65      (new in 2.20)
+  Storable (any)         (new in 2.20)
+
+Optional Perl Modules
+---------------------
+
+  Chart::Base v1.0
+  GD v1.20
+  GD::Graph (any)
+  GD::Text::Align (any)
+  Net::LDAP (any)
+  PatchReader v0.9.4
+  XML::Parser (any)
+
+
+What's New?
+***********
+
+Experimental PostgreSQL Support
+-------------------------------
+
+In addition to MySQL, Bugzilla now also supports PostgreSQL. PostgreSQL
+support is still somewhat experimental. Although most major features of
+Bugzilla work on PostgreSQL in 2.20, there are probably still a few bugs
+that need to be worked out.
+
+PostgreSQL support in 2.20 is acceptable for smaller production
+environments that don't mind running into a bug or two now and then.
+
+
+New User-Interface Color/Style
+------------------------------
+
+You'll notice that Bugzilla looks a bit nicer, now! We've made a few
+color and style changes to update the overall "feel" of Bugzilla's
+User Inteface. We plan to do even more work on the UI for 2.22.
+
+
+Higher-Level Categorization of Bugs (above "Product")
+-----------------------------------------------------
+
+Previous Bugzillas had "Products" that you could file bugs in,
+and "Components" for those products. Now, "Products" can be grouped
+into "Classifications."
+
+To enable this, a Bugzilla administrator can turn on the 
+"useclassification" parameter, using editparams.cgi.
+
+
+Regular Reports by Email of Complex Queries ("Whining")
+-------------------------------------------------------
+
+You can now tell Bugzilla to do a specific query (or set of queries)
+every X minutes/hours/days, and send you the results by email. This is
+great for keeping track on a daily basis of what's going on in 
+your Bugzilla.
+
+
+"Environment Variable" Authentication Method
+--------------------------------------------
+
+You can now tell Bugzilla to accept a certain value passed in from
+Apache as authentication for Bugzilla users. This means that Bugzilla
+now "supports" any type of authentication that Apache supports.
+
+To use this, set the "user_info_class" parameter to "ENV" and, at a 
+minimum, set the "auth_env_email" parameter to the name of the 
+Environment variable that passes the authenticated user (usually 
+"REMOTE_USER").  If your webserver knows users' real names as well, also
+set the "auth_env_realname" parameter.  If you are using a true 
+single-signon system that assigns an identifier uniquely to an
+individual, even across changes of email address, then set 
+"auth_env_id" to the name of that variable.
+
+
+User-List Drop-Down Menus
+-------------------------
+
+Now, anywhere in Bugzilla where you previously had to type in an
+email address by hand, you have the choice of having Bugzilla instead
+display a drop-down menu of users to pick from.
+
+This feature is best for small installations with few users, because
+on large installations the list grows too large to be useful.
+
+To enable the feature, turn on the "usemenuforusers" parameter in
+editparams.cgi.
+
+
+Server-Side Comment Wrapping
+----------------------------
+
+In older Bugzillas, comments were wrapped to 80 characters by the
+user's web browser, and then stored in the database that way. This caused
+problems because some browsers did not wrap comments properly.
+
+Now, Bugzilla stores comments unwrapped and wraps them at display time, so
+all new comments should be properly wrapped. Also, when you upgrade, Bugzilla
+will look for old "mis-wrapped" comments and attempt to wrap them properly.
+
+Lines beginning with the ">" character are assumed to be quotes, and are
+*not* wrapped.
+
+
+UI for Editing Priority, OS, Platform, and Severity
+---------------------------------------------------
+
+Bugzilla now has a User Interface for adding and removing values
+from the OS, Platform, Priority, and Severity fields. You can also
+rename values. Any user in the "editcomponents" group can click
+on the "Field Values" link in their page footer to edit these fields.
+
+Also, the default list of choices for OS and Platform for new 
+installations is now much smaller. Old installations will keep 
+the same list they have now.
+
+
+Bugzilla Queries as RSS
+-----------------------
+
+You can now view a Bugzilla query as valid RSS 1.0. This means that you
+could add a particular query to your RSS aggregator, if you wanted, to
+keep track of changes in Bugzilla.
+
+To see a query as RSS, just click on the "RSS" link on the bottom of
+your query results. Your query must return at least 1 result in order
+for you to see the link.
+
+
+Choice of E-Mail Sending Methods
+--------------------------------
+
+Bugzilla now uses perl's Mail::Mailer to send e-mail. This means that
+you have several choices of how Bugzilla can send email. By default, it
+still uses sendmail, but it can also use SMTP, qmail, or send all email
+to a file instead of out to users.
+
+A Bugzilla administrator can change which method is used by setting the
+"mail_delivery_method" parameter in editparams.cgi.
+
+
+"User Preferences"
+------------------
+
+Bugzilla users will now notice a section in their Preferences called
+"General Preferences." Administrators will notice a new link called
+"User Preferences."
+
+The Preferences system allows Bugzilla developers to specify arbitrary
+"user preferences" that change the behavior of certain parts of Bugzilla.
+Administrators can control whether or not users are allowed to use these
+preferences, and what the default settings are for a user who is not
+logged in.
+
+The first two preferences that we have implemented are:
+  + "Show a quip at the top of each bug list"
+  + "When viewing a bug, show comments in this order..."
+
+We plan to implement more preferences in the future.
+
+
+"Large Attachment" Storage
+--------------------------
+
+Bugzilla can now store very large attachments on disk instead of in the
+database. These attachments can't be searched with Boolean Charts, but
+they also don't take up database space, and they can be deleted individually
+by the admin.
+
+When uploading an attachment, a user chooses if it's a "Big File." If so,
+it's stored on the disk instead of in the database.
+
+To enable this feature, set the "maxlocalattachmentsize" parameter to
+a non-zero value, in editparams.cgi.
+
+
+"User Visibility" Controls
+--------------------------
+
+It is now possible to prevent users from encountering all other users when
+using user-matching or drop-down userlists.  To enable this restriction, 
+enable the "usevisibilitygroups" parameter.  Once this is enabled, each 
+group's permissions will include a new column for "visible."  The members 
+of any group for which the group being edited is visible will be
+able to user-match this groups's users or see them in dropdown lists.
+
+This does not control who a user can CC on a bug, only who they can 
+see in the user-matching lists or drop-downs.
+
+Miscellaneous Improvements
+--------------------------
+
+- Marking an attachment as obsolete will now cancel all pending flag
+  requests for that attachment. That is, any flag that was set to "?"
+  on that attachment will be cleared.
+
+- You can now see which users are "watching" you, on the email 
+  preferences page.
+
+- You can tell Bugzilla to mark certain comments in a different
+  color by adding "&mark=1,2,3,5-7" to the end of the show_bug.cgi URL,
+  where "1,2,3,5-7" means "highlight comment 1, comment 2, comment 3, and
+  comments 5 through 7."
+
+- "QA Contact" now also appears on the New Bug page, if QA Contacts are
+  enabled on your installation.
+
+- Bugzilla email now has the "In-Reply-To" header added to it, so if
+  you use an email client that supports threads, you can view your
+  Bugzilla email in threads. If you are upgrading to a new version of
+  Bugzilla, and you want this support, please see the instructions at:
+  https://bugzilla.mozilla.org/attachment.cgi?id=172267
+
+- The email preferences system has been slightly updated. You will notice
+  the changes on your Email Preferences page.
+
+- You can now negate individual "boolean charts" (in the 
+  "Advanced Searching" section at the bottom of the "Advanced 
+   Search" page). That is, you can add "NOT" to the front of them.
+
+- You can add the words %assignee%, %reporter%, %user% (yourself), or
+  %qacontact% on the right-hand side of a Boolean Chart. For example, you
+  could make a Boolean Chart which said "Reporter" "does not equal" 
+  "%assignee%". That would give you all bugs where the Reporter was not
+  the same as the Assignee.
+
+- You can now search Boolean Charts by "commenter."
+
+- If you have a group with no name, it will be re-named to "group_#" where
+  "#" is the numeric Bugzilla Group ID for that group.
+
+- If you are using time-tracking, you can now see a report of time spent
+  on bugs using summarize_time.cgi.
+
+- If you are using time-tracking, bugzilla will now set "hours remaining"
+  to "0" automatically if you RESOLVE a bug, whether you are in the
+  time-tracking group or not.
+
+
+Deprecated Features
+*******************
+
+- Bugzilla 2.20 is the last Bugzilla version to support MySQL 3.23.x.
+  Starting with Bugzilla 2.22, Bugzilla will require MySQL 4.0.x. This will
+  allow Bugzilla to take advantage of the advanced features of MySQL 4.
+
+
+Outstanding Issues
+******************
+
+- (No Bug Number) VERY IMPORTANT: If you have customized the values in
+  your Status/Resolution field, you must edit checksetup.pl BEFORE YOU
+  RUN IT. Find the line that starts like this:
+
+  my @states = ("UNCONFIRMED",
+
+  That's where you set the values for the Status field.
+
+  my @resolutions = ("","FIXED",
+
+  And that's where you set values for the Resolution field.
+
+  Those are both near line 1786 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.
+
+- bug 37765: VERY IMPORTANT: If you use the "sendmail" support of Bugzilla,
+  and you use an MTA which is *not* Sendmail (such as Postfix, Exim, etc.) 
+  you MUST turn on the "sendmailnow" parameter or Bugzilla will not send 
+  e-mail correctly.
+
+- (No Bug Number) If you close your web browser while the process_bug.cgi
+  or post_bug.cgi screen is running, not all emails will be sent, and
+  the next time that that bug is updated, there will be two updates. This
+  is because of a behavior of Apache that is beyond our control.
+
+- bug 276230: The support for restricting access to particular Categories of 
+  New Charts is not complete. You should treat the 'chartgroup' Param as the 
+  only access mechanism available. However, additionally, charts migrated from
+  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.
+
+- 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
+  the option to rebuild the cache when it asks. Otherwise keywords may not show
+  up properly in search results.
+
+- (No Bug Number) If you have a lot of non-ASCII data in your Bugzilla (for 
+  example, if you use a translation of Bugzilla), don't enable the XS::Stash
+  option when you install the Template Toolkit, or your Bugzilla installation
+  may become slow. This problem is fixed in a not-yet-released version of the
+  Template Toolkit (after 2.14).
+
+- If at any time you upgraded from a version of Bugzilla between 2.17.4 -
+  2.17.7 to either 2.18rc3 or 2.19.1, you must manually fix your New Charts in
+  order for them to work. See the following link for instructions on how to do
+  this: https://bugzilla.mozilla.org/show_bug.cgi?id=276237#c18
+  If you are using 2.18rc3, but did not upgrade from version 2.17.4 or newer,
+  then you don't need to do this.
+
+- (No Bug Number) If your DBI is really, really old, Bugzilla might fail
+  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
+
+- Bug 99215: Flags are not protected by "mid-air collision" detection.
+  Nor are any attachment changes.
+
+- Bug 89822: When changing multiple bugs at the same time, there is no
+  "mid-air collision" protection.
+
+- Bug 285614: importxml.pl may be broken in many different ways.
+
+- (No Bug Number) Note that the email interface (bug_mail.pl) in the 
+  contrib/ directory has not been maintained (as it has no maintainer),
+  and so may not be working properly. Contributions are welcome, if
+  anybody would like to work on it.
+
+
+Upgrading From An Older Bugzilla
+************************************
+
+NOTE: Running checksetup.pl to upgrade a large installation (over 10,000 bugs)
+      may take a significant amount of time. checksetup will try to let
+      you know how long it will take, but expect downtime of an hour or
+      more if you have many bugs, many attachments, or many users.
+
+Steps for Upgrading
+-------------------
+
+1) View the Sanity Check (sanitycheck.cgi) page on your installation before
+   upgrading. Attempt to fix all warnings that the page produces before
+   you go any further, or you may experience problems during your upgrade.
+
+2) Make a backup of the  Bugzilla database before you upgrade, perhaps 
+   by using mysqldump.
+
+   Example:
+
+      mysqldump -u root -p --databases bugs > bugs.db.backup
+
+3) Replace the files in your installation with the new version of Bugzilla,
+   or you can try to use CVS to upgrade. The Bugzilla.org website has 
+   instructions on how to do the actual installation.
+
+4) Make sure that you run checksetup.pl after you install the new version.
+
+5) View the Sanity Check page again after you run checksetup.pl.
+
+6) It is recommended that, if possible, you fix any problems you find
+   immediately. Failure to do this may mean that Bugzilla will not work 
+   correctly. Be aware that if the sanity check page contains more errors after
+   an upgrade, it doesn't necessarily mean there are more errors in your 
+   database, as additional tests are added to the sanity check over time, and 
+   it is possible that those errors weren't being checked for in the old 
+   version.
+
+7) If you want threading support on your Bugzilla email (see the 
+   "Miscellaneous Improvements" section above for a description),
+    you need to follow the instructions at:
+    https://bugzilla.mozilla.org/attachment.cgi?id=172267
+
+
+Code Changes Which May Affect Customizations
+********************************************
+
+The New Database-Compatibility Layer
+------------------------------------
+
+For most customizations, this should have no effect. However, you should
+be aware that Bugzilla->dbh is now an instance of "Bugzilla::DB" instead
+of being a DBI object directly. In fact, it's actually a 
+Bugzilla::DB::Mysql for MySQL users, and a Bugzilla::DB::Pg for 
+PostgreSQL users.
+
+Anything called from $dbh (like $dbh->bz_last_key) that starts with
+"bz_" or "sql_" is a custom Bugzilla function. Anything *not* starting
+with those two prefixes is a normal DBI function.
+
+Methods whose names start with "sql_" generate a piece of a SQL statement.
+They generate the correct version of the statement for whichever database
+you are using.
+
+Methods whose names start with "bz_" do something directly.
+
+You can see more documentation about this at:
+
+http://www.bugzilla.org/docs/2.20/pod/Bugzilla/DB.pm
+
+
+If You Customize Your Database...
+---------------------------------
+
+In order to support multiple databases, we had to do something sort of
+tricky. Bugzilla now stores what it *thinks* the current database schema
+is, in a table called bz_schema.
+
+This means that when checksetup changes the database, it updates the
+bz_schema table. When *you* update the database, without using 
+checksetup to do it, the bz_schema table is *not* updated.
+
+So, if you're going to add/remove a new column/table to Bugzilla, or if you're
+going to change the definition of a column, try to do it by adding code to
+checksetup in the correct place. (It's one of the places where you find
+the word "--TABLE--".)
+
+You can see the documentation on the $dbh functions used to do this at:
+
+http://www.bugzilla.org/docs/2.20/pod/Bugzilla/DB.pm#schema_modification_methods
+
+
+Many Functions Renamed
+----------------------
+
+We are reorganizing the Bugzilla code so that it can support mod_perl. As
+part of this, we are moving all functions out of globals.pl and CGI.pl, and
+into modules in the Bugzilla/ directory.
+
+Sometimes when we moved them, we also renamed them. The new Bugzilla standard
+is to have functions_named_like_this, instead of FunctionsNamedLikeThis.
+
+So if you were using a FunctionNamedLikeThis that no longer works, try just
+using it as function_named_like_this. If that doesn't work, you may have to
+search for where we put it, and what we renamed it to. Most of the functions
+moved to logical places.
+
+If you really can't find it, search bugzilla.mozilla.org using the name
+of the old function. We usually moved one function per bug, so the new
+name will be somewhere in a bug report.
+
+
+User Preferences
+----------------
+
+Bugzilla now has a "User Preferences" system! These preferences are stored
+in the database, and specified by a Bugzilla developer. The Bugzilla
+developers actually call these "settings," but we called them "User 
+Preferences" in the UI to make things clearer.
+
+You access a user's settings differently depending on if you are in a
+.cgi file or in a template file:
+
+CGI: Bugzilla->user->settings->{'setting_name'}->value
+Template: Bugzilla.user.settings.setting_name.value
+
+Where "setting_name" is the name of the setting. You can see the current
+setting names in the "setting" table in the database.
+
+Remember that sometimes you may want to check a user's settings when 
+making a customization.
+
+To see how to add new settings, search for "add_setting" in checksetup.pl.
+Also see the template: template/en/default/global/setting-descs.none.tmpl.
+
+Other Changes
+-------------
+
+- The $::unconfirmedstate variable has been replaced by the actual string
+  "UNCONFIRMED" everywhere in Bugzilla code.
+
+- The %::FORM and %::MFORM variables are no longer used to access form
+  data. Instead, use $cgi->param(). There are many examples of how to do
+  this, all over the Bugzilla code.
+
+- SendSQL() and related calls are deprecated, and the various $dbh methods
+  should be used instead, such as $dbh->prepare() and $dbh->execute().
+  Bugzilla->dbh is the $dbh handle to use. We expect SendSQL to completely
+  disappear by 2.22. For more information on how to use the $dbh methods, 
+  see:  http://search.cpan.org/dist/DBI/DBI.pm
+
+- The $::userid variable will be going away. Use Bugzilla->user->id instead.
+
+- All global variables (any that start with $::, @::, or %::) will 
+  be going away, eventually, hopefully they will be entirely gone 
+  by Bugzilla 2.24.
+
+
+Release Notes for Previous Versions
+***********************************
+
 *****************************************
-*** The Bugzilla 2.18.1 Release Notes ***
+*** The Bugzilla 2.18.x Release Notes ***
 *****************************************
 
 Table of Contents
@@ -8,6 +602,7 @@ Table of Contents
 - Introduction
 - Important Updates In This Point Release
     * Version 2.18.1
+    * Version 2.18.2
 - Requirements
     * Dependency Requirements
 - What's New?
@@ -80,6 +675,22 @@ Version 2.18.1
 + Dependency mails are now properly sent during a mass-change of bugs.
   (Bug 178157)
 
+
+Version 2.18.2
+--------------
+
++ You can now create accounts with createaccount.cgi even
+  when the "requirelogin" parameter is turned on. (Bug 294778)
+
++ Bugs that are in disabled groups may not show a padlock
+  on the bug list, or may otherwise behave strangely. You
+  can now fix this using sanitycheck.cgi. (Bug 277454)
+
++ If sendmail dies while you are marking a bug 
+  as a duplicate, the duplicates table will no longer become 
+  corrupted. (Bug 225042)
+
+
 Requirements
 ************
 
@@ -601,7 +1212,7 @@ They each have a bug number for http://bugzilla.mozilla.org/
 
 - bug 266579: Users may be able to circumvent not having "canconfirm" privileges
   in some circumstances. This is fixed starting with 2.19.3, but will not
-  be fixed in any 2.18 release, as the changes require to fix it are quite
+  be fixed in any 2.18 release, as the changes required to fix it are quite
   large.
 
 - bug 99215: Attachment changes have no mid-air collision detection, unlike bug
@@ -613,10 +1224,7 @@ They each have a bug number for http://bugzilla.mozilla.org/
 
 - bug 151509: Using the boolean chart option "contains the string" with the 
   "flag name" field or certain other fields will cause Bugzilla to emit an 
-  error.
-
-- bug 225042: If sendmail dies while you are marking a bug as a duplicate, 
-  the duplicates table can become corrupted.
+  error. This is fixed in 2.20rc1, but will not be fixed in the 2.18 series.
 
 - bug 234159: Bugzilla may sometimes send multiple notices in one email.
 
@@ -658,6 +1266,16 @@ critical.
 See http://www.bugzilla.org/security/2.16.8/ for details.
 
 
+Version 2.18.2
+--------------
+
+Two security issues were fixed in Bugzilla 2.18.2. One of them
+is a major Information Leak/Unauthorized Bug Change. The other
+is a minor Information Leak.
+
+See http://www.bugzilla.org/security/2.18.1/ for details.
+
+
 Detailed Version-To-Version Release Notes
 *****************************************
 
diff --git a/docs/txt/Bugzilla-Guide.txt b/docs/txt/Bugzilla-Guide.txt
index f869a61d547dedad53b8a5404d33a814f4ec3ad6..8f1ac2d07ad9d62b0263e9d024ae51946eded9a5 100644
--- a/docs/txt/Bugzilla-Guide.txt
+++ b/docs/txt/Bugzilla-Guide.txt
@@ -1,9 +1,9 @@
 
-The Bugzilla Guide - 2.19.2 Development Release
+The Bugzilla Guide - 2.20 Development Release
 
 The Bugzilla Team
 
-   2005-01-14
+   2005-09-30
 
    This is the documentation for Bugzilla, a bug-tracking system from
    mozilla.org. Bugzilla is an enterprise-class piece of software that tracks
@@ -74,6 +74,7 @@ The Bugzilla Team
         6.10. User Preferences
         6.11. Reports and Charts
         6.12. Flags
+        6.13. Whining
 
    A. The Bugzilla FAQ
    B. Troubleshooting
@@ -174,9 +175,9 @@ Chapter 1. About This Guide
 
 1.3. New Versions
 
-   This is the 2.19.2 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 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.
 
    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
@@ -301,9 +302,9 @@ Chapter 2. Installing Bugzilla
    installing Bugzilla (and at regular intervals thereafter :-).
 
    In outline, the installation proceeds as follows:
-    1. Install Perl (5.6.0 or above for non-Windows platforms; 5.8.1 for
+    1. Install Perl (5.6.1 or above for non-Windows platforms; 5.8.1 for
        Windows)
-    2. Install MySQL (3.23.41 or above)
+    2. Install a Database Engine
     3. Install a Webserver
     4. Install Bugzilla
     5. Install Perl modules
@@ -318,12 +319,18 @@ Chapter 2. Installing Bugzilla
 
    Any machine that doesn't have Perl on it is a sad machine indeed. If you
    don't have it and your OS doesn't provide official packages, visit
-   http://www.perl.com. Although Bugzilla runs with Perl 5.6.0, it's a good
-   idea to be using the latest stable version. As of this writing, that is Perl
-   5.8.3.
+   http://www.perl.com. Although Bugzilla runs with Perl 5.6.1, it's a good
+   idea to be using the latest stable version.
      _________________________________________________________________
 
-2.1.2. MySQL
+2.1.2. Database Engine
+
+   From Bugzilla 2.20, support is included for using both the MySQL and
+   PostgreSQL database servers. You only require one of these systems to make
+   use of Bugzilla.
+     _________________________________________________________________
+
+2.1.2.1. MySQL
 
    Installed Version Test: mysql -V
 
@@ -341,6 +348,19 @@ Chapter 2. Installing Bugzilla
    started when the machine boots.
      _________________________________________________________________
 
+2.1.2.2. PostgreSQL
+
+   Installed Version Test: psql -V
+
+   If you don't have it and your OS doesn't provide official packages, visit
+   http://www.postgresql.org/. You need PostgreSQL version 7.3.x or higher.
+
+   If you install from something other than a packaging/installation system,
+   such as .rpm (Redhat Package), .deb (Debian Package), .exe (Windows
+   Executable), or .msi (Microsoft Installer), make sure the PostgreSQL server
+   is started when the machine boots.
+     _________________________________________________________________
+
 2.1.3. Web Server
 
    Installed Version Test: view the default welcome page at
@@ -382,8 +402,8 @@ Chapter 2. Installing Bugzilla
    When it passes, do not run it again, but 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. Then run:
-   bash# ./checksetup.pl
+   end of the install. To check you have the required modules, run:
+   bash# ./checksetup.pl --check-modules
 
    checksetup.pl will print out a list of the required and optional Perl
    modules, together with the versions (if any) installed on your machine. The
@@ -413,6 +433,12 @@ Chapter 2. Installing Bugzilla
    the local UNIX sysadmin, please consult the newsgroup/mailing list for
       further assistance or hire someone to help you out.
 
+   Note If you are using a package-based system, and attempting to install the
+   Perl modules from CPAN, you may need to install the "development" packages
+   for MySQL and GD before attempting to install the related Perl modules. The
+   names of these packages will vary depending on the specific distribution you
+      are using, but are often called <packagename>-devel.
+
    Here is a complete list of modules and their minimum versions. Some modules
    have special installation notes, which follow.
 
@@ -422,12 +448,15 @@ Chapter 2. Installing Bugzilla
     2. CGI (2.93)
     3. Data::Dumper (any)
     4. Date::Format (2.21)
-    5. DBI (1.36)
-    6. DBD::mysql (2.1010)
-    7. File::Spec (0.82)
-    8. File::Temp (any)
-    9. Template (2.08)
-   10. Text::Wrap (2001.0131)
+    5. DBI (1.38)
+    6. DBD::mysql (2.9003) if using MySQL
+    7. DBD::Pg (1.31) if using PostgreSQL
+    8. File::Spec (0.84)
+    9. File::Temp (any)
+   10. Template (2.08)
+   11. Text::Wrap (2001.0131)
+   12. Mail::Mailer (1.65)
+   13. Storable (any)
 
    Optional Perl modules:
 
@@ -552,9 +581,14 @@ Chapter 2. Installing Bugzilla
 
 2.2.1. localconfig
 
-   Once you run checksetup.pl with all the correct modules installed, it
-   displays a message about, and write out a file called, localconfig. This
-   file contains the default settings for a number of Bugzilla parameters.
+   You should now run checksetup.pl again, this time without the
+   --check-modules switch.
+   bash# ./checksetup.pl
+
+   This time, checksetup.pl should tell you that all the correct modules are
+   installed and will display a message about, and write out a file called,
+   localconfig. This file contains the default settings for a number of
+   Bugzilla parameters.
 
    Load this file in your editor. The only value you need to change is
    $db_pass, the password for the user you will create for your database. Pick
@@ -571,13 +605,19 @@ Chapter 2. Installing Bugzilla
    checksetup.pl, the changes will get picked up.
      _________________________________________________________________
 
-2.2.2. MySQL
+2.2.2. Database Server
+
+   This section deals with configuring your database server for use with
+   Bugzilla. Currently Section 2.2.2.1 and Section 2.2.2.2 are available.
+     _________________________________________________________________
+
+2.2.2.1. MySQL
 
    Caution MySQL's default configuration is very insecure. Section 4.2 has some
       good information for improving your installation's security.
      _________________________________________________________________
 
-2.2.2.1. Allow large attachments
+2.2.2.1.1. Allow large attachments
 
    By default, MySQL will only accept packets up to 64Kb in size. If you want
    to have attachments larger than this, you will need to modify your
@@ -597,9 +637,13 @@ Chapter 2. Installing Bugzilla
    1000 Kb) that controls the maximum allowable attachment size. Attachments
    larger than either the 'max_allowed_packet' or 'maxattachmentsize' value
    will not be accepted by Bugzilla.
+
+   Note This does not affect Big Files, attachments that are stored directly on
+   disk instead of in the database. Their maximum size is controlled using the
+      'maxlocalattachment' parameter.
      _________________________________________________________________
 
-2.2.2.2. Allow small words in full-text indexes
+2.2.2.1.2. Allow small words in full-text indexes
 
    By default, words must be at least four characters in length in order to be
    indexed by MySQL's full-text indexes. This causes a lot of Bugzilla specific
@@ -618,7 +662,7 @@ Chapter 2. Installing Bugzilla
    Note The ft_min_word_len parameter is only suported in MySQL v4 or higher.
      _________________________________________________________________
 
-2.2.2.3. Permit attachments table to grow beyond 4GB
+2.2.2.1.3. Permit attachments table to grow beyond 4GB
 
    By default, MySQL will limit the size of a table to 4GB. This limit is
    present even if the underlying filesystem has no such limit. To set a higher
@@ -626,14 +670,17 @@ Chapter 2. Installing Bugzilla
 
    Run the MySQL command-line client and enter:
   mysql> ALTER TABLE attachments
-          AVG_ROW_LENGTH=1000000, MAX_ROWS=20000;
+            AVG_ROW_LENGTH=1000000, MAX_ROWS=20000;
 
    The above command will change the limit to 20GB. Mysql will have to make a
    temporary copy of your entire table to do this. Ideally, you should do this
    when your attachments table is still small.
+
+   Note This does not affect Big Files, attachments that are stored directly on
+      disk instead of in the database.
      _________________________________________________________________
 
-2.2.2.4. Add a user to MySQL
+2.2.2.1.4. Add a user to MySQL
 
    You need to add a new MySQL user for Bugzilla to use. (It's not safe to have
    Bugzilla use the MySQL root account.) The following instructions assume the
@@ -650,19 +697,75 @@ Chapter 2. Installing Bugzilla
 
    If you are using MySQL 4.0 or newer, enter:
   mysql> GRANT SELECT, INSERT,
-         UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
-         CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
-         TO bugs@localhost IDENTIFIED BY '$db_pass';
-  mysql> FLUSH PRIVILEGES;
+           UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
+           CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
+           TO bugs@localhost IDENTIFIED BY '$db_pass';
+           mysql> FLUSH PRIVILEGES;
 
    If you are using an older version of MySQL,the LOCK TABLES and CREATE
    TEMPORARY TABLES permissions will be unavailable and should be removed from
    the permissions list. In this case, the following command line can be used:
   mysql> GRANT SELECT, INSERT,
-         UPDATE, DELETE, INDEX, ALTER, CREATE, DROP,
-         REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY
-         '$db_pass';
-  mysql> FLUSH PRIVILEGES;
+           UPDATE, DELETE, INDEX, ALTER, CREATE, DROP,
+           REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY
+           '$db_pass';
+           mysql> FLUSH PRIVILEGES;
+     _________________________________________________________________
+
+2.2.2.2. PostgreSQL
+
+   Note Note if you are using PostgreSQL 8.0.1 or higher, then you will require
+      to use a version of DBD::Pg which is equal to or greater than version 1.41
+     _________________________________________________________________
+
+2.2.2.2.1. Add a User to PostgreSQL
+
+   You need to add a new user to PostgreSQL for the Bugzilla application to use
+   when accessing the database. The following instructions assume the defaults
+   in localconfig; if you changed those, you need to modify the commands
+   appropriately. You will need the $db_pass password you set in localconfig in
+   Section 2.2.1.
+
+   On most systems, to create the user in PostgreSQL, you will need to login as
+   the root user, and then
+    bash# su - postgres
+
+   As the postgres user, you then need to create a new user:
+    bash$ createuser -U postgres -dAP bugs
+
+   When asked for a password, provide the password which will be set as
+   $db_pass in localconfig. The created user will have the ability to create
+   databases and will not be able to create new users.
+     _________________________________________________________________
+
+2.2.2.2.2. Configure PostgreSQL
+
+   Now, you will need to edit pg_hba.conf which is usually located in
+   /var/lib/pgsql/data/. In this file, you will need to add a new line to it as
+   follows:
+
+   host all bugs 127.0.0.1 255.255.255.255 md5
+
+   This means that for TCP/IP (host) connections, allow connections from
+   '127.0.0.1' to 'all' databases on this server from the 'bugs' user, and use
+   password authentication (md5) for that user.
+
+   If you are using versions of PostgreSQL before version 8, you may also need
+   to edit postgresql.conf , also usually found in the /var/lib/pgsql/data/
+   folder. You will need to make a single line change, changing
+
+   # tcpip_socket = false
+
+   to
+
+   tcpip_socket = true
+
+   Now, you will need to restart PostgreSQL, but you will need to fully stop
+   and start the server rather than just restarting due to the possibility of a
+   change to postgresql.conf. After the server has restarted, you will need to
+   edit localconfig, finding the $db_driver variable and setting it to Pg and
+   changing the password in $db_pass to the one you picked previously, while
+   setting up the account.
      _________________________________________________________________
 
 2.2.3. checksetup.pl
@@ -798,7 +901,6 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s
   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/runtests.sh filter_deny
   ns_register_filter preauth GET /bugzilla/data/* filter_deny
   ns_register_filter preauth GET /bugzilla/template/* filter_deny
 
@@ -903,7 +1005,30 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s
       used to implement cron, such as nncron.
      _________________________________________________________________
 
-2.3.4. Patch Viewer
+2.3.4. Whining
+
+   As of Bugzilla 2.20, users can configure Bugzilla to regularly annoy them at
+   regular intervals, by having Bugzilla execute saved searches at certain
+   times and emailing the results to the user. This is known as "Whining". The
+   process of configuring Whining is described in Section 6.13, but for it to
+   work a Perl script must be executed at regular intervals.
+
+   This can be done by adding the following command as a daily crontab entry,
+   in the same manner as explained above for bug graphs. This example runs it
+   every 15 minutes.
+   */15 * * * * cd <your-bugzilla-directory> ; ./whine.pl
+
+   Note Whines can be executed as often as every 15 minutes, so if you specify
+   longer intervals between executions of whine.pl, some users may not be
+   whined at as often as they would expect. Depending on the person, this can
+      either be a very Good Thing or a very Bad Thing.
+
+   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.
+     _________________________________________________________________
+
+2.3.5. Patch Viewer
 
    Patch Viewer is the engine behind Bugzilla's graphical display of code
    patches. You can integrate this with copies of the cvs, lxr and bonsai tools
@@ -916,7 +1041,7 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s
    in the system path, you can configure their locations in localconfig.
      _________________________________________________________________
 
-2.3.5. LDAP Authentication
+2.3.6. LDAP Authentication
 
    LDAP authentication is a module for Bugzilla's plugin authentication
    architecture.
@@ -992,7 +1117,7 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s
           Ex. "mail"
      _________________________________________________________________
 
-2.3.6. Serving Alternate Formats with the right MIME type
+2.3.7. Serving Alternate Formats with the right MIME type
 
    Some Bugzilla pages have alternate formats, other than just plain HTML. In
    particular, a few Bugzilla pages can output their contents as either XUL (a
@@ -1520,8 +1645,8 @@ Chapter 3. Administering Bugzilla
 
    useqacontact
           This allows you to define an email address for each component, in
-          addition to that of the default owner, who will be sent carbon copies
-          of incoming bugs.
+          addition to that of the default assignee, who will be sent carbon
+          copies of incoming bugs.
 
    usestatuswhiteboard
           This defines whether you wish to have a free-form, overwritable field
@@ -1711,23 +1836,23 @@ Chapter 3. Administering Bugzilla
    programmer. It often makes sense to divide Components in Bugzilla according
    to the natural divisions of responsibility within your Product or company.
 
-   Each component has a owner and (if you turned it on in the parameters), a QA
-   Contact. The owner should be the primary person who fixes bugs in that
-   component. The QA Contact should be the person who will ensure these bugs
-   are completely fixed. The Owner, QA Contact, and Reporter will get email
-   when new bugs are created in this Component and when these bugs change.
-   Default Owner and Default QA Contact fields only dictate the default
-   assignments; these can be changed on bug submission, or at any later point
-   in a bug's life.
+   Each component has a default assignee and (if you turned it on in the
+   parameters), a QA Contact. The default assignee should be the primary person
+   who fixes bugs in that component. The QA Contact should be the person who
+   will ensure these bugs are completely fixed. The Assignee, QA Contact, and
+   Reporter will get email when new bugs are created in this Component and when
+   these bugs change. Default Assignee and Default QA Contact fields only
+   dictate the default assignments; these can be changed on bug submission, or
+   at any later point in a bug's life.
 
    To create a new Component:
 
     1. Select the "Edit components" link from the "Edit product" page
     2. Select the "Add" link in the bottom right.
-    3. Fill out the "Component" field, a short "Description", the "Initial
-       Owner" and "Initial QA Contact" (if enabled.) The Component and
-       Description fields may contain HTML; the "Initial Owner" field must be a
-       login name already existing in the database.
+    3. Fill out the "Component" field, a short "Description", the "Default
+       Assignee" and "Default QA Contact" (if enabled.) The Component and
+       Description fields may contain HTML; the "Default Assignee" field must
+       be a login name already existing in the database.
      _________________________________________________________________
 
 3.5. Versions
@@ -1874,7 +1999,7 @@ Chapter 3. Administering Bugzilla
    in the "Show Bug" screen (editbug.cgi).
 
    Only users with the ability to edit the bug may set flags on bugs. This
-   includes the owner, reporter, and any user with the editbugs permission.
+   includes the assignee, reporter, and any user with the editbugs permission.
      _________________________________________________________________
 
 3.7.5. Administering Flags
@@ -1891,7 +2016,7 @@ Chapter 3. Administering Bugzilla
 3.7.5.1. Creating a Flag
 
    When you click on the "Create a Flag Type for..." link, you will be
-   presented with a form. Here is what the felds in the form mean:
+   presented with a form. Here is what the fields in the form mean:
      _________________________________________________________________
 
 3.7.5.1.1. Name
@@ -1903,7 +2028,7 @@ Chapter 3. Administering Bugzilla
 
 3.7.5.1.2. Description
 
-   This describes the flag in more detail. At present, this doesn't whos up
+   This describes the flag in more detail. At present, this doesn't show up
    anywhere helpful; ideally, it would be nice to have it show up as a tooltip.
    This field can be as long as you like, and can contain any character you
    want.
@@ -2176,7 +2301,7 @@ Chapter 3. Administering Bugzilla
 
    These controls are often described in this order, so a product that requires
    a user to be a member of group "foo" to enter a bug and then requires that
-   the bug stay resticted to group "foo" at all times and that only members of
+   the bug stay restricted to group "foo" at all times and that only members of
    group "foo" can edit the bug even if they otherwise could see the bug would
    have its controls summarized by...
 
@@ -2561,7 +2686,7 @@ skip-networking
       found in Section 2.2.4.1
 
      * In the main Bugzilla directory, you should:
-          + Block: *.pl, *localconfig*, runtests.sh
+          + Block: *.pl, *localconfig*
           + But allow: localconfig.js, localconfig.rdf
      * In data:
           + Block everything
@@ -2618,8 +2743,8 @@ skip-networking
    encoding ambiguities to inject HTML into Bugzilla comments. This could
    include malicious scripts. Due to internationalization concerns, we are
    unable to incorporate by default the code changes suggested by the CERT
-   advisory on this issue. If your installation is for an English speaking
-   audience only, making the change in Example 4-4 will prevent this problem.
+   advisory on this issue. Making the change in Example 4-4 will prevent this
+   problem.
 
    Example 4-4. Forcing Bugzilla to output a charset
 
@@ -2627,7 +2752,7 @@ skip-networking
    $self->charset('');
 
    and change it to:
-$self->charset('ISO-8859-1');
+$self->charset('UTF-8');
      _________________________________________________________________
 
 Chapter 5. Customising Bugzilla
@@ -2722,15 +2847,15 @@ Chapter 5. Customising Bugzilla
    One thing you should take particular care about is the need to properly HTML
    filter data that has been passed into the template. This means that if the
    data can possibly contain special HTML characters such as <, and the data
-   was not intended to be HTML, they need to be converted to entity form, ie
+   was not intended to be HTML, they need to be converted to entity form, i.e.
    &lt;. You use the 'html' filter in the Template Toolkit to do this. If you
    forget, you may open up your installation to cross-site scripting attacks.
 
    Also note that Bugzilla adds a few filters of its own, that are not in
    standard Template Toolkit. In particular, the 'url_quote' filter can convert
    characters that are illegal or have special meaning in URLs, such as &, to
-   the encoded form, ie %26. This actually encodes most characters (but not the
-   common ones such as letters and numbers and so on), including the
+   the encoded form, i.e. %26. This actually encodes most characters (but not
+   the common ones such as letters and numbers and so on), including the
    HTML-special characters, so there's never a need to HTML filter afterwards.
 
    Editing templates is a good way of doing a "poor man's custom fields". For
@@ -3044,7 +3169,7 @@ s %]
    sections should not be changed - these are the "plumbing" which makes the
    rest of the function work. In between those sections, you'll find snippets
    of code like:
-    # Allow the owner to change anything.
+    # Allow the assignee to change anything.
     if ($ownerid eq $whoid) {
         return 1;
     }
@@ -3541,6 +3666,9 @@ Chapter 6. Using Bugzilla
    14. CC list: A list of people who get mail when the bug changes.
    15. Attachments: You can attach files (e.g. testcases or patches) to bugs.
        If there are any attachments, they are listed in this section.
+       Attachments are normally stored in the Bugzilla database, unless they
+       are marked as Big Files, which are stored directly on disk and (unlike
+       attachments kept in the database) may be deleted at some future time.
    16. *Dependencies: If this bug cannot be fixed unless other bugs are fixed
        (depends on), or this bug stops other bugs being fixed (blocks), their
        numbers are recorded here.
@@ -3687,8 +3815,9 @@ Chapter 6. Using Bugzilla
    Change Columns: change the bug attributes which appear in the list.
    Change several bugs at once: If your account is sufficiently empowered, you
    can make the same change to all the bugs in the list - for example, changing
-   their owner.
-   Send mail to bug owners: Sends mail to the owners of all bugs on the list.
+   their assignee.
+   Send mail to bug assignees: Sends mail to the assignees of all bugs on the
+   list.
    Edit Search: If you didn't get exactly the results you were looking for, you
    can return to the Query page through this link and make small revisions to
    the query you just made so you get more accurate results.
@@ -3896,6 +4025,13 @@ Chapter 6. Using Bugzilla
    text/html). To download an attachment as a different Content-Type (e.g.
    application/xhtml+xml), you can override this using a 'content-type'
    parameter on the URL, e.g. &content-type=text/plain.
+
+   If you have a really large attachment, something that does not need to be
+   recorded forever (as most attachments are), you can mark your attachment as
+   a Big File, Assuming the administrator of the installation has enabled this
+   feature. Big Files are stored directly on disk instead of in the database,
+   and can be deleted when it is no longer needed. The maximum size of a Big
+   File is normally larger than the maximum size of a regular attachment.
      _________________________________________________________________
 
 6.10. User Preferences
@@ -4130,6 +4266,138 @@ Chapter 6. Using Bugzilla
    review, it appears as Jack: review [ ? ] (Jill).
      _________________________________________________________________
 
+6.13. Whining
+
+   Whining is a feature in Bugzilla that can regularly annoy users at specified
+   times. Using this feature, users can execute saved searches at specific
+   times (i.e. the 15th of the month at midnight) or at regular intervals (i.e.
+   every 15 minutes on Sundays). The results of the searches are sent to the
+   user, either as a single email or as one email per bug, along with some
+   descriptive text.
+
+   Warning Throughout this section it will be assumed that all users are
+   members of the bz_canusewhines group, membership in which is required in
+   order to use the Whining system. You can easily make all users members of
+   the bz_canusewhines group by setting the User RegExp to ".*" (without the
+   quotes).
+
+   Also worth noting is the bz_canusewhineatothers group. Members of this group
+   can create whines for any user or group in Bugzilla using a extended form of
+   the whining interface. Features only available to members of the
+      bz_canusewhineatothers group will be noted in the appropriate places.
+
+   Note For whining to work, a special Perl script must be executed at regular
+      intervals. More information on this is available in Section 2.3.4.
+
+   Note This section does not cover the whineatnews.pl script. See Section
+      2.3.3 for more information on The Whining Cron.
+     _________________________________________________________________
+
+6.13.1. The Event
+
+   The whining system defines an "Event" as one or more queries being executed
+   at regular intervals, with the results of said queries (if there are any)
+   being emailed to the user. Events are created by clicking on the "Add new
+   event" button.
+
+   Once a new event is created, the first thing to set is the "Email subject
+   line". The contents of this field will be used in the subject line of every
+   email generated by this event. In addition to setting a subject, space is
+   provided to enter some descriptive text that will be included at the top of
+   each message (to help you in understanding why you received the email in the
+   first place).
+
+   The next step is to specify when the Event is to be run (the Schedule) and
+   what searches are to be performed (the Queries).
+     _________________________________________________________________
+
+6.13.2. Whining Schedule
+
+   Each whining event is associated with zero or more schedules. A schedule is
+   used to specify when the query (specified below) is to be run. A new event
+   starts out with no schedules (which means it will never run, as it is not
+   scheduled to run). To add a schedule, press the "Add a new schedule" button.
+
+   Each schedule includes an interval, which you use to tell Bugzilla when the
+   event should be run. An event can be run on certain days of the week,
+   certain days of the month, during weekdays (defined as Monday through
+   Friday), or every day.
+
+   Warning Be careful if you set your event to run on the 29th, 30th, or 31st
+   of the month, as your event may not run exactly when expected. If you want
+   your event to run on the last day of the month, select "Last day of the
+      month" as the interval.
+
+   Once you have specified the day(s) on which the event is to be run, you
+   should now specify the time at which the event is to be run. You can have
+   the event run at a certain hour on the specified day(s), or every hour,
+   half-hour, or quarter-hour on the specified day(s).
+
+   If a single schedule does not execute an event as many times as you would
+   want, you can create another schedule for the same event. For example, if
+   you want to run an event on days whose numbers are divisible by seven, you
+   would need to add four schedules to the event, setting the schedules to run
+   on the 7th, 14th, 21st, and 28th (one day per schedule) at whatever time (or
+   times) you choose.
+
+   Note If you are a member of the bz_canusewhineatothers group, then you will
+   be presented with another option: "Mail to". Using this you can control who
+   will receive the emails generated by this event. You can choose to send the
+   emails to a single user (identified by email address) or a single group
+   (identified by group name). To send to multiple users or groups, create a
+      new schedule for each additional user/group.
+     _________________________________________________________________
+
+6.13.3. Whining Queries
+
+   Each whining event is associated with zero or more queries. A query is a
+   saved search that is executed on the schedule specified (see above). You
+   start out with zero queries attached to the event (which means that the
+   event will not run, as there will never be any results to return). To add a
+   query, press the "Add a new query" button.
+
+   The first field to examine in your new query is the Sort field. Queries are
+   executed, and results returned, in the order specified by the Sort field.
+   Queries with lower Sort values will run before queries with higher Sort
+   values.
+
+   The next field to examine is the Search field. This is where you choose the
+   actual search that is to be run. Instead of defining search parameters here,
+   you are asked to choose from the list of saved searches (the same list that
+   appears at the bottom of every Bugzilla page). You are only allowed to
+   choose from searches that you have saved yourself (the default saved search,
+   "My Bugs", is not a valid choice). If you do not have any saved searches,
+   you can take this opportunity to create one (see Section 6.6).
+
+   Note When running queries, the whining system acts as if you are the user
+   executing the query. This means that the whining system will ignore bugs
+      that match your query, but that you can not access.
+
+   Once you have chosen the saved search to be executed, give the query a
+   descriptive title. This title will appear in the email, above the results of
+   the query. If you choose "One message per bug", the query title will appear
+   at the top of each email that contains a bug matching your query.
+
+   Finally, decide if the results of the query should be sent in a single
+   email, or if each bug should appear in its own email.
+
+   Warning Think carefully before checking the "One message per bug" box. If
+   you create a query that matches thousands of bugs, you will receive
+      thousands of emails!
+     _________________________________________________________________
+
+6.13.4. Saving Your Changes
+
+   Once you have defined at least one schedule, and created at least one query,
+   go ahead and "Update/Commit". This will save your Event and make it
+   available for immediate execution.
+
+   Note If you ever feel like deleting your event, you may do so using the
+   "Remove Event" button in the upper-right corner of each Event. You can also
+   modify an existing event, so long as you "Update/Commit" after completing
+      your modifications.
+     _________________________________________________________________
+
 Appendix A. The Bugzilla FAQ
 
    This FAQ includes questions not covered elsewhere in the Guide.
@@ -4217,6 +4485,8 @@ Appendix A. The Bugzilla FAQ
         A.3.2. Can users be on the system while a backup is in progress? 
         A.3.3. How can I update the code and the database using CVS? 
         A.3.4. How do I make it so that bugs can have an UNCONFIRMED status? 
+        A.3.5. How do I move a Bugzilla installation from one machine to
+                another? 
 
    4. Bugzilla Security
 
@@ -4514,7 +4784,7 @@ perl runtests.pl 2 --verbose
 
    To use the RDF format of the buglist it is necessary to append a &ctype=rdf
    to the URL. RDF is meant to be machine readable and thus it is assumed that
-   the URL would be generated programatically so there is no user visible link
+   the URL would be generated programmatically so there is no user visible link
    to this format.
 
    Currently the only script included with Bugzilla that can import data is
@@ -4650,6 +4920,45 @@ perl runtests.pl 2 --verbose
    'usevotes' parameter for future versions of Bugzilla. Follow the discussion
    and progress at bug 162060.
 
+   A.3.5. How do I move a Bugzilla installation from one machine to another?
+
+   Use mysqldump to make a backup of the bugs database. For a typical Bugzilla
+   setup, such a command might look like this:
+/usr/bin/mysqldump -u(username) -p(password) --database bugs > bugzilla-backup.
+txt
+
+   See the mysqldump documentation for more information on using the tool,
+   including how to restore your copy onto the destination machine.
+
+   Warning Depending on the size of your database, and the power of your
+   machine, the mysqldump command could be running long enough that the
+   password would be visible to someone using the ps command. If you are on a
+   multi-user machine, and this is a concern to you, create an entry in the
+   file ~/.my.cnf that looks like this:
+[mysqldump]
+user=bugs
+password=mypassword
+
+   and then leave the 'user' and 'password' params out of the command line.
+
+   On your new machine, follow the instructions found in Chapter 2 as far as
+   setting up the physical environment of the new machine with perl, webserver,
+   modules, etc. Having done that, you can either: copy your entire Bugzilla
+   directory from the old machine to a new one (if you want to keep your
+   existing code and modifications), or download a newer version (if you are
+   planning to upgrade at the same time). Even if you are upgrading to clean
+   code, you will still want to bring over the localconfig file, and the data
+   directory from the old machine, as they contain configuration information
+   that you probably won't want to re-create.
+
+   Note If the location or port number of your SQL server changed as part of
+   the move, you'll need to update the appropriate variables in localconfig
+      before taking the next step.
+
+   Once you have your code in place, and your database has been restored from
+   the backup you made in step 1, run checksetup.pl. This will upgrade your
+   database (if necessary), rebuild your templates, etc.
+
 4. Bugzilla Security
 
    A.4.1. How do I completely disable MySQL security if it's giving me
@@ -4804,7 +5113,7 @@ perl runtests.pl 2 --verbose
    work one way -- you can create a read-only copy of the database at one site,
    and have it regularly updated at intervals from the main database.
 
-   MySQL has some synchronization features builtin to the latest releases. It
+   MySQL has some synchronization features built-in to the latest releases. It
    would be great if someone looked into the possibilities there and provided a
    report to the newsgroup on how to effectively synchronize two Bugzilla
    installations.
@@ -4983,9 +5292,9 @@ perl runtests.pl 2 --verbose
 
    Try this link to view current bugs or requests for enhancement for Bugzilla.
 
-   You can view bugs marked for 2.20 release here. This list includes bugs for
-   the 2.20 release that have already been fixed and checked into CVS. Please
-   consult the Bugzilla Project Page for details on how to check current
+   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.
+   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!
 
    A.9.3. How can I change the default priority to a null value? For instance,
@@ -5039,6 +5348,15 @@ B.1. General Advice
    be self-explanatory enough to enable you to diagnose and fix the problem. If
    not, see below for some commonly-encountered errors. If that doesn't help,
    post the errors to the newsgroup.
+
+   Bugzilla can also log all user-based errors (and many code-based errors)
+   that occur, without polluting the web server error log. To enable Bugzilla
+   error logging, create a file that Bugzilla can write to, named errorlog, in
+   the Bugzilla data directory. Errors will be logged as they occur, and will
+   include the type of the error, the IP address and username (if available) of
+   the user who triggered the error, and the values of all environment
+   variables; if a form was being submitted, the data in the form will also be
+   included. To disable error logging, delete or rename the errorlog file.
      _________________________________________________________________
 
 B.2. The Apache webserver is not serving Bugzilla pages
diff --git a/docs/xml/Bugzilla-Guide.xml b/docs/xml/Bugzilla-Guide.xml
index 408a35c3282e12d69d58f8cc5bc3096e768d7818..bc5aba2f022d5291c9669fb881cdc104761e9239 100644
--- a/docs/xml/Bugzilla-Guide.xml
+++ b/docs/xml/Bugzilla-Guide.xml
@@ -31,31 +31,34 @@
      For a devel release, simple bump bz-ver and bz-date
 -->
 
-<!ENTITY bz-ver "2.19.2">
-<!ENTITY bz-nextver "2.20">
-<!ENTITY bz-date "2005-01-14">
+<!ENTITY bz-ver "2.20">
+<!ENTITY bz-nextver "2.20.1">
+<!ENTITY bz-date "2005-09-30">
 <!ENTITY current-year "2005">
 
 <!ENTITY landfillbase "http://landfill.bugzilla.org/bugzilla-tip/">
 <!ENTITY bz "http://www.bugzilla.org/">
 <!ENTITY bzg-bugs "<ulink url='http://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla&amp;component=Documentation'>Bugzilla Documentation</ulink>">
 <!ENTITY mysql "http://www.mysql.com/">
-<!ENTITY newest-perl-ver "5.8.3">
 
 <!-- For minimum versions -->
 <!ENTITY min-mysql-ver "3.23.41">
-<!ENTITY min-perl-ver "5.6.0">
+<!ENTITY min-pg-ver "7.3.x">
+<!ENTITY min-perl-ver "5.6.1">
 <!ENTITY min-perl-ver-win "5.8.1">
 <!ENTITY min-template-ver "2.08">
 <!ENTITY min-file-temp-ver "any">
 <!ENTITY min-appconfig-ver "1.52">
 <!ENTITY min-text-wrap-ver "2001.0131">
-<!ENTITY min-file-spec-ver "0.82">
+<!ENTITY min-file-spec-ver "0.84">
 <!ENTITY min-data-dumper-ver "any">
-<!ENTITY min-dbd-mysql-ver "2.1010">
-<!ENTITY min-dbi-ver "1.36">
+<!ENTITY min-dbd-mysql-ver "2.9003">
+<!ENTITY min-dbd-pg-ver "1.31">
+<!ENTITY min-dbi-ver "1.38">
 <!ENTITY min-date-format-ver "2.21">
 <!ENTITY min-cgi-ver "2.93">
+<!ENTITY min-mail-mailer-ver "1.65">
+<!ENTITY min-storable-ver "any">
 <!-- Optional modules -->
 <!ENTITY min-gd-ver "1.20">
 <!ENTITY min-gd-graph-ver "any">
diff --git a/docs/xml/CVS/Entries b/docs/xml/CVS/Entries
index 00b5b7d344dfa515b67637633dec3b087a3cae2b..fe270d907de8053ed5169617f86a8411b4a7df04 100644
--- a/docs/xml/CVS/Entries
+++ b/docs/xml/CVS/Entries
@@ -1,21 +1,21 @@
-/Bugzilla-Guide.xml/1.46/Sat Jan 15 06:59:43 2005//TBUGZILLA-2_19_3
-/about.xml/1.19/Fri Jan 14 12:08:47 2005//TBUGZILLA-2_19_3
-/administration.xml/1.48/Tue May  3 19:41:23 2005//TBUGZILLA-2_19_3
-/conventions.xml/1.9/Thu Jan 15 23:54:39 2004//TBUGZILLA-2_19_3
-/customization.xml/1.18/Tue Dec 28 21:51:27 2004//TBUGZILLA-2_19_3
-/dbschema.mysql/1.2/Wed May  8 23:19:09 2002//TBUGZILLA-2_19_3
-/faq.xml/1.33/Sat Mar  5 18:28:33 2005//TBUGZILLA-2_19_3
-/filetemp.patch/1.1/Wed Apr  2 00:40:56 2003//TBUGZILLA-2_19_3
-/gfdl.xml/1.9/Sat Jan 24 18:31:00 2004//TBUGZILLA-2_19_3
-/glossary.xml/1.16/Thu Dec  2 04:21:27 2004//TBUGZILLA-2_19_3
-/index.xml/1.4/Wed Apr 23 02:04:25 2003//TBUGZILLA-2_19_3
-/installation.xml/1.92/Wed Mar  9 18:59:24 2005//TBUGZILLA-2_19_3
-/integration.xml/1.13/Sat Sep  4 09:27:15 2004//TBUGZILLA-2_19_3
-/introduction.xml/1.5/Thu Jan 15 23:54:39 2004//TBUGZILLA-2_19_3
-/modules.xml/1.3/Mon Jan 10 07:21:26 2005//TBUGZILLA-2_19_3
-/patches.xml/1.21/Thu Nov 25 09:26:22 2004//TBUGZILLA-2_19_3
-/requiredsoftware.xml/1.6/Mon May 12 19:31:48 2003//TBUGZILLA-2_19_3
-/security.xml/1.4/Fri Jan 21 07:08:19 2005//TBUGZILLA-2_19_3
-/troubleshooting.xml/1.5/Sat Feb  5 04:31:46 2005//TBUGZILLA-2_19_3
-/using.xml/1.29/Tue Mar 15 18:34:58 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/docs/xml/CVS/Tag b/docs/xml/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/docs/xml/CVS/Tag
+++ b/docs/xml/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/docs/xml/administration.xml b/docs/xml/administration.xml
index e8d70a102827fbb4cf615939f7f92534e4442ecf..16223ce1eed2704ca91e4dd94e02dd4cdf15408d 100644
--- a/docs/xml/administration.xml
+++ b/docs/xml/administration.xml
@@ -193,7 +193,7 @@
         <listitem>
           <para>
             This allows you to define an email address for each component, 
-            in addition to that of the default owner, who will be sent
+            in addition to that of the default assignee, who will be sent
             carbon copies of incoming bugs.
           </para>
         </listitem>
@@ -580,12 +580,12 @@
     company.</para>
 
     <para>
-    Each component has a owner and (if you turned it on in the parameters),
-    a QA Contact. The owner should be the primary person who fixes bugs in
+    Each component has a default assignee and (if you turned it on in the parameters),
+    a QA Contact. The default assignee should be the primary person who fixes bugs in
     that component. The QA Contact should be the person who will ensure
-    these bugs are completely fixed. The Owner, QA Contact, and Reporter
+    these bugs are completely fixed. The Assignee, QA Contact, and Reporter
     will get email when new bugs are created in this Component and when
-    these bugs change. Default Owner and Default QA Contact fields only
+    these bugs change. Default Assignee and Default QA Contact fields only
     dictate the 
     <emphasis>default assignments</emphasis>; 
     these can be changed on bug submission, or at any later point in
@@ -605,9 +605,9 @@
 
       <listitem>
         <para>Fill out the "Component" field, a short "Description", 
-        the "Initial Owner" and "Initial QA Contact" (if enabled.) 
+        the "Default Assignee" and "Default QA Contact" (if enabled.) 
         The Component and Description fields may contain HTML; 
-        the "Initial Owner" field must be a login name
+        the "Default Assignee" field must be a login name
         already existing in the database. 
         </para>
       </listitem>
@@ -874,7 +874,7 @@
        </para>
        <para>
          Only users with the ability to edit the bug may 
-         set flags on bugs. This includes the owner, reporter, and 
+         set flags on bugs. This includes the assignee, reporter, and 
          any user with the <computeroutput>editbugs</computeroutput> 
          permission.
        </para>
@@ -902,7 +902,7 @@
        
         <para>
           When you click on the <quote>Create a Flag Type for...</quote>
-          link, you will be presented with a form. Here is what the felds in 
+          link, you will be presented with a form. Here is what the fields in 
           the form mean:
         </para>
 
@@ -919,7 +919,7 @@
           <title>Description</title>
           <para>
             This describes the flag in more detail. At present, this doesn't
-            whos up anywhere helpful; ideally, it would be nice to have
+            show up anywhere helpful; ideally, it would be nice to have
             it show up as a tooltip. This field 
             can be as long as you like, and can contain any character you want.
           </para>
@@ -1354,7 +1354,7 @@
       </orderedlist>
       <para>These controls are often described in this order, so a 
       product that requires a user to be a member of group "foo" 
-      to enter a bug and then requires that the bug stay resticted
+      to enter a bug and then requires that the bug stay restricted
       to group "foo" at all times and that only members of group "foo"
       can edit the bug even if they otherwise could see the bug would 
       have its controls summarized by...</para>
diff --git a/docs/xml/customization.xml b/docs/xml/customization.xml
index 14ac3f86a60943b36defe6280c0996a8a87a6932..49b73319e24e498cc8e7beb6dcf8f603a757c0ab 100644
--- a/docs/xml/customization.xml
+++ b/docs/xml/customization.xml
@@ -153,7 +153,7 @@
         to properly HTML filter data that has been passed into the template.
         This means that if the data can possibly contain special HTML characters
         such as &lt;, and the data was not intended to be HTML, they need to be
-        converted to entity form, ie &amp;lt;.  You use the 'html' filter in the
+        converted to entity form, i.e. &amp;lt;.  You use the 'html' filter in the
         Template Toolkit to do this.  If you forget, you may open up
         your installation to cross-site scripting attacks.
       </para>
@@ -162,7 +162,7 @@
         Also note that Bugzilla adds a few filters of its own, that are not
         in standard Template Toolkit.  In particular, the 'url_quote' filter
         can convert characters that are illegal or have special meaning in URLs,
-        such as &amp;, to the encoded form, ie %26.  This actually encodes most
+        such as &amp;, to the encoded form, i.e. %26.  This actually encodes most
         characters (but not the common ones such as letters and numbers and so
         on), including the HTML-special characters, so there's never a need to
         HTML filter afterwards.
@@ -665,7 +665,7 @@
       Certain marked sections should not be changed - these are
       the <quote>plumbing</quote> which makes the rest of the function work.
       In between those sections, you'll find snippets of code like:
-      <programlisting>    # Allow the owner to change anything.
+      <programlisting>    # Allow the assignee to change anything.
     if ($ownerid eq $whoid) {
         return 1;
     }</programlisting>
diff --git a/docs/xml/faq.xml b/docs/xml/faq.xml
index ae3985eeb2d0b5659b4098eea08031728ed2f960..1aded43e0c40b6a7367df6454a4fe8f02f053297 100644
--- a/docs/xml/faq.xml
+++ b/docs/xml/faq.xml
@@ -447,7 +447,7 @@ perl runtests.pl 2 --verbose
             To use the RDF format of the buglist it is necessary to append a
             <computeroutput>&amp;ctype=rdf</computeroutput> to the URL. RDF
             is meant to be machine readable and thus it is assumed that the
-            URL would be generated programatically so there is no user visible
+            URL would be generated programmatically so there is no user visible
             link to this format.
           </para>
           <para>
@@ -743,6 +743,77 @@ perl runtests.pl 2 --verbose
           </para>
         </answer>
       </qandaentry>
+
+      <qandaentry>
+        <question id="faq-admin-moving">
+          <para>
+            How do I move a Bugzilla installation from one machine to another?
+          </para>
+        </question>
+
+        <answer>
+          <para>
+            Use mysqldump to make a backup of the bugs database. For a
+            typical Bugzilla setup, such a command might look like this:
+            <programlisting>
+/usr/bin/mysqldump -u(username) -p(password) --database bugs > bugzilla-backup.txt
+            </programlisting>
+            See the <ulink url="http://dev.mysql.com/doc/mysql/en/mysqldump.html">
+            mysqldump documentation</ulink> for more information on using 
+            the tool, including how to restore your copy onto the destination
+            machine.
+          </para>
+
+          <warning>
+            <para>
+              Depending on the size of your database, and the power of your
+              machine, the mysqldump command could be running long enough
+              that the password would be visible to someone using the
+              <command>ps</command> command. If you are on a multi-user
+              machine, and this is a concern to you, create an entry in
+              the file <filename>~/.my.cnf</filename> that looks like this:
+              <programlisting>
+[mysqldump]
+user=bugs
+password=mypassword
+              </programlisting>
+              and then leave the 'user' and 'password' params out of the
+              command line.
+            </para>
+          </warning>
+              
+          <para>
+            On your new machine, follow the instructions found in <xref 
+            linkend="installing-bugzilla"/> as far as setting up the physical
+            environment of the new machine with perl, webserver, modules, etc. 
+            Having done that, you can either: copy your entire Bugzilla
+            directory from the old machine to a new one (if you want to keep
+            your existing code and modifications), or download a newer version
+            (if you are planning to upgrade at the same time). Even if you are
+            upgrading to clean code, you will still want to bring over the 
+            <filename>localconfig</filename> file, and the 
+            <filename class="directory">data</filename> directory from the
+            old machine, as they contain configuration information that you 
+            probably won't want to re-create.
+          </para>
+
+          <note>
+            <para>
+              If the location or port number of your SQL server changed
+              as part of the move, you'll need to update the appropriate
+              variables in localconfig before taking the next step.
+            </para>
+          </note>
+
+          <para>
+            Once you have your code in place, and your database has
+            been restored from the backup you made in step 1, run
+            <command>checksetup.pl</command>. This will upgrade your
+            database (if necessary), rebuild your templates, etc.
+          </para>
+        </answer>
+      </qandaentry>
+
     </qandadiv>
 
     <qandadiv id="faq-security">
@@ -1069,7 +1140,7 @@ perl runtests.pl 2 --verbose
             regularly updated at intervals from the main database.
           </para>
           <para>
-            MySQL has some synchronization features builtin to the
+            MySQL has some synchronization features built-in to the
             latest releases. It would be great if someone looked into
             the possibilities there and provided a report to the
             newsgroup on how to effectively synchronize two Bugzilla
diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml
index c9a014b8c7c9cdd3ff7d72f1bac7e3bcfe9bf10f..ec67e5ca9192b1134eacdec453486628805a8592 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.92 2005/03/09 18:59:24 travis%sedsystems.ca Exp $ -->
+<!-- $Id: installation.xml,v 1.98.2.5 2005/08/01 08:41:43 mozilla%colinogilvie.co.uk Exp $ -->
 <chapter id="installing-bugzilla">
   <title>Installing Bugzilla</title>
 
@@ -59,8 +59,7 @@
         </para>
       </step>
       <step>
-        <para><link linkend="install-mysql">Install MySQL</link>
-        (&min-mysql-ver; or above)
+        <para><link linkend="install-database">Install a Database Engine</link>
         </para>
       </step>
       <step>
@@ -96,37 +95,61 @@
       If you don't have it and your OS doesn't provide official packages, 
       visit <ulink url="http://www.perl.com"/>.
       Although Bugzilla runs with Perl &min-perl-ver;,
-      it's a good idea to be using the latest stable version. 
-      As of this writing, that is Perl &newest-perl-ver;.</para>
+      it's a good idea to be using the latest stable version.
+      </para>
     </section>
 
-    <section id="install-mysql">
-      <title>MySQL</title>
+    <section id="install-database">
+      <title>Database Engine</title>
+      
+      <para>From Bugzilla 2.20, support is included for using both the MySQL and
+      PostgreSQL database servers. You only require one of these systems to make
+      use of Bugzilla.</para>
 
-      <para>Installed Version Test: <filename>mysql -V</filename></para>
+      <section id="install-mysql">
+          <title>MySQL</title>
+          <para>Installed Version Test: <filename>mysql -V</filename></para>
       
-      <para>
-      If you don't have it and your OS doesn't provide official packages, 
-      visit <ulink url="http://www.mysql.com"/>. You need MySQL version
-      &min-mysql-ver; or higher.
-      </para>
+          <para>
+          If you don't have it and your OS doesn't provide official packages, 
+          visit <ulink url="http://www.mysql.com"/>. You need MySQL version
+          &min-mysql-ver; or higher.
+          </para>
       
-      <note>
-        <para> Many of the binary
-        versions of MySQL store their data files in 
-        <filename class="directory">/var</filename>.
-        On some Unix systems, this is part of a smaller root partition,
-        and may not have room for your bug database. To change the data
-         directory, you have to build MySQL from source yourself, and
-         set it as an option to <filename>configure</filename>.</para>
-      </note> 
+          <note>
+            <para> Many of the binary
+            versions of MySQL store their data files in 
+            <filename class="directory">/var</filename>.
+            On some Unix systems, this is part of a smaller root partition,
+            and may not have room for your bug database. To change the data
+            directory, you have to build MySQL from source yourself, and
+            set it as an option to <filename>configure</filename>.</para>
+          </note> 
            
-      <para>If you install from something other than a packaging/installation
-      system, such as .rpm (Redhat Package), .deb (Debian Package), .exe
-      (Windows Executable), or .msi (Microsoft Installer), make sure the MySQL
-      server is started when the machine boots.
-      </para>
-
+          <para>If you install from something other than a packaging/installation
+          system, such as .rpm (Redhat Package), .deb (Debian Package), .exe
+          (Windows Executable), or .msi (Microsoft Installer), make sure the MySQL
+          server is started when the machine boots.
+          </para>
+      </section>
+      
+      <section id="install-pg">
+          <title>PostgreSQL</title>
+          <para>Installed Version Test: <filename>psql -V</filename></para>
+      
+          <para>
+          If you don't have it and your OS doesn't provide official packages, 
+          visit <ulink url="http://www.postgresql.org/"/>. You need PostgreSQL
+          version &min-pg-ver; or higher.
+          </para>
+           
+          <para>If you install from something other than a packaging/installation
+          system, such as .rpm (Redhat Package), .deb (Debian Package), .exe
+          (Windows Executable), or .msi (Microsoft Installer), make sure the
+          PostgreSQL server is started when the machine boots.
+          </para>
+      </section>
+      
     </section>
     
     <section id="install-webserver">
@@ -195,15 +218,11 @@
       
       <para>
       At this point, you need to <filename>su</filename> to root. You should
-      remain as root until the end of the install. Then run:
+      remain as root until the end of the install. To check you have the
+      required modules, run:
       </para>
       
-      <screen><prompt>bash#</prompt> ./checksetup.pl</screen>
-
-      <!-- We really need a "module-check" switch for checksetup,
-      which we can use here to make it really clear when they've got
-      all the modules. -->
- 
+      <screen><prompt>bash#</prompt> ./checksetup.pl --check-modules</screen>
  
       <para>
         <filename>checksetup.pl</filename> will print out a list of the
@@ -252,6 +271,14 @@
         for further assistance or hire someone to help you out.</para>
       </tip>
 
+      <note>
+        <para>If you are using a package-based system, and attempting to install the
+        Perl modules from CPAN, you may need to install the "development" packages for
+        MySQL and GD before attempting to install the related Perl modules. The names of
+        these packages will vary depending on the specific distribution you are using,
+        but are often called <filename>&lt;packagename&gt;-devel</filename>.</para>
+      </note>
+ 
       <para>
         Here is a complete list of modules and their minimum versions.
         Some modules have special installation notes, which follow.
@@ -293,7 +320,13 @@
         <listitem>
           <para>
             <link linkend="install-modules-dbd-mysql">DBD::mysql</link>
-            (&min-dbd-mysql-ver;)
+            (&min-dbd-mysql-ver;) if using MySQL
+          </para>
+        </listitem>
+        
+        <listitem>
+          <para>
+            DBD::Pg (&min-dbd-pg-ver;) if using PostgreSQL
           </para>
         </listitem>
 
@@ -321,6 +354,18 @@
             Text::Wrap (&min-text-wrap-ver;)
           </para>
         </listitem>
+        
+        <listitem>
+          <para>
+            Mail::Mailer (&min-mail-mailer-ver;)
+          </para>
+        </listitem>
+        
+        <listitem>
+          <para>
+            Storable (&min-storable-ver;)
+          </para>
+        </listitem>
       </orderedlist>
 
       Optional Perl modules:
@@ -531,10 +576,15 @@
       <title>localconfig</title>
       
       <para>
-        Once you run <filename>checksetup.pl</filename> with all the correct 
-        modules installed, it displays a message about, and write out a 
-        file called, <filename>localconfig</filename>. This file contains
-        the default settings for a number of Bugzilla parameters.
+        You should now run <filename>checksetup.pl</filename> again, this time
+        without the <literal>--check-modules</literal> switch.
+      </para>
+      <screen><prompt>bash#</prompt> ./checksetup.pl</screen>
+      <para>
+        This time, <filename>checksetup.pl</filename> should tell you that all
+        the correct modules are installed and will display a message about, and
+        write out a  file called, <filename>localconfig</filename>. This file
+        contains the default settings for a number of Bugzilla parameters.
       </para>
       
       <para>
@@ -561,159 +611,254 @@
       </para>
     </section>
     
-    <section id="mysql">
-      <title>MySQL</title>
+    <section id="database-engine">
+      <title>Database Server</title>
+      <para>This section deals with configuring your database server for use
+      with Bugzilla. Currently <xref linkend="mysql"/> and
+      <xref linkend="postgresql"/> are available.</para>
+      
+      <section id="mysql">
+        <title>MySQL</title>
 
-      <caution>
-        <para>
-          MySQL's default configuration is very insecure.
-          <xref linkend="security-mysql"/> has some good information for
-          improving your installation's security.
-        </para>
-      </caution>
-     
-      <section id="install-setupdatabase">
-        <title>Allow large attachments</title>
+        <caution>
+          <para>
+            MySQL's default configuration is very insecure.
+            <xref linkend="security-mysql"/> has some good information for
+            improving your installation's security.
+          </para>
+        </caution>
         
-        <para>
-          By default, MySQL will only accept packets up to 64Kb in size.
-          If you want to have attachments larger than this, you will need
-          to modify your <filename>/etc/my.cnf</filename> as below.
-        </para>
+        <section id="install-setupdatabase">
+          <title>Allow large attachments</title>
+        
+          <para>
+            By default, MySQL will only accept packets up to 64Kb in size.
+            If you want to have attachments larger than this, you will need
+            to modify your <filename>/etc/my.cnf</filename> as below.
+          </para>
 
-        <para>
-          If you are using MySQL 4.0 or newer, enter:
-        </para>
-        <screen>  [mysqld]
+          <para>
+            If you are using MySQL 4.0 or newer, enter:
+          </para>
+          <screen>  [mysqld]
   # Allow packets up to 1M
   max_allowed_packet=1M</screen>
 
-        <para>
-          If you are using an older version of MySQL, enter:
-        </para>
-        <screen>  [mysqld]
+          <para>
+            If you are using an older version of MySQL, enter:
+          </para>
+          <screen>  [mysqld]
   # Allow packets up to 1M
   set-variable = max_allowed_packet=1M</screen>
 
-        <para>
-          There is also a parameter in Bugzilla called 'maxattachmentsize'
-          (default = 1000 Kb) that controls the maximum allowable attachment
-          size. Attachments larger than <emphasis>either</emphasis> the 
-          'max_allowed_packet' or 'maxattachmentsize' value will not be
-          accepted by Bugzilla.
-        </para>
-      </section>
-
-
+          <para>
+            There is also a parameter in Bugzilla called 'maxattachmentsize'
+            (default = 1000 Kb) that controls the maximum allowable attachment
+            size. Attachments larger than <emphasis>either</emphasis> the 
+            'max_allowed_packet' or 'maxattachmentsize' value will not be
+            accepted by Bugzilla.
+          </para>
 
-      <section>
-        <title>Allow small words in full-text indexes</title>
+          <note>
+            <para>
+              This does not affect Big Files, attachments that are stored directly
+              on disk instead of in the database.  Their maximum size is
+              controlled using the 'maxlocalattachment' parameter.
+            </para>
+          </note>
+        </section>
+        
+        <section>
+          <title>Allow small words in full-text indexes</title>
 
-        <para>By default, words must be at least four characters in length
-        in order to be indexed by MySQL's full-text indexes. This causes
-        a lot of Bugzilla specific words to be missed, including "cc",
-        "ftp" and "uri".</para>
+          <para>By default, words must be at least four characters in length
+          in order to be indexed by MySQL's full-text indexes. This causes
+          a lot of Bugzilla specific words to be missed, including "cc",
+          "ftp" and "uri".</para>
 
-        <para>MySQL can be configured to index those words by setting the
-        ft_min_word_len param to the minimum size of the words to index.
-        This can be done by modifying the <filename>/etc/my.cnf</filename>
-        according to the example below:</para>
+          <para>MySQL can be configured to index those words by setting the
+          ft_min_word_len param to the minimum size of the words to index.
+          This can be done by modifying the <filename>/etc/my.cnf</filename>
+          according to the example below:</para>
 
-        <screen>  [mysqld]
+          <screen>  [mysqld]
   # Allow small words in full-text indexes
   ft_min_word_len=2</screen>
 
-        <para>Rebuilding the indexes can be done based on documentation found at
-        <ulink url="http://www.mysql.com/doc/en/Fulltext_Fine-tuning.html"/>.
-        </para>
+          <para>Rebuilding the indexes can be done based on documentation found at
+          <ulink url="http://www.mysql.com/doc/en/Fulltext_Fine-tuning.html"/>.
+          </para>
+
+          <note>
+            <para>
+              The ft_min_word_len parameter is only suported in MySQL v4 or higher.
+            </para>
+          </note>
+        </section>
+        
+        <section>
+          <title>Permit attachments table to grow beyond 4GB</title>
 
-        <note>
           <para>
-            The ft_min_word_len parameter is only suported in MySQL v4 or higher.
+            By default, MySQL will limit the size of a table to 4GB.
+            This limit is present even if the underlying filesystem
+            has no such limit.  To set a higher limit, follow these
+            instructions.
           </para>
-        </note>
-      </section>
 
-      <section>
-        <title>Permit attachments table to grow beyond 4GB</title>
+          <para>
+            Run the <filename>MySQL</filename> command-line client and
+            enter:
+          </para>
 
-        <para>
-          By default, MySQL will limit the size of a table to 4GB.
-          This limit is present even if the underlying filesystem
-          has no such limit.  To set a higher limit, follow these
-          instructions.
-        </para>
+          <screen>  <prompt>mysql&gt;</prompt> ALTER TABLE attachments 
+            AVG_ROW_LENGTH=1000000, MAX_ROWS=20000;
+          </screen>
 
-        <para>
-          Run the <filename>MySQL</filename> command-line client and
-          enter:
-        </para>
+          <para>
+            The above command will change the limit to 20GB. Mysql will have 
+            to make a temporary copy of your entire table to do this. Ideally, 
+            you should do this when your attachments table is still small.
+          </para>
 
-        <screen>  <prompt>mysql&gt;</prompt> ALTER TABLE attachments 
-          AVG_ROW_LENGTH=1000000, MAX_ROWS=20000;
-        </screen>
+          <note>
+            <para>
+              This does not affect Big Files, attachments that are stored directly
+              on disk instead of in the database.
+            </para>
+          </note>
+        </section>
+        
+        <section id="install-setupdatabase-adduser">
+          <title>Add a user to MySQL</title>
 
-        <para>
-          The above command will change the limit to 20GB. Mysql will have 
-          to make a temporary copy of your entire table to do this. Ideally, 
-          you should do this when your attachments table is still small.
-        </para>
+          <para>
+            You need to add a new MySQL user for Bugzilla to use.
+            (It's not safe to have Bugzilla use the MySQL root account.)
+            The following instructions assume the defaults in
+            <filename>localconfig</filename>; if you changed those,
+            you need to modify the SQL command appropriately. You will
+            need the <replaceable>$db_pass</replaceable> password you
+            set in <filename>localconfig</filename> in 
+            <xref linkend="localconfig"/>.
+          </para>
+
+          <para>
+            We use an SQL <command>GRANT</command> command to create
+            a <quote>bugs</quote> user. This also restricts the 
+            <quote>bugs</quote>user to operations within a database
+            called <quote>bugs</quote>, and only allows the account
+            to connect from <quote>localhost</quote>. Modify it to
+            reflect your setup if you will be connecting from another
+            machine or as a different user.
+          </para>
+        
+          <para>
+            Run the <filename>mysql</filename> command-line client.
+          </para>
+
+          <para>
+            If you are using MySQL 4.0 or newer, enter:
+          </para>
+
+          <screen>  <prompt>mysql&gt;</prompt> GRANT SELECT, INSERT,
+           UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
+           CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
+           TO bugs@localhost IDENTIFIED BY '<replaceable>$db_pass</replaceable>';
+           <prompt>mysql&gt;</prompt> FLUSH PRIVILEGES;</screen>
+
+          <para>
+            If you are using an older version of MySQL,the
+            <computeroutput>LOCK TABLES</computeroutput> and 
+            <computeroutput>CREATE TEMPORARY TABLES</computeroutput>
+            permissions will be unavailable and should be removed from
+            the permissions list. In this case, the following command
+            line can be used:
+          </para>
+
+          <screen>  <prompt>mysql&gt;</prompt> GRANT SELECT, INSERT,
+           UPDATE, DELETE, INDEX, ALTER, CREATE, DROP,
+           REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY
+           '<replaceable>$db_pass</replaceable>';
+           <prompt>mysql&gt;</prompt> FLUSH PRIVILEGES;</screen>
+        </section>      
       </section>
-            
-      <section id="install-setupdatabase-adduser">
-        <title>Add a user to MySQL</title>
+      
+      <section id="postgresql">
+        <title>PostgreSQL</title>
+        <note>
+          <para>Note if you are using PostgreSQL 8.0.1 or higher, then you
+          will require to use a version of DBD::Pg which is equal to or
+          greater than version 1.41
+          </para>
+        </note>
+        
+        <section>
+          <title>Add a User to PostgreSQL</title>
 
-        <para>
-          You need to add a new MySQL user for Bugzilla to use.
-          (It's not safe to have Bugzilla use the MySQL root account.)
-          The following instructions assume the defaults in
-          <filename>localconfig</filename>; if you changed those,
-          you need to modify the SQL command appropriately. You will
+          <para>You need to add a new user to PostgreSQL for the Bugzilla
+          application to use when accessing the database. The following instructions
+          assume the defaults in <filename>localconfig</filename>; if you
+          changed those, you need to modify the commands appropriately. You will
           need the <replaceable>$db_pass</replaceable> password you
           set in <filename>localconfig</filename> in 
-          <xref linkend="localconfig"/>.
-        </para>
+          <xref linkend="localconfig"/>.</para>
 
-        <para>
-          We use an SQL <command>GRANT</command> command to create
-          a <quote>bugs</quote> user. This also restricts the 
-          <quote>bugs</quote>user to operations within a database
-          called <quote>bugs</quote>, and only allows the account
-          to connect from <quote>localhost</quote>. Modify it to
-          reflect your setup if you will be connecting from another
-          machine or as a different user.
-        </para>
+          <para>On most systems, to create the user in PostgreSQL, you will need to
+          login as the root user, and then</para>
+
+          <screen> <prompt>bash#</prompt> su - postgres</screen>
+
+          <para>As the postgres user, you then need to create a new user: </para>
+            
+          <screen> <prompt>bash$</prompt> createuser -U postgres -dAP bugs</screen>
+ 
+          <para>When asked for a password, provide the password which will be set as
+          <replaceable>$db_pass</replaceable> in <filename>localconfig</filename>.
+          The created user will have the ability to create databases and will not be
+          able to create new users.</para>
+        </section>
         
-        <para>
-          Run the <filename>mysql</filename> command-line client.
-        </para>
+        <section>
+          <title>Configure PostgreSQL</title>
 
-        <para>
-          If you are using MySQL 4.0 or newer, enter:
-        </para>
+          <para>Now, you will need to edit <filename>pg_hba.conf</filename> which is
+          usually located in <filename>/var/lib/pgsql/data/</filename>. In this file,
+          you will need to add a new line to it as follows:</para>
 
-        <screen>  <prompt>mysql&gt;</prompt> GRANT SELECT, INSERT,
-         UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
-         CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
-         TO bugs@localhost IDENTIFIED BY '<replaceable>$db_pass</replaceable>';
-  <prompt>mysql&gt;</prompt> FLUSH PRIVILEGES;</screen>
+          <para>
+            <computeroutput>host   all    bugs   127.0.0.1    255.255.255.255  md5</computeroutput>
+          </para>
 
-        <para>
-          If you are using an older version of MySQL,the
-          <computeroutput>LOCK TABLES</computeroutput> and 
-          <computeroutput>CREATE TEMPORARY TABLES</computeroutput>
-          permissions will be unavailable and should be removed from
-          the permissions list. In this case, the following command
-          line can be used:
-        </para>
+          <para>This means that for TCP/IP (host) connections, allow connections from
+          '127.0.0.1' to 'all' databases on this server from the 'bugs' user, and use
+          password authentication (md5) for that user.</para>
 
-        <screen>  <prompt>mysql&gt;</prompt> GRANT SELECT, INSERT,
-         UPDATE, DELETE, INDEX, ALTER, CREATE, DROP,
-         REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY
-         '<replaceable>$db_pass</replaceable>';
-  <prompt>mysql&gt;</prompt> FLUSH PRIVILEGES;</screen>
-      </section>      
-    </section>
+          <para>If you are using <emphasis role="bold">versions of PostgreSQL
+          before version 8</emphasis>, you may also need to edit <filename>postgresql.conf</filename>
+          , also usually found in the <filename>/var/lib/pgsql/data/</filename> folder.
+          You will need to make a single line change, changing</para>
+
+          <para>
+	    <computeroutput># tcpip_socket = false</computeroutput>
+          </para>
+
+          <para>to</para>
+            
+	  <para>
+	    <computeroutput>tcpip_socket = true</computeroutput>
+          </para>
+	  
+          <para>Now, you will need to restart PostgreSQL, but you will need to fully
+          stop and start the server rather than just restarting due to the possibility
+          of a change to <filename>postgresql.conf</filename>. After the server has
+          restarted, you will need to edit <filename>localconfig</filename>, finding
+          the <literal>$db_driver</literal> variable and setting it to
+          <literal>Pg</literal> and changing the password in <literal>$db_pass</literal>
+          to the one you picked previously, while setting up the account.</para> 
+        </section>
+      </section>
+    </section>  
 
     <section>
       <title>checksetup.pl</title>
@@ -959,7 +1104,6 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s
   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/runtests.sh filter_deny
   ns_register_filter preauth GET /bugzilla/data/* filter_deny
   ns_register_filter preauth GET /bugzilla/template/* filter_deny
 
@@ -1128,7 +1272,7 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s
       </para>
    </section>
 
-    <section>
+    <section id="installation-whining-cron">
       <title>The Whining Cron</title>
 
       <para>What good are
@@ -1154,6 +1298,45 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s
       </note>
     </section>
 
+    <section id="installation-whining">
+      <title>Whining</title>
+
+      <para>
+        As of Bugzilla 2.20, users can configure Bugzilla to regularly annoy 
+        them at regular intervals, by having Bugzilla execute saved searches
+        at certain times and emailing the results to the user.  This is known
+        as "Whining".  The process of configuring Whining is described 
+        in <xref linkend="whining"/>, but for it to work a Perl script must be
+        executed at regular intervals.
+      </para>
+
+      <para>
+        This can be done by adding the following command as a daily
+        crontab entry, in the same manner as explained above for bug
+        graphs. This example runs it every 15 minutes. 
+      </para>
+
+      <programlisting>*/15 * * * * cd &lt;your-bugzilla-directory&gt; ; ./whine.pl</programlisting>
+
+      <note>
+        <para>
+          Whines can be executed as often as every 15 minutes, so if you specify
+          longer intervals between executions of whine.pl, some users may not 
+          be whined at as often as they would expect.  Depending on the person,
+          this can either be a very Good Thing or a very Bad Thing.
+        </para>
+      </note>
+
+      <note>
+        <para>
+          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
+          <ulink url="http://www.nncron.ru/">nncron</ulink>.
+        </para>
+      </note>
+    </section>
+
     <section id="patch-viewer">
       <title>Patch Viewer</title>
       
diff --git a/docs/xml/security.xml b/docs/xml/security.xml
index eb26ec18ca16e06a3db13e68f23d7ac82859653e..a638ae26a9ea89f08575405f7b2a8d32df3147d2 100644
--- a/docs/xml/security.xml
+++ b/docs/xml/security.xml
@@ -1,5 +1,5 @@
 <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
-<!-- $Id: security.xml,v 1.4 2005/01/21 07:08:19 travis%sedsystems.ca Exp $ -->
+<!-- $Id: security.xml,v 1.6 2005/06/29 23:43:33 zach%zachlipton.com Exp $ -->
 
 <chapter id="security">
 <title>Bugzilla Security</title>
@@ -204,7 +204,6 @@ skip-networking
               <simplelist type="inline">
                 <member><filename>*.pl</filename></member>
                 <member><filename>*localconfig*</filename></member>
-                <member><filename>runtests.sh</filename></member>
               </simplelist>
               </para>
             </listitem>
@@ -369,9 +368,8 @@ skip-networking
       <ulink
       url="http://www.cert.org/tech_tips/malicious_code_mitigation.html#3">the
       CERT advisory</ulink> on this issue.
-      If your installation is for an English speaking audience only, making the
-      change in <xref linkend="security-bugzilla-charset-ex"/> will prevent
-      this problem. 
+      Making the change in <xref linkend="security-bugzilla-charset-ex"/> will
+      prevent this problem. 
       </para>
 
       <example id="security-bugzilla-charset-ex">
@@ -381,7 +379,7 @@ skip-networking
         <filename>Bugzilla/CGI.pm</filename>:
         <programlisting>$self->charset('');</programlisting>
         and change it to:
-        <programlisting>$self->charset('ISO-8859-1');</programlisting>
+        <programlisting>$self->charset('UTF-8');</programlisting>
         </para>
       </example>
     </section>    
diff --git a/docs/xml/troubleshooting.xml b/docs/xml/troubleshooting.xml
index e3b54b6e8bd1a1eec7ec10e3b3373d59dbf95105..46308bdc6611728164a41f36026f6b445993eec6 100644
--- a/docs/xml/troubleshooting.xml
+++ b/docs/xml/troubleshooting.xml
@@ -1,5 +1,5 @@
 <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
-<!-- $Id: troubleshooting.xml,v 1.5 2005/02/05 04:31:46 travis%sedsystems.ca Exp $ -->
+<!-- $Id: troubleshooting.xml,v 1.5.4.1 2005/09/08 20:57:06 mozilla%colinogilvie.co.uk Exp $ -->
 
 <appendix id="troubleshooting">
 <title>Troubleshooting</title>
@@ -29,6 +29,19 @@
     fix the problem. If not, see below for some commonly-encountered 
     errors. If that doesn't help, post the errors to the newsgroup.
     </para>
+
+    <para>
+      Bugzilla can also log all user-based errors (and many code-based errors)
+      that occur, without polluting the web server error log.  To enable
+      Bugzilla error logging, create a file that Bugzilla can write to, named
+      <filename>errorlog</filename>, in the Bugzilla <filename>data</filename>
+      directory.  Errors will be logged as they occur, and will include the type
+      of the error, the IP address and username (if available) of the user who
+      triggered the error, and the values of all environment variables; if a
+      form was being submitted, the data in the form will also be included.
+      To disable error logging, delete or rename the
+      <filename>errorlog</filename> file.
+    </para>
   </section>
         
   <section id="trbl-testserver">
diff --git a/docs/xml/using.xml b/docs/xml/using.xml
index 45d2574dace5a2edd1baf165d762be55baa9ad28..720f461e9dc90ccc0bc8b0061c9e053b04b0aa6a 100644
--- a/docs/xml/using.xml
+++ b/docs/xml/using.xml
@@ -234,8 +234,12 @@
       <listitem>
         <para>
         <emphasis>Attachments:</emphasis>
-        You can attach files (e.g. testcases or patches) to bugs. If there
-        are any attachments, they are listed in this section.</para>
+          You can attach files (e.g. testcases or patches) to bugs. If there
+          are any attachments, they are listed in this section.  Attachments are
+          normally stored in the Bugzilla database, unless they are marked as
+          Big Files, which are stored directly on disk and (unlike attachments
+          kept in the database) may be deleted at some future time.
+        </para>
       </listitem>
 
       <listitem>
@@ -487,12 +491,12 @@
 
       If your account is sufficiently empowered, you can make the same
       change to all the bugs in the list - for example, changing their
-      owner.</member>
+      assignee.</member>
 
       <member>
-      <emphasis>Send mail to bug owners:</emphasis>
+      <emphasis>Send mail to bug assignees:</emphasis>
 
-      Sends mail to the owners of all bugs on the list.</member>
+      Sends mail to the assignees of all bugs on the list.</member>
 
       <member>
       <emphasis>Edit Search:</emphasis>
@@ -774,7 +778,17 @@
       Content-Type (e.g. application/xhtml+xml), you can override this 
       using a 'content-type' parameter on the URL, e.g.
       <filename>&amp;content-type=text/plain</filename>.
-      </para>     
+      </para> 
+
+      <para>
+        If you have a really large attachment, something that does not need to
+        be recorded forever (as most attachments are), you can mark your
+        attachment as a Big File, Assuming the administrator of the
+        installation has enabled this feature.  Big Files are stored directly on
+        disk instead of in the database, and can be deleted when it is no longer
+        needed.  The maximum size of a Big File is normally larger than the
+        maximum size of a regular attachment.
+      </para>
     </section>
   </section>
   
@@ -1160,6 +1174,214 @@
     </para>
   </section>
 
+  <section id="whining">
+    <title>Whining</title>
+
+    <para>
+      Whining is a feature in Bugzilla that can regularly annoy users at 
+      specified times.  Using this feature, users can execute saved searches 
+      at specific times (i.e. the 15th of the month at midnight) or at 
+      regular intervals (i.e. every 15 minutes on Sundays).  The results of the
+      searches are sent to the user, either as a single email or as one email 
+      per bug, along with some descriptive text.
+    </para>
+
+    <warning>
+      <para>
+        Throughout this section it will be assumed that all users are members 
+        of the bz_canusewhines group, membership in which is required in order 
+        to use the Whining system.  You can easily make all users members of 
+        the bz_canusewhines group by setting the User RegExp to ".*" (without 
+        the quotes).
+      </para>
+
+      <para>
+        Also worth noting is the bz_canusewhineatothers group.  Members of this
+        group can create whines for any user or group in Bugzilla using a 
+        extended form of the whining interface.  Features only available to 
+        members of the bz_canusewhineatothers group will be noted in the 
+        appropriate places.
+      </para>
+    </warning>
+
+    <note>
+      <para>
+        For whining to work, a special Perl script must be executed at regular
+        intervals.  More information on this is available in 
+        <xref linkend="installation-whining"/>.
+      </para>
+    </note>
+
+    <note>
+      <para>
+        This section does not cover the whineatnews.pl script.  See
+        <xref linkend="installation-whining-cron"/> for more information on 
+        The Whining Cron.
+      </para>
+    </note>
+
+    <section id="whining-overview">
+      <title>The Event</title>
+
+      <para>
+        The whining system defines an "Event" as one or more queries being 
+        executed at regular intervals, with the results of said queries (if
+        there are any) being emailed to the user.  Events are created by 
+        clicking on the "Add new event" button.
+      </para>
+
+      <para>
+        Once a new event is created, the first thing to set is the "Email 
+        subject line".  The contents of this field will be used in the subject
+        line of every email generated by this event.  In addition to setting a 
+        subject, space is provided to enter some descriptive text that will be 
+        included at the top of each message (to help you in understanding why 
+        you received the email in the first place).
+      </para>
+
+      <para>
+        The next step is to specify when the Event is to be run (the Schedule) 
+        and what searches are to be performed (the Queries).
+      </para>
+
+    </section>
+
+    <section id="whining-schedule">
+      <title>Whining Schedule</title>
+
+      <para>
+         Each whining event is associated with zero or more schedules.  A 
+         schedule is used to specify when the query (specified below) is to be
+         run.  A new event starts out with no schedules (which means it will 
+         never run, as it is not scheduled to run).  To add a schedule, press
+         the "Add a new schedule" button.
+      </para>
+
+      <para>
+         Each schedule includes an interval, which you use to tell Bugzilla 
+         when the event should be run.  An event can be run on certain days of
+         the week, certain days of the month, during weekdays (defined as 
+         Monday through Friday), or every day.
+      </para>
+
+      <warning>
+        <para>
+          Be careful if you set your event to run on the 29th, 30th, or 31st of
+          the month, as your event may not run exactly when expected.  If you 
+          want your event to run on the last day of the month, select "Last day
+          of the month" as the interval.
+        </para>
+      </warning>
+
+      <para>
+        Once you have specified the day(s) on which the event is to be run, you
+        should now specify the time at which the event is to be run.  You can 
+        have the event run at a certain hour on the specified day(s), or 
+        every hour, half-hour, or quarter-hour on the specified day(s).
+      </para>
+
+      <para>
+        If a single schedule does not execute an event as many times as you 
+        would want, you can create another schedule for the same event.  For 
+        example, if you want to run an event on days whose numbers are
+        divisible by seven, you would need to add four schedules to the event,
+        setting the schedules to run on the 7th, 14th, 21st, and 28th (one day 
+        per schedule) at whatever time (or times) you choose.
+      </para>
+
+      <note>
+        <para>
+          If you are a member of the bz_canusewhineatothers group, then you
+          will be presented with another option: "Mail to".  Using this you 
+          can control who will receive the emails generated by this event.  You
+          can choose to send the emails to a single user (identified by email 
+          address) or a single group (identified by group name).  To send to 
+          multiple users or groups, create a new schedule for each additional 
+          user/group.
+        </para>
+      </note>
+    </section>
+
+    <section id="whining-query">
+      <title>Whining Queries</title>
+
+      <para>
+        Each whining event is associated with zero or more queries.  A query is
+        a saved search that is executed on the schedule specified (see above).
+        You start out with zero queries attached to the event (which means that
+        the event will not run, as there will never be any results to return).
+        To add a query, press the "Add a new query" button.
+      </para>
+
+      <para>
+        The first field to examine in your new query is the Sort field.  Queries
+        are executed, and results returned, in the order specified by the Sort 
+        field.  Queries with lower Sort values will run before queries with 
+        higher Sort values.
+      </para>
+
+      <para>
+        The next field to examine is the Search field.  This is where you 
+        choose the actual search that is to be run.  Instead of defining search
+        parameters here, you are asked to choose from the list of saved 
+        searches (the same list that appears at the bottom of every Bugzilla 
+        page).  You are only allowed to choose from searches that you have 
+        saved yourself (the default saved search, "My Bugs", is not a valid 
+        choice).  If you do not have any saved searches, you can take this 
+        opportunity to create one (see <xref linkend="list"/>).
+      </para>
+
+      <note>
+        <para>
+          When running queries, the whining system acts as if you are the user
+          executing the query.  This means that the whining system will ignore
+          bugs that match your query, but that you can not access.
+        </para>
+      </note>
+
+      <para>
+        Once you have chosen the saved search to be executed, give the query a 
+        descriptive title.  This title will appear in the email, above the 
+        results of the query.  If you choose "One message per bug", the query 
+        title will appear at the top of each email that contains a bug matching
+        your query.
+      </para>
+
+      <para>
+        Finally, decide if the results of the query should be sent in a single
+        email, or if each bug should appear in its own email.
+      </para>
+
+      <warning>
+        <para>
+          Think carefully before checking the "One message per bug" box.  If
+          you create a query that matches thousands of bugs, you will receive 
+          thousands of emails!
+        </para>
+      </warning>
+    </section>
+
+    <section>
+      <title>Saving Your Changes</title>
+
+      <para>
+        Once you have defined at least one schedule, and created at least one 
+        query, go ahead and "Update/Commit".  This will save your Event and make
+        it available for immediate execution.
+      </para>
+
+      <note>
+        <para>
+          If you ever feel like deleting your event, you may do so using the 
+          "Remove Event" button in the upper-right corner of each Event.  You 
+          can also modify an existing event, so long as you "Update/Commit" 
+          after completing your modifications.
+        </para>
+      </note>
+    </section>
+
+  </section>
+
 </chapter>
 
 <!-- Keep this comment at the end of the file
diff --git a/editclassifications.cgi b/editclassifications.cgi
index 5f31c50a8c1b6fdfea72c930f60efdac3158a6ff..4fdd948ea352b884ee35cd6c04097581b76dd2ab 100755
--- a/editclassifications.cgi
+++ b/editclassifications.cgi
@@ -16,7 +16,7 @@
 # The Initial Developer of the Original Code is Albert Ting
 #
 # Contributor(s): Albert Ting <alt@sonic.net>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 #
 # Direct any questions on this source code to mozilla.org
 
@@ -29,7 +29,7 @@ use Bugzilla::Util;
 use Bugzilla::Error;
 use Bugzilla::Config qw($datadir);
 
-require "globals.pl";
+require "CGI.pl";
 
 my $cgi = Bugzilla->cgi;
 my $dbh = Bugzilla->dbh;
diff --git a/editgroups.cgi b/editgroups.cgi
index 87419a9ccb96fc8436778dca260982bac59000fc..5e74163dafd73a7d85c2089b8d310e1a60682003 100755
--- a/editgroups.cgi
+++ b/editgroups.cgi
@@ -334,12 +334,11 @@ if ($action eq 'del') {
     }
 
     my $hasbugs = 0;
-    my $buglist = "";
+    my $buglist = "0";
     SendSQL("SELECT bug_id FROM bug_group_map WHERE group_id = $gid");
 
     if (MoreSQLData()) {
         $hasbugs = 1;
-        my $buglist = "0";
 
         while (MoreSQLData()) {
             my ($bug) = FetchSQLData();
diff --git a/editproducts.cgi b/editproducts.cgi
index 3a63add6a1144317d038580dde332d4de480c018..568f463fb1524625c53773573220da825db13541 100755
--- a/editproducts.cgi
+++ b/editproducts.cgi
@@ -24,6 +24,7 @@
 #               Joe Robins <jmrobins@tgix.com>
 #               Gavin Shelley <bugzilla@chimpychompy.org>
 #               Fr�d�ric Buclin <LpSolit@gmail.com>
+#               Greg Hendricks <ghendricks@novell.com>
 #
 # Direct any questions on this source code to
 #
@@ -139,16 +140,21 @@ sub CheckClassificationProduct ($$)
 {
     my $cl = shift;
     my $prod = shift;
+    my $dbh = Bugzilla->dbh;
 
     CheckClassification($cl);
     CheckProduct($prod);
 
-    # does the classification exist?
-    SendSQL("SELECT products.name
-             FROM products,classifications
-             WHERE products.name=" . SqlQuote($prod) .
-            " AND classifications.name=" . SqlQuote($cl));
-    my $res = FetchOneColumn();
+    trick_taint($prod);
+    trick_taint($cl);
+
+    my $query = q{SELECT products.name
+                  FROM products
+                  INNER JOIN classifications
+                    ON products.classification_id = classifications.id
+                  WHERE products.name = ?
+                    AND classifications.name = ?};
+    my $res = $dbh->selectrow_array($query, undef, ($prod, $cl));
 
     unless ($res) {
         print "Sorry, classification->product '$cl'->'$prod' does not exist.";
@@ -157,6 +163,29 @@ sub CheckClassificationProduct ($$)
     }
 }
 
+sub CheckClassificationProductNew ($$)
+{
+    my ($cl, $prod) = @_;
+    my $dbh = Bugzilla->dbh;
+    
+    CheckClassificationNew($cl);
+
+    trick_taint($prod);
+    trick_taint($cl);
+
+    my ($res) = $dbh->selectrow_array(q{
+        SELECT products.name
+        FROM products
+        INNER JOIN classifications
+          ON products.classification_id = classifications.id
+        WHERE products.name = ? AND classifications.name = ?},
+        undef, ($prod, $cl));
+
+    unless ($res) {
+        ThrowUserError('classification_doesnt_exist_for_product',
+                       { product => $prod, classification => $cl });
+    }
+}
 
 #
 # Displays the form to edit a products parameters
@@ -470,6 +499,14 @@ if ($action eq 'new') {
     }
 
     my $description  = trim($cgi->param('description')  || '');
+
+    if ($description eq '') {
+        print "You must enter a description for product '$product'. Please press\n";
+        print "<b>Back</b> and try again.\n";
+        PutTrailer($localtrailer);
+        exit;
+    }
+
     my $milestoneurl = trim($cgi->param('milestoneurl') || '');
     my $disallownew = 0;
     $disallownew = 1 if $cgi->param('disallownew');
@@ -587,6 +624,10 @@ if ($action eq 'new') {
     unlink "$datadir/versioncache";
 
     print "OK, done.<p>\n";
+    print "<div style='border: 1px red solid; padding: 1ex;'><b>You will need to    
+           <a href=\"editcomponents.cgi?action=add&product=" .
+           url_quote($product) . "\">add at least one 
+           component</a> before you can enter bugs against this product.</b></div>";
     PutTrailer($localtrailer,
         "<a href=\"editproducts.cgi?action=add\">add</a> a new product",
         "<a href=\"editcomponents.cgi?action=add&product=" .
@@ -604,180 +645,94 @@ if ($action eq 'new') {
 #
 
 if ($action eq 'del') {
-    PutHeader("Delete product");
-    CheckProduct($product);
-    my $classification_id=1;
-    if (Param('useclassification')) {
-        CheckClassificationProduct($classification,$product);
-        $classification_id = get_classification_id($classification);
-    }
-
-    # display some data about the product
-    SendSQL("SELECT classifications.description,
-                    products.id, products.description, milestoneurl, disallownew
-             FROM products,classifications
-             WHERE products.name=" . SqlQuote($product) .
-            " AND classifications.id=" . SqlQuote($classification_id));
-    my ($class_description, $product_id, $prod_description, $milestoneurl, $disallownew) = FetchSQLData();
-    my $milestonelink = $milestoneurl ? "<a href=\"$milestoneurl\">$milestoneurl</a>"
-                                      : "<font color=\"red\">missing</font>";
-    $prod_description ||= "<FONT COLOR=\"red\">description missing</FONT>";
-    $class_description ||= "<FONT COLOR=\"red\">description missing</FONT>";
-    $disallownew = $disallownew ? 'closed' : 'open';
     
-    print "<TABLE BORDER=1 CELLPADDING=4 CELLSPACING=0>\n";
-    print "<TR BGCOLOR=\"#6666FF\">\n";
-    print "  <TH VALIGN=\"top\" ALIGN=\"left\">Part</TH>\n";
-    print "  <TH VALIGN=\"top\" ALIGN=\"left\">Value</TH>\n";
-
-    if (Param('useclassification')) {
-        print "</TR><TR>\n";
-        print "  <TD VALIGN=\"top\">Classification:</TD>\n";
-        print "  <TD VALIGN=\"top\">$classification</TD>\n";
-
-        print "</TR><TR>\n";
-        print "  <TD VALIGN=\"top\">Description:</TD>\n";
-        print "  <TD VALIGN=\"top\">$class_description</TD>\n";
+    if (!$product) {
+        ThrowUserError('product_not_specified');
     }
 
-    print "</TR><TR>\n";
-    print "  <TD VALIGN=\"top\">Product:</TD>\n";
-    print "  <TD VALIGN=\"top\">$product</TD>\n";
-
-    print "</TR><TR>\n";
-    print "  <TD VALIGN=\"top\">Description:</TD>\n";
-    print "  <TD VALIGN=\"top\">$prod_description</TD>\n";
-
-    if (Param('usetargetmilestone')) {
-        print "</TR><TR>\n";
-        print "  <TD VALIGN=\"top\">Milestone URL:</TD>\n";
-        print "  <TD VALIGN=\"top\">$milestonelink</TD>\n";
-    }
-
-
-    print "</TR><TR>\n";
-    print "  <TD VALIGN=\"top\">Closed for bugs:</TD>\n";
-    print "  <TD VALIGN=\"top\">$disallownew</TD>\n";
+    my $product_id = get_product_id($product);
+    $product_id || ThrowUserError('product_doesnt_exist',
+                                  {product => $product});
 
-    print "</TR><TR>\n";
-    print "  <TD VALIGN=\"top\">Components:</TD>\n";
-    print "  <TD VALIGN=\"top\">";
-    SendSQL("SELECT name,description
-             FROM components
-             WHERE product_id=$product_id");
-    if (MoreSQLData()) {
-        print "<table>";
-        while ( MoreSQLData() ) {
-            my ($component, $description) = FetchSQLData();
-            $description ||= "<FONT COLOR=\"red\">description missing</FONT>";
-            print "<tr><th align=right valign=top>$component:</th>";
-            print "<td valign=top>$description</td></tr>\n";
-        }
-        print "</table>\n";
-    } else {
-        print "<FONT COLOR=\"red\">missing</FONT>";
-    }
+    my $classification_id = 1;
 
-    print "</TD>\n</TR><TR>\n";
-    print "  <TD VALIGN=\"top\">Versions:</TD>\n";
-    print "  <TD VALIGN=\"top\">";
-    SendSQL("SELECT value
-             FROM versions
-             WHERE product_id=$product_id
-             ORDER BY value");
-    if (MoreSQLData()) {
-        my $br = 0;
-        while ( MoreSQLData() ) {
-            my ($version) = FetchSQLData();
-            print "<BR>" if $br;
-            print $version;
-            $br = 1;
-        }
-    } else {
-        print "<FONT COLOR=\"red\">missing</FONT>";
+    if (Param('useclassification')) {
+        CheckClassificationProductNew($classification, $product);
+        $classification_id = get_classification_id($classification);
+        $vars->{'classification'} = $classification;
     }
 
-    #
-    # Adding listing for associated target milestones - matthew@zeroknowledge.com
-    #
+    # Extract some data about the product
+    my $query = q{SELECT classifications.description,
+                         products.description,
+                         products.milestoneurl,
+                         products.disallownew
+                  FROM products
+                  INNER JOIN classifications
+                    ON products.classification_id = classifications.id
+                  WHERE products.id = ?};
+
+    my ($class_description,
+        $prod_description,
+        $milestoneurl,
+        $disallownew) = $dbh->selectrow_array($query, undef,
+                                              $product_id);
+
+    $vars->{'class_description'} = $class_description;
+    $vars->{'product_id'}        = $product_id;
+    $vars->{'prod_description'}  = $prod_description;
+    $vars->{'milestoneurl'}      = $milestoneurl;
+    $vars->{'disallownew'}       = $disallownew;
+    $vars->{'product_name'}      = $product;
+
+    $vars->{'components'} = $dbh->selectall_arrayref(q{
+        SELECT name, description FROM components
+        WHERE product_id = ? ORDER BY name}, {'Slice' => {}},
+        $product_id);
+
+    $vars->{'versions'} = $dbh->selectcol_arrayref(q{
+            SELECT value FROM versions
+            WHERE product_id = ? ORDER BY value}, undef,
+            $product_id);
+
+    # Adding listing for associated target milestones - 
+    # matthew@zeroknowledge.com
     if (Param('usetargetmilestone')) {
-        print "</TD>\n</TR><TR>\n";
-        print "  <TH ALIGN=\"right\" VALIGN=\"top\"><A HREF=\"editmilestones.cgi?product=", url_quote($product), $classhtmlvar, "\">Edit milestones:</A></TH>\n";
-        print "  <TD>";
-        SendSQL("SELECT value
-                 FROM milestones
-                 WHERE product_id=$product_id
-                 ORDER BY sortkey,value");
-        if(MoreSQLData()) {
-            my $br = 0;
-            while ( MoreSQLData() ) {
-                my ($milestone) = FetchSQLData();
-                print "<BR>" if $br;
-                print $milestone;
-                $br = 1;
-            }
-        } else {
-            print "<FONT COLOR=\"red\">missing</FONT>";
-        }
+        $vars->{'milestones'} = $dbh->selectcol_arrayref(q{
+            SELECT value FROM milestones
+            WHERE product_id = ?
+            ORDER BY sortkey, value}, undef, $product_id);
     }
 
-    print "</TD>\n</TR><TR>\n";
-    print "  <TD VALIGN=\"top\">Bugs:</TD>\n";
-    print "  <TD VALIGN=\"top\">";
-    SendSQL("SELECT count(bug_id), product_id
-             FROM bugs " .
-            $dbh->sql_group_by('product_id') . "
-             HAVING product_id = $product_id");
-    my $bugs = FetchOneColumn();
-    print $bugs || 'none';
-
-
-    print "</TD>\n</TR></TABLE>";
-
-    print "<H2>Confirmation</H2>\n";
-
-    if ($bugs) {
-        if (!Param("allowbugdeletion")) {
-            print "Sorry, there are $bugs bugs outstanding for this product.
-You must reassign those bugs to another product before you can delete this
-one.";
-            PutTrailer($localtrailer);
-            exit;
-        }
-        print "<TABLE BORDER=0 CELLPADDING=20 WIDTH=\"70%\" BGCOLOR=\"red\"><TR><TD>\n",
-              "There are bugs entered for this product!  When you delete this ",
-              "product, <B><BLINK>all</BLINK><B> stored bugs will be deleted, too. ",
-              "You could not even see a bug history anymore!\n",
-              "</TD></TR></TABLE>\n";
-    }
-
-    print "<P>Do you really want to delete this product?<P>\n";
-    print "<FORM METHOD=POST ACTION=editproducts.cgi>\n";
-    print "<INPUT TYPE=SUBMIT VALUE=\"Yes, delete\">\n";
-    print "<INPUT TYPE=HIDDEN NAME=\"action\" VALUE=\"delete\">\n";
-    print "<INPUT TYPE=HIDDEN NAME=\"product\" VALUE=\"" .
-        html_quote($product) . "\">\n";
-    print "<INPUT TYPE=HIDDEN NAME=\"classification\" VALUE=\"" .
-        html_quote($classification) . "\">\n";
-    print "</FORM>";
-
-    PutTrailer($localtrailer);
+    ($vars->{'bug_count'}) = $dbh->selectrow_array(q{
+        SELECT COUNT(*) FROM bugs WHERE product_id = ?},
+        undef, $product_id) || 0;
+ 
+    $template->process("admin/products/confirm-delete.html.tmpl", $vars)
+        || ThrowTemplateError($template->error());
     exit;
 }
 
-
-
 #
 # action='delete' -> really delete the product
 #
 
 if ($action eq 'delete') {
-    CheckProduct($product);
+    
+    if (!$product) {
+        ThrowUserError('product_not_specified');
+    }
+
     my $product_id = get_product_id($product);
+    $product_id || ThrowUserError('product_doesnt_exist',
+                                  {product => $product});
+
+    $vars->{'product'} = $product;
+    $vars->{'classification'} = $classification;
 
-    my $bug_ids =
-      $dbh->selectcol_arrayref("SELECT bug_id FROM bugs WHERE product_id = ?",
-                               undef, $product_id);
+    my $bug_ids = $dbh->selectcol_arrayref(q{
+        SELECT bug_id FROM bugs
+        WHERE product_id = ?}, undef, $product_id);
 
     my $nb_bugs = scalar(@$bug_ids);
     if ($nb_bugs) {
@@ -790,47 +745,44 @@ if ($action eq 'delete') {
         else {
             ThrowUserError("product_has_bugs", { nb => $nb_bugs });
         }
+        $vars->{'nb_bugs'} = $nb_bugs;
     }
 
-    PutHeader("Deleting product");
-    print "All references to deleted bugs removed.<P>\n" if $nb_bugs;
-
     $dbh->bz_lock_tables('products WRITE', 'components WRITE',
                          'versions WRITE', 'milestones WRITE',
                          'group_control_map WRITE',
                          'flaginclusions WRITE', 'flagexclusions WRITE');
 
-    $dbh->do("DELETE FROM components WHERE product_id = ?", undef, $product_id);
-    print "Components deleted.<BR>\n";
+    $dbh->do("DELETE FROM components WHERE product_id = ?",
+             undef, $product_id);
 
-    $dbh->do("DELETE FROM versions WHERE product_id = ?", undef, $product_id);
-    print "Versions deleted.<BR>\n";
+    $dbh->do("DELETE FROM versions WHERE product_id = ?",
+             undef, $product_id);
 
-    $dbh->do("DELETE FROM milestones WHERE product_id = ?", undef, $product_id);
-    print "Milestones deleted.<P>\n";
+    $dbh->do("DELETE FROM milestones WHERE product_id = ?",
+             undef, $product_id);
 
     $dbh->do("DELETE FROM group_control_map WHERE product_id = ?",
              undef, $product_id);
-    print "Group controls deleted.<BR>\n";
 
     $dbh->do("DELETE FROM flaginclusions WHERE product_id = ?",
              undef, $product_id);
+             
     $dbh->do("DELETE FROM flagexclusions WHERE product_id = ?",
              undef, $product_id);
-    print "Flag inclusions and exclusions deleted.<P>\n";
-
-    $dbh->do("DELETE FROM products WHERE id = ?", undef, $product_id);
-    print "Product '$product' deleted.<P>\n";
+             
+    $dbh->do("DELETE FROM products WHERE id = ?",
+             undef, $product_id);
 
     $dbh->bz_unlock_tables();
 
     unlink "$datadir/versioncache";
-    PutTrailer($localtrailer);
+
+    $template->process("admin/products/deleted.html.tmpl", $vars)
+        || ThrowTemplateError($template->error());
     exit;
 }
 
-
-
 #
 # action='edit' -> present the 'edit product' form
 # If a product is given with no action associated with it, then edit it.
@@ -1252,8 +1204,8 @@ if ($action eq 'update') {
     CheckProduct($productold);
     my $product_id = get_product_id($productold);
 
-    if (!detaint_natural($maxvotesperbug) || $maxvotesperbug == 0) {
-        print "Sorry, the max votes per bug must be a positive integer.";
+    if (!detaint_natural($maxvotesperbug)) {
+        print "Sorry, the max votes per bug must be an integer >= 0.";
         PutTrailer($localtrailer);
         exit;
     }
@@ -1305,7 +1257,7 @@ if ($action eq 'update') {
         SendSQL("UPDATE products
                  SET milestoneurl=" . SqlQuote($milestoneurl) . "
                  WHERE id=$product_id");
-        print "Updated mile stone URL.<BR>\n";
+        print "Updated milestone URL.<BR>\n";
     }
 
 
@@ -1432,16 +1384,28 @@ if ($action eq 'update') {
             }
         }
         # 3. enough votes to confirm
-        SendSQL("SELECT bug_id FROM bugs " .
-                "WHERE product_id = $product_id " .
-                "  AND bug_status = 'UNCONFIRMED' " .
-                "  AND votes >= $votestoconfirm");
-        if (MoreSQLData()) {
+        my $bug_list = $dbh->selectcol_arrayref("SELECT bug_id FROM bugs
+                                                 WHERE product_id = ?
+                                                 AND bug_status = 'UNCONFIRMED'
+                                                 AND votes >= ?",
+                                                 undef, ($product_id, $votestoconfirm));
+        if (scalar(@$bug_list)) {
             print "<br>Checking unconfirmed bugs in this product for any which now have sufficient votes.";
         }
-        while (MoreSQLData()) {
-            # The user id below is used for activity log purposes
-            CheckIfVotedConfirmed(FetchOneColumn(), Bugzilla->user->id);
+        my @updated_bugs = ();
+        foreach my $bug_id (@$bug_list) {
+            my $confirmed = CheckIfVotedConfirmed($bug_id, $whoid);
+            push (@updated_bugs, $bug_id) if $confirmed;
+        }
+
+        $vars->{'type'} = "votes";
+        $vars->{'mailrecipients'} = { 'changer' => $whoid };
+        $vars->{'header_done'} = 1;
+
+        foreach my $bug_id (@updated_bugs) {
+            $vars->{'id'} = $bug_id;
+            $template->process("bug/process/results.html.tmpl", $vars)
+              || ThrowTemplateError($template->error());
         }
     }
 
@@ -1503,184 +1467,6 @@ if ($action eq 'editgroupcontrols') {
     $template->process("admin/products/groupcontrol/edit.html.tmpl", $vars)
         || ThrowTemplateError($template->error());
     exit;                
-
-    print "<!-- \n";
-    print "<script type=\"text/javascript\">\n";
-    print "function hide(id) {\n";
-    print "  id.visibility = 0\n";
-    print "  alert(id)\n";
-    print "}\n";
-    print "</script>";
-    print " -->\n";
-        print "<STYLE type=\"text/css\">\n";
-        print "  .hstyle { visibility: visible; color: red; }\n";
-        print "</STYLE>\n";
-    print "<FORM METHOD=POST ACTION=editproducts.cgi>\n";
-    print "<TABLE BORDER=1 CELLPADDING=4 CELLSPACING=0><TR BGCOLOR=\"#6666FF\">\n";
-    print "  <TH ALIGN=\"left\">Group</TH>\n";
-    print "  <TH ALIGN=\"left\">Entry</TH>\n";
-    print "  <TH ALIGN=\"left\">MemberControl</TH>\n";
-    print "  <TH ALIGN=\"left\">OtherControl</TH>\n";
-    print "  <TH ALIGN=\"left\">Canedit</TH>\n";
-    while (MoreSQLData()) {
-        print "</TR>\n";
-        my ($groupid, $groupname, $entry, $membercontrol, $othercontrol, 
-            $canedit) = FetchSQLData();
-        print "<TR id=\"row_$groupname\" class=\"hstyle\" ";
-        print "onload=\"document.row.row_$groupname.color=green\">\n";
-        print "  <TD>\n";
-        print "    $groupname\n";
-        print "  </TD><TD>\n";
-        $entry |= 0;
-        print "    <INPUT TYPE=CHECKBOX NAME=\"entry_$groupid\" VALUE=1";
-        print " CHECKED " if $entry;
-        print ">\n";
-        print "  </TD><TD>\n";
-        $membercontrol |= 0;
-        $othercontrol |= 0;
-        print "    <SELECT NAME=\"membercontrol_$groupid\">\n";
-        print "      <OPTION VALUE=" . CONTROLMAPNA;
-        print " selected=\"selected\"" if ($membercontrol == CONTROLMAPNA);
-        print ">NA</OPTION>\n";
-        print "      <OPTION VALUE=" . CONTROLMAPSHOWN;
-        print " selected=\"selected\"" if ($membercontrol == CONTROLMAPSHOWN);
-        print ">Shown</OPTION>\n";
-        print "      <OPTION VALUE=" . CONTROLMAPDEFAULT;
-        print " selected=\"selected\"" if ($membercontrol == CONTROLMAPDEFAULT);
-        print ">Default</OPTION>\n";
-        print "      <OPTION VALUE=" . CONTROLMAPMANDATORY;
-        print " selected=\"selected\"" if ($membercontrol == CONTROLMAPMANDATORY);
-        print ">Mandatory</OPTION>\n";
-        print "</SELECT>\n";
-        print "  </TD><TD>\n";
-        print "    <SELECT NAME=\"othercontrol_$groupid\">\n";
-        print "      <OPTION VALUE=" . CONTROLMAPNA;
-        print " selected=\"selected\"" if ($othercontrol == CONTROLMAPNA);
-        print ">NA</OPTION>\n";
-        print "      <OPTION VALUE=" . CONTROLMAPSHOWN;
-        print " selected=\"selected\"" if ($othercontrol == CONTROLMAPSHOWN);
-        print ">Shown</OPTION>\n";
-        print "      <OPTION VALUE=" . CONTROLMAPDEFAULT;
-        print " selected=\"selected\"" if ($othercontrol == CONTROLMAPDEFAULT);
-        print ">Default</OPTION>\n";
-        print "      <OPTION VALUE=" . CONTROLMAPMANDATORY;
-        print " selected=\"selected\"" if ($othercontrol == CONTROLMAPMANDATORY);
-        print ">Mandatory</OPTION>\n";
-        print "</SELECT>\n";
-        print "  </TD><TD>\n";
-        $canedit |= 0;
-        print "    <INPUT TYPE=CHECKBOX NAME=\"canedit_$groupid\" VALUE=1";
-        print " CHECKED " if $canedit;
-        print ">\n";
-
-    }
-
-    print "</TR>\n";
-    print "</TABLE><BR>";
-    print "Add controls to the panel above:<BR>\n";
-    print "<SELECT NAME=\"newgroups\" SIZE=\"10\" MULTIPLE=\"MULTIPLE\">\n";
-    SendSQL("SELECT id, name " .
-            "FROM groups " .
-            "LEFT JOIN group_control_map " .
-            "ON group_control_map.group_id = id AND product_id = $product_id " .
-            "WHERE canedit IS NULL AND isbuggroup != 0 AND isactive != 0 " .
-            "ORDER BY name");
-    while (MoreSQLData()) {
-        my ($groupid, $groupname) = FetchSQLData();
-        print "<OPTION VALUE=\"$groupid\">$groupname</OPTION>\n";
-    }
-    print "</SELECT><BR><BR>\n";
-
-    print "<INPUT TYPE=SUBMIT VALUE=\"Update\">\n";
-    print "<INPUT TYPE=RESET>\n";
-    print "<INPUT TYPE=HIDDEN NAME=\"action\" VALUE=\"updategroupcontrols\">\n";
-    print "<INPUT TYPE=HIDDEN NAME=\"product\" VALUE=\"$product\">\n";
-    print "</FORM>\n";
-    print "<P>note: Any group controls Set to NA/NA with no other checkboxes ";
-    print "will automatically be removed from the panel the next time ";
-    print "update is clicked.\n";
-    print "<P>These settings control the relationship of the groups to this ";
-    print "product.\n";
-    print "<P>If any group has <B>Entry</B> selected, then this product will ";
-    print "restrict bug entry to only those users who are members of all the ";
-    print "groups with entry selected.\n";
-    print "<P>If any group has <B>Canedit</B> selected, then this product ";
-    print "will be read-only for any users who are not members of all of ";
-    print "the groups with Canedit selected. ONLY users who are members of ";
-    print "all the canedit groups will be able to edit. This is an additional ";
-    print "restriction that further restricts what can be edited by a user.\n";
-    print "<P>The <B>MemberControl</B> and <B>OtherControl</B> fields ";
-    print "indicate which bugs will be placed in ";
-    print "this group according to the following definitions.\n";
-    print "<BR><TABLE BORDER=1>";
-    print "<TR>";
-    print "<TH>MemberControl</TH><TH>OtherControl</TH><TH>Interpretation</TH>";
-    print "</TR><TR>";
-    print "<TD>NA</TD>\n";
-    print "<TD>NA</TD>\n";
-    print "<TD>Bugs in this product are never associated with this group.</TD>\n";
-    print "</TR><TR>";
-    print "<TD>Shown</TD>\n";
-    print "<TD>NA</TD>\n";
-    print "<TD>Bugs in this product are permitted to be restricted to this ";
-    print "group.  Users who are members of this group will be able ";
-    print "to place bugs in this group.</TD>\n";
-    print "</TR><TR>";
-    print "<TD>Shown</TD>\n";
-    print "<TD>Shown</TD>\n";
-    print "<TD>Bugs in this product can be placed in this group by anyone ";
-    print "with permission to edit the bug even if they are not a member ";
-    print "of this group.</TD>\n";
-    print "</TR><TR>";
-    print "<TD>Shown</TD>\n";
-    print "<TD>Default</TD>\n";
-    print "<TD>Bugs in this product can be placed in this group by anyone ";
-    print "with permission to edit the bug even if they are not a member ";
-    print "of this group. Non-members place bugs in this group by default.";
-    print "</TD>\n";
-    print "</TR><TR>";
-    print "<TD>Shown</TD>\n";
-    print "<TD>Mandatory</TD>\n";
-    print "<TD>Bugs in this product are permitted to be restricted to this ";
-    print "group.  Users who are members of this group will be able ";
-    print "to place bugs in this group.";
-    print "Non-members will be forced to restrict bugs to this group ";
-    print "when they initially enter a bug in this product.";
-    print "</TD>\n";
-    print "</TR><TR>";
-    print "<TD>Default</TD>\n";
-    print "<TD>NA</TD>\n";
-    print "<TD>Bugs in this product are permitted to be restricted to this ";
-    print "group and are placed in this group by default.";
-    print "Users who are members of this group will be able ";
-    print "to place bugs in this group.</TD>\n";
-    print "</TR><TR>";
-    print "<TD>Default</TD>\n";
-    print "<TD>Default</TD>\n";
-    print "<TD>Bugs in this product are permitted to be restricted to this ";
-    print "group and are placed in this group by default.";
-    print "Users who are members of this group will be able ";
-    print "to place bugs in this group. Non-members will be able to ";
-    print "restrict bugs to this group on entry and will do so by default ";
-    print "</TD>\n";
-    print "</TR><TR>";
-    print "<TD>Default</TD>\n";
-    print "<TD>Mandatory</TD>\n";
-    print "<TD>Bugs in this product are permitted to be restricted to this ";
-    print "group and are placed in this group by default.";
-    print "Users who are members of this group will be able ";
-    print "to place bugs in this group. Non-members will be forced ";
-    print "to place bugs in this group on entry.";
-    print "</TR><TR>";
-    print "<TD>Mandatory</TD>\n";
-    print "<TD>Mandatory</TD>\n";
-    print "<TD>Bugs in this product are required to be restricted to this ";
-    print "group.  Users are not given any option.</TD>\n";
-    print "</TABLE>";
-
-
-    PutTrailer($localtrailer);
-    exit;
 }
 
 
diff --git a/editsettings.cgi b/editsettings.cgi
index b5e810ba9f38a23f81f5f3edf9af728f86bec6eb..80a8921d561518aaf09d0ac986c44ab36394c0b1 100644
--- a/editsettings.cgi
+++ b/editsettings.cgi
@@ -54,11 +54,9 @@ sub SaveSettings{
         my $old_value   = $vars->{'settings'}->{$name}->{'default_value'};
         my $enabled = defined $cgi->param("${name}-enabled") || 0;
         my $value = $cgi->param("${name}");
+        my $setting = new Bugzilla::User::Setting($name);
 
-        # remove taint
-        if ($value =~ /^(\w+)$/ ) {
-            $value = $1;
-        }
+        $setting->validate_value($value);
 
         if ( ($old_enabled != $enabled) ||
              ($old_value ne $value) ) {
diff --git a/editusers.cgi b/editusers.cgi
index 74ad463fdfcae0e276c3b897e9355230ec79745b..3eb0061e0533adcf995cddea7fe065e6acaa9be3 100755
--- a/editusers.cgi
+++ b/editusers.cgi
@@ -25,9 +25,9 @@ use vars qw( $vars );
 
 use Bugzilla;
 use Bugzilla::User;
+use Bugzilla::Flag;
 use Bugzilla::Config;
 use Bugzilla::Constants;
-use Bugzilla::Auth;
 use Bugzilla::Util;
 
 Bugzilla->login(LOGIN_REQUIRED);
@@ -68,7 +68,7 @@ mirrorListSelectionValues();
 ###########################################################################
 if ($action eq 'search') {
     # Allow to restrict the search to any group the user is allowed to bless.
-    $vars->{'restrictablegroups'} = groupsUserMayBless($user, 'id', 'name');
+    $vars->{'restrictablegroups'} = $user->bless_groups();
     $template->process('admin/users/search.html.tmpl', $vars)
        || ThrowTemplateError($template->error());
 
@@ -83,7 +83,7 @@ if ($action eq 'search') {
     my $nextCondition;
     my $visibleGroups;
 
-    if (Param('usevisibilitygroups')) {
+    if (!$editusers && Param('usevisibilitygroups')) {
         # Show only users in visible groups.
         $visibleGroups = visibleGroupsAsString();
 
@@ -197,7 +197,7 @@ if ($action eq 'search') {
     $otherUser 
         || ThrowCodeError('invalid_user_id', {'userid' => $cgi->param('userid')});
 
-    canSeeUser($otherUserID)
+    $editusers || canSeeUser($otherUserID)
         || ThrowUserError('auth_failure', {reason => "not_visible",
                                            action => "modify",
                                            object => "user"});
@@ -228,7 +228,7 @@ if ($action eq 'search') {
                          'group_group_map READ',
                          'group_group_map AS ggm READ');
  
-    canSeeUser($otherUserID)
+    $editusers || canSeeUser($otherUserID)
         || ThrowUserError('auth_failure', {reason => "not_visible",
                                            action => "modify",
                                            object => "user"});
@@ -317,7 +317,7 @@ if ($action eq 'search') {
     # silently.
     # XXX: checking for existence of each user_group_map entry
     #      would allow to display a friendlier error message on page reloads.
-    foreach (@{groupsUserMayBless($user, 'id', 'name')}) {
+    foreach (@{$user->bless_groups()}) {
         my $id = $$_{'id'};
         my $name = $$_{'name'};
 
@@ -396,27 +396,18 @@ if ($action eq 'search') {
     $editusers || ThrowUserError('auth_failure', {group  => "editusers",
                                                   action => "delete",
                                                   object => "users"});
-    canSeeUser($otherUserID) || ThrowUserError('auth_failure',
-                                               {reason => "not_visible",
-                                                action => "delete",
-                                                object => "user"});
-
     $vars->{'otheruser'}      = $otherUser;
     $vars->{'editcomponents'} = UserInGroup('editcomponents');
 
-    # If the user is initial owner or initial QA contact of a component,
-    # then no deletion is possible.
-    $vars->{'product_responsibilities'} = productResponsibilities($otherUserID);
-
     # Find other cross references.
-    $vars->{'bugs'} = $dbh->selectrow_array(
+    $vars->{'assignee_or_qa'} = $dbh->selectrow_array(
         qq{SELECT COUNT(*)
            FROM bugs
-           WHERE assigned_to = ? OR
-                 qa_contact = ? OR
-                 reporter = ?
-          },
-        undef, ($otherUserID, $otherUserID, $otherUserID));
+           WHERE assigned_to = ? OR qa_contact = ?},
+        undef, ($otherUserID, $otherUserID));
+    $vars->{'reporter'} = $dbh->selectrow_array(
+        'SELECT COUNT(*) FROM bugs WHERE reporter = ?',
+        undef, $otherUserID);
     $vars->{'cc'} = $dbh->selectrow_array(
         'SELECT COUNT(*) FROM cc WHERE who = ?',
         undef, $otherUserID);
@@ -470,19 +461,29 @@ if ($action eq 'search') {
         || ThrowCodeError('invalid_user_id', {'userid' => $cgi->param('userid')});
     my $otherUserLogin = $otherUser->login();
 
+    # Cache for user accounts.
+    my %usercache = (0 => new Bugzilla::User());
+    my %updatedbugs;
+
     # Lock tables during the check+removal session.
     # XXX: if there was some change on these tables after the deletion
     #      confirmation checks, we may do something here we haven't warned
     #      about.
-    $dbh->bz_lock_tables('products READ',
+    $dbh->bz_lock_tables('bugs WRITE',
+                         'bugs_activity WRITE',
+                         'attachments READ',
+                         'fielddefs READ',
+                         'products READ',
                          'components READ',
                          'logincookies WRITE',
                          'profiles WRITE',
                          'profiles_activity WRITE',
                          'groups READ',
+                         'bug_group_map READ',
                          'user_group_map WRITE',
                          'group_group_map READ',
                          'flags WRITE',
+                         'flagtypes READ',
                          'cc WRITE',
                          'namedqueries WRITE',
                          'tokens WRITE',
@@ -500,21 +501,52 @@ if ($action eq 'search') {
                                  {group  => "editusers",
                                   action => "delete",
                                   object => "users"});
-    canSeeUser($otherUserID) || ThrowUserError('auth_failure',
-                                               {reason => "not_visible",
-                                                action => "delete",
-                                                object => "user"});
-    productResponsibilities($otherUserID)
+    @{$otherUser->product_responsibilities()}
         && ThrowUserError('user_has_responsibility');
 
     Bugzilla->logout_user_by_id($otherUserID);
 
-    # Reference removals.
-    $dbh->do('UPDATE flags set requestee_id = NULL WHERE requestee_id = ?',
-             undef, $otherUserID);
+    # Get the timestamp for LogActivityEntry.
+    my $timestamp = $dbh->selectrow_array('SELECT NOW()');
+
+    # When we update a bug_activity entry, we update the bug timestamp, too.
+    my $sth_set_bug_timestamp =
+        $dbh->prepare('UPDATE bugs SET delta_ts = ? WHERE bug_id = ?');
+
+    # Reference removals which need LogActivityEntry.
+    my $statement_flagupdate = 'UPDATE flags set requestee_id = NULL
+                                 WHERE bug_id = ?
+                                   AND attach_id %s
+                                   AND requestee_id = ?';
+    my $sth_flagupdate_attachment =
+        $dbh->prepare(sprintf($statement_flagupdate, '= ?'));
+    my $sth_flagupdate_bug =
+        $dbh->prepare(sprintf($statement_flagupdate, 'IS NULL'));
+
+    my $buglist = $dbh->selectall_arrayref('SELECT DISTINCT bug_id, attach_id
+                                              FROM flags
+                                             WHERE requestee_id = ?',
+                                           undef, $otherUserID);
+
+    foreach (@$buglist) {
+        my ($bug_id, $attach_id) = @$_;
+        my @old_summaries = Bugzilla::Flag::snapshot($bug_id, $attach_id);
+        if ($attach_id) {
+            $sth_flagupdate_attachment->execute($bug_id, $attach_id, $otherUserID);
+        }
+        else {
+            $sth_flagupdate_bug->execute($bug_id, $otherUserID);
+        }
+        my @new_summaries = Bugzilla::Flag::snapshot($bug_id, $attach_id);
+        # Let update_activity do all the dirty work, including setting
+        # the bug timestamp.
+        Bugzilla::Flag::update_activity($bug_id, $attach_id,
+                                        $dbh->quote($timestamp),
+                                        \@old_summaries, \@new_summaries);
+        $updatedbugs{$bug_id} = 1;
+    }
 
     # Simple deletions in referred tables.
-    $dbh->do('DELETE FROM cc WHERE who = ?', undef, $otherUserID);
     $dbh->do('DELETE FROM logincookies WHERE userid = ?', undef, $otherUserID);
     $dbh->do('DELETE FROM namedqueries WHERE userid = ?', undef, $otherUserID);
     $dbh->do('DELETE FROM profiles_activity WHERE userid = ? OR who = ?', undef,
@@ -526,7 +558,19 @@ if ($action eq 'search') {
     $dbh->do('DELETE FROM watch WHERE watcher = ? OR watched = ?', undef,
              ($otherUserID, $otherUserID));
 
-    # More complex deletions in referred tables.
+    # Deletions in referred tables which need LogActivityEntry.
+    $buglist = $dbh->selectcol_arrayref('SELECT bug_id FROM cc
+                                          WHERE who = ?',
+                                        undef, $otherUserID);
+    $dbh->do('DELETE FROM cc WHERE who = ?', undef, $otherUserID);
+    foreach my $bug_id (@$buglist) {
+        LogActivityEntry($bug_id, 'cc', $otherUser->login, '', $userid,
+                         $timestamp);
+        $sth_set_bug_timestamp->execute($timestamp, $bug_id);
+        $updatedbugs{$bug_id} = 1;
+    }
+
+    # Even more complex deletions in referred tables.
     my $id;
 
     # 1) Series
@@ -570,6 +614,53 @@ if ($action eq 'search') {
         $sth_deleteWhineEvent->execute($id);
     }
 
+    # 3) Bugs
+    # 3.1) fall back to the default assignee
+    $buglist = $dbh->selectall_arrayref(
+        'SELECT bug_id, initialowner
+         FROM bugs
+         INNER JOIN components ON components.id = bugs.component_id
+         WHERE assigned_to = ?', undef, $otherUserID);
+
+    my $sth_updateAssignee = $dbh->prepare(
+        'UPDATE bugs SET assigned_to = ?, delta_ts = ? WHERE bug_id = ?');
+
+    foreach my $bug (@$buglist) {
+        my ($bug_id, $default_assignee_id) = @$bug;
+        $sth_updateAssignee->execute($default_assignee_id,
+                                     $timestamp, $bug_id);
+        $updatedbugs{$bug_id} = 1;
+        $default_assignee_id ||= 0;
+        $usercache{$default_assignee_id} ||=
+            new Bugzilla::User($default_assignee_id);
+        LogActivityEntry($bug_id, 'assigned_to', $otherUser->login,
+                         $usercache{$default_assignee_id}->login,
+                         $userid, $timestamp);
+    }
+
+    # 3.2) fall back to the default QA contact
+    $buglist = $dbh->selectall_arrayref(
+        'SELECT bug_id, initialqacontact
+         FROM bugs
+         INNER JOIN components ON components.id = bugs.component_id
+         WHERE qa_contact = ?', undef, $otherUserID);
+
+    my $sth_updateQAcontact = $dbh->prepare(
+        'UPDATE bugs SET qa_contact = ?, delta_ts = ? WHERE bug_id = ?');
+
+    foreach my $bug (@$buglist) {
+        my ($bug_id, $default_qa_contact_id) = @$bug;
+        $sth_updateQAcontact->execute($default_qa_contact_id,
+                                      $timestamp, $bug_id);
+        $updatedbugs{$bug_id} = 1;
+        $default_qa_contact_id ||= 0;
+        $usercache{$default_qa_contact_id} ||=
+            new Bugzilla::User($default_qa_contact_id);
+        LogActivityEntry($bug_id, 'qa_contact', $otherUser->login,
+                         $usercache{$default_qa_contact_id}->login,
+                         $userid, $timestamp);
+    }
+
     # Finally, remove the user account itself.
     $dbh->do('DELETE FROM profiles WHERE userid = ?', undef, $otherUserID);
 
@@ -577,10 +668,16 @@ if ($action eq 'search') {
 
     $vars->{'message'} = 'account_deleted';
     $vars->{'otheruser'}{'login'} = $otherUserLogin;
-    $vars->{'restrictablegroups'} = groupsUserMayBless($user, 'id', 'name');
+    $vars->{'restrictablegroups'} = $user->bless_groups();
     $template->process('admin/users/search.html.tmpl', $vars)
        || ThrowTemplateError($template->error());
 
+    # Send mail about what we've done to bugs.
+    # The deleted user is not notified of the changes.
+    foreach (keys(%updatedbugs)) {
+        Bugzilla::BugMail::Send($_);
+    }
+
 ###########################################################################
 } else {
     $vars->{'action'} = $action;
@@ -607,46 +704,6 @@ sub visibleGroupsAsString {
     return join(', ', @{$user->visible_groups_direct()});
 }
 
-# Give a list of IDs of groups the user may bless.
-sub groupsUserMayBless {
-    my $user = shift;
-    my $fieldList = join(', ', @_);
-    my $query;
-    my $connector;
-    my @bindValues;
-
-    $user->derive_groups(1);
-
-    if ($editusers) {
-        $query = "SELECT DISTINCT $fieldList FROM groups";
-        $connector = 'WHERE';
-    } else {
-        $query = qq{SELECT DISTINCT $fieldList
-                    FROM groups
-                    LEFT JOIN user_group_map AS ugm
-                           ON groups.id = ugm.group_id
-                    LEFT JOIN group_group_map AS ggm
-                           ON ggm.member_id = ugm.group_id
-                          AND ggm.grant_type = ?
-                    WHERE user_id = ?
-                      AND (ugm.isbless = 1 OR groups.id = ggm.grantor_id)
-                   };
-        @bindValues = (GROUP_BLESS, $userid);
-        $connector = 'AND';
-    }
-
-    # If visibilitygroups are used, restrict the set of groups.
-    if (Param('usevisibilitygroups')) {
-        # Users need to see a group in order to bless it.
-        my $visibleGroups = visibleGroupsAsString() || return {};
-        $query .= " $connector id in ($visibleGroups)";
-    }
-
-    $query .= ' ORDER BY name';
-
-    return $dbh->selectall_arrayref($query, {'Slice' => {}}, @bindValues);
-}
-
 # Determine whether the user can see a user. (Checks for existence, too.)
 sub canSeeUser {
     my $otherUserID = shift;
@@ -672,41 +729,18 @@ sub canSeeUser {
     return $dbh->selectrow_array($query, undef, $otherUserID);
 }
 
-# Retrieve product responsibilities, usable for both display and verification.
-sub productResponsibilities {
-    my $userid = shift;
-    my $h = $dbh->selectall_arrayref(
-           qq{SELECT products.name AS productname,
-                     components.name AS componentname,
-                     initialowner,
-                     initialqacontact
-              FROM products, components
-              WHERE products.id = components.product_id
-                AND ? IN (initialowner, initialqacontact)
-             },
-           {'Slice' => {}}, $userid);
-
-    if (@$h) {
-        return $h;
-    } else {
-        return undef;
-    }
-}
-
 # Retrieve user data for the user editing form. User creation and user
 # editing code rely on this to call derive_groups().
 sub userDataToVars {
-    my $userid = shift;
-    my $user = new Bugzilla::User($userid);
+    my $otheruserid = shift;
+    my $otheruser = new Bugzilla::User($otheruserid);
     my $query;
     my $dbh = Bugzilla->dbh;
 
-    $user->derive_groups();
+    $otheruser->derive_groups();
 
-    $vars->{'otheruser'} = $user;
-    $vars->{'groups'} = groupsUserMayBless($user, 'id', 'name', 'description');
-    $vars->{'disabledtext'} = $dbh->selectrow_array(
-        'SELECT disabledtext FROM profiles WHERE userid = ?', undef, $userid);
+    $vars->{'otheruser'} = $otheruser;
+    $vars->{'groups'} = $user->bless_groups();
 
     $vars->{'permissions'} = $dbh->selectall_hashref(
         qq{SELECT id,
@@ -737,10 +771,10 @@ sub userDataToVars {
                  AND directbless.grant_type = ?
           } . $dbh->sql_group_by('id'),
         'id', undef,
-        ($userid, GRANT_DIRECT,
-         $userid, GRANT_REGEXP,
-         $userid, GRANT_DERIVED,
-         $userid, GRANT_DIRECT));
+        ($otheruserid, GRANT_DIRECT,
+         $otheruserid, GRANT_REGEXP,
+         $otheruserid, GRANT_DERIVED,
+         $otheruserid, GRANT_DIRECT));
 
     # Find indirect bless permission.
     $query = qq{SELECT groups.id
@@ -751,7 +785,8 @@ sub userDataToVars {
                   AND ugm.isbless = 0
                   AND ggm.grant_type = ?
                } . $dbh->sql_group_by('id');
-    foreach (@{$dbh->selectall_arrayref($query, undef, ($userid, GROUP_BLESS))}) {
+    foreach (@{$dbh->selectall_arrayref($query, undef,
+                                        ($otheruserid, GROUP_BLESS))}) {
         # Merge indirect bless permissions into permission variable.
         $vars->{'permissions'}{${$_}[0]}{'indirectbless'} = 1;
     }
diff --git a/editvalues.cgi b/editvalues.cgi
index 4a99efab8247a2219f4cf2fd35043fa71a65f39b..abeab549a8b082503f4bb195c8530cf3d416a5eb 100644
--- a/editvalues.cgi
+++ b/editvalues.cgi
@@ -11,7 +11,7 @@
 #
 # The Original Code is the Bugzilla Bug Tracking System.
 #
-# Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
 
 # This is a script to edit the values of fields that have drop-down
 # or select boxes. It is largely a copy of editmilestones.cgi, but 
@@ -20,6 +20,8 @@
 use strict;
 use lib ".";
 
+require "CGI.pl";
+
 use Bugzilla;
 use Bugzilla::Util;
 use Bugzilla::Error;
@@ -355,8 +357,8 @@ if ($action eq 'update') {
         }
         trick_taint($value);
 
-        $dbh->do("UPDATE bugs SET $field = ?, delta_ts = NOW()
-                   WHERE $field = ?", undef, $value, $valueold);
+        $dbh->do("UPDATE bugs SET $field = ? WHERE $field = ?",
+                 undef, $value, $valueold);
 
         $dbh->do("UPDATE $field SET value = ? WHERE value = ?",
                  undef, $value, $valueold);
diff --git a/editwhines.cgi b/editwhines.cgi
index e65a585d02fb3f8be056d48e09caae421643c21f..f7e773fcc78f940c688f1a908194188c999f14fb 100755
--- a/editwhines.cgi
+++ b/editwhines.cgi
@@ -203,7 +203,7 @@ if ($cgi->param('update')) {
 
             for my $sid (@scheduleids) {
                 if ($cgi->param("remove_schedule_$sid")) {
-                    # having the owner id in here is a security failsafe
+                    # having the assignee id in here is a security failsafe
                     $sth = $dbh->prepare("SELECT whine_schedules.id " .
                                          "FROM whine_schedules " .
                                          "LEFT JOIN whine_events " .
@@ -221,23 +221,14 @@ 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_mailto      = $cgi->param("orig_mailto_$sid");
-                    my $mailto        = $cgi->param("mailto_$sid");
-                    my $o_mailto_type = lc $cgi->param("orig_mailto_type_$sid");
-                    my $mailto_type   = $cgi->param("mailto_type_$sid");
-
-                    $o_day         = '' unless length($o_day);
-                    $o_time        = '' unless length($o_time);
-                    $o_mailto      = '' unless length($o_mailto);
-                    $o_mailto_type = '' unless length($o_mailto_type);
-                    $day           = '' unless length($day);
-                    $time          = '' unless length($time);
-                    $mailto        = '' unless length($mailto);
-                    $mailto_type   = '' unless length($mailto_type);
+                    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_mailto      = $cgi->param("orig_mailto_$sid") || '';
+                    my $mailto        = $cgi->param("mailto_$sid") || '';
+                    my $o_mailto_type = $cgi->param("orig_mailto_type_$sid") || 0;
+                    my $mailto_type   = $cgi->param("mailto_type_$sid") || 0;
 
                     my $mailto_id = $userid;
 
@@ -246,19 +237,26 @@ if ($cgi->param('update')) {
                         if ($mailto_type == MAILTO_USER) {
                             # detaint
                             my $emailregexp = Param('emailregexp');
-                            $mailto =~ /($emailregexp)/;
-                            $mailto =~ $1;
-                            $mailto_id = login_to_id($mailto);
+                            if ($mailto =~ /($emailregexp)/) {
+                                $mailto_id = login_to_id($1);
+                            }
+                            else {
+                                ThrowUserError("illegal_email_address", 
+                                               { addr => $mailto });
+                            }
                         }
                         elsif ($mailto_type == MAILTO_GROUP) {
                             # detaint the group parameter
-                            $mailto =~ /^([0-9a-z_\-\.]+)/i;
-                            my $group = $1;
-
-                            $mailto_id = Bugzilla::Group::ValidateGroupName(
-                                $group, ($user));
-                            $mailto_id || ThrowUserError(
-                                'invalid_group_name', {name => $group});
+                            if ($mailto =~ /^([0-9a-z_\-\.]+)$/i) {
+                                $mailto_id = Bugzilla::Group::ValidateGroupName(
+                                                 $1, ($user)) || 
+                                             ThrowUserError(
+                                                 'invalid_group_name', 
+                                                 { name => $1 });
+                            } else {
+                                ThrowUserError('invalid_group_name',
+                                               { name => $mailto });
+                            }
                         }
                         else {
                             # bad value, so it will just mail to the whine
@@ -271,11 +269,11 @@ if ($cgi->param('update')) {
 
                     if ( ($o_day  ne $day) ||
                          ($o_time ne $time) ||
-                         ($o_mailto != $mailto) ||
+                         ($o_mailto ne $mailto) ||
                          ($o_mailto_type != $mailto_type) ){
 
-                        trick_taint($day) if length($day);
-                        trick_taint($time) if length($time);
+                        trick_taint($day);
+                        trick_taint($time);
 
                         # the schedule table must be locked
                         $sth = $dbh->prepare("UPDATE whine_schedules " .
@@ -318,42 +316,25 @@ if ($cgi->param('update')) {
                     }
                 }
                 else {
-                    my $o_sort      = $cgi->param("orig_query_sort_$qid");
-                    my $sort        = $cgi->param("query_sort_$qid");
-                    my $o_queryname = $cgi->param("orig_query_name_$qid");
-                    my $queryname   = $cgi->param("query_name_$qid");
-                    my $o_title     = $cgi->param("orig_query_title_$qid");
-                    my $title       = $cgi->param("query_title_$qid");
+                    my $o_sort      = $cgi->param("orig_query_sort_$qid") || 0;
+                    my $sort        = $cgi->param("query_sort_$qid") || 0;
+                    my $o_queryname = $cgi->param("orig_query_name_$qid") || '';
+                    my $queryname   = $cgi->param("query_name_$qid") || '';
+                    my $o_title     = $cgi->param("orig_query_title_$qid") || '';
+                    my $title       = $cgi->param("query_title_$qid") || '';
                     my $o_onemailperbug =
-                            $cgi->param("orig_query_onemailperbug_$qid");
+                            $cgi->param("orig_query_onemailperbug_$qid") || 0;
                     my $onemailperbug   =
-                            $cgi->param("query_onemailperbug_$qid");
-
-                    $o_sort          = '' unless length($o_sort);
-                    $o_queryname     = '' unless length($o_queryname);
-                    $o_title         = '' unless length($o_title);
-                    $o_onemailperbug = '' unless length($o_onemailperbug);
-                    $sort            = '' unless length($sort);
-                    $queryname       = '' unless length($queryname);
-                    $title           = '' unless length($title);
-                    $onemailperbug   = '' unless length($onemailperbug);
-
-                    if ($onemailperbug eq 'on') {
-                        $onemailperbug = 1;
-                    }
-                    elsif ($onemailperbug eq 'off') {
-                        $onemailperbug = 0;
-                    }
+                            $cgi->param("query_onemailperbug_$qid") ? 1 : 0;
 
-                    if ( ($o_sort ne $sort) ||
+                    if ( ($o_sort != $sort) ||
                          ($o_queryname ne $queryname) ||
-                         ($o_onemailperbug xor $onemailperbug) ||
+                         ($o_onemailperbug != $onemailperbug) ||
                          ($o_title ne $title) ){
 
-                        detaint_natural($sort)      if length $sort;
-                        trick_taint($queryname)     if length $queryname;
-                        trick_taint($title)         if length $title;
-                        trick_taint($onemailperbug) if length $onemailperbug;
+                        detaint_natural($sort);
+                        trick_taint($queryname);
+                        trick_taint($title);
 
                         $sth = $dbh->prepare("UPDATE whine_queries " .
                                              "SET sortkey=?, " .
@@ -471,8 +452,8 @@ sub get_events {
     $sth->execute($userid);
     while (my ($ev, $sub, $bod) = $sth->fetchrow_array) {
         $events->{$ev} = {
-            'subject' => $sub,
-            'body' => $bod,
+            'subject' => $sub || '',
+            'body' => $bod || '',
         };
     }
     return $events;
diff --git a/enter_bug.cgi b/enter_bug.cgi
index f3437b7ed0d187040757e1f82f9283fc1de569bd..00f790de5df0afd304bb46d1c35b70459005831d 100755
--- a/enter_bug.cgi
+++ b/enter_bug.cgi
@@ -161,118 +161,150 @@ sub formvalue {
     return $cgi->param($name) || $default || "";
 }
 
+# Takes the name of a field and a list of possible values for that 
+# field. Returns the first value in the list that is actually a 
+# valid value for that field.
+# The field should be named after its DB table.
+# Returns undef if none of the platforms match.
+sub pick_valid_field_value (@) {
+    my ($field, @values) = @_;
+    my $dbh = Bugzilla->dbh;
+
+    foreach my $value (@values) {
+        return $value if $dbh->selectrow_array(
+            "SELECT 1 FROM $field WHERE value = ?", undef, $value); 
+    }
+    return undef;
+}
+
 sub pickplatform {
     return formvalue("rep_platform") if formvalue("rep_platform");
 
+    my @platform;
+
     if (Param('defaultplatform')) {
-        return Param('defaultplatform');
+        @platform = Param('defaultplatform');
     } else {
+        # If @platform is a list, this function will return the first
+        # item in the list that is a valid platform choice. If
+        # no choice is valid, we return "Other".
         for ($ENV{'HTTP_USER_AGENT'}) {
         #PowerPC
-            /\(.*PowerPC.*\)/i && do {return "Macintosh";};
-            /\(.*PPC.*\)/ && do {return "Macintosh";};
-            /\(.*AIX.*\)/ && do {return "Macintosh";};
+            /\(.*PowerPC.*\)/i && do {@platform = "Macintosh"; last;};
+            /\(.*PPC.*\)/ && do {@platform = "Macintosh"; last;};
+            /\(.*AIX.*\)/ && do {@platform = "Macintosh"; last;};
         #Intel x86
-            /\(.*[ix0-9]86.*\)/ && do {return "PC";};
+            /\(.*[ix0-9]86.*\)/ && do {@platform = "PC"; last;};
         #Versions of Windows that only run on Intel x86
-            /\(.*Win(?:dows )[39M].*\)/ && do {return "PC";};
-            /\(.*Win(?:dows )16.*\)/ && do {return "PC";};
+            /\(.*Win(?:dows )[39M].*\)/ && do {@platform = "PC"; last};
+            /\(.*Win(?:dows )16.*\)/ && do {@platform = "PC"; last;};
         #Sparc
-            /\(.*sparc.*\)/ && do {return "Sun";};
-            /\(.*sun4.*\)/ && do {return "Sun";};
+            /\(.*sparc.*\)/ && do {@platform = "Sun"; last;};
+            /\(.*sun4.*\)/ && do {@platform = "Sun"; last;};
         #Alpha
-            /\(.*AXP.*\)/i && do {return "DEC";};
-            /\(.*[ _]Alpha.\D/i && do {return "DEC";};
-            /\(.*[ _]Alpha\)/i && do {return "DEC";};
+            /\(.*AXP.*\)/i && do {@platform = "DEC"; last;};
+            /\(.*[ _]Alpha.\D/i && do {@platform = "DEC"; last;};
+            /\(.*[ _]Alpha\)/i && do {@platform = "DEC"; last;};
         #MIPS
-            /\(.*IRIX.*\)/i && do {return "SGI";};
-            /\(.*MIPS.*\)/i && do {return "SGI";};
+            /\(.*IRIX.*\)/i && do {@platform = "SGI"; last;};
+            /\(.*MIPS.*\)/i && do {@platform = "SGI"; last;};
         #68k
-            /\(.*68K.*\)/ && do {return "Macintosh";};
-            /\(.*680[x0]0.*\)/ && do {return "Macintosh";};
+            /\(.*68K.*\)/ && do {@platform = "Macintosh"; last;};
+            /\(.*680[x0]0.*\)/ && do {@platform = "Macintosh"; last;};
         #HP
-            /\(.*9000.*\)/ && do {return "HP";};
+            /\(.*9000.*\)/ && do {@platform = "HP"; last;};
         #ARM
-#            /\(.*ARM.*\) && do {return "ARM";};
+#            /\(.*ARM.*\) && do {$platform = "ARM";};
         #Stereotypical and broken
-            /\(.*Macintosh.*\)/ && do {return "Macintosh";};
-            /\(.*Mac OS [89].*\)/ && do {return "Macintosh";};
-            /\(Win.*\)/ && do {return "PC";};
-            /\(.*Win(?:dows[ -])NT.*\)/ && do {return "PC";};
-            /\(.*OSF.*\)/ && do {return "DEC";};
-            /\(.*HP-?UX.*\)/i && do {return "HP";};
-            /\(.*IRIX.*\)/i && do {return "SGI";};
-            /\(.*(SunOS|Solaris).*\)/ && do {return "Sun";};
+            /\(.*Macintosh.*\)/ && do {@platform = "Macintosh"; last;};
+            /\(.*Mac OS [89].*\)/ && do {@platform = "Macintosh"; last;};
+            /\(Win.*\)/ && do {@platform = "PC"; last;};
+            /\(.*Win(?:dows[ -])NT.*\)/ && do {@platform = "PC"; last;};
+            /\(.*OSF.*\)/ && do {@platform = "DEC"; last;};
+            /\(.*HP-?UX.*\)/i && do {@platform = "HP"; last;};
+            /\(.*IRIX.*\)/i && do {@platform = "SGI"; last;};
+            /\(.*(SunOS|Solaris).*\)/ && do {@platform = "Sun"; last;};
         #Braindead old browsers who didn't follow convention:
-            /Amiga/ && do {return "Macintosh";};
-            /WinMosaic/ && do {return "PC";};
+            /Amiga/ && do {@platform = "Macintosh"; last;};
+            /WinMosaic/ && do {@platform = "PC"; last;};
         }
-        return "Other";
     }
+
+    return pick_valid_field_value('rep_platform', @platform) || "Other";
 }
 
 sub pickos {
     if (formvalue('op_sys') ne "") {
         return formvalue('op_sys');
     }
+
+    my @os;
+
     if (Param('defaultopsys')) {
-        return Param('defaultopsys');
+        @os = Param('defaultopsys');
     } else {
+        # This function will return the first
+        # item in @os that is a valid platform choice. If
+        # no choice is valid, we return "Other".
         for ($ENV{'HTTP_USER_AGENT'}) {
-            /\(.*IRIX.*\)/ && do {return "IRIX";};
-            /\(.*OSF.*\)/ && do {return "OSF/1";};
-            /\(.*Linux.*\)/ && do {return "Linux";};
-            /\(.*Solaris.*\)/ && do {return "Solaris";};
-            /\(.*SunOS 5.*\)/ && do {return "Solaris";};
-            /\(.*SunOS.*sun4u.*\)/ && do {return "Solaris";};
-            /\(.*SunOS.*\)/ && do {return "SunOS";};
-            /\(.*HP-?UX.*\)/ && do {return "HP-UX";};
-            /\(.*BSD\/(?:OS|386).*\)/ && do {return "BSDI";};
-            /\(.*FreeBSD.*\)/ && do {return "FreeBSD";};
-            /\(.*OpenBSD.*\)/ && do {return "OpenBSD";};
-            /\(.*NetBSD.*\)/ && do {return "NetBSD";};
-            /\(.*BeOS.*\)/ && do {return "BeOS";};
-            /\(.*AIX.*\)/ && do {return "AIX";};
-            /\(.*OS\/2.*\)/ && do {return "OS/2";};
-            /\(.*QNX.*\)/ && do {return "Neutrino";};
-            /\(.*VMS.*\)/ && do {return "OpenVMS";};
-            /\(.*Windows XP.*\)/ && do {return "Windows XP";};
-            /\(.*Windows NT 5\.2.*\)/ && do {return "Windows Server 2003";};
-            /\(.*Windows NT 5\.1.*\)/ && do {return "Windows XP";};
-            /\(.*Windows 2000.*\)/ && do {return "Windows 2000";};
-            /\(.*Windows NT 5.*\)/ && do {return "Windows 2000";};
-            /\(.*Win.*9[8x].*4\.9.*\)/ && do {return "Windows ME";};
-            /\(.*Win(?:dows )M[Ee].*\)/ && do {return "Windows ME";};
-            /\(.*Win(?:dows )98.*\)/ && do {return "Windows 98";};
-            /\(.*Win(?:dows )95.*\)/ && do {return "Windows 95";};
-            /\(.*Win(?:dows )16.*\)/ && do {return "Windows 3.1";};
-            /\(.*Win(?:dows[ -])NT.*\)/ && do {return "Windows NT";};
-            /\(.*Windows.*NT.*\)/ && do {return "Windows NT";};
-            /\(.*32bit.*\)/ && do {return "Windows 95";};
-            /\(.*16bit.*\)/ && do {return "Windows 3.1";};
-            /\(.*Mac OS 9.*\)/ && do {return "Mac System 9.x";};
-            /\(.*Mac OS 8\.6.*\)/ && do {return "Mac System 8.6";};
-            /\(.*Mac OS 8\.5.*\)/ && do {return "Mac System 8.5";};
+            /\(.*IRIX.*\)/ && do {@os = "IRIX"; last;};
+            /\(.*OSF.*\)/ && do {@os = "OSF/1"; last;};
+            /\(.*Linux.*\)/ && do {@os = "Linux"; last;};
+            /\(.*Solaris.*\)/ && do {@os = "Solaris"; last;};
+            /\(.*SunOS 5.*\)/ && do {@os = "Solaris"; last;};
+            /\(.*SunOS.*sun4u.*\)/ && do {@os = "Solaris"; last;};
+            /\(.*SunOS.*\)/ && do {@os = "SunOS"; last;};
+            /\(.*HP-?UX.*\)/ && do {@os = "HP-UX"; last;};
+            /\(.*BSD\/(?:OS|386).*\)/ && do {@os = "BSDI"; last;};
+            /\(.*FreeBSD.*\)/ && do {@os = "FreeBSD"; last;};
+            /\(.*OpenBSD.*\)/ && do {@os = "OpenBSD"; last;};
+            /\(.*NetBSD.*\)/ && do {@os = "NetBSD"; last;};
+            /\(.*BeOS.*\)/ && do {@os = "BeOS"; last;};
+            /\(.*AIX.*\)/ && do {@os = "AIX"; last;};
+            /\(.*OS\/2.*\)/ && do {@os = "OS/2"; last;};
+            /\(.*QNX.*\)/ && do {@os = "Neutrino"; last;};
+            /\(.*VMS.*\)/ && do {@os = "OpenVMS"; last;};
+            /\(.*Windows XP.*\)/ && do {@os = "Windows XP"; last;};
+            /\(.*Windows NT 5\.2.*\)/ && do {@os = "Windows Server 2003"; last;};
+            /\(.*Windows NT 5\.1.*\)/ && do {@os = "Windows XP"; last;};
+            /\(.*Windows 2000.*\)/ && do {@os = "Windows 2000"; last;};
+            /\(.*Windows NT 5.*\)/ && do {@os = "Windows 2000"; last;};
+            /\(.*Win.*9[8x].*4\.9.*\)/ && do {@os = "Windows ME"; last;};
+            /\(.*Win(?:dows )M[Ee].*\)/ && do {@os = "Windows ME"; last;};
+            /\(.*Win(?:dows )98.*\)/ && do {@os = "Windows 98"; last;};
+            /\(.*Win(?:dows )95.*\)/ && do {@os = "Windows 95"; last;};
+            /\(.*Win(?:dows )16.*\)/ && do {@os = "Windows 3.1"; last;};
+            /\(.*Win(?:dows[ -])NT.*\)/ && do {@os = "Windows NT"; last;};
+            /\(.*Windows.*NT.*\)/ && do {@os = "Windows NT"; last;};
+            /\(.*32bit.*\)/ && do {@os = "Windows 95"; last;};
+            /\(.*16bit.*\)/ && do {@os = "Windows 3.1"; last;};
+            /\(.*Mac OS 9.*\)/ && do {@os = "Mac System 9.x"; last;};
+            /\(.*Mac OS 8\.6.*\)/ && do {@os = "Mac System 8.6"; last;};
+            /\(.*Mac OS 8\.5.*\)/ && do {@os = "Mac System 8.5"; last;};
         # Bugzilla doesn't have an entry for 8.1
-            /\(.*Mac OS 8\.1.*\)/ && do {return "Mac System 8.0";};
-            /\(.*Mac OS 8\.0.*\)/ && do {return "Mac System 8.0";};
-            /\(.*Mac OS 8[^.].*\)/ && do {return "Mac System 8.0";};
-            /\(.*Mac OS 8.*\)/ && do {return "Mac System 8.6";};
-            /\(.*Mac OS X.*\)/ && do {return "Mac OS X 10.0";};
-            /\(.*Darwin.*\)/ && do {return "Mac OS X 10.0";};
+            /\(.*Mac OS 8\.1.*\)/ && do {@os = "Mac System 8.0"; last;};
+            /\(.*Mac OS 8\.0.*\)/ && do {@os = "Mac System 8.0"; last;};
+            /\(.*Mac OS 8[^.].*\)/ && do {@os = "Mac System 8.0"; last;};
+            /\(.*Mac OS 8.*\)/ && do {@os = "Mac System 8.6"; last;};
+            /\(.*Mac OS X.*\)/ && do {@os = "Mac OS X 10.0"; last;};
+            /\(.*Darwin.*\)/ && do {@os = "Mac OS X 10.0"; last;};
         # Silly
-            /\(.*Mac.*PowerPC.*\)/ && do {return "Mac System 9.x";};
-            /\(.*Mac.*PPC.*\)/ && do {return "Mac System 9.x";};
-            /\(.*Mac.*68k.*\)/ && do {return "Mac System 8.0";};
+            /\(.*Mac.*PowerPC.*\)/ && do {@os = "Mac System 9.x"; last;};
+            /\(.*Mac.*PPC.*\)/ && do {@os = "Mac System 9.x"; last;};
+            /\(.*Mac.*68k.*\)/ && do {@os = "Mac System 8.0"; last;};
         # Evil
-            /Amiga/i && do {return "other";};
-            /WinMosaic/ && do {return "Windows 95";};
-            /\(.*PowerPC.*\)/ && do {return "Mac System 9.x";};
-            /\(.*PPC.*\)/ && do {return "Mac System 9.x";};
-            /\(.*68K.*\)/ && do {return "Mac System 8.0";};
+            /Amiga/i && do {@os = "Other"; last;};
+            /WinMosaic/ && do {@os = "Windows 95"; last;};
+            /\(.*PowerPC.*\)/ && do {@os = "Mac System 9.x"; last;};
+            /\(.*PPC.*\)/ && do {@os = "Mac System 9.x"; last;};
+            /\(.*68K.*\)/ && do {@os = "Mac System 8.0"; last;};
         }
-        return "other";
     }
+
+    push(@os, "Windows") if grep(/^Windows /, @os);
+    push(@os, "Mac OS") if grep(/^Mac /, @os);
+
+    return pick_valid_field_value('op_sys', @os) || "Other";
 }
 ##############################################################################
 # End of subroutines
diff --git a/globals.pl b/globals.pl
index 009f93ee94f0e8b3c6fe858b099482610fb19634..71d2bbe4706adb6f98d9bef22e64f8eca5c9e851 100644
--- a/globals.pl
+++ b/globals.pl
@@ -24,7 +24,7 @@
 #                 Christopher Aillon <christopher@aillon.com>
 #                 Joel Peshkin <bugreport@peshkin.net>
 #                 Dave Lawrence <dkl@redhat.com>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 # Contains some global variables and routines used throughout bugzilla.
 
@@ -36,7 +36,6 @@ use Bugzilla::Util;
 # Bring ChmodDataFile in until this is all moved to the module
 use Bugzilla::Config qw(:DEFAULT ChmodDataFile $localconfig $datadir);
 use Bugzilla::BugMail;
-use Bugzilla::Auth;
 use Bugzilla::User;
 
 # Shut up misguided -w warnings about "used only once".  For some reason,
@@ -310,7 +309,8 @@ sub GenerateVersionTable {
     print $fh "1;\n";
     close $fh;
 
-    rename $tmpname, "$datadir/versioncache" || die "Can't rename $tmpname to versioncache";
+    rename ($tmpname, "$datadir/versioncache")
+        || die "Can't rename $tmpname to versioncache";
     ChmodDataFile("$datadir/versioncache", 0666);
 }
 
@@ -468,19 +468,30 @@ sub CanEnterProduct {
     }
 
     # Check if the product is open for new bugs and has
-    # at least one component.
-    my $allow_new_bugs =
-        $dbh->selectrow_array("SELECT CASE WHEN disallownew = 0 THEN 1 ELSE 0 END
-                               FROM products INNER JOIN components
-                               ON components.product_id = products.id
-                               WHERE products.name = ? " .
-                               $dbh->sql_limit(1),
-                               undef, $productname);
-
-    # Return 1 if the user can enter bugs into that product;
-    # return 0 if the product is closed for new bug entry;
-    # return undef if the product has no component.
-    return $allow_new_bugs;
+    # at least one component and has at least one version.
+    my ($allow_new_bugs, $has_version) = 
+        $dbh->selectrow_array('SELECT CASE WHEN disallownew = 0 THEN 1 ELSE 0 END, ' .
+                              'versions.value IS NOT NULL ' .
+                              'FROM products INNER JOIN components ' .
+                              'ON components.product_id = products.id ' .
+                              'LEFT JOIN versions ' .
+                              'ON versions.product_id = products.id ' .
+                              'WHERE products.name = ? ' .
+                              $dbh->sql_limit(1), undef, $productname);
+
+
+    if (defined $verbose) {
+        # Return (undef, undef) if the product has no components,
+        # Return (?,     0)     if the product has no versions,
+        # Return (0,     ?)     if the product is closed for new bug entry,
+        # Return (1,     1)     if the user can enter bugs into the product,
+        return ($allow_new_bugs, $has_version);
+    } else {
+        # Return undef if the product has no components
+        # Return 0 if the product has no versions, or is closed for bug entry
+        # Return 1 if the user can enter bugs into the product
+        return ($allow_new_bugs && $has_version);
+    }
 }
 
 # Call CanEnterProduct() and display an error message
@@ -491,17 +502,19 @@ sub CanEnterProductOrWarn {
     if (!defined($product)) {
         ThrowUserError("no_products");
     }
-    my $status = CanEnterProduct($product, 1);
+    my ($allow_new_bugs, $has_version) = CanEnterProduct($product, 1);
     trick_taint($product);
 
-    if (!defined($status)) {
-        ThrowUserError("no_components", { product => $product});
-    } elsif (!$status) {
+    if (!defined $allow_new_bugs) {
+        ThrowUserError("missing_component", { product => $product });
+    } elsif (!$allow_new_bugs) {
         ThrowUserError("product_disabled", { product => $product});
-    } elsif ($status < 0) {
+    } elsif ($allow_new_bugs < 0) {
         ThrowUserError("entry_access_denied", { product => $product});
+    } elsif (!$has_version) {
+        ThrowUserError("missing_version", { product => $product });
     }
-    return $status;
+    return 1;
 }
 
 sub GetEnterableProducts {
@@ -794,7 +807,7 @@ sub quoteUrls {
               ~<a href=\"mailto:$2\">$1$2</a>~igx;
 
     # attachment links - handle both cases separately for simplicity
-    $text =~ s~((?:^Created\ an\ |\b)attachment\s*\(id=(\d+)\))
+    $text =~ s~((?:^Created\ an\ |\b)attachment\s*\(id=(\d+)\)(\s\[edit\])?)
               ~($things[$count++] = GetAttachmentLink($2, $1)) &&
                ("\0\0" . ($count-1) . "\0\0")
               ~egmx;
@@ -877,8 +890,13 @@ sub GetAttachmentLink {
     my ($title, $className) = @{$::attachlink{$attachid}};
     # $title will be undefined if the attachment didn't exist in the database.
     if (defined $title) {
-        my $linkval = "attachment.cgi?id=$attachid&amp;action=edit";
-        return qq{<a href="$linkval" class="$className" title="$title">$link_text</a>};
+        $link_text =~ s/ \[edit\]$//;
+        my $linkval = "attachment.cgi?id=$attachid&amp;action=";
+        # Whitespace matters here because these links are in <pre> tags.
+        return qq|<span class="$className">|
+               . qq|<a href="${linkval}view" title="$title">$link_text</a>|
+               . qq| <a href="${linkval}edit" title="$title">[edit]</a>|
+               . qq|</span>|;
     }
     else {
         return qq{$link_text};
@@ -894,8 +912,11 @@ sub GetAttachmentLink {
 
 sub GetBugLink {
     my ($bug_num, $link_text, $comment_num) = @_;
-    $bug_num || return "&lt;missing bug number&gt;";
-    detaint_natural($bug_num) || return "&lt;invalid bug number&gt;";
+    if (! defined $bug_num || $bug_num eq "") {
+        return "&lt;missing bug number&gt;";
+    }
+    my $quote_bug_num = html_quote($bug_num);
+    detaint_natural($bug_num) || return "&lt;invalid bug number: $quote_bug_num&gt;";
 
     # If we've run GetBugLink() for this bug number before, %::buglink
     # will contain an anonymous array ref of relevent values, if not
diff --git a/images/CVS/Entries b/images/CVS/Entries
index d394feae4c7d96a3a8f7db1c21a50d19b9792e31..444102d3e29ec6a93bd5be7e8db4878bf2a3c750 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_19_3
+/padlock.png/1.2/Thu Sep 23 18:08:31 2004/-kb/TBUGZILLA-2_20
 D
diff --git a/images/CVS/Tag b/images/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/images/CVS/Tag
+++ b/images/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/importxml.pl b/importxml.pl
index 8cf9a6179c2eeaacadc2b82d38f1ae4b961ad13d..0d9dcb8683782e1eadee2fa8745ef743f0b5a999 100755
--- a/importxml.pl
+++ b/importxml.pl
@@ -71,7 +71,6 @@ use Bugzilla::User;
 
 require "CGI.pl";
 require "globals.pl";
-$::lockcount = 0;
 
 GetVersionTable();
 
@@ -117,40 +116,6 @@ sub MailMessage {
 
   my $sendmessage = $header . $message . "\n";
   Bugzilla::BugMail::MessageToMTA($sendmessage);
-
-  Log($subject . " sent to: $to");
-}
-
-
-sub Log {
-    my ($str) = (@_);
-    Lock();
-    open(FID, ">>$datadir/maillog") || die "Can't write to $datadir/maillog";
-    print FID time2str("%D %H:%M", time()) . ": $str\n";
-    close FID;
-    Unlock();
-}
-
-sub Lock {
-    if ($::lockcount <= 0) {
-        $::lockcount = 0;
-        open(LOCKFID, ">>$datadir/maillock") || die "Can't open $datadir/maillock: $!";
-        my $val = flock(LOCKFID,2);
-        if (!$val) { # '2' is magic 'exclusive lock' const.
-            print Bugzilla->cgi->header();
-            print "Lock failed: $val\n";
-        }
-        chmod 0666, "$datadir/maillock";
-    }
-    $::lockcount++;
-}
-
-sub Unlock {
-    $::lockcount--;
-    if ($::lockcount <= 0) {
-        flock(LOCKFID,8);       # '8' is magic 'unlock' const.
-        close LOCKFID;
-    }
 }
 
 
@@ -531,13 +496,13 @@ for (my $k=1 ; $k <= $bugqty ; $k++) {
     push (@values, SqlQuote($exporterid) );
     push (@query, "assigned_to");
     $changed_owner = 1;
-    $err .= "The original owner of this bug does not have\n";
+    $err .= "The original assignee of this bug does not have\n";
     $err .= "   an account here. Reassigning to the person who moved\n";
     $err .= "   it here, $exporter.\n";
     if ( $bug_fields{'assigned_to'} ) {
-      $err .= "   Previous owner was $bug_fields{'assigned_to'}.\n";
+      $err .= "   Previous assignee was $bug_fields{'assigned_to'}.\n";
     } else {
-      $err .= "   Previous owner is unknown.\n";
+      $err .= "   Previous assignee is unknown.\n";
     }
   }
 
@@ -550,13 +515,13 @@ for (my $k=1 ; $k <= $bugqty ; $k++) {
     $err .= "Unknown resolution \"$bug_fields{'resolution'}\".\n";
   }
 
-  # if the bug's owner changed, mark the bug NEW, unless a valid 
+  # if the bug's assignee changed, mark the bug NEW, unless a valid 
   # resolution is set, which indicates that the bug should be closed.
   #
   if ( ($changed_owner) && (!$resolution[0]) ) {
     push (@values, SqlQuote("NEW"));
     push (@query, "bug_status");
-    $err .= "Bug assigned to new owner, setting status to \"NEW\".\n";
+    $err .= "Bug reassigned, setting status to \"NEW\".\n";
     $err .= "   Previous status was \"";
     $err .= (defined $bug_fields{'bug_status'})?
                      $bug_fields{'bug_status'}:"unknown";
diff --git a/index.cgi b/index.cgi
index 88393b41787700c13d33f2c8dcc617b1fe2f49ad..124c81b7a3b1bbaef367e4b92d6b05a0bbccdfea 100755
--- a/index.cgi
+++ b/index.cgi
@@ -45,6 +45,12 @@ Bugzilla->login(LOGIN_OPTIONAL);
 ###############################################################################
 
 my $cgi = Bugzilla->cgi;
+# Force to use HTTPS unless Param('ssl') equals 'never'.
+# This is required because the user may want to log in from here.
+if (Param('sslbase') ne '' and Param('ssl') ne 'never') {
+    $cgi->require_https(Param('sslbase'));
+}
+
 my $template = Bugzilla->template;
 
 # Return the appropriate HTTP response headers.
diff --git a/js/CVS/Entries b/js/CVS/Entries
index b0621136b38748de99a65c6e69502c72dd7ad24b..ab104526d617b38eec45740a8222ca5f251b0bff 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_19_3
-/productform.js/1.2/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_19_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
 D
diff --git a/js/CVS/Tag b/js/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/js/CVS/Tag
+++ b/js/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/move.pl b/move.pl
index 7747baaed1481dec3c56501ef851b03dc2c7e8ed..96e964b55e3744ee29ad6a0abc78dc21efb16238 100755
--- a/move.pl
+++ b/move.pl
@@ -36,48 +36,18 @@ use Bugzilla::Bug;
 use Bugzilla::Config qw(:DEFAULT $datadir);
 use Bugzilla::BugMail;
 
-$::lockcount = 0;
+my $cgi = Bugzilla->cgi;
 
 unless ( Param("move-enabled") ) {
+  print $cgi->header();
+  PutHeader("Move Bugs");
   print "\n<P>Sorry. Bug moving is not enabled here. ";
   print "If you need to move a bug, contact " . Param("maintainer");
+  PutFooter();
   exit;
 }
 
-Bugzilla->login(LOGIN_REQUIRED);
-
-my $cgi = Bugzilla->cgi;
-
-sub Log {
-    my ($str) = (@_);
-    Lock();
-    open(FID, ">>$datadir/maillog") || die "Can't write to $datadir/maillog";
-    print FID time2str("%D %H:%M", time()) . ": $str\n";
-    close FID;
-    Unlock();
-}
-
-sub Lock {
-    if ($::lockcount <= 0) {
-        $::lockcount = 0;
-        open(LOCKFID, ">>$datadir/maillock") || die "Can't open $datadir/maillock: $!";
-        my $val = flock(LOCKFID,2);
-        if (!$val) { # '2' is magic 'exclusive lock' const.
-            print $cgi->header();
-            print "Lock failed: $val\n";
-        }
-        chmod 0666, "$datadir/maillock";
-    }
-    $::lockcount++;
-}
-
-sub Unlock {
-    $::lockcount--;
-    if ($::lockcount <= 0) {
-        flock(LOCKFID,8);       # '8' is magic 'unlock' const.
-        close LOCKFID;
-    }
-}
+my $user = Bugzilla->login(LOGIN_REQUIRED);
 
 if (!defined $cgi->param('buglist')) {
   print $cgi->header();
@@ -90,11 +60,7 @@ if (!defined $cgi->param('buglist')) {
   exit;
 }
 
-my $exporter = Bugzilla->user->login;
-my $movers = Param("movers");
-$movers =~ s/\s?,\s?/|/g;
-$movers =~ s/@/\@/g;
-unless ($exporter =~ /($movers)/) {
+unless ($user->is_mover) {
   print $cgi->header();
   PutHeader("Move Bugs");
   print "<P>You do not have permission to move bugs<P>\n";
@@ -103,14 +69,15 @@ unless ($exporter =~ /($movers)/) {
 }
 
 my @bugs;
+my $exporterid = $user->id;
+
+print $cgi->header();
+PutHeader("Move Bugs");
 
-print "<P>\n";
 foreach my $id (split(/:/, scalar($cgi->param('buglist')))) {
-  my $bug = new Bugzilla::Bug($id, $::userid);
+  my $bug = new Bugzilla::Bug($id, $exporterid);
   push @bugs, $bug;
   if (!$bug->error) {
-    my $exporterid = DBNameToIdAndCheck($exporter);
-
     my $fieldid = GetFieldID("bug_status");
     my $cur_status= $bug->bug_status;
     SendSQL("INSERT INTO bugs_activity " .
@@ -132,7 +99,7 @@ foreach my $id (split(/:/, scalar($cgi->param('buglist')))) {
         $comment .= $cgi->param('comment') . "\n\n";
     }
     $comment .= "Bug moved to " . Param("move-to-url") . ".\n\n";
-    $comment .= "If the move succeeded, $exporter will receive a mail\n";
+    $comment .= "If the move succeeded, " . $user->login . " will receive a mail\n";
     $comment .= "containing the number of the new bug in the other database.\n";
     $comment .= "If all went well,  please mark this bug verified, and paste\n";
     $comment .= "in a link to the new bug. Otherwise, reopen this bug.\n";
@@ -140,10 +107,9 @@ foreach my $id (split(/:/, scalar($cgi->param('buglist')))) {
         "($id,  $exporterid, now(), " . SqlQuote($comment) . ")");
 
     print "<P>Bug $id moved to " . Param("move-to-url") . ".<BR>\n";
-    Bugzilla::BugMail::Send($id, { 'changer' => $exporter });
+    Bugzilla::BugMail::Send($id, { 'changer' => $user->login });
   }
 }
-print "<P>\n";
 
 my $buglist = $cgi->param('buglist');
 $buglist =~ s/:/,/g;
@@ -171,6 +137,4 @@ $template->process("bug/show.xml.tmpl", { bugs => \@bugs,
 $msg .= "\n";
 
 Bugzilla::BugMail::MessageToMTA($msg);
-
-my $logstr = "XML: bugs $buglist sent to $to";
-Log($logstr);
+PutFooter();
diff --git a/post_bug.cgi b/post_bug.cgi
index b9d63b3fe9e7b9535fa3b8ede06e4605d77c6d1b..84c74bddd5f604cf2667cd39205dfba34036b683 100755
--- a/post_bug.cgi
+++ b/post_bug.cgi
@@ -140,7 +140,7 @@ if (!UserInGroup("editbugs") || $cgi->param('assigned_to') eq "") {
 
 my @bug_fields = ("version", "rep_platform",
                   "bug_severity", "priority", "op_sys", "assigned_to",
-                  "bug_status", "bug_file_loc", "short_desc",
+                  "bug_status", "everconfirmed", "bug_file_loc", "short_desc",
                   "target_milestone", "status_whiteboard");
 
 if (Param("usebugaliases")) {
@@ -209,6 +209,9 @@ CheckFormFieldDefined($cgi, 'assigned_to');
 CheckFormFieldDefined($cgi, 'bug_file_loc');
 CheckFormFieldDefined($cgi, 'comment');
 
+my $everconfirmed = ($cgi->param('bug_status') eq 'UNCONFIRMED') ? 0 : 1;
+$cgi->param(-name => 'everconfirmed', -value => $everconfirmed);
+
 my @used_fields;
 foreach my $field (@bug_fields) {
     if (defined $cgi->param($field)) {
@@ -216,13 +219,6 @@ foreach my $field (@bug_fields) {
     }
 }
 
-if (defined $cgi->param('bug_status') 
-    && $cgi->param('bug_status') ne 'UNCONFIRMED') 
-{
-    push(@used_fields, "everconfirmed");
-    $cgi->param(-name => 'everconfirmed', -value => 1);
-}
-
 $cgi->param(-name => 'product_id', -value => $product_id);
 push(@used_fields, "product_id");
 $cgi->param(-name => 'component_id', -value => $component_id);
@@ -264,8 +260,7 @@ if ($cgi->param('keywords') && UserInGroup("editbugs")) {
 
 # Check for valid dependency info. 
 foreach my $field ("dependson", "blocked") {
-    if (UserInGroup("editbugs") && defined($cgi->param($field)) &&
-        $cgi->param($field) ne "") {
+    if (UserInGroup("editbugs") && $cgi->param($field)) {
         my @validvalues;
         foreach my $id (split(/[\s,]+/, $cgi->param($field))) {
             next unless $id;
@@ -275,63 +270,12 @@ foreach my $field ("dependson", "blocked") {
         $cgi->param(-name => $field, -value => join(",", @validvalues));
     }
 }
-# Gather the dependecy list, and make sure there are no circular refs
+# Gather the dependency list, and make sure there are no circular refs
 my %deps;
-if (UserInGroup("editbugs") && defined($cgi->param('dependson'))) {
-    my $me = "blocked";
-    my $target = "dependson";
-    my %deptree;
-    for (1..2) {
-        $deptree{$target} = [];
-        my %seen;
-        foreach my $i (split('[\s,]+', $cgi->param($target))) {
-            if (!exists $seen{$i}) {
-                push(@{$deptree{$target}}, $i);
-                $seen{$i} = 1;
-            }
-        }
-        # populate $deps{$target} as first-level deps only.
-        # and find remainder of dependency tree in $deptree{$target}
-        @{$deps{$target}} = @{$deptree{$target}};
-        my @stack = @{$deps{$target}};
-        while (@stack) {
-            my $i = shift @stack;
-            SendSQL("SELECT $target FROM dependencies WHERE $me = " .
-                    SqlQuote($i));
-            while (MoreSQLData()) {
-                my $t = FetchOneColumn();
-                if (!exists $seen{$t}) {
-                    push(@{$deptree{$target}}, $t);
-                    push @stack, $t;
-                    $seen{$t} = 1;
-                } 
-            }
-        }
-        
-        if ($me eq 'dependson') {
-            my @deps   =  @{$deptree{'dependson'}};
-            my @blocks =  @{$deptree{'blocked'}};
-            my @union = ();
-            my @isect = ();
-            my %union = ();
-            my %isect = ();
-            foreach my $b (@deps, @blocks) { $union{$b}++ && $isect{$b}++ }
-            @union = keys %union;
-            @isect = keys %isect;
-            if (@isect > 0) {
-                my $both;
-                foreach my $i (@isect) {
-                    $both = $both . GetBugLink($i, "#" . $i) . " ";
-                }
-
-                ThrowUserError("dependency_loop_multi",
-                               { both => $both });
-            }
-        }
-        my $tmp = $me;
-        $me = $target;
-        $target = $tmp;
-    }
+if (UserInGroup("editbugs")) {
+    %deps = Bugzilla::Bug::ValidateDependencies($cgi->param('dependson'),
+                                                $cgi->param('blocked'),
+                                                undef);
 }
 
 # get current time
@@ -340,8 +284,9 @@ my $timestamp = FetchOneColumn();
 my $sql_timestamp = SqlQuote($timestamp);
 
 # Build up SQL string to add bug.
+# creation_ts will only be set when all other fields are defined.
 my $sql = "INSERT INTO bugs " . 
-  "(" . join(",", @used_fields) . ", reporter, creation_ts, delta_ts, " .
+  "(" . join(",", @used_fields) . ", reporter, delta_ts, " .
   "estimated_time, remaining_time, deadline) " .
   "VALUES (";
 
@@ -355,7 +300,7 @@ $comment = trim($comment);
 # OK except for the fact that it causes e-mail to be suppressed.
 $comment = $comment ? $comment : " ";
 
-$sql .= "$::userid, $sql_timestamp, $sql_timestamp, ";
+$sql .= "$::userid, $sql_timestamp, ";
 
 # Time Tracking
 if (UserInGroup(Param("timetrackinggroup")) &&
@@ -429,6 +374,11 @@ while (MoreSQLData()) {
 }
 
 # Add the bug report to the DB.
+$dbh->bz_lock_tables('bugs WRITE', 'bug_group_map WRITE', 'longdescs WRITE',
+                     'cc WRITE', 'keywords WRITE', 'dependencies WRITE',
+                     'bugs_activity WRITE', 'groups READ', 'user_group_map READ',
+                     'keyworddefs READ', 'fielddefs READ');
+
 SendSQL($sql);
 
 # Get the bug ID back.
@@ -473,10 +423,10 @@ if (UserInGroup("editbugs")) {
                 " keywords = " . SqlQuote(join(', ', @list)) .
                 " WHERE bug_id = $id");
     }
-    if (defined $cgi->param('dependson')) {
-        my $me = "blocked";
-        my $target = "dependson";
-        for (1..2) {
+    if ($cgi->param('dependson') || $cgi->param('blocked')) {
+        foreach my $pair (["blocked", "dependson"], ["dependson", "blocked"]) {
+            my ($me, $target) = @{$pair};
+
             foreach my $i (@{$deps{$target}}) {
                 SendSQL("INSERT INTO dependencies ($me, $target) values " .
                         "($id, $i)");
@@ -484,13 +434,17 @@ if (UserInGroup("editbugs")) {
                 # Log the activity for the other bug:
                 LogActivityEntry($i, $me, "", $id, $user->id, $timestamp);
             }
-            my $tmp = $me;
-            $me = $target;
-            $target = $tmp;
         }
     }
 }
 
+# All fields related to the newly created bug are set.
+# The bug can now be made accessible.
+$dbh->do("UPDATE bugs SET creation_ts = ? WHERE bug_id = ?",
+          undef, ($timestamp, $id));
+
+$dbh->bz_unlock_tables();
+
 # Email everyone the details of the new bug 
 $vars->{'mailrecipients'} = {'changer' => Bugzilla->user->login};
 
diff --git a/process_bug.cgi b/process_bug.cgi
index c000e3a4a08553503395727a4f45168be9b192c3..cf10e0c6ffd086f40ddf11e4a915c151bf3cc903 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -142,7 +142,7 @@ 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 (defined $cgi->param($field) && $cgi->param($field) ne "") {
+    if ($cgi->param($field)) {
         my @validvalues;
         foreach my $id (split(/[\s,]+/, $cgi->param($field))) {
             next unless $id;
@@ -165,12 +165,11 @@ foreach my $field ("dependson", "blocked") {
     'assigned_to'               => { 'type' => 'single' },
     '^requestee(_type)?-(\d+)$' => { 'type' => 'single' },
 });
-# Validate flags, but only if the user is changing a single bug,
-# since the multi-change form doesn't include flag changes.
-if (defined $cgi->param('id')) {
-    Bugzilla::Flag::validate($cgi, $cgi->param('id'));
-    Bugzilla::FlagType::validate($cgi, $cgi->param('id'));
-}
+
+# Validate flags in all cases. validate() should not detect any
+# reference to flags if $cgi->param('id') is undefined.
+Bugzilla::Flag::validate($cgi, $cgi->param('id'));
+Bugzilla::FlagType::validate($cgi, $cgi->param('id'));
 
 ######################################################################
 # End Data/Security Validation
@@ -402,6 +401,7 @@ sub CheckCanChangeField {
         return 1;
     # numeric fields need to be compared using == 
     } elsif (($field eq "estimated_time" || $field eq "remaining_time")
+             && $newvalue ne $cgi->param('dontchange')
              && $oldvalue == $newvalue)
     {
         return 1;
@@ -446,8 +446,8 @@ sub CheckCanChangeField {
     # variable which gets passed to the error template.
     #
     # $PrivilegesRequired = 0 : no privileges required;
-    # $PrivilegesRequired = 1 : the reporter, owner or an empowered user;
-    # $PrivilegesRequired = 2 : the owner or an empowered user;
+    # $PrivilegesRequired = 1 : the reporter, assignee or an empowered user;
+    # $PrivilegesRequired = 2 : the assignee or an empowered user;
     # $PrivilegesRequired = 3 : an empowered user.
 
     # Allow anyone with "editbugs" privs to change anything.
@@ -467,7 +467,7 @@ sub CheckCanChangeField {
 
     # START DO_NOT_CHANGE
     # $reporterid, $ownerid and $qacontactid are caches of the results of
-    # the call to find out the owner, reporter and qacontact of the current bug.
+    # the call to find out the assignee, reporter and qacontact of the current bug.
     if ($lastbugid != $bugid) {
         SendSQL("SELECT reporter, assigned_to, qa_contact FROM bugs
                  WHERE bug_id = $bugid");
@@ -476,7 +476,7 @@ sub CheckCanChangeField {
     }    
     # END DO_NOT_CHANGE
 
-    # Allow the owner to change anything else.
+    # Allow the assignee to change anything else.
     if ($ownerid == $whoid) {
         return 1;
     }
@@ -493,7 +493,7 @@ sub CheckCanChangeField {
     # The reporter may not:
     # - reassign bugs, unless the bugs are assigned to him;
     #   in that case we will have already returned 1 above
-    #   when checking for the owner of the bug.
+    #   when checking for the assignee of the bug.
     if ($field eq "assigned_to") {
         $PrivilegesRequired = 2;
         return 0;
@@ -595,14 +595,11 @@ if (defined $cgi->param('id')) {
     }
 }
 
-my $action = '';
-if (defined $cgi->param('action')) {
-  $action = trim($cgi->param('action'));
-}
-if (Param("move-enabled") && $action eq Param("move-button-text")) {
+my $action = trim($cgi->param('action') || '');
+
+if ($action eq Param('move-button-text')) {
   $cgi->param('buglist', join (":", @idlist));
   do "move.pl" || die "Error executing move.cgi: $!";
-  PutFooter();
   exit;
 }
 
@@ -1023,20 +1020,54 @@ SWITCH: for ($cgi->param('knob')) {
         last SWITCH;
     };
     /^duplicate$/ && CheckonComment( "duplicate" ) && do {
+        # You cannot mark bugs as duplicates when changing
+        # several bugs at once.
+        unless (defined $cgi->param('id')) {
+            ThrowUserError('dupe_not_allowed');
+        }
+
         # Make sure we can change the original bug (issue A on bug 96085)
         CheckFormFieldDefined($cgi, 'dup_id');
         $duplicate = $cgi->param('dup_id');
         ValidateBugID($duplicate, 'dup_id');
         $cgi->param('dup_id', $duplicate);
 
+        # Make sure the bug is not already marked as a dupe
+        # (may appear in race condition)
+        my $dupe_of =
+            $dbh->selectrow_array("SELECT dupe_of FROM duplicates
+                                   WHERE dupe = ?",
+                                   undef, $cgi->param('id'));
+        if ($dupe_of) {
+            ThrowUserError("dupe_entry_found", { dupe_of => $dupe_of });
+        }
+
+        # Make sure a loop isn't created when marking this bug
+        # as duplicate.
+        my %dupes;
+        $dupe_of = $duplicate;
+        my $sth = $dbh->prepare('SELECT dupe_of FROM duplicates
+                                 WHERE dupe = ?');
+
+        while ($dupe_of) {
+            if ($dupe_of == $cgi->param('id')) {
+                ThrowUserError('dupe_loop_detected', { bug_id  => $cgi->param('id'),
+                                                       dupe_of => $duplicate });
+            }
+            # If $dupes{$dupe_of} is already set to 1, then a loop
+            # already exists which does not involve this bug.
+            # As the user is not responsible for this loop, do not
+            # prevent him from marking this bug as a duplicate.
+            last if exists $dupes{"$dupe_of"};
+            $dupes{"$dupe_of"} = 1;
+            $sth->execute($dupe_of);
+            $dupe_of = $sth->fetchrow_array;
+        }
+
         # Also, let's see if the reporter has authorization to see
         # the bug to which we are duping. If not we need to prompt.
         DuplicateUserConfirm();
 
-        if (!defined $cgi->param('id') || $duplicate == $cgi->param('id')) {
-            ThrowUserError("dupe_of_self_disallowed");
-        }
-
         # DUPLICATE bugs should have no time remaining.
         _remove_remaining_time();
 
@@ -1308,71 +1339,11 @@ foreach my $id (@idlist) {
           || ThrowTemplateError($template->error());
         exit;
     }
-        
-    my %deps;
-    if (defined $cgi->param('dependson')) {
-        my $me = "blocked";
-        my $target = "dependson";
-        my %deptree;
-        for (1..2) {
-            $deptree{$target} = [];
-            my %seen;
-            foreach my $i (split('[\s,]+', $cgi->param($target))) {
-                next if $i eq "";
-                
-                if ($id eq $i) {
-                    ThrowUserError("dependency_loop_single");
-                }
-                if (!exists $seen{$i}) {
-                    push(@{$deptree{$target}}, $i);
-                    $seen{$i} = 1;
-                }
-            }
-            # populate $deps{$target} as first-level deps only.
-            # and find remainder of dependency tree in $deptree{$target}
-            @{$deps{$target}} = @{$deptree{$target}};
-            my @stack = @{$deps{$target}};
-            while (@stack) {
-                my $i = shift @stack;
-                SendSQL("SELECT $target FROM dependencies WHERE $me = " .
-                        SqlQuote($i));
-                while (MoreSQLData()) {
-                    my $t = FetchOneColumn();
-                    # ignore any _current_ dependencies involving this bug,
-                    # as they will be overwritten with data from the form.
-                    if ($t != $id && !exists $seen{$t}) {
-                        push(@{$deptree{$target}}, $t);
-                        push @stack, $t;
-                        $seen{$t} = 1;
-                    }
-                }
-            }
-
-            if ($me eq 'dependson') {
-                my @deps   =  @{$deptree{'dependson'}};
-                my @blocks =  @{$deptree{'blocked'}};
-                my @union = ();
-                my @isect = ();
-                my %union = ();
-                my %isect = ();
-                foreach my $b (@deps, @blocks) { $union{$b}++ && $isect{$b}++ }
-                @union = keys %union;
-                @isect = keys %isect;
-                if (@isect > 0) {
-                    my $both;
-                    foreach my $i (@isect) {
-                       $both = $both . GetBugLink($i, "#" . $i) . " ";
-                    }
 
-                    ThrowUserError("dependency_loop_multi",
-                                   { both => $both });
-                }
-            }
-            my $tmp = $me;
-            $me = $target;
-            $target = $tmp;
-        }
-    }
+    # Gather the dependency list, and make sure there are no circular refs
+    my %deps = Bugzilla::Bug::ValidateDependencies($cgi->param('dependson'),
+                                                   $cgi->param('blocked'),
+                                                   $id);
 
     #
     # Start updating the relevant database entries
@@ -1395,7 +1366,7 @@ foreach my $id (@idlist) {
     }
 
     if ($cgi->param('comment') || $work_time) {
-        AppendComment($id, Bugzilla->user->login, $cgi->param('comment'),
+        AppendComment($id, $whoid, $cgi->param('comment'),
                       $cgi->param('commentprivacy'), $timestamp, $work_time);
         $bug_changed = 1;
     }
@@ -1433,9 +1404,8 @@ foreach my $id (@idlist) {
             while (MoreSQLData()) {
                 push(@list, FetchOneColumn());
             }
-            SendSQL("UPDATE bugs SET delta_ts = $sql_timestamp, keywords = " .
-                    SqlQuote(join(', ', @list)) .
-                    " WHERE bug_id = $id");
+            $dbh->do("UPDATE bugs SET keywords = ? WHERE bug_id = ?",
+                     undef, join(', ', @list), $id);
         }
     }
     my $query = "$basequery\nwhere bug_id = $id";
@@ -1557,7 +1527,7 @@ foreach my $id (@idlist) {
                                                   undef, $id)};
         @dependencychanged{@oldlist} = 1;
 
-        if (defined $cgi->param('dependson')) {
+        if (defined $cgi->param($target)) {
             my %snapshot;
             my @newlist = sort {$a <=> $b} @{$deps{$target}};
             @dependencychanged{@newlist} = 1;
@@ -1724,7 +1694,7 @@ foreach my $id (@idlist) {
     $i = 0;
     foreach my $col (@::log_columns) {
         # Consider NULL db entries to be equivalent to the empty string
-        $newvalues[$i] ||= '';
+        $newvalues[$i] = defined($newvalues[$i]) ? $newvalues[$i] : '';
         # Convert the deadline to the YYYY-MM-DD format.
         if ($col eq 'deadline') {
             $newvalues[$i] = format_time($newvalues[$i], "%Y-%m-%d");
@@ -1759,7 +1729,7 @@ foreach my $id (@idlist) {
             }
 
             # save off the old value for passing to Bugzilla::BugMail so
-            # the old owner can be notified
+            # the old assignee can be notified
             #
             if ($col eq 'assigned_to') {
                 $old = ($old) ? DBID_to_name($old) : "";
@@ -1804,19 +1774,6 @@ foreach my $id (@idlist) {
     }
     $dbh->bz_unlock_tables();
 
-    $vars->{'mailrecipients'} = { 'cc' => \@ccRemoved,
-                                  'owner' => $origOwner,
-                                  'qacontact' => $origQaContact,
-                                  'changer' => Bugzilla->user->login };
-
-    $vars->{'id'} = $id;
-    
-    # Let the user know the bug was changed and who did and didn't
-    # receive email about the change.
-    $template->process("bug/process/results.html.tmpl", $vars)
-      || ThrowTemplateError($template->error());
-    $vars->{'header_done'} = 1;
-    
     if ($duplicate) {
         # Check to see if Reporter of this bug is reporter of Dupe 
         SendSQL("SELECT reporter FROM bugs WHERE bug_id = " .
@@ -1838,7 +1795,7 @@ foreach my $id (@idlist) {
                     "VALUES ($reporter, $duplicate)");
         }
         # Bug 171639 - Duplicate notifications do not need to be private. 
-        AppendComment($duplicate, Bugzilla->user->login,
+        AppendComment($duplicate, $whoid,
                       "*** Bug " . $cgi->param('id') .
                       " has been marked as a duplicate of this bug. ***",
                       0, $timestamp);
@@ -1846,7 +1803,27 @@ foreach my $id (@idlist) {
         CheckFormFieldDefined($cgi,'comment');
         SendSQL("INSERT INTO duplicates VALUES ($duplicate, " .
                 $cgi->param('id') . ")");
-        
+    }
+
+    # Now all changes to the DB have been made. It's time to email
+    # all concerned users, including the bug itself, but also the
+    # duplicated bug and dependent bugs, if any.
+
+    $vars->{'mailrecipients'} = { 'cc' => \@ccRemoved,
+                                  'owner' => $origOwner,
+                                  'qacontact' => $origQaContact,
+                                  'changer' => Bugzilla->user->login };
+
+    $vars->{'id'} = $id;
+    $vars->{'type'} = "bug";
+    
+    # Let the user know the bug was changed and who did and didn't
+    # receive email about the change.
+    $template->process("bug/process/results.html.tmpl", $vars)
+      || ThrowTemplateError($template->error());
+    $vars->{'header_done'} = 1;
+    
+    if ($duplicate) {
         $vars->{'mailrecipients'} = { 'changer' => Bugzilla->user->login }; 
 
         $vars->{'id'} = $duplicate;
diff --git a/query.cgi b/query.cgi
index 81b23003498d53ce86abc8af24d847100322d06b..f05a8b567eedd181bd53b1778b8df004b38f6641 100755
--- a/query.cgi
+++ b/query.cgi
@@ -23,7 +23,7 @@
 #                 Matthias Radestock <matthias@sorted.org>
 #                 Gervase Markham <gerv@gerv.net>
 #                 Byron Jones <bugzilla@glob.com.au>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 use strict;
 use lib ".";
@@ -100,8 +100,7 @@ if ($userid) {
                 }
                 $dbh->bz_unlock_tables();
             }
-            $cgi->send_cookie(-name => $cookiename,
-                              -expires => "Fri, 01-Jan-2038 00:00:00 GMT");
+            $cgi->remove_cookie($cookiename);
         }
     }
 }
@@ -384,8 +383,8 @@ for (my $chart = 0; $cgi->param("field$chart-0-0"); $chart++) {
         my @cols;
         for (my $col = 0; $cgi->param("field$chart-$row-$col"); $col++) {
             push(@cols, { field => $cgi->param("field$chart-$row-$col"),
-                          type => $cgi->param("type$chart-$row-$col"),
-                          value => $cgi->param("value$chart-$row-$col") });
+                          type => $cgi->param("type$chart-$row-$col") || 'noop',
+                          value => $cgi->param("value$chart-$row-$col") || '' });
         }
         push(@rows, \@cols);
     }
diff --git a/quicksearch.js b/quicksearch.js
index b72f96b7a4fea36136d6109d331650d4ef02d0ab..29ab6eb6b365b3a20764258512ce41a2dbe50a31 100644
--- a/quicksearch.js
+++ b/quicksearch.js
@@ -334,8 +334,8 @@ function make_query_URL(url, input, searchLong) {
 
     // This function matches the given prefixes against the given statuses and
     // resolutions. Matched statuses are added to bug_status, matched 
-    // resolutions are added to resolution. Returns true iff some matches 
-    // were found for at least one of the given prefixes.
+    // resolutions are added to resolution. Returns true if and only if
+    // some matches were found for at least one of the given prefixes.
     function matchPrefixes(prefixes,statuses,resolutions) {
         var failedPrefixes = new Array();
         var foundMatch = false;
diff --git a/quicksearchhack.html b/quicksearchhack.html
index e4d387a818edaebfb65abe1d8af0f2eb7d8b4084..d514082f839d2e420b65c840eca8e13e744a33fe 100644
--- a/quicksearchhack.html
+++ b/quicksearchhack.html
@@ -47,8 +47,8 @@ The generic format for a ``word'' is
 &nbsp;<tt>field1,...,fieldN:value1,...,valueM</tt>&nbsp;.
 A bug qualifies if at least one of the values occurs as a substring in 
 at least one of the fields. 
-For example, &nbsp;<tt>owner,reporter,qa:ibm,sun</tt>&nbsp;
-will give you bugs where the owner, reporter, or qa contact 
+For example, &nbsp;<tt>assignee,reporter,qa:ibm,sun</tt>&nbsp;
+will give you bugs where the assignee, reporter, or qa contact 
 has an email address that contains 
 &nbsp;<tt>ibm</tt>&nbsp; or &nbsp;<tt>sun</tt>&nbsp;.
 If only &nbsp;<tt>value1,...,valueM</tt>&nbsp; is given,
@@ -123,7 +123,7 @@ for access speed):
 
 <tr>
   <td>&nbsp;</td>
-  <td><b>@</b><i>owner</i></td>
+  <td><b>@</b><i>assignee</i></td>
   <td><tt>assignedto</tt></td>
   <td><tt>assignee, owner</tt></td>
   <td><a href="page.cgi?id=fields.html#assigned_to">Assignee</a> <i>("assigned_to")</i></td>
@@ -317,8 +317,8 @@ Examples for some useful abbreviations:
   <td><i>high-priority bugs</i></td>
 </tr>
 <tr>
-  <td><b>@</b><i>owner</i></td>
-  <td><b>assignedto:</b><i>owner</i></td>
+  <td><b>@</b><i>assignee</i></td>
+  <td><b>assignedto:</b><i>assignee</i></td>
 </tr>
 <!--
 <tr>
diff --git a/quips.cgi b/quips.cgi
index 766d1a79217efdbd12d788a4c426b0b9e2cc99ab..d811ee5fe45d05ec8dad0c7c3b2e45fb761229d3 100755
--- a/quips.cgi
+++ b/quips.cgi
@@ -79,7 +79,6 @@ if ($action eq "add") {
       (Param('quip_list_entry_control') eq "open") || (UserInGroup('admin')) || 0;
     my $comment = $cgi->param("quip");
     $comment || ThrowUserError("need_quip");
-    $comment !~ m/</ || ThrowUserError("no_html_in_quips");
 
     SendSQL("INSERT INTO quips (userid, quip, approved) VALUES " .
            '(' . $userid . ', ' . SqlQuote($comment) . ', ' . $approved . ')');
diff --git a/relogin.cgi b/relogin.cgi
index 6843405c20ef8e8f7bd7e4d663f021f36fec66fe..7c1ffe6f8aeecf75d103dbd1976c03a6d8de896a 100755
--- a/relogin.cgi
+++ b/relogin.cgi
@@ -27,12 +27,13 @@ use vars qw($template $vars);
 
 use lib qw(.);
 
+use Bugzilla::Constants;
 require "CGI.pl";
 
 # We don't want to remove a random logincookie from the db, so
 # call Bugzilla->login(). If we're logged in after this, then
 # the logincookie must be correct
-Bugzilla->login();
+Bugzilla->login(LOGIN_OPTIONAL);
 
 Bugzilla->logout();
 
diff --git a/reports.cgi b/reports.cgi
index c5314b33e79161fb959ec538382a1d84da51552e..deeffff584e0a1e6a2e53515160a9c73efc630a6 100755
--- a/reports.cgi
+++ b/reports.cgi
@@ -83,10 +83,6 @@ if (! defined $cgi->param('product')) {
     grep($_ eq $product, @myproducts)
       || ThrowUserError("invalid_product_name", {product => $product});
 
-    # We don't want people to be able to view
-    # reports for products they don't have permissions for...
-    if ($product ne '-All-') { CanEnterProductOrWarn($product) }
-          
     # We've checked that the product exists, and that the user can see it
     # This means that is OK to detaint
     trick_taint($product);
diff --git a/request.cgi b/request.cgi
index bc5eefa9acd83c962be955e8163f050fdb2972f7..4c6e7600f227b56ce88c1a136bb0bf5d2733226b 100755
--- a/request.cgi
+++ b/request.cgi
@@ -145,12 +145,14 @@ sub queue {
     
     # Filter results by exact email address of requester or requestee.
     if (defined $cgi->param('requester') && $cgi->param('requester') ne "") {
-        push(@criteria, "requesters.login_name = " . SqlQuote($cgi->param('requester')));
+        push(@criteria, $dbh->sql_istrcmp('requesters.login_name',
+                                          SqlQuote($cgi->param('requester'))));
         push(@excluded_columns, 'requester') unless $cgi->param('do_union');
     }
     if (defined $cgi->param('requestee') && $cgi->param('requestee') ne "") {
         if ($cgi->param('requestee') ne "-") {
-            push(@criteria, "requestees.login_name = " . SqlQuote($cgi->param('requestee')));
+            push(@criteria, $dbh->sql_istrcmp('requestees.login_name',
+                            SqlQuote($cgi->param('requestee'))));
         }
         else { push(@criteria, "flags.requestee_id IS NULL") }
         push(@excluded_columns, 'requestee') unless $cgi->param('do_union');
diff --git a/runtests.sh b/runtests.sh
deleted file mode 100755
index d6f3d1a54f1c27dfa7d0f863acd6b8dee8d531ec..0000000000000000000000000000000000000000
--- a/runtests.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-/usr/bin/perl runtests.pl $*
diff --git a/sanitycheck.cgi b/sanitycheck.cgi
index e8f4988fb392c4aaaf47fc38bcfe3885309f6dbf..c091e1041d95974b9bde2b9bf389f01faf15138a 100755
--- a/sanitycheck.cgi
+++ b/sanitycheck.cgi
@@ -20,7 +20,8 @@
 #
 # Contributor(s): Terry Weissman <terry@mozilla.org>
 #                 Matthew Tuck <matty@chariot.net.au>
-#                 Max Kanat-Alexander <mkanat@kerio.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
+#                 Marc Schumann <wurblzap@gmail.com>
 
 use strict;
 
@@ -175,6 +176,75 @@ if (defined $cgi->param('cleangroupsnow')) {
            "- reduced from $before records to $after records");
 }
 
+###########################################################################
+# Create missing group_control_map entries
+###########################################################################
+
+if (defined $cgi->param('createmissinggroupcontrolmapentries')) {
+    Status(qq{OK, now creating <code>SHOWN</code> member control entries
+              for product/group combinations lacking one.});
+
+    my $na    = CONTROLMAPNA;
+    my $shown = CONTROLMAPSHOWN;
+    my $insertsth = $dbh->prepare(
+        qq{INSERT INTO group_control_map (
+                       group_id, product_id, entry,
+                       membercontrol, othercontrol, canedit
+                      )
+               VALUES (
+                       ?, ?, 0,
+                       $shown, $na, 0
+                      )});
+    my $updatesth = $dbh->prepare(qq{UPDATE group_control_map
+                                        SET membercontrol = $shown
+                                      WHERE group_id   = ?
+                                        AND product_id = ?});
+    my $counter = 0;
+
+    # Find all group/product combinations used for bugs but not set up
+    # correctly in group_control_map
+    my $invalid_combinations = $dbh->selectall_arrayref(
+        qq{    SELECT bugs.product_id,
+                      bgm.group_id,
+                      gcm.membercontrol,
+                      groups.name,
+                      products.name
+                 FROM bugs
+           INNER JOIN bug_group_map AS bgm
+                   ON bugs.bug_id = bgm.bug_id
+           INNER JOIN groups
+                   ON bgm.group_id = groups.id
+           INNER JOIN products
+                   ON bugs.product_id = products.id
+            LEFT JOIN group_control_map AS gcm
+                   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'));
+
+    foreach (@$invalid_combinations) {
+        my ($product_id, $group_id, $currentmembercontrol,
+            $group_name, $product_name) = @$_;
+
+        $counter++;
+        if (defined($currentmembercontrol)) {
+            Status(qq{Updating <code>NA/<em>xxx</em></code> group control
+                      setting for group <em>$group_name</em> to
+                      <code>SHOWN/<em>xxx</em></code> in product
+                      <em>$product_name</em>.});
+            $updatesth->execute($group_id, $product_id);
+        }
+        else {
+            Status(qq{Generating <code>SHOWN/NA</code> group control setting
+                      for group <em>$group_name</em> in product
+                      <em>$product_name</em>.});
+            $insertsth->execute($group_id, $product_id);
+        }
+    }
+
+    Status("Repaired $counter defective group control settings.");
+}
+
 ###########################################################################
 # Send unsent mail
 ###########################################################################
@@ -380,7 +450,7 @@ CrossCheck("products", "id",
            ["flaginclusions", "product_id", "type_id"],
            ["flagexclusions", "product_id", "type_id"]);
 
-# Check the former enum types -mkanat@kerio.com
+# Check the former enum types -mkanat@bugzilla.org
 CrossCheck("bug_status", "value",
             ["bugs", "bug_status"]);
 
@@ -656,8 +726,8 @@ if (defined $cgi->param('rebuildkeywordcache')) {
 # General bug checks
 ###########################################################################
 
-sub BugCheck ($$) {
-    my ($middlesql, $errortext) = @_;
+sub BugCheck ($$;$$) {
+    my ($middlesql, $errortext, $repairparam, $repairtext) = @_;
     
     SendSQL("SELECT DISTINCT bugs.bug_id " .
             "FROM $middlesql " .
@@ -672,6 +742,11 @@ sub BugCheck ($$) {
 
     if (@badbugs) {
         Alert("$errortext: " . BugListLinks(@badbugs));
+        if ($repairparam) {
+            $repairtext ||= 'Repair these bugs';
+            print qq{<a href="sanitycheck.cgi?$repairparam=1">$repairtext</a>.},
+                  '<p>';
+        }
     }
 }
 
@@ -702,7 +777,7 @@ BugCheck("bugs WHERE bug_status = 'UNCONFIRMED' AND everconfirmed = 1",
          "Bugs that are UNCONFIRMED but have everconfirmed set");
 # The below list of resolutions is hardcoded because we don't know if future
 # resolutions will be confirmed, unconfirmed or maybeconfirmed.  I suspect
-# they will be maybeconfirmed, eg ASLEEP and REMIND.  This hardcoding should
+# they will be maybeconfirmed, e.g. ASLEEP and REMIND.  This hardcoding should
 # disappear when we have customised statuses.
 BugCheck("bugs WHERE bug_status IN ('NEW', 'ASSIGNED', 'REOPENED') AND everconfirmed = 0",
          "Bugs with confirmed status but don't have everconfirmed set"); 
@@ -758,27 +833,27 @@ Status("Checking for bugs with groups violating their product's group controls")
 BugCheck("bugs
          INNER JOIN bug_group_map
             ON bugs.bug_id = bug_group_map.bug_id
-         INNER JOIN groups
-            ON bug_group_map.group_id = groups.id
           LEFT JOIN group_control_map
             ON bugs.product_id = group_control_map.product_id
-            AND bug_group_map.group_id = group_control_map.group_id
-         WHERE groups.isactive != 0
-         AND ((group_control_map.membercontrol = " . CONTROLMAPNA . ")
+           AND bug_group_map.group_id = group_control_map.group_id
+         WHERE ((group_control_map.membercontrol = " . CONTROLMAPNA . ")
          OR (group_control_map.membercontrol IS NULL))",
-         "Have groups not permitted for their products");
+         'Have groups not permitted for their products',
+         'createmissinggroupcontrolmapentries',
+         'Permit the missing groups for the affected products
+          (set member control to <code>SHOWN</code>)');
 
 BugCheck("bugs
-         INNER JOIN bug_group_map
-            ON bugs.bug_id = bug_group_map.bug_id
-         INNER JOIN groups
-            ON bug_group_map.group_id = groups.id
-          LEFT JOIN group_control_map
+         INNER JOIN group_control_map
             ON bugs.product_id = group_control_map.product_id
-            AND bug_group_map.group_id = group_control_map.group_id
-         WHERE groups.isactive != 0
-         AND group_control_map.membercontrol = " . CONTROLMAPMANDATORY . "
-         AND bug_group_map.group_id IS NULL",
+         INNER JOIN groups
+            ON group_control_map.group_id = groups.id
+          LEFT JOIN bug_group_map
+            ON bugs.bug_id = bug_group_map.bug_id
+           AND group_control_map.group_id = bug_group_map.group_id
+         WHERE group_control_map.membercontrol = " . CONTROLMAPMANDATORY . "
+           AND bug_group_map.group_id IS NULL
+           AND groups.isactive != 0",
          "Are missing groups required for their products");
 
 
diff --git a/show_bug.cgi b/show_bug.cgi
index e855b442f2c1a2a7fd92e0a84bb5c3bec63e5acd..8e964b765a4a04d8ae47f1cf22c18458ce219f95 100755
--- a/show_bug.cgi
+++ b/show_bug.cgi
@@ -94,6 +94,7 @@ eval {
 
 $vars->{'bugs'} = \@bugs;
 $vars->{'marks'} = \%marks;
+$vars->{'use_keywords'} = 1 if (@::legal_keywords);
 
 # Next bug in list (if there is one)
 my @bug_list;
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi
index 9591a284d871678392251b17a699a972da9605bd..b6739d32eabf376704c260b2e38651e0dd03f251 100755
--- a/showdependencygraph.cgi
+++ b/showdependencygraph.cgi
@@ -113,7 +113,7 @@ my $urlbase = Param('urlbase');
 
 print $fh "digraph G {";
 print $fh qq{
-graph [URL="${urlbase}query.cgi", rankdir=$rankdir, size="64,64"]
+graph [URL="${urlbase}query.cgi", rankdir=$rankdir]
 node [URL="${urlbase}show_bug.cgi?id=\\N", style=filled, color=lightgrey]
 };
 
diff --git a/skins/CVS/Tag b/skins/CVS/Tag
index 1992d900bb3759abad40a2cb71e8272f00e13f9e..84507d26c5041aeb69e8ccabe5e10972bfb1ecb2 100644
--- a/skins/CVS/Tag
+++ b/skins/CVS/Tag
@@ -1 +1 @@
-TBUGZILLA-2_19_3
+TBUGZILLA-2_20
diff --git a/skins/standard/CVS/Entries b/skins/standard/CVS/Entries
index c811d5033216f753e722b0739ba050276ee7ef2a..eed9117253344b32048904ec913478bda6d95297 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_19_3
-/buglist.css/1.9/Mon Apr 11 22:52:50 2005//TBUGZILLA-2_19_3
-/duplicates.css/1.2/Fri Nov 15 22:04:04 2002//TBUGZILLA-2_19_3
-/editusers.css/1.1/Mon Feb 28 20:41:43 2005//TBUGZILLA-2_19_3
-/global.css/1.12/Tue Apr 12 20:43:32 2005//TBUGZILLA-2_19_3
-/index.css/1.2/Thu Feb  3 17:43:38 2005//TBUGZILLA-2_19_3
-/panel.css/1.1/Wed Dec 12 22:41:11 2001//TBUGZILLA-2_19_3
-/show_multiple.css/1.2/Tue Nov  2 22:39:16 2004//TBUGZILLA-2_19_3
-/summarize-time.css/1.1/Mon Feb 28 17:52:57 2005//TBUGZILLA-2_19_3
-/voting.css/1.1/Tue Feb  8 15:49:57 2005//TBUGZILLA-2_19_3
+/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
 D/global////
 D/index////
diff --git a/skins/standard/CVS/Tag b/skins/standard/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/skins/standard/CVS/Tag
+++ b/skins/standard/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/skins/standard/global.css b/skins/standard/global.css
index f9ac7c96d1d7aebe988f3c2ec5f8b4c45ed30b2b..bf4765c51818169ff6c088166e15fd62510c2cf2 100644
--- a/skins/standard/global.css
+++ b/skins/standard/global.css
@@ -289,7 +289,10 @@ body
 
 .bz_obsolete { text-decoration: line-through; }
 .bz_inactive { text-decoration: line-through; }
-.bz_closed { text-decoration: line-through; }
+.bz_closed,
+.bz_CLOSED td {
+    text-decoration: line-through;
+}
 .bz_private { color: darkred ; background : #f3eeee ; }
 .bz_disabled { color: #a0a0a0 ; }
 
diff --git a/skins/standard/global/CVS/Entries b/skins/standard/global/CVS/Entries
index ec06a6d063fdc90ef1d985764d5edaf39b01ad6c..028eff6de770525bea47f3fe35eba3db26b6a381 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_19_3
-/header.png/1.1/Thu Feb  3 19:23:17 2005/-kb/TBUGZILLA-2_19_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
 D
diff --git a/skins/standard/global/CVS/Tag b/skins/standard/global/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/skins/standard/global/CVS/Tag
+++ b/skins/standard/global/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/skins/standard/index/CVS/Entries b/skins/standard/index/CVS/Entries
index 4013363ee1187bfcab8ad226c3022cfae2022de0..38bf186cc87f66cd57f0b9e6ee90d28066861591 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_19_3
-/front.png/1.1/Thu Feb  3 19:23:17 2005/-kb/TBUGZILLA-2_19_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
 D
diff --git a/skins/standard/index/CVS/Tag b/skins/standard/index/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/skins/standard/index/CVS/Tag
+++ b/skins/standard/index/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/t/001compile.t b/t/001compile.t
index 30372484828686d58ebb28e07f765c34300a7173..5ea849ac18273f4046dcfb81e5eaa9248ce227cc 100644
--- a/t/001compile.t
+++ b/t/001compile.t
@@ -32,6 +32,10 @@ use Support::Files;
 
 use Test::More tests => scalar(@Support::Files::testitems);
 
+# Need this to get the available driver information
+use DBI;
+my @DBI_drivers = DBI->available_drivers;
+
 # Bugzilla requires Perl 5.6.1 now.  Checksetup will tell you this if you run it, but
 # it tests it in a polite/passive way that won't make it fail at compile time.  We'll
 # slip in a compile-time failure if it's missing here so a tinderbox on 5.00503 won't
@@ -60,6 +64,16 @@ my $perlapp = "\"$^X\"";
 foreach my $file (@testitems) {
     $file =~ s/\s.*$//; # nuke everything after the first space (#comment)
     next if (!$file); # skip null entries
+
+    # Check that we have a DBI module to support the DB, if this is a database
+    # module (but not Schema)
+    if ($file =~ m#Bugzilla/DB/([^/]+)\.pm$# && $file ne "Bugzilla/DB/Schema.pm") {
+        if (!grep(lc($_) =~ /$1/i, @DBI_drivers)) {
+            ok(1,$file." - Skipping, as the DBD module not installed");
+            next;
+        }
+    }
+
     open (FILE,$file);
     my $bang = <FILE>;
     close (FILE);
diff --git a/t/004template.t b/t/004template.t
index 7f83c87024df0293f5dca1ddf721185e4c397385..4edb6a3acbbad869c17c75e991d56fb8334bc84a 100644
--- a/t/004template.t
+++ b/t/004template.t
@@ -36,7 +36,7 @@ use Support::Templates;
 # Bug 137589 - Disable command-line input of CGI.pm when testing
 use CGI qw(-no_debug);
 
-use File::Spec 0.82;
+use File::Spec;
 use Template;
 use Test::More tests => ( scalar(@referenced_files) * scalar(@languages)
                         + $num_actual_files * 2 );
diff --git a/t/005no_tabs.t b/t/005no_tabs.t
index 51433fe134b3bc70709b61b7cfc56548a5964fad..75f532956211f26c9c2dd85dfd45121cbad733d3 100644
--- a/t/005no_tabs.t
+++ b/t/005no_tabs.t
@@ -32,7 +32,7 @@ use lib 't';
 use Support::Files;
 use Support::Templates;
 
-use File::Spec 0.82;
+use File::Spec;
 use Test::More tests => (  scalar(@Support::Files::testitems)
                          + $Support::Templates::num_actual_files);
 
diff --git a/t/008filter.t b/t/008filter.t
index adbbf9e9b8a16591fffc374e8c807209e7a9a956..59d3a2bd708835d8b2621ee639819cfa566e6067 100644
--- a/t/008filter.t
+++ b/t/008filter.t
@@ -35,7 +35,7 @@ use lib 't';
 use vars qw(%safe);
 
 use Support::Templates;
-use File::Spec 0.82;
+use File::Spec;
 use Test::More tests => $Support::Templates::num_actual_files;
 use Cwd;
 
diff --git a/t/009bugwords.t b/t/009bugwords.t
index b6cc736999f95a39c6306de7a0cce87c3ef650c7..9249ba4ac66f0331d90aecc67d60cecb237f0473 100644
--- a/t/009bugwords.t
+++ b/t/009bugwords.t
@@ -38,7 +38,7 @@ use Support::Files;
 use Support::Templates;
 use Bugzilla::Util;
 
-use File::Spec 0.82;
+use File::Spec;
 
 use Test::More tests => ($Support::Templates::num_actual_files); 
 
diff --git a/t/011pod.t b/t/011pod.t
new file mode 100644
index 0000000000000000000000000000000000000000..517ca03add4a406e85729e17ffc44b5c987a0b88
--- /dev/null
+++ b/t/011pod.t
@@ -0,0 +1,60 @@
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+# 
+# 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
+# the License at http://www.mozilla.org/MPL/
+# 
+# Software distributed under the License is distributed on an "AS
+# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# rights and limitations under the License.
+# 
+# The Original Code are the Bugzilla Tests.
+# 
+# Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
+
+
+##################
+#Bugzilla Test 11#
+##POD validation##
+
+use strict;
+
+use lib 't';
+
+use Support::Files;
+use Pod::Checker;
+
+use Test::More tests => scalar(@Support::Files::testitems);
+
+# Capture the TESTOUT from Test::More or Test::Builder for printing errors.
+# This will handle verbosity for us automatically.
+my $fh;
+{
+    local $^W = 0;  # Don't complain about non-existent filehandles
+    if (-e \*Test::More::TESTOUT) {
+        $fh = \*Test::More::TESTOUT;
+    } elsif (-e \*Test::Builder::TESTOUT) {
+        $fh = \*Test::Builder::TESTOUT;
+    } else {
+        $fh = \*STDOUT;
+    }
+}
+
+my @testitems = @Support::Files::testitems;
+
+foreach my $file (@testitems) {
+    $file =~ s/\s.*$//; # nuke everything after the first space (#comment)
+    next if (!$file); # skip null entries
+    my $error_count = podchecker($file, $fh);
+    if ($error_count < 0) {
+        ok(1,"$file does not contain any POD");
+    } elsif ($error_count == 0) {
+        ok(1,"$file has correct POD syntax");
+    } else {
+        ok(0,"$file has incorrect POD syntax --ERROR");
+    }
+}
+
+exit 0;
diff --git a/t/CVS/Entries b/t/CVS/Entries
index 6ec32c5268c6c552c1ac7a3fc4e6dea46960fd49..9d6289a77bce315bae3b119bf42e2a685500a744 100644
--- a/t/CVS/Entries
+++ b/t/CVS/Entries
@@ -1,13 +1,14 @@
-/001compile.t/1.12/Thu Feb 17 10:16:03 2005//TBUGZILLA-2_19_3
-/002goodperl.t/1.15/Wed Sep  8 22:46:34 2004//TBUGZILLA-2_19_3
-/003safesys.t/1.6/Sun Dec  5 14:13:27 2004//TBUGZILLA-2_19_3
-/004template.t/1.35/Wed Feb  9 17:30:18 2005//TBUGZILLA-2_19_3
-/005no_tabs.t/1.12/Thu Jan 23 23:34:07 2003//TBUGZILLA-2_19_3
-/006spellcheck.t/1.5/Wed Feb  2 16:06:51 2005//TBUGZILLA-2_19_3
-/007util.t/1.6/Tue May 10 20:30:13 2005//TBUGZILLA-2_19_3
-/008filter.t/1.17/Mon Dec  6 17:13:55 2004//TBUGZILLA-2_19_3
-/009bugwords.t/1.2/Sat Nov  8 18:51:07 2003//TBUGZILLA-2_19_3
-/testchart.gif/1.1/Tue Mar 15 23:58:06 2005/-kb/TBUGZILLA-2_19_3
-/testchart.png/1.1/Tue Mar 15 23:58:06 2005/-kb/TBUGZILLA-2_19_3
-/testgd.png/1.1/Tue Mar 15 23:58:06 2005/-kb/TBUGZILLA-2_19_3
+/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
 D/Support////
diff --git a/t/CVS/Tag b/t/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/t/CVS/Tag
+++ b/t/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/t/Support/CVS/Entries b/t/Support/CVS/Entries
index 673301bad9a26493eda82fd2b1cedea0ee449e68..374504b64d41f0cab0ce9cdf493d9ef898cd250f 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_19_3
-/Systemexec.pm/1.2/Fri Oct 19 22:39:51 2001//TBUGZILLA-2_19_3
-/Templates.pm/1.13/Sun Jan 11 17:12:19 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/t/Support/CVS/Tag b/t/Support/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/t/Support/CVS/Tag
+++ b/t/Support/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/t/Support/Templates.pm b/t/Support/Templates.pm
index 4403580155fc6b7029cf53c9405fe8a12a6e7084..6848cf1784cabc69d17fbef0d24cf2aaa87dbdfb 100644
--- a/t/Support/Templates.pm
+++ b/t/Support/Templates.pm
@@ -37,7 +37,7 @@ use vars qw(@languages @include_paths %include_path @referenced_files
 use Support::Files;
 
 use File::Find;
-use File::Spec 0.82;
+use File::Spec;
 
 # The available template languages
 @languages = ();
diff --git a/template/CVS/Entries b/template/CVS/Entries
index 0a5c4e30755b9e43363c8d226a4cb746fb28e4d0..e8735082ee8c5e905c400bee2780d35c0b226815 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_19_3
+/.cvsignore/1.3/Tue May  7 21:33:53 2002//TBUGZILLA-2_20
 D/en////
diff --git a/template/CVS/Tag b/template/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/CVS/Tag
+++ b/template/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/CVS/Entries b/template/en/CVS/Entries
index 54a7568a4d1f8b45b34b55ef75a52d2d8843880f..11c27560ba3ef4e0a672b1340b3d59fed4430c1f 100644
--- a/template/en/CVS/Entries
+++ b/template/en/CVS/Entries
@@ -1,2 +1,3 @@
-/.cvsignore/1.1/Wed Apr 24 07:29:49 2002//TBUGZILLA-2_19_3
+/.cvsignore/1.1/Wed Apr 24 07:29:49 2002//TBUGZILLA-2_20
 D/default////
+D/extension////
diff --git a/template/en/CVS/Tag b/template/en/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/CVS/Tag
+++ b/template/en/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/CVS/Entries b/template/en/default/CVS/Entries
index 439a383fd284fce8e887fdd49ec2ba45de9f4742..19a1c247eddd73019eec06ed79fe942ee2f9b6e8 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_19_3
-/config.rdf.tmpl/1.4/Mon Jun 23 18:01:39 2003//TBUGZILLA-2_19_3
-/filterexceptions.pl/1.42/Sat May  7 13:26:14 2005//TBUGZILLA-2_19_3
-/index.html.tmpl/1.23/Tue Apr 12 17:23:01 2005//TBUGZILLA-2_19_3
-/sidebar.xul.tmpl/1.17/Fri Mar 18 21:32:46 2005//TBUGZILLA-2_19_3
+/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
 D/account////
 D/admin////
 D/attachment////
diff --git a/template/en/default/CVS/Tag b/template/en/default/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/CVS/Tag
+++ b/template/en/default/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/account/CVS/Entries b/template/en/default/account/CVS/Entries
index 3928020429f7f497d5124355eb8a6a4a8b0be9d9..44a4641ba094eb3cb59d9cc443246663299b1d7d 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_19_3
-/create.html.tmpl/1.8/Sun Jan 18 18:39:11 2004//TBUGZILLA-2_19_3
-/created.html.tmpl/1.6/Sat Mar 12 21:51:16 2005//TBUGZILLA-2_19_3
-/exists.html.tmpl/1.7/Sun Jan 18 18:39:11 2004//TBUGZILLA-2_19_3
+/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
 D/auth////
 D/email////
 D/password////
diff --git a/template/en/default/account/CVS/Tag b/template/en/default/account/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/account/CVS/Tag
+++ b/template/en/default/account/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/account/auth/CVS/Entries b/template/en/default/account/auth/CVS/Entries
index e809ba430b75edf6c7c781097dd0339c2888ab40..aab5f0abb933969ec9cedaf6b42dd534c9fda4ed 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_19_3
-/login-small.html.tmpl/1.1/Tue Apr 12 17:23:01 2005//TBUGZILLA-2_19_3
-/login.html.tmpl/1.13/Tue Apr 12 17:23:01 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/account/auth/CVS/Tag b/template/en/default/account/auth/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/account/auth/CVS/Tag
+++ b/template/en/default/account/auth/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/account/email/CVS/Entries b/template/en/default/account/email/CVS/Entries
index bb15f38a63fd37877230a08ef91fa55837bdd2b7..e2530ef3c0edb027c1a1471097fd9ad0a3b14b17 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_19_3
-/change-old.txt.tmpl/1.9/Wed Mar 16 21:58:55 2005//TBUGZILLA-2_19_3
-/confirm.html.tmpl/1.9/Thu Mar 18 16:08:52 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/account/email/CVS/Tag b/template/en/default/account/email/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/account/email/CVS/Tag
+++ b/template/en/default/account/email/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/account/password/CVS/Entries b/template/en/default/account/password/CVS/Entries
index 9ffcfb6a344b4006c84f4aee451158d3b2e23cec..7cc4f9e9152a916034b9792b18d8e0c2da662e51 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_19_3
-/set-forgotten-password.html.tmpl/1.6/Sun Jan 18 18:39:13 2004//TBUGZILLA-2_19_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
 D
diff --git a/template/en/default/account/password/CVS/Tag b/template/en/default/account/password/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/account/password/CVS/Tag
+++ b/template/en/default/account/password/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/account/prefs/CVS/Entries b/template/en/default/account/prefs/CVS/Entries
index b95895b5c07957fa99739718a1a7b569817ea9dc..3261ff1016130cdb974a2b0ab7996cb47dd237be 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_19_3
-/email.html.tmpl/1.20/Tue Apr 12 20:43:32 2005//TBUGZILLA-2_19_3
-/footer.html.tmpl/1.5/Thu Mar 18 21:51:16 2004//TBUGZILLA-2_19_3
-/permissions.html.tmpl/1.6/Sun Jan 18 18:39:13 2004//TBUGZILLA-2_19_3
-/prefs.html.tmpl/1.17/Thu Mar 10 15:51:42 2005//TBUGZILLA-2_19_3
-/saved-searches.html.tmpl/1.5/Sat Dec 25 19:36:11 2004//TBUGZILLA-2_19_3
-/settings.html.tmpl/1.1/Thu Mar 10 15:51:42 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/account/prefs/CVS/Tag b/template/en/default/account/prefs/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/account/prefs/CVS/Tag
+++ b/template/en/default/account/prefs/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/account/prefs/email.html.tmpl b/template/en/default/account/prefs/email.html.tmpl
index bd265ca9fcaf6f979ac5c64abb25278acd1f71df..2c75a085c9ad63e77104e60e78f75d6f9bd82e49 100644
--- a/template/en/default/account/prefs/email.html.tmpl
+++ b/template/en/default/account/prefs/email.html.tmpl
@@ -28,7 +28,7 @@
   #               Array of users watching this user's account.
   # excludeself:  boolean.
   #               True if user is not receiving self-generated mail.
-  # <rolename>:   Multiple hashes, one for each rolename (e.g. owner; see
+  # <rolename>:   Multiple hashes, one for each rolename (e.g. assignee; see
   #               below), keyed by reasonname (e.g. comments; again, see
   #               below). The value is a boolean - true if the user is
   #               receiving mail for that reason when in that role.
@@ -51,7 +51,7 @@
 function SetCheckboxes(setting) {
   for (var count = 0; count < document.userprefsform.elements.length; count++) {
     var theinput = document.userprefsform.elements[count];
-    if (theinput.type == "checkbox") {
+    if (theinput.type == "checkbox" && !theinput.disabled) {
       if (theinput.name.match("neg")) {
         theinput.checked = false;
       }
@@ -213,7 +213,7 @@ document.write('<input type="button" value="Disable All Mail" onclick="SetCheckb
       [% FOREACH relationship = relationships %]
         [% NEXT IF (relationship.id == constants.REL_QA AND NOT useqacontact) OR
                    (relationship.id == constants.REL_VOTER AND NOT usevotes) %]
-        <td align="center"
+        <td align="center">
           <input type="checkbox" 
             name="neg-email-[% relationship.id %]-[% event.id %]"
             value="1"
diff --git a/template/en/default/account/prefs/prefs.html.tmpl b/template/en/default/account/prefs/prefs.html.tmpl
index 4973c807dd7f5fe18358560aa32831af95a9c3bc..d909f3b8ac623c136d31a8bf3a94004382ae2bce 100644
--- a/template/en/default/account/prefs/prefs.html.tmpl
+++ b/template/en/default/account/prefs/prefs.html.tmpl
@@ -50,11 +50,11 @@
             }"
  %]
 
-[% tabs = [ { name => "account", description => "Account settings", 
+[% tabs = [ { name => "account", description => "Account Preferences", 
               saveable => "1" },
-            { name => "settings", description => "General Settings", 
+            { name => "settings", description => "General Preferences", 
               saveable => "1" }, 
-            { name => "email", description => "Email settings", 
+            { name => "email", description => "Email Preferences", 
               saveable => "1" },
             { name => "saved-searches", description => "Saved searches", 
               saveable => "1" },
diff --git a/template/en/default/account/prefs/saved-searches.html.tmpl b/template/en/default/account/prefs/saved-searches.html.tmpl
index d5c5a50449af31bc0ebd69c3fc63c76b5074992a..8827a89ba22fe5cc3f8701a844f1203901f3e410 100644
--- a/template/en/default/account/prefs/saved-searches.html.tmpl
+++ b/template/en/default/account/prefs/saved-searches.html.tmpl
@@ -67,7 +67,7 @@
           <a href="buglist.cgi?[% q.query FILTER html %]">Run</a>
         </td>
         <td>
-          <a href="query.cgi?[% q.query FILTER html %]&known_name=[% q.name FILTER url_quote %]">Edit</a>
+          <a href="query.cgi?[% q.query FILTER html %]&amp;known_name=[% q.name FILTER url_quote %]">Edit</a>
         </td>
         <td>
           [% IF q.usedinwhine %]
diff --git a/template/en/default/account/prefs/settings.html.tmpl b/template/en/default/account/prefs/settings.html.tmpl
index d116a291d82bc6acfbb3e729217ed05b6547f34a..a425dcac156e4a9773b8fa881219e230d0bb9239 100644
--- a/template/en/default/account/prefs/settings.html.tmpl
+++ b/template/en/default/account/prefs/settings.html.tmpl
@@ -29,7 +29,6 @@
 
 [% IF settings.size %]
   <table border="0" cellpadding="8">
-  <tr>
     [% FOREACH name = setting_names %]
         [% IF settings.${name}.is_enabled %]
             [% default_name = name _ '-isdefault' %]
diff --git a/template/en/default/admin/CVS/Entries b/template/en/default/admin/CVS/Entries
index 6adfe40fb59852daca376605ac190cdee5e94388..3e0ee636a6c24fc38525c4aa2d585c5745b499a4 100644
--- a/template/en/default/admin/CVS/Entries
+++ b/template/en/default/admin/CVS/Entries
@@ -1,4 +1,4 @@
-/table.html.tmpl/1.4/Thu Feb 24 22:48:05 2005//TBUGZILLA-2_19_3
+/table.html.tmpl/1.5/Tue May 31 15:42:44 2005//TBUGZILLA-2_20
 D/classifications////
 D/components////
 D/fieldvalues////
diff --git a/template/en/default/admin/CVS/Tag b/template/en/default/admin/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/CVS/Tag
+++ b/template/en/default/admin/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/classifications/CVS/Entries b/template/en/default/admin/classifications/CVS/Entries
index ca28f9a2ff2635496e0a81b62dd3580fc78f7642..14a951b6304895ce1b0f6adb4af776725bb8c1b7 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_19_3
-/del.html.tmpl/1.2/Thu Oct  7 07:12:40 2004//TBUGZILLA-2_19_3
-/delete.html.tmpl/1.1/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_19_3
-/edit.html.tmpl/1.3/Mon Dec 27 09:58:29 2004//TBUGZILLA-2_19_3
-/new.html.tmpl/1.2/Mon Dec 27 09:58:29 2004//TBUGZILLA-2_19_3
-/reclassify.html.tmpl/1.2/Thu Oct  7 07:12:40 2004//TBUGZILLA-2_19_3
-/select.html.tmpl/1.3/Mon Dec 27 09:58:29 2004//TBUGZILLA-2_19_3
-/update.html.tmpl/1.1/Fri Aug 20 21:49:18 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/admin/classifications/CVS/Tag b/template/en/default/admin/classifications/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/classifications/CVS/Tag
+++ b/template/en/default/admin/classifications/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/components/CVS/Entries b/template/en/default/admin/components/CVS/Entries
index c3f2d0e3eb567c7b741386c5f94ab88d1648561a..0024963825aa263a603567bc7b7cc794609500ac 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.1/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_19_3
-/create.html.tmpl/1.2/Thu Jan 27 19:09:39 2005//TBUGZILLA-2_19_3
-/created.html.tmpl/1.1/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_19_3
-/deleted.html.tmpl/1.3/Wed Apr  6 00:19:54 2005//TBUGZILLA-2_19_3
-/edit.html.tmpl/1.3/Thu Jan 27 19:09:39 2005//TBUGZILLA-2_19_3
-/footer.html.tmpl/1.1/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_19_3
-/list.html.tmpl/1.1/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_19_3
-/select-product.html.tmpl/1.1/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_19_3
-/updated.html.tmpl/1.1/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/admin/components/CVS/Tag b/template/en/default/admin/components/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/components/CVS/Tag
+++ b/template/en/default/admin/components/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/components/confirm-delete.html.tmpl b/template/en/default/admin/components/confirm-delete.html.tmpl
index a810e026be39864d4ddbe2752a8b786795b98421..5e108e7a88d87729f1221b237f621fb672ef5905 100644
--- a/template/en/default/admin/components/confirm-delete.html.tmpl
+++ b/template/en/default/admin/components/confirm-delete.html.tmpl
@@ -26,9 +26,9 @@
   #
   # bug_count: number; The number of bugs belonging to the component
   #
-  # initialowner: string; initial owner, may be empty
+  # initialowner: string; default assignee, may be empty
   #
-  # initialqacontact: string; if system parameter is set to use the initial
+  # initialqacontact: string; if system parameter is set to use the default
   #                           qa contact field, then this will be it, 
   #                           may be empty
   #
@@ -63,13 +63,13 @@
   <td valign="top">[% description FILTER html %]</td>
 </tr>
 <tr>
-  <td valign="top">Initial owner:</td>
+  <td valign="top">Default assignee:</td>
   <td valign="top">[% initialowner FILTER html %]</td>
   
 [% IF Param('useqacontact') %]
 </tr>
 <tr>
-  <td valign="top">Initial QA contact:</td>
+  <td valign="top">Default QA contact:</td>
   <td valign="top">[% initialqacontact FILTER html %]</td>
 [% END %]
   
@@ -145,9 +145,8 @@
         is 1 [% terms.bug %]
       [% END %]
       entered for this component!  When you delete this
-      component, <b><blink>ALL</blink></b> stored [% terms.bugs %] will be deleted,
-      too.
-      You could not even see the [% terms.bug %] history for this component anymore!
+      component, <b><blink>ALL</blink></b> stored [% terms.bugs %] and
+      their history will be deleted too.
       </td></tr></table>
 
   [% END %]
diff --git a/template/en/default/admin/components/create.html.tmpl b/template/en/default/admin/components/create.html.tmpl
index c8838eea6ed0c1b2a8b6d4a4fed0e39fa1d6d238..769b61ca15c5f01be0931f1e5dafb03563341f48 100644
--- a/template/en/default/admin/components/create.html.tmpl
+++ b/template/en/default/admin/components/create.html.tmpl
@@ -45,7 +45,7 @@
       </td>
     </tr>
     <tr>
-      <th align="right"><label for="initialowner">Initial Owner:</label></th>
+      <th align="right"><label for="initialowner">Default Assignee:</label></th>
       <td>
         [% INCLUDE global/userselect.html.tmpl
            name => "initialowner"
@@ -59,7 +59,7 @@
 [% IF Param('useqacontact') %]
     <tr>
       <th align="right">
-        <label for="initialqacontact">Initial QA Contact:</label></th>
+        <label for="initialqacontact">Default QA Contact:</label></th>
       <td>
         [% INCLUDE global/userselect.html.tmpl
            name => "initialqacontact"
diff --git a/template/en/default/admin/components/edit.html.tmpl b/template/en/default/admin/components/edit.html.tmpl
index 580008008e9b08d5cebd8e98aef559b6e8b152b6..64959ad9629d92a162b94b85bb8f485a38e7698b 100644
--- a/template/en/default/admin/components/edit.html.tmpl
+++ b/template/en/default/admin/components/edit.html.tmpl
@@ -24,9 +24,9 @@
   #
   # description: string; Component description, may be empty
   #
-  # initialowner: string; initial owner, may be empty
+  # initialowner: string; default assignee, may be empty
   #
-  # initialqacontact: string; initial qa contact, may be empty
+  # initialqacontact: string; default qa contact, may be empty
   #
   # product: string; The product the component belongs to
   #
@@ -55,7 +55,7 @@
       </td>
     </tr>
     <tr>
-      <td valign="top"><label for="initialowner">Initial owner:</label></td>
+      <td valign="top"><label for="initialowner">Default Assignee:</label></td>
       <td>
         [% INCLUDE global/userselect.html.tmpl
            name => "initialowner"
@@ -69,7 +69,7 @@
 [% IF Param('useqacontact') %]
     </tr>
     <tr>
-      <td valign="top"><label for="initialqacontact">Initial QA contact:</label></td>
+      <td valign="top"><label for="initialqacontact">Default QA contact:</label></td>
       <td>
         [% INCLUDE global/userselect.html.tmpl
            name => "initialqacontact"
diff --git a/template/en/default/admin/components/list.html.tmpl b/template/en/default/admin/components/list.html.tmpl
index 027e1e0282546eef3f0e42898720cc5003632d77..c321219fc7bae612a34ce9119a33fae0f813c160 100644
--- a/template/en/default/admin/components/list.html.tmpl
+++ b/template/en/default/admin/components/list.html.tmpl
@@ -23,7 +23,7 @@
   # components: array of hashes having the properties:
   #   - name: string; The name of the component.
   #   - description: string; The description of the component.
-  #   - initialowner: string; The initial owner of the component.
+  #   - initialowner: string; The default assignee of the component.
   #   - initialqacontact: string; The qa_contact of the component.
   #   - bug_count: number; The number of bugs in the component
   #                        (if showbugcounts defined).
@@ -65,7 +65,7 @@
      },
      { 
        name => "initialowner"
-       heading => "Initial owner"
+       heading => "Default Assignee"
      },
    ]
 %]
diff --git a/template/en/default/admin/components/select-product.html.tmpl b/template/en/default/admin/components/select-product.html.tmpl
index 7e6cb8be59b3e040b3476d82502701855ecc7891..37a33e8d9573552bc0fd466ec52cb7a66c0808ef 100644
--- a/template/en/default/admin/components/select-product.html.tmpl
+++ b/template/en/default/admin/components/select-product.html.tmpl
@@ -39,9 +39,6 @@
   title = "Edit components for which product?"
 %]
 
-[% bug_count_contentlink = BLOCK %]buglist.cgi?component=%%name%%&amp;product=
-  [%- product FILTER url_quote %][% END %]
-
 [% columns = [
      { 
        name => "name"
@@ -62,7 +59,7 @@
       name => 'bug_count'
       heading => "$terms.Bugs"
       align => "right"
-      contentlink => bug_count_contentlink
+      contentlink => "buglist.cgi?product=%%name%%"
     }) %]
 
 [% END %]
diff --git a/template/en/default/admin/components/updated.html.tmpl b/template/en/default/admin/components/updated.html.tmpl
index 2382814df96b964eb7eecc50d4211a32ae1d6c1d..b4c4fea3cf2db4e47a509eca2c63de60877710a6 100644
--- a/template/en/default/admin/components/updated.html.tmpl
+++ b/template/en/default/admin/components/updated.html.tmpl
@@ -30,9 +30,9 @@
   #
   # description & updated_description: the component description
   #
-  # initialowner & updated_initialowner: the initial owner
+  # initialowner & updated_initialowner: the default assignee
   #
-  # initialqacontact & updated_initialqacontact: the initial qa contact
+  # initialqacontact & updated_initialqacontact: the default qa contact
   #
   # product: string; the name of the product the component belongs to
   #%]
@@ -54,15 +54,15 @@
 [% END %]
 
 [% IF updated_initialowner %]
-  <p>Updated Initial Owner to: '[% initialowner FILTER html %]'.</p>
+  <p>Updated Default Assignee to: '[% initialowner FILTER html %]'.</p>
 [% END %]
 
 [% IF updated_initialqacontact %]
   <p>
   [% IF initialqacontact %]
-    Updated Initial QA Contact to '[% initialqacontact FILTER html %]'.
+    Updated Default QA Contact to '[% initialqacontact FILTER html %]'.
   [% ELSE %]
-    Removed initial QA Contact.
+    Removed Default QA Contact.
   [% END %]
   </p>
 [% END %]
diff --git a/template/en/default/admin/fieldvalues/CVS/Entries b/template/en/default/admin/fieldvalues/CVS/Entries
index e90a9b2b6e38fb9dae65af8c5ae10c5558cef9f8..ecef91a8752ad894e4eeacf189104f931eb4c76f 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.2/Mon Apr  4 22:52:07 2005//TBUGZILLA-2_19_3
-/create.html.tmpl/1.1/Thu Feb 24 22:48:06 2005//TBUGZILLA-2_19_3
-/created.html.tmpl/1.1/Thu Feb 24 22:48:06 2005//TBUGZILLA-2_19_3
-/deleted.html.tmpl/1.1/Thu Feb 24 22:48:06 2005//TBUGZILLA-2_19_3
-/edit.html.tmpl/1.1/Thu Feb 24 22:48:06 2005//TBUGZILLA-2_19_3
-/footer.html.tmpl/1.2/Mon Apr  4 22:52:07 2005//TBUGZILLA-2_19_3
-/list.html.tmpl/1.1/Thu Feb 24 22:48:06 2005//TBUGZILLA-2_19_3
-/select-field.html.tmpl/1.1/Thu Feb 24 22:48:06 2005//TBUGZILLA-2_19_3
-/updated.html.tmpl/1.1/Thu Feb 24 22:48:06 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/admin/fieldvalues/CVS/Tag b/template/en/default/admin/fieldvalues/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/fieldvalues/CVS/Tag
+++ b/template/en/default/admin/fieldvalues/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl b/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl
index 199a470aaf2c9dc3dc78d9795b4cf8e247a3b1ef..d1a016d8d3d92f9afd150a33ccadf134743d791b 100644
--- a/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl
+++ b/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl
@@ -11,7 +11,7 @@
   #
   # The Original Code is the Bugzilla Bug Tracking System.
   #
-  # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
   #%]
 
 [%# INTERFACE:
diff --git a/template/en/default/admin/fieldvalues/create.html.tmpl b/template/en/default/admin/fieldvalues/create.html.tmpl
index 70dbc4eb74f6e6cdc1e15798ae09f499d38a2598..a23c8ddb2c4e28407217768cce3598630235b73a 100644
--- a/template/en/default/admin/fieldvalues/create.html.tmpl
+++ b/template/en/default/admin/fieldvalues/create.html.tmpl
@@ -11,7 +11,7 @@
   #
   # The Original Code is the Bugzilla Bug Tracking System.
   #
-  # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
   #%]
 
 [%# INTERFACE:
diff --git a/template/en/default/admin/fieldvalues/created.html.tmpl b/template/en/default/admin/fieldvalues/created.html.tmpl
index 28688d991adf368edd36eff04282b375df9aa3ee..d4e4734bbc9e9fce2d4e636f39479cb305fb184c 100644
--- a/template/en/default/admin/fieldvalues/created.html.tmpl
+++ b/template/en/default/admin/fieldvalues/created.html.tmpl
@@ -11,7 +11,7 @@
   #
   # The Original Code is the Bugzilla Bug Tracking System.
   #
-  # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
   #%]
 
 [%# INTERFACE:
@@ -19,7 +19,7 @@
   # field: string; the name of the field the value belongs to
   #%]
   
-[% title = BLOCK %]New Value '[% product FILTER html %]' added to 
+[% title = BLOCK %]New Value '[% value FILTER html %]' added to 
   '[% field FILTER html %]' field[% END %]
 [% PROCESS global/header.html.tmpl
   title = title
diff --git a/template/en/default/admin/fieldvalues/deleted.html.tmpl b/template/en/default/admin/fieldvalues/deleted.html.tmpl
index 2bb3c840bb984dc47b42646e1d1090cb9d7e27cf..d5483bcc0f61af0e390b0b1805ee99e880137cde 100644
--- a/template/en/default/admin/fieldvalues/deleted.html.tmpl
+++ b/template/en/default/admin/fieldvalues/deleted.html.tmpl
@@ -11,7 +11,7 @@
   #
   # The Original Code is the Bugzilla Bug Tracking System.
   #
-  # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
   #%]
 
 [%# INTERFACE:
diff --git a/template/en/default/admin/fieldvalues/edit.html.tmpl b/template/en/default/admin/fieldvalues/edit.html.tmpl
index 9771148cc593239d5e1ccb24dc87d4effb206ccd..58de8611b182008146abdda807e59a72f7b2de1c 100644
--- a/template/en/default/admin/fieldvalues/edit.html.tmpl
+++ b/template/en/default/admin/fieldvalues/edit.html.tmpl
@@ -11,7 +11,7 @@
   #
   # The Original Code is the Bugzilla Bug Tracking System.
   #
-  # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
   #%]
 
 [%# INTERFACE:
@@ -23,7 +23,7 @@
 [% PROCESS global/variables.none.tmpl %]
 
 [% title = BLOCK %]Edit Value '[% value FILTER html %]'  '
-                   [%- filter FILTER html %]'[% END %]
+                   [%- field FILTER html %]'[% END %]
 [% PROCESS global/header.html.tmpl
   title = title
 %]
diff --git a/template/en/default/admin/fieldvalues/footer.html.tmpl b/template/en/default/admin/fieldvalues/footer.html.tmpl
index c8e3391c94529f36fefe2d05c2edfd741082a951..f7b522f284c8ec5702420804bbe56f2076d13a0e 100644
--- a/template/en/default/admin/fieldvalues/footer.html.tmpl
+++ b/template/en/default/admin/fieldvalues/footer.html.tmpl
@@ -11,7 +11,7 @@
   #
   # The Original Code is the Bugzilla Bug Tracking System.
   #
-  # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
   #%]
 
 [%# INTERFACE:
diff --git a/template/en/default/admin/fieldvalues/list.html.tmpl b/template/en/default/admin/fieldvalues/list.html.tmpl
index 4f686d33890402093ad497ab633e11fa920bbf80..b661653de15a5c71373e6097630644fe7e7c34e2 100644
--- a/template/en/default/admin/fieldvalues/list.html.tmpl
+++ b/template/en/default/admin/fieldvalues/list.html.tmpl
@@ -11,7 +11,7 @@
   #
   # The Original Code is the Bugzilla Bug Tracking System.
   #
-  # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
   #%]
 
 [%# INTERFACE:
diff --git a/template/en/default/admin/fieldvalues/select-field.html.tmpl b/template/en/default/admin/fieldvalues/select-field.html.tmpl
index 834295225c521828bd203c07053407e1e9e4be22..f4ffcdf6d9565d8172da41a37318588c64160c13 100644
--- a/template/en/default/admin/fieldvalues/select-field.html.tmpl
+++ b/template/en/default/admin/fieldvalues/select-field.html.tmpl
@@ -11,7 +11,7 @@
   #
   # The Original Code is the Bugzilla Bug Tracking System.
   #
-  # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
   #
   #%]
 
diff --git a/template/en/default/admin/fieldvalues/updated.html.tmpl b/template/en/default/admin/fieldvalues/updated.html.tmpl
index c19aac28553a3cb1b2c2d3a49f746cbef87bd187..fc9fcafbcbd2f413ff53322190133e9a63ae59e2 100644
--- a/template/en/default/admin/fieldvalues/updated.html.tmpl
+++ b/template/en/default/admin/fieldvalues/updated.html.tmpl
@@ -11,7 +11,7 @@
   #
   # The Original Code is the Bugzilla Bug Tracking System.
   #
-  # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
   #%]
 
 [%# INTERFACE:
diff --git a/template/en/default/admin/flag-type/CVS/Entries b/template/en/default/admin/flag-type/CVS/Entries
index 2b2301bbe7ecc6eb539c8a38f7dc62b94dbf2705..8620eb364a3896bef69a3c91b53da19c50a4d4ce 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_19_3
-/edit.html.tmpl/1.11/Thu May  5 19:20:45 2005//TBUGZILLA-2_19_3
-/list.html.tmpl/1.10/Fri Feb 25 15:27:24 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/admin/flag-type/CVS/Tag b/template/en/default/admin/flag-type/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/flag-type/CVS/Tag
+++ b/template/en/default/admin/flag-type/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/groups/CVS/Entries b/template/en/default/admin/groups/CVS/Entries
index 499528b1b47d326a8c7743fa96d22eaf881d3b23..4ebc615ceff75ffe92252eb0eb5d2e2b2ddde336 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_19_3
-/create.html.tmpl/1.4/Tue Jul 13 05:12:31 2004//TBUGZILLA-2_19_3
-/created.html.tmpl/1.1/Tue Jul 13 05:12:32 2004//TBUGZILLA-2_19_3
-/delete.html.tmpl/1.4/Mon Feb 28 20:41:44 2005//TBUGZILLA-2_19_3
-/deleted.html.tmpl/1.1/Tue Jul 13 05:12:32 2004//TBUGZILLA-2_19_3
-/edit.html.tmpl/1.5/Fri Feb 18 16:38:42 2005//TBUGZILLA-2_19_3
-/list.html.tmpl/1.1/Tue Jul 13 05:12:32 2004//TBUGZILLA-2_19_3
-/remove.html.tmpl/1.1/Tue Jul 13 05:12:32 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/admin/groups/CVS/Tag b/template/en/default/admin/groups/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/groups/CVS/Tag
+++ b/template/en/default/admin/groups/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/groups/delete.html.tmpl b/template/en/default/admin/groups/delete.html.tmpl
index 2c4b7086299a9e1f58dbf429c52291e664014f13..d720ecddc5e54713fe1515b52d76e1036962911c 100644
--- a/template/en/default/admin/groups/delete.html.tmpl
+++ b/template/en/default/admin/groups/delete.html.tmpl
@@ -56,7 +56,7 @@
     <p><b>One or more users belong to this group. You cannot delete
     this group while there are users in it.</b>
 
-    <br><a href="editusers.cgi?action=list&group=[% gid FILTER html %]&grouprestrict=1">Show
+    <br><a href="editusers.cgi?action=list&groupid=[% gid FILTER html %]&grouprestrict=1">Show
     me which users</a> - <input type="checkbox" name="removeusers">Remove
     all users from this group for me.</p>
   [% END %]
diff --git a/template/en/default/admin/keywords/CVS/Entries b/template/en/default/admin/keywords/CVS/Entries
index 47d15cce381b9211192c40311fcbca8d0e835bbb..029822ee884ff744938375740e35deb927f5c3f9 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_19_3
-/create.html.tmpl/1.4/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_19_3
-/created.html.tmpl/1.2/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_19_3
-/edit.html.tmpl/1.3/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_19_3
-/list.html.tmpl/1.6/Fri Jul 30 22:16:38 2004//TBUGZILLA-2_19_3
-/rebuild-cache.html.tmpl/1.3/Sun Jan 18 18:39:15 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/admin/keywords/CVS/Tag b/template/en/default/admin/keywords/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/keywords/CVS/Tag
+++ b/template/en/default/admin/keywords/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/milestones/CVS/Entries b/template/en/default/admin/milestones/CVS/Entries
index f8a7fb311fdc74d02680bdc5ba124961f729bcdf..7613257103206f8a75a8351e3dac8c4de0bd9778 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.2/Wed Apr  6 00:19:55 2005//TBUGZILLA-2_19_3
-/create.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_19_3
-/created.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_19_3
-/deleted.html.tmpl/1.2/Wed Apr  6 00:19:55 2005//TBUGZILLA-2_19_3
-/edit.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_19_3
-/footer.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_19_3
-/list.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_19_3
-/select-product.html.tmpl/1.2/Thu Sep 23 19:14:13 2004//TBUGZILLA-2_19_3
-/updated.html.tmpl/1.1/Sat Sep 11 06:48:14 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/admin/milestones/CVS/Tag b/template/en/default/admin/milestones/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/milestones/CVS/Tag
+++ b/template/en/default/admin/milestones/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/milestones/confirm-delete.html.tmpl b/template/en/default/admin/milestones/confirm-delete.html.tmpl
index c3d379cbd58ea61a9c01510e73a4d84349dcf31d..eda5add36a17662e11686b988fd2aa3140945c1b 100644
--- a/template/en/default/admin/milestones/confirm-delete.html.tmpl
+++ b/template/en/default/admin/milestones/confirm-delete.html.tmpl
@@ -17,7 +17,7 @@
   # Rights Reserved.
   #
   # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #                 Fr�d�ric Buclin <LpSolit@gmail.com>
+  #                 Frédéric Buclin <LpSolit@gmail.com>
   #%]
 
 [%# INTERFACE:
diff --git a/template/en/default/admin/milestones/deleted.html.tmpl b/template/en/default/admin/milestones/deleted.html.tmpl
index 3a3e52ab56c29dfce3bf81de032caa6b15d737a0..8db9b89434458d557df71ae13177d6073a56e104 100644
--- a/template/en/default/admin/milestones/deleted.html.tmpl
+++ b/template/en/default/admin/milestones/deleted.html.tmpl
@@ -17,7 +17,7 @@
   # Rights Reserved.
   #
   # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #                 Fr�d�ric Buclin <LpSolit@gmail.com>
+  #                 Frédéric Buclin <LpSolit@gmail.com>
   #%]
 
 [%# INTERFACE:
diff --git a/template/en/default/admin/products/CVS/Entries b/template/en/default/admin/products/CVS/Entries
index 95d5bbe78fac5e6ab274e4868cb5de892ec454ec..9a96ef1e13a214c7d110ebe811ceb42f3136aefe 100644
--- a/template/en/default/admin/products/CVS/Entries
+++ b/template/en/default/admin/products/CVS/Entries
@@ -1,4 +1,6 @@
-/footer.html.tmpl/1.2/Thu Mar 17 14:47:06 2005//TBUGZILLA-2_19_3
-/list-classifications.html.tmpl/1.1/Thu Mar 17 14:47:06 2005//TBUGZILLA-2_19_3
-/list.html.tmpl/1.1/Wed Feb 16 18:05:06 2005//TBUGZILLA-2_19_3
+/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
 D/groupcontrol////
diff --git a/template/en/default/admin/products/CVS/Tag b/template/en/default/admin/products/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/products/CVS/Tag
+++ b/template/en/default/admin/products/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/products/confirm-delete.html.tmpl b/template/en/default/admin/products/confirm-delete.html.tmpl
new file mode 100644
index 0000000000000000000000000000000000000000..672f345e9a59cead3454df8b29497faba2bdb537
--- /dev/null
+++ b/template/en/default/admin/products/confirm-delete.html.tmpl
@@ -0,0 +1,282 @@
+[%# 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
+  # the License at http://www.mozilla.org/MPL/
+  #
+  # Software distributed under the License is distributed on an "AS
+  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+  # implied. See the License for the specific language governing
+  # rights and limitations under the License.
+  #
+  # The Original Code is the Bugzilla Bug Tracking System.
+  #
+  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
+  #%]
+
+[%# INTERFACE:
+  # product_name: string; The name of the product
+  #
+  # prod_description: string; Product description, may be empty
+  #
+  # (classification fields available if Param('useclassification') is enabled:)
+  #
+  # classification: string; The name of the classification the product is in
+  #
+  # class_description: string; Classification description, may be empty
+  #
+  # bug_count: number; The number of bugs belonging to the product
+  #
+  # milestoneurl: string; milestone url, if milestones are in use,
+  #                       may be empty
+  #
+  # disallownew: boolean; Are new bugs allowed for the product flag
+  #
+  # components: list of hashes, members are: name, description
+  #
+  # versions: list of version values.
+  #
+  # milestones: list of milestone values.
+  #
+  #%]
+
+[% title = BLOCK %]Delete Product '[% product_name FILTER html %]'
+[% END %]
+
+[% PROCESS global/header.html.tmpl
+  title = title
+  style_urls = ['skins/standard/admin.css']
+%]
+
+[% IF classification %]
+  [% classification_url_part = BLOCK %]&amp;classification=
+    [%- classification FILTER url_quote %]
+  [%- END %]
+[% ELSE %]
+  [% classification_url_part = "" %]
+[% END %]
+
+[% UNLESS class_description %]
+  [% class_description = '<span style="color: red">missing</span>' %]
+[% END %]
+[% UNLESS prod_description %]
+  [% prod_description = '<span style="color: red">missing</span>' %]
+[% END %]
+
+[% IF disallownew %]
+  [% disallownew = "closed" %]
+[% ELSE %]
+  [% disallownew = "open" %]
+[% END %]
+
+<table border="1" cellpadding="4" cellspacing="0">
+  <tr bgcolor="#6666FF">
+    <th valign="top" align="left">Field</th>
+    <th valign="top" align="left">Value</th>
+  </tr>
+
+  [% IF Param('useclassification') %]
+    <tr>
+      <td>Classification:</td>
+      <td>[% classification FILTER html %]</td>
+    </tr>
+    <tr>
+      <td>Classification Description:</td>
+      [%# descriptions are intentionally not filtered to allow html content %]
+      <td>[% class_description FILTER none %]</td>
+    </tr>
+  [% END %]
+
+  <tr>
+    <td valign="top">Product:</td>
+    <td valign="top">
+      <a href="editproducts.cgi?product=[% product_name FILTER url_quote %]
+         [%- classification_url_part %]">
+        [% product_name FILTER html %]
+      </a>
+    </td>
+  </tr>
+  <tr>
+    <td valign="top">Description:</td>
+    [%# descriptions are intentionally not filtered to allow html content %]
+    <td valign="top">[% prod_description FILTER none %]</td>
+  </tr>
+
+  [% IF Param('usetargetmilestone') %]
+    <tr>
+      <td>Milestone URL:</td>
+      <td>
+        [% IF milestoneurl %]
+          <a href="[% milestoneurl FILTER uri %]">
+            [%- milestoneurl FILTER html %]
+          </a>
+        [% ELSE %]
+          none
+        [% END %]
+      </td>
+    </tr>
+  [% END %]
+
+  <tr>
+    <td>Closed for [% terms.bugs %]:</td>
+    <td>[% disallownew FILTER html %]</td>
+  </tr>
+
+  <tr>
+    <td>
+      [% IF components.size > 0 %]
+        <a href="editcomponents.cgi?product=[% product_name FILTER url_quote %]
+           [%- classification_url_part %]"
+           title="Edit components for product '[% product_name FILTER html %]'">
+          Components:
+        </a>
+      [% ELSE %]
+        Components:
+      [% END %]
+    </td>
+    <td>
+      [% IF components.size > 0 %]
+        <table>
+          [% FOREACH c = components %]
+            <tr>
+              <th align="right">[% c.name FILTER html %]:</th>
+              [%# descriptions are intentionally not filtered to allow html content %]
+              <td>
+                [% IF c.description %]
+                  [% c.description FILTER none %]
+                [% ELSE %]
+                  <span style="color: red">missing</span>
+                [% END %]
+              </td>
+            </tr>
+          [% END %]
+        </table>
+      [% ELSE %]
+        none
+      [% END %]
+    </td>
+  </tr>
+
+  <tr>
+    <td>
+      [% IF versions.size > 0 %]
+        <a href="editversions.cgi?product=[%- product_name FILTER url_quote %]
+           [%- classification_url_part %]">
+          Versions:
+        </a>
+      [% ELSE %]
+        Versions:
+      [% END %]
+    <td>
+      [% IF versions.size > 0 %]
+        [% FOREACH v = versions %]
+          [% v FILTER html %]<br>
+        [% END %]
+      [% ELSE %]
+        none
+      [% END %]
+    </td>
+  </tr>
+
+  <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:
+      [% END %]
+    </td>
+    <td>
+      [% IF milestones.size > 0 %]
+        [% FOREACH m = milestones %]
+          [% m FILTER html %]<br>
+        [% END %]
+      [% ELSE %]
+        none
+      [% END %]
+    </td>
+  </tr>
+
+  <tr>
+    <td>[% terms.Bugs %]:</td>
+    <td>
+      [% IF bug_count %]
+        <a href="buglist.cgi?product=[%- product_name FILTER url_quote %]
+           [%- classification_url_part %]"
+           title="List of [% terms.bugs %] for product '
+           [%- product_name FILTER html %]'">
+          [% bug_count %]
+        </a>
+      [% ELSE %]
+        none
+      [% END %]
+    </td>
+  </tr>
+</table>
+
+<h2>Confirmation</h2>
+
+[% IF bug_count %]
+
+  [% IF !Param("allowbugdeletion") %]
+
+    Sorry, there
+
+    [% IF bug_count > 1 %]
+      are [% bug_count %] [%+ terms.bugs %]
+    [% ELSE %]
+      is 1 [% terms.bug %]
+    [% END %]
+
+    outstanding for this product. You must reassign
+
+    [% IF bug_count > 1 %]
+       those [% terms.bugs %]
+    [% ELSE %]
+       that [% terms.bug %]
+    [% END %]
+
+    to another product before you can delete this one.
+
+  [% ELSE %]
+
+    <table border="0" cellpadding="20" width="70%" bgcolor="red">
+      <tr>
+        <td>
+          There
+          [% IF bug_count > 1 %]
+            are [% bug_count %] [%+ terms.bugs %]
+          [% ELSE %]
+            is 1 [% terms.bug %]
+          [% END %]
+          entered for this product!  When you delete this
+          product, <b><blink>ALL</blink></b> stored [% terms.bugs %] and
+          their history will be deleted, too.
+        </td>
+      </tr>
+    </table>
+
+  [% END %]
+
+[% END %]
+
+[% IF bug_count == 0 || Param('allowbugdeletion') %]
+
+  <p>Do you really want to delete this product?<p>
+
+  <form method="post" action="editproducts.cgi">
+    <input type="submit" value="Yes, delete">
+    <input type="hidden" name="action" value="delete">
+    <input type="hidden" name="product" value="[% product_name FILTER html %]">
+    <input type="hidden" name="classification"
+           value="[% classification FILTER html %]">
+  </form>
+
+[% END %]
+
+[% PROCESS admin/products/footer.html.tmpl %]
+
+[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/products/deleted.html.tmpl b/template/en/default/admin/products/deleted.html.tmpl
new file mode 100644
index 0000000000000000000000000000000000000000..3252f97c9d5848467aa8a5f71a126b163e4b5f6b
--- /dev/null
+++ b/template/en/default/admin/products/deleted.html.tmpl
@@ -0,0 +1,45 @@
+[%# 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
+  # the License at http://www.mozilla.org/MPL/
+  #
+  # Software distributed under the License is distributed on an "AS
+  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+  # implied. See the License for the specific language governing
+  # rights and limitations under the License.
+  #
+  # The Original Code is the Bugzilla Bug Tracking System.
+  #
+  # Contributor(s): Tiago R. Mello <timello@async.com.br>
+  #
+  #%]
+
+[% PROCESS global/header.html.tmpl
+  title = 'Deleting product'
+%]
+
+[% IF nb_bugs %]
+  All references to deleted [% terms.bugs %] removed.
+[% END %]
+
+<p>
+  Components deleted.<br>
+  Versions deleted.<br>
+  Milestones deleted.
+</p>
+
+<p>
+  Group controls deleted.<br>
+  Flag inclusions and exclusions deleted.
+</p>
+
+<p>
+  Product [% product FILTER html %] deleted.
+</p>
+
+[% PROCESS admin/products/footer.html.tmpl
+           no_edit_product_link = 1
+%]
+
+[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/products/footer.html.tmpl b/template/en/default/admin/products/footer.html.tmpl
index ecf23951f7a4b0035b08086da9c5f20b390bed98..531e6c48ebceb1dd0696afae426c0c4fb1855488 100644
--- a/template/en/default/admin/products/footer.html.tmpl
+++ b/template/en/default/admin/products/footer.html.tmpl
@@ -28,10 +28,13 @@
   # no_add_product_link
   #%]
 
-[% IF classification %]
+[% IF Param('useclassification') && classification %]
   [% classification_url_part = BLOCK %]&amp;classification=
      [%- classification FILTER url_quote %]
   [% END %]
+  [% classification_url_part_start = BLOCK %]classification=
+     [%- classification FILTER url_quote %]
+  [% END %]
   [% classification_text = BLOCK %] 
     of classification '[% classification FILTER html %]'
   [% END %]
@@ -61,16 +64,16 @@
          [% classification_text %]"
   href="editproducts.cgi?action=edit&amp;product=
         [%- name FILTER url_quote %][% classification_url_part %]">
-        '[% name FILTER html %]'</a>FRED
+        '[% name FILTER html %]'</a>.
 [% END %]
 
 
+[%# Edit other products (in a classification if specified): %]
 [% UNLESS no_edit_other_products_link %]
-  Edit other products [% classification_text %]<a 
-  href="editproducts.cgi?product=
-        [%- name FILTER url_quote %]
-        [%- classification_url_part %]">'
-        [%- classification FILTER html %]'</a>
+  Edit <a 
+  href="editproducts.cgi?
+        [%- classification_url_part_start FILTER none %]">other products
+          [% classification_text %]</a>.
    
 [% END %]
 
diff --git a/template/en/default/admin/products/groupcontrol/CVS/Entries b/template/en/default/admin/products/groupcontrol/CVS/Entries
index 4cd9aa17c09a879ab63eb38b3a76b34310d3aa8e..94515b6010ab544d331dc4f4df94350eb0afc5eb 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_19_3
-/edit.html.tmpl/1.5/Thu Feb 17 16:31:02 2005//TBUGZILLA-2_19_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
 D
diff --git a/template/en/default/admin/products/groupcontrol/CVS/Tag b/template/en/default/admin/products/groupcontrol/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/products/groupcontrol/CVS/Tag
+++ b/template/en/default/admin/products/groupcontrol/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/settings/CVS/Entries b/template/en/default/admin/settings/CVS/Entries
index b9d7a615f5fa004e78c1944224c023705659f16d..54b4b1f21038df72045cf9fe1639cba1a57a80ab 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.2/Mon Apr  4 22:12:44 2005//TBUGZILLA-2_19_3
-/updated.html.tmpl/1.1/Thu Mar 10 15:51:43 2005//TBUGZILLA-2_19_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
 D
diff --git a/template/en/default/admin/settings/CVS/Tag b/template/en/default/admin/settings/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/settings/CVS/Tag
+++ b/template/en/default/admin/settings/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/settings/edit.html.tmpl b/template/en/default/admin/settings/edit.html.tmpl
index 97bb1ab3512451e706a2bc66b95c813d77e9640f..b5377a2410b4a1fa26c10258da07fe3bcc5fa732 100644
--- a/template/en/default/admin/settings/edit.html.tmpl
+++ b/template/en/default/admin/settings/edit.html.tmpl
@@ -26,24 +26,24 @@
   #%]
 
 [% PROCESS global/header.html.tmpl
-   title = "Edit Global Settings"
+   title = "Default Preferences"
  %]
 
 [% PROCESS "global/setting-descs.none.tmpl" %]
 
 <p>
-This lets you edit the global settings values.
+This lets you edit the default preferences values.
 </p>
 <p>
-The Default Value displayed for each setting will apply to all users who
+The Default Value displayed for each preference will apply to all users who
 do not choose their own value, and to anyone who is not logged in.
 </p>
 <p>
-The 'Enabled' checkbox controls whether or not this setting is available
+The 'Enabled' checkbox controls whether or not this preference is available
 to users.<br>
-If it is checked, users will see this setting on their User Preferences page,
+If it is checked, users will see this preference on their User Preferences page,
 and will be allowed to choose their own value if they desire.<br>
-If it is not checked, this setting will not appear on the User Preference
+If it is not checked, this preference will not appear on the User Preference
 page, and the Default Value will automatically apply to everyone.
 </p>
 <hr>
@@ -52,7 +52,7 @@ page, and the Default Value will automatically apply to everyone.
     <form name="adminsettingform" method="post" action="editsettings.cgi">
       <table border="1" cellpadding="4">
       <tr>
-        <th>Setting Text</th>
+        <th>Preference Text</th>
         <th>Default Value</th>
         <th>Enabled</th>
       <tr>
@@ -96,7 +96,7 @@ page, and the Default Value will automatically apply to everyone.
   
   </form>
 [% ELSE %]
-  There are no settings to edit.
+  There are no preferences to edit.
 [% END %]
 
 [% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/settings/updated.html.tmpl b/template/en/default/admin/settings/updated.html.tmpl
index 799fdde75e91299e44147cc86d62cb3c7ba0eba5..4a569ab8ebe1d44cf90e77fffe7e848f0b7e547f 100644
--- a/template/en/default/admin/settings/updated.html.tmpl
+++ b/template/en/default/admin/settings/updated.html.tmpl
@@ -16,12 +16,12 @@
   #%]
 
 [% PROCESS global/header.html.tmpl
-   title = "Settings Updated"
+   title = "Preferences Updated"
  %]
 
-Your changes to the Global Settings have been saved.<br>
+Your changes to the Default Preferences have been saved.<br>
 <br>
 Return to the <a
-href="editsettings.cgi?action=load">Global Settings</a> page.
+href="editsettings.cgi?action=load">Default Preferences</a> page.
 
 [% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/table.html.tmpl b/template/en/default/admin/table.html.tmpl
index 4254f80e19cd22c03a73941c5ebb7e6a04172f1f..ff554429a009ba54b5691ba251fe3340d1e68a60 100644
--- a/template/en/default/admin/table.html.tmpl
+++ b/template/en/default/admin/table.html.tmpl
@@ -76,9 +76,13 @@
       
         [% IF c.contentlink %]
           [% link_uri = c.contentlink %]
-          [% FOREACH m = link_uri.match('%%(.+?)%%'); %]
-            [% IF row.$m %]
-              [% replacement_value = FILTER url_quote; row.$m; END %]
+          [% WHILE link_uri.search('%%(.+?)%%')%]
+            [% FOREACH m = link_uri.match('%%(.+?)%%') %]
+              [% IF row.$m %]
+                [% replacement_value = FILTER url_quote; row.$m; END %]
+              [% ELSE %]
+                [% replacement_value = "" %]
+              [% END %]
               [% link_uri = link_uri.replace("%%$m%%", replacement_value) %]
             [% END %]
           [% END %]
diff --git a/template/en/default/admin/users/CVS/Entries b/template/en/default/admin/users/CVS/Entries
index f56c9a6cf8e78c582e3a8ec9d4f4c9c6a1b60e0a..9b8bfeb0f85dac33b1bd8ebc10e10edea8b05955 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.2/Mon Mar  7 18:11:37 2005//TBUGZILLA-2_19_3
-/create.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_19_3
-/edit.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_19_3
-/list.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_19_3
-/listselectvars.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_19_3
-/search.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_19_3
-/userdata.html.tmpl/1.1/Mon Feb 28 20:41:45 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/admin/users/CVS/Tag b/template/en/default/admin/users/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/users/CVS/Tag
+++ b/template/en/default/admin/users/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/users/confirm-delete.html.tmpl b/template/en/default/admin/users/confirm-delete.html.tmpl
index 91b9395b805cdc9b3db3e341e453d89d6244df8e..e8bfe8609d0a1bac36880db73fd8c7a108981a84 100644
--- a/template/en/default/admin/users/confirm-delete.html.tmpl
+++ b/template/en/default/admin/users/confirm-delete.html.tmpl
@@ -21,12 +21,9 @@
   # editusers:                is viewing user member of editusers?
   # editcomponents:           is viewing user member of editcomponents?
   # otheruser:                Bugzilla::User object of the viewed user.
-  # product_responsibilities: list of hashes, one entry per Bugzilla component.
-  #                           productname:      Name of the product.
-  #                           componentname:    Name of the component.
-  #                           initialowner:     User ID of initial owner.
-  #                           initialqacontact: User ID of initial QA contact.
-  # bugs:                     number of bugs the viewed user has a role in
+  # reporter:                 number of bugs reported by the user
+  # assignee_or_qa:           number of bugs the user is either the assignee
+  #                           or the QA contact
   # bug_activity:             number of bugs the viewed user has activity
   #                           entries on
   # cc                        number of bugs the viewed user is cc list member
@@ -57,8 +54,8 @@
 %]
 
 [% responsibilityterms = {
-  'initialowner'     => 'Initial Owner',
-  'initialqacontact' => 'Initial QA Contact'
+  'initialowner'     => 'Default Assignee',
+  'initialqacontact' => 'Default QA Contact'
   }
 %]
 
@@ -85,12 +82,12 @@
       [% END %]
     </td>
   </tr>
-  [% IF product_responsibilities.size %]
+  [% IF otheruser.product_responsibilities.size %]
     <tr>
       <th>Product responsibilities:</th>
       <td>
         <ul>
-          [% FOREACH component = product_responsibilities %]
+          [% FOREACH component = otheruser.product_responsibilities %]
             <li>
               [% andstring = '' %]
               [% FOREACH responsibility = ['initialowner', 'initialqacontact'] %]
@@ -118,7 +115,7 @@
   [% END %]
 </table>
 
-[% IF product_responsibilities.size %]
+[% IF otheruser.product_responsibilities.size %]
   <p>
     You can't delete this user at this time because
     [%+ otheruser.login FILTER html %] has got responsibilities for at least
@@ -134,24 +131,22 @@
 
   <h2>Confirmation</h2>
 
-  [% IF bugs || bug_activity || cc || flags.requestee || flags.setter ||
-        longdescs || namedqueries || profiles_activity || series || votes ||
-        watch.watched || watch.watcher || whine_events || whine_schedules %]
+  [% 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 bugs %]
+      [% IF reporter %]
         <li>
           [% otheruser.login FILTER html %]
-          <a href="buglist.cgi?emailassigned_to1=1&amp;emailreporter1=1&amp;emailqa_contact1=1&amp;emailtype1=exact&amp;email1=[% otheruser.login FILTER url_quote %]">is
-          related to
-          [% IF bugs == 1 %]
-            [%+ terms.abug %]
+          <a href="buglist.cgi?emailreporter1=1&amp;emailtype1=exact&amp;email1=[% otheruser.login FILTER url_quote %]">has reported
+          [% IF reporter == 1 %]
+            one [% terms.bug %]
           [% ELSE %]
-            [%+ bugs %] [%+ terms.bugs %]
-          [% END %]</a>, by having reported, being assigned to or being
-          the QA contact.
+            [%+ reporter %] [%+ terms.bugs %]
+          [% END %]</a>.
           If you delete the user account, the [% terms.bugs %] table in the
           database will be inconsistent, resulting in
-          [% IF bugs == 1 %]
+          [% IF reporter == 1 %]
             this [% terms.bug %]
           [% ELSE %]
             these [% terms.bugs %]
@@ -159,6 +154,20 @@
           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&amp;emailqa_contact1=1&amp;emailtype1=exact&amp;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
diff --git a/template/en/default/admin/versions/CVS/Entries b/template/en/default/admin/versions/CVS/Entries
index cfd2c48c1c95aaf853990b7471609773df77e245..ea0bfa4507d9526fa113c5e3a8635645a6b46327 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.2/Wed Apr  6 00:19:55 2005//TBUGZILLA-2_19_3
-/create.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_19_3
-/created.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_19_3
-/deleted.html.tmpl/1.2/Wed Apr  6 00:19:55 2005//TBUGZILLA-2_19_3
-/edit.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_19_3
-/footer.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_19_3
-/list.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_19_3
-/select-product.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_19_3
-/updated.html.tmpl/1.1/Sun Jan 16 13:56:40 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/admin/versions/CVS/Tag b/template/en/default/admin/versions/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/admin/versions/CVS/Tag
+++ b/template/en/default/admin/versions/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/admin/versions/confirm-delete.html.tmpl b/template/en/default/admin/versions/confirm-delete.html.tmpl
index acc20aecacc0247698a545fd4f6bae46ce64bfd0..34ada607bdf94f975da0671ddc6b11f6817d5393 100644
--- a/template/en/default/admin/versions/confirm-delete.html.tmpl
+++ b/template/en/default/admin/versions/confirm-delete.html.tmpl
@@ -17,7 +17,7 @@
   # Rights Reserved.
   #
   # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #                 Fr�d�ric Buclin <LpSolit@gmail.com>
+  #                 Frédéric Buclin <LpSolit@gmail.com>
   #%]
 
 [%# INTERFACE:
diff --git a/template/en/default/attachment/CVS/Entries b/template/en/default/attachment/CVS/Entries
index 656389b5e6fd15eff03d42891d336c2048d1b734..f4ff329ba106237cff2d9502ecbf63fb05f70800 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_19_3
-/content-types.html.tmpl/1.5/Sun Feb 27 10:07:52 2005//TBUGZILLA-2_19_3
-/create.html.tmpl/1.20/Sun Feb 20 17:03:10 2005//TBUGZILLA-2_19_3
-/created.html.tmpl/1.10/Sun Jan 18 18:39:16 2004//TBUGZILLA-2_19_3
-/diff-file.html.tmpl/1.5/Fri Feb 25 15:27:24 2005//TBUGZILLA-2_19_3
-/diff-footer.html.tmpl/1.2/Sun Jan 18 18:39:16 2004//TBUGZILLA-2_19_3
-/diff-header.html.tmpl/1.9/Wed Mar 30 09:41:22 2005//TBUGZILLA-2_19_3
-/edit.html.tmpl/1.27/Fri Feb 25 15:27:24 2005//TBUGZILLA-2_19_3
-/list.html.tmpl/1.20/Thu Apr 28 02:14:26 2005//TBUGZILLA-2_19_3
-/show-multiple.html.tmpl/1.15/Sun May 30 15:52:13 2004//TBUGZILLA-2_19_3
-/updated.html.tmpl/1.11/Mon Feb  2 21:57:29 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/attachment/CVS/Tag b/template/en/default/attachment/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/attachment/CVS/Tag
+++ b/template/en/default/attachment/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/attachment/diff-header.html.tmpl b/template/en/default/attachment/diff-header.html.tmpl
index 3d7ba0c2ddb5bf87452acb810967565330ca84d6..61d7c14ec140a8cadc319f5a4772d76e9129ed7f 100644
--- a/template/en/default/attachment/diff-header.html.tmpl
+++ b/template/en/default/attachment/diff-header.html.tmpl
@@ -27,7 +27,7 @@
   [% IF attachid %]
 Attachment #[% attachid %] for [% terms.bug %] #[% bugid %]
   [% ELSE %]
-Interdiff of #[% oldid %] and #[% newid %] for #[% terms.bug %] #[% bugid %]
+Interdiff of #[% oldid %] and #[% newid %] for [% terms.bug %] #[% bugid %]
   [% END %]
 [% END %]
 
diff --git a/template/en/default/attachment/list.html.tmpl b/template/en/default/attachment/list.html.tmpl
index 5840139a35da54fd0ba9344e9c7663a248758580..8f6bbadb1dc4b08338f7ad1f285a641785496748 100644
--- a/template/en/default/attachment/list.html.tmpl
+++ b/template/en/default/attachment/list.html.tmpl
@@ -73,6 +73,7 @@
           [% IF attachment.ispatch && patchviewerinstalled %]
             | <a href="attachment.cgi?id=[% attachment.attachid %]&amp;action=diff">Diff</a>
           [% END %]
+          [% Hook.process("action") %]
         </td>
       </tr>
     [% END %]
diff --git a/template/en/default/bug/CVS/Entries b/template/en/default/bug/CVS/Entries
index 2eb01be0d0ceef44b6e14fab676ac1bed4cb64fa..9a161b6d2e9f2347924b21fb6e35b202f0c92022 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_19_3
-/comments.html.tmpl/1.17/Sat Apr  9 00:37:52 2005//TBUGZILLA-2_19_3
-/dependency-graph.html.tmpl/1.9/Sun Jan 18 18:39:17 2004//TBUGZILLA-2_19_3
-/dependency-tree.html.tmpl/1.15/Tue May 10 20:56:55 2005//TBUGZILLA-2_19_3
-/edit.html.tmpl/1.59/Mon May  9 22:49:41 2005//TBUGZILLA-2_19_3
-/knob.html.tmpl/1.17/Mon May  9 22:49:41 2005//TBUGZILLA-2_19_3
-/navigate.html.tmpl/1.6/Thu Mar 18 21:51:17 2004//TBUGZILLA-2_19_3
-/show-multiple.html.tmpl/1.24/Mon Jan 24 16:39:25 2005//TBUGZILLA-2_19_3
-/show.html.tmpl/1.10/Tue Nov  2 22:50:09 2004//TBUGZILLA-2_19_3
-/show.xml.tmpl/1.7/Sun Jan 16 20:34:52 2005//TBUGZILLA-2_19_3
-/summarize-time.html.tmpl/1.1/Mon Feb 28 17:53:09 2005//TBUGZILLA-2_19_3
-/time.html.tmpl/1.2/Sun Jan 18 18:39:23 2004//TBUGZILLA-2_19_3
+/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
 D/activity////
 D/create////
 D/process////
diff --git a/template/en/default/bug/CVS/Tag b/template/en/default/bug/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/bug/CVS/Tag
+++ b/template/en/default/bug/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/bug/activity/CVS/Entries b/template/en/default/bug/activity/CVS/Entries
index 70d11d6530e05c2550add91faa2261a9d028b54a..eab79f409aa98d9dd06358b9789a03b4e60f4cb1 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_19_3
-/table.html.tmpl/1.8/Thu Dec  2 22:28:13 2004//TBUGZILLA-2_19_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
 D
diff --git a/template/en/default/bug/activity/CVS/Tag b/template/en/default/bug/activity/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/bug/activity/CVS/Tag
+++ b/template/en/default/bug/activity/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/bug/activity/table.html.tmpl b/template/en/default/bug/activity/table.html.tmpl
index 3aa398e7af2e4c33aa962f27aed7758f58e1153b..661c3ec803f93a17d18c32b9736f11a3b4166338 100644
--- a/template/en/default/bug/activity/table.html.tmpl
+++ b/template/en/default/bug/activity/table.html.tmpl
@@ -34,6 +34,7 @@
   #%]
 
 [% PROCESS global/variables.none.tmpl %]
+[% PROCESS "global/field-descs.none.tmpl" %]
 
 [% PROCESS bug/time.html.tmpl %]
 
@@ -80,6 +81,10 @@
                       change.fieldname == 'remaining_time' ||
                       change.fieldname == 'work_time' %]
                   [% PROCESS formattimeunit time_unit=change.removed %]
+                [% ELSIF change.fieldname == 'bug_status' %]
+                  [% status_descs.${change.removed} FILTER html %]
+                [% ELSIF change.fieldname == 'resolution' %]
+                  [% resolution_descs.${change.removed} FILTER html %]
                 [% ELSE %]
                   [% change.removed FILTER html %]
                 [% END %]
@@ -93,6 +98,10 @@
                       change.fieldname == 'remaining_time' ||
                       change.fieldname == 'work_time' %]
                   [% PROCESS formattimeunit time_unit=change.added %]
+                [% ELSIF change.fieldname == 'bug_status' %]
+                  [% status_descs.${change.added} FILTER html %]
+                [% ELSIF change.fieldname == 'resolution' %]
+                  [% resolution_descs.${change.added} FILTER html %]
                 [% ELSE %]
                   [% change.added FILTER html %]
                 [% END %]
diff --git a/template/en/default/bug/comments.html.tmpl b/template/en/default/bug/comments.html.tmpl
index 58eaa376c26588fa967dfd38df201f15ada499ae..cf279d05d63874a8392801bfdbe0463811ce8276 100644
--- a/template/en/default/bug/comments.html.tmpl
+++ b/template/en/default/bug/comments.html.tmpl
@@ -17,7 +17,7 @@
   # Rights Reserved.
   #
   # Contributor(s): Gervase Markham <gerv@gerv.net>
-  #                 Maxwell Kanat-Alexander <mkanat@kerio.com>
+  #                 Max Kanat-Alexander <mkanat@bugzilla.org>
   #                 Shane H. W. Travis <travis@sedsystems.ca>
   #%]
 
@@ -83,7 +83,7 @@
                 //--></script>
             </td>
             <td align="left" width="30%">
-              Opened: [% bug.creation_ts FILTER time %]
+              <b>Opened:</b> [% bug.creation_ts FILTER time %]
             </td>
           </tr>
         </table>
diff --git a/template/en/default/bug/create/CVS/Entries b/template/en/default/bug/create/CVS/Entries
index 8bb10345a1dc7ac697384913ed7a91d99354261d..bdd1ca429c953a81e3901f169ab6c454f438b588 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_19_3
-/comment.txt.tmpl/1.3/Thu Apr  7 23:59:59 2005//TBUGZILLA-2_19_3
-/create-guided.html.tmpl/1.25/Thu Mar 10 21:50:53 2005//TBUGZILLA-2_19_3
-/create.html.tmpl/1.50/Mon May  9 22:49:41 2005//TBUGZILLA-2_19_3
-/created.html.tmpl/1.8/Sun Jan 18 18:39:25 2004//TBUGZILLA-2_19_3
-/make-template.html.tmpl/1.7/Thu Mar 17 10:47:33 2005//TBUGZILLA-2_19_3
-/user-message.html.tmpl/1.4/Sun Mar  7 23:27:31 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/bug/create/CVS/Tag b/template/en/default/bug/create/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/bug/create/CVS/Tag
+++ b/template/en/default/bug/create/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/bug/create/create-guided.html.tmpl b/template/en/default/bug/create/create-guided.html.tmpl
index 5f7ad3790994c2b47c67a83da50aee0656a3a1f0..712f27948ce123c92d66e84e1f00b7a25207de11 100644
--- a/template/en/default/bug/create/create-guided.html.tmpl
+++ b/template/en/default/bug/create/create-guided.html.tmpl
@@ -162,8 +162,8 @@ function PutDescription() {
 
 <p>
   Look through the search results. If you get the
-  <tt><b>Zarro Boogs</b></tt> message, [% terms.Bugzilla %] found no 
-  [% terms.bugs %] that
+  <tt><b>[% terms.zeroSearchResults %]</b></tt> message, [% terms.Bugzilla %]
+  found no [% terms.bugs %] that
   match. Check for typing mistakes, or try fewer or different keywords.
   If you find [% terms.abug %] that looks the same as yours, please add
   any useful extra information you have to it, rather than opening a new one.
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl
index cf354ad05f1d035745bbb550b4e6f1629e242e91..c99af7c3b8eedfa08ee4aca64f10ff657686b06d 100644
--- a/template/en/default/bug/create/create.html.tmpl
+++ b/template/en/default/bug/create/create.html.tmpl
@@ -223,7 +223,7 @@ function set_assign_to() {
          size => 32
          emptyok => 1
        %]
-      <noscript>(Leave blank to assign to default component owner)</noscript>
+      <noscript>(Leave blank to assign to component's default assignee)</noscript>
     </td>
   </tr>
   
@@ -447,9 +447,13 @@ function set_assign_to() {
     <select name="[% sel.name %]">
     [%- FOREACH x = ${sel.name} %]
       <option value="[% x FILTER html %]"
-        [% " selected=\"selected\"" IF x == default.${sel.name} %]>[% x FILTER html -%]
-      </option>
-    [%- END %]
+        [% " selected=\"selected\"" IF x == default.${sel.name} %]>
+        [% IF sel.name == "bug_status" %]
+          [% status_descs.$x FILTER html %]
+        [% ELSE %]
+          [% x FILTER html %]
+        [% END %]</option>
+    [% END %]
     </select>
   </td>
 [% END %]
diff --git a/template/en/default/bug/create/created.html.tmpl b/template/en/default/bug/create/created.html.tmpl
index 312d7f70bc9e18427ad90e11c7336b1c85f6d002..17f057ca086dba9c3498b0f34fe10349efedc60f 100644
--- a/template/en/default/bug/create/created.html.tmpl
+++ b/template/en/default/bug/create/created.html.tmpl
@@ -19,6 +19,20 @@
   # Contributor(s): Gervase Markham <gerv@gerv.net>
   #%]
 
+[%# INTERFACE:
+  # id: number; the ID of the bug that was created.
+  # sentmail: array of hash; bugs for which BugMail should be sent, contains:
+  #     type: string; type of change for this bug, either 'created' if this bug
+  #         was created or 'dep' if it was added as a dependent/blocker
+  #     id: integer; the ID of the bug
+  # mailrecipients: hash; contains the BugMail recipients, for details on
+  #     this contents, see template bug/process/bugmail.html.tmpl
+  # bug: object; Bugzilla::Bug object of the bug that was created (used in
+  #     template bug/edit.html.tmpl
+  # bug_list: array of integers; sorted bug list (used in template
+  #     bug/navigate.html.tmpl)
+  #%]
+
 [% PROCESS global/variables.none.tmpl %]
 
 [% PROCESS global/header.html.tmpl
@@ -32,6 +46,7 @@
      type = item.type
      id = item.id
      mail = item.mail
+     mailrecipients = mailrecipients
    %]
 [% END %]
 
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index 84b7774c174fc17a2d6a1145b8f2faf91f86be57..9f8adbe7114f4398e87a4ca886777e2e2c6a7326 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -125,240 +125,289 @@
 
 [%# *** Hardware Reporter Product OS AddCC *** %]
 
-  <table cellspacing="1" cellpadding="1" border="0">
-    <tr>
-      <td align="right">
-        [% IF Param('useclassification') %]
-          [% IF bug.classification_id != "1" %]
-            <b>[[% bug.classification FILTER html %]]</b>
-          [% END %]
-        [% END %]
-        <b>[% terms.Bug %]#:</b>
-      </td>
-      <td>
-        <a href="[% Param('urlbase') %]show_bug.cgi?id=[% bug.bug_id %]">
-          [% bug.bug_id %]</a>
-          [% IF Param("usebugaliases") %]
-            <label for="alias" title="a name for the [% terms.bug %] that can be used in place of its ID number, f.e. when adding it to a list of dependencies">
-              <b>alias:</b>
-              <input id="alias" name="alias" value="[% bug.alias FILTER html %]" size="20" maxlength="20">
-            </label>
-          [% END %]
-      </td>
-
-      <td>&nbsp;</td>
-
-      <td align="right">
-        <b><u>H</u>ardware:</b>
-      </td>
-      [% PROCESS select selname => "rep_platform" accesskey => "h" %]
-
-      <td align="right">
-        <b>Reporter:</b>
-      </td>
-      <td>
-        <a href="mailto:[% bug.reporter.email FILTER html %]">
-          [% bug.reporter.identity FILTER html %]</a>
-      </td>
-    </tr>
-
-    <tr>
-      <td align="right">
-        <b><u>P</u>roduct:</b>
-      </td>
-      [% PROCESS select selname => "product" accesskey => "p" %]
-
-      <td align="right">
-        <b><u>O</u>S:</b>
-      </td>
-      [% PROCESS select selname => "op_sys" accesskey => "o" %]
-
-      <td align="right">
-        <b><u>A</u>dd&nbsp;CC:</b>
-      </td>
-      <td>
-         [% INCLUDE global/userselect.html.tmpl
-            name => "newcc"
-            value => ""
-            accesskey => "a"
-            size => 30
-            multiple => 5
-          %]
-      </td>
-    </tr>
-
-[%# *** Component Version CC Priority Severity AssignedTo Milestone *** %]
+  <table>
 
     <tr>
-      <td align="right">
-        <b>
-          <a href="describecomponents.cgi?product=[% bug.product FILTER url_quote %]">
-            Co<u>m</u>ponent</a>:
-        </b>
-      </td>
-      [% PROCESS select selname => "component" accesskey => "m" %]
-
-      <td align="right">
-        <b><u>V</u>ersion:</b>
-      </td>
-      [% PROCESS select selname => "version" accesskey => "v" %]
+      <td valign="top">
+        <table cellspacing="1" cellpadding="1">
+  
+          <tr>
+            <td align="right">
+              [% IF Param('useclassification') %]
+                [% IF bug.classification_id != "1" %]
+                  <b>[[% bug.classification FILTER html %]]</b>
+                [% END %]
+              [% END %]
+              <b>[% terms.Bug %]#:</b>
+            </td>
+            <td>
+              <a href="[% Param('urlbase') %]show_bug.cgi?id=[% bug.bug_id %]">
+                [% bug.bug_id %]</a>
+                [% IF Param("usebugaliases") %]
+                  <label for="alias" title="a name for the [% terms.bug %] that can be used in place of its ID number, f.e. when adding it to a list of dependencies">
+                    <b>alias:</b>
+                    <input id="alias" name="alias" value="[% bug.alias FILTER html %]" size="20" maxlength="20">
+                  </label>
+                [% END %]
+            </td>
+          </tr>
+
+          <tr>
+            <td align="right">
+              <b><u>P</u>roduct:</b>
+            </td>
+            [% PROCESS select selname => "product" accesskey => "p" %]
+          </tr>
+
+          [%# *** Component Version CC Priority Severity AssignedTo Milestone *** %]
+
+          <tr>
+            <td align="right">
+              <b>
+                <a href="describecomponents.cgi?product=[% bug.product FILTER url_quote %]">
+                  Co<u>m</u>ponent</a>:
+              </b>
+            </td>
+            [% PROCESS select selname => "component" accesskey => "m" %]
+          </tr>
+
+          <tr>
+            <td align="right">
+              <b>
+                <a href="page.cgi?id=fields.html#status">Status</a>:
+              </b>
+            </td>
+            <td>[% status_descs.${bug.bug_status} FILTER html %]</td>
+          </tr>
+
+          <tr>
+            <td align="right">
+              <b>
+                <a href="page.cgi?id=fields.html#resolution">Resolution</a>:
+              </b>
+            </td>
+            <td>
+              [% resolution_descs.${bug.resolution} FILTER html %]
+              [% IF bug.resolution == "DUPLICATE" %]
+                of [% terms.bug %] [%+ "${bug.dup_id}" FILTER bug_link(bug.dup_id) %]
+              [% END %]
+            </td>
+          </tr>
+
+          <tr>
+            <td align="right">
+              <b>
+                <a href="page.cgi?id=fields.html#assigned_to">Assigned&nbsp;To</a>:
+              </b>
+            </td>
+            <td>[% bug.assigned_to.identity FILTER html %]</td>
+          </tr>
+
+        </table>
 
-      <td rowspan="4" align="right" valign="top">
-        <b>CC:</b>
       </td>
-      <td rowspan="4" valign="top">
-      [% IF bug.cc %]
-        <select name="cc" multiple="multiple" size="5">
-        [% FOREACH c = bug.cc %]
-          <option value="[% c FILTER html %]">[% c FILTER html %]</option>
-        [% END %]
-        </select>
-        <br>
-        <input type="checkbox" name="removecc">Remove selected CCs
-        <br>
-      [% ELSE %]
-        <input type="hidden" name="cc" value="">
-      [% END %]
-      </td>
-    </tr>
+      <td valign="top">
+
+        <table cellspacing="1" cellpadding="1">
+
+          <tr>
+            <td align="right">
+              <b><u>H</u>ardware:</b>
+            </td>
+            [% PROCESS select selname => "rep_platform" accesskey => "h" %]
+          </tr>
+
+          <tr>
+            <td align="right">
+              <b><u>O</u>S:</b>
+            </td>
+            [% PROCESS select selname => "op_sys" accesskey => "o" %]
+          </tr>
+
+          <tr>
+            <td align="right">
+              <b><u>V</u>ersion:</b>
+            </td>
+            [% PROCESS select selname => "version" accesskey => "v" %]
+          </tr>
+
+          <tr>
+            <td align="right">
+              <b><a href="page.cgi?id=fields.html#priority">Pr<u>i</u>ority</a>:</b>
+            </td>
+            [% PROCESS select selname => "priority" accesskey => "i" %]
+          </tr>
+
+          <tr>
+            <td align="right">
+              <b><a href="page.cgi?id=fields.html#bug_severity">S<u>e</u>verity</a>:</b>
+            </td>
+            [% PROCESS select selname = "bug_severity" accesskey => "e" %]
+          </tr>
+
+          [% IF Param("usetargetmilestone") && bug.target_milestone %]
+            <tr>
+              <td align="right">
+                <b>
+                  [% IF bug.milestoneurl %]
+                    <a href="[% bug.milestoneurl FILTER html %]">
+                  [% END %]
+                  <u>T</u>arget Milestone[% "</a>" IF bug.milestoneurl %]:
+                </b>
+              </td>
+              [% PROCESS select selname = "target_milestone" accesskey => "t" %]
+            </tr>
+          [% END %]
 
-    <tr>
-      <td align="right">
-        <b>
-          <a href="page.cgi?id=fields.html#status">Status</a>:
-        </b>
+        </table>
       </td>
-      <td>[% status_descs.${bug.bug_status} FILTER html %]</td>
-      <td>&nbsp;</td>
 
-      <td align="right">
-        <b><a href="page.cgi?id=fields.html#priority">Pr<u>i</u>ority</a>:</b>
-      </td>
-      [% PROCESS select selname => "priority" accesskey => "i" %]
-    </tr>
+      <td valign="top">
+
+        <table cellpadding="1" cellspacing="1">
+
+          <tr>
+            <td align="right">
+              <b>Reporter:</b>
+            </td>
+            <td>
+              <a href="mailto:[% bug.reporter.email FILTER html %]">
+                [% bug.reporter.identity FILTER html %]</a>
+            </td>
+          </tr>
+
+          <tr>
+            <td align="right" valign="top">
+              <b><u>A</u>dd&nbsp;CC:</b>
+            </td>
+            <td>
+               [% INCLUDE global/userselect.html.tmpl
+                  name => "newcc"
+                  value => ""
+                  accesskey => "a"
+                  size => 30
+                  multiple => 5
+                %]
+            </td>
+          </tr>
+
+          <tr>
+            <td align="right" valign="top">
+              <b>CC:</b>
+            </td>
+            <td valign="top">
+            [% IF bug.cc %]
+              <select name="cc" multiple="multiple" size="5">
+              [% FOREACH c = bug.cc %]
+                <option value="[% c FILTER html %]">[% c FILTER html %]</option>
+              [% END %]
+              </select>
+              <br>
+              <input type="checkbox" name="removecc">Remove selected CCs
+              <br>
+            [% ELSE %]
+              <input type="hidden" name="cc" value="">
+            [% END %]
+            </td>
+          </tr>
 
-    <tr>
-      <td align="right">
-        <b>
-          <a href="page.cgi?id=fields.html#resolution">Resolution</a>:
-        </b>
-      </td>
-      <td>
-        [% resolution_descs.${bug.resolution} FILTER html %]
-        [% IF bug.resolution == "DUPLICATE" %]
-          of [% terms.bug %] [%+ "${bug.dup_id}" FILTER bug_link(bug.dup_id) %]
-        [% END %]
-      </td>
-      <td>&nbsp;</td>
+        </table>
 
-      <td align="right">
-        <b><a href="page.cgi?id=fields.html#bug_severity">S<u>e</u>verity</a>:</b>
       </td>
-      [% PROCESS select selname = "bug_severity" accesskey => "e" %]
+      </tr>
 
-    </tr>
+      <tr>
+        <td colspan="2">
+          <table cellspacing="1" cellpadding="1">
+
+      [%# *** QAContact URL Requests Summary Whiteboard Keywords *** %]
+
+         [% IF Param('useqacontact') %]
+           <tr>
+             <td align="right">
+             <b><u>Q</u>A Contact:</b>
+             </td>
+             <td colspan="7">
+               [% INCLUDE global/userselect.html.tmpl
+                  name => "qa_contact"
+                  value => bug.qa_contact.login
+                  accesskey => "q"
+                  size => 60
+                  emptyok => 1
+                %]
+             </td>
+           </tr>
+         [% END %]
+
+          <tr>
+            <td align="right">
+              <b>
+                [% IF bug.bug_file_loc 
+                   AND NOT bug.bug_file_loc.match("^(javascript|data)") %]
+                  <a href="[% bug.bug_file_loc FILTER html %]"><u>U</u>RL</a>:
+                [% ELSE %]
+                  <u>U</u>RL:
+                [% END %]
+              </b>
+            </td>
+            <td colspan="5">
+              <input name="bug_file_loc" accesskey="u"
+                     value="[% bug.bug_file_loc FILTER html %]" size="60">
+            </td>
+          </tr>
+
+          <tr>
+            <td align="right">
+              <b><u>S</u>ummary:</b>
+            </td>
+            <td colspan="5">
+              <input name="short_desc" accesskey="s"
+                     value="[% bug.short_desc FILTER html %]" size="60">
+            </td>
+          </tr>
+
+          [% IF Param('usestatuswhiteboard') %]
+            <tr>
+              <td align="right">
+                <b>Status <u>W</u>hiteboard:</b>
+              </td>
+              <td colspan="5">
+                <input name="status_whiteboard" accesskey="w"
+                       value="[% bug.status_whiteboard FILTER html %]" size="60">
+              </td>
+            </tr>
+          [% END %]
 
-    <tr>
-      <td align="right">
-        <b>
-          <a href="page.cgi?id=fields.html#assigned_to">Assigned&nbsp;To</a>:
-        </b>
-      </td>
-      <td>[% bug.assigned_to.identity FILTER html %]</td>
-      <td>&nbsp;</td>
-
-      [% IF Param("usetargetmilestone") && bug.target_milestone %]
-        <td align="right">
-          <b>
-            [% IF bug.milestoneurl %]
-              <a href="[% bug.milestoneurl FILTER html %]">
-            [% END %]
-            <u>T</u>arget Milestone[% "</a>" IF bug.milestoneurl %]:
-          </b>
-        </td>
-        [% PROCESS select selname = "target_milestone" accesskey => "t" %]
-      [% ELSE %]
-        <td colspan="3">&nbsp;</td>
-      [% END %]
-    </tr>
+          [% IF bug.use_keywords %]
+            <tr>
+              <td align="right">
+                <b>
+                  <a href="describekeywords.cgi"><u>K</u>eywords</a>:
+                </b>
+              <td colspan="5">
+                <input name="keywords" accesskey="k"
+                       value="[% bug.keywords.join(', ') FILTER html %]" size="60">
+              </td>
+            </tr>
+          [% END %]
 
-[%# *** QAContact URL Requests Summary Whiteboard Keywords *** %]
-
-   [% IF Param('useqacontact') %]
-     <tr>
-       <td align="right">
-       <b><u>Q</u>A Contact:</b>
-       </td>
-       <td colspan="7">
-         [% INCLUDE global/userselect.html.tmpl
-            name => "qa_contact"
-            value => bug.qa_contact.login
-            accesskey => "q"
-            size => 60
-            emptyok => 1
-          %]
-       </td>
-     </tr>
-   [% END %]
-
-  <tr>
-    <td align="right">
-      <b>
-        [% IF bug.bug_file_loc 
-           AND NOT bug.bug_file_loc.match("^(javascript|data)") %]
-          <a href="[% bug.bug_file_loc FILTER html %]"><u>U</u>RL</a>:
-        [% ELSE %]
-          <u>U</u>RL:
-        [% END %]
-      </b>
-    </td>
-    <td colspan="5">
-      <input name="bug_file_loc" accesskey="u"
-             value="[% bug.bug_file_loc FILTER html %]" size="60">
-    </td>
-    <td rowspan="4" colspan="2" valign="top">
-        [% IF bug.flag_types.size > 0 %]
-          [% PROCESS "flag/list.html.tmpl"
-             flag_types = bug.flag_types
-             any_flags_requesteeble = bug.any_flags_requesteeble %]
-        [% END %]
-    </td>
-  </tr>
-
-  <tr>
-    <td align="right">
-      <b><u>S</u>ummary:</b>
-    </td>
-    <td colspan="5">
-      <input name="short_desc" accesskey="s"
-             value="[% bug.short_desc FILTER html %]" size="60">
-    </td>
-  </tr>
-
-  [% IF Param('usestatuswhiteboard') %]
-    <tr>
-      <td align="right">
-        <b>Status <u>W</u>hiteboard:</b>
-      </td>
-      <td colspan="5">
-        <input name="status_whiteboard" accesskey="w"
-               value="[% bug.status_whiteboard FILTER html %]" size="60">
+        </table>
       </td>
-    </tr>
-  [% END %]
 
-  [% IF bug.use_keywords %]
-    <tr>
-      <td align="right">
-        <b>
-          <a href="describekeywords.cgi"><u>K</u>eywords</a>:
-        </b>
-      <td colspan="5">
-        <input name="keywords" accesskey="k"
-               value="[% bug.keywords.join(', ') FILTER html %]" size="60">
+      <td valign="top">
+        <table cellspacing="1" cellpadding="1">
+          <tr>
+            <td colspan="2" valign="top">
+                [% IF bug.flag_types.size > 0 %]
+                  [% PROCESS "flag/list.html.tmpl"
+                     flag_types = bug.flag_types
+                     any_flags_requesteeble = bug.any_flags_requesteeble %]
+                [% END %]
+            </td>
+          </tr>
+        </table>
       </td>
     </tr>
-  [% END %]
   </table>
 
   [% IF UserInGroup(Param('timetrackinggroup')) %]
@@ -418,7 +467,8 @@
         </td>
          <td align="center">
            <input name="deadline" value="[% bug.deadline %]"
-                  size="10" maxlength="10">
+                  size="10" maxlength="10"><br />
+           <small>(YYYY-MM-DD)</small>
         </td>        
       </tr>
       <tr>
diff --git a/template/en/default/bug/knob.html.tmpl b/template/en/default/bug/knob.html.tmpl
index 15bbcbacd1bee132f7c2db920cd2521a4ada884f..2ade9a3737938e3fff985cdc31672d1d02645493 100644
--- a/template/en/default/bug/knob.html.tmpl
+++ b/template/en/default/bug/knob.html.tmpl
@@ -118,7 +118,7 @@
 
         <input type="radio" id="knob-reassign-cmp" name="knob" value="reassignbycomponent">
         <label for="knob-reassign-cmp">
-          Reassign [% terms.bug %] to owner
+          Reassign [% terms.bug %] to default assignee
           [% " and QA contact" IF Param('useqacontact') %]
           of selected component
         </label>
diff --git a/template/en/default/bug/navigate.html.tmpl b/template/en/default/bug/navigate.html.tmpl
index 68b894b0c5f53b9d216a9045e0074519265e275b..0263f6535db868ed6295cb0e4c5df0853c0bb9da 100644
--- a/template/en/default/bug/navigate.html.tmpl
+++ b/template/en/default/bug/navigate.html.tmpl
@@ -28,8 +28,10 @@
     ([% this_bug_idx + 1 %] of [% bug_list.size %])
   [% END %]
 
+[% IF this_bug_idx != -1 %]
   <a href="show_bug.cgi?id=[% bug_list.first %]">First</a>
   <a href="show_bug.cgi?id=[% bug_list.last %]">Last</a>
+[% END %]
 
   [% IF bug.bug_id %]
     [% IF this_bug_idx != -1 %]
@@ -47,13 +49,22 @@
         <i><font color="#777777">Next</font></i>
       [% END %]
     [% ELSE %]
-      (This [% terms.bug %] is not in your list)
+      (This [% terms.bug %] is not in your last search results)
     [% END %]
   [% ELSE %]
     &nbsp;&nbsp;
   [% END %]
 
-  &nbsp;&nbsp;<a href="buglist.cgi?regetlastlist=1">Show list</a>
+  &nbsp;&nbsp;<a href="buglist.cgi?regetlastlist=1">Show last search results</a>
+[% ELSE %]
+  [%# Either !bug_list || bug_list.size <= 0 %]
+  [%# With no list, don't show link to search results %]
+  <i><font color="#777777">First</font></i>
+  <i><font color="#777777">Last</font></i>
+  <i><font color="#777777">Prev</font></i>
+  <i><font color="#777777">Next</font></i>
+  &nbsp;&nbsp;
+  <i><font color="#777777">No search results available</font></i>
 [% END %]
 
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="query.cgi">Search page</a>
diff --git a/template/en/default/bug/process/CVS/Entries b/template/en/default/bug/process/CVS/Entries
index c4b1b4be67169aee6fc47a8ce76bb4db4d7ea4f2..564a975dc5112bb95491b08f681455f0c417648f 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_19_3
-/confirm-duplicate.html.tmpl/1.9/Fri Apr  8 00:45:47 2005//TBUGZILLA-2_19_3
-/header.html.tmpl/1.3/Sun Jan 18 18:39:25 2004//TBUGZILLA-2_19_3
-/midair.html.tmpl/1.13/Fri Apr  8 00:45:47 2005//TBUGZILLA-2_19_3
-/next.html.tmpl/1.5/Wed May 12 05:03:27 2004//TBUGZILLA-2_19_3
-/results.html.tmpl/1.9/Thu Mar 17 06:13:15 2005//TBUGZILLA-2_19_3
-/verify-new-product.html.tmpl/1.15/Fri Apr  8 00:45:47 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/bug/process/CVS/Tag b/template/en/default/bug/process/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/bug/process/CVS/Tag
+++ b/template/en/default/bug/process/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/bug/process/verify-new-product.html.tmpl b/template/en/default/bug/process/verify-new-product.html.tmpl
index a83430079038783b5e090686cf0e6133143f1242..7e21f88ae73f6abbee28d80eea155e8e478c2597 100644
--- a/template/en/default/bug/process/verify-new-product.html.tmpl
+++ b/template/en/default/bug/process/verify-new-product.html.tmpl
@@ -39,7 +39,8 @@
 
 [% PROCESS global/variables.none.tmpl %]
 
-[% PROCESS global/header.html.tmpl %]
+[% PROCESS global/header.html.tmpl
+  title = 'Verify New Product Details...' %]
 
 <form action="process_bug.cgi" method="post">
 
diff --git a/template/en/default/bug/show-multiple.html.tmpl b/template/en/default/bug/show-multiple.html.tmpl
index 8b42217c18a203670237dc48bbe0086c01b64f54..caacad766de68409b4ca661f08445687af992d63 100644
--- a/template/en/default/bug/show-multiple.html.tmpl
+++ b/template/en/default/bug/show-multiple.html.tmpl
@@ -188,11 +188,6 @@
         [% bug.creation_ts FILTER time %]
       </td>
     </tr>
-    <tr>
-      <td colspan="4">
-        <b>Description:</b>
-      </td>
-    </tr>
   </table>
 
   [% PROCESS bug/comments.html.tmpl
diff --git a/template/en/default/bug/votes/CVS/Entries b/template/en/default/bug/votes/CVS/Entries
index 5cd4f2cc415418f848083ce9771f89b548a430cf..4af71c4cd299791fcd3f41d52726dc1bbf10d144 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_19_3
-/list-for-bug.html.tmpl/1.9/Sun Jan 18 18:39:26 2004//TBUGZILLA-2_19_3
-/list-for-user.html.tmpl/1.19/Tue Feb 15 17:13:02 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/bug/votes/CVS/Tag b/template/en/default/bug/votes/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/bug/votes/CVS/Tag
+++ b/template/en/default/bug/votes/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl
index 39de4fcacbd810a1d3b4d627c42d7bfa85a1951e..4945c723110bb3770d5161035c829cc1814003cd 100644
--- a/template/en/default/filterexceptions.pl
+++ b/template/en/default/filterexceptions.pl
@@ -135,7 +135,7 @@
 'reports/report-table.csv.tmpl' => [
   'num_bugs',
   'data.$tbl.$col.$row',
-  'title',
+  'colsepchar',
 ],
 
 'reports/report-table.html.tmpl' => [
@@ -190,6 +190,7 @@
 
 'reports/chart.csv.tmpl' => [
   'data.$j.$i', 
+  'colsepchar',
 ],
 
 'reports/create-chart.html.tmpl' => [
@@ -231,6 +232,7 @@
 
 'list/list.csv.tmpl' => [
   'bug.bug_id', 
+  'colsepchar',
 ],
 
 'list/list.js.tmpl' => [
@@ -535,6 +537,11 @@
   'classification_url_part', 
 ],
 
+'admin/products/confirm-delete.html.tmpl' => [
+  'classification_url_part', 
+  'bug_count', 
+],
+
 'admin/products/footer.html.tmpl' => [
   'classification_url_part', 
   'classification_text', 
@@ -581,7 +588,8 @@
 'admin/users/confirm-delete.html.tmpl' => [
   'andstring',
   'responsibilityterms.$responsibility',
-  'bugs',
+  'reporter',
+  'assignee_or_qa',
   'cc',
   'flags.requestee',
   'flags.setter',
diff --git a/template/en/default/flag/CVS/Entries b/template/en/default/flag/CVS/Entries
index 5437c58fa60c677a255c8d0cd66d1f3268262ce9..86d10bf2d2296b233ef1ce1ac94cc4cf4b4d24f6 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_19_3
+/list.html.tmpl/1.17/Fri Feb 18 21:11:59 2005//TBUGZILLA-2_20
 D
diff --git a/template/en/default/flag/CVS/Tag b/template/en/default/flag/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/flag/CVS/Tag
+++ b/template/en/default/flag/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/global/CVS/Entries b/template/en/default/global/CVS/Entries
index c9f9fbb343ce1f27e33925d4283a28d49420cde3..2d950c5059a0b6997f6c594c68a9d97a10dd9b0b 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_19_3
-/choose-classification.html.tmpl/1.4/Fri Feb 25 17:39:52 2005//TBUGZILLA-2_19_3
-/choose-product.html.tmpl/1.12/Fri Feb 25 17:39:52 2005//TBUGZILLA-2_19_3
-/code-error.html.tmpl/1.49/Sun Apr 10 18:04:04 2005//TBUGZILLA-2_19_3
-/confirm-user-match.html.tmpl/1.11/Thu Apr  7 23:37:56 2005//TBUGZILLA-2_19_3
-/field-descs.none.tmpl/1.9/Mon May  9 22:49:45 2005//TBUGZILLA-2_19_3
-/footer.html.tmpl/1.12/Tue Jun 22 21:07:38 2004//TBUGZILLA-2_19_3
-/header.html.tmpl/1.39/Tue Mar 15 17:16:24 2005//TBUGZILLA-2_19_3
-/help-header.html.tmpl/1.4/Fri Feb 25 15:27:25 2005//TBUGZILLA-2_19_3
-/help.html.tmpl/1.3/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_19_3
-/hidden-fields.html.tmpl/1.9/Thu Apr  7 23:37:56 2005//TBUGZILLA-2_19_3
-/initialize.none.tmpl/1.1/Sun Jan 11 17:12:14 2004//TBUGZILLA-2_19_3
-/message.html.tmpl/1.7/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_19_3
-/messages.html.tmpl/1.26/Sat Mar 12 21:51:17 2005//TBUGZILLA-2_19_3
-/select-menu.html.tmpl/1.4/Sun Jan 18 18:39:28 2004//TBUGZILLA-2_19_3
-/setting-descs.none.tmpl/1.3/Sat Apr  9 00:37:52 2005//TBUGZILLA-2_19_3
-/site-navigation.html.tmpl/1.15/Mon Jan 24 16:39:26 2005//TBUGZILLA-2_19_3
-/useful-links.html.tmpl/1.37/Tue Mar 15 17:48:36 2005//TBUGZILLA-2_19_3
-/user-error.html.tmpl/1.108/Thu May 12 02:07:10 2005//TBUGZILLA-2_19_3
-/userselect.html.tmpl/1.5/Thu Mar 17 15:50:45 2005//TBUGZILLA-2_19_3
-/variables.none.tmpl/1.3/Tue Apr 12 18:19:57 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/global/CVS/Tag b/template/en/default/global/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/global/CVS/Tag
+++ b/template/en/default/global/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl
index d12036cd7d4e1c5ae6435f9826e7db1d258d43a2..608e9a08fea16f352f61a5f726c7301430c7bd24 100644
--- a/template/en/default/global/code-error.html.tmpl
+++ b/template/en/default/global/code-error.html.tmpl
@@ -86,6 +86,9 @@
     Charts will not work without the Chart::Lines Perl module being installed.
     Run checksetup.pl for installation instructions.
 
+  [% ELSIF error == "cookies_need_value" %]
+    Every cookie must have a value.
+
   [% ELSIF error == "field_type_mismatch" %]
     Cannot seem to handle <code>[% field FILTER html %]</code>
     and <code>[% type FILTER html %]</code> together.
@@ -132,6 +135,15 @@
     [% title = "Invalid Dimensions" %]
     The width or height specified is not a positive integer.
 
+  [% ELSIF error == "invalid_flag_association" %]
+    [% title = "Invalid Flag Association" %]
+    Some flags do not belong to
+    [% IF attach_id %]
+      attachment [% attach_id FILTER html %].
+    [% ELSE %]
+      [%+ 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
@@ -150,6 +162,20 @@
         
   [% ELSIF error == "flag_nonexistent" %]
     There is no flag with ID #[% id FILTER html %].
+
+  [% ELSIF error == "flags_not_available" %]
+    [% title = "Flag Editing not Allowed" %]
+    [% IF type == "b" %]
+      Flags cannot be set or changed when
+      changing several [% terms.bugs %] at once.
+    [% ELSE %]
+      References to existing flags when creating
+      a new attachment are invalid.
+    [% END %] 
+
+  [% ELSIF error == "flag_requestee_disabled" %]
+    [% title = "Flag not Specifically Requestable" %]
+    The flag <em>[% name FILTER html %]</em> is not specifically requestable.
   
   [% ELSIF error == "flag_status_invalid" %]
     The flag status <em>[% status FILTER html %]</em>
@@ -169,6 +195,10 @@
     The flag type ID <em>[% id FILTER html %]</em> is not
     a positive integer.
 
+  [% ELSIF error == "flag_type_inactive" %]
+    [% title = "Inactive Flag Types" %]
+    Some flag types are inactive and cannot be used to create new flags.
+
   [% ELSIF error == "flag_type_nonexistent" %]
     There is no flag type with the ID <em>[% id FILTER html %]</em>.
   
@@ -225,6 +255,10 @@
     option. Setting names must begin with a letter, and contain only
     letters, digits, or the symbols '_', '-', '.', or ':'.
 
+  [% ELSIF error == "setting_value_invalid" %]
+    The value "<code>[% value FILTER html %]</code>" is not in the list of
+    legal values for the <em>[% name FILTER html %]</em> setting.
+
   [% ELSIF error == "token_generation_error" %]
     Something is seriously wrong with the token generation system.
 
@@ -255,7 +289,9 @@
     Attempted to end transaction without starting one first.
 
   [% ELSIF error == "already_locked" %]
-    Attempted to lock a table without releasing previous lock first.
+    Attempted to lock a table without releasing previous lock first:
+    <p>Tables already locked:<br>[% current FILTER html %]
+    <p>Tables requesting locking:<br>[% new FILTER html %]
 
   [% ELSIF error == "no_matching_lock" %]
     Attempted to unlock tables without locking them first.
diff --git a/template/en/default/global/confirm-user-match.html.tmpl b/template/en/default/global/confirm-user-match.html.tmpl
index fd09f89a67345cf78d3693ad709c9a637131ff6d..93a2492549e3f59ddc0102b724f4863fb646702c 100644
--- a/template/en/default/global/confirm-user-match.html.tmpl
+++ b/template/en/default/global/confirm-user-match.html.tmpl
@@ -90,16 +90,6 @@
                     </font>
                     Please go back and try again with a more specific
                     name/address.
-                  [% ELSIF fields.${field.key}.type == 'single' %]
-                    matched:<br>
-                    <select name="[% field.key FILTER html %]"
-                     id="[% field.key FILTER html %]">
-                      [% FOREACH match = query.value.users %]
-                        <option value="[% match.login FILTER html %]">
-                         [%- match.identity FILTER html -%]
-                        </option>
-                      [% END %]
-                    </select>
                   [% ELSE %]
                     [% IF query.value.status == 'trunc' %]
                       matched
@@ -110,10 +100,12 @@
                     [% END %]
                     <select name="[% field.key FILTER html %]"
                      id="[% field.key FILTER html %]"
-                      [% IF query.value.users.size > 5 %]
-                       multiple="multiple" size="5">
-                      [% ELSE %]
-                       multiple="multiple" size="[% query.value.users.size %]">
+                      [% IF fields.${field.key}.type == 'multi' %]
+                        [% IF query.value.users.size > 5 %]
+                         multiple="multiple" size="5">
+                        [% ELSE %]
+                         multiple="multiple" size="[% query.value.users.size %]">
+                        [% END %]
                       [% END %]
                       [% FOREACH match = query.value.users %]
                         <option value="[% match.login FILTER html %]">
diff --git a/template/en/default/global/field-descs.none.tmpl b/template/en/default/global/field-descs.none.tmpl
index f95719e06bd6b1c0f69db8e58d7df3521228f770..8014fe2559603e0718bc2ef0abe170c6c2d0d717 100644
--- a/template/en/default/global/field-descs.none.tmpl
+++ b/template/en/default/global/field-descs.none.tmpl
@@ -84,5 +84,8 @@
                         "REMIND"     => "REMIND",
                         "DUPLICATE"  => "DUPLICATE",
                         "WORKSFORME" => "WORKSFORME",
-                        "MOVED"      => "MOVED" } %]
+                        "MOVED"      => "MOVED",
+                        "---"        => "---",
+                        " "          => " " } %]
 
+[% Hook.process("end") %]
diff --git a/template/en/default/global/help-header.html.tmpl b/template/en/default/global/help-header.html.tmpl
index 1a74a1e82cf1147070429081836e1a572d6ee35d..330ba9160a15355c8eeac9994322d04d5ad2b7fc 100644
--- a/template/en/default/global/help-header.html.tmpl
+++ b/template/en/default/global/help-header.html.tmpl
@@ -67,8 +67,8 @@
                 myparent = myparent.offsetParent;
             }
 
-            currentHelp.style.top = mytop + this.offsetHeight + 5;
-            currentHelp.style.left = myleft;
+            currentHelp.style.top = mytop + this.offsetHeight + 5 + "px";
+            currentHelp.style.left = myleft + "px";
             currentHelp.style.display='';
         }
     }
diff --git a/template/en/default/global/messages.html.tmpl b/template/en/default/global/messages.html.tmpl
index 0ce65ef096fd9efd8ce3d81e4b670a411f4a6455..d0435597d32c48645ec111e9ef9fe6e37457a488 100644
--- a/template/en/default/global/messages.html.tmpl
+++ b/template/en/default/global/messages.html.tmpl
@@ -17,6 +17,7 @@
   # Rights Reserved.
   #
   # Contributor(s): Gervase Markham <gerv@gerv.net>
+  #                 Max Kanat-Alexander <mkanat@bugzilla.org>
   #%]
 
 [%# This is a list of all the possible messages. Please keep them in
@@ -93,7 +94,6 @@
       You didn't request any change on the user account
       [%+ otheruser.login FILTER html %].
     [% END %]
-    [%# changed_fields.join(', ') %]
 
   [% ELSIF message_tag == "account_deleted" %]
     [% title = "User $otheruser.login deleted" %]
@@ -111,7 +111,7 @@
     [% link  = "Click here if the page does not redisplay automatically." %]
 
   [% ELSIF message_tag == "buglist_updated_named_query" %]
-    OK, your search named <code>[% queryname FILTER html %]</code> is updated.
+    Your search named <code>[% queryname FILTER html %]</code> has been updated.
 
   [% ELSIF message_tag == "buglist_new_default_query" %]
     OK, you now have a new default search.  You may
@@ -127,8 +127,11 @@
 
   [% ELSIF message_tag == "buglist_sorted_by_relevance" %]
     [% terms.Bugs %] on this list are sorted by relevance, with the most
-    relevant [% terms.bugs %] at the top.  Only the 200 most relevant 
-    [%+ terms.bugs %] are shown.
+    relevant [% terms.bugs %] at the top.
+    [% IF bugs.size == constants.FULLTEXT_BUGLIST_LIMIT %]
+      Only the [% constants.FULLTEXT_BUGLIST_LIMIT FILTER html %]
+      most relevant [% terms.bugs %] are shown.
+    [% END %]
 
   [% ELSIF message_tag == "change_columns" %]
     [% title = "Change columns" %]
@@ -233,6 +236,20 @@
   [% ELSIF message_tag == "shutdown" %]
     [% title = "$terms.Bugzilla is Down" %]
     [% Param("shutdownhtml") %]
+    [% IF userid %]
+      <p>For security reasons, you have been logged out automatically.
+      The cookie that was remembering your login is now gone.
+    [% END %]
+
+  [% ELSIF message_tag == "user_match_failed" %]
+    You entered a username that did not match any known 
+    [% terms.Bugzilla %] users, so we have instead left
+    the [% match_field FILTER html %] field blank.
+
+  [% ELSIF message_tag == "user_match_multiple" %]
+    You entered a username that matched more than one
+    user, so we have instead left the [% match_field FILTER html %]
+    field blank.
     
   [% ELSE %]
     [%# Give sensible error if error functions are used incorrectly.
diff --git a/template/en/default/global/setting-descs.none.tmpl b/template/en/default/global/setting-descs.none.tmpl
index 1a31754a8eb8968be198b58db5d7e37c9fd87bf5..f4992aa4817931549bc1d3b0fa7af179530b770c 100644
--- a/template/en/default/global/setting-descs.none.tmpl
+++ b/template/en/default/global/setting-descs.none.tmpl
@@ -21,6 +21,7 @@
 
 [% setting_descs = { 
    "comment_sort_order"               => "When viewing $terms.abug, show comments in this order",
+   "csv_colsepchar"                   => "Field separator character for CSV files",
    "display_quips"                    => "Show a quip at the top of each bug list",
    "newest_to_oldest"                 => "Newest to Oldest",
    "newest_to_oldest_desc_first"      => "Newest to Oldest, but keep Description at the top",
diff --git a/template/en/default/global/useful-links.html.tmpl b/template/en/default/global/useful-links.html.tmpl
index bb7dadab6c828c9aa1a40d83eade2082ff74add2..63dfe0b0489a22af558eee427fb71d8c63a8e0dc 100644
--- a/template/en/default/global/useful-links.html.tmpl
+++ b/template/en/default/global/useful-links.html.tmpl
@@ -30,12 +30,12 @@
   <div id="links-actions">
     <div class="label">Actions:</div>
     <div class="links">
-        <a href="[% Param('urlbase') %]">Home</a> | 
+        <a href="./">Home</a> | 
         <a href="enter_bug.cgi">New</a> | 
         <a href="query.cgi">Search</a> |
         
-        <input class="btn" type="submit" value="Find"> [% terms.bug %] # 
-        <input class="txt" name="id" size="6"> | 
+        [% terms.bug %] # <input class="txt" name="id" size="6">
+        <input class="btn" type="submit" value="Find"> | 
         
         <a href="report.cgi">Reports</a> 
         
@@ -75,7 +75,7 @@
 
         <a href="userprefs.cgi">Prefs</a>
         [% ' | <a href="editparams.cgi">Parameters</a> ' _
-           ' | <a href="editsettings.cgi">User Settings</a>' 
+           ' | <a href="editsettings.cgi">User Preferences</a>' 
                                                   IF user.groups.tweakparams %]
         [% ' | <a href="editusers.cgi">Users</a>'     IF user.groups.editusers 
                                                   || user.can_bless %]
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl
index f2ccb1497a079dd77c862f900b6f2e9eb749b01b..15c4df00af75c510778c6add5f9e0615f19af836 100644
--- a/template/en/default/global/user-error.html.tmpl
+++ b/template/en/default/global/user-error.html.tmpl
@@ -17,7 +17,7 @@
   # Rights Reserved.
   #
   # Contributor(s): Gervase Markham <gerv@gerv.net>
-  #                 Fr�d�ric Buclin <LpSolit@gmail.com>
+  #                 Frédéric Buclin <LpSolit@gmail.com>
   #%]
 
 [%# INTERFACE:
@@ -31,6 +31,12 @@
   #
   # Note that you must explicitly filter every single template variable
   # in this file; if you do not wish to change it, use the "none" filter.
+  # 
+  # Extension- or custom-specific error handling  can be easily added 
+  # via hooks: just place your <extension>-errors.html.tmpl into 
+  # template/en/extension/hook/global/user-error.html.tmpl/errors/
+  # Note: be aware of uniqueness of error string parameter value, since 
+  # nobody can guarantee the hook files processing order in the future
   #%]
 
 [% PROCESS global/variables.none.tmpl %]
@@ -228,6 +234,11 @@
     [% title = "Classification Does Not Exist" %]
     The classification '[% name FILTER html %]' does not exist.
 
+  [% ELSIF error == "classification_doesnt_exist_for_product" %]
+    [% title = "Classification Does Not Exist For Product" %]
+    The classification '[% classification FILTER html %]' does not exist
+    for product '[% product FILTER html %]'.
+
   [% ELSIF error == "classification_not_deletable" %]
     [% title = "Default Classification Can Not Be Deleted" %]
     You can not delete the default classification
@@ -274,17 +285,17 @@
     '[% name FILTER html %]' is too long ([% name.size %] characters).
 
   [% ELSIF error == "component_need_initialowner" %]
-    [% title = "Component Requires Initial Owner" %]
-    You must enter an initial owner for component '[% name FILTER html %]'.
+    [% title = "Component Requires Default Assignee" %]
+    You must enter a default assignee for component '[% name FILTER html %]'.
 
   [% ELSIF error == "component_need_valid_initialowner" %]
-    [% title = "Component Requires A Valid Initial Owner" %]
-    You must use an existing [% terms.Bugzilla %] account as initial owner for
+    [% title = "Component Requires A Valid Default Assignee" %]
+    You must use an existing [% terms.Bugzilla %] account as the default assignee for
     component '[% name FILTER html %]'.
 
   [% ELSIF error == "component_need_valid_initialqacontact" %]
-    [% title = "Component Requires A Valid Initial QA Contact" %]
-    You must use an existing [% terms.Bugzilla %] account as initial QA contact for
+    [% title = "Component Requires A Valid Default QA Contact" %]
+    You must use an existing [% terms.Bugzilla %] account as default QA contact for
     component '[% name FILTER html %]'.
      
   [% ELSIF error == "product_not_specified" %]
@@ -320,9 +331,26 @@
     [% title = "Description Required" %]
     You must provide a description of the [% terms.bug %].
 
-  [% ELSIF error == "dupe_of_self_disallowed" %]
-    [% title = "Cannot mark $terms.abug as a duplicate of itself" %]
-    You can't mark [% terms.abug %] as a duplicate of itself.
+  [% ELSIF error == "dupe_entry_found" %]
+    [% title = "Already marked as duplicate" %]
+    This [% terms.bug %] has already been marked as a duplicate
+    of [% terms.bug %] [%+ dupe_of FILTER html %].
+
+  [% ELSIF error == "dupe_not_allowed" %]
+    [% title = "Cannot mark $terms.bugs as duplicates" %]
+    You cannot mark [% terms.bugs %] as duplicates when
+    changing several [% terms.bugs %] at once.
+
+  [% ELSIF error == "dupe_loop_detected" %]
+    [% title = "Loop detected among duplicates" %]
+    You cannot mark [% terms.bug %] [%+ bug_id FILTER html %] as
+    a duplicate of
+    [% IF dupe_of == bug_id %]
+      itself
+    [% ELSE %]
+      [%+ terms.bug %] [%+ dupe_of FILTER html %], because it
+      would create a duplicate loop
+    [% END %].
 
   [% ELSIF error == "email_change_in_progress" %]
     [% title = "Email Change Already In Progress" %]
@@ -342,9 +370,9 @@
   
   [% ELSIF error == "entry_access_denied" %]
     [% title = "Permission Denied" %]
-    Sorry, either the product <em>[% product FILTER html %]</em> does not
-    exist, or you don't have the required permissions to
-    enter [% terms.abug %] against that product.
+    Sorry, either the product <em>[% product FILTER html %]</em>
+    does not exist or you aren't authorized to
+    enter [% terms.abug %] into it.
 
   [% ELSIF error == "fieldname_invalid" %]
     [% title = "Specified Field Does Not Exist" %]
@@ -505,7 +533,7 @@
     from <em>[% oldvalue FILTER html %]</em> to 
     <em>[% newvalue FILTER html %]</em>, but only
     [% IF privs < 3 %]
-      the owner
+      the assignee
       [% IF privs < 2 %] or reporter [% END %]
       of the [% terms.bug %], or
     [% END %]
@@ -735,7 +763,20 @@
   [% ELSIF error == "missing_category" %]
     [% title = "Missing Category" %]
     You did not specify a category for this series.
-                
+
+  [% ELSIF error == "missing_component" %]
+    [% title = "Missing Component" %]
+    Sorry, the product <em>[% product FILTER html %]</em>
+    has to have at least one component in order for you to
+    enter [% terms.abug %] into it.<p>
+    [% IF UserInGroup("editcomponents") %]
+      <a href="editcomponents.cgi?action=add&amp;product=[% product FILTER url_quote %]">Create
+      a new component</a>.
+    [% ELSE %]
+      Please contact [% Param("maintainer") %] and ask them
+      to add a component to this product.
+    [% END %]
+
   [% ELSIF error == "missing_content_type" %]
     [% title = "Missing Content-Type" %]
      You asked [% terms.Bugzilla %] to auto-detect the content type, but
@@ -784,14 +825,27 @@
     [% title = "Missing Subcategory" %]
     You did not specify a subcategory for this series.
                 
+  [% ELSIF error == "missing_version" %]
+    [% title = "Missing Version" %]
+    Sorry, the product <em>[% product FILTER html %]</em>
+    has to have at least one version in order for you to
+    enter [% terms.abug %] into it.<p>
+    [% IF UserInGroup("editcomponents") %]
+      <a href="editversions.cgi?action=add&amp;product=[% product FILTER url_quote %]">Create
+      a new version</a>.
+    [% ELSE %]
+      Please contact [% Param("maintainer") %] and ask them
+      to add a version to this product.
+    [% END %]
+
   [% ELSIF error == "need_component" %]
     [% title = "Component Required" %]
-    You must specify a component to help determine the new owner of these 
+    You must specify a component to help determine the new assignee of these 
     [% terms.bugs %].
 
   [% ELSIF error == "need_product" %]
     [% title = "Product Required" %]
-    You must specify a product to help determine the new owner of these [% terms.bugs %].
+    You must specify a product to help determine the new assignee of these [% terms.bugs %].
 
   [% ELSIF error == "need_quip" %]
     [% title = "Quip Required" %]
@@ -814,18 +868,6 @@
     You cannot change the component for a list of [% terms.bugs %] covering more than
     one product.
 
-  [% ELSIF error == "no_components" %]
-    [% title = "No Components" %]
-    Sorry; there needs to be at least one component for this product in order
-    to create a new [% terms.bug %].
-    [% IF UserInGroup("editcomponents") %]
-      <a href="editcomponents.cgi?product=[% product FILTER url_quote %]">Create
-        a new component</a>.
-    [% ELSE %]
-       Please contact [% Param("maintainer") %], giving the name of
-       the product in which you tried to create a new [% terms.bug %].
-    [% END %]
-
   [% ELSIF error == "no_dupe_stats" %]
     [% title = "Cannot Find Duplicate Statistics" %]
     There are no duplicate statistics for today ([% today FILTER html %]) 
@@ -847,11 +889,6 @@
     and an error
     occurred opening yesterday's dupes file: [% error_msg FILTER html %].
 
-  [% ELSIF error == "no_html_in_quips" %]
-    [% title = "No HTML In Quips" %]
-    Sorry - for security reasons, support for HTML tags has been turned off
-    in quips.
-
   [% ELSIF error == "no_new_quips" %]
     [% title = "No New Quips" %]
     This site does not permit the addition of new quips.
@@ -922,7 +959,7 @@
 
   [% ELSIF error == "product_disabled" %]
     [% title = BLOCK %]Product closed for [% terms.Bugs %] Entry[% END %]
-    Sorry, entering [% terms.bugs %] into
+    Sorry, entering [% terms.bugs %] into the
     product <em>[% product FILTER html %]</em> has been disabled.
 
   [% ELSIF error == "product_edit_denied" %]
@@ -947,7 +984,7 @@
   [% ELSIF error == "reassign_to_empty" %]
     [% title = "Illegal Reassignment" %]
     To reassign [% terms.abug %], you must provide an address for
-    the new owner. If you did not intentionally clear out the 
+    the new assignee. If you did not intentionally clear out the 
     "Reassign [% terms.bug %] to" field, [% Param("browserbugmessage") %]
 
   [% ELSIF error == "report_access_denied" %]
@@ -967,6 +1004,12 @@
     [% title = "Summary Needed" %]
     You must enter a summary for this [% terms.bug %].
 
+  [% ELSIF error == "saved_search_used_by_whines" %]
+    [% title = "Saved Search In Use" %]
+    The saved search <em>[% search_name FILTER html %]</em> is being used 
+    by <a href="editwhines.cgi">Whining events</a> with the following subjects:
+    [%+ subjects FILTER html %]
+
   [% ELSIF error == "search_content_without_matches" %]
     [% title = "Illegal Search" %]
     The "content" field can only be used with "matches" search 
@@ -1077,8 +1120,8 @@
 
   [% ELSIF error == "user_has_responsibility" %]
     [% title = "Can't Delete User Account" %]
-    The user you want to delete is set up for roles as initial [% terms.bug %]
-    owner or QA contact for at least one component.
+    The user you want to delete is set up for roles as default [% terms.bug %]
+    assignee or QA contact for at least one component.
     For this reason, you cannot delete the account at this time.
 
   [% ELSIF error == "user_login_required" %]
@@ -1111,10 +1154,18 @@
     The file you are trying to attach is empty!
 
   [% ELSE %]
-    [% title = "Error string not found" %]
-    The user error string <code>[% error FILTER html %]</code> was not found.
-    Please send email to [% Param("maintainer") %] describing the steps taken
-    to obtain this message.
+
+    [%# Try to find hooked error messages %]
+    [% error_message = Hook.process("errors") %]
+
+    [% IF not error_message %]
+      [% title = "Error string not found" %]
+      The user error string <code>[% error FILTER html %]</code> was not found.
+      Please send email to [% Param("maintainer") %] describing the steps taken
+      to obtain this message.
+    [% ELSE %]
+      [% error_message FILTER none %]
+    [% END %]
   [% END %]
 [% END %]
 
@@ -1142,7 +1193,8 @@
   
 [% USE Bugzilla %]
 [% namedcmd = Bugzilla.cgi.param("namedcmd") %]
-[% IF namedcmd AND error != "missing_query" %]
+[% IF namedcmd AND error != "missing_query" 
+               AND error != "saved_search_used_by_whines" %]
   <p>  
     Alternatively, you can    
     <a href="buglist.cgi?cmdtype=dorem&amp;remaction=forget&amp;namedcmd=
diff --git a/template/en/default/list/CVS/Entries b/template/en/default/list/CVS/Entries
index 53a7a75b4fe33a333120625f5e64a3197b1b941a..2926c29b8b6b31be56c62478240907d80e46e737 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_19_3
-/edit-multiple.html.tmpl/1.25/Mon May  9 22:49:43 2005//TBUGZILLA-2_19_3
-/list-simple.html.tmpl/1.9/Thu Oct 21 19:13:28 2004//TBUGZILLA-2_19_3
-/list.csv.tmpl/1.4/Thu Mar 17 00:01:28 2005//TBUGZILLA-2_19_3
-/list.html.tmpl/1.36/Tue Mar 22 08:46:13 2005//TBUGZILLA-2_19_3
-/list.ics.tmpl/1.4/Tue Mar 15 17:16:25 2005//TBUGZILLA-2_19_3
-/list.js.tmpl/1.2/Sat Nov  8 18:04:36 2003//TBUGZILLA-2_19_3
-/list.rdf.tmpl/1.4/Fri Nov 21 23:15:40 2003//TBUGZILLA-2_19_3
-/list.rss.tmpl/1.1/Tue Mar 15 17:16:25 2005//TBUGZILLA-2_19_3
-/quips.html.tmpl/1.14/Thu Mar 10 16:21:35 2005//TBUGZILLA-2_19_3
-/server-push.html.tmpl/1.5/Thu Mar 18 21:51:19 2004//TBUGZILLA-2_19_3
-/table.html.tmpl/1.25/Mon Apr 11 22:52:51 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/list/CVS/Tag b/template/en/default/list/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/list/CVS/Tag
+++ b/template/en/default/list/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl
index 64131e973e60dfeb23bd4f4c6511fbd67152fe6f..5f8b1ee41122573276d4205f0515b3fe9ea4a84f 100644
--- a/template/en/default/list/edit-multiple.html.tmpl
+++ b/template/en/default/list/edit-multiple.html.tmpl
@@ -271,7 +271,7 @@
     [% FOREACH resolution = resolutions %]
       [% NEXT IF !resolution %]
       <option value="[% resolution FILTER html %]" [% 'selected="selected"' IF resolution == "FIXED" %]>
-        [% resolution FILTER html %]
+        [% resolution_descs.$resolution FILTER html %]
       </option>
     [% END %]
   </select><br>
@@ -317,12 +317,12 @@
        name="knob"
        value="reassignbycomponent">
 <label for="knob-reassignbycomponent">
-  Reassign [% terms.bugs %] to owner of selected component
+  Reassign [% terms.bugs %] to default assignee of selected component
 </label><br>
 
 <input type="submit" value="Commit">
 
-[% IF ismover %]
+[% IF Param('move-enabled') && user.is_mover %]
   <input type="submit" name="action" value="[% Param('move-button-text') %]">
 [% END %]
 
diff --git a/template/en/default/list/list.csv.tmpl b/template/en/default/list/list.csv.tmpl
index 2731b6613f4730375a5834fbc1e468ae2e8cfe8b..76df4f4da72b9a78e74cd1ff131f590913fa3e81 100644
--- a/template/en/default/list/list.csv.tmpl
+++ b/template/en/default/list/list.csv.tmpl
@@ -23,19 +23,22 @@
 [% PROCESS global/variables.none.tmpl %]
 [% USE date %]
 
-bug_id,
+[% colsepchar = user.settings.csv_colsepchar.value %]
+
+bug_id
 [% FOREACH column = displaycolumns %]
-  [% column FILTER csv %],
+  [% colsepchar %][% column FILTER csv %]
 [% END %]
 
 [% FOREACH bug = bugs %]
-  [% bug.bug_id %],
+  [% bug.bug_id %]
     [% FOREACH column = displaycolumns %]
+      [% colsepchar %]
       [% IF column == "opendate" OR column == "changeddate" %]
         [% rawcolumn = column.replace("date", "time") %]
         [% bug.$column = date.format(bug.$rawcolumn, "%Y-%m-%d %H:%M:%S") %]
       [% END %]
-      [% bug.$column FILTER csv %],
+      [% bug.$column FILTER csv %]
     [% END %]
 
 [% END %]
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl
index 0d3a38d5e39ec86fe82205f5038dd7fae4af3800..9961bb1b34bd07f29f2c944aa9165ce69a04a368 100644
--- a/template/en/default/list/list.html.tmpl
+++ b/template/en/default/list/list.html.tmpl
@@ -170,7 +170,7 @@
 
         [% IF bugowners %]
           <a href="mailto:
-            [% bugowners FILTER html %]">Send&nbsp;Mail&nbsp;to&nbsp;[% terms.Bug %]&nbsp;Owners</a> |
+            [% bugowners FILTER html %]">Send&nbsp;Mail&nbsp;to&nbsp;[% terms.Bug %]&nbsp;Assignees</a> |
         [% END %]
 
         [%# Links to more things users can do with this bug list. %]
diff --git a/template/en/default/list/list.rss.tmpl b/template/en/default/list/list.rss.tmpl
index 53352f22585b2a37e6a9f2fe2f7b56af478ac288..96d7a903d0c5982fd013d4b6759e8f98baef601c 100644
--- a/template/en/default/list/list.rss.tmpl
+++ b/template/en/default/list/list.rss.tmpl
@@ -30,8 +30,8 @@
 
 <?xml version="1.0"?>
 <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
-         xmlns:sy="http://pur1.org/rss/1.0/modules/syndication/"
-         xmlns:dc="http://pur1.org/rss/dc/elements/1.1/"
+         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 %]" >
@@ -58,7 +58,9 @@
  
   [% FOREACH bug = bugs %]
   <item rdf:about="[% Param('urlbase') FILTER xml %]show_bug.cgi?id=[% bug.bug_id FILTER xml %]">
-    <title>[% bug.short_desc FILTER xml %]</title>
+    <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> 
diff --git a/template/en/default/list/quips.html.tmpl b/template/en/default/list/quips.html.tmpl
index c43822aa1d22d5d58e92d838e3e9a2bbb38dd92a..92570777ed37b7a4bd5a53ad9590e6e5326b396c 100644
--- a/template/en/default/list/quips.html.tmpl
+++ b/template/en/default/list/quips.html.tmpl
@@ -23,7 +23,8 @@
   # added_quip: string. Defined if the CGI added a quip data before
   #                displaying anything; if defined, its value is that quip.
   # show_quips: boolean. True if we are showing the entire quip list.
-  # quips: list of strings. Defined iff show_quips is true. List of all quips.
+  # quips: list of strings. Defined if and only if show_quips is true.
+  #                List of all quips.
   #%]
 
 [% PROCESS global/variables.none.tmpl %]
@@ -56,22 +57,32 @@
   <p>[% approved.size %] quips approved and [% unapproved.size %] quips unapproved</p>
 [% END %]
 
+
 <p>
-  [% terms.Bugzilla %] will pick a random quip for the headline on each [% terms.bug %] list, and
-  you can extend the quip list. Type in something clever or funny or boring
-  (but not obscene or offensive, please) and bonk on the button.
-  [% IF Param("quip_list_entry_control") == "moderated" AND !user.groups.admin %]
-    Note that your quip has to be approved before it is used.
-  [% END %]
+  [% terms.Bugzilla %] will pick a random quip for the headline on each 
+  [% terms.bug %] list.
 </p>
 
-<form method="post" action="quips.cgi">
-  <input type="hidden" name="action" value="add">
-  <input size="80" name="quip">
+[% IF Param("quip_list_entry_control") != "closed" %]
   <p>
-    <input type="submit" value="Add This Quip">
+    You can extend the quip list. Type in something clever or funny or boring
+    (but not obscene or offensive, please) and bonk on the button.
+    [% IF Param("quip_list_entry_control") == "moderated" AND !user.groups.admin %]
+      Note that your quip has to be approved before it is used.
+    [% END %]
   </p>
-</form>
+
+  <form method="post" action="quips.cgi">
+    <input type="hidden" name="action" value="add">
+    <input size="80" name="quip">
+    <p>
+      <input type="submit" value="Add This Quip">
+    </p>
+  </form>
+[% ELSE %]
+  <p>No new entries may be submitted at this time.
+  </p>
+[% END %]
 
 [% IF show_quips %]
   [% IF !UserInGroup('admin') %]
diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl
index 9ba10b6ecd277e820676c65e8ba06217fe716cb3..d3fe3231b05983d0b8bbe61a994a1aaac1f6a8fa 100644
--- a/template/en/default/list/table.html.tmpl
+++ b/template/en/default/list/table.html.tmpl
@@ -53,7 +53,7 @@
     "resolution"        => { maxlength => 4 } , 
     "short_desc"        => { wrap => 1 } ,
     "short_short_desc"  => { maxlength => 60 , ellipsis => "..." , wrap => 1 } ,
-    "status_whiteboard" => { title => "StatusSummary" , wrap => 1 } , 
+    "status_whiteboard" => { title => "Whiteboard" , wrap => 1 } , 
     "component"         => { maxlength => 8 , title => "Comp" } , 
     "product"           => { maxlength => 8 } , 
     "version"           => { maxlength => 5 , title => "Vers" } , 
@@ -183,6 +183,10 @@
                column == 'remaining_time' ||
                column == 'estimated_time' %]
         [% PROCESS formattimeunit time_unit=bug.$column %] 
+      [% ELSIF column == 'bug_status' %]
+        [%- status_descs.${bug.$column}.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html %]
+      [% ELSIF column == 'resolution' %]
+        [%- resolution_descs.${bug.$column}.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html %]
       [% ELSE %]
         [%- bug.$column.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html -%]
       [% END %]
diff --git a/template/en/default/pages/CVS/Entries b/template/en/default/pages/CVS/Entries
index debd2d081936cbd40d34cccb65b73af6c39ac481..f963890af1d776bf2af9b41594e13a5f7ccf220a 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/Fri Mar 18 21:32:53 2005//TBUGZILLA-2_19_3
-/fields.html.tmpl/1.5/Mon May  9 22:49:44 2005//TBUGZILLA-2_19_3
-/linked.html.tmpl/1.8/Wed Feb  9 17:30:20 2005//TBUGZILLA-2_19_3
-/linkify.html.tmpl/1.5/Wed Feb  9 17:30:20 2005//TBUGZILLA-2_19_3
-/voting.html.tmpl/1.2/Thu Mar 18 16:21:57 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/pages/CVS/Tag b/template/en/default/pages/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/pages/CVS/Tag
+++ b/template/en/default/pages/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/pages/bug-writing.html.tmpl b/template/en/default/pages/bug-writing.html.tmpl
index d2bf81e2689bce0063d735466dc7fc63bbb8bdec..0317ae6a1e077de1c3cc60ba30a06eadbbd94ba8 100644
--- a/template/en/default/pages/bug-writing.html.tmpl
+++ b/template/en/default/pages/bug-writing.html.tmpl
@@ -114,8 +114,8 @@
     <li>Select the product that you've found a [% terms.bug %] in.</li>
 
     <li>Enter your e-mail address, password, and press the "Log in" button.
-    (If you don't yet have a password, leave the password field empty, and
-    press the "E-mail me a password" button instead. You'll quickly receive
+    (If you don't yet have a password, enter your email address below and
+    press the "Submit Request" button instead. You'll quickly receive
     an e-mail message with your password.)</li>
   </ol>
 
diff --git a/template/en/default/pages/fields.html.tmpl b/template/en/default/pages/fields.html.tmpl
index fb1c95e26600cf1ef9ca2fa2f9959dd4a51ec558..27f5303614bfa180d9ecb8c6bb91c54011cbcc36 100644
--- a/template/en/default/pages/fields.html.tmpl
+++ b/template/en/default/pages/fields.html.tmpl
@@ -82,7 +82,7 @@ cycle of [% terms.abug %].
         <dd>
           This [% terms.bug %] is not yet resolved, but is assigned to the 
           proper person. From here [% terms.bugs %] can be given to another 
-          person and become <b>[% status_descs.NEW FILTER html %]</b>, or resolved and become <b>[% descs.bug_status_descs.RESOLVED FILTER html  %]</b>.
+          person and become <b>[% status_descs.NEW FILTER html %]</b>, or resolved and become <b>[% status_descs.RESOLVED FILTER html  %]</b>.
         </dd>
 
         <dt>
@@ -93,7 +93,7 @@ cycle of [% terms.abug %].
           deemed incorrect. For example, a <b>[% status_descs.WORKSFORME FILTER html %]</b> [% terms.bug %] is
           <b>[% status_descs.REOPENED FILTER html %]</b> when more information shows up and
           the [% terms.bug %] is now reproducible. From here [% terms.bugs %] are
-          either marked <b>[% status_descs.ASSIGNED FILTER html %]</b> or <b>[% descs.bug_status_descs.RESOLVED FILTER html %]</b>.
+          either marked <b>[% status_descs.ASSIGNED FILTER html %]</b> or <b>[% status_descs.RESOLVED FILTER html %]</b>.
         </dd>
       </dl>
     </td>
@@ -119,7 +119,7 @@ cycle of [% terms.abug %].
         <dd>
           A resolution has been taken, and it is awaiting verification by
           QA. From here [% terms.bugs %] are either re-opened and become 
-          <b>[% status_descs.REOPENED FILTER html %]</b>, are marked <b>[% descs.bug_status_descs.VERIFIED FILTER html %]</b>, or are closed for
+          <b>[% status_descs.REOPENED FILTER html %]</b>, are marked <b>[% status_descs.VERIFIED FILTER html %]</b>, or are closed for
           good and marked <b>[% status_descs.CLOSED FILTER html %]</b>.
         </dd>
 
diff --git a/template/en/default/reports/CVS/Entries b/template/en/default/reports/CVS/Entries
index 3f78caa4e107e95488b0af329f023abfb45a9a70..2ad38d5def40b7c779a1b255cb249c164455fe49 100644
--- a/template/en/default/reports/CVS/Entries
+++ b/template/en/default/reports/CVS/Entries
@@ -1,23 +1,23 @@
-/chart.csv.tmpl/1.1/Wed Jun 25 23:23:01 2003//TBUGZILLA-2_19_3
-/chart.html.tmpl/1.2/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_19_3
-/chart.png.tmpl/1.3/Sat Jan 24 21:40:31 2004//TBUGZILLA-2_19_3
-/components.html.tmpl/1.8/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_19_3
-/create-chart.html.tmpl/1.11/Fri Feb 25 15:27:26 2005//TBUGZILLA-2_19_3
-/duplicates-simple.html.tmpl/1.4/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_19_3
-/duplicates-table.html.tmpl/1.11/Tue Mar 16 23:53:01 2004//TBUGZILLA-2_19_3
-/duplicates.html.tmpl/1.14/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_19_3
-/duplicates.rdf.tmpl/1.1/Tue Nov  5 01:54:15 2002//TBUGZILLA-2_19_3
-/edit-series.html.tmpl/1.5/Thu Feb 12 22:32:57 2004//TBUGZILLA-2_19_3
-/keywords.html.tmpl/1.6/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_19_3
-/menu.html.tmpl/1.6/Tue Jul  6 01:12:29 2004//TBUGZILLA-2_19_3
-/report-bar.png.tmpl/1.4/Thu Jul  3 21:32:03 2003//TBUGZILLA-2_19_3
-/report-line.png.tmpl/1.5/Sat Jan 24 21:40:31 2004//TBUGZILLA-2_19_3
-/report-pie.png.tmpl/1.3/Mon Jan  6 07:54:22 2003//TBUGZILLA-2_19_3
-/report-simple.html.tmpl/1.1/Mon Mar 14 16:24:03 2005//TBUGZILLA-2_19_3
-/report-table.csv.tmpl/1.5/Sat Sep  6 19:23:16 2003//TBUGZILLA-2_19_3
-/report-table.html.tmpl/1.10/Thu Mar 10 22:20:19 2005//TBUGZILLA-2_19_3
-/report.csv.tmpl/1.2/Mon Jan  6 07:54:22 2003//TBUGZILLA-2_19_3
-/report.html.tmpl/1.10/Sun Jan 18 18:39:30 2004//TBUGZILLA-2_19_3
-/series-common.html.tmpl/1.3/Tue Sep 14 23:30:20 2004//TBUGZILLA-2_19_3
-/series.html.tmpl/1.6/Tue Sep 14 23:30:20 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/reports/CVS/Tag b/template/en/default/reports/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/reports/CVS/Tag
+++ b/template/en/default/reports/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/reports/chart.csv.tmpl b/template/en/default/reports/chart.csv.tmpl
index 83620bf08c744c249ed2ad819390f6057030a3d7..87866dfd6eedc5807c4e5e2f49ef7860d4b8bd8b 100644
--- a/template/en/default/reports/chart.csv.tmpl
+++ b/template/en/default/reports/chart.csv.tmpl
@@ -19,10 +19,12 @@
   # Contributor(s): Gervase Markham <gerv@gerv.net>
   #%]
 
+[% colsepchar = user.settings.csv_colsepchar.value %]
+
 [% data = chart.data %]
-Date\Series,
+Date\Series
 [% FOREACH label = chart.labels %]
-  [% label FILTER csv %][% "," UNLESS loop.last %]
+  [% colsepchar %][% label FILTER csv %]
 [% END %]
 [%# The data, which is in the correct format for GD, is conceptually the wrong
   # way round for CSV output. So, we need to invert it here, which is why 
@@ -32,7 +34,10 @@ Date\Series,
 [% WHILE i < data.0.size %]
   [% j = 0 %]
   [% WHILE j < data.size %]
-    [% data.$j.$i %][% "," UNLESS (j == data.size - 1) %]
+    [% IF j > 0 %]
+      [% colsepchar %]
+    [% END %]
+    [% data.$j.$i %]
     [% j = j + 1 %]
   [% END %]
   [% i = i + 1 %]
diff --git a/template/en/default/reports/components.html.tmpl b/template/en/default/reports/components.html.tmpl
index ae969171bf76a2672db72e9b9b56bd4fb3bc912f..3578a86e418323068ae9ab39c4e3c54281d4105c 100644
--- a/template/en/default/reports/components.html.tmpl
+++ b/template/en/default/reports/components.html.tmpl
@@ -24,8 +24,8 @@
   # components: List of hashes. May be empty. Each hash has four members:
   #   name: string. Name of the component.
   #   description: string. Description of the component. May contain HTML.
-  #   initialowner: string. Component's initial owner.
-  #   initialqacontact: string. Component's initial QA contact.
+  #   initialowner: string. Component's default assignee.
+  #   initialqacontact: string. Component's default QA contact.
   #%]
   
 [% filtered_product = product FILTER html %]
@@ -45,7 +45,7 @@
   <table>
     <tr>
       <th align="left">Component</th>
-      <th align="left">Default Owner</th>
+      <th align="left">Default Assignee</th>
       [% IF Param("useqacontact") %]
         <th align="left">Default QA Contact</th>
       [% END %]
diff --git a/template/en/default/reports/report-bar.png.tmpl b/template/en/default/reports/report-bar.png.tmpl
index 72a5d9dd4b23b3dd66c84c5d2a7df762811f75c4..bb5dab7cd66f8640feb026cd341e4a429d2dba74 100644
--- a/template/en/default/reports/report-bar.png.tmpl
+++ b/template/en/default/reports/report-bar.png.tmpl
@@ -27,6 +27,30 @@
 
 [% col_field_disp = field_descs.$col_field || col_field %]
 
+[% IF col_field == 'bug_status' %]
+  [% FOR i IN [ 0 .. data.0.0.max ] %]
+    [% data.0.0.$i = status_descs.${data.0.0.$i} %]
+  [% END %]
+[% END %]
+
+[% IF col_field == 'resolution' %]
+  [% FOR i IN [ 0 .. data.0.0.max ] %]
+    [% data.0.0.$i = resolution_descs.${data.0.0.$i} %]
+  [% END %]
+[% END %]
+
+[% IF row_field == 'bug_status' %]
+  [% FOR i IN [ 0 .. row_names.max ] %]
+    [% row_names.$i = status_descs.${row_names.$i} %]
+  [% END %]
+[% END %]
+
+[% IF row_field == 'resolution' %]
+  [% FOR i IN [ 0 .. row_names.max ] %]
+    [% row_names.$i = resolution_descs.${row_names.$i} %]
+  [% END %]
+[% END %]
+
 [% FILTER null;
   USE graph = GD.Graph.bars(width, height);
 
diff --git a/template/en/default/reports/report-line.png.tmpl b/template/en/default/reports/report-line.png.tmpl
index be29a71e31533e9b4bb79da8bd91a7a35b492a01..60e9f261adc236040129e432f202bd499269d62e 100644
--- a/template/en/default/reports/report-line.png.tmpl
+++ b/template/en/default/reports/report-line.png.tmpl
@@ -27,6 +27,30 @@
 
 [% col_field_disp = field_descs.$col_field || col_field %]
 
+[% IF col_field == 'bug_status' %]
+  [% FOR i IN [ 0 .. data.0.0.max ] %]
+    [% data.0.0.$i = status_descs.${data.0.0.$i} %]
+  [% END %]
+[% END %]
+
+[% IF col_field == 'resolution' %]
+  [% FOR i IN [ 0 .. data.0.0.max ] %]
+    [% data.0.0.$i = resolution_descs.${data.0.0.$i} %]
+  [% END %]
+[% END %]
+
+[% IF row_field == 'bug_status' %]
+  [% FOR i IN [ 0 .. row_names.max ] %]
+    [% row_names.$i = status_descs.${row_names.$i} %]
+  [% END %]
+[% END %]
+
+[% IF row_field == 'resolution' %]
+  [% FOR i IN [ 0 .. row_names.max ] %]
+    [% row_names.$i = resolution_descs.${row_names.$i} %]
+  [% END %]
+[% END %]
+
 [% IF cumulate %]
   [% USE graph = GD.Graph.area(width, height) %]
   [% graph.set(cumulate => "true") %]
diff --git a/template/en/default/reports/report-pie.png.tmpl b/template/en/default/reports/report-pie.png.tmpl
index 38cc56cc4e390b77ddc423bd65f8d84de13aafbb..c70b06bcf49cf702c21fd02622d230e356d23405 100644
--- a/template/en/default/reports/report-pie.png.tmpl
+++ b/template/en/default/reports/report-pie.png.tmpl
@@ -23,6 +23,18 @@
 
 [% col_field_disp = field_descs.$col_field || col_field %]
 
+[% IF col_field == 'bug_status' %]
+  [% FOR i IN [ 0 .. data.0.0.max ] %]
+    [% data.0.0.$i = status_descs.${data.0.0.$i} %]
+  [% END %]
+[% END %]
+
+[% IF col_field == 'resolution' %]
+  [% FOR i IN [ 0 .. data.0.0.max ] %]
+    [% data.0.0.$i = resolution_descs.${data.0.0.$i} %]
+  [% END %]
+[% END %]
+
 [% FILTER null;
   USE graph = GD.Graph.pie(width, height);
     
diff --git a/template/en/default/reports/report-table.csv.tmpl b/template/en/default/reports/report-table.csv.tmpl
index 216419fea5eb825cd6c23358a3f031e9d4043fe5..96dca3d58f2c8b8f25a43c570fafc5110d07fd09 100644
--- a/template/en/default/reports/report-table.csv.tmpl
+++ b/template/en/default/reports/report-table.csv.tmpl
@@ -23,39 +23,50 @@
   #%]
 [% PROCESS global/variables.none.tmpl %]
 
+[% colsepchar = user.settings.csv_colsepchar.value %]
+
 [% num_bugs = BLOCK %]Number of [% terms.bugs %][% END %]
 [% tbl_field_disp = field_descs.$tbl_field || tbl_field %]
 [% col_field_disp = field_descs.$col_field || col_field %]
 [% row_field_disp = field_descs.$row_field || row_field %]
 
-[% title = BLOCK %]
-  [% IF tbl_field %]
-    [% tbl_field_disp FILTER csv %]: [% tbl FILTER csv %]
-
-  [% END %]
-  [% IF row_field %]
-    [% row_field_disp FILTER csv %]
-  [% END %]
-  [% " / " IF col_field AND row_field %]
-  [% col_field_disp FILTER csv %]
+[% IF tbl_field %]
+  [% tbl_field_disp FILTER csv %]: [% tbl FILTER csv %]
 [% END %]
-
-[% title %],
+[% IF row_field %]
+  [% row_field_disp FILTER csv %]
+[% END %]
+[% " / " IF col_field AND row_field %]
+[% col_field_disp FILTER csv %]
 [% IF col_field -%]
-[% FOREACH col = col_names -%]
-  [% col FILTER csv -%],
-[% END -%]
+  [% FOREACH col = col_names -%]
+    [% colsepchar %]
+    [% IF col_field == 'bug_status' %]
+      [% status_descs.$col FILTER csv -%]
+    [% ELSIF col_field == 'resolution' %]
+      [% resolution_descs.$col FILTER csv -%]
+    [% ELSE %]
+      [% col FILTER csv -%]
+    [% END %]
+  [% END -%]
 [% ELSE -%]
-  [% num_bugs %],
+  [% colsepchar %][% num_bugs %]
 [% END %]
 
 [% FOREACH row = row_names %]
-  [% row FILTER csv -%],
+  [% IF row_field == 'bug_status' %]
+    [% status_descs.$row FILTER csv -%]
+  [% ELSIF row_field == 'resolution' %]
+    [% resolution_descs.$row FILTER csv -%]
+  [% ELSE %]
+    [% row FILTER csv -%]
+  [% END %]
   [% FOREACH col = col_names %]
+    [% colsepchar %]
     [% IF data.$tbl AND data.$tbl.$col AND data.$tbl.$col.$row %]
-      [% data.$tbl.$col.$row -%],
+      [% data.$tbl.$col.$row -%]
     [% ELSE %]
-      [% -%]0,
+      [% -%]0
     [% END %]
   [% END %]
 
diff --git a/template/en/default/reports/report-table.html.tmpl b/template/en/default/reports/report-table.html.tmpl
index 3c90d5bf2f4cc4c67a6908254ef45a6661cb5dd4..0e2ae62c86ad43148512ee2a729487a2f7a330b3 100644
--- a/template/en/default/reports/report-table.html.tmpl
+++ b/template/en/default/reports/report-table.html.tmpl
@@ -85,7 +85,13 @@
         
         [% col_idx = 1 - col_idx %]
         <td class="[% classes.$row_idx.$col_idx %]">
-          [% col FILTER html FILTER replace('^ $','&nbsp;') %]
+          [% IF col_field == 'bug_status' %]
+            [% status_descs.$col FILTER html FILTER replace('^ $','&nbsp;') %]
+          [% ELSIF col_field == 'resolution' %]
+            [% resolution_descs.$col FILTER html FILTER replace('^ $','&nbsp;') %]
+          [% ELSE %]
+            [% col FILTER html FILTER replace('^ $','&nbsp;') %]
+          [% END %]
         </td>
       [% END %]
       <td class="ttotal">
@@ -100,7 +106,13 @@
     [% row_idx = 1 - row_idx %]
     <tr>
       <td class="[% classes.$row_idx.$col_idx %]" align="right">
-        [% row FILTER html FILTER replace('^ $','&nbsp;') %]
+        [% IF row_field == 'bug_status' %]
+          [% status_descs.$row FILTER html FILTER replace('^ $','&nbsp;') %]
+        [% ELSIF row_field == 'resolution' %]
+          [% resolution_descs.$row FILTER html FILTER replace('^ $','&nbsp;') %]
+        [% ELSE %]
+          [% row FILTER html FILTER replace('^ $','&nbsp;') %]
+        [% END %]
       </td>
       [% FOREACH col = col_names %]
         [% row_total = row_total + data.$tbl.$col.$row %]
diff --git a/template/en/default/request/CVS/Entries b/template/en/default/request/CVS/Entries
index 39ca0e988b20f890632aea7220f3ad1a55f25944..90cd2243aa9ab28c1c7fa95e2d19e89698606b48 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_19_3
-/queue.html.tmpl/1.12/Tue Dec 14 02:29:56 2004//TBUGZILLA-2_19_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
 D
diff --git a/template/en/default/request/CVS/Tag b/template/en/default/request/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/request/CVS/Tag
+++ b/template/en/default/request/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/request/queue.html.tmpl b/template/en/default/request/queue.html.tmpl
index fbfa94d25028b8a8a7e4b15ce16337d96c4d4875..a6edcd8a3136edade409a734757d9f17be845a02 100644
--- a/template/en/default/request/queue.html.tmpl
+++ b/template/en/default/request/queue.html.tmpl
@@ -36,7 +36,16 @@
   [% END %]
 [% END %]
 
-[% filter_form = BLOCK %]
+[% PROCESS global/header.html.tmpl
+  title="Request Queue"
+  style = "
+    table.requests th { text-align: left; }
+    table#filter th { text-align: right; }
+  "
+  onload="selectProduct(document.forms[0], 'product', 'component', 'Any');"
+  javascript_urls=["productmenu.js"]
+%]
+
 <form action="request.cgi" method="get">
   <input type="hidden" name="action" value="queue">
 
@@ -104,7 +113,6 @@
   </table>
 
 </form>
-[% END %]
 
 [% column_headers = {
       "type"       => "Flag" ,
@@ -121,18 +129,6 @@
            group_value     = ""
 %]
 
-
-[% PROCESS global/header.html.tmpl
-  title="Request Queue"
-  h2=filter_form
-  style = "
-    table.requests th { text-align: left; }
-    table#filter th { text-align: right; }
-  "
-  onload="selectProduct(document.forms[0], 'product', 'component', 'Any');"
-  javascript_urls=["productmenu.js"]
-%]
-
 [% IF debug %]
   <p>[% query FILTER html %]</p>
 [% END %]
diff --git a/template/en/default/search/CVS/Entries b/template/en/default/search/CVS/Entries
index 16bb16414ae48e10f62ab0d8ad92bd21d5b6515a..a07094c83ca26f38abc1ee33648a5dd18990b41b 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_19_3
-/form.html.tmpl/1.30/Fri Feb 25 15:27:27 2005//TBUGZILLA-2_19_3
-/knob.html.tmpl/1.16/Thu Jul 22 05:14:14 2004//TBUGZILLA-2_19_3
-/search-advanced.html.tmpl/1.23/Wed Feb  2 23:00:24 2005//TBUGZILLA-2_19_3
-/search-create-series.html.tmpl/1.11/Mon Apr 11 22:34:50 2005//TBUGZILLA-2_19_3
-/search-help.html.tmpl/1.5/Fri Aug 20 21:49:20 2004//TBUGZILLA-2_19_3
-/search-report-graph.html.tmpl/1.8/Fri Aug 20 21:49:20 2004//TBUGZILLA-2_19_3
-/search-report-select.html.tmpl/1.6/Wed Mar  9 17:17:53 2005//TBUGZILLA-2_19_3
-/search-report-table.html.tmpl/1.9/Fri Aug 20 21:49:20 2004//TBUGZILLA-2_19_3
-/search-specific.html.tmpl/1.12/Sat May  7 13:26:14 2005//TBUGZILLA-2_19_3
-/tabs.html.tmpl/1.4/Wed Jul  7 06:02:33 2004//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/search/CVS/Tag b/template/en/default/search/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/search/CVS/Tag
+++ b/template/en/default/search/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl
index 963d474d9de2276790f983d76c4f8c9696514f3a..a8905cc0973a3f9080167ea6f9e7b2b467db3e70 100644
--- a/template/en/default/search/form.html.tmpl
+++ b/template/en/default/search/form.html.tmpl
@@ -441,7 +441,7 @@ function doOnSelectProduct(selectmode) {
              id="emailassigned_to[% n %]" value="1"
              [% " checked" IF default.emailassigned_to.$n %]>
       <label for="emailassigned_to[% n %]">
-        the [% terms.bug %] owner
+        the [% terms.bug %] assignee
       </label>
     </td>
   </tr>
@@ -595,7 +595,13 @@ function doOnSelectProduct(selectmode) {
       [% FOREACH name = ${sel.name} %]
         <option value="[% name FILTER html %]"
           [% " selected" IF lsearch(default.${sel.name}, name) != -1 %]>
-          [% name FILTER html %]</option>
+          [% IF sel.name == "bug_status" %]
+            [% status_descs.${name} FILTER html %]</option>
+          [% ELSIF sel.name == "resolution" %]
+            [% resolution_descs.${name} FILTER html %]</option>
+          [% ELSE %]
+            [% name FILTER html %]</option>
+          [% END %]
       [% END %]
       </select>
     </label>
diff --git a/template/en/default/whine/CVS/Entries b/template/en/default/whine/CVS/Entries
index b59575c8b0f2c2914dcfe1fb421be22c2cd79dcd..d60ad6cff8b2f2300ce3b2d8a0028a3af8f33e38 100644
--- a/template/en/default/whine/CVS/Entries
+++ b/template/en/default/whine/CVS/Entries
@@ -1,5 +1,5 @@
-/mail.html.tmpl/1.2/Mon May  9 22:49:42 2005//TBUGZILLA-2_19_3
-/mail.txt.tmpl/1.2/Mon May  9 22:49:42 2005//TBUGZILLA-2_19_3
-/multipart-mime.txt.tmpl/1.4/Wed Mar 16 21:58:56 2005//TBUGZILLA-2_19_3
-/schedule.html.tmpl/1.2/Fri Feb 18 22:41:10 2005//TBUGZILLA-2_19_3
+/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
 D
diff --git a/template/en/default/whine/CVS/Tag b/template/en/default/whine/CVS/Tag
index 2211791534506f2339ccf3098ad7123401df8f20..8a752cb7a306209c53bb1068054ee31c15178834 100644
--- a/template/en/default/whine/CVS/Tag
+++ b/template/en/default/whine/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-2_19_3
+NBUGZILLA-2_20
diff --git a/template/en/default/whine/mail.html.tmpl b/template/en/default/whine/mail.html.tmpl
index 1b8ac163154f6f4b87d8fac06b5b7995d03e5a18..d81043a36d01d32b887f451e0fbf99688378863c 100644
--- a/template/en/default/whine/mail.html.tmpl
+++ b/template/en/default/whine/mail.html.tmpl
@@ -30,6 +30,7 @@
   #%]
 
 [% PROCESS global/variables.none.tmpl %]
+[% PROCESS 'global/field-descs.none.tmpl' %]
 
 [%# assignee_login_string is a literal string used for getting the 
   # assignee's name out of the bug data %]
@@ -83,7 +84,7 @@
         <td align="left">[% bug.rep_platform FILTER html %]</td>
         <td align="left">[% bug.$assignee_login_string FILTER html %]</td>
         <td align="left">[% status_descs.${bug.bug_status} FILTER html %]</td>
-        <td align="left">[% resolutions.descs.${bug.resolution} FILTER html %]</td>
+        <td align="left">[% resolution_descs.${bug.resolution} FILTER html %]</td>
         <td align="left">[% bug.short_desc FILTER html %]</td>
       </tr>
     [% END %]
diff --git a/template/en/default/whine/mail.txt.tmpl b/template/en/default/whine/mail.txt.tmpl
index d42437d42efba3357f0c6bc20a7874c6bd8757b4..962972197f3902ab22cbe3f7cf67a910e6a07168 100644
--- a/template/en/default/whine/mail.txt.tmpl
+++ b/template/en/default/whine/mail.txt.tmpl
@@ -30,6 +30,7 @@
   #%]
 
 [% PROCESS global/variables.none.tmpl %]
+[% PROCESS 'global/field-descs.none.tmpl' %]
 
 [%# assignee_login_string is a literal string used for getting the 
   # assignee's name out of the bug data %]
diff --git a/template/en/extension/CVS/Entries b/template/en/extension/CVS/Entries
new file mode 100644
index 0000000000000000000000000000000000000000..1a0e15c61e3f68929676bfbda19623cb75743492
--- /dev/null
+++ b/template/en/extension/CVS/Entries
@@ -0,0 +1,2 @@
+/filterexceptions.pl/1.1.2.2/Tue Sep 27 17:03:14 2005//TBUGZILLA-2_20
+D
diff --git a/template/en/extension/CVS/Repository b/template/en/extension/CVS/Repository
new file mode 100644
index 0000000000000000000000000000000000000000..0d2eb6dd288ac7ee60171d01b7bd0bde6a48bb9c
--- /dev/null
+++ b/template/en/extension/CVS/Repository
@@ -0,0 +1 @@
+mozilla/webtools/bugzilla/template/en/extension
diff --git a/template/en/extension/CVS/Root b/template/en/extension/CVS/Root
new file mode 100644
index 0000000000000000000000000000000000000000..cdb6f4a0739a0dc53e628026726036377dec3637
--- /dev/null
+++ b/template/en/extension/CVS/Root
@@ -0,0 +1 @@
+:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
diff --git a/template/en/extension/CVS/Tag b/template/en/extension/CVS/Tag
new file mode 100644
index 0000000000000000000000000000000000000000..8a752cb7a306209c53bb1068054ee31c15178834
--- /dev/null
+++ b/template/en/extension/CVS/Tag
@@ -0,0 +1 @@
+NBUGZILLA-2_20
diff --git a/template/en/extension/filterexceptions.pl b/template/en/extension/filterexceptions.pl
new file mode 100644
index 0000000000000000000000000000000000000000..b8da2930f7dc408bb31582003071f993c7299b8c
--- /dev/null
+++ b/template/en/extension/filterexceptions.pl
@@ -0,0 +1,42 @@
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+#
+# 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
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS
+# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# rights and limitations under the License.
+#
+# The Original Code are the Bugzilla tests.
+#
+# The Initial Developer of the Original Code is Jacob Steenhagen.
+# Portions created by Jacob Steenhagen are
+# Copyright (C) 2001 Jacob Steenhagen. All
+# Rights Reserved.
+#
+# Contributor(s): Gervase Markham <gerv@gerv.net>
+#                 Joel Peshkin <bugreport@peshkin.net>
+
+# Important! The following classes of directives are excluded in the test,
+# and so do not need to be added here. Doing so will cause warnings.
+# See 008filter.t for more details.
+#
+# Comments                        - [%#...
+# Directives                      - [% IF|ELSE|UNLESS|FOREACH...
+# Assignments                     - [% foo = ...
+# Simple literals                 - [% " selected" ...
+# Values always used for numbers  - [% (i|j|k|n|count) %]
+# Params                          - [% Param(...
+# Safe functions                  - [% (time2str|GetBugLink)...
+# Safe vmethods                   - [% foo.size %] [% foo.length %]
+#                                   [% foo.push() %]
+# TT loop variables               - [% loop.count %]
+# Already-filtered stuff          - [% wibble FILTER html %]
+#   where the filter is one of html|csv|js|url_quote|quoteUrls|time|uri|xml|none
+
+%::safe = (
+);
+
diff --git a/testserver.pl b/testserver.pl
index a6573c8bc46d3826a084a1cfe420268f1d84b63b..b768dc939c698d739b0b97d4e7ba5d685c5bc311 100755
--- a/testserver.pl
+++ b/testserver.pl
@@ -38,7 +38,7 @@ if ((@ARGV != 1) || ($ARGV[0] !~ /^https?:/))
 
 
 # Try to determine the GID used by the webserver.
-my @pscmds = ('ps -eo comm,gid', 'ps -acxo command,gid');
+my @pscmds = ('ps -eo comm,gid', 'ps -acxo command,gid', 'ps -acxo command,rgid');
 my $sgid = 0;
 if ($^O !~ /MSWin32/i) {
     foreach my $pscmd (@pscmds) {
diff --git a/token.cgi b/token.cgi
index d8c3fe2888f0a295f37243b6b61f301fe3548aa7..0e0753807197c27b5c247749eac8d0b26c042a78 100755
--- a/token.cgi
+++ b/token.cgi
@@ -33,9 +33,10 @@ use vars qw($template $vars);
 
 use Bugzilla;
 use Bugzilla::Constants;
-use Bugzilla::Auth;
+use Bugzilla::Util;
 
 my $cgi = Bugzilla->cgi;
+my $dbh = Bugzilla->dbh;
 
 # Include the Bugzilla CGI and general utility library.
 require "CGI.pl";
@@ -114,7 +115,8 @@ if ( $::action eq 'reqpw' ) {
     CheckEmailSyntax($cgi->param('loginname'));
 
     my $quotedloginname = SqlQuote($cgi->param('loginname'));
-    SendSQL("SELECT userid FROM profiles WHERE login_name = $quotedloginname");
+    SendSQL("SELECT userid FROM profiles WHERE " .
+            $dbh->sql_istrcmp('login_name', $quotedloginname));
     FetchSQLData()
       || ThrowUserError("account_inexistent");
 }
diff --git a/userprefs.cgi b/userprefs.cgi
index 1cf15868b25fe9d934b869476fe06a2adc4840c9..9ae558fa18e8955671533d1eaba4fbe90087533a 100755
--- a/userprefs.cgi
+++ b/userprefs.cgi
@@ -29,7 +29,7 @@ use lib qw(.);
 use Bugzilla;
 use Bugzilla::Constants;
 use Bugzilla::Search;
-use Bugzilla::Auth;
+use Bugzilla::Util;
 use Bugzilla::User;
 
 require "CGI.pl";
@@ -109,7 +109,7 @@ sub SaveAccount {
 
         if($old_login_name ne $new_login_name) {
             $cgi->param('Bugzilla_password') 
-              || ThrowCodeError("old_password_required");
+              || ThrowUserError("old_password_required");
 
             use Bugzilla::Token;
             # Block multiple email changes for the same user.
@@ -152,18 +152,16 @@ sub SaveSettings {
     foreach my $name (@setting_list) {
         next if ! ($settings->{$name}->{'is_enabled'});
         my $value = $cgi->param($name);
+        my $setting = new Bugzilla::User::Setting($name);
 
-        # de-taint the value.
-        if ($value =~ /^([-\w]+)$/ ) {
-            $value = $1;
-        }
         if ($value eq "${name}-isdefault" ) {
             if (! $settings->{$name}->{'is_default'}) {
-                 $settings->{$name}->reset_to_default;
+                $settings->{$name}->reset_to_default;
             }
         }
         else {
-           $settings->{$name}->set($value);
+            $setting->validate_value($value);
+            $settings->{$name}->set($value);
         }
     }
     $vars->{'settings'} = Bugzilla->user->settings(1);
@@ -255,7 +253,9 @@ sub SaveEmail {
 
     # Global positive events: a ticked box means "send me mail."
     foreach my $event (GLOBAL_EVENTS) {
-        if (1 == $cgi->param("email-" . REL_ANY . "-$event")) {
+        if (defined($cgi->param("email-" . REL_ANY . "-$event"))
+            && $cgi->param("email-" . REL_ANY . "-$event") == 1)
+        {
             $dbh->do("INSERT INTO email_setting " . 
                      "(user_id, relationship, event) " . 
                      "VALUES ($userid, " . REL_ANY . ", $event)");
diff --git a/votes.cgi b/votes.cgi
index 3d1ac71139148db56c119d6a8b22c6a41c9b1afa..48064ddada2d529195006b91d590941269406499 100644
--- a/votes.cgi
+++ b/votes.cgi
@@ -319,13 +319,8 @@ sub record_votes {
     # need to clear the user's votes from the database.
     my %affected;
     $dbh->bz_lock_tables('bugs WRITE', 'bugs_activity WRITE',
-             'votes WRITE', 'longdescs WRITE', 'profiles READ',
-             'products READ', 'components READ', 'cc READ',
-             'dependencies READ', 'groups READ', 'fielddefs READ',
-             'namedqueries READ', 'whine_queries READ', 'watch READ',
-             'profiles AS watchers READ', 'profiles AS watched READ',
-             'user_group_map READ', 'bug_group_map READ',
-             'email_setting READ');
+                         'votes WRITE', 'longdescs WRITE',
+                         'products READ', 'fielddefs READ');
     
     # Take note of, and delete the user's old votes from the database.
     SendSQL("SELECT bug_id FROM votes WHERE who = $who");
@@ -347,15 +342,33 @@ sub record_votes {
     
     # Update the cached values in the bugs table
     print $cgi->header();
+    my @updated_bugs = ();
+
+    my $sth_getVotes = $dbh->prepare("SELECT SUM(vote_count) FROM votes
+                                      WHERE bug_id = ?");
+
+    my $sth_updateVotes = $dbh->prepare("UPDATE bugs SET votes = ?
+                                         WHERE bug_id = ?");
+
     foreach my $id (keys %affected) {
-        SendSQL("SELECT sum(vote_count) FROM votes WHERE bug_id = $id");
-        my $v = FetchOneColumn() || 0;
-        SendSQL("UPDATE bugs SET votes = $v WHERE bug_id = $id");
+        $sth_getVotes->execute($id);
+        my $v = $sth_getVotes->fetchrow_array || 0;
+        $sth_updateVotes->execute($v, $id);
+
         my $confirmed = CheckIfVotedConfirmed($id, $who);
-        $vars->{'header_done'} = 1 if $confirmed;
+        push (@updated_bugs, $id) if $confirmed;
     }
-
     $dbh->bz_unlock_tables();
 
+    $vars->{'type'} = "votes";
+    $vars->{'mailrecipients'} = { 'changer' => $who };
+
+    foreach my $bug_id (@updated_bugs) {
+        $vars->{'id'} = $bug_id;
+        $template->process("bug/process/results.html.tmpl", $vars)
+          || ThrowTemplateError($template->error());
+        # Set header_done to 1 only after the first bug.
+        $vars->{'header_done'} = 1;
+    }
     $vars->{'votes_recorded'} = 1;
 }
diff --git a/whine.pl b/whine.pl
index 8be68f42ccce418ac5c7fbdac6b52fc1898f9506..fea9d3da36be8b71be69d1efc5d086b4f10afb9a 100755
--- a/whine.pl
+++ b/whine.pl
@@ -228,9 +228,10 @@ sub get_next_event {
 
         $dbh->bz_lock_tables('whine_schedules WRITE',
                              'whine_events READ',
-                             'profiles READ',
+                             'profiles WRITE',
                              'groups READ',
-                             'user_group_map READ');
+                             'group_group_map READ',
+                             'user_group_map WRITE');
 
         # Get the event ID for the first pending schedule
         $sth_next_scheduled_event->execute;
@@ -239,7 +240,8 @@ sub get_next_event {
         return undef unless $fetched;
         my ($eventid, $owner_id, $subject, $body) = @{$fetched};
 
-        my $owner = Bugzilla::User->new($owner_id);
+        my $owner = Bugzilla::User->new($owner_id,
+                                        DERIVE_GROUPS_TABLES_ALREADY_LOCKED);
 
         my $whineatothers = $owner->in_group('bz_canusewhineatothers');
 
@@ -261,7 +263,7 @@ sub get_next_event {
                             $user_objects{$mailto} = $owner;
                         }
                         elsif ($whineatothers) {
-                            $user_objects{$mailto} = Bugzilla::User->new($mailto);
+                            $user_objects{$mailto} = Bugzilla::User->new($mailto,DERIVE_GROUPS_TABLES_ALREADY_LOCKED);
                         }
                     }
                 }
@@ -280,7 +282,7 @@ sub get_next_event {
                         for my $row (@{$sth->fetchall_arrayref}) {
                             if (not defined $user_objects{$row->[0]}) {
                                 $user_objects{$row->[0]} =
-                                    Bugzilla::User->new($row->[0]);
+                                    Bugzilla::User->new($row->[0],DERIVE_GROUPS_TABLES_ALREADY_LOCKED);
                             }
                         }
                     }
diff --git a/whineatnews.pl b/whineatnews.pl
index 286b0c5429ece37dc38638c2b03ca4dbf74a4140..ae2121303b1c7e3f029d315e7d9385c8e10db998 100755
--- a/whineatnews.pl
+++ b/whineatnews.pl
@@ -28,11 +28,15 @@
 # touched for more than the number of days specified in the whinedays param.
 
 use strict;
+use lib '.';
 
 require "globals.pl";
 
 use Bugzilla::BugMail;
 
+# Whining is disabled if whinedays is zero
+exit unless Param('whinedays') >= 1;
+
 my $dbh = Bugzilla->dbh;
 SendSQL("SELECT bug_id, short_desc, login_name " .
         "FROM bugs INNER JOIN profiles ON userid = assigned_to " .