[9.3] Should we mention "set_config(...)" in 18.1.3 in Server Configuration?

Started by David G Johnstonover 11 years ago9 messages
#1David G Johnston
david.g.johnston@gmail.com

Section 18.1.3 is named "18.1.3. Other Ways to Set Parameters" yet does not
reference the ability to use "set_config(...)" to make changes to
configuration parameters.

Something like (as a final sentence):

An alternative to the SQL "SET" command is to use the [link]set_config[link]
function.

Also, I would suggest modifying the function definitions in table 9-58 to
include the data types:

current_setting(setting_name text)
set_config(setting_name text, new_value text, is_local boolean)

David J.

--
View this message in context: http://postgresql.1045698.n5.nabble.com/9-3-Should-we-mention-set-config-in-18-1-3-in-Server-Configuration-tp5804655.html
Sent from the PostgreSQL - docs mailing list archive at Nabble.com.

--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: David G Johnston (#1)
Re: [9.3] Should we mention "set_config(...)" in 18.1.3 in Server Configuration?

David G Johnston <david.g.johnston@gmail.com> writes:

Section 18.1.3 is named "18.1.3. Other Ways to Set Parameters" yet does not
reference the ability to use "set_config(...)" to make changes to
configuration parameters.

Hm, yeah, seems like an oversight.

Another thing I've never been terribly happy about is that pg_settings is
mentioned only in the next sub-section. Could we merge that sub-section
with 18.1.3?

regards, tom lane

--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs

#3David Johnston
david.g.johnston@gmail.com
In reply to: David G Johnston (#1)
1 attachment(s)
Re: [9.3] Should we mention "set_config(...)" in 18.1.3 in Server Configuration?

​Re-sending to hopefully avoid admin moderation rule.​ Fixing top-post as
well.

On Wed, May 21, 2014 at 4:37 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

David G Johnston <david.g.johnston@gmail.com> writes:

Section 18.1.3 is named "18.1.3. Other Ways to Set Parameters" yet does

not

reference the ability to use "set_config(...)" to make changes to
configuration parameters.

Hm, yeah, seems like an oversight.

Another thing I've never been terribly happy about is that pg_settings is
mentioned only in the next sub-section. Could we merge that sub-section
with 18.1.3?

regards, tom lane

​​

I am presuming that posting a doc-only patch here instead of -hackers is
acceptable.

So I finally decided to setup a development environment and generate
actual patches. I have few in mind but I thought that these two changes
might be quick to implement. I thought wrong - mostly due to my desire to
improve things and not just "add and merge" some content.

I focused my effort on 18.1.1 to 18.1.4 though the actual coverage of
sections 2-4 has changed considerably. I decided not to minimize
white-space changes in that region since because of the re-organization git
was unable, especially in a couple of instances, to match up before and
after anyway. The file itself does not have a consistent format and so I
just applied 2-space indentations at each level. I plan to go back and do
polishing but I first want to make sure that the end-user product is
acceptable.

I've only hit this one file for the moment but figure on reviewing all of
the relevant cross-references for tweaks and consistency. I already did so
in passing and would not expect anything as invasive as what I am proposing
here - so if others feel these changes have merit I will plan on taking any
ideas and put forth a v2 patch that will hopefully be ready-to-commit.

Thank you in advance for any attention and education you can provide.

David J.

Attachments:

config_sgml_18_1_1-4_v1.difftext/plain; charset=US-ASCII; name=config_sgml_18_1_1-4_v1.diffDownload
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 697cf99..6ac48d6 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -11,7 +11,7 @@
   <para>
    There are many configuration parameters that affect the behavior of
    the database system. In the first section of this chapter, we
-   describe how to set configuration parameters. The subsequent sections
+   describe how to interact with configuration parameters. The subsequent sections
    discuss each parameter in detail.
   </para>
 
@@ -24,46 +24,103 @@
     <para>
      All parameter names are case-insensitive. Every parameter takes a
      value of one of five types: Boolean, integer, floating point,
-     string or enum. Boolean values can be written as <literal>on</literal>,
-     <literal>off</literal>, <literal>true</literal>,
-     <literal>false</literal>, <literal>yes</literal>,
-     <literal>no</literal>, <literal>1</literal>, <literal>0</literal>
-     (all case-insensitive) or any unambiguous prefix of these.
+     string or enum.
     </para>
 
+    <itemizedlist>
+
+    <listitem>
     <para>
-     Some settings specify a memory or time value.  Each of these has an
-     implicit unit, which is either kilobytes, blocks (typically eight
-     kilobytes), milliseconds, seconds, or minutes.  Default units can be
-     found by referencing <structname>pg_settings</>.<structfield>unit</>.
-     For convenience,
-     a different unit can also be specified explicitly.  Valid memory units
-     are <literal>kB</literal> (kilobytes), <literal>MB</literal>
-     (megabytes), <literal>GB</literal> (gigabytes), and <literal>TB</literal> (terabytes); valid time units
-     are <literal>ms</literal> (milliseconds), <literal>s</literal>
-     (seconds), <literal>min</literal> (minutes), <literal>h</literal>
-     (hours), and <literal>d</literal> (days).  Note that the multiplier
-     for memory units is 1024, not 1000.
+      <emphasis>Boolean</emphasis>: Values can be written as
+      <literal>on</literal>,
+      <literal>off</literal>,
+      <literal>true</literal>,
+      <literal>false</literal>,
+      <literal>yes</literal>,
+      <literal>no</literal>,
+      <literal>1</literal>,
+      <literal>0</literal>
+      (all case-insensitive) or any unambiguous prefix of these.
     </para>
+    </listitem>
 
+    <listitem>
     <para>
-     Parameters of type <quote>enum</> are specified in the same way as string
-     parameters, but are restricted to a limited set of values.  The allowed
-     values can be found
-     from <structname>pg_settings</>.<structfield>enumvals</>.
-     Enum parameter values are case-insensitive.
+      <emphasis>String</emphasis>:
+      Enclose the value in single-quote. Values are case-insensitive.
+      If multiple values are allowed separate them with commas.
     </para>
-   </sect2>
+    </listitem>
+
+    <listitem>
+    <para>
+      <emphasis>Numeric</emphasis>
+      (integer and floating point): Do not use single-quotes
+      (unless otherwise required)
+      or thousand separators.
+      Typically memory or time related - see comments in that
+      section for detail.
+    </para>
+    </listitem>
 
-   <sect2 id="config-setting-configuration-file">
-    <title>Setting Parameters via the Configuration File</title>
+    <listitem>
+    <para>
+      <emphasis>Numeric or String with Unit</emphasis>: Memory &amp; Time.
+      Both of these have an implicit unit, which is either kilobytes,
+      blocks (typically eight kilobytes), milliseconds, seconds, or minutes.
+      An numeric value will use the default, which can be
+      found by referencing <structname>pg_settings</>.<structfield>unit</>.
+      For convenience, a different unit can also be specified explicitly
+      via a string value. It is case-sensitive and
+      may include a space between the value and the unit
+      <itemizedlist>
+        <listitem>
+          <para>
+            Valid memory units are
+            <literal>kB</literal> (kilobytes),
+            <literal>MB</literal> (megabytes),
+            <literal>GB</literal> (gigabytes),
+            and <literal>TB</literal> (terabytes).
+            The multiplier for memory units is 1024, not 1000.
+          </para>
+        </listitem>
+        <listitem>
+          <para>
+            Valid time units are
+            <literal>ms</literal> (milliseconds),
+            <literal>s</literal> (seconds),
+            <literal>min</literal> (minutes),
+            <literal>h</literal> (hours),
+            and <literal>d</literal> (days).
+          </para>
+        </listitem>
+      </itemizedlist>
+    </para>
+    </listitem>
 
+    <listitem>
     <para>
-     One way to set these parameters is to edit the file
-     <filename>postgresql.conf</><indexterm><primary>postgresql.conf</></>,
-     which is normally kept in the data directory.  (A default copy is
-     installed there when the database cluster directory is
-     initialized.)  An example of what this file might look like is:
+      <emphasis><quote>enum</></emphasis>: These specified in the same way as string
+      parameters, but are restricted to a limited set of values that can be queried
+      from <structname>pg_settings</>.<structfield>enumvals</>:
+<programlisting>
+SELECT name, setting, enumvals FROM pg_settings WHERE enumvals IS NOT NULL;
+</programlisting>
+      Enum parameter values are case-insensitive.
+      </para>
+    </listitem>
+    </itemizedlist>
+    </sect2>
+
+    <sect2 id="config-setting-configuration-file">
+     <title>Parameter Interaction via Configuration File</title>
+
+      <para>
+        The primary way to set these parameters is to edit the file
+        <filename>postgresql.conf</><indexterm><primary>postgresql.conf</></>,
+        which is normally kept in the data directory.  (A default copy is
+        installed there when the database cluster directory is
+        initialized.)  An example of what this file might look like is:
 <programlisting>
 # This is a comment
 log_connections = yes
@@ -71,129 +128,209 @@ log_destination = 'syslog'
 search_path = '"$user", public'
 shared_buffers = 128MB
 </programlisting>
-     One parameter is specified per line. The equal sign between name and
-     value is optional. Whitespace is insignificant and blank lines are
-     ignored. Hash marks (<literal>#</literal>) designate the remainder of the
-     line as a comment.  Parameter values that are not simple identifiers or
-     numbers must be single-quoted.  To embed a single quote in a parameter
-     value, write either two quotes (preferred) or backslash-quote.
-    </para>
+        One parameter is specified per line. The equal sign between name and
+        value is optional. Whitespace is insignificant and blank lines are
+        ignored. Hash marks (<literal>#</literal>) designate the remainder of the
+        line as a comment.  Parameter values that are not simple identifiers or
+        numbers must be single-quoted.  To embed a single quote in a parameter
+        value, write either two quotes (preferred) or backslash-quote.
+      </para>
 
-    <para>
-     <indexterm>
-      <primary>SIGHUP</primary>
-     </indexterm>
-     The configuration file is reread whenever the main server process
-     receives a <systemitem>SIGHUP</> signal;  this is most easily done by
-     running <literal>pg_ctl reload</> from the command-line or by calling
-     the SQL function <function>pg_reload_conf()</function>. The main
-     server process
-     also propagates this signal to all currently running server
-     processes so that existing sessions also get the new
-     value. Alternatively, you can send the signal to a single server
-     process directly.  Some parameters can only be set at server start;
-     any changes to their entries in the configuration file will be ignored
-     until the server is restarted.  Invalid parameter settings in the
-     configuration file are likewise ignored (but logged) during
-     <systemitem>SIGHUP</> processing.
-    </para>
-   </sect2>
+      <para>
+        Parameters set in this way provide the global default value for the cluster.
+        The setting actually seen by the connecting user or issued statement
+        will be this value unless it is overridden.
+        The next sections describe ways in which the administrator
+        or user can override these defaults.
+      </para>
 
-   <sect2 id="config-setting-other-methods">
-    <title>Other Ways to Set Parameters</title>
+      <para>
+        <indexterm>
+          <primary>SIGHUP</primary>
+        </indexterm>
+        The configuration file is reread whenever the main server process
+        receives a <systemitem>SIGHUP</> signal;  this is most easily done by
+        running <literal>pg_ctl reload</> from the command-line or by calling
+        the SQL function <function>pg_reload_conf()</function>. The main
+        server process
+        also propagates this signal to all currently running server
+        processes so that existing sessions also get the new
+        value. Alternatively, you can send the signal to a single server
+        process directly.  Some parameters can only be set at server start;
+        any changes to their entries in the configuration file will be ignored
+        until the server is restarted.  Invalid parameter settings in the
+        configuration file are likewise ignored (but logged) during
+        <systemitem>SIGHUP</> processing.
+      </para>
+  </sect2>
 
-    <para>
-     A second way to set these configuration parameters is to give them
-     as a command-line option to the <command>postgres</command> command,
-     such as:
-<programlisting>
-postgres -c log_connections=yes -c log_destination='syslog'
-</programlisting>
-     Command-line options override any conflicting settings in
-     <filename>postgresql.conf</filename>.  Note that this means you won't
-     be able to change the value on-the-fly by editing
-     <filename>postgresql.conf</filename>, so while the command-line
-     method might be convenient, it can cost you flexibility later.
-    </para>
+    <sect2 id="config-setting-sql-command-interaction">
+     <title>Parameter Interaction via SQL</title>
+      <para>
+        <productname>PostgreSQL</productname> provides three SQL commands
+        to establish configuration defaults
+        that override those configured globally.
+        The evaluation of these defaults occurs at the beginning of a
+        new session, upon the user issuing <xref linkend="SQL-DISCARD">,
+        or if the server forces the session to reload it configuration after a
+        <systemitem>SIGHUP</systemitem>
+      </para>
+      <itemizedlist>
+      <listitem>
+      <para>
+        The <xref linkend="SQL-ALTERSYSTEM"> command provides
+        an SQL-accessible means
+        to change the global defaults. Since the server must
+        be running to execute SQL
+        the timing of when the actual value takes effect depends
+        on the variable being
+        changed - but in no case is the current session affected
+        nor will any change take
+        effect before the next configuration
+        reload (<systemitem>SIGHUP</>) by the server.
+      </para>
+      </listitem>
+      <listitem>
+      <para>
+        The <xref linkend="sql-alterdatabase"> command allows the database
+        administrator to override global settings on a per-database basis.
+      </para>
+      </listitem>
+      <listitem>
+      <para>
+        The <xref linkend="sql-alterrole"> command allows the database administrator
+        to override both global and per-database settings with user-specific values.
+      </para>
+      </listitem>
+      </itemizedlist>
 
-    <para>
-     Occasionally it is useful to give a command line option to
-     one particular session only. The environment variable
-     <envar>PGOPTIONS</envar> can be used for this purpose on the
-     client side:
+      <para>
+        Once a client connects to the database PostgreSQL provides two
+        additional SQL commands
+        to interact with session-local system configuration.
+        Both of these commands have equivalent
+        system administration functions.
+      </para>
+
+      <itemizedlist>
+      <listitem>
+      <para>
+      The <xref linkend="SQL-SHOW">
+      command allows inspection of the current value of all parameters.
+      The corresponding function
+      is <function>current_setting(setting_name text)</function>.
+      </para>
+      </listitem>
+      <listitem>
+      <para>
+      The <xref linkend="SQL-SET">
+      command allows modification of the current value some parameters.
+      The corresponding function is
+      <function>set_config(setting_name, new_value, is_local)</function>.
+      </para>
+      </listitem>
+      </itemizedlist>
+
+      <para>
+        Both <emphasis>SELECT</> and <emphasis>UPDATE</> can be issued against the
+        virtual table <structname>pg_settings</> to view and
+        affect the session-local configuration.
+        Its definition can be found in <xref linkend="view-pg-settings">.
+      </para>
+
+      <itemizedlist>
+      <listitem>
+      <para>
+        <xref linkend="SQL-SELECT">-ing against this relation
+        is the equivalent of issuing
+        SHOW but provides considerably more detail as well as
+        allowing for joining against other relations and specifying filter criteria.
+      </para>
+      </listitem>
+      <listitem>
+      <para>
+        <xref linkend="SQL-UPDATE">-ing against this relation,
+        specifically the <structname>setting</> column
+        is the equivalent of issuing SET though all values must be single-quoted.
+      </para>
+      <para>
+        Note that the eqivalent of
 <programlisting>
-env PGOPTIONS='-c geqo=off' psql
+SET configuration_parameter TO DEFAULT;
+</>
+        would be:
+<programlisting>
+UPDATE pg_settings SET setting = reset_val WHERE name = 'configuration_parameter';
 </programlisting>
-     (This works for any <application>libpq</>-based client application, not
-     just <application>psql</application>.) Note that this won't work for
-     parameters that are fixed when the server is started or that must be
-     specified in <filename>postgresql.conf</filename>.
-    </para>
+      </para>
+      </listitem>
+      </itemizedlist>
 
-    <para>
-     Furthermore, it is possible to assign a set of parameter settings to
-     a user or a database.  Whenever a session is started, the default
-     settings for the user and database involved are loaded.  The
-     commands <xref linkend="sql-alterrole">
-     and <xref linkend="sql-alterdatabase">,
-     respectively, are used to configure these settings.  Per-database
-     settings override anything received from the
-     <command>postgres</command> command-line or the configuration
-     file, and in turn are overridden by per-user settings; both are
-     overridden by per-session settings.
-    </para>
+    </sect2>
 
-    <para>
-     Some parameters can be changed in individual <acronym>SQL</acronym>
-     sessions with the <xref linkend="SQL-SET">
-     command, for example:
-<screen>
-SET ENABLE_SEQSCAN TO OFF;
-</screen>
-     If <command>SET</> is allowed, it overrides all other sources of
-     values for the parameter. Some parameters cannot be changed via
-     <command>SET</command>: for example, if they control behavior that
-     cannot be changed without restarting the entire
-     <productname>PostgreSQL</productname> server.  Also, some parameters
-     require superuser permission to change via <command>SET</command> or
-     <command>ALTER</>.
-    </para>
+    <sect2>
+     <title>Parameter Interaction via Shell</title>
+      <para>
+      In addition to setting global defaults or attaching overrides
+      at the database or role scope
+      , you may choose to provide them to
+      <productname>PostgreSQL</productname> via shell facilities.
+      Both the server and <application>libpq</> client library
+      have defined ways to accept
+      parameter values via the shell.
+      </para>
+      <itemizedlist>
 
-    <para>
-     Another way to change configuration parameters persistently is by
-     use of <xref linkend="SQL-ALTERSYSTEM">
-     command, for example:
-<screen>
-ALTER SYSTEM SET checkpoint_timeout TO 600;
-</screen>
-     This command will allow users to change values persistently
-     through SQL command. The values will be effective after reload of server configuration
-     (<acronym>SIGHUP</>) or server startup. The effect of this command is similar to when
-     user manually changes values in <filename>postgresql.conf</filename>.
-    </para>
-   </sect2>
+      <listitem>
+      <para>
+      On the <emphasis>server</emphasis>, command-line options can passed to the
+      <command>postgres</command> command directly via the "-c" parameter.
+<programlisting>
+postgres -c log_connections=yes -c log_destination='syslog'
+</programlisting>
+      Settings provided this way override those resolved globally
+      (via postgresql.conf or ALTER SYSTEM)
+      but are otherwise treated as being global for the purpose of
+      database and role overriding.
+      </para>
 
-   <sect2 id="config-setting-examining">
-    <title>Examining Parameter Settings</title>
+      <para>
+      Typically, a production system will be adminstered via its
+      <filename>postgresql.conf</filename> file.
+      Use of this mechanism is suggested only for development and testing.
+      </para>
+      </listitem>
 
-    <para>
-     The <xref linkend="SQL-SHOW">
-     command allows inspection of the current values of all parameters.
-    </para>
+      <listitem>
+      <para>
+      On the <emphasis>libpq-client</emphasis>, command-line options are
+      specified using the
+      <envar>PGOPTIONS</envar> environment variable.
+      Upon connecting to a server the contents of this variable are sent
+      to the server as if they were being
+      executed via a SQL <xref linkend="SQL-SET"> at the beginning of the session.
+      </para>
 
-    <para>
-     The virtual table <structname>pg_settings</structname> also allows
-     displaying and updating session run-time parameters;  see <xref
-     linkend="view-pg-settings"> for details and a description of the
-     different variable types and when they can be changed.
-     <structname>pg_settings</structname> is equivalent to <command>SHOW</>
-     and <command>SET</>, but can be more convenient
-     to use because it can be joined with other tables, or selected from using
-     any desired selection condition. It also contains more information about
-     each parameter than is available from <command>SHOW</>.
-    </para>
+      <para>
+      However, the format for <envar>PGOPTIONS</envar> is similar to that provided when launching
+      <command>postgres</command> command.
+      Specifically, the '-c' flag specification is part of the value.
+<programlisting>
+env PGOPTIONS="-c geqo=off -c statement_timeout='5 min'" psql
+</programlisting>
+      </para>
 
-   </sect2>
+      <para>
+        Other clients and libraries may provide their own mechanisms,
+        via the shell or otherwise, that allow the user
+        to setup the session configuration without requiring the user
+        to issue SQL commands. Please see their documentation
+        for details.
+      </para>
+      </listitem>
+      </itemizedlist>
+
+    </sect2>
 
    <sect2 id="config-includes">
     <title>Configuration File Includes</title>
#4David Johnston
david.g.johnston@gmail.com
In reply to: David Johnston (#3)
2 attachment(s)
Re: [9.3] Should we mention "set_config(...)" in 18.1.3 in Server Configuration?

On Sun, Jun 8, 2014 at 10:49 AM, David Johnston <david.g.johnston@gmail.com>
wrote:

On Wed, May 21, 2014 at 4:37 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

David G Johnston <david.g.johnston@gmail.com> writes:

Section 18.1.3 is named "18.1.3. Other Ways to Set Parameters" yet

does not

reference the ability to use "set_config(...)" to make changes to
configuration parameters.

Hm, yeah, seems like an oversight.

Another thing I've never been terribly happy about is that pg_settings is
mentioned only in the next sub-section. Could we merge that sub-section
with 18.1.3?

regards, tom lane

​​

I am presuming that posting a doc-only patch here instead of -hackers is
acceptable.

So I finally decided to setup a development environment and generate
actual patches. I have few in mind but I thought that these two changes
might be quick to implement. I thought wrong - mostly due to my desire to
improve things and not just "add and merge" some content.

I focused my effort on 18.1.1 to 18.1.4 though the actual coverage of
sections 2-4 has changed considerably. I decided not to minimize
white-space changes in that region since because of the re-organization git
was unable, especially in a couple of instances, to match up before and
after anyway. The file itself does not have a consistent format and so I
just applied 2-space indentations at each level. I plan to go back and do
polishing but I first want to make sure that the end-user product is
acceptable.

I've only hit this one file for the moment but figure on reviewing all of
the relevant cross-references for tweaks and consistency. I already did so
in passing and would not expect anything as invasive as what I am proposing
here - so if others feel these changes have merit I will plan on taking any
ideas and put forth a v2 patch that will hopefully be ready-to-commit.

Thank you in advance for any attention and education you can provide.

David J.

​Updated the attached PDF (but not the patch) to include a suggested
wording to address floating point number rounding and zero treatment.

"disabling log_rotation_age feature."
/messages/by-id/23802.1402584095@sss.pgh.pa.us

This addition still needs some work as well as the patch as a whole (see my
comments above). The attached PDF is the page that results from "make
html"; the original patch has been re-attached as well and -hackers copied
given the lack of response on -doc.

I am hoping this change would be something that could be included in 9.4; I
believe the enhancements would be most beneficial to newcomers who are just
getting started with PostgreSQL and would be using 9.4 as their starting
point.

​David J.​

Attachments:

config_sgml_18_1_1-4_v1.difftext/plain; charset=US-ASCII; name=config_sgml_18_1_1-4_v1.diffDownload
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 697cf99..6ac48d6 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -11,7 +11,7 @@
   <para>
    There are many configuration parameters that affect the behavior of
    the database system. In the first section of this chapter, we
-   describe how to set configuration parameters. The subsequent sections
+   describe how to interact with configuration parameters. The subsequent sections
    discuss each parameter in detail.
   </para>
 
@@ -24,46 +24,103 @@
     <para>
      All parameter names are case-insensitive. Every parameter takes a
      value of one of five types: Boolean, integer, floating point,
-     string or enum. Boolean values can be written as <literal>on</literal>,
-     <literal>off</literal>, <literal>true</literal>,
-     <literal>false</literal>, <literal>yes</literal>,
-     <literal>no</literal>, <literal>1</literal>, <literal>0</literal>
-     (all case-insensitive) or any unambiguous prefix of these.
+     string or enum.
     </para>
 
+    <itemizedlist>
+
+    <listitem>
     <para>
-     Some settings specify a memory or time value.  Each of these has an
-     implicit unit, which is either kilobytes, blocks (typically eight
-     kilobytes), milliseconds, seconds, or minutes.  Default units can be
-     found by referencing <structname>pg_settings</>.<structfield>unit</>.
-     For convenience,
-     a different unit can also be specified explicitly.  Valid memory units
-     are <literal>kB</literal> (kilobytes), <literal>MB</literal>
-     (megabytes), <literal>GB</literal> (gigabytes), and <literal>TB</literal> (terabytes); valid time units
-     are <literal>ms</literal> (milliseconds), <literal>s</literal>
-     (seconds), <literal>min</literal> (minutes), <literal>h</literal>
-     (hours), and <literal>d</literal> (days).  Note that the multiplier
-     for memory units is 1024, not 1000.
+      <emphasis>Boolean</emphasis>: Values can be written as
+      <literal>on</literal>,
+      <literal>off</literal>,
+      <literal>true</literal>,
+      <literal>false</literal>,
+      <literal>yes</literal>,
+      <literal>no</literal>,
+      <literal>1</literal>,
+      <literal>0</literal>
+      (all case-insensitive) or any unambiguous prefix of these.
     </para>
+    </listitem>
 
+    <listitem>
     <para>
-     Parameters of type <quote>enum</> are specified in the same way as string
-     parameters, but are restricted to a limited set of values.  The allowed
-     values can be found
-     from <structname>pg_settings</>.<structfield>enumvals</>.
-     Enum parameter values are case-insensitive.
+      <emphasis>String</emphasis>:
+      Enclose the value in single-quote. Values are case-insensitive.
+      If multiple values are allowed separate them with commas.
     </para>
-   </sect2>
+    </listitem>
+
+    <listitem>
+    <para>
+      <emphasis>Numeric</emphasis>
+      (integer and floating point): Do not use single-quotes
+      (unless otherwise required)
+      or thousand separators.
+      Typically memory or time related - see comments in that
+      section for detail.
+    </para>
+    </listitem>
 
-   <sect2 id="config-setting-configuration-file">
-    <title>Setting Parameters via the Configuration File</title>
+    <listitem>
+    <para>
+      <emphasis>Numeric or String with Unit</emphasis>: Memory &amp; Time.
+      Both of these have an implicit unit, which is either kilobytes,
+      blocks (typically eight kilobytes), milliseconds, seconds, or minutes.
+      An numeric value will use the default, which can be
+      found by referencing <structname>pg_settings</>.<structfield>unit</>.
+      For convenience, a different unit can also be specified explicitly
+      via a string value. It is case-sensitive and
+      may include a space between the value and the unit
+      <itemizedlist>
+        <listitem>
+          <para>
+            Valid memory units are
+            <literal>kB</literal> (kilobytes),
+            <literal>MB</literal> (megabytes),
+            <literal>GB</literal> (gigabytes),
+            and <literal>TB</literal> (terabytes).
+            The multiplier for memory units is 1024, not 1000.
+          </para>
+        </listitem>
+        <listitem>
+          <para>
+            Valid time units are
+            <literal>ms</literal> (milliseconds),
+            <literal>s</literal> (seconds),
+            <literal>min</literal> (minutes),
+            <literal>h</literal> (hours),
+            and <literal>d</literal> (days).
+          </para>
+        </listitem>
+      </itemizedlist>
+    </para>
+    </listitem>
 
+    <listitem>
     <para>
-     One way to set these parameters is to edit the file
-     <filename>postgresql.conf</><indexterm><primary>postgresql.conf</></>,
-     which is normally kept in the data directory.  (A default copy is
-     installed there when the database cluster directory is
-     initialized.)  An example of what this file might look like is:
+      <emphasis><quote>enum</></emphasis>: These specified in the same way as string
+      parameters, but are restricted to a limited set of values that can be queried
+      from <structname>pg_settings</>.<structfield>enumvals</>:
+<programlisting>
+SELECT name, setting, enumvals FROM pg_settings WHERE enumvals IS NOT NULL;
+</programlisting>
+      Enum parameter values are case-insensitive.
+      </para>
+    </listitem>
+    </itemizedlist>
+    </sect2>
+
+    <sect2 id="config-setting-configuration-file">
+     <title>Parameter Interaction via Configuration File</title>
+
+      <para>
+        The primary way to set these parameters is to edit the file
+        <filename>postgresql.conf</><indexterm><primary>postgresql.conf</></>,
+        which is normally kept in the data directory.  (A default copy is
+        installed there when the database cluster directory is
+        initialized.)  An example of what this file might look like is:
 <programlisting>
 # This is a comment
 log_connections = yes
@@ -71,129 +128,209 @@ log_destination = 'syslog'
 search_path = '"$user", public'
 shared_buffers = 128MB
 </programlisting>
-     One parameter is specified per line. The equal sign between name and
-     value is optional. Whitespace is insignificant and blank lines are
-     ignored. Hash marks (<literal>#</literal>) designate the remainder of the
-     line as a comment.  Parameter values that are not simple identifiers or
-     numbers must be single-quoted.  To embed a single quote in a parameter
-     value, write either two quotes (preferred) or backslash-quote.
-    </para>
+        One parameter is specified per line. The equal sign between name and
+        value is optional. Whitespace is insignificant and blank lines are
+        ignored. Hash marks (<literal>#</literal>) designate the remainder of the
+        line as a comment.  Parameter values that are not simple identifiers or
+        numbers must be single-quoted.  To embed a single quote in a parameter
+        value, write either two quotes (preferred) or backslash-quote.
+      </para>
 
-    <para>
-     <indexterm>
-      <primary>SIGHUP</primary>
-     </indexterm>
-     The configuration file is reread whenever the main server process
-     receives a <systemitem>SIGHUP</> signal;  this is most easily done by
-     running <literal>pg_ctl reload</> from the command-line or by calling
-     the SQL function <function>pg_reload_conf()</function>. The main
-     server process
-     also propagates this signal to all currently running server
-     processes so that existing sessions also get the new
-     value. Alternatively, you can send the signal to a single server
-     process directly.  Some parameters can only be set at server start;
-     any changes to their entries in the configuration file will be ignored
-     until the server is restarted.  Invalid parameter settings in the
-     configuration file are likewise ignored (but logged) during
-     <systemitem>SIGHUP</> processing.
-    </para>
-   </sect2>
+      <para>
+        Parameters set in this way provide the global default value for the cluster.
+        The setting actually seen by the connecting user or issued statement
+        will be this value unless it is overridden.
+        The next sections describe ways in which the administrator
+        or user can override these defaults.
+      </para>
 
-   <sect2 id="config-setting-other-methods">
-    <title>Other Ways to Set Parameters</title>
+      <para>
+        <indexterm>
+          <primary>SIGHUP</primary>
+        </indexterm>
+        The configuration file is reread whenever the main server process
+        receives a <systemitem>SIGHUP</> signal;  this is most easily done by
+        running <literal>pg_ctl reload</> from the command-line or by calling
+        the SQL function <function>pg_reload_conf()</function>. The main
+        server process
+        also propagates this signal to all currently running server
+        processes so that existing sessions also get the new
+        value. Alternatively, you can send the signal to a single server
+        process directly.  Some parameters can only be set at server start;
+        any changes to their entries in the configuration file will be ignored
+        until the server is restarted.  Invalid parameter settings in the
+        configuration file are likewise ignored (but logged) during
+        <systemitem>SIGHUP</> processing.
+      </para>
+  </sect2>
 
-    <para>
-     A second way to set these configuration parameters is to give them
-     as a command-line option to the <command>postgres</command> command,
-     such as:
-<programlisting>
-postgres -c log_connections=yes -c log_destination='syslog'
-</programlisting>
-     Command-line options override any conflicting settings in
-     <filename>postgresql.conf</filename>.  Note that this means you won't
-     be able to change the value on-the-fly by editing
-     <filename>postgresql.conf</filename>, so while the command-line
-     method might be convenient, it can cost you flexibility later.
-    </para>
+    <sect2 id="config-setting-sql-command-interaction">
+     <title>Parameter Interaction via SQL</title>
+      <para>
+        <productname>PostgreSQL</productname> provides three SQL commands
+        to establish configuration defaults
+        that override those configured globally.
+        The evaluation of these defaults occurs at the beginning of a
+        new session, upon the user issuing <xref linkend="SQL-DISCARD">,
+        or if the server forces the session to reload it configuration after a
+        <systemitem>SIGHUP</systemitem>
+      </para>
+      <itemizedlist>
+      <listitem>
+      <para>
+        The <xref linkend="SQL-ALTERSYSTEM"> command provides
+        an SQL-accessible means
+        to change the global defaults. Since the server must
+        be running to execute SQL
+        the timing of when the actual value takes effect depends
+        on the variable being
+        changed - but in no case is the current session affected
+        nor will any change take
+        effect before the next configuration
+        reload (<systemitem>SIGHUP</>) by the server.
+      </para>
+      </listitem>
+      <listitem>
+      <para>
+        The <xref linkend="sql-alterdatabase"> command allows the database
+        administrator to override global settings on a per-database basis.
+      </para>
+      </listitem>
+      <listitem>
+      <para>
+        The <xref linkend="sql-alterrole"> command allows the database administrator
+        to override both global and per-database settings with user-specific values.
+      </para>
+      </listitem>
+      </itemizedlist>
 
-    <para>
-     Occasionally it is useful to give a command line option to
-     one particular session only. The environment variable
-     <envar>PGOPTIONS</envar> can be used for this purpose on the
-     client side:
+      <para>
+        Once a client connects to the database PostgreSQL provides two
+        additional SQL commands
+        to interact with session-local system configuration.
+        Both of these commands have equivalent
+        system administration functions.
+      </para>
+
+      <itemizedlist>
+      <listitem>
+      <para>
+      The <xref linkend="SQL-SHOW">
+      command allows inspection of the current value of all parameters.
+      The corresponding function
+      is <function>current_setting(setting_name text)</function>.
+      </para>
+      </listitem>
+      <listitem>
+      <para>
+      The <xref linkend="SQL-SET">
+      command allows modification of the current value some parameters.
+      The corresponding function is
+      <function>set_config(setting_name, new_value, is_local)</function>.
+      </para>
+      </listitem>
+      </itemizedlist>
+
+      <para>
+        Both <emphasis>SELECT</> and <emphasis>UPDATE</> can be issued against the
+        virtual table <structname>pg_settings</> to view and
+        affect the session-local configuration.
+        Its definition can be found in <xref linkend="view-pg-settings">.
+      </para>
+
+      <itemizedlist>
+      <listitem>
+      <para>
+        <xref linkend="SQL-SELECT">-ing against this relation
+        is the equivalent of issuing
+        SHOW but provides considerably more detail as well as
+        allowing for joining against other relations and specifying filter criteria.
+      </para>
+      </listitem>
+      <listitem>
+      <para>
+        <xref linkend="SQL-UPDATE">-ing against this relation,
+        specifically the <structname>setting</> column
+        is the equivalent of issuing SET though all values must be single-quoted.
+      </para>
+      <para>
+        Note that the eqivalent of
 <programlisting>
-env PGOPTIONS='-c geqo=off' psql
+SET configuration_parameter TO DEFAULT;
+</>
+        would be:
+<programlisting>
+UPDATE pg_settings SET setting = reset_val WHERE name = 'configuration_parameter';
 </programlisting>
-     (This works for any <application>libpq</>-based client application, not
-     just <application>psql</application>.) Note that this won't work for
-     parameters that are fixed when the server is started or that must be
-     specified in <filename>postgresql.conf</filename>.
-    </para>
+      </para>
+      </listitem>
+      </itemizedlist>
 
-    <para>
-     Furthermore, it is possible to assign a set of parameter settings to
-     a user or a database.  Whenever a session is started, the default
-     settings for the user and database involved are loaded.  The
-     commands <xref linkend="sql-alterrole">
-     and <xref linkend="sql-alterdatabase">,
-     respectively, are used to configure these settings.  Per-database
-     settings override anything received from the
-     <command>postgres</command> command-line or the configuration
-     file, and in turn are overridden by per-user settings; both are
-     overridden by per-session settings.
-    </para>
+    </sect2>
 
-    <para>
-     Some parameters can be changed in individual <acronym>SQL</acronym>
-     sessions with the <xref linkend="SQL-SET">
-     command, for example:
-<screen>
-SET ENABLE_SEQSCAN TO OFF;
-</screen>
-     If <command>SET</> is allowed, it overrides all other sources of
-     values for the parameter. Some parameters cannot be changed via
-     <command>SET</command>: for example, if they control behavior that
-     cannot be changed without restarting the entire
-     <productname>PostgreSQL</productname> server.  Also, some parameters
-     require superuser permission to change via <command>SET</command> or
-     <command>ALTER</>.
-    </para>
+    <sect2>
+     <title>Parameter Interaction via Shell</title>
+      <para>
+      In addition to setting global defaults or attaching overrides
+      at the database or role scope
+      , you may choose to provide them to
+      <productname>PostgreSQL</productname> via shell facilities.
+      Both the server and <application>libpq</> client library
+      have defined ways to accept
+      parameter values via the shell.
+      </para>
+      <itemizedlist>
 
-    <para>
-     Another way to change configuration parameters persistently is by
-     use of <xref linkend="SQL-ALTERSYSTEM">
-     command, for example:
-<screen>
-ALTER SYSTEM SET checkpoint_timeout TO 600;
-</screen>
-     This command will allow users to change values persistently
-     through SQL command. The values will be effective after reload of server configuration
-     (<acronym>SIGHUP</>) or server startup. The effect of this command is similar to when
-     user manually changes values in <filename>postgresql.conf</filename>.
-    </para>
-   </sect2>
+      <listitem>
+      <para>
+      On the <emphasis>server</emphasis>, command-line options can passed to the
+      <command>postgres</command> command directly via the "-c" parameter.
+<programlisting>
+postgres -c log_connections=yes -c log_destination='syslog'
+</programlisting>
+      Settings provided this way override those resolved globally
+      (via postgresql.conf or ALTER SYSTEM)
+      but are otherwise treated as being global for the purpose of
+      database and role overriding.
+      </para>
 
-   <sect2 id="config-setting-examining">
-    <title>Examining Parameter Settings</title>
+      <para>
+      Typically, a production system will be adminstered via its
+      <filename>postgresql.conf</filename> file.
+      Use of this mechanism is suggested only for development and testing.
+      </para>
+      </listitem>
 
-    <para>
-     The <xref linkend="SQL-SHOW">
-     command allows inspection of the current values of all parameters.
-    </para>
+      <listitem>
+      <para>
+      On the <emphasis>libpq-client</emphasis>, command-line options are
+      specified using the
+      <envar>PGOPTIONS</envar> environment variable.
+      Upon connecting to a server the contents of this variable are sent
+      to the server as if they were being
+      executed via a SQL <xref linkend="SQL-SET"> at the beginning of the session.
+      </para>
 
-    <para>
-     The virtual table <structname>pg_settings</structname> also allows
-     displaying and updating session run-time parameters;  see <xref
-     linkend="view-pg-settings"> for details and a description of the
-     different variable types and when they can be changed.
-     <structname>pg_settings</structname> is equivalent to <command>SHOW</>
-     and <command>SET</>, but can be more convenient
-     to use because it can be joined with other tables, or selected from using
-     any desired selection condition. It also contains more information about
-     each parameter than is available from <command>SHOW</>.
-    </para>
+      <para>
+      However, the format for <envar>PGOPTIONS</envar> is similar to that provided when launching
+      <command>postgres</command> command.
+      Specifically, the '-c' flag specification is part of the value.
+<programlisting>
+env PGOPTIONS="-c geqo=off -c statement_timeout='5 min'" psql
+</programlisting>
+      </para>
 
-   </sect2>
+      <para>
+        Other clients and libraries may provide their own mechanisms,
+        via the shell or otherwise, that allow the user
+        to setup the session configuration without requiring the user
+        to issue SQL commands. Please see their documentation
+        for details.
+      </para>
+      </listitem>
+      </itemizedlist>
+
+    </sect2>
 
    <sect2 id="config-includes">
     <title>Configuration File Includes</title>
config_sgml_18_1_setting_parameters.pdfapplication/pdf; name=config_sgml_18_1_setting_parameters.pdfDownload
%PDF-1.4
%����
10 0 obj
<</Type /Catalog
/Pages 1 0 R
>>
endobj
11 0 obj
<</Type /Page
/Parent 1 0 R
/Resources <</ProcSets [/PDF /Text /ImageB /ImageC /ImageI]
/ExtGState <</G0 12 0 R
/G1 13 0 R
>>
/Font <</F0 14 0 R
/F1 15 0 R
/F2 16 0 R
/F3 17 0 R
/F4 18 0 R
>>
>>
/MediaBox [0 0 612 792]
/Annots [<</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [182.2349 743.1786 430.7651 756.9011]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/index.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [35.0989 729.4561 61.7816 743.1786]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/runtime-config.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [89.989 729.4561 106.761 743.1786]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/runtime-config.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [548.9313 729.4561 577.9011 743.1786]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/runtime-config-file-locations.html)
>>
>>]
/Contents 19 0 R
>>
endobj
19 0 obj
<</Filter /FlateDecode
/Length 11054
>> stream
x��}��%�m��~������qb�N��<@0�1�	���)�����*���;�-�7QEQ���}�����>�]����o��M>�����w��e���������������{�y����G��%�����^�����������>����c����!�/_���/����������G?'j����R�����H)������{�jR��`E����>��5�g+����ZXO1.�)�<a����������s�����0��*��=P���f5f�G�70U��N,
��[4BNB�f��v�29`������IZ�L����W��5g���&��	j��`
)�G^������0�l
XBm�N�����uL�����1���������N�!��S3�[��p�:M]Z��M�mHq������*�����;�s2'�sND=sn���4��?zh'���yz�QRgf��p�z� B�fV����a�����BoL
}1������Lo�������jF����1�1�$��j7����Kb[R'����K.���`)�H��J8Y�,���y�9Y��*�:��u3z[e������l�+����Z����C�<*vy����o��N���Z�a�:�jM����nl�s�P3�a�a��T%2�f�y{u����k�d���K��9���(*�W�0;Y�����Y��^U���K]�^��P�"����vf�M�n����_���������C������*�������}v�g��>Ou���?�W>�����>�F_�_��~�~������R����0��_g����������w�W;X����_��_�f��������8KQ�{=Z4����A����D��a�Y)�������N���Y��
d��0�lY����e&JX�N��o������:���0�5&���v�~�R�|�]t#L�#����$Z0��]Z�0a+M(n��f�C-k:������k6�!o0��3x��cN*m��}m��}m��S��6�Z�<�z��a��i�%uN����:XL��`���0�
�v����(G�?�&)t\���n��m:��2���!�
#���*��fE�w�zC12`i����YZ��V����0i�z��h �A��JT���'�N/1��/P,c��n�$��6&�0k��4�[�\������������j�sKc�zQ��gB�3V��y6o6����C�����)7��XZ�|Prs5��W>(�+�~�x�V��������e6���f>��a��	^-�����a�y�S0�_����v��0?��O��]�`��7c�Xb��#}�tt���wK��)�2O�:X������6�$��*l!f�W��2k�>�6�-��������5_�?��O�}�N�����]4�/?C�~W��a������-�"-WW@�6[�j�4-��

���X��u[
�rjV��[�����,���U\U���(Jo��Jo������l�#C/	k�����J�������<�1���p�i����'[�������3��:�*�>�����!m�[#�z��i�gc7-���LZN
����n��:33U�4�J���1I�T[��V��l���(1����!��8/��f��=r�U���[��m�5)�b�6��a�5����U�?z� �-s0�,���`�s���������P�`m����z6���k(l� �QG�6��a��N���>��u���Xb8�l���R�>�ZV�#m��B�n0[�f%���o�����z*d��6����������p����&��W���s��k��w�hp�L�}��;�F�>}��|#?���g��y��a�5��2�����6��d+�����&RJt�i���y��~��kB1�����`���0�������D�DZ���\K�����X��d1��CV����E�UC!W�2��f��m�
��0������a��$NF<��D+���SF���#�B�V
'�2n���!�1�����X�����5����N�����$;�����|�F��2���+�1��F9��Z{��6������d{�B3[���w�Wax��_'��AEL��T�2��
b�� Riu�[+����W��!�@��i�;_�r}"�����������v(���%���0�����e�IyI�?��[m/�|:||8K�`�G������}��w�����7�&���o�^���;+��_��lW_}�m�k���<^�x��>>�?�;������I������j�������g�����W?��:�J��R���?��S��]M}��!�[C��g� ������!%7#7SA}�P\��a*���A����Q	s�4m}\gF�2XAb� �4���d�R4V>�F\����E���?��*�wh���<���X�t
F�f���q��
��>�RX��3s$pm������\U��YX���rol����ef����������������M��e#	�������*�D��"�ft.��1��H��a�!2��P�:�x���h�H�)�,��=?��8dW&�1+����F�����q>�x56'z��9�����i|��<idc��"s��
����~$f��������������T���6�l�i�0��}�B��y/�yA{���a�EY�[���
�v�mN��+�	��?o�����>x��!=�jh�=�v���\/oQR��7*����z�2��2B�R�~����Is���r��[,������#C/x��H��Ko��i'�hM"��Y�jy'�L���y�}�]�5�L���Z����s��,�q!j1�f#���1�vb=ofZ2���'Z�� 3��2;(��jC43_!�Y$<Q�����hf�����h��B�*D#�?a���'�����[���B,��}�hf����9>����9>���{��=�P!�����������t�h.���/�����g���I���f��
�'����[��=
|��pY����}��?������_�,���q�+�
i���=��>b#�������@�r�a3�s2����W���������x��$��-r����>��h���X���Fq����:; O���W&�-������57?����	'�.I��Z5�	m����Z3��j�d.���B�=W�g���d�����6�G#�${FXB>�R7�U5��5f�CLQ�g�g3��a�l��2;y�@B���3d��A��e�=��,�,�x�u�~V��+�g�����eJ�d2S�^��0����g!�h}�\��P7��xk^<���|Kce b�
�N�XdN���h>���0Qk>�5�Tf�g~��4�{ `����H��C,dG�!�i����������g��Q	R��C��xv<n��QR��Au[��(�al���P�&B���eT���*F
���$X�`�����l�����X���m������NRnT���*�`%�Lb�����(��jt(2:�����BM%�^7�F�:����F3�����a"��O���f#��D,j�>b!�L�Br����qG,�������Y���O@�]������X-m�B>��E-�G,���X�OL}%�\d����l#���W��X���_�����7�}���~��o�t�J�|`�M��
������H?�Y=�?����c(�|D����D��������+1N���1����L
�WNU[(�V�����G4j�P�Yl������(���Hn����S�����x�����g�o1	�Rq7��&A9	��Q
���Um�WP(�WBo5R��r��3��'�����8�,��I@nd\I!��h�
'Fc!f������G#�!y1���E����g���)�IC!����}D�Xo��^�����|�Y#���%*��+P�fn��/�I}'"����Hl��i�(�A+�������E�Xd��a�5�4�5/c��~���aLb�y����"��xF����@�O�D��#�[G���!aK�PN
I
��P��
t�n��$�b<����i-
G�>5��y�a5'I^����}HVm��c��27$8�JJU�� E�T[8�������$���D�RI,��<��+��bn�������/��$���P)�p���]j#�s_�y�S(W�w	K(�?[�Aw%��`LHC�}i�:*!
��1+#�sb]i�:C���(���K
t�z�\�L�F7����x��E~��M�jl�u��x ��^u��PE�3n�����������;�#3	�b$���hP���()n��B��}�(��-��0���K6P(�V5�M�������pV�U��g��8>��1
r8)7�V���7���r�2+�i��|�XJ�����H�@�HE
��R)b��q}lJbq���@��b��T�K�6�g��s�tMB]��J�g9!QP�pW�6��G�a�}���S>[�ti $�u
�����5����5�x�:5�O�<	q�B��`�4�h~��B��cS�I�#X���s3^���a����Rx���������p���>]B
\),!D�	���V������/7���8���D�^�T��v
�4b�T���L�_�|����8���u�
��p~HV�5�>E�q�NJ��8o6���A,��X�-n���
��V5��`��V�I�3E�c�3��E�8���]LF�h���=1�p����vhU��v���At�o����J���
y��`=���au2��pv8�Fb8���s��

>�k��O3����l�h�^+�����d�>�����fZz����Ka3�uK��i(^��m�|�������M���'�j(���
U����+�k��;�q��+�'���W�M�2�kj\��#��������q:���"*�b��e$&�yW�^	c�W�����%������1}���+��^�?
�y2�\Ds�Z�UG���YK
5��{���5��p��lP�|o�����hp����fm�C1�XfRL4��nl=���F/�`%�b^uke��P���I<"��4P�+k�I�l�%[6QR>�D�CO|��|2���	�$�w�����Kx�y��~�9���Y!�������5�()L�dk�'J�'�(�$�����D���Ec������W�J���4QR��d��(y%%o�C��j��(��>$J*�_���j���=3�d��{>�������A����qc�}(~N���E[���2�������k����fj%X�^��������+^1���8�65��[����H�n��L�:�s��n�~KX;�3)������	E��Y���W��p��W%2;=��R� ��2PO���xZ4��������r,.d����������dG2�4z���.fG����^g9q�����(xF����7��n��PH]a����Z�ae4�5����Ez���32�#�Z
(�nz���f�v�������;i��1n,���������c%W.c�f6��o8?��F��
��w �P@_��n����D��HE�i��bz�+�t�j�����S�+e4��CC�O[��i��bR�,�h���Ds��uJ�g8�M[8
,��g�+������/F���z����Q8���y�:�7���KTRb���W�+r�EA��F�"Y��DO������������p���D
g�+�.��u�����JeLo3s�����j%2jF
X!}�jV
p��i���k{3s���f��vn����K���������3S�I���c����v���	��h�Y�f��r�q�Z$�[)@�����0��WeV��Za`t* ^}�@?��n��}N
���tO����*��+����}!��(��(�g�bx��jz�'2a�<���p��@!=����b��w�����7a�������~)B�]�P����p:8+�Y1�}z8������6����SBzk18��P�:
���`����������l��O4�`���H��*��c���nLo3R��5����4��F
����P�l����������h��@S&Zwz"!�%�)�`�����^�����[':)�tc)tc���0�|��z�Lc�f��0�K���x�N�==��g�[�2�y�����a��/,f����&��R���+�
�MI��3;���{S=��UK�<�����:�S7n)�V<h���-�/ ����nP~�fNz�
�o�!����	�K��t,\
���mh��.�pV�����.���Y��sV����������3���9#5t�
�z%F�z�V����r�J�[�2�����jY�8T,���Z+�����<q���}NWc������t5���0�G.��ef�ZavH��H�����L�D
r<�z~x'��5|WmN��e�0@.56���J����,LVODF�2{'�1��2�rI��pR�<��d�7/��nl8����6W���gq�������j�����<�|�������
�
:
��u
tj��z�k����ct:_7�!k(����s���O�� L��P��o#3z� L��<�V��������+|h&!'c!�@}�)3��sL�>�����52�Y!s��a!;3�����X�����X�n���~,�%�JN�b]�[��g(�����l�
�c��"#��Z)@�;��bs���'������z�CKA2��q[Y�������V:��7��hDc��v�yU��������ntc� O*1�����^:�Q��p�>Cn����G�
������n5��3
���am�w�2[��2�Z�a��?lL��3y����$u�Z!��
|p�.��4�W�b~�
�����>����Oo��|-�j��N���'��k�������	�+���{��q��E/�M
�������Q�;�y$��LD
gx�nU�W��PFR�>������s�x�j�������^�=.�+5��� �s���K=�y���3�����u�p����+7}������#�����9P�r�G�8~���s~~_������~������B,����I�������V�����sE���t��B�p�^��7]/2�������������Bl\�����:����A}�u��/I�������Pt%��N�{}C��S�L��������D!���������4=�X�2P�t���O����s�x��8��B�� |��1�-T����D��p��Y��R�J.M�2:7�~��L�H���I��
}_!��L(���

��<NCJI��g����6��?0R��Q�vT*�j�[BcV����2�����W��T��.)B���oFJXs}�K:GlY�8��3�C}���d������J�X%L���'�7V	RG�F?�d����
�-aH�������Ru=��$��2����g�?nKW�aWa57�,$��z�:��=;��\5��?,���w<�;q2�d��$t�k�0��K�M�v=8��J��v�gY���2�:�P�)�y����C����z���~

p4����#8��p^�����x]EA!95-�)������;\�fR9���;f���~:4������^�HE��������,��+d����_9�����]�|�Q��5��?0�����w"�:'��H/Y�s��W-/2c[��"�bk�T�PP��H_���:������d��m��;�y��O/��2��j�Z7P�-Q
^�1��������QL���u,�>7��xe������h��b�W����}R��m@J>���(����	H�c
���H���A���;p��}����B,��=R�T��& 5J�)�dR�0���R����bR���W�
H�����	HI��{����
|
H)�C@JAR
����O��t�����n7�L[�������O7���)�Ep�{�1��WP�/�8)5�c��gTj��J����qP�3����j5��i��������pU,%�������\2�p���A�,��S����1����xW; \����*m90\�~A�����t����DtG\��b	W�R�{���$;"��dG�R'-�R[���+�R�r������J��y�
�!�S�49���W���� �r��NnB�R��*A��2P�n�Y�I��KX\�X����G�*;
����Fc+�0V�KI�Za�j������b����JO;[���DN�O\�3��y��~F2M�*�����Ni�W���VP32��v�u��yh(������+����q�3�����mq�v��lq�Ov���{������|oq�6������]���
��������mq�v�3lq�Ov�sP��w�����6>�~/^�{�s!6.|j��>�U���YQ�9a.(��k�m�P�j�����B�P|�r��c0�esCA����4��n������(mO��I)r������5��>������L
���:����SA,���bLL��6$�w��mdw�&�Z}�X������m���D{cz��vH���������mn��I���,�8�����������)j�B���S-�^�����S-l����{\��V��t�I�o�������n<T��N���{%�#�^����-�s�L��;��J$:(���;l+�Pp���Y(��d6:��*��������34�������������R-)8m6P�v��wfL�
	��O}�����GQ�� �r���UP(�]��r[_q�������0�.}�C1�XF�3��dT&���=�w"ZWv'�����;f2�6c>�m��W�o���4d'3T��I�V
Pr�qg#|������r�|���W��mFFx2�7��RL��*
���Z&��k�d���#7�cN�M}������e��W�����p�7M��c�P�;
��w
kH3���
������
�����]��������

eM�P�7�qK1P�2ZDF��$m������V�@�-�|~x�����sM��F����Fc�
������`�(���3�cz%/����U]������<���X|��@�a�Ix%�|�����xE�z�^�uR�P4M[����k,>L��{6:��y1ha��g>cz%�:��r�K�����HA����$
]Ds�]�`����A�
k���	�WR�7�Hv��Fgi�E4V��gc~���W��u�5w��pv��E���j�4V����A��������Y�3������b=K,���������bd�s��=j�b,�H��+��b������7	�p�Q{�9=e2*VF��E�Z���L9��P�O�'����	��f�m0*�jeXU����#��WF�4s���*����q��	�R�$��f9	1�B���$��0	��3�=w�w[���dZ��>�v
��������h��n-?�|c|�����-2�����9�h(T~-d��5����oL�D�c��n@t�0�8��x����x[a=w��a�
3C�I�M�yX�ORi�y2u��y2u����<*���s5�d�|2O�Ny�^r�������;��n��u����!���B,��=�L�+����d�d��d
�d�|2O�>�&�d����1�'Su����d������O���z���]]Q�3@_:�}�K�k���7��!����
����4y�KIK���<o�)�'T7k;6��2�;4�9����R�
��EC�4FK�[*k[��(D����w�q��&�b���h��w���]�x\�nK�Z)�i�$�N�� Xu�U7X�(���1VKC�I���=�c��y*�J*�=K�ik,F������\hF������C�����Of)��#�YcG�&�����&��R/�B)���S
�F�����T*P��>��D�$�[a���A��nB�0��5���y-��x���`�JQ���7#x������h?��x�co���������&c�c�1-9(D�4����|��m����)���I�iX�}���g�p��fmK��S�� 1�X
�i��JU�XK�l���U�fd�1�|�����Va=/35}�c���d���������1���v���	E��B��j���(e�
>��X��b���������x�f�x)�gx�=)4��f��q��H_�3��������e�|I������~����ura�,y��g���1��x V��C�7(�~��n}1��[���A���@I�\a���
J���$B��M9�����GO�H�M�
���������B�D�-o�%�r���jy5������-)����O�[�W����8S���\*���'�����W7�q
J��i�0<����P���i����������
^{X���z
�q��
�D�+
�II�Um���nH:n�
	���N�F��c��-F���2��)\F���S#��F�1I��@_��h{���4V�fj�|���)VF�!��h;$xm��\]�W���F��m��vpb��?u��6���j�24���G���������h���fM;8m����W�h;u&2���>e��m�����b:�`���m���t��~�����a����W�2�k�F�|��h;u6���
�#�2��5��Nu�����d��2@���*�g������"��b��i�/����N0>}����Os��������p^�Uyz�����in��<r%��#���RM[5BQig��P(�1�fc�.#_H��X>�J����P���w����j����Ny��`e�bl��A�5�����)��3����������f�����������������e1e"����~]�^#�@��i �F��>I�C��?��H����&�������d�o(�������B�;
E[�Y���T�v��\��Y%�7��.�(���V<]��q{Hp��Y,��z��3�J�NU[�%���g���\���\�n�=^���7$q��kx��0b�bz����S�
+o��&5�9��2s���h���b^5c6���Fp�)^I`:�U7v85V~���dXu�3�jl��v�����a�5
endstream
endobj
12 0 obj
<</Type /ExtGState
/CA 1
/ca 1
/LC 0
/LJ 0
/LW 0
/ML 4
/SA true
/BM /Normal
>>
endobj
13 0 obj
<</Type /ExtGState
/CA 1
/ca 1
/LC 0
/LJ 0
/LW 1
/ML 4
/SA true
/BM /Normal
>>
endobj
14 0 obj
<</Type /Font
/Subtype /Type0
/BaseFont /Arial
/Encoding /Identity-H
/DescendantFonts [20 0 R]
/ToUnicode 21 0 R
>>
endobj
15 0 obj
<</Type /Font
/Subtype /Type0
/BaseFont /Verdana
/Encoding /Identity-H
/DescendantFonts [22 0 R]
/ToUnicode 23 0 R
>>
endobj
16 0 obj
<</Type /Font
/Subtype /Type0
/BaseFont /Verdana
/Encoding /Identity-H
/DescendantFonts [24 0 R]
/ToUnicode 25 0 R
>>
endobj
17 0 obj
<</Type /Font
/Subtype /Type0
/BaseFont /Verdana
/Encoding /Identity-H
/DescendantFonts [26 0 R]
/ToUnicode 27 0 R
>>
endobj
18 0 obj
<</Type /Font
/Subtype /Type0
/BaseFont /Courier#20New
/Encoding /Identity-H
/DescendantFonts [28 0 R]
/ToUnicode 29 0 R
>>
endobj
20 0 obj
<</Type /Font
/FontDescriptor 30 0 R
/BaseFont /Arial
/Subtype /CIDFontType2
/CIDToGIDMap /Identity
/CIDSystemInfo <</Registry (Adobe)
/Ordering (Identity)
/Supplement 0
>>
/W [0 [750 0 0 277.832] 16 [333.0078 277.832 277.832] 19 28 556.1523 29 [277.832] 40 [666.9922] 47 [556.1523] 48 57 666.9922 58 [943.8477] 68 [556.1523 0 500 556.1523 556.1523 277.832 556.1523 556.1523 222.168 0 500 222.168 833.0078] 81 84 556.1523 85 [333.0078 500 277.832 556.1523 0 0 500]]
>>
endobj
30 0 obj
<</Type /FontDescriptor
/FontFile2 31 0 R
/FontName /Arial
/Flags 4
/Ascent 905.2734
/Descent -211.9141
/StemV 87.8906
/CapHeight 500
/ItalicAngle 0
/FontBBox [-664.5508 -324.707 2000 1005.8594]
>>
endobj
31 0 obj
<</Length1 63064
/Filter /FlateDecode
/Length 26765
>> stream
x���	x��7~�z��I&�m��L��B ��$��� � YQ!�@���UBX��� (�"����+"��
$�?U=B����}���=���:U�U]U�N�s��g:����3t\���{�����<f��k�p�K�����sl�'���;d�0W|`<�5>|���5���7�t���C;F$`���$L���g��F4�k��,�#:��@N��qw�y���e�����L��Y��y�Qu1�g����O���U���;��]�Z�y���g������VU��7�uuS�]vP����<�0TZVt��v����d;��+�ly,�_ �(�!pd��u����*4�%�c�C����J�'��\2�u0�A�������0��NV��E�Ad!�!��y]��Y��`u���}8�T7������b�C,��j�+X#g�L�����MY��X^K0�Y�>��#���*��z��qMYQ�"d�O��������4'_�X�������H�!:c�P�m���C��:R����f��l?������[a�$LO�x4�CF��G�� ���n��8����`8s�����>�f;W��"�f_#����:�WCG�!!��A���a���k��5(��O�����
���[�
�X��c�Q�+j�p�����bG!���
��!MN�i(_�x������qy(�>�~=�
����B���.��x���q^{a[�������q^��Y��t�s6��_E&�=�e2`~$���$�������r����Xf��,R���3?��~�OBF�!�!�F�F�B4GtF��������0�����!@b����cX���\3���b���`����l�0���l���)&3��{����8�LUR\{�yh���� �V��u�}f�a1�s�.C9��d��/@_��q������*c���R �/��4��J:^�{�w�NY	���Ax�/A����������%�<�R�BC����^Z�.aP����^�z��qxy:^<N��D���K@J��T������(C�k�i�zBZ�:s���t�0p<���P���O�b~)�QGM%K�Q�L�vmb�������{q~�Q��Z�����GXs�������q����`�u�EO�tv�����M2W]�4 ��)��~�r#�q����9?� ~C9��2�l���>��F�2���Z)��E���YMNGU�Oku��N�mA�X������3��t��L�1=(_�V�_L��3=|��u����_��>�a����!�3^��k��F���'�x�}�M�5*��4%`K�|�vTjc����o~�'�������`�t
�u ��J�D~b�G���e0�%��������'|.��.0�(<�|f�hLN����6�n/ZA��A��6�Q�'����y������l��8X�����M
G=q�k�L8X��J�������.�B
�l7,����������8/x}�E�3^�=�p������B��q
�R�`���\8��{������`�hn����q}�A�4up�`\��x�G����G��)!G��g���������LF��P3�)(S!G0o��z���y3p����;���z�������b���zQ|*q?x������*��A9n�>�|�	i(��it!����~�7���&%��b��!|�-���;��a��2��vC M��������C��X�YZ��B	�+��,��`��CL/�b��w��`��e�#���p����(�I�����
�pm�����V������ v�4^�
x_��g��?�	XY���b_+�����������2�3���q
�l���t�G���A[�+<@�;�����C����LA�����1^���Mf}��p1���-l_�@�@F1o9b	�����`��]~UH1������� �ec'C����&�^�6c'�b'y�)� L���.�W--��z�I���O�
�W�
}U����NU�F��������i�|��� ��!"'�SH��`�ED`:
��~�	������e���WOW��[��T9���E��Al�����Ah� �����kZ|�u�e�O(������C-��}�fup�!*�GPG XY^����e�[q�����r���	���������T���O|:"�"�D�i���f����y]�we�����t����k��b������"���!���<����0�u��t�K��� ���zW� l����>p�7�����MT���~�2
��������6�_{��e�&���u��������H�@�����f }��^>���1}���_�4i]D(���30�/���u�������2��fg^H�T�C��40���������rfP��|�=�����T����=N��|VT���(G����h��2����~��o���v�����e�3�_���g�O_����������\��;"�OGa�?i-�}�=�(�����L!��0���
F[���oHc:�o�������i�����F�65��A��O�4��#Cu[���V������`�����i:`��ZB��3v2T�K���"}+?�?MW�;��t5�$����\�.{&�+Qm���`{q�
�?�����r�������@=P�oCW��@���C��2a�T�:d�!��h7+. -d��� ���Q��G0m���~�J���-����<�zp!�?�#Z ���1��f{Hl�S�V��s��o���j>�-ic����`L�.�CPo��ev���������3>�\���t�g��������������* X���(�����t�ggC����e��������j�v`���3�Q";���t���!������Wr=��s����_Aq d#Z��s����E��?������n���|����k`�Z��i�y�b�Y��y�*���r*��7`W�M���?v�]y��su���o ta�1U�
�S��-���C�����m��#
�����?�4���{���I�6��9�@�)L�}_�L�%�'�q����}	��|)�'_(��`�??�3���3��*���q>���#�3��k8����C4������������?�cg����S,�����VP�'�3�~`Y�%^o���L��h������gG��0��}������i���=�]��1��,0J�}����g�N�6?��-�A��#�t��r^��^0�����\=��
-�g������N�����N�I�X�_�����������/�%6�!B2�v���<R�����)��1���~w�����p���
��\��t��?'�����8�e�v��=��KU���/����v(�e��J��#�q�U������v���q������uM��g4�:����������o�7���r�����V�{���O�M��O���\���?��?�9�:0?�_��[u`~���@�������7������i�(}�0��c�?�������K�W6���:�`{��HD����y����i�1�@�A�3�bu+v�ms����b�/����j��7f{�m�{w"MD,��o�����O�(_k���+�C@���n��o�b�	�-�� ����X������^7�\���(@[��3�� t�:��M�j��_����}Y�!��y�0���pi(/?O*D�������F�gA��(�k$�
��v������6�s�7�����BWV��	�g'��l�V����L��-�w)��=�)���z�^�v}�/=��1�G��}=��^��A�)={[yh��?U���.����
�j���;
=�gMmW>�W �_2�W��!��"��>c�qoxo@�G���t������{t�.����
}�t��9a�|�!���������>{���
���
���s��>`	P�<.p���*q8�����<�������|��Du�&�GU��3��3��x�2�Y9~?��o�g
{�?
�T����T��>��x{Q�����:)��`�<zK]�/��[yJ{p2�LQ�_7��h�O�E{�������`k���O���������k�����G"� F���5c�/�h��_�b�/�uh�gp��Y�|���������z��=��v����[�����y�_�>�tx �~�\����!���T4�O�jR�2���>�d��z�i��W��}�����,@o~�%@��So�{9��U���A
���w���gn��7��gr7����SU������N�9?{7�_���GPnF?�>��AFK����~?�!?����:�_���0������{i��xu�r���u��s�.BM3�4����(��U�2����e0(���a0��c�/8�op��+�h����<�O��k����U�G/@��{������W�]�u���|��X�8���V���J�P����}��:���7e������2zv��\����w�Q�����2����1}��q6�;����/I�������nA���y}�
v��g�6���j����&B;����4u�%�i�lk��Xi�~�&�{�2x��
���Xlo�E�����{LT|k���W@�
�8�A�����=���Q�y���{�$���fM��b����_��=�Fj��|�!������5��'���~���~^?������F�?	n��^����=��N�/pG!uG���e{K�v������~0���4a��������c1�D��C<��
x�5���X!��~��{{	���c�	v����C!���x?��q^����M�V�����(���(�p\��3��s���Xy~-PF�QF��,�����k��Z;���%��S�1�������� �[�rL���<'�Si#��n�4���S(g!K��H������`����v�����]��������\����8����P��^������0�m����������\%��:n����{��|}P\{���jm�E�3�8���@nl=�F�Py��({���������!��M��
�������n�K
v^�$��Y>[���b����o�j����y�������I���T���q�w9n�����V��PV�����y�q��"G������GMm������{����?e��.�_.q>?��e�BQ7�1������9��Tv6��R�����^�'��-��D�9m#��t-���f�w�q������z���"�9��"~.����S�u�:�
h�!��	B�q��� Sg	��+c�������hS��LDOc�.#~`�j�~�����k�m�j�I��9$���Q��S0[��{0�������jtW���/��Y������g7hKB�M>)����}@C�n�7|���3���8o���sd>�'���y�����<7���
d��i��o�/������@���L0.����'Q(��*�~��\`��B\/w�/T�������*���;$�E�.3R�;��:�v����G ~B�0���?e�b|���`�T��N!����v�(y���Ep;g`�+`���
`�+��'����5_�����B��h_��g����`*1�����B��]+�+L����*�}��h�K�R�t@�A�,r�#��������7*���Cq�k���r���?���8w�����;�}�;���{�{������������I�x=�=�<�=Y���l����i�'=�<;<���������xo|��n�}�����T��� ''8���	)	�	'M�����dH���d{rX�3969)�nr������E�3��$�O~"yU����������%��|$���o�Y^�����;�;�;�;�������|9������&�������Z������f\���U�/��++��
Y�A�h<@_���Da�09����pT�]{H����Q�����s���O.Pz�rnt���
���s+]����t{��=���.row�w�p���}�r��'��Y���������2?�"����;�v���J�� ��\~�$r�y��s=*9�0ye��J�B�}��k^�����������s�/��F��]k���]k{���c��_���%�����q��
��;���r"��=�`��V	�[������
��7�]�S�������aj�7����=r>������~�r^;����K����J~`3gg�p��?�Xs��Gb���_�q���g��>pf����<���g=����3�O/>��4��N�����<=�4����O�N7<�t����SY�2O59��T�S)�N��
;EN�t����N~}�KV����{N�~}��o�|����9'��l}2�d�����sKY������:.�g�g�e�Rs���rK�g��?H ak�4�O��n$�/�i>��%�I������Y[MB4Q��#���s~�oq�������������*y�yX�cY����3X���o�Z��wZ
+��P��e8��Xf�-�s�������y�3�;�7�f��0����i�P�l�O�%���h���������\���������!�
��p��w�=8��^�8G��~���#���p���\	#`���p7���0���?���0	����~����L�WaL��P��#� ������D�kp�,!K�2��C��BT0���9��� +�*�����&�����@^$/������#�����B6�����-�'�d�J����URFl$�� ;I0������	%ad�M�I�O^#��=d/y��I"�6A	�"��-����XG\�m�����%|E��C�I9@�!�!�.y�&��D�D���!G��Cr�|;I-R���:p�&��by�<_^ ?*?&/���O�O�O�����%R��T^/����������Jy��Z~^~A~Q~I~Y)����k�u�zy��Q~E�$����Ry��U-������W�2y��S�%��_�_���{�7�7���}���~����|P>$�+�'�����G��b�X!HD�� ��$��"��&Y$]�@�P>&�O��������'�S���i��|V�B�R�J>'-#+�������|A��� �O���3rRw(v%Dq(�J��D(��S�Rb�X%Nq)n���+	z��������������~N�Z�F�V�������w��?�W�������
+nrm�F�D%IIV�J-�����QR�d=B�T����G���e�2K���Q�*��<e��@yTyLY�<�,R�P�T��pFY�(O+K�����AM���\Y��TV)�����S�N�i�>W^T^R^V�(k�u�ze��QyE���(��Re��U��;�(=Z��c�8���u��'��z���{�Zzmq����F���U�����^��vP;����j���M���P{����j���O����y��vu�����R�����������zz�^_�^�A?���_��zCu������P}\]�>�>�>�.V�V��K�e�3���
�`m��Er��LN�_���2�B~'�?�U�J�����T���k%�R��T�2U�J5j!iT�Vj�A4��iu�PF��pA�I}I�4�F�K�����g���Gi@2h"iH�h2��Z�6M�uh��Ho���O���?��K���Z���z4���
hmH���	m�������t
}�N��h}�>B��t�z�����w�������������zL�H=��P?V?Q?U?SO���������������zN�Z�F�V�N�A=���^PR/�����_lm�_���o��w��O�*�C�Jv)D��^�R�Z�VHaR�!E�������4A5I�5ES5M�h�fE+F�E�%�5��kv�#�K	R��9�P-L�"�H��Ei�Z���i.��y�x-AK��Z���ji����������d-M���k��Z��Pk�5��hM�fZ��\�J��Z�v��Rk����Z�����h��_�_��Z�bSm��b�mV���I��u��j���Z���K�����j���Z��f���Z�6@�]��kwh��m�v�6D+��j��������6R����hwkc�q�x�m�6Q�W�D�G�ct!}�.�O�'�St��}�.�K�2�}�>G���}��w��O���������F_��������U��(<,Lf
�����1�	�)a���
^�
����&a��M�!�&�!�-�K��q�S�s��k�{��pQ���L�����7z��N���I�Rs}����I��_���
����^���uZN+�!�@*�H$��TWj!eI-%�n#eK��R'���K�'
�����0i�t�t�4I�%M��JE�#�!���H��|�Qi��Hz��%�2�Y!UZ.��^��H�i��]�)���Ho�^�]�����&�>�NJg������y������tM2p'��G,���r�p^���p_�A�>AN��rm��\W�'��r#���Z���F�T9Gn'��;��Nrg���U�&w�{�=�^ro���W�'��s�<y^�]��o	�G��`5�#��By�<B�f�V�j�Y�k��eM�z���u�u�������YV�5����������kh-�Z�[GZG��mN[���&g�Y��R3,�a�P�`-�E�(��Y,�b��,A�`��bqXB-a�+rN�"�.�!�)^����G������1�#��~B�X�D��~G��?�����Ji��6i�`;�E��-�����xf�p'�wT=���m��<��
���B��[�c��:�o�[���4�]�{���[G��+�]��o=b=j����?��p����"�
#��$�8YD� �A��k�8����yl��[�-��l��j�j�Rlm�l�m]lul����4[=[���������������-������������C�(�+�G��;���.}������G���A�w�Az��K������=J?��c�4=C��/���+z�~M���������[�#���G�P��H��P���R�'�� �@�����E����Oz[�����tXzW�i�t/����8i�PK�-�upm<(M��u1W�l\�p�LR���F��zB�P_h d
�F(�����+(�?J��P��(��&J�K��?J-�~@��R���-�������RpE���*����
p�$��H�5�B��o�R����D�U��~�������4����g��$+�f����`{�#4,<"��r{�����j��I��V/�~����7i�,�y���Z���n�6;�]�;u���[�={����_������cP�`�sH��aw
1r��1w�7��	��t��L~p�CS�=���3g��3�x���>���EO<�����,]�>�|��U�����^^�v�za��W6�l.��u��W�v��������}������<��{��?r>���G�O|�~v�������������������)��������������������������������������������m�>�}�Z����yf���5�hP?�^Z��:)�ky���=nW\lLt�32"<,�b�Yu��*�$
�@���v�oA��M��!��c��*%�jws�O/����K�V�g��U�$vOd����$zJg'z�����_����)���]y|!��0�<9����R��)i7ixqNA6�n�ni��v�%�.l���1V�8n3�lIx�F�4�LA�a�J��sJ��YJ�����%=z��d������-!m�$�Y�mJ�Syh��)���(��6���\wo��2;�Y�j-L,<0�D���I�v�K"'�s�H��msgW�#�8GxX��x��de���W�Y������4�]Aq;lz>2�so�Fg����������������S0�S�%�I^<��&��z=_��a���Oq�����V1�y��c7�Aq��D�<Q7_I���b2vsP�?b�U����c�8�u�U�Y�z����3��=�M�15c��fP<���<��J
qFF�hm���Y>�_"%�=���.� ���7��������E��T�^�KRSK��a"���9�>����iu'����qvd�@��k�����g<��wb���g�����1��KO�+���������JQ�Je��D����|5�D�V��G��o^B"��������;����).���s��R��f��������B��h����P�,���1��\�����O�{A3���������K�'7���Y�<��t���7u�Z,`�E/��g@q���k(jf��%���{��@_\��������!/���,k�
���Y��Mc��<�c��V�*���v��v������;=����M�f�������;��������N�����fs"��s����= w��3�On)�u�������rwxP��\�rY&KxX:d)��X��>�"~U�<=���Sy��Q3����'�y>�����i�'����%������x�����8��BJij�{Z���n_������:M�`��<�`8�	�!� ���v�!��{G2���1�q�]���R������u�p�B$\D��#�#!C�@���������������E
�����8�2rtO6��yrK�<�v�i���f��f����zmLZ��I�E�Zl{[G8���8	����V
�P������	�-I��{��O���^���B2Z[�A/����`^���d�h��~	�{�J_���L�g�1l�X���8������:�����NC0����+{
�C;=��Y���S��I�I��g��~�];V�43c����#�d$2�qDd��K�LA���L�D��%4J���gi�w�j�'���u}�� �����������(@�C�;��P�X�X�(A��ahGx�!�{�P�C�@��h)6SF��z��[G�+z"����;��G�s�.}���H]H���.7���:`;R;�t�.�7�$9�F��y��0�
�1�B�{hBi���7��T����=�/�j|#�>o[@��o�+<+���]��,�>�c,����1x'?�1xGO���#1���Ac��{�aPF���T����(�iL�C.��\��t��>��?E��gJ��A�-����q�$E�IQ/R��
%ESI���(��A�RIQ,)r�")�E�!+��o�M�L��"EI�R�%E��(�yHS_�/����N��f��m-Q��x�h<�|<��=A<��B��p����-uZ��z�3���@���o�4�g"N�[(Fo�M��c�
1�qa d,������#Z!!�!."d���
c�]��;���tw��o�'?�4�g����;���`��2\�)DD�{�QC��m���?~���Zc����O+�3�]F��zw�[����%���L��d��`O7�X��FK�#�(�����K�u�;I����g�9���e����r�)I��8�����(v��`z��9��e�N/�#��{�!^�a����=�����b��G��C�wL��/���;����{��7����*�w�Y�1���]��jF�`gSby��.~��M��p_]e���tW�(J]%^q+qJ��:T��ZU����*�T5��8�Ke���d����Fy�NY����+��:AI���v���t.�;:��)��;��X�[���Gg���MI���e����ij������	y4sK���}r����f��}� $d��Fk�\����I���-C2�e�MP�So�9o���,��;�d]\^I�qy�K�`��r)'{�����BK�KN/�/�����\F��r�!?c9���y9
3+�e�[f�K��X.�,�i���%k/'Vn������II�L�&�2"=U�J�2���LD�eE�2%-y��X,���EH4��"�$��w�H�����"syK�Q&�,c;(c;�eR����mRS��yC�MWAb�PDA��I��%Ewz<����wc��;�gt�������%C�=�[��������a`N���}C�K[�Z�$�����G��7�5���F=��f=�����7���M���������������-�2�#w�
m����t�-(�1�ym"��Zr�m�����5������g�]Jk���]�5�.�����sj����d����C�@��{'������	��Y�e7��	����rp��=a"@��:�;��Bov��`nRI�@����oof����,S*��,��i����{��-[Et��s��0!O(qu�CQ��oav�/����<��J&���vj*�i`c`���������U&XR����Z���xC�vB"Zz�D/�����G��#���uF�����X��{�Mr	�����
��xf�Y�9s�~$��D[!V�a[��l�
;!�8��a��a��`�h
=`,, ]�{a ��CS�w�8Rd�����E�!�c���0?����O�S��5���p�,���[)����=�L��q�q{�aD�
��^��w
�'�"���<o���T,��pX;Ic���K���a��6���.�R���2x
>#V����q	��.t��l���^�����V�1	���xe,��(I$o���U��|�d�#��{�2����N���I�~�����/�3n����&��;�GS�X�\�Tl�~
a�{	��4��vj�G�����59����3��g�9x��p�2�<BN��h[:�>C����*�q�w�X��w� �HOr;N����q��&G�w�5�CG���pa����?��	�ti�4O��"�b_���,����0��)X�#�G�S���/�Dt��t�/y?S���?k���%_���$�F�Q��T�1��~�=�a>I��G�Y���O!RHR��B��'��^��g���-
�s��XZ!���KoJ�d������?_^��tT��X\QZ����q�z��+{??#q���m�c����&uHK�93��$�����dy������1��}��X��z�1mC���:��Ggl�JO���"�B�.����Pa����X(�>����c��-&�^1Ul/������J�w��e�<F�%��?�W�R���T������Gj{B�����t����B��
�
�(�����<
��%��!s�Cd+M���[��\����t�B[]Ig�F������a�:$Y�[pA��c{�|�l%S�E�
������B}1Ux>�E\'E�$��B�����R.���+�x�l�9�k�|��nd��>$��!�wC)j*|�a�.�:�O�B�.x�)�-���"E�[�#���t�XLC�V��Z�]|�D)f�|a�|�~
�����
��#���xI�E��
xf�x�ax@�?$w�@�A�x��!C�G:
��@�i�qu�D=�Z��9N��.(}QC,���"J�\��Q��[�>����j���^0�x	�w���"HC}0���w\_�c����x��V�S\�]�v����H���S��.�y~����	?��L��vA��1��V�|�8Jwm��K�NtX��(�:{�aE7��h'����������X`�1��nxQ�`���s\B>��>Ci/c�0�b��1���u/����N��bb�%@X�<Z��h��)��=`�V�#�>B
��f�v����7#���GM�q<�����x������D�+�]�h2�Y��uZ`���/m��@NP
jP���5�A
jP���5�A
jP���5�A
jP���5�A
jP���5�A
jP���5�A
jP���@	�b��~�Y��I����=���>���q/��������c�d]_�8:N�]IWJI"�hi��-p�v�����]/4��I~h����4��m������p���s�,���A0��&W�����%�T�����
o��q�����?�`|K3�cX�����a���8���e>-*�6	T�$����Y���~G��Zl\�2��e�|����j�5[�����}_��$?55�4$d����(���a��&�k|+�H{�q4�g�Z�m�[u�M_���������;cX��bf)L_�E�lm���,��P��p3e?���D�D)�e�EjXykp0��"�(�
c!`e9a�bhey����z��������_�t�$�;}��f���|Q�.�[�Y��V���[���V�e�-3.�R���q"D�q��M�g�9����A���N��%�ST��>��F��������U��O��O�-/Q�:?�'���������2Nb����m����9A��'6�����c%8�bY	m�;��KH�����	Pf��y���oR����K�B��yL�p���0d���<�g�����D��n���P��I���G����	������MB���E�;���I���<�����v���k�N��O����a��
������6.y�<W���Kd8���YL����]C���g�l��sZ���s<|��F��i�1�T7�DY��&+%�,��E ������[�v�2�_�X.^A\�p�}QLx��%�*�h$�{�{I�#�$*E�;I�	��o���a"�ky�j�IB2?!?���CdYi��I��������<�e�D���S���?4{���UA.��s(�2T>�
[+,�s��B���������*��1�		���|���1W��b�
�\��+6���l��2��g���H��B����L��0C:��V,�����l��pP��O��v��tG(��
cy���xks����>���k��H�k�7�k�Bj!��������X��5��'h��0h�cr�\�n���_�\����_
�1�X{��e�_7.!���T��vY��,�����Vc�Q�����e/�/l�BB��s�.o!�j	,TK`�Z�B���2!�
/[�d}<`'�|��m�� :�N�"�I��M���]>*�+�L���U���By���f�K
B��	���f�O�������xoS��&M7�U'+���%����D�zS�����k�>���dG�����7Wtm��:k�����6��g�C�|����u�_�3�[���o���T�u���J��/�,�������>6y�X lm�Z1AR-h-�]KJ�+Vt��J)�D��E������Q���X������t�Gf�Vv4P8����;2��R3����l��,���?dR��+b�}dXa����f������h�H��tD�`���)���]�����4����������}�R�n��)v��Q��y�z������H	UE����/W�^^���H/��jy�9�H���cd'i��|�O������E~�H������/��W���sl]\�sa1e5J*2>�����Ls�P�VF��Da!$&x�mu?5j���5���'��9b~���^����a��,������\:���)���������m�*-�l=�k������-D���K;Qo���;�j\�m`���\p�
�y�����W�25S��PQ�����
������*%�<�xh�G�u�u�u���U�"t�=)
\�`�E������f;$�a� 
6�V����.P�#\���(b8d���W%���s7����*x�'�^X�HS�M�%$6R��+�)[�-�P;�P����F�mgu���22�����3�q�-�,�7vn6����d�d�I���]/UD}������#��G>�a����)�qqY�y(X�f������V�7���4-���<�7�����6&
C�'�!�..�A�{b���������;�X�
U�S����`�a����u_h(�Nu�4�����
%��d�P�:x(8
_Df!��������7+�'�f-�r���Kb�,���X3az�(�bmA'{�\��X��0��V.��}�e��Iqp#������-}9�-�	��Uu����R}}'5�=��
=lCu�e���AA��p�����"9�T�_�^� �X�4�cv�~���J�I�iwRg@�8z�Ic&O��kV������f�r�z�Gic���!?���l�^��"�q�C��>�/?�TU���	��P�@x������k�KG?�u����k�}�~Z�j���%����)'E��y�V/+��*����b���+x��,�(]Q����A*�@���MH�?�	pK
Dj�(�R����	��0��\s0O�bnI�7l�;��� "���.���l���H	�0��E ��j����ig2�-Z$��D���?:l; [�����l���"��/<;*�3���3J(T
���B�D��������G!��Ml-Sg�l0h�X,�_P��Z�DO<��z��F��1����I��0���,JHVr�d%O�s������^z�����uQ�5�����vq���*�UF2}	�"E���)F��_$�bd��zYF���V�4L;VU�.�F�3d�_�XQf��j)�s�[�o/d�Y2�t ����5VE�k[�u;�������������wt����������v��=/�~p�:�w���]���������?,�0�t&S��7��y���uye��l������,��O	��<���Q9K��,��P��X�������8�V��p�����������y!����/����j���W�t���%��*
��j�\:�
�%�vG#����c���%�&j��X�pZ�5��x���+\���csu+�����U�������9��������&�0�&uC����9������B3��~�\�~���/R�fH;7V��Pa��=Z�#��#����PQpI�zD���e_����	>�E���r%0�?#�[tV�����M��o�����x���Ci��_72=��W����.�\CCF�����a��ou�+8("�lB@E����vn���Y��B�������x��_����&�/�i�C��!���m�2����Y���EUy`�����yVW��L�;����.F��C0�����4eQ����~�8X1�<�{y~�3*�J;�C���UQ^�A ��
�nc��@����cP���j�7�������Hs����x�C[@g[=�
D���m7��C��!�q�0Q�k52c�
�.q9���v�zy�������%��b�M
D�o R+I�l7���@���bs���j��I4I���$�QbvrN�O��������QA���:�'�&?d�7iB�,�X�k+^`��4=y�mq��p����u�x�5o
��D;��^�jK{ fn�I����j%�d)BbRee" ��4�+B��4�M>�O��!���A��d����8W����@e����y�yb��}L�C	�i|G�`9v�!=HG-J�/(�5���w��E�
��"1������� �7�u�������J<_��� �W����# �|�j��dG�
��j*��9nQ�lw�GX]���%��c�e���H��L��<�S�������?��E����!�������{�T�����EF��|3�6(�;�U��w��w��-*F�q��_�|��Y����kKVe6#��M�u���.%��^�������#�6}~��7
G��p��G��{���j��6��#&~�VV�2	���N��F��RS�@�L5��op�Q�� T^����),&��~����\��xH��j�kl��f}�������������7$��ufB��LGgGh������Cr���%��`���v��Hjd�������H}���J��Q�������p����LU�n[�?6w�����\�(ITVT7rV�f
���:�?�u��Y[$pz�:B�
W5H�z�t�%Uu�;��������u�X��=��0�=��YUg�b��.I��<MSU�}r:!!�FGFF�[k�'x��a8�����!�DE��y���2��<�Y^U���34��Ev��!��c_H���Z/u�C�f�s���x�����A��@�j@:���\�s@n���;�+���af2f���lw�����9A�����|����=�����������M�"q 	mH��������g���YH�vO�M�����wU�[K��8(�������'	���+~�u�V�����������=��o'�;1Vl	��)]�����:Q��:)�:u2mM���4���N�-��H��:��m�R�E<��^�4�S��<�)j]��Q�j��:R����k�����@����\k6f�swsG���u�4�3�v;�����SG�N�����i�35�i� "���Ef��9��M�)��A��ZdI+�6]���6w�|�U�
[W�xv����A2;a���7�AA�z��|6g]v�Sa��
TvrjY2b=e�}0�
�Y8��������NQ1&sw!9>�)Q�����0&2
��s��5�|� ��)��z��������H*����j��)��[���+e�M��
��@�2��
�E���[����te&�d7|���#�QNd�3!�k�t�p��"JO�#��[n%S9���G;��(��R��+��� [Y�e�	�A��2?��4�t�4����v���Q���c�������f��\*�AR��'��u��f4p���R�-0�OfZ�������Q-s���r#��d%}+�1�BBV����v��������"
s�L{ ��y���s���k�	�c#��7v`���W{���m�~f��������-w��}{`��������3�1���dO;	Ix�$F3�KE���D�
$�<v*���R{����\Zm{���[k��r��q���s�U�=Z/��p9VLr��f&�����Y3��|�|k}��[k���W�E���g��0i��K�\=��S����O�����Wok�h�C�[Mq�/��
k���q��V���V�[��K���d�e���O��hRpQoHr�%���@��mq��x��io_n��u��n�J���,
,��Z"?�~�?�����������u���Aw�g�����Y��;����'������w��JaM�L!0�6��d/9C�����\c�
�6U������+�:q�&0�s�^-�;p�*R�&0�mx+�Gi��QZ���c d������8<�^���P�C(���MIM'y�6I��$�:�����RU���1W�������~Q�Z�W���.gm<�W?Yk>�����;P�3"��������7���N��g��o�����cw�����;;��D�;A�����xz_b}�o~���&��s�,�f��������
'x��Z�,��.X���[�,	.M����-��J��x+�N�����O#���;�M�S��xc�1>/�����&q��I���3�����>y����������/��FC,�T�`��%��^�$�x�0Z���9�b���
�A)
AZ�N���3|-��>!e���0o�������-�A�}Q�Op}^���^`����$�\H~z6QP������~I:!��F%�c��K��~P�I���B�A!�Qfb���r�q�R���1��}���j��g�,A#�����Q3SY����X�d� �s������zk����[~0���������gwl�w������{�������������_�=���|�iBL:~lDR$�n����M����#g\�k��K��K"���������P�o�U%g���g$�W��$[��������E�bT#a�z"�E��po�'���^��4!�T$r�{
V	Z:�W�U[��Z��X���:����"�?bx���|l�y<J.-�=���x�I����90o)�
��]
���TC�k(Z�d����6W����'����H"�6�O��a*�+�9��1�����c�M���6�5Z���o�����Fj��/( RFN���U~��G#�����^�����{�>�-vO_���O���'��������;�M��:���3��`�����:���T�M�M�����?�<�q�=e������i5���<��w�I����`@�E��	��h�0`$"8���:�������TM���~E2U�����7fx��%A�P�@)��L*-�3C	Z
xgH|��"�� �I���~E��r�*$ZQq1w��t�y����U�kT�s�������j>Q�D'�g4�� >QMP�T���A+�z�����j�j�AP��4���]�������U���Kf�8�?�@���97��^�����/���w��b��l���r����r9���t�F���(���*]%���z���
�9���-�u�/���N*�,�����KwW����L��T9�5�`��e�&tHmmZ*�W�*�����OK}��z�;t�,��k:���x;"'	�P�m��H&Ueva���C5����gv��s�St�h�d�j#��*K��*QGPG��q�1@�x���6�V-[�8��	6[�0�:����Ia
�)���BaJ���PO����R�����0��PW��F�8��Z��I���	����XE�@�����i�?h�U4.���i9k%[�65ZE6}�s�G,e�3�t�����BI GU�y�U=s`�}Q/�x���������q ���_������������[�����+���6��(�<�����Ol�9_����^�������E�s�>�	�%��b���P����y<��j#N�����I�t)n���mv��s���e�fj��L�dF�6��rn��X"zad"����2Z�I����XE]����&�N�=>�z�{���a!���Adi�L��046��PK�3�=CR-��#���R@�h�F
��z�p]��(����UXp3�.���
,33������^)��	�q2
A ��A*�N�j3_�+�!���o��;�6������}��ql������h�vn��;�>�m��2�pc.��
�S#�)�a�n),+���N����-q"3}�[�n����+=l���HTBJVg�V���[j.X�g+�k�s��Sa������AyH>-��%"��^y���:uF�����wI�xY�����;)���R�A�=�^��0$��!���AN�#A�c�����h(�P��q�
����y�d1}�X]AmDz6c�SC���=zT����K!���)X��������?kfH� V�M`����9Uv�:�rq�����p\y�
o,��2�1��l<�)X�v�I���(�e��?�/����b{�O�	c';#
�C��sGZ����l��S��D��H��)����M����
�i��M��xL>.���{�������_�!��8�w���$�Nv ;�iIJ��B��Ea�����p��E�y��C@���	G�u������3��It��p��
ib���4�P.M)�+��B����*T
:��%(!��
C<��&��=��]�k���Y��}�fA����H=�B��G��K����F����'��������W�TE�
�"�P���z�����X����z�{����CV�X@@�_�$�.��es8�wk����#7����������@��0�-l�
����(���%���y���\��Y�������JL��S�t����w������G6�s�o���d�n���&��
O������j�v2��su�8�����6P�yd�t��<R[g��T����Y��ffRu�{��B�9��S�^�v��C`vE�x������������!r~��e���e���cwL�2=T����Z��v��R?d�0^���p4z��j`��G���c�b	�&��{�,���d7M�gy��%m"aq��3D�
	�������zl�k�Ml�Q�	�M�l"`�!�M�m�g3�!���E�Oc��S��
g��"����u.����hB�y�(?)�����X�i��4�������H�����>��(B��"|F��Fq"�D@��g�os��l�G1���6���F��4�$�:H`	��|�A���M	PV�.%��U�s�C�j���E���P���IBZ�RT�*/�+*qW�|�/����D��I�������G
�����>����s�,s�|<�y��,������P����z�ur%A�/A����:�1�_3�P��y����g��W�����@��GRw�������������~�������������r�u{�����o�����
����?`+)L/��i�k��=p�����L��h�Q�d�Lt4*���7�3���a�������z���r��*��E�����}i��/�B5�*�p'��.����_L�p�/�_m��ue�\���*�����r�����������P�&�2F�	���x���J3���V�p�}9��`i�!��{� �]�M���t��]`@��1/���e;,�d��H
/j%>�������|`L(Q0,�>G*v�d���}�4�h����*�<����������{�7�x���_6k�C��q�Cb��gCX"0�E�f�bx�/)1�\�:�rq�s���t�j
��p]t�6�?/<;���J^�5���K��vm�C�=���d����_�X�����3����V"IA�1E�%&h��A�'0�N��Hc?H�uZh>�vFa���GhD2�4$�oq�v�D��I��K����N3m-6L�h/����.��x�����&H��0K��$XKF�(&� �f}�����*P��!K�$h}���j/��-���'#/u,�W;V��+�*��d�*.�
�g���+o���z���w�{��=�sZ����������4�z^�������l��F:�&~�O`������<Mh��\J��.��U�]������
���
�+���WEV%:������������;�w���?<�F��EB�V��9�
�J�}��y#������$��p��"��-1[ b )��X�I�j���(�AG��
������D��/�H�����J��&)4P��X0�	��`x��!�L��� =O�m�)O1�A��P�0��"NA�`��b�M1u�>d`b����4%5�B-�^�`����^�Pq���l{�;��R���]�Zw�����w���$��������C#���x���>1r���/���x���^{�_A\7���a|�H�n6�\\W����mq�M�����������@m�)V`Vbi`i�-��h���������#������]�����ss�+�����
� �%�R��']�W&���������uY��4�J5�P[������[>r\E�M�T�T�����8n��� ���5����Y��h�_�x�f��Q� �&!�&����������,h-W�Q��_e-��>+6�����;*�����O{~w�+}?.����Oo|b��s^��N�����<��L��o���z�����=���_}�]c���Z$�
3���a@e�Sv���O��I]��"��vRg���p�gz�t�udj,B�����R��8�����(t���_N���/d�Be
��z�����.���a������L`Zbv���\��t�m�\{�U����}}�5��tnSKv�M6����Clf����1�{�����,�>�$Jr��M��&�l��&
l
���e*6�7����f
���;�~^���G����)�*q$��8N��Jt�s��JY�Z�^��tv��J�����9Zr�T���	S�W*+\�%�eE��������P�#�O��<�~�t���WJ�evQhE6Ql����+��K��k�"�k���W:K�nE��%!�5)/ {a�S���������c'b�K�zb�cB*��{�I@��#f�� 4��A9����� v$�������R:iU^W��I�Y����6���1��\�8���@��n���J���j���1���pW1����*��1�V"�~�,"S���A�$�O��r��/�?�-�uJ�Yw���g�)�qAAiymK�P5�T�����_1���	��nN>g~�BiI��t�B�XE����U�Rn_%�����L�?YRO�P����1-d+$�Rc��������r9��9��W��}X\�8T$��,/��K��j�N�/r+K|�_h�X��D.��1�m�����[� �E�s���e��"V	���������
�@�;v� 9P���'�}.VZR:����:�+���/Tc.�����;�n�K��cgL/���m/��t�wl��''v�������N��^�\�����(���~���[�R���6�d��iE���R\3c���{n�_QJ�G?����M��cf���q�MH6!��b^T(�����c�P�G�<	kr��0_�w�Z!)��q��b�'n:*9g��[�^i��[sj�J�!��$J����L��3���r3R�4ef�c���B�jy�f0 �:I�N=��
��9,����Y�h��P,���F�g�}�����|H ����Z����ol\�U�s��g�	T�����]��	����F������W�Uc����rz�$i�P����Z�}�k+���i �b��������4l;���4��F ��ct��4����X�Y�Wd,"��4���� \���S6�CY��B0?�z�{���q�� ���t�����!�/�u��|Fd���c���7)�e��~��������kV��a�iT�_M��1��4�G�@���t8Y�)����%���;������2J?k|l������|���n{b��:��u/^��UGt��
������|�j��������t�qT%�����G�����Dm,[`��)[�^!��D��EN�(DQQ���+���
)����ja�`cQ�~��������C�!qHzM�U#\�r���h�k}�����YX!�p��}�>�<�z�{���]�z_�N�o�����������r�O�z�$�)�J	�!�����T�RQa�E^r�2E�!�la�l�=TU=������x���*�*�qr\��4��������z�n>�v��,�<'2��ve�������.T�VQ��P����q��]������W���
������e��xl�y8=���]8�_�\����[�*�m����W�]N��5�l'y��Fg���F��]0���zwa��g?p|��^��� TO�e#Yo��
�/m��Jk"P�;
0v���t��c�=1)Y�>��#����s�a�#����e��kk.�����a�H��;��_��P�O'n��D�#�9�%����7-Z�i� Qr��E���EKd5����d
�b�2�6]d��)
Rm��vZ4%����$���y2Yx����6��h�"k��%R%\�h'�
�[�Lf;*-�Cor��'S��A<������/H�x������'H;�AZ�����94isM��C�r��sh����9�&m��I�sh������c������^��|�5�T�t��~i:����!|�
H�s�����H'��:��r��r�bl��r��Ez"��3g�����9����<�B�j6#U��N��u$���I�f?d��33�Q���me�;��$ve�bu���[�� �x�a�k��m�Y���`�v���d�Q����}5����h�@��3���uR��\����2��������=d
{���g�go���g+��wjgO����g�������j�ec�,l����f��3/y
�c���m{��v��-�+��x�~R��-���x����mY�vk^t6�d:��
v� ;�w�����x�u��������m������x���dqL����'c���z��
��^��V�3�����{l��8�9m{���l�m��9�p�0#_��1�mc�
�����^9pGRe�������������x��Oo�}���K[~��
���:��rxob���gK&<�|�vvf�yJ�����q\� wz���V&=��zq��h7�I��h��Z�-���^=��J_�.���������g�d{{��=���]]�������%��Lvc�}��lGk��������}W����
�3�~v�^7�j�^6��-����f`����l������������z�g�_���e���m����V_�fMG[F��/�Y���/�h[����_�/j�v�u��K[���X�����+z�
�[����>������{@���;�{�����v�7��N��+�o��{3�
�v}�v[F�b}v�#�xF��f{��t6�M��@rz`������v6w�=����-zY�=�a5{vN����;6o���f��-a~.w��=�*|����@fLf�����������}�$��������zXWl;8�;8��g6�4�6�2]��gh��=�[Q����&]�L�>Bml_[���\1�2����C���K�������������cG�}d�=	�5�z7�"�U�<a�p5���{R7�k���i-���ts�@;����Vg}�_t$L�
endstream
endobj
21 0 obj
<</Filter /FlateDecode
/Length 304
>> stream
x�]��j�0E��
-�E��W0�$n��>��p�q*�e!;�}��$�.$8������XW�5�>���xg��0W����b,�1�FM7�[��cQ7�8A_�n`E�y����g����O,z�����:6���s?����`e�5ta�k���x��u�C�L�:h�:N�#Kr�
�k��^�BY�BT��d`����T�N}����[��\HVH�)�"���)!]F�$'J��D�4E�%Rv@���������	)�M��]E���H����y���4i	`Y�#]u�>���D�,�������r~�A��
endstream
endobj
22 0 obj
<</Type /Font
/FontDescriptor 32 0 R
/BaseFont /Verdana
/Subtype /CIDFontType2
/CIDToGIDMap /Identity
/CIDSystemInfo <</Registry (Adobe)
/Ordering (Identity)
/Supplement 0
>>
/W [0 [1000 0 0 341.7969] 17 [361.3281] 18 37 710.9375 38 [723.6328 830.0781 0 650.3906 0 0 545.8984 0 0 637.207 0 846.6797 0 732.9102 850.0977 0 710.4492 0 0 763.6719] 68 [667.9688 699.2188 588.3789 699.2188 664.0625 422.3633 699.2188 712.4023 341.7969 0 0 341.7969 1058.1055 712.4023 686.5234 0 0 497.0703 593.2617 455.5664 712.4023 649.9023]]
>>
endobj
32 0 obj
<</Type /FontDescriptor
/FontFile2 33 0 R
/FontName /Verdana
/Flags 4
/Ascent 1005.3711
/Descent -209.9609
/StemV 186.0352
/CapHeight 500
/ItalicAngle 0
/FontBBox [-549.8047 -303.2227 1707.0313 1071.7773]
>>
endobj
33 0 obj
<</Length1 20988
/Filter /FlateDecode
/Length 12186
>> stream
x��|y\T�����eV��a���60����"����,���,�)��Yj��zm1�n5h���m�Z��Z�������2�{�33�K�{��_���sx���w}��y� PB7��dk���^��)��1�|^����?�3@!v��8�f�M���� ��[jk>~�l@�����/<��z/�gx��X_���:�}/ D�k���9?��1�yQC�v�7�	�u#l��..�> p=�T��va��!�*�9��[c[0n4���[�v^�P��n�R�t2����������{�������d���p]8N�tLB��}��>q�A{���sH�x�+L`xR��"2����,x�;�$?���	p��+X����rx�^��?d���}�ay���%Xo��D�������yv"�"4�g��t�#��~����`�$�$Ap�fI���!
�I���A8���%�|����>�I�`�	��0���UJ���a����I��KB!H.�|Z�_��_��H��X���������|L���~�Q(����el
�E� �G�a��'�"�_�	�i=�\����c���OA���;�T��	|��������+'w`���K���My��D�i��4N���F���O�_���j�t
;��z��;nG�a5��G�,v�����H�����!�����Gm�8.����R~+�I.���'��q�������%9��(��A�����������r��"$���WI��y�De#��Y�u�����lG��K�V�%nZ�P�S��=���P�����7Q?�# ���qL:�O��B����zp�D�����Q?�v�j(��0��Sy;���J �C8�������k��R�m����(�7�6Ky8�t��Q��Hd��$���g�v8��B�SO���"�s`n�-�f<%�i�{���'��@��'U@�H�����D�C��KD^i��t��R{(�O�n�?R�p���A�}��G�,�:�����b�v��t7T��S�y���a9
������`{v+��'ej��M�#����y:���c�Fv��w`�.���x�6����j�K���)�ep��4��?�F���Kp���r�i4��q
c�.9���\������z�<�.iL�����gpn7����oR��k����u90��G1~\��6����l���&�� �q~'y����q~����N�B����PV�<{������*�����������R��>�/�F*J����a�7�?Pz�oP�q��;�{��(s��]���}y�X �3���^W���.,�X����niL�.�[�j�u�~i1��:�p��G���/����Y�{��/AAye��2���I��8:�����`��9��@��,���8��;<��{�K
�;TS�I��J�x8&�����I��u����[�Z�6C?y�"�k �����6�����g�2z�1^���q�9����~�%�R�JG����;���e<��!����ua���?��oG�O�*]�{�A���BeL�E��Xq6��.�Kc��}�UE��u�E��
0~��/.�x�o=����	p���X�u�w���C\1~0�3�XNC��
L������_������]�W��r�tOp��W������$�Q���25Q���������K�����.�9�7�s,]q�=�'��>�Y6��q�r�;i��$�/����c��f���~�Mm[��4(������u��_������s]��^.��������O�Sy�^��?������)q������~��p~�?�,w�w~�D�g�1'�}���c�6����;4���G�Qq
s�7�L6s4����?\|��A-jO)�i�!.R_��C���A�������)0+`������������ s?�3��������2P]��x�G��x`A���1�0��==1s�D*�+�^*o�F�����
��cdTtL�)���hIJNIMK������2tX�ux~�������G��;n����&�N�zCYy����3��k`fm]}�����s���k��omk�X��p��%K�-���q����V�^��w���7�r��M�o����m�w��]��������g�������?|�a{����<����G�����:�4<���'^x���_y��k����|��w�}>����?9�)���#�/C7H`4,']����I�����r��%���,+g�l*;�]�����;��87���q����f�vnw7w?w�{��������n�����w���S��!B���4!G"F�B�KxT8,�h�
����mH4��`"$�������s������(�b���4Q~QAQwF=�r��Q_E�����O�o�E������D��#���<L�d������,\�K�����#�77�[�-E^n��r;�������������7/�����W�|�@��"��n^��N�e�ux���E���y��������x��O�o�E������������vg/��5�s,tw��(���]f��>����N
����������������?�?�B��/�/�<����M�������Y����������~��������Og��������z����N���~z��*,�N/?�L|�wz�G�?�����}T�I�{���M�yz=���l/^�b�B\Q�������Gi\ul��v6�z��
e��$,G�EW��� ������7h������]
[�+X`�����@/2�6������B�c�vc��~�p�%q��P�Bz`=�/�k�
�
'�kh�S�:��,�6���&���
|ka64���0�@��Bt@;,�N�,�����2X
�0o�����7��p����0�%��"\"Ed$E��DB�DN2���1d,G�9Q%�"�D�
~'��dRJ����RF�I�F��J2�T�jR�;$�d������z�@T���"�DM4DK|�38C|�i"��?	 9di&s�<�Bl$���`'�$��'�DGBI	'm��
�����H� H'YH��d	YJ�$�D�h���x�Mn$+�qCb����Y����w�S�>���4���]d7���hq'���C��{�>r1���~��'�'��0��I9@�G���1r�&	�y�<A��'�1�9N�&��D�,y�XHy�� /��K�e�
y��$�19�u�I&)�I%o������.y��O> �����r�|J>#g���r�|����2&&�13�L��X�$&�IaR�[�4&��`2�u�z�f'�����`�`w���F��mg;�l'��]���>8�d�4x�g�f8��s�������#�<�%C�Q�����+��<���d221���(cg���A��&v��]��<<{��Q��<`�)���HOKMIN�$&���L�1�Q����������h5jo��R!�I%<�2��=���/Xj����{���v6J���>Wt�]5(������������^d,A'������k'~v������{Pa�lca�=����G�0j{��7)��}JE���^�}
%�J�����
#"���1 S%��}�v&���l�u]5"�8��^n9�<�~p�0����]R`���
Mvk��	}��{����j�W���f:J�i�6�������Bu�`�pr�����Q�5Rq6V��8G]���e�
�uv,�Z�}$������-j�ko�j��gb��V}���!���F�'+����Y�]<�PW=��9���Y8[�]W/��^�A�Z�����O�z{���u5u�����R����2�A��rw���pbK��r�K�%��
(a��:��j��5XQ�i(�8�]��0���]���>zk�D�1�5��(;�1
��b@�6�?weM��F��(Zd,���-2
E���5���3�����WR�k+��U'���������E�����F����P4�,Og��{^'x^M

K)��R��bw�R��2����RV�C9�Q�qWI
	
7u��Q}��x
���@�s�a+��{��2��3u�j1�>�i�qO�����i^m�US�,z�G�	�-l���������n�-(c1	va�������>�hF<���Jx�h���|�q��rA��@�7�X2��L(��W��Sjh����^�+Q��P��g$k&�Y���eG0����`SP�_��meG�b-3PK��%�02�Iw�
�-�rb��^{��X'���=���4b^	`�����H��_i��>k��^����MZ�I�W^Ax�%����#R�a��~���;6��?m������}[�~��(�����6������)X�y�Y�q�A�]h�&�&C}T�r��<A����F�%�]0�������]���#|?�{�r.���sl�;�w��b�j���y��6��m�����/,g��AF�B�Gy�+Q
��.A�z�V�)�[�9�1�'��I���Vo{�h��c��M������v�����W#��)�����������4-������q?g��h�����_p�]A��F���\�+.C��U�e�b5j�>�?N/���Aqz�5�}}���	�8�w�I���0zu���*<���8��S�
�^xF��GU<�z���O�^u���J�%���f5��xL�$mA���/Oa���.W�W���l�LY2��Tb�)���|�/�rr�=�\rX��)��|���>B6�c��Y��)�sk��J1�WL+;L�i�M�v��a�}��7���rs���dr��VnO���a�`��������W���^7)���n5�o�#���F�8��G���s ����~]`����YN�aB�
��=��WFZ:���O<�����s��o.��o.r�1������U�E�b�=s�&b����+���'���`6�9>��[K�ps�0��9P��9p���)�^H�������
����y<}x�1�g��O-eP�Y�$F��8{(�������"��O_?�?`�~�bF2�/����X�"	R����Y����m�I$<�g�Y��_d|�&0��4�"i����s��9�92������6���F�1��f�'�����=xLo^#�)x���'!��%7K������2Y��+y��^�y�,�~�{���r������J�zJ�QMQ����������������
=�IAB��J���������''�Gr�Ak�F��`�?���K,��5���G��Z�oO�H�"<�T����$��G/�kq���;��jH�����p;�xI���D}���w/�3�����,k����9��9����T��5������9�d"���Nr'F����q������E�<a�E�������!�Y����4���OkPEi�Ti���������
`�j�v_)��TCu�
l�\(=��5���lmw	X��hPx��2���
���N��+E��Z
J��:5��3� c�
4��4�����,ON�$fI��D�����Q��*p�~�7���[V��E
+�L�a$�_�iV����av�V������4���%%�a��w�cu�������3������j����R����>)fe�&"�����Q�%���
-V��H���'
�#��u�5Y�be{�n�����z�OJ�����IU*�vypto�x}���'�M����X6����R�j�	�>o�TZ�G�O6>QJ��"�f�0]\#"c���$U�%�!&���v���dR]���	w89g���/�:��}r��js�X���$'��N�2na\||�1fv���gEM"!o~�p���S[���l�M�
�+��$#���
�#��TkX�P���
M���x
J
C�M��g,}V�-�<d9/�UxQ�
Z�cMR"Q�,���"U��T�,mP-�v��^T�*��UI$R�������x��Y����R0
���[� D��X$�DY*J'��&��E���DVk>�����Jb�&�%m*>��W�-���������^2������2!�_�
��6����f��/��d	�T6W�������kG��&�5��4��!wDG����%
��vI��NoUj3�~k��}7�
�\�xT���e@�h�Q����Dr�j]�DF���>��&O�a�����M{�1o�9�h���6�b��x��_���\�t���G�#���R�1*,Zo-H+	4����(��0�%.�Q�j�����/
�h���SX��)5hh�������JQ������H.�.��-�U�k��kusR�z���/N	�0���xk���������]��t��x�v�Jsw��a�4$��u����X��h��g�G��h�z�r"G%��PT�()mv6bf�y��;*i��������)��R��c�L���'���$�8C]zZFf:-"
��^@\q����2p��#����u<��p���c�W��b1E���d�����Q�QY��.ZS��e3,7��,��#����F��=���p����}~�����Hr_db�T�h����|��1 cj��Q���������%�~�����7:�@��`(T[�#�D1��(�,6Uh*|���B*t3r���3��e���Ks|������;%�M�I�_�\�����6L�&��'���D��wQN�T�QT�m.���������X�Gf�gZW=s����������T����;Fu�����y�k�X����q��;n�������4�c���UY	��Xv��c�:;}�$�[��KX]��n2�>���P\2�������B�� 4�*�
�z)M4J�B���=)V��� ���aW�=�|�:E��i�YXP����L2��f4�3��
������b�������������l�������[���|}�C����tVX&9���p�R�[�������!�l�1G3�i>��h�5FG�D�V&�P��f�������M�V������ev}
���q��`�)>tJFfw��M�r�����hmNr�.6�!��;lfM
�8�G�Y���Z_�����|A�O��>�j���LK\dX~�cgp��?���d(F2o���X��}�������"�$`��
�$U/S�b�zX��[��l`���p�o��1�;�F0��p�0��H��8�q�@�/L�cDV����6�=w������C�f2_��8T�����5���;�O���_�l��&R�}�T�!���oLb�L5�2��l��R�2�rfJ�r��ax�Q���?��Ss�#�y1�c�7h�7�M�dfI�M����s|����W!����)!�!�6KX����w*�0}��������$�w#�1����"f)�)b������Me��������"c�&2���<|����`��1,�3�j�a�)�E���i��B�df��_#�������9$2Q6G���������2&�a@�����X�P*��$�0Ra8V��FI������H'�a�VL�����R�}]��A��3���ys��j��+n���4���Hi.�&-aFH�1����Lic�z�����%���J)a�����D��e����J���j""w�����8��W=�f�����).k��!���Hk�dM���c�7I���M
V�]���������`��&X�%T�\p��Z�\�K�Y\��k^i�����������Y�����*G���!�U��fv��������U8t�������y�|�xG~P�PN��,�
��!
�XG�L�Q���%	K�;��z����Fb
2�7),!�8k��7�&S��5�u�7�gJ�xvY�����^(]����nGs?��<�G��Jw�08+�}]Q9U�	�1����A�'�5eeKI�iT��)yCSRV��jW��d��Z���/7'�wp�#��,�@v�HZFY��h����!Y��������l���SC��?T~������������������v��K��?�����pv[���d������������E�(�tA$GWHF�&����;|v&{I��6����yb0Dm�i��&e�R�f�W0/�.BDc��T�4BE-��W�����C��~�m�y���\��b���7/��������9���6-Fu�1���b�m��1>��4�����q������N����=yB����%$j3�7�*�$U��dU,�t�
�M���q~x
��j����HO��g�
=u�D�mv�?�F�����B���q!���"��V%`<�aY��Z�
M&kP�S�c;�B���,����)|>?���m<O��u	R�L��/Y��x�F�acH,S@�0�d#��<���m��J*I�jM�q���r�J�	��1���LI#�O��o9�Mu~��V��5	�#�A||pP1_Z�������sBD��l	*��^o�����11�}f�j_@@��$�XO��u�>�����?��.��U�� �:=�l�Z����Qp�s���4���UGG���T�?>#�+(�:"�%.ljtz��=����#���v[����lBn�#��q��V����n������
�xb����:�%�#��D�6=�r?���w~���ad�,kd!)�A������%~[�5r�mcd��pT/	T�����<a�!����5@�ZJ77z�q��Z�;~����fl���H�������������1E���g��g�������?�q������a��z+��_��v�s+ �X�Il�<78Yge�1�1�1�#t%�i�9���w�����;�|��Z����Y��BC��$
�ho���E�H1�������!@����H6�b"��j	Y)y"��S��JKe���f������fs%?����;Z��x��@~.�9����T��l�1����gJS�s����o���F���HH�r$������]gKF���:N�$��u�}z�x��Xj��y��5����V���a�8���} �vo
	��h��x<B�R��Yp_�y�'Jz���1��^�7�A�s�;�U�5��o�G�x�������-���aC���ycF�!���O��L6���L���o��-QH'��%n��)m�ur$cV�2C�X~���{�������k���W�U��@�����G~

�
����F6YV+k��2��+@.�����pJz�O��i��:@=�d���}%��	q�.�(;�H���b�����c�BL���9v��m��d�����,�O��I	&�S�KS��6w��1'[!	��f�Fb����(e���j�B���02�L����R��Z
�-��:[L���������0b���bLOE+�j`W�����.!���v�����)���g�\��K����^S��T�p�s��?D�6��5.`\������������d��:��S���A��
�hu�� <r�.	��u�1�h��+uO�ax�YI

P<tY�'��_r���p��Z��&�j���8��[;�����n�A:|w�9'���t��-CU���M_�a�����w�?tXf�	1GEuE���P��^.)g�N��$�*��������~��|�0B�������#�l���T�
J
�b4���@���F��)�A��9��9x��?������[�\��v�X����I&a�j�2^:�1���	o�E3�=�����T��~�+�e1�Un����hC&���69���l�YJ���&�����u�����C�n�q�0����D�>H'���������k��]��X�a������A���
xL'������[��O�V{�����F�������+�qIq�lq��D?�0{�-��lW|���s���/=��P#w��U��S��^K���?�eR��3{��U��]�0�
�t�I��i0]:��.-�T[=�����QL��V��h���������wZG�D����	�1M	F0X}���5���F�p�����������'��HO��)��v<���'I!� �d���h������Q���P��\�$cz��H�9��h^4�vU�)"4.f����M1������Y�Y������Ew�@L��-j�R-��Y����G~��s4����~�+e7^�X�}!�!b��T<����I>��L����j�6��� P�;�b�P��jR,�A#-d�r���(��
���i���\-ZzH,��0�[2&���4RJ�/=�I������!�����;+��9��B�b,5�����}�����������[�.���������
X�bn��E�O[/�6�F��0qv�����Y�o�,J�����	'�n������nXC�z'+���&�,��(��_{����K
s��,L����W�k��Aw���B���hk�����ZiS2J�J�O�P�t���7�u1S��J����H)����)�4������~��r%�t�e�|�Je�������n��v��aF�=rD�4�p�Z��5Fu������2����u�t���\-��0�I!	��������%]�+e�y�Z�� b6�r1����~��|��a���D�������m{�%2[��;�0��F����)����������0��HI8z�?R"�fk����7���a����j1�_��~����%'#r5#�A�jf1t��d�x��c���~��OL�OP�>�����F�$��p�p�wq��.����"v��6�����F���d�q,0��s�#�8�x�� ����������W�1����8FE���cq-o&��s��8�HL�� ��+��'��Y��9`nq)�����8A�".�z/�Y7�A������:�'7N��B7���S�83�J7�s���8��:7.A�	7.��[n\�\�W1��z7�
��~WP���8�.�q<[��t�G������M��������[����@��q���GF�8�#�q_*CY�G�rE���#���������-s�D�6�x���Q7N���,�?��i�_E\Gu*v��S�Q��D�����N]������q���GR��k�8�r�m$����q���?���l��e���
��kP�A�����-������$alSmkK[KC�P��jki�ioj��(on&5�jlo&����.��K�Z�ZW3�&���n`T��R����
���I�B�@'��S����&���5u�skZ�-
B{c� rf��t�hum�\[�������5���S(�im�o-o���,:��q(N��2�]�il��s���������I�������������]h�'t66�6�e�����:��"�5���q��yu8�	;�b��y���g��y����&�P?w&ty�y����H�^�4o��Z����TK�>hu>0W�H@l��^?����	W�k����R3xQ���Ei}�����R��h�u�u��j�i���f�U5���r,������
$��-��l-�Zkl��,t�6��z���l���e+�!6A���:�
[������l����U[$��~M���]�>�>�>�����$c��=���)XO�MP�#Z�
����V��OJ}b� [��&���$�����&��cI�] ���8��kg���O_OK�{=�q�$<L
x��v&�U3%�t�
M"�.yS���}.��0��l��k�/�Y�{J������NWh�O��5���<���
�"-��xA\u���\���kyn���6q�\lm������X��0��F\c[��Dz�p�Zq�&Q���Z������w����!J�N����:���-.(�u����3������^����7�X,�2aI51s`��Q5����{]��N�i����j�������Z�Z�rI�r���]\��7t~�uX�)r�"Z��9u���
���zmq?]\�p�g�6�)��.�����l-��P�(9���N�N%z�$�-���"��Y"�6�a�z�h���������1X6b�����k�_�c��r�5==�EM����1�`��Q��v��6w�m�����qm<v��B��n�n�+['�%��V���E���^��R���+Z9=7���
�.��rC�.����S�������
IF��>�[JD������tp�1f5]�f.���f
endstream
endobj
23 0 obj
<</Filter /FlateDecode
/Length 328
>> stream
x�]�Mn�0��>���"c ����J,�����Cj��8n_�CR�l}�y3����}j�r4������Aiia��V=�Ei�2*�p+�U��!�w��`l�0���4������<��$y�����j:����A;����_��7o�4��m+��r��k�2N��Ef�FLf������4e5�R~,kZ�;���<����l��,�1��);D�K������D���Q��HG�*�Y;�n>��Y��>n�`1���[c�l�=�.x�U
�N��L����9:/2����u��^�]��a�����~<�M����(
�gc&T�����"
endstream
endobj
24 0 obj
<</Type /Font
/FontDescriptor 34 0 R
/BaseFont /Verdana
/Subtype /CIDFontType2
/CIDToGIDMap /Identity
/CIDSystemInfo <</Registry (Adobe)
/Ordering (Identity)
/Supplement 0
>>
/W [0 [1000 0 0 351.5625 0 458.9844 0 0 0 726.5625 268.5547 454.1016 454.1016 0 0 363.7695 454.1016 363.7695] 18 28 635.7422 29 30 454.1016 36 [683.5938 685.5469 698.2422 770.5078 632.3242 574.707 775.3906 751.4648 420.8984 0 0 556.6406 842.7734 748.0469 787.1094 603.0273 787.1094 695.3125 683.5938 616.2109 731.9336 683.5938 988.7695 0 615.2344] 66 [635.7422 0 600.5859 623.0469 520.9961 623.0469 595.7031 351.5625 623.0469 632.8125 274.4141 344.2383 591.7969 274.4141 972.6563 632.8125 606.9336 623.0469 623.0469 426.7578 520.9961 394.043 632.8125 591.7969 818.3594 591.7969 591.7969 525.3906]]
>>
endobj
34 0 obj
<</Type /FontDescriptor
/FontFile2 35 0 R
/FontName /Verdana
/Flags 4
/Ascent 1005.3711
/Descent -209.9609
/StemV 103.5156
/CapHeight 500
/ItalicAngle 0
/FontBBox [-559.5703 -303.2227 1446.7773 1050.7813]
>>
endobj
35 0 obj
<</Length1 33220
/Filter /FlateDecode
/Length 18837
>> stream
x��}y\G�pU�1=�0�03��%� �(J�� �PQGAA�� �m��C�I��]s����x�H�n�eL����eLb�\&n�5���{��{���������~;Cu=]]�s�SOU#��h=�PNk[c�������!���~I���GZ�����%��Z�">
!���[�������O��6-�X���
����,�655�[��B�S�m��+�|B����\���c�R�#4��������I�\�?=E�w��#	B�eP������^w��lho�}L�����v����(^B����e4~��W^�uC�v�v�	n�� ��$ch2B�,x���������)p]�t�R$@I
�i�+�\aI-B�R����c�!�:���B�I��?o�v�����EOB����w��h;��q/wo���~���.���y L�����n���2�^<��:B�)^�M|�
��V!��v�vq �Vt�����C��9��>�%\�^�; ��������W�����
m��~�v�:u����ZT���D�/���0�����W_�}*�j�{P7���!^���^�(,�P7�E;�s}���s?�;��i:�	Z��A>n+��KC#��.�;��q	��|�q�����g��q���cV��J���t�@������In���	��[�@�u^:����R�������i�
����[��EW3)�tG������*4�&(�XHF����l�[���2����a5�]����	
��2�{�� lz|
�?�l��������������}cq�[��[���N�� �}'�_�V�z���N����!����*;�a(w�8m��>�v���������p9�i���L
�/?�P�	�c!D�|gC��0
�����X2�2~���I��������}gc�+���	p���4��4��U�u�n	�����p��[�g���4�=;'�)-f�7-�}`2���T�`���x�
���0f�Y�oZ�d���#�	5�����'�-f�����*.������x�*��A_�h�`D��3� N���x�>�K�������~�v
���1�>��Ou�����h�]I�� n
�����@�5<_s*8��8��2�3�s!��x=�S�@���4�W�^����g��������z>il<S�����_d!�����5�M�
��3����py�;��[L�����f*���+�O�#hK'�\&�F���RgX1������s���hs�<sk�_��o�s:�h�������@_�<\��K����������A��qp+��1�<��c���<�E������m���~�#nG]�h�M�y �i�����>���m�/�V�>���^��%:]���x��xH�V�d�u�^A^��$b(���(�S|�r������*;1��m�F���l���.imnG���@Yl��u���n�%������<������x�����J��}�2�����c�d����������A�m���sC/��,H�B�"���/h4�5*?/��E���8�����!�98:L'�.����{M_c�i�p��� ��G���%��#v�2fY�v!���A�g�zU�sJ�S ��pO�<���bi�t��q�W���#�
]g�/����U����
���7!�4���������+��6_�1��(���(�!V��ZoX�����\����M��Z=(__�Ou��&h;��6�9xC~��v	��i�������>�/��s��q�����������������2wA��.#���:���Vx�\�
���G(��0��=��^?�t��`3�������A��_6�d�Hw��+P�u���'H��}r%rh1K�>i6������1��B��v4L�i�6�C��j5�O�~�G�.�A���B)��B�-F���B Q����������dL
���]1�������l������+&6���������RR��3ffe
����/(,R<tX�����Q�������W5~�%�'M�2�f���3g���[W���oh\���y����,mi]����|��U���]w����w��W]�a��k6_{��[n�z��������n��Vt�w�u�=��w�x���y�{��'vv���g��������3���g>�^x��C/~������o���~������C����|����/������#�C��N|����]����Z�2y�|�a��������r�s����{�7x3_���W������M��}����Y�#�[!Qh�[J��N�3����'����&{S�9�|�Po�w���������}���{�'��}.�������L��dk�=���NNJ�L�H�OnLA)$��bKq������h��)o�O]��$��A����J����������n6���N|���X�X�����r�ln�~��_c����o������������X��X�N�K��^�7���z���txW�X���Xf�c�����c�Kn�7�G"�����7�����c��
Fs���@��m���`�BV����U}#���T�s7��(l�+�����>�A{��g��C'{�������zK{�Z���k��?[��8z5�^u�__L;���W�x��S}�r��!G3���|����6-9����G�E��:�,;2��#����-=r�'w~���?i�$������g_?;��������"FV)�������Y(eS���s�����c.���@\������7�8��+����/������BWs��tm@[����0���f��h;:����G7�M�O�O�N����B������h������F�2z��^CA�����m�&z=�����=�z5�o����5�K���K���-C��
�����@+�7hZ�V���2�=��A��r���������rL0�y,�_Q���
\�zQ�X�%����*<O���j��l�&<OB��/x2����<
O�3p-��g��8�������3�}<�yx>n��x6c^����p������/�N��C��x1^�����cp,���pv�e�
�����p;�@�Bg���+��^���x9^�W�Ux5^���u�����/�T�����W��qN�x :���W����#�1�A����N|���|/��?���L�0~?��Y�q���.���{�^�$�����q6��O�g��'�g�,>�����A��"��>�_���+�U��~�A��7�[x0��o�<�~������_�G�c�	������Q�������H:� I&�"�d	�2���<n+�'���k�u�6r;������������o���n9��[���V�?�:f7����hzoG{�^�"y]��C���%<���C�a��'�y�<�����	��[��.���&{�^�jn����nA'������$�A�@Hv�L-*�
��JM�8��Qf���,o�R�/��7m��7y7�������&�(/���j����\���u���1+�b7��]��.�RN��.��:�e>��D�{����u���]r}���+���������LS���~��.�����3MSg�>�P�����4��C��E�����2(u�tH�����w0��qyWTf�X�1v��xnsyl���n����u���O}�Z[[{����m�<����ns������^��������u�.4qF������s]m���	�!�q��<�4���|t�����<��Z?i�r�E��w#9�Y�E�����g
}�^{.^�g�=��z:�_5i�o��:��j��nA�v���I�d�i����������M0]7�v�x6����R	M����KoPt�&��-#��=�Y���#�&ii��O�4��F �W�d�F?02z���^C�}G`�N�;('���-�����wO���{���ww�~k������O�&�kr��1���2l���F�k��������;��ISb��S\���N~\�d~Le?�2���PYP������K��#J}���D~T�d~$BiA.��������S���$�����'���}?���RQ������6?�?���zk�^w�b��=���{��g��=��{�5������������$���B�vW|�|S@;b�7\��^e����z�u��*��
�-��^����^�u��MV�
�����i#�2����{c�����O���%�%��a4�6���w��,�����)|������3N��H�}����Q���.���c�xw	�v��N�
��;�|�V�#GZ-=H���<���<��U=�@���S��������<x_�=U�y��������I�v��y���yj����/��(6�ml����v`�"w��&�}����u��������7�����"�d&��8B0"P�}��^�������O�K��Y��0y���_���8�k}b�~	���v�-�]R�D�������y�OW�%�7�w���vzc�7���.+����L��(o�rtA%��'�]}�4�.h����}��kf��$:����`
����A}��"�*���~�<`��[�,�7��������F����������|�S8�f��E]����R�;�	���F/@�&�}n�Y���|-h#�����8QM{�8���o���
���FY����r��v��x<�
�����6�6H��o���p4
��Z
se7���3R������)�e`g]��������������;��5k�J�
��!���j��	oS��A�[��X�
}�3s9E�%7��d�v�'��P�`���U�O�K�`����\o������e�a�%�~�K��>.��O��h�4�0N6�2�d�G��,�X��m7E����?}I������N�u9]�����w�������?M�-�<�oI����}��o�/��R,)w�6�M�C���G�O��������������_D��J�D���!�S"�
��?{�]���|Q)p����z�L�@��qos��`�Se'EN��zYO�,D*|�.p"/8D�%y���9���/�g^�����'2�����/�h�$2�XT���[��8k�)���X�=bx�{lbu���������
i�uE������zA�E����(r�f�&��H9Y�
��������c��}#�G�L�j��R��������R�+������g�=��{$���!����oH���#�r�RSy�710�w��$��T�0����Lmc;}"/�!�Se/.�����(��Df�opN0��8?��,:����h,�:����b�C�a�(�����*@^��>��RS��e3fwT_9���P�g�'a��w������5��n?��V�D���T���� ����?�M�����-L0���%kk�:��{~�:x`���m{f�'��N.	m=�e�?^��ap`��b[����9%;7d�d
��
�H���9H}?�6����S6�a��Q�H�P�����J<j��P������X���q�t.]��\�P�����Zp���"��N�]��i
�%���`�Rc5��p���\�S'23�%�b)4��Te��9)b��a�q�b8���^|q������TU�(�uB��5|g���k��g;���z���c���\NwI���	��Er����N���S���T�X,sr�X�DnbtW�� �\k�
���y�r���<�y���S{i�) [i��d�ZI
�c;����6��P���IZjjZA��NN@�'�6lD�����'�@HI����5C��k���G���k;��4����o!����P����q&)@��U@������8k�9qB��������?����o{'�.#7Pl�Bszr���<�J0�
��Z���
�H��@�_����n%�d���l/\~`���#�������od�B�/��'P)������?��	�����'�
~���\�����a�a��I���Xf��W��%���z�����}g���j��k21��>�	8��������N)�f4K�;S�)�/���<-o�O�}"��i)�Fi'�h9��@�LJ��`���P���}^;jA~*��]�q`Es��_CgB�~9����K�_�����s�����[�0g�6�������xm����I��z��K&\rI�������K&_��.�a������83��]�6:��#f��Pu=r1��1�h�,\��Q�("�[�&��l2�5/)�Z�V��L6����F��E��Q\&R�pI�'���9��,������x0�T����{sA=PfQ��g�|�L��E�����qa����)�
��p����MNG���g����|#�^�+O������\�3j@�0a���R�X�T��*�������J�\.��Y�iQs����&�MZ�5��Q��-I��#���������f/�;�\:�B�j�fK���l�2�(���0���8.��8,y��q�DQG�K>y�Z.�"�EQGkr�h.���dk�'��o��N����0g/fH�9��rp\p�Fue2�aTs�Qg�%�����ck~w��-�\3��F��-_c>s`Zs����s��g��}����+�Q���~�����F��l~i*H���X������)=�bv%�*1���+fW��O�L���]	��f�y�9�\fn5��X:t���juzs%�\G���q�Tj�6�+��x�Oi�C��l���7��"�rL6R�b��g�R~����K�bl=b)h�T��"a�!���E�-1�1.���<����U���@fIo.���F[/0#=O����yQy�(����`oy{�g������BA|�q������[�Tm��p%�"�_��.sqJ������Q�G�����}����-n.�21::f\"g%���Y�_c<?e<%����zPx?��|A�
���)�����bO1	0����T{�����(SU�v��,��7���J�^��k��6������HA���p�,1N?UH�P��*�C��to��`Mpvu��aHX6��>��z��so?�����A��k�M dd��KKo|�U����S���C8w��N��Yk|�_���?}}pM���>���������]t.�������n����W�_�B���@�
\Ef����a/��@(n���*y����!���%<��'���9z���-Nl<�:���#���9��{��_����;���������Q������)�U`��5 �R��B����������2���������Yq3�gz�&�����;xj���:i�e�}^\��.m�e�}m�{�HN} @R]��%����
`&�����l&�Z�E��h0�3���iE[��R�����������<-���igc(/����I.c�\�x���;����������
Ftp��rRm�5Y$#+�+d
���i��-�����R�����`-��"��'�1]@M���t�\\�w1K�qf�f�����=�s���W�j���?����\��\�=�&�\;j�x������%O��m'���>t��u����:��_(K�H����T4g��F����>�e�+5y�C�6v����L��J>��R)�O#�8M�t([���%���yT�[��V�@��������8��������`�mS�/����@!S,���r��e���w�/���)Q7M�R��'<����@�5s�5�MFS����v!m���b�FH�2����=���������*�3l:5@G�a����:��$�Zv@
z�g� ���v��
2U���)X�Z
�Ao9�F��d5a�78���b4
�D����!���B�P(Lj�Fa�����A�VARc��KJa�l��	J<x��A%�2m����������X�����u�^!IXZ�5t����YE>�M�\d.���<<L�&�)�TC�9;�D{TV~��lT��t�������8#��\���,kXQ[�����������R������K��Z�L��83�@����7{Uu�3�8���C����YV`-�HR�,&�Y��V�������b��$��::�����U
��Y�����8���������n�Q���vX +R	'��
S	�!�`�iCY��0�2[QY���
�S�N}�������{�M�x�MO��Hl��F���@Zg���k��^������<R4j��vlj��9���-y^#|���xshrtR���[g.J���~? ��� �}_c��@t��T�f��p�x����,t�v��ffXf�f��q��V�����v���v2p`j�hp�eY�,l��d�JaA-�U%��4���I�w&E�)�"����`��I@"�y(�R��z�"s�y3mQ�0���b�
��
�2�nq����|����Y���y��c�'���L�
g�X�����U?�<�'7�/Z���9����q��c���7��r�n�xJD���b{���4�y�v��
���L�f+3'20�������e��i;�H*���S�vx���G+��a��a�����I������cpP����D�D>�e�i,�����]���zh�����ys���6?��
��������7���hn��v�,�M�����c�^��w������H��D��!���"
g(��$X6���f,*&���@��X��3`
X��2P��/6] �%���<.��r�S
�=���=��4ow���z?TG�	����wC��@��+��p���$�U�����=�)2�`�1��6$3�����G5����p����Ne�2�]�4�Y����������qO	�����<
����{A����0���%Q���,�J<�2��(6�[:,	�����~g����Hb>gX����d���F2������h:�b�3���RqZ��cH�YMs�*c�{y�5UN%n�C7S"n��������Nk�3%�7����1�,��y�����y�(�aP/��[l�JU,��GQ4��:>��5��7>:�`a+�/���[����;[��>�9X�{�"��LY:dJ]]=�����+������=�1�y���$��	���aT6�s7W Qnr0�H6�H�`�\��DC'��R�����0;jS�����xj����
C!I��\���������@�d�D3'ql�1ds��,�wX����B�[V��1���-h`�*����RK@�%�%@�e�����m\��a�z�";D>�M���O*(�^���L�����x
c���=��m{=�+r.K�%�8���2Su�53�=������%=�������w*���8sg��F����-�9�m�~��^ �_x�f���o�u��]V�Xt�>������aB:���*<S#���f�N�����,H���"uS���|�|#�}�s�cOCMx��p�!C�BC��Z�:C'i�:�V��F?�0��5���`��	"<s%��e������<�|AA�e�T>:�����>P������L�:P����\e�����2�� 7�<���I�u����L�p�cxUC3������)�F�l�s=����T���<4gfFj%�E�R�Wu����/�I���
<��MOuU
��p�z��u�}��C�y+B�������q�����5����n�J�!t��s�a�H�VF!�������&��u�t�"�b"z�S���)���N������y���5"��$X�������z��F!��9������h���+�/�I�JQO��pL�SRR��\*	�?�.:Z�0���4�yF0^#&�2��x�`��n�#�M>rb=��^����H�%J��`P]J)T�5���#�q��[�?���_e� ���}_'Q��3r2�x@���b�8S�}:�.L��5�0���=%���>�X:&=�
�j'��w_���!=V�l��� ��:��7�UUv\�`_j��<����k
�[�)\S�I�IL��V&/V6�Z��keNr���p,��i@������6�w3��ew*V��}�
)sn^.�f������=w��f����=���76���W�^,9�uBjC�������4�������o�����z����^
	}��"�X����`��2�1<��Q�8�2��h���#�MGt:}l���KV��G�4�FQ�F����$�V�#
���|F626�\�'�	����N]�����R��1��c��9�L��5�����g����W���^��������-�S�]��y�>��X�2gn�S����#&�s��C�����	�QX��v�����M�:��&��$��S���	m<���grQ���V
g��S�`�'��|������������Zsm�l���q�;��O�gybG6���+���I���������E�����$Uc~��8�S��H/&r�x�4���k,OY�M:��y�<l�����qY��U��o3������5�)���������+
�n8&@�:���2{j���X���W.R��,�����l��"P;���|�U�b����v����<w�(�S	��\�vy�����`(+��U����J8g���8��Z��H���Yk-��������(��@n���Odf�2t��X#L����W*D��c�cP��xfz�H�iN�135of�f����2)a��1�PMR=�ts ����a;4l��]�C�	G.3;��b�Qd��E:(u��������t7
��RB�5��V�7��B�����=�VL�u�������=<�����dbo���?;����|T����''�������������r��nPg�lm�D��;)�F��.vu2c��`;y�?^rx2�����b��6$��S8p�Tn��.��K+8���S�}i���F�����ZW����1�#{����-�"�^�t�r��������HK�h��3j�3�Iw��h�A����vGi�I��ld���|n=����E��4dG�5�5��
�g����L�a/uzS�sF���������V�_�!���[�
�������@�
�\<�G��N��t�7��o���������'�w�eN�b�����v�;�,.��Xl���������V�?L~�!���G��%���Y��}������}��T��]������,����������{|��F1i3����n5�����$�����sh&��w@����Y,���w�N62)�T�n���?_��}�3-h[~�`Z8�6r����>�����]���\�u�v���#HD?�q~�?v87\?��_�2FJ0sN`�xmD����8<��3������=fk�{*����2"�����=��i+�9�����Se�&��l
�tM�N�/�jM��kb{JP�I9/����cwTy���>����z(�c,,�[!c��	o\s�[c'�=�K��i��;��|���{�>q��q��y�[��v�u�#G�U�}	����&��@7�|(�:z���Eh�j����(4W�^��8]� r��K����
<�;8�I��m���uDDYN_&R9G_�x4
U�D�T�J��\&W��p��ZN�tt��!��T�[e��^�m����yt�������/����wa�������
����j���L}g��(��B���Yd�~6Pf��r�9������K4c��b�8)���eH�a������}�a�����e�x�hC�����)L���k�xi�	���tm��K��m�u�A&�N��2��5��]���W��HD@�0�/V�2q
Z.��
������N/.4�~e���c�����$�?�,2�-Q�,�����e��^��qh�k������(���~����@��_��/=�����9	GQ�����/�1I��ZE�c[8�O��d,��n���o�\b��&�K��Z�Q\$I����"�,���y��xX|��&��c�6txPB:�����{�%Vx%b�]�"����:�����lN�W'�ta���H��b�1
�
����s(���������:���'�&|�s���U\m�r+�}=��w�x h�><����@T^��[��2i��U`�4�}�'��P*��ot�$u�<��P��&�����~>�N������Zk��4;��R����������6�@���9Qr���J	��^�ch5�	8!!���)�dM�����X[Qi�����wR���D�C ���2;\C�(��D�������e�?T?�b93��s�j[T\(N�^���7X<�� �_�G��h�A�o2H�R<(�H�;� �gf�h#��Mf�D��6bdKu#��F��jd�����������sIQ��^�x��;�J�f*�\vJ��I��x��m�1Pt���r��Yr\T�	U>��������7���qN�?{`z��q��
Eo5��)��zf��e�:V��e�p{���m�wdg{�Dyjl�--�Y�����m�C� ��������	t5�
���v4��r9#�X�9s�e��Z����������E/����M8I
F���3�1��#�D��������'�I��ld`����e���#z�h���dOri2���%v�I9�����;[}J�=�h��D]�lF�������)�4�f�DZ���l&����>67o����P�[�*��N
���&h�S���C�(������cY0wK���@���C_?���ULl��})��������|�����)��B��9vH��	��2l���~%�����V��d�d�@������2�U[��
e�j���Z\ci���5��m�9JM���.��V?�u�����S����#�d����1L�b�I��2���(�lyz����(�N�Lp=���Z`�!pur�<1������A���Z9t��WU$�Y��1����_��������`���������xE ��i��;����������=����^�()���_|?Z��qrJ�;'a���=*��;Cl[mz;&QB�H���Q�!��O�;������A���e��O�~��m�l&�@F����G���s����N�27�-��,;�/1�H�.��K[���W&mQb-J�!-������5�<\��]T�E��j��4�/�1��O&Q�����<.*�p�����~Ry���36U80~��;�6��x��1��|���%�'���cg����������c��Z�w�����X������g�s�a����|��*i�y�k��.f�yM��x<���Nz��d���+��n�����X?N���4���3�qn�
o�71�����R�QW*G/����a�E��3*���
vF;������a��J�	m�~������&S���,<3�+�{��;a��{'����'|]�+#
�o�����������������Sx�����H��[����z=�gc'H���������]S�g��'��M������O��n�f����Fb�-#�(�,!�z�����3$Z�6evU�a63adh�lv[��E6��,.*2/m���X�j�2��m�����c���z���e�&.�qsss{�p@�z-�cc�X3�Te�T6��y0YSv��OC��%xJh����C��6���/�.������w����I���8T��~��|��=<z�����9e����GeU���Aa�k^,,r�Z�Q����L��x��Fe��
��/��tF�3��YE,��5d���=l��2
�5�d��d���H�e�i�����j�\Oni.�d��dR�����x<��43>�IB,#,��X��K�R
m-����b���XV��p�zpx��PG�~�����.��Rl���^��V��5UQM
�N�><�0�pC��~R�m�@q�����++a����|���n�������������AiK������n����V����|@���:t��R�{�!�3�/��9���������h���Y���2g��M4'X�t��f��Q��|A���!�K�������n�l&E����XOl],��'��XG��!�n�f���/1�Yf�f��5lf�#���Ua������:I�/vS�����}x+3�zLK����
[�Q�I�r�s�c��TMxh��3���d����3���3_�WN��u���@�+�O�	O<]9��n����!=�<��o[���$LOQ�
�E��P�.X�nZJ�b�
f����� ��h;e�ZD8Q�N=�oc���h\�3���V<S���vcv0�u27��p�J6uZ#���MP�����S|���0E��:�dn�R O��A�����kHW�����!���)|�h���Z�d����I�� 6�����'�VYg���1�l�u.Ml\�]�D�4ArinI�6�&H.7C[��6CLkVx>������G�e��8���c�C0��v�r�3����
��h�q���m��1o07�X����;��@��� C����z�� N@������2$�����r����x4�x�f�cLHOO_6���N�@���	���rY:�+�D��������c��s�Q6N56�5�������$�^b4p�A�� I���@f"
e���f�L$�)	�!L�%a�1��x�	�1����/�q[���lw\Q�2�/��$�kLU�	���
�R�����3�?H�d���������y��y&$�9p�xN����Vt��I���j�g������u7���pXpL���z4
�b�L��D].bc"���`,Q����oe��T�zx����{8
qXb�)|�F=i�ZM�����}����W��������^\y�s��9L�M&����9�h�0|����0<���Nf�j�����;+���pD��Lu�L� h�\�LzRC�I��=�eD��(���>5P�/�x��Q��|��m	���=�9�r����l�����40�|6[\`v>K�A������8�&�eJPi�3�zY��3������M&RV����}Y/��V�������q�M����N�X����gK���������4��_���'��~�<��G�'7��������f}r�>��	s&�wEX�M�4.M��	ZE��T�B�N���d�zgO](��H��R��]���X	A��
���7��=�
���I����r9���N�|T�
]��3f���;�9^'�F
�����Jk;p���d]�������1��z��qW�gfR�����\WSW��a�Ns����D��N����#O�Q�v��Rf�g���P&��y�C�H�m����yv�������y�oX���:d���y%�����(����,��|�0W���V��rI�R=�,�&MM�L�L��4�F.�#��l���U:�h~����oR���X���x�5�Y�^q��Y�<q�q-q��M:vv����cg�(vF%;��=^dT��Md6����T��d�;�90D��`>x��6\�a��W�^�8^p�������&�7��blY���O���1'����?r�-?r��G���O�q	�������>z������C��5�[�2��W#���bg�w4�t��N�/�_.�K0h^m!I�FS��B��BN3	R��*Q��D��z�������s�B��r�<����6�����Vs���*���}QG���NO�%cG�i�~}��U�,z���7�0������wt��M_\2nRjz(K��������^=<��w��{�����O(����a�pwN�P�x��=&a��zh�����F	�(��h%��U����]O�Y�2e����S��h���eoI"���/��ZhK���{i/���i�?��s~��X��'����=������s�#�l�|����*�B�l���rbzZN��d�?���_|w�jrm�|���e2�`M��������"_�;)e�D��� &��!���aM���c��1��1������F�*/������h��A��`����M�M���j�<&}1�a����k3�.�~o���������������qf���,�����_���y�H��N��8 W_2`�~��9B�5�7-05�EX���6sk���������x��j�����[�����'q��q�L&99u��3���T�3���>���wk���73���|����z,�cc�O2'�E��;g����������5Z��/V���|M�x�z��j��R<�)�3r��-�n����A�&�����7��-�s���LvJ����������|<o]��>��	Dx�)F9���>��d��c�7��.5uq��
��-:��K^/3T�1����s��y���x�-/��;�z��Q����XK�MK�����_)������w�b
I���������
w�x��<�$��L�3�t#�F�S���;�]�(�m��6&"6FH�z#����l��6�A�Q'���)��K�����&&��������A_�S�]{w`S��~���l�sUWE^�r�T�����<����w��R�-�l���;;��B��X���A
.��b���|'z��7c~fzJ���l���O\��a�tkt�z!j�`�����O_D��('*
�����;��:-�G8G-��W���f��<�W���H�U��5��E���R�M��B��_����1�������9������-P�q�,*��~`��]/����M�|�������E����fufV��a�(������@=OO���6��n��,��(���.�Cr[�zM�3�B�X�W�b�P,��$�ND7=�������!����r��"���"L�g<(���L(-Bk�����8.�k��s<��^.�B
"sbPy;"�������!��(�3T��P�_�L,��}|�g#���vB�� 2�tvvL9#��!���#dL��X���;?�;�/*��ld�.���I���
�Lc>&��*a:���
��K�<�AZ�o0\j\�/#m|��V�nXcL2Q���� "�MO��2�X>;x�?�9�fj9�����Rji�pH��0f�k'bE�^���_g�R}i(��]�P���`������a�h�l�X������}���8�6��<�0��X�����b��j=`��z�f�DG���O��P���1;8�.^����J�0�����b�n�~�a<��e\_&����3q
7S�����[p�,��Z��~+AR)����,]FZA�������=97/�� �"��_N��Eb��R#�/&/������V��,���y���g�uLs�I�����'m��T��2�OeJC�rT�_V7�}���&��?��i�?�B�INh&~��c*�`1Sy�Qy�����#��
����D{3J�b�2&�<{�j�X'�����	q\�0Wr3�t���e1��s|%��j"Mc�q|T�1���z�s|4_�7���WH�c
�����U���y�����@�v��Vh�_�t<����w�������(��W0b=Z�Oq9�_��GP�)
�
�q\�4��*�I�\�d��� 	D�%^��N����Xj�kl1vr����>����N@���[�>_=���>���5���+���m��k��;6��_D��P.��1�'����b� UVa>"��Lh�
��:4���Y��*l���3*lA���w"���Ld0���%�,��	���ZKnf�jj �U#�L�	���0y���|D�r�*,F���
.��z�����fr3��
[�Tq#�
�7����0��n�����F�&���h��:�����NZ�.�����8ZV���x�����y<����������qD����M�&��{ss�Nh��������;���������e� �������6u�{'7�7��hl4����~i��������U���z��x��y���2�|���zoG[}C����K�-�M�Y�����&�oY�Z����}������;�������e�wI�j���F(
�-hY���o��6�-i��hl��[�*-�?����������;��K�+���7E���y�����hG�����u14P��J5C����qi� ��v���������%�h�sU-�2_�G,{C�������������C�p]�X������%�8m��jC����[�#�>�+=ml��p[�)�.�h]��mh\�<���ij\��o@M�C��+WZ�Q` >����ea[}k��m�=�.A- �KP=Z�<��Q#�i�o!�{6u@�5��
5p�r��?q�B����C#/��4�^45�����CXe�h4���]�!���h<	�/�x2�-DM����5B��W��rNcw
����B�J�]���~���Jh����xQ��W/J�H}����I�6�x���})��R�I�^#��r���{>�K������?JRl)��dx�-t�����^��j��3�)�*�[�����I�[Y�%�����i�XY������(e�"����6@+�Y��k+Y[��z�v�{�w>`~9�R�������d5��R������0_���])��7}��A�P*bJ�y��.��������\�
����������=?��������:e,�=Mrh��X e%y����T�s�y8mdtmQ�������Vv����`�i�Cs.f�_Q��a�d,���;�a�|�r|��l��[�������Ej*�����_�]�k<OW1mu���h5�������p��W�R(	�[�0J5�Hx�Y�j�?Q�aL
endstream
endobj
25 0 obj
<</Filter /FlateDecode
/Length 319
>> stream
x�]R�n�0��>���@�H)!������������s���w��z�hfgv/i��kK?��Z�7V{���W��p26�i������%�bn�)���~L����s�N���a��#<&�����=����]p{v��������~�����n��m���n��Z<w����I����Q��:��'HJ���X����J����\�^�t�YTs�+D!�H<!�rDY��� �%�N��{�v������W�i��D�4��J�QAv�#��bO��[$e~m_� �p� I�rR�e-.@����������/����
���?��.����y�6
endstream
endobj
26 0 obj
<</Type /Font
/FontDescriptor 36 0 R
/BaseFont /Verdana
/Subtype /CIDFontType2
/CIDToGIDMap /Identity
/CIDSystemInfo <</Registry (Adobe)
/Ordering (Identity)
/Supplement 0
>>
/W [0 [1000 0 0 351.5625 0 458.9844] 16 [454.1016] 36 [682.6172 685.5469 698.2422 765.625 632.3242] 47 [556.6406 0 748.0469 0 603.0273 0 0 683.5938 616.2109 731.9336] 61 [685.0586] 68 [600.5859 623.0469 520.9961 623.0469 595.7031 0 621.582 632.8125 274.4141 0 0 274.4141 973.1445 632.8125 606.9336 623.0469 623.0469 426.7578 520.9961 394.043 632.8125 590.8203 818.3594]]
>>
endobj
36 0 obj
<</Type /FontDescriptor
/FontFile2 37 0 R
/FontName /Verdana
/Flags 68
/Ascent 1005.3711
/Descent -209.9609
/StemV 267.5781
/CapHeight 500
/ItalicAngle -13
/FontBBox [-453.125 -303.2227 1460.9375 1050.7813]
>>
endobj
37 0 obj
<</Length1 21500
/Filter /FlateDecode
/Length 12404
>> stream
x��|ixTU�p�s����tw���v:{�W�4		BP����t aKC[�AP�eQ�E@���;��;�".#�8���J�_���� ���-?�������^U��N�M��r� �5����M�����s�?p=�`D4���9�]��t+	�Y��������_D��\
sZ^�_����74��l:��D�����mo��1������|l��D�:�5c��OW��l�Z��")m�������9���A7�0�q�6`�����&�S���0\?�;6�����<u��k���j
j��������X��J�?����;����$��4�0�@m��c�J�������>nI7�1!���g��PIcI2���=�qA$�������N�5,����.�(�|�T�Ik�#LF����`7�!��&���	�����J���F�a����P"fb���� q�=��P��`�q{����[)��b�B���n�#��
>��%va��y�[xWX�7#��t�F^��<�B����8�2��I0�	�I��4��@��4������@���!���A�����T�pq��������s�>�s^0��������=�]T�n�<��f<����Wh�0����4���^��FW?"�|	���A�0����X^��\<�WH�I<�i	�?��N����,��7�N}g����	Q�O�\-������^8�����)��M���(��@����{��!<����B"�7=/��a�����(���X#����=��=�>x�g����LG�Sd��N/x]�����Q&P� xu�{�i��y�t���lv=���{}������@�{y����l�O�^c��!����E���Y�W���L?�n����_��"�
�C	�1���p���W�����#��f��������Q�����LWql����t�� +�
�{	�-�����1�W��%�(�C�e��S*6�t
���Do���S��y~bv��
�����'���_��	q
,Vl��%2-Tq���8��'���>����c�:�_ �_#m��4z>�[��i'�v����V�X���X�z�p��zx������J�U�|%;&�k�����1�������W��O�qW���|=Y}�����+y�R{��|���|�Eg����2�f��l��'�����W���c!����?��>�N�,���g��W��L����B�c"�=����K:�+J��T�(6�s0�l���`r�x���B�Q��*�B��&���<�z�
�7l�B/��;^���rY���y�x���ov�F����8�yIW��"�<����wy��{�S&n�[��p}�z�l�dm�~q"<�tX�}<�U�/��W��s���_�qE�3��W��y�=��^���/y.�� (�8��������,�{eaf��������j(������-Uc�|����J�|�k�70�r� ������i�N>���`�������V��`���Jv'�Df�LG�g������s��=(Q��Bq�
�dl��P��J|��������k�g�~+w0���^�2�#R�g��h�=�}QVl��5�k���Bx���'�7>b�����VF�"�n\��^�.B�����R������ "���h[_����
_�{K�o����OQk��e��2�����W�e�S*������r=��m,�bg������?�[������������}��,^Pb"%�����P"}���!\�u[��|�g�n�{����u�|����|��{w������������1�o��a�/%�V�*<��Zx�.�B����a1�����Pl�\1G��_�I��A���>�>Q�^�1�8������y	"7+��m��`hO��4v���l��ujD�������%������U-�6��<�d9$_�0�7��T��R!�ZHf�������E}������0�"��k��R���{>,c�QR�5Z����`4��,�!�a��V�e�����OHL�<0%5-=#3+;'7/��!C�
�����n������0�l����*&VVM�<����5�0��Y?}FC��Y���mr�������`a���K�.�X�b���k��[����6�|��[�n����;v�q'�}��������z��=�}�Qn�c�?�����>}���g�{��s�'��'_x��S/���k����i8����������?�����/NAN_�� �(XF:�-d+�������*�}�~��������Fp��
�&�~�
���O�����:~������������?��"���� rM����F~��(G��r��)������p�U^(w�����m��d��Lm�����h���2FF�FEF%E]UU14Fc�1����h�+1o�\��9`���=�=�~����.�y�a���.���#//"/�s��������n����X~!�y������?�?�?�����B}�,G^vE���([��9]����"/@^v]���>^��/5Q��xy�/����Y��|�x�|����1�Cp�g�i��<�a�g�'n�������U����/��1 �������{�����u�{uWAW�?|��������3��Q����t�����/���!���?{�\�������?��i���s��n?����gBh9;�,��gS�.;�T��=;��{?����>j������r����yJ��V��T�����a��g�m\��~.�Z����T,�s%W��M'�h/(�u�=��/%�����[��"���a#�{�O`�
��*���a3�����������?����CI���4��[��X/����
����%L�3�&���a�
��;��

�5�n����`�����`�`>4C+�@,��`!������8�>������o�[8B��bB	Gx"�/p����:2����D"F�Q���&����&�%:RF����/2��'�d� I%�"��d2�T��TRCj���.�%yd�#NRO�?�Of��'@�p�1�F2�� �Of��d�K���XH0<nBB�<2���pA"I3i���g�>'V"�"���, I;YD�%�N�I�%K	�g��
��!q$�$�D�_�U��>��#8��'�r/��l@oq?y���<H"{��$��%��G�>2�<FG_�&���$y�$O�C�0I&G�3�(9F�%��s��� ������$I!���"y��"/�W���5�:y���7�i�F���A�"o�w���/�=�>��|H>"�O�Y�)9G�������������H���L��J�h:��n��4�f���n�w���=�^�N�.�n���l�Z�V��[�-������\�	�i�3�O�Sp�>+������ 2���������N��H}�>N���1�����$}�[����q������p=�������y�9�Y��i�)�$%&����D��l�52"<,4$�h6z?�V�VI��s���.��"%��l��d_=�����as������&�_U����[��
fw��h8[x?�\t��M�n`�����oR�s����R�������]��)�����"{Q�&y��h�"�c]�I�P� ��8?�_��1�Mc��t;6� b�+a��J�aO���]��z0�#n��-)���nG�6��tn�t��j�tN��v
J�i�\LqC9�c1�������#[��y���������8�����.�\g�s�,v$�G���.�q��eV��a���5��o��=������
�v\+�Y���$�����f&�sf-��x��ac�B�&�ehqL�7j��b���Y�,��^�v�+�O�TD�
��5�`�����y�]:���f��=���_6�t������[���0���Cs��>6��*�c�"8���,�c��~@�Xc��m��Z_�c�Zb/�����.�l��P{��|�]6�7�/-��*��]�*q�a�3��%��������gP2�� �P�S-���*�Va���F�
�2�W�d����0�S%����L�Pqs��}bc2���O����vn<��iXq/[���0-�8R��<jXOgOO������wz�wyJ	:����zC���!�M��Cw���m*��0�b4�c�&	-}����x|�<��v�!�-Tv�
��
��������T)o��o��S������
>SbJ��A��E��S`0.#����^���8�a�u;�i����c�;����*�`�$�/�<@	-�)���}�Gdt�J+�me5�������R���8�+������P�T=m�So�Ai�O28��_}b��e����%KH�g��~��V��t�kS_���b�6�B�{��W��[U�OE[��3�z����;���n��=��c�u���oM���m���n�Zb�nM�J�n��c�L�B��B�������Y
g
�:���u����lFG�Q�!��qV�����|��9�:H?��n���l�K��j.qe��;e������"�������!������?�Y?�d����F���o���=ok�oWY�`����t�i���!�N����Z�=n���������yc�u��x���E��6v����&��~�@��5���k���k���k�^�w�4ZW./���(�:����#��+����e��lXQv�s���Y��q�8E��f
L�J���h�9��dL�H�'&��'�c���c�Qv�����c"������~���a���\W�R^�|u��0;�����!.��[�Q=�p�v���4a|���P�
RY��*+���B��Z�A��R(-/t����I��U0���T�V�M��O��U����Q����z��r�E&M�<LBX��RA�0Y�f���^��*)��,_�vET��rkD$������9�7>��lw����_����um���������}8q;�0�7��7����'��RIW��l���P�-I���$�� �A �k�������x��v;=?��l��|T>��|��pU�����g0:�q'�?�1�Ra�s/���b�Ic�u/f@�0o������jBq`�pk�Uo���<fB��`��	s��p�l[��s.�EU�}�^?b�t7��|�	��u����-1������1>L��pz������9��<A�Rf]8�6��)����&�
qH�]!{���`4�����;������}��O�h���~����u�=������BD�wz�o��&���Jg�3���/���w�F��k����}[7@������_������?�|���������v��]��C"��A�����<�Rm��|��r�"K@C����.�fev�#���9{�G)���[�H���K)�� #�����J��g7��KO��yA4w=K�`�t'M�2�E\9�a �R�K��8�!$�:#�R.�:����5��h�A��G1��1���G�Z��pq|?�����(�U�,��M�]���vh�$�����$��~�tljCA8!Q�F	���!�8A�H)0Z����T$)�: ���V�����������S�i�s6�NlG�K/�w-��������edww�p�r������`t;i�h���TML�u��X������������</�,u��)h�I�c�V6R��e9�Hf�P�g�%�D������|�`�A?`���s��&�DF�[.y+���KFdd����Tb��$�/(�$��]B�
LZj8)
��1��n#�� K$	4�R�Rp��q	�-=;g(�V�6_���}���O�D�o�}�99[W,�������t�W,OZ������U$`��!c�-�#�	��jt�x1[v[K�����9�p}wIHX�������C�k1)�Qc�x�����r�#]���I4FMK�L
�3;`nLG@�ei�?P??�V5�L��\��(��j��B�r��
�����F�@�.���J����!K�;���huuUZj� C@�1';:�"��|�(�4���� 'Cy�Y�����4��7W\lO����rvN��MEy�_^��h���������H�{�8����`�9[^TD\k����|��$�ux��,�k�,Z�C�����0�HE��2�5����b-�ll	����Y,+$�Y�T��p�����<Ua��-�H�6I�"��������*��UR���>�H���Z@��Q�GE�|�O��F�������'���J2��m��:3v����������w��0������H�$������d�����7�Lf?Uf�5#gZX�~E�(���Y������*Ox^��2�h������j�5%���6�u~�|�A���4w��;����j�-'m����+z>�:����	��Dh���}
���J�L"�3{��<���^��0��������
B�s0�$1���lR���F�*�O����FR?Z|T�%�X��py,�<��&�R8�����D���]�6^$�h�(1
H��/��1�!�JSH�8f�yb@���V/p�I�����R���>P�:�IY��Bs���h5�?4 ��%QIE(����X=�
������uvvu2]��g��	�@5�������QT�D�BB�
�?�&����w2�f>��<0�����4�D,�������B���(,u���F�<�0V�K����	�l����r�VEI���'"��y_�����6��\���w�uk^#�GL�|�+N!����4t�������l>�����E����]o	gR�CO^�����Et�? 5�f�����Z�G�����d����]X]���d�K�Il7��[��E��j�I#�9�9��N���2>D�M2G��0GXYXMf�jQ~���Q�S�.M�ZjN2sj�C���t9��^��J���q��S.�+[����d..�R;1�]�u�vm���(sr�UL�����8�����L�)n/6}:<��n�'t����������w?{��'����4���=S��Gt����np:����m5S�6�����{WO	2�L�G��K��
xw���:C�I��;[�=_<��I���rR��%��o�8� �Jc��G�&������p8�es%�D���8�Z��qj�u��C����>w���j����d�������^[$6��96���K�o�"i]�b��	�?�/��E�����;�X���6M�s�&U���,F�7������+t~f��/\��61lzX[������$?�W��+���8s�:P���SG�q�[E�YA�92E���:�:��I��e�����x������S�O��I�!=na������b���N���o�����a�gN��=;��w���-��8���lMa��3�
�)�I_
�NR��F��8�.��1��$����vP�R���HUs<�S����5�K�DQKR��`��u]����HK]'L��n�I�@r��%b�7�������#���K+�������~Y���y�������,����S�����|sf����)�������������\��iNK����,L�K+?!!(��qU���;�3������d�����#�������O�����$]2\P�B��3<X8y2-|G����<�������;�0�`�����w~w���i3&?;.:�:5c��5�6�#���X��:w���51y��>��8J��6����F����0(�b�k��C�ybxBP�`��/'��>v���!a]�W.�kF�&��B��`}�>�4�??���Vr3�f�D��w���X�����
��h���~kuZ]t��0V��-�Vh[��6:&:_{$Z������OV}��u���D�/�P�'�I��O�0�p�,���L�P����������c�����X����
���~�����O����������`"�����t�4�t���2�VD�NG����}���F5G�!�Y]66lZX��g>�����`��3`p���������	c�&t$p����,>T��+�!�Ht���K�U0�/D�>s��A�i�&�m�c�	Z��������-X6 ������|Hzv�����gkv�����������3:����z\���y!�w�k�F�����w�\K�D���18��i-5�U���L��4��
�J���Y 5(f���JEJ��C�4b��h�	,��*���(TX���;Q�3���+�(^�9>
7z�b��
�kBb��cawM����b�W+��s�V�bd��������'F����m�8��s���YKcc����v�s���
�V���h��s�_�/Au�t�h�7�����s%�N��X,q��`�E������-j�f3��-������9&SB�*��=Q����<��}g��<�6��(&���2�{�������us���������U���jy�����Ea��s��MH/:��><k�������!��g�\Y������W��z�y���O �v%'��@3hF���Q�3f��]�Cj
�v��$�Yk��0���yQ���,c����f�,4	
�&c�q��V�h4fuHD��WiBBCh�����V�SoR�t��p`^�R%��ZqyW������7�C����d(���^@����*
�O|^��v�?+����=^>uMRb��R�����N������|���i�����`�#�������?�
����T<mx�K����3����l��3�LC���,��\��w�e���C9�S��>���1	����sB`�C�"����`W�ZP���u^��3��L���6�h0�F��	�3�dT��a��GBu�[F %������N_��B�r1Cu����7]qw�.���V=|l��o����&�8�no���u[ws7��v%�%Yc��'��_>������m���1E�HyS���{(/���d������[1Bf��^�Pw�j^���,��K��df���c��$)�0���0��S��Ivuw#T����^��n����������A�8TE�Q>���o0�����v<������[�6�D�����40��)')��
�3��O�F��9Q9�Y�Y��Q�������(CBtM0���e[�%�������E-�-k-�-Y>��d�,"_9���p�=&�e���mfY����<�:5��JS�l��r�\,W��� �����GRt�0��k��������w<	V�<&����_�:��UB�������j������'R����m~����-F-��"����������n���F�*�2)n���A!���,�d����EC�^>�W/9�fB���=��2�[�Y�8��s��"f%�������X�tm+A��J�Wf$�0�awFz�<G�Z�����3��Vvk�B�@=
��7�v�A�,��d!^zx9�����+aK��#}N�����S�'^�����+����od��]T{gnv���5w���w;}���Om'���}������M�V����
�M������AZ����1J����Lv� }15�,V��\���-Q�������0���O�Y���������:�+,�N�.�r���{�!Gk�@M���HML��x��W�����fg'�/`�rR�h���{fL���b�������ca�O����J��uX[����r����?������(�����J����,+�E6��I��9fP���F-�3Z&. D	n({!��3a�g��BM	�F����pq\7�[����xs�n9w+'p\�(��8�gA�"���_h8�:��%VJ�c�o�����[:���+�NP>:��U������%Z4���H'�e{���1�6,Z���6����a�#4�/[[����u��Z-�ZcV�5Fv�	x�F��e&�<Ma�:K]��P����l�W1�����k�jt��~���o��f���e���q�5��i7���q���5G&�
H�vh�_���~��:AB�<_�Z���`�#B(���geeL
,K��XlhM�RYg����;�&���$�`����0����v'���LC���e&��dZ8�Gyey�~�uP���A��I���}�j����������hi��������������/&j�2S��7�w}���V��"�����
�5�a�I�C��=���Y�-�#�G�64�ecZ���P��gT�mK'��>/�(=��o���89����E,�r���<�+c�=�p��{!nvL�����M7��L�MR$����`K�����-�pk^R������Z��5��k����'�X�l0�f��
'�42xgx���O�# H��
2.�w��k��]�r���$����%����d����=o�9��[��d��0��0����v�m@���#���X)_���+�>r��p����UrA<��I�u?�4{z��Q�C`��N���U#���eR����fQg�H�N��� �r����`"���_��3�����f����aX�1�N�s�b%��P����
u������Pw�����=Y
{�������W)���Y/�U����7=F�s��)&�}�"f�q�j��c���������W��/�-�	����q�����\��?����_�Y[IF����:���Ge�OG����p���#��X
Tz�E�������
w�s�����YX����J�V�,�yc���$�.�D�t�}�s3�f$bt��k�}O�{�&���G�b5�t�������4�Du�f�I��~�f]�ri�������Q-���.�K��j���� ��Vc���q�J���4F$�>�BJU�Z��
s���|��?-�S�eB�(�K�b7h�PP]P�{a�qqD�\�K�yC���Pu����]/��O��������xIg9u������^����a��-����?~K��?�#[���G0xny>��4(��<��H.�+}���..� X����~���������Djb���P����<D�R��F��(���:z��!��������g�/+�Ji����E�Wp5R��L>��^�>�s|8��U>��v�p���>\��/|�m<��j�{���;�m>���$���]��w-����C����c�s�t��� K/)�?���/}8��w
��l���q}U��������)����}d�������9
��o����a���p\G�gS�����K
�g��>�ZY�Z���]mQ�h��:���:j/�����>������F}���#gU�U}�����3^�G�:������i����u�������EM�]M�k[������-�k����,��o���V�XQ?�Y;�vdK�����y��f��������505C�������3��Y��[��:�����%7M�[��5c~S��5�5�q��m�ox}m�Y ��o��_��*��m�[��q*.7�in�\�,����ili�w����E�'������k~����En�+/hh�k�3���u�[�8��Iv66�f��s�8������-������n����9���+K��|M������3����-��������{��������a5�wu6-�;�����Hs�����2���[������";�����������jhiq���,X�`�����Oiiw5��_�jhOa[4�@�*��mPP�5'bs��zg)�Ep��c����3��#�}��a\�>nw���=���_5.
R!�~#���tlg}2\�+���&\�	�C��Y���g-�4"6b�0��_�a�h��f�V�%��
�N9{jq$[��;������{z�}����+�Bb��X-������v�N�
�kQ�sb�,���eeE������������]����I��Ln�u(e;�(�T)�ee�v,[�yw�R7]��E��Y�� 6o��(k8�m�2���b���t�s���q)�:q�:e�FE�����y�}�u6����H���m��S�wa������W�o�:�Z������|���
���d'1�w�kQ5�W+�~]Y���4��+����]�����������G�//-�~=6�������
�M��]�S��k���^9�&����gX�R��Bm��M}�:l�lEc��	5(�s����w���H��
�i|
��
�3]�B;��p��x_���M��d�c�X�<�����N�b��W�z���g�_{���W�z=���^�������������h>��J���_/��~���_=�__��u����^���zd��2h"������{�q�"_��#���/���
endstream
endobj
27 0 obj
<</Filter /FlateDecode
/Length 305
>> stream
x�]�Mo�0���9v�������:X%���~$��4B���`���C"=����UM��y��&����6��<-N���
����W�_��eQ0���al�0���<������Nj���EoN����w_U�]�������%W0�J/�}�F����
q��}��e|�x��4rR0�N���X!��K^���P20�_�H�~�����t��(�r�)D5RrF�*�4&z&�*9UIk�Np���:�M2*�H�b��R���23���n��x$�|k�bu��zn���v��\�k���~��j����n���)�P
endstream
endobj
28 0 obj
<</Type /Font
/FontDescriptor 38 0 R
/BaseFont /Courier#20New
/Subtype /CIDFontType2
/CIDToGIDMap /Identity
/CIDSystemInfo <</Registry (Adobe)
/Ordering (Identity)
/Supplement 0
>>
/W [0 [120.6055]]
>>
endobj
38 0 obj
<</Type /FontDescriptor
/FontFile2 39 0 R
/FontName /Courier#20New
/Flags 7
/Ascent 832.5195
/Descent -300.293
/StemV 120.6055
/CapHeight 500
/ItalicAngle 0
/FontBBox [-121.582 -679.6875 622.5586 1020.9961]
>>
endobj
39 0 obj
<</Length1 65680
/Filter /FlateDecode
/Length 31164
>> stream
x���y\���������,��0��0�2l" � ����*�������b�&��YZ��-f".!����,+[n�K�f�jVW`~�yg@�����|~����s�y��>�s&& ��A����M?�m��8@����S��<����o�y�����zH$g9�L;�?��t�!�Y�'L�5/�r������['L7Z�<��s$�O��[>�J���3����qk����V��}������1�ft����3��l�8���mi�����OH�t@�1��.�{Y�
#�!�]:zfgo��>��������*K�(��7Y%�<��?���<�?1 �g=M���
�e��3
�'R�}�Z����c-�j=`)@A0;.C�����l �l����E�Fr���4��/���|�=;�e��#|_�rq<��}$>���(��V��d�����0�"��AX�n(���!��/�Wr�C�X�3>��x�a��D���}���.l����p���2����}8��i1��v�+]O;q^0��[�)
�z�Oq'�#��S+h!�H�c��N����}����O��D<��o3�"��{��=x���f�q;�#l����47��O>1/�d:�!�!&�p�2�;0(E��%
TR���>���C�HGr
�7�<���.S_������~iH�p2�&cC����d��{2X���=�+�(>7���
T��M��xc0�V���u�!ED,2�S(��p�k?��&8	_#�����M�rxq���V���J�,B��,�^6Z��S��?t|S�.�#�=(%��j�-)��V��s��*���:�}�L$�y�
��&�5a)����0yw2tB<j/��}�YGWM����	�A|�o�e���M?V�7"���t�J�������{��Z���?��z|���UH	��_I�;~�Hib����x�[�o����V�a�X�T[E�P�CW2V�^�CN)�A��t������4��I�6 �V8y1��
���s!wa'`��'������i.���O�O�����Q[�
��"w����w���a�O0���`���&���������S/\}�	�
+a-�f��E���m���<�1w���&P7�Iz�4���i���^4��"Wo�>n$o#o?J��	�F��H�	d&�jC���/�a������x��mH�e�{~G�~���W���T����V�������5������H�}��-"�II ����E�"g��g�o������lW�b2��#2�H"<����=�{�WF�){]���%�#��'�N2���-d�@�s+C4 *#�x�Y��g��>jL��,j���A��p��(��$LO�$K��x����8��t�6�M��>x�-���D)W�[�������������z�������wmj��_�GI
�A�4�7�!��J��mQ6���#��yJ�3����(������W<+���(��,�Q��������$���F����1ry#9�	�D98@@:���C��R�e�l�-������=��'W��C�"��Qn
�C�c�����b�Q��c���d��'<���>��������0���a��I9�#�������n���g��@�a*�_�S���lb��&��!����-r��+���%#��$��Bx]����H����*)II��t1���z�������
-m��������h��+�l9Z�X��;������C@]��9��<&c��� g'�ne��3��B~XM����(��J��H��&n�I�������H�����[H�?����_$�/��J&�M `b�&�����M��������&m���f|�VA��W��%���t�'�����i��AM��a��,F�hU��mT�V.��B��dl�I�&�0��6L+P9v3�����F���~����Z��}�e�H-x���'	S|�_%
� #�[�>x�E��7M6b'����������Vb<������B-������t�p�^��;���F���_�����(�)?�����G��i�|
�0��1��<2���I�{����f?���d;7���`5�Jp.�S�	��y��	���<PMz�����)��.���7��$>���t���Rl�X<�W��`���v��8v0����"���C>�Q�1�^���������3����.�Y,���c�`-������t#���9l�N�u���� ���]����1��g0�4b�J�H
�4��!A��6�@�i8�[~%
��i.Z�����Nf�@�II>�
#���)#9���>��0���n(;�g�eLl7gV�
��������9����S��N��2�AfM�%��W8�G�%6�2��0�3	W��<��q��}�D^	P">e��!��=���!:��	�%rp7�fad��f�^�t�����j���rA^���>����J�����R���v���;I�������+���".���hWXyJ�#
�S,R��
�{?��y���l�b\sb�G�h�r7����[�uC6J�z�rE���"r5��P�o��C������������������Pb#b�N:4K�>&h��l��lM�=�T��&`+Q\kJ���Iu��jE^#<���W�E�`R���'$�����9D�!d�[�z[��y'>m�g ?a������3� �-�tXP��d��_��<���7�G�7�P�a��	Z�0�A�h��;��w	-a��+��5Q�{�����������G�a�#3���RM���<l[��:�����,�Ej��2pc�i
#_�Vx@�MWu�o7�Hl�L����2A`&���	��`Z������3�YH%���;T��g��w�o�����"1�c��e4��|�bmJ��?	5p��]vy��
�/����71�r,&6=�nI-�����&�Vx&7��)zP�u���������\D}|5qG���6����A.�>��C�C�0.����9��"��^ ��]�R�z�����E�����v�<QZ!f�.��j���O����:�|�����PG+�����_#�p
~FO����7�%.���)��}hD�����
&uy�����}���k�F��
g�Az��r%�������a-�)�9��ZN6�;pn9��Gh,��Mqm�����������c��sP�'�"�
�G1�t1����v�dPtP%J����y�*���l�Q.��bir�A�es�&8����JTqy�S<��WQD�X=�W���W����T6��7�����<���
@�wsf�7��+Cn�}�}N@?�"r���|RT�|K������q8~�d� �����=8{5rG{��(�
���B	�$�1�A����;�������I��
�t'��Ff()�1�"�#��P�r_�����hn�2�R0i��f�FL-����"JG
�r�b��1K�����C��]�ngv-7L����E��wg�:�OG��T���cV�Y�`t���J�c��S��J�S�dq���#P���TI�h�*�2-������4r�BL�)��� ���1�~;c,����0$��"�#�%��.z�sq��i�lnW��������a|?!B�
�	��+"'F��.vG�i�u�u��e����m��~�f����m���V{{�P{�}�������~������G�{�C��r�;<�LG�������(v�t,v������)8#�&g���Lw�ur�t�����t<��u������x{|r�7�{���q.����(n��u����w�;����v��S�������W��u?�~�]��svw��~��o�W���������������:5unz�S��V_��r���u�Vx����k�^�������Y���������O��^?�~]�����w�?]�l�s����R�YCfCA�=
�4�7����@���mh&�4�������������Fl����Nr���|�+lN
?�xj�6�)��
��
��)���F�*m"���~��=���w����=�^i?`����3�/������V���h����n�v�@�p���fl��x[���(�v��K�������l3��Dl������q�I����������F�Y��!�����u�����zY�v��������#�S�g��U����o �?El�B�v4V�����x��X�w#lV��D��3���Hw���K��|��5��������3�w?����_Zqi�����\Z|i�����������]�{i��Y�n�4�s�.�_v�~��>����������/|���=���/�0���sw���.�����~9����>p��������f��>;��(|�<�?��l���g����i&�L�3�g�������<CN�p���������l��WO=}�4FX�_9�����]Nw>]x:�t�i�i�EE�e�8���^�"m��
���!y�$I-6�����o�����Y�U��e��xH���-�f���I�*�	k� ��Oaz�LB�zx����|=�1�I�9��1a�t6��\�0D.���W�<�kEk�����G������*e�M�C���
��'����j���tB�g���x�>���a-����ThV�o�h��cO�������W�-�*x��'�V!)����k0����3�#z����\���9x^�]h!��E�}�q����[�6����V����Ix���+�Bo��8��w�&�D�ZS�v��`z���D�4�`�
���M/��NxCk��d��%�b4� ���D�kP�1�C�km��E�=e�-���[1vy��0z���~�<W�w�$F�;�S�i�y����.�<�M����!{��$��*���'����pr����G/��1��@����Q���Fo�zz��K�_�w��n�&f��^&��K�#V�M^!������_;z�NO^#��7���-�6Z�w�CN n�K�%'�{�}�9u��v$�y�$�����q�x�x�x������I|H|%k���/>*n��6�1�q�	�Iq��C|J|Z|F|V�)>�O�'������b��G���������V<�O����B�}Q<"��/��B)>����������������xB|G|W<)�'�/~ �?���_�������Q�xADAdA%~$~,~"~*�����~8�Z���/�����W���7�;.������A�Q�I�Y�E��|D>&���}Z=O��LR�#��X�"�IV�&9$�/���-y�D�����<M{MMG�O����)��5��~�m��@� �`��Pm��L;L;\;uX����,UJ��Q�e
.�����2i��B�GZ)UI����i��NZ/m�6J�J�I�KHJ������#8'm�OPC>"=*m��I�I�KOHOJ���S���3�o�N�Y�?���vJ�I�����R��G������+�K�w����V/S/W�P��^��R�R�V�Q��7��}��~����T+�gJu�!����tD:*�^��%�,�^�^�^�^���������NH�H�J'����������������S��~@�YS�)�t�tU?���~H
���U��yY�EY�eY%�e�����p��-�������D~&g�/�Wr�\%��?���?�K��z�@I*��SJ9�S��T�2UQ5I���h;������F�H�N���d�LMc����;vj�6jG�s5�A�dQiK��zh"���4�z��7k�59�\M7MwMMO�=M�i4�f�L��f��4�����N� w���z']H����.�w���n�L���t��/w�d�\(w���b���U�&w�{�=�^ro���W�'�����@y�<m�P�Ne�0y�\.��G��hy�<V�E�Y'�*��'��I�dy
�����<U�M�y�<]0��)D�3�����,�$D���9�\y�|�<_^ �)/�	1��=�'X��r��D�K�	v�!8�����2y��B�G^��r��Z^#������
�F�^�>�~m����I~H~X�,o�����U�&?&?.?!?)o�w�O�O�����;����-����w����F�+������ZM/Mo��\�����E;N{�|H>,�(��������/���W�W�����7�7������������;���I�=�}������������o�S����|F�L>+�������/�����W���7t
]K���t�H���������A��>D����}�n������h�k��5Z�F�	��4z�Ac�4��Gn	��[���Vrk�u�����C�#�l���vr����n?w�{�{�{�{�;A���>���}�]�����.s?r?���/�Wz��F������I\�&B��������j����?���
��0,'�8�G_@�'rV!UH�$!S���\!O�	~�X�����B�0H(F�-\�0A�"�&Lnf	s�y�|�Na�P)�%�-,��8��ZX+lv�
�5���:���/.M8.�.��q�)����pF8/\��~��]��,j��D�)��X1c
�/&�1ILS�1]���\��|b'���bg�H,��]�nbw�{����b����S�%bq�8P$��C�RM����N�i8m?b�X.����j����Q�������i��������%���e���5�
��5i�<���yF�K�G�_sP���%���W4���kg���Yr#��s������Y���9���y�;T�UTw����*��"���������������U$��x�|	{1�?�I��0�_A����4q�x��~#_�����x�����a�J\%���k���$m�6���_�6�XG
1��@6�{�\�%w�gh�j�i����.���]�]�]���.���]�}\���I�v���e����{�+�U�U�g�;��iwi����������>�}Z��8W�'���j�������4	���I������M�}�����w�I�}�~@��s�<�@?�_���Km����
��P�,qv��9�x����a rj��I(@>�#��!��:9F�n��wH8,���;Z#�E>.F
��D.�K�R��'
�����s��g#G��>��r�����4.���2�6\���F>�R�J�y�3��p9� �
�(J��Qb4rk�h���.!|�����Y������������\�(d��br�9:����'����.�������&p�I�dn
7�����M�fp�s39F6"4���h���s�;9^%Y��h��uz�1"2�c���Ymv�3����$&%�xS��32�d����m���CG_~�a���.]�u���W�>}���0p��!CK��
Q>rT�h3��q���0q��)So�6}��3g��3w����p���%w-�{�����Z�z��u�7l����xp�C��G������xr����~����s���]��f���^�=Xw���G�{	^>��������o�}��wO�{�p���>�z��gg������������������������������������xg�/�/������}^����Ym23��R�)�I�w�+�����q�XsL�)*2�h������J�D��(��.���jOE5�qu����]��at���j6u�qL��B��q�G�z�Hp��y$�;|�KKutq9�O��dX�R��)v�9�/+�>J}�R����]b&;�I��Ku�9��T�r{4�"W�8uZ*�Qk���Zu�k���(���
r�:�U����*f'���]F�R]���K���,KK�&Ec]c����Z�U�@��M�XT-)�8&���U�=���V��aL�W{����#J���el��-���1��#.n,*]����Uu���`�UU+������u�����������+n���k�w���J��2������U��������I�j���kB��
$MlU5��Y�?8�]U�J]����ltq��H�p�^��a��'-u��D��p]��
kY��������k@3f	;��2D�c�OR��w�c��<�����SFpV�-H������*}���Wn��Q��@�����2:�"����2>if5�o�W{��))�E�"�)�������:��NtM�;�@�A	�vtY�D������c����i��c,5����U�
�s��'j0��l�i�^�BN����FU���:�)������t������X��KUE������k���#�J9
���Sz�)G4f��j���D��o��d�J��8�V�+��2���?N�
��f)��i�cVw����������������4��J}C_W�@UU]]��UU�k�c\��� ��<U��T4Q�6P��R�uu�����B�=.rO�=~r��a���{��`HQT��lO��t��UZis+{r�'�E��k0�`]��~�J��W�����6�����Zl�+m�I��A�c����m��XtP���	Y����)e��mAaw�#�Fx��Q�/�p`�����S��q����I�R�-u�R�-u�R���^��$�q�}{�	Y?�r{!�@�
�*p��#C��P��,���5����v]�
�	��y���m���/��Ri�S*��Z6��{���������������s��n������7+���(K9�CK�*[jt�PV
�\7�p��P9�R�e?ZX�
��w+�6n���|���S��J�b�>M�OS�J� TgyF����:�s����-���JY�u7�����}�J�������=�^8��eON�[�>c��Y���ZSl�,�������~���P�g*F$��u��)-�0_��.��$\1�"L�\!���~����1`��u��|�����)���Q>�������>$�����a��r ��P�P� �:�8/���;�ri��k9�j���*�t��(�FW����B�%�*����+��qllB?�Q��"�F�� ����Z����8�;y�����ms�e�5Xjc�t��s���d�����������MOv���G�E8�����HDd$�&��De����!��!%��7���v�����$lI��$���c����D���K�!
��+��0g<������@��0�s�5T��E����v��~�I� 6� ��0�L�3�� 4b�nc���K'�O���$.��R��!��cZ�i-�5�VcZ�����=���r��,�Y��5gw������V��`2�%4��B=�a���(�.%�]��J��vqD��#�v����a}G�u�1"����G{�N{��{��x�r�a9�����doX�����G����g)y��[���0P&��)#���}�%�/��<��/u��X�|,:���L�x{j��,�/��&��D��T�
i����K�R��$%J.�.E�FY/��ZY-��(�2�A��
��{�w����"�r^���_)_�'�2��P����v&�����^c�W�j�m���L�������1����j����<o�jU���=��-��jz��A��$���Y��zI]��*�����=<Y��Ls
b
�����MV���?1��xk���V?k-��b����b�y�i��R|��cEY�Au%��2���+�����'+�q�`��q�8m���YgS��n�'���x���4&_����7�����8[����S����e�����1-�9���������|��h>*\]�!TT��3!��r��q��G�(�S1f�V�WK>r�+�.r;������������x��2�t�|�������]\����v�����V6m�'e��,6�-������o�w��nl�]l�]l�n�n�^
�#[���}S��K5jd�
����I?�����1�,u<��A�����0��V�V��P�XW8�C]1�::-u��P��
���eb1��93T����9s���#g�R�7s�lF&�G����P��7;jc��W!�Vt47sf�,Ph:s6��f��������2���	`���^.7s6�Ql����d?%��;dh�k��`����A�
�s!��qQ���!���A!~a�_��>�n�S��d?�mm�;��A����#��|p/��ap�glu��#�B{�hT���,�'H�W����wh��y��P9��Ln'��p�A�D���bJ@��{���p� x�%�2��c��1�8������m�L�yh\X���p��6�h���C��;���(� e4�
�T~�l��o/2Tztp���	�x>�/	!:�D*�ws4o<��]�/�@%�Z���a�0n�q���6\{��y��)��1�N��� :���W~�l��Q��p��$�t ~��<G��\�q��<D!�+�����a7���������f$�`2�,$��Zr�N�#����@?�8n	�*�]�Gu���3������n*��7��\��K!����O�4�#�����m�[`q������D��~m�C��w�R8����|�#�8�&F�����2��V�i��4P�/�N�5���N�C���5F5�4���T^���7�)B
��t1F����+p���p�����I/|�M��9R��$�E�9@�w=�o�75�m����qo ;�y�C����: 7���������o6�E��~ 1�F2I2���
2�L#������X}��#��G�4�CG�F!��t,���K����#z�n �03����>�$�
��S�L�_�����%M�����S�4<��rczcq���U�/5~��y@8�]�L<c��3.��g��oE�x�x������ .8�"�xb�B�"<w<�Pt�n�4�LB�W����V��~��E�'g��<G�tLQ
�[��;i5�7������*����
|��=�>rg�/y�G�m���b�5�n6+�\�������A�z�6}���M�mp�%�>����y�Z�K����ZD;�ot�|*DJ�E���������>D�������,�k
t]N+`9�hw��9�	����6��N�c�/^�����P������J�v����@��za*
���(�>��|B�7�0r��Pb�#].|���X�@	�7r�At;����j�����)p/y	��L����H�<���I	����Edb�=L��A<�N������.��{
i�@o��c�-C��$F�N!�N�U�
RI9o�
�K�qG��
I��_&{����\����@��b���+��}yz3��*89rM�8��
�u���I��D����l����q3iW�@�o|!�1V���Hl/���|6R�k���v
��s�]��}�]	�������30����*����)1���?���@`����3�h�%Nx/�����HB�Af4�?r�H����*~?��m�5���a#<�Bk�$��D�co���=�FdB���u����z`_	A}Z�Z�V�
f��}��=h�z!>F��[a��D���������}�n���
�C'���)��'C���_1�O"p�vH%;�[�wKj�l�R���w��O7����`�#v���"H�~�*K��H��W Ka�����>�sx�#99Y��6 ��u��^CV8�m7Bd
��y��t��-q������up���/�t�	BZ#@��k������������i������wt:�_��Q��yA��&@�9=G�F��/�_?�E�g�04��`�]#�F/b���
��
��
��
��
��
��
��
��
��
��
��
��
��
��
��
��
��
��
��
��
��
��
��
���+�������UY	���Z��G	<�p���8��X�f���o_�_�__�U_}�
|
>m2������C��;V�g�����%j���������.���~5Q�T@@����>	z��u��5�3�hu���+����>�?S�&S�0}��3)���j���������\�s��><[�L��D��I�^������!��J5&�!��7�z�v�*X"V��3tc?8�o[Q�5r�ew�����t��{����������q�M�6��r%��UFk\�����c5�9J�,�Jq :������="-Tj���H�6��4��2�����`x^�v���{e��
���NF��F|��o��]�(#1��Z���9i�s��{$���)7�GvIO�3;�2<r}��7�$r}��H.�S������#�Ep���������J��������X�r�{,�	����R�r����b0�AF����h���^����
H�r���2EE�.�H�'''���.)�������Jnn�hS�����;]\[�a|�k{�I�
�������f���Z���cc��;C�/*�b�s/�m����#�b������^�#�\��v"+�)���������Y �^r��a�������z�z&�s��pN��������?�/�C��)�^��o���zJ=���j�.t�%�k��R
�t	�C}�I��/��82|�|7;�<������b0kI�����)���{�'��.T��"����\c8�tI�=��t����k���������(�}P|��cd��+�>F�+�3X���ct{m2�����
�&���<�Av?8K0����O�%cf�'���?��K������W�>����!9E���p6g^���%KH�j��^����J�u����r$p�����`|��|�`F9x	c��(�):7X�T��+^���6��&�'R�#'��)klj�	��f��d+s�������>c������x1o����!�J��<���(���1��0����q�?e��z�~�~��I�=�k[h��2gxr�805�c�k���w~g#~WK������Y�T��i��:���o��g�\�]G���F�'���lz�n����E��4��A�w��"\n��.0���A
���k�����W����n\�%��dm��
��j�I}�)"�S��G�����Gh�{���(�eL���iP�wC%o0�oOX��t���N�B�$��Hc�"�������g��F�t����Ifc������2�P2���1��o6�>����
��`���������z�8t�dU���9�g'V�h�^��j5��;�7��d��t�������qo8m$���	��r�9�T!>c	��.����<�1��+^k���A�?��tO��o<�N�m<E�#�H������p~B9=��_�K��N�KT:L6���u�e\V�$���c�����cvq$���,�Y�e?3SG%>�.F���1|W����;�	���
2�����9|D�St��yx���9?C��}��5�'s�������sYaw�6V.��W���~����/����P��0�b���Je"f��U]I�p�d�2O�R^�z�<��N�Q��5���#��Vu�������������t���ZR��.����cC-9���b|P���2���4#&(�����5}Bn0	�)u�u�(���p�N�l�%��7�u��k���]u�_�\�I��UXO
\����`B�
�~ .\.������Rc
Oc3R��]�B\�=<�8U��!�$
a��pg�15_0
BXl>�#oh��n�|�N�������_E0u����gh�@T��h��c�6��Q�H� �Y���n��DO�'����E�V�Uie��D�oH��#"�O���i|���tN?��1�hS��N1S~:D��)��.��������(�Gl��H�!���2��f,��
\����g�������,:�����HS�0�"qg3j
����X�iv�E��GcEmg��T�7t�f����a�.#Qz)���>��+*�t�I�iv�z��tw�,c���q�\�n����Z���m�z���sR�nk�yc��w_���>����wv�qn�2�$��z�F���sO��������}'?��@����]DW���={j���6��_gAVY��c��W���3�%��*�V��Q����b$�@�9�S���YG?�*Yk����� ���W�x���=��H�CZ�w��
��O1���|�0���|c��������dB�Be�3�(�AhRu��z�`�O��G��*�Y-��?��@{c���3��f�.Lf��N���(K^�:�/X4^��@e�Z�/�)h���(Sg�����������'-O���#��v_�*��6�h�R�dW���hKri#5�S�./��cl0�Ir&��B��"���U��A7H�Rkck������k�B����|wa�7i��6��S!�lh�J��+L(�01Z�����LBh� Q:��	�����r��!�e��h{��0I��%A|�f���v�&������E�IY���E	��,�]��/3��_p��fQ���'�����s?��dD�}�W?L��/i��E�1�:Z����O�:��9���c�W�>�	��T8���XTq��ds�!-�w�����7%�a>�]�l�G��j�<X�8\r���`����	/"����$�*k>������%_�U����|�D�:�����8r�;��|�������a���J�q�2/j<������/C2s2.#7�4�L*����Tq��f��'f9��`���E�bhB!�+�Mv��s�����dq�{����}so�����
��{lG����04�=j��������_�#���i2��k�xj��.�Mc�Ak�5���[��6d����T������cyk�7m�w4�|�%<2�*�>���������-i��'����:m����Mo�d����LC���s�j��d������c�ANJJ`m)I�u����j��L<��$���ON��BF���%�����MzO>w!6����DM���_��������2g�d���_�x��3�bB{��D�AfZ����6��q�H�t	mI����)b��,M��C4<����%K���@9)�3���y��E+�/��^4��g��b�I��a5��Ej�bpxk�bmQ���QFL��S�������]v��gl���EL�|~����'�H���������Y�m�3wk�s����Z�x]�����?���QOe���?���w���t�v��-���{o�4��'o����Q��R8���o�~�����������)�O��b���L���X�J�����L|-1��4����L�����3D	�1�l�_	��7xf:�!MN��������"7~e6�8DnLI��}4���o�Ei#���n��'rZ<���H	�����D%�4�X+��H����a,0rFs\�Z��|�O���e�U%�Y�D�
O|�z��p���E�����A�,pb��1�G�������7�����)�]Z7c����]����F��J-I�#E�����tBi�Z_K������m
���HX�!,Lo��
FW2�
�x��x<�)VWJ��S�D�-E�ZU4��4�LC�&S��j6��XSw;�+����I;�'[�v���-���))6Kl��k4l4
����K������t{:MOW��R=�Pb�H)��N�����S�����;o���[jI��L�1�y�u����v���:C?�����G8uoF�)1�!W`
3[�j�� �(j�\�t�`z���]�?�"=��b��������gd��������2[��|�K�%L�����k����sq���Of(�4�������C�@�"*����x����/��'�\�c�k�jz&+���G�=�P��2��8H�,r����);���_�|���Tyqlvo�>�$,v���N[�^�*a�[��_����n�n�!�t�q�H��].d�:::8;�R:z����eU�����-)��.�+��?��Z����=���Q�y�c�c�CN��Lf/��De�K�U�t�s���,G�5�cJ��6��MV�I�&���i��m���v�v���d�?9�
����
�'
�
?DClvb��(��Oh��m{��	&�3Bw��3��{O��H/��*fV1��eD��S��RQ���Tc�Z���S"���[�J#���4H�x�\��0������Xy���j!�����	��j���b'a��U3}���W�/�_�}t�j��
I�/�����{�3��u*{tU������?��Q[FZ5������&������}R{��N�������.��s�yi�$
�p�)�4$z\�-����#g�����V�����i��;<zx���	9���P�m�sX�	pr�)�]��e��g���y��v�U���m����
��N�'����kco����
���~E"�Q����.K��e�Cw$��Y��*�\	���]�C/�	u��������B����O��&���������h���\�O����d���$�m
�T2���C����qD�o��C���pb����G��Z������##�������2�=������n�n��(�!:cD���}���;�$�G��Q��9({VTuZ�s�z������������9��k����h5I$���d?��z(q����V�o5��kk�L�s�����V�����L&�-Z��T*j�i�G��T��Q]lz�
��6s�!�����M�ua`�=
��1_��
�P�)��p]�N���x��Nt'����a�4R��NQ'�G�+��u�to����Sb�2��`!*��t]*R�����$��MQ��'�N��l�}���}�e3i3�`�9�s��������4o��>g-�eXg&U/���7��$��C)�#��C���Q�i�b�3h��F�Ug�q��q�JD;�Wg+`�?Ug.�P�������klv:cp����cMOL�}
M�z<�4{-����R���<�9�4�T#�{tq���@�+�<�"%�m������T�*��I�4}M�E�hr��h�Dd4��\����bB����#`5T^�3���f
�{��j/�%~+?�k��4����6u4���������L%C�b�y}L������G3��Pt7��4� Jl�T��9�v��5��n������F)=?�|Ri+RiR)~����N����V��b����Z���2��4���mMC3������5�fO*$��i�������<�lp'x�H����lw������T.��;5!�������a�%�m���"Xz�J�z�Oz^o��z��Q�IA��C�@	��+��uZ��}hI���!)��N"D�v�7
�/+-M4�il�#�
o$�
�B���I�4�D��-��x�y�;h��@�O���vM�)�I����pX���xW���Mtyr�\h���knNSXmuY$+7=++#��������b��A����b��9�����������G8����������U�[���l�@l�D�N��T6���v�YQ�Te�������.^7/�@Z����n����z.��?~��)T�m����K�����?�or5�4@3��20��NC�%:���Z���3[�$`B�����8:j����V������)���M���:�?����w

��`���$5��rrK���|��U��D�bmG��h��)����y����$�IC�#�LRt2J�4��"�/����������|0T��yCB�C���Vb�:�V�����4A�Hn������������{-�t.���q�F����`�1%�b�[YG�D��	II���ck*����yy9����x�1�'5�����=^o0f�u������-!��P���go-�]D��+�E������hs:
�L���)����TGG�i����!(f?.��%��|S;��S�����X����,7�\��Y�o������u��P�2���t�&?fh�^����a������VB����������
(����"��,��S� 4m�-�l���d�jc�O����CE��&������~��/1�y���2�t��u�9"Qq�NB[mfdfTA\���P��G��z�����E���r�6W�2FN�+�q�g�9�iP�}�#{N��5DE
���l��c(��:�J%� ��OO�f��s1�>�:�Q���B����_��o�]t�M���'_���N��u���EY-E�9a�?���0������!$��#���0C�"�X�d��9~�-������2��������*�� ����,���+���^]y�/�^��eL�8��"��s�'�&�;|n��F�B��cp> ���g�
W�U��
��D�'�[����mm��9e�D������V!r�V�����M����V�]Q+z�j��(���{gf�������}��w��<6!�!D*��<$E A�@B"jK�V�>P����

�C��Y|��j���R�O���V�l�{��&���������{��3wf�=��s�=w����h0�z�I"X�U5���5��AE��*F�U1^���4����I9��i�����"���S��Xqq<�-��]�x!�<^�R<���d���
�Q^���D�~����B\���q���h{�M�%c5�d�`02��Q���z}>��_L��?67��;S��X"��jKlC�����iT�G},��~8R�aHA�x<E1�DX-6�fx�7�v�v������#_�����Z��SN����mY��-�����I���Z����(�u
�J 
^U�SD"v�������2g��G��b�������l\Nx����a�'���i����������z��T������-�gM8���]��98�:6��K�#�����Jd�07#*.������#z�7)h�j�
n�`%DfNpf�ql�X!&4�%J���oD�M��04�nyRF����#f�p9��>�7�� }7��	���8����0�7������=�����C����H1�����jK����%%J���K\e�������u�6�N��
���Q�*T����*b1�'AY��ul�X�����Z���7@��A	�&�Y���o��'Db�B���0LD�jI����A�i��>��<���!D�8���;������"�/B�	���<���u��N
'����rg�3��M����������4.�������}g��F?��d|�zF���I�;�w��[�;Twj{��m���Q��#�#�U�:�(���F9�ET�1�F���t�)�K��Nn�m�}�p��O�>g��>������Ia�s���a�\hq>�n�mqn��m����K����-��i�6�e�����tN�\�����^�V��	K��#�T���f11@�@��5����F�@9�*���h�]����x�
/�w
^��N���qnK��=��cm�����r�o��]��A���f�� 8o�'���������
������
.��s]6���dm������l6�
v����|(�x��&6��9�s��`������&���Qbb��������A:<��� �IQxi��8f��/������������?5O����t��^8�����|��o`S�����y����I���$	�RpZv2.�������#�j�x��b}��BfW�nuQ1m�v�k���iF�Y����P��M���A!��p�pC�
��HJD,�q%K�Z��e_9�r�!���l �Q���F������������W���"&n���2p$�
����-�8>{���TN�:���������-?���3�������$R��M������~���WP����?����Ay��/��=zU������xT���]3+��������~�hK���Q�{�����/�V�RV��7�/���g%����Z���v�d�������QU�����/�������DE��:�R�K��n/�=^V�u&B��"����Q7�R�W6� >�*�Q��-{�x6x���2�7aS���w���Lk$���${��X���%�����'ZN�PV4��h"���	b<���
}�����"���Z�;�Fi2�gv�?�;SR���zh������YBGN���H� �4+��7�b�=��O��s��K��l��|���]�?�:s��g.-$�74����G��k�����S��Ni{����9a��\4��2�����U�m�Z�z�#7���@jCa�xf��c�:N:�rh��!m�P0�XN�N���sey�.Ka����cS�H��v���X*h����Z����Q>W�+���<�#�&�!�xb{B��?���<��N�BS�����s�~��
F�*��CRQ���!��}�����"q�JPA.P4�
;ZUIoT�R�UO�z��e�]�p���N�����nU�������?��9s�{nS����{v���a^��*�������wZ_�}�=�sxl��k|vWh�����
��6 ��#��.���3Vcwa����]J���B�(� ;JqH���}�����P�%���\�9�a,���\O'����c����Rc���������a.��z��p��7PwH,�������{��p���?a���2�I�,=p����s���~�A��?��N?���yn4�W�O�Oz�����J����YIg�5t�?u?�VsN�v��v�^%��N���+jk),M���r�-��/QBg2�u^k"���D���:��r$�B�D���Q�Jy�&� �@cCY�0dV�.�V;E7W��[���S���<���x�0��d7I����+g��$b�*�z|����"H�CM�0M�������n���2}����+?�b�5��P*�����������+��J�����v�cHM�F�$�8�w%:Lv����P��~�]�:*)]��'������h1��W�����]'��xU�*�������z5w��9LAV`� ;'�v�D��O8j����D5	c��U�L�:�������������T��<��x���b�����a
�������w�����p8����&(:����,��c�/uh0�V�tj���b$F��s��[-z�.�+�N�X��|'��-�*���y��82��"2�E
R4�9vP4i�]@u�Q��>g@�lj�����J�-jRGMF
�K@R����[���"��P���E9U�{��S�����l���s�k�������k����HQp �!��9�~�TAvU[�/I������F����*��2�hti��v?_�!eU���6�����h���s{	Z��B���=���>�c]�yRd����������:�d��<��U���T?���8�A��A`(��W�p�@���H���#�&�"4y�H�P.�Kpe���;\�K����;)��o�������[��eV �#�Yi6[��6��~��/�z�M~�^�X��������u��p��n8��L���1H'����s�����o2!d��vk��&�Tb�#q6�}��o�_������d��t��8_�|��I��2:����L�m��:w�S���&�VM/��k[r��%���n�^�!��
����Y�sQ7������-��e�W���BG��6�I"�` ��6G�&j��2�Jj��qy6\��m��JUg	]�H�q�6���& I�$4X0hL	�
<�88�\��
�5>��~\}@}L���E��D-,��r�$��B�IG���-���%�o�:�H��az�����4��N�j�����e��d�+K*<B�|�6���;����iX��O�A��+2;��QrL	RA�|�����)==���t�Co^����wvb2y=}�^�f������~hs�
/X�u���;9���*ztA������NIO�l����>(Ec?����8?��6��&�p�<.���]{����� E�-�>�`O4��H�X �h���
XP�SjWQh:0Jv:Y��O�b��w��9����3?bx���Dv����'�0fC��X�
��K�W�[���
��^��;�:�=�|�=����*0�R5���~��6�Z4-�V�P�����Q�o��o�������l��;
l����%��.��h����N�����BX���}P�����6���R������!�1����W���~�)\]O�o=��?=�~8���D��E����E���Z.A����"�����;���&l�	��I�I�f�%2;���Xl���6�W��Y�+��F��v��.���l���~�>�����z���
!E�"�n�"z���Y	�a�����i��^?�������J�@roZ����Q:*�g�md��e��3Jd5�;�]�
�Qr�� ��B9�\����q-� �N�y���z!�iQo�o�k��2��4;ku�=����Yh8�������������o<qd�T�a-{-��<��~�z{+�����?~�E��(l�nC��
����
j}N\��������B0�k�#6���F� �
��h�_'���)
��$�A�G�cWqQO.�oy��!ZGB���w}�`>���WQ>q��e�]f-��"f�/��"4GI|+�����
i����T�C���H�o9R��e(E���q��V������'��?l�������]�e�/�Z}|���nx~�Pr�G�bJ���zQ�$����6��Jj,5�Z@�A�a{G���P���_�O��	&�S�IQ��K�����g�;�K�?v������{QeY)���ro{�����[]���$�7��0��8����qP�Tv�4L����?�F����@��y$:�	�<u"�L�
��N�W#�����}T_v��,2�/�Ap�P&�(��L����O���o�����-���?d�A�[����������O�Y_e�V�rt��"������={'���G��lD�)pH������-��+z�;���_+>R�wh���u�2P+�(��e�������r�� ��$^8I,+u�uZ}����%Pr&��I6%����������+��_g@&� �:�$1������-�[�����h@K�����C�o�o����������1!�s��IH�hN�����k��*����X�l\O�����)I����f�#�V�8�X2~
	�G������#���*��+���<�Q��������3a�������n0��X^uG�����=U[�U�|fJ���|" t*�V�����)�	�����" ��`cT�MSj��q�%�����v�h���u��5��.�����v��������!&$���+�xu
�N`�����9LH�Q�~d$���3;���}�t�iA*�h�q�0V��R!9���W��zp����l�y��~5�"Tu���,���Y�����9�H���/]�}������=t����s�����"c���%?��(��~P4��^��� 3��_�f�}��
��f�K/��.�t���D1�[�+�w���^�$����O������yC��1����:����~���8y��ZI����)/)I��^��&h�C� ��������Z[����dEuueE��0F&�������ku�x�	�<��lR�����Ty��]#/�7�������'�G�E����)�^^����.s|������C�.�J���U��4�%�n�!��^�8�G2�yE���8��}6C:� �*z��bL8m�������Cd|�3_�������3&�$?�p6�����d��)���_��J�U���C#����5*+���F.
���,N������fbg�H�Uu3U��Q����H��_���}/x�&����j(d����S�1+z/_36���Q�k������fU�����vu�Mk����������+���~�A��s���TH��2�z�������$�@
������$��p��kl��QS��/��%�R�������DCj1�8dXh�![��*��$>�|��<�y�l�lJ;*2*�8��z+�5�W�B@d�A)��d�����/jd�d3�=�sB~0��@i�����TyyU*X���HC���l6��Vw�l%����D���$��/I$�D�h$X	G�a�:�WW�B���I ���0�
�`������h��*]ZZRB��h�������u�`��H��z�Tc�L��()U��:E�0?zG�����o��GG�:IW�,��:�f?|�(��z��wJvHa�D�#Ai�+���k�4�YzGv������]�J.V*����;�x��VZ������l�����]����E�|�������m��.W8���Hk����F[��!CH�����95�u~��@XS�X����)i0>/0.T��V8���	���<s�u�VL���Yg^�>>�,u�������������`	f ��������!+G�G�#�r�95���~�M���XkBz�L�#qN�&�5�H5P����K���/���������{
%�?��)�yb
����BZIU$�YFXj�#-�,u����h�����n��&k ��������t{T5�J�x�xO�FU�1����QpTS��Q���#�\��88�{�;��������\���,��=�'S%�A*����`��\��b����dUUy2X�$���c������Qn�&��hYi��QCM�9
��E���h����H��7�%� ������E�>)��hO����I���r@�����t�xI�s�<�~�L�`6��
m���p#��"&�eX,O�t��R�L������*�NQodT�H����J-�~W�����+{g������4���Bo�_�4�k}����r�T�Kj���I�>����D��A��f'>%b�
M�!������7Wg���]2f~�v���j.!��\U�pL�T���n$�������W�oj��lv�L�����m������D�RR��/AT>Qy-\+�8�>���j�'�;�;��rM��Z�i������O�����n����)��i9����v��D�s��p�N�����M�YI��Xa#�0��T���v��Z5��	��6o�� -���z�^r��'�(xw��"O����������?�&�?^����x�G��h�ZJ�Q!�sk��vWD�;���4�N���n^!��d#WK�aj���y�QHE�)x3f�5��)�Wz���!�d�7,������f������9��������F H��g�S�(�p�\�	��;�m���(�G��4G
�k5�V��jc������%�6�B���-m�i�@���
$7;H.���;dA9��}�Z���2��"#���a�q�i�J�?��D"(�����T�r�4���QF������fy3��7�	�q?�e�Y}CU�F1[���8�b���k0�(��Q���o��"�O�8t%ou��8��c�9��HY����-�:����"���9E���.s����/ w�5hk����c���_������3����?{������Y��{���R��BoC����a3�bj�hL������E]e�_�_���@�a�����O�Z�.�o��Ao��������������Y���U0%�	&��4%�����F�jN�Dnd4������j]U%�,�,�)���/�+���D��9�O��B���z�;���r�QJ=L��^1���c���x���e�����e�o��gW��Vd�_���_���s*?��������z����t���x1�V��^�&
Q�=�����wc�-h�B 	/�����i���Wk�
���-BOs]�`�kq`��u]�-�N�me����<P�L���_�Y���[��	Z����E6�oe��"��a1�3�+V�LsX�7�<z���`cP��N�z���?�?������������g���O�i�X�s���FH0�hPqYN<�1�=R�p`]�F�$R�#|	~AC�/�C#�6��������[0<�A�����J<��N������2��~���G|��Qoo�#x������^�p����>|�=�������M�B��.�7�a�n�~1��[���~���(��[Y��m�GmC��,��F���M��L���
f�h@c����
�fV��A�Z�����b�$s�-��J�*��������:$������������|���E]Y����5��{'A4r������f���4�,�lP�����|b���E��l����Du_�Cj��Zz�����\6Qc�fn����pV�RV�9<p�� .�.��<c(�20��{Vzv�������?�~/����c��v"���s�3�o�r�ZP����mv�^�{{pSj��0�6���vq�������O?����w��������P�B]�r9-f��8�*�CLY��l���������@��V���2X���=��@�5�#S|8�����*���	{@�����CyVG&���Z�?������g�T�_�1n
��~����)ox�1��<[�Qo���{���P��EE���g��Q�:����u��?��X�*=���������4��{^�p �������wWP��y6��HZ�v]��X2;�<Jj���d����qx���Iuo�4xp;�g0��X��q�7����B���������9(�cJXY,�f��nR�Y��U;m����M��m7o�o�|s����iPt�6w<�{�����.;�q]�E�z��%�u�����uq����4��_�y���"_{�����q��I)��n�lu����4��o���nhr�����=�����O�U��o3o2�������C����
0�K�kF�
B�������*����O�V_:��!jc@4���>�����huR4������9�Q!
��]������#
gr���e���=��
���7\:?���~��0����p+?|�&Z]�� ���Ov�djW.o~cob�&���7n#P����c�����WI&�.�������������x��Y�|C���g�T\�.�EG$�1�5u��EYJ4�'g�c\.an�����A��K�4�������hui����A�p��%X��=���b�w1���y��E�b��������P��V*p$s6F����pj^�y�
mY6|��	H�>�����X^���1T�E@���[7�W(��E������������+)�;�-~IO*�4�
�Ec�s���p+������A����EB�[�r�l�k��|{h;B�b�d?�[D��v0����6M&[E�z+�L��i�0�
���n����C6�uT��
N��9y��i� �8+��H>�d�y���q��N7���i�NJ�}p�l�Q������J[����u�I�`9���r�r�2��h&�X+��<��};�`4aC]2���t����?^�r�X)�	��s�U
��v�������E�(q;LE`y���k��)�B��K�/��`�C#�K���B�q�Ex��G�v;��b�5�a���pL��^ju������d��8�`�������O`&�g03�������Bx-��~��������������2O�{{��L�}��E�������?
GN8�
�[(���b�Zqm�Ya����
�#�3���������D����0%�p�\�� ,��0}C��w�tg�'L��C*�L"����mrb.	�q����n'��4����L����CD�^o�D%���D\*W�"���C)/�P��<�����qdnw#j:�]���b�t���>����-mR��I2���'t�J�x!9
6�ry�(��S�����C��B������q�IBo�B3%W�LQ��x��ZST��lRIW���W<��O�����g�jG�H�X)����@rt>�Qc8�9��R���5�
*
G(R���' ��1_�����pb�+��j���Q,>s�����f���'0�o)���oiY�����+���9����V�2��B�����sFI~�����-���h[3�_pr��]�}c��I���!��?�8t!��N=���mH�.F\�H�+o�[���ZgX)7����W��\G�#tu������r�
�:����R�5Z��	��r�V�1�Cl UU	������!�L5r'R| ���0mI#AiKs�@ZJ�*���p:�.�nLW�S�����P[�
���b
�T�>X�[j|����EnU�@@0U@����YT�4\�+��]��b�<�e�&�n�W����E����>�Q6 �)�'�3�S"����N8��"��x�)�S8���=�+qE6w'{���P���f���w�B�]HB������������B��w�����hV�c7S��A��%�dVFg�zt�C��>�������i�Q��=V������l'���_Y"7V5����
V��k@X���"���V4e�7��q
'�#<����nA(i����8	��R}���J^t��X����6��l��7pp�c��A���PJ8���6���Ja�*S�u^�*��A����M�!���-�J�f��3{3��������������
��g��
����>�G�����jp�52����4	d�N��#�G�%�*\e���6e~�<������	����bS�Q
��SL������Ag�h�4�.�^o�>���.����m_����A3bM���V���g2%�w������A�/tC�x�������PYVVQ,����08�j���o�ES���I��7��U�q��X,����`Q(h���BA>
Z���`%:�Y!��T��>n7�v�GSX�	��*���Ef����:}�}��e���C�Y���TW�V�UbU�>"���D�r�$9'C����5\�-#+�k��}��_U�rEv8�F��i��`�=�%�a��jI���2�����g�iD���b����o!�G6A
�����#�y
��BB���<F}FQ���<�YLRC ��)`��b 0
f���0���B���,��kG���,���%�!�O���zf9}���0�7Y��Y����,�����Qe��j`V9��,PE�0�W��������&8I�j24��Q}��*���V�z
 ��k���C`]�X�CV�P��>T`&G�CV�P��>T`�X�CV�����7�{+!�1��L�������f���i�$0��o'�,"��W/�s�'����F`o�?��	\D�'	\J������6�Z��zc�Y��D=Rj4,B�&�����j�IjQ��8����	F:2,A����A�w�����6�}J[&na%*��Z	LF�*�w
�_�Z�:���.r�(�j��r�FW�@��V��t��Qk	p�E��WZ�
�@mL���%T�O8��Io�������Eu���~O�V�����Q��p�I�~�	n[���Pm�� ��e�p��e���	v���V���-MD���o	9c�����F�J2f�](O���]7�*.w����{���|rn����{�Q�rnW��N2&��*H���"�Z��_W)c���W��n%�(m%�;	����Z��d�j#)�Y��'�KG�%P��t���.t_��k�_����[IK���.2b��-��?���W:���(��M���9������6��w:���*==��W���7�q�v#���L|����ilc.A�;F�H������Em���e��;��������y�����1K�H���Y��B�������������]�m]���U���Y�d^W��Qy�F]����!U�UTH�I��:Vt,�N\�W��G�S��4=�l�}�4O������t^��R�������L�F����w��JWt��nC'/kMvtI�H���c��n����	��u�J�����u��X)-��ZZ��
5�.��cY�4o�������775i||�ec��.R���h]��_x������Ey��KV��S�;����K������������L�r�X�d�oOHmK�����Z����-���e�H]m+��-���wy�-�������*�mKq�u����v�Z��c^�E�M�Sn��`v���\�-��]���
�,j[�9����� �8��9�ChBt�Q�_�l�S�,�"-�����������G?���n,�J��h+hI����������`&2�0�Q:���e����:���������=,'� �����G�:@CHS�hj!IW� R��V�����e���|UMC�����y�������gO��P�*�Z�q�l�E���	����O��?� ��Ay����q����q����:���cT����+_R����;�zZ%��4�}���_�=��d��4���TS�@��R�%��C��f|;��5�2$�a5��
�w����f���[
�����?�����j�����������'����z�����Mk>����L�� ����I7�.<n�5�9=0��l��L�y�Tr�y�W3�KN�:h�_�� �z`�7/~��-J��l%�nm
Z����X����6��Zt����lxg��p����6�z���uap�D0��<{������]�F
���{�`x��
��<I=��&���4c����o/\8�y}8����>ub�a�	*���\W2��PO>>C)F+��p!�JE���WQ�b&f0\��V����,�:��B|�������!|�E��Z�"_G+��~��t�\�9���(�^O����h
9n��p!��@�S���,�9����||#2}I~���&�o��7e�M�0\�o6�������)���p!��B�����+���p!>�����d�-g1\�o��������8�_0�f��o����6�'���6���w.��y�_0�V���~��B|�B����	��W#������a�%f�8�~<���5XO���~*�
�U�s`��eFc�Se����
�@�a�<�������o��s?6���w�
Y���O@0��\x
��[u��;��a���5`Za=%�1f�E�g��`1��z��S�e�����h������s�� 8�0���3���
endstream
endobj
29 0 obj
<</Filter /FlateDecode
/Length 327
>> stream
x�]�Mn�0�����ta�4Y ��4���� ��"cg��k�@"u���~�~�8��S�{��;��z�,L��J`��:JR�z��Q��bon���P�n�������N��lsP�����*�����w�xnn����1�%S���^[���b�mk��{7o�����
�9�4rT0�V�m���s������\F�����.��i-����)/%{�,':��^��H��tB�H�I�D�`�k�������(A�^N'���@~FJ��V�@�&��")3�J�2��:0]$�*	�3���/�����f���U�f��>
lOhL���z�h�+|�1��
endstream
endobj
2 0 obj
<</Type /Page
/Parent 1 0 R
/Resources <</ProcSets [/PDF /Text /ImageB /ImageC /ImageI]
/ExtGState <</G0 12 0 R
>>
/Font <</F0 14 0 R
/F1 16 0 R
/F2 18 0 R
/F3 15 0 R
>>
>>
/MediaBox [0 0 612 792]
/Annots [<</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [356.0536 254.5042 412.4684 268.2267]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/sql-discard.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [93.0385 214.8612 185.2843 228.5837]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/sql-altersystem.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [93.0385 134.0508 202.0563 147.7733]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/sql-alterdatabase.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [93.0385 94.408 169.2747 108.1305]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/sql-alterrole.html)
>>
>>]
/Contents 3 0 R
>>
endobj
4 0 obj
<</Type /Page
/Parent 1 0 R
/Resources <</ProcSets [/PDF /Text /ImageB /ImageC /ImageI]
/ExtGState <</G0 12 0 R
>>
/Font <</F0 14 0 R
/F1 16 0 R
/F2 18 0 R
/F3 17 0 R
/F4 15 0 R
>>
>>
/MediaBox [0 0 612 792]
/Annots [<</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [93.0385 723.3572 132.6813 737.0797]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/sql-show.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [93.0385 682.9519 115.9093 696.6744]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/sql-set.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [35.0989 614.3392 538.2583 641.7843]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/view-pg-settings.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [65.5934 588.4189 111.3352 602.1415]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/sql-select.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [65.5934 535.0536 115.147 548.7761]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/sql-update.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [469.6456 99.7444 492.5165 113.467]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/sql-set.html)
>>
>>]
/Contents 5 0 R
>>
endobj
6 0 obj
<</Type /Page
/Parent 1 0 R
/Resources <</ProcSets [/PDF /Text /ImageB /ImageC /ImageI]
/ExtGState <</G0 12 0 R
>>
/Font <</F0 14 0 R
/F1 18 0 R
/F2 16 0 R
/F3 15 0 R
/F4 17 0 R
>>
>>
/MediaBox [0 0 612 792]
/Contents 7 0 R
>>
endobj
8 0 obj
<</Type /Page
/Parent 1 0 R
/Resources <</ProcSets [/PDF /Text /ImageB /ImageC /ImageI]
/ExtGState <</G0 12 0 R
>>
/Font <</F0 14 0 R
/F1 16 0 R
/F2 18 0 R
>>
>>
/MediaBox [0 0 612 792]
/Annots [<</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [35.0989 285.761 61.7816 299.4834]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/runtime-config.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [288.9657 285.761 324.7967 299.4834]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/index.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [548.9313 285.761 577.9011 299.4834]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/runtime-config-file-locations.html)
>>
>> <</Type /Annot
/Subtype /Link
/Border [0 0 0]
/Rect [298.114 272.0383 315.6483 285.761]
/A <</Type /Action
/S /URI
/URI (file:///E:/Linux1004Workarea/git-postgresql-org/postgresql/doc/src/sgml/html/runtime-config.html)
>>
>>]
/Contents 9 0 R
>>
endobj
1 0 obj
<</Type /Pages
/Count 5
/Kids [11 0 R 2 0 R 4 0 R 6 0 R 8 0 R]
>>
endobj
3 0 obj
<</Filter /FlateDecode
/Length 13232
>> stream
x��]��o�m�?��@v|�/P
9m���B.���������g�?��f-�%sF#[��Z�,������^�~������������uN�~o��[.k~������o�����?��k�C��_���������?����~�������!G��5�_�������_����_�.������GI�o���������KJy�������j�`���k��)kd�V�>fE���il(��?�X����q���`��Q�2,�1����o��)��6g������m�X6j�l�	2�5�*f2��	o���A0%jw������!��#y�d:	���9����}�������(1`a���!�-B�����R�a
d��>�5��+���+?!p�����	���I�xk4u����\,��o�R��v�����}`k�9��s"��sc#g�������P!��<,����'�B;B��n��Q�:[/����4&�����2��)w��Q�Fg+�qc6�9`EN�+1�Vc�Z�H�$��%	YoI�H��B�*�	���K��������r�T�*��:��u����8�vdq��{E(��Yh�`��B��#K�	�d��trF����)��9�Wf����l�`��s��B�JdT����z}A��,�B�h9�B���VT�ja~�V���2�W�2R�W�M�WQ�,��/:��`���>�^���������F����?�b�������O
���W�~���S]��W����_�g��z��_q�������6�/��n�#��Q�t�@��;�~��"�hwH��GO��FW���F)&`�]j%2�K��zI�Bs�;��"�)���}�Bd�����k�*�"���F~EU��Pf&:�WfT-�2%5�[��NQ���LVTZb����g>[����J�Y�*������m��5��Vf�8��7�X�
���������<���l-��������j�m�x�z[���V�N��.xkGM*[Qg��lT��oC��;F�:���X���,)����6Z��B)L��g�>!-���~Jn�6-=*�������L�����d�=���r���.Q�t������k��dw��:��{��\z&��h;v���[����:x�p�/���ig�d���������n@��	�h��6�;����5��Uw��~�uy�P�3L��\�>����&�[�l�6U�0z�Q���y��^�;^9�X+�<XLsI���A���U1UW�)�B��Jc�*�g�������r;�Qu���L���r_�����g�N����������&��4Ic���Uj3A��&��C��O�k��f&��������T�6�P��B��U�GZ�6Z��-�r9��&t&���mP:�TH�jC[��[`g��ItT`���-�����kqag��]@*����kw0,�I)�Nh��e��=w��XeU��{]�*�q&��+ox���1"�nnunEnC�(���f��v\#�	P����������et;Y���2���f^g�dU���>"�]p$�*AG�
5	�=
�|����)�`���H+F$6A���m2�\��wi��C+-�O&8�=���bwj������k16e����v�lIP�fq�b��hT�<	�����$XQ�.���$x��.V#"wv�����1	�`�E�L�Q�b�o������n������g��������lh���.���&I��I��G2��+7HH�JmN2���UE1{�����DP$.t�i��Ad������H�����j����J��J��7�D;��.�)����A��I���Iu������N����/FqJ��n?.;�G�g����_��s��>�j������\���=@m���+���9�����sjl���.w,](a� ev����
F ��|�B�Hs�k�\&t i�:�r`�>�v���&����Pk�
��k��y'R�:BR�����[��������N��[�B�o�z��4��>w �8��{ iva�Q��r��k���h�����I#�I#�8h����H���@����T�� �iEF��^.����x���o��I �����F��HK��f"�[#���LT�W�1�����p���t����X5�+�s��2���r&@��B��m[�����?yc����U��nuF���l�=S��X�1$x�Nak��
Hs
+@Z������\2�Rv�%j,��������S����O�sM�%��b��8�w��h�4����&P��d�%�o�u��rB��@Ov\��]D��nPe���T�����b���S�!�������n;9r�q(���KT�r����j�bw �^����[�'���{[@Z���V�����2��Xv��;�����nW�����6�Pw����{�2�	P���&[QN���P�"��\)�rE�������
>8�����LX�6���v!\��R8�^$N��KN��R�*h�Z��-��+6�t�W
�����-��e�@E��=��AA+��6�Q^Q$6�U�H�YC���J�r�T#�C	�>���S���E-�.j�-u&���S�����L�x&��=��%���e,���>��`�T[2�[��J����
k�I�&(2)i�57�h����6��N�)'0I1���H�y1���1��c����QO�%1��cg�4������m�Zg��C��u�����P[cP+��P#�T�=�:h{��0a�P�����x&��qn�Y*d�U��c�B�o
ar�"���#��{zL����y.�����J���D/(n>w�t�
���pm��e��;�m����=�ui��CY�Q~�Ob^E��0������W�,tn��C���R����)����q]���(iw���iw����V������kM�k��X���r�;.���:2����(������*�;���,��R���q�4�b�n�+:��#�!�����I����|���^(��a���@�n��`�w���'PM�����Ob����%~,,)��j�����u�sj�R�������kOZ[����6rNH��Yk��������5:x��Y��W)"��������-J�����[Si1���g�v��v�T�"�/V����C���r�;.�Fs���$Xff��R�f?�MW'�\W+�DPD��u�Q	j���m��=��FU
S-xu�T��b�4��6Aumn���Z��u�jt��mF�]'��[�{P.����(�4,��5,�)��,V.�W��m������mc�����.Gw9A����1����;�o���Qy����=S�4�F�t3����k�y#s����3����4h��!�������n	p���*%���P_q�h�>#6���l�P�$��������
�J2���-$\�zi��[�J ��[W7l��j��Q �m Y��X��Bh1��<��E!���\jc�����-��;��)��[����
�l��:#Mu1�j��\5�Z���:�j�&��������D��v�''j�
7Wc�;g��5Td�eF�f�b��]D�����`����jr�z�x��N�$Qw ��1�����\�[��N����F�0��L��ibV#+1��%�kW+*�������b�������b���MJ�LJyo����}��;�-2�-4��e�� m��zl����mu���r�.�����+3�@?sW�o�4MP����CBR\�R[��=���yX���p��t��w����z�I/���[�(/�b��iwZ/$�\����J�n�q�����P�za���u��L]�5� �]���e�Jf��c|�ST&��t��U���W��H��HL���������Z��[*l���)�F/v-Nl[=�a���"q1�P�rG����3����`�%M�C����I�L%�_s9��H����)���[��� ���mb��sw=�O�E�fO��yAc���3@����Rx��!n�1�a���X&�����dD���^{DY�;x��3%��@����S�sW����Gv����N=&����a����y�8���n�9Q.�0��]l��g1�+��jE`a.�����#1����������3)^wE3��e��C5>���&��x�qB=w����q;��l1e�c��'����XK�q�=������������law��CkT�
]���;x�)��6&]�������n�<�������1�o�Y�����&\�u{w���v'�T$�E"(�wo3LF$�afc<�(���G���� "����0u)��� n�3���
@��E��?���UQ���,(@]�+�Z����v'Bm���V���~�`g��cz��q�S���%w�*��L	�'��D�g��Md��}-�����K.L�EC���C;��F]tn��BM���i.����zC��g����H�C���8w*�)i��������Z��.5���*���v��.��(i31�V�Z���*�����)�W��;aL���B�5��v�C��H�!�����I���[��=�6��wtn�3������!��E����W��G��>(
F��Eh���P�����Yt��;����w{hh�wu�z�n\���j\�=jEW�.��o�vt�,>�j���n����������0����x����=4��F>\;�G�R#�����i^t������ye���X��6lW��8��Uk���O
�	xdJ��L�4���W�F���qq~��_e��}#���T�Z��.jhm���-i}2��� !����N�i�D}�`��V3�8��[�����Z5����^�8��]([��n��(�Va{=�H��P���^�~�PE�;i�f��%\��PU�p��6�#k���E7�����`��f�P�]�V���T���Q�	���E���{g�"�sRu�skc�4}���,��@/��[st���7M�Je������J�#�]%��tn����L�5v�a�������$-Q#�+C�@��\�����
#��6@���y������@���B�+�+�z�5�G6��`
7K��]�����zQ�����N�4n���y3g�,L��p3��b��r}(fK�T���ow�25,���
� ���:��,3L��/��\g��<���ub;��Q��s��<*B���
n ����<PT,��	[#�z�lc��
[�tk?��a�;��c�'e(*�s4�JI��q{�2*S��96J"s/��c��x���w��Q^�Pl�����L[
J���NZ:��\)Fb�+1���P���$�.�m�J����JL[�l��T���:���7������V<u-Q3�z�X$Z/K<uM��Z�"i��D�+bykGI2�htpTd�8�Tw�wu6�$�G��^l��f ��b����u�5r�A�(��:]��f�5&����r]?���(��X���W�b��?H��d=��-K���U��b+40����::��JxA��'+�6��p
�G���j������B�����iU���	R�}D�����opP��B9�_;��
L��?@������O��E�����q��c�H������ ���b��i2��0��OO���'g��]���x��4cc��0C���bxnC[��[�������>�h6�����no	����$�*L���F�-�7����D��d�6W��Mt��r�
��?&3Qm���~����|�01Um�������D+�c���4�
�^�'�n`d��u'������\����6�b�
�x[����e����{�f��l��uOa`�w��gj�Z�����k���d���<6"l���!����`"�����Z�kj������a�C��M�U�w���o��$
Bm5M�P�u�;�����m���g���l4�`&�"���j:�p3�`�9���6�{ ���bs��%�]Q�6��r������{�5
c�vt��"#�]��(i��3T
0����'S�b����Iu�
��"����l*����zw���������������knLs�}�&��s:��X�L��?�xE��:���:��o��'r�6�L��_;�3�LE�P�?����5z��
��E�����>:|R'{����h�\r�::���J��C8����,'�#�Q�l�� B����iQ3�b�XD=Q����p��2p��\�l���q�cw����8�zt�����O�ay��P���6;�`d�I�C�M\�{E0��#;����#����P����i�H}�/7���t�+����~
1�Op�t��\q��pa���O���v�O*lm �D/��l�^T��n&�5
/��i���k^�+���0�)F$�.�`�U&�TM~��
������6�/�RU�G3��O4��D/�&��m�=��\��.���������v��R����Q��a:�gf�����]��t#m��&�2U��9Us�
����6F���d����A'��
v��AUQ&�����
P���x���!VE�8����.��l���)]h���K��f�=�>	i����n�#�vd�������c��@����#�=d7��;��\�7o��c��N��atd!��|	qA[nl�Z����-��w���.6�����r
}�R,Jy�7�I^[��,���1i%���}0ik��xaw�rM�1����
%f�[g-F$.���m>rd��zY��=Q[\6�JL��cy�L��vF��]���$V�����
���$���T����;��)_�����G����^���q����je�n�2+��ad[�������AY[O�Q�����x.���q=n�L$R���df�L�
[��H|�s��;.�&q��KM�S�
|���<L���:S46������+�a�l�����������`F�{\y����\���.����	p�	�k?#`E6T0�������G��.��l+u�����B���"�]�$���N0��}����[�I�� ��z��h$2�_���7mOLe�>2f��Gns��#���1e*����5}�(�=��I�	w)��$V9�+���t�����I��$s��Z�TmK�T��xa
y���#�\CX��V�i��xa
}��6%1�5�[��-�]}�����U�wH�e��x!���el�Z��H�L����%A�}��N)G���;�F��3��va�z��F�����X�=���QW����+r�������=��o�`���E�z�!�Bz���A�K��+0���kL����;�u|�����;;Y���l<��ViQ1��f�#��b�O���������`Qc�V$n`����o���e
�{t����$r'�B��l�5�CL�&�;��ZZ��5���@lL�
����A��#�JI����*OF�>���0\�����V������������v�+�qZ� ���|Xw|��3��V��0��Z��}���z��G�[�����.�C&��b<�@'jC�Y��f��{%���e%J���*[���E�������ih5>:��[l��X��&�)i��yO�u��,6Z�{?=���@��ng������.�����w�c���n��X�N�gt�0����{x�*�m==@����pP���3������������M|�3�T�'�1X�}ft5�>A���0�/�a�xR:]�z��+�_��68i(78J���|��%����N����%��O?V �]����l����"��rc������D�1���1�%k��XD���{��0�����k�R���01S+:!�yn�Jc�UQ$����:I����[��w�c���%�Pb�Q��2$��#��k�H���6'��O�������>�kjCO��}��r�S�01���GE�]���]����M�]��`K�����4U�n�.��mOo�p�6��Q�<��#�'g;��r�xp�
���*SG���11E�f7��������Fwg�6���z������.]0��$q�~�����F�@O��p��P�%(3�������s�����M7�����{��O������������?�zK����L��P��Q���}u�Sl�+����a���:�|��|�u'X�����M�'����
��t�G��'.���b��(/�2M���9T����r}�,�\�
�}0�kc�
��93#MC�
�]W��}��[�-����h����R�zbl�rM27r�n;z����mr�����rO��c��.�����40Q���D�Z�@]�v��ca��� ���+2TM�����Cf�Y�M��?�WJ�?l�{j��^��������o�0�����8�-�b��#��-�2���mn�%I�kz)4�\��	�tF�������>c�*W��)��[��������"���M��QS�3~��^�k�q/"'e���:U��\t�z�c��X{4���%a�i�"f�v�����
��X
��3�R.���V��\�c�Xs�&�6�)����w�f��[��p���@]"�6�P�@���-/J���A�����A}������oGmE�
�]K;���<w�M53��J}�������s32Y�Y7��e����W3� V@����zz(g�=<�C�Fv7���<gT
���rPeF��^#�5('�]��3�����lm+�a��[��	�]�8�G2:���m`�#�v5^+35��j`A�������0���9�v/�ai���m�QA���8����6�4W�l�y��r\�M��?w���b6U�b�G3b	jY�n������?��h.��Z�O�������i�X���Gl�z�3����}�
���g�u7�L[Z�NT���.X�E���Q.�s� ���Vf\�����l����`��]�c��,�5AW��|4�-2��\�>��4^���=����g��Pyk��D��c��F������033���k4|}��7��PWQP����I����g�^��}2�Ai�u�
Fv!�]����}G��k,��q�Q#��	��E,W���a��-�+Q�{��ih�s�D�5���pE��pE,�;��v�|��]��[�e�� �]�J�J�����
���j��D�D�����>f������F|���/*��<w�7�j���`t5n��{�D5����i��I�q�/��'@��AZ��W��
h�=��������i����s�� ����@��?��4_���?�����$Q/�%P_w�Z���D�
.53��P���6*m��5�;�@��;������6�=����Dc�T�/��m��P�;��
�"�S��D�bm�������������z�9
;[�����S��
zh��@O-��y]�6rOWQ���������
jc�T����(������w��a��m��d����
�:�Q�����
��O�8das1y�{1S���x�;/�ncX�~�
S����o�f�0����m�SP[��������$��W�r�#�~Ec\������F(�\���<�����1,�g�1��ac��P���[�����W�FzwL��mT�������z�bW����?V�������������Y_��>����7c�q��t����?��[m���/����~M6^���?���|�����|/���h���k���{���
�N`~������z�p��^�������I�y'�\��X>(/���T���@{������������������k�
@]��������MR~�f?14/�@O
W�Ej��
��pu�v�������]���b�B6]�B��.�������e^ZsC��o*�v������`S��MX������1?b7�x����_=r�w���-�
u��/���	�������o�6���z;�%��Fb"��XD��h,���.�%}ft�J]�u1�����16�dwCY�Y4�>bp�LD��4Q3Lu����-������{��(�L������.-�����>���5'�������-p�.��
c�6����>��������Y���������z�ta���:��]�r������%s���m�Z�
�Z�=T���.��'% ��e���hEI0���}WC=,qg_��+������4�(�x�}�]����p
�"2#����78Q�\x��H��=�\��c��'g��6���[���6
 �O�l`�mY����)\����c�����������R��W�����Q�\�I�4�3�{N1[��~gB�h����qEB���1�P���W(��<�m�)S��f����M�[����F�b�W2���Re�F�}�Z�>V��7��.�F�z���Vs�^�B��=Q��3��w�S8wG��Jp*��=N/[�}�=���7�>iD��&�>�F���^<�V@���@-@]��\�"ecdi����W<�_�)����R}R�/�����B�s��n&���v��m����������������HJ����������P.6}p��IB���&�c-E'����c�T9x����<�T}r2f��-���\wd*o�5��}��D�Q�����4��b�6d����3��Q�0R5����'$�����s2.jtE� �R������ZB�tw\�w-?lC�B�F�I�[�%tn�����d��*����4�:9Q��S���t�������oL�+��n�Z\�>"K�#�m�Y�/�m�� �w����yl�bU�-u��*��[�b������F�(������|�\�����7l=��(�Z����6��-|p��}V
�b#�!taS��K�<_(��K@����(��cE�Z��k
�W�B�4�Qyk-��Z��L����Rsg���\-��������*����0�V�;��5�-����V����=)b5��
��x�p�v�3���m`{\*������[�=z�I�6�N4�����*�����(����r���a��KT�����=1���	���U�n��u���F��jmx��e .���R���ZNb�{�u��v����wI7��p��q���Qd����6�k�a�S�.9'Dv9����M�c��u�g��5����@t]ZE�
����@��	 �'��.��&�g����)���bD����������(h
/\����K�����I�AW��bv�iT5�������$�\�1������V���x���#���?�2�
��vc��Owc�����S'�����~�_�2�hU6o�'�E-V#s���m�����Q.��K�uN��t�	�?�~�tg��?3����7X>fq������|������i�?W�{���{��>�{�CA�	��������0���o��|������A����������.�����>������
�N`(���c~�8��?�S��=��?�����g�S��=��������a��}�?w�4��3�;��l]�>�P>(W���v��:��Z���j���z}����W���x��6�sD��n����)x��n�1	�mZ"g�����Dl�0i2���Zm���~�>`��Yta��z&Rn���`�_as�[x(�{y~o�!�
����|�=�cwa<o�[��~z:��ERb\���Qi����'3*-0'����N��������uj�w:&e�3il��<������ses�R��eQ��`w5�F�
5��ePu��k����_���fz(G��r�
�P��A�����:��od���8��pQ�M���w�j�]��0ahz�,ld��1�����5��W�N�Y���2���]���$����K���g����f<��>_R�:�]?�=3�7����)V��sM���"����4=#�	5������1)6*2~���g����|}������6��T�m~����+��p���os���=�c�c?����N��m>_����o��|��������������\��~��c?�����C`(����~�Y�����|��������3���|�����E����}�6��O��n��mN���=`�{�/l�(��}</�{�q���8#�}G��*���>N�_w�\Q���F]�O�"��NN������\s��Nb�j�k��}_���U�v�0�t��]��b.@5�}@�E�F�v)�!��u
�|�����~g�]
�y�����S����-�qM_����M\�-���Q[�aK�l�����$��*fc�h�y���%�����V��Ji��2S-� ���ua���0>h�=������%
%
�J_X1�A�Nw�����h��i����N$a	4BO��e?@���e�Ve�.����}�P��� ��6ot�+	�
��Z��BCl�]9�l?B�a���a���>$��������`W\�{_~1��]�X$�E��|4���9���V��z[)���+[��}���t���-3���x�n�|��������A���2��
�O]�ck�<\������P�o��C���4�L����2�����)
U&-�����6
f�w�z�;R�AraL4�U��
[������~2��k�w���^uw�w�������0�A�H��~H>P����h-�+�P��Oj�5���xQw�}E���-<&M8�'��<%mL��	��!4��{���-Z�@�|H<8���s�\+�s���:�tIg�QF���J��m�;Q�{Z�"��
c��K����p<���LJZ�ku�op���u�YT*�k����!�s�:�3�!S�o��J���	?`��T&����p��9)S��$j����KA�c�2kel�Vs�
�-]�Ec�t6[��*�v�Y2�^��AK���g���u^��w�O��V����v�\�]���������}���t����Ap�pd{�q�3��kVt	=�O�qJ���e2��C�n�-tj�[zp��L�uQ�2���C.��Ga��{!Dk�D%!��B!l�v�
���O�qM��s���
�X�����r�y��\6��7��t������7~����j���qr3����Z�+�>zdnt3���`L��\]�P����i��X�[?q����!j���E���X49�
�^�&���o`{}���O=�c���`�������E]�vv���=�c�i����,����G�%���
z}��*��A���
j\���sOa�#�Z�,*A��S��]b���:�^O�%�?���/��P4
endstream
endobj
5 0 obj
<</Filter /FlateDecode
/Length 11079
>> stream
x��}��&9r��~�z��Dp=��~�h� h40<4~������� OU[h
t�;I2��-}����t������}�o���_������R�.:�[.s|��h�������o��� �9w+��y��������|{������������*{Sk���/�C��|���������o�����_�z�����o�~��o��cJy��o����i��������:1!uJ!��:+b����,X7���X1��mmX�%����P������_�O\������)�z��`��K?=Xj���9	��I��K��@�����}�II���U1�q�h�z��V��\,Y� ��-��z��6�?;pm3XQb`a�,`q�$]�>W�u��1A;a��mzhk���mk��';p�ij_��=M�[��c�gu�:�+�}����EV����k��&s�5�D�3ga5g���@��zT�F�4w���:7����z�!d�*mF�4�_�� &����2��)7��^�zc=��qc��� ��US�� ,�ilIJ�[� ,��JnD��d"�R*�dA+��;��,����v�n���R'��|Ye�^Q�geZXh�(���v��� �?yT�N����Q5�Q5:���L7&��=
����JU"�
V���5�"��Y�����Y
l0����0^���d��'}Y��^U�BH]�^UQ�Nq��@��u0�U���gC�z����\�����v�����+*�����������*������v53��>��Y|j���_��M���8��w��Y��t����|��"���h���mm��S���%������K�O�,5��%��9o��qN���y�\S���Z�	4��;!f��'�f�o|=;I�hy�D����>�H�o����Lc��	cD�|���+�?���K,5�b�?z��������i?����5�7a�������<��d\����x�#z���a��M=~�
=���Lk��������o|�h��N���B[y�~I���'k���C)G;Y����������l���h�����6�����c�d�y8~������2����.To���w���������R��]u>��~)���5��������R����[�����U����b�������|�����R��>�����B,u��E,v�� ��O��O�������W�t7S���|�2z>H�~����x	����/��G�n����������������^��z�k�1A���Cb�i��c������;6]�w���n�������Q��>���)5(��"y��'�O���5q�,����;�\
p����V8�u�!S��Pz���}���t���
�����!�z��7��'�y������V����;�2&e��m��k[�,kL�*�<N�+�XEw�y^���x�Q�>!��r�s�Z�T������vFre<�RY�R&�����a�j����R���J��kc�������iB�������������xx��_�WE��TQ���6��F3�F��$��V�}KKt�h8x]k����"�Us��/wjf���z���'P�\���6������\�3J��\_�6����r��D?O�3�y�'��pX�������2U+�!�T)���sa��#����%�x�|���R���z&�4%}b�y��>����R��'W4O��"��R41���I�i��sZ���gZ,xT�2Yc��W�C�1�U��I����Y���?����U�I�*�&>�r")&N�(�=8i��b��j�$j�����#;����o��:&B�L�*�4�����{$&o���3�83��0�rM��$�rM�B����� T�f����&E���XIE>b���	1�b�/�'���5!v�������&��#��HYA�������?)����w����	����b�������,	�x;\ !u���_	����RNbW�t�t��h�b���X�#!��o�[��	��s�M'�����m����,��>�L|e���
�*�ta���">;1��G��.�[K�xq��!i� CJ���L�"�k�"�3^�F��lbk������H�1�^�[��/���j-�+S�{{��m�^:�C������R�"�|Ye"�m����\J+����:JI�SJ�F$��1_��b2�}B��/Jy&�{E�pMF��F+��2��i�&�C�,3��3��/��k��E�1MUt=!���4�TuL
	����Rg���o	/:P�J��9M
/���R���1���Od���o����U/����M�k-3^��x��&���,��\�e�Vx��b�+����J�&������|��6/"�'<zKo2^k���!��xm(;��x��/"�;��H����7��y��2��X9�p��j��mg��\�(��e*������|g���Q��"
�Z��]QD>�T����(D)1�J��{g�H��P�=����w��T�zQ$���O4���;~;��@������3G�r3Pg�k��@���h�\S4����@��A�c�:3��0UT7"��#Q�54�����h��
���������~�6lh?������A�������
��[�
�8@��RC*��_�|U���:���6��ND}�����9�-��}^``g������S�����#����=�h���t���e-e�i,ru	�v;�����^
��:e2y���L
r1f��4���:�ao;������o���8-S8���BeI��ZS�*�u���)5E�GZ����q�"�C�8)�;b��[�{������V*���<#G�\�}\zD>��J�h�L�dT&`���n&�'n;����BhU��?Y�#i����2��0OSQC�
E�����^�G�hE!a7����&���V��qG�{���?q���O�;v���'kB�)*�9�&Z��D���3����Z����0��K9�5��!���+�c���PD=�E�>E�Y��v������vV�j����OaT[����}�sm;� '�\&-���
���J�K0
��<WwL�X8�)���x���R����6Y��3���C��5S�[�v�33[�=K��H�(�n&����D�Ou(��Q^���bb\�
p��@�F�G�V�����E7B��L�*:*��%!�l��H��#��8���+u��F
_�92���IIC����+�Xu��m������%i[�9�f�����iU&o���y��d��J;�T[�%���:�*6�T��]\
=[H��gA���B��1�hn4��&�����b�G��p}l";���k9d���!v:�]��i��g�j���o*b>�xf_{<�������O����k����1k
{<��������i�V���e���;,�r��0��?wk�4����I���3K�X������.-�����_/�~��l�4���_��8����������^���������i�%��a*�>��uA�R��Q�e��JW?��bs?������2�YW8^F�V8�����]2ki?��F+o�to�c6��;6��xB����:�w����4�<���x����rs�g�;��N$>��D�g?=3�'��1h�'2����2yW��x�����
�g��kl�'�CuV�w"pUQ<�]h������9,p��P��&��3�w)T��f��g�;��(UM��"L�0��M�i���:��6c*wd�Y�'�r3Pg>���o���z��Q�\a@o�+D��_!�������b�D/�~��L�L~&G�k��c��a���4�Ls[�������i^��b{�)6��zg�3)���8B4^��>w���c��soACv�pA5�q�*7+ �KW�����Vo�>�R -~���F�����n�~[�}�����bq�Q$O�v����x%-\���H�$�,���,��y^��CiT�KWZ�I���m9=w�� t��0�l����EC����:��T��C���������L��D�
��Q��!��d %�#�B;&�p�'����{���>���*���A��)�������<�Dy��j��:�V^xi4������
�9m��j�~N;�u4Z���?����oh�����,���V3m� �P���)eK�f�����S+i��~*���Sp������etw�h��'�*���g�c$�p8-�9�p���i�����1�>��[z��;���p�Sx�5�T�p�[�H�����>�3�X����@K��W*�R������1��m����n���t�q���w���������ZI)q���
�J����z����Vb��:�[�s5c��s���!�$�O����K�n����JJ�k%�o�Vr?~�A{������Z�Z���e��%������J��>�~�I������GT�S]j�c��m���������rU������XW8.�K�s���}��V�y��i�F����dK�R���-�<��%�:f3nB��u����1�J�H�#v"	�%�I�8��5*��D������]Q$����~�������f��L���on�'l����'J���G�mOj������3��A��#�pP��Z���T&�q�#l��`8��$�����(���E����&$�[�5S�oG��d��E+ZQ8� `�a�G��p>��=�aP�}�`K�A'u���E
��0�/e�lt�zG�{�T@�RjCts+�R�c�)����k�K��b&�~Re:}�������
�>��_8nIP:��p�L�3URy+����}i���{����Q�6=�m�M�L�K3��>�^�w)@yx��73�w���}�y^��!�1��v,�8�:�w���9�l������8w�v��m�^�>�XE=����m�p�~[c �u�v��\Q�C0�z_R���pYD��I�m�0Udj M�+����iJ��r��=��:.��#���~�yJa�
��M?1�qT��$=����<�"B����*�?s;Vy��	;�W���#�3�}E}/��dZe5�����p2
�������G��v,RZ8i�S2�;�����W
��Q��'�b�D�Z�����(%�7i�2���R�3�
�x|�����8��g�w
b����^4l�P���l+����0�
�g�b���U -.� i��u$m���w�4$m��z)Nr�|R�����v?-�Vk"i!��1;�yf�%Ii�����
[��1��
��E�@ZA�V4o$�����h��6�}�����oE3(>zE3����/TT4n�6�;*�A������~�h���z���#�	ht�
�������	/�O�J��/�����z�N�h�pT��Y����,@Y�P����yo�x�~J}=^��R�����������@��^��R���?������=^������
)*����������Q��0���x�%qx0�4����f h{/�2���\(�*�A�@(�*7����r3�h�S4��]A3�k:HZX��\4A��	�f �v����J-T�v/�0�93��g��IIS4����@�hvQ"i~����Oa�������2
�AH��� �G��r3h�����_k�r����f�E3�e���(�lin4���h�o����A�ZC3��i�@�3�-��
���E�ug����=8�kM��yO��IW������V���=��%'���`e�����4�(����Kaj~�C�p���AKK����c*x�JK��(�=Cg�������T���j�r;gs���Y����-�[�p�{f�����C9�v��ScK��x^����G+%�%���+m��C�:���k4g�JA=�Q�3�����}��M�w�v���N��h��vEW����	�p&C�a�?���aee;p�k��s0n���LV���l{�I����R:��,�w�Q��{6�9r47�B�R����X�K��p�j�1���~)�=iiL����o[�@�5���L����p�^���w��Pi����LS��$q)%1��^��wIA
c���I��_7�-6�_�pw�%����L���LP�dFd�#�\��#8��%L�����@�Qy����{�� c�����lo�\;�*LT=4S��2��KR�y*�����^G#m���l[�~js:&-�z.�H�tC������b�����P���vT�[�)�7Zy�F����c7������!.�+�����qJ@��'�9�����6-�|������0�|��;a��D4<�[X�v��R:����R����e0��V��dZc\�� �F5nR�x���������pTh0�J�r��5�nF[�p02���>"���-l�	�m�hte���'ipd��48jKu>$<$��T��9�|�C�?�fj���6{9�463�{�L��v�{��I��
����y��y��7�E�2��|G;�����@��K�mk�"�����Z�*�����$J����k9Z[��8��g�k��s�)J,��Qh�I�KC�	b���}���s���g�U��!��������pH�f/��>i�cn�L�y|���h��eCv�p	�Y�Y��8����t@��}`Y��H6����!��,�R�}H��tX�8n<BX~@�$��'����O��D���N^�e���2J,���i�fg��T�v��YD%S�����zZ���;C��~Ba��~^U���?z�M�8�XxT&�'�y��:���:Wn��/bj��YQ��>��5Q���'����'�L$uP���z}A���{w�9q�)$0i��6�1��H�"���t���Ig�*��~#����T����!$0��!K��+����c�6Cy����FJw�����������I=UKt�j�L������V&3�'�I��D�����j�~7�v���]�{��?o���s����0���"��)
e�+���JE�=V�/x���o]�{����+��|����Z��2������MSk���Q�4����I�s��Ju�X���=V*%�cu���X]�|�^�{�x�\�=Vk�/��{��Kb{i�����;����Ht�)Z^�p�3�!������JV�k�D4��e�����{�P��M�X8������	�������AO|����g����-��d�ObO�����.P:F��)�8XJ���C��1a)�g(
�����4T�x��3�X�~������a3Se&V���J�v�weFUug���U����.�"��A�F�"Tt.q���~[����0m)L�E��=�qV�B��m�>��G��#��v�9X�5�$v~�9S	���j���V�E�����C[����T��v��7ht�����p�e�=�qv�-w
;E��4*z8q�;;��F��+�V������h��0��?��?t���Mt)���	5���]
�|��CHR*c�m�_��
��a��9���2{f��9I�8��#@Z|93if����m�I���[�q��xn�1�JZ*�XA��Z@\��L��7����R>�k�R����� ���7%��&���*�������3��[fXJ�����I����^8(�iA�[��7 -,J��8n�F�6���%g�����m�&��>h/B�Z��l6BH�����?/�w����9��;#��������A8*#�-��������f����	�A���0E������ ,#4�������M�k��@%Q]�LuM��3����h�h�m��C'
��+�������f�hq��5-T��P]S7��~\�5���=����p���K��{�g���0�P��X4�	�\^[�x$	�+��T���w��vkgL��T8\5R�����g�l�T���[*�+
YY�,�w�X���g������?L�<�/�xX�o��}��gy���Y�eR��Du���'�=�;������P����JEb����<c�Q[*�y|��0m�
����)��[���TY��d&M
���o�o�v�L�dOH���mg��l�[�h�)w�����s�C��;k[%M����c�9�&�D����$�n�
w�T�tE�7l;$'�I:+vKtth���[��2���H"���8��%����5 -���H�o�S�6�s_9��]����xq/�����a�6���������,%��o
a���x��!k��v�|)�&��B��F����A;���.��t,�
76�>�:L ���pl� ���2(���w�L-�Q��t8.^i�wf�lv�=��} ki�G��1�jj�cO��}���[�n��Rz��!M&��:�����C��{�S[�%mOe�KB8$:��[���L�y��>���1|b�s�Zc�`g��|t�&5�'6;�~b��������(�-v��Y$O�un}K���o	�u�|K�]IuMQ$�x8Z��"'��';�����p��A�����B��S�X�hc�Q��:�km(m����	�.���Et���n�f��Q��I��I����(����$����M�����m��o�>L����5(��{���evFZ�|�������RX�������K`Ay��-����%��0y�Q���O�
��!���R�c|Q?���{�����!I]���	�`��N�8'�)����ah���)gJ�dZZ(G-������
p�D��'��Z������tHq�f�g��������j��������:��p�v��v<�W�ca�x���z�R:\�M
������.Q p-�����i�����M�����=���3����3������0m������b�����<�����"�����v�C!S���$f���5V�M��LU.-;�q�[��xR+���VJ�R���L���6�z������4t�!��{h��C&�y�p��2��JG��C��&'vi�Y����e�E����6��D���~*�{_�3�
�����}�����)����	hxr����������\����S�6��W|� ��%�;��&Py�{K)G�cx8r�i��>�����Jgl���g���Y��F�3��
7��t������#�!68L�&�+*r���i�����Olv��"�K#Sc�2���2e�K����c�`Da���M�<�t2�v����)+k[P�C�T���(����4������F=�<Z�p�H����g����:(Wd-T�ZQ�!�MUQQ�C�9�a:)��Q����[q���P����O4u�L
y������s�]�;G~�����J8G~�����}����Z���y��-�y�{���<�KC^I���?���fw�����wM����#�~��=���
x���9�����=G���^��9���-��Bw��_tw�|)�9G���s��;G�����B�N���K�5A��P
p<<��@��'t�7������l���Dn��L��Q�������PM`{�ji;\U��L�[���fe���L��������!�r����DRkc<���YT�i��k�����@8<��Y�%Qu���K�!���Rvfp��We=����2���-M��=�������eP�(^�?�Q���������p��0�j���)���)��x
�S�"��#�{�Ead�T������D3�77tM%�	\aG��r4���*���!j��mE�|�!Q��Q����z4��:2{k�-��e�X�O�Q����.�?��.�'���zZ��+�Q��1{=h!-����g�����'\:W>�C_`�������`�/�o�v�PD>�kO�-l���*���2�{�	�8�c���='k���$p�Lv6�L��;;*���=+�m%�)��s�m2�V��a]�0��9XR9:��J�`��e������Q$�|���*25���[���	�XO�������gtJ����U����&n�L�v�s����<
z��<d��i�v*����{����{�0���p��s=>�)�J�A ��Aj���Ak��5�L��`�}����������Hmr�;��������e�5���&�y#5���f��u���r���
6�7�����-�8W��v�~�0.�^S�vL�"�����f<y���I3��8��k���=tVi�kz����!�+j�n���W#��7�OR��OR����D�fT[jFm������%3�>K����)i
��+��-��a	��C����hI;M=��L�������J;jo-p�FE�b����A�F_���-��c�D%���p����:�t��7�^8�h��G�c�8�n���j��z�����x������2����O�*B�Z���]��[�����/?��v�Z�R�4g-![�i����8���Uw�Lc���G���{���uD}���h����9UV���H�L��K�^8�
�<�lp�w[����-���?�o���������;�]��:RU(��>��72�4&P;\}����}�wQ�f����)L���V�S��u��r��O@C"�������Ki�H���xF��i[*�Zy���4���)��i�
�����#�I�r��Z�pO;�;����Q�c�l��1����1;s��%�C�����B�>�k?6�XL�o�l�Q��c�eR9Z�_X���K��3�����G8����,,UY��h�����5p�����u�����A��K;���D�����)gU�S8�~72A#�%�A�������y��i���I�HZ��Y)S��V'5T4�:��?�{��47uf��&1����>>%
�<���L[25�7�L
����>-�������=5�vX���0�Xx��A���
���zi�}Q��1���R����[#Y��n:���@J�X(��
��3�v4��c��mL,.�8���[��F`���L����g���g���c����Y�{.�
m�'&����oj���O(�O����h�5���vN�l������K���b�&�/9�����PU&�'�:W�:%�W�-���Ybv���~���	z�}�u�����lc���,1�
pf��{���5�)@J���>���j���,��=������1H�Lb�"	�[����+�T�Ohv����8�����T�t��D/a����s�-%F��9;.;�s6;�C�F������9+�!)�D!�l����V�����J��
endstream
endobj
7 0 obj
<</Filter /FlateDecode
/Length 12541
>> stream
x��}k�m9n������zP�l������A�`g�@�����E���Q��W�#��K�$E�_�6�Q>��M���������_����?�R��2���m�_?�������������k�u�������������������_������6��ak|��W����������_������������P�?��h������)�����������5kL��s L�����s���Qr\��i��sB�������|x����:0���}�?x����X�5��<p~��{�>�����V<c����P�����YP*��B>�d���S0�r��s��VqJ�!�<��T�z��5���\3hQa���r�CH6A�C�|���i�$���^��v8l��v�='P�I�<��-�\���NR�����u�V�6l����9���zN�u�:s-D<k6seZ��w:�D�8O!uf������J�PA��z�0�D�~Aw�0.���R������MU)%gc���v47��&9�E���0��0Z�E8�
��V�o+�p��F�jU	[����uB��Z��z�)�:X�s�l���~�3J�����{mP:��MAC��2=j�G�	�{L&�dX���Z�a�&���L66�\=t?|n5�+�	�:h��W�/(��^���[���A#��5F�������g����gYp���.+�U�78�G4S�����m������|������T}��?���j�??���������j��q�-}�����A�u���Z�����O������|��?��e�C��%`-�:m��@�7^}>:�`��W+�������-:y�zp���=������UF��1?�������l@�[��K8��
gY�c�Y���P&I�j�U�4o�e1�<�#����@v:��%jA�9���yG5�����j�;�CJGehG5v� F�v��ar�P
���P
�hqj��������B�xQ�~�P�
WA5(NC����Q
�(�;������������|�x�7���j����S�c����j�����p�?���C�	��W����P���l9���.0�?�
��?�?�	��i�x�'�q���(V������o�}���,���=j���M_R��RQ[���;�*�����{����%5���mt����Q�����9��6�������[�^�ZV���#��
���V��bT;5�{
S��PR����lm�r.�
�T�1q,	���T�X;��Q��c2I}���,�NKm���(���J��{��,������{���QR�O�����g�p�)���nt	�"?Sy��2�N&�&]�S��������������I5V'�X�z9����}��P��qB�/�P��4�b�>�a��wj�M�
���SC�u�~{���.�}���O&<'Y�$������
�|#��{~�*��ZC�,��It�}7�vI��$$���I����wm?z6&kmU���s�E�yA-U�'�N��+e�FI�����Z�H�Q+!�
J��x��F1����E�X�tcR[[jeT�y��:�S;'h���8:Q{�nR��	��lM�6�}�����.K�l���eA��Eq��4����6va�8�R�U��TJ�E����c�,�r�Q�J���UKu�u���i��%*�S�;<i���f�>
6���pm���������4EY+�c%���`v?��17:MbV���ut�����O��	Y�E�^T��j�T5��P�2������G)�[[��O
eD~���2F�bnG���.�G�(�{_���������PO�K�#j��w
({��z1��Nr��B��7��WH�:'��g������TZ�#���������X��qk!�Z������%5���%�Ft�����k�����ks��8U��r�U��XR��z,��i�dQ$j�KF���Q���h������J�s��;=����eEp��"=���=��z�����I;�����m��/���
c�a��;����C�������O���������Y�7��m�P(
P���F���?�1�qjO���\l�����
;j����P	���	IO���*��e�V��F�s�������1�����2�[��j�)��SaD�Pk�hl��"�>D8�c��\JQ�0���=�/������v(!Z�'�E�����k������/9�E(^6�A}��.u�� ��	
�B�K���P<*�����N�����5�b�x�V���\[���	�C��d�������NG+���U����hF�=���R��UJ�Vq����)]�S9k�)x&�mp�S$����A7�@}���B����_K�E��!�3�>��q����Px�����(��](�����
��}�L4������5o[������AT�|G��3;�\qv���@6���sT��	?8O�@�Y�dQc��,U���.x��`Tz<=�w���p�w���E!81�n���G��1)q��o�!�X�� \Dnl1-�QQ+U:�h6C�	��{<�v�}���VM"��<����2��V�!k39aXi��>A��u]�;X��q@/E��R���mC�I/E/F�j�O.J1�B$�A����2�U)�k�}#���G�P��/���0�0�X����pg0
h��P����I�0�����u	s"��X�6R-$Z
��I��zUF��V(��tr4Y�KC���;TZ�"�c>E�i��|W&����-���_0�wi�QM:e�������D�)
y���7spQ���r*k=F�J4���e)�rl Kb�1%��e8��k^�b{�8DZ�:zq�r�465�Z(C�R��~_dc����I'��X�ddQ���:��u�t������a���s=B���3������~V�+|����\��;q�p���h�#��A
s��=J���9����{���Y�$��
a}��1�)�+�gaBU�#�
�uS������������,MYZ�u<t�O��9���2q��AmV&-O4#�a������1R
t�}
�Y�y�TA��v4h�
������Y�%���Tr��
9��`�G�MQ����)�&�K��.�%<��
2��b}n���i���Z�/KN�5���d:�IY{����?E��X���Iaz��	��"i��RC��1������sO��y/���a�e1��J�`�ms*�;L|�:[arA���3j�v^���U�U�^��_h�����}���z	�c��x�3�&���l���u�o��]�2Z��>F�5�Cx���PoS:3nF�����/OphQ���NN
^�nlWJ�=����'���_LY�����-�}�}�(�,������u3�X~�ll
���s����0�e1�X��z�����3���j���/&���;��Q[dQ�T��"e������`\��<n-��R��H�T�.L<,�MPC�����5L�d
#�,jDeQ#*�����Tr��dm4�<D/oZs�����{�np������cr�&Gm	��p,�k���E�R���7�������&�/'4d��qq��Sf��[�����.��h�.�|�,+�;��!�J�U[a[~�g)�����]Q����B=�R�=�#Y����Q�O�w�r����#����z0�s&�����C������z�v��>�a��a�|'��Q�8��:
�d�=74	I,�{�������}O�>�����������\�5s��t7���;�	���9Q���,O�k"�
e<6�PF��4�
+:%�<&��6��������������0�<�fS+%%�)���NG��H�|Q�v�XQ;E��DW��5����E����G��	m����������Q*��,S�����z����,�PC�_Y�����tp��_{u�q�+��������{2(���2�,���f��JhTc��d�*T�U����������	��@}���+���>���Q��������.\7>�s@����~-�L���H���L����l��X,�O&�%��|�
]������0~�^.����r���v�2���s���iIFPk�t��#��6&cIS���@�[���a.�PK������ j���A0�����X�N��uS�v����M
�V�cY��S.��Ae��T^T���Lr-4�o�B���X����G��B�9�E�mL�R���*���d����p��<�A���rg���G76��!��7�\6#�p�q���|"8����������K�
�W
���$����F����7�����pf'���!Y��8�m�xY`5G�v��i�L�F���LN���	�=i�cth/F�h������������V�K�U������M����&�����M��b���������\F�w�Vc��zB)��^l'v�:�o(,79u3���M���B�&�}��5D�8�R���5���s;����9��F���V�1c]��zc]��h�b�y2�����^��G��M�0�hZ�����O��v5�'�Emt����!k�9�1)�����o�*��������B��.:���r��h{B6�#��D-���:P�o��E��r��]�>�^�I���3{A�����5�����vy��!zU��vO�@�G�
��S�&oH�[�����K��Un,�&�*+,$k#C��u�E�uF5k���m�s���q�J'������r�2!nZ�^�`,��A���^�B<@��\mat��$�J4���*��o4+��.��6:EM;][7#r�T4�l�^n*{v�9_[
5&��&�a����@�1{�jP��{�9YD'SA[[�p���G�������T%��T��p'mx��7!�2�MH��
j��R��	�|chk��86�s�{��\�a��f��ddQw��{��:(w���9wP
U���7�����:��{G�y5��7�iK>9�1�P�cAh��<�>�`�������;����sr^��R����'f���P��h�S���C���IS��~1��������������nT%�T&E��60(����7Q���g$���dzK�����,+C���K�l����7���<"8D37������,:�`�$��mJ�^�j1��/Qw�1������>��3
~=��%���O��0u�[�����]�0��o:��|S���$d^���2���r���2�0�Rig�<�sQ��}TDPKbbmlH��~���}[��?~����LC(�<n*c.����Q<�c�2����[&��u:�>d��"x�5m������Q��w��������h�n>9�������Oh�j�V�����[0���>3��g�}�H��-�/���]�MG?��9�,�������)X�|.F4��MP����ak��,�~T����O�k;�o1Q��4A
�3������B'��z[��Xx2�~�Tr�%7�+�0VF�>*cQ�u�r�Q�����X��O��ER��?�����:�A��D-���$k#���9&�\�����8���c)fv�l���,�wu*��h��������Eh>��D/L��Xk��T�����S��
���-�1�����+�'�BDa��3=���`T�A�������T�����c��\�Y���o������/�V�x@/��_���S�������@��U�w���.����.�������-���U�uk�xL��f>`kw;���qNa���8D����`w=� d��v�q1]��i)e�V���K�T�z���F��]�+�\�xX2=�����mr�Kn�����0��U�\]�*HN��*��
B��7q�;gH��
�+���h�s���c�`{�p��0����"��&�*�,Vlj^���D:�E���&Wg6%������K%Y��������a���=���o��k��c����p�7�Ep(�`D��'��b��	Y�{��8�w�P��JEQ�����ypf�A��R��:�dH�7:�r�L�L�������6�������%�VVz@/u�_��.�{�=����c�K]�
1+;��POZ��gq�'����\�R/K���S+]�
�jVR;GM*���:�>�9����=V'zL�?Vc�a���7�7��R�
��{=����[g��4��mW�L
Y����VF�7l�Sm.:��o�X��R3���x�6&������A���u��{�r#K2F��)su�<x����^����R�Ua�[*>'��<��j���D��&�7���gg�)�5��4������ar���a����Wb��#d~o���Qxgn��;��>�	Xy�[����Xy���U�-lj�?�����h���-Fk��;�������)GM)���U�K��;&Wx���`����Rv��T��.8��Y�i�����������ChH������<��vB}�����2�@�e�
cCh����2Xp,�'����j�yP��C-A���TJ��A
9[�F��X<�����I����F��g���
��"j���dDms29����'���ja��>��X���Zh������-������8����]W'�m���j�xr�c���4��	u�:���sq��{z(�����'Gmj�;��c'4�>�Y��Jr�Z��|c��1�ok��oltzNY�'AmT��;^��:�uL�-![(����@sn�z�i�����Q4��o�"E�����:(UQ-B�(��"���r*=�� �_t�������<�5N��=I���~��%!�w������U���l];����b3o����S��o�3'|hH��������.��yQ�QD&����I'�|��0�������._����o�C�4}�<7�&E�#8��F{(���mNP��4�u]I��S�we��s@��4ke��u1%��L9�^�5_[:-����������)���L
:��z�?_��2��"h������O������-��y=��%��O.�2)�-~J&_���o����a��J���dsT�J6g�]���0�Z���Q�����1x(�G3m��>$���"��H+����U.m�Y�NuN�%>1dM����)jQw~}�|'xZ���Q����-t��/,����np�+�;���~��+��>$VvkQ�x��;Y�����0�;�u�L���+_�-A��U-��{_�b�H�"'b��R������G�Es��M����o:������zKP�Rf=Fs1���9C��z.h�SI������Ae�)�5+��9�P	�+�Z�C���@��L�:r,�C~����an��h�m:�xQ6��]�"������9i�.L�;���`��I�J%W����C��|��	
v|�X���0�[�\r_�4U�Q�Q9*5�V�J&o�N��p
�,���*�|�8����N�p�k0�[�c����f�HOQX,x�w����H�Z�����!w/������%Y��x��@�J�p0=�q4�_�"��9���4���n�5���
��f��06td��
�c'@��Z�u���]s�g�����1�Xl�G��������vd��������*����y������������S)lcv�+��]����tc�3�Ln�P��8���m�O�79>���ikU&�m)]{w��x��f�����|�F-CG���.|[A
Y���Z�{��)L\^o5����S��1��%)��=A���1Y'�\&�|t��RY��d�������yT�:�j2PM�%���S���@5���G�[C@��J1�|4��p�m�����������T�M��]�h�bw����h�B�~P"+� �O��0r��8��������,��0=f�z����.@}��3��
�����t����S[*>������}J��gkpLn>m��������1y��T)j��������J`v�%��07����|*J�r�}k9E&�E'��D���d��`_�X#�e�s�zC�B)Tm�]�7������I;F����Y�lL�-I�����T��*�F���}*v�lh{Cz|2
v������P��u3�3�-�=Y��_v��oe����9j�V�������M\���Ny0�t
���;���R2Y���rY���E�p�ojs�P���r�7�:��y;>��+��uN�+�����N�g��\����_����1�r���^��3_�������'w@/w�����
���t��k7rr�Z���;&7&]�wF0������4�\�z�����ev"����="�[��E�����~'��Y�������i�,V]IP�nL�c��~���q�S�.��fQ�\��h.��T4k*JP���<\f�nLa���^�H5�[���� �*\
� ��M�*����L�Q|.��,�����6��u�<��7Eu�}e�e2TG��55����xtjD��;AmP��V�d��;�<8\8���9��p�}���n%�4�.�bSAZ�+�5ur����:�#�����C_h8�6@o���	`���nt�a��+�_���F��U�X?�X�	��8�|����}�>���\^Oj_lWU� �c����]uS�&��������
��=��]�����3����~�����!u*���>����}���P���5.�
�<D�
U��r�Fe���	�������&������
�ct�/�����5 ��fM��H@p1��A�/������<��c2"�r2�05�v�����k�
��&�����t����eqs�Z��6���*��7�
S��h"|����������E���SCf`���J�5�����o�>�6�>�V�l
f��'X`����V�
��Ohx*R`��4����m�`;��ae}��
���fXW��[��\�J'�pRJ�*���b��9�*r+��+�;y�0wJ��)j{��Y7�s�f�3���r����|���$��M����������t��olm��
ij5
��7��J�]��Q{S��0��A�0��|r�y�Snt�	�p�z5&���1�{0az#|)�o����������f��rq����8���������V�]�����A�Ewc���Y�Ah)�j�K/����`�������C�Je�H��&���7�����P�-��I�Z����z�r��@���E�����Tg��K��t��G�#74����M���E=��f%@���0s����9����!��P�^�0�#�h��\��	������e���4W�����-��o������y�1�W�)�C��BQ�J7�E�q�j{�}��KZ���[��A���~B�����1�����4��-�9�y����G*��J��;��;����PI�(��K!dr��j}V�}R�g�'�|����n���tQ�o�Zw�����rP�)
�D*����;�%*=�gC(���Z�C�Q-����@���}Y�F��<���v�����pZ�������8�v��E�����}-J���4)�,��������NI�����������V���z�_h������z'�^�����	
E�����:`�=�������{9b���(][p_�Hp���=�
B�sv�#�kL���@�q��������`W������dtG���	=������h�����u������o��w@
b�oST���}���b�;���}:�<�e����q�O���U�#�����Z#N�C�_c���a)j�4�A���b]�hg�=jhL��
Yxj�q0�sYT�Yc�����	c�����f�3�4
�;L�@qo�#8�y����6&����f�fr�Z��|r��,���2�n���cR�u2aR4�������J����q��Po�����B>M����k��t��l�'���I�	�[7����=��7G����\���3������Ja{��@�W,.������.�dx�{2�[����I:����M'�A1�*�6F5+�#kO����)��V��^����!���#KB��8�!�����S;cIwV(�J8����Pm�4���PK��/��-�j�p�/h����;8�B��jb��������J����I��&��T��[9�*�C]{�����u����a������k�pZ���J4���������[w2j���%!�/�RYSNs�pY8`N���Sr���<�"*�<�y��fV���rB�����nN7���=�w�o��L��W;6����7=���*�C����	k����,����tc��%��7J�_�t)K�(]�vGp��q���C����B1w4�}JG;��v,���:>�T��=2�-�yG��(���	�f�l�3r;b�3��v���^(��m*����6Y�,��o�NFsA�������L>�|P�&���ca����@��u�r��4���ep�2*����2<<�)j�]�X;8iT�$:i����g��/��(W~
�;C>�2�~*9j*��-���A�
���IQ�C�u3{y������Xa<������{�O'^�8���J����c���;�g�������wf���zgsM��=)��$E��#9��Fk�G&���5����7����M������?���B'_J7���"�Y�M����fwp���$����C�R�h���(tgdyk�����"��Yrm�|���z�i��^�dy������%*w�����{��=�nL���)��v��`h�e���fH����L1��9�8��uA-�X�j��b2m{��<��)�cr���`�������`k�5�+C��^!�#QCZ�	��e�Z��|�D��'Qr��H[lE���7�Yo�]r��~;z�"�(R�YbCjT�(_j�;�����7=��'����d�?��})@��W1Oh,)����+@��lf��g��hL��X�Z���B]��Q����N�a����}`��7�������\�&��|c���h����V����}Y�{3�������Q5BJY����/�_���h����7LN��%m5�9�y�8OF�^&�XG�J�Zej�{e����5g7�S����{�#U��
��R&Lo�27��x���bk[/�ct�I����Zq�#Q�d/1�D}������-�-<e�E
�l�%��`�D�R�G����FD/t�>�R�)�������ggDh��o��<��������P{]�T�YB�����3�@�zx���\u,
}k��U�6W�a�k�J����@�+���Y��
��v�]��f��4

�����`X���Z�#��M�k��|j+��wl��8�>+]�u2Z_b���U']��F9����1��>_�d�
�o
;�g�!��`�>'@@-��:�e(���>�\�-�����>��)+��&=mS�zA�BDD���*�ZQ#�b����j��s���.�I��S&��4'��X����E�Ls1�EM�]�����+s*J�������,���@����/r0>���!��o�FT�'���D�%��rS����l -�O�4�%u��	���}�1l
c�$u������B�n�d^�V���������x��LC��9��yw�j���}Y���(�@���������"j�&��<&���R.4��i�s9�W����Va�M`����jV����jV,�����/�*�_�BYeaK�����Z|PP��5	W@�.�)�^��Q[�����W��4�����	�
,IL����~�7�M�)��	l������
�|��P���+�y-E�B���|4:�jw�M��
l�cz6�W`�R�R.4���h#�����_�K��4����Po������c�!���4�
g���7�[����"��e���^q���#8Dc�	p���s���h"8D��[����b�9j������`�[w2�6�h�Y�8X}N���E�RR�uC-�_l����L���w�����Eg;�U.����bN�}a�T;V<!j?�!L�*eY�
Y�B=~e<����.R)���n����p{5qz�����g����)�S_Tp���
q	Qre<��Ns<�s��lZ��Z�%���������U)��2��9*��(�$���������J�;.B�
�wl��t���>_K�W.��~
��3���d�~vVH�����
�����V�k�a�������>�!9V��J&��W�|k��H�1��[�X�{���N� �;}c2r�e���	^�����R����[Q�vC��
����z��/�qC-w�����k
d��������������~�����i\o5��y��G�J�����j;�A�+uJ���N�C�[��}SKE
}����Kp0�bl��sk�F&W��2Q����Z�.�Meo�q������FM��z�=��|z@�!tm-����_x4/J��LQ�#�U5��Ri��&2y/t�N1W��jot
S`Uz���������?��5�
endstream
endobj
9 0 obj
<</Filter /FlateDecode
/Length 6305
>> stream
x��]��,�m}?_� '�HQP����	��\P���?�����)��������E�&��L����[z��]z��Fy�����������|�:�-���>>��/��o���B�*9��|��h��������������������]$��������_������7�����Ho����=�,��[��"o?����R����~��&i�������v�1%4��v;MA��;/U7�-�O?]D1��]1�������q^������{n}�������`{�I<8�qz�l��Wl�r�����er�f"[�D|�H��	��aT��ao���^��<D��A�;�Cp�
���}�?:p�3xQb`a�n`q� =$}'[e'��P_���`;�����l��r��v!�H�:;��Yj��)�]��o�P�?f�]~��N��dN�rN�<sVF93�(����XD.�s�(�3��G�(!�WU��2���x�w��2-���2�����M��$[a�j�F��FWf9�EA�#1��2Y�N4X���*oI�h��B�*��K�D���dA/��?��,Q��,��+��W�I����l�+���2-�<����y�h�;�Vf��1��0�ze\���<2��<g�����H#�RBt$�e>^=VPD��+���-�� ��6��d%��I���-�e�����RbW�=��-o�0d'����V���{G~����G����/�l~�����������>-����E|��_�{�����{,���Z��L������=H���b���R��\����6�w
C���(���BE
�???�C0�I�������j%?����qRn����R_*U��p��L����������B��/+���\~,1�W|���+>�=V+u��*�W���#rY��#��=>0������wwJ���|�Y�w|����G"�Iu��O�k������f���SZ����c���N�Aa�M����3�������B*� $*G<��;!��2	s�X��r>$W�j9��������'���|d��cU���>��:�����i�N�������!����C<� ��'B��|���_��!���%��s��C���'�+�,�;�vU�q1^O�1|��������]��Az��.h?���%����$?S��MM�x�3�S�t}�y��^������|"�8����z����U�c{���1bl�)�z���n��Z:�S���_�i������9��G;�4>G<��������H���u;�eo�v����������G��r���t	+�~CC�h��4�hF�F����r�����_��YP��@��*��|A=�,}:���������a)��J_B�+���_DX�3�k�P��;�3��J(s�v�JBF��q^V�x�Z)�Im�g���V�7WI�*)���y3&���9}A��\����\����\����\��e�s7t� ��!/�G�K�>E�Bc�P/`D}�n;�'������6���z�6o����h bz�p�1�=���N�ikA��n��5*�X��`�����u�w*���;�y�g�z���#$�KF��}���pn�.���n�����3F���8����GB������d>Oe��2P��}$Sc�[;;�g����&a
LjRi����b:�Z�Tj#3��hL�����	e�kY�)*�$Thp	E�Dk�Lc:ga��%f�j4�h��E{����|L�)1��d�+N5��P����\��Z�*:�g#U�"`��B�6���'��d`�����|n�$��)q����
�Xs�����@f�|Rn���V��.s�4��n��q�\��>����h\SNsnhi\��fa<������
�u������r��7&�Y�����uI[�P�N�'�%���	_�}���ae�_n���9[��[�}7��h�^�u��l����O��jfE�����.��XJU:0�C���Eih=>m�)�t����U���:�gY�kq�,��v�z��-�E�g�+��Z�*n�
@jeB�������	kNe~`�2�[��w�5
��f�C�;�W�P�=S�;��)\��QT���1�k��@]�����Y��:��f:�Tt���:���0��n��iaB����9�M!u��\G������X�*�c(��������1
_&h@�j�+h�#�������%h���^��T�|�u�����\�i��/&`+�]�
;L��� g�����x�M��?r+Xz�[xK��v�o�y���-=�������A�/�'=���KL�U��D��*�2�O=_�������{��*���_���Se��Er��t�,J����A���w.�Qc���y|.���/���X|����u����p�	�0)��k~�i�!�M_X�}���������5��y�{���<?��^R��;���i����=0az�\�ewT��X2���:E�.N�~+����a+B�����e�F9G���\�2�]�J����y���}��������_���|NPEaC3��������F}�����>7d���
���L��W��0�h*L����4�ii�5u*
;.4���\���Dj���_��'Z��uQ���6���!C8�UI�����r?�Q5=R�k������R����aKCw���W~R�����\r��SN�Nk���a-�3vX���a-��`��7���=*���r��h���=l��������W�@��)F`���q+�<we���q+3<7�oP\N�(�������e;z��zR��6^;��w�<�Q^���tR�F�����Iq|R�F�3���^������N��zZ<mh(��h���k;��;WhXZ!��7I��1�y�w[���J[�+�[�`@�wXz���7���
p��K�s3&�Y7`�;��n@6������|P&<����
�Ps�������U�o����Z�s
�o3�������2���)
�<<qP����(�^r�*�VM���c�*XS�yO�Zd�|t��<�Fa�%���/�
��
�*����������������B�i5�z������O�%�9?�L��Z3�*��fU�r����&��5�����E��CHSC�#b��$f�&��a0Q�����X���
���db8[��
�}�����d9X���#��d���������;zLV_m��V��'��z�U����uD����q�s�9\��lH������R�������W*{�+
�/��1y����~��w/t`�P�L�:��H��KA8��H�oML�E���>���'�&�uC�������������Na�'�jL
��u�����J#�

�Rw�g�y'>S����NP�5WF\KfS<|�F������_gUj��rO���'����>�������[����Wi��w����JAtP�ZnE��i����&�yub'����|����u�<�} �4�Nk��;�[��b�&N&��L��X���2���0����Q��l�%!/v^���s����������x�hX��hXg��~�������h��"��^�(t��z>no|����?�_G�������L�$�e��)6[��n���u�wW:�>��� ����i��Y�?�GA�k�/���P/Z�����J,��oU�z�WUZ���+�(5�I%�Z�M1�u��/�	�YJ��{�;��{�;��{�;	���N�~ ���4����	!>
sQA/��I��|���Y��S��`���gM!���������3=}���#q_���r>h��n�����{��dn��������9�8��P=k�p�?i���n^���XS�TC�����nE�X����)>����8C���j��1��31k���f)��T��
mG���mC�`GO�16��P��(_����!��z:l��������m��p�"![���~����;;�7�X'�53�g�umL��P���_d-���
����6am��wm�t2���W+��R7�o{i~�cG��*c;/$B[ -�h����/R��\Go{G3���<:�j�.�N:�zB8T�c,���F�����@U�Q�a5��/0)�|(�{�H�|U�(���4V�����d�� ���u��S+���l�/[��Y��C��u��2��lm��5&R�L��&�Lj��������:������$\���Z�*5��p��jL�J��-����p������r�6��	w�Z&���	�T�],COXx�D���U�����J��*�y\xs�j��Z1��c%�F�:h��h�Z��0��3�|N57���B�\�95�������T4I"���H~���������k\�s�.�0k6�9�a�tGcYdG��C[���(7@��x����sa# �s��jN� �D����,�D��lpx��N����K��y��}��wt����R�����
=�^�(n/mmw)6�t{i��.���t�bc�t�b�O�A�O��Zw�k�`*N�u��8�.����Z5h��������\K�:�^�����
?�U�1�#-Kq^����(J��4��� �j�|a'����K��h��G�y���S/���/�h4r{��W��Sw�������t4����4��X�4�;,���h^}��N�������q�Qw��e(s�������=�������z���BOa�m��hC�D��?���%1�fa���4X_��w����_�&��w�,�W���Ul���!�_H���L�I�Qk�4|�f�T��Y��q�.��}

<�t-���I�9�x|b���9?�4��|�(-�z4d�0�8C�d;��:{�*p��2��)�T���k}P����#����6bf���� ���\�����!��x���n���o������\�e��x�3�ut���u��.���#���A9G;�G����Lc�� T�#c�e�+wn
_���3��/��t`B}�����R[�
�JlFl�*x�|�bt�\"�������p�*�K~�VT�n
�q@�N:�X����D��U����
�
���Eh�(�x��j*+�*-��M���������j[�p�?�q�
�����j����j�q����?�����(���O4�����-�����D�`��S[{&������1'j�)E�S���`���j�}J��m���U����mmbkk�����]�o�Q���yx��0��R�*�<^}����6���k��:����j>��~ax���l$��m��"����0^uP���]��"��H���m0����O��f���(�d8kJ=�
�#0���B9�&�p8���:��u���P�t��A��u�)�,���3��'64�4\������]|@���?5m�^[�����(���;������3J��>n������
�E�Cm�(�(o��(y�d`���y(?6��*?np8_Wk�$�]j+��s^���.�VZ*5�U~$��Q���U~�����Q�9��uw�_����� ��+��5���V��}����B�-/����px`W���L��\U����$pgV�z�T*Tj�n��Z�y(N�Gwi�Vt��;0��7���\��>o{���g�������b*��*�!Ue:X������������`���������1$��\�.����#�Q�������NEs6���\�)��i����@��$���^���L����F��^4��H��eWY�����Z�|���;�wa�������P����a�p�
zL���[a�z�tw�t��������8���;�w��;�[��
B��}�3�w��w>�
]w��_
jA�h�(
X
�qo���/��8q:���{�!v/B}n�e��@���KL��!q_!l�J�g:���PW����ak�L%�a������E����}`Z9lH<<��(k
������"�/`(
u����V=�n��p�N���H�R�����4U;����9o4��NcKt�Z;�w�Z���������2��)7��!8�k������&����7��_�NR��m[7<��a��
t@������������~����]W�yo_�cv����p��X0��un�4��z&j���*��P8�}F�������)���^Z���~��z��\4�+��������(Wa��n��h�z�-�X���:�Ny���
����d8���1�<������(���i����d�Q���w�W (�=J�B���~k���ouC�_+_���Bz��~;�����"b�
�U<������5?��`�cm0����2(k����������t~��?^�F
endstream
endobj
xref
0 40
0000000000 65535 f 
0000124791 00000 n 
0000120688 00000 n 
0000124872 00000 n 
0000121832 00000 n 
0000138177 00000 n 
0000123412 00000 n 
0000149329 00000 n 
0000123654 00000 n 
0000161943 00000 n 
0000000015 00000 n 
0000000064 00000 n 
0000012366 00000 n 
0000012461 00000 n 
0000012556 00000 n 
0000012688 00000 n 
0000012822 00000 n 
0000012956 00000 n 
0000013090 00000 n 
0000001238 00000 n 
0000013230 00000 n 
0000040783 00000 n 
0000041159 00000 n 
0000054198 00000 n 
0000054598 00000 n 
0000074540 00000 n 
0000074931 00000 n 
0000088215 00000 n 
0000088592 00000 n 
0000120289 00000 n 
0000013715 00000 n 
0000013929 00000 n 
0000041699 00000 n 
0000041923 00000 n 
0000055390 00000 n 
0000055614 00000 n 
0000075496 00000 n 
0000075722 00000 n 
0000088810 00000 n 
0000089036 00000 n 
trailer
<</Size 40
/Root 10 0 R
>>
startxref
168320
%%EOF
#5Bruce Momjian
bruce@momjian.us
In reply to: David Johnston (#4)
1 attachment(s)
Re: [9.3] Should we mention "set_config(...)" in 18.1.3 in Server Configuration?

On Thu, Jun 12, 2014 at 11:32:49AM -0400, David Johnston wrote:

This addition still needs some work as well as the patch as a whole (see my
comments above). �The attached PDF is the page that results from "make html";
the original patch has been re-attached as well and -hackers copied given the
lack of response on -doc.

I am hoping this change would be something that could be included in 9.4; I
believe the enhancements would be most beneficial to newcomers who are just
getting started with PostgreSQL and would be using 9.4 as their starting point.

[hackers CC removed]

I have reviewed and updated this reworking of our configuration settings
documentation and feel it is ready for application to head and 9.4;
attached.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

Attachments:

config.difftext/x-diff; charset=us-asciiDownload
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
new file mode 100644
index 49547ee..156c264
*** a/doc/src/sgml/config.sgml
--- b/doc/src/sgml/config.sgml
***************
*** 11,17 ****
    <para>
     There are many configuration parameters that affect the behavior of
     the database system. In the first section of this chapter, we
!    describe how to set configuration parameters. The subsequent sections
     discuss each parameter in detail.
    </para>
  
--- 11,17 ----
    <para>
     There are many configuration parameters that affect the behavior of
     the database system. In the first section of this chapter, we
!    describe how to interact with configuration parameters. The subsequent sections
     discuss each parameter in detail.
    </para>
  
***************
*** 23,69 ****
  
      <para>
       All parameter names are case-insensitive. Every parameter takes a
!      value of one of five types: Boolean, integer, floating point,
!      string or enum. Boolean values can be written as <literal>on</literal>,
!      <literal>off</literal>, <literal>true</literal>,
!      <literal>false</literal>, <literal>yes</literal>,
!      <literal>no</literal>, <literal>1</literal>, <literal>0</literal>
!      (all case-insensitive) or any unambiguous prefix of these.
      </para>
  
!     <para>
!      Some settings specify a memory or time value.  Each of these has an
!      implicit unit, which is either kilobytes, blocks (typically eight
!      kilobytes), milliseconds, seconds, or minutes.  Default units can be
!      found by referencing <structname>pg_settings</>.<structfield>unit</>.
!      For convenience,
!      a different unit can also be specified explicitly.  Valid memory units
!      are <literal>kB</literal> (kilobytes), <literal>MB</literal>
!      (megabytes), <literal>GB</literal> (gigabytes), and <literal>TB</literal> (terabytes); valid time units
!      are <literal>ms</literal> (milliseconds), <literal>s</literal>
!      (seconds), <literal>min</literal> (minutes), <literal>h</literal>
!      (hours), and <literal>d</literal> (days).  Note that the multiplier
!      for memory units is 1024, not 1000.
!     </para>
  
!     <para>
!      Parameters of type <quote>enum</> are specified in the same way as string
!      parameters, but are restricted to a limited set of values.  The allowed
!      values can be found
!      from <structname>pg_settings</>.<structfield>enumvals</>.
!      Enum parameter values are case-insensitive.
!     </para>
     </sect2>
  
     <sect2 id="config-setting-configuration-file">
!     <title>Setting Parameters via the Configuration File</title>
  
      <para>
!      One way to set these parameters is to edit the file
       <filename>postgresql.conf</><indexterm><primary>postgresql.conf</></>,
       which is normally kept in the data directory.  (A default copy is
!      installed there when the database cluster directory is
!      initialized.)  An example of what this file might look like is:
  <programlisting>
  # This is a comment
  log_connections = yes
--- 23,121 ----
  
      <para>
       All parameter names are case-insensitive. Every parameter takes a
!      value of one of five types: boolean, integer, floating point,
!      string, or enum.
      </para>
  
!     <itemizedlist>
  
!      <listitem>
!       <para>
!        <emphasis>Boolean</emphasis>: Values can be written as
!        <literal>on</literal>,
!        <literal>off</literal>,
!        <literal>true</literal>,
!        <literal>false</literal>,
!        <literal>yes</literal>,
!        <literal>no</literal>,
!        <literal>1</literal>,
!        <literal>0</literal>
!        (all case-insensitive) or any unambiguous prefix of these.
!       </para>
!      </listitem>
! 
!      <listitem>
!       <para>
!        <emphasis>String:</emphasis> Enclose the value in
!        single-quotes. Values are case-insensitive.  If multiple values
!        are allowed, separate them with commas.
!       </para>
!      </listitem>
! 
!      <listitem>
!       <para>
!        <emphasis>Numeric</emphasis> (integer and floating point): Do not use
!        single-quotes (unless otherwise required) or thousand separators.
!       </para>
!      </listitem>
! 
!      <listitem>
!       <para>
!        <emphasis>Numeric or String with Unit (Memory &amp;
!        Time):</emphasis> These have an implicit unit, which is
!        either kilobytes, blocks (typically eight kilobytes),
!        milliseconds, seconds, or minutes.  An numeric value
!        will use the default, which can be found by referencing
!        <structname>pg_settings</>.<structfield>unit</>.  For convenience,
!        a different unit can also be specified explicitly via a string
!        value. It is case-sensitive and may include whitespace between
!        the value and the unit.
! 
!        <itemizedlist>
!         <listitem>
!          <para>
!           Valid memory units are <literal>kB</literal> (kilobytes),
!           <literal>MB</literal> (megabytes), <literal>GB</literal>
!           (gigabytes), and <literal>TB</literal> (terabytes).
!           The multiplier for memory units is 1024, not 1000.
!          </para>
!         </listitem>
!  
!         <listitem>
!          <para>
!           Valid time units are <literal>ms</literal> (milliseconds),
!           <literal>s</literal> (seconds), <literal>min</literal> (minutes),
!           <literal>h</literal> (hours), and <literal>d</literal> (days).
!          </para>
!         </listitem>
!        </itemizedlist>
!       </para>
!      </listitem>
! 
!      <listitem>
!       <para>
!        <emphasis><quote>enum</>:</emphasis> These are specified
!        in the same way as string parameters, but are restricted
!        to a limited set of values that can be queried from
!        <structname>pg_settings</>.<structfield>enumvals</>:
! <programlisting>
! SELECT name, setting, enumvals FROM pg_settings WHERE enumvals IS NOT NULL;
! </programlisting>
!        Enum parameter values are case-insensitive.
!       </para>
!      </listitem>
!     </itemizedlist>
     </sect2>
  
     <sect2 id="config-setting-configuration-file">
!     <title>Parameter Interaction via Configuration File</title>
  
      <para>
!      The primary way to set these parameters is to edit the file
       <filename>postgresql.conf</><indexterm><primary>postgresql.conf</></>,
       which is normally kept in the data directory.  (A default copy is
!      installed when the database cluster directory is initialized.)
!      An example of what this file might look like is:
  <programlisting>
  # This is a comment
  log_connections = yes
*************** log_destination = 'syslog'
*** 71,197 ****
  search_path = '"$user", public'
  shared_buffers = 128MB
  </programlisting>
!      One parameter is specified per line. The equal sign between name and
!      value is optional. Whitespace is insignificant and blank lines are
!      ignored. Hash marks (<literal>#</literal>) designate the remainder of the
!      line as a comment.  Parameter values that are not simple identifiers or
!      numbers must be single-quoted.  To embed a single quote in a parameter
!      value, write either two quotes (preferred) or backslash-quote.
      </para>
  
      <para>
       <indexterm>
!       <primary>SIGHUP</primary>
       </indexterm>
       The configuration file is reread whenever the main server process
       receives a <systemitem>SIGHUP</> signal;  this is most easily done by
       running <literal>pg_ctl reload</> from the command-line or by calling
       the SQL function <function>pg_reload_conf()</function>. The main
!      server process
!      also propagates this signal to all currently running server
!      processes so that existing sessions also get the new
!      value. Alternatively, you can send the signal to a single server
!      process directly.  Some parameters can only be set at server start;
!      any changes to their entries in the configuration file will be ignored
!      until the server is restarted.  Invalid parameter settings in the
!      configuration file are likewise ignored (but logged) during
!      <systemitem>SIGHUP</> processing.
      </para>
     </sect2>
  
!    <sect2 id="config-setting-other-methods">
!     <title>Other Ways to Set Parameters</title>
  
!     <para>
!      A second way to set these configuration parameters is to give them
!      as a command-line option to the <command>postgres</command> command,
!      such as:
! <programlisting>
! postgres -c log_connections=yes -c log_destination='syslog'
! </programlisting>
!      Command-line options override any conflicting settings in
!      <filename>postgresql.conf</filename>.  Note that this means you won't
!      be able to change the value on-the-fly by editing
!      <filename>postgresql.conf</filename>, so while the command-line
!      method might be convenient, it can cost you flexibility later.
!     </para>
  
!     <para>
!      Occasionally it is useful to give a command line option to
!      one particular session only. The environment variable
!      <envar>PGOPTIONS</envar> can be used for this purpose on the
!      client side:
! <programlisting>
! env PGOPTIONS='-c geqo=off' psql
! </programlisting>
!      (This works for any <application>libpq</>-based client application, not
!      just <application>psql</application>.) Note that this won't work for
!      parameters that are fixed when the server is started or that must be
!      specified in <filename>postgresql.conf</filename>.
!     </para>
  
!     <para>
!      Furthermore, it is possible to assign a set of parameter settings to
!      a user or a database.  Whenever a session is started, the default
!      settings for the user and database involved are loaded.  The
!      commands <xref linkend="sql-alterrole">
!      and <xref linkend="sql-alterdatabase">,
!      respectively, are used to configure these settings.  Per-database
!      settings override anything received from the
!      <command>postgres</command> command-line or the configuration
!      file, and in turn are overridden by per-user settings; both are
!      overridden by per-session settings.
      </para>
  
      <para>
!      Some parameters can be changed in individual <acronym>SQL</acronym>
!      sessions with the <xref linkend="SQL-SET">
!      command, for example:
! <screen>
! SET ENABLE_SEQSCAN TO OFF;
! </screen>
!      If <command>SET</> is allowed, it overrides all other sources of
!      values for the parameter. Some parameters cannot be changed via
!      <command>SET</command>: for example, if they control behavior that
!      cannot be changed without restarting the entire
!      <productname>PostgreSQL</productname> server.  Also, some parameters
!      require superuser permission to change via <command>SET</command> or
!      <command>ALTER</>.
      </para>
  
!     <para>
!      Another way to change configuration parameters persistently is by
!      use of <xref linkend="SQL-ALTERSYSTEM">
!      command, for example:
! <screen>
! ALTER SYSTEM SET checkpoint_timeout TO 600;
! </screen>
!      This command will allow users to change values persistently
!      through SQL command. The values will be effective after reload of server configuration
!      (<acronym>SIGHUP</>) or server startup. The effect of this command is similar to when
!      user manually changes values in <filename>postgresql.conf</filename>.
      </para>
     </sect2>
  
!    <sect2 id="config-setting-examining">
!     <title>Examining Parameter Settings</title>
  
!     <para>
!      The <xref linkend="SQL-SHOW">
!      command allows inspection of the current values of all parameters.
!     </para>
  
!     <para>
!      The virtual table <structname>pg_settings</structname> also allows
!      displaying and updating session run-time parameters;  see <xref
!      linkend="view-pg-settings"> for details and a description of the
!      different variable types and when they can be changed.
!      <structname>pg_settings</structname> is equivalent to <command>SHOW</>
!      and <command>SET</>, but can be more convenient
!      to use because it can be joined with other tables, or selected from using
!      any desired selection condition. It also contains more information about
!      each parameter than is available from <command>SHOW</>.
!     </para>
  
     </sect2>
  
--- 123,310 ----
  search_path = '"$user", public'
  shared_buffers = 128MB
  </programlisting>
!      One parameter is specified per line. The equal sign between name
!      and value is optional. Whitespace is insignificant and blank
!      lines are ignored. Hash marks (<literal>#</literal>) designate the
!      remainder of lines as comments.  Parameter values that are not simple
!      identifiers or numbers must be single-quoted.  To embed a single
!      quote in a parameter value, write either two quotes (preferred)
!      or backslash-quote.
!     </para>
! 
!     <para>
!      Parameters set in this way provide default values for the cluster.
!      The setting seen by active sessions will be this value unless
!      it is overridden.  The following sections describe ways in which the
!      administrator or user can override these defaults.
      </para>
  
      <para>
       <indexterm>
!        <primary>SIGHUP</primary>
       </indexterm>
       The configuration file is reread whenever the main server process
       receives a <systemitem>SIGHUP</> signal;  this is most easily done by
       running <literal>pg_ctl reload</> from the command-line or by calling
       the SQL function <function>pg_reload_conf()</function>. The main
!      server process also propagates this signal to all currently running
!      server processes so that existing sessions also get the new value
!      when they complete their transactions.  Alternatively, you can
!      send the signal to a single server process directly.  Some parameters
!      can only be set at server start; any changes to their entries in the
!      configuration file will be ignored until the server is restarted.
!      Invalid parameter settings in the configuration file are likewise
!      ignored (but logged) during <systemitem>SIGHUP</> processing.
      </para>
     </sect2>
  
!    <sect2 id="config-setting-sql-command-interaction">
!     <title>Parameter Interaction via SQL</title>
!      <para>
!        <productname>PostgreSQL</productname> provides three SQL
!        commands to establish configuration defaults that override those
!        configured globally.  The evaluation of these defaults occurs
!        at the beginning of a new session, upon the user issuing <xref
!        linkend="SQL-DISCARD">, or if the server forces the session to
!        reload its configuration after a <systemitem>SIGHUP</systemitem>
!        signal.
!      </para>
  
!      <itemizedlist>
!       <listitem>
!        <para>
!         The <xref linkend="SQL-ALTERSYSTEM"> command provides an
!         SQL-accessible means of changing global defaults.
!       </para>
!      </listitem>
  
!      <listitem>
!       <para>
!        The <xref linkend="sql-alterdatabase"> command allows database
!        administrators to override global settings on a per-database basis.
!       </para>
!      </listitem>
  
!      <listitem>
!       <para>
!        The <xref linkend="sql-alterrole"> command allows database
!        administrators to override both global and per-database settings
!        with user-specific values.
!       </para>
!      </listitem>
!     </itemizedlist>
! 
!      <para>
!       Once a client connects to the database PostgreSQL provides
!       two additional SQL commands to interact with session-local
!       configuration settings.  Both of these commands have equivalent
!       system administration functions.
      </para>
  
+     <itemizedlist>
+      <listitem>
+      <para>
+       The <xref linkend="SQL-SHOW"> command allows inspection of the
+       current value of all parameters.  The corresponding function is
+       <function>current_setting(setting_name text)</function>.
+      </para>
+      </listitem>
+ 
+      <listitem>
+       <para>
+        The <xref linkend="SQL-SET"> command allows modification of the
+        current value of some parameters.  The corresponding function is
+        <function>set_config(setting_name, new_value, is_local)</function>.
+       </para>
+      </listitem>
+     </itemizedlist>
+ 
      <para>
!      Both <command>SELECT</> and <command>UPDATE</>
!      can be issued against the system view <link
!      linkend="view-pg-settings"><structname>pg_settings</></> to view
!      and change session-local values.
      </para>
  
!     <itemizedlist>
!      <listitem>
!       <para>
!        Querying this view is the sames as <command>SHOW</> but provides
!        more detail, as well as allowing for joins against other relations
!        and the specification of filter criteria.
!       </para>
!      </listitem>
! 
!     <listitem>
!      <para>
!        Using <xref linkend="SQL-UPDATE"> on this relation, specifically
!        updating the <structname>setting</> column, is the equivalent
!        of issuing SQL <command>SET</>, though all values must be
!        single-quoted.  Note that the equivalent of
! <programlisting>
! SET configuration_parameter TO DEFAULT;
! </>
!       is:
! <programlisting>
! UPDATE pg_settings SET setting = reset_val WHERE name = 'configuration_parameter';
! </programlisting>
      </para>
+     </listitem>
+    </itemizedlist>
+ 
     </sect2>
  
!    <sect2>
!     <title>Parameter Interaction via Shell</title>
!      <para>
!       In addition to setting global defaults or attaching
!       overrides at the database or role level, you can pass setting to
!       <productname>PostgreSQL</productname> via shell facilities.
!       Both the server and <application>libpq</> client library
!       accept parameter values via the shell.
!      </para>
  
!      <itemizedlist>
!       <listitem>
!       <para>
!        On the <emphasis>server</emphasis>, command-line options can be
!        passed to the <command>postgres</command> command directly via the
!        <option>-c</> parameter.
! <programlisting>
! postgres -c log_connections=yes -c log_destination='syslog'
! </programlisting>
!        Settings provided this way override those resolved globally (via
!        <filename>postgresql.conf</> or <command>ALTER SYSTEM</>) but
!        are otherwise treated as being global for the purpose of database
!        and role overrides.
!      </para>
!     </listitem>
  
!     <listitem>
!      <para>
!       On the <emphasis>libpq-client</emphasis>, command-line options can be
!       specified using the <envar>PGOPTIONS</envar> environment variable.
!       When connecting to the server, the contents of this variable are
!       sent to the server as if they were being executed via SQL <xref
!       linkend="SQL-SET"> at the beginning of the session.
!      </para>
! 
!      <para>
!       However, the format of <envar>PGOPTIONS</envar> is similar to that
!       used when launching the <command>postgres</command> command.
!       Specifically, the <option>-c</> flag must be specified.
! <programlisting>
! env PGOPTIONS="-c geqo=off -c statement_timeout='5 min'" psql
! </programlisting>
!      </para>
! 
!      <para>
!       Other clients and libraries might provide their own mechanisms,
!       via the shell or otherwise, that allow the user to alter session
!       settings without requiring the user to issue SQL commands.
!      </para>
!     </listitem>
!    </itemizedlist>
  
     </sect2>
  
#6David Johnston
david.g.johnston@gmail.com
In reply to: Bruce Momjian (#5)
Re: [9.3] Should we mention "set_config(...)" in 18.1.3 in Server Configuration?

On Tue, Sep 9, 2014 at 3:13 PM, Bruce Momjian <bruce@momjian.us> wrote:

On Thu, Jun 12, 2014 at 11:32:49AM -0400, David Johnston wrote:

This addition still needs some work as well as the patch as a whole (see

my

comments above). The attached PDF is the page that results from "make

html";

the original patch has been re-attached as well and -hackers copied

given the

lack of response on -doc.

I am hoping this change would be something that could be included in

9.4; I

believe the enhancements would be most beneficial to newcomers who are

just

getting started with PostgreSQL and would be using 9.4 as their starting

point.

[hackers CC removed]

I have reviewed and updated this reworking of our configuration settings
documentation and feel it is ready for application to head and 9.4;
attached.

Minor corrections:

​First block: "
In the first section of this chapter, we
describe how to set configuration parameters"​

​- remove the comma

​Second Block:
- placement of the colon inside or outside of the emphasis tag is
inconsistent (string, unit, enum are inside; boolean and ​numeric are
outside)
- units: "An numeric value..." -> maybe "An unadorned numeric value...

​Third block:
​"Hash marks (<literal>#</literal>) designate the remainder of lines as
comments." -> "...designate the remainder of the line as a comment." I
read this at first as "remaining lines [in the file] ... "

"To embed a single quote in a parameter value, write either two quotes
(preferred) or backslash-quote." -> remove the comma
"Querying this view is the sames as" -> "the same as"
"In addition to setting global defaults or attaching" <- add a comma after
"defaults"

A few extra commas here-and-there which seem to have replaced my use of
colons but that maybe should just be removed completely. If I didn't note
it above it seemed OK to leave in (or I missed it entirely...)

David J.

#7Bruce Momjian
bruce@momjian.us
In reply to: David Johnston (#6)
1 attachment(s)
Re: [9.3] Should we mention "set_config(...)" in 18.1.3 in Server Configuration?

On Tue, Sep 9, 2014 at 03:40:45PM -0400, David Johnston wrote:

Minor corrections:

​First block: "
In the first section of this chapter, we
 describe how to set configuration parameters"​
 
​- remove the comma

​Second Block: 
- placement of the colon inside or outside of the emphasis tag is inconsistent
(string, unit, enum are inside; boolean and ​numeric are outside)
- units:  "An numeric value..." -> maybe "An unadorned numeric value...

​Third block:
​"Hash marks (<literal>#</literal>) designate the remainder of lines as
comments." -> "...designate the remainder of the line as a comment."  I read
this at first as "remaining lines [in the file] ... "

"To embed a single quote in a parameter value, write either two quotes
(preferred) or backslash-quote." -> remove the comma
"Querying this view is the sames as" -> "the same as"

I agree all of the above are improvements, and changed.

"In addition to setting global defaults or attaching" <- add a comma after
"defaults"

I didn't like this change as it causes too many comma phrases.

Attaches are the changes since yesterday's patch. The full patch is at:

ftp://momjian.us/postgresql/mypatches/config.diff

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

Attachments:

change.difftext/x-diff; charset=us-asciiDownload
commit 01cbe3a4949664f3b001a7d3be7990d37fc8a291
Author: Bruce Momjian <bruce@momjian.us>
Date:   Wed Sep 10 15:49:06 2014 -0400

    dummy commit

diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
new file mode 100644
index 156c264..4a97855
*** a/doc/src/sgml/config.sgml
--- b/doc/src/sgml/config.sgml
***************
*** 10,16 ****
  
    <para>
     There are many configuration parameters that affect the behavior of
!    the database system. In the first section of this chapter, we
     describe how to interact with configuration parameters. The subsequent sections
     discuss each parameter in detail.
    </para>
--- 10,16 ----
  
    <para>
     There are many configuration parameters that affect the behavior of
!    the database system. In the first section of this chapter we
     describe how to interact with configuration parameters. The subsequent sections
     discuss each parameter in detail.
    </para>
***************
*** 31,37 ****
  
       <listitem>
        <para>
!        <emphasis>Boolean</emphasis>: Values can be written as
         <literal>on</literal>,
         <literal>off</literal>,
         <literal>true</literal>,
--- 31,37 ----
  
       <listitem>
        <para>
!        <emphasis>Boolean:</emphasis> Values can be written as
         <literal>on</literal>,
         <literal>off</literal>,
         <literal>true</literal>,
***************
*** 54,61 ****
  
       <listitem>
        <para>
!        <emphasis>Numeric</emphasis> (integer and floating point): Do not use
!        single-quotes (unless otherwise required) or thousand separators.
        </para>
       </listitem>
  
--- 54,62 ----
  
       <listitem>
        <para>
!        <emphasis>Numeric (integer and floating point):</emphasis> Do
!        not use single-quotes (unless otherwise required) or thousand
!        separators.
        </para>
       </listitem>
  
***************
*** 64,71 ****
         <emphasis>Numeric or String with Unit (Memory &amp;
         Time):</emphasis> These have an implicit unit, which is
         either kilobytes, blocks (typically eight kilobytes),
!        milliseconds, seconds, or minutes.  An numeric value
!        will use the default, which can be found by referencing
         <structname>pg_settings</>.<structfield>unit</>.  For convenience,
         a different unit can also be specified explicitly via a string
         value. It is case-sensitive and may include whitespace between
--- 65,72 ----
         <emphasis>Numeric or String with Unit (Memory &amp;
         Time):</emphasis> These have an implicit unit, which is
         either kilobytes, blocks (typically eight kilobytes),
!        milliseconds, seconds, or minutes.  A unadorned numeric
!        value will use the default, which can be found by referencing
         <structname>pg_settings</>.<structfield>unit</>.  For convenience,
         a different unit can also be specified explicitly via a string
         value. It is case-sensitive and may include whitespace between
*************** log_destination = 'syslog'
*** 123,134 ****
  search_path = '"$user", public'
  shared_buffers = 128MB
  </programlisting>
!      One parameter is specified per line. The equal sign between name
!      and value is optional. Whitespace is insignificant and blank
!      lines are ignored. Hash marks (<literal>#</literal>) designate the
!      remainder of lines as comments.  Parameter values that are not simple
       identifiers or numbers must be single-quoted.  To embed a single
!      quote in a parameter value, write either two quotes (preferred)
       or backslash-quote.
      </para>
  
--- 124,135 ----
  search_path = '"$user", public'
  shared_buffers = 128MB
  </programlisting>
!      One parameter is specified per line. The equal sign between name and
!      value is optional. Whitespace is insignificant and blank lines are
!      ignored. Hash marks (<literal>#</literal>) designate the remainder
!      of the line as a comment.  Parameter values that are not simple
       identifiers or numbers must be single-quoted.  To embed a single
!      quote in a parameter value write either two quotes (preferred)
       or backslash-quote.
      </para>
  
*************** shared_buffers = 128MB
*** 229,235 ****
      <itemizedlist>
       <listitem>
        <para>
!        Querying this view is the sames as <command>SHOW</> but provides
         more detail, as well as allowing for joins against other relations
         and the specification of filter criteria.
        </para>
--- 230,236 ----
      <itemizedlist>
       <listitem>
        <para>
!        Querying this view is the same as <command>SHOW</> but provides
         more detail, as well as allowing for joins against other relations
         and the specification of filter criteria.
        </para>
#8David Johnston
david.g.johnston@gmail.com
In reply to: Bruce Momjian (#7)
Re: [9.3] Should we mention "set_config(...)" in 18.1.3 in Server Configuration?

On Wed, Sep 10, 2014 at 4:20 PM, Bruce Momjian <bruce@momjian.us> wrote:

On Tue, Sep 9, 2014 at 03:40:45PM -0400, David Johnston wrote:

"In addition to setting global defaults or attaching" <- add a comma

after

"defaults"

I didn't like this change as it causes too many comma phrases.

Attaches are the changes since yesterday's patch. The full patch is at:

ftp://momjian.us/postgresql/mypatches/config.diff

​At minimum the word "setting" in that paragraph needs to be made plural.
", you can pass settings to <productname>PostgreSQL..."​

​I'm not particularly fond of the overly long preamble burying the "shell
facilities" - and the resultant comma separating the two - but cannot think
of anything better. Not having the transition makes it too short and curt.
The proposed second comma helped to at least break it up but it too
doesn't sound all that great.

I'm good for just making the plural fix and calling it a day.

David J.

#9Bruce Momjian
bruce@momjian.us
In reply to: David Johnston (#8)
Re: [9.3] Should we mention "set_config(...)" in 18.1.3 in Server Configuration?

On Wed, Sep 10, 2014 at 08:09:30PM -0400, David Johnston wrote:

On Wed, Sep 10, 2014 at 4:20 PM, Bruce Momjian <bruce@momjian.us> wrote:

On Tue, Sep  9, 2014 at 03:40:45PM -0400, David Johnston wrote:

"In addition to setting global defaults or attaching" <- add a comma

after

"defaults"

I didn't like this change as it causes too many comma phrases.

Attaches are the changes since yesterday's patch.  The full patch is at:

        ftp://momjian.us/postgresql/mypatches/config.diff

​At minimum the word "setting" in that paragraph needs to be made plural. ",
you can pass settings to <productname>PostgreSQL..."​

Oh, good point, fixed.

​I'm not particularly fond of the overly long preamble burying the "shell
facilities" - and the resultant comma separating the two - but cannot think of
anything better.  Not having the transition makes it too short and curt.  The
proposed second comma helped to at least break it up but it too doesn't sound
all that great.

I'm good for just making the plural fix and calling it a day.

Modified patch applied to head and 9.4.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs