From 2c17cb1bd27658ac7a72cb9eccb4b048e9d0ec5f Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 18 Mar 2003 07:13:15 +0000 Subject: Add t_strcmp test/torture harness. --- source/Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/Makefile.in b/source/Makefile.in index 88e616de479..8d7276b240a 100644 --- a/source/Makefile.in +++ b/source/Makefile.in @@ -1028,7 +1028,10 @@ bin/tdbbackup@EXEEXT@: $(TDBBACKUP_OBJ) bin/.dummy @echo Linking $@ @$(CC) $(FLAGS) -o $@ $(TDBBACKUP_OBJ) -bin/t_stringoverflow: bin/libbigballofmud.@SHLIBEXT@ torture/t_stringoverflow.o +bin/t_strcmp@EXEEXT@: bin/libbigballofmud.@SHLIBEXT@ torture/t_strcmp.o + $(CC) $(FLAGS) -o $@ $(LIBS) torture/t_strcmp.o -L ./bin -lbigballofmud + +bin/t_stringoverflow@EXEEXT@: bin/libbigballofmud.@SHLIBEXT@ torture/t_stringoverflow.o $(CC) $(FLAGS) -o $@ torture/t_stringoverflow.o -L./bin -lbigballofmud install: installbin installman installscripts installdat installswat -- cgit From f7f692b2db4dd513068d6d8fed2792186933ddda Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 18 Mar 2003 07:31:49 +0000 Subject: Step one of optimizations for StrCaseCmp: First of all, do a char-by-char walk through both buffers until we get to a non-ascii character, or a difference between the strings. This prefix can be directly compared without needing to call into iconv. This should be much faster for strings that are either all ascii, or differ near the start. --- source/lib/util_str.c | 79 ++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 72 insertions(+), 7 deletions(-) diff --git a/source/lib/util_str.c b/source/lib/util_str.c index 8ef4ddade61..5157de0d910 100644 --- a/source/lib/util_str.c +++ b/source/lib/util_str.c @@ -1,8 +1,10 @@ /* Unix SMB/CIFS implementation. Samba utility functions + Copyright (C) Andrew Tridgell 1992-2001 Copyright (C) Simo Sorce 2001-2002 + Copyright (C) Martin Pool 2003 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,6 +23,11 @@ #include "includes.h" +/** + * @file + * @brief String utilities. + **/ + /** * Get the next token from a string, return False if none found. * Handles double-quotes. @@ -140,21 +147,79 @@ char **toktocliplist(int *ctok, const char *sep) } /** - Case insensitive string compararison. -**/ - + * Case insensitive string compararison. + * + * iconv does not directly give us a way to compare strings in + * arbitrary unix character sets -- all we can is convert and then + * compare. This is expensive. + * + * As an optimization, we do a first pass that considers only the + * prefix of the strings that is entirely 7-bit. Within this, we + * check whether they have the same value. + * + * Hopefully this will often give the answer without needing to copy. + * In particular it should speed comparisons to literal ascii strings + * or comparisons of strings that are "obviously" different. + * + * If we find a non-ascii character we fall back to converting via + * iconv. + * + * This should never be slower than convering the whole thing, and + * often faster. + * + * A different optimization would be to compare for bitwise equality + * in the binary encoding. (It would be possible thought hairy to do + * both simultaneously.) But in that case if they turn out to be + * different, we'd need to restart the whole thing. + * + * Even better is to implement strcasecmp for each encoding and use a + * function pointer. + **/ int StrCaseCmp(const char *s, const char *t) { + + const char * ps, * pt; pstring buf1, buf2; - unix_strupper(s, strlen(s)+1, buf1, sizeof(buf1)); - unix_strupper(t, strlen(t)+1, buf2, sizeof(buf2)); - return strcmp(buf1,buf2); + + for (ps = s, pt = t; ; ps++, pt++) { + char us, ut; + + if (!*ps && !*pt) + return 0; /* both ended */ + else if (!*ps) + return -1; /* s is a prefix */ + else if (!*pt) + return +1; /* t is a prefix */ + else if ((*ps & 0x80) || (*pt & 0x80)) + /* not ascii anymore, do it the hard way from here on in */ + break; + + us = toupper(*ps); + ut = toupper(*pt); + if (us == ut) + continue; + else if (us < ut) + return -1; + else if (us > ut) + return +1; + } + + /* TODO: Don't do this with a fixed-length buffer. This could + * still be much more efficient. */ + /* TODO: Hardcode a char-by-char comparison for UTF-8, which + * can be much faster. */ + /* TODO: Test case for this! */ + + unix_strupper(ps, strlen(ps)+1, buf1, sizeof(buf1)); + unix_strupper(pt, strlen(pt)+1, buf2, sizeof(buf2)); + + return strcmp(buf1, buf2); } + /** Case insensitive string compararison, length limited. **/ - int StrnCaseCmp(const char *s, const char *t, size_t n) { pstring buf1, buf2; -- cgit From b6272a8f18c823be3056d9f03810be75e9129cce Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 18 Mar 2003 12:07:43 +0000 Subject: Put in some macros for the new modules system --- source/aclocal.m4 | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/source/aclocal.m4 b/source/aclocal.m4 index 7bec88dd87c..87acceb2ae1 100644 --- a/source/aclocal.m4 +++ b/source/aclocal.m4 @@ -36,6 +36,31 @@ if test $ac_cv_dirent_d_off = yes; then fi ]) +dnl Mark specified module as shared +dnl SMB_MODULE(type,name,static_files,shared_files,subsystem) +AC_DEFUN(SMB_MODULE, +[ + AC_MSG_CHECKING([how to build $2]) + if test x"$1" = xSHARED; then + AC_DEFINE([$2][_init], [init_module], [Whether to build $2 as shared module]) + $5_MODULES="$$5_MODULES $4" + AC_MSG_RESULT([shared]) + elif test x"$1" = xSTATIC; then + [init_static_modules_]translit([$5], [A-Z], [a-z])="$[init_static_modules_]translit([$5], [A-Z], [a-z]) $2_init();" + $5_STATIC="$$5_STATIC $3" + AC_SUBST($5_STATIC) + AC_MSG_RESULT([static]) + else + AC_MSG_RESULT([not]) + fi +]) + +AC_DEFUN(SMB_SUBSYSTEM, +[ + AC_SUBST($1_STATIC) + AC_SUBST($1_MODULES) + AC_DEFINE_UNQUOTED([static_init_]translit([$1], [A-Z], [a-z]), ["$init_static_modules_]translit([$1], [A-Z], [a-z])["], [Static init functions]) +]) dnl AC_PROG_CC_FLAG(flag) AC_DEFUN(AC_PROG_CC_FLAG, -- cgit From 38424c522ab2ddbf6d6c61274d692b14e574023a Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 18 Mar 2003 12:12:39 +0000 Subject: Put in documentation update by jht --- docs/docbook/projdoc/Browsing-Quickguide.sgml | 64 +++++++++++++++++-------- docs/docbook/projdoc/Browsing.sgml | 68 ++++++++++++++++----------- docs/docbook/projdoc/GroupProfiles.sgml | 16 ++++--- 3 files changed, 94 insertions(+), 54 deletions(-) diff --git a/docs/docbook/projdoc/Browsing-Quickguide.sgml b/docs/docbook/projdoc/Browsing-Quickguide.sgml index 8e3fbce6d3c..0a5cf72038d 100644 --- a/docs/docbook/projdoc/Browsing-Quickguide.sgml +++ b/docs/docbook/projdoc/Browsing-Quickguide.sgml @@ -1,9 +1,10 @@ - JohnTerpstra + John HTerpstra July 5, 1998 + Updated: March 15, 2003 Quick Cross Subnet Browsing / Cross Workgroup Browsing guide @@ -16,16 +17,22 @@ of NetBIOS names to IP addesses. WINS is NOT involved in browse list handling except by way of name to address mapping. + +Note: MS Windows 2000 and later can be configured to operate with NO NetBIOS +over TCP/IP. Samba-3 and later also supports this mode of operation. + + + Discussion Firstly, all MS Windows networking is based on SMB (Server Message -Block) based messaging. SMB messaging is implemented using NetBIOS. Samba -implements NetBIOS by encapsulating it over TCP/IP. MS Windows products can -do likewise. NetBIOS based networking uses broadcast messaging to affect -browse list management. When running NetBIOS over TCP/IP this uses UDP -based messaging. UDP messages can be broadcast or unicast. +Block) based messaging. SMB messaging may be implemented using NetBIOS or +without NetBIOS. Samba implements NetBIOS by encapsulating it over TCP/IP. +MS Windows products can do likewise. NetBIOS based networking uses broadcast +messaging to affect browse list management. When running NetBIOS over +TCP/IP this uses UDP based messaging. UDP messages can be broadcast or unicast. @@ -45,20 +52,27 @@ the "remote browse sync" parameters to your smb.conf file. -If only one WINS server is used then the use of the "remote announce" and the -"remote browse sync" parameters should NOT be necessary. +If only one WINS server is used for an entire multi-segment network then +the use of the "remote announce" and the "remote browse sync" parameters +should NOT be necessary. -Samba WINS does not support MS-WINS replication. This means that when setting up -Samba as a WINS server there must only be one nmbd configured as a WINS server -on the network. Some sites have used multiple Samba WINS servers for redundancy -(one server per subnet) and then used "remote browse sync" and "remote announce" -to affect browse list collation across all segments. Note that this means -clients will only resolve local names, and must be configured to use DNS to -resolve names on other subnets in order to resolve the IP addresses of the -servers they can see on other subnets. This setup is not recommended, but is -mentioned as a practical consideration (ie: an 'if all else fails' scenario). +As of Samba-3 WINS replication is being worked on. The bulk of the code has +been committed, but it still needs maturation. + + + +Right now samba WINS does not support MS-WINS replication. This means that +when setting up Samba as a WINS server there must only be one nmbd configured +as a WINS server on the network. Some sites have used multiple Samba WINS +servers for redundancy (one server per subnet) and then used "remote browse +sync" and "remote announce" to affect browse list collation across all +segments. Note that this means clients will only resolve local names, +and must be configured to use DNS to resolve names on other subnets in +order to resolve the IP addresses of the servers they can see on other +subnets. This setup is not recommended, but is mentioned as a practical +consideration (ie: an 'if all else fails' scenario). @@ -198,8 +212,9 @@ To configure Samba to register with a WINS server just add -DO NOT EVER use both "wins support = yes" together with "wins server = a.b.c.d" -particularly not using it's own IP address. +DO NOT EVER use both "wins support = yes" together +with "wins server = a.b.c.d" particularly not using it's own IP address. +Specifying both will cause nmbd to refuse to start! @@ -213,7 +228,7 @@ one protocol on an MS Windows machine. -Every NetBIOS machine take part in a process of electing the LMB (and DMB) +Every NetBIOS machine takes part in a process of electing the LMB (and DMB) every 15 minutes. A set of election criteria is used to determine the order of precidence for winning this election process. A machine running Samba or Windows NT will be biased so that the most suitable machine will predictably @@ -232,6 +247,15 @@ as an LMB and thus browse list operation on all TCP/IP only machines will fail. + +Windows 95, 98, 98se, Me are referred to generically as Windows 9x. +The Windows NT4, 2000, XP and 2003 use common protocols. These are roughly +referred to as the WinNT family, but it should be recognised that 2000 and +XP/2003 introduce new protocol extensions that cause them to behave +differently from MS Windows NT4. Generally, where a server does NOT support +the newer or extended protocol, these will fall back to the NT4 protocols. + + The safest rule of all to follow it this - USE ONLY ONE PROTOCOL! diff --git a/docs/docbook/projdoc/Browsing.sgml b/docs/docbook/projdoc/Browsing.sgml index 13d6fce9179..aeb3b477c5e 100644 --- a/docs/docbook/projdoc/Browsing.sgml +++ b/docs/docbook/projdoc/Browsing.sgml @@ -27,8 +27,15 @@ document. -Browsing will NOT work if name resolution from NetBIOS names to IP -addresses does not function correctly. Use of a WINS server is highly +MS Windows 2000 and later, as with Samba-3 and later, can be +configured to not use NetBIOS over TCP/IP. When configured this way +it is imperative that name resolution (using DNS/LDAP/ADS) be correctly +configured and operative. Browsing will NOT work if name resolution +from SMB machine names to IP addresses does not function correctly. + + + +Where NetBIOS over TCP/IP is enabled use of a WINS server is highly recommended to aid the resolution of NetBIOS (SMB) names to IP addresses. WINS allows remote segment clients to obtain NetBIOS name_type information that can NOT be provided by any other means of name resolution. @@ -40,14 +47,10 @@ that can NOT be provided by any other means of name resolution. Browsing support in samba -Samba now fully supports browsing. The browsing is supported by nmbd +Samba facilitates browsing. The browsing is supported by nmbd and is also controlled by options in the smb.conf file (see smb.conf(5)). - - - Samba can act as a local browse master for a workgroup and the ability -for samba to support domain logons and scripts is now available. See -DOMAIN.txt for more information on domain logons. +for samba to support domain logons and scripts is now available. @@ -68,12 +71,12 @@ that is providing this service. [Note that nmbd can be configured as a WINS server, but it is not -necessary to specifically use samba as your WINS server. NTAS can -be configured as your WINS server. In a mixed NT server and -samba environment on a Wide Area Network, it is recommended that -you use the NT server's WINS server capabilities. In a samba-only -environment, it is recommended that you use one and only one nmbd -as your WINS server]. +necessary to specifically use samba as your WINS server. MS Windows +NT4, Server or Advanced Server 2000 or 2003 can be configured as +your WINS server. In a mixed NT/2000/2003 server and samba environment on +a Wide Area Network, it is recommended that you use the Microsoft +WINS server capabilities. In a samba-only environment, it is +recommended that you use one and only one Samba server as your WINS server. @@ -113,6 +116,15 @@ connection that lists the shares is done as guest, and thus you must have a valid guest account. + +MS Windows 2000 and upwards (as with Samba) can be configured to disallow +anonymous (ie: Guest account) access to the IPC$ share. In that case, the +MS Windows 2000/XP/2003 machine acting as an SMB/CIFS client will use the +name of the currently logged in user to query the IPC$ share. MS Windows +9X clients are not able to do this and thus will NOT be able to browse +server resources. + + Also, a lot of people are getting bitten by the problem of too many parameters on the command line of nmbd in inetd.conf. This trick is to @@ -132,7 +144,7 @@ in smb.conf) Browsing across subnets -With the release of Samba 1.9.17(alpha1 and above) Samba has been +Since the release of Samba 1.9.17(alpha1) Samba has been updated to enable it to support the replication of browse lists across subnet boundaries. New code and options have been added to achieve this. This section describes how to set this feature up @@ -167,8 +179,7 @@ settings) for Samba this is in the smb.conf file. Cross subnet browsing is a complicated dance, containing multiple moving parts. It has taken Microsoft several years to get the code that achieves this correct, and Samba lags behind in some areas. -However, with the 1.9.17 release, Samba is capable of cross subnet -browsing when configured correctly. +Samba is capable of cross subnet browsing when configured correctly. @@ -419,9 +430,9 @@ in the [globals] section add the line -Versions of Samba previous to 1.9.17 had this parameter default to +Versions of Samba prior to 1.9.17 had this parameter default to yes. If you have any older versions of Samba on your network it is -strongly suggested you upgrade to 1.9.17 or above, or at the very +strongly suggested you upgrade to a recent version, or at the very least set the parameter to 'no' on all these machines. @@ -473,7 +484,7 @@ machine or its IP address. Note that this line MUST NOT BE SET in the smb.conf file of the Samba server acting as the WINS server itself. If you set both the "wins support = yes" option and the -"wins server = >name<" option then +"wins server = <name>" option then nmbd will fail to start. @@ -538,11 +549,12 @@ server, if you require. Next, you should ensure that each of the subnets contains a machine that can act as a local master browser for the -workgroup. Any NT machine should be able to do this, as will -Windows 95 machines (although these tend to get rebooted more -often, so it's not such a good idea to use these). To make a -Samba server a local master browser set the following -options in the [global] section of the smb.conf file : +workgroup. Any MS Windows NT/2K/XP/2003 machine should be +able to do this, as will Windows 9x machines (although these +tend to get rebooted more often, so it's not such a good idea +to use these). To make a Samba server a local master browser +set the following options in the [global] section of the +smb.conf file : @@ -594,7 +606,7 @@ you must not set up a Samba server as a domain master browser. By default, a Windows NT Primary Domain Controller for a Domain name is also the Domain master browser for that name, and many things will break if a Samba server registers the Domain master -browser NetBIOS name (DOMAIN>1B<) with WINS instead of the PDC. +browser NetBIOS name (DOMAIN<1B>) with WINS instead of the PDC. @@ -661,8 +673,8 @@ samba systems!) -A "os level" of 2 would make it beat WfWg and Win95, but not NTAS. A -NTAS domain controller uses level 32. +A "os level" of 2 would make it beat WfWg and Win95, but not MS Windows +NT/2K Server. A MS Windows NT/2K Server domain controller uses level 32. The maximum os level is 255 diff --git a/docs/docbook/projdoc/GroupProfiles.sgml b/docs/docbook/projdoc/GroupProfiles.sgml index e5120aed9ba..8bdf98059a9 100644 --- a/docs/docbook/projdoc/GroupProfiles.sgml +++ b/docs/docbook/projdoc/GroupProfiles.sgml @@ -14,7 +14,7 @@ -Creating Group Profiles +Creating Group Prolicy Files Windows '9x @@ -34,7 +34,7 @@ stuff. You then save these settings in a file called Config.POL that needs to be placed in the root of the [NETLOGON] share. If your Win98 is configured to log onto the Samba Domain, it will automatically read this file and update the -Win98 registry of the machine that is logging on. +Win9x/Me registry of the machine that is logging on. @@ -42,19 +42,23 @@ All of this is covered in the Win98 Resource Kit documentation. -If you do not do it this way, then every so often Win98 will check the +If you do not do it this way, then every so often Win9x/Me will check the integrity of the registry and will restore it's settings from the back-up -copy of the registry it stores on each Win98 machine. Hence, you will notice -things changing back to the original settings. +copy of the registry it stores on each Win9x/Me machine. Hence, you will +occasionally notice things changing back to the original settings. + +The following all refers to Windows NT/200x profile migration - not to policies. +We need a separate section on policies (NTConfig.Pol) for NT4/200x. + Windows NT 4 -Unfortunately, the Resource Kit info is Win NT4/2K version specific. +Unfortunately, the Resource Kit info is Win NT4 or 200x specific. -- cgit From 7759686230e2512e7c79ca512f501f8bac084aef Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 18 Mar 2003 15:49:05 +0000 Subject: - Move instructions on compiling samba to appendix - Add notes about binary packages - Some small fixes (typos, remove outdated stuff) --- docs/docbook/projdoc/CVS-Access.sgml | 157 ---------------- docs/docbook/projdoc/Compiling.sgml | 321 +++++++++++++++++++++++++++++++++ docs/docbook/projdoc/UNIX_INSTALL.sgml | 179 +----------------- docs/docbook/projdoc/samba-doc.sgml | 4 +- 4 files changed, 333 insertions(+), 328 deletions(-) delete mode 100644 docs/docbook/projdoc/CVS-Access.sgml create mode 100644 docs/docbook/projdoc/Compiling.sgml diff --git a/docs/docbook/projdoc/CVS-Access.sgml b/docs/docbook/projdoc/CVS-Access.sgml deleted file mode 100644 index 3c1adfd17aa..00000000000 --- a/docs/docbook/projdoc/CVS-Access.sgml +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - Samba Team - - - - - (22 May 2001) - - -Access Samba source code via CVS - - -Introduction - - -Samba is developed in an open environment. Developers use CVS -(Concurrent Versioning System) to "checkin" (also known as -"commit") new source code. Samba's various CVS branches can -be accessed via anonymous CVS using the instructions -detailed in this chapter. - - - -This document is a modified version of the instructions found at -http://samba.org/samba/cvs.html - - - - - - -CVS Access to samba.org - - -The machine samba.org runs a publicly accessible CVS -repository for access to the source code of several packages, -including samba, rsync and jitterbug. There are two main ways of -accessing the CVS server on this host. - - - -Access via CVSweb - - -You can access the source code via your -favourite WWW browser. This allows you to access the contents of -individual files in the repository and also to look at the revision -history and commit logs of individual files. You can also ask for a diff -listing between any two versions on the repository. - - - -Use the URL : http://samba.org/cgi-bin/cvsweb - - - - -Access via cvs - - -You can also access the source code via a -normal cvs client. This gives you much more control over you can -do with the repository and allows you to checkout whole source trees -and keep them up to date via normal cvs commands. This is the -preferred method of access if you are a developer and not -just a casual browser. - - - -To download the latest cvs source code, point your -browser at the URL : http://www.cyclic.com/. -and click on the 'How to get cvs' link. CVS is free software under -the GNU GPL (as is Samba). Note that there are several graphical CVS clients -which provide a graphical interface to the sometimes mundane CVS commands. -Links to theses clients are also available from http://www.cyclic.com. - - - -To gain access via anonymous cvs use the following steps. -For this example it is assumed that you want a copy of the -samba source code. For the other source code repositories -on this system just substitute the correct package name - - - - - - Install a recent copy of cvs. All you really need is a - copy of the cvs client binary. - - - - - - - Run the command - - - - cvs -d :pserver:cvs@samba.org:/cvsroot login - - - - When it asks you for a password type cvs. - - - - - - - Run the command - - - - cvs -d :pserver:cvs@samba.org:/cvsroot co samba - - - - This will create a directory called samba containing the - latest samba source code (i.e. the HEAD tagged cvs branch). This - currently corresponds to the 3.0 development tree. - - - - CVS branches other HEAD can be obtained by using the -r - and defining a tag name. A list of branch tag names can be found on the - "Development" page of the samba web site. A common request is to obtain the - latest 2.2 release code. This could be done by using the following command. - - - - cvs -d :pserver:cvs@samba.org:/cvsroot co -r SAMBA_2_2 samba - - - - - - Whenever you want to merge in the latest code changes use - the following command from within the samba directory: - - - - cvs update -d -P - - - - - - - - diff --git a/docs/docbook/projdoc/Compiling.sgml b/docs/docbook/projdoc/Compiling.sgml new file mode 100644 index 00000000000..49aafebec0c --- /dev/null +++ b/docs/docbook/projdoc/Compiling.sgml @@ -0,0 +1,321 @@ + + + + + Samba Team + + + + (22 May 2001) + 18 March 2003 + + +How to compile SAMBA + +You can obtain the samba source from the samba website. To obtain a development version, +you can download samba from CVS or using rsync. + + +Access Samba source code via CVS + + +Introduction + + +Samba is developed in an open environment. Developers use CVS +(Concurrent Versioning System) to "checkin" (also known as +"commit") new source code. Samba's various CVS branches can +be accessed via anonymous CVS using the instructions +detailed in this chapter. + + + +This chapter is a modified version of the instructions found at +http://samba.org/samba/cvs.html + + + + + +CVS Access to samba.org + + +The machine samba.org runs a publicly accessible CVS +repository for access to the source code of several packages, +including samba, rsync and jitterbug. There are two main ways of +accessing the CVS server on this host. + + + +Access via CVSweb + + +You can access the source code via your +favourite WWW browser. This allows you to access the contents of +individual files in the repository and also to look at the revision +history and commit logs of individual files. You can also ask for a diff +listing between any two versions on the repository. + + + +Use the URL : http://samba.org/cgi-bin/cvsweb + + + + +Access via cvs + + +You can also access the source code via a +normal cvs client. This gives you much more control over you can +do with the repository and allows you to checkout whole source trees +and keep them up to date via normal cvs commands. This is the +preferred method of access if you are a developer and not +just a casual browser. + + + +To download the latest cvs source code, point your +browser at the URL : http://www.cyclic.com/. +and click on the 'How to get cvs' link. CVS is free software under +the GNU GPL (as is Samba). Note that there are several graphical CVS clients +which provide a graphical interface to the sometimes mundane CVS commands. +Links to theses clients are also available from http://www.cyclic.com. + + + +To gain access via anonymous cvs use the following steps. +For this example it is assumed that you want a copy of the +samba source code. For the other source code repositories +on this system just substitute the correct package name + + + + + + Install a recent copy of cvs. All you really need is a + copy of the cvs client binary. + + + + + + + Run the command + + + + cvs -d :pserver:cvs@samba.org:/cvsroot login + + + + When it asks you for a password type cvs. + + + + + + + Run the command + + + + cvs -d :pserver:cvs@samba.org:/cvsroot co samba + + + + This will create a directory called samba containing the + latest samba source code (i.e. the HEAD tagged cvs branch). This + currently corresponds to the 3.0 development tree. + + + + CVS branches other HEAD can be obtained by using the -r + and defining a tag name. A list of branch tag names can be found on the + "Development" page of the samba web site. A common request is to obtain the + latest 2.2 release code. This could be done by using the following command. + + + + cvs -d :pserver:cvs@samba.org:/cvsroot co -r SAMBA_2_2 samba + + + + + + Whenever you want to merge in the latest code changes use + the following command from within the samba directory: + + + + cvs update -d -P + + + + + + + + + + + Accessing the samba sources via rsync and ftp + + + pserver.samba.org also exports unpacked copies of most parts of the CVS tree at ftp://pserver.samba.org/pub/unpacked and also via anonymous rsync at rsync://pserver.samba.org/ftp/unpacked/. I recommend using rsync rather than ftp. + See the rsync homepage for more info on rsync. + + + + The disadvantage of the unpacked trees + is that they do not support automatic + merging of local changes like CVS does. + rsync access is most convenient for an + initial install. + + + + + Building the Binaries + + To do this, first run the program ./configure + in the source directory. This should automatically + configure Samba for your operating system. If you have unusual + needs then you may wish to run + + root# ./configure --help + + + first to see what special options you can enable. + Then executing + + root# make + + will create the binaries. Once it's successfully + compiled you can use + + root# make install + + to install the binaries and manual pages. You can + separately install the binaries and/or man pages using + + root# make installbin + + + and + + root# make installman + + + Note that if you are upgrading for a previous version + of Samba you might like to know that the old versions of + the binaries will be renamed with a ".old" extension. You + can go back to the previous version with + + root# make revert + + + if you find this version a disaster! + + + + Starting the smbd and nmbd + + You must choose to start smbd and nmbd either + as daemons or from inetd. Don't try + to do both! Either you can put them in + inetd.conf and have them started on demand + by inetd, or you can start them as + daemons either from the command line or in + /etc/rc.local. See the man pages for details + on the command line options. Take particular care to read + the bit about what user you need to be in order to start + Samba. In many cases you must be root. + + The main advantage of starting smbd + and nmbd using the recommended daemon method + is that they will respond slightly more quickly to an initial connection + request. + + + Starting from inetd.conf + + NOTE; The following will be different if + you use NIS, NIS+ or LDAP to distribute services maps. + + Look at your /etc/services. + What is defined at port 139/tcp. If nothing is defined + then add a line like this: + + netbios-ssn 139/tcp + + similarly for 137/udp you should have an entry like: + + netbios-ns 137/udp + + Next edit your /etc/inetd.conf + and add two lines something like this: + + + netbios-ssn stream tcp nowait root /usr/local/samba/bin/smbd smbd + netbios-ns dgram udp wait root /usr/local/samba/bin/nmbd nmbd + + + The exact syntax of /etc/inetd.conf + varies between unixes. Look at the other entries in inetd.conf + for a guide. + + NOTE: Some unixes already have entries like netbios_ns + (note the underscore) in /etc/services. + You must either edit /etc/services or + /etc/inetd.conf to make them consistent. + + NOTE: On many systems you may need to use the + "interfaces" option in smb.conf to specify the IP address + and netmask of your interfaces. Run ifconfig + as root if you don't know what the broadcast is for your + net. nmbd tries to determine it at run + time, but fails on some unixes. See the section on "testing nmbd" + for a method of finding if you need to do this. + + !!!WARNING!!! Many unixes only accept around 5 + parameters on the command line in inetd.conf. + This means you shouldn't use spaces between the options and + arguments, or you should use a script, and start the script + from inetd. + + Restart inetd, perhaps just send + it a HUP. If you have installed an earlier version of + nmbd then you may need to kill nmbd as well. + + + + Alternative: starting it as a daemon + + To start the server as a daemon you should create + a script something like this one, perhaps calling + it startsmb. + + + #!/bin/sh + /usr/local/samba/bin/smbd -D + /usr/local/samba/bin/nmbd -D + + + then make it executable with chmod + +x startsmb + + You can then run startsmb by + hand or execute it from /etc/rc.local + + + To kill it send a kill signal to the processes + nmbd and smbd. + + NOTE: If you use the SVR4 style init system then + you may like to look at the examples/svr4-startup + script to make Samba fit into that system. + + + diff --git a/docs/docbook/projdoc/UNIX_INSTALL.sgml b/docs/docbook/projdoc/UNIX_INSTALL.sgml index 1ff735a6568..254b0d09740 100644 --- a/docs/docbook/projdoc/UNIX_INSTALL.sgml +++ b/docs/docbook/projdoc/UNIX_INSTALL.sgml @@ -3,80 +3,21 @@ How to Install and Test SAMBA - Read the man pages - - The man pages distributed with SAMBA contain - lots of useful info that will help to get you started. - If you don't know how to read man pages then try - something like: - - $ man smbd.8 - or - $ nroff -man smbd.8 | more - on older unixes. - - Other sources of information are pointed to - by the Samba web site, - http://www.samba.org - - - - Building the Binaries - - To do this, first run the program ./configure - in the source directory. This should automatically - configure Samba for your operating system. If you have unusual - needs then you may wish to run - - root# ./configure --help - - - first to see what special options you can enable. - Then executing - - root# make - - will create the binaries. Once it's successfully - compiled you can use - - root# make install - - to install the binaries and manual pages. You can - separately install the binaries and/or man pages using - - root# make installbin - - - and - - root# make installman - - - Note that if you are upgrading for a previous version - of Samba you might like to know that the old versions of - the binaries will be renamed with a ".old" extension. You - can go back to the previous version with - - root# make revert - - - if you find this version a disaster! - + Obtaining and installing samba - - The all important step - - At this stage you must fetch yourself a - coffee or other drink you find stimulating. Getting the rest - of the install right can sometimes be tricky, so you will - probably need it. + Binary packages of samba are included in almost any Linux or + Unix distribution. There are also some packages available at + the samba homepage + - If you have installed samba before then you can skip - this step. + If you need to compile samba from source, check the + appropriate appendix chapter. Create the smb configuration file. + + There are sample configuration files in the examples subdirectory in the distribution. I suggest you read them @@ -129,106 +70,6 @@ - - Starting the smbd and nmbd - - You must choose to start smbd and nmbd either - as daemons or from inetd. Don't try - to do both! Either you can put them in - inetd.conf and have them started on demand - by inetd, or you can start them as - daemons either from the command line or in - /etc/rc.local. See the man pages for details - on the command line options. Take particular care to read - the bit about what user you need to be in order to start - Samba. In many cases you must be root. - - The main advantage of starting smbd - and nmbd using the recommended daemon method - is that they will respond slightly more quickly to an initial connection - request. - - - Starting from inetd.conf - - NOTE; The following will be different if - you use NIS or NIS+ to distributed services maps. - - Look at your /etc/services. - What is defined at port 139/tcp. If nothing is defined - then add a line like this: - - netbios-ssn 139/tcp - - similarly for 137/udp you should have an entry like: - - netbios-ns 137/udp - - Next edit your /etc/inetd.conf - and add two lines something like this: - - - netbios-ssn stream tcp nowait root /usr/local/samba/bin/smbd smbd - netbios-ns dgram udp wait root /usr/local/samba/bin/nmbd nmbd - - - The exact syntax of /etc/inetd.conf - varies between unixes. Look at the other entries in inetd.conf - for a guide. - - NOTE: Some unixes already have entries like netbios_ns - (note the underscore) in /etc/services. - You must either edit /etc/services or - /etc/inetd.conf to make them consistent. - - NOTE: On many systems you may need to use the - "interfaces" option in smb.conf to specify the IP address - and netmask of your interfaces. Run ifconfig - as root if you don't know what the broadcast is for your - net. nmbd tries to determine it at run - time, but fails on some unixes. See the section on "testing nmbd" - for a method of finding if you need to do this. - - !!!WARNING!!! Many unixes only accept around 5 - parameters on the command line in inetd.conf. - This means you shouldn't use spaces between the options and - arguments, or you should use a script, and start the script - from inetd. - - Restart inetd, perhaps just send - it a HUP. If you have installed an earlier version of - nmbd then you may need to kill nmbd as well. - - - - Alternative: starting it as a daemon - - To start the server as a daemon you should create - a script something like this one, perhaps calling - it startsmb. - - - #!/bin/sh - /usr/local/samba/bin/smbd -D - /usr/local/samba/bin/nmbd -D - - - then make it executable with chmod - +x startsmb - - You can then run startsmb by - hand or execute it from /etc/rc.local - - - To kill it send a kill signal to the processes - nmbd and smbd. - - NOTE: If you use the SVR4 style init system then - you may like to look at the examples/svr4-startup - script to make Samba fit into that system. - - - Try listing the shares available on your server @@ -296,7 +137,7 @@ this pile of trash" then I suggest you do step 2 again (and again) till you calm down. - Then you might read the file DIAGNOSIS.txt and the + Then you might read the file HOWTO chapter Diagnosis and the FAQ. If you are still stuck then try the mailing list or newsgroup (look in the README for details). Samba has been successfully installed at thousands of sites worldwide, so maybe diff --git a/docs/docbook/projdoc/samba-doc.sgml b/docs/docbook/projdoc/samba-doc.sgml index 246fba12280..efb14d4b6c2 100644 --- a/docs/docbook/projdoc/samba-doc.sgml +++ b/docs/docbook/projdoc/samba-doc.sgml @@ -7,7 +7,6 @@ - @@ -24,6 +23,7 @@ + ]> @@ -112,7 +112,6 @@ part each cover one specific feature. &WINBIND; &BROWSING; &VFS; -&CVS-Access; &GROUP-MAPPING-HOWTO; &SPEED; &GroupProfiles; @@ -123,6 +122,7 @@ part each cover one specific feature. Appendixes &Portability; &Other-Clients; +&Compiling; &BUGS; &Diagnosis; -- cgit From f78c98120be81100adbfee01a07283d014c425d4 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 18 Mar 2003 16:29:57 +0000 Subject: More updates: - Add SWAT as way to configure samba - Remove some duplicated information - Move some information to the part of the howto it belongs --- docs/docbook/projdoc/Diagnosis.sgml | 2 +- docs/docbook/projdoc/Other-Clients.sgml | 10 +++ docs/docbook/projdoc/UNIX_INSTALL.sgml | 121 +++++++++++--------------------- 3 files changed, 52 insertions(+), 81 deletions(-) diff --git a/docs/docbook/projdoc/Diagnosis.sgml b/docs/docbook/projdoc/Diagnosis.sgml index 8c1b784433e..1e2e6d75982 100644 --- a/docs/docbook/projdoc/Diagnosis.sgml +++ b/docs/docbook/projdoc/Diagnosis.sgml @@ -17,7 +17,7 @@ Wed Jan 15 -Diagnosing your samba server +The samba checklist Introduction diff --git a/docs/docbook/projdoc/Other-Clients.sgml b/docs/docbook/projdoc/Other-Clients.sgml index f790024c3a8..6ba04b01d39 100644 --- a/docs/docbook/projdoc/Other-Clients.sgml +++ b/docs/docbook/projdoc/Other-Clients.sgml @@ -233,6 +233,16 @@ for use with security = user + +Use TCP/IP as default protocol + +To support print queue reporting you may find +that you have to use TCP/IP as the default protocol under +WfWg. For some reason if you leave Netbeui as the default +it may break the print queue reporting on some systems. +It is presumably a WfWg bug. + + diff --git a/docs/docbook/projdoc/UNIX_INSTALL.sgml b/docs/docbook/projdoc/UNIX_INSTALL.sgml index 254b0d09740..5d0d388c087 100644 --- a/docs/docbook/projdoc/UNIX_INSTALL.sgml +++ b/docs/docbook/projdoc/UNIX_INSTALL.sgml @@ -15,10 +15,18 @@ - Create the smb configuration file. + Configuring samba + + Samba's configuration is stored in the smb.conf file, + that usually resides in /etc/samba/smb.conf + or /usr/local/samba/lib/smb.conf. You can either + edit this file yourself or do it using one of the many graphical + tools that are available, such as the web-based interface swat, that + is included with samba. + + + Editing the smb.conf file - - There are sample configuration files in the examples subdirectory in the distribution. I suggest you read them carefully so you can see how the options go together in @@ -51,9 +59,8 @@ For more information about security settings for the [homes] share please refer to the document UNIX_SECURITY.txt. - - + Test your config file with <command>testparm</command> @@ -68,6 +75,28 @@ Always run testparm again when you change smb.conf! + + + + + SWAT + + + SWAT is a web-based interface that helps you configure samba. + SWAT might not be available in the samba package on your platform, + but in a seperate package. Please read the swat manpage + on compiling, installing and configuring swat from source. + + + To launch SWAT just run your favorite web browser and + point it at "http://localhost:901/". Replace localhost with the name of the computer you are running samba on if you + are running samba on a different computer then your browser. + + Note that you can attach to SWAT from any IP connected + machine but connecting from a remote machine leaves your + connection open to password sniffing as passwords will be sent + in the clear over the wire. + @@ -121,6 +150,8 @@ Try printing. eg: + + C:\WINDOWS\> net use lpt1: \\servername\spoolservice @@ -133,10 +164,6 @@ What If Things Don't Work? - If nothing works and you start to think "who wrote - this pile of trash" then I suggest you do step 2 again (and - again) till you calm down. - Then you might read the file HOWTO chapter Diagnosis and the FAQ. If you are still stuck then try the mailing list or newsgroup (look in the README for details). Samba has been @@ -144,18 +171,11 @@ someone else has hit your problem and has overcome it. You could also use the WWW site to scan back issues of the samba-digest. - When you fix the problem PLEASE send me some updates to the - documentation (or source code) so that the next person will find it - easier. - - - Diagnosing Problems + When you fix the problem please send some + updates of the documentation (or source code) to one of + the documentation maintainers or the list. + - If you have installation problems then go to the - Diagnosis chapter to try to find the - problem. - - Scope IDs @@ -163,60 +183,10 @@ all your windows boxes must also have a blank scope ID. If you really want to use a non-blank scope ID then you will need to use the 'netbios scope' smb.conf option. - All your PCs will need to have the same setting for + All your PCs will need to have the same setting for this to work. I do not recommend scope IDs. - - - Choosing the Protocol Level - - The SMB protocol has many dialects. Currently - Samba supports 5, called CORE, COREPLUS, LANMAN1, - LANMAN2 and NT1. - - You can choose what maximum protocol to support - in the smb.conf file. The default is - NT1 and that is the best for the vast majority of sites. - - In older versions of Samba you may have found it - necessary to use COREPLUS. The limitations that led to - this have mostly been fixed. It is now less likely that you - will want to use less than LANMAN1. The only remaining advantage - of COREPLUS is that for some obscure reason WfWg preserves - the case of passwords in this protocol, whereas under LANMAN1, - LANMAN2 or NT1 it uppercases all passwords before sending them, - forcing you to use the "password level=" option in some cases. - - The main advantage of LANMAN2 and NT1 is support for - long filenames with some clients (eg: smbclient, Windows NT - or Win95). - - See the smb.conf(5) manual page for more details. - - Note: To support print queue reporting you may find - that you have to use TCP/IP as the default protocol under - WfWg. For some reason if you leave Netbeui as the default - it may break the print queue reporting on some systems. - It is presumably a WfWg bug. - - - - Printing from UNIX to a Client PC - - To use a printer that is available via a smb-based - server from a unix host with LPR you will need to compile the - smbclient program. You then need to install the script - "smbprint". Read the instruction in smbprint for more details. - - - There is also a SYSV style script that does much - the same thing called smbprint.sysv. It contains instructions. - - See the CUPS manual for information about setting up - printing from a unix host with CUPS to a smb-based server. - - Locking @@ -273,14 +243,5 @@ - - - Mapping Usernames - - If you have different usernames on the PCs and - the unix server then take a look at the "username map" option. - See the smb.conf man page for details. - - -- cgit From 7affa21eb8982eeccb8852f60d3b962fc0dded67 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 18 Mar 2003 16:38:59 +0000 Subject: Regenerate --- docs/Samba-Developers-Guide.pdf | 1534 +++--- docs/Samba-HOWTO-Collection.pdf | 9962 ++++++++++++++++++++------------------- 2 files changed, 5843 insertions(+), 5653 deletions(-) diff --git a/docs/Samba-Developers-Guide.pdf b/docs/Samba-Developers-Guide.pdf index 3b467e0ec13..905837450cf 100644 --- a/docs/Samba-Developers-Guide.pdf +++ b/docs/Samba-Developers-Guide.pdf @@ -1,16 +1,16 @@ %PDF-1.3 %âãÏÓ -1 0 obj<>endobj +1 0 obj<>endobj 2 0 obj<>endobj 3 0 obj<>endobj 4 0 obj<>endobj -5 0 obj<>endobj -6 0 obj<>endobj -7 0 obj<>endobj -8 0 obj<>endobj -9 0 obj<>endobj -10 0 obj<>endobj -11 0 obj<>endobj +5 0 obj<>endobj +6 0 obj<>endobj +7 0 obj<>endobj +8 0 obj<>endobj +9 0 obj<>endobj +10 0 obj<>endobj +11 0 obj<>endobj 12 0 obj<>endobj 13 0 obj<>endobj 14 0 obj<>endobj @@ -200,34 +200,34 @@ 114 0 obj<>endobj 115 0 obj<>endobj 116 0 obj<>endobj -117 0 obj<>endobj -118 0 obj<>endobj -119 0 obj<>endobj -120 0 obj<>endobj -121 0 obj<>endobj -122 0 obj<>endobj -123 0 obj<>endobj -124 0 obj<>endobj -125 0 obj<>endobj -126 0 obj<>endobj -127 0 obj<>endobj -128 0 obj<>endobj -129 0 obj<>endobj -130 0 obj<>endobj -131 0 obj<>endobj -132 0 obj<>endobj -133 0 obj<>endobj -134 0 obj<>endobj -135 0 obj<>endobj -136 0 obj<>endobj -137 0 obj<>endobj -138 0 obj<>endobj -139 0 obj<>endobj -140 0 obj<>endobj -141 0 obj<>endobj -142 0 obj<>endobj -143 0 obj<>endobj -144 0 obj<>endobj +117 0 obj<>endobj +118 0 obj<>endobj +119 0 obj<>endobj +120 0 obj<>endobj +121 0 obj<>endobj +122 0 obj<>endobj +123 0 obj<>endobj +124 0 obj<>endobj +125 0 obj<>endobj +126 0 obj<>endobj +127 0 obj<>endobj +128 0 obj<>endobj +129 0 obj<>endobj +130 0 obj<>endobj +131 0 obj<>endobj +132 0 obj<>endobj +133 0 obj<>endobj +134 0 obj<>endobj +135 0 obj<>endobj +136 0 obj<>endobj +137 0 obj<>endobj +138 0 obj<>endobj +139 0 obj<>endobj +140 0 obj<>endobj +141 0 obj<>endobj +142 0 obj<>endobj +143 0 obj<>endobj +144 0 obj<>endobj 145 0 obj[101 0 R 102 0 R 103 0 R @@ -272,11 +272,11 @@ 142 0 R 143 0 R 144 0 R]endobj -146 0 obj<>endobj -147 0 obj<>endobj -148 0 obj<>endobj -149 0 obj<>endobj -150 0 obj<>endobj +146 0 obj<>endobj +147 0 obj<>endobj +148 0 obj<>endobj +149 0 obj<>endobj +150 0 obj<>endobj 151 0 obj[146 0 R 147 0 R 148 0 R @@ -475,38 +475,38 @@ 254 0 obj<>endobj 255 0 obj<>endobj 256 0 obj<>endobj -257 0 obj<>endobj -258 0 obj<>endobj -259 0 obj<>endobj -260 0 obj<>endobj -261 0 obj<>endobj -262 0 obj<>endobj -263 0 obj<>endobj -264 0 obj<>endobj -265 0 obj<>endobj -266 0 obj<>endobj -267 0 obj<>endobj -268 0 obj<>endobj -269 0 obj<>endobj -270 0 obj<>endobj -271 0 obj<>endobj -272 0 obj<>endobj -273 0 obj<>endobj -274 0 obj<>endobj -275 0 obj<>endobj -276 0 obj<>endobj -277 0 obj<>endobj -278 0 obj<>endobj -279 0 obj<>endobj -280 0 obj<>endobj -281 0 obj<>endobj -282 0 obj<>endobj -283 0 obj<>endobj -284 0 obj<>endobj -285 0 obj<>endobj -286 0 obj<>endobj -287 0 obj<>endobj -288 0 obj<>endobj +257 0 obj<>endobj +258 0 obj<>endobj +259 0 obj<>endobj +260 0 obj<>endobj +261 0 obj<>endobj +262 0 obj<>endobj +263 0 obj<>endobj +264 0 obj<>endobj +265 0 obj<>endobj +266 0 obj<>endobj +267 0 obj<>endobj +268 0 obj<>endobj +269 0 obj<>endobj +270 0 obj<>endobj +271 0 obj<>endobj +272 0 obj<>endobj +273 0 obj<>endobj +274 0 obj<>endobj +275 0 obj<>endobj +276 0 obj<>endobj +277 0 obj<>endobj +278 0 obj<>endobj +279 0 obj<>endobj +280 0 obj<>endobj +281 0 obj<>endobj +282 0 obj<>endobj +283 0 obj<>endobj +284 0 obj<>endobj +285 0 obj<>endobj +286 0 obj<>endobj +287 0 obj<>endobj +288 0 obj<>endobj 289 0 obj[247 0 R 248 0 R 249 0 R @@ -666,42 +666,42 @@ 398 0 obj<>endobj 399 0 obj<>endobj 400 0 obj<>endobj -401 0 obj<>endobj -402 0 obj<>endobj -403 0 obj<>endobj -404 0 obj<>endobj -405 0 obj<>endobj -406 0 obj<>endobj -407 0 obj<>endobj -408 0 obj<>endobj +401 0 obj<>endobj +402 0 obj<>endobj +403 0 obj<>endobj +404 0 obj<>endobj +405 0 obj<>endobj +406 0 obj<>endobj +407 0 obj<>endobj +408 0 obj<>endobj 409 0 obj<>endobj -410 0 obj<>endobj +410 0 obj<>endobj 411 0 obj<>endobj -412 0 obj<>endobj -413 0 obj<>endobj -414 0 obj<>endobj -415 0 obj<>endobj -416 0 obj<>endobj -417 0 obj<>endobj -418 0 obj<>endobj -419 0 obj<>endobj -420 0 obj<>endobj -421 0 obj<>endobj -422 0 obj<>endobj -423 0 obj<>endobj -424 0 obj<>endobj -425 0 obj<>endobj -426 0 obj<>endobj -427 0 obj<>endobj -428 0 obj<>endobj -429 0 obj<>endobj -430 0 obj<>endobj -431 0 obj<>endobj -432 0 obj<>endobj +412 0 obj<>endobj +413 0 obj<>endobj +414 0 obj<>endobj +415 0 obj<>endobj +416 0 obj<>endobj +417 0 obj<>endobj +418 0 obj<>endobj +419 0 obj<>endobj +420 0 obj<>endobj +421 0 obj<>endobj +422 0 obj<>endobj +423 0 obj<>endobj +424 0 obj<>endobj +425 0 obj<>endobj +426 0 obj<>endobj +427 0 obj<>endobj +428 0 obj<>endobj +429 0 obj<>endobj +430 0 obj<>endobj +431 0 obj<>endobj +432 0 obj<>endobj 433 0 obj<>endobj 434 0 obj<>endobj -435 0 obj<>endobj -436 0 obj<>endobj +435 0 obj<>endobj +436 0 obj<>endobj 437 0 obj<>endobj 438 0 obj<>endobj 439 0 obj<>endobj @@ -777,17 +777,17 @@ 509 0 obj<>endobj 510 0 obj<>endobj 511 0 obj<>endobj -512 0 obj<>endobj -513 0 obj<>endobj -514 0 obj<>endobj -515 0 obj<>endobj +512 0 obj<>endobj +513 0 obj<>endobj +514 0 obj<>endobj +515 0 obj<>endobj 516 0 obj<>endobj 517 0 obj<>endobj -518 0 obj<>endobj +518 0 obj<>endobj 519 0 obj<>endobj 520 0 obj<>endobj -521 0 obj<>endobj -522 0 obj<>endobj +522 0 obj<>endobj -523 0 obj<>/XObject<<>>>>>>endobj +523 0 obj<>/XObject<<>>>>>>endobj 524 0 obj<>stream x+ä2T0BCs#c3…ä\.§.}7K#…4CCK=ccS=3…= D²F°£¯“£‚KjYjN~AjQ±‚{ifJªfH—kW SÙ?endstream endobj -525 0 obj<>/XObject<<>>>>/Annots 55 0 R>>endobj +525 0 obj<>/XObject<<>>>>/Annots 55 0 R>>endobj 526 0 obj<>stream xÕ[moGþî_±S Úììû~ôK’ Ð$=K×O ÙZÛ:XRN–zÍ¿ïCrfÈ]%HÃyÝHõèYÎÉ™Uþsæ’ ÿ¹¤É“¢Nn7gYšá›ø×õ;ú&©Ëo’¢K“ù™›¤+ÓÒpn—WigÈ¢¦A‹*m1hS¥ÎÔ@f9 ò“D²2Y‡™6I™Å PU[=]"Àëà&©2L§œ°¡ÃÊUœƒºJZ ¶j ”a ‹‘²o’<ÏÒÂÈZ V–5+’ƒy-[4ƒ‘ÙïUMÊÀ9Ë€œd ùÝa¥•ÁªNë(È@=çrG.Œ¤Å¶®0‚²2lI&}è°žkK’‹œ4oÉÈHRŒT®1À@Ás²ò‘3p“´UšûAHÎ@ÌW6db#°êTj„çbVD’Ë.S§ @@ -883,7 +884,7 @@ x ¹p¾µIý†M:_nn–4nð\‚ó|û°>ô·‡ãž7ºÉ3V3ÚcÎeºÁ°0ãÅ|¿=ìw«ãmÜù/+å²93œZÍöÂQolŇããa}xØ÷ËÕz{Ï{L«Gâ“ CGRør˜èŠâð6ãs‡§XG=«MƒÈ²cûÖ4ôÆ]ÈÍO›Ið8úTþÜFŒç£p8´©üË6m_žM-…ÔìĦjlÓöf#ËÓC,ãWýÓú~ËÙ—/Ãc·M‚Ù.Û@£ÑønnôÑrãâAzfœŸb5xŠù%Mñæâ_ïÈtR{.yúòtè¹_EA‰ôYÝÑ‘R¦1q%Üzl¢ÆËü±ÿ/IäEZ¹Ð¬}:>¥qµ6Ï¿lË?xñÑÞà<Ã}ͳZ7œŒmÉ]®±ñ$¥úeÅ­W[…‚wE øë«_àE4ièÃòv¿ F¶S–—‘3çÐÛ5üJJå°=µïüê*˜ˆºÓ´!ÕFÑ!ÕÉÖñÙ ‹Ö mûJjý†m?ýòS°šÐ2TCk[Vù=Œ›ÿ7ŠÆ ‹!¶Ø_Ù}o[naøœ‚»á¼x!iÖÉÙ°n]5Y%YoHBϘ¬nîý‡°BxŸ1åN2 þm#$mŒŒxXíƒ tõòBŒHƒôVËd¾Ê·[Öˆ»Ý~³<ü¶êoŽ÷¿Ù5™¦z‹æ¶Nãê‘Ú«ïc|f¥úrÚcÜŽwñB`~¼¿ïŸèÀÛ7°“Ÿß\!ioÃé4ú=;}Žvjsok8êôûíòQr.h_B`ºñ¥^j˜ð iÂéUެtE&7KHuUÎàÿÀAçÑŸ<ÊnêC¸7n6Ç)ýkÍÆÖ7Yè+›Pƒïi§ÂzŠ:l2#>z#»N“JH)fÕ¸Âräá ¡‰×nk>àµvÉ7_ýn¿ê÷éí¼,êª)Òñʬ4dái»üåýÅÍñîÇÏ»'éúanª‡>{.tö¤üiáúù4³¶`Í®ÿñ÷壸¯ &©¿Þñíõ ›áí(ïýîÇK±Ê¿?U^z½ £囫'š•ØçPÌ×_uý|¼céä4™ö!pè%÷(ršõÉù'êã­ü„úGߟ¤ËöDýùÜÙ´“œ]‚çQ´¨µ ×8ݩꃸWÕ[~{0EôDõË¡î.cåée—‹„ý®q£Ús{få¿ÆÇnG[@ûx ú0äê“$ú¨ü(`œ”W«ùõ Ø}s€Ÿ0LµWƒêY;®Pˆü±Û¯á0OFåÑKŽ]/vèúï5hèG«Ï¾Awh8V]ÊëPõçUõé¶êë·øa“ü?‘ÃeYÝÐùï1ÌL’øƒ’"ÿÀá¬É:zrMöfqöϳ?æšñ'endstream endobj -527 0 obj<>/XObject<<>>>>/Annots 100 0 R>>endobj +527 0 obj<>/XObject<<>>>>/Annots 100 0 R>>endobj 528 0 obj<>stream xÍ[Ms9½ûWôm³)Ýìï£ãLf\å8N¤ÔžeY™h#©½úÈLþý>$nyÖ»[É3U‰žž@€ìο.²$ÅÿYR»$¯’ùú"§ø&þñéWú&©Š®“¼g¬’É…ë¤L{œë¤)ÇÎȸN²<7†Ì+š0/ñ%uãÒšÐÀuR×ãÖpbЬ׆´,Æ),k0ØÚõ. Rȹq…ꆔe@ (–`ØHŠ`Úb® È@=—eéI‹i؆ˆ,/PÙVXR¿@âÊ•‰rbP—õH‹Á%–OE)ʪe—°ÓÐŒúPŽc ÈÕVÎ@Ì—UX%-¦È1³²²eÅá(èx®ihÊÈH ÐÒD’U¹:K@tVà2øºò/‰´˜t-ú¬Á`¡‚••I±È•K%Ôs~’HZ'UV& ²e=Î83x¸¬¦uˆ²¢¾¤ý.*1P•<—¥ÅH$-†JU†MdXƒÁ¶œ§¬x4%7‡f@“Šƒ=‡ÌHP޶fѦº5De—a÷„_i1Ô))6U”½¨ @@ -900,8 +901,8 @@ g }’-öô$…˜ƒû³^,âagÈg¬¹éºo¾«ÆË™úÂÁäúíDrÍÏ µ§M*åè8|ƒ…»+éGžsÒ_˜E $o#~¬v’NÑZ(v½~‡·Aù}$ü€ÿ‚‹ßkÆÛ“Ë÷o.“·‹ï‹U÷ˆ Ãä×ÃR^Éñ> ©Q¶ôâÒrIÎùezññâßûˆ)endstream endobj -529 0 obj<>/XObject<<>>>>/Annots 145 0 R>>endobj -530 0 obj<>stream +529 0 obj<>/XObject<<>>>>/Annots 145 0 R>>endobj +530 0 obj<>stream xÍ[ÛrÇ}×Wì›Â{¿ä%E‘²Ì EËlçÁU©Jˆ,‚Véïsú2=½ )±ƒ’\%áà`fú6==½ëÿ>Ë’ÿeI“'EÌ×ÏÒIŠoì¯7/雤.;ü½NŠn’)X%Óg®“*q®“ºq®“,m'¹›Ôc°e:é[Ô$NQMZˆSå“J‰ã f­É¿$Òc°EFÓFÖa°Íxb×Iž6£™=›w“ÒÍ\•$pžOjÜ´[Éä MóIáHÁÂЕçauÛ6£‰eÑ”$ ‹2ˆ‹*§‹é1¦­3rMd&¶#‘ŒåE«®Æ]T€-8Y$’cÚ¢˜4‰c ›X‡ÁvDŠcE¤¶ààekW ¢HÊ©FzŒióчz ¶Ná¸ÈÊ¢0…¨,Ê .ªœ.b¤Ç¶hdEˆ0¶ÎaçÊXÞUUs˜ñF@‹:H&jðGR|VeCE@”V¹ Ž¿$Òc’¶¤iù·Ì: ¶d¯+&*R* â¢ÊeiE¶5ÒcL ­[ÇŠ²†Ý-Z3 i\']Kªç Mʲé1ئ »GÖa°ÆŠžiáBAÔS98¥D¥ç &Í+ZÒHÁb Ïò’e—Æ|#À– ¯9iIJT‘ôlÙ`—9Öa°ÈîµcÙ)eC jÆ`N \–ñ¢üK"=Æ´8lŠ$õlE™Ê±›HqfQeÊSŠ¢8Öcäó¦Äެط&£ëî.Dû*GGLšDRB.:H9-” â@åTo#e`A> d*—áèŒËóF –g@y;”ÊÁgœƒØ*©oœƒ°kN§h$EÒ,‹¹¤d%UŽœÛé1¹‹öAdyÚ›ÔL.À¦ œLIiZòsd©°)šŒÍÊ•ŒšÕAX®B4 ºeåØeÅ£›.¶èB„•^÷77†-‡#vq—…ˆž.Ø»JœNCôÐúÉüU¡D­¸çAÙŸ‹Íéñ+ŽWlÛ6ìÅóáݰ¡oÑOlÛRüù4úøU‚nH¬ûºUsâº]]}Ê•â¸wÚ‘ãDµ,¦ÑßðçÕñÙùôüÇÙo¿]¼ ¿bbÍJAo¹ƒ}®*‘‡èžÐw3áO·‹íG54®Fš®>˜P8Um«ÓúçrÍ£ÓàÓ«~ÈÐ.Í£÷r'Ü>¹mÐ_¬q6ò)øéõÊV5;«ë¼25«âÂkúæ—é/l´—*ÝìÉŸ<ŽQêáYËSj^5‘8XÇû¨žÜ É MӨˊ éô}¿•R÷+G^lnדõM£§Th/$T?tF½•;1y¯v÷žc/ï±ÃÙæj`ñ5× eO–CêU_޶_³±'Û×»áݶ¿~¿äB’:M湛奸3”M¨uÎøè£Ç#[Ë_\Bíåï¨LsEÎRÎÅ'ꊿvƒ«ö9ïŒ\§èw\}º¸Zn–;ˆÃu9^"@ðÿµâüg« =]v Mîhðz;ì†ù°"ã–òUˆO*WÇ šU{*Ü­O†õ:\ÆÊ'­úò -Om¤‘ôíþšžràøê°ßp]‹ð‹ÉñMøúµ×-þTß!ªö”¼»O~]¬VG¿o†ò*Yy¸@šÐËÔº÷©°uêTò½{šÜÝ/kMi´‚¿PÞžÔ|Aö dHòdúdKíFÝ—#ýúmOßá‘WV†[õëí·ÌÍ;"¨b19C?d»éWÍxoÂB׌üê‚äúî{kŽÐ[H>8¡¦Æf¸ú¿½ÙmµÝÃækHÞÞP¢Ñ6Œ Lh¡q´ðnyîÃì–«~. 8¬ÌŽ‹ œÄE¶â/ýv9ܲÑÿ‹×‚çýüw2,:»E"a±¹ä_â²ÐÀć<óÔnôv˜ÁzŒlÀb–.`qù¹eåñvƒµf§Ï¥F„ÛÞìOù9h‡ô^¨jã (ˆ.ZTg§¼÷šØß¹ï¼8Y-q"²5œŠÉI?¯»g},¸î)Ë8¤´ó‚ž¡õʨ<Ý®{*yhú -i»ûË®Xµ\ks4”ýÁ gk£!Øâ×åærø ÉÆ÷.fßåÿ$¹ÐI‹%æCºˆEùç¸^Xh_ »åU¸1·ÍAO%ÑØeìípÒý³[Ùg3ö¯gSÖ0Ÿ¤ÖXgk$ø/tK®ù¢ává®HN{ÙÚ”A?ÌÜõ}¿\ ¡IˆG>Ýa³Ñ#sCP->€GåXÉíα³÷r‘“1óàÏ×óa­[™Þ¼²whˆà¶b{vúñf·àk4s›ã‘Šü¿?«¹÷>Fs#æq<¾àÒ#”LÉt1¿Ý.w²ÿ|’’"£ MoŠmØ**ûÍfñ¾DC/­Bg Vù†¿ÄáØ~>¸áèN=‚7‡ö´ß!÷«aÊÁ³VH%WÛAZ!8߬kòóÅÙ¿T±{çÇðÃÐhýŒ÷e +Om¤‘ôíþšžràøê°ßp]‹ð‹ÉñMøúµ×-þTßשxQµ§äÝ}òëbµ:ú}3|ØÐ4²òp4  —©uïS)`ë¨&ÔØÝÓäî~yXøhJÚ¡ü…òö¤æ ²oH C’w Ó'[h7’è¾é×o{ú¼²2ܪ_o—¸enÞA œ‹Éú!ÛM¿âhÆ{ºfä'øPs-ÿÝ÷Ö¡·|pBMÍpõ?~{³Ûj»‡Í×¼½¡D£#l˜ÐBã2háÝ-ò4܇Ù-Wý\:pX˜8‰‹4lÅ_úír¸e¢ÿ¯ÏûùïØH>Uˆ„ÅæR2€0ñ!Ï<5B†½f°#°˜¥ X\~nYy¼Ý`íƒÙésé£Ñ!Ķ7ûS~Ú¡½ªÚ8 +¢K…ÕÙ)ï½&öwî;/NVKœˆl §brÒÏßëîÅY ®{Ê2)í¼ gh½2*O·ëžJš¾BÚîþ²+V-7¥ epÂÙÚh¶øu¹¹>H²ñýŸ‹Ùwù?I.tÒb‰ù.bQþ9®ÚÃnynÌmsÐSI4v;G;œtÿlÆ–DöÙŒýëÙÅ”5Ì'©5–ÆÙ þ Ý’k.ò|Â.Ü•Éi/[›2臙»¾ï—«!4 ñȧ;l6zdnªÅgðè£+¹Ý9vö^.Rx2füùz>¬u+Ó›WÖã ÜVlÏN?Þì|ÆansЗhè¥UèlÁ*ßð—8Û/Ð#Ý©GðæÐžö;¤ó~5lX1xÖ +©äj;H+ç›uM~¾8û—*Ö`ïò~8}.ƒ÷e Þ¤+÷t[-¤À@›ÈZ÷`oP´HGjö¸é‘1BÚ›acàUlÃÃ*vÇFÙ;ÖÏû‹­Ø„‹ÕÃKö°#ïeTz¢¿¯ˆl]zÛ9”…Ç××+z -˃§°õ½r‡/U~¼+?ª)r<(•ÍçåQâÃŒ‹h¼¢ñ…NKQ¨‘‡ ãF$ÞZ,u·}N›WÃå­nBÜŽ¾ +˃§°õ½r‡/U~¼+?ª)r<(•ÍçåQâÃŒ‹h¼¢ñ…NKQ¨‘g…ãF$ÞZ,u·}N›WÃå­nBÜŽ¾ ]è…€qhí•{÷yÅéákÙàõ/ô¯z§IGG*,΄#ß\/æË^únà-£‹^§¤>zøÓ¯ÿ}çž—o‰B…\­LƒU#zûhoÿ„ç1^+’²—›á×ÓMTZÄf|8½Z¬yNFÛ"º£ßôïÔ_d³ã]ÈÐózƒ/òl^Ò™· -j†wÂ-/R_Ù‘Òð î΃ UK9á*ãó~óªßðVÁÖõÐz"Ç“‡6ÜïyËfô.Ôö”âÅfN6☃¸º)HW £}3J‡Å~‰Œi‹,>7 ¿øk†eŽpiŽ%>^joµ©Ð}!{9h¹‡¹íAÐ’7^© {.Á[¿ÿƒì…ÖÍ%@Óí·à9¼ïÈ/cávU–øß4ùp¼‹…cëùqrºøc±®Qä%/oõ¡XwR;Šù&íè­­årIJ½˜=ûéÙÿfÎtendstream +j†wÂ-/R_Ù‘ÒdJwçÁ PªŒ¥œp•ñy¿yÕox«` +ëzh=‘ãÉCnŒ÷¼e3z‹j{Jñb3§Gñ ÌA\Ýìw­Ð¾¥Ãb¿DÆ´EŸ›„_üŒ5È2G¸4Ç/µŒ·ÚƒTè¾½´ÜËÜö hÉ›¯Ô…=—à­ßÿAGëæ‰ évçCðÞwä—±p»*Küošü8Þűõü89]ü±X ×(ò’—·úP¬À;©Å|“vôÖÖr¹$¥^Ìžýôì¾érendstream endobj -531 0 obj<>/XObject<<>>>>/Annots 151 0 R>>endobj +531 0 obj<>/XObject<<>>>>/Annots 151 0 R>>endobj 532 0 obj<>stream xÅTË’Ú0¼û+t$´²–uIKv¹„„ìú ˆ]R~^[ùûÌŒmY¤*¹UP=­ñL÷Œü+I™€oʬd*c›:\@$ü¼,0Â2íà·fÊñ´{M"X3cxq¬™s\E\k–¦Žçc`•½e# lnnÙ×Lê”ÛèÉ*C) S Ý<”ÁšåeÒAä"Ø5d"0°Fs±džp\óŒæõ\çVà"ݤØià"ˆÝ.#2ÆÀZ…¾‡T2À¸ Rz: ¸<‡¼‘ëòrE;@Nc^Ï9Ü‘‹ 4CÓÉÇ"yxvL VìÀ7X0°ÑjVliÿ ¼™åºò¬Ý±yÛœ}s>}*~B–¥Á¬iŸ6•˜6™¿—‡³?âÜLx>/XObject<<>>>>>>endobj +533 0 obj<>/XObject<<>>>>>>endobj 534 0 obj<>stream x}Ž»Â0 E÷|Åa ØiHÃØŠÇÄ€ð 6•Ѝ€"ø~\Ú‰Y–,ßã#? ƒ´¹CPu†,!d+ëác®³Óîš1pdÝoPŠYîÖpiÔò©¡ÒM5;‡²À&½ÓõvOýûW[§¹\¾WìÇ«EÆj–zÂ%»‰`žàƒÜ”>’ÑëŠñ`ØŠ9šÒ°7~endstream endobj -535 0 obj<>/XObject<<>>>>/Annots 194 0 R>>endobj +535 0 obj<>/XObject<<>>>>/Annots 194 0 R>>endobj 536 0 obj<>stream xWÛnÛF}÷WÌ[ ¦ER¼ÈOõ%q ØŽk)y PÒJbJrUriÇß3³¹’Ò¤0`ûèÌœ¹ììúçħ~|J @@ -939,7 +942,7 @@ v Í9ÒµêõõÕ[5+iS·9_o Ï|ï®Lâ\^ë<êÙ“ŠÜ¯5fSÍÚ{—k7—¾G7j•Wùî"<*su÷qJOÝDÉcV*zV.Z±{ÐK%šø’p6HAìñýŒÝjÁòèêùãåÍõåtF]Œ#£þWS—?s#@d*ݽ¬›Üàö¶µœÍ¾Ò¸«L­—­\os†=°ËΣ‡¶08±ZeK¾‡\¤HäxÈiÖ›5å|yd1v-ªYDUór‰N7ùZ6Ã^Y³/¥Ý¼¿útKÍÖHÉ¡ÜÒB;¬^éck¶¸÷Ó·ÊdßÂÚ^WQúrб~ȵ>2ëŠÙåÍÍO,¥BEbyÿùþ'–¨”óûÐVÒú£ ½ˆkXÎ×F}7,t”žªb°YÖ;Þ==V@æXÈef¾.Õ¼]uµÎðÕµ?j$~­å€§ízÕŒk(99〔íPafTÍô°í’òõ&ã§vÉŸ\ÙõAæ’7¯É X¹ Ø †Üå8xu`¥¥k,(osTNûúó%ú=oW¿ousÔ-nºõôK#DîIýþ’?”C˦Çrî pP4íîØê ÐØJMò?ÔJ¬Ö¯ÌR¨íeöŸ%L`¹—Ý`y_[­ê}0>(ßA­îÿ±Å©<ïek›}þï“ò‚#sLì¾v߯)^ýÒ1Þ”°Èåæýì䯓…˜V¸endstream endobj -537 0 obj<>/XObject<<>>>>/Annots 246 0 R>>endobj +537 0 obj<>/XObject<<>>>>/Annots 246 0 R>>endobj 538 0 obj<>stream xuXÛrÓH}ÏWÌÛBÝ/&\6U¹Íò‹"+‰6¶ä•e ¿çôXš¶Š*¨Ãé{÷ôŒüßY`|ü Lš(5ÕúÌ÷|üÏô××Ïgz¡IóÔóÍÚYìÅ{´2ó‘ÍB/'[d^aRAŠM /–6RAd“ÐKL§0¸6YB»È)³A>IŠY…Á&œT5fÀNl‘"Ò4Š BUB4lÉù“ †$H¼*LUIfbm2>­#‰W€$ã ÍÆ h"5ç^¦Øq&E$õ 3TÁZUpmÒjŽSpmÐ:­'‘&¹/eÏ3˜¶€6d¤Š$I©N’f¶tqàÆ"’¬NóŠUxmB?A™k '¬ + †)Ã#k 9Vaèb:±c†Û(a!&Öº9P @@ -958,7 +961,7 @@ ik Zö²ikDÜM»+‡¦k²¦ :x"f¾ìšþI¢y{ÌŸÛ¡ü}\` &4»ëvƒÙ°Ì[¯’bt¦†ež¹®‡÷7sÓ´¦4ßÚæ·ùÞõ«å±=\“ž¹h‡¾[îªBÇ£Á3ß¶uߢ¡ÇÝÄS×3ŸPtsó«E³›ÍQæxÒs¶Û_]¿.ξœýì¤ó§endstream endobj -539 0 obj<>/XObject<<>>>>/Annots 289 0 R>>endobj +539 0 obj<>/XObject<<>>>>/Annots 289 0 R>>endobj 540 0 obj<>stream x}X]SÛF}÷¯Ø·¤(ú–܇vøH(S0;I2Ó¶ j,É•í0üûžs×Ö^a¦É p8÷ûÞ½»æßQ`|üLš(5ózä{>~Ó¹¿S/7ižz¾©Md=Z™éHc°q)++¬Â`³ÈK›„„Yƒ ó±—íU­×dì¥$ÃŒv‰]…­×T³ðzÀ`ÓÌ‹k Ç©‹aß›T5ì0T“€Éö¬ 8мªãˆœ‰×A(F #èIј‰;Va°ã¡9ÖÆ¢%Œ7ˆéUÄ«0ؘ¡)Va°YÀ z]kØgw{”á‹À°c†n³ˆŽUlž°þ=+ELP=ÛXæeÑ¡þ ÕØG¡«0XéŽbfPùвµ N¨,k ƒš)V*•ä¾™8Çw‹¤ñ,`‚!ãP‘xäÈ$¶Í‹Ô)DÒV9±YŠ‚$È)ˆQ½žSÀ™8RÂÁùò& ƒD«ÂPÍÆŒ§gmš˜(9VTR=°9‡4q,§?ñJmä¼X@Mkƒa€K$§ SÉ1)ŽLXË8çWÔÀ*Z.ãi—!˜X9Ù&éHÁbfBÍ* ¾sÍ*Œ) ¸ÎœeÁFÜ0޵§<‚¨BDN€TÁA8EQá´'5‹BQzÖš•‘‰©NM,ˆv5r«0XôÙ8]…Ábæ¬Âö4iËG !Ó"€Š BQn»¸'1w¹‰ÐŽrö÷€Š @@ -972,7 +975,7 @@ R lèePwÏÜuí¶·«7Ø1´u ¢ûª)9 tu±1E³0÷ø†àöÌ·rµ:ùѴψ¹É„‚©)…N0/ýà€›iQ?·BÊÍ#ê¶-»¦Xù…,Üž>l¶š&¦TÖ`%imeYÌK³mÍ×¢«ÚÝÆœó¦l6ë¡2j"!p¾v¥™]œ½±¡TŒÊ=Ícyu!õ9_U¨¢9/æOŒm#¶¿«ûÍ`î¿UÍ¢}Þ íÂ?{-kÜLÚmµ|‘uåäo«õíj2ýŸJá ”ùTT«#yl Õš=•æËzÞÖŒuú²Ù–2ß·¸!Ḝïºjûb0¡˜Oó®)Ÿ©ôަuz¸ñ!½Åø«¶ÁºèÚÚ|™\ýuÔ²ÐCÕÿ€àªÜ¶98ØÛ?6&\/ew|Â(wÿž˜Žñ<µäNBKÏN±\–«v3—;ìg©då"{’ùc^_zÅøÛMžÇøK'ˆ˜âg£Ï£ÿzT²endstream endobj -541 0 obj<>/XObject<<>>>>>>endobj +541 0 obj<>/XObject<<>>>>>>endobj 542 0 obj<>stream x•WÛRÛH}ç+ú¤Ê–-c°!O@`ËU,8±©¤*Ù‡±4²'Hef„ãýú==º ´Ùl¥r[Ó·Ó§Ï´¾…4ÆŸf:9£(;ø8›šÎgø}‚FRrtµ>ÝžÓdLë&g³9­cÂñ1¾‰Þ\ïDᤡ0 ÷2Q¹rJ示—îjñ°¢¥ÑNG:%‘Ço×ߎÆ4œLáâͽÈ$}”V§¥·ùSÇÒò ΪpÓ)RÂé0@„û›5û¬M) ëC“Ypæ]Ö1M™[ÒÏHËíPƒNS½Wù–œy¡³´¾^ŽËw>Í›ÇgG‹åçÑjù9 •È6‚tž¨´Ò¶µ°Ëº†ð¤Ê«òЭ6K'TŠÈ¹[=jWÒZÆf%ͳŠdûý{áÄÖˆ¬y0ð¹Ôðõ¢1fv@VJ2IŽÇaà~8oP}žðç ¶šœÒ€…kT–±oC'+©h:¤²"•™Ìð q;×ŒÝ q¬%§i#‘IîH—®—g‹ýñ^yL2ÛÈ8–1í•Û©œîî®É·hêKv¹v Ý÷68º“9àç¾5\òn+X{›P!©×Z™H#6)°~XsÂ*·½„Løh$r.E>/XObject<<>>>>>>endobj +543 0 obj<>/XObject<<>>>>>>endobj 544 0 obj<>stream x…V]oÛ6}ϯ¸{J8²åx¶³ ’nݬndhŠŠ¸H¢FRvýïw.)9ŽÚa(âÔ‘x?Î9÷\þs–ÒÿRZLézN²:›$š/æÉ”fËþ?ÅU”‡ÓÉ÷ø:xp·9˜QšÒ&G¬ùrA›Œg2¡¼p{á åÈä´µFdR8OÞŠ<×ò»¿’ËÍß8~C)Nññ«ëY2C€‹4¹Nhu·ZÓJù»ûOëøæk¢«é"™ó›6—éd’&þ‹§L9iõV¹‰ÊÔÏÈeÞ’/4¾ð[‘®šRUªöÂkS“¨3jB…8Dç]:Z‰JÑZÙ–ê<Ô‰êÒk ƒœ«Íøv¹²ŽÎt™½£ûÚ+[+ÿö,í - ÒŽò¶,ÔÕ;ž’4¨D‹ÚhÛz*„ÃOFÞ/Š>Ié%5@#!CÙ{í ’Êz¡ë#ªQ´#üÁØŒ»6T!iÏ"}B¹±¤¾aÄO2%JG!ÐdµêY;ÐR‚ßRù¨w]>Q–œ3ÓŒp¥½8¸„î¡´¤Ñp·Jd`¥À_?ji3¹§‡ûU ÷¤[ ü¦Ê†r]¢).›D½h¹t—=)Óy”ÌA#‘à‘c’‹Qdë!ÀRŸ¨Lí}éÕ2ôì3(Ø™²åÖÑLäçk„š–YN ªãþnðUïq„W¹v‹¬Ä<+¼b8äp®TG4 È £ƒi-ý~»©vnW#–ŽŠÑ]ÎÜ¡°yÿy|ÿù¤ŽFȤ÷P¨š³@};DzƒëóâYjpÌŠAŸ[¼¿Ezt! & Hp§èãQr7ÔÖ)ÖËÊxÄ)°¬1&¾0ʨφ£,!¶ì(\rLÙiâ®Àf;í4*Nh3¨óIŠú)BàØä‘´k5$(² Ñf= /¶%>^´®ç‡ §dkµ? ²BûÎÔKªôsÁ3‚A‰°9ÍÃÚ´Þ³|Ü™©x®SkÊ’mú^ÿ2{úFaŽbɃ¬]áÑ^˜`W˜¶Ì¨6œ b° g BZèTQ¥*… û^/cAf·2ðÕFXøÖÙÇ QÙC¥%#5à†kh¬Ù´b@$:Ï[ÇþÌYKÄyÄ” ¶Åž#_˜ [9^dì0Rê(øÎ£}ó9Z}ÚÔ´fDj‡ÐÁ™p…ïôpÜ œ0Ak¢{Ë` Ýr>ÕJeîéÛI;_Ú*)xT¿Qo7„QùaÆã @@ -992,7 +995,7 @@ yuO ¢#VºÖ•†–y:jÅ*‚ òÈqdíî€=½vÃPöF°N«'2ޏrž³Ç‚Ž·Š“¿1-|-ëó×{ÑWL³ÂãÕ0ÎÛ9ü"^:¡G4“ x¤7‰¯†'Pá |.üíî ´òÉ ÿ¿5An_MˆÎÆ–Ý;],“ùÍ Ínº«éúöãÝ-ýçƒEúk WåCWý»W‹ÉÍÞ±gËI²\ÎpÇ=wÎç~Ùœýqö/M5øþendstream endobj -545 0 obj<>/XObject<<>>>>>>endobj +545 0 obj<>/XObject<<>>>>>>endobj 546 0 obj<>stream x…W]oÛ8|ϯطK€Duçë^ж¸yhÑC|ÈK€‚–(‹‰TIʪï×ß %ÙŽÓáHaÅ"wwfvvóãäRføw)·s¹º‘¼9™e3YÜßgw²¸»Åç9~¼–2}q5»þõ×÷<öúÀÇåÉ»Ï÷2ŸÉ²DŒ›Û;Y‚ûgøM~ú©RmÔäQ5+%|^™¨óØy}¶ü;¾¼_\-²9ŽŸÎ³ËLlô®èòhœÞ\Èååøæü6»á›ËÊ)\Þ5ÚFY›¢d­­öª·Ñ~ct/®”Êõc ½ó/AŒE^VÕõ6“e¥Çï–Z5R© Ñ]Ht’»&%:“‹Ë«!½®•ÞÄ @@ -1001,7 +1004,7 @@ x cË[vÿ8ûŽJê 죓àÁš„µl (2°¾ bÖu^º& «Úåì•L¾:{1= æ¼Ù¨ s“W ‡yh0›£ÄÈ®Ú(“Z‚¦øê_zå C+a÷'P;v?7ÚJ‘9b0%j9,ƒIಣx½JÞŠ•°Qk&FBBÅÀôïO¾bé)ar#̃ˆ¤”îU!ž•Þ "ìY°Ë1Wà “í0§ddÀ¶Õ0`H;^®î‡UtêÜJ®çX ±¨PÑ ÿ·È=h˜Á…át ãvSËÊþc‡°eQS£±–¥TÓhLûÒØ<9¨Lñn †Õø0íïšsü{Z[8²ÆTÁÆ·°¡Ϲ%²ô]!S,ö[Ð$0ÂØÂ¢ÇŽM(K¡CîM!€Ú4œ0)S&ÜáßÀ9O¿JVº–¾ ²ÒÛÒvÍ —ºòˆïQ o»~›Ø‚ÓW:`”û$fzGMêzlÔ?aR¥”9ÖÜçS¨5)i,ñ>/XObject<<>>>>>>endobj +547 0 obj<>/XObject<<>>>>>>endobj 548 0 obj<>stream xuWÛnÛF}÷W ú°XÉql¹/…’ôâ"MRXAú` X’#i#r—Ù]ZÑß÷Ì,©D‹ ²MîÎåÌ™3£¯g šãß‚n¯èå UíÙ¼˜Óõü•|.oñy…ÿi£/ËëâfúâõúìÇ_ïhqKë lÝ,´® væsZWçWÅuAë]`S[·%×–õÅú ®\Ó'åÊìêf×õùzg#|ßÔT2ÙšMsIeŸhË)RìÝžÊ#u>$SÚÆ¦#BûÚÛÀ-» ±+ÖnŠk±¶ruà¥`¹¦äélb2”8&JQ¤Æ–Á„#m|ÐØðÂ$ê#®x×ɸhgo¨ò.¦ÐWãñ¼’Iäô¥íp@óßÅËâJü6Þmñæñ¢ OvSïLbØŠ¾eúðÀ‘jÞ0Ü$ÉDl•Äìp[®LÓÈ#S#‘qOƒ3¨GÜá?pr}ã€Ã)¦ª Œw‘Œ>ŽÉT{¤`ºf\BT«û¿©öjÜF Z«Ðš=¬ÐãL†¼aØBž`›x·mçc´eÃ=xI!öÜ%DK¾§°ºÆ$@Ó¢Ü>/XObject<<>>>>>>endobj +549 0 obj<>/XObject<<>>>>>>endobj 550 0 obj<>stream xVmoã6 þž_ÁoNÄ÷ 7àÚKoz9 ç4E!ÛJ¢Í–š-Ó°â’— Uõ¶*‘D),721BIøÿ¶ÜœåSnò‰¨HrÁaŽØ\(tôÊÌ!>DÅãy¬·L‹„eÙ®…¹â%{?c¦LjÌÀö ŽƒvXìã…6ËYÊaSPH'\ië²Í‹Ã!mbƒ“ðc;躮Ÿ2äøä1w„Ç`ͽ&S e»ÁR¢­æêÜRL¤“Ä;`ä­[{«¹ª>Õ©FˆS9‰9Î [aœöš²1¹àßÕ-—I¦4F†š±GþàFÛð«>¨Ý“æHƒ­½\Zú¸ÚXŸƒ ëÆ8‘",U–©­ã§†D6Ïœa£æBZˆ"HT¦¤ów"XÛ$»{2A¾Qhk®ñ©‹)Q8««Æ¤ ßðnëÃ'^piçæÀž °Då¦_¶ì§}»Xï9ÛAŒc@hM3eцԱo>ª1bœ%øü\ÏËçgTRR*Ò7õ2Þ•ÊÀFŠœV¤|y‘Ù¾ái Rœ)ÂTã„TÛqÚÝ´î`¿}ê"Xµ!ô‘hðR*!W¸3‰ÝNJ?%“Õ#r/HÛ&=§ÆvØ?tÞϼäŠ]á¤â¯8Ïp¿)»(ÿe©<ãñ躃?]ÂI¿? û-ž@æqê'“EsÐ/®j;.]°_snb¡2T¦æ%RD ³ÀûÁ¸»•eÅš–+†ap‚s§Š])VkeZâ‚J‘®8Î ®×Æ?Ãwü¿y÷ ×;KQ¹~8è^ˆ~&…,?H9«LÅ,#áb.´©Èáõý›õ6W§ÍÂJÌ,V/ÂI¯' ÅEˆ&Me_nR¨D] ª<µ#3Xº˜'l£ þ\°u=³ÓžF@Ü}ß>Ï`&SÔv btR·¤ŠkéЛ¢P% rÇ]PÓ[Í\ÛVr×÷£Ã›U/to7ÿé®7Âzn®ÉÁ4jüÒøgæ"Òendstream endobj -551 0 obj<>/XObject<<>>>>>>endobj +551 0 obj<>/XObject<<>>>>>>endobj 552 0 obj<>stream x¥V]oã6|÷¯X(âEr¤O .¹½´(êë=Ô} $ÊæYu"Ÿÿ}g)Ég'uCóØ"¹;;;;â×^D!~#š érLIÑ ƒF“`D£é‡ø¯%e½Ûyïâ~FÑ„æNŒ§ÍSÂî0¤y2¸ †ÍW’ÞßÝ~ú°,NéQ$µ>Á¹EØÎç·“`Œ“ƒOF’ÎÈ)ø)C®LV¢\Ê4Ø hÅZ²M•¨E!­¬M“4Sµ±|ŽÃÒ±””Ë'™Ÿñ#Ô@rj#]¦ÝöX§[F"(CV«tI‰Ès²º'c·Œ|AÝzÐÆŽAâÍWžBÐÌU.Ÿ¯ÿ"k‰uQ’ü&Š*—´Y©dE…ØÒJæRÇÊôÑV;Úh—§´©•õÀ/îCšu䚌U­J›-ÔŸ¯P5þýdºÊƒÅ¢ìŸQ?eè}Zœþü² ¾(ÑH0Á¬ig+g¹jcS|ñÄ•oÔvÂ3z3ªÆ0}M”©\tƒ.µ*u]ˆœ:^ ¾ŒŸX‹v4‰¨ œ®×Ï{ó›¶õ ¨§ô<ˆX?É]£8¥¯­ã¶Q3n¤g+ 豚`ÛåD¾[Óêrvú»F±Ä¶g¤š 8,Ï’a•¤k’_jkõ¸ÌuŒoO"w-´wÝ}lÛµÃû\òVXYÈÒIUëñ1\/„¼ÓAËë!2cIFcúVÌm®Öòº‘×K™~þŽf³éE8¹¸„ÍŒ¯Ãðú*:£ðŸ¦‡Éu7T‹A4œ.N;Üa0åÑâ_éDÞ´¿¥ËÃ?4/ë;áêfø»%µ <*¥Ü`ðD*kzçJæúÝþ €ŸÔ%2¥xëWµ|RÚaÂ[_ØÅìжƒª”Jm‰gj£ì ©N0‹'ý¾›®Cs¯+Á½@¦Z»%ŸÙ“nì² (¿ÀÞ,wf…Ͱ¶zû,»U…lŠËU)9²,íJØ$û(Ü…s·±ê‘•Ý"¼,÷|k\©L½¨<[ªdsÀ‚Q0°ç™EU¡ä—z ‚ fOiüôCóôÅÁªýš»t‰!~°´ ×Tå"F™‡÷ÃŽgZaK,A•nì‘ßVa¸`Ó©¹³ÎvÌÆ”º"†5t.Üj|­Ð.ÿ™ýpR9. êwöUu·߃ÃK$Ê«¥uu ¤ì¾ÏñhOÖŠý›wûwËå·ñ½­ö絓ý£ñdnv/º½4Ô±ØÄ¸Øv<ÈA>ÿùžï?&í3Dм°Õ¶új”ƒ%îëb…»‚ÝÕ»cÈ¢(äh¬%×zí-•y•ù·ûÊðj|„Ýýê&j¿ÉsÔ¿Pãÿ =ŽŽ”pÌ?û†2剥ÂÁ18í]É¿;Xû1„ã«û,Ü/ÎeÑž¶7·h2 Ƴ¯Znþ¼y¼½¡÷|ÇÒ.bôÁ©ÔWyÞí=Ÿ„¸¸¤¯Þ G“Q0Oq3ÄÆ(d–îæ½?zÿ ƒ!;endstream endobj -553 0 obj<>/XObject<<>>>>>>endobj +553 0 obj<>/XObject<<>>>>>>endobj 554 0 obj<>stream x•VkãFý?Ÿb8`+’åøG I“9ÚR÷ ÔŬ¤•¬FÚõ­¤8¦ô»÷Íʲåœîì&ØØ²ôföÍ{3óåÂ#ÿM†ä)Ì/\Ç¥ÑôÆá}‚ÏC¼Œ¤Øþp3uÆo¯ßÏ/®š‘7¡y ¨ñÔ£yD€q]š‡=ßñš¯$=<ÞÿþáîáaÑ[\Ñ'}5ÿŽÈÃüè`8ü<ê}T$¢(-S­¨ÔTâé笊¹¥BgUûz`ô³T”¥JÒÚè “9E²MȈD _dŸp„´ Aa&…Ú£ØÌ8 ÷|gÈÁòÌ9ORòEJ¤’F”’aVRDÒ8ô±¤Mše$Ök©"ܸ¡R¾–MÖaeŒT%2 @@ -1033,7 +1036,7 @@ x B)ª@!Y|á6Ú<'FWk\`åö;ëÁâ' ا$Ó‡Ü2fŸáŒ ïkØe}‘Qïù}iÁW;7tˆ•+qÜÈv¢ÒdñLà4ÒEU‘ª¤ñ J `•¶óûlôXg™Þ§)$ŸML'Yl[k¸7À!tÕEø%.êð†¶oõ‡¯1 °ºÏë,¸•@»X-¼ŽrÝQ‘æi&Lš7I%‚lK* ¡v´~£E¸²}Q£dò`¨Æ˜uŸ­›Gí/#Ëʨ‚æ¦Âd²=½‘án5Ó"øÈ<Ãøà®®"–_*‘5c¦Ög­Œ§ÇÏOô"²Š•ª¿£Š4†,ý6Mòkš4öU'ú§ãZ$<éÎÕS×`hAü/À:O?'@ÎÖMοÌW‡½9ôþØ0t3rì¬]g=6¢@ÂÐÎ~ Çõ<ÆÃXc¿(Ʀ!¢ á®Ì[4R„+™K[t¬sƒÖ“hÜ׸e- —#ŒV±æþËù°†ac‹zžCü_÷;Ѻ¢Âè4!V èˤð"ë8n¦JQŠð™º[Š,~ Ù‘4)Ö9pЀø|œÀðë0Þ1Üm7´ø8‡E7ö L@½déª\äœ-Bc¹(kNyÒ k]Àén5õn|g<›ÑØŸÕ êowŸîïè©ÁgA*L¾šÅ vdÜ;˜¸Ø§¢Sûïh2r&ãéŽy!ç¿^üK¯mÕendstream endobj -555 0 obj<>/XObject<<>>>>>>endobj +555 0 obj<>/XObject<<>>>>>>endobj 556 0 obj<>stream x…UËnÛ0¼û+ö˜ kÙŽåäÑi¢j{ P"e3•IW¤âúï;KÊy(i ò,’;»3³«_£ŒÆød”Oh:§j=‹1äS\g‹× ¾­¦:.Ìæ™X¼·0=‹ùpá¼}¸:¥,§¢È|‘Q¡ã1ÕÁTœú¬·tÕÙ*gýañNÌÒ‰ã)G-TÜš Rå2èßáîàî0mQ†˜üxuP¬Œ§ºG›ÖØàIé²[ÒZ{/—š8Ga¥û•Ú4šî¤U´qÞ›²Ùñ¿ó[ÞÒ£‘qwíÚµ Tvu­[AÅJsÀΦbÂèOÀמ$=ÊÖÈÁe»ìÖÚjŒôÐáÒ˜Ÿ:%Xs=äZºà<3þƒ“±›. Šuh…HKö Pç]rbƒ,}¤¸ûœŽˆëÃnKé=¢!Vªè>t¿§VÐMM;×@ÓÅåù·ëÛï·1G~¸5Mƒ„\‰Âvä©*Ú‘«ãýžø”ï EyÒ;¸MzO¢Þ+ÕþOnÄZî ň´mMˆ¼¥¥bí>Æ_hk[¸  @@ -1041,7 +1044,7 @@ x Í^ˆ‡aEå.Ù!zÝÍqvq-ûO1§â}¯¥Cï·1”äƒ ¦z×ØÔ´¢Š©ù€¢“þ‰·ÔÞLs÷ž á¹…l0 ™0 VÛÊu6è–3°zÛ«ýàÞá¨ýªV²•¶±Ö5N¨£„?d>õfÜô6?O€§ŠŸúvßö‹’5‡ôr[^e©b‹Ã –sŲԠB/µ<1ЖZV+˜ÁGÇ c™¾„/aÒÖw‰í>fOù‹BeŒÊ˜™fÍcu»2«--ÒÜôcuPxŠ„Á— ±èçz–/Äüô”¦³<½¾ž}:?à|ÔÛ°>×Q±ŠãýÞã||ºŸ!o_/³|&òùo Œ™lÂp—ÅèËè‘;6Iendstream endobj -557 0 obj<>/XObject<<>>>>/Annots 294 0 R>>endobj +557 0 obj<>/XObject<<>>>>/Annots 294 0 R>>endobj 558 0 obj<>stream x…W]oã6|ϯX´õ‰'i>îí.MÚ<´¹ÆnÑZ¢,6©#)ûÜ_ßYR’m¥hq¸Àú wwvf–ú|4£Sü›ÑÕ_R^f§¸3üyúïÐÅåþÖtv~wWšæéÙùUv‰g³›¿¯øÙÇÅÑôþ†ÎNiQ"ÆåÕ5-Џ5îä“ÛJ4A:ºÈèÖʬhÞ®VÒe·ø ‹/h6K‹Oή³3,ŸÌ-mmKaK¢((·…äßsQ/eYÆ‹Oéäì2»à%F’-)T’ ÑšÀ¡‚ð¯žJ‘ó… ÆÙ•utD²nÒK–6N™"”Öu!”§ÖÒù LL[w1gç)͵pʶžWr„ÜšµDdTF­—-·ÈÇzIµõDÔZ’21I$ó—ÌCF‹JâýµéÒ½l §¤!äD•Ô ¢¨{ac©¡K›[ÄRi¶Ç„ÒOBmˆã•Çù¶‡‹‘å4Ppaó¶F ´QZbwq†×•rÓïS[¤d86¶è@i׈r¤ jô+A‘ZºÈ(ô›­"É/ ðCýH(¯„YIòZ­ª QÙš@ˆã”D[øµ•³íàL=i)œÁbiÛ@véóÖ{Ëéð‹à"ö˜m,ÒœÜýOœýôz‹´žxfìÔÛÖårª Ô`„öÞO/öüŸp®‡kÁïžk»—W lï¿mÄ„PÐ „£8W¡A;P»Ž™¥’¶à)sR õs›4ÊÍíà÷a«#lwK ”7f&Æ–ö tÛX0>©Œ¡G&Nú¨ø½¢B>øvÉJ8”¹l¢à½`åàÙUÔFk¤[s¯ù¦ä.sÏ™ZÜh±ô䥬9ÐRBç²”Îáuh-‘+¡ßÞcúPF›a6ž ä´BÂ^ÊÇåS@ÏmN>·–_î‹ö„]Þw¼í=© @@ -1052,7 +1055,7 @@ x ¼@Î}e8}‹/nˆÀÒƒã ô’ûÉžðÛ‡—ÛÇOÇY¢´9faÒu‹tPš28mÖ¿;;ìaÝLÁ 0¿ûá7Rå((ìD D/a8úÚ¯vpœßà òä8LBÒ±(V{…¬1úÜ÷¸6á° “…ZǧÆøQ"×»P‡ôÜã2¹n1ûxVWˆ |K¥áãàÌm÷ó$=í®ºaщkãgQ7¤Ðz…eGûºH>«†²âØNß.¼hŸ57»Ü{ä’¥ìåÃÃÑ{hˆ4ˆMð<ƒ‰®¤á£=z‡ï¶¯jñÊ'IìWÈ ÅßYµs€Qâo²»Ì¾Û9ëiJpzÝ}œÌnðüäâ,5õ¿“/®.²«Ëëä ³s~·8úåèñ4ëendstream endobj -559 0 obj<>/XObject<<>>>>>>endobj +559 0 obj<>/XObject<<>>>>>>endobj 560 0 obj<>stream xmWasÚ8ýž_±ß.MÁJ ¹o„¤Î5moBç¾d&#luÈ’O’!¾_oelÇt2MŒ¬Ý}ûÞÛ埋! ðoHÓ}šPZ\ ’ƃdBãÛ)ÿŽ'iuq¿¸¸þ<¦á+>;¹Ò"#œ h‘^V^’4™†¼XI*D꬧]. U¦éF™5=?Ý{z¹ôRÒ²ÒºLº$'a2R&Hg„öIfÓ—ˆ*¼5¿“±áÃâï‹õ‡Ÿ’b^Ê­tµ5’ÓÓW¼§ùD8In¨=4&ÄOãÃþh’ŒùÕï6HúeTj3Iª(µJEPÖx²+Jsá¼ ”#ÍÙ6‰ž$–Ð3²/+­_¯bâeåóæ×“'ktÝÝÎyŠ¥ÝÊÕhUv ˆŽ i[¸š‚%±µ*²œ±2×¶ T @@ -1067,7 +1070,7 @@ oW ËQÜÌã ·8Ïȃ?¨}8Ò£%X„H@³ñzvÔBÔ”K]2{̪´µNÖ+sJb'1Œ7,|8¿!#w{884(•2ã°gåèÇØ9 ŠozÚ_Ì ÁN‰ |UrÏÛ¢§Ÿðiÿ=‰—T´NŸ_¾ÝÓNo“ FÓøfÚXÞóìé~Fp, ËÃ0úRaûã—úíÙþtpÇ,™ç¢­šÛ˜ûó3~c<'ÓÉ-¾ò·‚1?z\\üyñxD‰Âendstream endobj -561 0 obj<>/XObject<<>>>>>>endobj +561 0 obj<>/XObject<<>>>>>>endobj 562 0 obj<>stream x}X]OÜ8}çW\ñD+&00tß¶´h‘º­vVBBNâL¼$v; óï÷Üë$3 lUª’Äö½÷œs?ÜŸGS:ÇŸ)-g4¿¤¬>:OÎébþ)YÐâj‰ßgøÛj*Ž>¯ŽÎn>ÑìœV¶\.¯h•–ŸãMvr]ª&è–.ºSuªèÖâѪÊXý+;§Ë¸s2_$3ì=¹H¦ a_«2Þù‡²yeì:®_ÐtÚ¯Ÿ-“K^¿*'¯³`œ¥\û¬5©ö”'x¨ìO!c£#§¤<™º©t­áR>~ 9BÃjR©{Ölõœ&³KD[·–B©©Q>ôñ”*§gÝnIå“ÒeÿcÑg*  eëºuéº ge.×´Á²]­ñ ®«*âËÓyDeSš¬¤ÌYcwÕ“u•jɇøx @@ -1078,12 +1081,12 @@ WUn †œ ýë”àó#=øöª×âKÔÛà: ë B„3‡V›Î—c1îû•¬ ´ìÝE/]NIt(8‰€<œìH}øR¬M‚ù^¬+¸ÿÚ²—çiÐܹÅÞÎÈF!>æ;â.f‘K&lÕ\šbÐ,¹Cc#%`²³¹n¹– `K6E·E­²µƒÛ¹—Š2Ù‹f‡TPèNŠRÎòÆ–AMÚ•wœEì&L¶ z?îþüŒFŸ=aZf„QnÜî…&ï]»’¢Y©³'9¬¨&’Âh˜”ò ‡Ó.8h‹«J@®c½FÉžô ±óÂ…’½gW1µ2Dĵ1«Å6ÖŠ¬t¨•„$Â;”/@ŒÇag)7ð!<+9`Øõ„þqÝA¬5Æ$Ì­Ž#‹\ό繳ã.a\ýýxÿýöúÇ—¯œywxüýîúöVÎÅ8vƒ—ì PAGÎϘáK•Iñ錃X›Vqí³)W(âQôáÛgù]hcLÅQÑÙ¡ìxzâÏ&q<nkÆÂ@‹0»Æ#À›œÇ§÷ŒŠ4{¨„"Œ›]0hÛ‰P€ŸµE7u{æí\É2ûœdÑ›×á½æÎChU²†ð<æ…s{ð~Æ HÇc{8yøÀÞÈh¶À¤Êa±«/Ó‹«x Y!YS³ÆpÏ™*ºs¸ŒÕZ"<¤¤>wꇞ9Q £™Üã@Ê,2ðCsÚÕÎwP‰½™‘æ¼ÔÊza.S–Û¡òjéAºAl¡ªÂÃã2)³- ý(z„ä u`O`]HU)Õs?4ÈågŒƒ³šUÆe3Eá"µæ’‹×¢žrÖçóüz8ñZc$\W[Bî}‡6•ŠÙÙžÅS².åœX0ô¾zä&T³²}¬™¾„n)$üÈÍÐcÔŠjó¦pK€Ê ÔBßð`Œ ´kd–ƸUò°»Á5´öèG@Ûo2EÉ>/XObject<<>>>>>>endobj +563 0 obj<>/XObject<<>>>>>>endobj 564 0 obj<>stream xµUMsÚ0½ó+vr)™‰Ë6þ8’¦i;ÓL?p{â"ì5V 2•dþ}WÐ qHHé0ÆöH»ûÞÛ'ïïŸ~’ŠyÏg>ÄÏ҄žº4Bµ^ð9½v, ¢€Å] Qu§Š‚K»"ÂÁAöDD&,êJÅ“¬.ün¸qðíEÞ;¿Š€sÈ+'Rœ&—@Bù>äE_Ìf°¬ T­*¬l”+~!´JÞ‚±Zª©apÙ¨7ŠF-Q[¸©QÁBC‹`°5ÎOóŸ=ŠPβŸ0pïçWpªV À #âI«2¸…n H“•ÅF—¨Y½ºëSXBD)$¯¥ƒw¡DSh9ABZ#Ì׉J¬¤Âr'!ƒ¼F³Ý$È ­¡]xkQ¹ÄÙÊE¸<#1Ÿ€Êòt¤²ES"Û2!ðñóBþ—gðöÇðÓ¸?i«³EcƧ\*¶ÕN\*僰ÐT•A 7ÒÖN‹¶ªP»BQŒœ:^E-´(,©´OÀàËÁx–bÖ"¡Ù¥…0ö®Á«…sÄŠT§Ï¡(sFUžT‡d8@²Ü2ýï—#"¯—ÃõjËÚÔ YÜç1L¤ŸÂLZ;CU)©QQžk+ƒávïŽÙHòÉàÄvvoæhåœl®‘LA Þ䊓¿å'û™|<ó0pŒ_Éw¯[ãu{F‡Ÿ­]]6ž^_ áij4 ÔÞ·²Dgï~§—ø™ÛºÄEIÄ’8]ÏJ» ïòÞ×ÞÑ.’ëendstream endobj -565 0 obj<>/XObject<<>>>>>>endobj +565 0 obj<>/XObject<<>>>>>>endobj 566 0 obj<>stream xµVÛr›H}×WtåIvƒä}’“Í®«âÄkió¤ªÔƒ4»0h‡!Žÿ>g°îÎuå’ Ó}út÷éùoà“‡?Ÿâ¥åÀs=ŠÂÈQ8Žq=ÂWqÊíÂ%.Œ&nxl!Œ}8b*˜œØ„'vøÿÐÇõ|ðòÍ„üæ9‰Æ¸ÈAxÍÓ᥸¾çÒlöaúv¶&M~±®ê‹O¬XœÍÿÁæ|¿ÝìŒblÖ\פWœêU¥4-†~D‰Ð‹3ªÅRòŒ ¡uÁ.3Á$ ©ù’+bšª<Çf‚zz%$Á_Ž5ü#]Y£ðÜp¯ۺß`wXÐ>@ßüèc02˜¿êò'°Ž\º7?ñ{’[Åu£dKoËDfÀu#;rHOÄò;©þ @@ -1091,7 +1094,7 @@ x )äÒ¶W‹6­28‘H:n;#ò…²*mJ.µõâÒ6ØÉJÃáž»´BÓf6óØ#/1* Á’‚wÉ÷hÒkkG¤‰è#[‹ÅÂIk•J}a4”²Íe¹õ¸ìž÷¾= KÝ']1Eçk¦XyAíMÆ4ë¯ÏÕÎÒ¹2‹‹³ß“¶IYŸBú2ž[B!åi!¥›ZZ𙄸Ïn¯I+&kÖ¦`D&/+ ¶×â¹>]èüAÏ5Wõ!,;‘æH—þD ó}–WEQ=ÔWff·3ŠÚRµä]Ù˦LP«ÐØäQ1.¶ì$|‰¸j•±á`bhfC@2÷¸}êp›„“6 ©(ãÖ0ö­µùmÍ•ì³(›’ž‡ú°éª/Æ„ƒ]3Gx¶ƒÂ~ài ø3žlßä*°ïÃ2z…”¯+sPý¤ßbeЇLC÷­(GŒY„§ÌD‡fÚºß3´ØÆú Pª˜6 -þ}Ïp[0¦8q[Þ¶¤ ð-íÙô5JeS£¡9:¡Jºg¡šJt„z|*µ~xÄ-ø—oÆÝAÌ¿ Üh2¡(îz}6½½žÒkþ‰Õ@è²cü;~<¶ï:±¡éŽNÏ÷Â8tãhÜzlŒü>ü5øIMOendstream endobj -567 0 obj<>/XObject<<>>>>>>endobj +567 0 obj<>/XObject<<>>>>>>endobj 568 0 obj<>stream x•W]oÛF|÷¯Xø¥6`1’,KrÞ”¶) $AZ -Z0ŽäѺ„¼Sy¤Uå×wö>(ŠVŒJºÝÙ™Ùåßgãß„SºžSV“1Í&ÓdJ³åÏSüÕ’ ÷ÃÍøå÷ïÖgoÞÏh2¡uÁgÌ— Zç„sÆcZgu.ñ–mÒ¬©1½»Ê6´SeI©$+þÙ­ä‡f#qyÓÖZæÄç$´ÆW™(Kd @@ -1105,12 +1108,12 @@ zVv Fg6TÍ“`ñ†×…6äÓë6A Róg/»üÚd‡—ân¦è7ï—áÝs²X&óÛ[šÏœMݯ>¾[ÑO<9š-¿·ýÒªÜÏlqåh1¾eGûNóž-fÉb¾D›ÇšÉ’ƒøy}öëÙ¿U^æjendstream endobj -569 0 obj<>/XObject<<>>>>>>endobj +569 0 obj<>/XObject<<>>>>>>endobj 570 0 obj<>stream x•TMoÛ0 ½ûWð˜¬ÚŽã]‚$]‡Y¡véE¶éXƒ#e’ܬýõ£œ ­klXaÄò½Gò1¿¼zBH#˜'Pí½€g1‹èÒ9¢Fh¼uá]ßæ¦P4”’d!5Px@QÍlÁ`£j„ªåšW5X^vxUü¤ÄBŠw‰~”²„RgÔ– 5·ŒÕ}e{8ÑÕh*-J¬¡|†=ri@5°zØÜݽ¸X!w*%éø–Ø0(Z48@Ùv@Äᜪ"âwÁŸœB*Þ»ßû|@â¶°¶Ce-¸„^±“¤KH‹;Ô.×§Ò¨õ,dàît½pÝV¥zi~Ó—oê<¶¢j¡Q]§Ž#˜h sC0êõ‡%ͧXkÂ*{œ…mA¬P’wgøû@S0T"7`5kðÐz¨ÅNXóx5’O)^FrUÓ´`}{ÿ}»òÆ^Hn‰ã4Ëùè}»¿àI%ýô† ç¬4ÂJ¦X%Ð_% î;wâ4¨7 ’h8(çÚEëCÆvž¸Ê¾iP/—Ë‘Ðlб…åŽD;âæ5¬Àÿ`åS¬d¿/I¹ð‚%d£ôž»é¢A»u½KØâìêà„w}›—8\ä,ÌsˆÂa_V_×+¸Á'ìÔµ/½¨‡¥óÃ4c Eúi» ùç¿DœÆ,M²3kîúó¹ð¾yd`endstream endobj -571 0 obj<>/XObject<<>>>>>>endobj +571 0 obj<>/XObject<<>>>>>>endobj 572 0 obj<>stream xVËnã6Ýç+.Ð…m RüªL1‹™ AÈ¢E Ì¢ÚÐ2m³‘HH%ñ|}Ͻ”,?’™&ÈÃyçžsÈoW#â{Dó1Mf”—WÃtH“»i:¦éíÿñSiZË‹ñdxùâóâêæáŽÆCZ¬k6¿¥ÅŠgˆ'yÿ~«vAW4Ki±ÕäËeš;»¦µ)ô`ñ¯ìÍãÞd‰«þ,¥ô¨_M® údU±÷ÆÇÕSšÕãy:ãÕŸ•ç…ÅþšRpd2žv•˵÷zEÎ’¢ÂXMË}ó[¼T„æ7èêŠÂ~§=¹µ¬ñ¦‚¼¬tî6Ö|G(@.eHÉhË-šJWúÍfýªTéÓ<|àÅ7ÏÒ©”[(ûÔ¤Hèey$AkìÅ{zÙš ýNå:åí zš«>`áÏøxH~ïÊRÛpp©7ÆJ¼¶¤ñ u)òº4Iî @@ -1119,7 +1122,7 @@ x Ü ÇNFÖ.èˆU>WÖ"ÙÚUüæ˜B µè[#ÊøEê¼ÜðÆl7<«¢>KÑŒè,¥„N#‰ƒ{Ò:T"ÂàD"Œ8K'ÄÉúþÁã’Õ’ž—J€œb <‚3ŒVæÙ¬£Ê•HŠld¦Òið­v ÞÇžpšÍj!²Y%“QÔ$´õÏWD¸¦¯ rΛ‡ãa-v ØmÀ0(`Eʬˆ ô°Ï3÷Àr‘vÖÏ´®mÔQÖ÷ZSÎlÈú“ûl€—à™ÞfÀ®cõ‹ðçŠõ”eŠ«mߣ8á+ã´Ô¹ª1'¸Ù`Ö&r“4`†óñð8ª@uL9Ã9lj)*ѱHú"Ø&ÇéL£ŸºÊnÖòš§ÞQEHK¥Ú·FIÆBC°Ûã¼)}òu[Ÿaïçý@™),wåÚä#ì„9bô8;bX5·v$˜ÖÓ¿œ”²w}™-O<Ög]-U0¥Ô)ˆÅy³«±\U•Q …º²gÌ?”çãØ+ŒýZ¨‡­ÑzØj+]ºg½ºèáÈeÛaäÌ}†>TʈŽÐDÙM´(·8”Nž‡rR5†Ú©MÜâXo€ñXo`Ýã4¶*N~Cv5úÓÃç”-Ì_/lYjP?€Ú,̼rq ˜¦WÁ'X ó—8—|¡üö=°#ÖYƧ–ÝBȶbžlô{qmZÊIÏÅiÝ!-@†-ð_Ù)œ4Yß:›t¨CˇIw|>köÊà0?9'¹E‡–ärdßô‘׿`|1Ð0cKÞÄ+çw6WÁY€¢Ü&XÜy]Uíµã½30¥”¦_U Àåtó0¤»öú6ÞKÍ—T¥úñ¨•¨*æf–µ“¦|Ïì·›¥.éÉ@éSÉñ«« 6CZ±esÐ÷Jû?eq?¬à¶»µN›;îýO.ÆÓù4Ïnã½o<ä_\ýuõ¤õ¨endstream endobj -573 0 obj<>/XObject<<>>>>>>endobj +573 0 obj<>/XObject<<>>>>>>endobj 574 0 obj<>stream xµV]oâF}çWÜ7“¼ØPC¶›H¤MV•²Y­–Vª–< önìê±Ãf«þ÷ž;c‹š>”(‰±ïǹçÞsÇvà' qHÈâ¼3ð…CD£É×!~ IKû |}ñàzÖys;¢  Ù±¢É˜f !Î`@³¸{¯KIåZ”ø#Ip´ôI’ÙˆXZê,ÓÛT­ø9mu‘gÊ7¼2o i¤*›çZÕŽ´åVJÕ“PðœããÍþè ¨ ýPº©²¡K½¡,U²G›¬2öÖRW!C,eÒdp¶i¹ö¨ö42ÖÎÎ>Í»¿KÓ£_¼œb]í¥*NQ¦Zùó³BH@¸ƒ+ÌÙº²&¯E!âRÆ2’®”.dBZÑ"êÑ&Ã#¤ȗĥ^"Hž#ñi¶–ÏÖ÷\«ìùüEÑ(J¯Tú 1¹T‚*œ¹Aò\"»Ëã³ó›Û @@ -1127,13 +1130,13 @@ i 4d¯=ÁXTFRZL—iaJ΋R+QÖÌÌží¦ÚTûœ"ã5$4„ý÷ “ ÀeJ—ºhfê`þ‡1âÛd§û%›Ó}z¯siNÔk9Ü!b|–Íð*jõ´–"©…Գ͎3mx›, ðGYbcxÞüŒ)Çt˜Ö?cï~=†5ö[UkÒ°iò…N,!YHm°Ý¦:=NDïØúª©ÿ¿½¼$ú‹ÞÕå\Ñßtóñö¨žÝóÆÙ:6·É ÐG²…·{Ok½ ï‹G÷Ó7„Q;öyÖù8ûK~›ÞýzC÷wÇZ¯…Ic‘eÏ<Þ`+—Bñù)JvÀkC¿9æDËhMPµaÆ¿ÉB¶LŽ®? |´!X#(bãL1ƒPÌVÒ£’[›e~fAox£HºOœ_Û#~Úæ{¹TêÚì’;¤ÈfÄ9n&õkNðÃÐ..(nÈ>O?\Oégù$3½áCý}³S?O¬m<À¡—t_q¤ŽÆ#M\¹aÀanfO±Ý™endstream endobj -575 0 obj<>/XObject<<>>>>>>endobj +575 0 obj<>/XObject<<>>>>>>endobj 576 0 obj<>stream x}SÁŽÚ0¼ós[X7 !CAe{Ù]©jº§\Œã€Û`³±CËß÷Ùí–JU)ØïÍ›™7¼bDôÄÈÌ3ˆÃ(b²yÆ2¤Ëœ¾z;‰&\,²ý¼¹X—£‡ÇqŒ²ñ Ù2GYƒ€¢¥°R8e4ö’ײƒ²PµÔN5JÖØžÁ5ÌQj¥wØv\ü”ŽŽj8Ù”æn(r{ Ñû¡Š¡ÜËIùcaÏYBcÇRû"jy)ž7ïs,|ÿ…ó=3"|mš3ø#:™%K=N#ïøA ´JKϺV'"^CigÀ‡ ž(Çkñô}èà¾Qu÷o=oaÕŽÄé0=ÀXéq´7¼=½@¹éÌ!”À ŸžÁß–phù+ Š= ϵ¿<áîªJßU“”¦ƒÒ‡ÇbÒÙàfiJû&ÑKXÌPlMïý– Oô}Áduâ÷;&ë}I؇icat£vhTìâØ*‡^÷Ö;¡œMNaêý~ÈÂVþžâÌ…˜R¥5z éÃÚ¸½¿S‚Ú¸æíÙª[»ª±\ûÈT“–+”]cºÃ›°F’ÁðÊÛ^ÚÀ 5”Ä'ÅACÚ-…ŽÌ%FtN *d//¹Žó%ËVdÚü’³oÅóºÀgy’-e·³øÒS6|ÓìZ;Ë£Õ]Mó”åÙ’þ€äg’øæM9ú:úqendstream endobj -577 0 obj<>/XObject<<>>>>>>endobj +577 0 obj<>/XObject<<>>>>>>endobj 578 0 obj<>stream xW]oÛ6}ϯ¸00Ì\%vÒ8¶kѶ¥[\ôÅ/´DYl$Q#);þ÷;÷Š´]µ†¦@"‘÷ãœs?ôÏÅœ®ðoNË]ßRÞ\\eWôæöMvG7wKü¾À§©”sy4zñvuqyÿ-®hUÂÖíòŽVÁΞäÓw•ê‚v´ÌèOÞ><>‘iIÑÇÖ¼Ð'ëêâÕê³X˜/ ¯¯o²lL—Ù<£‡68[ôy0¶NÞÐ|O.–Ù-Ÿ\UÆ~ùʺ@…ÍûF·B¥ð—ö¹3íÉÛF“-ñXã¸ïñHNä¶-ÅyEO¼%Ótµæûн~zD;#ÕJ°Wôz~=„XÙ==©f£(·¬íM¨Øz“ѪÒjÔ*]wÔi ›´¯,)àY[ûlÚ-!:6ýóë_?¼. fœÚ˜Ú„CÆùÂÙâ6»á,í|8‚n)ØÁ´í9n\ó”¤Câ€:…W)¾OÈ·Õ€t—¼0ƒçø‹¿e¶Èè£×®Uöÿ¾Ô:gƒÍmM‚´m}@TÈÓkê£ ö›ë.dô^9¼g¬Ó-Oë©ïóŠpùÝãßï¿6?þðûǧõ+¸ØijíW–PU×p°BZ­X|''ymÀ+â+B ›.€Î\K–gü®§rÁä}-wN8:;X˜sæ 4ÎÚ©ÚÐ “{ @@ -1145,7 +1148,7 @@ z 6ÞQµÂf c‡Ã.hÃÆ "3æP<ì â Nµ9KÅkžXòÜkî|c=}Kذô×Â=ç¡Óèõ[ZÎ``Ÿ‚YE„áXR§.$3Ü)¸+ÎY >P•X)O¯àk”þ(÷Ýãbã´Â†îã÷‚ŒbŽi 6í`Ò¸Øy,àÆ`±BŒÃK{¹î‰–ÊÔÒ4I>ôeÉjÕ¤À6…}ËvòyTT÷méB[§OµyÆ&Ѩg=`ç‚Q€tä]–g$=g¶Un.ïïNŸj×WÃÓÿû¼YÞdËÛ;|Oâ»gqÍîÞ¯.þºøuªìÀendstream endobj -579 0 obj<>/XObject<<>>>>>>endobj +579 0 obj<>/XObject<<>>>>>>endobj 580 0 obj<>stream x}WÛnÛ8}ÏW ò²i‘(¶ãµ“Ç^ÒE€&éÖîòBI”Å–"U’²ë¿ïRr¼Ú`8H$r.gΜÿ<™Ò?SZÎèjAEs2É&´X\á÷üz‰ß3|œ¤*¾˜Ïn²ùK/n&ÙlüüíúäòܦSZWð±¸^Òº$ØŸLh]œ­k »/·Ò M­õ^å¬î‚²ÆS°jå©u/šsR¦Ð]©Ì†:/¤F´-œ“0%UÖüVoe¡*U¼Z?™ÐÅô ®Ë³Ã5œ¤V¸ ŠN G¾F(>ãÓ—nhŠ`9ê‹«92ƽe6Ïè“ð~g]éÓ±çä.fËlÁÇî…ÙÓêþ-ZIpPz÷øùöÓÇ/«s”cäÍæ[e;ÏVL™?}ï|ˆJ!s·'gQE#9b¥QÎ\£ff€;[$p¿õë&E„ yÔVf´.U,:0šú%ËtêØßV†܃3cW+Ñä÷ø¶TØVÒN…a–|Oÿ…Î3<Œäéà4¨ªOɶLOÔH5l!OÉ0–íÖrŒYU¡zå!Ëä²kÅA†DWœ0]“ý­Rvб‘þœÀW÷RT©¨CX#Ç)H¡µÝ V)°s+´BÅ8™­è SoDQ£rôtö­*pyŽúªÌìe=½zXZËŒÛ6i @@ -1156,7 +1159,7 @@ R ø°«>èCèÁ_lri†ò6 P Ìü6®%\Ë^X÷°û¨Š´Ãe[Ê{ÌÜK°¦ïEçdŒK½>˜N+Kœ½¢^~¸î¿·L—×Ùâæ†“k^ïWoîß¾¡÷¼bmtžþê°­s<ÃÉ‹åäæå/ óå<[.®ñ­–fs¾u»>ùûä7BP…endstream endobj -581 0 obj<>/XObject<<>>>>>>endobj +581 0 obj<>/XObject<<>>>>>>endobj 582 0 obj<>stream x}W]O;}çWŒòR*AJ MàåJ|^U*ЖTèJ•®œ]oÖe×ÞÚ^Bþý=3Þ„°ÀUÕ*õÚž™3gÎŒÿìŒèF4=¤£ eõÎÁð€>Mñïø˜ÿ=Ä_¯©ビ·?ŒÆo|8›í|º:¡Ñ”fŒLŽG4Ë h–íN‡“!]h»¢k—ëðqöÛÇ4Â.Þ¾ˆ 8°{_jKŠî®Ï(«Œ¶‘\£mÀRa*M&’  @@ -1169,7 +1172,7 @@ x}W]O;} .ž^²‡— —fÝ­A ÆeiÐZ`nËáD¹¤$À™µÀ•0&tyÑÌ—ª÷ÐÍHû JÐ]o+¸à)Ó>/XObject<<>>>>>>endobj +583 0 obj<>/XObject<<>>>>>>endobj 584 0 obj<>stream xmUÁnã6½û+¾4lÅvÛ9&»I`½íÂÚC.”4ŠØH¤JR6¼_ß7”ìÍj‹ ‰M9oÞ¼yüw4§~æ´^Ð튲z4Kf´œ/’-7k|^à×1£ÇýèæyIó9í YmÖ´Ï á³í³«ªSE¡T|[ì<ÎÖXÑžgÓŠë ÙP²#Ïî ¾ÍJRžþÒæëžrk~“ÃMc] FĉÊi´5d‹~)SUu½ÿg4£éü0÷ù•29é@%®RUm} Œ]PÚT'J™ )*Yå*+Qˆu´ÝQŽû+ÛŠ`/IŽêRæ’o·}$Ɇ)K9æ=(])T–ô‹U²@{TÉr€TjÛ@«;ÛP%YÇ$ycUž´ÁåS¤`3[ÑëH3ož*ý·À“ DG§¿^'´³5å.óŒ[³ªÍ™ÊÖäŽs/Õø6­É„M¸+8…‘¶l ÄͳŸ#'ŠÏÖÿé´ ßòeö+‡{«ŸL[ ¼‡ª’¬À (Ôᥣ @@ -1180,7 +1183,7 @@ Iag }át¿Ä9Qø ft–†÷2¶OÏVn³VzêÏ4ööëƒÆüÂû}dí]Ü´`Í —J¯À xdWpN¸·¼(£8”ÐÈl¨ŽƒJ¦HJÅÄ' ±ìH.BTÑÍó¦NçëM²º¿§Åf%ÏÇîaûø@Ÿ>/XObject<<>>>>>>endobj +585 0 obj<>/XObject<<>>>>>>endobj 586 0 obj<>stream xWkoÛ6ýž_qç 8®íºNZ`Öu M·xø %Q6‰ÔH*ŽÿýÎ%)?”ÖHä}sϽúçbJüÒõŒ^/(¯/>¬.^}zK³ ­J¼Y\ßЪ Éx2Á“|øëV4^ZºÓÊŠ\é 9Qg‚ÜÞyYS.ªÊ½\}‡‘9M§ÑÈÕìf<ƒ™áj«•ª’TH—[•IG[³#o¨0tf„<ÌK2šî‚}Ù{O¦õ´Û OÊ;\âvÖè âaãø§§ÒXbBWÓ×ѵßJ*…ÒžLI[)¬Q[ª¤½iIXIVŠ‚íy6„óúð¦±&Yµç°i…—ãd~¶Ï9³_rß"õ}‹#Ž2QðöÌÿEf$ÕâI+OδºÑ÷Öyä¡/=ÉÇFæ>œE– ‚CÒ™¤i÷ÔXéýžÞ]­_ö\ßÞ``§ÃéÖ)-Ó­FñÊ`,SŃÐ^làO[­b¡dž Š÷¤QdT(7µ¤òÛ0ý’„Z¯*…È‚ Ü3;ê†Øk£•76X;åG:‹œÌÆŠšACYPú#ˆòÑ[YK„Âm~h!³v³áwB£Î•3€µjØä¼Ý(ÏX³GÑk xq >b•xD:ÖLƒ9žµNö2NI05Ù‡ù(4,;%BÕU ¯À\Óð×çÊ @@ -1190,14 +1193,14 @@ Eº ‰´1.!Öϰડ¯Ëç 9Ðh-†Œ†HnAã^T uHÊ+ÛíMÎc¼ÙŽI¡êI肃¸€²cLcb¡k¨Î5÷ÂåeÔSôœçn Ãxd&¾vŠ˜ ›P¾* ¿¾Á–ýþE‚~ M;Ïÿä‚ë6¯ÿïéÄÍÞ¿˜>ëí‹ñqE\•ƒ´µW±0ߎ#ì0BÂÂïFiý:ÝûÂð {xè-æ^ÞZ^gzuLèÆMœ§a¾UUƒÜ6@è“i•Öú D&<~:¬!Å:Ï3PÇšw º Œ·QɺÉû~Â~ÐóI¾¿benŽ,oÒËþÜ™_ÏÇ׋|1Aaf×lð·ÕÅïÿ¥­\Œendstream endobj -587 0 obj<>/XObject<<>>>>>>endobj +587 0 obj<>/XObject<<>>>>>>endobj 588 0 obj<>stream xTÑnÛ8|÷W,òä±l«†­8’4)´—61P—ÑV1/©’T|þûÎRVšú¥…aX¹³³³³ûm4§>sZåôfIe3še3Z,O³‚Å Ï9¾ž©¯GÓ«Íç´®²,V´®×g3Z—ã[2í\G ·UŒªÜp•^Ä [*•¥ÊÑv£"?³'Ir–pJ¥Ñl#Uz[ª.hûH­w†›@ÊöH[mÌñú¿ÑŒ&ó7YŽüãRµ±“ŒÆ$¨° ‘¤3&ô€¡y¨¨QO²}l¾Ì{çhã¶BKxkÙ·ž…£äЙþ¤÷lÙmG×XùrƒsïºGùer]l»Hµó¢ë}Ökz²ÀƤÚÄ·¢Š 쫤\³!£+`ñÿªi Ÿ®‘W58}I¢ë `ã†ZöA;›„TTk]ÓÖu¦¸‚ØA⤲\ dUè;Ñ{…îëÅsOèdÚyÔl+á`´…–tfè{BÕå“43:È¡O×&*y+¥×mDu¶kØ÷}=ª1n{”¬1ˆ X0Œƒ }UÚìMS¸:læ9ïHÇ ˜H;“òP« É›°ÕQ«¨Ÿ9£µ£G<ô¦µ¤+VäêžÇ`dÑ@j–þ¢X¨Ö…µšE¸Z ðJ¤s€Áöލéf- ÐxZñóÔv½¡ ÖX2@YtÑ£‹[¯#+´ü¼4´•Ù@çZX-ö† ZAqį;Õ<¨·CÚÓ~l'ù¢7ÿß­®(/òeñOÒù~|ôBéè„nþ½}÷åöþ˜ˆþÀ´ÑåÙÅÅåÝ?½¸Ž*¶š«ûã!ï KcõKä/·7}ø ìßBþ¡ Æ>_J†u?6%‡ŒçwƒÚ‡ØÛf¨ûWr{VÕ$É,F·|üwÖì2:‡Á“ºðŠØªaeÃϸ¯6Ñ‹zýaSŽái°´¥óžËøzj“…§WÅÞóU‘-OO)Ï‹ý~:ûx~Fï°/ &óò¾ƒI~2ܬfhl5¾ÀöÀú¢TaB‘#Hûéõ>”ÈÅj‘­–8¢òB^]®GŸGßýQçœendstream endobj -589 0 obj<>/XObject<<>>>>/Annots 307 0 R>>endobj +589 0 obj<>/XObject<<>>>>/Annots 307 0 R>>endobj 590 0 obj<>stream xWmOGþίåK@Âw>l„*B€¢âbWi*KÕÞÝÚÞr·{ÙÝ3øK{ŸÙ;;`Ò´ ^öm^ž™yfüu/¡.¾ö¨? ¬ÜëF]ìlÝ_ï%ÇGQ—Ý~—¸•DƒvUЄïSÿ8‰z|6Eývµ=ëE'8K†'x×+>K†½hH½ÑIt„Ó^··+>}¾ÆéÑ1n5w7r{xÏöô†Gü2¬¶g¸?:Ù:~= >{?Ý‹¯FPFÓ9¼ Ohšg±“í_,E奥QDwSú`J¡4Ý/Þºƒé_áe2l^vúGpxšï¢$¢í­ÉëÌ+£››G”$íÍÞÊqsºTŽr“Õ¥Ôž2£=¤;Rznl)ø)yC•5+•KšMx4öÁùæðQù%f“œ´+•IwH¼ijO~)IK™„á-Ñ¥NÒoŒ„$~"-Lõ3øº[”aϱf3§¥÷Õ»8†ÏÅÒ8eie¦Œÿ.²"ÎÔÜiŸH"ÿäƒÖ”¦kº­dÔªí ,x ]Ö¸ ©2Ω´ì¤“…Ì< À ^Šœ­Áç…5uE³}øÊ¦¾Dâ­£éÅ8¾CŽ÷J/Üì>ç;N‹9‡’Ÿ›´P á]“•©10Þ¯+ è¡®2Z”ò*áÏ_Ùáäê ˆ»y]k^MX ÿv5W••™žÃ¸¦9â’Šì€óÚÔ–äS%­’òBa$b‚ȳ‚Cv%¼øœ*ØÉŒ…@N×œæ¹ «Å€6ˆÚdÙn@¦£‚%Ò#¥Ë¬J½¥´’2$¢$…Sð/‡}+Î&kJ„!X„K01)ÎSpk‹Î“Fbv°cÐô¥Ñ‘|’}15¼-Š&Oa*áy–ƒÍ}ì @@ -1209,7 +1212,7 @@ lIU xÿo¯®‘±‹8[¨Nªt\Î]ÜMâê8†ñh(êEÜí’ïÙûM)¸‰n´ë%§4èåõ­£æ1@÷dæþÖrÛ¾XJõûZ¡Y=ç£-¸¡f©‘‡,† ¥U¼i´ÏuÐ]K>m:s®dK%™WÑ0ÛÞ*`Ž6jYæýåõŸ“?Ц 5¼¦¹fºOÉ<|…üН0°mÇ‹¶ÙþüËíÇÙlòe2½Äß‹Cû LèÑéqÔ ³¨ ÌèÙl,,Z¨¼p¯åÞè¶û @¸ ‘äÞSÛêÝšÊ$Lê±KvV‡v?Gí24·ÀЃ öÆuµ‘½ãËä|•€¨XÒ›[%RU Ìß½!‘šU3ÄWÏg¯œ÷RXî%j ˆ£»H˜·¡Z<µT{ç6=j)ÀÌçÆ*ž¸xTÐt>¾ÝE㌕È"Œ LhôøiiØ›wÐWB®-ÏlRc´¡îšvžË9â© †± €Ø°ð†Z‘2²pò‘UíRÑ«¾…äÒ†J‰ö–bÇ Âc!Hîð8 ¬è£Â@†8‚,›ÉÑ(ê¥(Ù t$øT*îJÞ„ÔÃG„ΆÛ>Šª‚`4§û›°?]˜¦\;5ð˜ÚႳƒ`x‰‹Y;ßÇØÌ0a¹S?ÿé7Ldtó!Ð ÂõØì^‡‘0l¿ÔkÅW'mòvzÇÔéó¨ùñH„ÏÃÁIcQoÄ]N÷~ÝûÊ5³endstream endobj -591 0 obj<>/XObject<<>>>>>>endobj +591 0 obj<>/XObject<<>>>>>>endobj 592 0 obj<>stream xWMsÛF½ëWtù²r•“àwr²£8å*IV–Lía•Ãh’df ™ùõy=ÀðKÞ¶T&Mp¦?^¿~ÝüójHü i–ÑhJyu5H4YÌð:žËk†–i¾G“ï}1šŽÓÅåŸVW>i8¤ÕF¬Oç3Zƒ­òëÕŽ‰¿©ÜSÅÊh³ýPðFíum¨ÞЋ²ºnUj«sÊkã¼2ÞQm‰M[±UrÒ¥ïW\%ð£Åõ(%ùŒÉp”fòHüXnÊ=±µ¸œ×“2µŽÅß)úÕëŽ )z­í3<†hÖœ×;<­¸Z³•kŠŠºRÚˆ»ÁÑÛÓµ¯iÍT°Ë­^sA¥òlŸÞ§ôY鲘8`Ù·ÖÀµvg®uY"ßgœAЧ Úú.VíI»õ‰_UZVÅþ,D1Òy)›¦ce|Äi´H§òHNçvßøzkU³æN©€Ó{»dûÂöQ9‡ÐŠ%{`YU€ò†^q~‡ˆÛ² U–õëe0ƒ|§Ì–I£¤Mo2¥• ?"M)R!ˆmÙHÅ;dÊÚl Z‘cç„/ϼOé¿_jj<[—ô…WË0ø`?„.TxfnBÄ  jK†} ç÷7(N:?|^аn(É&”Lfé\]¤CüѲnmΡ`Ç~¦ãQ†ãóðŽÃù3à\Y…“´±u%€W5ºŒ}ºäuÎô¨òg´«„¬Öõ ?½NÓÁt"^Û’>º&rê®™îXoåÉ¿Ð<¨²¥w+º ì}‚ä]^B¦ƒ•ÏKù]fúH(×7Mý7ÿÆåÿ8 eñü D}ê£,‚§,¥Ÿ, ƒXÿœQž>Á¨¬Uœ6¡\ôªýN`£û·©5[‘òê‹ÄU Œ×y×Ûnﺿp…¡ç¶Ôé2Žx™T–!‹q±©eŸŽ ÌÉ1Ñã°…ŽÜ\8ìî¡4kü*8)u/;HSDðˆz§’½Á0+å¶‹ÎÓ¯jQ ©—ʶÀ^µÎlj?Á’'“û°(Ïû߃ÃÉ(.4ÍFéhΠ>}¤ÛnÓIý¥ÅïI*Îæát2,âÆx¾Ygãt6÷?rëçÕÕ¯Wëö¹Ûendstream endobj -593 0 obj<>/XObject<<>>>>>>endobj +593 0 obj<>/XObject<<>>>>>>endobj 594 0 obj<>stream x”ooÓ0Æß÷SÜK˜;Áqx×n+L¢c´·(sÜÖ¬ù3ÇAƒOÏ%nYË"wŠ*Uò=?ßÝs¾Ç …? ƒˆƒ,'! ‹”Ä‹ÿ3üëá ï‰;`!'|ì€2:®à=ü¿+fÙäÝ<C¶Æ¬8¨Í ÀœÂ2ù&% ?¸®ºR™Üêºjßf?ˆ:QÀ”ì#)Åjyw ŸT^(öw£œ úOÀ±X”Ⱥ,óª„ßc¬®Àn”­i$4¹|P¶ÆøKÂp×¥zìTk?œ^„Ý hDXSø†§àøø€i¬Où9ì,g¦«ÂϘ½Š1•~̥àCg‡’˜p½uÆ¡uÎŽ;×N]­k'±#뛯òJW¨×½-Žá.ß´ [誢–8•UÅiú!lïè\›ÖÎM¾ñ'NO'^|Î_Cð¹p[Ûü|±'‡¥’KÕÃ…‡q[/ºÕÍN=y›A}ƒ‰¥ÌksS¨²ñBØȺ63‰õBb?ä[§ýí{ýaŸ ¶Fôy#+k:i;£|k$"¸F¾¹¹‚ ×à‘amõ…CÚG]ôã1¸×¶%Npxýh=Üä67ç°}LOÇP±g4„§)p¬mØ.«éb6…+õKíêF™>b«†µbƒ$LŸ·ä‹}'1I¸ÀŒË*žÇu6ù:ù ‡µendstream endobj -595 0 obj<>/XObject<<>>>>>>endobj +595 0 obj<>/XObject<<>>>>>>endobj 596 0 obj<>stream x­UÁr›0½û+ö˜t‚Š È-§­q¦5éÅÉd0ˆX#\$Òäﻂ›ì6ÓaìÑj÷½§·«_# 6>|\I>²‰ Ìe„øøîà¯äÕ ã€’ oÁ\pL’žTŽÍˆÓ·@é@ Ï}_û<}þ¥eȃ>D) Û†(9 @@ -1231,13 +1234,13 @@ x –U–¡—7…À ºWÌú†ÅìJÍáìQòçÕtòi_º-Û7 ›Mí°îáÖÜ‹va4ËbO{›º-b: cëàe SÏ!, ½æ^™Ÿ]žŸÁ„?òu±Á6€¯•H¹afQ?¨c-ßÍÕ\A0o'¼2QžïŸxçš+¬êÑèûèÓW>?endstream endobj -597 0 obj<>/XObject<<>>>>>>endobj +597 0 obj<>/XObject<<>>>>>>endobj 598 0 obj<>stream x­VÛrÚ0}ç+ö‘tjÕ·Úæ†´¡ ÅN_’NÆ‘(c,"Ëiøû®°I€“K‡a±òÙݳgw}×rÀÆ¡ ^tѲ‰ cü(Äß.~‡éÚà{ ^2¸‡ N=¢—´¾|ë€ã@2EïABÂ=Û6$´Ý!.ñÆ£îð®ÚÏgzn‰œ šjΠÌ•ŒC¡•ÈgW''É-"ˆ–1ÛƒQ⹕ٯ͘§åx˜ Ú+dÓ=È]@kûé—ƒæe–Yš«…È×ÑVQn;¡óT¥¯¤‚Ù±öäFUð5‹Ñ N&.R‘fb–¿•¨)ÚeÊ’ZÂŒë=À·nVšÃÆí_¡ç ç†ùTi“’9ÄÃÌyʸªÓÙTâqMµX¤ðÎz4ÁÚ`aRLÒrÁsÏ‘Ò6A½3ºfµl«c-ê'q׆K`ÜûqÝM’ ŠCÞÜrª!ÕØ7¥æÅ:Ã~p"d®Nùª-r0J@H9ÍÊJ3XüúÆTðŒ5•ÿ÷xÐÿt¸iL™””˜P˜„T+Lh)–Lí§±#«WàÖ¼äé‚¿ôØÜ0Ñ>ÑŒ Û ûh¸§¥zŒT‰¥RýǸáïJlktƒ]\pu/(?.8ÀÏñùõÙ¨Ç]XÊLÐÌÓœe|?s¤i3‰ª/]»alî Ä'ЯãAßÌE&)JOf)”T—Š6ÇÏRáÄDk½6¢ ƒ_ ð†ç™¿N“Ö¯Ö?+CO-endstream endobj -599 0 obj<>/XObject<<>>>>>>endobj +599 0 obj<>/XObject<<>>>>>>endobj 600 0 obj<>stream xÕV]OÛ0}ﯸ“€‰„& I»=ñ1P¥R´6ã©2ÎMã-µKì4ðïw„Ò"¨˜x@ªH{ÝsÏ=çØî}ǃ.ýyùÐ /:]· a/tCú=ûô*ÒºônðZÁnÿµBºþËÏOãÎÑEžqJÍÃ~qÔ¸Û…˜ï•Áo`2¤¶B®dš nàM…(m J)¸J´)„œC†,Á˜L^« £1Oi0 @@ -1249,13 +1252,13 @@ c3l( ~äÂÙhßN'7ÁßÈ’þÜÔÿOûL®­c»bÐo//ðÝp0€Ð¯¯ÜéÉÕé œã sEg†ËR$h“ãxQ¿^éDݽX›[ ¦O·W}°QàFaŸ~JЊ^`¿ø#îüìüm‡×endstream endobj -601 0 obj<>/XObject<<>>>>>>endobj +601 0 obj<>/XObject<<>>>>>>endobj 602 0 obj<>stream xÝVQoÚ0~çWÜc»Aš„,„½Líh;¤[I»‡vB®cÀk§¶SÄ¿ß9 ª&¨/Ó4P$ˆÏßÝw÷ÝÙO-lü:Ðs¡ëMZ¶eƒïØ– ^ÐÃß.>’Á¼Xðê\¿‹v¯vœ…­“‹>8„stâ=#@¶ !=ê[®ÕµœÀ‚¯×çƒ)ÜQÉ"–jNbAó„Ò$ÉîÃ߈å¿`u\ßòíˆ.‰¼ ~•ë^µŽL:N)ƒ-æ>Hg×ê&ŽÎëA¶¡”6R†”¡T|úÈçjΆ㋉‹¤“ÏL¶Æ¹!!™SKöòf'¢c¡ÙgX-YÊô’«-,cD*à),×SΔnÃZääJƒ& ¨ÈÖ æ¸™Uát(‰iÍ"؉ð´·9”Œ2þÌ¢6<0JrÅ ÂV<Žñ þŒc•?(ãIn¡€.}TVá3“LåIa­ME ÈB HO5>@ÒW®IŽ®Ð”!VÌN'©‰C[Õž&ŠôO¯oËZ½)в$ ,¤$aªÜ°QÙ¾@†ã0¸kÐÙü@F¢ˆ§‹6Ì…¯ó°Ö˜ö˜/ÒÄdeÅõ¦£3X21Y„½õž»ÛÉpð¡>þL`¾Œ ÄFVÛŒ«&Ü¢ÓêqKÖˆ[²Ò°i‡¤¡\{§vú€P*òÕùß6üsq5¹,æQ}åc±Àn¬jƒÝ<¥í›Íð7UäX0ÁÏT7£f.¶£¯ fD@ŒS1§a€j)-g<šð™ÓÀýf<ü6¸®Od$Ì0+æ ä)§"bU¿7âtéºõ ‘$Áñj)â8¾WSVy8h‚8Àµ-ßËîäJÈÇ…yöNÜâìwü†¡L$õàj“Ÿð(…ž¢îû€Au›pzå÷ûà÷<+0WŠééèìFq"cxê^æ<*bgcÛéÙ}cZÞ `º9ô‹#ÆC žà•-ºŸL@çaëGë´Î¾Cendstream endobj -603 0 obj<>/XObject<<>>>>>>endobj +603 0 obj<>/XObject<<>>>>>>endobj 604 0 obj<>stream x­VßoÚ0~篸·µÓHó«I覶” i…­M·—JÈ$xKlf'íдÿ}g'ÙÊ AÝ @@ -1269,7 +1272,7 @@ T É Ž-‡Ë)Ì×zdz–„§ø}ì´\Û ëÃÙœ¾Ãéåìêb„`Íœ”4£’ò„šÖhQZÂZ§fBìiЧ"© l5M¯ÊšvÙWÂ]:òªÀ)ÔPL¡&­ÞtÈúžïŠçãì¹Ø¾ùH~Ž2ˆ Pɨ꠽¯ |Ä|ºx[¾þÛm KJR*kÊQs 9¾kƒa ÛoŸ³Sê#VT*x[áøÕ!}'ŒŒg?´qX´W\·w‘ÑÂ}+ "üïž™dqïcïß~LIendstream endobj -605 0 obj<>/XObject<<>>>>>>endobj +605 0 obj<>/XObject<<>>>>>>endobj 606 0 obj<>stream xÅVMoÚ@½ó+æVÕ®mÛô%"i9@Ô`z U´ñ®a‹½Kw×Aù÷$Á-ª*d Éã÷Þ̼ÙÙ_ü¹zÐ É;Ží@à:¶~âÅ ­^ô¢žm¿¸Ž;Ÿnp]ˆSÄ ¢b @@ -1278,13 +1281,13 @@ O '¢,y²”§Ã¬ˆÖk©(dDÐ8ý'êzLˆ€dAÄÛrZÁÞ ó5‡Y¯žý, ±cq°U;í0ð4W‘eðOjêDñ•ÙÚ`§«_)™òŒáFÀ“¸}*œ¾¸s)W,1R½‚š%éúžôû„^>pQN®F×W0(—¡\áE¾œVÃh¹aTÅZ¡Óß©01ªHL¡Xµýзà » ‚õ²7qç[ç7 y*endstream endobj -607 0 obj<>/XObject<<>>>>>>endobj +607 0 obj<>/XObject<<>>>>>>endobj 608 0 obj<>stream x­–ßoÚ0Çßù+îmÝ$²Pž¦VÙX¤–j%쥚PˆðìÌ?Øøïw&©ÖVÅxŠ8üõÝ×çûÝ ÀÇ_ц!›ÞMÖûø%„ €¬ÄÂ8‚Œ€ïù¾Yq5Ÿ¦_“‡÷ÙOŒµQ¸° ½^­Å†a’ZÈɶ g… ”–Œ¯`MsBeÃxÚ©ÿ2O§YÞ¤+Á¡†ë3(Ëœ@+õGHrl88,i®¨„4éã"L¤0õyn6°²åÐñý>M>>ˆáDfC¹¦–¦,ñ\µ`ø)A‹ï9ø¶x®s›©²ÊW.‘Å:—AøÃ¡ÓbUŠ¡~ÑKQ‡g;!o‹È“½zœˆMÎøÉðSjÕœ¢Ýˆ¡µ›¢9ò²OòÈw$yä£äg~¨sBì ^î4U”FIþ­snëðɱY—-|èúw!ôšÊ…bD¹h‰™Îoo‘÷Rûï÷€6U³4QN?OÓYöà¸úÖÐ<Ƕ÷Ò:®\ƒ|§0¿UF·f/$«õ×R”¬¢ØPõú‚ØWÏÉå2ü üÖ;å*`G;ªOÒäÑ:¾éØŽ[¸ÆKá’Ôå)G—;ûfs`“û»^¼&"nçˆ Š½p<Æ™c?JÌ®ïn®!¡[Z‰šJõKúO‘ýÈÛ©cì ¼¡3-Ma[ÒþiE#/ cb0bÛ…Ÿ³Þ·Þ?áFglendstream endobj -609 0 obj<>/XObject<<>>>>>>endobj +609 0 obj<>/XObject<<>>>>>>endobj 610 0 obj<>stream x­UßS›@~Ï_±Ú)W>´£FÛ<˜h‚}ÑN†Âa®Ê…ÃjÿúîИ¤Ž“aÈp»ßî~ûÝîï< lâl`\' >8¾‡ÿ-| i}à˜¡«lêïùÁa8øt⥦Ýõ=À¦ a¼“È,âf£ánø MÝÖÔ@[ƒÚÄBëáätŽ—¢Êæ%OÊmöÉTª+`‰Z~ilƒ.®åGãÄ"Â#0û6O&s:? §pµ“K.+JPnÙ»EzÊE„$p‘J(UÁÅuyµÛOÚÃrè±TlJÆ æiYD¹EԽ±âRì}„<ºf@MÒ/…ǶÅ#>¾1ERY`hNçê!×áGŠ•Á—7µ?Æ¥.1Ý=íA×xœaÚ @@ -1293,7 +1296,7 @@ x ë[{µÛ+wÁ“„éclCKÛ“Z^ðö}2~èsÛUTM¨`JDÚvënãGÐ_ûíÉñb4mkxÝ-ê—LÛ¬ñšP‰DÆUÆP`Éó:º9nSBÁ²¨¸éWËLƒ·Ðë„ïw…?«…ÿ&±_ŒG轉‘%Ý•à±LX{éÙ†õ­‚<ò2Æö¼š—ƒéñãL8 §ýnw.z3b)Î1=¸Z`›±gå~_F¿M"ÒJ9n@¦,Jú8ÿ%GtX¥)+4Híú8¥V&ÿù=ÒŸÔ…Æ_VÈ^¯,‰M„n—Qo\v|Ö윆E†Ízxœ$åš~-Cà¥yCˆvù4üv¯QÇ"n€ëí‘Àª·Ûìàôðpr³[™ë]öµâI=× êùµµá™ÁrÂLU¬ª‚Õé;îs×G5àV±ï8œþv£8{endstream endobj -611 0 obj<>/XObject<<>>>>>>endobj +611 0 obj<>/XObject<<>>>>>>endobj 612 0 obj<>stream x¥V[¢H~÷WœÇÙdd‰â¾âÆ´€ ÕmO6‚P¶µƒ”Sc÷¿ŸÃ­íNf×Ú]D±8_}—:UßFèø6`fÂd Ùi¤k:L ]3Á²gøÝÄ p¹dôëj @@ -1307,7 +1310,7 @@ $;ÑŠ 7¬«œá~Q!ø§}aèO^°~RE´ñ‰–ì¥7Ia-ä–1è zOÔKîV»[5щ7+mv¬Ìù7WéÉíé£&: µ‘F‰[Ór¡Îf/ h|âFáaopkäzã&©„,-›nÐîN{±Ñª·×YÜ=lÁ]ßšÝ{,¥Õä;1Á]_'¦¡üw`ÿjh -â E¯­¡tßé¨Äm.ÐÂÍ:&Il¾tv 2f¶6ÏñˆØžƒbÇwXRlwüLE¿×,oûÃx9žéóë‘ b)êLÖ‚¶-ךYÚljã™U–Þ`ydt?úÌRçendstream endobj -613 0 obj<>/XObject<<>>>>>>endobj +613 0 obj<>/XObject<<>>>>>>endobj 614 0 obj<>stream x­VÛRÛH}ç+ºò[X‘lÇ—G°qU ›Ô¦Ö[ÔXÁ$òŒ¢دßÓ3òu¹U톊 ¤q÷éÓ}Nϯ½„bü$ÔoS§Gé|/Žbê ‡øìúølã%)/:ühçÅñdïýY—’„&9é ú4Éâ˜&é~üÐÅoüNu=—•p’Œ.IjW)ii.ªŸ2£w…IEñî`ò{MÀ"¶’NÔFÌýñ·›É÷ËÓ›“/çG£‹›Ó‹ëópz#ýêpü0i7󞘹PÚF4¹“TڿDzZÈŠ„Îø¯ð–JQ‰¹t²´Ú:šIº¸þü9zY»uÙõèbÒi?æªoQY—›j~£²'b-«üöetòÛó¡J£4°‘3¤ó…@¯‚¤¹øa*Výbu9–ÒÿK,÷XJš®ºEÍ”£\É"›¼òíÌ¥f>Çø½ëúb4ž\½ÐR»Hâä†[€Òk­R“I²˜h}K&'&ëµ½žå†Ó4x_ÊÔyjJ—“Å1øó¯PõSš)E–1~ÌÖ­t»Uu[³GhWêVC¯÷ÊÝ¡`Q9®×APãócº“"“UƒbH Ì '¯âN7heu":_]~$Ãâ›TB[‘:º—]ª²ê%BH§Ýz¬³3 X&P……‡¬’>┪Üö"÷Ðtx ×–×ê$k4Éç¶Ûôøäœš# V–R£³:u€ëKÚ×¾‚Áq?‹” aa¶Þ(÷§ÓËÑåétºm?¢ï¦¶“« @@ -1317,7 +1320,7 @@ Iw ËÖ¡ µ’‡y'kmjµ¹¾Ínñtð3.@ðà U€Í…üWÓpî„YDJ‡uãG è.Gô†Ì[BiJœî³CpÜéŠõY¶ÚNÐ!§æcŸ¼ëîT‘›¢0÷€e,O2€Pø¡€Oì¢çY iC ÓÇ^Ù\4ümg!ŠšÙ–¡nàÁü¯r1\8>º]âÂø\I[mqabeøQ—³ð”xºÀ“U~ KQek%®ÎAÞ¸™÷iîÂ;Ï÷%üÉÆ» nä»­m‰®‚kw' Dßj–EÖ¢ -ùÈÁØ:*¤€Ãµ·×Êt¿¬ÌLÌpA gzÀýBå­yƒiLq(³¬°?|ƒÇÎÞ,QX¯ +ÌXªÍ¦23¿Ÿ³&EØi|#`œXkŒsµí V`c©p¥Ó¢{_ÛÜ’µº{îúšñðEïë‡Ü?Ïíû³A³$’þ ê ‡ÔûÐo.ÀGçÇGt"²€¹ã~ú{v3¸Öòl«y]½qËvûݨß`#â;Ý„CNö¾îý©,—»endstream endobj -615 0 obj<>/XObject<<>>>>>>endobj +615 0 obj<>/XObject<<>>>>>>endobj 616 0 obj<>stream xÅVÛŽÛ6}÷WLƒ>8@¤ÕÍ·ÍÓîfØ8n­ê>еfV&’¶×ŸC]Ò…³N AmX–EÎÌ™3g†þÜ )À;¤QDñ²m/ðÄc?¢d<Â}„æTô®ÓÞÅ4¡0¤´€Ép<¢4'lJ³þThc_“´|m3%ÿ$\$ϬP’„¡-Ë9YEvÃi¶¸ù•̆iîSŠßOvnwÆÒš7ÛwFÈ{â2ÓÇÊòüeú©Æ@—æýŠsP:7¯H*KYÉ™ö,´µSÙQ˜À8•¨šØn-¹¥9ÛòœxNï˜ÌKNKË,?‰ÙÁ3\ºl Ë56"Û|õê"iÎò£K–e¯,]-fÈq»…_ãÓ3¶<:x¹#++•áÎÊùôÛxÑÐO\Ž©rdhnT¹çùåÉjù•A(Õ~2rP(VU Áņ=Bž WVÒúh¹iA;ä®,A˜Þ @@ -1325,7 +1328,7 @@ x DEA©ÆùZóRj¼Ó€&h¼(iÒ¢ö%$°hhʤùg8µ—݆:úú(xŒ†T1Ͷ¦c# ü±ãª³y±Â«Édµ* ÓUö¢[ûç;xàm¿ÆòÇ%p·Iâž^wÙ~ϹÑ{³Þù(v‡µÇ[ܵóÁ‹×Î/¦ Qd×M^Œ¶ÊûÒöéäõð´ã¼Èu\ÿ/ÓöTSbÍZXË¡ãB•àÜuŒæÐ* ò€ÂÓ›Ì\sZ&M!x™ÿ}¢¥™„@½³G;ñKÕ¶ <{@QsfœWØ­²ºµÙ…˜˜SŒ$V–”xNnµÈ£æÖõjÇjÛÂxµ‹ùÛ–ˆÁ´ÚÉü—t)„h,ÓuNœ¡ß›Sç<½[^ÕQæ·é݇·æµzóZ²2¼ÒÐAØM+ÆÁ׿uM¦ŠI¶ë݈ë#Ÿ¦ÏX|dZ°5f„=VüÃ?fótüc[Çæ7¶òjÍoÙ'ôßžkƒÞ=ëëòð¬ÅÏC7È…üÈ£ÿyÔ"‡¬+%1Œk¹Û³HαŸµøy¬ÇÀ¾jNß©f÷´Ö;ä€8Õ×§[Y½<‹î\>ÉY‹çÿ‹B>ÛÁ#fI;L¼ï žÛ¸íæp4ö‡“ þ–Í ³¼z}EoøçP….¢·;‘×§¹×íõFÎ¥g¦n2JüÑpŒ¹ŒÕ¤Nä6íýÖûv•Ýendstream endobj -617 0 obj<>/XObject<<>>>>>>endobj +617 0 obj<>/XObject<<>>>>>>endobj 618 0 obj<>stream xµUËŽœ0¼ó-åÂÆ†ðØœf7ÏC¢@Gœu…Çòß™µEÞ›cloý¢p «EõŸáú6×”æ‡/eÓÆ¦Kò’(g‘Ýl>oÞ]màÞa«öØkx=PYÐêwí* r[š³5‹¼w[§1K“Œþ5­Ækûêeá}ô~"Êð\endstream endobj -619 0 obj<>/XObject<<>>>>>>endobj +619 0 obj<>/XObject<<>>>>>>endobj 620 0 obj<>stream xVMoã6½ûW öÒ¤ˆUR¢õq*ìÄisH±M¼è¡) Z¢lmôá%'î¯ï )fãfm§‹À#g8o޼ᗆ"‚ÒjÄ<"ˆ½DáÚÇ_« 7Hhûí†?oOÌ£Ÿ®à9 ã`Æ`‘ž%^àù÷àîãåßeú¨:È›£}é•î.p¡7M­Õ,‹:‰?»Hëæ©TÙJUªîΟ1Nøg쇞ÀHgŸn~[İU­.šº’Ÿ­¡ 1Ý1Çe«6å´¬Hí.gì™MÎ÷Œ_ÜQÔß‚½#D·Û¨ÃΛZA“C·Vp{Op.ÐTÝWúäåóR®«ÿ 3åšam.‘ @@ -1344,11 +1347,11 @@ Z âå0ôZeîÆ¦É7¶GMí®Û­Þ¦6‰Uª±/ìíåRc¡ÓÎH˜¾¸¾Œ ÙùUÀÈÑZD“isŸÖq<çá|vml 9Y`KCEg^Ljc¸“#¸$0ñ4Ž'WLÐ Î/~9Ÿ §ãyœO!1g¾ûN~}Wp‡:!g¼[Ä+«7ñ»?l‚5r¹ëÔŸ<üë0+Äd¤‰¶ û.ߨ"²zPÞÃN÷J¼çÖeõ . ›ê )¸Üœvý‡A‡˜,s¤£¡ðZI"z‘d†'$—q]XŽ»1ÖòÂÙéuÓ—8’Œ.Sy‡aBg§éã>>¯®E=pVò¹ÓÅ?GT-Šª¯¬ÖT…¦1fdŒ¦ÐYà ï@t‡“ðD@lýT[ø(—ßË.µnÒÕ193…ì°+WmÓoPL&§Ó@÷È>UšÁdj³,M‰°ÎÞÂå:ÇuÃêbqÒ•ç¹;–ÄëÙåì_´mhîÓ ÅtM½Ãø¬Þ³Ç|ÖHVY>ÉF"¢òŸÎIV¸Ë2ž;\ø^˜$ø hz?½MáJmUÙlð¿ô8aˆµcáûmÇCĔ—üj:…,D$¼(ŒñQ‡»BЧùbôûè_Q#ÜFendstream endobj -621 0 obj<>/XObject<<>>>>>>endobj +621 0 obj<>/XObject<<>>>>>>endobj 622 0 obj<>stream x½VÁNÛ@½ç+戸vHçÐiiËDÁ¨‡RU{¸µ½fwƒ¾¾ob’‚ BÊÎΛy3ófï{¹øx4ЉOQÞs—|Ïu4 Æø€?-)ÙŒ¼‘¼và'/¦aïß< ~0¦0&¸.…ÑÁíùeüüuþÙ°6C}ïèa|0ìÏÖV’ÈÒy‘ËÂR)â8-æÇ$æ"-Œ¥›‹)-¤ˆ¥®¼4`ým7G$fÆjÙ>noÎèúêÓïóDD²»Xæ$Š˜¤6©„pWj¾CQ–r0©¡¥A4È€-L"õÛ [HÔBi”¤D¦ŸÔämÒÎÙ›8 Ñ9›lOãXKcèúÇn¸.õ~eÏåð|Êd1·‹vbªsfÄ.$WPr¢lÉ¥¡b™e¦ò´Vu—¥TºªGå¥s IÌÔƒ1õ™$îã]T3Cù^jüŠški¦)*ÝPÓtâ5ŒúJU€}¡Ì¸D‚<7,T-ÈQU–e¶F¯F¥ÝÇv.VÖ¤hD(üû¥4ÿ9Üéóº€p©ßÒåÉðFEó4n¯Ð£Ôj7×ÐŽÈÈH1æW?M`Ý“íN™L¾Á[µ&ßP,M¤ÓÊ,…Æt5Ù{iÌm˜#Øefë¹lZi[8)ØÍÐ:˜¡ÚœîÜ•ëÝvpøž©@ªÈÚ‹SW»ô‘DÉÒîÍ`ãYUtyæógÏ…B0›ŸL)£4IeÜ sDêšuaÅê©áöH>W¦¹IõÕD«¼ê­ñëÐÛq#*÷—Рý¢’c‘a}5zZ©ÆKiaÉ—ØEkRæ›ïW5aK·¸ex|³LE ¬ vÎ9w&c—3Š…,j¬±uG¿º`u-Ñr+W@l„í)lŠ×Ö”Æø‰ ««ªw–·FS%¦¨=!UJ]ÔÃÆæ:=C¥8m~!„W[úÔûÕŽ?™?ⵃ{sz1=¥Ï¨LÆ€†¾.‘ GÕolûcwò¼ŽéÛÓke'c?ÀÈŸ:#¾tö¾÷þo°¬Äendstream endobj -623 0 obj<>/XObject<<>>>>>>endobj +623 0 obj<>/XObject<<>>>>>>endobj 624 0 obj<>stream xµVÛrÛ6}×Wì¸/r§b¨K))}èØ­›x&Q\›™ö3ˆ-ÔI d÷ë{ ÑvT硺Œ(r±—³gpßRˆ÷¦#G”nzaR4‚MfS\ðÕ’r÷àÇpD/=OgÏWœÇ½7¿Mh8¤8gïÑlJqFˆ†§}A•H拉LV²Èda©,È®$Uª’Tˆ¤¤_ér)–ëG÷@Vê\¤29%Qdî^YQQo–R'§§ñß9oBs0šDíσq0 f]_ýò×µ4‹Roèú¿"jV„°¼ýçËE<‘X¯Ët…°Þð šÁÙówdÔ?’ÊÜecl½¤LXAª å£•¦Â%Õ.å È*-MZ¢´‡£aØ «ScOŠqS¹’X†L4쾖ƶ€´å=‹=£T©\§e}¼Bo† °û‡ðÎ9_½•Ù1ì9º.TàC–©âöbß“øóÍÅÛ+GŸcÞ™LZn„½tÛ"-«õ£_ª€99dÆÃ/T µîúfz0…û1Ü‚±ìPŠtÕ:^ÄnÎ/ñ‡Oï>-‰3ÇgÃ+ í”]½íxÀºÀ½ºQ™Å-aš Ì¯®g­¾îEK[k¦P&½ÑWa˜¸y¡sàGoüÏYz×õ¼G“åL (†›c]¦ÒÆGS¦ @@ -1356,14 +1359,14 @@ f]_ ä=#é±8„ÖÛRÛrßñƒ#q›­r¿Ü·}®M0ôF;)…BøÜ®¾îVÂõˆE·Þo[ÒÒ±úI…,q Ô[Jl~GBQŽÜ¾Ä¨*&Þ^©32%åB£4§=R…²J¬ißÕFÉÅxiû9D°-ò‰ÀtÄá$ÁËO[’½5Ûô„KêlÕûÑêXƦ±~qS阣eúµ®1øæõž½Lü?¾wwæ õ·@Òî ¯Mý‰ý¬9§ '8‡Íç8Q¹ÈÍÙÇó3úUnåZ€a~WƒlÜÔÁ3¶LÃù—c½—"[L¦“`Ípľ6‰øÖEÜû½÷/áfêRendstream endobj -625 0 obj<>/XObject<<>>>>>>endobj +625 0 obj<>/XObject<<>>>>>>endobj 626 0 obj<>stream xUïoÚ0ýÎ_qªö¡•ŠIBH ß -[¥µ£%“ö¡Òd’ d;µü÷;ÂÒ‚4röó»»wÏ/ z»zÐ ^4æ@Çí±øÝ~{ô)Rp]—¹: ß?DÖ0×…(¥3‚nQ„ï8ÅçRãD3„§Ñõïç¨!-ù4G1Õ3Xàb‚%d&’þjZ8ÈDOøR¡ÒÀé·}ÐçB¾æ˜L(4,* ÆRhž‰‹èOæÛf}n0Öè2µˆ´!£ìˆ$\óK:.Ϋ$SÞa6Cž`É bkèo²jzó öšÖ•Yà2¿íAÓ Y—¾Mp“¡ 7 ¥€9A§ŽÑf“Š nFUH¡ð¡U ÝöÀ%²)¿bØöj†=ÖfÑ÷q¢’ Åc | Œ²ó6Ý<7íS¦!"F šÒ¦Œ¸‚æs U1SPðò“ n•æ“c0Ö’N4‚I³aFjËñû§ª¥²³ì’JBâä0&EoKß,Pºš %8o~ÛqAÇv·Ó K~$ó,^ÒZåï’[GVÈi_\[~{+× Í–K¸©„ýcÔ% ŽÙ‡¤:Ôë\ªÊe¿këŠõêo0Í*He¹ÍgbF6]Öe§ŠýZ[»~³™Ìwe´c´ar½?8o^¼zm[ÍÝð‡å: ç„'ànEµÀÒè!*É·HÈ7rAÆ¥ŽÃZ§Ø&{ÀÒªfŒq‰ú(Pšžà÷]ÊyUÀøîæ8£tmŸÖm d¦áҩܬ†Žfå8«¬6ngšØ&…Ç2F°÷³µ_²ÏÚÛöŽ*V#¸òˆIæ²4±$£»b)+ȳùJñ­aw}=¸a—½~‡u\{Œû÷ƒ>Üà_Ìe¥‚¯IÚ߬W7C§W3=eÉ~è³0èÒõJ©ùVm·Qã±ñŽ 4žendstream endobj -627 0 obj<>/XObject<<>>>>>>endobj +627 0 obj<>/XObject<<>>>>>>endobj 628 0 obj<>stream x­T[oÚ0~çWœ·ÒixqœÐ—‰Švcj¡wOH•IÌH µ^4í¿ï8÷uÒ@(Æçä\¾ó}ç±AÁÃ/…ȇ€A2oxăv;"!„q„gJ¤2„,À¿» ^HØ.C@=âï2PÊvºû”7>w€Rà,—Åð°TÏž4;$ ŒP7ò±”Úóôgoþ-ŸaLž6¿û½ÎÖVìºE,Íãr2‘ E–©Ö£´Vïý[~ã拉zÂH¹˜KhA™gI‘JÐFeù|eìá93S0ÏFGú@¾áé·û.ç7ûã™SŒK#E»ëxp xŠ%§RgJ¦ ’Dê:Ør~ì uØû{½(r-×Ûðà ü«áÅý×Ao·]Ä~–%¯0y:Ûµ6%M©òý±0/dyš%±]®·d˜@¯bŽÞ¶°%\—R½B?ŸpUU³Ý‘¥_sPy|*1ú&3¡5Q-˜—ÚÀX‚Am™ 4ž…±NöN9¶‰®ElÛè=¼þ¯ÐZzP¶Ú•nGM1Óˆõ±}¯·´E˜ˆ¼‡0Qk™§ERÎ%j5…÷K÷_º[Nm¥åjÀÕ–דó óÆ'?t²Ð¨íd @@ -1371,20 +1374,20 @@ x ÉséUåm,|Õ¯$dUo|¹š­[½¸óä‹QRa„#W\/pÅ„u:Às°Þv/O»Ð³P ©4|)³´Ú%­¥o+òpd®tæJ.d¾¢÷0 IÄbÝÂØ¦<ãëÆo>“âendstream endobj -629 0 obj<>/XObject<<>>>>>>endobj +629 0 obj<>/XObject<<>>>>>>endobj 630 0 obj<>stream xåTMoÛ0 ½çW=¥«’íÚò1mº k»Å»4IA=8R*ÙC¶_?Ú²·´u³Ým¡øH¾÷ÈûŠy Ir3£„ÂéiNRHyŽ¿cü: ë>æ1ɦñs–§Óœ’ø1ÒY9;yScP®±«ŒçP*ÀŽ(…RÎ ’NbŸ´ßZãõqù ²ß Qœaߥš~U&q§CÇ‹X‚E1N!mÚv¢©¬iM£wÍC¼h?ãeˆ«´Gº„z%TãZß@eÖÖmúà9Ý´ÎvÇ;)eÇ>2zt­@Ù¨Œ?ßJ©½GÔ@*ª€L®¡'!aÖN€‚Àåj×[m`¥%•ÿÈÅl½ZaZ÷­öóQ T` Bî%ñŒï×þWâ·FY‰ú£ì¯•꿃ê-1ŠÌtGÏ{%éà1´ÔøÞ ‡ü…>Øw£Á^çµ×{ÒXøî±³&ÎÀÍõå—wWËçWckëJþ€;aT­¡±ðUƒìJ¦k‡‘÷œˆõ_bÅ¿6@=Ò*ÂÃfn碮á§vÖßwLÒŽÙ•Q• Þa‹Ã¸|8{,ç$+ Èï¶rµøp¶€¥þ®k»ÕÎÃÛ¶ ;/£œãó ÇÅp+5”ÝaÂÓ± §£«•â‰Ï3ŽñÓ¢û뢜}œý8-Ëendstream endobj -631 0 obj<>/XObject<<>>>>>>endobj +631 0 obj<>/XObject<<>>>>>>endobj 632 0 obj<>stream xÕ•Ýn›@…ïýséT…²kº@ï9i-9vÓÞ$‘…a¬ÐKXˆä·ï`Ö?$&­Õ´ReYBÚÝÃ93³=ý8´g™[˜lסgNÿaµY°»8óL÷Ø &˜i?]8÷{ï.=`6ø+z»pé!z³eö=s`2fÂd>„‰”?ªæãÑüÌÿNÇ0Ö3¸CÇúSYâȪtYYĨ ÎȱÊe¦ÒJ•°DPAЍçû*T¥Ùh“¥¶K¶I]{!7׸ÙúÜ…hv~žMŸ¦£fÝÖJTSƒ ¨˜$UÇÉe‡k¸²(Á¶”q¸÷ëxêx·ÖAÜT¾ÍÆ£7Ý"UɰJ©lA$Ó€ G…†eµZaA^cZ)^W?«ûpÚ nÂÞA—iíVA)ë~'Ä ¥ªrÝÚc Í®”·­¿¯C—Ô–ÀVÃÂû ¸aâ®»Ú¡LóKLÖí LÀr]¢zÂàF·)ä5… Øí®X`paêúâ²Û‡X õ³wßJ[²•îᶟĪ&*XÊG¼={Aö>›™¿äUÃÂ[´ü²Ê„—¢Š¬ ™nÈ[h×G÷ý(Uš¥H“Q`YÍ[ƒ&d‡Aª CTª ²ÉÆ ÛÛùGÜÌâ)}ÂúÀÖtÍß¿ÆÜü?‡ñ ½|¥Of?ÊŽN\WßQÌæ¦ð<} ÷çëó!Œð™c¡àcG›»Ê`Ž»Ùi8–·ƒãøEm;¶é—h#ˆÞ[u¢ ¿÷¥÷ŽçNendstream endobj -633 0 obj<>/XObject<<>>>>>>endobj +633 0 obj<>/XObject<<>>>>>>endobj 634 0 obj<>stream xµ–ooÚHÆßó)FU_$§xëµMßœÐj \pÛ“šª2ö8¸5»Î®–o³‹IpKH«ÓE <ûÛÙgž™å¶ç€M/B¼ÒuÏf6ŽÍ\ð£>»ô/róÀ‹<ýøà<î½x€ã@œ+ˆBˆ3 ŽmCœž¼¿œŒþ8¿PßÑN–ãÑqvÒðL¤Íydbx²FX6yŽ*QÐ#¹ìv±ö ³Átü‘7ëÏĪOo¦Á jK„Rˆ¯´eS±#ìt•ÈG€ì—›šèäI©°Ü@-®ÊDl1ªe“ÖÄ?·ö[5Ìa܈ùZŽ>ó˜ã2—ÁªJp…Ýìl°Ü`:ºœ~¾¿~ü´­šIGä)R!;b¾›ÌbÏ}œ¹§3\Ÿ”…Ò§K–â¯O»™v°¿c‚_.üÿ”«Ñu2úEKµ"S ’K±¦ÊÝ6¨ê3èÊsÌgÿõ([µÆH.ãÔŠ<+Rr Õ¤)*µ­YšTw«åù;ãù fãøâòÍå d•B¬í›¤5̨k2˜UëÅ]k/†,жWJ[ÛLä@Ë @@ -1392,7 +1395,7 @@ jK ƒaò¾ËÚ„Èø)ì` â†óöwÓm¹yþ·#° Sv]»-ðO–a^pjÎ\HZÐvÈUDÜùŠúJntãhaöïÚû»à #L›¾uíï¶ß…uƵƵ™·-¥Kv<ÜÕè8¦½|^õ&¯û’çxÛt¢ö–u|—ý>!]±‘§GÂb0=Àï°JoR^/³œ02ÑVh÷uh{-›î¸ Me¦¢§~è³0ˆh˜RàKG¯ǽ¿{ÿí\¨kendstream endobj -635 0 obj<>/XObject<<>>>>>>endobj +635 0 obj<>/XObject<<>>>>>>endobj 636 0 obj<>stream x¥VßÚ8~ç¯éÊž MBBß¶ímµ»{W¸¾”SåuâÛ`ÓØÙ”ÿþf‡Â6ÝV:!Áóã›™o>óeAˆ¯æ1ÌRà»Q„ÎÒ …$›ã÷ßµ€Â$Ù« :˜Í²a8I‚xÈ# r¼Y^^¥E°.VšÍaB @@ -1400,7 +1403,7 @@ CX ›vXNóJ eÉÞ–vŒ—R‰ (mÝ &v's©¤•¬‚%S7L±-æÛ3cZ]çP2SN€m™TXk[JŽhÑvUSNiL#òÉ“ô®L¹Ÿ”´FTlÆ•n}Y›‹€""áZYUp/8Fîc¢%õzÕõíÏÕJØÍ…Gã¼NãH3Ša¤pÑ©¶O `.ƒø]üЭƒnÀj`UËr½èÆ‚…šÕ±›± (€åÍo  ÷Õ·»«T8k¬íIV VJ¿¾¼BjyºOãì”XH-O«Îð”L~êï®ßýÞ­B£rÍ›’Aäpß SK|tˆ¾­ÚÙ†ü}{½ZˆöŒ¾’\çÄàÚ·÷ÿ…õäýå°´$Ÿ²~ŒÖ‰ØÄ VI¨½¤QÙ¨æêIçLsoh:¨Ü ï8?[‰ÕžñaÍózÓUô3½XÞ½ÿ|}{u×lH2|×¥}Aì"Rºóé)v¦gÛy=‹æø—`±€tã¼ûV—7o.áx•ÆkÌÀûÓPØio;‡‹_¹Y“yÌÓ ·ã¾rìÿc=úkôxf•4endstream endobj -637 0 obj<>/XObject<<>>>>>>endobj +637 0 obj<>/XObject<<>>>>>>endobj 638 0 obj<>stream x­VÛrâF}ç+úW,Y, y·ÔVÙN²(Oë”k>ç¯_ž~kOœ2¿Ž´ÊiÙ•põ®¢J”òø’#‡õ¦ò‰§ÍOV’Û%!ƶ{­ÁüW»ýz7=ñ£Ô­ü¼XÈã— °¦A¦HÞ~¦iHZ/¾ ?lL¿cßzÇŽ2và[]µžñ§AçO“'x”3éå²ßh®û®D¾W¯$,åÖD®Üº([½º‡Â[-9ÆÎµæLÏý|ùH(¥òâîì—ôYÈ%9D§¹Q·dbÚÓÙxLÿhýéäéfw¸ÂZ6HTýjI7U°= £ñ~#yÇìÕàWã`8‡Ùˆš’^§.Á}Þû£÷/®Ì„endstream endobj -639 0 obj<>/XObject<<>>>>>>endobj +639 0 obj<>/XObject<<>>>>>>endobj 640 0 obj<>stream xÝUMo›@½ûWÌѩ–/cÜ*ç«”:jŒ{Š„,ÉVx×YÀMZõ¿w†…[D=U•jd ¼ÃÌ›·oÞ>ްñr`ê‚@ºÙ̆À X~8Å{¿šCÞ,x®Ç¡wâ2whÁ ýá…Àcþá 'ÑèíÅ ¢Qᢠ‘mC”ŽgÌÇËapÃk^VGÑ7Œ^â-7ÀœQ6^Î?Ç—‹‹kà·ØŸåxˆ#Êd‹ ÊJ×iUkn"»Ò…º¡IfªºTµÜ(Y¶±e¿^_ž½y½f-3•Ök.+žÁ]ç\ÃF |Ôû4å;¤§7çgËד–\o1Oªy†‰ER” Úÿ*±æØa²Þ@²ÙðD—P)¸ã î¥Âxf²Ú0#ºMÏH0Ñ#r¸o“BdqÙn(ÔFúlÜ~\ÿyð ígu¹ˆœÀ>/XObject<<>>>>>>endobj +641 0 obj<>/XObject<<>>>>>>endobj 642 0 obj<>stream xÕUQoÚ0~çWÜc+A›„iš+« ¬ÅöÒ-|` JhM„T‹°èÿz<=?~G…=T¡ñ„Ý€õ:Ò|µÂœ]˜_`{m7žG¡äóË:ÜšÓÿPX'ô Tyf†ã‰¼Ï’'’YίœG‡W\ 93¸Nr{–|ÿiŒr2Ÿ•‡¿—?q¨åv»à¶©åëé?íû=¸â;ž Ô•„ëm›Ñ×"žoö¶<»[Þ)'î^Çs,ÏõñæE׎®Ó€5n?„X8bendstream endobj -643 0 obj<>/XObject<<>>>>>>endobj +643 0 obj<>/XObject<<>>>>>>endobj 644 0 obj<>stream xÅUïo›0ýž¿â¾µ“ Cø±/Q«nS¤6Òö©&œ„•Ø)6Ͷ¿~g 4Þ˜TiKé*_Þ½{çw~¹ààŸ !/€t3rlƱgûàG!Æ¿%ƒe}@¼1þûÛÁU2zû!ׇd‰XA„Aˆã8¤ç±=¶‰ ‹Ë[¸+Áß$ß0?×mò-bþùL(ö64]眧9ÇÊr+¸ÄX¶d)ËX?@íœÝߟAº¦%M+¥­°H€Ü;ÀYòŒg¹àps;K”xduHœ:4jPìS­H]œJŒV^åÏŒë<}T²§ŠIu¼V%YÙ1o² ö²ÚЇÉ5¨:^+Ú)5-5Rº6ÌJÙöþy:KÜ 9ö[¥q¼–ëÙDkã|w—€uj*ÖaòX« ¤¢âʤdâ̦‹d~šÔáì_ÓM¡£—Gwç64/d!z{B¡=rº'ZbÇpêx¡ÒAÀ2Œ8,¦× 󟬧?íŠ;™g_uÞ—Óô^/@,µù:L±ÆP/N5g‰T£»ä ~`K³,ç+Pü Xh‘¯8ìrµ©h©té½Öµ³zŠö‰Ýy½G™¡ËÜ-‰Wa´Û¥ÁÀÕX¹Vƽ8o7œYï` 1®½ì¡—÷HZîÛÖœá?ö#R܉òG®pƒ*+©þÆ4Û;¬_ SC³Ùoý»µà #;ˆcÂv}ãô®.áš=³Blñù‚UžÕÝYû\+tb½É½®~èÛaá[Œ ãúxŸŒ>~«{Vendstream endobj -645 0 obj<>/XObject<<>>>>>>endobj +645 0 obj<>/XObject<<>>>>>>endobj 646 0 obj<>stream xÕUMsÚ0½ó+öH:ŵc›\:ù.3 iÁÉ¥t2нµXr%9 ýõ]ÙÐØBÒca` +=í¾÷võ£çKo"†!¤EÏu\£Ðñ!ˆ#zöé£ò:pÄ»A8t‚];|ÏuÂ]¡ÿ눓¤÷î"σ$·é„qI”’ëB’ö?^ù®‘ßQ$ßhå<Šç0 ¥ƒa@ $Yä„̦·³ÛSHš¥&¬À >ñ›Û3\øåGûÎ0ç5äRYr %­~ ,ï°‰)ÄÖï‰Ï]™µ °l÷'Òà躀>à ˜È@ÿä&]Â[U\Ô\(Ô¥-PÒ¯ª`÷«uÓÄ80MÏ’üÙ@ôiãØLÛ„Õ'¦<׊•¾c ÌûSÃ¥€Ãùl ÷2‡/¸!)™Ö\&R„%*¬kCÔÖ±Øq»rª}ŠõÙ]Â[IÜ^ÏÞ>/XObject<<>>>>>>endobj +647 0 obj<>/XObject<<>>>>>>endobj 648 0 obj<>stream x•VQ›8~ϯ˜‡>¸@X •úÀ&Ù*ÚmÚ&´÷PV+×8nÁ¦²ÊýúÉ]Ú,«S‰àñ7Ÿ¿ùfœŸ#lü8¸0ñ#›Øà{>qÁ |vñ[qض WW /-x¶Gü‹ áïï¯ãÑÛ›)8Ä[Lî‡ø&¶mˆ™1%˜ÀŠ×°áÕžWð—b+Çñ_¸ÓÇévZn€;•¬ù;Èùžç)¨w-8ìiÞp  2Ѿ¬øÏ†«št0HàM¡ÏìXw‘¿çó»À¯«å&^»Ýº×¡~–3AáIuÄÒ8±þõu¹Š'C(ÏYÍvÝÉÎI·0îm”lÍU)…ú%¥ –{äý¿Å>ãýíÓrþǡ/e&j,[-a³X[¬–«›OŽí hq1r@Ú ý‰!E~š¦<…l ½ìíZYWÚ B @@ -1446,98 +1449,98 @@ E 0Ö ìé¿×îK¾x$ðCœÁˆzj„E<ú2úra¡endstream endobj -649 0 obj<>/XObject<<>>>>>>endobj -650 0 obj<>stream -x•VÛrÛ6|÷Wœ§FN(V²e]<ÓÌ(LÒz_*Ñ“‡(0™ŒIBÀ¨úûîE™fÜN;u98—Ý= > i€×&'t:&Y ž…SM'x‚?£hí˜ÍÂQ÷ûwñѯg4Q¼FªñoBšÁ€bÙ›…“ð$¤£–:?Ž¿#|DÃaÞ?™ ¼õß.i¡£TäA$iÙQd9z@ý“1ÊrýBK’ºØTN‘UÖfº¤µ£O–~£«ÞÍ—¯³0ž} êƒ0 æI²êE2ˆìê˜_Ý´ç´8…¸O ¬ŽÉ·4¯\ªJ—IáT€ %B¹ÔS(R$¬UÆ­zœ¦ý#ò “Ç¢ó}ááixÂóŽ!eû˜o³ÓäuIßuVfå=¡%Jt!²Ò¿•y†i›å9é$"Ïw$œSÅÆ‘Ó$SQÞ+Êœ¥ jnµIH”I;‘Ô¥3:Ï•¡Bì:}µ®¬âLÕ&ÈD‰Ú¨2áv@Q÷™ufNœÃw6¤8Ílݓȭ&-eeh«Ô·¶vÊl…IlØ™2:‡f€oœjÕchòUï…|ØY*óC™›ýHKå@Ñ« –A§a䈉ý -9L‚!‘z»^õ P€šö ¸ ß•ƒ¯ùfÈLž·¨F_-Òö¡åNñ˜õÒÌS èùDÕÙYô ‹ X+O•l§Rs nÈë§:HÞB‘çt -\úÄú >ÛTYæ2×÷¬ Ý–Áª—•2K '‘¨d+™¢‚h¬,/¯Z€Yu‘AuÉKö?h½Rî³¾×åRþÃêmÚŸyŽƒÒyjoÀÄpì—ó'öµ@õŸ˜í Ûlo#‹ÍqË¥Ëh—óËš¢gèðT;ÝÁyš7ÍaìžÉʵ^õ@à·ÒdÜ^¼–ïm œßˆ¶b ÍN·OŽåK´òÿ‹à9GÛÜû§ÃÚ‰ÙÕOCŠtQ@+Þ§_puxÖ:3Öý“sµ\ê*OèN5öŽ÷0Šr§KE9ÌEy몀 °TŽ%ÉÒÄÇΰ…i†ƒ 5”"LÀ~`‘¥Þ–ôCä• -éÞžû|͸–QwZCÆlsÞU½ù±ŸµvºST•Òì`¸W±_Ï—hUÑVìh]•’Ç’^zÂJ¥ïn×CŸê±ÊÐcÒ¼Üs@¿­¢êÔ¼Skó H3z§›ò~ ,±‚¿ÃïáªõD©øáOeæ¥Ú¤þÚ@ÃIH×kðQÛ¸f`{(z íãB_øì«‚I ѵû+F˜p:£\eJ îGf½¼ç™ìicô:Ë48_c¼ôZl6J˜×lhP‚œ’Lâ]÷6C+è‹/.”5¨-jEÅÑ nJ%lUtÑ ˜ÀmS',6”¯¹/™Ý—à"yéèþж¸1Y‡ ?jëÙBö F¡ñ<ÀñX)¬N-’ ’¢|å°N˜W0DâCúCo7ÅW;ãÜ‘ÐG(Nø%ñ¾ó'°±d\¶ží¥ÖÌ^ùˆHýš^]Ç 2æq¤=(ÈÑl¤áŽlv‡‹~¿¬$ ˆÇƒúxs´² ¡Óò|ù»:(üg+ç;ÙßbOîM‚Iô_ -èºY2LÜ|Óõ¢óæÔðÎ/ýÞÔðäÉO¬ýÓQcjÓ°«jUqo_ Çüäæ%×DùöÞ’hY±!r•[µ…¾Ô¾ÞtÿÈ;œLÃñlFãñÏØœj~ùnNïZ®7Ž~¯pså~ÛŸ fú³ôh2 -'ã)ÆÀïg3>ö!>úóèo×Ü«:endstream -endobj -651 0 obj<>/XObject<<>>>>>>endobj -652 0 obj<>stream -x•moÚ0Çßó)î%•f7NBöÆZUjÓ­dê&!M^0#«±['òíwNš–nÈ%àóïþ÷àËÓ€‡ƒØ‡ ‚|3ð¨‘Ò„IŒÏ>~€U³øŒÆÿ.L³ÁùEŒA¶BV”Ä-9žY>œÀüjE \AšÁ\äµ)ª=àŸ‹a)Ìno~Z“²2u^ÕF,Î(dk±ŽŽõ -ª5ú×fóñ,û3`4 | ~L¼gˡۢ,´"iJæõ¯I]­Y÷àw¥Ôî&Q/½Ûê=§Ÿn“óŸ - ÊUÉý‡F®§fcgMD€úˆ¨1…À”`€Jïðî„äU±˜™Ss‡7Ì„U}~1¶é%ú¶âÇ4¡ˆ½R’–NËWó—j`¢ÞŒÑü›B¦ävÇ6F¯e$~ÔúIk)m [rWglÂÚT`Nñˆ×trhq¯\ºˆp®uÎ¥à;ŸŒà•6p»SÂ`†Ý¬à$Ö¥Ñõã ,æì½®¹0Xþ ÈVÞÉÈÀ\ S<`µ*žê¦=gîü…í2vmÓ†M/øÉaßúÔƒ“{0ƒîØìÝžGŽ(f—õcÏ~âªV*ª6}Wu¦¼Ê×}W-®T% Ïí¤èü”áè‘´}Q佈¨õq1QZí7º.¯õo­CþÀAÙi!ío(Eiçr_¯ŒHìðñÅèç¾’“Ähûÿ@áRox¡ ת2ZJeÙóÉÍt3±R?â̆˺X6#,Nc{ã·ñ~ì]Æ!£ßËHŒšû9|üP_endstream -endobj -653 0 obj<>/XObject<<>>>>>>endobj -654 0 obj<>stream -x½UÛnÚ@}ç+æÑ‘X×ëËÚô¥22 K\Zl”$Ë…%qklâµÓôï;kLJb ­‚BÂÌΙ3s³ -¾)Ø: VÛŽ¦jÀ ¦20¿ëø)8lê€Å,|<0lGÕO(ÕÛ~Øù4d@)„¬ÎÂ5`eMƒp¥,•iYž‘*K*¾'–77áL2›$äJ¨ÈáZ %Ñž¨ETUÝŸ;€“ãƒK¥_%iI’ Öù6N²K¨¢AÕµ=b¨)éÖˆUña­ôTl[…[ž¦äg–ÿÊ`î{ÁKª]ö§¸2‰€DõÄUyŸIùã´â]ˆì⢄|<)ïyßëB^RÆ_` .ã£"¯vNtŸsdÜ›M¢‘ïIXö0 QÕª¬ -¬Ñà,‚Á<ò§ÃYD¡.îÆù]ž¡øb—g‚7“Å94²Ý9ž}=¨/Ä~ÖQÛgÕ=dñ–~9/EváúÓ¨&‰=F®7ñ§gq¾à«¡=¡—åNÔFÔv -šg‹ü;ÙÑb„gq®HÖÚ9«GË—p']óAFóÙâkô¬Hãóã½Z—ú ß”ä/]é¤aKÏ -ÿlk}]ý ­¿tœ&¸‚Þá!wì»ÁU<ä4+…âÕÃz=`ÌnîwÒwÁã<Íw¸`T%k.[%‡³ÄÖz—÷·i›ªÍ¼ps³Z×AØùÖù[ÞË_endstream -endobj -655 0 obj<>/XObject<<>>>>>>endobj -656 0 obj<>stream -x½•_KÃ0Åßû)îã|hL³4I}‘¬«£¸­µI>Ù2P÷ÏÉÔïu›ø0ú „6B8çÞròD@qE ôÌ×%8#¸’¸eøï,ƒ ®ïbˆ"°Kt%Á.Õ”‚÷ª|xse_PÃÏšPÆèéìÏ2A8:{£ýö°Û<­Ý…mXLt>mô8צÁºMm²Ê´ºÅï¢ýB®öæ-´Qk“ÐŽêÌØNp™ܲ˜eUw#îû`ÖiZÔSÛe'sæ>˜Í£±Ù¤+äØrYåÝ Yø èô¾.»²ô\eå8Oµ-ªÖjNš¨sFGR‘$ âSÙèÉ@ÃÐ}¸Õvçöï0:>/XObject<<>>>>>>endobj -658 0 obj<>stream -x­WMsÛ6½ûWìä%Ó’¬Zv{Šó1õ!‰Ó(mžÑ€ ("! -kúçû%[ö´$ñdF$Èýxûöíòú`BcüMh>¥ã’ÍÁ8Ó/gÓlJ³Ó9~Oñß**ÃÁññ#狃£·g4Ó¢„­“ù)- -‚1îÈÑ«Jt^YšŒ3ú$š\Ð¥Õ­×íŠ.Z´¢vÏ_ƒÉ<Ú8<ž!€E1ÂK“Œ^æÎ[!}|lF“Izl:ÏNø±E¥¨ëmgœ"S’¯´£ÂȾQ­'üö†:knt¡È™F‘n^U8jq‚zêðD -«ì[éµA`ÚoH´!D#ìL‡“ã\¡œ´:Wð»ªÈJ:@*ë…n©TÂ÷V…{é¶0kG²ÖÕà-{,÷YÊ}šíU - w†þV›ÞѹßHµEBðh"ä½C‚¼Èë€Ð"uI+ rêF!攽ˈa.@oü¦cC D¡Jݪrú1 i¨Ì€QL³¼_¹¡ž½dh`GÖ° Ý·2ÚBTí½0]§'Y€Ê*o5¢•µ>€."ÎtÝ«>)S‡óì”Ùú\MOætßG8ÜVº01ý¨90ÔD=‚ÝâçÄX¨Zy6úÕäTZÓ„xJâÑf¬ôÏ –¨ý>yòòƒq»>o4Ûg“èîÐï,Ýáô4›œí¸öª·ôª7læf0-_®Ye’†ä©1I7]­X‡K -d)öÍ - Z©VY-¡$ž5dhìÚ¸ýtÞXö"¶Û79l\!Ö â©têV*U`Ï@²ÄZƒ8þEL¸„ïзwøô9ºX%£c.óz¶2ÂØ„~l°yñöÅBª‰]!  p0É8+øZl#·®´¬ðþ°Að Iôƒgè“%JY‚-.REµE   Jã¹ïUm;«íí‡Ñè+l«Ø'rqB¹áqB:]ò, -±0¶[ÿQP¨Q¾2ˆuPDU‰´1Å Øv§å7dÖw”oÐ]Jö løžð%±ÓÙ°‰Ïâ&vô¡Èº/`%,!Û¨èùÑý8ão„QÜãcïïSú×éb‰Y¿ìGd Ü’°ØW¡7[xx¬"Â|„£`†sŠãÂPwWÏ®ü¯FÊ÷Æ9plYîcÆECGoOw«1ö‰ðÑò?ŒfóY6?9«êÉ1côfqðñà,n@Âendstream -endobj -659 0 obj<>/XObject<<>>>>>>endobj -660 0 obj<>stream -xWÛnÛF}÷W òÙ°dIQ$')ZøZ¨õ%•&„¹²Ø» -—´âù÷ž™Ý•d9¶¡½$Ïœ9så×­µñÓ¡A—^õ))¶G[{§mzC£)nô÷ñKJíV»Ý¦QÒ ð¯Ê -=®ÈUª¬ø÷w´·C‹™6TÍ4ýc'þ–NÉÍ­Í3sC;{Û£¶ÚÔì´[û]beF€ªÚ -’.s‚÷èë.ûW¨à²zø·KSU>Ma®nô8±µ©"Œ!S]2ßuäžÁ9¼¼<óëTPfÊQVÑDC§áheE!QÈwºúíqZ®˜@OAsº¢Œ5ñ^AEWç‡Oë3uUÉúO³\BÅñ€j‡8˜t¾õ8­ˆZ÷9ì|@7Ù-g‚2Mî1É3vÿÑ(FLp)£þL¬DVç“ ž? óµÖõÊ[ÀÜf‰^'$©>µ%@ŸK±‹ÑøøäïáÑÉùåñ í˜jœêÛ¦úÝFJ—ƒ½Óu:¾€šÝ>çúÄ“º,YƒB™lª9Å3kb–Ι¯›²NªºÄóÖT*3äi¦ó4ÕôñbøYbž¥TjóýC¢÷ÒÑèøp&=~tÕÄÞjötÃè/;·Ê Èl¼¬è‹± $Œ.l™b\dα¥™.õί|r£.‚³JSþåe·ÇW£ƒ£X±Yºa¯Ôs+I‰7áh+Üîö[=Ö|ˆÐ–)R eœŽ¬é"ÊNvúƒ\„j]åt—\1I¹ -†5*taË;–è´¼-©o[Þ¾Š™¯æóÒ"‚ªBù#õ-²*Xôê6ݨ×óÔ‹Ã/ -¼YžÓ\—Àó 8µyn¬¤«ôÜ!¿'SaÂ\yº,«£2T²ª•¼•ëXàÇbU_7®·ýk±¨t½ý–0°P^^N¾°ÖNkî‘ -I†8{ééP|ù]Ì1‘h'3fé«&¶¥öP«Ò¾††;BóÃsÄÏU¶DÑ ,÷½kœ]ý)3oï´*ù³48kŸÑ%Š×µbãY—P“ß=ôý‘ûr¾Ú|åJš¿^Kó^×ïÃÇ:ל!æŽc‹½ÑCéò\— -µÅ£3œ‡ ÏØRÍBh²«ò”6j)¸¹²ÆÎ,ëqðfM&_ÇkE®n°±ÜØ÷ÍîëUº°ðSöDÍ™Ûo;ÒqãÒ¿ô,·4ø8=ÃÀ’†Æ²0ˆÂæ¤ò¨Çr'Šá :ÜëÒÔPéqŒsß Y8ÇúÄ¢ËUZ:!Æ¥õ{¦ŒxcM3ÕSUçÕ£cÍûé96J$»³ è”Y5·|¸-bzT&ï„“Â4M)¼ü Ûvf’¼æN‘·°aV †À_εyï·â“oöY «ã¯€Þ͵Œ5ÄfÃt`˜b€úœ¦K¢ô4µ’é¸JÚ -­Öñ°'#Ï΄ûCË\ÚÜOqÇ×%VM,ôü…ÀKýƒðj|‡'$r’/{§ûa¢wû­þ›7Ô ü®}up~xÀrëÜb+rô{¥â}3>Û´ù«ºq4SsþÁ1]©b¢HÀBùëĨܱl½A¯5èïûÙïñÑÉh믭ÿ‚¸¯endstream -endobj -661 0 obj<>/XObject<<>>>>>>endobj -662 0 obj<>stream -x¥WïoGýî¿b¾™¤æ ˜ŽšJ 1‘[\|RT•*Zî³é²Knï î_ß7»{)r~)â|3oÞ¼y3|=iS ¿ÛÔïÐE²ÕI+iQ¯w»ƒ>þíào!i´Úß?x—žœºÔnSº@¬Þ OiNˆÓjQš5&Fß“±¦™Ë…¨tIïåFe’>Ú\’@hWÚBæ´Uå’Ö…2%}±sGÊP¹”ñ“¯•¬$¥ïß%4Á§ÅV9y柇h/Ò/'-j¶/’’7|låÈÎK¡ ‚/ -»z' <ù"³’¶KÒdZIdVÎUÒ‘ ²üÝÎg -7RÓ›7Ô™½ÀáÊ„³.©J¹äæE7érÞv+é&4\ -s'¯ß“09 Cà¡È–ÊÜ‘]Ð ××fa‹•(•5!à‡ÍN?éqÀ¿SKs°¯´F D ¼úϼJè“2¹Ý:§ç?vù,ÛR-îfüÄŒlmñ/£õ=yˆö šÜ)æŠÖÖ95×h ºçd±Ay¥¥ÊIšÞ ù¿N‚ áîM¶,¬±•c{ËÊ¢¿4ûÉ€= ³1ëôúžÖ“ãî\à!ÕX~ûQ¦ñs3q9Cm|¢Ô2>7ÁT®õýd-MLðRië3BYÌÙT. -é–Oül›AÒ¾|PÌ¢ÇÌ)6Jh ³ 6BiÁÞƒI'›Îaôù©wA¤ó{?¨µ‹¹µµÏø¬¡×\þ#}†¢@R,iÖø9 Âç²kS­ÂøkÍCSÞˆQâˆÝè÷|M™LW¹ò\?– c®þ¢®$6°ðöˆ¾öûõ{—Ý3YöM^»6“tS׫µwÊaq´`ŽO >ÜÊm„1•h0ª÷kVÐFh•ï -†\·¾.‚º„[¿Pk›Œ—IˆàãÊšå= #¥D<‰ ,ÌÈ£ß/´¸‹ý -;:¬å#ÑÀåÊ…“îŒÉœ5æˆ$èfz=N¯¦ŸÇ“ôzô×çÉMz=ßâô+ª¬¬Â–àkà€fô™w=k‹ò™1 O¸›X¶1]B^·ÛpúAW?/[Ëw©®Mv¿Ïødñ õ,Ž__âê°žª.F)Ù"ù]>ùhH‡7ె“ ˆŠŸ5Êeåü9©xŽ …râÀÖ÷Âà–^@7×gñºZ½õÕCÅ×ÓÃñÅä)ÓŸ†¡µŒiîĹƒ÷êéa,0¹ÆçÈU™w­XK¼!öÏv6уIâ8Q6T $Z–oZŒ‡t:âkáRm {\.d™-CÓ+x1$Œ7·€sc£le~$ÔÞ!Ë?q>Ä ¨Ý$½ËK|ÏŠuܾýøî-«’ò+}¨Tîï®fý³Í~ Vø¼ï'Ý~7é÷áöê½bPWéÉŸ'ÿ´¹bendstream -endobj -663 0 obj<>/XObject<<>>>>>>endobj -664 0 obj<>stream -x¥X]O9}çWømƒT†$¥Iè„Í© ,DZU›UäÌ8‰Û{j{ é¯ßsmOfÈJ…ö2“ûqî½çÜË÷£ëâ ûìý€¥ÅÑåôètÒeçlºÄƒÁ?d¬›t»]6M;™ÿ7] f…y†QæRXö$ÝšqŸ1|Ãîno?Ïon§×“/óë›Éíüêbzq<ýzÔe'½n2‚ÙN°Å˜u¦J]e`eÖIµr\*‘1 cÏ 5oÏŽ“h°ßKdpû^2‡Ó5W+Á”vr)Sî¤V e¹`Ò2¢Ï·p¶ØÐW˜"C娣äˆh2¾ß íï•°îw¡°BeoÜ’Í8×VÜ©œ0³Îìø€éh‡-xú9âî–ÒX—0öI?ùXyí”iÊOÚ&',ÙÒè¢m)ë¥Uڬĭ¹ó¯•F‚ö$Ê¡“äx)R^YÔʱR[+1†” -Œù(ЈÔ`T,ä_T¹“%^Y[Lµi>Œ£hƒµ&…SùWÖí¥JA¶õ -PãN¬´!2Ú+^jxâ7bŠÝxWÀ³lb‰eÙ*Ížw/ìÙ!§û»1ã)d#£l ÁsªÅZ/âFØËëm)Ô]£®µZÔ5…•PϺWvA>¥0À±@«TŠ÷{h¶ÒN¡ÅÜKˆ³ ö𫉟€6¾²+P€`ÂbD¯„–Ääyf¥†V¡Û-íÙ -_#È^Ç¥”z(Ä<×Oì‘çUìw/®~T Ü%7^P(²œC\î'7íì÷Ö‡·Åól¬± -~q¤(ÙIEeñËÚ¯øÜ×€‹¨7Xn½¨vž…¬×zÔ©#²éÁ~yA¿žŽˆc—9_a¥€”±ƒ¦3±ô++=¶k/2DU³P‰·–2î¢Gâ<€¥ªbA-´d˜/?º˜*zð,O¿y‡µü-€Na;|ÿ0¤Û%¿Yf:Ûøâô<ƒ— »MIœO â’Øç{¤{#pvÆfŠ¿Ðõ+éíîC(h„—j …¶Ð³š|¯wBÕñ,´™ûU·R$p5©„ªŠ0°Ò/ÄôîPÝEåüiòzB*ï€L¶­ü¹õ³½Á‚ºÄž2§ž®T½ãã“×#0ëp,äZf^–hBºÞcSÓPj Ó|Ž6àÅóï“9ŸL’0bYª-P tnÆM¥±G¯ãÒ|Ù¸']Sâ͈‘‹ºåp:‰Ð 0{œ8Ü­%ö"¼âebÏk”´È®èm§nÜx<ÆÃ”RhKUÂâBîl'p(À"@À¾¿V¬dŒÅ(3þ(0‚c2ÈõQA!Hl¢\¬!:ÃÍŒ¡¸Î€vTäó¤m žÂFùâY³{|è‡Û¿uŒ"E÷>t“Ýs6€ˆû¿<\üyyÁ®PÎ\C®-û£ÂHzß½á(œcçâ ¸0p%ž%lŒ8VâúÊ÷ì8\Ñcª ¦Œû»Þ•˜³áY2ŒÂ©2ýß§Gý1cendstream -endobj -665 0 obj<>/XObject<<>>>>>>endobj -666 0 obj<>stream -x5K‚0…÷üгÄDk‹ØâRQ'.æ•avlŠt‚Å)ÕÄùõsñ‘¦7M{î×sÏo Ài ¨3‰òpÆ!åŒjœ(ªm§Q«,˜nc¬´2QÈ*žsde˜5½ùÓ0=´ñvÈÃ"Žè½3ö€VÛƒo`,¾ßvéûzƒºsÇ~LúýSYì¯^÷èê;D—ggüu”ý1c9+ݗΜ|çÆ Z–á7rUø—¢=ëž ]Ómù`¢X"ðDä‘T¸ ’‡@Ì9›ó¢Û_Ë×Õk}ÑmwÒ®ÇËÙTz蘕0¹X`¢HMvg1CÚö wk¶BÚm=Ò¢l†hœŠÃSB;K o:;Àb3%rO ©†«M|ÿðwEendstream -endobj -667 0 obj<>/XObject<<>>>>>>endobj -668 0 obj<>stream -xVmOë6þί8â˸7´¥kË•øPv/S¥ 6èÝ>À„ÜÄi½%v°¤ýø=ÇNhZƄƋš¸¶Ï9Ï˱úÔÃoŸÆ:QZô¼~?JF4œŒñ<À¿•”\ÌN.ÏhУyŽ%£ñ„æaz#éÑ+Qyi©ßOèV” A¿Ï®ni¦1¨Eá>Ìÿ ëûã¸þãé0`‡#,À’0ùR¨Â¬¥s‡Ø«™;#̯$¥µµRû&Hj2¹NReœ“üGž'‰J,T¡ü3yC5¾_ZSWŽLC9iˆ' On%P¢ Ô”¥Ñ½Gû§1?-Jé*‘céJú‹Ùõ-ñ(pY*ç­ðÊh:À3Eͯ q®XQŠ‚*a1ÑqÏÚ‹'R =:k+&C®šÆãáöËÍo_n~™ÞLnÆÏ)Òø‹ùõM3ôðÓìvN´é÷&èn”v9|cu´Íîå󜦟?ßÜ}šO|+0Ox™ßy8'U=ˆ,³ô7åÙ ì{ycç΢íã9y¥—o&Ü‚³]ÂOçd˜÷÷î»7ÜžÝåïÿ䲫ܠÛ)9UV…$ù$Â'd(h- -•Q}à=jú}Ü- ³Å[`w7;§þÙ é&ð× ó|ÊUÿK’3¬#×ì®à mˆáWŽ2™+-3R:¸@´*Ä;Û­€ ŽÉ•‹Œ„sj = ^#ê‡-Pïá·‡ Mù­E½1¶‡A36j0i#ÅàU½™íø.ºÑ›¥Dl›Ð× -ös^X_WǤ9‹* -Þ˲B-¦qjì,osîZú…2.:”Ô«ýŠŒ–M&\µ銼X.‘hÈ2iªŒ¢q§˜Ó[;æ“Ñ^ÚšB{i:Mꌬ[™ ¡ ™Ð•ñ2ÏyqÓlŠhÎí'4"¼ïÁÇsC,lftñL‹gh\3‹m[Â7ÚxPâeºÒ*EK²ò±VV–˜*9¹|Ý‹þ¯Ö>"/â;Ý$è¿!ï½’F¹ZÖ±Á¶Ìšº€Ê^S„þÆíèeËg‡…×@Š#·t!SÁ0¸‡\Îa£Í•©Ójô¸‰ŠL³V-›a¤"Ð9®$ˆ=âvNû#.ÛããþC`Hº ^Î"W/±>d0hô‹W%TiêÈ$äÝjrï°jÏ&X¸(̆=ж¤ -aqBP‹tsÃáÌé‡äÖ¬l±‹îZíWÆ0·í¸äo›óº²f‰Ãнrèc-ísÈH/Ñ(w™bév¼G5´]ìÁ)aZ„|P^­ùxvè `‘±ð"t0÷…€Òhx - ‡½8p¸PnMIèHf'$7Ìd¶ZË%îk óÁðÌV¸Ä’Øià1¡÷|æ -L‘Iq -Œl˜u•LU®Òný¬1¾¤ÄüâÕ¡ÓÃJaÿýH/3èÂPecÏk ib‚o²“OÛýbxG9Eãy‘z™%tÍ0Å{UsD)²ã†ÙÐrC›Ùz¶à}v -à[Ô«ÛÓÉVú…{O›Ò* å{Ñû=*•®½tMÿšl¯‹ýÑ86å÷\J‡ãa2Mp¥Åmi4á0_æ¿ü[ueendstream -endobj -669 0 obj<>/XObject<<>>>>>>endobj -670 0 obj<>stream +649 0 obj<>/XObject<<>>>>>>endobj +650 0 obj<>stream +x­VMsÚH½ûWôiC¡Æ`\µ©rH¼›Jb{A®BãÑ`)–4òÌ(,ÿ~_$,c’Óå²=ýñúõëy8ÒŸ!MGtÑÿ,—Ê}ÖwºXŠÜÿo¹rs€-ÃIP8O˜kôp8ñ‚ðŒS°jhÕZµõ<ö÷QFözS³zõr§-)-æÒ4—hŒ" ^ž9ÔÀCĪնVà*¶;£L¹I‹µ^õÐF´ÄJ“–.¸ùø>X~|oåŒ\‡ï{zæCtüïáðû‘êî£þ1Ä0ökè8¤¹ÎspÉSþÍEW)§R®Scݯô²»g¤®²˜nU»„ð y*¶ºP”AÒ”\  0Xv 嘲L]¼¶õ4<Í…LRl[F ÌDÂ|_èMA?EV©n°u2ï¯=­4êVkМÅÕk¹—\VÑnÂNïU…4[Èüeäèó¤ªh#¶´® +ɃeI¯w9aä’”gk—§z¨R¤Æ˜†t^l‰yC?ÍdÛ‹y«Öç¶.õV)^Mr…­‚- ¯+JÄO*5‡b“ú··ã®ÖèGeì>Àu6» »RskyáÝGE'„_2¸ŠŒ&õn¹d„€ »3ÊU¦ê¾dæþN›žŒ•F¯ÓŒAƒòñòä W¢,•0¯XðÀ"9%¹‰·û;© /^—k[ÔŒŠæ×ØÏJÞÛ*ßO4B‚è–Y]”2/A)³ ™ÞèE|èhs1°ØÓÌÃ…/µsëцu„QhÅpDGÿý³ûˆþendstream +endobj +651 0 obj<>/XObject<<>>>>>>endobj +652 0 obj<>stream +xUQo›0~ϯ¸ÇDª= ÈÞh³UÕZª5L}Aš8 +Ø©Á¡ù÷;CI›µ"IáàówßÝww~ž0°ðËÀ·Áñ «&µÀó=jƒø¸¶ñ§8¬ºsæQöÙ†í8Ôùã"ž|ùîc¯Ð‰øç€, âlÞ_ºÉôG}Våø”í*™%3h‹f ÍšCÍÕ–+ÈdµÑM!û—i…\´ÈšB +ÐõðOÃ6-5¯¡å2¼¥³ø/2˜Cdžq\ê"‡éœ–׋R‘Ã=.zÓ7²Äö©gL¬ ÅT´¼,!—™®¸hx¼¬y»æŠwþЋíõ^Bã +㢖<Óªhv€/“iÍ9,în“ºQ:k´âÉŒB¼æ»Î\u¬¤ª¾zŒºŽè> ð‰Ôß5æDYê?¡nÖlXØÃ¡´ãEªgyçG­—èÝg84ó¥0åî¬Ï;Æ33±³."@~Ä”˜U2‰|²ÖpÏË´)¶3ScjŒ˜‰½z(Y¯úÔCØÔôF¤½ùk¹a¢ÞŒÑü—@ªNËNÀ½}îõ‹4 +ЇµmB˜ƒýaŠƒ0b«7È{‹©Ê|!Fnd––ãö(À¥âi#ܵÛéX4ÎIXWJêÍ Xl$°C^˾ÛÓ³O€ìé éŒ@&ÓL‹âYwå™ÌƵpûmœ9]vµ`ïëÖ¦f˜!rR Æ0´ÍnÜóùH‹gãæÈy2¦VÄ›Vª§ccê\¤M¶>0¦Å5Ž[•âèßòc0¯2|Ú’¦.Šì(„×ûø"Rì*©ëù(E2MŸRfZ”æ?^]µ™ËC­¯ÅÀü€zó9^¯eN7?ÂÛ‹|ËK¹ÁáWºÈ;fd0&¾5æØÇ+Ëõ]ê{Þm8¼nŽ|‹'?'ÿÏÚ Aendstream +endobj +653 0 obj<>/XObject<<>>>>>>endobj +654 0 obj<>stream +x½U]o¢@}÷WÜGš8³ òå¾l0¨!©¶+˜ÝML‹cË;€µÿ~g€º¶*í¦M1õÎ=÷Üsî ÷ªø°4虯;*VÁÐu¬n[â»&nNaUtKÃæ©€fØ~/#`%ÑMÛ‚` ¢‚ªB+>"È@ÖEðG¬3›uH,D¤'êKåš³Ýc?ÀÙ‡k»À§|Kù%»aÙB‰î"X²u”d³¬à,M)‡(ŽY™‹‹÷ÔY(U ðÜüu ýD¿ZH/”iËP™%÷%}¨º#·âÊ$-è¿–¡j^™£î4µFìÑ¥•?=‚Å¥ÒÇ6Ö0ü iŠî2öÁÌsýçBª€4é»âÈ $9D—¿QT·Œ'Å#l£´¤]ˆrØD¼¶š·Òð=· Œƒ ,þ8Ê©Œ9+7.ïîsdܽš„cÏ•DÙ§)Ê ^ÆEÉEgîg¡7]…Ž£—¾¾3ÚRNó ËrÚ(+t¨æY¶eª@^êeNy^‹ad™uVÕC­é×çz)² Ç›†IÑcè¸ozç›¸Ž ÔØcs'j Ôã2ÒÏy;Ùñ|ègq>¬Q9ëÇÑ\œšw2ž]ͯý#ÍœŸ÷úÔZ<|Õ’tå$} +[rÖøÿ`[MЧÐÕjºv³9‰ec³ßS<«ãM\º¥)Ûˆ½ ã2YR™„žÖ"Kí·Ÿ„º¥cË´Å[Vœf¥Ð0è|ïüN)ÞYendstream +endobj +655 0 obj<>/XObject<<>>>>>>endobj +656 0 obj<>stream +x½•;oà …wÿŠ;ºƒ)p—ŠÄndµŽ]ƒu²¢„HiGõñóKíÐÈC$ Ã=‡+|üîÀvàz f+# LD(„Pp»§ví ,¼ön" ôÂJ'H€žƒ` zæGH Šz&¦i‚·õæk eôYN÷f£_­AÿÏ  Ì¢çþh·ùØ®§+sw* Ï%>Äy&Óq-ŸR©jkUË8KǪÕéÞŽ ümùp«ÆÚ^J(m\[©¤tBKZ¯wí¨J”v‚K»À-òIRÖÎZÜë‚Y‡y5Öu^8ésسzQ:É\!÷»@.ÊÔ]“YÄ9|¬ +WMæ'dqZÂbQd##ÝW2HˆÍ§i6[³ÛÃèc97Qð[pÂûúÿ"ÿø¸C"΄ýUØ2vüäí={?+ËÂendstream +endobj +657 0 obj<>/XObject<<>>>>>>endobj +658 0 obj<>stream +xuAKÃ0†ïùﱓ´&©Éì…ÍiðXdÍ@íÚY™úóýÂ&† ð<ïòÎ$m £ilvLp­2ž#·†fEg +ز™g—wW~Kж¾áBÀo’Å4öÃó.\_øW"ó™ \¯\uߺeåš¶®Ê¶ž?,«[ç×õý M•¦bß%7´Î‚Ä7u‰Š>W”²GÁžÞ#åº(`rncSãV3‡2|†~܇é‹ÃK¢“þ¢©ED n¹âx +}Ÿ¾ ãתl"šSšÑ–¾…0Å«¹gìiUSæendstream +endobj +659 0 obj<>/XObject<<>>>>>>endobj +660 0 obj<>stream +x­WMoÛ8½çW z©[4Šíxíd÷Ôô›CÛtëîöÀ (Êb+‰ +IÅ1öÏï’r'Ø]´mPÀ¶¤™7oÞ¼¡®&4Æß„S:ž“lÆÙ˜~9fSš,ðyŠÿVQ.?rálypôö”¦cZ–ˆ5_œÐ² Äã9zU‰Î+K“qFŸD“ º°ºõº]Óy‹ ­¨Ý³å×c²ˆ1g°,Fxh’ÑËÜy+¤·Íh2I·MÙœo[VŠºÞvÆ)2%ùJ;*ŒìÕzÂgo¨³æZŠœiéÖéu…K-®POîH°Ê¾•^Ó~K¢- ‚pþ1NŽ#¸B9iu®qU#P•t @*ë…n©TÂ÷V…ßþÒma6Žd­Õ-{¬öYª}ší‘U +‰t†þV›ÞÑ™ßHµEbðj"å½A^äu`h(‘:ƒ¢• 9u­€9Uï2bZ‡¯L 7~Ûq ¢P¥nU +¹üX„H¥êÊ ¨C?{ÉÔ Ž¬/Š·CŽ¡¿£EÕý8£Àäz8g*«¼Õ@:! *j} ]D$tÕ«>”)üá";aõC>—Óù‚îçwî Á¦ E@šèGˆ[üŒ…ª•ç _MN¥5MÀûS +1c§Xf öû 0ò”åq»>o4Ç瘞ÐïlÝáô$›œÞjíUo-äUo9(ÌÃ`Zþºa—I’§Á$Ýtµbl)°¥87$,h­Zeµ„“xöað•ÆÒÆØol™í+r¦$lAŸßŸ¹Í‰¢ÝÖyÕ$7ø¥‹!ý«ÏŸÈuJê˜nÁ\Ž‚»ÂTCѪeKÁô²ë* +OÕ:·ð'ņ ª·OÒ4®Ã ÞñQ¯uù,á}Ѓ_Ü™ÐSŠ[bèË,í¬Šãd—ô‘Ç–¯Ïžþ—1¦µ÷÷¦@©RÈŠ™{­í}×ûÛzRwW\ܾxZƒ'Ñ!|‡5[%ºÌÖ †8ÔcÅòJ‚K•zÝÛàȽSø¥À“òk¶ö¨/×®±<™Û˜¬ðµVŽ-VG®É (£® ËȪ«^³¡>ØWêFIŒ„4Ý–«C!ýn6ðMû"„R W÷&†ñFW-´ëj± Ò2C£SòB7ºÕ®RÛé C]‡&ãçÁ¸—¨«Ö.¹Ó`™£pÏc/AAË%–¦ÇRÆu#8ºÅp‡@¾ÈWaWEŽYI›ÆÑåh”SÉpãªR",¡a„3I%½Œfϸm Z+:(`7!{)n£ýºV~k•o[Õ8“0 –¹ '_a^Bc ƒIj 8-ÔŒ.¶{‰Þ½ü²ºøãüýrõúìÓêÃÅ›÷l¥àK•P§gì,/xvElÜõ`ˆNY +\ÝTØtál& &q-tZ>œÚxúé¼±íyÿ¶orÄ‚¸Ö`â©uêF*UàœbÁZC8þE,¸Dî0·wôü5¹X%£c/óñlm,Œ± óØàäŧ/îJMê +€‚#<¢Ádãìà±uÌܦҲÂóà ‚I’2Ã×X,PhqT N‘H‘:ª-€B2¸)­#Ծ׵ݮ´w>ŒùÃ\á´Šód`.nÈ`7¼N¨À¤KÞE s»Ë …å+¬û„U%Ò‰)VÀ±;-¿¡²¾£|‹éR²bàÀ÷Œ/™õ˜N‡“ø,žÄŽžЬûQÂ!d7=?ªgüŽ0гgÿ{ï:¥.V81ëâ7BüÈ Œ[²ÖçUøÍŽžY†( ˆ°‘(„ášâº„1ÔÝå³pVH +þ× eÄÁ3uÎï<;Շ߱ƒâb £·'w^ZNâKËÿ}1š-fÙb~ªósôfyðñàho@ôendstream +endobj +661 0 obj<>/XObject<<>>>>>>endobj +662 0 obj<>stream +xWÛnÛF}÷W òÙ°dIq$')ZøZ¨õ%•&„¹²Ø» +—´âù÷ž™Ý•d9¶¡½$Ïœ™9sá×­µñÓ¡~—^õ()¶Ž†[{gmzCà nôðKJíV»Ý¦aÒ ð¯Ê +=ªÈUª¬ø÷w´·Có©6TM5ýcÇþ–NÉͬÍ3sK;{ÛöÚÔì´[]`eF€ªÚ +’.s‚÷äë.ûW¨à²|ø·KU>Oa¦nõ(±µ©"Œ!Sc]2ßuä6à]]{u*(Så(«h¬§áhe%B ßëê·§iy¸bŒx +šÓeï"£èúâèùøL\Urü'Y® +©bˆx@µCž@LH :ßzšVD­€œv> Û쎕`Lã{ALòŒÝ2‹\Ê&VBU`Æ:c’Áó0_k]/½Ì]–èÕt"$À'¶è&‰]G'§ŽO/®NNiÇT£Tß6ÕïÖ$ý]öÎö©ÓñÔìöXëCOê²äÊdÍϬ‰*1!_7eTu‰ç­©Tf8É“Lçi «éãåà³äÇÔWQ?h 0ík>¤'¼Iw™¢]æÖ¾ÇZ¬3¦}¯—¸È@µduúÁ®òßçn}:ÇV½K ì êPŠð_²²><"F¼®`ñ±ìÛcÅí0CvX-Hm" ž[û¥žIþJpÓ \Lm¢Qí܃±nXD?A3ÄkÅãíIœ‘üY¬Ú q‰†âu¥ØxÖÄ%Ôä÷€¾?q_Ηۀ¯\‘ùë™ïwý>|¢sÍ +1÷œ[ì~J—çºT¨-á<\xÆþ¨z+B“]–§´¡PKÁÍ¥5vfQýÇ0+aòu¼RäêË€Ðì¾^ö¨K ?e@vÑœ¹]ñ¶#7.ý ¿ñÀbËAƒÓ3 ,ihQØœTã±Ø‰bzBt ij¨ô8H†€y¸ï…ΰ…>³°èb•–Nˆqiýž)#ÞXÓLõDÕyµÆèDó~zbw6áÒ<«¦â–ODÑ"¦AeòŽY¦ijLáÅXض3“ä5otм…5³b0$þj¦Í{¿Ÿ~ã¡‹& HõØiÌESa|ºz\dÓSÒ4y~<ð±ÏJZLñn®e¬!7k¦ÃÔkZ˜.ˆÒóÔJ¦ã*i+´\ÇÞŒ<\~>/XObject<<>>>>>>endobj +664 0 obj<>stream +x¥WïoGýî¿b¾™¤æ Ø5•b"· +¸ø¤¨*U´Ü-°ÉrKvï î_ß7»{)r~)â|3oÞ¼y3|=iS ¿ÛÔëÐE—²ÕI+iQ·{/û=üÛÁ_+i´Úß?x›žœ/©Ý¦tŽXÝ~Òœ§Õ¢4kŒ }O…)š¹œ‹J—ôNnT&éƒÉ% „v¥±2§­*—´¶ª(é³™9R•K?ùZÉJRúîmBc|j·ÊÉ3ÿiQ³}‘t¼ác+GfV +U øÜšÕC8iñä³ÌJÚ.eH“i%‘Y9WIG‚ÞËò3›6´ÜHM¯_Sgú<‡+Îv>¼¢6*å’›—É%çm·’Ë„KQ,äÍ;ENƒx ²¥*dætË5ÂM17v%JeŠðÃf§—t9à?©¡ØWZ£ +P¢^ý÷G~Mè£*r³u4JÏ;îòX42¥šßÍø‘Ùû…ÑúžM&-75$C&y'eiÕ¬*¥K(]b& +fPæ•Þõû0{hR!eîó})Ìr%Š*ä–IKáäˆÿTnñÈ–R{èx¶ ˜Èn”¬C üÉM! œ(+1SÆ–K³0…О" e®s@…F°Œÿ åNŸ{]‚0^ÜhL§$"*¢© -,Y¾hè©c>=jµÖrÅ£óT1Þœβ‹7‘+Ô5„B‡Êº2C€¤yý¦ š ‡·ƒM_p€óaý¥ÙKúìY˜i§Û£ð´žÿpç©FòÛ2ž›‰Ëhãäå –á๠&r­ïÇkYÄÏ!‘ö±>#”ÁœMäÜJ·|¢pßE¨åg›Øìô“öÕƒbÆ=fN±QBël(˜±J öL¢€8ÙtΣÏO x‡ "ÝûA­]Ì­ÑxÆ/` ½âòé3’bIÓÆÏið>YÕ*Œ¿ÖœòÇl=q粃:½Û= ÝLèÖ饵ü¦)‚|sƒb_–Z­TûËã‚nÑUÜϸŸ¯Èÿû»ïz”ç…=Ðï-F?©Ó·’>{Nx¢Üh£„‡îJD6§½½þÆÊÁþѺöTœ>Ê]„1‘h0ª÷kVÐFh•ï +†\·¾.‚º„;¿Pk›Œ—IˆàãÊšå= #¥D<‰ ,LÈ£ßϵXÄ~…Öò‘hàre +…“îŒÉœ6fˆ$èvr3J¯'ŸFãôfø÷§ñmz3Ýáô³UVVaKð5p@3úÌ»žµÆEù̈'ÜM,Û˜.!¯Ûm8}Ž «‡Ÿ—­á»Ô ×&»‡ßg|²xÐÇz–Ço/quOÕ +£¿”ŒÍ_þŽA—Ÿ|4¤ƒ[pˆÇXÃÀÉDÅOå²rþœT¼}Ãߪ¤†ü¬£÷•ÊýÝÕ¬¶ÙkÁ +Ÿ÷ýä²w™ôºýp{u» ê:=ùëä´Ãbendstream +endobj +665 0 obj<>/XObject<<>>>>>>endobj +666 0 obj<>stream +x¥X]O9}çWømƒT†$¥Iè„Í© ,DZU›UäÌ8‰Û{j{ Ù_¿çÚžÌ$J…ö2“ûqî½çÜË÷£ëâ ûìý€¥ÅÑåôètÒeçlºÄƒÁ?d¬›t»]6M;™ÿ7] f…y†QæRXö$ÝšqŸ1|Ãîno?Ïon§×“/óë›Éíüêbzq<ýzÔe'½n2‚ÙN°Å˜u¦J]e`eÖIµr\*‘1 cÏ 5oÏŽ“h°ßKdpû^2‡Ó5W+Á”vr)Sî¤V e¹`Ò2¢Ï·p¶ØÐW˜"C娣äˆh2¾ß íï•°îw¡°BeoÜ’Í8×VÜ©œ0³Îìø€éh‡-xú9âî–ÒX—0öI?ùXyí”iÊOÚ&',ÙÒè¢m)ë¥Uڬĭ¹ó¯•F=üñP ""Ï¡ÈÒ‚ž2QÓ‘A1!.°)ÓõŠÛÄf ?íiK€8µ?!A{劉‚ÐIr¼)¯,jåX©­•CJF„|hDj0*ò/ªÜÉ/„¬-¦Ú4ÆQ´A‰Ú“Â)‡ü+ëöR%È ÛŽz¨q'VÚŠ mÈ/5¼Gñ1Ån¼+àY6±Ä²ìŒ•fÏ»v‹ìÓýݘñ²‘Q¶†`9Õb­q#ìåõ¶ê®Q×Z-j‚šÂJ¨gÝ+;È ŸRàX U* +Åû½G4[i§Ðbî%ÄY{øÕÄO@› _Ùˆ +(@0a1¢WBKbò<³RC«Ð‡í–öl…¯d¯ãRJ=bžë'öÈó*ö»W?*î’/(YÎ!.÷“›vö{ëÃÛây¶ÖX¿8R줢²øeíW|îk€ß5O'<ŠQçù"¬×zÔ©#²éÁ~yA¿žŽˆc—9_a¥€”±ƒ¦3±ô++=¶k/2DU³P‰·–2î¢Gâ<€¥ªbA-´d˜/?º˜*zð j¿y‡µü-€NÃvüSH·K~³Ìt¶ñÅéy/ 3·)‰ó D\û|”coîÃÎØìOñÚ£~%½ÝýƒbðR¡ÀzVÓƒâõN¨:ž…6s¿êVŠ®&•PUVú…˜¾Àª»¨œ?M^OB¥óɶ•ÿmýlo° .q£§Ì©§+UïøøäõÌ:K¹–™—%š®÷ØÔ4”È4…£xñüûdÅ'“$ŒX–j (›qSiìÑë¸4_¶îI×”x3bä¢n9œNâ4Ì'wk‰½¯x™Øó%-²+z[EÁ©7ñ0¥ÚR•°¸Ð‡;Û \ +°°ï¯+£C1ÊŒ? +Œàߘ r}TP›(+€@ˆ…Îp3#Gh#®3 ù>/XObject<<>>>>>>endobj +668 0 obj<>stream +x5K‚0…÷üгÄDk‹ØâRQ'.æ•avlŠt‚Å)ÕÄùõsñ‘¦7M{î×sÏo Ài ¨3‰òpÆ!åŒjœ(ªm§Q«,˜nc¬´2QÈ*žsde˜5½ùÓ0=´ñvÈÃ"Žè½3ö€VÛƒo`,¾ßvéûzƒºsÇ~LúýSYì¯^÷èê;D—ggüu”ý1c9+ݗΜ|çÆ Z–á7rUø—¢=ëž ]Ómù`¢X"ðDä‘T¸ ’‡@Ì9›ó¢Û_Ë×Õk}ÑmwÒ®ÇËÙTz蘕0¹X`¢HMvg1CÚö wk¶BÚm=Ò¢l†hœŠÃSB;K o:;Àb3%rO ™ W›,ø þúwFendstream +endobj +669 0 obj<>/XObject<<>>>>>>endobj +670 0 obj<>stream +xV[o"7~çWå¥Ù6;B!Y‰ÒÝTHmÒ&lûT‘™1àvÆžØH¤þø~Çž )UÔ\ÄŒ±}Îù.Ç~êô¨‹ßút6¤´èt¼~?L†48á¹+iѹœuN¯.¨ß¥ÙK†£sše„é]Œ¤Ç?¬D饥^/¡;QÌý>½¾£©Æ ¹û0û3¬ïâúgƒ¤ޱKÂä+¡r³–6Î`¯zn„|0w¶’”VÖJíë ©Éä\8I¥qNòyž$J1W¹ò/ä Uø~iMU:2‹ÊI‹@¦8H÷xà/f7·õÐãOÓ»ýѤßM˜ wlx´QÚQäèÀê:h“Ýëç˜&Ÿ?ßÞšM~<˜'¼Îo=ŒI•"Ë,ýM‹§ìö½¼±skÑöqL@^éåÁ„p¶KøiHˆùðà¾;¸8àðl/ø§WmåÝNÈ©¢Ì%Ég>!CAk‘«ŒZèƒïQÓèã~™›¹ÈÝÞlL½‹~ÒžÃ_ýÖóWý/INu°Ž\³»‚/´!†_9ÊäBi™‘ÒÁ¢Q!ÞÙn9lpB®˜g$œSKèIðQå>lz¾=JhÂo êµÁ°= š±QƒIk)¯ŠèÍlÇwÑÞ,%bÛ„¾–°ŸóÂúª>†¤ êå,Êâ%ÖÇ‚ ~ñª€*M™„¼MîVÍÙ ç¹Ù°GÑ–T.,N(j‘cíƒvn8œ9ýÜš•-vÑ]«ýÊæ¦ƒüm}^—Ö,qº7}ª¤} é%å.S,Ý–÷¨‚¶ó=8%L‹0‚oÊ«5Ï,²3æ^„†ã>—P Oô°7ZXSz ’Ù ÉÄÇ 3™í…Ör‰;ÀZÂ|0<³®±$vxLhÊ=Ÿ¹SdRÜc€#æE`])SµPi»~Ö_Rb~ñêÐêa…°~¤—™ ta¨´±‡/* ©c‚o²“ÏÛýbxG9Eãy‘z™%tÃ0Å{UsD)²“šÙÐrC›Ùz¶à}v +à[Ô›ÛÓéVú…{O›Ò* -ö¢÷ºT(]yéêþu¾½.ö†£Ø”ßs)ŒÉhxŽ+-nKà óeÖùµó[eendstream +endobj +671 0 obj<>/XObject<<>>>>>>endobj +672 0 obj<>stream xWßO"I~÷¯¨·Aƒèê˜Ûœ‡¹³÷`Bš™zé»{`ùïï«îAÉìær1A`ºëÇW_}U¼Œhˆ¿ÝŒéòšòêä·ùÉÅÃi¾Â“ë›Ï4/h8ñMÞ»Û¨:°£Ñx@ó ÓsÛJ›5Ínÿ¤ÙÞ®Nçߣ‰ÑM2q~y5ÃHwFšqÞ8ö¤ XÈ ïäv–î]ÑhÔÞß ®åÞ“a²«xx©×köjg—%Wžv:l¨VÞKÒžtÈðRÕxÆ&¨ ­‘«™ofºÍsöžrk‚³¥\ÂE™rL{ÛHC:]¦˜µTˆÎ++F3Z*¯}Ÿ”)à6Ê“±b/ç:ˆ·éœnï½d<•ú•©,TíU…ãKª((«ÔZçÙ¹Î(ßpþêmXãëÁ•@òaľ",Ä¿e·'ÏNÛÆ—{ÚmØÐŽÉå´³î5E+p Ú>¸& Æí‚½^9'PFƒ¨ jZôiål,ç bcílƒä›z@•o(We)IÉ3á@¢ÃbþôÇdzéé9.y«Lx9ÅwH;UBp\ 4À ÕóĈ„]§(ùVˆ3¯•Sƒ‰}².V\ç: {ßÔu©ql¹ñØåwÎ-YHš5Ú„Ëqÿ¢E¬µŠ(Gg…­”6ýŽÕE:!qõcD·wwOÏpøûíôþqBgâM¢9Mù7alÁ9*ÛFX à¤éóã#½ôbxj< ^—¥ÝI=¬ üCþI%<‡ hj µ-oÈ3a‘4ã!ƒ¶—´ôºjÊ  GЧ0AÊC;Hx 0ÄÀè¬j|8“0}͹^šZWÁGâvЊtÜ6±q!L¾gýÔ @@ -1546,10 +1549,10 @@ u Üc¡d ú¼Ûè|Óɪu}hënpG5Œ‚,¨Á#0âƒÐˆðU¶hJN“ѱò ¦H<œ©¥Ýr³@O³[©<Ê02K Õ -Ë7à4ÕçÈWª‘®¢&‘ ¯Àø0-4ª‘vi–‰”XkÕ0ŒQuBŠñˆ^È„xk˜ÂÁ˜™|î`à&ÜÄ$)c¥½t»B½0It§,‡\b“œ0„Ö¬¢qv˜÷øú0aÀQaJŽP1Ÿu‹Xi[àu3ä]å  žËU,Î_ ½Z±´vg7…¡“l¥€u„FǃÕ¼½ŸõeK”0„_êBi>kÎg³Gƒá#IÒ’qXrÈSárÚv'tN—PsÇo †¢ìžÎ¥“ '-Yº8ŽéÚ–:ß‹¦¶µOô‹‹cÐ(›Qh©(zÒý·ï’IÙ†KtO&í›s…@”}mmq˜Œ"–¤¶VÂì?m%/½‡ÆIž•u˜4ûÒ{ÆTíQËå€Ñ>6sÝxÙ9@‘-£¢rþ£p€Àð…MKÌy7 œ¨lXQF#8í8xK¬2"GâFäŠ - ›cWøiŒÄe&)ÀNÃ?ˆ5úXšÕ¨ò}m\•кÈde€¢¤Ù—üdŸ,.>X=ñî AarÐÉ"ÃHžÌf‹ûÉôëä>v¥YÖÇV!íÂ8…½·m+r-]Ä=-æ×ò«]¥½m”ôwþtܦé˜&âû¾ž‹Pì[A}ò(ÝùqÖ®UQ O¡i±Ù!{%.´—‰ß€)m€×ëŸÁt΢ \<|þXÿ?}J‹ÑÿüÉqus5¸¹þŒß,X¦®¿ˆ·Éü䯓â/9}endstream + ›cWøiŒÄe&)ÀNÃ?ˆ5úXšÕ¨ò}m\•кÈde€¢¤Ù—üdŸ,.>X=ñî AarÐÉ"ÃHžÌf‹ûÉôëä>v¥YÖÇV!íÂ8…½·m+r-]Ä=-æ×ò«]¥½m”ôwþtܦé˜&âû¾ž‹Pì[A}ò(ÝùqÖ®UQ O¡i±Ù!{%.´—‰ß€)m€×ëŸÁt΢ \<|þXÿ?}J‹ÑÿüÉqus5¸¹þŒß,X¦n†âm2?ùëä_áà9uendstream endobj -671 0 obj<>/XObject<<>>>>>>endobj -672 0 obj<>stream +673 0 obj<>/XObject<<>>>>>>endobj +674 0 obj<>stream xVÑnÛ8|ÏWì›’ÀVlǰ“¾¥Ms íÝÕ>ô”DÙ¬)RGRqü÷7KÊNêÅ¡-Ú†Ôrwvfvÿ=Ó¿Æ4ŸÐåŒÊæd”h6åš^Íñï þ8Iu<˜Î®ñß7Æ8˜¾u0›þéýòäânJã1-k<>»šÓ²"<<Ѳ<ý¶–†v¶£ÌË‘0d‹ï² ôpZ ­•Y‘Íc×V"ÈGQ–¶3ááŒÂZ’2A:#4U2¥= ä.VB꼬rú(Ê5•kaVˆp¶ü~2¢áøi.«ÓµðTH¼ßˆ l Ú?8«µX­d5 o ÷qKLfsâ@/9žç×iÅÊ~èzzß¿£\Û¤/Hx™¸¤‡S`Û ï«‚g$—Ìd¼À®«ë‡³]» „uT€ö¸§J•:h½È*ivX6ÑRÞàz\¸_)ÜmmË KÁáš«üÑ@øý¾ó -’ýZ3œ\åãkNûE»Í4§Ob½'ðpkZZ€Fi›‰—Æð·¶…"ãjõ#ÐX–&¼KŸÆž³ë‚K`VSð²*ˆ‹ê˜³<Çâdù ˆ§Œ»%7 v7›¶*$öYò*@˜K¶B¶ìÈtàaL„—Y‘æ Ö<^¤Ø·3ßÂa{c·Ø$V2c׉B²…ä-A›(¸‹»«ž^ãùU>»¾¦Ùe\\ñÈûºEþš5áé·ãˆ3îoç£kÆá×+ãt>Íç³+옸:q„Ë“¿Nþëç-endstream +’ýZ3œ\åãkNûE»Í4§Ob½'ðpkZZ€Fi›‰—Æð·¶…"ãjõ#ÐX–&¼KŸÆž³ë‚K`VSð²*ˆ‹ê˜³<Çâdù ˆ§Œ»%7 v7›¶*$öYò*@˜K¶B¶ìÈtàaL„—Y‘æ Ö<^¤Ø·3ßÂa{c·Ø$V2c׉B²…ä-A›(¸‹»«ž^ãùU>»¾¦Ùe\\ñÈûºEþš5áé·ãˆ3îoç£kÆá×+ãt>Íç³+옸:s„Ë“¿Nþëñ-endstream endobj -673 0 obj<>/XObject<<>>>>>>endobj -674 0 obj<>stream +675 0 obj<>/XObject<<>>>>>>endobj +676 0 obj<>stream x}W]oÛ8|ϯØ7'…­ú+vronÓ;hp=Ô@_ ´DÙ¬%RGRv|¿þfIú£jîдIj‘»;;;;úûfDCüÑ|L“åõÍ0Òýlާüï­¤2|0½¿ÏÞú`2™gÓ·>=>þzâÃòæýï4šÒ²DôÙ~(‘‡CZæ·£q6ÍÆ}]¼Ð³öÒ–"—wË84¥Ñ(Œç8t»Ü*G•ÜËŠzæ ]üVÒ^XeZG[¡‹J’ó¶Í}k¥ë‡7Ò¿wÒ“5­WZ:2ÿoÜõ“„£ÔX³WàK›v]©œóÒ`4ÉÆ_òËh‰gDÓàán¬ÄQZªÅ‘”V^‰Jýƒ¨—œyõÈÔÐ× çdÁ¿ˆªÂ£©Þsr}’2TÈR´•ïw2p²*§Né ¥tP¸\ËYÉ‚Sd´ÄÑ!±Ré"†¤­i¬^ÒZä;‰ÊkS´@®46Ôî…Ûõ’NpoÐÙK{Ö¶ m¢«[uQž˜·Öâd(‰ 18b<œïÐì›ÒãÄÐrc¹\VÏØN`Q°†3¤®^gXž%zQIHOŒt­+`†ö-†û0¸ë¼?&J«»Nô?©C±1ÀέiMX1aUcJ19§dHô-ì%@  §Åƒ‘b\­³áÏçQh<8ÎÆï'°s Raf´«B4‰hP<Æu1œW]ý_ušeô"knç‹Ðb¶àdµÆ=-<á=ø¸6ÓðÞ$YB}|œY$žK«ÑLåÙÜD¦Â³%ÅqBƒ?¯\àS‡4:Ð×礂õ8‡°9,4Á?`“½[ÝâÓàXð=u•YàÑn“CÆ`Óú 4£T@CjãȨ"ºxõâƒ+ ¯èˆÃUh2[“v £IåÊUËK>T¶:øm‡å‡%h/¾`©A[(OUu§›öÓËùd*£¯Ç°¨œ' -ÕÄ÷&–S]|û 7vP@8¨ /@ªË/@Ы/ôî]Rž‡ôÒ7š?d³ÇGšÍãËdäž¢Ž°²ÿÑb´9×ÁéÙÁ|ø˜ìÑÛï”Óù4›Ï`º`¢æ#>üiyó×ͿÜî¬endstream +ÕÄ÷&–S]|û 7vP@8¨ /@ªË/@Ы/ôî]Rž‡ôÒ7š?d³ÇGšÍãËdäž¢Ž°²ÿÑb´9×ÁéÙÁ|ø˜ìÑÛï”Óù4›Ï`º`¢æc>üiyó×Ϳæî­endstream endobj -675 0 obj<>/XObject<<>>>>>>endobj -676 0 obj<>stream +677 0 obj<>/XObject<<>>>>>>endobj +678 0 obj<>stream xVÑNëF}ç+æ¡RB”˜$ä&‡JBË-µ1Ò}ˆmì1l±½éî:¿ïÛbÚ !ÐÊ»;söÌ93üu4 >~4Ò阢ì¨ôi4îCM'Xñk™’rcr*»¿_„G'×# (LjÝÉP.ÍãßþÅÖþ endstream -endobj -677 0 obj<>/XObject<<>>>>>>endobj -678 0 obj<>stream -x•W]o7|÷¯Xø% Ë–¿ä<Í‡Û“Ö -’y¡î(ã;òBò¬øßwvÉ;Ig·@aO$wvvv–÷ã`F§ø™ÑüŒÎ¯¨hN§§tyþjzA×s|>ß״:x½88¹yEg§´XaËÕüš%aù)žGo*ÕFíiv>¥?”ý ,)[Òí‚>©6ΗôÎþ±ÆÙ—‹ïrØlž;>¿˜žá¸#ìžMé½Þ•]±]zA³Y^z6Ÿ^ñÒ/&V+M¥~еkm#¹U®ÖÀ¾[ºM` …kZͲÖÔö˜ô€‰VÎÓj–jB&’ d݆žÒ1` <Å{££U›REM]@˜ÂY«l cIÿTE¬[P¦z$HíBC¬d8åAûiŽvvö‘ᢈҤVêPx³Ô*·‘Ãï>¼~6U¯; ö{ ›JqN¡Ã~†Š*ü©ÄN‚Eå\0võš—Ñ£ë€Ì"k$ f¦ô7ž…Êuu e¨’Ù*pÚª«ëÇ éÐêÂ(|­ò‘ÔÒu‘‚.:à„ÓGä~úëã|÷æãíÝ!/g+¬¼]±?\•)ý6J‡´ƒóý%‰ëÅ$YŠ2vÊŽƒk´Lcjå9ÙÏ·ï¿>Çî”Ð\*3Âu]È*ˆÊX7ÊKQ¥B¥KVM§Y¢Jtó" çó¡ÀߌF¬]‚=uÏ•QÃò¢þ‡0ßš9JÕLœ0#Z@)£ïlýó™ŽfˆJlUYŽo¸½,Jš–e„yWNxÁ@ÉâŽG—W´4qüí»;º×Xá(³Žü_4jmŠ¤ÍºŠ!9á.l‹¢ŽÂkS™¢b†Bt>´-ÄÓ¤‹ÚÀàEÚerûKM÷èk˜“ôæÚô†p8nÂ.Ý Ê -ðàõGú¡êF•²&4(гÁ¡å.$déÃÛ Ñ9ħÏÖ®w| @õ,“ÝÊg¿ÊePupÔŠGŠ{ª8™œhL ³Ç‰Sa^O²«4CIdÑ·£m‹Lb_ü‚ÆúÍ»® Ûç¯.Y;[~¾½¤Ð¥Ôë`j$±W*½yІÝl)*¹.¼$¸ÎúÛK1à•ñ!âáXVä.ÛÚ¬˜„Õk š%lDW¸¬Á阺”Ô[OnÞ¸€çlðºeÓrøzɑ囄;ï[k«½ÄåÃTÛj[²ÉÒµèuBÏ]3 -œäwœÎÞÊó‚±îP+¤ü8!âÕ<Ü8>ïëš«km×ú09Óðÿ(>6–fµ‚óã$.)kⱯü–Û±B“ŒÈ2a‰ðQã ž½ -%U„Ë -݃”5‘…îw¹ÜñøV!Ž•×:› -õ6‚ù¢àèŽÁÄ‚vÜ…‰XÈEyê.gÉÿÒ£Èû C—-úçeý|βá1\ „ ‡»7èØµ_A ƨPæ©æ[ -Ï´4¥¦5&œ.Ñ7(‡ Î§D”cØ*ÌÖÀÿ:l"GõéõàY8¨¼Ýzgîzü¾§t³×Ú£ðC¯ Ž$©1óPt5† Œç,ž¥¥Ã0Á`Þ úQÔˆÉù‚Œ‰’LÓjÜ=ý=ñhE1 ^è´’fí+'b:¹¹Þy‡¼JïsoþïKëÅüb:¿ºÆû/ÞÏæçŒïÝâàσo™endstream -endobj -679 0 obj<>/XObject<<>>>>>>endobj -680 0 obj<>stream -xµWÛnÛF}÷W ‚–‰ºX–l£ 4uaÀIÚZi\ÄyX“+ik’«ì.­èÇ÷Ì.II´ 'uÀæ^æÌ™3—ýz0¤þ i:¢ã ÅÙÁ Ðäô,ÓøtŠßGøo$-ÞÌúg4œÒ|#“ÉItJó„p`0 yÜGÇÑÑüŸƒ½ž¯$Ùìn-¬Ý$´P©ä…þ؆Ãp¾7šFœï\æ¤M" -´¡k‘Ý ršÖÂ8«µp’TN÷‰;ý im´Ó±NI9Ê -ëèŽWRɇR­ï©XûÝà ݕ8¼v%zi!-ƒPHGlz©dN‚ - ó¹ÈdDsÀpE»iÙ%aýeß_ÞœÔp)K"µÇu.i#JoŠE;¥sºí(Ü”ªmVekm­ª@錒ðŒ}ŒS Çå7Gzá?0´C»µ óV‰½ã­ÊÝ-Y ☳lÍýŽÛ±ÎP¹Ê—07jªâ?µ±À_ÒäG]Âö#Òyöê}t¶.’]é"M¸Ò[é¸Ð­ál]ÖÒ >Y]‹ZÌ×ì¤* -ð£ãƒt¬ÛN0Ø„%^e:!^zb áíQ;g¯Ô½Ü T>ˆÜ¢šøÜ«ràI™;øZz'Ÿññ‰ ¶)Lž÷‘—•¼èM1C’TM©9[+ dò®T¡¢%!Rè«#Ök¸²’𲉆[+7N™;SBN«vü|‰Û7ÝÐ:«‡‰q(šÜ.¹‘Ÿ*9¿yáçå l†µ4ð£N‡ªŸÏ³8FfBŠåZ~9¿úeÞû9Öõâ•È—²çT&_Ÿ_iÔV³Ï0î;ž„ûf©CØ–èàyZî4·Qݤjwöoèt«š¿Ý§ÚíòÑzŒ›G6>‡/‘]§[›¿ðß;IÇ™Ù:Mm‚ZW µýÜ„© -µÞªe®* ™/ão<ÝANá^AŒuò¨wBlaêê_Lj.é¯Ëùìêêï¶]žÆŒcC¾™8–+§ßñˆo !5"vÒ°ªÝ†…-~î9<ß[®Pç­/½1|t+fö,TuvcUšÒB¨”K†1•ð$'òÒ'‰B“óM¹vÈ3ÌŒù@kÙÝnÂHÇù¬ F稡ÛïÛ•È1lÇ:2«Š&1;¢upg -{?©<Ñ´ßyËâCEnWÈO«ŠÀ½¡‘oŒ„»ˆ/H`ÝÛàa³ sVÙ0`.Gi·¶ ùa7Q2+âXZüÊÔÛÈc¬^\ÍÄ– -ôŸÀDK!ñ9nˆˆ°±R-Û+ùM$2V™HQõ—ÊYÔÌAï¬K³Þ GƒëÔûðìZ|İîUñ­§uŽ -è -C;ÖàÃöc£æ¯Œ—ÜL+7Üë)ß™æo;,3ŒeŽ9˜Ÿ2ACeW³$Ï*ôbàMf“°ÌÃT¿U^‹‘úQ9ë=¼¥ÑŒ²¯Þ ßg×ן>üùöUX«ÇÄèÃäﳯ…vÒVý¸qZåüpzMÎÎðžõõõìÝ›½Å[+Õh8–~C—ðÕ¹WïìMh)IxË>÷ŒOÇÑtrFàé˜ý:?øãà?5Ä»Kendstream -endobj -681 0 obj<>/XObject<<>>>>>>endobj -682 0 obj<>stream -xm•ÝnÛH …ïýç® -`+²ãÈŽH¶í¢@Óv7.vº#‰²´Íd5’U½}É‘R72 š yøñù4EÄŸ)3\ÅH«QF˜_ÇaŒùrÁ¿gü­ ùèn=º|?ÇtŠuÎ/XgàëQ„u¼·5自ž4ÑX¤šT¦ <)ç:[gÈùJë¨Fb“1ŠÒÁU‰?å³RÈ4uζ:ƒ¶öº|$¬.Öÿqê7CæÉlÎ9w€ýÃáVÓ(Z}úŒ/·ÿ|þûí¿/=«—^>·úöõø¾úøÇzÂÕùgug“Wy«5ŒªhuÉY »ÿá -Òzy"4¹ŠÃ¥èü£·-cTZÛ®4[ÏÁ 'â)P¤¶ª”ÉäÐQ#‡e Û™#H7öñ*Ŭ”áÛrG’?ÂdzÎ$«vxÆ¥)›’ôpVÂöÈ,ŒmP¨‹°ÂŸ»£ðTÓ®´­;fDWAZ(³ñ|uPe¨;Ëzlö&È5I5d2Ê6!>°8‡XA˜p$„ã±8èñzo³àä_é¬ÑnkU¡j]ƒ„É&l —Zc(mÎd Š_žÇÍUÖ@‰Õ ~íʦ`PG!Þ™!Ÿ¨Nz¨,ó\Øíº4GËÊà®ÌâÁ³F t€äð=¹_%<»<¨Æ·­¶‰ÒßÙiS²8› *ar¹ù0<›À3dA]Ñûs•Xî«Kɨº´à“Zò¥¦œj®¦Ÿ1“Ƥª!iÔ0¸Ž½‘Q®ZÝkæ ±- ”Æb-iìoÎ:ñâ|DöçŽêp¨>>.–#ªO–sï‡ÿ0UÖ‚Üo WøEÁ½g/4Œ†2pÀ)Oš jâÖô–ûá¨Ò”œŸ9ÊÇH•Á&ðÇdl»-Î<Ûiʶt`.©ljµÛ\`«¸êST_ÔÃý·ÉÆRyoÊ^cÅMÁãTY^ŽŒã9”‰ãyb¢ÆÖ•òÛãùôšò4¼žýÎ .©I/‡}9œœ¨Hš=Éåþút± ã›ÌæS^æ¼nïïnñ–v¤í“ì†?Û2ó79Ü,"^²YÀ;ä*Ä)à´—$‡ä/æá"^òÿ¾¹¸–WïÖ£¿F?æN÷êendstream -endobj -683 0 obj<>/XObject<<>>>>>>endobj -684 0 obj<>stream -x•Uao"7üίxßJN°B€´§“®Q¯ªÔS¯µ_"!¯×˺ñÚ[ÛJ}Çön`s¹S›„àyÞ¼™ñÛ¿FsšáNëݬˆ×£Y6£ÛÕm¶¡åfÏ ¼¬ rôýntýáŽ3Ú•8²ZohWÊgø†ï+Öxai¾Ìè·O÷ôIµ‡Ë• ¦h•pW»?#À|¦7Ëlˆ1NÌ3zŸ›Ö§š%Íç]Íb­BÍ®’Ž -ÃÛZhO…pÜÊ\8ªÌ‘¼¡š= -j _ Òâø:*ó­Å1SÒ–Õ9£›l–Qg4ß$NÌòJzÁC9™#V¢­¤æV°®Uͤöx±\*éOg\¦”9J}HDdƒž8›ËØGý¢¡ ³Ì u¢Òš:Ðéþ÷-å–i^¢€iÈN*EL9ƒ74ÅIi‹)ÐÀçIèÂØØ¼hY¶š{i4‹ÔA/Iâ+kÚCE œJí²dÊ]·ìŒ[dô£ÐÂ2E¿< û$Å1•¿âá•ÐÄt”„ƒ+ÁRìDkWçÅ$¾“·2©¥ +ˆ‘«˜…bJB{¢ü”LfµHÞ>-½{¡¶áû· „×(|—93¤5M+¦ ä3d&ñ)I"\F8ý§G 1»|}V©u§N}06`_„¢y&&ôóö}„F~£„R„†ÔÇaå˜sŸsÍ¢óˆÜ@Š ’«L«(HŽôˆg˜gAí­ ±·Æøw×hz ™^“u.D³¼uãc~¢BAª lv/5ÔêCDG‰àÅæCš§˜PX¬²˜šŸRÑë0“èFïu7^lý\oÅA:ȿ禮á {?\¥K|fã±@;)q1iú‹Éì!.÷m/Ö]¿s–‰(®öyØWºrŸ‰#žô†+í'tù³O“€šÏ°M±Äèëé´ó¶åžX#÷ÝÇ7¼.ÜÎzròñpõ]b¼:—d 1t+ýy¥ïî• .܉°«ÂWásAÁÐ!êôò,†ù:ðwËÿ‡Ñ¾ŒÌpë!1˜žå®2ßÄEblõ«H·u.Ò¦{ŽdÈM‡Þk5œ -j~¹y'¢¾$£ÂÒO·­Ÿ "÷ߊtO\”åòí Œcý1SÃöÚã·Òذîê°Å߬n°›0z·‚ÒÓ +³»ÝZÞ\„àö6÷?=Š—ëe¶^mð$G2׫ Ã»Ñ¯£Ȇ€endstream -endobj -685 0 obj<>endobj -686 0 obj<>endobj -687 0 obj<>endobj -688 0 obj<>endobj -689 0 obj<>endobj -690 0 obj<>endobj -691 0 obj<>endobj -692 0 obj<>endobj -693 0 obj<>endobj -694 0 obj<>endobj -695 0 obj<>endobj -696 0 obj<>endobj -697 0 obj<>endobj -698 0 obj<>endobj -699 0 obj<>endobj -700 0 obj<>endobj -701 0 obj<>endobj -702 0 obj<>endobj -703 0 obj<>endobj -704 0 obj<>endobj -705 0 obj<>endobj -706 0 obj<>endobj -707 0 obj<>endobj -708 0 obj<>endobj -709 0 obj<>endobj -710 0 obj<>endobj -711 0 obj<>endobj -712 0 obj<>endobj -713 0 obj<>endobj -714 0 obj<>endobj -715 0 obj<>endobj -716 0 obj<>endobj -717 0 obj<>endobj -718 0 obj<>endobj -719 0 obj<>endobj -720 0 obj<>endobj -721 0 obj<>endobj -722 0 obj<>endobj -723 0 obj<>endobj -724 0 obj<>endobj -725 0 obj<>endobj -726 0 obj<>endobj -727 0 obj<>endobj -728 0 obj<>endobj -729 0 obj<>endobj -730 0 obj<>endobj -731 0 obj<>endobj -732 0 obj<>endobj -733 0 obj<>endobj -734 0 obj<>endobj -735 0 obj<>endobj -736 0 obj<>endobj -737 0 obj<>endobj -738 0 obj<>endobj -739 0 obj<>endobj -740 0 obj<>endobj -741 0 obj<>endobj -742 0 obj<>endobj -743 0 obj<>endobj -744 0 obj<>endobj -745 0 obj<>endobj -746 0 obj<>endobj -747 0 obj<>endobj -748 0 obj<>endobj -749 0 obj<>endobj -750 0 obj<>endobj -751 0 obj<>endobj -752 0 obj<>endobj -753 0 obj<>endobj -754 0 obj<>endobj -755 0 obj<>endobj -756 0 obj<>endobj -757 0 obj<>endobj -758 0 obj<>endobj -759 0 obj<>endobj -760 0 obj<>endobj -761 0 obj<>endobj -762 0 obj<>endobj -763 0 obj<>endobj -764 0 obj<>endobj -765 0 obj<>endobj -766 0 obj<>endobj -767 0 obj<>endobj -768 0 obj<>endobj -769 0 obj<>endobj -770 0 obj<>endobj -771 0 obj<>endobj -772 0 obj<>endobj -773 0 obj<>endobj -774 0 obj<>endobj -775 0 obj<>endobj -776 0 obj<>endobj -777 0 obj<>endobj -778 0 obj<>endobj -779 0 obj<>endobj -780 0 obj<>endobj -781 0 obj<>endobj -782 0 obj<>endobj -783 0 obj<>endobj -784 0 obj<>endobj -785 0 obj<>endobj -786 0 obj<>endobj -787 0 obj<>endobj -788 0 obj<>endobj -789 0 obj<>endobj -790 0 obj<>endobj -791 0 obj<>endobj -792 0 obj<>endobj -793 0 obj<>endobj -794 0 obj<>endobj -795 0 obj<>endobj -796 0 obj<>endobj -797 0 obj<>endobj -798 0 obj<>endobj -799 0 obj<>endobj -800 0 obj<>endobj -801 0 obj<>endobj -802 0 obj<>endobj -803 0 obj<>endobj -804 0 obj<>endobj -805 0 obj<>endobj -806 0 obj<>endobj -807 0 obj<>endobj -808 0 obj<>endobj -809 0 obj<>endobj -810 0 obj<>endobj -811 0 obj<>endobj -812 0 obj<>endobj -813 0 obj<>endobj -814 0 obj<>endobj -815 0 obj<The smbpasswd file)/Dest[679 0 R/XYZ 0 771 0]/Prev 814 0 R>>endobj -816 0 obj<>endobj -817 0 obj<>endobj -818 0 obj<>endobj -819 0 obj<>1<>5<>6<>9<>11<>13<>17<>19<>24<>27<>31<>33<>67<>72<>73<>77<>80<>]>>>>endobj +Ø ‹f—·´QP­!²’º ÝRQÒ-ꮓ=úäµÑÞ*»¯oWªJŒmh%7/¢äu0Ù‹ZâŒÚ0%Æ“ëi]ÖÁdŒÏÎh<üV50@¼˜Ñï8C;ú¥@’½ÃÙÞ¤âö§.<šŒ‚ÉxŠ>ÝÉ©\š‡G¿ý Åàþ¡endstream +endobj +679 0 obj<>/XObject<<>>>>>>endobj +680 0 obj<>stream +x•W]o7|÷¯Xø% Ë–#ä©h>Ühœ´Vð uGéß‘’gÅÿ¾³KÞI:» +Û€|"¹³³³³¼3:ÅÏŒ.ÏèÕÍÁéô”Î_½žÎi~u‰ÏgøóšVo'ׯéì”+l¹¸¼¢EIX~Š'ÅÑÛJµQ{š½šÒÊ~T–”-éfAŸUçKzo ÿØFãìËÅw9lv™;~5Ÿžá¸#ìžMéƒÞ•]±]:§Ù,/=»œ^ðÒ¯&V+M¥~еkm#¹U®ÖÀ¾[ºM` …kZͲÖÔö˜ô€‰VÎÓ­j–jB&’ d݆žÒ1` <Å{££U›REM]@˜ÂY«l cIÿTE¬[P¦z$HíBC¬d8åAûiŽvvö‘ᢈҤVêPx³Ô*·‘Ão?¾y6U¯; ö{ ›JqN¡Ã~†Š*ü©ÄN‚Eå\0võš—Ñ£ë€Ì"k$ f¦ô7ž…Êuu e¨’Ù*pÚª«ëÇ éÐêÂ(|­ò‘ÔÒu‘‚.:à„ÓGä~þëÓ­|÷öÓÍí!/g+¬¼]±?\•)ý6J‡´ƒóý%‰ëÅ$YŠ2vÊŽƒk´Lcjå9Ù/7¾=Çî”Ð\*3Âu]È*ˆÊX7ÊKQ¥B¥KVM§Y¢Jtó" çó¡ÀߌF¬]‚=uÏ•QÃò¢þ‡0ßš9JÕLœ0#Z@)£ïlýó™ŽfsĈ€%¶ª,Ç7Ü^%MË2¼+§¼` dqÇ£ó Zš8 +þîý-ÝëG¬p”YGþ/µ6Å Òf]E‰Žœp6ŒEÑ Ça޵©LQ1C!:Ÿ ÚâiÒEm`ð" í2¹‰ý¥¦{ô5ÌIú€smzC87áN—î‹exðú£ýPu£‹JYÅÙ`‚Pr—N²ôñÝ\´@ñé‹5…+Ç]P=Ëd·òÙ¯rTµâ‘"Àž*N&'SÃÃÄ챇CâT˜×“ì*ÍPYtw´m‘ÉàOì‹_ÑX¿y×µaûüõ9kgËÏÝKÚ]Jݸ¦¡Fb{¥Ò›`ØÍ–¢’ëÂK‚ë|¡ï^НŒÀ²"wÙÖfÅ$¬^»hÐ,©`#ºÂÕ` NÇÔ¥¤FØzrón Ä %¢ÃîPa¶Žþ×a9ªO¯ÏÂñ@åíÖ;s׋à÷%8¥ë½Ö…zMp$9H™‡¢«1dà`¬8g1ð,-†‰óæYcq˲1ZêIÞC}Ûdê'´62Á0†úÔ“ ÇEc=ïu›¨Ö»)âI2èžÏ7p"žy¥¦ÎõòO1¦¬¿pÞÉiå]#…âu'׸‚Ëýö(4KE2ÃO®û[ÌQºcï4XÖÚaWñôF°7"†o‹†ÏáF¨åa’ìS,–(jÑHºÀ hF“j·Çpºþ¥²Ã±'iboÝ(ôPJ›[0Ò¸j$0†Eö‰Òß´EñÉG³¤ï­NWäÂy&îKiê0]ûÕÊœs–# CËZ‡Ëȯ›Ì:«:­ñŒ¯AEöw+L]ÜÄDYR¹‹ÀKþB <•lŒµEç&ÒÖlOÏß÷tà†‘·'lË/Áä’'’Mu)j[9ß#ÿ¥é{‡á»ÃÓV6ÿÁéy¢—©ˆü†ð+ßO„¯Ú6fÕb×{® +Òø$èGQ#&khLä 2&J2M«q÷ô÷Ä£Å0x¡ÓJšµ¯œˆéäújçò"½Ï½ý¿/­óËùôòâ +ï¿x?»œ3¾÷‹ƒ?þo£endstream +endobj +681 0 obj<>/XObject<<>>>>>>endobj +682 0 obj<>stream +xµWÛnÛF}÷W ‚–‰’|‘,£ 4uaÀIÚZi\ÄyX“+ik’Ëì.¥èÇ÷Ì.EI´ 'µa@Ö^æÌ™3—ýz0¤~‡4>¦“ÅÙÁ Ðè|ÒéùŸñg$ÍÞÌú—Ži6Ç‘Ñè,:§YB80Ð,î O¢“èhöÏA‡^Ï–’lv_k× ÍU*y¡yJÃa8ß;G#œï\å¤M" ͵¡‘Ý rš +aœŠU!œ$•“Ã}â^¯$F;ë””£¬´Žîy%•|(ÕúÊÂïŽè¾ÂᥰK™ÐJ¤¥´ b@= =fÓ µ’9 *-Ìç"“}ÌÕ9ì¦U—„õ—}|u HpPÃ]¤,‰Ôj×¹¤µ¨¼)š—yì”Î鮣pPª¶Y•ÚZUƒ6Ò%áû§ŽËoŽôÜÁÐíÖv€Ì[=&öŽ·*ww´d%ˆcΰîwÜŽuî„ÊU¾€ ¸±¡ÊsÔú ÑLS†­™²žz`Î,­•[2:|çÖ«š¶e»´Îñåºt-ÂÔVyÜõ®y‚, @/‹N_º¸ïïKöÓ!‘'þXëD£²ö~Ô”N¥ÊUݰ~¶±DÙCs4²ËÖé.‡R[©âqš—w\È\zšÁøžÊint£?ècõ©Ç#äÄ æ3ï§ Uº4 …l†Åîyœë4ÕkŽS¬³ ì^ì_´å§°2¬¹›D'g¨À G;!£[¬Òkê—ÖôS‹´o9¹û…Q+(´ßø.ßT†ž¿½aájNp’J)s¯Yäh¯¬“xdéýÕM—?ý¸UÁnÑýÌ–5¦ï”ËnaDÆ +œëª¯ë_¨!%%ÊÈØiSEô¦¢DÎE™ºW ±¾î>.?Ç jÜú|Ä4j;b¿¤×ÈM ÛHçÙ«÷uÐÙºHv©Ë4áJo¥ãBo´†³›ŠPHƒúdQt-j1_³“ª(ÀŽÎбî:Á`–x™é„xé9ˆ-„wG휽VrRùt r‹jâs¯Î']dîàkå|ÆÇ'‚Ú¦h0zÞG^jTò¢SP4Å IR7¥æìFa “w¥ +- ‘B_]Qpe) áUþVn­Ü8eîLEa8­Úñó%nß`tw@h²&NCÑävÉü¢TÉÅí ?/o`3¬¥u:Tÿ|žÆ12R¬ +ùåâú—YïçTX׋—"_ÈžS™|}q­Q[Ì>øïda[ ƒçiÅÂ;EÓ£6îìßЩ{ÙÎ>Õn—¶¼ÀÅmÛ}nÙõ¹µù ÿ¿“sHÌÖajÓÓº‰í§&ÌT¨ôV-r5W±ÅœäüÏvD¸Wc<êœZ˜¹ú—£†Ê¿®fÓëë¿Ûvy3Ž ùV‚À’ïä˜o 5"vÒ°¦Ýše-~ê9¼Ø[®Qæ­/½/|t+eö,ÔtvCUšÒ\¨” F1•ð'òʧˆB‹óM¹vÈ2LŒù@kÙÝnÂ@ÇÙ¬ 稡×ïÛµÈ1 l‡:1ëz&19¢qp_ +{?©<Ñk4ßYËâ +Œ¡·ëã§eMàÞÈÈ7ÆFÂ]Ä$°êmð°ÙÇe‚9«l/ç£´Û [ü¨›( ™‰q,->2µÀÀv#òë7×2±¥Ý'0Ñ’FH{Ž""l¬TËöR~‰ŒU&RÔü…rsЛtiÚ»Dá¨`,cƒz]…Á—Õýs¢.½›Y£ºÂÈŽµø°ýÔØð׆Kn¥µ›îõ”ïÌòw–† ‡2ÇÌ ™ ²ŠëI’§Ç• +xSÉ$,³À0Óo•×bdó„¨õOÞÒ¿lÙWï?ÐïÓ››Oþ|û*¬m†Äèó¤ ¯³¯¥vÒÖݸy^çüp|&¼fý<}3}÷fJoñÒJ5Ú¥ßÐ#|ÅímvöÆ4”$¼dŸ{ÄžŽO£ñè< Àã3öëìàƒÿ£©»÷endstream +endobj +683 0 obj<>/XObject<<>>>>>>endobj +684 0 obj<>stream +xm•[oÛH …ßý+ÎÛ*€­ÈŽ+;Z éeQ`Ûf7.vº#‰²ÔŒf²ɪþ}É‘/‰ Í„<üxÈü?š"âÏ‹®b¤Õ( +#Ì_ÅaŒùrÁ¿gü­ ùèv=ºü0ÇtŠuÎ/XgàëQ„u|°5觪5ÑX¤šT¦ <*ç:[gÈùJë¨Fb“1ŠÒÁU‰?å³RÈ4uζ:ƒ¶öº| ¬.Ö?8u„ë!ód6çœ;Àþáp«i­>ÁÝÍýý¿_þy÷ßKÏ꥗Oß­¾}=ľ¯þz»žpuþYÝÚ䇼ÕFU´ºä¬…Ýÿpi=È<š\ÅáRt~ÌÑÛŠ1*­mWš­çà„ñ”N(R[UÊdr訑ò†í̤ûx•bVÊð ‹m¹#Éa2½ +g’UH; Ï&ð YPWôþ\%–ûêR2ª.-øä…–ÜÕ”SÍÕôã3fÒ˜T5$×±72ÊU«›c Â],Ãøú³ù”—9/„û›O·7xG;ÒöQvßm™ù›îN/Ù,àrâpÚK’CòÎóp/ùß\Äòêýzô÷èæX÷ëendstream +endobj +685 0 obj<>/XObject<<>>>>>>endobj +686 0 obj<>stream +x•Uao"7üίxßJN°BXÒžNºF½ªRO½Ô~‰„¼^úñÚ[ÛJ}Çön`s¹S›„àyÞ¼™ñÛ¿FsšáNù‚nVÄëÑ,›Ñíê6[Órãó/+h?ú~;ºþpG‹m÷8²Ê×´- å3|ÃÇ÷k¼°4_fôÛ§{ú¤ÚÃJÐGS¶J¸«íŸ`ž'€éÍ2[bŒóŒÞ¦õ©fIóyW³È³U¨ÙVÒQix[ í©Ž[YG•9’7T³GA­ä+AZ_g@{Á|kqÌìiÃê‚ÑM6Ë(€‡Î3šÎo'fy%½à¡œŽÌ+KQ†VRs+XתfR{¼X!•ô§3.SÊ¥>$"²AOœ-€eì#€Œ~ÑЉ†Yæ…:ÑÞš:Ðéþ÷ –i^¢€iÈN*EL9ƒ74ÅIiË)ÐÀçIèÒØØ¼h¹o5÷Òh©ƒ^’ÄWÖ´‡Š8•ÚeÉ”;º4nÙ·ÈèG¡…eŠ~yöIŠc*ÅÃ?*¡‰é( W‚¥.؉֮.ÊI|'oeRKV#W1 Å”„ +öDÅ)™Ìj‘:!½}Zz÷BmÃwo¯Qø.sfHkšVL—ÈgÈLâ³'‰páô7ž5ÄìòõY¥FÔ!œ:eôÁØ€}ˆæa˜˜ÐÏ›÷ùAŽJFRw„•cÎ}Î5‹Î#r)‚J®2­  e8ÒS"žaž!üµ·.ÄÞãß]£é5dz!LÖ¹Íò^Ôù‰ +©‚²AØÔP«%‚›ižb~@a±Êbj~JE¯ÃL¢½×Ýx±õs½é ÿŽ›º†ƒîaüp•.ñ™ÇBí¤ÄÅü{Ó_Lfq™¸o{±îú³LDqµÏþҕøLñ¤7\i?¡Ëoœ}šäÐ|†mŠ%F_ÿK§·-÷Ĺë>¾áué&pÖ““ÿˆ‡«ïãÕ9ø‹¸$‰¡›XéÏ+-xw¯d¸páN„]¾ +ŸK +†Q§—g1Ì×7¸ûXþÿ8Œöed†[‰Áô,Gp•ylü&.cK¬_Eº­ ‘6Ýs$Cn:ô^«áTPóËÍ£8õ%–~ºmý¹ÏøF¤{â¢,×o‡e믌™þ°Ó¿í 뮫QüÍê» £w+(=ݰ2»ËÑ­åõEnoSpÿÓ£x™/³|µÆ“ÉÌó ÃÛѯ£È€endstream +endobj +687 0 obj<>endobj +688 0 obj<>endobj +689 0 obj<>endobj +690 0 obj<>endobj +691 0 obj<>endobj +692 0 obj<>endobj +693 0 obj<>endobj +694 0 obj<>endobj +695 0 obj<>endobj +696 0 obj<>endobj +697 0 obj<>endobj +698 0 obj<>endobj +699 0 obj<>endobj +700 0 obj<>endobj +701 0 obj<>endobj +702 0 obj<>endobj +703 0 obj<>endobj +704 0 obj<>endobj +705 0 obj<>endobj +706 0 obj<>endobj +707 0 obj<>endobj +708 0 obj<>endobj +709 0 obj<>endobj +710 0 obj<>endobj +711 0 obj<>endobj +712 0 obj<>endobj +713 0 obj<>endobj +714 0 obj<>endobj +715 0 obj<>endobj +716 0 obj<>endobj +717 0 obj<>endobj +718 0 obj<>endobj +719 0 obj<>endobj +720 0 obj<>endobj +721 0 obj<>endobj +722 0 obj<>endobj +723 0 obj<>endobj +724 0 obj<>endobj +725 0 obj<>endobj +726 0 obj<>endobj +727 0 obj<>endobj +728 0 obj<>endobj +729 0 obj<>endobj +730 0 obj<>endobj +731 0 obj<>endobj +732 0 obj<>endobj +733 0 obj<>endobj +734 0 obj<>endobj +735 0 obj<>endobj +736 0 obj<>endobj +737 0 obj<>endobj +738 0 obj<>endobj +739 0 obj<>endobj +740 0 obj<>endobj +741 0 obj<>endobj +742 0 obj<>endobj +743 0 obj<>endobj +744 0 obj<>endobj +745 0 obj<>endobj +746 0 obj<>endobj +747 0 obj<>endobj +748 0 obj<>endobj +749 0 obj<>endobj +750 0 obj<>endobj +751 0 obj<>endobj +752 0 obj<>endobj +753 0 obj<>endobj +754 0 obj<>endobj +755 0 obj<>endobj +756 0 obj<>endobj +757 0 obj<>endobj +758 0 obj<>endobj +759 0 obj<>endobj +760 0 obj<>endobj +761 0 obj<>endobj +762 0 obj<>endobj +763 0 obj<>endobj +764 0 obj<>endobj +765 0 obj<>endobj +766 0 obj<>endobj +767 0 obj<>endobj +768 0 obj<>endobj +769 0 obj<>endobj +770 0 obj<>endobj +771 0 obj<>endobj +772 0 obj<>endobj +773 0 obj<>endobj +774 0 obj<>endobj +775 0 obj<>endobj +776 0 obj<>endobj +777 0 obj<>endobj +778 0 obj<>endobj +779 0 obj<>endobj +780 0 obj<>endobj +781 0 obj<>endobj +782 0 obj<>endobj +783 0 obj<>endobj +784 0 obj<>endobj +785 0 obj<>endobj +786 0 obj<>endobj +787 0 obj<>endobj +788 0 obj<>endobj +789 0 obj<>endobj +790 0 obj<>endobj +791 0 obj<>endobj +792 0 obj<>endobj +793 0 obj<>endobj +794 0 obj<>endobj +795 0 obj<>endobj +796 0 obj<>endobj +797 0 obj<>endobj +798 0 obj<>endobj +799 0 obj<>endobj +800 0 obj<>endobj +801 0 obj<>endobj +802 0 obj<>endobj +803 0 obj<>endobj +804 0 obj<>endobj +805 0 obj<>endobj +806 0 obj<>endobj +807 0 obj<>endobj +808 0 obj<>endobj +809 0 obj<>endobj +810 0 obj<>endobj +811 0 obj<>endobj +812 0 obj<>endobj +813 0 obj<>endobj +814 0 obj<>endobj +815 0 obj<>endobj +816 0 obj<>endobj +817 0 obj<The smbpasswd file)/Dest[681 0 R/XYZ 0 771 0]/Prev 816 0 R>>endobj +818 0 obj<>endobj +819 0 obj<>endobj +820 0 obj<>endobj +821 0 obj<>1<>5<>6<>9<>11<>13<>17<>19<>24<>27<>31<>33<>68<>73<>74<>78<>81<>]>>>>endobj xref -0 820 +0 822 0000000000 65535 f 0000000015 00000 n -0000000244 00000 n -0000001810 00000 n -0000001884 00000 n -0000001963 00000 n -0000002045 00000 n -0000002123 00000 n -0000002200 00000 n -0000002279 00000 n -0000002362 00000 n -0000002439 00000 n +0000000242 00000 n +0000001808 00000 n +0000001882 00000 n +0000001961 00000 n +0000002039 00000 n +0000002116 00000 n +0000002195 00000 n +0000002278 00000 n +0000002354 00000 n +0000002436 00000 n 0000002521 00000 n 0000002580 00000 n 0000002681 00000 n @@ -2289,305 +2285,307 @@ xref 0000046109 00000 n 0000046152 00000 n 0000046195 00000 n -0000046890 00000 n -0000047048 00000 n -0000047215 00000 n -0000047405 00000 n -0000050007 00000 n -0000050198 00000 n -0000053303 00000 n -0000053494 00000 n -0000057039 00000 n -0000057230 00000 n -0000057902 00000 n -0000058060 00000 n -0000058289 00000 n -0000058489 00000 n -0000060298 00000 n -0000060470 00000 n -0000062553 00000 n -0000062725 00000 n -0000064745 00000 n -0000064912 00000 n -0000066557 00000 n -0000066724 00000 n -0000068266 00000 n -0000068433 00000 n -0000070167 00000 n -0000070334 00000 n -0000072070 00000 n -0000072246 00000 n -0000073511 00000 n -0000073687 00000 n -0000074898 00000 n -0000075074 00000 n -0000076322 00000 n -0000076489 00000 n -0000077399 00000 n -0000077590 00000 n -0000079551 00000 n -0000079708 00000 n -0000081485 00000 n -0000081652 00000 n -0000083634 00000 n -0000083801 00000 n -0000084537 00000 n -0000084713 00000 n -0000085755 00000 n -0000085922 00000 n -0000087557 00000 n -0000087724 00000 n -0000088348 00000 n -0000088524 00000 n -0000089854 00000 n -0000090030 00000 n -0000091104 00000 n -0000091271 00000 n -0000091872 00000 n -0000092039 00000 n -0000093825 00000 n -0000093992 00000 n -0000095709 00000 n -0000095876 00000 n -0000097725 00000 n -0000097882 00000 n -0000098997 00000 n -0000099182 00000 n -0000100789 00000 n -0000100955 00000 n -0000101844 00000 n -0000102044 00000 n -0000103769 00000 n -0000103945 00000 n -0000105770 00000 n -0000105946 00000 n -0000106557 00000 n -0000106733 00000 n -0000107508 00000 n -0000107684 00000 n -0000108441 00000 n -0000108617 00000 n -0000109456 00000 n -0000109632 00000 n -0000110468 00000 n -0000110653 00000 n -0000111493 00000 n -0000111669 00000 n -0000112429 00000 n -0000112595 00000 n -0000113220 00000 n -0000113405 00000 n -0000114173 00000 n -0000114349 00000 n -0000115311 00000 n -0000115496 00000 n -0000116831 00000 n -0000117016 00000 n -0000118034 00000 n -0000118200 00000 n -0000118780 00000 n -0000118965 00000 n -0000120024 00000 n -0000120200 00000 n -0000121078 00000 n -0000121254 00000 n -0000122348 00000 n -0000122533 00000 n -0000123419 00000 n -0000123604 00000 n -0000124381 00000 n -0000124557 00000 n -0000125158 00000 n -0000125334 00000 n -0000125996 00000 n -0000126181 00000 n -0000127158 00000 n -0000127334 00000 n -0000128341 00000 n -0000128517 00000 n -0000129511 00000 n -0000129696 00000 n -0000130528 00000 n -0000130704 00000 n -0000131437 00000 n -0000131613 00000 n -0000132295 00000 n -0000132471 00000 n -0000133300 00000 n -0000133476 00000 n -0000134464 00000 n -0000134631 00000 n -0000136067 00000 n -0000136252 00000 n -0000136985 00000 n -0000137170 00000 n -0000137797 00000 n +0000046898 00000 n +0000047055 00000 n +0000047222 00000 n +0000047411 00000 n +0000050013 00000 n +0000050203 00000 n +0000053308 00000 n +0000053498 00000 n +0000057038 00000 n +0000057228 00000 n +0000057900 00000 n +0000058057 00000 n +0000058286 00000 n +0000058485 00000 n +0000060294 00000 n +0000060465 00000 n +0000062548 00000 n +0000062719 00000 n +0000064739 00000 n +0000064905 00000 n +0000066550 00000 n +0000066716 00000 n +0000068258 00000 n +0000068424 00000 n +0000070158 00000 n +0000070324 00000 n +0000072060 00000 n +0000072235 00000 n +0000073500 00000 n +0000073675 00000 n +0000074886 00000 n +0000075061 00000 n +0000076309 00000 n +0000076475 00000 n +0000077385 00000 n +0000077575 00000 n +0000079536 00000 n +0000079692 00000 n +0000081469 00000 n +0000081635 00000 n +0000083617 00000 n +0000083783 00000 n +0000084519 00000 n +0000084694 00000 n +0000085736 00000 n +0000085902 00000 n +0000087537 00000 n +0000087703 00000 n +0000088327 00000 n +0000088502 00000 n +0000089832 00000 n +0000090007 00000 n +0000091081 00000 n +0000091247 00000 n +0000091848 00000 n +0000092014 00000 n +0000093800 00000 n +0000093966 00000 n +0000095683 00000 n +0000095849 00000 n +0000097698 00000 n +0000097854 00000 n +0000098969 00000 n +0000099153 00000 n +0000100760 00000 n +0000100925 00000 n +0000101814 00000 n +0000102013 00000 n +0000103738 00000 n +0000103913 00000 n +0000105738 00000 n +0000105913 00000 n +0000106524 00000 n +0000106699 00000 n +0000107474 00000 n +0000107649 00000 n +0000108406 00000 n +0000108581 00000 n +0000109420 00000 n +0000109595 00000 n +0000110431 00000 n +0000110615 00000 n +0000111455 00000 n +0000111630 00000 n +0000112390 00000 n +0000112555 00000 n +0000113180 00000 n +0000113364 00000 n +0000114132 00000 n +0000114307 00000 n +0000115269 00000 n +0000115453 00000 n +0000116788 00000 n +0000116972 00000 n +0000117990 00000 n +0000118155 00000 n +0000118735 00000 n +0000118919 00000 n +0000119978 00000 n +0000120153 00000 n +0000121031 00000 n +0000121206 00000 n +0000122300 00000 n +0000122484 00000 n +0000123370 00000 n +0000123554 00000 n +0000124331 00000 n +0000124506 00000 n +0000125107 00000 n +0000125282 00000 n +0000125944 00000 n +0000126128 00000 n +0000127105 00000 n +0000127280 00000 n +0000128287 00000 n +0000128462 00000 n +0000129456 00000 n +0000129640 00000 n +0000130472 00000 n +0000130647 00000 n +0000131380 00000 n +0000131555 00000 n +0000132237 00000 n +0000132412 00000 n +0000133241 00000 n +0000133416 00000 n +0000134404 00000 n +0000134579 00000 n +0000135963 00000 n +0000136147 00000 n +0000136942 00000 n +0000137126 00000 n +0000137788 00000 n 0000137963 00000 n -0000138361 00000 n -0000138547 00000 n -0000140075 00000 n -0000140250 00000 n -0000141964 00000 n -0000142150 00000 n -0000143732 00000 n -0000143908 00000 n -0000145674 00000 n -0000145841 00000 n -0000146219 00000 n -0000146395 00000 n -0000147692 00000 n -0000147868 00000 n -0000149572 00000 n -0000149749 00000 n -0000151501 00000 n -0000151668 00000 n -0000153562 00000 n -0000153747 00000 n -0000155017 00000 n -0000155193 00000 n -0000156921 00000 n -0000157133 00000 n -0000158757 00000 n -0000158941 00000 n -0000159854 00000 n -0000160039 00000 n -0000161039 00000 n -0000161095 00000 n -0000161194 00000 n -0000161347 00000 n -0000161426 00000 n +0000138370 00000 n +0000138535 00000 n +0000138841 00000 n +0000139036 00000 n +0000140567 00000 n +0000140742 00000 n +0000142458 00000 n +0000142643 00000 n +0000144224 00000 n +0000144409 00000 n +0000146175 00000 n +0000146341 00000 n +0000146720 00000 n +0000146895 00000 n +0000148192 00000 n +0000148367 00000 n +0000150070 00000 n +0000150246 00000 n +0000151998 00000 n +0000152164 00000 n +0000154058 00000 n +0000154242 00000 n +0000155512 00000 n +0000155687 00000 n +0000157415 00000 n +0000157627 00000 n +0000159250 00000 n +0000159433 00000 n +0000160345 00000 n +0000160529 00000 n 0000161529 00000 n -0000161727 00000 n -0000161821 00000 n -0000161938 00000 n -0000162037 00000 n -0000162197 00000 n -0000162296 00000 n -0000162420 00000 n -0000162534 00000 n -0000162648 00000 n -0000162746 00000 n +0000161585 00000 n +0000161684 00000 n +0000161837 00000 n +0000161916 00000 n +0000162019 00000 n +0000162217 00000 n +0000162311 00000 n +0000162428 00000 n +0000162527 00000 n +0000162687 00000 n +0000162786 00000 n 0000162910 00000 n -0000163014 00000 n -0000163133 00000 n -0000163255 00000 n -0000163377 00000 n -0000163513 00000 n -0000163613 00000 n -0000163725 00000 n -0000163835 00000 n -0000163959 00000 n -0000164116 00000 n -0000164221 00000 n -0000164338 00000 n -0000164496 00000 n -0000164600 00000 n -0000164717 00000 n -0000164839 00000 n -0000164956 00000 n -0000165073 00000 n -0000165191 00000 n -0000165309 00000 n -0000165431 00000 n -0000165553 00000 n -0000165677 00000 n -0000165801 00000 n -0000165920 00000 n -0000166039 00000 n -0000166163 00000 n -0000166274 00000 n -0000166431 00000 n -0000166530 00000 n -0000166631 00000 n -0000166738 00000 n -0000166897 00000 n -0000167036 00000 n -0000167147 00000 n -0000167278 00000 n -0000167391 00000 n -0000167520 00000 n -0000167610 00000 n -0000167775 00000 n -0000167874 00000 n -0000167983 00000 n -0000168097 00000 n -0000168206 00000 n -0000168313 00000 n -0000168423 00000 n -0000168536 00000 n -0000168648 00000 n -0000168754 00000 n -0000168886 00000 n -0000169043 00000 n -0000169178 00000 n -0000169274 00000 n -0000169370 00000 n -0000169526 00000 n -0000169620 00000 n -0000169734 00000 n -0000169833 00000 n -0000170000 00000 n -0000170100 00000 n -0000170208 00000 n -0000170314 00000 n -0000170435 00000 n -0000170562 00000 n -0000170679 00000 n -0000170802 00000 n -0000170933 00000 n -0000171050 00000 n -0000171162 00000 n -0000171280 00000 n -0000171386 00000 n -0000171554 00000 n -0000171664 00000 n -0000171784 00000 n -0000171909 00000 n -0000172024 00000 n -0000172127 00000 n -0000172289 00000 n -0000172391 00000 n -0000172489 00000 n -0000172651 00000 n -0000172754 00000 n -0000172862 00000 n -0000173044 00000 n -0000173144 00000 n -0000173254 00000 n -0000173351 00000 n -0000173487 00000 n -0000173591 00000 n -0000173695 00000 n -0000173862 00000 n -0000173958 00000 n -0000174098 00000 n -0000174216 00000 n -0000174367 00000 n -0000174490 00000 n -0000174653 00000 n -0000174741 00000 n -0000174907 00000 n -0000175020 00000 n -0000175141 00000 n -0000175274 00000 n -0000175417 00000 n -0000175518 00000 n -0000175634 00000 n -0000175735 00000 n -0000175883 00000 n -0000175999 00000 n -0000176096 00000 n -0000176214 00000 n -0000176309 00000 n -0000176485 00000 n -0000176585 00000 n -0000176703 00000 n -0000176810 00000 n -0000176961 00000 n -0000177054 00000 n -0000177158 00000 n +0000163024 00000 n +0000163138 00000 n +0000163236 00000 n +0000163400 00000 n +0000163504 00000 n +0000163623 00000 n +0000163745 00000 n +0000163867 00000 n +0000164003 00000 n +0000164103 00000 n +0000164215 00000 n +0000164325 00000 n +0000164449 00000 n +0000164606 00000 n +0000164711 00000 n +0000164828 00000 n +0000164986 00000 n +0000165090 00000 n +0000165207 00000 n +0000165329 00000 n +0000165446 00000 n +0000165563 00000 n +0000165681 00000 n +0000165799 00000 n +0000165921 00000 n +0000166043 00000 n +0000166167 00000 n +0000166291 00000 n +0000166410 00000 n +0000166529 00000 n +0000166653 00000 n +0000166764 00000 n +0000166921 00000 n +0000167020 00000 n +0000167121 00000 n +0000167228 00000 n +0000167387 00000 n +0000167526 00000 n +0000167637 00000 n +0000167768 00000 n +0000167881 00000 n +0000168010 00000 n +0000168100 00000 n +0000168265 00000 n +0000168364 00000 n +0000168473 00000 n +0000168587 00000 n +0000168696 00000 n +0000168803 00000 n +0000168913 00000 n +0000169026 00000 n +0000169138 00000 n +0000169244 00000 n +0000169376 00000 n +0000169533 00000 n +0000169668 00000 n +0000169764 00000 n +0000169860 00000 n +0000170016 00000 n +0000170110 00000 n +0000170224 00000 n +0000170323 00000 n +0000170490 00000 n +0000170590 00000 n +0000170698 00000 n +0000170804 00000 n +0000170925 00000 n +0000171052 00000 n +0000171169 00000 n +0000171292 00000 n +0000171423 00000 n +0000171540 00000 n +0000171652 00000 n +0000171770 00000 n +0000171876 00000 n +0000172044 00000 n +0000172154 00000 n +0000172274 00000 n +0000172399 00000 n +0000172514 00000 n +0000172617 00000 n +0000172779 00000 n +0000172881 00000 n +0000172979 00000 n +0000173141 00000 n +0000173244 00000 n +0000173352 00000 n +0000173534 00000 n +0000173634 00000 n +0000173744 00000 n +0000173841 00000 n +0000173977 00000 n +0000174081 00000 n +0000174185 00000 n +0000174352 00000 n +0000174448 00000 n +0000174588 00000 n +0000174706 00000 n +0000174857 00000 n +0000174980 00000 n +0000175143 00000 n +0000175231 00000 n +0000175397 00000 n +0000175510 00000 n +0000175631 00000 n +0000175764 00000 n +0000175907 00000 n +0000176008 00000 n +0000176124 00000 n +0000176225 00000 n +0000176373 00000 n +0000176489 00000 n +0000176586 00000 n +0000176704 00000 n +0000176799 00000 n +0000176975 00000 n +0000177075 00000 n +0000177193 00000 n +0000177300 00000 n +0000177451 00000 n +0000177544 00000 n +0000177648 00000 n trailer -<<7b9583ab0e3792f751adca5026f42dd3>]>> +<<911a4337bc5829cf93b7c365500d45af>]>> startxref -177658 +178148 %%EOF diff --git a/docs/Samba-HOWTO-Collection.pdf b/docs/Samba-HOWTO-Collection.pdf index fb5e53a5152..a0ea04b7915 100644 --- a/docs/Samba-HOWTO-Collection.pdf +++ b/docs/Samba-HOWTO-Collection.pdf @@ -1,68 +1,68 @@ %PDF-1.3 %âãÏÓ -1 0 obj<>endobj +1 0 obj<>endobj 2 0 obj<>endobj 3 0 obj<>endobj 4 0 obj<>endobj 5 0 obj<>endobj -6 0 obj<>endobj -7 0 obj<>endobj -8 0 obj<>endobj -9 0 obj<>endobj -10 0 obj<>endobj -11 0 obj<>endobj -12 0 obj<>endobj -13 0 obj<>endobj -14 0 obj<>stream +6 0 obj<>endobj +7 0 obj<>endobj +8 0 obj<>endobj +9 0 obj<>endobj +10 0 obj<>endobj +11 0 obj<>endobj +12 0 obj<>endobj +13 0 obj<>endobj +14 0 obj<>endobj +15 0 obj<>stream xUQ+–1¼ßÊ‘kGŽl;2²®À"c#‘‘X$G`IwèÙ׺(¾qOÑ%ùsÛN Šo$•¦š™àQÜ4FÛ¾Qz'`Ô/‹ËÞ~Läòì,û¯vuÓGo¡²— u›“jc™\ß±ÚXI3+cðÑEd‚Jk{Ãó÷çQÐ[ëòñ^X„àê¾øRƒo8ÐzÍ‘uá(dö*“GÉs(y›î üêõxÞ‹ÇYgäÚ(ï‘{E“ó䢡 {_‰3–û^ô¨žSd´î§é8ãæ„×<##~æ­•$:sð»›0Bˆ3ïå9÷dendstream endobj -15 0 obj<]/Interpolate true/Filter/FlateDecode/Width 24/Height 24/BitsPerComponent 8/Length 223 >>stream +16 0 obj<]/Interpolate true/Filter/FlateDecode/Width 24/Height 24/BitsPerComponent 8/Length 223 >>stream xUQ‡‚0 5âÀâ8@‹´öÿÍÚ4¥¦wo%w•R+©8¸çóCŒ+N"]ׂ*³ÏW ,D¶1Ž|áŠØi"%õ~öÄ0íÈ)ûÜ1ªlN!3€Ž1ˆìTÆ4HÔ†ÞË<ê <~õZ>ynõ¯.ŒHãê«>LÜê…K·ùbØŽ¼ÑŸ'4¦øËûŽžY}Íü-?f&tïA¿Â{2é“»7L}On4žïàKùIÿˆ" Ÿä õP†B‡hïG]áz˜$>—ÐÔ³å.mcoendstream endobj -16 0 obj<>endobj -17 0 obj<>endobj -18 0 obj<>endobj -19 0 obj<>endobj -20 0 obj<>endobj -21 0 obj<>endobj -22 0 obj<>endobj -23 0 obj<>endobj -24 0 obj<>endobj -25 0 obj<>endobj -26 0 obj<>endobj -27 0 obj<>endobj -28 0 obj<>endobj -29 0 obj<>endobj -30 0 obj<>endobj -31 0 obj<>endobj -32 0 obj<>endobj -33 0 obj<>endobj -34 0 obj<>endobj -35 0 obj<>endobj -36 0 obj<>endobj -37 0 obj<>endobj -38 0 obj<>endobj -39 0 obj<>endobj -40 0 obj<>endobj -41 0 obj<>endobj -42 0 obj<>endobj -43 0 obj<>endobj -44 0 obj<>endobj -45 0 obj<>endobj -46 0 obj<>endobj -47 0 obj<>endobj -48 0 obj<>endobj -49 0 obj<>endobj -50 0 obj<>endobj -51 0 obj<>endobj -52 0 obj<>endobj -53 0 obj<>endobj -54 0 obj<>endobj -55 0 obj<>endobj -56 0 obj<>endobj -57 0 obj<>endobj -58 0 obj[16 0 R -17 0 R +17 0 obj<>endobj +18 0 obj<>endobj +19 0 obj<>endobj +20 0 obj<>endobj +21 0 obj<>endobj +22 0 obj<>endobj +23 0 obj<>endobj +24 0 obj<>endobj +25 0 obj<>endobj +26 0 obj<>endobj +27 0 obj<>endobj +28 0 obj<>endobj +29 0 obj<>endobj +30 0 obj<>endobj +31 0 obj<>endobj +32 0 obj<>endobj +33 0 obj<>endobj +34 0 obj<>endobj +35 0 obj<>endobj +36 0 obj<>endobj +37 0 obj<>endobj +38 0 obj<>endobj +39 0 obj<>endobj +40 0 obj<>endobj +41 0 obj<>endobj +42 0 obj<>endobj +43 0 obj<>endobj +44 0 obj<>endobj +45 0 obj<>endobj +46 0 obj<>endobj +47 0 obj<>endobj +48 0 obj<>endobj +49 0 obj<>endobj +50 0 obj<>endobj +51 0 obj<>endobj +52 0 obj<>endobj +53 0 obj<>endobj +54 0 obj<>endobj +55 0 obj<>endobj +56 0 obj<>endobj +57 0 obj<>endobj +58 0 obj<>endobj +59 0 obj[17 0 R 18 0 R 19 0 R 20 0 R @@ -102,52 +102,51 @@ endobj 54 0 R 55 0 R 56 0 R -57 0 R]endobj -59 0 obj<>endobj -60 0 obj<>endobj -61 0 obj<>endobj -62 0 obj<>endobj -63 0 obj<>endobj -64 0 obj<>endobj -65 0 obj<>endobj -66 0 obj<>endobj -67 0 obj<>endobj -68 0 obj<>endobj -69 0 obj<>endobj -70 0 obj<>endobj -71 0 obj<>endobj -72 0 obj<>endobj -73 0 obj<>endobj -74 0 obj<>endobj -75 0 obj<>endobj -76 0 obj<>endobj -77 0 obj<>endobj -78 0 obj<>endobj -79 0 obj<>endobj -80 0 obj<>endobj -81 0 obj<>endobj -82 0 obj<>endobj -83 0 obj<>endobj -84 0 obj<>endobj -85 0 obj<>endobj -86 0 obj<>endobj -87 0 obj<>endobj -88 0 obj<>endobj -89 0 obj<>endobj -90 0 obj<>endobj -91 0 obj<>endobj -92 0 obj<>endobj -93 0 obj<>endobj -94 0 obj<>endobj -95 0 obj<>endobj -96 0 obj<>endobj -97 0 obj<>endobj -98 0 obj<>endobj -99 0 obj<>endobj -100 0 obj<>endobj -101 0 obj<>endobj -102 0 obj[59 0 R -60 0 R +57 0 R +58 0 R]endobj +60 0 obj<>endobj +61 0 obj<>endobj +62 0 obj<>endobj +63 0 obj<>endobj +64 0 obj<>endobj +65 0 obj<>endobj +66 0 obj<>endobj +67 0 obj<>endobj +68 0 obj<>endobj +69 0 obj<>endobj +70 0 obj<>endobj +71 0 obj<>endobj +72 0 obj<>endobj +73 0 obj<>endobj +74 0 obj<>endobj +75 0 obj<>endobj +76 0 obj<>endobj +77 0 obj<>endobj +78 0 obj<>endobj +79 0 obj<>endobj +80 0 obj<>endobj +81 0 obj<>endobj +82 0 obj<>endobj +83 0 obj<>endobj +84 0 obj<>endobj +85 0 obj<>endobj +86 0 obj<>endobj +87 0 obj<>endobj +88 0 obj<>endobj +89 0 obj<>endobj +90 0 obj<>endobj +91 0 obj<>endobj +92 0 obj<>endobj +93 0 obj<>endobj +94 0 obj<>endobj +95 0 obj<>endobj +96 0 obj<>endobj +97 0 obj<>endobj +98 0 obj<>endobj +99 0 obj<>endobj +100 0 obj<>endobj +101 0 obj<>endobj +102 0 obj[60 0 R 61 0 R 62 0 R 63 0 R @@ -189,49 +188,48 @@ endobj 99 0 R 100 0 R 101 0 R]endobj -103 0 obj<>endobj -104 0 obj<>endobj -105 0 obj<>endobj -106 0 obj<>endobj -107 0 obj<>endobj -108 0 obj<>endobj -109 0 obj<>endobj -110 0 obj<>endobj -111 0 obj<>endobj -112 0 obj<>endobj -113 0 obj<>endobj -114 0 obj<>endobj -115 0 obj<>endobj -116 0 obj<>endobj -117 0 obj<>endobj -118 0 obj<>endobj -119 0 obj<>endobj -120 0 obj<>endobj -121 0 obj<>endobj -122 0 obj<>endobj -123 0 obj<>endobj -124 0 obj<>endobj -125 0 obj<>endobj -126 0 obj<>endobj -127 0 obj<>endobj -128 0 obj<>endobj -129 0 obj<>endobj -130 0 obj<>endobj -131 0 obj<>endobj -132 0 obj<>endobj -133 0 obj<>endobj -134 0 obj<>endobj -135 0 obj<>endobj -136 0 obj<>endobj -137 0 obj<>endobj -138 0 obj<>endobj -139 0 obj<>endobj -140 0 obj<>endobj -141 0 obj<>endobj -142 0 obj<>endobj -143 0 obj<>endobj -144 0 obj<>endobj -145 0 obj[103 0 R +103 0 obj<>endobj +104 0 obj<>endobj +105 0 obj<>endobj +106 0 obj<>endobj +107 0 obj<>endobj +108 0 obj<>endobj +109 0 obj<>endobj +110 0 obj<>endobj +111 0 obj<>endobj +112 0 obj<>endobj +113 0 obj<>endobj +114 0 obj<>endobj +115 0 obj<>endobj +116 0 obj<>endobj +117 0 obj<>endobj +118 0 obj<>endobj +119 0 obj<>endobj +120 0 obj<>endobj +121 0 obj<>endobj +122 0 obj<>endobj +123 0 obj<>endobj +124 0 obj<>endobj +125 0 obj<>endobj +126 0 obj<>endobj +127 0 obj<>endobj +128 0 obj<>endobj +129 0 obj<>endobj +130 0 obj<>endobj +131 0 obj<>endobj +132 0 obj<>endobj +133 0 obj<>endobj +134 0 obj<>endobj +135 0 obj<>endobj +136 0 obj<>endobj +137 0 obj<>endobj +138 0 obj<>endobj +139 0 obj<>endobj +140 0 obj<>endobj +141 0 obj<>endobj +142 0 obj<>endobj +143 0 obj<>endobj +144 0 obj[103 0 R 104 0 R 105 0 R 106 0 R @@ -271,53 +269,54 @@ endobj 140 0 R 141 0 R 142 0 R -143 0 R -144 0 R]endobj -146 0 obj<>endobj -147 0 obj<>endobj -148 0 obj<>endobj -149 0 obj<>endobj -150 0 obj<>endobj -151 0 obj<>endobj -152 0 obj<>endobj -153 0 obj<>endobj -154 0 obj<>endobj -155 0 obj<>endobj -156 0 obj<>endobj -157 0 obj<>endobj -158 0 obj<>endobj -159 0 obj<>endobj -160 0 obj<>endobj -161 0 obj<>endobj -162 0 obj<>endobj -163 0 obj<>endobj -164 0 obj<>endobj -165 0 obj<>endobj -166 0 obj<>endobj -167 0 obj<>endobj -168 0 obj<>endobj -169 0 obj<>endobj -170 0 obj<>endobj -171 0 obj<>endobj -172 0 obj<>endobj -173 0 obj<>endobj -174 0 obj<>endobj -175 0 obj<>endobj -176 0 obj<>endobj -177 0 obj<>endobj -178 0 obj<>endobj -179 0 obj<>endobj -180 0 obj<>endobj -181 0 obj<>endobj -182 0 obj<>endobj -183 0 obj<>endobj -184 0 obj<>endobj -185 0 obj<>endobj -186 0 obj<>endobj -187 0 obj<>endobj -188 0 obj<>endobj -189 0 obj<>endobj -190 0 obj[146 0 R +143 0 R]endobj +145 0 obj<>endobj +146 0 obj<>endobj +147 0 obj<>endobj +148 0 obj<>endobj +149 0 obj<>endobj +150 0 obj<>endobj +151 0 obj<>endobj +152 0 obj<>endobj +153 0 obj<>endobj +154 0 obj<>endobj +155 0 obj<>endobj +156 0 obj<>endobj +157 0 obj<>endobj +158 0 obj<>endobj +159 0 obj<>endobj +160 0 obj<>endobj +161 0 obj<>endobj +162 0 obj<>endobj +163 0 obj<>endobj +164 0 obj<>endobj +165 0 obj<>endobj +166 0 obj<>endobj +167 0 obj<>endobj +168 0 obj<>endobj +169 0 obj<>endobj +170 0 obj<>endobj +171 0 obj<>endobj +172 0 obj<>endobj +173 0 obj<>endobj +174 0 obj<>endobj +175 0 obj<>endobj +176 0 obj<>endobj +177 0 obj<>endobj +178 0 obj<>endobj +179 0 obj<>endobj +180 0 obj<>endobj +181 0 obj<>endobj +182 0 obj<>endobj +183 0 obj<>endobj +184 0 obj<>endobj +185 0 obj<>endobj +186 0 obj<>endobj +187 0 obj<>endobj +188 0 obj<>endobj +189 0 obj<>endobj +190 0 obj[145 0 R +146 0 R 147 0 R 148 0 R 149 0 R @@ -361,49 +360,49 @@ endobj 187 0 R 188 0 R 189 0 R]endobj -191 0 obj<>endobj -192 0 obj<>endobj -193 0 obj<>endobj -194 0 obj<>endobj -195 0 obj<>endobj -196 0 obj<>endobj -197 0 obj<>endobj -198 0 obj<>endobj -199 0 obj<>endobj -200 0 obj<>endobj -201 0 obj<>endobj -202 0 obj<>endobj -203 0 obj<>endobj -204 0 obj<>endobj -205 0 obj<>endobj -206 0 obj<>endobj -207 0 obj<>endobj -208 0 obj<>endobj -209 0 obj<>endobj -210 0 obj<>endobj -211 0 obj<>endobj -212 0 obj<>endobj -213 0 obj<>endobj -214 0 obj<>endobj -215 0 obj<>endobj -216 0 obj<>endobj -217 0 obj<>endobj -218 0 obj<>endobj -219 0 obj<>endobj -220 0 obj<>endobj -221 0 obj<>endobj -222 0 obj<>endobj -223 0 obj<>endobj -224 0 obj<>endobj -225 0 obj<>endobj -226 0 obj<>endobj -227 0 obj<>endobj -228 0 obj<>endobj -229 0 obj<>endobj -230 0 obj<>endobj -231 0 obj<>endobj -232 0 obj<>endobj -233 0 obj<>endobj +191 0 obj<>endobj +192 0 obj<>endobj +193 0 obj<>endobj +194 0 obj<>endobj +195 0 obj<>endobj +196 0 obj<>endobj +197 0 obj<>endobj +198 0 obj<>endobj +199 0 obj<>endobj +200 0 obj<>endobj +201 0 obj<>endobj +202 0 obj<>endobj +203 0 obj<>endobj +204 0 obj<>endobj +205 0 obj<>endobj +206 0 obj<>endobj +207 0 obj<>endobj +208 0 obj<>endobj +209 0 obj<>endobj +210 0 obj<>endobj +211 0 obj<>endobj +212 0 obj<>endobj +213 0 obj<>endobj +214 0 obj<>endobj +215 0 obj<>endobj +216 0 obj<>endobj +217 0 obj<>endobj +218 0 obj<>endobj +219 0 obj<>endobj +220 0 obj<>endobj +221 0 obj<>endobj +222 0 obj<>endobj +223 0 obj<>endobj +224 0 obj<>endobj +225 0 obj<>endobj +226 0 obj<>endobj +227 0 obj<>endobj +228 0 obj<>endobj +229 0 obj<>endobj +230 0 obj<>endobj +231 0 obj<>endobj +232 0 obj<>endobj +233 0 obj<>endobj 234 0 obj[191 0 R 192 0 R 193 0 R @@ -447,49 +446,49 @@ endobj 231 0 R 232 0 R 233 0 R]endobj -235 0 obj<>endobj -236 0 obj<>endobj -237 0 obj<>endobj -238 0 obj<>endobj -239 0 obj<>endobj -240 0 obj<>endobj -241 0 obj<>endobj -242 0 obj<>endobj -243 0 obj<>endobj -244 0 obj<>endobj -245 0 obj<>endobj -246 0 obj<>endobj -247 0 obj<>endobj -248 0 obj<>endobj -249 0 obj<>endobj -250 0 obj<>endobj -251 0 obj<>endobj -252 0 obj<>endobj -253 0 obj<>endobj -254 0 obj<>endobj -255 0 obj<>endobj -256 0 obj<>endobj -257 0 obj<>endobj -258 0 obj<>endobj -259 0 obj<>endobj -260 0 obj<>endobj -261 0 obj<>endobj -262 0 obj<>endobj -263 0 obj<>endobj -264 0 obj<>endobj -265 0 obj<>endobj -266 0 obj<>endobj -267 0 obj<>endobj -268 0 obj<>endobj -269 0 obj<>endobj -270 0 obj<>endobj -271 0 obj<>endobj -272 0 obj<>endobj -273 0 obj<>endobj -274 0 obj<>endobj -275 0 obj<>endobj -276 0 obj<>endobj -277 0 obj<>endobj +235 0 obj<>endobj +236 0 obj<>endobj +237 0 obj<>endobj +238 0 obj<>endobj +239 0 obj<>endobj +240 0 obj<>endobj +241 0 obj<>endobj +242 0 obj<>endobj +243 0 obj<>endobj +244 0 obj<>endobj +245 0 obj<>endobj +246 0 obj<>endobj +247 0 obj<>endobj +248 0 obj<>endobj +249 0 obj<>endobj +250 0 obj<>endobj +251 0 obj<>endobj +252 0 obj<>endobj +253 0 obj<>endobj +254 0 obj<>endobj +255 0 obj<>endobj +256 0 obj<>endobj +257 0 obj<>endobj +258 0 obj<>endobj +259 0 obj<>endobj +260 0 obj<>endobj +261 0 obj<>endobj +262 0 obj<>endobj +263 0 obj<>endobj +264 0 obj<>endobj +265 0 obj<>endobj +266 0 obj<>endobj +267 0 obj<>endobj +268 0 obj<>endobj +269 0 obj<>endobj +270 0 obj<>endobj +271 0 obj<>endobj +272 0 obj<>endobj +273 0 obj<>endobj +274 0 obj<>endobj +275 0 obj<>endobj +276 0 obj<>endobj +277 0 obj<>endobj 278 0 obj[235 0 R 236 0 R 237 0 R @@ -533,25 +532,30 @@ endobj 275 0 R 276 0 R 277 0 R]endobj -279 0 obj<>endobj -280 0 obj<>endobj -281 0 obj<>endobj -282 0 obj<>endobj -283 0 obj<>endobj -284 0 obj<>endobj -285 0 obj<>endobj -286 0 obj<>endobj -287 0 obj<>endobj -288 0 obj<>endobj -289 0 obj<>endobj -290 0 obj<>endobj -291 0 obj<>endobj -292 0 obj<>endobj -293 0 obj<>endobj -294 0 obj<>endobj -295 0 obj<>endobj -296 0 obj<>endobj -297 0 obj[279 0 R +279 0 obj<>endobj +280 0 obj<>endobj +281 0 obj<>endobj +282 0 obj<>endobj +283 0 obj<>endobj +284 0 obj<>endobj +285 0 obj<>endobj +286 0 obj<>endobj +287 0 obj<>endobj +288 0 obj<>endobj +289 0 obj<>endobj +290 0 obj<>endobj +291 0 obj<>endobj +292 0 obj<>endobj +293 0 obj<>endobj +294 0 obj<>endobj +295 0 obj<>endobj +296 0 obj<>endobj +297 0 obj<>endobj +298 0 obj<>endobj +299 0 obj<>endobj +300 0 obj<>endobj +301 0 obj<>endobj +302 0 obj[279 0 R 280 0 R 281 0 R 282 0 R @@ -568,57 +572,57 @@ endobj 293 0 R 294 0 R 295 0 R -296 0 R]endobj -298 0 obj<>endobj -299 0 obj<>endobj -300 0 obj<>endobj -301 0 obj<>endobj -302 0 obj<>endobj -303 0 obj<>endobj -304 0 obj<>endobj -305 0 obj<>endobj -306 0 obj<>endobj -307 0 obj<>endobj -308 0 obj<>endobj -309 0 obj<>endobj -310 0 obj<>endobj -311 0 obj<>endobj -312 0 obj<>endobj -313 0 obj<>endobj -314 0 obj<>endobj -315 0 obj<>endobj -316 0 obj<>endobj -317 0 obj<>endobj -318 0 obj<>endobj -319 0 obj<>endobj -320 0 obj<>endobj -321 0 obj<>endobj -322 0 obj<>endobj -323 0 obj<>endobj -324 0 obj<>endobj -325 0 obj<>endobj -326 0 obj<>endobj -327 0 obj<>endobj -328 0 obj<>endobj -329 0 obj<>endobj -330 0 obj<>endobj -331 0 obj<>endobj -332 0 obj<>endobj -333 0 obj<>endobj -334 0 obj<>endobj -335 0 obj<>endobj -336 0 obj<>endobj -337 0 obj<>endobj -338 0 obj<>endobj -339 0 obj<>endobj -340 0 obj[299 0 R -301 0 R -303 0 R -305 0 R +296 0 R +297 0 R +298 0 R +299 0 R +300 0 R +301 0 R]endobj +303 0 obj<>endobj +304 0 obj<>endobj +305 0 obj<>endobj +306 0 obj<>endobj +307 0 obj<>endobj +308 0 obj<>endobj +309 0 obj<>endobj +310 0 obj<>endobj +311 0 obj<>endobj +312 0 obj<>endobj +313 0 obj<>endobj +314 0 obj<>endobj +315 0 obj<>endobj +316 0 obj<>endobj +317 0 obj<>endobj +318 0 obj<>endobj +319 0 obj<>endobj +320 0 obj<>endobj +321 0 obj<>endobj +322 0 obj<>endobj +323 0 obj<>endobj +324 0 obj<>endobj +325 0 obj<>endobj +326 0 obj<>endobj +327 0 obj<>endobj +328 0 obj<>endobj +329 0 obj<>endobj +330 0 obj<>endobj +331 0 obj<>endobj +332 0 obj<>endobj +333 0 obj<>endobj +334 0 obj<>endobj +335 0 obj<>endobj +336 0 obj<>endobj +337 0 obj<>endobj +338 0 obj<>endobj +339 0 obj<>endobj +340 0 obj<>endobj +341 0 obj<>endobj +342 0 obj<>endobj +343 0 obj<>endobj +344 0 obj<>endobj +345 0 obj[304 0 R 306 0 R -307 0 R 308 0 R -309 0 R 310 0 R 311 0 R 312 0 R @@ -648,64 +652,64 @@ endobj 336 0 R 337 0 R 338 0 R -339 0 R]endobj -341 0 obj<>endobj -342 0 obj<>endobj -343 0 obj<>endobj -344 0 obj<>endobj -345 0 obj<>endobj -346 0 obj<>endobj -347 0 obj<>endobj -348 0 obj<>endobj -349 0 obj<>endobj -350 0 obj<>endobj -351 0 obj<>endobj -352 0 obj<>endobj -353 0 obj<>endobj -354 0 obj<>endobj -355 0 obj<>endobj -356 0 obj<>endobj -357 0 obj<>endobj -358 0 obj<>endobj -359 0 obj<>endobj -360 0 obj<>endobj -361 0 obj<>endobj -362 0 obj<>endobj -363 0 obj<>endobj -364 0 obj<>endobj -365 0 obj<>endobj -366 0 obj<>endobj -367 0 obj<>endobj -368 0 obj<>endobj -369 0 obj<>endobj -370 0 obj<>endobj -371 0 obj<>endobj -372 0 obj<>endobj -373 0 obj<>endobj -374 0 obj<>endobj -375 0 obj<>endobj -376 0 obj<>endobj -377 0 obj<>endobj -378 0 obj<>endobj -379 0 obj<>endobj -380 0 obj<>endobj -381 0 obj<>endobj -382 0 obj<>endobj -383 0 obj<>endobj -384 0 obj<>endobj -385 0 obj<>endobj -386 0 obj<>endobj -387 0 obj<>endobj -388 0 obj<>endobj -389 0 obj<>endobj -390 0 obj<>endobj -391 0 obj<>endobj -392 0 obj[341 0 R +339 0 R +340 0 R +341 0 R 342 0 R 343 0 R -344 0 R -345 0 R -346 0 R +344 0 R]endobj +346 0 obj<>endobj +347 0 obj<>endobj +348 0 obj<>endobj +349 0 obj<>endobj +350 0 obj<>endobj +351 0 obj<>endobj +352 0 obj<>endobj +353 0 obj<>endobj +354 0 obj<>endobj +355 0 obj<>endobj +356 0 obj<>endobj +357 0 obj<>endobj +358 0 obj<>endobj +359 0 obj<>endobj +360 0 obj<>endobj +361 0 obj<>endobj +362 0 obj<>endobj +363 0 obj<>endobj +364 0 obj<>endobj +365 0 obj<>endobj +366 0 obj<>endobj +367 0 obj<>endobj +368 0 obj<>endobj +369 0 obj<>endobj +370 0 obj<>endobj +371 0 obj<>endobj +372 0 obj<>endobj +373 0 obj<>endobj +374 0 obj<>endobj +375 0 obj<>endobj +376 0 obj<>endobj +377 0 obj<>endobj +378 0 obj<>endobj +379 0 obj<>endobj +380 0 obj<>endobj +381 0 obj<>endobj +382 0 obj<>endobj +383 0 obj<>endobj +384 0 obj<>endobj +385 0 obj<>endobj +386 0 obj<>endobj +387 0 obj<>endobj +388 0 obj<>endobj +389 0 obj<>endobj +390 0 obj<>endobj +391 0 obj<>endobj +392 0 obj<>endobj +393 0 obj<>endobj +394 0 obj<>endobj +395 0 obj<>endobj +396 0 obj<>endobj +397 0 obj[346 0 R 347 0 R 348 0 R 349 0 R @@ -750,64 +754,64 @@ endobj 388 0 R 389 0 R 390 0 R -391 0 R]endobj -393 0 obj<>endobj -394 0 obj<>endobj -395 0 obj<>endobj -396 0 obj<>endobj -397 0 obj<>endobj -398 0 obj<>endobj -399 0 obj<>endobj -400 0 obj<>endobj -401 0 obj<>endobj -402 0 obj<>endobj -403 0 obj<>endobj -404 0 obj<>endobj -405 0 obj<>endobj -406 0 obj<>endobj -407 0 obj<>endobj -408 0 obj<>endobj -409 0 obj<>endobj -410 0 obj<>endobj -411 0 obj<>endobj -412 0 obj<>endobj -413 0 obj<>endobj -414 0 obj<>endobj -415 0 obj<>endobj -416 0 obj<>endobj -417 0 obj<>endobj -418 0 obj<>endobj -419 0 obj<>endobj -420 0 obj<>endobj -421 0 obj<>endobj -422 0 obj<>endobj -423 0 obj<>endobj -424 0 obj<>endobj -425 0 obj<>endobj -426 0 obj<>endobj -427 0 obj<>endobj -428 0 obj<>endobj -429 0 obj<>endobj -430 0 obj<>endobj -431 0 obj<>endobj -432 0 obj<>endobj -433 0 obj<>endobj -434 0 obj<>endobj -435 0 obj<>endobj -436 0 obj<>endobj -437 0 obj<>endobj -438 0 obj<>endobj -439 0 obj<>endobj -440 0 obj<>endobj -441 0 obj<>endobj -442 0 obj<>endobj -443 0 obj<>endobj -444 0 obj[393 0 R +391 0 R +392 0 R +393 0 R 394 0 R 395 0 R -396 0 R -397 0 R -398 0 R +396 0 R]endobj +398 0 obj<>endobj +399 0 obj<>endobj +400 0 obj<>endobj +401 0 obj<>endobj +402 0 obj<>endobj +403 0 obj<>endobj +404 0 obj<>endobj +405 0 obj<>endobj +406 0 obj<>endobj +407 0 obj<>endobj +408 0 obj<>endobj +409 0 obj<>endobj +410 0 obj<>endobj +411 0 obj<>endobj +412 0 obj<>endobj +413 0 obj<>endobj +414 0 obj<>endobj +415 0 obj<>endobj +416 0 obj<>endobj +417 0 obj<>endobj +418 0 obj<>endobj +419 0 obj<>endobj +420 0 obj<>endobj +421 0 obj<>endobj +422 0 obj<>endobj +423 0 obj<>endobj +424 0 obj<>endobj +425 0 obj<>endobj +426 0 obj<>endobj +427 0 obj<>endobj +428 0 obj<>endobj +429 0 obj<>endobj +430 0 obj<>endobj +431 0 obj<>endobj +432 0 obj<>endobj +433 0 obj<>endobj +434 0 obj<>endobj +435 0 obj<>endobj +436 0 obj<>endobj +437 0 obj<>endobj +438 0 obj<>endobj +439 0 obj<>endobj +440 0 obj<>endobj +441 0 obj<>endobj +442 0 obj<>endobj +443 0 obj<>endobj +444 0 obj<>endobj +445 0 obj<>endobj +446 0 obj<>endobj +447 0 obj<>endobj +448 0 obj<>endobj +449 0 obj[398 0 R 399 0 R 400 0 R 401 0 R @@ -852,31 +856,37 @@ endobj 440 0 R 441 0 R 442 0 R -443 0 R]endobj -445 0 obj<>endobj -446 0 obj<>endobj -447 0 obj<>endobj -448 0 obj<>endobj -449 0 obj<>endobj -450 0 obj<>endobj -451 0 obj<>endobj -452 0 obj<>endobj -453 0 obj<>endobj -454 0 obj<>endobj -455 0 obj<>endobj -456 0 obj<>endobj -457 0 obj<>endobj -458 0 obj<>endobj -459 0 obj<>endobj -460 0 obj<>endobj -461 0 obj<>endobj -462 0 obj<>endobj -463 0 obj[445 0 R +443 0 R +444 0 R +445 0 R 446 0 R 447 0 R -448 0 R -449 0 R -450 0 R +448 0 R]endobj +450 0 obj<>endobj +451 0 obj<>endobj +452 0 obj<>endobj +453 0 obj<>endobj +454 0 obj<>endobj +455 0 obj<>endobj +456 0 obj<>endobj +457 0 obj<>endobj +458 0 obj<>endobj +459 0 obj<>endobj +460 0 obj<>endobj +461 0 obj<>endobj +462 0 obj<>endobj +463 0 obj<>endobj +464 0 obj<>endobj +465 0 obj<>endobj +466 0 obj<>endobj +467 0 obj<>endobj +468 0 obj<>endobj +469 0 obj<>endobj +470 0 obj<>endobj +471 0 obj<>endobj +472 0 obj<>endobj +473 0 obj<>endobj +474 0 obj[450 0 R 451 0 R 452 0 R 453 0 R @@ -888,52 +898,9 @@ endobj 459 0 R 460 0 R 461 0 R -462 0 R]endobj -464 0 obj<>endobj -465 0 obj<>endobj -466 0 obj<>endobj -467 0 obj<>endobj -468 0 obj<>endobj -469 0 obj<>endobj -470 0 obj<>endobj -471 0 obj<>endobj -472 0 obj<>endobj -473 0 obj<>endobj -474 0 obj<>endobj -475 0 obj<>endobj -476 0 obj<>endobj -477 0 obj<>endobj -478 0 obj<>endobj -479 0 obj<>endobj -480 0 obj<>endobj -481 0 obj<>endobj -482 0 obj<>endobj -483 0 obj<>endobj -484 0 obj<>endobj -485 0 obj<>endobj -486 0 obj<>endobj -487 0 obj<>endobj -488 0 obj<>endobj -489 0 obj<>endobj -490 0 obj<>endobj -491 0 obj<>endobj -492 0 obj<>endobj -493 0 obj<>endobj -494 0 obj<>endobj -495 0 obj<>endobj -496 0 obj<>endobj -497 0 obj<>endobj -498 0 obj<>endobj -499 0 obj<>endobj -500 0 obj<>endobj -501 0 obj<>endobj -502 0 obj<>endobj -503 0 obj<>endobj -504 0 obj<>endobj -505 0 obj<>endobj -506 0 obj<>endobj -507 0 obj<>endobj -508 0 obj[464 0 R +462 0 R +463 0 R +464 0 R 465 0 R 466 0 R 467 0 R @@ -942,9 +909,52 @@ endobj 470 0 R 471 0 R 472 0 R -473 0 R -474 0 R -475 0 R +473 0 R]endobj +475 0 obj<>endobj +476 0 obj<>endobj +477 0 obj<>endobj +478 0 obj<>endobj +479 0 obj<>endobj +480 0 obj<>endobj +481 0 obj<>endobj +482 0 obj<>endobj +483 0 obj<>endobj +484 0 obj<>endobj +485 0 obj<>endobj +486 0 obj<>endobj +487 0 obj<>endobj +488 0 obj<>endobj +489 0 obj<>endobj +490 0 obj<>endobj +491 0 obj<>endobj +492 0 obj<>endobj +493 0 obj<>endobj +494 0 obj<>endobj +495 0 obj<>endobj +496 0 obj<>endobj +497 0 obj<>endobj +498 0 obj<>endobj +499 0 obj<>endobj +500 0 obj<>endobj +501 0 obj<>endobj +502 0 obj<>endobj +503 0 obj<>endobj +504 0 obj<>endobj +505 0 obj<>endobj +506 0 obj<>endobj +507 0 obj<>endobj +508 0 obj<>endobj +509 0 obj<>endobj +510 0 obj<>endobj +511 0 obj<>endobj +512 0 obj<>endobj +513 0 obj<>endobj +514 0 obj<>endobj +515 0 obj<>endobj +516 0 obj<>endobj +517 0 obj<>endobj +518 0 obj<>endobj +519 0 obj[475 0 R 476 0 R 477 0 R 478 0 R @@ -976,17 +986,9 @@ endobj 504 0 R 505 0 R 506 0 R -507 0 R]endobj -509 0 obj<>endobj -510 0 obj<>endobj -511 0 obj<>endobj -512 0 obj<>endobj -513 0 obj<>endobj -514 0 obj<>endobj -515 0 obj<>endobj -516 0 obj<>endobj -517 0 obj<>endobj -518 0 obj[509 0 R +507 0 R +508 0 R +509 0 R 510 0 R 511 0 R 512 0 R @@ -994,12 +996,12 @@ endobj 514 0 R 515 0 R 516 0 R -517 0 R]endobj -519 0 obj<>endobj -520 0 obj<>endobj +517 0 R +518 0 R]endobj +520 0 obj<>endobj 521 0 obj[520 0 R]endobj -522 0 obj<>endobj -523 0 obj<>endobj +522 0 obj<>endobj +523 0 obj<>endobj 524 0 obj[523 0 R]endobj 525 0 obj<>endobj 526 0 obj<>endobj @@ -1058,46 +1060,46 @@ endobj 566 0 obj<>endobj 567 0 obj<>endobj 568 0 obj[567 0 R]endobj -569 0 obj<>endobj -570 0 obj<>endobj -571 0 obj<>endobj -572 0 obj<>endobj -573 0 obj<>endobj -574 0 obj<>endobj -575 0 obj<>endobj -576 0 obj<>endobj -577 0 obj<>endobj -578 0 obj<>endobj -579 0 obj<>endobj -580 0 obj<>endobj -581 0 obj<>endobj -582 0 obj<>endobj -583 0 obj<>endobj -584 0 obj<>endobj -585 0 obj<>endobj -586 0 obj<>endobj -587 0 obj<>endobj -588 0 obj<>endobj -589 0 obj<>endobj -590 0 obj<>endobj -591 0 obj<>endobj -592 0 obj<>endobj -593 0 obj<>endobj -594 0 obj<>endobj -595 0 obj<>endobj -596 0 obj<>endobj -597 0 obj<>endobj -598 0 obj<>endobj -599 0 obj<>endobj -600 0 obj<>endobj -601 0 obj<>endobj -602 0 obj<>endobj -603 0 obj<>endobj -604 0 obj<>endobj -605 0 obj<>endobj -606 0 obj<>endobj -607 0 obj<>endobj -608 0 obj<>endobj +569 0 obj<>endobj +570 0 obj<>endobj +571 0 obj<>endobj +572 0 obj<>endobj +573 0 obj<>endobj +574 0 obj<>endobj +575 0 obj<>endobj +576 0 obj<>endobj +577 0 obj<>endobj +578 0 obj<>endobj +579 0 obj<>endobj +580 0 obj<>endobj +581 0 obj<>endobj +582 0 obj<>endobj +583 0 obj<>endobj +584 0 obj<>endobj +585 0 obj<>endobj +586 0 obj<>endobj +587 0 obj<>endobj +588 0 obj<>endobj +589 0 obj<>endobj +590 0 obj<>endobj +591 0 obj<>endobj +592 0 obj<>endobj +593 0 obj<>endobj +594 0 obj<>endobj +595 0 obj<>endobj +596 0 obj<>endobj +597 0 obj<>endobj +598 0 obj<>endobj +599 0 obj<>endobj +600 0 obj<>endobj +601 0 obj<>endobj +602 0 obj<>endobj +603 0 obj<>endobj +604 0 obj<>endobj +605 0 obj<>endobj +606 0 obj<>endobj +607 0 obj<>endobj +608 0 obj<>endobj 609 0 obj[569 0 R 570 0 R 571 0 R @@ -1226,9 +1228,9 @@ endobj 670 0 obj[667 0 R 669 0 R]endobj 671 0 obj<>endobj -672 0 obj<>endobj +672 0 obj<>endobj 673 0 obj<>endobj -674 0 obj<>endobj +674 0 obj<>endobj 675 0 obj[672 0 R 674 0 R]endobj 676 0 obj<>endobj @@ -1282,13 +1284,13 @@ endobj 713 0 obj<>endobj 714 0 obj<>endobj 715 0 obj<>endobj -716 0 obj<>endobj +716 0 obj<>endobj 717 0 obj<>endobj -718 0 obj<>endobj +718 0 obj<>endobj 719 0 obj<>endobj -720 0 obj<>endobj +720 0 obj<>endobj 721 0 obj<>endobj -722 0 obj<>endobj +722 0 obj<>endobj 723 0 obj[714 0 R 716 0 R 718 0 R @@ -1309,50 +1311,50 @@ endobj 734 0 obj<>endobj 735 0 obj[732 0 R 734 0 R]endobj -736 0 obj<>endobj -737 0 obj<>endobj -738 0 obj<>endobj -739 0 obj<>endobj -740 0 obj<>endobj -741 0 obj<>endobj -742 0 obj<>endobj -743 0 obj<>endobj -744 0 obj<>endobj -745 0 obj<>endobj -746 0 obj<>endobj -747 0 obj<>endobj -748 0 obj<>endobj -749 0 obj<>endobj -750 0 obj<>endobj -751 0 obj<>endobj -752 0 obj<>endobj -753 0 obj<>endobj -754 0 obj<>endobj -755 0 obj<>endobj -756 0 obj<>endobj -757 0 obj<>endobj -758 0 obj<>endobj -759 0 obj<>endobj -760 0 obj<>endobj -761 0 obj<>endobj -762 0 obj<>endobj -763 0 obj<>endobj -764 0 obj<>endobj -765 0 obj<>endobj -766 0 obj<>endobj -767 0 obj<>endobj -768 0 obj<>endobj -769 0 obj<>endobj -770 0 obj<>endobj -771 0 obj<>endobj -772 0 obj<>endobj -773 0 obj<>endobj -774 0 obj<>endobj -775 0 obj<>endobj -776 0 obj<>endobj -777 0 obj<>endobj -778 0 obj<>endobj -779 0 obj<>endobj +736 0 obj<>endobj +737 0 obj<>endobj +738 0 obj<>endobj +739 0 obj<>endobj +740 0 obj<>endobj +741 0 obj<>endobj +742 0 obj<>endobj +743 0 obj<>endobj +744 0 obj<>endobj +745 0 obj<>endobj +746 0 obj<>endobj +747 0 obj<>endobj +748 0 obj<>endobj +749 0 obj<>endobj +750 0 obj<>endobj +751 0 obj<>endobj +752 0 obj<>endobj +753 0 obj<>endobj +754 0 obj<>endobj +755 0 obj<>endobj +756 0 obj<>endobj +757 0 obj<>endobj +758 0 obj<>endobj +759 0 obj<>endobj +760 0 obj<>endobj +761 0 obj<>endobj +762 0 obj<>endobj +763 0 obj<>endobj +764 0 obj<>endobj +765 0 obj<>endobj +766 0 obj<>endobj +767 0 obj<>endobj +768 0 obj<>endobj +769 0 obj<>endobj +770 0 obj<>endobj +771 0 obj<>endobj +772 0 obj<>endobj +773 0 obj<>endobj +774 0 obj<>endobj +775 0 obj<>endobj +776 0 obj<>endobj +777 0 obj<>endobj +778 0 obj<>endobj +779 0 obj<>endobj 780 0 obj[736 0 R 737 0 R 738 0 R @@ -1397,57 +1399,57 @@ endobj 777 0 R 778 0 R 779 0 R]endobj -781 0 obj<>endobj -782 0 obj<>endobj -783 0 obj<>endobj -784 0 obj<>endobj -785 0 obj<>endobj -786 0 obj<>endobj -787 0 obj<>endobj -788 0 obj<>endobj -789 0 obj<>endobj -790 0 obj<>endobj -791 0 obj<>endobj -792 0 obj<>endobj -793 0 obj<>endobj -794 0 obj<>endobj -795 0 obj<>endobj -796 0 obj<>endobj -797 0 obj<>endobj -798 0 obj<>endobj -799 0 obj<>endobj -800 0 obj<>endobj -801 0 obj<>endobj -802 0 obj<>endobj -803 0 obj<>endobj -804 0 obj<>endobj -805 0 obj<>endobj -806 0 obj<>endobj -807 0 obj<>endobj -808 0 obj<>endobj -809 0 obj<>endobj -810 0 obj<>endobj -811 0 obj<>endobj -812 0 obj<>endobj -813 0 obj<>endobj -814 0 obj<>endobj -815 0 obj<>endobj -816 0 obj<>endobj -817 0 obj<>endobj -818 0 obj<>endobj -819 0 obj<>endobj -820 0 obj<>endobj -821 0 obj<>endobj -822 0 obj<>endobj -823 0 obj<>endobj -824 0 obj<>endobj -825 0 obj<>endobj -826 0 obj<>endobj -827 0 obj<>endobj -828 0 obj<>endobj -829 0 obj<>endobj -830 0 obj<>endobj -831 0 obj<>endobj +781 0 obj<>endobj +782 0 obj<>endobj +783 0 obj<>endobj +784 0 obj<>endobj +785 0 obj<>endobj +786 0 obj<>endobj +787 0 obj<>endobj +788 0 obj<>endobj +789 0 obj<>endobj +790 0 obj<>endobj +791 0 obj<>endobj +792 0 obj<>endobj +793 0 obj<>endobj +794 0 obj<>endobj +795 0 obj<>endobj +796 0 obj<>endobj +797 0 obj<>endobj +798 0 obj<>endobj +799 0 obj<>endobj +800 0 obj<>endobj +801 0 obj<>endobj +802 0 obj<>endobj +803 0 obj<>endobj +804 0 obj<>endobj +805 0 obj<>endobj +806 0 obj<>endobj +807 0 obj<>endobj +808 0 obj<>endobj +809 0 obj<>endobj +810 0 obj<>endobj +811 0 obj<>endobj +812 0 obj<>endobj +813 0 obj<>endobj +814 0 obj<>endobj +815 0 obj<>endobj +816 0 obj<>endobj +817 0 obj<>endobj +818 0 obj<>endobj +819 0 obj<>endobj +820 0 obj<>endobj +821 0 obj<>endobj +822 0 obj<>endobj +823 0 obj<>endobj +824 0 obj<>endobj +825 0 obj<>endobj +826 0 obj<>endobj +827 0 obj<>endobj +828 0 obj<>endobj +829 0 obj<>endobj +830 0 obj<>endobj +831 0 obj<>endobj 832 0 obj[781 0 R 782 0 R 783 0 R @@ -1499,36 +1501,38 @@ endobj 829 0 R 830 0 R 831 0 R]endobj -833 0 obj<>endobj -834 0 obj<>endobj -835 0 obj<>endobj -836 0 obj<>endobj -837 0 obj<>endobj -838 0 obj<>endobj -839 0 obj<>endobj -840 0 obj<>endobj -841 0 obj<>endobj -842 0 obj<>endobj -843 0 obj<>endobj -844 0 obj<>endobj -845 0 obj<>endobj -846 0 obj<>endobj -847 0 obj<>endobj -848 0 obj<>endobj -849 0 obj<>endobj -850 0 obj<>endobj -851 0 obj<>endobj -852 0 obj<>endobj -853 0 obj<>endobj -854 0 obj<>endobj -855 0 obj<>endobj -856 0 obj<>endobj -857 0 obj<>endobj -858 0 obj<>endobj -859 0 obj<>endobj -860 0 obj<>endobj -861 0 obj<>endobj -862 0 obj[833 0 R +833 0 obj<>endobj +834 0 obj<>endobj +835 0 obj<>endobj +836 0 obj<>endobj +837 0 obj<>endobj +838 0 obj<>endobj +839 0 obj<>endobj +840 0 obj<>endobj +841 0 obj<>endobj +842 0 obj<>endobj +843 0 obj<>endobj +844 0 obj<>endobj +845 0 obj<>endobj +846 0 obj<>endobj +847 0 obj<>endobj +848 0 obj<>endobj +849 0 obj<>endobj +850 0 obj<>endobj +851 0 obj<>endobj +852 0 obj<>endobj +853 0 obj<>endobj +854 0 obj<>endobj +855 0 obj<>endobj +856 0 obj<>endobj +857 0 obj<>endobj +858 0 obj<>endobj +859 0 obj<>endobj +860 0 obj<>endobj +861 0 obj<>endobj +862 0 obj<>endobj +863 0 obj<>endobj +864 0 obj[833 0 R 834 0 R 835 0 R 836 0 R @@ -1556,206 +1560,206 @@ endobj 858 0 R 859 0 R 860 0 R -861 0 R]endobj -863 0 obj<>endobj -864 0 obj<>endobj -865 0 obj<>endobj -866 0 obj<>endobj -867 0 obj<>endobj -868 0 obj<>endobj -869 0 obj[864 0 R -866 0 R -868 0 R]endobj -870 0 obj<>endobj -871 0 obj<>endobj +861 0 R +862 0 R +863 0 R]endobj +865 0 obj<>endobj +866 0 obj<>endobj +867 0 obj<>endobj +868 0 obj<>endobj +869 0 obj<>endobj +870 0 obj<>endobj +871 0 obj[866 0 R +868 0 R +870 0 R]endobj 872 0 obj<>endobj -873 0 obj<>endobj -874 0 obj[871 0 R -873 0 R]endobj -875 0 obj<>endobj -876 0 obj<>endobj +873 0 obj<>endobj +874 0 obj<>endobj +875 0 obj<>endobj +876 0 obj[873 0 R +875 0 R]endobj 877 0 obj<>endobj -878 0 obj<>endobj -879 0 obj[876 0 R -878 0 R]endobj -880 0 obj<>endobj -881 0 obj<>endobj -882 0 obj<>endobj -883 0 obj<>endobj -884 0 obj<>endobj -885 0 obj<>endobj -886 0 obj<>endobj -887 0 obj<>endobj -888 0 obj[881 0 R -883 0 R +878 0 obj<>endobj +879 0 obj<>endobj +880 0 obj<>endobj +881 0 obj[878 0 R +880 0 R]endobj +882 0 obj<>endobj +883 0 obj<>endobj +884 0 obj<>endobj +885 0 obj<>endobj +886 0 obj<>endobj +887 0 obj<>endobj +888 0 obj<>endobj +889 0 obj<>endobj +890 0 obj[883 0 R 885 0 R -887 0 R]endobj -889 0 obj<>endobj -890 0 obj<>endobj -891 0 obj[890 0 R]endobj -892 0 obj<>endobj -893 0 obj<>endobj -894 0 obj<>endobj -895 0 obj<>endobj -896 0 obj[893 0 R -895 0 R]endobj -897 0 obj<>endobj -898 0 obj<>endobj -899 0 obj<>endobj -900 0 obj<>endobj -901 0 obj<>endobj -902 0 obj<>endobj -903 0 obj[898 0 R -900 0 R -902 0 R]endobj -904 0 obj<>endobj -905 0 obj<>endobj -906 0 obj<>endobj -907 0 obj<>endobj -908 0 obj<>endobj -909 0 obj<>endobj -910 0 obj[905 0 R -907 0 R -909 0 R]endobj -911 0 obj<>endobj -912 0 obj<>endobj -913 0 obj<>endobj -914 0 obj<>endobj -915 0 obj<>endobj -916 0 obj<>endobj -917 0 obj<>endobj -918 0 obj<>endobj +887 0 R +889 0 R]endobj +891 0 obj<>endobj +892 0 obj<>endobj +893 0 obj[892 0 R]endobj +894 0 obj<>endobj +895 0 obj<>endobj +896 0 obj<>endobj +897 0 obj<>endobj +898 0 obj[895 0 R +897 0 R]endobj +899 0 obj<>endobj +900 0 obj<>endobj +901 0 obj<>endobj +902 0 obj<>endobj +903 0 obj<>endobj +904 0 obj<>endobj +905 0 obj[900 0 R +902 0 R +904 0 R]endobj +906 0 obj<>endobj +907 0 obj<>endobj +908 0 obj<>endobj +909 0 obj<>endobj +910 0 obj<>endobj +911 0 obj<>endobj +912 0 obj[907 0 R +909 0 R +911 0 R]endobj +913 0 obj<>endobj +914 0 obj<>endobj +915 0 obj<>endobj +916 0 obj<>endobj +917 0 obj<>endobj +918 0 obj<>endobj 919 0 obj<>endobj -920 0 obj<>endobj -921 0 obj[912 0 R -914 0 R +920 0 obj<>endobj +921 0 obj<>endobj +922 0 obj<>endobj +923 0 obj[914 0 R 916 0 R 918 0 R -920 0 R]endobj -922 0 obj<>endobj -923 0 obj<>endobj +920 0 R +922 0 R]endobj 924 0 obj<>endobj -925 0 obj<>endobj -926 0 obj[923 0 R -925 0 R]endobj +925 0 obj<>endobj +926 0 obj[925 0 R]endobj 927 0 obj<>endobj 928 0 obj<>endobj 929 0 obj<>endobj -930 0 obj<>endobj +930 0 obj<>endobj 931 0 obj<>endobj -932 0 obj<>endobj -933 0 obj<>endobj -934 0 obj<>endobj -935 0 obj<>endobj -936 0 obj<>endobj -937 0 obj<>endobj -938 0 obj<>endobj -939 0 obj[928 0 R +932 0 obj<>endobj +933 0 obj<>endobj +934 0 obj<>endobj +935 0 obj<>endobj +936 0 obj<>endobj +937 0 obj[928 0 R 930 0 R 932 0 R 934 0 R -936 0 R -938 0 R]endobj -940 0 obj<>endobj -941 0 obj<>endobj -942 0 obj<>endobj -943 0 obj<>endobj -944 0 obj<>endobj -945 0 obj<>endobj -946 0 obj[941 0 R -943 0 R -945 0 R]endobj -947 0 obj<>endobj -948 0 obj<>endobj -949 0 obj[948 0 R]endobj -950 0 obj<>endobj -951 0 obj<>endobj -952 0 obj[951 0 R]endobj -953 0 obj<>endobj -954 0 obj<>endobj -955 0 obj[954 0 R]endobj -956 0 obj<>endobj -957 0 obj<>endobj -958 0 obj<>endobj -959 0 obj<>endobj -960 0 obj<>endobj -961 0 obj<>endobj -962 0 obj<>endobj -963 0 obj<>endobj -964 0 obj<>endobj -965 0 obj<>endobj -966 0 obj<>endobj -967 0 obj<>endobj -968 0 obj<>endobj -969 0 obj<>endobj -970 0 obj[957 0 R +936 0 R]endobj +938 0 obj<>endobj +939 0 obj<>endobj +940 0 obj<>endobj +941 0 obj<>endobj +942 0 obj[939 0 R +941 0 R]endobj +943 0 obj<>endobj +944 0 obj<>endobj +945 0 obj[944 0 R]endobj +946 0 obj<>endobj +947 0 obj<>endobj +948 0 obj[947 0 R]endobj +949 0 obj<>endobj +950 0 obj<>endobj +951 0 obj[950 0 R]endobj +952 0 obj<>endobj +953 0 obj<>endobj +954 0 obj<>endobj +955 0 obj<>endobj +956 0 obj<>endobj +957 0 obj<>endobj +958 0 obj<>endobj +959 0 obj<>endobj +960 0 obj<>endobj +961 0 obj<>endobj +962 0 obj<>endobj +963 0 obj<>endobj +964 0 obj<>endobj +965 0 obj<>endobj +966 0 obj[953 0 R +955 0 R +957 0 R 959 0 R 961 0 R 963 0 R -965 0 R -967 0 R -969 0 R]endobj -971 0 obj<>endobj -972 0 obj<>endobj -973 0 obj<>endobj -974 0 obj<>endobj -975 0 obj[972 0 R -974 0 R]endobj -976 0 obj<>endobj -977 0 obj<>endobj -978 0 obj[977 0 R]endobj -979 0 obj<>endobj -980 0 obj<>endobj -981 0 obj<>endobj -982 0 obj<>endobj -983 0 obj<>endobj -984 0 obj<>endobj -985 0 obj[980 0 R +965 0 R]endobj +967 0 obj<>endobj +968 0 obj<>endobj +969 0 obj<>endobj +970 0 obj<>endobj +971 0 obj[968 0 R +970 0 R]endobj +972 0 obj<>endobj +973 0 obj<>endobj +974 0 obj[973 0 R]endobj +975 0 obj<>endobj +976 0 obj<>endobj +977 0 obj<>endobj +978 0 obj<>endobj +979 0 obj<>endobj +980 0 obj<>endobj +981 0 obj<>endobj +982 0 obj<>endobj +983 0 obj<>endobj +984 0 obj<>endobj +985 0 obj<>endobj +986 0 obj<>endobj +987 0 obj<>endobj +988 0 obj<>endobj +989 0 obj<>endobj +990 0 obj<>endobj +991 0 obj<>endobj +992 0 obj<>endobj +993 0 obj<>endobj +994 0 obj<>endobj +995 0 obj<>endobj +996 0 obj<>endobj +997 0 obj<>endobj +998 0 obj<>endobj +999 0 obj<>endobj +1000 0 obj<>endobj +1001 0 obj<>endobj +1002 0 obj<>endobj +1003 0 obj<>endobj +1004 0 obj<>endobj +1005 0 obj<>endobj +1006 0 obj<>endobj +1007 0 obj<>endobj +1008 0 obj<>endobj +1009 0 obj<>endobj +1010 0 obj<>endobj +1011 0 obj<>endobj +1012 0 obj<>endobj +1013 0 obj<>endobj +1014 0 obj<>endobj +1015 0 obj<>endobj +1016 0 obj<>endobj +1017 0 obj<>endobj +1018 0 obj<>endobj +1019 0 obj<>endobj +1020 0 obj<>endobj +1021 0 obj<>endobj +1022 0 obj[975 0 R +976 0 R +977 0 R +978 0 R +979 0 R +980 0 R +981 0 R 982 0 R -984 0 R]endobj -986 0 obj<>endobj -987 0 obj<>endobj -988 0 obj<>endobj -989 0 obj<>endobj -990 0 obj<>endobj -991 0 obj<>endobj -992 0 obj<>endobj -993 0 obj<>endobj -994 0 obj<>endobj -995 0 obj<>endobj -996 0 obj<>endobj -997 0 obj<>endobj -998 0 obj<>endobj -999 0 obj<>endobj -1000 0 obj<>endobj -1001 0 obj<>endobj -1002 0 obj<>endobj -1003 0 obj<>endobj -1004 0 obj<>endobj -1005 0 obj<>endobj -1006 0 obj<>endobj -1007 0 obj<>endobj -1008 0 obj<>endobj -1009 0 obj<>endobj -1010 0 obj<>endobj -1011 0 obj<>endobj -1012 0 obj<>endobj -1013 0 obj<>endobj -1014 0 obj<>endobj -1015 0 obj<>endobj -1016 0 obj<>endobj -1017 0 obj<>endobj -1018 0 obj<>endobj -1019 0 obj<>endobj -1020 0 obj<>endobj -1021 0 obj<>endobj -1022 0 obj<>endobj -1023 0 obj<>endobj -1024 0 obj<>endobj -1025 0 obj<>endobj -1026 0 obj<>endobj -1027 0 obj<>endobj -1028 0 obj[986 0 R +983 0 R +984 0 R +985 0 R +986 0 R 987 0 R 988 0 R 989 0 R @@ -1790,924 +1794,940 @@ endobj 1018 0 R 1019 0 R 1020 0 R -1021 0 R -1022 0 R -1023 0 R +1021 0 R]endobj +1023 0 obj<>endobj +1024 0 obj<>endobj +1025 0 obj<>endobj +1026 0 obj<>endobj +1027 0 obj<>endobj +1028 0 obj<>endobj +1029 0 obj<>endobj +1030 0 obj[1023 0 R 1024 0 R 1025 0 R 1026 0 R -1027 0 R]endobj -1029 0 obj<>endobj -1030 0 obj<>endobj -1031 0 obj<>endobj -1032 0 obj<>endobj -1033 0 obj<>endobj -1034 0 obj<>endobj -1035 0 obj<>endobj -1036 0 obj<>endobj -1037 0 obj<>endobj -1038 0 obj<>endobj -1039 0 obj[1030 0 R -1032 0 R +1027 0 R +1028 0 R +1029 0 R]endobj +1031 0 obj<>endobj +1032 0 obj<>endobj +1033 0 obj<>endobj +1034 0 obj<>endobj +1035 0 obj<>endobj +1036 0 obj<>endobj +1037 0 obj<>endobj +1038 0 obj<>endobj +1039 0 obj<>endobj +1040 0 obj<>endobj +1041 0 obj[1032 0 R 1034 0 R 1036 0 R -1038 0 R]endobj -1040 0 obj<>endobj -1041 0 obj<>endobj -1042 0 obj<>endobj -1043 0 obj<>endobj -1044 0 obj<>endobj -1045 0 obj<>endobj -1046 0 obj<>endobj -1047 0 obj<>endobj -1048 0 obj[1041 0 R -1043 0 R +1038 0 R +1040 0 R]endobj +1042 0 obj<>endobj +1043 0 obj<>endobj +1044 0 obj<>endobj +1045 0 obj<>endobj +1046 0 obj<>endobj +1047 0 obj<>endobj +1048 0 obj<>endobj +1049 0 obj<>endobj +1050 0 obj[1043 0 R 1045 0 R -1047 0 R]endobj -1049 0 obj<>endobj -1050 0 obj<>endobj -1051 0 obj[1050 0 R]endobj -1052 0 obj<>endobj -1053 0 obj<>endobj -1054 0 obj[1053 0 R]endobj -1055 0 obj<>endobj -1056 0 obj<>endobj -1057 0 obj<>endobj -1058 0 obj<>endobj -1059 0 obj<>endobj -1060 0 obj<>endobj -1061 0 obj<>endobj -1062 0 obj<>endobj -1063 0 obj[1056 0 R -1058 0 R +1047 0 R +1049 0 R]endobj +1051 0 obj<>endobj +1052 0 obj<>endobj +1053 0 obj[1052 0 R]endobj +1054 0 obj<>endobj +1055 0 obj<>endobj +1056 0 obj[1055 0 R]endobj +1057 0 obj<>endobj +1058 0 obj<>endobj +1059 0 obj<>endobj +1060 0 obj<>endobj +1061 0 obj<>endobj +1062 0 obj<>endobj +1063 0 obj<>endobj +1064 0 obj<>endobj +1065 0 obj[1058 0 R 1060 0 R -1062 0 R]endobj -1064 0 obj<>endobj -1065 0 obj<>endobj -1066 0 obj<>endobj -1067 0 obj<>endobj -1068 0 obj[1065 0 R -1067 0 R]endobj -1069 0 obj<>endobj -1070 0 obj<>endobj -1071 0 obj<>endobj -1072 0 obj<>endobj -1073 0 obj<>endobj -1074 0 obj<>endobj -1075 0 obj<>endobj -1076 0 obj<>endobj -1077 0 obj<>endobj -1078 0 obj<>endobj -1079 0 obj<>endobj -1080 0 obj<>endobj -1081 0 obj<>endobj -1082 0 obj<>endobj -1083 0 obj<>endobj -1084 0 obj<>endobj -1085 0 obj<>endobj -1086 0 obj<>endobj -1087 0 obj<>endobj -1088 0 obj<>endobj -1089 0 obj<>endobj -1090 0 obj<>endobj -1091 0 obj<>endobj -1092 0 obj<>endobj -1093 0 obj<>endobj -1094 0 obj<>endobj -1095 0 obj<>endobj -1096 0 obj<>endobj -1097 0 obj<>endobj -1098 0 obj<>endobj -1099 0 obj<>endobj -1100 0 obj<>endobj -1101 0 obj<>endobj -1102 0 obj<>endobj -1103 0 obj<>endobj -1104 0 obj<>endobj -1105 0 obj<>endobj -1106 0 obj<>endobj -1107 0 obj<>endobj -1108 0 obj<>endobj -1109 0 obj<>endobj -1110 0 obj<>endobj -1111 0 obj<>endobj -1112 0 obj<>endobj -1113 0 obj<>endobj -1114 0 obj<>endobj -1115 0 obj<>endobj -1116 0 obj<>endobj -1117 0 obj<>endobj -1118 0 obj<>endobj -1119 0 obj<>endobj -1120 0 obj<>endobj -1121 0 obj<>endobj -1122 0 obj<>endobj -1123 0 obj<>endobj -1124 0 obj<>endobj -1125 0 obj<>endobj -1126 0 obj<>endobj -1127 0 obj<>endobj -1128 0 obj<>endobj -1129 0 obj<>endobj -1130 0 obj<>endobj -1131 0 obj<>endobj -1132 0 obj<>endobj -1133 0 obj<>endobj -1134 0 obj<>endobj -1135 0 obj<>endobj -1136 0 obj<>endobj -1137 0 obj<>endobj -1138 0 obj<>endobj -1139 0 obj<>endobj -1140 0 obj<>endobj -1141 0 obj<>endobj -1142 0 obj<>endobj -1143 0 obj<>endobj -1144 0 obj<>endobj -1145 0 obj<>endobj -1146 0 obj<>endobj -1147 0 obj<>endobj -1148 0 obj<>endobj -1149 0 obj<>endobj -1150 0 obj<>endobj -1151 0 obj<>endobj -1152 0 obj<>endobj -1153 0 obj<>endobj -1154 0 obj<>endobj -1155 0 obj<>endobj -1156 0 obj<>endobj -1157 0 obj<>endobj -1158 0 obj<>endobj -1159 0 obj<>endobj -1160 0 obj<>endobj -1161 0 obj<>endobj -1162 0 obj<>endobj -1163 0 obj<>endobj -1164 0 obj<>endobj -1165 0 obj<>endobj -1166 0 obj<>endobj -1167 0 obj<>endobj -1168 0 obj<>endobj -1169 0 obj<>endobj -1170 0 obj<>endobj -1171 0 obj<>endobj -1172 0 obj<>endobj -1173 0 obj<>endobj -1174 0 obj<>endobj -1175 0 obj<>endobj -1176 0 obj<>endobj -1177 0 obj<>endobj -1178 0 obj<>endobj -1179 0 obj<>endobj -1180 0 obj<>endobj -1181 0 obj<>endobj -1182 0 obj<>endobj -1183 0 obj<>endobj -1184 0 obj<>endobj -1185 0 obj<>endobj -1186 0 obj<>endobj -1187 0 obj<>endobj -1188 0 obj<>endobj -1189 0 obj<>endobj -1190 0 obj<>endobj -1191 0 obj<>endobj -1192 0 obj<>endobj -1193 0 obj<>endobj -1194 0 obj<>endobj -1195 0 obj<>endobj -1196 0 obj<>endobj -1197 0 obj<>endobj -1198 0 obj<>endobj -1199 0 obj<>endobj -1200 0 obj<>endobj -1201 0 obj<>endobj -1202 0 obj<>endobj -1203 0 obj<>endobj -1204 0 obj<>endobj -1205 0 obj<>endobj -1206 0 obj<>endobj -1207 0 obj<>endobj -1208 0 obj<>endobj -1209 0 obj<>endobj -1210 0 obj<>endobj -1211 0 obj<>endobj -1212 0 obj<>endobj -1213 0 obj<>endobj -1214 0 obj<>endobj -1215 0 obj<>endobj -1216 0 obj<>endobj -1217 0 obj<>endobj -1218 0 obj<>endobj -1219 0 obj<>endobj -1220 0 obj<>endobj -1221 0 obj<>endobj -1222 0 obj<>endobj -1223 0 obj<>endobj -1224 0 obj<>endobj -1225 0 obj<>endobj -1226 0 obj<>endobj -1227 0 obj<>endobj -1228 0 obj<>endobj -1229 0 obj<>endobj -1230 0 obj<>endobj -1231 0 obj<>endobj -1232 0 obj<>endobj -1233 0 obj<>endobj -1234 0 obj<>endobj -1235 0 obj<>endobj -1236 0 obj<>endobj -1237 0 obj<>endobj -1238 0 obj<>endobj -1239 0 obj<>endobj -1240 0 obj<>endobj -1241 0 obj<>endobj -1242 0 obj<>endobj -1243 0 obj<>endobj -1244 0 obj<>endobj -1245 0 obj<>endobj -1246 0 obj<>endobj -1247 0 obj<>endobj -1248 0 obj<>endobj -1249 0 obj<>endobj -1250 0 obj<>endobj -1251 0 obj<>endobj -1252 0 obj<>endobj -1253 0 obj<>endobj -1254 0 obj<>endobj -1255 0 obj<>endobj -1256 0 obj<>endobj -1257 0 obj<>endobj -1258 0 obj<>endobj -1259 0 obj<>endobj -1260 0 obj<>endobj -1261 0 obj<>endobj -1262 0 obj<>endobj -1263 0 obj<>endobj -1264 0 obj<>endobj -1265 0 obj<>endobj -1266 0 obj<>endobj -1267 0 obj<>endobj -1268 0 obj<>endobj -1269 0 obj<>endobj -1270 0 obj<>endobj -1271 0 obj<>endobj -1272 0 obj<>endobj -1273 0 obj<>endobj -1274 0 obj<>endobj -1275 0 obj<>endobj -1276 0 obj<>endobj -1277 0 obj<>endobj -1278 0 obj<>endobj -1279 0 obj<>endobj -1280 0 obj<>endobj -1281 0 obj<>endobj -1282 0 obj<>endobj -1283 0 obj<>endobj -1284 0 obj<>endobj -1285 0 obj<>endobj -1286 0 obj<>endobj -1287 0 obj<>endobj -1288 0 obj<>endobj -1289 0 obj<>endobj -1290 0 obj<>endobj -1291 0 obj<>endobj -1292 0 obj<>endobj -1293 0 obj<>endobj -1294 0 obj<>endobj -1295 0 obj<>endobj -1296 0 obj<>endobj -1297 0 obj<>endobj -1298 0 obj<>endobj -1299 0 obj<>endobj -1300 0 obj<>endobj -1301 0 obj<>endobj -1302 0 obj<>endobj -1303 0 obj<>endobj -1304 0 obj<>endobj -1305 0 obj<>endobj -1306 0 obj<>endobj -1307 0 obj<>endobj -1308 0 obj<>endobj -1309 0 obj<>endobj -1310 0 obj<>endobj -1311 0 obj<>endobj -1312 0 obj<>endobj -1313 0 obj<>endobj -1314 0 obj<>endobj -1315 0 obj<>endobj -1316 0 obj<>endobj -1317 0 obj<>endobj -1318 0 obj<>endobj -1319 0 obj<>endobj -1320 0 obj<>endobj -1321 0 obj<>endobj -1322 0 obj<>endobj -1323 0 obj<>endobj -1324 0 obj<>endobj -1325 0 obj<>endobj -1326 0 obj<>endobj -1327 0 obj<>endobj -1328 0 obj<>endobj -1329 0 obj<>endobj -1330 0 obj<>endobj -1331 0 obj<>endobj -1332 0 obj<>endobj -1333 0 obj<>endobj -1334 0 obj<>endobj -1335 0 obj<>endobj -1336 0 obj<>endobj -1337 0 obj<>endobj -1338 0 obj<>endobj -1339 0 obj<>endobj -1340 0 obj<>endobj -1341 0 obj<>endobj -1342 0 obj<>endobj -1343 0 obj<>endobj -1344 0 obj<>endobj -1345 0 obj<>endobj -1346 0 obj<>endobj -1347 0 obj<>endobj -1348 0 obj<>endobj -1349 0 obj<>endobj -1350 0 obj<>endobj -1351 0 obj<>endobj -1352 0 obj<>endobj -1353 0 obj<>endobj -1354 0 obj<>endobj -1355 0 obj<>endobj -1356 0 obj<>endobj -1357 0 obj<>endobj -1358 0 obj<>endobj -1359 0 obj<>endobj -1360 0 obj<>endobj -1361 0 obj<>endobj -1362 0 obj<>endobj -1363 0 obj<>endobj -1364 0 obj<>endobj -1365 0 obj<>endobj -1366 0 obj<>endobj -1367 0 obj<>endobj -1368 0 obj<>endobj -1369 0 obj<>endobj -1370 0 obj<>endobj -1371 0 obj<>endobj -1372 0 obj<>endobj +1067 0 obj<>endobj +1068 0 obj<>endobj +1069 0 obj<>endobj +1070 0 obj[1067 0 R +1069 0 R]endobj +1071 0 obj<>endobj +1072 0 obj<>endobj +1073 0 obj<>endobj +1074 0 obj<>endobj +1075 0 obj<>endobj +1076 0 obj<>endobj +1077 0 obj<>endobj +1078 0 obj<>endobj +1079 0 obj[1072 0 R +1074 0 R +1076 0 R +1078 0 R]endobj +1080 0 obj<>endobj +1081 0 obj<>endobj +1082 0 obj<>endobj +1083 0 obj<>endobj +1084 0 obj[1081 0 R +1083 0 R]endobj +1085 0 obj<>endobj +1086 0 obj<>endobj +1087 0 obj<>endobj +1088 0 obj<>endobj +1089 0 obj<>endobj +1090 0 obj<>endobj +1091 0 obj<>endobj +1092 0 obj<>endobj +1093 0 obj<>endobj +1094 0 obj<>endobj +1095 0 obj<>endobj +1096 0 obj<>endobj +1097 0 obj<>endobj +1098 0 obj<>endobj +1099 0 obj<>endobj +1100 0 obj<>endobj +1101 0 obj<>endobj +1102 0 obj<>endobj +1103 0 obj<>endobj +1104 0 obj<>endobj +1105 0 obj<>endobj +1106 0 obj<>endobj +1107 0 obj<>endobj +1108 0 obj<>endobj +1109 0 obj<>endobj +1110 0 obj<>endobj +1111 0 obj<>endobj +1112 0 obj<>endobj +1113 0 obj<>endobj +1114 0 obj<>endobj +1115 0 obj<>endobj +1116 0 obj<>endobj +1117 0 obj<>endobj +1118 0 obj<>endobj +1119 0 obj<>endobj +1120 0 obj<>endobj +1121 0 obj<>endobj +1122 0 obj<>endobj +1123 0 obj<>endobj +1124 0 obj<>endobj +1125 0 obj<>endobj +1126 0 obj<>endobj +1127 0 obj<>endobj +1128 0 obj<>endobj +1129 0 obj<>endobj +1130 0 obj<>endobj +1131 0 obj<>endobj +1132 0 obj<>endobj +1133 0 obj<>endobj +1134 0 obj<>endobj +1135 0 obj<>endobj +1136 0 obj<>endobj +1137 0 obj<>endobj +1138 0 obj<>endobj +1139 0 obj<>endobj +1140 0 obj<>endobj +1141 0 obj<>endobj +1142 0 obj<>endobj +1143 0 obj<>endobj +1144 0 obj<>endobj +1145 0 obj<>endobj +1146 0 obj<>endobj +1147 0 obj<>endobj +1148 0 obj<>endobj +1149 0 obj<>endobj +1150 0 obj<>endobj +1151 0 obj<>endobj +1152 0 obj<>endobj +1153 0 obj<>endobj +1154 0 obj<>endobj +1155 0 obj<>endobj +1156 0 obj<>endobj +1157 0 obj<>endobj +1158 0 obj<>endobj +1159 0 obj<>endobj +1160 0 obj<>endobj +1161 0 obj<>endobj +1162 0 obj<>endobj +1163 0 obj<>endobj +1164 0 obj<>endobj +1165 0 obj<>endobj +1166 0 obj<>endobj +1167 0 obj<>endobj +1168 0 obj<>endobj +1169 0 obj<>endobj +1170 0 obj<>endobj +1171 0 obj<>endobj +1172 0 obj<>endobj +1173 0 obj<>endobj +1174 0 obj<>endobj +1175 0 obj<>endobj +1176 0 obj<>endobj +1177 0 obj<>endobj +1178 0 obj<>endobj +1179 0 obj<>endobj +1180 0 obj<>endobj +1181 0 obj<>endobj +1182 0 obj<>endobj +1183 0 obj<>endobj +1184 0 obj<>endobj +1185 0 obj<>endobj +1186 0 obj<>endobj +1187 0 obj<>endobj +1188 0 obj<>endobj +1189 0 obj<>endobj +1190 0 obj<>endobj +1191 0 obj<>endobj +1192 0 obj<>endobj +1193 0 obj<>endobj +1194 0 obj<>endobj +1195 0 obj<>endobj +1196 0 obj<>endobj +1197 0 obj<>endobj +1198 0 obj<>endobj +1199 0 obj<>endobj +1200 0 obj<>endobj +1201 0 obj<>endobj +1202 0 obj<>endobj +1203 0 obj<>endobj +1204 0 obj<>endobj +1205 0 obj<>endobj +1206 0 obj<>endobj +1207 0 obj<>endobj +1208 0 obj<>endobj +1209 0 obj<>endobj +1210 0 obj<>endobj +1211 0 obj<>endobj +1212 0 obj<>endobj +1213 0 obj<>endobj +1214 0 obj<>endobj +1215 0 obj<>endobj +1216 0 obj<>endobj +1217 0 obj<>endobj +1218 0 obj<>endobj +1219 0 obj<>endobj +1220 0 obj<>endobj +1221 0 obj<>endobj +1222 0 obj<>endobj +1223 0 obj<>endobj +1224 0 obj<>endobj +1225 0 obj<>endobj +1226 0 obj<>endobj +1227 0 obj<>endobj +1228 0 obj<>endobj +1229 0 obj<>endobj +1230 0 obj<>endobj +1231 0 obj<>endobj +1232 0 obj<>endobj +1233 0 obj<>endobj +1234 0 obj<>endobj +1235 0 obj<>endobj +1236 0 obj<>endobj +1237 0 obj<>endobj +1238 0 obj<>endobj +1239 0 obj<>endobj +1240 0 obj<>endobj +1241 0 obj<>endobj +1242 0 obj<>endobj +1243 0 obj<>endobj +1244 0 obj<>endobj +1245 0 obj<>endobj +1246 0 obj<>endobj +1247 0 obj<>endobj +1248 0 obj<>endobj +1249 0 obj<>endobj +1250 0 obj<>endobj +1251 0 obj<>endobj +1252 0 obj<>endobj +1253 0 obj<>endobj +1254 0 obj<>endobj +1255 0 obj<>endobj +1256 0 obj<>endobj +1257 0 obj<>endobj +1258 0 obj<>endobj +1259 0 obj<>endobj +1260 0 obj<>endobj +1261 0 obj<>endobj +1262 0 obj<>endobj +1263 0 obj<>endobj +1264 0 obj<>endobj +1265 0 obj<>endobj +1266 0 obj<>endobj +1267 0 obj<>endobj +1268 0 obj<>endobj +1269 0 obj<>endobj +1270 0 obj<>endobj +1271 0 obj<>endobj +1272 0 obj<>endobj +1273 0 obj<>endobj +1274 0 obj<>endobj +1275 0 obj<>endobj +1276 0 obj<>endobj +1277 0 obj<>endobj +1278 0 obj<>endobj +1279 0 obj<>endobj +1280 0 obj<>endobj +1281 0 obj<>endobj +1282 0 obj<>endobj +1283 0 obj<>endobj +1284 0 obj<>endobj +1285 0 obj<>endobj +1286 0 obj<>endobj +1287 0 obj<>endobj +1288 0 obj<>endobj +1289 0 obj<>endobj +1290 0 obj<>endobj +1291 0 obj<>endobj +1292 0 obj<>endobj +1293 0 obj<>endobj +1294 0 obj<>endobj +1295 0 obj<>endobj +1296 0 obj<>endobj +1297 0 obj<>endobj +1298 0 obj<>endobj +1299 0 obj<>endobj +1300 0 obj<>endobj +1301 0 obj<>endobj +1302 0 obj<>endobj +1303 0 obj<>endobj +1304 0 obj<>endobj +1305 0 obj<>endobj +1306 0 obj<>endobj +1307 0 obj<>endobj +1308 0 obj<>endobj +1309 0 obj<>endobj +1310 0 obj<>endobj +1311 0 obj<>endobj +1312 0 obj<>endobj +1313 0 obj<>endobj +1314 0 obj<>endobj +1315 0 obj<>endobj +1316 0 obj<>endobj +1317 0 obj<>endobj +1318 0 obj<>endobj +1319 0 obj<>endobj +1320 0 obj<>endobj +1321 0 obj<>endobj +1322 0 obj<>endobj +1323 0 obj<>endobj +1324 0 obj<>endobj +1325 0 obj<>endobj +1326 0 obj<>endobj +1327 0 obj<>endobj +1328 0 obj<>endobj +1329 0 obj<>endobj +1330 0 obj<>endobj +1331 0 obj<>endobj +1332 0 obj<>endobj +1333 0 obj<>endobj +1334 0 obj<>endobj +1335 0 obj<>endobj +1336 0 obj<>endobj +1337 0 obj<>endobj +1338 0 obj<>endobj +1339 0 obj<>endobj +1340 0 obj<>endobj +1341 0 obj<>endobj +1342 0 obj<>endobj +1343 0 obj<>endobj +1344 0 obj<>endobj +1345 0 obj<>endobj +1346 0 obj<>endobj +1347 0 obj<>endobj +1348 0 obj<>endobj +1349 0 obj<>endobj +1350 0 obj<>endobj +1351 0 obj<>endobj +1352 0 obj<>endobj +1353 0 obj<>endobj +1354 0 obj<>endobj +1355 0 obj<>endobj +1356 0 obj<>endobj +1357 0 obj<>endobj +1358 0 obj<>endobj +1359 0 obj<>endobj +1360 0 obj<>endobj +1361 0 obj<>endobj +1362 0 obj<>endobj +1363 0 obj<>endobj +1364 0 obj<>endobj +1365 0 obj<>endobj +1366 0 obj<>endobj +1367 0 obj<>endobj +1368 0 obj<>endobj +1369 0 obj<>endobj +1370 0 obj<>endobj +1371 0 obj<>endobj +1372 0 obj<>endobj +1373 0 obj<>endobj +1374 0 obj<>endobj +1375 0 obj<>endobj +1376 0 obj<>endobj +1377 0 obj<>endobj +1378 0 obj<>endobj +1379 0 obj<>endobj +1380 0 obj<>endobj +1381 0 obj<>endobj +1382 0 obj<>endobj +1383 0 obj<>endobj +1384 0 obj<>endobj +1385 0 obj<>endobj +1386 0 obj<>endobj +1387 0 obj<>endobj +1388 0 obj<>endobj +1389 0 obj<>endobj +1390 0 obj<>endobj +1391 0 obj<>endobj +1392 0 obj<>endobj +1393 0 obj<>endobj +1394 0 obj<>endobj +1395 0 obj<>endobj +1396 0 obj<>endobj +1397 0 obj<>endobj -1373 0 obj<>/XObject<<>>>>>>endobj -1374 0 obj<>stream +1398 0 obj<>/XObject<<>>>>>>endobj +1399 0 obj<>stream x+ä2T0BCs#c3…ä\.§.}7K#…4K=3cS’¢` g`NÖvôurT(ÊÏJM.QpÉO.ÍMÍ+I,ÉÌÏÓ Éâr á ä«endstream endobj -1375 0 obj<>/XObject<<>>>>/Annots 58 0 R>>endobj -1376 0 obj<>stream -xÍ[ÛrÇ}×Wlå%vUaïØ¼¤(ÒvXe],Â¥<øe ‚$,b—ÁE²þ>çôÌôô cÙ"©¤ÊæÙƒ™éÛôôô®ÿû,MÆøšÔY’WÉlùl<ã‰þãí|’TEƒ.“¼ÕÜ&çÏ \&u5à \&i™ŽJ;°â¤y9š`Òº¥pR1pœCŠ0ãfT`\1&%€ãH•“\ä¬õo™QÕÒýŒ”\Œ£#)3–Õ¨ÂbeƒÅJºX>eÎ(iR - £ˆacä „Þ§Ôq.“IÓDÎ@ˆ™60f$- ³@ Öb°íiXƒ—I6.G¹asº©LiM¨’qU¢J„P¥æ¬Ê¸LšB'á8©JIwè@‹©J>XÒ‰'1jœ8¢8žkø“R9¹¤ØGI‹¹$c+•%‹fìb€*; K®Î0.rŠ3SÃÁ™bÁ<ÅÜq Å`¡eø-—tâÀ¼Œ±@! Šã¹ 91é˜qI‹Áfé5,6XnÇÌøÉiɉ[²Mœ¸¢¸žCìC"å DüÔ4rRØ õTÒb°EIq"k0ØŠ©À°S• Õ±N¤1Ý -…€¨Šç+W9±ä¸â¤JZ 6çÞ4¬Á`1 -ÑÇ ¶n3—âÿ¼v v‚(n!¦"’’ƒE2Á¢‘5줰nѬÍâVõ\š‹xJZŒi«†òFÖ`°˜n‹¬Á`e«Ö`²ÆYk0\.çQdËÓÔl6Ñåž«Sº\9±ä˜ã#i1Xd>ì~j1XœN0Dd ¦2cº<²3~ÅÄÊZ 6«j‘5¬s‘Cäb+ŸuPCN4œ7Ë`ûHZLU „’a [ásà V}à eïíºN™I7r. *ã9'½rª2JzeüÈ´àžŠÓZŒ±eÛÖ`*Ãx1¬ÁT†~‹¬Åô[6X×b°Ípf‹QÙ!&ff‹Á–´W\×b°²× k0Ë4V†sÊ)Îü Dˆc“‰$rJQ€Ðq(*¤sâ,œÔbš?þVXƒi~ž­qbIiy9‘” I8Ò@ DŽ„JZÌi3ꩬ›VŽ#ÑÓ -ˆÓz.M%X”´˜‹²"‰CÝ´xȲԉ' Në¹4k¨Š’cZYΰSžª†5˜šfv"¡bå¹éDEò·tQÒbŠÄ2ܰƒÅeÁÇL'Èφ5lÃ[ˆa †:™(«3[ ¶`ñÇ:eQD3´²¢²žK³œÑ¢¤ Ìš,†™:0p)¶i­Ì_’´˜v`ÑYVºYUI8ȵÄ495Kä „T1rb= ™!-‹ã*¬/²L»”U¤Ö`XVjÔÈZL¯°B0¬Á`á_+•ÅHV8åK3Öb°÷[œYN‹ ZË>(±´ãÝÓÊ/žÌr¬¬wâ@ÏÉM!rJÁDòCŽCDûÁBXPI‹iû”zDÖ`gû²°}À.ª:ÖÙ'÷`îR–.þœ <çdWÎÀ ŠrN?΋®¤ÅªJd*a¬ ùÈÌ0b…ŵ,¶EÇ:E‘ÀôvÅlVÈFsŠzÎi¦œAQ圢~¯·°¬’nA u_X¹8A⹊5oä ô÷ëÈÁ•Ò8Dåoãäg´8y»Æ]š£ËpÖL„ -‚ª(!x{ö”+ÞÜA~†û‡3PDaR/¦ÏžÏ4—L¯ë¨Ñ¯‹dz)Ýw<ž}3m/nçI•œôÝfÞmÖßNÅ(¤¢”£Žü°£ŒÃ¾9?~ù☿@"©36öñ0y³êÏ6òwÇ¢ñÏOûÙv‰9ÛÍ¢ïÈ2äŽ=ÍÿR§v§W§e -y¡ØÑ]*¯ÇtÞ.9‡ødR<©üûVóE‡³ä’Š¿Ž/Ö›Uë]ƒó½üÊ„ßWGžd´öQ.«.g# ¡Ñ8 ñõü›¯Ú[>Fϰʽk’E·Þ´··vØg­„ãRD*ÎæsðßýGþMÒ’ɦçÔ’MêSDræü(“á‡çmw)£Ç£b’ù§óµ$ Üðãš®ºsÊ÷üû˜fØ÷7yÍ\g -ÙÇ™äí¼uZ¡:(ÃÃÍÍ\¬‚·9MÐtÙJ.E Pé³»öz.™åN¬¼ë­Çâþk‚l t¶«ô‹íâörÑ]SIœuYäâ/]»Z8=™š'ÞÒ^Ë¡9Ð2ßÕr꽈‹ºzùI<‹ÛBpöbyׯ6m'qŒ -¬ÔD·ÞÌïäט¡ò§Òãys°RPzpl¢¸ÚÕùd5o7¼¸»á$=äÖõò‚º±¦x&³¾»Z\oWšÂQdŽSŸ“«ÅíÜ­‡]U<^A‘Ž)èQZ Ü]©ÈîÐOýV²â ?959)^¥ÇØ ~ân\š4~\lnÄN迃%6ÈzwíJªl‰IêÆËSÔliù…wq¾iW¿ÃѾ.ÕÅ÷„‚ËH‹úCŸíS¼zÂwË ÷C¶^$>„’÷Ìtæ6¤hÑÝži÷*µê]EYŒp¿ô'À¢›o.GŒ úÍçº~,wzMS)&áN”Ã;nu©Û*w|‹ƒ¾Ãý0ÿ'Æ' )9AÝŽï/4ÇIrC¤†4–´rn Îý–ÓᥥZæ²/Ý ·¢6J°Aƒª&\ ÒQ½×ÓÕ'J9ˆÊÛÅZC/÷0[ß´+”á§y(iÛíâ–W2 |ï2§S©)f”õ|õÁ•_hWKœÞÈöqêêó Kc¢É1¢»ÃUÑ'~h Yýp‚;Pm»Åo4RiÌ„³Ûnšòï"ißxC¤õî~iþ¢-懽mqúúü¢±fÁäÝÕ»ky†R䡚z·èšßôq*I<~5um­ŽÇÙûý_¿>žÉSôâÝx¾™!ŒD -t³®ÆرÁÇ÷œ7dŽÆÊ ïེó´O‘ïnÚàã²kI¾ä'Wúhzƒ“Ä‚Tƒä´ïþÆ×á6ñ®_½ÿWAǸôsÞ+è&Òœ H¸ÐÆ'üÆ.$ÏÓE{Ýõë°yÐd¬ƒ‡Ñ‚AÒXŠÊø¬AïÈ_XÞß™.¨‚Ȱæ·âE«Êù¬¿“‡4óüÙ©; ð†1œ¿³âƒS^%t؆§!4r5¾Õèä¦W×À fîbw¨Ð»6ý¬¿¥÷q7Uw%?Î?Ìå)_…Ûó+<Ç{|<ñ ¤+ê­’oV‹.$oÔ›øÏ+y0aýüêì?²±ì §÷ü¸-÷ÛILæ"Äÿ›Άn´^Ä2iá6%¾9ØMF®Ö·ù±Ÿ½×òÖãA„úŒI½üh9ì…­+Ï­ü/Û»;/rCÊϨ$ºvéJ|°ª—ÑÏä/ÿÔib»Ñøè‚J…þæ}í&ßhÙñ§íbö^"wQm¬úµä›A:ß^ —ãäÒîŪÿ2/^Xi~Jžó§xG¡w²ÃÓò”¹^õ[¹Çã-gœàÞ™¯·‹K—#‘R³Ïì¦Ò_4-¨‰ÙÆ^î)§‹õl»^ûf=þu´#§ÒNMSø -iW .=‚¯iâ…ºw‚í-ÊÊ{‹k†kZ U”¡(?îº~ÛÍæWc—áþ»7öˆox¢eƒ›ÓšÌ€_@›Ä„*øl Q*–Å;¯Ø <ÿÔÍÄ,ØCY~ŸYêÀü匰3Aê:Ð>qÆö^?ê†Å»³Wçô2jÜ:÷uòΚO½žumC¯ñtêZè¶YüêõTÔ±Må­ß!¶»´ìW.ÕØnn´šûÎí/ÛŽùå›ô—oe×áÈÔ"üÎ9x[YûwÙ—bt^¦õ°Ç-ä)—³²œÒ>ز¡¸÷çR†–ןðR:á´G9¾t†Í^ûê¶··ép‹IÞÎ×ýíVßÒ PÒbïõêÒ_¿ñN> 1NA{pâí/ËòÿwpúTNV¢>^ÔhbÑ]õ«¥¶fq˜5Z6\¶›ö¢uÆz"‚#$“6­9úø_X?çûGßÞ«·'ûÞ0q -áK“öÑrØMûgƒHÚ@{…cÍ•:³/ú­«tÌ%ó|>Û®énÙÿ^é¾$á5å—…;ªî7W/?à]Ixñ…w¼Õ$„íóþüå d|U¡àwÝlõé.ìãqöñ—Ôiw®Ì7YùUꎒΣƒ&ëg)ÙõÝÑÜ)5—þ8ú)“,¼T¹k×ëýêÒåTÔ°Ò&óêñ#æv{EÊôÀ[1¼ )Ex|Iï#'ý/>å9Êo~ÅòØmÿÑ(xŽï1âA )w7â›ÛvÑùp‹…þfþ›ì6Û3Þ Ž'Ùëéâ³Áj{5ÆôÔí£øæþÉD¾ga¯ _'TÙ;Û<=~C'™ëð=S>Ñc¯ kÑMö³áÞ&Ùåñ÷ÈÐT^$f½²åxG¸Ÿç¾fñŸ/=ås1tˆÇø€­Â?‡ Ÿ¿%{Ÿ»å¸–t]=nøuÙ‚ÑöÝôÙOÏþ|#žendstream -endobj -1377 0 obj<>/XObject<<>>>>/Annots 102 0 R>>endobj -1378 0 obj<>stream -xÕ\ÛrG}÷WLíÖó šs%¹/[¾f½eÙŠ¥”÷!U[45²˜ð¢Tlÿýžƒî0:‘lÙÉ&U¶»@£Ñzä_ïåÙÿçÙ¨ÈÊ&›-ï C|¢¼þžŸdM5ÁŸË¬œ òÙé=—Y=ìp.³Q5»q.³¼,;¤Ç`Gãî´Å)k Á´cŽ@qÄÀ¢Œé1Øz<(<ë0ØI9˜8¶–‡Šч -°‡F.Ï›A™5JzŒi!)„7ÖáðÐÎX‘ð2+†žnc=[ i Ùc°U5¨<ë0ØFÕÆ:ŒÇêx™ƒ)†L˜ì/ÀL9* ñ•ôÊ6cNk¬Ã4Ű;Öa*›seu¬ˆTO,h))qyA]Œô­8­c;j`aÇ: ‘Ä "ù¸$’)ryN?¬•ô-塯:Œ‡Â%&nlx(VO·F-À¹<ò¡JzL;Œ¨©±ƒäƒÚ³S¤v«õìhÒ®ÛVµ8r9ܻɌôXÖ¡Q4v,Ëj¬ÃTgOs3;¬Ö±Ñâqæb$î¤,ÞU•²5ꂪ - :.3˜ Ï4ŽÑ¥.¹&ÉY˜"GµÓ7eR˜œ— °‘Ësî×ZIa8/¬k¬Ã`áèpeâ ³“´ì¡‘ ¾VRVØÉDЉËáDãÌH¹Ú<ŠëpXÏÆ³XÏ„¹žt@ë1Øšvp¬Ã`'ì6cƒ:£‘ÂJ€©¹<¯øP%=¦yéDŽu˜êp‰ë0D’àa¬Ç`KF}Ç:LeÇ©Äy«¦'o €ê8¸ÌÆUbEâBä6Òcª#Ëѱƒ­ë0X¤Ÿ¹g†y‘p{6ŒlˆItX€ 9”§œƒx¤Äs#=Û0…v¬ÃHª c=‹<Ùõ˜¾2†Ün¬Ã`± ±Ó ŒÜXégŒ­6³Ç`ñœ¡cå(—ö@#J%˜¸Gö›Ž)*Šp”³-³§cÓÓ1ÚV<Åf1Å:´ðßoÖ×WÁ™Ñ¡Ië-§«é»v‰ -f‘?ŽÛå¦"ßò{E4»^=ê©wÚΰ~»ü>‚H•—¿£Þ–kê­Lê8à–~Æ×“R¸Ùß­ãž^ɧ:Áf{ÕÎæÓEX Î&Þí6ó·×»6,3"›z,Â$mƒjÉö¼·ƒŒ¡T/ïvI£¶È¯ºK8é©úôÃtyµÂ3»N‘øÅ“çÏ(:;ªÎÓ4 jâX›èrRS¶/:KêÇ^oÎŒ>éìBBÜQ ¡³7ƒë"D&õŽ?žþðBÜ–%ŸuŸáT_kH1¦hGåȯ¢·z®ç‹ó@±Ó9úµäºñ¼Qô÷–¡è©ðxÓ⸠gkJõ—CçšO.xç -ÿþök•cY¸§]?¡ér84¾½ÈÝ…+&â^ã¼ë^ý¬åÇm\®C=œ¯Ó9Ìr!h$²«évû~½9qKóœs3ÚÕlóhHõ¼éðHÓPHL׸îÆbåPÔf Ý=¹ˆznù}»K^‰—]ÒÆÊVëÕÑl½¸^®8R³J,ú&?dëE¿Ø¬—ò!:Ï¿ëÙHšCÆð¦ú:n €*Â¥«áøs±ñËxþ–R#È[¢õŸc ˜ájqýn.¦à H²gGõp Ò]^´H{ËûW œQ‡ýÀ‰.CO…·H Å·¤ù³ƒŠ…˜ ƒ/<ÑÎC¤”ÎJ¿çÏE—Nsöñ*è‚#zœ’äõÕÃ÷,Ó˜¯¶»é"H$Ñú™T±ê1 þÌŸÊœrñ^Љ¦*Ôi}~=³šùn‚ÚWRµ,D $hªÁ§áØøý†A,wp)USzz9ÝÈš»Ð‘m]El`˜§*wÑþÖ.(ÚIºSOΜjdt,´+€&C -¦ˆÝrb¡Ø¶³,/ºXJ%2 âØp)U<_/qÞýô."}Q˜+K1lºhÜp0©q­.F…X% §rà¢Õoô¾/ϤleC@Ïñx(ã=™ÞÌWÅ/í”Ô98ÙÌ—Óy¸àS3?»$«è¬l>mÖ‹Eháý<¼ÆðÅ®^Ö|΃gÚN*|[„ˆbùýɦݴ¿^Ï·óøÚ°V|¿n§š4c¡‡ß¬=¸YƒnGxÅÚNeH»¯Ñ£éì—w脎QªÓÎø­?Œà†ÜåÃx»p_…~2lÎx(Û7o÷] ó;tÞ¬6íúÞÔýñ5ÌQ†IûDŸlà•žÒŸªoާ³ËùJ¼“I´6WÏ6×[ Th#kG+»U'éßëù*U…>P<^ÌS_˜õ»†¼våQ{ c¼½¹yËPË+]OAH³ùVðñtu=•ˆb¾Lþž…r1ô;åâdá ,Ì x·Ýä¨|§%Cwé'v{µ:Âv8z¶øø7†=Þ$k æé+¯:vôo¾¾ýo–¡‘Q MÛß&ýZùS^{(4O¦uø>¬ž„·wdÔvÍÝ.tß -ƒA*n¼ãc|<ÜíÔz¼^.£kã-Èt.e'›5ŠÃe(«+W’ê"?ÝlÖáJKz­sH¨¯ñYR”ç~g‹‡Þ¸«2O?nw­Ôƨ¯5Vg'ëÅ|–zŒì¦bà®0ÌÅ|’˜%å1_C³OÌY…¦ÞIò+Ûë7¾¹œ†˜ŽÅÖæÀž-ýaDz‹p—íBî}ØÐm?›®èìÌ]5%~.ÁÁuÝßµ»Ê–À‘“[GçO(x««Xü }ì&h½&ƒ;KœâÔ‚a_ï½u˜‘¬ž¯ß§]a5âäÃã§2^†O›èVjÜòË•äÖ½+!\î8×R¤·§¨õíFó9êÛM¨·ÿ xH›O/ÛÚk’Ÿw2†ëwë•Ø§úðŽ{G•¤ÞGü•ÊîŽ>Ô“øåN]ÃÍç&ײpm¬fx½ž.SÃúj„Ыj9ºI:!BN¡Û7Jªì•ò -vÎíçzO^?|þò¿_½<{ýêÅ`Z¤òþP:d²°ªƒ±^`~Ê_žqýñ&Š]«ÝrÓü]&ðwÅ–Qã=Uâ7÷öZ‚ëì”Á=ÿ°ŒÑ?½#ð¯õ{ŠæÓ==¹m?œIÈD›Ý’㔺,”‚Ó >çéJÙlÇ"þSå*ÞÚÔDü½“ëM»ןþ>ÌÌì6­P¤å7ìmÛ›p¸Åá{='­¥!ã*à - &¿!Qðì»ãÿQÔëÁ(­ö5ú ÁQƒnœÞqqyÏÁLàW”:ó‹˜ötÊšÞ5ªs•gl»t^ ¥ ‡2êU8\$@›g<¼ƒô?E–h›‚¿—æ²BZ§_øYpÐ|.;_‡$ÿŇžiÞàpD{X[¬¸1MavdAb…úþÐ<¼#ÓXz®m-ï3Ó®V0ÞÉI‘%)ù9×%e:Ú¯h˜~]øæ²•$—qz¾ÍåÜÇûvZÝ“'á… TÚZ,­Úö¼=}p—ª=Ÿ£Ç­ÇDÅùJZÇ!úí“ø²¿«ËfáÕ÷…ÞJ+…k©‹Þów6ÀÆÚT¸ýžÒãJÍ–Å Ý?ÿÀŽ…9:®S+õÖÖ‹’÷à_èn«^ayxOIzà«^A±mà ŒK5~?ëYùðú>/XObject<<>>>>/Annots 145 0 R>>endobj -1380 0 obj<>stream -xÍ\ÛrG}÷WÌcöA4g8ׇ­-_6mÙŽ7V6ûJQc‹1/ -/qò÷{€îÎT,Ç’¤*åÃ3}Ðíüò(ÏÆø7Ïš"›ÔÙlùh<ãûÏÿ’_²ºìðße6éFy‹ìÍ#‚ˬ8‚ˬ)Gµ#¸ÌÚzÔGp™åãÚF—ƒÍÛQEMƒ-†3[W£šÛ^fÅxÈ2[5qƒ­»@ŒÁ6í@"ÆÐo^ XÆ`Ëf bÆË¬1[Ùª”&¦ŠåieÆ -DËe -ÖHƲµ ê,aY‚‰¢ËGX–`2j¸-a°M7—0Ô8™Œ&Ô–±,.ŸÍ*[˜jV ¹®YmAL(Ø„‘ŒÁæÝ¨¤¦ŒÁNtÕ½-a°U.úw–0Xìl:g CÔ|<WvkÕÕ#îÖDRÝ­‰ÓíéAìÈ -Í#¸ÌºSuŽ fª»ÕIÆ¢ƒñ )c°Ø5iæj*„ƒ”<ìDÜBÕŠuÁñðHK‚˜®øçbÈ\Ú;É,ú)™% ¶«ƒ2–éæƒžƒ-Å:}Ü Œz$Œ&raöÆ4aŒŒÂÄ–Qgƒ0‰ Â8KØ„16 -ÛðIP“±A˜J¼BF ¹n«®Œ#a -ñKN†NË FJ*ðN#׎á*ã¢ÓñDÌÚHÆ`k•ÃØ0$LV6R0)>däZq¤•qeHiï$c°e)ª³¦ŒÁ¶ù€UVåš¼zèdBѧ"Õ/…d,ƒÊÒ8ä„jär*p9#¯ƒ^#¨NkiœB‚ÇpC$c°’YNÙÉY§€M'qm‹•v°ˆP4 íd,CÖ˜ž³aÈF–? ©À‡Œ¬©ËJãÄÓ–ðÔ ÍÔÓ&N]«s£§uN=mj§®Õ9‚A=­“ŒÁȯs“é0[ŠÊ‰% òA“Þ–°ø‚ -jr–1XÄEXk4;‘#iVk6rm#ó5Ž ˆ*dž“ŒÁª±K,–ӵދ¨­(ÂYÂÁíq[q{ ƒ-$ô¶AÔ¢$»Uà¢F.,±qETÙ†¥‘ŒÁ–:]g ‹0HÔ–°#¦³aº*QZ>ÝÈ5â-Jãjàõ‡À=AE ÅHÆ`½ÁÈœ% ®ºu–0ØNÎeb Cб®’µe !÷,[x‚%- Ë®#Ð=ã’P4|¨rˆvðoHž´!µÏª † *0jRàó›M¥#@ '™”s1œî|'Ëd*ì@b ƒm$» –°ØˆøPgƒ-s,/±„ÁÂ0ZbÕ¾&‰-> @µ'áZâÚ΀ªAÌtÛ1€·‹Gt¢@8‚s’ËrÉ,Žx¨ÈYÂ`¡ìA[¢@±[jKJ€OàžƒENÚ¸zž0^ËIqô,µe,ŠRßf¬.ˆa¬V£aôh‰L8°Œ’ü¨ÿ -õèm’üYÚ8‚+Ôú}biÒ‰+ŸÄ 猒!ÂDñ>QÁéžsΡhDN(çBb,/ GPt%™µ#%nÒ\ŠÉHAÃ8‚à°!HU0¤×,J\¢þYlÕ7‰áŒqÑÔ1EPT¢µRé\:$N pÞΡˆ-Ô8‚àP¢Ÿú$(*‘ò…s!6|Šƒã\ŠJä–È9‡à`(JZ;-rÈ] -,H‹A’#XP±ŒqEJxjŒ£ H©ƒÄîD‘‚CQ†" -ávÁÁxQ-³>‚ÃàR¨Hã9„"5 7Ž 8l</äC±! -AjSër«BEû1Fí'2IP#‚˜"Â+ØæEw]6ÍÖûU0Ä;&ÒŸ+Ã'´7q®êÔáÿz½ÝΡ‰zÄýX¤Òo6ë:Yë"*âæpŸŸ&yò1›g -Ýõ^ô[Õ:rïÚ"“Ö¹í7¿†ãá‘ËÖì'žGªs½OAîÜWÕƒ/Ï2Ç“w(sÒ}[ýt­Y3fì‹Ó/dçm:ŠOæd—ý.Ûp(Û»ë˜÷ñé±ígûÍ|Rt¸‹¸ÿ.3EáÔ¶R8RB«ÉÖSM‘Ç)°ÊærÎÏσÅéaºøþf7_¯¦šJZb• Ðæïö›©ð"–\æuÑE|æ&ÿÜæu,q‰K'—«ý,M·úBÙàŸ”¥.TÌÒ$¸­ÌÕ…UKGÂ9*fïdYB.‰š§ïÙ—o¤WÔL¬no»ϲҎÍVýîÃzó>leÔd̘ëã“ý ~½oÍÖ‡ù´¼^à€5¿ÃÓÿÉ»~u•Ša)¾ù“Kñ Í‚PgRú#Ÿ¹%y5]jœsœ§ÂÏýv½Ø›)£æd!¸Õ½‚ z@ÚÖðD1ä^ž€ü¸šÿöøÅ|µÿM(¹€2'KXèÁ w¢íE¸Q#‡Õ6QI,?Z §iâõzê°†¿Ê -GðBüpUcÁp(ÂF–ñWÏuµÙ×KFuHxqÇу¬@8J=”¶°ÉW±äý »å.ÆÉëEŸE>2÷P8˜û -eåùnvmó— ¢‡=}ÿ@ˆ8wy¤7ÔüQsÒ¨™;@?í‡,f¸M°¸m¿ uÃAáE¼zðøKm -T³x^pmš ã‘NÜ,OîÁQÔ!£-àŽ†; -q»zJŽ>/â^õ¥Yöªß==ÿ^=Î]³“z|6….$¿o¿œ5ԚԜ᱉Çìx-ƒ‰øâåwß¿¹P^[îHô¸ÇšTvû|ªŽ¡yŽ@,Ý'‰`ÑPßDÀ#{>I3à‡˜ç]ûl4ã9 ¾b Qt2$ÑóWº$¼z/ÖëtI¨öü]½H¥Á»ŽC§ -œ<õŸÎƒ8âls‘<¸¡î¾Ü†9µ^Qü¶µ£jô©‹ËË Üè¹^âí~¥ Cƒ©ö•Ê”¯ã3§‚vÃl[0»Âè:ä†\(ÀP,©âªÜ+§BÞÆÏC¶eªÍÜ*Ê> ˆ -“o0 Üáñºö°>Ñ„<ª”›oVêQýûΉ[sãµfšªéÁö)ÜQÓ)GU7ˆìµ³{2“¯Âk5§.ɶ}¿\ôÛ`xfaÆ?OyVHåi~ë‰59‘—vª<>Ç~Ü¿ÍçØ'høDëDp¢þ5ÝãÆbµ“ûù”ÓãÁŠ/¨ü }_ÍDÎ(¼äÀqw ™3“O}9}.Áœ^Ë£¤Ç/ƒQÊóÎZ¯™ä½…EH'Tóyê¿ÕæéÞ7°Gûï”›£ß¢ê&ñþÝXøGÁÞh½&ìáºo÷óébýNGƒ¾'åÝkíAkgÒ„uÝmÒÕ©@éD4ó+T*k‹`Ñ‹„·ó]Ê­’û„ûò´UzäŠÕiµ½žÆBž*?X"ª«Èq6PXt²Ia·×Ie¬?¬úÍöz®O‘±—Õz¾uäíÒÂ[o})[üSô/õáùß›'/Ÿ>É^oÖ?÷³]ö|=Û/#X„ ÿß™ªƒ!5x܃Ïçó¹¬Ý?/ýçÑÿ¦hB endstream -endobj -1381 0 obj<>/XObject<<>>>>/Annots 190 0 R>>endobj -1382 0 obj<>stream -xÍ[M“ÜÆ ½ëWðƒS•³ùÍSj-Y±R–j#­£T¥ràÎpW´w†›™Y)þ÷yºÑàpôaI³vReï›ÇîÐh Òÿ}ä’ÿwI%y•,×ÒEŠ_ô/ÿF¿$UÑâŸë$o΃ÛäÕ#×IY.*øNšjQÎÀuâ -·È i1Ø*›²ƒm²EmǼN²¬,k1Ø¢ž²ƒmÜ¢03[ ;dé¢1¬Å`‹j"s^‘ óC`¦F™ÐÀuÒ6dB~8¡ª‹³i1Øl:­Å`디щ-&3•dDeË‚$Ì2È‚+H´ª˜6-È”´lÅž£¬L›¶$LË Në9‡mÚJZŒi›’U–[¶dqo\4-7p.­±‘´Ó™e ›×XÔŒ5lÝÂV†5æÍ‹EkX¸Éù@‰„ ¢Àžsi[•JZL"¥Ø5à .ˆEãXƒÁâNXƒ!°cut¬Å` rÒ8³Å`ëbÊLdžbD+¦¨Úx0JÑžóª+i±š"²bŠ0VT¬ÁjŠÈŠ)üX¯º²ÓÎÖØÄ(²ÅdŠŠ¶/Ž5¦p5mŸ²tVÊ"çÃÁaUYÂ@e#ÇQ6ŒsŽBL$-&—ÈÉø¼Mk1XœVHYƒ¡ f†ÿ+k1Ù!Ÿ¬k1ÙB“k0¹ÄT*‹Á¶~âXqlo<ì ¢Ãx®åáœP±#OJ%-‹8ˆ³¡¬,‰Ý¢ü'Ç•A\ÒsÎ¥4­’„!{`¡5쫬L›’á´ â´žCÄÅ®)g m)åãHZ¬[ªCýûy3þwKXÔut@$;`àØã"g òW©“Ð8Éê9ÌZ ¶t°„a † q$Œ¬Å`‘ûìX‹ÁVØÍXƒÁâ¸[©,†û¥)ŒÇZ –3¦a)Ay¬ßRº¥sŽªCRÂ- 1¹gX4Ð@XIò“Dòžeä tTà -¢ ôA#r²g~\KUPä ÄzyC‚ÆIYCG•QÐAÔÐsy ’ìí9ê58‡r¡„.ô$“dš)_M#€86Mà„lý“DZ E*ª1ãP®Eòš|Î[\@œÖsΑ$‘´˜¼6§EùY^Ô`Z”ÊOÃ,>mÇ’O ¶ (ÇŠÀ?Z“å ¢Àžs)I‹!WÄ–eÃX¬eubg0Æ"ˆV–5˜ÔáÓ±ƒ…#Y©D訵`Î ªã9‡B ¤Å ެÁ`›tÊLêTðm3Ö`Œ“ûë̃-©”4¬Á`kŠ8†5˜bJ­#+¦Èé–\‘A4…ç¨à‡HJZ uŒ°;‘5lÕ ÌÖ`2åàÈÊiE¨)/g@"aƒ±žCº€DʈI‘ê,i1Xœ,©CÅ -©\‘ä`3ˆVðeU˜^I‹1-Ü‹FÖ`°ýv,/𵿢#@ œ“HZLºÔÐŰƒmÈŽ†5˜¥‚ÈŠH¸?èÁÈD‘<'w­HZŒE º™Ö`°5•‘•E+¹B±ñ3qQÏùE”´˜ì@oj1Ù’GdÙÉ2¸:™Z”,p´¤å'™¤”!¿iì¥õ5 £80«°Yþ¤e â@ÏI I‹¡ÎСSàp´¡ÊŠmöb[qQω#gJZŒEÑœÈ09ÍCC-&‘Èí k0±5¿e#‹* ëÌ"0 -Gƒ(°ç$FÒbL›;I‡Z  ,YƒÁâˆ`ã"k0Y˜Bsd-‹Û¼EDz:®‘òí/@Õ œC\α4=É6"áæZZÖ`R–:f¬Á¢¬3¬ˆÄgÐû¡È(’ç¼HŒŒH"k0…  ±YƒÁ"w·†‘ðˆ _±!Ähž£¦ 4UÒbL‹ÊšFÖ`°ØFËÊ¢pluäÕâß²¨çÈw*>Þù &M)Ä¡2-š.êÀŽA4¯ç¼ìJZLºP4‹CÙœÜBòµ6=Þ°…°ÛÐËs\\GÎ@Ür2žŽ3ëñ3’ƒE it¨Åt$¨J¬Å`j'¬Á`¡gmÇ ç~¯ëZ ; Ì·RY ¶l'3sÄÇ…ž|Œ#<ÿMÛ÷@ÓDíX?†ÿÖ1ž‘ë†R<QZ/ü·ò \ ÍÖpшÆÆIBw7P‚C0Eû1pìlØc½žðßêjž!ùÐì¡Çˆ2öÜW9–‰KÛü·Êî´¹ézåý/"’R„R‚Ã*¸ë…a,;îÎzæùo•Ý3䇯ôË¡Ãr°‡ä“…ø0Î@pE -ù•ûîòÑ·O)¤'—×õ^ÔEr¹â7øyùÍewuÛ'ãuòxÜìûÍ~÷çËŸ1 -¾éhÔ™v–Ѱo¿éîöý–ž¡Ã‰ù0Éê8ò‚~C%~ùéųñc(+ËðãE¿]»Ý0nˆ‚ª6ó3|7ÈÒ¸f¥Míì6+zÅfÑ„_›ÕøŽÅDJª+zÓB"¼¸d PCd­ÿé|¹ìwü$imf M·ã-K‡„èrÿøÃ.¨Ã'êgðß&«` -1Xš¬k¦ûçп674Ì_å…Ÿîz¸íY$lž®1²íPË´úÓjØöËý¸ý•gÀ%¦òÜ©µX‡ÁF¨ÅéþWW$Æ‚ÿÎŽµ¦`vóiP­ -BÇ-¡q{ -9Ðï›9(ƒ{K]è“Íôy2Ù´=ÔcæJåÅé·bªUЯ ¦ª”Sw|>®†ë_ƒCbkR/iòÕ²X©ß÷©¬_ ÕµxcÛLv¯šªü ‘kÛ-÷!®àˆêÖ½öohô¿rµÄþœÌjá4íöˆ6Ý–Îqê‚Ù^u뫎¦À•2Æ«å¶ïö< Z?i"ÖºÛýÂË¡ÍT‡Ðt×m»uåH F‘Õ¼Q²MÄ©+Ô¿¿]Ž:Y·ßo‡«{±GŒ‡ëîî.ø*Œ^ù úÙT·d}“¿rÎIg¸7~8Ix3 Yâz¸¹ßzéP{£³ï#óÅùsÞd¼jjÃÎ_ûÐŽœ¤¿­QDqv+$¼Zç€9hT˜U"ê xÛÝÞJ*@¥­3­»MwÓ‹s¢ØÐ×Ý×7ûaÙïGÕÞ"YsRü ›TL¥¹.GÅú“[ˆQ4Ó? >I“"!Ò'Á@ˆþ¨7>.ËýbR4=kmJCßzzXžì‡a[ÎçFþ¢üy -5ŽöëÌ!8A²X¸E>Õ$ŘVRÁ›£› xk€6슘ICän}µXâîoÞ<Ø66™ø¥– ôFÝGϰì¨9Ã?Œ»½?¿u±H8œãª6øù°ÜŽ»ñšO$%Ø*0‡^›êÙ õ•§jÊW¿îöýš4À#×Êw¿í%Y ¼ÕÉ¥ F=ŸkùnüŸ ›\L¨G;kqe´Nƒ{ÎÔižmªî9‡†j3˜çóÜõëŽÎp‡žø>©1/L_Œûž•@áþ{Ç5CS¸55"I™ºµoãÖHJÁ¯éÖ½çþînÜŠcòÚ_„T†ÿ£)Ñ¥hãZGÌ玈ËÙJ<‘‡#ôà²ÏmÎêÚD_\ §iiñˆ'ó)ö¯Ú “SD:ÌOÑcªpcm“û¿ïÈÿþôÚ4ùÔýVZÍëƒ>Ä¡S!{ó¶Øûê«~ô¡~€fƒ'Ûá­¯Íñr¯ÎCû Tt¨·jH’ïÿ‡2áXJá3fÁ™yO`”&\ŠÜJ ˜¨¾©Šå'@¼]Ó‚í¶ÛÞH‚BªØÜ¯¯|·Ç&³‘«‚Iƒ]"¨Âß½ž0ò6 ùÞ¥: &hŸÌöý|µ -;Æ~‚%/úw4 Úz¥^õ61ÞàÞl1Äàxa`ï¿È3’cQH†æÜ*ð‰Ã¾ã¡3‰«Öt÷ -áKÍG$d‘äÙš]•E§k¾Vs—ãx»ë9w":T_vEÿDMÞ÷XËW³3þf(ú¨Â„é×o:eD Së‡Cã*þWò:¼¶Îss}Ÿ§úÝ+ç?²PÈ¥ÖSß›…üY%m&‰æü3^털}Ñ-ÁZ¶ÉÁø:”ħ3%çaú79ê®ß"]qìÀ÷–¡ö;Õn7h‡ÏLà<üU· ô9ô6ŠÞv¨‘’Ç·:¬_³p¡7rTŽSüt;è³âíÏ´Î{2t7›q''ÞDüAj<±I+Í‚ŸLw߯Ì$ú§Ó’›oY'Ìߟ°o^|Ür(ÿ¼°{Ò_ÝßÜø8cYãË$R-ãî¶#^{­% =ÐE©åÖ2>d;TkŽFv¯K>é0¬FÒ¯©‚#&Ïèô=µ -yÓ½í9üã !²ç)+´ƒns’½+7ÛÎyÀx_~w¨!cÙñïôI­¶KU2ü0Í@%_ØñD¢©˜· ¦ý`ƒvZ¶‹yyö÷ñŠUµ/3wŠñâgYxµ°™íúx¿¿“Ö2v9øÂÁvœ¶ zæemù‚÷½³Øó骢?Õmä’‚[g,ÚÂh}?l)ºšâ?ò›j*¯bl%ó²“ ¾²Òyå«åv¸ã|‡ÏrTþD:wüQßè«öSo]˜¿åÎ tâîÅT·f¶‹ç«·ÝféßOà+¸Â—WÉ…iU!\ú}aþðßA›™C¶3U^ö€†qŸV6Ã`›´¬>\è!°(cÞqñ÷äÈ'í$J¬5ÄŸ6Ãõ Û6éü8ÞŒ›c¢O^õûw}¿¡ÃHŽ/@%…$öÚû‘o2|dž|Òqô[‘ûOè>sf¥+|Âà.béo,SZþ¾áÛ§ÚÏñÅɤF -’¾ö:¿¢Ð³ä#Š,ó‡ªóào¢Ñ^PÚ’=vmÕbVäýqôðLúª¸ Nå?Z ÁñÔø:)½‹íøvXÉmϾøyˆÓi×ðŠÍ®º¤Ü¼ ¿¤œx™¹¹þ´óï2²EzâK«ýøß­o=vñÑšîÖ£$;&í1¾g³^Û_$ÔàS±ßå:ëuUå^°’róÝš¾3DcPõ|Ù¯ñŠB2^ì!Â)‘!ï·Ì ‡Ä$ùWa¶þ[«¯Õ üÐþ}ûßõÊ÷m5¦ÿ‘:ÿ×ø¼íÕùóïΑµÇŸñMZòd\Þ¯Qwê==§¦/EË:mék¸á-©ùýå£<ú?F\­Ãendstream -endobj -1383 0 obj<>/XObject<<>>>>/Annots 234 0 R>>endobj -1384 0 obj<>stream -xÍ[[w7~÷¯˜ÇìƒÕáÜçi“lRŸ­ãlì4û:–äD¤qu±Oÿý~H#É[w×—´çÄþæ’ € 8þýÈ%)þwI%y•ŒGé(ÅýçÓ{z’TE‹IÞŽœóäâÈÀER–£Êp.’6e†3p‘¸<ƒ­Ý¨0M-^$™km-›WCÖ`°e5ªMσmêQiYƒ1®He1زô\4…y9j0…MA21 )4P¦Ê*IS0Ø*#‘"k0Nk}—:¶l1dE¤,Ã’‘D‘<ç\>Ê“JI‹!Û…a Ûdƒ¶2hÚBÎ0(ƒ8¨ç\îhÆ”´ݶl…‘5˜4å9S–-[²?¨4pØ$‘´ƒfÄ6¬Á`ËšÖ`°°áʲCà,Œ+79;›GÉ -ì9#tI$-&‘ -XKdaûiRV-aÙ( n DC—’.ü&‘„3mé²fÔZÖ`´…gc–´­èGS3+D]<ç -róHJÂz «Æ 6ôœ+š%¥!‡”ÐAlè9‡iÇ„(i1Í™½a [“ãDVæÖÕ¼d2™ hPin-Š’Ò0ÍÍ¢0ˆ =G‹€iW’d/jòi”P;Êã(9!LZ`ÜHZL3@#Ö`°ˆ=Ö`°ìn±-«YTù°Oí P5G"8CZŒnÙplj1 LQ7²2hI‘$ Ê ê9‡Y-“BI‹Ñ-æ3·¬Á4h -K0m ÛUGVDÊ)ΑD‘<×ò)g :-xÙ””N³‚}L&—AìÔs^/%-&=É -‹È .9R–ݬ€5« - A9fÎ¥ M¿I¤Å4¨£É¬Á`y‡6¬Á`ò|ÃŒ¨Šž Žöl1XÄç̲ƒ…¥Ú¶<Ã9AÍW€ÎpàZ§ˆœ7-až‘´,o³†5,– KÀ“h0ØšV.²"nSFÃÏDq='ò)g Š«¤×·tpYƒÑ–ÃLâ¦X7ÃŒ¹G$‡2Ú³(ƒ S]&g•ñœH¯œªŒ’^ßÒ+YQ&°"|d Ve"+Êø¶”ŽBUeEø(m‡ìª9ƒ¨ŒçZZ¼Èˆ!3J$#i1XÄ ©ÝZ á)·¬Á`« -NnÚ ægYQ¦ D8(à *ã9‘^9Ñ©(£¤Å`‹Œæ!²ƒÅþ‡‰ˆ¬Á0$d€–q󌸢ˆŸ3 q DÒPcy"g †t"i1XÞ k0 D!:²"“ƒ•HÀ -ä9Ùs%-¦9¢m/²”d­$öœ - ^ ÄŠÑq-r¢OˆšÒb°YcS‹Áb§°³šY-I?Û¼5“ÀIúI‹Ñ-oG†5,ŒªI"+ƒÂ|5bg â žÃÑŠ*g I;$yÏËRBÁ›œêÔ@4„éaøM‘ÎzÓóŸ€ØÐsñj0Š qÒÐô9czÎe #)úcQßÌp§”[„”äEÎ@¨NÛÔÐb°0ÙÂ4µÆŽ|ÕVæ.¥“D˜;QÏѤ—ðz“¥¥¹spBtÚ0pÎQ¬ˆ$ù«(;ó²j‡!œrlø‘3‚’,‘3f§€DÒb°H(ZË ã  d1XÚA[ƒ1³Y⸼Ԏ÷> àÉ£¥œøS$¥an’rÇ 6ôœ«œ•SòØÐb°ˆüˆÆ`= [SŠ,Ûˆ™·Ô’ý+pä&™7OîÖ`t‹árËLƒVð”Ø± ÊGÿ0(ƒ8¨çü JZ¬ƒFV m‘Q`PeÉ6ùhàM“§Ù2=Ö¨LDÞ,•a«ôm$J*e D„sW2, E2 S­êñï*ƒgxTe"BE‹ÔžÚD„qxJµ‘$¯rl‚8ùknÇ¿S‡¼QxF¢¢RÛL… -D%±‚#›0{T`"‚ œr(õúòè§wˆiryÍ;xŠ[]$—.ƒâñøÕew5Ÿ&ýuò¦_n¦ËÍúo—¿¡bƒ£VÇ´ñ£ÙqFÍ^½ùÖÝl¦+z‡Ö:™¼‚#Žè<&<ù¼œ]Ϧ~實öoþÒí—<”m›Ì?¾šnî¦Ó%½ŽÙÀ6៙-'ý¿_ ¦YQQ—üpÉãaV²ðj·äÑPû(´ÛÏNÿÍ"`IË Úv=[~¥§pÙÆ…æé -ƒÑóŸÞÁ³Eý¬Â)®l1TæÅÈÐ.ÏÚR}%ôy6¯úu½¡öžê%=of·SQ¼®üã·³Õt¼éWpƒbÔ¦a*.¦«ÛÙx*s„„-o¤ÉèñÿkýصnGÁ|OÁÝ‚•È`ÎK”xQY9uÕ.îf›ñ7¯s]äO¦À=Sô¢l¶;X;±T»vçÛ¯_É x)`eaQO¶›op‰Ù¸ÛÌz¶Í -‡]Ù³~²Ë:¡0›W~iï‘éÿ{4ÂáqW¡ro­>¯ÅE±–ºVÞ=°ŸTªÁûU¿½áe²þqú–ÁÐsu™“ù¼³€ºäSZ¥ÎTÛ’ Çtvƒ£ —±ÚÓúÓt½³ÿaq›°É›nüÍû;…¬ »òŒ¿}hOê#k˜…pº\oºù\Í®ÄÑ.å¡uD쾞}Ý®´XçQ0è–7».‡JþÞZ.7+xB£øª_AÁçwo—¦ll maÖÔÊÑþÓô÷-â÷"ì—Ø$BÐØëø9áÛlGôý8~9]o‚; d«º$‘-·iðç[v(õ‹ÂçsèÆzQÞ»ÈÅÿÕc~™-f6VÂ8Lèëå~¢.̦U#qÚVÍŽ¡JÀÇsd'Þ'¢Ó¿œìad¯ƒM éî êðeáK %¶™Ôðtq³êo%7D…ÇÁj%©»Z!ÕóÆI9T¬s¶ä %h¤¡òîº[\uô•.ÝЂ´OøÕ¤ˆ”!Ûe ñN—õü–2ºéµ#µ2Ÿ!ëj¹ðh0(`T^ß'Ôèp×^Ïc'ML ÁPu{m— ¹‰fãëíÍM¿’íØÄ]Éct%qn)ÂDê žªžÈRcØ/G9UÏ« â‚—ÇKUs5]÷ómØÆP¯Í0_l¡O ëºTup Ô²‡ÁæÞ•ëè$#[<\súõöj9•ã!¢q–¿Àv0ÂU1­À1jÓƒÅÂÍê^ŠñsχR–æ|ɤ—tŸ|´ÁÒU‡ç˜ñŠº4nÛŠ:œ;þ‰¿Æ®»~õÞtòwz‚úÞ£ŸàÂDdð™eÞI%/¦Ýïs?%ïÇÉHSަtÞ !öËé‡ ž{8ÀÑáŒ5E 9÷ÇúXæc½‚ëD¾J_1Y—ÝI ®ù½®p ZíÏÒù§¾ÿtþù#¯5ŠŸ¡(òX -Ç~`ö¬z–îˆ`‡ÎýLº¿=?;9ý@2¡H«¾~ôßPè•ÅGp¸øÍpÞõ«qHsQgRÿÕ͆Έz¼ÝôÔ+.Ôã®tÅÕøGŒ(ðkØÂÕíÝ:ÔÃpðµ¤GW{¯CÜØîø;œˆ³îû_˜‡NúE'~€¯ó4X ôÖzÛžœúxY||°£4rQ¢Pï )ã‡~#õ*ÿ»«^4x1®!bz7c!© |~KqÝd‚ ~ík<¸® ùÀ£êu 3çjQµÚ©`!¹”­Î¨z†²ÇìÆ—¯P7i3lóºóµDhV=]l: ÄÎ#¯“=B DǺ?=BHd7Gˆ‹M7þ®%;\Þk}ù×w¼gQéK“´Å P‡«ÔÈÐPé§µç¤PqûBP:î^‰&«[ó¡"Ðx¯„ˆôŒiš×o llÆ^µ«N¹þ³Å~³N(#•(Á¿`&=‚§É¹;ƒâ)´ŸovÛÉŒ#LÑéE%7ž”Àýî¢ìßbàJâ±Êñ -‚ørmWƒýòŽ(J§œŠ¿@rj&>üêœT±Q¹lZÕî3D.œM´Êa<W ñØÙÝv³¹Æ¿lT„k¥é|=½û6]É]¾yžIJ:Üîi¹ï+o±FWÝz*±šMóEý%ˆ¿ïéðe^ö¾èv=î–œn<åO°ŸýÄÞ²»Ä{Û‡–çää`öÖ“19ÿãÀ¯%µà†DSŒu¿]ÙØðÑRÖ†[Þq?ÙϾng|xÂPM8'o~•íYZúÔÛ2JY»[0Ò†¸cƒÝݨvn)~Œ€ˆI49®‡âïì³fnu½îYÜ >)úß”Ûjìƒ òq^ -zÂ?±µ­;ð=ºE³‹)?¦ænzEÖ€¯ ÚôÙýXC%j/I³ýˆó4ß²ëâÆŸ˜¿X¢®ã¾zHª/çxŽâµ-_-º››pS€‹jýŠãçó/—ç¼®ˆRås×(QÚ§±Ž~ª‘“ºQõâ`ˆ½Á®_-º¥ÄY\í¢ê'+›ÌÖë­/iâ ˆ¿t|ÖmßîTTÀ¹2®w†1õM¿¸éV³µÿ_1þAÕërŒOm–‰oh‡ò_ôãïSÎóéâIë@ý Ý„]SËHÿÇ^tyð}Í„¿?HüÅ#±Œ+»‹“³×' ®6~çHÉÛ~¼¥mýˆ §o¶˜[3^¿¥ÅþÇåÑ¿Žþ÷Zendstream -endobj -1385 0 obj<>/XObject<<>>>>/Annots 278 0 R>>endobj -1386 0 obj<>stream -xÕ[MsÇ ½ëWÌÍrU¸Üùž9¥d*’YeÙŠHG>è2Z¥µ¹;ÌìRRòëót˜Ý¥­RI$“T%|ó¶Ñ@èßÒdŽÿ¦I%y•,Væ³9¾èÿ¼zN_’ªhñ¿«$ogiWÉÙ#WIYÎ*Ç9¸JÚù¬qœƒ«$- í„z ¶É'bóŠ~œ—‡.ÔÒÁU‚vEø!qBè<ŸeŽ¡Y†ž¢P&4pÍ|Ö&•rŠP(©¤·FÊÀ„®nfeR)ç ¥AÉB˶ÂðƒP*4r¬¯qF¡FŠPü„LÌ“X20¡khÚs„–ho¤­Z3TÉÀ„N†¦œƒšÖ³<±†"´¬ÌP%8‘¢œƒ$´šÕpW’B EhAþ²‚SÀ%â„çð~ã„ÐŒ¼ØHZ5%F¯«F÷G‹(r¼LŒsýµð6ãDyN¶àH¨Ç`krcEEx½®š’µƒŽü }*é1Í\Cb•e±V³®*6r"ÆHiîæ°²c&–:5–ÃEQ×l®¦ÀJ@:ˆ†s²°‘“X2¸c[¦˜+c¥ÓŠzCháNX§Kš ‹’ClÒ”±è‹ÜDÄ20±K‹šÆ£¤4ÌéclÈÀ.Ì´’ë$(+…+›AXö“"pAŒ’ClQÐh•¥Å· O^JaBIup…,„…i7ÃŒ‘ŽœjrÔÌA„,Ê<Æ9ˆ¡ ®¦Žd sè¢ -P #¯ÆXø‡Ü!å¼(-š °vk2êqÒ`*¬.#e0yfÑq…ÈŠ©uXMo¬˜>¶Së°š^Ù`úÐ6˜ÚXqe)º˜BYn’K^íÖÖaL2¦Ç`Ñ­±ƒÅ>ËÄX‡ÁV%×X‡ÁBûI¿ƒEl…ù¬­Ãdz*åŒõ˜L_OfCLCQŽ’eÎÀL8ÚÇ`•ô˜V=e Ç: ¶ \äX‡iÕSRr¬ÃdzÖÚ¯Ç`3ž(c&ãÒÞË${ ¶.'yŒINy’U²Ç`QoÀ¸Æ: “ ë0X¸˜•Ç`azkë0XT6~&Å|©ì'Ä| Ì| +WIÉ|TIdÆ:,Æ…éË+(JF†Ðj¬Ãd\VÇX‡É¸´Ë³¶“ù2 -¼ÚÖc°mJ&0ÖaL”me=‹Øë0™ ™h$évN‹=ìY34É\ „²¼£1Òc°ØÑ`µ©Ç2Qð -eÙ²i#»:¶¬µläRĨ5ý’H!1iÂ: Q§ñm‹Í<ë0æåtîXÁ"Y•ŽujÙŠ: LÀ¥[Ãmè—¬ŽÃ¤UŽu,VVáY‡Á¢>Æ€M²Ã0¯8c=&u椎¶uðQÃfÊÀÔ \šSia¤Ç4à†æ_›zŒN¹à1Öc°XgPGÛÊièhAf˜ )p²ôi—W‡¡zN0†„4…ë0X1«±cH()álÊòÂIQ éÂ@Câ…9Y(FzŒN!Fg9ÔTÄf²“9 Llà‚%=†Xä -ˆ5ÖaÒ”‚ªc‹å°¶ƒmyY)K…6r4ù -’v*³&ŠÂn†ÅzÐ>3´¡­\@”ƒè -‘Ëq<5¨fõÿÖ‰ ­±4QŠ!æ©•øomè„ÓAú1†0rá 4R,›1;᣿U\`°#ÃÉTd ‘8Š“J±¸Bvællþ[Åã™'Ê‚89l!ÔˆÅñ1OŒå´?Wq‘ Ê€(i|´37Πt†DERß‚ÃRE:SÎ 8Œ‰0r?œ?:~†["Ma ð§ÉwE ,YžŒ}· Ú¡ÏtÝ=‡›kú1îÎZÈ–z9—Ë+É•(D”¸ËÉÀQ ëø™¥jª¯Ý*„šét¾^®/†ìœÐÒ2Ûw-g;T@åIlA»#ìí¦eŸ§ÑÏçlaì4}sÚ‡gD+Þ¥±vûŠêÑíÕ®~b3:ƒŒ òly!Ar«µ·Wt1­Þúó°§Dª5ßnßw€£z-Í -ðGœ²ý¼v/ºõE·ÆÿÅè¶2*^ûe†b½ çh ]¤YKã:â»ÊH!ì•Y ú›M?ÎúOR`§d`Ž*ò.ÿˆÃo³;H½ë‡þ¼çê–ʦ<º³Ó§¼ŽËÚw9úý¾¢>xG‚åá]kgSr[¨ÃÉÜüø·—¤U›¦ü^ëø Ï_¸"$Åb -;ý—¤*Dk-ÚŸ\_÷ë‹å'Yêx“RשrwFÃ)/ÜÁS˜‹Jݶ‰ÅA {›åå—øíÞ.¯–Ûšö>—“Ó âІÆëR0õ^™î&à_þú5qën*ò>QPçÇõ“µ…ÓãiÒ=;ù…”À]‰&™ä×õ2x*qŸÊľ£R8ÖšdÚt÷ãéϧll»އíjCÜ©í[¼ê/~ì8Œ£,µÃ˜Ÿ–ë±Î’â6?yÕ¯ÞŽH¾Û£ÓS²'ƒš¸7‹ÛÿÇ 4Y@vÚ…Xÿn â’yÞõØUq談dؾ—´ÉûäôÙÿ7‘Zd-ܧ±±–ü¶³BÒqJ.3cÕ}µ³,qÕ7]–/ºÅr½6ï©%<%EÒ—ýJPãïDÐÁi*¬o¯Ç¡‚nGüXÆ»s¬uƒýËXÜbZÝ+‡ÁRªâ¡~îø[T —Õ»Jí—ô?†ã„P-¶ÝšÔBf%°,Ló¼d1¬/—ïnF®.i7FþåìXf˱¼îFÞ¾ÂÕÓ&žúá¤yÝ/$Là¦-zu2ÈŽÏUôÓç eÅÝAÜ´t¼ÍÄ-ÆÇѵ+/Å/wm™à„š'ÛÑ:žñq¶80>{g?oðœjwþ÷7÷:ÿôÜT½y¼ØØ!ÙÙl°Ò›ïÿF“×M'ã U¦ù—8 W# ËñLZEuÀÆÙŒsƒ‹¥i€&:m\cx³Jå¸[žäYZÓûÛ¤'â¿4Ô<Ô® EeÙæâC¿vk®ü&» àþÆÁ®/2Ÿå>¾ïyY¡ø4o:8o‡ÎoìèC?n–ÃúÍ÷¤ÞÙn{)ŽÛ xh’`ë'ùÆß|þJ`ÿÆè‹,,Õ8½ûÿ¯Ž7`{þ¾¿¹;äïûF®;Ôd/Ú¼ {ÂÊ%“ëY&\AáÒRWèŸÄ\‘HšÝÄãÀi}5È Þ Y¸û8ŒÄE…9ßA{M²þÉn©>£­ó—ÏÝ62úªf Û¶‘‡ù -½£óBö ºøÄÚçh߯_ò%ê•bmMà ®0¹^p{ä× ¯8üVt“«‡HŽð¶Mwç'/OyߌçêusÉfÛ-þ`£ûµx9+þèóÛ‹åb6Ã%˦.ñ-Nâ¢þ½œÜ€ý<ð´¿êåº<Š_g×åV,æV=íŵҲª» ëÃòðu·ÙÀ·9LÎ’ï»õ;žoÜ à}Æ×÷4—›‹ƒÊïGadWKà­[<ÔO^_¾fóùªáV½ ÖÅ•­ä´úfg*Q?zi¾ôàN{Þ}Ò‰{ÓF5&¬Ä 4U—¤ñ¤^‰ózÆk˜z~'Woª%ž)íh¹³Ý»-:}×–Çßµ ›×õ÷{ÈEQ,ªDÿ -mº(w.©oÓˆŽíB@Áª–]ÍY?~XÊ; -IZ2¼ŒÉ›Kc>/XObject<<>>>>/Annots 297 0 R>>endobj -1388 0 obj<>stream -xÕXÉnÛ0½û+xLfÅUâ©Hº¡‡mãp7qY©-èßw8鸨}ià$€Ç§yš›~M”hà_‰V ãÅ¢Ÿ4²þùö1Žoüö©܋ëI{áœôWÁ^¨Æ³J4¬1°Fï±6NvðJ×EA´¬`/‚•¶âÐÓ&ÀXöAñ”¸äs_T#ƒðLÖ8zêd[³ÖÇ,U¶î…nÔ‹Qºà¥ÎQ&ÀQfN)Y/d2ì ¨Qz‚bHœRˆ2‚SœW‡ ×YЮ8„ÎC}{h"ˆv„4’WÈÇÔî›:”µë•tYâH†É³,³IÖ4˜×$‹ ÈG2LÖ˜e™M²ªÅ¬'YE–8’a²Æ,Ël’m Ö$É"(²Ä‘ “5fYfQÖ†¦”,–Í\’)d³la“lÛ–’YE–8’a²Æ,Ël’õ±=¨Á,‚"KÉ0Yc–e6ɺ8í²,‚"KÉ0Yc–e6Éš6•,Î&‹e Œ† -UÈ«Ä[Ø$«m*ê (²Ä‘ “5fYfqÒ[ô„V‹¢,.¦™kãÚ^¸ -¦H LT‰†ñ• ®‡Š½šM^°à‰Ù aQt·VÌnpgáÅÅlþý~)†âí°—ëqûjö¬$-ZMÉlª£ÙÅÛ»ùøÜÄgâžz rs!´‘qLy™G¾-†Í¸Z߯q×H« ={µ»¥—Øü’v ÕÁË Tô@Σ Ödôe>.î–h—zz‹<“?e“´œj÷¯¼Ù§y{·šß®‡mNœ“FÊÁïa‡™‡–Ê Ûyÿ}Žå0Ò4=¹]n©J°£Cf±Jÿ=YÊ6) \Xå! \U+Õ~U?­ÇÍp³[Œ«a}r.u¥H¦m»ç¾Þwÿr»ÝõÑylL×r]þ{ª¼€ý؆UÒDåy5[nÓ”¯šêˆö³Ò9Ý’š) ò¢£‰}¤•ô!/*ŽÀqÁ=×48– “ {Ík¶×Ñ€ôù„9ž”šíh@æÅ”–ë£Ùó ›æ°Bî´–s/& tn8Z!ÿbjO«P{~á´>l¹î´€ºP8- <"ž×>„ëÔa…àÓKL~uÐßYñ¸§´tg±·*›âi›'û*\’N‹·±³‹§«oF𥠃áÜõ¸º¿áÁ¡§ ùp7¤+|Ó+g!8nïྷ} ¬–Ö?ÓÕààLDÅzý¡£K ¤½3Fhøçã•éúòóÕ¥ø²~.£x7,v=\Oçùª`àË ƒç§mâã«UŒéýlòuò9ÍI¯endstream -endobj -1389 0 obj<>/XObject<<>>>>>>endobj -1390 0 obj<>stream +1400 0 obj<>/XObject<<>>>>/Annots 59 0 R>>endobj +1401 0 obj<>stream +xÕ[ÛrG}÷WLåeª==WòiK¶ì¬ª|'·ô’—EYŒIŽ–_þ>@7á7Š-ÉÚ¤*¥Ã3Ý  Ñ3ùï#—¤ø×%u–äU2]>J)~Ñÿ¼ÿ~Iªb„ÿ.“|4¨=X$ãG.“ºêp.WºAiV4i^†˜´.ΚÔ@ L³ÁÈ,L:W¤D1 qD•Üå¬õožQÕR#Ê@ZŒFG’g,«A…ÅÊ+èby:ÈÄ(.)£ˆa©â „ÞM©ã \&à +¦‰œÓ`ÌHZ f:­Å`+²§a ^&YZrÃæ´M¥#kB•ŒVeÀªD¸LF#§`¦ã~Æ’JZL9Ø×°ƒeØêÈŠ@Ø&òˆAÈsnÑ•´Ób ’²e‡‹QÊ;]1»šÖ@ t9FÒbš–vÛ°ƒ­sаƒÅêvf©®ÙÓEQ$Ï9—Á£ %ÙDEU°k²‰¨‰W;–äI#„4©Ã‘´,ö²²¬Á`q¦`@ØbÑ3·,ô˜wBÇZ 6«ÈF‘5,ÎÈŠ!xÔy ÑžC(g ÄÍ22´˜T-hKu¨Å`«”v&²ƒåPeXƒ¡Œ£ØYQ&'ËzÇ/De<'Ò+g *£¤WÆtEE;Yƒ1¶dϬÁ¤ ûKd &exß”µ˜ö-ë¬k1ØQwf‹‘àð5Ùb°eIç:²ƒ•SYƒ)¹Pì3cf…$Š}ƒ¸ž«)üGÎ@DuŠ‹‘3P6ÇNJ›0X$`;Ôb1?FˆO‘#Ë!Ípc à9*ã+œz’e¥¬œAbu\q ç´0ŽqBNs‘´lY“åt¨Å`Gtë,§HªSi+9ó + E Ä@¨àжbM, ßâ< µ,RJ‡5ž™‘uâX -2Q$Ïy”´XEЬˆèÇfŽBXœØb:,t #+ûÍ©ÕGrÉ«$ç(° %¥È2ŠW‘´˜lD©$²¼¤š«¬]2pˆ#Ô³ô [(B„8Š5‘“9qSï£;ÞDZ¡F ãDNÆáDêy§ã)~ ã<‡ æLä¢zѤҦ9©¬åQ[@ %Ù\.wBvCêóùI¶ ¯˜ÉJ2ˆ=çàª5¶„ž$Òbȃ DÖ`°#ªu"+Ò"c’YeQqQÏ9Ü+r ô$/j°Ö‹,Œ°,Ú !†ÃâZ™±Ó KÉØ:³Å`q),,k0º˜±SQHg7²l +dR&ü·Â3´k9åßJBOäèÔp’ ()Äq’Žª ‚|£žÇ« žqz”2‹¡\ª“ÈEÍ¡á"„ PÎp,”Ð+ÿ­‚xF. JˆÅpü†Iä"ÄbØwôizš’ãK£wDþ[óŒã»ºR’Ö䜑‹®¶è¨‘WÒ”’ j”3î”f kêiá¿UHÏ8ø,z6ô/a2r,d‡CCÇEH +PjŒ\„Á’ʉaýœ¢$Ý+½,3sµá¿IJÉÂÀXÈyô71O'ž¼@¹“&“K„”Êh/×E2¹àæ5~ž>ž4ç‹YÒ^&ÏÚÕv¶Ún~üQ%ªQuä‡e4ìñøøÕÓcz™¾Î¨/Ž“·ëöÙtË¿£‰QŒüï'ít·ÄœÍvÞ®ˆ¥ê'rðsþq¢BWE~ -s8óž~œ^ɬYÒ8ê£ ‹Ÿ*ßj^£¸ai–ARÞ¯ãóÍvÝø­Áµ¤|`Â÷Õá_2²öQΫ.§v¡Ašÿúm¶š­›ýŒ~~•û­Iæ«Í¶Y,Ôípøó¼~`ªW¬#^ÝÄÝ:]m×íÅnŽK9|`2ïoWÍ:@LݤgWÍõv¶¦ß"Ž„Ç›‡C'ðßígz½¸à’ɶ¥_p9"’SÙGž µq~oV<:ÃÌÏ8™m8¡!'Ðp÷¸×“;"ùž¼ˆa¦Â5gгƒTˆ>b’7çÛf¾š¯>ÐPt•Õ0^[t {žÆMY³i–ç ›]Ë`Êý»3ÌŠ#i1¦¢ë¸¯+rÍåüÃníåÇ;‰Rµ•_SÌÉ{ƒ‰E%¼xèn º"¬–õáçó­× î£~o·W3ÚTÞè­øß6ËóÁvàíFYKr9_„§Õ*7óvñû‡×Üšiÿd­ªã³ã ‰Ž†ÊJ*.%™ŽPgdÓ–ï{àdý•wĪÅ|£»‡†v‚ÕÁÝ»jÖ3®•èr2Ró©™/¨¢â]Ž<”Rÿ ÌÐcýµÝq˜ì¬ÍlýI¢'šäié%¸­ÕY¼‘p!³›\ÜÄDpØ*½pnq‘u>G%ŸçÛ+Òúäiøñév«ù—ÞƒÓÅ…"ÿŒ~›7§J|GxCPÏ¡ë.åÚârÝJÁX Ð4ðžƒ2Þ ë'oÆÿd©í-Iàìòìÿ†ðQäÁÏæ«Ñý¹?¿žÈÏ6Õâçìcÿé7ã'ÿŠëA,mgÛ)ŒËR )“w5ÛQê°ÇßÜoÈwÂα«öíxvÕ„M.ë°Ø)Ç@ÜSýir“ã…ШîtÒ®þÆ×¡8k×ÿE Q]ú9¿)é­Žëï#j‡vób½ØÕÔ8ãi{Í¡§;úÁé kŠŸW÷.ÿ!ƒxÐHÜW©Ÿ^¶Ó!å=˜[°·X\óH—p/úV™ê+•pðÞíæÓìZhêh©ùlÝnxÇ:»8Þ¯fìœ8»µ&§ëöóÆ-Ýáä Í‹®:÷áiÉ»?¬ÛÝ5?n\$ùæÌvó ñ2ødö7ï.§…LéšÃ³mt uŠ™µNæ›én³ñ—|¼„@ü[T:ÂÙÒš&T4F‰ÿl¤êÂk’2(ÖJd²w’Cí—÷³e»•œG)C5p¼Zµ»Õtö ïª"äÅëfÝ,gþ¢„wx‹ àÐqüáß\AeüÖÛØ WÝ ØKÙ4è`á[ŸèÆ_WS6 ÎP–Ë,u`~Ø{‹à›¬®o÷ª šäìôõ˜ŒŒäZç>Aï­ù3 ×³®­ë÷ª›¹zÛÛÉë7VMrݳ?!x›î•ɲ]K¨±n¯šÆ×(zßiWr¾lÅýûc÷û¯ô$uá4ù_¯Ûm;mD ‰ëѯØèt5ֻʟ „\Œw +±°l¦(*¤f/²ÁÐ}Ç.¹’¦=Ê6ºnÓ+t^ãxÓ³TƇò)y?Û´‹vwо@WÕßþ×¾îG+<¤„û÷Ç])›8Ñ5¾Iâô¡$$Nœ¹Ü øÑËÑ|uÙ®—±+7Œê0à¢Ù6ç8v§ÈB +qÜÎ2©¾ +¶ûœ÷»6½–ÝOû›n" +áÅ·©Êq×Ù¯ÊO—×ízÛÈý ­§xgy´ÆG q-žÃãóv'•ÛG¹n6›ÏíúBb*jØ;¹Ÿ{õ2|°ÐÑ®W¤L|3Íjh¦±”,<>|)4°Å‚H J fcnsÆ×Gåý¾̤·îükÙðÊœöEYG±éÕlÉO +zZÚz—õ~&oj7Wó~“Cß +Æ&à¡øûÏ8lâ³îPQgyÊõœ•êºÝÌ¿O§¸•sDÅÿF¥µN×o†¼I2|г3$ÚÅÿ×K¯qxi‡f¼2l©ÇÀÍB½åfÒ~ßS™opöÊ|¾Ù;ŽÞ¶áö•B qh㣶–83u@ÂÆ!]£8£ïFhKña©Þm”ÍrZèÈ Íûò꺧^§Æµ7ÓCêñ‹Lëlø4¦¼·¢8(…nÜ~öô +>…—y1Øl®gÓy³ êâív=?ßù›ASé%<²eç:oíÀ“ÕøŸønù~çµÍP‡wƨ§êó/ÍòÚ¿ŸÃ·UÚÜxyrú‚CüMÕyŽ2æþ5>¿Ô®Ç!5{¯w¬Þ43>¸õ€ìºzkL/®kº›¯¾Žß½¤g½ïö4}O”ɸ¯òä¾åϲOS|(Vá¾øÙYøÌ,é}V–£W—×鈾⚓¢Ï'Þ=úšñàìendstream +endobj +1402 0 obj<>/XObject<<>>>>/Annots 102 0 R>>endobj +1403 0 obj<>stream +xÕ\Ùr[G}÷WÜš‡)çA2ïÆe^¦¼Ä‰§¼hl¥<©š¢(ÊbÂE¡¨8þû9ºsIÊ–¼(™¤ÊÖáa÷Ðh4€¾òo÷Ê¢‡ÿËbPu¿˜,îõ{øÄÿxýƒ|Rô›þ\õè°L`^¼¹GpQ´½GpQ šÃ!#¸(ʺîŒÁ†Ýi§n1Óe¤‡ V*¸“­¬ªÃ¾TW–£Ã¦è;ÉX¤m1±„EÚþaE¬=´'fiÄC'ÓÖEßIØŽd¶4ЀÌ\ÙÀA2†<ºnÄ;@b /Š +´Ä2ÛŠb,c°£ÑáˆXSgX«é2µ +BÄ•e#u’±˜Wf –°¨#KL,aˆTaÌ`ƒ­¬±„EÙaGªº/êÔ ÛJ8¢ÁE1? Ž Ä-UÈlS‹5 ¶ýpßVAX0qæ÷AÚ@Ìæ.Ø*ˆ‰+±ÞÐÊIÙ>m9ÀŸ"+¼Ó€Œ#ˆ˜0Aõ‹Â\p7èïAÌÙk±³ƒ”ç5£ž*ØŠû9•ê7º4æ4 +ôq‘ ¦œ† ÌiÌ Žà¢Éæ Ž ĬÄуd ¶¿Å;x,añÈ4Š™ƒmúð+b ƒ…X*Æ`†:c ƒ6©c9+ñ±x®Ú‹*ñÖl¯ lŸ83¶su@Qç° 2„íeêàŠ‹ÈF ’±¬ÌH$õiƒm*Ñ2XÂ`—ATa áౌÁÂ;;,aب¬:2k¬h*Y.8¨Ä +òT‚¢¬ZB¿©"uT`gmZlDÙÖ6‚˜6q¶­'u`=’`˜ð™³A2†<ØÈt•–0ØV‚±„Áâ\+™% ó6M‡5á3ˆTÓZAœ¸Q-ãœ#ˆGj<’1Ø~€X¨'‹,c°UÝËX|eˆ¢±„ÁŽªîXÂð¤^ ?‹±ŒÅÏ$¶K,žÓ#VOzPê6ÖØ€‘ LQJT’1XœúIçÑU',ftYÂbÆ¡ø„e  Ôa ƒŒÄÛ|¬©=™…ûE¨“¸Îû;ÉÃY l°„Á"Á†Áe ˬPÄ–••|"XS§i㌮„:‰“Vr’1®%'–0X SÄ ÛBÙ˜™0Ø¡Db CYì}ÙÇÚŽ­+ É;V¨c8qšßÖÎÄ#›žØÈIƦ T Êd,âJƬ „ !DA”8¨…îALjÎIÆ"®®L°„E žlVgM $@rªšI„@‰ƒßC-çbRÄ%hé$cWƒl°„E\ ²Á‹Óv–0X¸³ªŒ„2?á ¸2™Cr7Иg• ˆ;€¦1±ˆ+³K,Ö©e–°xg{&Æêf“€â ±WCaædI+ =Ƙ¶'&†2 y,c°x5‘úTíU +B¤Ä%œdì"9›DJc-ÂÆÄŒE`‰ŸÄ;*eébfÂrI.,c9ŠÔ>ÖÜ¥µZP}¿Rî’¸r §cŒÅ ¥1Àl`ŒSö‰‹²=¬>±„Ábf˜"Æ6eyfQ6c°Øe,3c1…„ ˜YrëJómp²Ó ˆ%"BH\Ž ¶VàÝ:‰º‹£yÎa&8‚°ŸæÖA2‹j[ʧe ŸóÄŒÁj Dc úˆ*°®Ï̬&ŠÄ«å0±„mݲ=Åi—é“dÝ$/±ŒÁ"½f3FÛ“xcƒ…÷0kŽ“ÚSóJA8xâ,ã’1̨°6-$ñSµRÓ&Îõ u ÄH?ý øÀÌééAq)z‚d,1€ÛKØ¢e‘1– ÖÈH—0XšIYÂ`µ[Ïe :—ô\ ³ÒCòÞ¡™{|ˆ˜b\Ù«°‹‚d,ÊʹM,a°hg6Ì« KXL!gJ°ŒÅÒ!–0XÄ–™±x¿T81ÖL2Çh©(6µ + ’1X´vðPÊXL! 9b ƒEb ub,a°šlkNŒ-á›Jö‡ÌzˆD<”ÀALŠØ'öŒÁ"æa]ƒ% që,a°ýª;–0ÖFs…Ë,ŽZÑgf ÂÊK,ôc©ƒ…w±FŒÅ'¤‚Œ™ÍÄX#0²€•æ>fâÄ¡›Ô×Å5Ž Ú9r²Æ8‚àäÔ . _jÓ ‹ñ5b¸8ŒÁb‹Á“‚%,K£Û5XÂ`µ÷cmcT²Sã½T1"q)&8ÉÓ–j£` ƒÕì$&f,KÝO,a°Ë𖘙0VªÃ[œe V›öÁš²ºÃ³² +BÙÄ¡;Gé$c°p28„e E4vk°„Á¶êÁ‹.¢{°„¡*?WR­¡uË4µÒŸEÏ@)ÏrFÓ¬4ÊÆË˜@©éc´}™ÆXFåAQ\vfpÁ!«IÂÊÚZ4N·lŸzyú³ŒÒ ›ÝwΣpÖâ:M&ÐG‡)pæ\@ph‘·Äeóø8‚àÐ#ÀíYžSŇOzb¢?»ø‰Q ”Åw*Ý Ø|&~p*~šÑÄNÅOœÉëA_ŽçTüÆzjjoýÙÅOŒö! ñ5qpJ§«¬§¥ÓéÏ>]bÐI@‘›]0ú…(Ã2EZq¨x2÷èøÞƒ§¨zÅñþ†Õ4Åñ©ÞýâãÉýãñÉ|Z¬ÎŠÇ«åfºÜ\~wü F!U+eÔAvPɰûÏÇ›éZ¾#; +óa’ÓûE}(aˆÁŸ.í;H]õ(}8[ž­Ö‹ñf¶ZÊ—‘ŒyÀéx3>_NíáØÑöp½aÙBQÏAÄ<,õQ2s~ø£«Ùüt¶|—¤ÊŸþÙÿU­Ht€žà– +ÕŽ +×SÆT:£n’Ñ6çjœ+å¨JŸ±±pñ1ÂÒ¨ÙïTߤœú-íÌxàZg³wWë¤ ®0«´vw*r÷aU_WgXvÝ«ÙY›Ÿ.“ܸˆêUÙ›/æã6Ì™›;kT\Œ//֧߯º‘óµƒ~Z·•îÄÍQY§¦ËÉúvԩ΂E®2“§IÓ㯳ÈÕ@Õ– +"wvV»£úÓMöJ¼¹7V±\-&«ùÕb)sa#7möWñMùPRWül½Zè‡8Ê?êÙsõw ï7߯­³Iû¡êŽm–ƒÊ–ñôD¤–\«7L öŸÏUÄ!ßó«w35Î÷ì]g»;”ÔCk¼»¼h›í,ï_6pšnNä;*üt9~g3tÿ¼;cäI¶|"…ņÓzGÙ³gæqxåÂëøÃ…é7rÔ8‡ëDÙòr3žÏã(E7°I§ÃGDºCªŠÐrW¨J/7ëÕéÕ$r€¯Ô¾‘fÕHµh‡¡Áu O€ÆK ó¸¨h†ù,s>^ëšSè(.§–›òtd½2GŸùô÷é\>Åé‘ôçûH¬ôSÌœd`¿O×z!ã¬s0EìÖ M8Ë,x‰‹åT¢Ð Ž —Ãáéjóîçï\¤/:ÀëžÌsP[’àîqqí`rã¾/NT>œIe“%«®hÿ¶~Fo+ñò¸Q3¡éßI‡2^*ð“éílYý*_D3Á¶£õl1^Û’ bÊf~¢vÉVñY%™^¯æsKƒQÐâé‹]½®ä9žzz\ÉÞʹ1la…ΰõt=ýíjv9Û¨¡¤©F9®¼žŽ=iÆB÷Râñ¶Ò§¦5ÝÊ’NeH»­Ñ£ñä×wëÕ•í¤ö‹œðS"Ý’OàÖ´³(©2ŠEÙM†Ã÷eûáí¸õœ#ü½”HEº~‡wÉ|ÜR›}½®Å!*Ü1q²×¶×íÚúæÅxr>[ªwJíÅâñúêRŠç(N&X{«Qq•ΜB+¢Z”NÿZÍ–¹*ä@ñx>Ëu.R»y›•hƒ(ò¾õ Ë£öê¥@p#{é—jAúšOÇSÒÕl\9½/¯Æñ%ˆg/ÌœVGwÊÅÕn²ð– ˜Žž›ë÷Ño&åqÇÁ +¹£ùß^-`þƒ§ó“u‘ÛE÷þ;Ò÷mêP|T«Oµõ*ôa··Én­|×îsEód±Ž¼#é'áíµ]ÿë.ô>“ÔVqã?î ‹äÚè÷äs©8Z¯P.¬¬nh“îÛû߯×+K~Ð ó6Õ>¡¾ÅgYQ9÷;[¼¿ß|¸ÜLµ6îä2G«ùl2›Zö†²Á‹}ºÂ0g³yú2]Îc¾…f×ÌY[Á†÷TxeÛÚ¾=[LÇb{s`϶ì¯g{„;ŸÎ/Ô±Ñðm?/5D#wõ”ø™‡ÃÆ[*鍊êH¼M1ºut¾FÁ[}\§âéc7AÛi2ÐY²ç-$ì÷s²™Ò|¼ŠæC²zºzŸwEt–Fù*ßûLòÞ]›†‡x¹hw—f…oúwkÝÀíúH ³{¸¾=Ÿª\rççÛLÏ}¼ çà¾Õ=zò8EÜÐt9žNOUÜ¥zéSÙ¿è{Iq¹bï8ÄnûÄ_éû²Exå¾Ð‰¶Rd-}Ñw<„ÎØØSîÛï)?®ÜlEÊÐùù{Žp,„åè¸:Ì­Ôϵdöü2qw[í–û÷”x‡…‚ârj'0.YÜø»ùØŽ•÷¯Ï£¬9N¸ö.«“ìkÈ™;¾–ÛÆœ†|¦¡ÖÓ ”­cë5KüöËì}›ñrq¢wÜ»y€T³êHzFeêW®{\7®M劼ä¶eÝ óxÏþÛñ“SëR޾9O mIïÎàânÛåÞÏ6ç˜ð›ž?òðÈ–¨GÝy³ +å¶òψ}òµåuW4©ÖϹm8?ç~7È[>y“B´W:tÑ=E±˜.N¬qW«reqÝr­ÏÛí;yÙš(¿ D¯H9‹UÏÕ÷®öm ½²YÛ+!H„›^¾+¼@NÛn=ëðúF¯Ÿ¯¾öõžLOfæµ’”·ßhÁ¬f\Œ¢÷ƒ_#ÜÎøþ#¼žžþh-§?Å;iïãÕâÁM<\â£Ç„Ø.x_4È_Ëe?sž´®C\~ãxÔ×ïP…o/+vâ6¢šÿ°º²–gª¦›Éƒ_×'í!òH½§ÀÛó^ƒ~¦”Ÿ=¬Õvƃ§x]ß5Äû5þi¼q¨/:¾yøâÑCé9ÿ2lPnL®¸4ò¬Z ß?Àíñ6Çl&kúýñ½ßûû 5endstream +endobj +1404 0 obj<>/XObject<<>>>>/Annots 144 0 R>>endobj +1405 0 obj<>stream +xÍ[ËvÇÝë+fé,aÞ3‹œ=¢X9íXtœ-‚",ÃàaÙï[ÕÝUw@Ð’%‘rrŽÅ;wúQÕÕUÕÕƒÿ?ʳ)þŸgm‘•M6_=šN¦xbÿùá_ò$kªÿ]ee?É#¸ÎÞ<"¸Êêéˆ#¸ÊºzRP;‚«¬o'qWY>mlt1Ør:jÊl#s3×¶„WY‘Û–:PY£CˆRLê¬Q - B”Jz5Ž Lw*rÉlUM*f ƒíò[ë8E1i0¡¶AÈ„¢aÞÉ F2–AôàlsÚc¬$§—3rm%½GP— f`–,A X4“–HÆ`¡Kfu:uß`¬8l:‰ëºI™9XD(˜BF'Ë ¦çl²+Õ uik>däºé¤Ïœ“}P£/Y5ü¤Á¸œÓ}Ú©á;G0îçt¤vÁîd,*ïE~›L‡1ØJTN,a°m+šô¶„e—Ô0gƒ­[Yk4[•n[µ×läºVækAL{¨#’1X5voÊ,¦‚éZÇŒEÔNá,aUöŸ³ŒÁ­ƒµ ¢Âÿ¸Ý*pQ#–Ø8‚"j)¢Él¥Óu–°SÂGQ[Â"Œ¸3gÃtó–l^O7r­ØwmAx>ÙØÎQÔP¬!c°e)Fæ,a°puЭ³„Áö…¬‹³„!èTWÍXÆ`ቹgÙÂU/ÎBFÅ?èžqˆ-Ü£™sÑþ­ RûlÄY¦v +¤O¥J oÑcT +„R`ôΩÇH\ØéN2–ÉÔØÄÛ"° ÊXlD|¨³ŒÁV9V›XÂ`a±j_UQ©fÕ§`ö•¸®‡Õ:Úé΃$êV +¼]ä™#1Ë\–Ë2‹= 9K,”=jKX(vKm C ð Ü3c°u- +´q5ž—½è<ÆóDTç‰SÙœ#ˆ %b™“¡S8IÎB/ +¼ÓÈ…^Œ#(’ðQ:msµÛЩï4r¡ãJ§¹ÌÔÈÐiÝ©…„Nx§‘ ½G69ÔW©æSVâz¢ù ª5%.ô¢/ +GPt*©…7d,rˆ'–°LH×Ã:f ¶—ŽÚ†ä’Û9ËX̧…ÅKÞOElÐnYq)píFö‡1#(¢¢#ƒÅRŽX˜.ü0w&”‡SCXn>¡È…GCb [È*½HCÆ2!9p8†Dw†TàCF.Gp„$F2F·ˆM±Úm cyxÖmâ$z×™“ŒÑ-ì†ÙÐmòpm¡À»\Ž4»Ã•7U „¥[ ØÎêŽ(ʧ–º#§‘Ý9‚è´˜BAN2‹ø6e–0ØNÖŒÚ3©F=3–!.ÓÛ2‹ü‡gŬF$jKl/>‚XÂØMè¹ –±Dn /Þ–ñ +¾“uU‹’ƒ­Åa9–§¦³G¡À—'rØ\9|€¼(A¨öË$c°h‹°¦Œeyä$I,a¨iÚŠš¬-c°8fð¸ŒÁÂÀGm ƒEtÁâyÏ„ÅubRÆ2‹É1ÛêÒz[ÂX$DX¨š¢Š$ žs!ªú-'‹š$êK¬›‰%,Š7ë,c°8‡BM6aÆ¢&©sKŠ€ûX[Æ¢¦rÔ–1XØ/”èm¥(’cÍô¸ ZSàJŒLcG +–ÝìÁ `hߊ‚‹jD_†d JJï*K,ì‹ã=‹Y@ýΆ‚ÕÓ9Ë,v.,­Œ U’WRä‚iGÒúSn$c°È1¤±aÈ"‡vàWtH>däÂÆ´!ŒCÆ–r¨ƒî%Œ¶p™XTg ‹þ$N9«^=Gª$î õ˜˜™.At‹x ;2’±hAÝ¢±Ú-NˆµýÛ:ŒÔv‹Ì(‚è4wNÕª>'jUÿ6¥F&LÏ(‚è’™sÁ¡¬”çœ&9ÞÎ!´‰eï½N² U]zýÛ&™|ÚaŒ"(‘øçœCpšp8ç¶POíb’8sâÖD¦%S!1“9‡àJ0çÞÚ#NGÀ3›×¿MðÈI"˜wNOíTRç&ÁSÁc» ©qeå¤~ìœC\+ï"Ž*Ì!‡” ˆÈ=={ôø’Živv‰Ô‡{ܵµUvv¡÷Žx<ÿælv~½È†ËìÙ°Þ-Ö»íßÎ~F+‘\ZÄf'…4ûæÙÕìf·ØÈ;’N ?trñMÖNäšøf¶:ŸéKØ&Uzi¦}£S}|Q_ÂÚ§Wž<#ÍPÞlÓ£‹a5[®µ3¼8-cËÕbu&òøJœ,**}W`ÖRMÄÄ4„™Iæöl³˜íÚ’†&>Ý]é#9ïõE|6V7û(-.‹¾Äl>öëöQMê:Š=y¸ÿÕ¥ ~¯1–5WiY}ßÛíK¬“E®Žu zXl6ÃFWÅÕ®ˆŠx8F#%yò)ËÓ®ÝÙb«ZGøhl™~öj¸–íódÛÅæ—`ðâMáwûQ…¨7ñªŠÑL +ÔUXAbFkw’۫ȼ\¿ÕõCtLfü~¹»RAPIœvqM·«óùõ»X$l¦¤‡’ŠÇ1 uÓ–ì—õtØ-’%Fù¸£¿ÀßAr‹ ÉÞ:Å(çg;ÅÓ3µ\H¸ãÔäáæÛÅÅÿi¹.Þ©™À'¥‡ôžR,mîGéu-³!÷\ ™t“à¬àr“Mÿ{X®ÝÔ)p¬¥£‘°§gú ÛòÏ9P¸?ºQ<@!%7O‚ öŠ¢Esïþ0hç$Ç=65©¥8ÜÇ';[_èd‘"± \ ïu+!`¹7Dñ@%ãÀÔÞÅ™¾y V72çý>`$ty(ôOW¿É«˜±[øRg‹zÔ´K¡xwB –hœ/v1l#´µ¶wW35¤QôØ.æûÍr§ƒ!ͪ۔ü]†GÍÆ¶R)ÿÇH3šü~6MrvASäqÍ»ËyùòeP¢‡éâ»›ÝrXÏ®e†X~Ü×DÏ0Ö—Ë·ûÍLxaå¡." ø•þ­;™2–n½Û ûyšnãÛWšâ‡†­{³ü`Hèê¥ð)÷[Y–ß‘¸ûž}ýFzÅéÈ’c8xÛÝø@$íØl½Ø½6ïÂVFkîÀ\G÷&xú¥5Û2ivùR¥¦ŽCCP{ý'oë‹tZHù͇tþ|êÕ›±$·õél¥y6RÎižr²Ûázo¦Œò‡¥àáXƒï<ƒS= ”ekx³ß„>1ºy²×Ë_¿Z®÷¿Šº¥œaN–p­g`9 +ÝK†5’ã¦ãP%ñ"ÕZúñb7|5lÃÁÖðWYá(CƒòFö =«…"t°YÆ_&âJEç¡Ù½(÷ãL»)e'(Oqö€õ˜„Pz0}Y›|ÃÇtoÅÉ£r úê˜ê×Û-<ÙüÊæ/Åæû¾ sœ»|4Öü­æ¨;P;2w€bQÚY,à +ÜRÚývö2mūǂî5R¢šÅxÁy NcÀHQE½ò 8Š&œh ¸£ñŽÂ!%,+UuÎb½×Ãu\Êìt±{úò; {|vÍŽêñÙlºó}÷pÖÐè¡æ5~ÏÙqQ™œÆD|õúÛïÞœ©ˆ#¯}¹ T,ü ÞÕÄÔæù±}6­:Èà+FE'C=?Õ%áãÑ«axJEryòpöu‡xQ\):Pàä©ÿô2ˆƒ*µo.’÷[ý×(Jƒ_°­…u¡zÀ·Ã{YÃÑð|ƒnô\#/q¹_ëa+MF̱“òUìš ‰»AšŽÒ±‹ÅÍõΆ\(Øî¤j®sÃm‰¹ëc¡IoãëÈ!»*ÕfîeŸD…É7˜%îðx}wXŸhÂ9ª’ò:+õVýûOĉ;ÏÆƒž4UÓ¸iåBÍíšÄGj:QU«R¼˜¦2¼É-§n«Õ\Æ +Àvdß.«ëÅ6X>ªµÈ²Lç¬püÅ=R™ßñ¢&KùÈç@•·ãØ[0Ži>ÚŸÐð‘2Ö‘4 ”-Fõ¯Ù7ëÝrîgzÜú&¬ü ý¥.(Z-"á*áî@31g&Ÿúzö.ì.Á_Ë[‡¿Ü)ñÅ‚{M½±A-ÀdGTóyê¿Óæ©’ŠOní¿;üvzUWâ“ÒCÕݰ¸ŠÓzMØ øÎ ùý©ÅH/o28¾~ÙŠ‹]Í!m;¬@îù5œß°V’ÔI‡_õß6wOõ8¹¾Ç&øÐ%ª•U¼ÞñãéËÿÉ£Qxþ~±Y-qSrC÷tO—áì,ßLX¶C ¾lªÒ!?ãtŸëCÑÉà³ »w}2ŸG?‰/>ÝÕbPyÓ"NêØ^-ãù]~ äO9÷¶‡¥!It-/ƒš¢sMnÿ¿ËÅûçñ1–DŽÙ9*»oÓ˨â›$]ãsÍX½1]G3óœ;;zÝqÝwûŽåìzx«£Aßeõñµö µiºŠî6éêX¢t$›ù*Õ¤…‹ê–·ó]Ê’ûD(òc«ôÈ«ã>j{5‹…,|œxoˆ¨®"ÇØHaÑÉ&…Ýe\G•1¼_/6Û«¥^ãÄ^Õñ:ùÁRO¾Y‹4Ÿ&^¸Jä¨z±Ü,æ»a£™/~«bŸIn$›_6RSi[ЉàWæ£%…«k…Mç³ìE:G#³ÊˆûÖ´ßÍ›î~Ÿ%að›Î.áÿp̼%ÏóÑBpV|[(ü–â“ó§Ë›dA>=6Çx&Mæøz¸X^þ–ü3–&¥Ùñýö‰ßýOFŸ.à±–m(såý8z…d¦H"ËÍÎfæ7XX^;ÐØµ ºq,Äà˜‰£ãFÏT¸§÷;…ã.vn_6ÉÄ4]‘®f[ý,@.Útót3Ûà²s [Ñ÷³´•¢M!|ÏòUõrÔÈf»ÝfyŽÏ»4ãdg5»¹I¶ +¥7qIÙÂG=kµ°öø>A_©áW UŽ)GðÚ›'¯Ÿ>É¾ß ?Ãçfχù~…“ëpRÔ=Â;íåõår)SþçÙ£ÿ<úÙjz•endstream +endobj +1406 0 obj<>/XObject<<>>>>/Annots 190 0 R>>endobj +1407 0 obj<>stream +xÍ[ßsÇ ~÷_q}pg*úö~ßSG±ãDÚ£Zò¸3>P$-1!y +EÊÍßÀ.wGÅÑ(”ÓÎdôÝÇݰ‹;ÿòÂ%)þï’:Kò*™­_¤“Oô?~ 'IU´øï:ÉÛ‰ó`•\¼0p”å¤2œëĹrÒÒb°EÞj1Ø*v¬Áë$ÃÌV$‹Áæyo]‹ÁÖêFêX ]³¾T“%ŠIf¤Ê+š*'5a +ž—Íkà:iÓIíHœP5m'¹!-‹ [ÃÊ’YÛ…%Ä%=ç\JÓ*I²V€}••i!I¡Ó2ˆÓz®)h×”3¶”=EI‹uK#+[êçÍRÞ4eÉË&(€äa {\ä „ÕK„­!Y=‡yâ@‹Á–{jXƒáB)/²ƒÍšÞX‹ÁV%¶ÁŒ5lSõ¤²î—¦0~k1Xv=Ã’s–US€niàœËà†,h`Y±‹aƒ!.h ¬$•ä=ËÉÍ(T¡%ƒ¸gž“MRÎ@ìY=)Í8±^Þ :¶t5; Ç›€¨¡ç(ó@F, ›†=ÎQÉ ôœC€@œH’i +„/EÛB 4¢fÂ6’ƒ­ŒÙ’§­kŽ>™‡AœÖsÎ54PI‹1m™Ó¢‘5˜m¡‹a Ÿ¶cɧ[PŠcEàŠ|#ØAØs.£@*”´˜¬Ä"6bR‡æ7c Ë»`XƒIÚ¸ÈZ Žd¥uãt܉ýDu<ç2òñBI‹!Ž4,YƒÁ6iŸ5˜Ô©àÛf¬Á‘ûë̃-kR'²ƒ­)ãÖ`Ê)¼.²bŠœ& ¦`Má9ç*II‹¡’QeYƒÁV Òœk0™‚ÎàÈr˜(=òHõƒãC"þ!qbR¿%-‹HÁ’:T¬àœ HÑ +ž£S¦WÒbL wÁ¢‘5,R¿Ë‹æ-E¸7½]4p’L"i1éRCà ¶¡¢Î°S`ÐQY©¡ƒ3ˆÄ Šä9—Ȱ¹’cÑbÀ ¶¦£?Ž•EkJaQqQÏùE”´˜ìPaûòÈLv 3 ²ìd9ÜIL-ÊN8ZÒò/™¤Ü#?RåĹC@”Ös® wФ¨ ƒÇífzNJÀ\I‹¡bDÖ`JŽ6TYYÔIa/Ò2ˆ‹zN9WÒb,ZÔÛ°“Häö†5˜ØÁoÙˆÁ¢hƒÀº®œJ‰-3ˆ{NŽÂ\I‹1mîH¤È ¶¦úܰƒEˆ`ãâXƒÉ”š#k1Ø¢"oѱ¬NÖJùÎêPuç—ó$’C¤¬ÄYbXƒIÙ»cXƒEYgX©–Ò_DbEòœAI‹U¤ÈŠHa,\ ÅQD«ÐÄä"c,ÎîÖ°"RUÅÐÈD‘<çRòÃHZŒiQYBSj1Xl£eeQšë2qQÏ‘/U8té—¬‹Á˜–+îÈÊ´ØÍfƒ8­ç¼ìJZLºP6‹CÙ|.Ç3_kg hV̽<ÇÅuä D­“ñtœX«ìHZ YÒèP‹)$è ‹¬Å`‘j{¬Á`¡gmÇ ¶¡ë™Ù`Øe¾•Êb°eÛ›™3~†+å_NñÈ„ÂL”`#Çã&?á +Ðq“[G$e va ƒ8ÐsÂÊŸŠÄË#¬CZ ¹Õ–bMï+ü´§jâHÖÚ#"-ËN‡Š&ÈùÚ- A"[,â¹&#q”34!ï¤Å`á©¥aE“ÜÜ8ƒ¨‰çÈQ1­’cZ¨ÇLŽ[t¬Å`‹”´QVDÂGÝn$'pHæc‘”´˜D¢«Jj1E†ƒÀ:Öb©ÏŠH¢É†²HÃiJDòœCèæh‚ÒbˆÄ?à ÛhÇò¢èŒ©ñߺ1ž¡¬™&Jˆ[JY‘‹P¬^DŽkLaÎëbžÑ•2‹e”I#!8Ôʹá"‡œW.B‰Â¾‰ ‰:L+;þ[…ôŒä¥ $A +8…rpˆM9ü7MÈáæªÑÐÓ¢ŸEz7<Ê¡+Õ.B,†Ì~VÇÒ£XUâ¿UzÏH9«¤êü·òŒ+l´Rß]¾xõš\~†Ê¨J¡s]$—sîFãñìååôjµHºÏÉën³[lvw½ü £1ŽFøa' {ùúfz»[lé7t b>L2‰Oèî¬á ¦û¼¼Þo—›kb#Ñ‚ô¿>?}GϲzR·µö¹ãY1C|6_Þí¶Ë«ýn1§ßõΧ¼"LR„5g;]­~%w Lg_O7Ók™×…2kýªÓý³énÙmhÊ‹º²Z“ßú_]ÓÏ_½EöKåðæ£S6IÄ(Y滘®¯¦4×…ª O§Vgz•ûu“` \ò±]_—å·ä|:'šž´mO¹Œw\•{3Ø+ܻ¶œŽ\=¿RuC¦?q8e ™Ý¦¼¯I0>|¹ Þ¼9ºI1)jzÑCÞ¿dÏÁ†çiãÝ­¯&3„­‰6UÞ<Û6Ö­ø¥F0µþkh̉ø·bXvÔÄðÝÝÎÇ/¢í¯;1ÒoØàwËÙ¶»ë>sD"•U`†^›jì½]®$*r{4åůw»Åš#'çe˜g·]ÈoqÈéä°¨)òÊûSC Wa€&jhg81Ʉۨ»úNs¶AªÚÏ(‹p-£ÿ?~ý?~„ht‚b¿çû¤†(Bב`ì÷ÝnÁJdß LÒ½q·æã÷÷¸µ„·qësJÁ¯é€Þ³¿½í¶âŰGíO‰‡D:þó&8¢KÑo²Ž˜q·íæâ‰48„Ðñ…ýê +¢ÍI]›@ÂaÙ¤q¦ÅO¼g~u…#ÿÀ+€;M/ŠH‡q½Þ.pZHõƒ3'îÿ¹%ÿûËiwpÙQ÷;²ð¦÷ú Œ:²o‹M ‹]Ð_h‘”¼Ù.ï[Nx Qç¡¶ +ê­:äçïÿ‡2áБÂ1fAë8œ¼¤~꣦ ËŸ¸Ö üPEOå˜ð"&–|â5€l«éöZ(Ô¨jÍ~}å‹e{˜u\ \h]¨ˆÙ%‚ú(\ñéÈ«¾¦ à¢9H&xY5Ú÷Óù<ìû‰Ô<ï_h4JŠžÁ&¶Z Ý/ÙbÈÁNë^Þ4AïÙ§åfÞ}aWBùÍóþ’ŠË¸Zìôü¯J}öDÇðVAKyàåÈ$±Ìøj%O±î}Àþö猜±($›£îöÐ,ME†ÃÅW­þQ2(„/ý¡·N‘älÍ®*[„&©Vs—]·º[ðÙ‰ìP¹oY:4|5;áb͆*ü@šþt3e¡QÇ4µdýp¿×<¤ŠÿŒçÌs7š÷ØØ+ç?§P8Km{ðò±JÚô®£’Íù1º@!oŸOg?ã-ÛŽÃÁù:”Ä;æ‘’ã4ý(G½[lq\‘‚ø:BoÇÞµÞüA;¼…à8ýT· ô9ô6jnÉëÕ ÖÍ Ðé­Lt£k`/Šf¦_0½Þtwix‹‡TtÄï±7Ò,(ñÞr¨Å¸Ò;CשWró-ëÛjãÀ[ø¡üãÂîÍâj}íÏx|åË_–ø$‘jw»íÐ5\K:@z¦‹Rí œ\øâf¨Ö8+Ìì^#–¼×a˜w¤%.øÁ“3z€^¶–7Óû§4Xqz>£¿¶Ü@ïʶsœ0ªÓ÷·C Ù³)?§oÿ´]z¨'É?¦¨ä ;žH6sâtÄc?Ø`P¶£?*ÏþÑ]±ªx±hÝìþæÅϲйیv½Ûïn¥µŒ]¾ðØôñÄß·Üë8q8emù‚W@OPý©éF.)¸uÆ¢Ý(ŒÖ÷ó–¢(ñiK d¿æÆ%j¤é‡©\8ð9ˆFä9”³íò–Ï;¼¬Sù tn­£¾Ñ7OÜ™ß=¼åÎ ãîE›‘n§óûéfæßOàY:­ç¦U…tU¤Ï™u¢²A›‘C¶#U>,¦+3»Os{Â`›´¬ŽK<ß_¢LïnÜ8O¾Ú —\k:‰7ËÏKÙ¶^àŸÝµïcÓ¢O^-v_‹ ™™›ø~º½ö¢ªBvò×^›Æ|f¦žyÕäãû³Óœ¨ûãEmçt¼ekœYé +wl–o™‘KY¦´9µo½ðê¼W#áSDv +­ôN¯(õÌäjHUá#—<²gˆF'xAiK +xD_‹Q‘÷çÑÃkÐë«â‚Ú—ÿ`5ÇSwàë$oMr¾íî—s¹íÙ?GÞ‰Ñô^±ÑU—”—á—Ôƒ/37×wþ]F6I|iÉ?zÐ='£.>z@ýÝú±“ÃÁ¤=Æ6ëS·ýYê/„x•1Zù¨rƒ¬¤Üx·úï ÑT=?,ÖxÅ ÉS{ˆpJœû-38Câ!ùWa¶¾/ÿ£š‡íTÄwØýdÒ…m½<¬á)ÞÞ‹†ðJ½U½Yn³]· Ÿ/´iøFà=‹åÌ$õ}Çõ°”OzÚúÞp¯Ì¦-_°ÞO׬ú(©ö€½¨¼}ömÀÅ—ånvÃÑu.|ãûI¢>jpЋ>:îÝøu¾Â˜¾Œ!Mw"9ð-.ƒê»ïÐXù6>:j88ãøJ„4(=/Û¯?tÍûaÛÉE±WMœ½!CЫvퟮV]ülížcz¥nuë›×ôÑñpÇ·£‹»ýJŽ““×ÓÙMx¥¯˜Âîé"ÏøGЇ>éíë#{¨U}`ðPËïÐ>zúÌÇCÐZ CÝÆ¨ÀútÑZy‘0è¢QËaÜEû°øe¾ßÐáß ~£öAp_‘þÕ[|ÏÌ_¨ÑG® þÍ2ÿ+|tqúî»S*ö~±“¼éf{^›Ê9½¡¤«Ó–>sZÞSøþòÅ¿^üsI%æendstream +endobj +1408 0 obj<>/XObject<<>>>>/Annots 234 0 R>>endobj +1409 0 obj<>stream +xÕ[[w¹ ~÷¯˜·n¬ˆsŸ§ž\êlN×ñ6vš¾Ž¥q¢¤quqvûëû AŒ¤Íå$‘ÒÝsló I$@œüçÌ%cüï’*M²2™,ÎÆ£1žèWÏéIRæ ~.’¬9æÉõ™‹¤(F¥á \$M6J gà"qÙx@Z ¶r£Ü4µx‘¤®´µlVYƒÁå¨2=[ ¶®F…e †\1Êb°E3è¹ÈÉ„Y1ªaÂ:'™ „²)‹ÁÙ(3M-&C¥dm ]1hJ17µÔ@4tŽ4å7yR¹á¸‚¡!ƒØÐsÎGMR*I²u†Ÿ~¡à>iÝŽWFä „0ãVФÅdѰƒ-Ó!k0؆ClËö)ʆ'… "@Õ ‰áùM"-F·ŽÌeXƒI`Z ‘•A±ðtR +qPϹq†I‰¤Å莗YÖ`tŒþM[ƒÁÖäP‘‘ò,NwÁ Šä¹†ÖPä D§9O›6”NÙ±ý*ÄN=çõRÒbÒ3£ÕYƒÁbJ`#eÙÍ +Wñd¿@ƒˆ†ãšLÀoi1 êȸ‘5,G à ¶®i­Ä¶SèXJéaˆAÈs² æJZL6¢m/²”d˜*Zbœ3 + ^ ÄŒQ +9Ñ'DE’ʽPC‹Á¦F4¬Á`±SØŽYͬ¦í—‰ê—WMàò<—DÒbtËÛ‘a ‹EU›¶2(ÒY؃8¨çš†UÎ@’vþHòž—Afš0ÞäP§¢!–&ßä)'ÍrJcCC±¡çâÔPRFÌRžL‚Alè9—’ª™’¢¿“ƒ„X™KC¹E湚’<Üi„P†7‰´,œ&7M-ÆbG¾ŠÉŒƒ² °jZž1ˆšxŽŒ^$‘d¤¤ÖlÚ0pÎQ¬ˆ$ùAЦ~ €Ú±Ž~ä Ä\‘,‘3VmT‘´, [–¥Á¸¤¾ Ï Jã9^9q°Ó€ÊˆñÄNJZLÒd$²¼<ÒÔ¤ÆH^-“IiˆÜDÏ+)ƒØÐs®Â" ‰3Òp̤t:¦“©)ƒØ©ç EŽ0J/g :Eú“’;uÞvh§cˆœÒi ëQ/ÔP:åtËK*¹WìÔsm•‘3:¥ÅIé´4éšc;õë9µSm(æ&mr b§žC`††ÊHRÔŽ¤tš™ôÅ1ˆzNDSÎ@tŠ´:ƒ÷P/ÔP:åPlÊ vê9éE9©Sª/H€ŠŽÍfïÇ›½@.–8èI/‡bI€è;.ÔW’|˜tÞ…ùoNÜžaU&" Õ Ô*âP¢”àP¦±™àšÜvÉ–,eçg/æ¿IÀˆÐË•z(ÁaÿA]#pÜ!TP⿵CÏHJˆQd¡Ã3ºàÁ"$ŽSŽX.;6Çyþ›ZEDÒSÐRÊ@êâCä"‡,‰ý`ùify|¿!óß:˜g +<™¼ÆÒGˆ‘3 ¤’ +Ä=¹9{tÑ þ$7wœŽQæ©òäfÊ><žütÓÞλ¤¿KžöËM·Ü¬ÿzóZ!P8juNé#š§Ôì§§ïÚûM·¢w·áЍâ1ÜqDϰàÓ×ËÙݬ›ò›(¤Õ•ó—þm¿äA0‘MúÇ·ÝæC×-éuØ›‚þf¶œöøýÞTR¹’|yÃã!kHëí’GÃlæÚíë—/þÍ"`—*‚hÛõlù–ž"E¬]hŽ‘n1=t‘õÓµ€¢(’cdh +û³¶Tw}ÞtëïRéãwx(Úâ(=®½ôWÛ ‹H˜{ ŒŽú_SÑøP*'Y­r%«–†yùe¶˜mÚÍÌÏY¬ÏëvTy†åÇZTˆÚC%ª¡XÚ“9f½çõõ#ê`I*©ƒDèã.W°’Æå^,îWýƒøÎ_® “x»‚ ùÕ /ryXž36Ê¿ Ü[kÝ.n[2+Òö2óOšÿÛ>DФQëQä±ÓŠƒØpZ¯ºÕìû@íH­4ó:ôwôˆÔráÑÀ8O”ÇÓlh'¯ç9ÒãwÅ(êöÄNY1*4Ê­·÷÷ýŠÃ‡ 4:“1ÈèLb?ȃ!†Â|G¤zæÙ@O _~]õØ<…HeTÍU·îç[Š;LÁ>°¯Ðï(óGºFÂE‚œSâ568?æÌµ“U¿–½®;Üz{»ìdÛ¥ô3;Å~ Ú¹|0Y¸÷`åìN÷sχ4»‡w¸iß±b¸BŠ.§êâd•éæ+ê’-Q Ï«°ŸüçB]úÕ{z{ÐÉßè Î?~?ýȼ}!…‹žæ>³3Ínuá^wÝð3?·÷Ô²Í8š¢|§Özóâå5½«Æ¤dX&‰UŠOæÓ¥/ÿk^Çe«NµÙaØÝI >_ó? b¢Õ¾•®^ýãù««×¿’T¸ÚÔdók”<Ü ¬zŠ<~gÖw2‰#éþìêòñ‹—$ÎÀê;‡…ÿ&OQ§’ÉÇyo8ùõ0º]ô«IÈs‘¿«ÿêf3XÔ›žzÅFw¥ÛŽáH«þ°y'ϰ…«Û/Úu8g¸Qåsôo¢êG;Á—Ø÷);+¡â²}ÿv8 á´_´âvè­ç˜ÊüÕ¤*:ÑŽÒÈEÉ8(…”ñe¿áÙÄÿö¶— ^Œsˆ˜ÞN'˜Hê—ƒÍ8$¤ítŠ ~-›˜q«_­Ë':ÀÕˆŸ_Ü :V鎪—Ûùfv?gusTÂLÚŒµy×NTþ2„?1üw¡½Nö‘׬Ý'ÙÍâzÓNÞSE€§ õB=·ÿë‚÷,”/b.ºè§Û¹7Ršã¹©±#.dHV{n@ +O´*CÇ}±Ü¬ ÷$ä–¸d¡Èרâ¤áiÒ/ïfo·+>ÓX( TGLÓ¼†\‰±K{Õ®f8åNýùÏQÌH +íç›ív:ã‚¥‡ètRÉ÷×Ý9>ÉÚ™›3¯ºÉq*Êñ -Â4àf}WƒýúŽ(í¦s*~‚äÔ>ü‰ê:9ã9.›Vé«saKIBäÂÙD«Æ#Ùã±³}hgsé(/ý §›¯»ﺕF\OÇAI‡Šôž–û¾ò stÛ®;‰Õ¼4Oê/Aü}O‡/sð²^ò°ž´KšÓÔ[=Lõé~ã^Hv—XÿÜòœœÌÞú|ÕËá+f%¶÷÷¡4—p7íÜÏWon®hlÜ»»âØEܹ°s9ì韮DÊÁ¨z­ED¯iÓ=’¦~µh—ö"\yá˜íÕ­×[_C@f†‘ºnkdšµî©‡›¾™î¶OûÅ}»š­}e—œ?JXg]ÎkúÜ-æA¨g å¿î'ï;©#¢Ò«¯þ^‹ýX§zn; bd?=çu=Ph§”øªkåhPnšý—eta!žT—0xЩ,:í/Ûßiaêj¿ãF†âC˜ž‡^Oú÷ª4vTÚ)œá¥Ç5VæÝC7ç§æxqR]Âà¢ÓNIìàÒ[µ\(ýñVÞáiÚ©t½YÍüAñ¸ ··Q§¦ðW+ÁR§ü­³$ç^½«Å‡k;Aoî«×ˆX¦¼É$Oç³pñK¯¬>ÕÕÐŽqCÄîTáSÊa$ß)E]R +n6ó÷ìÿ:íWšdZ8*àãͼ“Ív +o¦~¾c»ãB?S¶ƒ“Ƨó&™G“7=]u¨2ÈÇ ô5½úÝáÜ—góÙä2>¦Ð:qr1óUìø§'ÇË¥pKÂØb ýë»zq/=tIû…j„á¢2ùKÃ[¾¿Õ"Ôqguo4¯Ýnf…u?O#ÿÍ +>úP%¹‰‹þp0Ýóˆ‚z¸kÙ™±Ce™ëÙ”+,1M“Û–? ŠŽ[Œ×ìÅH¡ƒQ­0>œ#)ΛáõÍÞþQô…Àvӯطè[~*øÄâ.¸ +÷G*Ñ%ä·WåÑ>’”¯´pcZâŸ2b«àoF®_>yœ <üÖM6ɳ~²]`‡Óf†˜rW%çÕ¸¡ošÈ0¿9ûçÙÿ7üÝendstream +endobj +1410 0 obj<>/XObject<<>>>>/Annots 278 0 R>>endobj +1411 0 obj<>stream +xÍ[ÛrÇ}×WìCª,W… öìn^RÙ¬ŠbF¤,?èe,DØ–@Éþûœî™é9 €¢¬ˆ¤’*™gÏÎ¥/ÓÓÓ³øýIš ñÿ4)³$'“å“á`ˆ'öÏ«äI2.jü»Lòzz°H.ž\&£Ñ`LÁeR׃š8‚Ë$ÍóAE$c°åp1Kl]ô:2Ù|„—IUHK2Y‚hX”2¨‘®a–A„ÐPAlè¹t˜ÉˆF2F·Y>(ˆÍÇ2Ÿa‡PPe@º%ˆ†®[}SHÆ2ÛBfk¬˜dTåø×›Äi¨& œÚ r½I"§& íRè%õ#h§"Æh\«ZuÞ˜KSm¨oƆ£±ªÕ5Tz®*eãŠn*™‘ŒÁb®5³„ÁBK9±jQ!Vòq NÈsn +„#ˆN³J:5’1ØRBdݹ¸qRAÒsn ãÂZÅ LFÆ ¤2 ‘nÀT4TôœÁ8‚a@ãÜ€¾]š©ÉÓ)Ô["KX´3cë&;”&« NÖséPVìÈHÆ2èp0"V&X”¥š>€ôJp‰¸½º…Óf£T5§+©P ALTL9‚˜ +–iJ¤JXä2{/¡&aàê¡ÌE_ÔEEVĵã@lç¹*“ñGP&3Æêˆ¤›LšFÿ/ÄN=WUð×Èi»¼–‡^¬]àà(¶ yQ8‚˜ŒFÇH2‹!GÔÔ Y‰ñ +âž«†XyädÈËTõ­AßiGbãÁ\õM!ƒE¸ª˜% ÆÂ ÖV'/FªVõ¤[‚Þq"§ŽÚ¡K ¨H;‚fÁm$c‘D¶gb ƒ{3IjQ»õìÔžgdi2%à¹çdbJF2F·ˆŽèÖX×mêÒׂحçœ5#ˆNSÕ³‘ºkçCÚîN©='[L­HHÆè6÷YÂ`!ìÛ‹ S2Kx™dW)±ŒÁ"dɬgÆ`±‹rÏŒÁVô©-a$° Âzf 6/z³b ¶ÈzÚ` :ç93;Nnh\Â`+‰ŒÄ^&ÅPö¸È2‹Yñ¸jú¬¦„Í3}àœ©#É8˜žX5½µUSK8˜žX5}hëLYÆÁôĪ+XÛ\B!³£íHV±„¡d¨±"–1XÍb[Æ`‘æÜ–0رdZÔ–0XHß—0Xl9·%,¦—óAì™±˜¾ìiÙ¾tIµ.óLA4½çR¬>¨ÑHÆbzÙ¤ˆ% Y ¦ÛÓK|$–0 4”`YÆ`3U”õÌXŒ›÷Û‹Ü’%b %§ªdë™1Xd0nd ƒ…’a È c‰ƒÕ †Ú‹d€5é̇W$•pæSÍç9¿Rd,æ“´'‹,ag\(ŠX]A¡gœ§Jf ‹qe¿¤¶„Ÿ²ÝD–±˜/“µiã2[KâE,a(JƒvdƒEì¬gÆb‚ª'‘n·âK–<9 JÖÝ7pî IÆPEªjÓ~¤)c§(x…±Î²È=ìô)ˆ–õ\ŠÛÉÝ"FõXÂ`u ÿØ–0XhSŠ,aè¹?th,c°Ø¬à3Æ:q°!XM SÅñœœzáNF2q$C –0X¬,¸DlK,’yL8²„1a}YÆ"މ"ëÄIÝÑ×­;QϹódf$c™°äÅÄÆ šðD–1X¬3ˆc=») ÝÑØMIAœ’çüÒ7’1¦„mjŒ¡¥iʬ3kd cJH)álÆê”R= +ûèä€M)pÎg#Ƀ‹j˜OÒ0aÑ¡œNˆ% G™”Y˜0ÂöˆX]éiIhdT]és+;’ŒeÂ#뺅 ‰ó»~Än=ç»1’1ºÅf‡n#KìX¼‘X¢Ù÷‰% ¶–8Y9ˆ²«@ÙP ™/A‹œžÀB;60kGY‰‘#ˆ¹ )­!c°¥Ì*²Nµ™«28Õ*ˆªõb|È8‚èTÏû‘d Å2hÀš2– Éz!–0X§ØØ–°¬ulcÝzÑÚLX/ +D]Ñ®Nƒn ÙûRI嘎,Ђ«þmÍ<ãºQ¥G1Iä"‡MiL\„éY95NOVÔ¿Íž‘BÊ01Š Cê‘¡›·ÓÍ2ô‰ŠGIí"”IJeÛÆ#î6".Bp#‰g±]„à°U§‚#o°’Žþm‚{å<1&"ˆ†mo)‚"¶æCH‡ÂR³lDÿ¶¡<GCSÞ&"J¦QÁá°T¡LÃÕ•}—ÁÁ=©Oudø¨å.ú·LDÝØ3²h*ÔÅðPÑ¡:#!¸ZR1ãt0œ7ÌùõoÌ3²‰`—×t°Ñ!NØJ‹ÐI†$È8·³ºÑÒZ"Cä"ŸËáÆ‡¹ÓxÏ.Ÿ¿@V?L.gÐ2¤ð„²H.§zy„Ç“§—Í»E›t³ä´[mÛÕvóýå¯h…žJ«#ßì(“fOO¯šëm»–w$^£?t2} +Í äY:†*Ü“ÓuÛlç«÷ò EV—žøaÝÝ\kù F¯îõóu·˜OþÔçãA> +ݼ˜/Z?%Ä%?% “V)æ&§0 Ñdtrrm—݇öfÓ®í­tŒ”¢ôÜà1þ‡è/Ó8ª³©{Sÿ¡ÝÊ«HìÇyPÑÅÙsÿ G9§¶Ç"ŽäAæ³5œ-²Ì÷Í|5í>ªá +ušûçHè†Ç¿œ‹T¸Èsï"q„‡üËKîꨆþ“΋5Ltþ‹vr³ŽÎŸ+/ñE³|×È˸ÿV*/t‹’ªÌåø…-­ºŽv„X© +fv<[m×Ýôf²w+iVéCšéàX^£²ìM?ëOÿõÆ›$C$Ìjo’«n£kM’¥`‘ä]³i§"¢dº®×ݶ5éQŒ¯Úeƒ )G,³5[í¬¹ÃÂÎã׳f¢ñ›E–ÏÜ“-+ü2=¨ñûyhâáôÝ—Î…HóÄÃÒéÊ*)dÎæëöc³XèŠC"ñÐæ: ¥ "R¾„£ÏqÖ= ÏÎOÿ¦~ŠD#ì +ÉæªY«…3Ô‚ýV‘LÛ•n¯È{‡ØHuÛ=0¿û{„S¦Ì>Kûw¼#øõûu3 Á·+¶ü,xbýÖ£‡÷Ξj¼4¼]HɈ¶‹³ŸU0”{ëÒë;9¹¾nWÓù.§Áù¯,}êuþ ÞÕZ¸Ä=]ÈèS˜0v +çÚÞ^‡3N?d<ÿÏ™š›õ·ãa»R üÙ÷¯-íU;ý±ÑLçðxú÷|uã¬ÃIË«vùnݬ¦Û£³31JrUÿaàûý/ªg20·ð±¾`;;Ù‰7Ž? Üï´þbïØ‹TŠlL¹_ü´Ö“‹ö÷œçf°fŠsœ;¼¾j—,b9qrr埢ðƒCún¸^(Þšêágc\¨ n®|ihán§ÑeØ*h Û^¹ª@/_>={q¡¯â.ÕŽ@“Å<” ™"ÿ¢á¾àu|9$“¡ŸŽwÂ%.+û‘åe3AÊÜm®¤eÏæ^Œ +!…³‘O¤¿`b_¡‰—íH?ïáÕûýt¡,0žJOÕ$ÞRæÖ_aZÿoA,Ôcw…r†âúc÷QEÀÖf5“I³’g¨£ ÓpÒq3z^2éV³ùû—2KbÜú§‹c§-ήß4k­_ÁÕ¥ +åË]Ýj…£¡zî +ƒW'ÖÊPUÏï´îP u£%”^g{ç—ªÌÏBÔÌOÅà2œty;Æãbσöó +Ÿìêß¹Õ7£]Ú¤ª·OW;Ö#LYú§Xéí÷Éßð U¹õM)0# ûÆ&Ø8èžM/Ýi€*8mX4ðbè(Ç•R/ÿ‘5½_íé·eõù+Aý³/²;ϼ¦pÜQíùû~öP¼™vê¨ÐwÙ‹6ï}i5l[×(†²:Žç¶B§ë9t%]Šþ-‚¡˜ºZt.çÀýE w»õoþäŒò|ŒB‡œï ½z».çʽ ¼óÀM9²P›—¦¿ÝV >4É7è½\¨_ÈÕÒ#”.‚\)ÖV? â»Q•Ãàë®8¼[Y.¸h¶­¯2¢"cáèòôüøLËßH°ÊqØK6Ûfò›×âlÝ-õ!ïo/ç“u·éfêä§áBå€y¾øQ_®7w +ä{ +xÞ.Ú­ê@ò»_×5q¶Þ,Üìà:¶•ÐÌü:€ßÄ}øºÙlàÛz—I“«fõÞ…Ü­¸‡Z +~¹"Z?:(ü~ÆC¹¾Ö3x3{£æã¬áV¹ ÖtWr:¾·«‚ Ÿ|Ø¿ôàN{Æ=Ea|Ï y¶RT±¯›É«½|%H¬ë_/–s22)Bö¤tçÕ»Öð-‹õÀN4mgÍÍB—$~¼·=)±w“N—j…vùùÅ ó®†&56SÈ;•‡Ûòwõèø»ºRsãû‚Ç/žyp¾cÄ’ÃmÉ…£÷^Û /Úõ‡¹»‘(lYÒyÂoõ4Óý¥ì]ø +|šûKºx%.°Ýy-é¢å 1c1é·.aáóɤ[^#6‹žzIÄÅÉËg'òT>Hï!ÔÞ¡,|¢)£óù}çš(lǶǜL&íFC bÜNb]OÛz6ÝÍÚûí[“nꎠ–€}˜ë¹ ª9ÜéÏêZHÖñ#Ýû¾^ñÊ8’ó8'ìç${·º€î{ŽŸ²g˜?Ž–»ÓßÏ(‚j¹h}‹iÍŸcuc#wîƒní>EÁ–ü`×AH| Mñ7äL;^n¼$ºø3)ŽoâR=7Siä)ö«˜`:ßužÎA죮7®&êª||óU½Þ¡p¶ÕBn°ð½è×vi|&“8Ât?šã·Àýó›ùÂ.‘^X¢|H?Ïæ«f=w‡V>Z~Êï‡ Êçø½í*äUæÛf¾•’fgßCn–ïÜyÖ³Yo^|è[|§–•ŸôŽ´—QÞ*üÁÏ|Õn§©ØÉ8ü>èj”lçJJLº·N8̬ð܇ö2]I>­‚S^4º~Íá +QsMñù~¸ÏI¤˜{e¿iÓ.ÝG9’ÄÜßæŒŸp‹$Ç/ðU·û?ª*ÒßÊO$ð1ž¦ ¾çû•¶äy7¹Y¢Þ%øéÉq@N‘å°–×?Ì¥¿]>ùï“ÿSöðæendstream +endobj +1412 0 obj<>/XObject<<>>>>/Annots 302 0 R>>endobj +1413 0 obj<>stream +xÕYÉrÛF½ó+æ¨a6 æ”’ìÈ•Cª‹?@QI‡‹‚úþt÷ô,ìP' ²«d?<ôC¿éÆ,п3)jø+…SB7bµ›ÕU WÒo_ðŠhŒ‡Ÿ;¡}%lÅí¬€;amÕ\wBÖMRÁÀ«ÕˆÕt³¶U ´-r0²€(-æ“Ȩ$ ä@æ<嚸¢(=>‘A´ö•I¢²(s¾ÆdW@m+[$j}S©(@¤V‹ÌD•†¤2D[ lßÈ¢ÌÉÚ@ª™,qUM¡8ʇ‡Žb!‰ˆm°]ŠØ é·n|.´%fÎÌ qô ƒæ¹%- £– [2sÔ’‘sMåDæ +ˆ#Ÿ€¢%ÖêQhp¡ë¢–² æB»ÚD†@éŠzÈÌa÷(ak]ŒÈ\k°™Ch 1ñýN1À¸‚ÅÚV¾ KŒÃ3µ$ëÕ#èȲ̱L"Kœdd|VÌ–@–eŽeYâ$›Ø k%zÈ–@–eŽeYâ$›Ø «Õ$ÈȲ̱L"Kœdd•)JF Ë2Ç2‰,q’Ml•²(,ËË$²ÄI6±$«=v+—,€$¹ “ÉGÙÌÙ§Â(K Ë2Ç2‰,q’Mlu2” g!M€d3Ä@¨L–XeÁofƒ,,Tô–‘,ËË$²ÄI6±ôÒkƒs1Ïî ,ÜT‹È9\¤3WÀàl’ +â##R÷{½˜]Þx¡j±xö°†9#÷´E€Ë«‹ÅònۉÃøtØÝ~8þ¶øQ £æ6Wvñi½|ºïÁ™ô@äþB@câ5Xzã•oÝã¡6ûïxÝÖ•‘šï½>}§‡àêתp±z¿?ÒÈ`ÙDË^ƒ‹¹ÔÐà ¬I2§8Wñç~è÷§Õ°9ìÉ{~?üd¶2wn”¾§ÿ¥Ûwýr‹™Ã4e›X±Íþá€ìƒÚ‰XJŽ|åÆ5ÑcSŸ»»µîE]í¶ížºmh6Ø1BçS·¾w~m*¼Ee£uýžKÕT>ÚêúþÐ[°õSp%ÂÞ™Ã䬯…²ãB] ÃrµæyÁ4•Ô\1P÷Á„¦ë–ë·DMW5éžþ´ßs,̧ÞáùçŸÇþ°êŽ4$pš0–çš7¨t4ŽóäØx36þu9¬Ö]Lºy½Gˆm?Ì‚øÊ©¬ÿ›ùC}‹™±îhZë¸>Çå©uQ^Õ?ÛÍqÀûŒkGÌé ÿ•Fc—7iÀÍ~YO8©Žë9áU€¼ŒWx-Çé_§Ý#.aÔ’Öaµ'Ñ’\‹9l|Fs¾­žÍù‹î¶+°DO%ù²g£Õ¾4š ’qùE7üÞ4>n5hkLË3b)ÿ.ÿž¬/¶X™Ð^g Ñ*1-CG}þÂPh¶³†è]û†Âæâ¬!Ži²?¯PXy΢èa(ìÎjp8>„!GkÎYCnz†hŒ_N +íë µÆ!?=CÔ4/+Ÿ~1W8Ä-øùÊZãmRUvk«4Á«Ÿ­«pzÚ*LÎOÛŽü<;àÞ›-}ˆPpXðñÔ·^>Å3ü*(í…à£Ë ¾UÇñ0ª2|~û}ëò¦åOF0ì­Öð+8üÕ–n¯þº¾_ûÃn5ˆÏ‡ÕiŸÖ–ñƒ‘†_2Y¸îj·?m6èéÅìïÙîg™]endstream +endobj +1414 0 obj<>/XObject<<>>>>>>endobj +1415 0 obj<>stream x…ŽA‚0 …ïûï¨g;æ˜Gˆz3Ѹ?@ÆH$"ÁÿoN^LÓ¤é{ïk_ŠARŒÜ sˆ"MpÙA[XŸËl¤Ç„f ió+”Aí/GBh„årPC8$›¸yײÀmÚ'œ†øîR?UÓsè·¡ýFÙ.Ñ]Æ‚õš ©ê‹ójqÖéùÀ?®õ¤½·òxyÆœƒº«•ã;Òendstream endobj -1391 0 obj<>/XObject<<>>>>/Annots 340 0 R>>endobj -1392 0 obj<>stream -x}YÉRÜJÝóoÓ8šjz›n0m?:0`W9è…7ªª,­¡žcþ¾Ï¹YRÞG‡#€£“÷æ3%ÿ}™ÿ"3‹M25›ò$ B<|ùxEI05“Å4Miâh̨0K®7“yŒg¥™MƒôHÍçA2rÑ,¥œ¬åJ—&šD\)ˆÕ¤ÓT¸tÄ@JÁÒ,æA¤¹”K'¡Ø2¥™ˆJaç‚r²œ‚°%¢MžÔl¼÷ ¨Æô#„JVa°óY°P,Â31i2Cp¹mBR(V¬„F± -sÛ(˜iY…¹mH“GÍnÛ8EŒA„BÐàÏ€Á"Úðdz -Sñ„yY§8аÈP.H+ÌmcnëY…ÁNY8ŠU˜ÛÎéí(+Û&(©¤˜Û;äüñ¢BªY…ÁN˜%«0ê>‘.Ïj 6 ágQs–<‡ ä8äbá1Š©Ø³ -ƒ²µ«0X”î‘f…aTȶò²Óä„&û:“g‘+ÇxŠ '‚\=ƶiÌHyVašæ9Ù%¼YŽœ‚àpX©ý“§^Nê|rx•D)á[ K/èSpõÁ·˜1¼‹H`>jHñî‚)/Ý*”€A#ŽÜ7eezÎCìæN.9á"„I9p -Ò9^«Fîburö£<4«>DMgs³ÚÊ÷'<Ùœž¯Û®É6Ý›Õw¬ÃȉܺwPcåéuÖvæë~›uÖ­IkNÍŸæÞnͲ -@.4ïäH€Ôê1oͺ®üÎ̦. -»éòº2õÎüu{¿ºÅãíâ]m–Y¹Î̶Þô¥­ºÌ-ûiÓ=Zól³¦ Ì•éšg.¶UÛ7TÖ™¬(ûÊ‚}3P›¾i ç­Y÷iëÒvyi[Q&ÆYóåßë5µÀ¢Êš½mZ·,³FäU`Vؾ¬á~c7Ph`R{p¡ƒ/¶ì%kkvu_m ¬|ìºýŸggOOOAKOƒºy8îbÑ—Úí?Ì>{°¹+lÖZÓZhè%ö°¿~±áwÛ4ÏÿUš>Ù¢´ü.-ƒ¡.ÐÉ6G äˆÒ›ÿxóÕ|´•m²ÂÜõë"ߘëq€]ßN?Þ]{3$Ì9r¼fv‘´†BTİU^mŠžiÊ»G €K~[÷ÍÆzKæQ'“2Ƴ®Þ9–IÅ¢â†Ì«(ïÚÄø°o{ö°/‚î× 1ÔèûG‹„¾EÐGš|öçæXÿ¼Ä°’³uaé×ûºêP’ö£N,¸ -ÆxåUÛ¡8%ÂÔŒ/¿£¡Q`þªŸXÊWn•Éå•E-Ï?]œ¿^‰/6C«° ÖÈËêà ÌEŸÛ¼z•y•5¹[øN -ÓÁ•6 4y¹¯›.Cq·Ý¿È[¤yßX´¾hlË5²\íò‡¾qÅ³Ë ;ÔØ†(˜@?ÝyFR†+%éÇ>5Vtχtlð40Ë.kºÁ5‚ÎBÔ*üñÊè¶Ç¬(PÕ£À#&ÎÏ,/\>+g]kt5Uï8w:àmŹ…ŽÛWù/³)rÔ«­¯ÄvM]b^Þ.ßšûÝý~æÕâ—üºYɯøÇ[s»<‹ßÛm‚ PʇssϹwµÃl‚Q­¹¬«tæ¾n~üSœÐ…†‚øÜç›HaݶfÙ¯+Û™‹¦~jéÐÙá9…šºß{ê¡Ï·ÒÄÇêP‡—y»é[NÁ—1ÃI˜¯n˜?¾Ø²FáœWáÆr´5†ñëpǬÈßˆŠ©Ö,Ÿ«Í iUÎxÅ…ï¯n–/r‚÷0X]››Û•éa]Y»ÃÃýo§ÆØ¾©»Ggò§%´EŒÐjùU§ÅÊñž )Ûºè帺m06_eÀ¹Õ`êíê¦t-ƒƒ4[c¸s±/^BpÊU]So{9)_8‚×'ðc»Þ ¶­9_×8ã–G^ÞÉ S‘Áç"”#fÚeŸµíÓ3¬Ä‘–Ñ¥•0†w=´ã8'‡†Æè¹¼xeâp}y~÷ê9ðÓóòóõ+]uC¶kóßO×f_ô¹«#üçØ8¯0GWÏ{)¤ÿ7G]Ú™Kö7ŽKSØŸ¶À)…¨ã!;¼5UÝ!hÅmÍþÛZ§ƒ'ÝY”ñÆr³Jy ¢âæ®ÉË #åRDå$hx£‘Œë$â= .6¶±÷y›£ü9¸Ñm/B÷QLël#çò¡‡/ô˜»‡AËVåàw¶ýÖ‚³x»’së)_'qré«]Š/£óyŠ ˆ˜Öü{uòùäÈþ¶ïendstream -endobj -1393 0 obj<>/XObject<<>>>>/Annots 392 0 R>>endobj -1394 0 obj<>stream -xšYo䯅ßõ+ê)H¦§ö 43v¢À³d$Çy ¨nJ¢§»)³ÙžÑ¿Ïwo5«%Ã08stx÷¥Š”~¹˜„1ÿ›„å4Ìa³¿Æü$ýçó?.V«Ñ<,V‹Ñ8ìÃd6g´ ׊a—“ÑBYÁ°ëå¼Ób”¼³éz`W1,vU³bØùr4»Ša±36¦j9­ñ¯#º°±V0ìÒ'/Ë -†åvH+fV0³™IqbÃrP0™ Ë:ë}ÌÏ/ðA:’€z–û;NeV°ä#YÁ°„ddV0NñŒâ&V1,wGʬ`XZžñɬ`®¿]ízýL$ž¶’#ŠáfŒË´õRYÁ$"+§‚‰°Š-\«_–U Ë¢™++–õ4`Ç7……ÈÚ›BaI³ú¬–«ÝLeó^ËÅHs¥–“¡·c™ä;{*®^ë3J-g;Þϧ±ÝÎ"òF”›ŠüYgÃ2Xͬ`2ÅÔS¿Ä*†-ìã¡°‚a9~©_– Ën,”l5°c$Ë*†å+…ÚU ˎЈ“å±íó¬Y±ÕÀ®™­NóôŸPìÈIÑÄÕÑ®`¬ÚÑqɱŸÎ¤bXkU ËÙB¯fV0Yäå—«–~ë=4§[}&ÍŠa™Eµ«˜û0Ûå%Œ‚°ç}%p+ì#o8Á®·EfÃråÈ -¶€ì2•5+†åc.'ÍŠq™ÏI´cbÇ€(Bf °·Ë1¯šÃ2£}ô¯bZŠõÑk26¦Êï:„Ëw>;òT †õˬ`K¤}SYÁ°|H¥3²¬`R“‘XŰ\ºÙ'™lEð½œYÁ°|†P¯Ã2P¤*Éz2â¯`pÙû$¢Ü7‰eÜô‡}†pV0²´ëTب˜í?XCN‰âžŠ2+Øòhí*²‚‰‡M‹Ù$«8æb.ltŠ_?ù;§*¿ärãɳ|rÂåÌ -†åç3ecÖ¿;dYÅæ”Ý"2B½®L5ãñVj¯Ž$½g¹7c6³‚qÊ_„ŒY>|"«d9iV Kר]ÅŒw^J²Ša9 ¨Abc¸\¨ýÛ] ÏQ¬‡Û³1¼Ì -Náf6†{–=‡—XÅ)ÜÌÆð{Y>i¬9¶ÍGój*ØÂ[@‰U Ë;}“Xz8;aêÉ£#W0ùÏ… ë… ë/ñ -&\—“]Å–Œ¡WŠa¹äÒ7YV°U×î—™ÕåòßríåÁÞ¥Š¸1üWk[@viV0lœ¨$û´›¨]ñ'ŽbÛd£Åãĺ¨ÿ®IÿœáÀ3„c‹ÌCæ2„óc0sbÓå¼â\?¬¿ù%×Ìn&±2â%Ò=1YpF1QÍ ;á3—a {ž¹XcŽfY —!S%®„ãË[!rÚ |qWè¿“~›fÀ²ìá–a=Á›ŸÅí߯dDlt_ê{Êõù;”Ÿ¬LÊ)žö…É…Ñ.¹ç}ùææâõ÷,ÌI¸¹³?_X¬–áfëº07›?³Gám[•]}¸ïËÍC}¨ÂM{:vár³iN‡îÊÃ6ü«©öÈÛ]]ÙϺ&tUx×ìËú𗛟/^Ã+ßõh£µÙï›CøÔ6·»jµ|×¶M{´ÇO/FáúéØUûð©ÙÕ›ºŠO#zW流Ï/Gᧇ² .´á¡Ú=†MyWá¾êþþBûjtv—]ÛìÂ]Ó†Ÿêöùz ëo¯ß÷2€5Bß_^}øßÛn>üaÔ}ëÂ_“؇›çJÿ®Ëýméªø+‘” ‚ûgóÕv¹éBIháM¹ùrz|¦`G(õöÓ©­vOQ[ïò®ÚJ®‡ê'#’\µÕ/§úXwUø\•[Jõ,‹Ñtä†ï[ªº}1+ïœÔ_N宾óü†‡TÔê~¨º¯Mûåy²ù„Bá)…§"ÜV¿,áIùéÝ[W¤-Ä!ó¶m¨ë±ê +Ïzßôšš"Zõ_¾»[oΰ¯ö·Uk'oW‡cWîvÖØ•ç°%Õ¨¼§ ­SÞU·uù¢ÇyËúƒòŸ«í?ËîY9X„>"4xôûŤòºêû©9µáuÕm^ioç£Ms¸{ñ° œqålšýã©£¡Ê8Ãö¸f— 7 -7CîºUû+“åÓã ÍäÕž´}­»‡pÜßn| ¼Tʤ}hº8°¯4ÙR›7Eˆ8ýòûEâ6J«'6KÜ8Ñ•¨“¿Exæ4WïdÝÕútÌ_mEùç;…ûœµÿS¨Ymüç¶ê,ÝVÕæÔÖÝSøÿ´LÅne¦!¿ºº…]ÝÊ]° -Õ÷§–­Úxãh.Ø,W‡®º7Övîuò}²ì8Uͪü(ú¡>v®L«Œ.ÊüŸºúj ´ãwCÞpÉ„UÈ~lÛ å)ðm]îšûç]Ž^šä|ýŠú`çk–Âå~Åʶz–fÄé’Þ-m¾ªöøPûÚÐ>àYaøl¶u[mº¦} -ÂK+VÍf[ß=YhÑΖ¥L6^méMGɲC«Ñ^íö¼ˆ6qYîËã¶}ËÜ «*U' -ÖßÑç^–]×Ö·,Þ°/qþe—PWJïÛÁ‚ûtùÞ;pKDÑm@AØpÉj9™žÐtà$Ú†òD‡®ÞüæRᛚÏ;–~Aïó´ò–ÏFì\¾Ð¨‘óBϽ÷zwÝ®m€t GÀ›+ex_oÚæØÜu£ßûy/{][UžK#=˜>sĶ=Åýñ2™æaËÌZ&¯OMëÇì@Í,ªaضQ«ÑH¹´æ¢¤ì¾þž÷T¿6ó22^Ù°úÝöúòý›K»ÕþL'sšlN{Ê’Ä^ÙïöìñWËñÚî—·T–f4³µZü-1ÄÌ~òÝÍÅ¿/þSιendstream -endobj -1395 0 obj<>/XObject<<>>>>/Annots 444 0 R>>endobj -1396 0 obj<>stream -x}YËvÛHÝû+°ëî…¾KÇ™$>Ø™H‰³¥$ÚaGÕ$e{æëç« É=§Ï±ûúP·PRþ¾ˆ(Ä1%9-7aâ/îÇ×U„”—9~n(Š’ > 5Í.,›%AbYƒÁ–eVqP²ã4bR;N+ü9Ϫ YfAvÌÃ8Ä])Š fE»?¼¡8Œ[ 6*ƒÂØZ 6)9.γÅ`óüh_‹ÁVɱ­ÁJ’cV㔲C(‘tâ) ‹˜É,⨠ò$"©“ß¹üœ…LlΫ k0‡QPVw sM]Tp‰cƒYSÁùñ¬Á`µ&+Ž3„ƒÓ¥ìX‘86,B\XÖ`N‡ÂÛªã2Ô "|e‚\œ²¼Ð *)ˆI©Ä,ã°on°§€ƒá!‘Òb>Ludj1Ø2 -"c«rÓP Ç+Hâ`0L³º k0XÄÒÚªã˜sR 2Ž'¶Èp›3ÏÌŠsø0¬Á?îÎãluÛ(u5 SAºmÊ®&¶ŒjϪ) -P*\ 2Š'¶àüfž5˜‹8gMŽÇ) -PoGÃ*Ç>aÝ)²¬ÁÌVn­Ø ¶(xãÙ`Åû{VE©&^E2¢&VExÖ`Í{V:¸b°•ϳ³(n¸ÞÖb°_<Ϫä<Ò’RÉ‚Œä‰U‰ž5ØIö¬JžlU¢g v’{|°Ñ‘?Ǫä”ï+¶MbÔV*H$ 6Oø´ž5,î¢ìYƒù@| k0KN¹lœ­Å`“âȳJN²Ã5àBO©dY2÷>ÃÌ’¥â¼­ÁØÞÚZ ½…ál«ŠaÌŽcž[Š4õƒE[‚cY+¬Á`‘Ìܲó¶’g«ÛâæÈË!‚4Ã1 HŸc¥›'U&ÅŠ_ )`Kaˆ)Òb> ccÊã!Aç’‚’1¬HÊùpl¹µÂÌiçÙçm%íI^ÒÎéW¤Gõšp› ê)„Jr"ŽC"HL æãd(Tà ¶âHÖ`N7 Ïj„S}ÖID¼«p ØÔ‘ƒÅ°ÇY=k0XtvdzƒEã¨,k0‡Mo«qŠõ©©O¨D+V2:<¾ð#Hƒè1+®8±ž5,TG¶«&„ØÙjC}Öám½$ˆÂ-.¢ïH‹ySn1ž·q¥BI†—›‰Óç¸'-†[™«ž• ñXûˆÚIeH”ä"£kÊ‹#æbQ$4Xc”Vý¢QÈ­Šø) SƒaЇL«¦è¡òj¼qGERd°š†Òo•UÓX|ü§¢Xîê1›¬É±jžm*P<±h[1Ú-¯eVLµ ÂoÌ9V$¦ƒ•©éY5-+yyE‚tWžAŠašÅù]Ñ4L²T1XiØ‘c¥ GÙô|ªØ¯ ì1v•ž•2ŒR}äTüpP Š<ä8$ìVVª[ÕmaXþú¶-ØT˜"UÖ8`WǪ)B§Y*ȘN¬|¨î{ù˹†< Oí¦…~mç" ¸X® -=Ãqc£›“#œÖ(¸dßg“käStý㹤ÿCß¡$7õnÇ)ýxw?¿;õ‰Œ«ÂrÐõ›z ™í0ì_‰1†6_òÍ®îÛ-ñÜôͺå¯f¤nÇ7ë•%ˆæ×¦^ÑÐþWâfkO8.ÀzA§9÷Ž›†^Lëæ©YËymQ+⹯ŸÏm‘û¾E™¾Ê"V³5úæõºm04ÎÍ9L¼û·¯ŠoÓ¸ß"ڢϦߤÒuß "št¢‡ö•bÆRzš3¿U/§‡ÅDzZ€A”ž(ƇI‡aøæ‡´•K M7än¾£Jw»f»j_ÎÓG%}A7­íºÿÃ;ß™`Ø|ùöãLÞ‹×õOPÑnò¯PöCóT2¾áç®>bÒ}j·û€Í¢ÇŒ/onxõ›÷åaôã³xXò¿%Äÿ¿Ï®>¿½â¾þW³é]·ÜoE7È.#|[ËË/‹°âõv§øš·,Sü3 ã¿æÿ¾ø”o£ùendstream -endobj -1397 0 obj<>/XObject<<>>>>/Annots 463 0 R>>endobj -1398 0 obj<>stream -xmVMoÛF½ëWÌ-íÁk~ì.ÉS!ÇuCÐ43M­%&é.)ý÷}3ki—±aÀÆÓ›7o†”ÿYå”á'§ª ÒRwZe*Ã'×_ß>­t£j²µU¨.”~GÚ¬x¢<ËU•)[TK6Á`M©lªM0ØÚ¨Q‘‰¥W6$.yŒkbAIâ k¹s{eƒ´À¢TP"½°6çEF6Á(ÛTìidŒŽ Yí•M1³jm¸˜ÌÊz« YÜSQi±ºHò^MçÀr¿‰RH¬3ØÏË7‚¨³”í¬¸dl .,6HÌÒ³D6H ×YHa]ª^0XËGdƒTgbC^6ðÁ -Òˆ¹*G%l‚™m¸ã¨M0XXŠa#›`ì§O¯lh -ÏžX\æøkqS²8“ë`qVrO‚¤ã£*\CÕÈ_¢¹ãšŠl‚ÁÖ5{qeCOx{Èý‡µ â²Bj(dX¬¦€"Yé`qÞ0)(’¸òð¨kÔÔ‚dT¿`t¤ù66Á`›üËÚ»íêöÁâíAÛ'~mÚº¢íNÞšm»ßŠBѦ==¶Ô;çƒóôñóƺcï†yú}ûcÙMÎOüvÇñ¹¢/m×ó8.ap\¶Câ¿6}”úŸ{?žŸ¥âÍ2•ޱsû¡©ßæ31¦Èð½°qþ¥ï}m»ŸTpüÍbÔÿæžG?÷ÞîÎû·“–<éçaöãîÜÍý8H’´3x¢è“œoÔOã¯m• -eîÝãyOG÷âŽRd™³¡†óR8ïGÿN f[ÏsÛ¸×y¤–üy<û±sÓ;«0ùÜœpËÑQò¾o÷Ã8qŠÿƳ§IN`‚gÎó «ô{F¤Shöa=MçÓ3ûô¦Í6lÝÎi©D3›¹?éоÈx8‚Ç£›ä¢nê×ÓmŒÊê’ -ù"ÂnÖ_îÖôÕ?\7ÓýØO8×öº¦oPÜTYÃw»~œfßv3§ñ*®k&@þäÏíêïÕÿø“çendstream -endobj -1399 0 obj<>/XObject<<>>>>>>endobj -1400 0 obj<>stream +1416 0 obj<>/XObject<<>>>>/Annots 345 0 R>>endobj +1417 0 obj<>stream +x}YÉrÉÝû+2Ø<eÕ ©7ïÙ¸¡ÝalƒD¸lJ¥”\PƒºŒÿ¾Ï¹)U^˼"¬8:yoÞ93Åß'¡á_h¦‘‰'&+OFÁß >8 Ã8˜˜ñ|ŒLi¢pÌö¨0 ®7ãY„ïJ3ɚ͂xàÂiB9Y9ÈÅ”.M8¹R9ªI&‰pÉ8ˆö€”‚¥™Ï‚Ps —ŽGbË„f: *=„sÊÉBr +–6yRc°Ñ|؃¢ÓüP² +ƒMƒ¹bž±Iâ)‚ 2“$Цâ1-ö¬Â`çs̳ +#a«Ö춈@ñ„·‚d[…Á"¡0q`h" GB +Q…ÁÆÆß³ +ƒÇÜÖ³ +ƒ%ÜÖ³ +ßH²>°ƒMBzëY…Á¢¨´UƒK0Yq7F‘IŠ{ywv<…ÉŠU¡ÂÐ_¢Id‹mÍ* £Ðo¡b5¦» *Îkv&#^lG—¡X2ùÀ:=«0sr[Ï*LvÎmë1MžÐÝÕ˜&ÏPñŠU,Ä3Y…K‡3d×Ëj v1 þƒ±±«pi’QŒ˜yVc°qøLÖ…yºÖ Y®± ³ÂUÓdÏ* v°ÎDÏ*<˜ìYgòAÖ™èY…™>†Œ-73ÜWc°Éˆ&{Va°ðXçÐhìh$ RXç€g†C˜Øv`Eq4¤ ÂQ‚]rŠ=†(’™f¦â +NÉG{ VºN± +ƒ³ç«°‹ãX±Œãƒ•ãÍËj v2¬(Ì(óðS² +ƒÅµ@{¤1Z(a̼¬Æž“g‘ta–c îbÞc[Af…Á¢‘Ï*ÌP±ë=+CŒ£€g.œ'€z„ æh¨H¹)KË‹:{q>H¹T +¢^GbJ.bȳ qrÀÔ+»zVa:Ñ&Ï*ŒøËE̳nÛˆþCtÄ j$H¶U˜ÛŽèŽg†bôfb [¹¦á”€M‚D±ÂPó„ñ¬í¯åÒð‘ !N!*A‚(½ì'qÎHqeœ£Iˆ< £ÅUdOAb‘°(a «0Ø)]U,‡Eè*ªh¨WAœàcô˜[HNAyF$š5JGâH‘t°4¸ÏÖS†¢àä@j ÷]-ª1ä•OÉ* V:F± +ŠÌ³®è‹HM•fÁŽçÏlÖ,^T±–U±ÇõXk–>#÷Ã1‚jÀà+ˆ òpöœ‚HŒX;È)ÈóÑã5+G§b;á P¬ÂptÄ+¨g5fYÅŠU,ìGb“¥ŸØÛÒ¨:‚¤ð†Q¸+¡bVDçú™&€‚Ba¶KCÉÈ8èÜCúÉ5žóœœIžó^ Z¡—Sò"6ȉ)è +y"aÀ%Ú®WB±žó¦0>žóÐ…{ê9FÁ¡^çŠóQZÎCÔ*ñj?9CøZlQ^H¡â<‡ bÏIXÆûg˜<H†Fž“íðÒu³7Dq í¢B%†.ßÝX(œ‡4E~Ú8±¦™Ò)Ûáž"Ó\^;D¥‡P)½á9iŠœ•TâL 8<Ípœ‡äè¹â3qâ"r»Xžœ½™å?rM¦3³\Ëo[ø&;=_µ]“fÝëå7¬Cc†nÝ[(ˆ°òô:m;óe·N;ëÖ ïeÍ©ùÍÜÛµù3­0ÊÉÌ[9œ!µ|È[³ªëÉꢰY—ו©7æÛûå-¾^¯!ÞÕf‘–«Ô¬ë¬/mÕ¥nÙÛ˜îÁš'›6m`®L×tÝî·³³ÇÇÇ ¥§AÝlϰ«XôêR»ýÊìÒ­ Ì]aÓÖšÖBC/±‡ýõцßlÓ<ýoPijød‹Ò6þ»àWi9ê¬sÔ@Žh!°yø7_Ì[Ù&-Ì]¿*òÌ\çˆìúzúáîúëë! Q`Αãݳ‹¤ +QÃVy•=Óþ˜w—ü¶î›ÌzKæA'“2ij®Þ9–JÅ¢â™WQÞ´‰ñ~ßöl»+‚îçAâP£ï,úACiòÙ{ÞCýóJÊJNW…¥_ïêªCHÚŸuÊÁ‚«`ˆW^µŠS"LÍøUy04 Ìõ#KùÊ­2)²¼´¨³ÅùÇ‹ó—ë!q»bIæÕVïÕJúâó. ¹›|Û7ÿQŒ +GOÈ>±ÙÚ4:óGšÎïÊn–ò}cngÑc»,¥ü¹Q“ÀÜs<\mа©5—uõŸÎÜ×Í÷ÿŠ:ˆÕ§>Ͼ›wMݶfѯ*Û™‹¦~léÏÙþ{ +o›ºßyjÛçk©õçê®Ë¼Íú–Ãâ8d¸Uæ zÈuŠyõÙ–ugÍyUa^d– I1³^F; +±_ˆŠ©Ö,žªìHZ¥ +ïÚAøþêfq”<¾aumnn—¦‡ueíf¬›Ž_OCtû®©»“œ£ëã‚ùY#F˜—‚lÇa 7ðÄ|¶m]ô2ÕoL—pn5›º)ÝXÂy“®0¹X‡/OU×Ôë^”#GðÞ_îê¦K1²oÛÖœ¯j ‹“!ï¤ÕUdð!ª‘Å_®viÛ>®Ñ;e‰¦CŸ­D ï +4¢éì0NíŸõ çòâ…AˆÃõåùÝ‹ï§ùø´øtý‚˜a²^™¿>^›]ÑosWGøÿ©aŒ\aÜ,ŸvRHÿ6n\Ú™ ¶7zÙÅÁö‡-0Ìõ}ƒ·¦ª;丮y~}}8éFvʃýf™ðÜA-DßÍ]“—)&Ê¥ˆÊÀlxðKÆuq¥ƒ‹mìß}Þæ(ÿÏ6]£ÛŽBs‘fÒx.*¸k>sœ`ζ_ZðLay×XÔZü£«`LÃCø<ËЉ¼ÃXþ³vS÷Ì1Â2'þ—¡ApX;h»¦Æ¹Q:-¿7MÝ7žAåSÛÙÒÜÕ8«rN^ì ÑM^¼h(\å÷s­†£y°ÅNîWfk;™kgïñ “ì-K7|9Âô/á5r–à&ˆ³-¢¿/O>ü¬µÐMendstream +endobj +1418 0 obj<>/XObject<<>>>>/Annots 397 0 R>>endobj +1419 0 obj<>stream +xš[o#Ç…ßõ+ú)p–Ë!‡·A Ýµc{Ë®ç- È‘v¼$G­Õ¿ÏWÕœî3’aä=:¬êºwÍP¿^aÌEXLÂt6û‹ñhÌoÒOÿ¼X.G³0_ÎGã°Åd>ZœÑ.|¾P ;ŸYÁ°‹Õhª²‚÷a2™ XŰ³rTŠl4j1-1j2¶ÿÏ™QŠ]&6cSìÇfYÁ°sw>³‚÷a:ö`$V1léÁȬ`ØÙŒ€f›Ã.È$[–æÂl5šãî|aÞ:0oî!-„¸«¹%2É $7 s©¶XXn2+v6Ê +†]Év¯Á¸[^“fÅ–œÂÂYÁ–êTYÁ°«ÉL€'å@³bØÅl`³â}(‹éÀæX‹åœ_ân9#IsGî®`Ø¥g=±Qt:å´(Š?ŽL4’s²(-{Ž\¯`Xª‰¼gV0,mH3+˜@ ³8±Š-c«¶Ì +¶ ­R »[³¬à˜µ*ºKKYK[ýa”#wW0léM›YÁ1(Î,Áèq Fe6Î(ǰ«Uú¬Ÿ+‡¦‹UŠÍ]³=kV »ZZŠÒ¹Š FQŒVÂ*¶P eÃΖÖI³r¶šb*ÖźÉv2ÃdaÃN'¦°‚aËÅ K3®TV°±6ƒE³`BEEª¬bK„@fYŸ3JËÚo17Iæ­À}X®è Ì d6ڼ͜@Œ¥€çB*†YãgQŰ«r sÃÈö†§Õu乌hi- ¬`S<&é +¶M-I³bX4‰Ì +†]ÚhÌl4™û×ÇP4Ñ‘˜Ü³ÑÄÌ +N&g6š|–=›˜XÅÉäÌF“{YÆ*î&6šÌÕ⣄æÁ[Gn²`ŒšÛõ”Ù(:±>‡,f +G.*vº´eV0³” 8±Q1SÛo‰‰Ÿê(Ú”±)^X]dV0ìÒ.EaslaKVfã±4”œOÑ™#?V°;±@eV0ì|bÇfV°µ°~lÉϸ4Ú,Š(z›1¢ÜSeÃz‘dÙ¨xQÆÔsudŠ}”dÔ’ç½qÏ£ s> +z9ïýÌ Ä¢[†L*†%`ce𥲂ÍO+&Ñ,˜¬NmÓÌlŒB¹<“m‡¥£ÞŒÍ(K‚°‚a陬`3jbîfÍ‚­ÔJqfòäàn’U Ë­KæšÚÚűÞ¥£è•oݾ2 ++v9¥ˆ…̱c»*3«Öw›ÌF£x.‰ ˜“Ò‘Udl&Ûu'¬`Ø© \aÃ2ˆ²‚aiœÏç +Ædæ‹Z¥6æ:É*†]ØŠhvH„lj²3QŽÌ[˜T,ͤDzÛMW&q~ʈÀý)£ç +6çUȤbÔÎDZXÁ‹¡°‚-V"™U ˉžë‰.­¸QÌ£¤#³8’¾˜«¶PLŬg ;·¶V0ìÂ:OXÁ°l‹Sec1“ÙÉí§«–W*+–q¦6G‡XSb»ŽÄ¡žeŸÇ¨Ì +6‡¬¥… KBF–ŒQS{ŽÉ¬bXvGJ²Ša)yRŸYÁ¬¿,ÿznt—_úåïë¯}déqŒëpĘLY#šYÁ浂°‚1Š&(„Ulîzþ’fŰ ʬ`XJqÀ +ŽO +s‘µ'…ÃfµY1,«éMç*湖ň%V1,7CŽï&øð$¾’(X (9GFÆÐ;Þ`cÛÎ¦Ž¼äe69eV0,]Á©™L¤èzò—XŰe1Ь–ë—üeYÁ°ÌF +2³‚-vdV1,o)Ô#ŰÌõH1QÛ<Ïš[lýÈl ó8¿>@±# 3q\zëXÛ3z&gàÉËS3¥Ša©Í©²‚a™P3eEºo.¬bXê­·ÐŒRlù)šÃÒ‹z®bbì7ž±w=acRz~µÀVÆ±Ž¼›»V +†å’È +6‡l™Ê²Šay‡Éé\ŘÌ㻞«8:D’¬9ØŸË5¯šÃ"Õ{oþ*¦¤½&cc¨ØÎâóÏÂ;òPñÞ¯Ç#æ/³‚-……*³‚ay‘JedV0¡ŠÁH¬bX–ð•È*¶$Ø\ΚÃòB­R KCªtn ïc,Ö‰#©›ž¥Ýp(³‚­n¼áóX_xA:Å=eV°ÅÑË5³‚ñ‡IKr«8Æ‚l&6E ûžÀ5@(¹Q‚-¹Þº™ »(lddV0Çúsmf›Q¶Ed6å»6ŠýeêÄQ4ÊvΈ-ö–ZXÁ°þ ¬`ŽåÅ30iV ‹{ÔTfÃR5z®bÚ‡’¬bXnrXw·à™ÓÛÏÝ(»›XwOXÁ½»Âº»½lt/³Š{w…uw“,Û+*Úl4«&‚ÍÝeV1,;ÜRXjÈV÷Ûˆ#rw™=Æ¡©í9 +†õ— +†õ‡xaã.‰Én…;$Ø‚‘­pV0,Kn©²‚-»¶_fÍ1»tC|ʵ‡땸âǯÒ"6‡liV0¬wTf£bÒ[×V|kÑxû<‰÷8z‹Å‰¢<ÂÅuÙÝqä)ð÷EÏ"•YÁd»…̱ŒŒH²1óžC^ÇXãÆÛ©yž´Ïœ@ RA_fR±d£LXÁ18ãHÖÏÙÎdV0²´š¥–rD8Ë +¶Zb¡ô ,D‘£äSÜ_ZMøbÄFºGÉž0"ÄW¾—ÅÞDºVÿÆ Îo^&çû ç›…’/ $Ššw¿­•Œ²Gõ34öö&sÂ1 ù¶Å”$•ìPÑ; Œ£Ü9NÂ7›þoc22Ïìí{¢š¾÷ÉÉï_E¥@˽½­L:Âù;“ÌeÇ´fÿîÏÇ.lý‰ËœóÖ\8Ï ófúnjÀ<u}ñòJ«×·ö¥ü|¹×[ÿB~®7ßÑb£ð¦Ù¯ëCxݺ¶Ù…Û¦ ?ׇmóp «o/ß}ÿ×ë_.^ŒÃ OÙõ¡BÞ]^½ÿßëï¯?}x;ê¾uáoIìýõS¥ Ÿ×û›µ«â/’®ù(üØ<„® —›.¬a^­7_O÷Oìª6`ã:|<µÕî1jëMÞUÛóÇMÿP}1 +Ûª­~=ÕǺ«Â§j½­wöAqi>šŒüà»¶9¶O=fdÂÏ_Ö]øõ´ÞÕ·ue†ãf6‡Ð}©Â¡êšöë?žRŽÂëõálüMõGÎ>I ?¾yíŠ4\ò1nÛ&\…cÕ¶>ë}Õ h £3ë!¾|ó9lcÖ÷Õþ¦jŸÆm1"nW‡c·Þ툖{å1l õ= Zß«”7ÕM½>< ›èŸ”ÿTm\wO"Åü&RÍþ¾ÞUÑîg ”Ÿ«·›S^VÝæå×öf6Ú4‡Ûg&Z¯ÛjMú-=Ÿ:ÒµÞlȶ®ÑeÂuuì¢îcÕþƇ‰òéþ™fâjŸ´=ÔÝ—pÜßlvuõ{Jé´÷MWMÇ Í „7G,ÿ÷×eˆ8ùúÇIb‰…5õÁNÅr.I7%êdR<1šG‡tàa›zv2æ/u¢¼›(ÝÁ>jåÿê#äÇMÕYüº/œz¬6§¶îÃßù§E*V+Ã&5ùÕÕÕ(|¸ïêæ°ÞþÃm}wj׆Í6“åêÐUwÆâÕ»ÏɾsScœÓ4 +Ë»ê°õA#0F‰þzoýlv';:Γ{æIøéP{ù¶>œ¾wçý?Æ—n³4t:Ò k&ÓsK±ßS=PDÙÚ¼»i™®æàíé°1c˜'äâK…Ûê~×<ºï†ú7‚ߘW“èÉ<Ém +ËàPÊ_ÌK k<#ƒ“ûÜœ»Î;üXUû]u<¯sbbÚGÐ1Ü›FáŒû­™á$üôþê¿ácÕîë£}(¼ª»xvÙ0ì.7; U~½­+{¢‹4ÿ§®,€ uxgÀ¸OGX†ì×Öô(OŽoëõ®¹{ZåØH‘œo£ßPnmü$)LîGìñ˺­ž„qª¤7ËE›‡CÕ¿Ô>6tÂðY +aøÙ6lë¶ÚtMûÄ…ç§X6›m}ûh®Åsþ´,i²öj×^t±•,:”åÕnσh‡å~}üÊ´oédbV%ëxÁøû3úÜÊu×µõ ƒ7ì×÷÷ÿ¼JÈ+©÷é`Î}¼|縥 ¢è6  l˜¯-7Ó#šÜDÛ°>áÅ¡«7¿;Tx'…æóŒ¥^Ðû4¬<5±ÓÈ9—Ï4ªç¼`¯À¼Þ\?×& +@ºƒSžw—W¼*Öá]½i›csÛ ýÁï»ÇcWíC×V•-©¥=ÀkšxÁ¶§8?žÓ,léY‹äçÓý}ÓúM7P3jh¶mÔãjÔSÖôœ”Ýá'8éš"ºÚßÛyÇpÝ4;®Ë§1æ¸Åx}whŽõïÌX1ËÕ6¼mîl&rÏþb1^ÙçUgÉ-—%ñ +1µS¾¿¾ø÷Åÿ$ž¼uendstream +endobj +1420 0 obj<>/XObject<<>>>>/Annots 449 0 R>>endobj +1421 0 obj<>stream +x}Y]sÛÆ}÷¯ÀCgÚû`†ßŽS'ž&¶ëº¯”DÇl$Q—¤l÷þú{\ÐR;Irtg,X©ÿ= ÈÇe!E)-7'¾çã“éÛÏ'Eìù”æ)þÜP^> 5Ý dâC! )ĤÅ`Ów¬Á +ýÀ+Œ­îš^ÊÂAæ%” +aƒÙ§ « k0Ø<÷bêpœâC± aƒÁ¦©—QêXƒáq$©˜XŽ"/á”Ãäò$ùá]…Äd\pNýT’ì)`0! #‰e"-fÙbfj1Ø<ð‚¹°OIi‚!\ Hò`0LAéZa  k+yHr_¬B‚ŒðÈf‰‘®Ö`ö8…s†5érÄãXÝ6Í4ýQ̦‚t[‡Y8D:VM®sê± ãñÈfWâXƒ¹ˆSöibU8ö‡Û‘q°‚D8tÛÆ|<†5˜Ùbnk0Ø,ÃÁ[ƒÙ©œ£öU§°¹Ü,uBqjdÕ ÇŒm¥'$Ž5l!á9Ö`v*Áv¶ƒÍøâ9V]b-)H"‚ŒË#«.:ÖàÉeǪˣ­ºèXƒ'—'vpy° Ñq~«.£©I7ˆB¾@‚´¦†SiÄÑ:Ö`°¸8>ÇÌÉ-p¬ÁìrÌ©šX‹ÁFÙLY\Ž! ×€ ]‘ºì0»Ì½Ï°³Ë¬aXƒ±mÍl-‹Þ˜Û¢`˜ÅÊXX½ÃØm N9Ö`°8ÌÔ²ó¶|ÎV·ETrI"qBæÂaç ›N¬tó8æN½¡‚œ¶4†˜bˆFVЬÁ (ÇêéD‰”ŒáX˜ Ó,`aÇÌÇÎ=ß±*rK„©Å‚4TÞP1 ópr¬š¢¿Èô$‚4‡9œ÷#v¬Á` Ö0¬Á|8Ü,+ŽK>Œ5¼]ð®Bq$†´lʷÙª,fœüÉŸ"ËŸ*„!zʈ$RƒÁÊHp¦’¤(-†ƒKØT›*‰£–ä‡g$Ht fw}ìX5‡§WP°® 15¦˜i0X5 ÇÇUÊi¤¦«©oX5 †ç®rA‘ 5u˜M3öibÕÔHê  ãðÈâÆáT'VLÂÐ ùȉ©Á`¥á;VM1P´F¹]òxÉIwu¦I8cÕÝXß ²T1Yé5áÄJÿñ¡¼2‘[ì*Hv»Ê;رR†Ü›yrܰ¥œ‡ˆee¥Ê:ÌÁäœ%Ç 6çÎéX 5Ÿ@ aˆŒ˜…CöibÕ49ºT1Ù$B©…Ž5Âh¡‰aEXÛ6HVä„'&Z<³’à ׃$MsBaÀPV +Éàþ)c[ºª"G"Z…œAβ¯¥„Ó1tã)3¬Á`ñ)±¬Áhwøb`YÍô;–l#ˆ}â"À¶#‹–V HXƒ!„3V…ñ5F_‚"$È,þFžk0âI%ý«Âx kõ‹° #<²*äXƒ!Œ¯r!%+‰­Á`åØ k0¢•w¯cÕ)¼;õû¿ªA"Œ3b>~P–/V¡ßSý7ÛI¡¡øäh|þš$€)Ù/Õ!„üÅ@ÀDáIz们qÄAø^Æïà!zQ”Î +£ Í•Û䤈Mt†sÛ ŠÑa¦]€ +ç ×]Ì÷oä>ÞŸ|¸H‘|ºâßÒ<£û•ü6àÓýò6íY6_•ðŽ]_®×%ïH%DÏ›íSý}ßÊ'‡>¤}­7u/ô±3%–ë}7ÄpŠŸB\¼åfÇ«-Úæµ«·ß©ÞRWn%o÷nuàÑõKÕ¾ÔÕ+5O“É{ÇP‡}õºýn×´ýL×FŽg¤ÇÙ[¬« µU׬÷Ç2ŽÇ…-—mÓuÔíÛª?H&ÞÝU}ÏñìwTÒãåÕup½j½EÍâÉq$†×·¿}¾½~¸94CrÿÑìÓõ·³Ë+¶™ÕBâå]4í’“,SßТ¢þ¹¢MÙõÇÜ+<úVþ0X»j6%üû'Œ!ºjúŠÊE³ïù ÊÕòT®VHqw¤Lñ†Åñ~Û¯ûz·®pZðå©\+g…ÀùêËåGF\ÜÑ×d­+ß-„¤½FRÔË+êToJv…¢4³<âçÙ©|)ëµøS­»êõ¹j+IþÌØç¶A=lÊÝŽóùåúñþúýÁâ„î¸þi‡4í¦Ü.‘Ž®Û ï&¾a›]ÙÖ]³=(D¼S Ö,T=5;.ë#KÊmU®¨«ÿ'NÛËéÀ§ÿFo¸æ‡ž¢Ì¿6ßi]½TëƒbÃÃxPnË×C[dã±­Q#GYÎÂMë|]WÛÆßԆؿ>— S¿ß"Ûâßì< qÞVh^8 +=´u½ü›.êcå„§%|F³E§¢Ÿ‹·ƒˆ12Ü‚«{ŠßGŸšÜ‚Ð÷ýÊÅžµE¼Qp±—û–ý’R`ë9V¼+ìwa]]ŠÙœ@n«ÕLá¯õvÿ°Y´˜›ýéå%oòá"†<¾Dûy„A/ãûîìÛÇ3ž9á4èS³ÜoPäÓ= ðë*/?Íü‚ÇýÙ¢ëÛr)0Ƽyã-€ûõþä÷“ÿT¶…Iendstream +endobj +1422 0 obj<>/XObject<<>>>>/Annots 474 0 R>>endobj +1423 0 obj<>stream +xmWËrÛF¼ó+æfç À.^§”$GŽ®Ø&+Î!  Ê•¿OÏ,Š.U¡ÔêíÙ™žÝôï&¢?e1™”ªn!þ²>¾}Ü6)ÍS<;Š"'ÔÒvc‹ §4‹ñì({Ì)a™"5gç¬Â`¤Z«0Ø< "ź|“Ö1¥‚8'Yž±NjS”2J8'A"U˜'Q¬“Þ ¤É8%A"Uls`Ï*ÜQŠ¥+ëÇh‰,H^Ø”‹NWÖIÃTšsÊI’.lq#=«02.2>žUÇÒÚ•Õ˜Ù‚OÌÊʉI +îhG™‰pN +â4Y,ñœ‚H(Ža´'5fƒ ìYñ!A¯¥­qʤ ñAa'µšE¨³ÑŠD«0*Å •Vc°&â”×}5‹#(Ö¥œfî8ÙS$Û*Ì)§0X± +ƒÍsNÙkææX´Ý³ƒÅ>:²Æ`)¯‘5‹qYᎠ¦A¤´®Ü„' R6ÒyAR®Â\nÈ=«0ØBR^Yuð|ŠŒœA.°Ç`­8åY…Áf–}ô¬Â¼-ŸgÅ*Ì.KÊ«Ö]Œ8¾EÊ. +àœDXÜ,œO²AIÄ™€LøÊ:$J!a¬›@<’AK© f)O ÏŠK'CìÇ…ˆÈ!‘*ÌR~xÖIa†7Ø +ZvÉaHS~?xÖI1hdP›>XANê1ïÊ*Vaf ÎØk K3Í*ŒÞ`ІŠuIIë!ÅMÉ +⤤qÖ$b1†-„˜SÂ0äjVRc°–¦gÝžib¿´Õ +⸎ sg0 ­¤)gaijÊ!OÊ[{âÔ$d1©1gÄ“F± +ƒÅ˜ÓÚÛÝæú>EHÚ=ò—Cšg´ÛËWCH»ê=NmÐͧ~ÛýØ\á»â +_ 1–¼GU´-»‡’Ê~OÃü\t÷é~KUÛÔý<±àÍú( ÏeÕôó0=/Ë~çuáYXþkÓŤM@ß›~?üœèqéû0¾<Ãñ ;^‡²~í»"¹~Wä—ñPß/ñÅ´­ÇצªéKY½PÌëÏëÆþ?i¨ºCÓÖ´½ù|{à Ïê5꽩ªzšNFMÃqDàjØ×ôÚ”t÷÷VÂëœáî¢jú'‚­4‰ËN<‰pœþë+ñýq>¼­ïá€nM»_Ü6}96õ¥A&€AÛ¹çeéÔ=ì%p_.kÇòoõapëoO—]¶\õ§~‡ý±š›¡¿¨Ðr…ë¾Ë–šþqx[€å>ÔÇ'jë׺•M´Gš²G=öQã0þb ŸÛy.«g©m ’Æcß38Œwårß4@×çêùdÕY;n·6Kª—¶™fŽñfÙ/ê×Écâ ±i:v¶ç" |‹b§zr7è\)ÝjÚ–žËW© +çþ¡­'¹D×÷ùécˆ„¹!ó0ÁU•óI_ÆáG]Íôa¨Žnh¹v'‹ŸWYXðú›‡iËJгøÊÉs‹ÿ,@$\î»Í×Íÿ«Ëaendstream +endobj +1424 0 obj<>/XObject<<>>>>>>endobj +1425 0 obj<>stream x+ä2T0BCs#c3…ä\.§.}7K#…4 Œ™¹…BHŠ‚žP$YÃSOÁ=5/µ(1G!3¯¸$1''±$3?O3$ ¨ÍBÁТM¢Ÿr =  !)f \C¸¹˜T&lendstream endobj -1401 0 obj<>/XObject<<>>>>/Annots 508 0 R>>endobj -1402 0 obj<>stream -x…YÛrÛÈ}×WLíK¼UŒ ’yIéboTeË^S[Îþ@$$!&mëïsN0ÝM¹ÊòÑA_§§»ÿç,q1þ$n‘º,w›ú,Žbü&üõù·³e”ºù*bW»,‰–#عõ™µ›eQb8k·˜AÜ+¡œµ[eÁ9k—$³(3‚ƒ'Ñʰó4š»ù2…0¹ '@L*„Iq'pÒägUÖ`º» »õî&4—bfW€Ô‚B¨sÖf -‹c;b  +0ª²ƒ]H•™@ì1c¤â9o¡ úd1/™De öG§+Šg’JŸbç‘(6ìruÌ vÅ‹id †Ù„”µ˜ìI¶¬b°(ḭ́pjîfh ,ðE€T“B¸ÇÈšRÂ1l²`8¢GXƒÁΘEÃÌ`yx†5˜9ž3A³Å`Óå‘W3XIrõÁæìsS°4Ø‘ã}…ô˜ádÌ¡²r7= £8e »L¬²3Øå‘fï𜙟 Üè` -¦ÃsUÖ`:,á(k0ŽQFÖ`8œ¤¸EÊZ v–ÉZ ó'ìZÌ¡Êö¥¬Å`1qPoAÖb°ù‚U¡¬Á`W¼ñÊâJf ih½`’ ”I†ƒ•Éa°MiBCEŠi±O1’¨,R¯žZ¯ˆ·ʆvÓîÜûò[¹;IT¢N?uU#é“<üq{ó/ö‡Â]Iþܧ+ʘB©¾o7_áòÏÔ¢î>û=úÇ×õxð?Rá~"œßÕæ+nJÛ÷n}¸G­¹Ë®ý.™x3þž™{ìÚÃ^©ÇCµ-_&Ë)3Ùo}?öHs¹ðªÑv¦æ—ϨL\Ï‹¦iͦü…­n¢š_„±öSIq´tëçfóWÂÈðhöËÍíúD7òxݺÛwîçêVú.ZUÛ”îÏWÉŸ¿ºýtˆhÖ¬Í-2„~¶A}v)¬I‘»E$h}}»;H»ùØm}\G×ÐÇÕÉhèjߘ¶ÅPÜýIvñŸ`‘{9ƒL~ñí |hŠ·Èmï.îÛšs¹9tÕðüòÀ(¥Ûoh£ìÌ<›õ‡K÷¶ÙtÏûiн03ÇMÛœ—^¢Üâûþ{Ûmý±M/œ¸ú8z4Ayj‹‘Sc,H#<²Â[±ÃôDýñ²ƒ`žCÍõå‹“Äw;܈ë‹O§QJWýËÔI'ý?OÀùõaÏ¡ƒ(iye_|Ù)èü_ožÊÚöÏåNζªö¼Ú,ÿÏï®°sÆ ·G·øq±ÙàœFŠoè(ãàâe^˶ }vŠõ(q9³0jC+Çxþ7—ÕÚà„ëÓ†Lw1 ¦ÙIþ·Ohü¿/7U±ƒaèªû+î¡íüª29ñ“cÂxû£¨÷X;Þ_ß¼C¹A|”-ޤ)üæÞ¼d9g󠽬-/Ok†/ Ëå ‹všßÞý~ö_>$..endstream -endobj -1403 0 obj<>/XObject<<>>>>/Annots 518 0 R>>endobj -1404 0 obj<>stream -x}”ËnÛ0E÷úŠY6 3)‘Ô2N› @ $µt«H²«@W´ùûÎŒ\‰F€«3œ¹¼¤ü3Aâ'«@È›@ -‰O–¯oA¬D Æ!¡çDr5ìƒÄÆ*ün ÔVDgµÂ8†¡Ã_Ê`¨WK㈭ÔÓH+´Gç©‘Ái´TdµNÕZ(‚*¦¾¬xª§‘‹›ò¨§P¡Á+õ5Rå.:û©(§e®¯Ðar±vÞÂÔ9(ΛÕÔª)Šb\©§É²¦± õ5Òù|Vêi¤˜£ßÙ×´!G)/kçK!éøñRpŒ,ȱ'ÑpÒ^èk¤‘¢¡ å$ℜ d³ZN6vr>ve±hV)¼ØJ|ñ|…º/álÓàöÁ Htdz|Å%¤ù'-¬€ÝÇþåé&}°`ƒ!*,a -ØNU]Tí‘°¼¤JÀ}_f#R”Pdcö– å•R¥]{¨ŽS½W$àu F§:«Ú±ü=Â)†_]_ ÐõP¶yÿqËby|eJ,à±ÙOÛµ›¼«§¦e[p軆M¢Åšn.7ë<ãÀâ ¾ïžÐÅt¬Ú#qâ‘8‘¼Ù‘Ü>¸sîI,¤Óø:Ò¡a´û»Ýöžûî½ÌGøÜåSS¶#ÙñÈ ¿™¸`ceBõ_Û±ïŠ)ÿ[á-p.¿.„Ž\~Iƒ—à@ûendstream -endobj -1405 0 obj<>/XObject<<>>>>/Annots 521 0 R>>endobj -1406 0 obj<>stream -x­VMoã6½ûWL·6bÚ²ì-)ºÛ=´‹n|é‘–(‹µDª$µ^ûãû†”ç£Ú[$‡oÞ¼y£¿FMñ—ÑrFù‚Šv4S<¹û÷ùÃh¶¾]Í×bF-åë…ȇ_ Ýò~ºÊ×bNóÕßgø8EU\Èò9=³ÏÄâñó›Íhò~M³)m*`Z,W´)#<).~ªe”£LÐ/ö@ÁÒGãƒl’¦¤òn¯½¹þqógŒ“-Sœqİ)/2£Ÿ•,)ÔŠZi¨“;åÓþ9eÙ°¶6ìßœï¢Rûàô¶ª¤ƒuºŒ -k‚Ô†<ÙŠz¯ª¾!m*‹kdÀ^ ¬UÓ1â -t´=·C A+þͦ4Îr…‹KkÞÚdY§L£¾CÌø w$o[jmvÔè½z—RA9ïRY .ˆøCZɆ•µÈ¯À08¦o·¥X=¤á‚¬£‡ážAå³<…1ÎVï£Ñ7j­SO‚²M‰"öFU^ðúx 8‹œÆ³ì'¤çZï -9e2]+ƒ¶†$´ÕYm¸ t{ŒÅ¼•íVÒAmÉë .©¡{7™áyIX·KXÖt®‹HN&f‚nzÝ”L$kãFéôKÒ°Tr}µ¿¤J;HÏõ¨ŽvÎîœlÓeWß$&J¥wýSN >˜ò…Ìœ*‚uGA„'_Û¾)IöÁ2ô~dÑÝÇ:N¢d±¨ÙN9œARþèƒjOr£Z~Q(Aï{ÙQªô ÁDi¶òÍúšÙER)‘g$å¬ ß§Õ“¬ò+±tu–/Ç,ÿ´õÔfã´÷®æ‰D\é•¢÷ïT¡Ïv\w±P«2rÛ(f€ÕWUôœá„ÙÊý#>Û·@ÿË´¤!è“)éð5ê (Õ£ïcmÚN7P'÷9†#¼œ$šÜËô¸aßÑÑ”\æèu‚þPyÕIˆCñ?œ@G÷žÓû×Ñ|º¾œ Üüà À_¾æ7+ -¥éèÁÑYúÍm€›H¢›Õm{O_”ól?pøÔd\ÝVïê—›%úu´|ngØÜé{c9kTÞqRRš[…©id{š.’ÞÄx‰eøîûÚíà{²Øó¥è HO¯¡I+^¦o ­Ò˜½ìƒ§dA&¥„ݸïR„g7 L<½uÛY¤AËõÈ&@Ùi_‡tºa§’SõðÝJ…¢æŸÎ«¦Âí&<å³ ÇQé´ÙÇý«ºí›èŠ‚>¨í‘Ytüòò÷³ž;+š‹åæ–ŽcW·˜N(Þ -Šýñã-Ñ00¶°©c4W˜DtœÌ0âÒØO><\†ÂÇQ…Ð^4›dÈñ½ÆûCœà(F›¼_ÝÏùyžæü¿yGš¯¦bµš§¾æZý¼ý>úí.tendstream -endobj -1407 0 obj<>/XObject<<>>>>>>endobj -1408 0 obj<>stream -x•VÛn7}÷WLòˆWWKN>$iA.´F\Ü]j—1—”I®ý}Ï»•½U4†mÅ$çræÌ™¹=™Ò_SZÍh¾¤¢9™dšŸeç´8_áó ßNÒ&Ìf«ã«y¶>x¹>¿yNÓ­7ð±<ŸÒº$ØŸLh]Œ¦Ù"£WNŠ )Ô’|“SaÍFU­AYC¥eötý f4Åk6sŠ–04Z×q |{Ñlµ<òØ“2Ѷü¯xòm^*'‹`ݾ?,•Nå-ûÌèwªJú@{Û"sQ²…†Ã€óé<›±ó~7­Ö{ò6^,„!/%Õv=Ú-›óTY -¶’0áØßÖ‰"¨Bft‰Ëœvƒ‡[QaëHh}ÿuLžS^Ý”2yÅÉ"¼ÖsG²¦muI9€± <+S‘V7ìNù_žzÞùH¶©û÷µÒ6ú¯>á -×ý1~כּ©œm·ô+½¿zûùã—OÝåÙ4•æÞå¯5bð?±†»UËùØØ3öÇ~q3–ÃÀÞ_}@ù2»«UQw0R”Ä2¨z,I¾'aöÖHÚ©Pã3‰¢°­A‰-^º;éža†NâЇÊ‘¶ªhD#ɺ>ÔŽcªIøXC¶‚JÇË]>ØHt@1¡A/C¼xÀ3Ô8½M.Hy°Â!¤M¢ÊËÏÿ¸¼øð6 ßÃÀ/§”A(í¯Ÿö•èó¯SþûøÍY×F#ЄPÆà“ÎúÐÐØÐŸ“ tB»p„^͸W‡/cÇÒÇH‰Æ±T¤W±œ—z3$õ{ŽÄ·ècn¸m›@é=Dè;.i«På»~+ µQp”Ú|$怆A^¸ïJ¹­Fލ–E]í ß»×â +†éÝqëÝXÛBè1ÊÅX«|w?ÍÎ2Zw‚ç:=I°Çþ8£>è¶^ˆ/Âm³µ.4Q$1—‡Æï„V%çg7\77´¯õÃCjBNµ"j+'hõæðG×?¨àÇwìÞp#¥5„>¤­(Áš®C}4ùÞ]¬Ô&‹!éWMzôÀ[ØgïÂð¸@sÀ½ýÈ.Ö.oÈ1©r - žÎhT|hû…Þ‰½g«‡E%ÀÅ'Äèµ0˜nþÊGéÚÑê/!0RÃZ£nò2æaðáaIîMß+„дÀ³¨­)AGh  ž÷â I,…lx г›z¤Œ o£Œ~³æ °Ä¬†ýÒRnCýˆ^'E -ƒ‚óî¤9Ò¸ÑÇQÝâ²ÕEMJüÀ8(%æ3fé>ñóxŸqr±6ˆ#¡í²ÄÛÆ#B_Ø&ºÓˆ”mÑб+²(?‹¸†;E’n6ôÓí¾“A<ÝÒ9`Mæù£ŠV ˆËJЯC”ƒóI¼vÌvì")ó^ö±| xëʤT Œ8ÙÐl†—žˆè=¹- m>¢iÎÚ$[ƒ ¨á>åĆ÷&ˆJ4þ‹Ä\€ÄÌ^û/ÑGÝìç~À¶ˆ²HÊ‘H EµÅÔáAŸz}f§“~kÁ¯UU,-Qÿo[UÜà?€4QF%â×-(pxË Q§ØçÝÌ.±ŸÏi9[¤%çòÅû—/蓳߰ؠSÒˆs…ã8휮&ØõÊÿ³o/V‹lµ<ǶÍï&lîõúä÷“ù »ôendstream -endobj -1409 0 obj<>/XObject<<>>>>>>endobj -1410 0 obj<>stream -x•VïoGýÎ_1v?”(æà€v?9JÒZjצŠ"Eª–»=³öÝ-ÝÝ3ðß÷Íî]ŒÏP;‰‚Q<¿öÍ›7óo'¦þÆ4ÒhBIÑDÆÓhFãÙ”¿ãŸ‘”uÞÏ;ýO§ižÁe2×”`>Ð<éÆÑ$Š#ºqÂ8UÞRftAª”.]foæwpS÷Þp -÷îå—ùÇßh¾DçzÍžk•ç´”ª,“F–ŽTF[]Qe%]^Ü6üã-9 ëŒZTN¦d¥yP‰´Tˆ•8á€zÃIÄuvÿÔúž„ã8†B1x¶/¦Û—.é7ÞO íFôu 7e)•ž“r•6ŽâÑiß%«ˆ.2*µ[ré;fn)K)ì)‡>îe]S<І\|ìYÈïSW èJÛžµe“ëim;¯³ªP¹0ù0XOûUºò˜Ù¥®ò”–âA’( hš­¯ååÄ¥m"Ì{)7Ždªþ×C袀€ÜZ{ˆ,Y]È$£E;ø è´áÍ84”Zvá'¤(ÝAgÖå­õ+kú¹NDÞ·¢XˆþB•}[,@þhº3÷ÑV|j–ôÖ >/XObject<<>>>>>>endobj -1412 0 obj<>stream -x­V]o7|÷¯Ø-*ÖI')úðC¤Ž‰ÝV×EÕꎒhÝ‘ -ɳ­ŸYRgK–“ºEØ9‰Çݙݙ%?Ÿ¤ÔÅ¿”F=ê)¯NºI—†ýa2¤Áx„ç~­¤EX 'øøÂB¿›&ƒ—BŒgÞe'Ë¥)e $ŽG”„ÄÝ.ey+3´VeIÊ““º ?:µÔ¢$oȯ$m¬É¥sÒf·ˆöf­Eºšñ»&C‹„Þ}õôš;~-ám]j÷† ’­«ëìý9}XÐÖÔT;òNÿøm@ÎoKIJ3­ó²â%Þ«Ä–JµÆË†JcÖ$|Ø!¡ÒtK>ˆjSJ×qwvÐv^X_oaIÚOzŒÄåVmÇP%z*ª¹ ²+ÊG Ð¹œPŠ’rmÛýA$“&£„2ËàœWz@¹•°Ò‘¸ªsP2„EÝí´‡˜¹2#Èx¾+éŽÍ$é¿A.ZÍóRIí©ý‘âKý†2ªhWÆy-*yÈ´<ÖýO”Û­L]´”žæ"Gn2 ¬|sÒ4¬0úÇPzMÎTÒ¯˜´r(Yn¬•¹/· ‰ª7moŠ}e<·:ô ïóVSP.4‰ÒšKÖBÁÍpRÒ=¿Ø`‚Oji K…þ$´Xâ1ÇѬåê|E"¨w¯Ñ7‹›åì´AÔq'Á|e Tˆì–Jy'KÈk«üöP~ ÓQ(V~®¥óè3m„s÷Æ`±0@ ݳÕX„û²'òJh -¢»Õ}«=vû°-¨T#ÕSÃX*¤‡¼\Òl$.$¾ÎCr6É.uSÄ{…z×þìö.Q„ÍÆ+¨¶ýûÍdÈM…ük ɯÐÃÀQ5vO~EÚèv,OÔº›F/zg½“­¡Î‚ &Tkõ°ëk Ðxüßù%î}4 u:û~éF©òo'ÛnT.J›Åˆ½¶_ ea³AÙ¼ýÉFãgö+$.!îÒ˜Te)_5MQú#/ÓhÁ—ŒvOyB³;åy%î$”iÃzJïlÊͳ'Aƒ‘÷Óð_¨’u€ÑÇö Uœì·58†ø‚þZaT¸¿ÙXAVJÇhM’=„_I÷Ü»—pÀnØSL,™PZhsŽa®ø„ŠðJ³½ˆÏÑ‚.W>vÈo7òüQ3&^1•;®ÃqcœFî»üt\LŽ$¿°¦‚-/®§gă -•ž<„ÿ®²3ŽÇšïÆk½õ]O;½3’>O’äÀ&MƒölÂ=ªL­ƒÁ -åÖrùuÂ?ŸÏf7®.®o¦³ÙO‘Os&Ód²;”4>¾‹sšá'ú+Ÿ]÷>žG kcqÔÂ÷ÿ+ rãÓ0mŒ)ìÞ¨¯ý Ø+ùì¸.”’IÇ25Õ? -)K9·ÂË3‚pÃõ Ó@м^â¸1ÖŒws%â’8îÓ0Mã]eúöÓ»·ô‹5·ð]˜¼®pl'ÞÙn6´GÝ _þëÅd0$£á8Þ;ÒÇ~Ÿüzòù2Eendstream -endobj -1413 0 obj<>/XObject<<>>>>/Annots 524 0 R>>endobj -1414 0 obj<>stream -x…V]oÛ8|ϯXä¥)¨þ¶[àpp¾ -‰›Ö:ä…–h› Eº"ÇÿþfIÉMÔŠ †e‘»³³³Cþ8éR]÷¨?¢¬8é$öúÉ„“1¾÷ð_JZó ,=~|û|ÒëL’ ÆÃ¤Gõ†Ã¤[?iZ„@ƒÑWüˆú“N2úÝ‹q÷× —éɇÛÔSºØÑ¤Ki t(ÍκI·“Ðr+<ÍÖ”n•Ù8º¶æ§¥-Ÿþ~Ÿ~Çþu±÷_ôÆÈægXm¬çõ´ÇBGÂät°9/JOÞ¿|¢ÓýÖÒ¾´^òŽvJK²kò¥pÛSü& ÍÈU›t>È-bÈõHl„2ôx†ÐŒÙ»}Ð…ìáÍã{òJë°)º ÜîMR¯ìÀV¦œ€qj³õè†È9)­Çõlúyþe1[$þŇ -øÕíôkÂlð.ö¹Åù*{Šx}y1 -¡4  Û²…ÑȽ۔¶Ú¡mí¡ÿífz}Ck[R.=B¸Ç÷ -D±´ŽVˆ]•eÒ¹u¥õAªÖ2'´ÉomåÀˆcòÒµò¢:ß«\ž“³TˆÃ -%ØBZ#Ij'C’­ -d—´+íJË"ÏÙí³,3¬&åú d¶ÒH¬«Âf®`¹\¶r2î¹Ë„¡•QʹJŒ¼Ãqu¹â&·;´l:´V/!|éáîfº¸!'¡,â¨Úå%G}It<« -i¼ðʲRÀ©³U™IÀÎ%ԞŠ-ÈF¢å;Y:lܳŒÖ -y@‹NÉ2  “å÷yº ¨02Ý„®•ØëX‘ÄЉִԳÂZÚŠgÐ{ו¢æ`¬ º¬C;ʶbçe^°êl„É‹êÍÚƒ´2»“4»þ?x—q-*ík¢Ï˜gZivõî„ÝÁ¡Âàe»ÌLDk_°§¨0A*¡Ö7!ZôÏ®3†™d•ï… ¾Á*0sñ@$‰‰ í2ó>Q¾3Ò¯”uð;rÅ*ɬY·òÚK%¡iSÁÕ{0@g‚!Z|Hï¹Å<®ÁÀ’ è¡>ö@x -*Ì\¹?4¥ŸÐÕÖFíp&èÇÛÌjº“ÏR3âߨ(ÅÂÅý%÷=.æq-„A÷”Ð2óQ«²Ä8€Íè'®Úílé Ï ÉrõåÛÍyø|¸ûgqNwÓùýtÞ=oñ†£¬yÚmmpÌzÆeHÚóŒâEUñ ¨ª4ÞKÙŽ“³×=úYñY0gÖ¼&”µE#žA\ óŠØ(IÏ…ønKåG¯l×13duŽƒí9#8V䎕÷Œc»¶Ut#Ù—EœEÖóÉLF¼Z*ºP¦ÜÛÐ ¤ ³Â:îVð|øŸÌ¡«P±{ìu‡Ë“ÄŠì(þ׳VáµiZ‘X£­´¥Ä‰eXÍ"Æ´‰M8Š› -"©ÀÌ·µ+—U81¡l“ËõrƒîJ'Ëgö`ô' ÑN8‡±ÈÛ‡Q8󸨝E{©HGà´7ê«¿ôpŒ†FÇ!]Eˆíæ˜d O¦ÉQK«F€*ι‚ŒëdÂ^yÄiÔbÐþ:¥h,ÏPpH×Öë‰{ËZk@˜¼FìÌŸ¶l¸d¸;ŒßÖ)´Â„:Vró‰]* ?´çoYëï ¸fƃd<šà’Í—Œ>ǹIO¾žüÚêaendstream -endobj -1415 0 obj<>/XObject<<>>>>>>endobj -1416 0 obj<>stream -x•WMoÛF½ûW t©XŒ$+’}ÈÁ_‚:¶kÉI)Vä2Ú„ä2»K+ú÷}3K* -íŠ"-îÎÇ›÷f†?Æ4ÂcšOèxFiy0JFôæÍqrBÓ“9ž'øç4åòâô4™ö?_¼~wJã)-s˜šà!#˜h™Ž“ñ(™&tçLLõ•rgKz¸yÿ7KŠ. -£«@w¯–ß`hJãq44œÌaèpi©ñk6 …µ -d<©'e -µ*4=…÷¾\ WÊ댼vO8(Ž5•ùIkëmLXÓõÝ=mmƒ?Š‚*ã#µem -Í!Œh8>N&ì:¬5[Mc„µ³_*úŒÛxUín›Êkr>u¦4À= xнVp[|Î5i0¶Â3›–#”[×ó\Z@žé€ }Ò¾›Ì€=²ÖxÉž\|^|$¶ÂGç‚Pfµ§²I×1,Uj<0þ)BeZï‰ßú§„Þ€PÁaå÷ã|æ}¡Ùަ‹‡»•ªjTÁñãþ_*ÉM­lP… õnêXº]ퟕDl T¬aXQAbŸkÃãqÄDHö&¡k›~‡¾ý•n+ðÈiE›µ.Þ–:˜0¥ -óœm˜OÀ¶ˆ†^Æ6(l,…m[6ïN·v;R­4ÕÚ1,€{µåR}8oÉ™ÊH¹q %Ü œN­Ë:Cƒ^ú1^ÔÍnPvj Ä8LüàTõUs «m@Dà–"[ƒ¡9H]y8¨2öÅÕdºÚRi3íø‚âœ|­S“=sSJŒ±¶Üæþ·ø‘$¨L꡾ R|` â*d¹¥Ìä9( Ñ‹BO½½ðÉT’Mè£vza˜{Q-T¹R´ÒX£KMh­žP‡øYÒÜ48Õ -œÄïyZ…âñðñUì }Ð¥h›².tÉ!Aå(:Þ~=zžW:l4 ù•HŒ%ÖA/×È5Uè6 BÊ›¢ØB_fe "³Àh@= ¤G‚m™$’H -Ž>Wièyå¢¡Ž p(üˆÉ·¼`:´ä€ -ásòåxBPëäËlz„ƒJf¬K4$öÖëv!ÁôüJmu HÈ7um]ðB»èïZYá7ãP[ï Ë q´P° ”Çç,‰Ùéöý”ÑPPB›KiLWPŒ9Œ§®©öG0oã+øö…A¥3â[}ÒÆª1u¤ì˜à{Qè 4È)Ð1a :†Nx^lL* }5'Õr¯*’³tþB×(kÁÌÌ?48‹z ‘#Ši¬‘‹Dh Tõ|·D]ˆg0maÖI ~#®gš£uIJ€{£¶Ï@„âÒPöÛùµmŠŒÒµFƒâùÀ™‚(Q­Ìü-¨ù3à)Ï%&bl4 zî…úeÈev#È^>hOÚëàD0`õ¡ú-S|”8¡ß:íctušpX™L?Ô¢ä]A0Íí«Ò`•WˆWùžóVï±w²xùÂ{ô@ä¥úÆy"Iî`` Û~d„Éüš(¦ïü*h®ìx`9GKÕ¹jŠÐRAÄÉnws¬õ»á­Eÿ¬ “)™ÿ#–éÓ9¢†7BÀ’ÔË‹Ô{—Ð[ÚÆËкlU»ŒcýY\\ôpx¡ô}Jñ‚Åõ“'3^–<„i¿ƒ;[«ÇƳA÷æ-ú.ö.éÂ(+&°°0`)ÖhÌÕo4™­þÀæûÚ.GÐ7¾ÉŽ,=/V -ZɰÍúÇW ·PxK±‚¶uÈ¥"XW¡…`àî- =|#H\W )tì’ö °Á>Ò„Û?û-ÑÚŸ -ßÛJpcØŸùÒFy«æ©ªrýwÍ̈;œP©ò°çƒ7 P®1VTíJƒ½jÃKÄn!R)‹¦ëÐ!Êo7àš7%xª*mß©Ú`‚ÈNAgÝbµ*/£çñòêæó?7·7WG$÷Wg—íã§û÷Ë+žnòâìúzX—dÁÁÈåui®LaB»õÜ´K²Xzwq."•?.1ù쯡³„>I.ÕöÖ -›·ˆø……Ã?EdqéfX`¾Æ[ÝX¾»ˆ]‚«‡KüÀÁß ·žž› JÀ•î, ÷Ô`Ë[yǘîã¦[ä±r'X sž™T+ì‘Ü®÷¿=^¿;i?ÊÆ3|žÓlŽO:þYœ}8?çýƋͥM^¢„A Ò°»0œNùüÿúœÎ§É|v‚oJ¾9eƒW˃¿þ®ÂÓÚendstream -endobj -1417 0 obj<>/XObject<<>>>>>>endobj -1418 0 obj<>stream -x5ÎQ ‚0à÷ýŠóh®M×6Õ -z(Œô*Sc’Ždýÿ&—‡{ùྠ‹Ã¡2äv"Œ2H]P¡UìYÌÒc •!Û£ç0¸Œ7C±¦CDŒÁØäVž«ÍâÇÞì½ýLýÚàü¼1#Iÿ.ýÁ„SΨ Q¸9¸ù‰añî—ÓÁ£EýrÑ£©W-” Jêø¯é¾[WC®ä 5 1†endstream -endobj -1419 0 obj<>/XObject<<>>>>>>endobj -1420 0 obj<>stream -x¥WMoÛ8½çW zi -´Š¸qºÀ6í°MÓµ‹6{ %ÚbC‘Z’²ë¿oHÊV” ÀbH$r>Þ¼y3úçdJüLi~N—T6'“bBoço‹Í®æøýÿ¤u|1½˜—ã×Ë“³ïè|BË5l]ίhYìLð¤<}_‹6HCô¥Så½wÖ{Zt+#];»óÊlè,=µü~2¡7ç3Ø8ýfÝÃÆÙ®=Ûtª’|èì㌦ÓäòÍùUqΖµòTÙ²k¤ äkÛéŠV ˆŠ”¡Òšï)ƒ²†v*ÔG»ÂTÔˆ=âAžB¼…œ@ÜÑ5›Cœ^$ŸªiµdœÅªOG”1K³ôÄæÏÈ:ÊÏw}fžîOñ¸²PÆß¿*èÛÍí‚{_Iön­¦µu#¿Nz«»˜Š]Ó­ ×7ŸdD#q×Ò͉ª’ÞK´yûy ¶VoeÄ#†+I+¸©£æäR¶V{Ú‰ýÈ)<±vëÁµ¶Åµ"åMç¹(3E9/¦}P¾ì¼ðéܰxsp -ç>*çƒÞ¿&¡5}ZÐ7e*ƒ@†‹C,+á;ê·øt ìÒmA®OˆDl$]k[>ܿʧžrp|z”Êá%[=¶»ÈÇ (nŠf%Žüj$M)Zßi‹¯Yfùþîìæ®@#—}F­³UWO¥0(=ð;åeq´³dÞ¡ŽÌ.Q•ÌÈcð\‰õZ–(s/sä·à0GA…äv1ŒgÏšAØàðˆî¾~¸{ -$?LÞÇ¿Šíˆžíâ%ˆÝÅGvp__&NÜZ× Ì(¶5zߟ¢£qŽ.Ygêï„«P 5€˜€ÒK´Ç '$ºËX´µ|A­p 'ËÍ“>õͪ@ÿ¯©–º-‚2|×[aœâûl=W¼Ü¤W[%†ƒ"ªQZ8N];¿2—ÇïM9ŒuˆìÀÂX꾘P-Í ç53¦ŒÖ×…Dе µrøžvµ„g:'}‰às#ùÔFA–µ±ÚnÐû|šÙÜB­ÕJÃP³ª²¦ŽR„h2²jÓ¹Ô›ÖHôæ؈²Vø+Ëi·äŒK¦5P[ô_ )üžu%‘5É_VÓ‘;i¶ÊY“ø|³ÆÍ²îÓì«ÄM=ˆ)н -/=Ù¤#¶ô –X7L&>Bøžhƒq•U=1á¨ö›%*êØ„õµï©õ"‚á›!+Fi¸ɸ·;2e­´×HÄz2øƒÜ8(´sÅÙ¥ñvÃ0þo€yÔò|Œ,YyÝ~âøÊ¢ìÆbJwmk]€Z¾‰Q;Ùjh󽧈†ù*³Ò Ä!ê-ö‚dä1å‚=«#ñ›ºB„ŒQäó€#+}7 á£Ü@hs‹ÉçU@àµØÊˆêÈcÓé °<¥˜gÃ"Ru¦¦ÜóÜG9Ä–vô / ±X±l=‡~¾Ð;VòÙÉ0“¼Šð´í¥ ˆõ4Bç@¡/µŠš¸SZŽ€ÆU€`ø -VLqÞ¨óÇꀨ˜°äà×þfZ[¸Eâ=<€ò?£æýE.PZuxAe2±®QåöqxÉUl?ó |•Ð&LGm -˜7¯iÕ<¥Ìºr¢£"cZ,‡„Õ¬7Û©KZ}ªä/@^ªu\i¤FÞk¡´I¾”F8e±ðeëýdüÓ2è"”«‘«Ï›È±’_<tgœÔJ°Pãì£5¨ÄŠò5t—c£´”ÁØÜ -!d$‹ó¸hhú–e0xãÜeÑ>v$”›i·f -*í†X[‰ò5ÂD9 ì#ç¼sŠJÌÎø/6¤`I¾æÙœ±laÐö{ôx6G4ùkä™- _Ê÷gÚ~{º;pl?/ò†º|VÒ:Íe8Ìò¼¼ÄFhþS”WF)™ ¸Áæí£åõ#xú4yõ ÀꇂÆè R#vŒ ~ô­ðTŽ+ÿKÊvBïúo©¼¶Sþ7Ú±èW6©¢¢¿d±.6Eý7EþêøM6›ü!ø¿ÿègß|³ù¬˜_^á#v§—ùïË“/'ÿ”Ùåbendstream -endobj -1421 0 obj<>/XObject<<>>>>>>endobj -1422 0 obj<>stream -x•WÛnÛF}÷W ü¨hR–%'@l$)Œú’F -Œ¢.‚¹"7&w•]RŠþ¾gvI]h#@ãØ–Éå\Μ93üq’PŒ¯„¦#:ŸPZÄQLãË8šàçŸGø¶’–þÆy<ŠFý×ó“³OcJš/akr9¥yF°Ç4OߌýövþgbzŽ GãhŒCjÿYY™Z’ÐÚ4:•ô;‰h¥QvöøðåÏ?¾<|ýLÿÈhåQ±¿ô/EQLïÝG¶¼)¤•ïÃÍÉ.6Ü Ž[óð˜Qk÷ØÀ&çH¶”#©j$ü Û»kzÜšT”t'\Ë×Ölœ´Ooéæ3‰,³Ò92áøÂ‘¥®Þ__z3mÊZÖcŸ}ñKù~ç îEMÉ»Q”L.£$Jâß:ã¯Ô4eF I¹ZKMÂ]\GÄ¿J¸gRŽó=ð(œk*™QmØÎhL U;$ŠÇ£î;~zÑc D¯h•Ô5ÌR%2ÉVøHH õu½†ɵ´[* @Û¨²„£T"/2ÝQ„½¹ˆæ<â¿6Êm}5¹Nri¬d—ÃI§¬X”ˆ«©ç–3Õ0Cµ¤¤ÌÐýÜžµÙø+z-xÐ’¯ã×ð4;âþ’WfU+£Á$&b*4GÔr³5MLÜšfŠ*˜£8:ÑÍ’¶¦¡Æþ§ýÞŠ |Í?¦=Ê÷²¾¾y˜£´P áŠ!(b)yV:§R=÷]Á -#[Üö<@È;÷¿Á‰'Éér¨>4Œ)†‚VÖ B8G®èˆ-ÖFe2kG DfIñóVLFÑyD_a²MîôKP•Ð4Ûêô”VÂ"4íqY€Ôh -ÍC·ÏÁÛÓ–Ûà/›Üñ£ìÀUÐ'£—L>¤áûf'_ÈZh¬W‹º -Œk^4[.¬Ñ -^TýÆQ‡¼‡¥T¾êÂe&ª…`ƒÝD=ÜßþÍÄ…/ -÷¡Ch\€ÏBÀp÷º/Ž#wªjÊZhiWn½–7”ÁÓR‹œÌ¹ß:‘êD”‘Bµø¹ƒü׸)×*òËIðòÁýxYª½Äwƒ‚³9é_u-÷‘,pF‡ÀKð^¬zRÝC¯ô“³O!Á£=Ç;:>ÞÜÏ^fÑ®¥,ŸÞ¶I„búk<@énFJg #ÝÏiŠÌ·1tG¡ò„Rš -¥âN¡,£½à;zumeŽI eöyÖÕ&—ž» =þâ·z»’´eƒU€ñƒ0pѹX®¡`|S/صÂW}Õg:еP%kpD2ÏD~-„L!“ ñÔhõ~Ÿ\-Hü3>Gâ®oQ:óª!´Æ‹0—m´fõbƒ¥Ð•Ð"GÓ¼•¨Oˆ¶º\ž]“Wâw Éòµ²J{w™±èùæïa Ö!ê×)ÀÞÅÐz;Êp„i2lítmw…‘ØÕ‘@XРÉð›\PŠØDjª©”:¯ ”Aj»BZå!°Àä‹Á`uG ù#›îe0ÄÆQj%P|‚쌿¶Wzë?á,ËD¦0áðߺ ƒ {ÿžkn%0ŒÛå¡ç;¹w¾"RØ^Gâ0&‡A…@ŸJ§e“uxsn ¥Aç -é妇´o?žÊ®ÆBÁ¨@5ÍûD¡’-¡ov¥å¼¢´T¼y(6+ 'Wš‹æ >½lÙ)¯i|ÂGÑ2„{O`èb. LL håKRG-®)QnMAK=,O=¿N¬Q€ÝÚFµË¥J=Ós.;zRþ\ÉLÕ8‡DÂÄæ -ØF4Îk_ ÂÁtç¼0±ôûö©5Øœ;An%–Á|ã#郊ùÉhÄ„µ ‹ÃšWZ+0óÂɹƾ^öå'¸Ê‹§NËŠ7NwJKU2 ™½<±¨ƒ]ŠŒw¨(ô2,Ábá$§ŒÀ¸N¯2È«“/ ›E¤]0 Ï ž)“²]4|a÷;§%ë;Æ`~ƒ×ÿ -íöÑ„eŒúþbçüëKf* ð*À¼óû /]žo…,W!Z^ÀU@ kµÄšÌƒV"ºöpž}ºl߯’ ^/Ïñ8 -oY³«»ë+úlÍw¨9}0)Þ0°.p³qù‡ÝÃiŒ7Ãlðÿ7¸ñtM'—xíÄãÉ”­~œŸüuòLÇÆendstream -endobj -1423 0 obj<>/XObject<<>>>>>>endobj -1424 0 obj<>stream -xWaoÛ6ýž_qË—e@£ØŽc;ö!i’5@bgµº®X‡–([ Ez$/ÿ~ïHÉNT†¶j‰wïÞ½»ü}Чþôi< ÓeÕA/éÑptÆŸ“1>øg%áA2LFÝ—éÁÉÍú}J ÄMÆ”æ„8½¥ÙQ.‹R—¾4šüªt´)•¢±d´zÆñ­&A®ÔK%Ó¥5õ:¡©ñg„LJ¤ÜT/VÂyiiaÍÆáçJ8šÎÒ÷·Ó_~J¿ô踚 àÈ áiÃ1ÚÊBZ+sÂ3œšîçô©Ô9bÑ4¥«"¡é”à48$â1©3€Á9r2«méŸ;ù¤~*­Ñ•Ô K\…Q_Ý_ÆóŽó7Í2£½5J!IaÚû*j|S‰@s”4™£dÈ7ûè$™‚>ÝNç/ØÌ ®–yPx- ºþíúÃgÊTÉÒw'·´¶Æ›Ì(r^d¾…”š§(—uCN ÀÚ¹aHÒŸ¤=q ]èç6x(—BOß!Ç9³Pê:0ËIz'+*-ò U§…p¨•¥K0e#GމE…¾J<Ó”oNK ázÔfCbaj뺅Ö8b½A-2ˆO¢68ßÉ»O2Ü'æ’L ‹ -xAD¼F!J±BòÜJçHóX¯Ix/«µw´@e@ªmHcýqD¥:‰ù H€dN¸WP­ ‘e*6Öuu‘š]i.ª…*÷k "7¥väêõÚXO?Ó³t‡­D]µHXT°ŒÿX*³ÊýÉÊgÿ!/hhiÛGZEÐ@ˆ‰“<y6µ¥WH:<íÇur3ÚZÑqÛ1W36‰ÐdgWGÄ /P—ïqÍBåξA»Ö—Y­„E÷q ÔlfÛ®ƒÙl4¡ ‰"OnΩËdï<>Æ$g ì( f„Ë"ÕèI_Žú_~Úµ2œuçcMÂA/jþúÚÈ4ÃÉa&„vF?˜ªBœ¨8˜KðW¾ c¡dÅæéjÖT°((R)~á5´­¿ Xð×­Û6¸ºRº`¦Ò_ÞÎæm{’’˜däEû!GèÀ”Š% (ÝÁk¿qWÁuA ÁúgTÁb¼dË‚„=¼³*FáëÃ×¥-û>hƒ"—ø -¢Ÿ›C ȼ†Ù–y˜ -ìßè&qàè6^ƒ”7îd¶u<»qZ~0 \@eð½Öåø¦•A»ºôµiCÇÀ•—?àÙÊEÀ-VuWˆVzž¦,QÂ’ÝB¤ÈÒ½³rX˜z¹‡µ?$†dÈ­¥À0Ù ãmù´ôaΗ "“Á}?»/“(:t´·?ÿg{©íh MÚL1¾ÔíÃï­ Q(þ&ìt¤fjò+m•Ùe‚ñloÚrž‡âî=Žb:`÷š+±^KíÞ†-‡Ù”ñ“0’ѺûWyŽ_çM)Ê™§$°6ñ—¿mÉÝ’¯È˜‘ö–I3öÏá„ -´YX<*^àD ËÃ>âÃÅê¶Š+ 7Z‰vŠª ¯"ÚGr]½éܲ¨u˜ÍÎŧ[U6{\Ü{ÌZ6Í[bSí@^kdQå>/XObject<<>>>>>>endobj -1426 0 obj<>stream -xTËnÛ0¼û+>)@LK¶üH€´¹%ma½hŠŠ˜H¤KÒqü÷Ý•b´ij[†@rgvggùc!¥o†ÅÓ9T;HEŠt³ø”´!Õ©eµ+vA“Ýö7k^!ê–­dÚm£[òc·ùÀ!n܃uÒ×Éæ~µEµ³ª3’MÃ]';ÐÏ:ßÒÂÊÙè]ÓôtÇô#økÒ«ÞÖ•œãÔiÂÞDUŸŠ`ÿù-Ñnª{ŸŠíFm|³<Þsº9–SLfK‘MÙ@««Ûë+|ñîQó˜9µcHUg™“¦½-R²o™LÄLÐ1Ü}.Xm´Žzkiá¬Æ:ÉÖgØzr -áv…ïÆ–nè†Qµ±:0n¾ÈÅ‚.(º™Ê$»à¥OÅàëà'ªƒNendstream -endobj -1427 0 obj<>/XObject<>>>>>endobj -1428 0 obj<>stream -xWÛnÛF}÷W úiÝ,9E‘K HœR`MVäRÜŠÜ¥w—Vø÷=³KÊ£ E`DX.çræÌ™áÓÅ„Æø7¡å”f J«‹q2¦ùtœ,h~»Äï)þ¬¤üâ‰&Ëd¯óIr‹¾‚·®ï'7ôÁЗ‹wë‹ë»74Ó:ÇåÅò–ÖÁê'éåûBÔ^Zš%ôÕá¥sc+á•Ñ” /6ÂÉ×ë‚É2Ú¸šÍáo]Î’IB÷Ú[“5)¿oÎi2énN—7?—í•ÎÌÞQZ*©½#'uFu)”&/¿{ª…s{c3Gæ‘øBâ+Z‰j#(šÒB¦;~âäÑõMK©mk¯ô–ÓÕdÄÍŠܤ¦ª…Å~¹"o‚ùB¸‚œ7VfH<5Z}§†‘è³O:›ÓE2çTäOÏ&#uˆÖ^rùvéÌU*ʧ…®ô°&ö.ݷק鎉óRdƒTL~«„ÖÀI#&çÈîUY’Ñe1>Ç`eŽLŒA)®ÉŒ¨Ñ¥tŽ‘Rïo•ó¶%…“½;™ ÁBp'¥B_yÚHD£È À}Ýù¶”t&Ö„ÞÉTp¤ÀÀÂSk¦,…ø‹ÀУ²;ô„Í¢á“jŽúl Ï1w®¨ý¹ò3•ÜWdéä0¿&.2”©<Ç-íú™$FƈÒpvŠVÌæ¡ñHŠ´ˆô ‰XmüEÅ 4?ÒuD2Ù&„FÚnÊP®h´-•f‹Þέ©F!ëÒ¤±Ýc–…r×H—jkr…‚ „Ø!0ìÓ>ÿ¾ÁbkZé­’ÏHˆiÕåæaéDNÇý'èæS¶¡Hw€_zoª*ÐU< UŠ ÜvaÑ«ûñÃÛ?FÇÍÀqŽèS»úò1 •«ËÆ%tD+®î‘ª@öXî̤M…‚ÅìÅÆ4(eäÒõÝM§a—¡•³Í÷.<ú•ϯïzÅãÛVTŠbå=VÍ Ð&¨fUÔ^{z0À½ îW2m¬òí©U0»×QnöPszõéÝAhzαn{™Z=50‹\+rªªŠ -ººæ -uá¥Qaö(¤ òb²cªJYGщ] I®€g[+¹¨8¬ñ&ëZzæ'qšù¸eb(#xFˆ‘Eœp×[œ§‹¾5$,2=ø>qý¢°½ç j­ío­“è¼0ºïw¯ò©Qp^¢1þŒBÇI«X°˜O¯ÜKé¹—ùšóÂ/ DÓ`äÖà–ö*¢‹àªHe ^ -ÏâhfAÛ²,‰4 jÏúŸ€¹K{¬[ŽÉ@ËB|¡q#ùÀÚi³ÇÔÛB·5$¿e¤ËùïY -lˆˆÖÒæ2e!­s -r‘pEpë‹…¶ƒ€ßÚ% -§„„8Už×<;0«M˜oE)3Q¨jÝS‰Ñ,˜R¦ÙÌäÉjÍ3 ~¤È‘ƒ%û²¡JР{l:ü"êàT f6ʲ“54^¦Ñ8žØ|ß.cÜYž—( -XƒŽ)Û^ûÕä>“¡Ô{lNªRí˜kýï;f_(Œ-ñeîgw±(h‚šöìdò•·Fßh@ªEå£ëEÑeœ,:¾Á·‡äÏÍö3Ï¥Ž§&DÆýîZlC•C¥•~X…é1ÜŽÞÜð|úö:`2&Óñ$Èæí,¬ª¬² œÁݰ†b›cY^×*åuͰa -½í*œÉ\4¥ƒœ¬T$#‰Ñ¡­âÜ@áÜ0OTè0Ë®ï‡éÄ‹M¬c@›U™—à5~9S6a3Gƒö wEĉži1çg¶‘r,oØÍ®Ž°9,w°`å•Ô¡»Y Üô áWƒñÊF։ǢÄN&ÑCeÐQÌ–š,&3$ógdé“J­q&(F5ÈÒS"Ò8è¯ü^¨MH‚ç´æYÁ—ÒiÙd2ôÝ$™ƒ >/XObject<<>>>>>>endobj -1430 0 obj<>stream +1426 0 obj<>/XObject<<>>>>/Annots 519 0 R>>endobj +1427 0 obj<>stream +x…YÛrÛÈ}×WtíK¼U+˜¸ ŸR’e;ª’¯dJy؈„$ÄÀ mý}Îég𤳩­’÷è /Ó·i@ÿ¹ˆe‚ÿbÉIg²®/&Ñ¿ñ?¾¾¿˜G‰L³h"µ¤q4ÁV–Ö’¥Ql8kÉ3ˆ;%”3°–Eê 3°–8΢ÔZ vG ÃN“h*Óy¡vANª jôÕ“ƒ¥QfYƒÁ.²#ÅÎèlÍ`4ž,xPE´j1ØlB=‹ "šÓ¬D0á°"5˜¢szXƒÁ.& S`‘´Qs2ÉdYä'¡Ù$§ÇŠhÖ'E€ÌÕ_ä „àdBï=i1ØXÕÖ`°ð¬Á` ý ¬Áµ$“)ãäY‹Á&ó#¯,;ÕôxYwؘi8VA8ìÈÅIL‡=i1“2üÕh: FQN5ì<æak0;?Ò잤Zl. +‚Ã#7:èI‹éð”Fk0ÖãÖ`:¬µXƒápœÀ· Ùb°ÙŒuée-‹~Dfk0GÏŒ)ð¬Å`305ì,gUÖ`°‹)[À³ä -ĶÌY©h¬ežÃßÀˆ0%"3y”[Ö`°ùîYmØ,Ïdž’TDâ$`*Îàv`èŒÁ™rteŠ(ÊÉžMÙÆBŽBs€”µÌ¦tV$g Æìœö¦N.ã4õœž1sÅÀBQ@±ëÕÅëw L+Y=âãÝ,ŸËj£ßìð›õ«ÛfèÚÍ~=TmóûêßxE»g/¡$ÁÓ¯VÏU/»¢dÝ6CQ5½<•MÙ[©šÇVÚFžÛ2´€ýPl·ÒõC!E³9|¬žö])Ãs©ºziÇç^Ú½ü¨ V·ý@/&r©wlo«oåöEš²ÜDòùîíÕò­te±žªœËhUï2oOº\\_Q_;½CèßH>=0 Uó¤gOM¨?9:*¢€£‡ŽõbI‹äí¦ø ÃÔ×'Õ¶ü…R¨]Þ_­È\«J#Yu/²­ú ì¹èÊ^ŠïEµuÁiï¤/»ïew¦>s*`¿)QpéG5<«_û¦ú)ëm…¸ž‰MÏÄ»¶–Bn>-ÿûÇû'ü¬šÅOýçãJÿI¾ý!Ÿ–¯“?¤ÖQ嗦Р+‘Ü?ƒÜ> +вyêå¦mþ6È}Û}û;}9öi„hÝîJ¹½Ñ8цÞµëoФAćmŸgP_öÕú›¼éÚ¾—åþ¡)¹îÚ=ƒñzü=-?uí~¨§}µÑtYg4¹7U¿Þ÷ýØkƼEòÏ^+–™ÿíkY·C)WMÓî›uù[¦¨Ëá,Q¸–)©Ž–²|iÖ%Œ,fïo?.O²‰‰!ÀòñÓJöp®nµ‹_ÊŸ¯â?—]×íºÝr|X2µDHêbü”s›BŒ­H>â$òµìÛížsG>uw®£*vçêtÄtu¡OnŠ¡x(ú³è⯠‘œÎ2_¬Íàë]Û E3ÈGĶ—«‡v&/×û®^N«‡"Pzµù‰â Ïcš,?\ËÛfݽìóÄÌK4msY:‰rƒ,öý¶Û¸¸ØúÀ"ŠÎqM¯Om02ê³è$)øsáãG†òçib÷€š›ë3!„ýîæêóù)µGþ2t¸¶ÿOpñ‰>Ûï_œ’†WޕӦÃIÿ—ëç²vÄ×r«¹íŸ«¯–ÿ×wop×NrÙµ}õój½FœŸ@ŽçêRoS‡³¥gÆâµabÌ¿gç²Zd¸>Ÿgt7‡»c¨ŒŽøÿíÓÜZú]¹®Š-ì CW=ìYq-Æ-<8ñ‹4-pü,ꮯ»›Ûw(7ˆ²Å‘4…O:¾~xY~¹;O3>>/XObject<<>>>>/Annots 521 0 R>>endobj +1429 0 obj<>stream +x=ÏnÂ0 ÆïyŠïÈõ’´sÜc« ÄaÙ P¦Uk+Jyœ &Ë–ÿü>[>«æ>/XObject<<>>>>/Annots 524 0 R>>endobj +1431 0 obj<>stream +x•V]OãF}ϯ¸Ú— œ8 I¨Ô‡Á6j‚Z´TÕØ;ÓØwÆ&äß÷Ü;„¶*+±$s¿Ï¹gæï^HCü i6¢ñ”â¢7 †øf÷ëîKïlœÒt8 +†TP8< fí§œî{ûŸq:îlÝéÞgœÎçoN‘…N§§Áœ&óþæ FRÊ5Ðd6 &ï„ãQ0:<8_öWg4Ò2E?ÓÙœ–‰kßÄý‹•¨ji( èG½¡ZÓ¢´µÈseBKikºÿ|}þùhù—‹Î|œ“ñ¹–I? àzÕB•ªÌœ—òø£E$¼ï„°õÍ‚)ûž«R˜-U"^‹LZÒ©w fUçM"üA"/4*å–~VeóBÚÐC©^(Q¶6*jj¥Ë€–+ Gv¹Õdu!9÷N±¯v—J< •‹(‡iMõJ¶‰Wp©PKë6šbÒ(t‘ÒV7TJ”ƒź¨\]w”] WcbyLñJÆkPT•Ñ•Q¢FŽª’e‚zc?îà½qºLa0 +èB—©Êóß¼çù~gQ‘÷<R–l­Ÿk®ˆ6¡e£<4ÝØ0oÁ+« cöUô¨þ@ÖñÀõ8°moÑAÙo}öF=h¬ä:y#WÑGqzÄxcQ’T¨×LÂF¸b¾±2O÷DÎËÃÑ¥dÒÀ…ËØK^0U2#ª•BÀLçÖ·íØÑL¶‰W$øLÒFF'‘°nl؉TÄ€x#êv`(fÇÉ Êôð¿B üxÃNÆ¡' C‰Ý¸D+\ë¿px;K8ް[I¹#1F_¡ù·Øò<XO¾8ÀÝD‰22ê[F’ßîÆ6–¬vL6R€É+YÌ-ÆxÒ†iýaÊ3&VJZ±8 ¨®˜a–2¡f_ÎW×*–ÝØ ;ƒh3Ö“=o73n¸]¯%ì­âfQ^c¹‚wº¦nò„"ØbKA 5WkN§ì÷Ï:™x¨ýùšå:ù]ÃCˆ+¦Ýãÿ6ëÌ覢èúñËÝíÃ/­ñ(ôzµgü••Â~#l³†ûÑkÄ+õÇyaéàÐ%ÆÞ™®º%cFM}±°yÕŽ#$àF Ô$Ñ–’W±óq¬›%xBXiž¥9nw§Ý4À¢ å:Š¥(€°[idí4ó“kõS·%H;〞ú7çeÑÊ®ôŠú:Owꤊ¥©%¥ž*çw·¿Ý/n¾õKݨÕj&N"q±äöé¨C¢eÌ.)?¸:í$ ´!Ú ÈŸusìc, a©ëîœÄ¡â}$s¼t^£vW CßP¢N›I}͕ؗïQÕ´×̾w›ŠE—Tå¬7lk+«TíäÛ÷±“e̶÷ÔçKd*š=BÓ4pÕk¶Ûƒ“ÇŠ²ß‘û÷û ÉÓÑa›WWà®A@D.ü$"~­Œq‡ÕÐY³BÌaÌE¶ÛCvÅrŒ½‡êb Rˆ Švmè¸)dyȉ‡›ÅïÞ_^<Ü-–Ì™WùÝ=.æûò vF©Õ¥¸©±  £SÁ7×)Ó¢Æå +eÒ¦X$Gd†ˆ]Ï"Wø-_C.ÇXßbT»ˆÜnW„TãÚ*“c÷¥iJ{€âíOœW}íiã!ä +ʵàGS»¥Örœo 3õŒ÷.Zc9i-DúÔWî">g'äã¡ÜÅw cý²ºtÏ©Hd`jtŒ×Poš¿>ÿ&s/§ÿçí9™C°çܯí3Æå²÷kïäpŒ­endstream +endobj +1432 0 obj<>/XObject<<>>>>>>endobj +1433 0 obj<>stream +xVkoÛ6ýž_qWl˜ IJe»~äÀl]€}mñ ó>Ðm±‘H•¤âúßï\Rrl'†%Hk‹Ò}œ{ιúz‘Ò¿)ÍF4žRV] “!MgÓdD“ù ŸGø³’6á`²Xàë3ãqšLž;H§ãd~~ðóòbp3¡4¥åÙ§ó-sBæá–YïºÜ‰½#ÛhòÒùZØŠÄV(M»BjÚ›†²Bè­¤×Ë/ˆ„úC¤ž«ÖIfô&^îô¾‹ß”NbÂ~¨v™÷Òd„_º½»^ž>3¤þˆ‹êñ)G‚vrÝ_ 'sRÚK»™$_O…,k«Bnµm—ÕZÄÀT©máIOkIâA¨R¬K‰(x¼½““#e:ìHZ‹ì^ =šµT—ÂoŒ­.iÝx~P“µ´ÂKjïMès)Qf%òx‡Ú*¡ë6RfªZ•Jo/ÁyQòç³ÄBçÄr8%Ç16ÖTäLc3™´÷¦˜6 +]*E£³"@H_çÃØ0"Kñ`¬B‰@ŽÖÖ윴ÄjIyBðW…÷õÕ`PšL”…qþj1L¯ú]¢ëLƱˆnÂt¸/t3>o§|Т„›ð™›o0µ0&\:tȃb Õæå3A¹Úl¤•(»‹t†FÙ«íôªH¾þ + Ñ{伉à˜…ÞÓ»Ï<-3®U¸Eiß^å²ãÍvÅaÛ›ÎJd ¦í*4jjTФµpnglNN£9*Üᢣ*K&¬ã¦[®fiÉ<G¦îNÙȈÁ ´¹°˜ûãIäFšŒZÚ=•ÊyØ^|¨é ‚ŽâàÂÆ¡vz"L¦L´ïãIÚò`‘Œß  ù¬T\cÿ}¼g}à +³)ÅDˆg]ú!@¿£ñŸpW˜¦Ìi+!SÈ㺙?îßkNè]¤Nnôž»ÔPK%=æ¶eëP:3Öbœåhú¦î¨ÑÉý‘xÆ?j C¦Hé ¡aÛÁÌœêì9]M`ò –é-½úƒÐÐ=Àq´ê¹dŽ8RËÝæn»zÝUÔÒv”ÆÀRÝR)d‰28ƒßÇ6™É•ØØÃžƒºnƒœ¬üÚÀ¸Ù5,[K8\ÏGfpQìY9±/'mO7o=Lûtœ=ö9¤‚e" åÒÃd]‚¦;­á2ìÉb—º‘ ÃÀW‹ÝŸÕ%ò¼£°©=˨ÿÇ E²% ŽÀZ‚ò<à¶|(ìß`IÚè~„'rÝ­^Ç.žÕÎ$jçHò_k´úÖÎ5ø_z‰>Še08–Ë«Ä>¨Î_ÐÍr_+Ø6x}˜Õ£S‡‹Éº(= ÂZ±¾cŸf¹ò–Sxtí¢’y pB„öÚ!(#ÿd]<ßF/lt}>ä¶å¹€w‚H`vXø¡ÐS´_zÛ€J¦œ!ˆê =¶+&lÉ_Ð_œÂýͺ +¬Rú4É‘R_x¹9—î  ¿‰ªæWŒ`L( 5ר +{8”Wš-Ü=Öç°WÐ.#'ä÷µ¼zRQçÿÁ”ƒnÀqcœŽí­?n‹7Oß.¹·Ÿn/‰} +ÿ*½øþû¸¼äx¼"†qßàltIŸn£K’>K’äD%Q޶ +Ϩ2ë)Wîž!·/7üËÕju÷îãÛOw·«ÕO±Ÿn%ÍÓdÑî$ϤüŠVø‰rg„ã秪ŠÏÖ—Uãý‹Ë:*hÞÚ`:Å{ù|LÓé".ÇÛë?_Ógk¾€EôÖdM……(˜P\c¿{ ?.xgž½õNf“d6Ç}šù‘_—¿]üá¾°`endstream +endobj +1434 0 obj<>/XObject<<>>>>>>endobj +1435 0 obj<>stream +xW]oÛ6}ϯ¸ËKS Vbdz“Ý4 `]ÚÆ›1À(@ITÌZ"U‘ªê¿sIÊq”n芮%ÞsÏ9—þz0¦SüÓ|Bg3ʪƒÓä”f“³dJÓó9>Oð#©ð¦ç“dò£góç'®'7>¦E$³ó9-rB‚ÓSZdGo^­VËÛ?¯ï–÷«Õo/_ðö8¾}>N.~Å™E~¤¥£ÖJ*k7~E+ügeóM6ZTŸkcJþBe2„èŽBŒÑd†Êç'ÓÕÒŽ +UJNBNcUÏBÊR¦pò˜LCVêœ*I‚Òö˜Õ¦q¿„4Fï ÂèlÊ'³„–káè¶ ÅZéK×F¿p´4Íæ÷§‰qn2OfÜÆb-5mMK•zX;¤9¹5„ŠéÝÝrqGÙZÔN6t­Äƒ6VY¨Œ_º¹ü˜p>>/0UëTYâï6ÛðsM®ÙòÎŽœã3L9+¡JH¥²Ž;Õ²³ikZ•ÆlHá$Âz{yýþ-x%—‡ìêeB÷¢J­…¥T"…m³LZ[´e¹ÅAëDYÊœ„$ukÓZnÉd•“–:Ó”y§ràm Ub›¢SI£%I°À'Y+Çý5T7&-eå›çì¤Éð6)—Ð?@ 3m™²Š‘™nÜÏr¹ô™É²™Ð” +¥¬mQ ªâw,w7ÊÕƒ´.‰ÁzÊ-ûYê»9–įÜÌ"«Ž¨.¥°®>q{ÔÖ9H¶K™›¬­¤vÂ)£1æÎ$:Êåê%—Ë„ + >=ŒÉ"ŽÒ²AôÆ×ÈCöœÜ€¶N íø‘¶cÌ43µ¤ÛkZéâyÊŒ¹Ú‚…hKÇHACJK¡7À2œN˜øšÁD?·NéÜt`‹ùŽ3U Îù©¬Å7/®ÇƒÖn¯wä†,˜^€–T6zô´n8¨©c!h "Æ×y¶/à=©26ü‚l•&™ÑÅ ¯©y ]ö|x®îô¥G¶€2Ò9–ëÄ1H joP=åe²¬ÁTÌ8ßaeÿ&“„þ0Ùaÿc"w $/¨[«líeãT€3ágã gÈì¦2²y±–° ¶ ×rÛ:02¾ãöB™µlÐaHÓ-п…ÎÙ¹yìlX &‹t‡Ül“÷iè†z1Næ„ ¬T >CƉñE#ôƒçzºeÀŠ^Ú;bHe‘P2ÒH|˜K½¥ +R±‡øì­°–™*”BÇ Á^€#ùô¤~4Yv*³Ôê6ü—†úqCª(#¯˜ÆT~έÇË €„þ†,Á,þ”à©©À+zçƒ8\ƒú÷ ¬aø¾È´+WGp†–k±[ëà‹+8ª +þÃ~ÂŽ‰¡ ŠdN¥ëØÆ µ„¹Ø(i6Kæ1hŒƘå-Ê„›J !J^_ Æ1ùJ)xP…Èž/E„z2\ÏÐ|äÓ!’‹ +9'ŸÏ&lr“ϳé1ì “ÌY†ðPΉuwï‹tíqë™n4¬Å¶5/xØÔ.Þ'b‹²žßŒCm¬U,/Ô¡à-X¾æF~Åb¶,R,..1¡›(APŒ9ŒõƒÀR=FxÞ‹x„<Àž½ ð©!iÃÔ˜:|9IvL° f&‰“~eè˜0qzž—[s`ÞŒÅÈG´BÏ^{ðG ,]c@Þ &*öLs +z?1"Ç»Ëß¼—Æ0ÒNrÇ^AÁ³ Â6¾vÃq-ÓÖå[¦Ø>ŠË@Ù·7²¸¹”9®aÅ&ÏÓåÛW+3ËÄê@¾kpµ ZƒÑ$ð ¼ëZè—!ï”[sïƒ~PО´yƒD üU{–ésà¦äo?Ö5¸yë,á²rLɳԯXQVƯ[„fûÒ’¯jõ +¿é÷î„QïÁ;Y 6¨Þå•z òJlÀ°O|“;ȶG€?2¤ŠÝûj˜ü*q§*¡g /NN»Ûc1¯7rù½.U¦üÈì&Tì·ShçWw á/Ȱ±´ébÞ»_Ó6ìZ÷+×q˜?k‚®éG£RÊ_LAB?\YÁ®íwP>ê±µœã°ò¾{]¾ˆÝŽW ÌäĶc<»pçþ×Gôµ] oxà7;º\á¿!(˱Âüÿ–-Ù2\c£$ ?/XéÚFû»)o²>2ã{rs/Áã~lžŸÑlîåÜ_¾¿º¤ùÂKãzÿÂËçFýë£ùéß7â×Ôt>Mæ³óð£r<æ0oþØMÞ°endstream +endobj +1436 0 obj<>/XObject<<>>>>>>endobj +1437 0 obj<>stream +x]R]o›0}çWõe´PH°§‰,DªÖ%[‹íirÌe¸16ÃÎ"þý.Œ½TÉÆ÷ø|ñ;ˆñ#[c“BvAFHã(\#É3^¯ùM°­‚‡}‚8FÕ0$Í3T5x<ŠPÉ{)´vðž´†ÔŠŒç}+<è £o•ùåpü¾¯^ƒ«u&|Ç}ÕIkjÆ ç`h+/ Àóñ]MfDgkrw!à‚e9ò8¢ïµ’Â+kpkÉ@yØžŒƒ@£4±´…6Þ°9¦­ÉÓÐ)C<Ï*ýØÓL-¤$áZ{Õ5ÎL¤µ½Q §º«ö½:=â¦|Ë,ŒašÅb`Aî‚ÆowåáÇÏÃñP~À¼|.‹Ý²<=?V%ìðï xzš]²ÃÉ¥ÐÎÂõ$•àhm׳ͳÒÊ/‘¼¡™ª`¹3Åþó–ÓY6»ãËœýÃ>_zŒSî8ß Ï§D^НÛßûJÒcgåµãçL'ŠÕÿéU}œæã0 qšÂ{l¸îË1ʼó8ÙáòiÂ$YfiÎ?Ì4¿ž>•Uð=ø ³.¿Vendstream +endobj +1438 0 obj<>/XObject<<>>>>>>endobj +1439 0 obj<>stream +x•WMoÛ8½çW zi 4Nì¸qvo›vئéÚ‹\z¡%ÚbC‘Z’Šë¿oHêÃJ/‹ @"‘óñæÍ›Ñ¿gsºÄÏœV ºº¦¢>»œ]ÒÇ«³ZÞ¬ð÷¿NÒ.½˜Ï–Óç·›³‹»ßhqI›L]¯nhSÌ\âIñîS%š ìзVÏôÉYïiÝn tëìÁ+³§‹ôüýæÇÙ%/–°ñîɺ罳m3Û·ª”|èânIóyry¾¸™-øÂ¦RžJ[´µ4|e[]ÒV"~Q’2TXó£5EPÖÐA…j°+LIµ8òá ž¥!á)TH[ø@Á Ä]S°9ÄùUò©êFKöÇYl»tD³ô1KOlþ‚¬£üüÐeæéû;<.m-”ñßßÏèéþaMHƒ½o%{·VÓκ‰_'½ÕmLÅîèA†Ûû¯k2¢–¸kéþ‘DYJï¥l>|݆«_dÄ#†+I+¸©£æäÏB6¶G:ˆãÄ)<±vëÁµ¦ÁµY>¹¸CPŠäïôeMOÊ”¨1ø>0Z0 +alTd§ö­C<°iéð6ÕæákŸ•}ÁͧNjûÇ­E½çW“ÈËB{K¾mëÃ,k[JBìÉ>ª£eÖÎW™BWË÷b6ŸÑgå‹Ö{d/§T[Í®9¿;å|ÐÇ$´§ RsqH8Þ +ÌÀ¶õ—[Tz-gò¸‰½¤[m‹çïïó)OJ>=I¯Ù±´§ì·±ƒ: +€NÌmÛ†¿Œõw|÷Už8’¦oQ¤˜B ìGõlœ-Ûs%K =˃òr6ØŽÉiAƉ;0P”7Ù!“k·“8Èí”ùY ̸ÑÀç +êZc8Æ>ï$©êìŽþùü8uÃêÝÍøHöŽó™—C\€³5ŠC|MqW£úà€5úØ™ãè²=ôïA¸ÅB_AÒÐèË zü“5z­a,´I¾¡F8ô7É+±ñõvÆ-C•ÔMìs”áǪΠ+ãßgë¹ +äå>½zQb1(¢j¥…ãt =̺ sAüÑã8ÑZ}d#’ËWXÍœB+$¶fL­)®k‰K’ "ƒ9|O‡JbE èD2‚ÏýåSwYTÆj»‡€ñi¦Eƒ‘£¶†êm™Ã$ÅS1BœÖH´ìýY‹¢Rø/Ï„¨ÐÉ—õ#Ó +$…?²%²2ýH˜¸“æE9kŸïw¸YT]š]•8Ñ@Ɖ¥Â[OöEaLÓ"ÅëÆ€Aê˜Pï×ÚcææÑ”˜ÐÇÇa³rEÙ›£¦°±®öµÞD¿³b’fÏåHÆ£mÝÀ”ÒrZ{ ƒgðG8sPhç’ç Ü[ð nuPç™Ó=z-Á€¬úãPû$&qòøŸ§44¤ïv +¤ Œ‘‹¶;NÓø5Úu“*%âd£!#±x2HV<ˆ¤ÛV?w<³*Pn+‘NaëZ… Ë´…°ƒj>(­'Y)Kfch1F»1ÇëTÊ«}ÈØù=¥w…Å431ÍÎ#ô£ˆ;žKax¤ŠÀ­eÀÓÇ6´DG„+&1«„cÕ ÷±Ê€ ›rDt¶rR}t#'«´Êbñ* ðJ¼ÈH‰ÛH lf¯ûÄGaãhM)Lqä AdõÀ x7EãgV°f¡J]#Œ¹1ñʺc=Õ¸³~1ÐEÌK!o>cŠòPˆP§&B_h…ýðºöи,B§e +‚ª[`~*qˆŠä3ÖMüÙÝL $Ë+CmÃŒ¯_Œ¤î"(-¼¢2¹ó®ÌyŒÓÐK®ú©ýÌ/ð TBw0Æ@ }ÄÐ̤Ÿ.,ž`9JÓ`Mh1Í¢éñšõUXE¡oÕ.®kR#ïPÚ¿%_H#œ²X½s-»fù #?NCˆ;”«1j )è,àNkÌ`nHº5Nj%xÚàìÉvTbEùºKb×EìaB"e0û_°Æ²5F¢¶8‹†æ©VÛC\T=t$4i¿_(¨´¥ã‘(_!ÌQ䑸€íd✿~E%–½3þ )X’X3vDl ÝÍtÁˆh^ÜÝ i׋ôÁôÿ>é©ûT>ÖúÀåj9[]ßà«ù<~ü¹9ûvöí(ñ„endstream +endobj +1440 0 obj<>/XObject<<>>>>>>endobj +1441 0 obj<>stream +xWïOÛHýÎ_1ê—©Yì$$)Ò}]{BW ×¤B§ã„6ö&Þb僚6iþû¾YÛÁŠÔ+E +öîüxóæÍäÛAL~bši4¡¤8ˆDD£ÙHŒi<›âó¿NÑ*¼F'ø³÷â|qpüáÅSZ¬`k2‹i‘ìD-’á +úâÙ•™¢7ŸUaKEgÆØÊ$ê m¤“…*•;Z|…©1ŰÀ¦é˜ÀØá‚ï¹úž|~Mûb)kV”HCKE•W)•–VÖ%z™ïH_!‘2“%É<±\©òüâzNþ=YC’C€ãx$†ìبrkÝ=­.5ŽƒY PBÍ A£ß™R~ßgúJÄÚŸÖÙFô®Mv Ðᓚ½Ûô;IEJÿ*±k‘ýGBˆç Èûߎo®?ÿõççë/Ÿö¾½æu›)§šÌ&:NêÔÚ¤I©Éáiøàà{íIi0Æ…R}¼<§ÛÃ6‘9]J¶Ð¹³[¯Üí]|"™¦Ny±>¾tV¦‰GÕÚç5ûzUcïrkuºw÷`Jün(âÉLÄ"ŽÞ¶Æ[›‰­ò”ɶÖ +äñãÓ +hƒ`I!ý=ißó(½¯Šš©°3ÓR—‰âºh£Û#A7{óÌuxÄcµßá%Z‚ ^Sìrд2©òÚÉe®hY•ˆsLj÷^¡^ÑVQjéêzA÷ÆnC +ÝŠ>©xÐP¾å× Kš=q9ŽG-éAÜvSjkÀ$½Œ†kœ­Ýâ¶_;[mꢃ +~õD+ÚÙŠõ†ï!þh…%æe|Í”[9*d’i‚,…b(ŠXrkïµYS®ïû®`…‘Í-^ ä½û·pH²Cºj cóŠ¡ ³¨PÎÑÏZbË«S•6ˆ·"5r5£õ½îNšïLò«þ¢±YM»WŸ¨<’i¾ÕeÎZËL$V‹ ôŒ«ž5[Μ5^tù›§ùK®C ”Y(Ê\KÉ]Ôˆzº¾úø¾¨~BûÔ>3ÃÝãBM:n¯‹*/¥Q¶ò˜Ll…FB0ÍH!¯ÖÜo|†ˆ.~:h~‚Û+³¦!sçâã˜yÚA!Oµ¨µJŽl:"ýZ×r©œgtXêÑ +ßPjˆUOª{è5‘v1énƒG:Ž÷t¼¹¸š?Ï¢Ù)¾ ´4ŸÞ6IÔÅ Ïx€Òåœn´IAGºZм.2¿ÆÐA™^g( ”Ò(w +½gíßÒ«ml§Öà˜rQf_`]i±d0w·z$Ãûr·Qô ó +ãaà yßa¹†‚ñ ?p:a>÷œ3åƒÔ9k° µ>e"¿Bª‘I‰„øUFƒßÛC®V$ú8‡šAæÞ¾h­ñ, Àå*cX½Ø`.M!\#a€·‘%–4´|p›ËíaÛä…¼ÇÛLB²‚Dmœ6À}fÜþ¡ù{éÂóˆzÉuªaoch¼=Épˆi[gØØiÛî #±­##€8°NB“á7>¡±É¤®©¡\™u™ÕK!n ét„À;D=ö Vw”?òé^¼¨<%N%À')ƪÞúkÊqfváÎBøá"îxKÂߦ ÇÎü®ùÄ0®‡Fßw|2î} â ée$º1y *z{¨M’Wi‹÷#Ú€ÎÒ±Ë ç{üaÖì‹ñß;f#šL"1cÅ™Ÿ]žŸÑ'g¿‚ô‡M°1aÏæË|sÐ^L#ìÒé¯~ãOÇb:™áûîÆc6ù~qð÷Á3ä#Wendstream +endobj +1442 0 obj<>/XObject<<>>>>>>endobj +1443 0 obj<>stream +xXïSÜFýÎ_Ñç/!U X~ó! ¶sTÌ{§â”k$vÇHš½™›ýïï½–´€Bª®®l0¬fº_¿î~Ýòvfrˆ?39?’ã3)šÃìPŽO/³9¹8ÇÏGø +VªëùÎÁÇ™Íd^áÊÙŹÌKÁñÃC™»¿ÜÜ=HaZ‰Éã|ZÚhe“KL‘lÖ46Љ|¶‘…M°»pl™É•µ³mÂS“dmÚ„ƒ^j¿ßâ\’Ö¦µßÏ¿íÊþì8;„]:5ñQO(ŠhÃüU>ˆ‘ÄWbêz@ –æÉ¾ð¯—ïlúÙ/½Rôu—Î2®Ö'ÉíÄqm)¦>Æ‘@^4`ä:|fíZИ­9ßSn ãÉ•°òäŒ(g_}øª¿Å„ãØÚL¼¾­Ü¢C²ä]Ý,}LñT®FlÊhÓÀ‡]dLùî3Cù5y´ Àè3¡ØGÅaêè•5 ¤]XyTî ”Ä‘±5>ÑÄÆM[,ƒo]ìƒÌ7êøçÛëïb&ú(°çƒS6QX.¼2ºvi©€ßß^Ë—ÝÒ74È1ªª÷¾|¯yVÌK[¯H‚¥C-(h“«6âÒwQ`%“ë)¥­\ë43š²µC²ºA’D pj„µR[}²¾[erçû ]B—o¢“%ÚìîÓüï7w?MÒx¥Wó²¦ TK°• Ì+žáÊîöA~qm žån.ï•öX7$—LMÊ{HZÑ—¦qÚöÉ!A,N8D¹l™U·à­ïí^TY +¾®‡þ}™ë—ÅLަõó¯¾L4%Ïl¡ìEåÕUòáßþùë¨6óïnîÙɾ†z™âQéË­E>=p¢ñˆ~¨:ì5çEwÕnFãƒÒ KµÿÊ^߃j)r²àÚÞz§„>ñ +fÝÉ õ`P +jè{¤_c6rÇÈUxaö±õk1¹ïP)“ÔÃÖJ½@ñ =ñ«ÂÉxžÅ»¯¦AH^†Q׋®VVYB(„þ±[‰IÉ6+ZÖƒÔ0Æú+a±®'ŽyÆB,@2ì+ŠMAUT±qZsÿœFy0Mn´Ê_±þâeJHÛÚµQb·ZùäÙX¨è‚w‰Mž± Tõä·EísÈÕï¬|öñÿà†FÚÞ"mŠ¢Ÿc?ˆÉà8+ÈÆwá5’ Ooã:øx¶Ýû£â¾ÿD‘І ‘çñ¾«¥ž#/EÆ7s¦R9pö'´+0JºÚtK¦£˜©(N0ûu+èB$€%‚Ѹ²ôSÕž ú¦Ð´·M®B…ZÐvÄ´Hðó·>€K™a-á~²|Ò•£ì4ƒ„i¤¼Ñôë Tηò>ƒ”oÛµô¬}È£ÃÞÐØ¯©‚§£óìŒìJ°v ‡|Óèø¦7Ì-Õ0†/ym +nìj”~|ƒáˆêš^C{ J5yBڨЮiù}P0Øi®o>=Œ--É<¢¯™NeCLÚ:ÀikÖ1`°Ö9ɾì²1¾ÀUk³Si KØg¸°E¬p¾š ê­0~ °_`X€ MZiñ,ôCÀ‡%Ï+(4g&v.mhÁ¶Ç«[{R:"žx]­oqØ ÂÓÂâ“;ËQiƒM ï’ArFÓýà*]ÁÈTHD±ì¦‹`°‰ ‚{Ì.;ÍÄ^¦a•w•ïKpØ¥wBH¨å•5ظ¾öŒùV_$ V¦ÀJ +É&~J6I4:Æè/ÿصGÚÙÃècP7÷ŸÇ:D¢ø‰.CíØ–Ô”=,½:–æ” âÙF:r^jrß¼ŽdF`O˜ŒK³ZÙ6î &4ͼ”ñ‰Îqôî$^•¢×èx¼'‰å̈X£6ñ—–Fr·¤ö!ò£„éÔx{(µ˜hÈ/Ñ €óå~%mÎ7—tòFìBýPáGÉÛºèQ–yM~eÕµ:l†E·Çª|µÃú•ÖÄÊwŸ!ÛJÞ¨d}•sJkɾ9#¶qœîÉ忸!Ü"FLâ—›ã¶hw}sx¿8Žvîæ'{r„—Æ=ù ÅG©á—ãI”TÎAFÇ$€¢¹¾Sª_6šò¥pÎÀú½2«7{’ëz#q黺dö¡4~×êÖ߉_âRLŸï‹í|Ùñ]Ю·×:”lÄ̧O,ÑýF÷ ›8·º$•®Â^½@Uéÿ4YÆ7Xp’ÉOäï]{¨ ÜÓ•Z_dKÉæ ×Æ <Oè±ð]ndj<€@-»Š¹Ï¹ÓöKÌ$`xÞÞ맃â0;Ãûÿűœáÿ0Ý®n¯¯ä>øo¨EÇ^WMÝïŸ^òüÿ?wG½Ru99?ÉÎÏ.0ÑasvJWæ;ÿØù/.¨†Æendstream +endobj +1444 0 obj<>/XObject<<>>>>>>endobj +1445 0 obj<>stream +xUmOÛ0þÞ_qãS‘hš¤!)HûhH@Ù4MBBnâ4ŽÝÙ¥ÿ~wN e”MZÛ¤ií{îžç^ü«Aˆï²F)M/ BH³4ˆ!gøãe8T~!> ƒìÏ…Ó¼7dLÖƒõ^Ô}Ã÷3‰‰"1˜k4k-0ųÖAgN œ`ò w8^1µ+*·dвC䜅tRë‡vîPÒÍö¨E ³ðo$q†U•(ºêÚ#Á6,ÖEµÉ‰¦Šßƒ3¸µ&^(ñÜpæ ær7Ã;»Âx¢eª$úœÛ8>ÃóŽÖ­¯[ï%˜Uoa)0¹²ñ‰‚UÐ3…½= ±oÅ{mÿÿºës)Õ…Êw}½£×»ýwüR³–¼b­t¨Ôß¾Ö)Ÿ5ÅŽ®wúާ–¤<ì‘ÕbUÜÐxàþzn ?D¨í°V~éV‰'°+ëxC¥$š…äÔb~qNSǺيrp×ïxnÍšªU…%ŽYÊ:–~‰3ªÐÊœ¼»MºéÝî´·U¯yõ`×neíR¸¢ÞeAÿÚf+Pï«+â]¶¾Õ†çãõÁ¥xG$Ypûù?=¹:=£rê3]´$’Ÿ£äçbg2ÈB¬ßI–Y:Æ·F)!œå½¯½ß‰¿/9endstream +endobj +1446 0 obj<>/XObject<>>>>>endobj +1447 0 obj<>stream +xWÛnÛF}÷W úiÝ"9E‘K ˆR`MVäRÜŠÜ¥w—Vø÷=³KÊ£ E`DX.çræÌ™áÓÅ„Æø7¡å”f J«‹q2¦ùtœ,h~³Äï)þ¬¤üâ‰&Ëd¯óIrƒ¾‚·®ï& úhèËÅûõÅõí[šŽiãòbyCëŒ`uŒ“ôòC!j/-Íúêð¿Ò¹±•ðÊhÊ„áäëõ?ÁÆdm\Íæð·Î.gÉ$¡;í­Éš”_‰7ç4™t7§KŽ›ŸËŒöJgfï(-•ÔÞ‘“:£ºJ“—ß=Õ¹½±™#óŒH|!ñŠ• ­Dµ” +Mi!Ó?qòèú¦¥Ô¶µWzËŒéj2‹âfEnRSÕÂâ¿\‘7Á|!\AÎ+3$Ž­¾SÃHôÙ'Íé"™s*r§g“‘:Äk/¹|»tæ*e‰ÓOBWÈ‚zX{—îÛëÓtGˆÄy)²A*&?‹UBkओód÷ª,É貟 ‹c°2G¦ Æ ׇdFÔèR:ÇH)‹÷·ÊyÛ’ÂÉ^ŠÌ†`!¸“R¡ˆ¯€î|[J:kBïe*8R`à á©5 Ó–BüE`èQÙGzÂfÑðI5G}6Pˆç˜;×?Ôþ\yÈ™Jî ‰+²tr˜ßÊTžã–ö@ýL£cDé8;E+æ?sÐx$EZDú…D¬6þˆ¢bPšé:"™lB#í7e(W4Z‰–J³EoçÖT£uiÒØî1ËB¹k¤Kµ5¹BABìöiŸß`±5­ôVÉg$Ä´êró°t"'ãþô ó)ÛÐF¤;HÀ/ }0Uè*ž…*Ån»‡°h‡ÕýôñÝ£ãfà8Gtß®¾| +håê²q ÝÑŠ«{¤j#=–;3iS¡`1{±1 J¹t}û¦Ó°ËÐÊÙf€{ýÊç×·½âñm+* E H±ò«fhT³ª j¯==àÞ÷+™6VùöÔ*˜Ýë(7{¨9½ºšžs¬Û^¦…VO Ì"׊œª€ª…"„‚»Ææ"…®®¹BÝC8E©GT˜= +iGƒ|£˜ì˜ªRÖQtb×B’+àÙÖŠE.*k¼„ßɺ–žùI`œf>n™JLjžâFdÑ#'Üõçé¢oÍ ‹L¾O\¿(lïyƒZ+O™aŒzxÆÝ´^FÎèY”Œ(üfÊí:ô]èçâcÑþvÐ*0‰Î[£û.àq7ð*ŸWà%ãÏ(t¬™´Š‹ €ñôʽ”ž{™ ¡9/üÂ@4 Fn ni¯Ba ºx1 º¡ŠTê¥ð,Žf´-Ë’HÓ ö¬o𠘻´÷ÁºåX‘ ´Ü)Ä7’\ 6{L½-t[Cò QæPðAºœðž¥À†èh-m.SÒÚ8§  W·¾hPh+1øí Q¢À!pJø@ˆS•á™1pͳÓ¹Ú„ù–Q”‘2õˆªÖ=•Í‚)ešmÁlAž¬Ö<³à÷Gš9èP²/ª ºÃ¦Ã/¢n@Õ`f£,;YCãe +ã‰Íñí2ÆÈ1åy‰¢€5蘲íÕ¸_Mî2J½Çæ *ÕŽ¹Öð¾cö…˜ÑRÁñPFà~v‹¢Æ!¨iÏþA&_ykôô¨ZTþ8º^PÆiÁ¢ãìq{øGþÜüa?ó\êxjBdÜï®Å6T9TêQé‡õP˜óÇíˆðèížOß^L¦Ód:žÙ¼™…U•U3¸ÖPl`s,Ë+ðZ¥¼N"¢6L¡·]…3™‹¦ôa0ƒ“•Šd$Ñ :´Uœ›(0܃›æ‰ +fÙõíâ0]‚x±‰ã!‚u h³ª1â¼Æ/gÊ&læhÐ䮈8qÀ3-áàüÌ6AŽåà­#»ÙÕ6‡å¬¼’:t÷!«›ža üj0^ÙèÃ:ñX”xÃÉ$z¨ :ŠYÃR“Åd†dþŒ€,Ý«Ôgrà`Tƒ,=%"ƒþÊï…Ú„$x^@kž|)–M&CßM’9˜Àƒ´cÄýŠ>~^ÑC7‹:é›— >~TŠ>‰Ó +_ P»Ó†±[ñJßðHÆ‹7üuÐ#:Ìœ1ÐÔ-ÞKþÓÎ ýåäß?õ3Åw?¼¾Å×_øêºšÎ’ÅlNWóI2™ã(ûßyóå>/XObject<<>>>>>>endobj +1449 0 obj<>stream x¥WMoÛ8½çWÌa¦@¬Xþöb±@Úm€ší6ö’ %Q6k‰TI*®ÿ}ß’ì¸Åv±‹"h’3oÞ¼ùð—«”Æø—ÒrBÓåõÕ8Ób¶HÖ4[-ñû?VRæS>þÁÁl2Mf—o6W·÷ JSÚ”4™$“qJ‹Õ<™/V´)¦ÆcÚäׯKúõõæ3®Ïºë×wUEyk­Ôþ+)œ$SÒ•[ãLééñÛ۷ïï)¯.9rmÓëI´~‡?¨\xe4=+Aøßgc¥Ód×ow¢ª¤ÞÊÛOÒ5FÃC-óÐÊÕTH—[•É‚vÒÊ„Þi‘UJoáN K^~ýÎSa¤#m<»ù)”Ã[PˆLUÊ9±“7Ô ȪàBi’:·ÇÆÃýËp’HÓšÒ³:êhM'Éj¢BpIšÐ]ñ,´[@‚/‚Ipò’ê4™áåh² ÿƒ—¦@"l„sc G"@lÀé£â4¸ƒ–Wö =šZ-©uÌ“ î€œVe)-åB³…Ï­ã”æ0{‘“·­a ¥Ë9iŸ¥ ÑjÉx1ç$þ­ôƘzýÊS¥öàYTûî¹èÂŽð¤Â9‘]÷V½¬P½Ù§×]rœ„Ÿ–˜AÒØûyïàüÃÊ AQü²HM,ÎQÔtôI™Ú¢q‰ê”®eè}ºæ§&1¢puäUÐ[S× àerÀîd™,¸ÐXB§Û­} ‚ÔpªV7ÇP·ÑÒ¼oèQÆö¯É„oïO÷ŽMDôÉ5ó¿µ¢v¡zj´(ŸØ‚Ѐ=,;úËj§T²BãÆÖ•T‘Q&ò=Híèê!pÐ Œ3=| †;^°&º>êÊŸë™ÆÌ å¹6½È1œØierNPg3ăf‡Wû+÷u®`!“W%g œï Z©­MË'Z–|eÄb.MU¡_ý‡˜Ø(ãÌEÓ©ΞHT’&4Ý>7†íèé:4Ðd"9 !ÍÔMC+¿´=Q@о ›úhU-жþ0œ]R{‹`P¶è°}Ú¸ нð¦»{ÁàÓë¾7ô‰Ü²­>0bÅ„ƒH ¿ŽcÉ›aÁZ6—39üev'ëd:Çöô½Nú§£pcPÓŸUj¶ç²Ûyzsi:KÖÁ߃ϢjeXB_ý²²Ò·VwƒJ; m×à¨34,:½¿ß#üÝY`ò}ìæýO‘i<È.l¾{â?ÉFbôþÌÁ"MÒ>t+G!úÁG„ݯ†è÷áò@ëû8Odõ‹Õ£ÃMw«ddÏb‰‰èX7L._åf2¸v<"yk‰¦xà2š3=‡þÃ/O­…W¦¸EðÓ %Š=6š3Ú\ég³–ŒÇ5  Ãs I"Óa E…]ÕÀpvªLî¬ hØ4=Š:C/¹¬xä:€7ÕÀ æ†F‡@q&°F1l$F£B„ݶ5ªs¨‘¹*y«8aÑ(‡|ôÍ/¡^ýÃnºCƒ”¬¢!qG -iCÀùNæû¢Óýíýª+Ìt¯.«)-–ëd½Zs…>Þ}xs‡c>cWBÛÈC<á+†¨â“ÑrîÿË5z¶œ%K|Ÿ ]`’²©w›«¿®¾ý -7endstream -endobj -1431 0 obj<>/XObject<<>>>>/Annots 537 0 R>>endobj -1432 0 obj<>stream -xWMoÛF½ûW |‰X”H}Qzp¢$5Än¬ 9ø²"—ÒÆ$WÝ%­èß÷Í.)Sª´…aCô.çãÍ›7£¿.Bâ'¤YD£)%ÅÅ0Ò4ã>Gø5’2w0‰Â >w0Oƒé™†ÍŸ/.æ³`BÑ<ÆTPŽ‚yó”ÓýE8 ù9žÀwA£prxâÓñ¢I ÿÅŸà³ÎcAáˆSx>œŒ‚Âyä^ çDàŸœÏYÌ(œÍaœ#𣿉OÙP89“Yˆhb -‡1.Àc² ÷äŒvža4bãϧÝgœŽâãÓÎ3N§C÷`ùÍòbð~LaHË e›Æ3Z¦â!-“ÞVX»Ó&¥'‘×òŠªMmIä¹Þ©rMFëŠ*MVVÔÞ´”iCµ•ÆÒn£i#žPkmÖºªd R™çËÁë倈šúÑ¥\¦=[¬œÉÔßhC쑲”J«Ö¥LÙ7¢{$å “…¤Ø“(SZÁ­(T®„á{_?ß|ï„…9–c÷=Ø?\js|oH}0-â0÷ÛóQ&º(…u â~›Ö{€ShÐ?••P¹%]"*€yì¡G/æod&]FŸà1¯‘õF%Ú©¬"_V‚Rî@[!q÷†W…Twý}\\ßý -•i@|ÅÃÖB X¬úÐeÇÆQ0 €nÊÊè´N8Ð32o]´©NjDX±Ž$F­¤¥Þ±H°*\vF)HðÞ¥ÁP3n¾ŽÜ"It +’Ÿ VÑÂÆ¬ö$hµªåÚCoòðš˜ÉÈÖ ¯Ö">¨Û„á6Rp»‰œ?ì!©¸ƒâY•P   Ð-SŽNg'¸LP±Dn+¼„Zû—Y5ù…ç$A ´óÁGS2™t¬N¢,[mI:ä&Ù¨ -°Õ ²»Eƒ¢’öж¹än?R°L·ÓÄâM¯—Ø‚y»•¥Ë¢O›ªÚþ6ìv»@ã¿y*¶ËÀ×:i ? bÞAPí‡h:k½îð Þ -RWbxµQîéÞÃpp¦¶îF€[6[€ÝƒjÿÅs?ŠƒpþœØg]qï¢Ä·¯¾H÷žîêU®ì† ´5Ô‚ÖµJq]{nrcÝïm% ºN è»Õ@/n.ž¾È:¦ä %ŒôU€Z@d3’Â09k4­¹¢h8Œ\+¢ªíÌZî4uÀ· -¬k“ ÌÞe±»5cAböld¾ÍjL#ã†l·¤KPÚéß-Þö¹¸ý?n¿-o1ÍT‰©È“}µ§›u)¥é­®·RÔ@üŸ2³ÃÏK*ÔÚ«qÛsC¸Ar³xwýñ»/¢¥5áîÓ<]y¶r·{6¯ bámÃÖ@Yœ ësrd]hΡ³$å9ëX6ϧ]):¬mµ®åÎxü,xÑ¿¼®]¡V˜cm(̳Ëf–†›¥ßi/í%gézeOg%Æ*Ú tZó¼<öœ†]ùÉÞhã @]ñZw½ÄÞvE? P¤Ã‡7N4Ú4ÙˆÕ¨TÁÿfqi8ËÅΛæJJ§ýQ:Ö]üa[8¬N†ýa«>#q’‡"~-–ƒÈC>} ë ¦¸q*¶hbp{:5ÃBVmxMÚS.ÌÚuB'²².VL-t¡çØCϰ¯™ÕFשZLnî´2ñg±pB‚K¹ÖõÖRQã}¸•áð8±˜î˜zØò}@°òÖìGL“ŸËà§ÂÆ&¡ ÕNŸ°5£XÅs½†@=ôtéÖ|HUÉ+_w–—Cf[‰‰ÀÛš;pÆ Ä žÌ£ÿ¸¿Ïô¾%¹E/Ä÷šx>¢éÔí÷ןÞ\ÓÑ?àŒ͈w+î‡S|÷ŒGÔŸ ç<ÎlºãÙ8˜Mc?;¢ˆ_{·¼øóâoJCxFendstream -endobj -1433 0 obj<>/XObject<<>>>>/Annots 544 0 R>>endobj -1434 0 obj<>stream -x•X]oÛ¸}ϯâ±üYÛÙ§ë›n°I×7v·¸€_(‰²ÙH¢–¤âøßß3¤ì8îÇ¢Û&XIäÌðÌ™3ÃþsÖ£.þôhܧÁˆ’â¬uñæðëñãY¿×4ö£ 4èN¢ëæ)§¯§Aï߆“1þ¿#);ëºØÖô¢o›Œø£âmÃîï÷_‡“ ¼~e£ý~ï[£¿/Ï:·Cêõh™qÀ£É˜–©·Kˤ•õ,IªŒ*4«Ë+re UÒdÚ¢L$ÅÚ¹\–2y"¼£\¹&«œ´}ÙÇ;J)S™ú½%©2•/2½\~=kw©ÝD}¸n‰ª2Z$²5~ ï©¶¼«¤T8 “¼ëhÓr#ÉÊD—)Õq. vâØ­H U*ëŒpÚXÚn4¥Ò*‹NÙ*W‰p§±E\ k·)e*—üµÐ@VJÒ¥< t!Š›¤y–†¶+s™9Þ†pI¾­Räxֹ݆mtnß7x·ÈØ]™¬Z½Õeø²ÏD‹Dé‘9^líæGKik4ÎÔÖéâ -Pµ7Qœ d£*ÀëÜ&Míq4éQ þU4¦·ÁøïíÁ5ø…S`œ)œ,ß1\¡ëÒ‘ÎàÖ³Á)]g…ô! ˆˆ±Föã+IJtfÄij/­ &ÎIÈ"MÛÂ9£â„Ú£‰œmt!)E6¸A@>Ú¤À¿RH9‡âT!¯˜ÃòY" -z”9>€Öw)¢P™ -$<¢Óªõx7[]z–ýPíþ$ê]Sû=W6CÅ5b¤­sÀ1R™ÉDÉ?ö -ß=ÇÀY¤Ž -)JËH2hª\3“ÌñÁ}!Ä;Æ1¥-Š#Å™r]Éô{1ß5y€SU8‘$Ò¢0+P,ß$Ì‹G–€!\cØÎIÁ~„ƒƒ>ž*ÏÉj*EØÁ oþ^3RZ`Ow%…ëGÐË+’¥ˆsÅÖU¥ó2#N܇Hc‘–;ž˜)6A[`o(Ó zM=tû “j¤oüƒh "ZqEô–…o,{~±«Ïcb‹aüõ "ÑP0Õ 6mÐb ¹;ô(0ú7 R€žý«’¥7“n3N±z%9º¤;9óìP<dL=ìÖbàÉ‘T$™Õ’ºÕæ)ˆÃ'él"*yaé•Àád>¤à‰³?_Ópâ7­½MÐôÉcŠC0_ÑÀ2rÖèô 9’ ó˜áÑ“×kð -¸ahB.µãÅ©û2õŠyâ¿ÑOvÈeÎô°ƒñ v°ÙÖpÏ›µÍ ü¾J¸~ø5`ŠE»yñÿiÃB›ÒWD·{}÷s‚ A-„ß)”ÆFU솳ùx{ƒ{Gw é´êeôåô Ýo€´7Ò¦ Ü! µÍÄ_~ÇÑÞRD vqÝò×—–|¨ni;L§N8f0ñ6€–?äѼÇ<öË›xIÇ_1Q&9:(w¶5¦Å’¸7xqíÜvéº)Ÿþ0”ÏñŽU‹z¨¥^ô?CüŒ{£÷bð‡>M>Ðű³ Z|ž¾ŠËÇÏ7ËÏÓû}ö»a$þoöaqC³&΋ï­{ø¼XBg¨V)“Áïp»àóÛ{˜þx]RbY^ÌùêÓó9•îè¡Ú¦÷º…t¼L¯u¹äùæü{®}œäWeYXFO*yÒ‡'X»å ®TkØ <>`ð=>/XObject<<>>>>/Annots 547 0 R>>endobj -1436 0 obj<>stream +iCÀùNæû¢Óýíýª+Ìt¯.«)-–ëd½Zs…>Þ}xs‡c>cWBÛÈC<á+†¨â“ÑrîÿË5z¶œ%K|Ÿ ] ]±©w›«¿®¾ýE7endstream +endobj +1450 0 obj<>/XObject<<>>>>/Annots 537 0 R>>endobj +1451 0 obj<>stream +xWMoÛF½ûW |‰X”H}èÁ‰’Ô@»±‚äàËŠ\Š“\v—´¢ß7»¢L©rІ Ñ»œ7oÞŒþºiˆŸf¦Ã`HÓpD4žÏð9¯‘”ºƒIósãñ4˜ž9€ñ`¸ÿóåÃÅbL(Z̃1…£`±Êéþ"œ„ü<ŸÀwA£prxâÓñ¢Éþ šs|þÏ:…#Náùp2 +B +‘{1\Lr>ga0£p¶€qŽhŒöO|ʆÂÉ™ÌBD3§p8Çxœ‡ìÂ=9£gØøói÷§£ùñiç§Ó!‡{°üfu1x?¦0¤UвMç3Z%â!­â^%¬Ýj“ГÈyEuÖXy®·ªÜѺ¦Z“•5µ7-¥ÚPc¥±´Í4eâ µÖf£ëZ–0 •y¾¼^ý@ˆh@?𢔫¤g‹µ3™ømˆ=R–iÕ¦” ûFt¤œa²¢´;eBk¸…Ê•0|ïëç›ï° Çrì¾çû‡KmŽï ©¦Eæ®:e¬‹QX— î·i½8…ýY •[Ò%¢˜ÇzôbþF¦Òe„ð >óYg*Îh«òå–óç‰LU©j…*¸7eË=ê Ó—½?{ÔGÁ8 »\0 òg}Œ=§1·ömž ˆ'YéI¤ŒýZÀEm”|Bi˜¨ *_ˆ—(5ºp5¥úéQ‹µ@%¸^x«¬pkGV£ŽÑ;Ü;h§Jæ ÖšJU.ɉ¾rê d\4ƒ1Dξõçú–»-Å š]å²R– uBL”ë\&WTjâ™°¶FÉ5÷ίП´Z¾yö{rŒ¢‹Ü¢ïجǔÑöÞpF—0rI½•QOJä´Üýð: ¯Ì6¼„°Ö"~”€>ÑÒ–¯jTï¯FÁ¢(w'Y‰$‡t [±.SµiŒ«*Âí‚M#™ú°Š|Y J¹ lÄÝ^Ýõ÷qy}÷+T¦ñ X `±êC—GÁ4º)k£“&æ@Ï@ȼuÑ&:naÍ:µ––2½e‘`U¸ìŒ àKƒ¡fÜ|¹EëV:$?A­6¢…YíIÐjU˵‡Þäá51“‘¬A_­E|P· „á6Rp»‰œ?ì ©¸ƒâYS  Ð-ŽN§'¸LP±XV5^B­ýˬšüÂs’ Úùàc_2™t¬N¢,[mI:ä&ÎT ØPÙÝr¢’öŠª\r·)XªÛibñ¦×Kì Á¼­dé²èSV×ÕoƒÁv» 4þ›'¢ +0X¾Öñ^ú³`Î;ªýMgûFoç‡;<¨·‚Ô•^m”;º÷0œ©ÊÝpËÆ¢’Ø=8 ö_<÷£y.žû¬kî]”øöÕ áÞÑ]³Î•͸0 A[#@-hӨ׵ç&7ÖýÎÖ² ë¤€¾[P ôâæâ9à‹Ì¡cJžPÂH_¨D6%) “³AÓš+ІÃȵ"ªÚάÕVSG|  Àº11Êì]»•Ñ3³'“y•6˜FÆ ÙnIW ´3Ò¿[¾ísqûÜ~[Ýbš©S‘'ûzG7›RÄJÓ[ÝTR4{ø?ef‡ŸWT¨W-â¶ç†pƒäfùîúãw_ +DK Âݧyºòlån÷lÞÄÂÛ†m€²8AÖçäȺԜ BgIÊs4Ö±lž#N»RtXÛj]ËñøYð¢'x] ºB­0ÇÚP˜g—ûYvn–~§´—œ¥Kè•=•«hƒÒiÍóòØsvå'û^Oê +ˆGкë%ö¶+úøi€"†,8œ9ÑhWÐ8%ªQ«‚ÿÍâÒ*pš‹ 4œ7͵”Nû;¢t¬»ùöpXœ ûÃV+|F<â$EüZ,)3‡|ò$@Ö LqãTThbp{:5ÃBVg¼&í(fã:¡YÙk¦ºÐsì¡çF +Ø·Ÿu¦‹T-&7wÚF©‚ø³X8!ÁŒ¥\ëǦ²T48@VÒ 'ÓSû@¾ è6BÞšýˆÙçç2ø©°±IhB½Õ'lÃ(–Gñ\o P=]º5RUòÊ—ÃååÙVb"ðǶ掅œ1ñ‚„'óèÁ?îï3=oInÑ ñ½f¾Ñtêv€ûëOo®éÎèpFËýˆw+î‡S|÷œ¨?.x6œÙtdzq0›ÎýìüÚ»ÕÅŸJ~xLendstream +endobj +1452 0 obj<>/XObject<<>>>>/Annots 544 0 R>>endobj +1453 0 obj<>stream +x•X]oÛ¸}ϯâ±üYÛÙ§ë›n°I77v·¸€_(‰²ÙH¢–¤âøßß3¤ìØNÛE›:¨drfxæÌ™aÿ9ëQ?=÷i0¢¤8ëF]¼ÙÿzütÖïõ£ †ýhB º“èªyÊiÎëiлÂwÃÉÿîãc$egýQÛúƒ^4âm“éŸxÛ°;ÄûÝ·ÃÉ^¿e£ý~ï­Ñßg›!õz´È8àÑdL‹ÔÇÛ¥EÒJz–¤ UF•NšåûKrke UÒdÚ¢L$ÅÚ¹\–2y"¼£\¹"«œ´}] Ç;J)S™ú½%©2•/2}¿øvÖîR»7ˆúpÝUe´HÖdküÞSmyWI©p"&y×Á¦ÅZ’•‰.Sªã\ìı[‘ªTÖá´±´YkJ¥U²U®á$Nc‹¸ÖnRÊT.ùÛByX)I—ò4й(bl’æYÚH¬ÌeæxÂ%ù´J‘ãYçvw¶Ñ¹ùÐàÝ"c·e²lõ–ïÃ7»L´H”™ÃÅÖ®´”6Fã Im..U{­Å J61ªr¼ÎMÒDÑG“õGÑá_öGc:Æß\_X0Æ™ÂÉò-SÀº.é n=œÒ%pVH’€ˆkd0¾B,Kg¶@Lð†Ò'ðV"ôñÐGGÀSc¶áÐol­¼½ãÜôUWŒ„†¢r÷Ò² ´^•;3Pb¤à+´ÞXêw1ÀL¯˜³Ò6}¯©­ãV‚Áá'}d×ç¢â¬rPé’Nh¿dz§¼»#3°Í<€ ¤€•#©8.x¤ì% tóø<Ÿûx˜ÞC’Ó:ç¹åîÓÃÓÚ¢²¼.#oºj®b#€*Kž÷¢c' ¶h“ŒäÃtvGs¹ ÓjÙZ;WýÖél6›¨i!¢ËÝz-7¡§¦&06 pq«UÍíà„>ˆkò$VðÎæc¹åˆ™b´6pD™Õ+ê¡Ûg˜TÛ˜ }ãD£hÑ<ˆ+¢÷°ÌýxcÙó뜈]}[ sà¯o‰†‚¨^°i&KÈݾGy€Ñ¿Yôè_•,½žt›qŠÕ+ÉÑ%ÝÉ™÷`‡â cêa·Oޤ"ɬ&Ô6OA>KgQÉ K¯'ó!O4Ÿýùš†¿iím‚¦OS‚ùŠ–‰³F7 œÍ‘Ç,h ž|¨¸^WÀ “@r©/^ L-Ø—©VÌÿ~²C.s¦†ŒO°ƒÍ¶†{Þ¬ hå‡ôUÂ%ðïS,ÚÍ‹ÿø§HÚ”¾!ºí뻟d‚Àh!üÖ0H¡4Öªb7œÍÇ›kÜ;ºcH§U/Ó /? Oè~¤½‘®0mà©h&6øòã8ŽvL-ØÅuË__ZòE º¥í0:á˜ÁÄq-ȃžÀ<öË›xIÇß0Q&9:(w¶¦Å’¸7xqíÜtéª)Ÿþ0”ÏáŽe‹z¨¥^ôŸ!>ãÞè†üÐçéýGº8tvAó/€¯¢ùâñËõâËãôn—ýn$‰ÿÌ>ίé"`ÖÄyñ½u÷_æ è Õ*¥s2øn|ÞC{÷Óÿ¯KJ,Ë‹¾úðä|N¥;x¨6é°n./Ó+].x¾9ÿžk'ùUY–Ñ“Jžôþ Ö®Ey+Õ +6÷|÷Ïhw“‹•ý©ýTY4Œíg.þsxþà[À¹¿ Ìü…oý]çA`¨€£™Cáé'ãbè·ñ­áÜÏA_!"˜bx´BL| .@ÌOF×Õí /R]@ëðé Ž5Òß—öÜŠÙ¼ÇÐwYO î¯Ûd‹µ]o¸§ kq™,¤àVíoŠt†ðúË3˜›Ë•¿ƒ²H ð|_Õ£¹î3ÜK›ó%˜M7a¢ž±Ç_8üh¶QšÍwÊÃHvn&MùõFøïŠÉ€Fãæ*9ŸÞÿ>¥£¹–hv8wñÎönC{ÜE5¥­í@Ãñ0&èZXÝﲑ‹³ÿžý‚ƒc¼endstream +endobj +1454 0 obj<>/XObject<<>>>>/Annots 547 0 R>>endobj +1455 0 obj<>stream xW]oÛF|ׯX –™ú°#Éouœºu‘º©¥}Py'ù’ÇÜ-ëßwöHÊ-!hìØˆdÞîìììÜê{oL#|i6¡Ë)%YoðÎþ×ão½ñõu4¡é|(£Él]Õ¯RZðóô~<‹æt5ŸáÿüXEëÞ‡eoxwEã1-×H1Ïh)Cä-“¾+ãL{òOŠ2#õZ+I.yR™ µN G‚ á“'ò†¾*kw¿8‘Å"2vs¾üÚÑÅd (KÙÿ£tžp0—Å…pn+«0ÚQ¦DÎ1œ7¦óµ±™ðÚä´}ÒïÊ¢HU¦rÏ)K§ì™#Î0¼3~¨|2¬âVi -ëÎÙÝ€œ©A/Á@!sÀØo’Ä”¹'U‰ˆP: íS‡g¿<Üÿ¨´ÐFtC€&ˆC˜ ¤É¾X>~¹]~y¼ùÔÅ[aHRЄ$à'sÌAR?kYŠ4ÝáE&µncwýn¶êYÙ¿:~¿!R®Ré:4¬ú*ÚDTj¹:¯ 7x<mµGsѳÂ8ýÒ”ÕÆgJŸê<€¢Ç»ÛÉåhÑò •ã_¼#©œÞäQ²‘Ã}NÆJe_›ŽZNòJ«~à]ä’Ü,àì–=`š2W‰rN؇†R}§ÞƒqÌSÅ)‘Sb²XçAŽ-n!b z€Úyþmb/jL•>;I«Þj†žµ ;(ÂJº¥TÇ–+H@ŠCñ¡=å‹m.²Uu> å#i´:¯Éæ b5‹0¯Ü3hÀ¢«”…IL¡«'ñè¡Oo>ÓÃb±O¬s ISt•éY—yÂèó Ȱ¬³2 Mf!:T³î$mÍeâsé™i§cxÇ~عï¾#Åô3¸Å¥¯‰Î@s šíä<âá~Áºæ´r®üÖØo,oÁšnj&8[ @`…ó¶L|iUPððîšÆð3vË‹Ëqem—Ñ4zÑ­É×zSZf©*( ‡b”áhm´6Ú~upÑ_…ÊCʤŽÄVj\¬å¥KXBž¤¥Ä\ÃŒõìDtÄÊÀ!ÜcŸcoµ 0 sNL™9>,QÛö¹uð >ÀKûÈ5W5· [cü»ª°÷qSRT®Ùd NnÀI*E1¬RO²ñ ^<†¿&„\=Údï‡q¯cFé×Pþæ×qu¬z°~„e<̪„¦¶‘÷VC²ªkµÕu&Š“T<7@lÛת«rœÁŽÏ^±Z¥Z7NÛ)1;çêD<Âoûz&µ+R±{™:çH„kfS(ëL~"%¯}@mðN¾ƒ;¬î”äZ·a¬ áj@;Åý¨{µ]׃9¹ªóÝ;êHé ­,Ëq4åIÄ“-…³åÂç>™z«¾—¸`eu£­E™úÕySÁ›oµéõ«“>ìNÃVè:B F®”Džç¶Ê~:UGLøÿ„{ªß?ªÛÉÃà–1ïx (ç­‚ôšv¦¤­àw«eŒíŽeY/èì AÕÀQhl·-G{’k×’r W„/ŽÙÞ“±Ôr¿ïþÛ0 æ®…ë—ñîï(g2V¼ÔXJÓ^W#®‹]!Ü8¯Ž1@åßøP¨rmÒÔlq§4…Õ««zVbìx`¥€hà&0ta¡1ìÓw§{kTa«Ä#«~½ùð}¼;\ð—Nº°!ýf ’`‰ßª4ÅæQñ2¢7sG÷uÅ×PѬՇƴgj;á³IçI°§^êµ¼Z‰‰Ô÷ú¡Öä4Waÿ‹U •ï·¥£a¯¯sJ…Un°ÚŒÛB}Á² ‹bk±*c ãÀûy}‘§øp5¿¤élV}¼XÜüùá†>[>Q|4IÉêÞßíÍ‹Ù6ûÀ‰«ÙU4›Î±àÈäŠ1üºìýÝû2þoÍendstream -endobj -1437 0 obj<>/XObject<<>>>>/Annots 562 0 R>>endobj -1438 0 obj<>stream -x¥WßsÛ6 ~÷_‹o‹sË–ÈöƒÜ¥i{×f]ã=Í{ $ÚVK‘*)Õõ?”d'õzëš\S €ÀþÜ aˆ¿!ÌF0Ž É;Ã`ÑpŒÏÉ|†ÏþY [àÖöñáUg¡l΃ ä0‹z¡à±s¶Ì!Zã3™×NƒQ«Ç‹“^-›O‚¦­Œõ& BTûó‹V¯‘ÍÉôIv¶Ìa1Gœ'™·9›óÖ&/N6kÙ|ŒaNZ™×‹¦°Á‹“^-›-‚&­ÌëMG§œMxqÒ«e³)ùkeaHùŒ(å9„³¬òŠ4©hcø´f/ÖÁý°Þb•£9~H¹†CX'½L§ò+Ø,…Óü|³þØBbhë´×íB¥“çR—Pmáh*H W›éÆe_WIb*Ü%tZ ‡˜Wo„w¼²¦*-ÙL:È4„4³2A;GR©o”=Ð*Kª<––Ѷ@O>ü¶ÝÛ–èSÐÿj-—äñÏ:G~Ûà~aèsÚq€ã -tüfô6ÛUœ”G‘Ç‚‚ÜOÎ",,æd¡oRæÀ Vä²”Öq^Å‘)+L¶—ÇA‚vÁhu„CVîÁ[ÕV{ý>½í«TNäO]öà€yÍt¢ªT¦¬Þ$xŒm‚H°ºE¦#HŒÃ ôb¤dœãº î“ÚiÌiz Í(šÕš@YØkÞ‚´_¤õàþ·‘昑Tÿ¤Wm·Ùן4²Íì'Æ–?b „‹SqFØ’Ô‹©t‰Íb¬qÝX o6½éær¡¡;Ü«Sp‰ hSB,qÀR”¨¹—VðÚ$–ê -% ΄¦œaÀ ‰-Tˆ‰‰NÞÞ­ÞŸ55Ε‚(ЃÅ÷±¶3©?šx’áœTΔI„ ÛX T_ „z¢üµS&êïg¯¹§L°Ë#, ˆÀך~zèÄ‹âÜÁØÔáÞ£dpg³·jYÆ™q ±?q×zõøzýòÕï—£¥O;qKxX}xx³ªw5Ô vÛÁJÅ)/Úο¼9•ÛLKž”wPŸë½ÔãÀ£®ÅwOç(åk¢yxhî4asíÊ}æMã“è@#Ýs¨I}ðA  Sõy2»WŽyä$þ;"B‚uúì(…þ¡X|õ°DV–ÅBnO¨Þ5…Âþ) Kî2ôboCþüð¶\P¦1á¾ÙrF®8ÑÍȸ‚/BUm‘Ÿ¥%Ù ½“î1m‚|—HLBãNÁyB>ÏÂ_H”«D/yžÂ;¡±ïì­©–…4ØN·i²d†ÓcwW—+®I¶=r,ÜU¾°×öÆ•LÈMù!*U:HÍC¢ÍÍ¥äMaÄ'ö"E€.#¸;qïññ-˜¢ÌŒ†‘$Çö%þ]òÝ…MïÚl·×·È‹RX¼K(‡ œ×F_£´Žcsó=ðN!òVÿ2賆¡áJy¡ñT³¥Î£sI땳á¡G±]ÆïÉ„Ç "0úê;(ÙëÆóÅe€çe‰ÈÏúÚá¤LöœÙóëÑ%X¾¤|˜å~”a;©¥ -o<@<“üxò ¨¡ðŒ£Ù`>]P³zBØô~Ýôðª¶ü¥ÂRöLüY’(œ³žòõ%‘ÊÌ´ÜÏë Eá÷ù"¼,ó½äqõîÅ -Þ[C&àÎ$]Bq ô…þlHÛž¿„}{ó'žÔ&³I0‹æþæ2šÒ«—ëΗ¡—*endstream -endobj -1439 0 obj<>/XObject<<>>>>/Annots 565 0 R>>endobj -1440 0 obj<>stream +ëÎÙÝ€œ©A/Á@!sÀØo’Ä”¹'U‰ˆP: íS‡g¿<Üÿ¨´ÐFtC€&ˆC˜ ¤É¾X>~¹]~y¼ùÔÅ[aHRЄ$à'sÌAR?kYŠ4ÝáE&µncwýn¶êYÙ¿:~¿!R®Ré:4¬ú*ÚDTj¹:¯ 7x<mµGsѳÂ8ýÒ”ÕÆgJŸê<€¢Ç»ÛÉåhÑò •ã_¼#©œÞäQ²‘Ã}NÆJe_›ŽZNòJ«~à]ä’Ü,àì–=`š2W‰rN؇†R}§ÞƒqÌSÅ)‘Sb²XçAŽ-n!b z€Úyþmb/jL•>;I«Þj†žµ ;(ÂJº¥TÇ–+H@ŠCñ¡=å‹m.²Uu> å#i´:¯Éæ b5‹0¯Ü3hÀ¢«”…IL¡«'ñè¡Oo>ÓÃb±O¬s ISt•éY—yÂèó Ȱ¬³2 Mf!:T³î$mÍeâsé™i§cxÇ~عï¾#Åô3¸Å¥¯‰Î@s šíä<âá~Áºæ´r®üÖØo,oÁšnj&8[ @`…ó¶L|iUPððîšÆð3vË‹Ëqem—Ñ4zÑ­É×zSZf©*( ‡b”áhm´6Ú~upÑ_…ÊCʤŽÄVj\¬å¥KXBž¤¥Ä\ÃŒõìDtÄÊÀ!ÜcŸcoµ 0 sNL™9>,QÛö¹uð >ÀKûÈ5W5· [cü»ª°÷qSRT®Ùd NnÀI*E1¬RO²ñ ^<†¿&„\=Údï‡q¯cFé×Pþæ×qu¬z°~„e<̪„¦¶‘÷VC²ªkµÕu&Š“T<7@lÛת«rœÁŽÏ^±Z¥Z7NÛ)1;çêD<Âoûz&µ+R±{™:çH„kfS(ëL~"%¯}@mðN¾ƒ;¬î”äZ·a¬ áj@;Åý¨{µ]׃9¹ªóÝ;êHé ­,Ëq4åIÄ“-…³åÂç>™z«¾—¸`eu£­E™úÕySÁ›oµéõ«“>ìNÃVè:B F®”Džç¶Ê~:UGLøÿ„{ªß?ªÛÉÃà–1ïx (ç­‚ôšv¦¤­àw«eŒíŽeY/èì AÕÀQhl·-G{’k×’r W„/ŽÙÞ“±Ôr¿ïþÛ0 æ®…ë—ñîï(g2V¼ÔXJÓ^W#®‹]!Ü8¯Ž1@åßøP¨rmÒÔlq§4…Õ««zVbìx`¥€hà&0ta¡1ìÓw§{kTa«Ä#«~½ùð}¼;\ð—Nº°!ýf ’`‰ßª4ÅæQñ2¢7sG÷uÅ×PѬՇƴgj;á³IçI°§^êµ¼Z‰‰Ô÷ú¡Öä4Waÿ‹U •ï·¥£a¯¯sJ…Un°ÚŒÛB}Á² ‹bk±*c ãÀûy}‘§øp5¿¤élV}¼XÜüùá†>[>Q|4IÉêÞßíÍ‹Ù6ûÀ‰«ÙU4›Î±àÈdÌ~]öþîý2àoÊendstream +endobj +1456 0 obj<>/XObject<<>>>>/Annots 562 0 R>>endobj +1457 0 obj<>stream +x¥WßsÛ6 ~÷_‹o³sË–ÈòƒÜ¥i{×f]â=Í{ $ÊVK‘*)Õõ?€”d'Õzë’\S €ÀþÒóa‚¿>,§0 Î{oÁd†Ïy¸Äçÿ4‡”¸µ}<¼éÍ”-üЛC‹¹·ª{Ë‚•7»9½É›¶zvqÖ«eáÜ `ÑʬÞ|EˆjnÑê5²LŸeËV!â<ËœÍeè…­M»8Û¬eá Ü·2§,`ƒÅ.Îzµl¹ò|˜·2§·˜žs6·‹³^-[.È_+ó}Êï|J)ÏÁ_údÕ®H“Š6³ŸÖìÕ¶7¾›À +¶)V9ñCbk8m<Ìd¿Î8ÿð/×ÛO½ Œ¦>†¶M†ý>T2VyÎe åY +'UCZ˜RéLî¡P&û¶‰cUá.&“Úˆ?Á¼:#vÇ­ªВθL’AH2Íc´sfàÈ…øNÙ­²ä¾Ê#®-ÚèÙ‡Û¶ÿoÛbyà_­åœ<þYçÈmß­À÷]NGSàÌ <$¿)™fûÊ&å‘å£`Æwó … ‹9Ùbè©Bm™f9/¹66¯ì+Ë‹&[‚É#/F» ¤8Á1+Î(«a4¢·#‘°Â°ü©Ë!1¯™ŒE•ðĪÖ³ÈúmR=ÆAL±G/qŒ^)™cl]Æwqíu´ôBš¨¶›KxêÕ +G~m×Yàú+×nÛÿ6Â’3’Èš1Ušfß^h$Íì…F +¥ËŸ1„óüÕ¹8H#lIêÅ„›XgÖ¸n¬†7»ábw 9“P°=î• …D¤*!â8à ÎJÔÐÜi¶µ+™4O¢tÇ¡&õÀC2KÕçÉìC^Ë#Ãñß ¬ê[G ŒŽõx`î,b‰4/‹#…ÜžPÃ…býS@]î[èÅA3:‡Üùál¯L"KH„û.µ¹²‰nFÆ|e¢j‹ü,-ñÉ=77¨ˆ‰h亄cBšíŒÑNÈçYxâ ‰r˵§ðIì;}£ªuÁ¶ÓM¯-ÃéƒÒû«îʃ)xœ¥'‹í*W؃2¥%änˆü`•( ¤æ!Ñîº+ySñ±‹<‹ÂCÝnÏÜ{||ª(3%áHäÃIâ±ÝÅ¿.ß}Ø *M7È‹’i¼Kƒ œ%(­ãØ]ÿ¼ˆ¼Õï}Ñ04\)/4žj¶Ôy4†"i½ÚìxèQlÝø™ðDJ^ý¥õº†Y¸êxYÖˆˆü¬¯ NÊø`3{y=ê‚åJj3¢ÜÏ2lÏ%×Là­ÂÇ$7žj(<ãh6¨Ï]êaVoC»á¯»!^ÕÖ¿TXÊ¡Š>!KbsÖQ¾¾$R™-íÇwa}¡ðü¾Î À˲»l>¼ÚÀG­Èܪ¸¢K(#”Q£0ZNèb;t—°ï¯`îd¢Â“Ú|9÷–Aèn.Ó)½z½íýÑû>{—…endstream +endobj +1458 0 obj<>/XObject<<>>>>/Annots 565 0 R>>endobj +1459 0 obj<>stream x•WÛnÛ8}ÏW Ò‡u¶â[m§@Ü{‰“­  䅖蘩$ª$e׿gHÉVÔËvı-j82þY§dŒ´m&¢r 6ÒvrFJÒÓõ›ùå"“¶±|ÙÄEhmt®Ë«PÅn_©Pù£–ü^›‡ócô*ÍEç[î¤.R¿ìç·øŠGô0hmë|£JP‡4´X.=›îæ7ž &AMÓÝwJ[Š4=%”¹.¾HQD‚ê8¡Î•Êûçí~ÌiÉ´‚ŒR)¬¤QÔïú`þH î’=X'3R–ÖX˜¸Sh«¾U‡hµÅµLŠtÚ WÎÄ—6ª¥…¸œ´á1nr:¢wÚP®÷>@й¦Åªçù’«2:é ˜<¤z £-TSãûP¨ ‡¦ž{£A`5 yÑRÆ¥Qîà¡o*Ãþ@ë-¨Fn¯Ie…6N€z…Vl ªdkih¿•9ÈiãÒZ”Ò£`ëí€Js7}µC‰[gJ” hsðe½x7©œnÙ«Uº`!=Mºƒ\8êÉ¢ivÙkƒšswüt”>íDZ" P„Ê\æ±94ðz‚ø,̤J#®ÒèM£{8¼â~8™RÈ¢NÒ_<ºÒÓ»õuÏ{Þ´*›–;%÷ÿ/÷ßJ­væÞp .O¢¸FQ£´_øbÇP!'¿9’_KœP0\‚Äjí­ þä)‹×¹puÖ¿·[]:x¯Q»Š ­k£Tê6¶‚yc± "Éà€ ÇF›,(MeM¤ ÖF]ß\,Víü»`ü‘sÃòÖ®o¯?ýs·úx» x+PhSëÕÛEïÃíçÕmïµNS°®<šLͺUà{rð©l”Ó9®¬-ep™s¶+²6='›­ƒoÂÀžyËDnD™Öò¾,±š¨ÉWñ®•ü}'0íEÅÃN½ ]ÁµÂµºÔûç U-ÃjC¨Ö8>ðJòr…—:“Vr= ‡2EDŸYÔ!2¼-dÎÂh%ÆóJ¸;{ÜϪu -Jhf·G«þ¿t¸Õõ2H “y¾[ȪuW¶{;å—}ôGlt|‰¦4cØv˜ئÀ!íû;ú ,Ùó…OˆÝüX²_BºÙ|‡©—[ƒ íi®ÀÔô‰Ra´Ó±N‡D°2h#a§Ûˆœ¨j¼x7¢#ßqšZxó^u)0h¬0\¥)o¾S TlËÂWúñ¹ébDÃH¬áÆÞ™Q÷XgY™+$ÉcÓZº½DÉãT±â[³þC¡¿›šVÈ 1µ_QõöÒÇ ¾Øñàr´¾j^ƒcû¹6Fg´àžñÚÚö×[91GÞVݺò¨Dç¸f÷²Ö{þ4}ÍõåÅ`ìçÖŽME‘x­† G-½¬^Öóí84ÕgÏ(x9'4=ÉÏy¨Aûè†Lð ?w¬§$ÓÓDÖǘÎÓ«_Ìqw²W§æÕ=u®úäÕ=Ä?ë%ùÕyœ_…gÎcpÃZñóam à茭`rqüÅÖÁYò1‹ªÞXÈX ñ±Zb²5Û¼çϧŠ'ëš#Ëœ„ƒ°)„aêT¹ÓfÇ¢„ê5gƒxíB™Î7óʼn[ƒIo}€Ž¹ÿÕ“·À¹¸E¸#tcXÇÔ­ZцD]Œêñc‹Ç’ˆdhi¡ý°5×O+Á¡æ_êNó´ê' ;/ýÚ}êCTOÿ?520ýz¾™U2ŒfÑìrD“©ZZÎo^ÍéÎh~n£7:.ù‰ÐÃÄQ{ƒ žhg#êMûPO Ðo=Pާãh:™…9k8á`oWgŸý _žÛKendstream +Jhf·G«þ¿t¸Õõ2H “y¾[ȪuW¶{;å—}ôGlt|‰¦4cØv˜ئÀ!íû;ú ,Ùó…OˆÝüX²_BºÙ|‡©—[ƒ íi®ÀÔô‰Ra´Ó±N‡D°2h#a§Ûˆœ¨j¼x7¢#ßqšZxó^u)0h¬0\¥)o¾S TlËÂWúñ¹ébDÃH¬áÆÞ™Q÷XgY™+$ÉcÓZº½DÉãT±â[³þC¡¿›šVÈ 1µ_QõöÒÇ ¾Øñàr´¾j^ƒcû¹6Fg´àžñÚÚö×[91GÞVݺò¨Dç¸f÷²Ö{þ4}ÍõåÅ`ìçÖŽME‘x­† G-½¬^Öóí84ÕgÏ(x9'4=ÉÏy¨Aûè†Lð ?w¬§$ÓÓDÖǘÎÓ«_Ìqw²W§æÕ=u®úäÕ=Ä?ë%ùÕyœ_…gÎcpÃZñóam à茭`rqüÅÖÁYò1‹ªÞXÈX ñ±Zb²5Û¼çϧŠ'ëš#Ëœ„ƒ°)„aêT¹ÓfÇ¢„ê5gƒxíB™Î7óʼn[ƒIo}€Ž¹ÿÕ“·À¹¸E¸#tcXÇÔ­ZцD]Œêñc‹Ç’ˆdhi¡ý°5×O+Á¡æ_êNó´ê' ;/ýÚ}êCTOÿ?520ýz¾™U2ŒfÑìrD“©ZZÎo^ÍéÎh~n£7:.ù‰ÐÃÄQ{ƒ žhg#êMûPO Ðo=Pާãh:™…9k8â`oWgŸý _€ÛHendstream endobj -1441 0 obj<>/XObject<<>>>>/Annots 568 0 R>>endobj -1442 0 obj<>stream +1460 0 obj<>/XObject<<>>>>/Annots 568 0 R>>endobj +1461 0 obj<>stream xÅXïoÛ6ýž¿â``˜ -Äše»¶ Ò8i´ëÖxh‡ih‰¶ÙH¢+JuóßïIÉŽãnÉ~t-8Å»{w÷Ž"êáDã> F”äG½°‡oÚ_ï^ñ74ˆFárŠzÃpìÿÊèÆ>‹úQ8¡ádŒu}ü”’G/gG?\)Šh¶àG“1ÍR»qfI`ªRËðÙì#ÖÁ»®GÝhö±0XoÒ×ÂT7²rKš­‚Sš­$©¢’KYR¥rþƒŒLt‘2ªH$E'ãmV²  -kïÛ²ü'aÌF—éÞÎ$ŠtqQ^¼ã©¨ʼ®¤¡Dì܆?•-ñ±uÇá$¢&¼¸?ïٲϻ}Æñ‹$©.3±4{Nž’CŽô‚7NV¢I%K„^—¥®‹T¦4¿#ó©pfާ·²2ôÛïÈ˺”F€'ìÅ-;™:Y‘0ô ÅAmd?;¦÷qÈnM%*¥ þæCšÖK’_Öªl2”Ó8H•óL¦ñ³†F¦—º˜!×иö…ðYdµ¤ ÀìŽêžû ßOÊ/ ¾Š“ ¶¸X|S“·*¹ýÖ6Ñfç¢8_‰bùí°…Ñ7µ©¾±Õ•Îå´TŸÆiÖ2Q …fºHy e²BWQ¥Á# -퀹XÛ¿üx޲¯VÔ¼gÎn¯J™Tº¼³Õ¾ÓQLY÷öÍ?ÍåÎ 1¶¾ÐeN§æ/4ðRÎ-ïÚ~ë¤s*¤wra}åîèî˜å•Û;Îz~—"—™·gòyê\ÄÁóøB,°diÝ \þ*Ø#Û×[¸á«¯6Ôà$qÇ™¤Tk°iµzÐÃŒÎö1­K½–e»— ¹ŸYé{C.4÷ê1…ço¦ø}ñáâ˜tÉVv _žÍh¡2ÚùáI4A¼ÈBQg™ûÞâ¥Ì3ê3Š…¬¼1.öh·=ÄÎΞáÿqàÈ„| ­pµìãôÀúW€á¹Õa%,Z~ -“@‘‘˜a>ˆ¾Zq6°®i›Ãà1ðO/Ï=kÿ^±æó+Ðo¿U1^zÜkôÇ+¿@iC Üá¶jj[t{A*ÍëY³–šÈ «VvÓ¸Ë/ÇnykÓ¬t¦¤Ë[Üå §þrBªeÅS¿Í«nËR1þ!†Ï±á¶ˆã6ʃ•³(w¯£Ã5Á!?½&þ’²Fú*e=ïCÏ‚²8Cï·¢çA5´â«Ñd‡EÈAÞ|œ -)Õ¾H=µø7ò·•t– ›ìø&n9L¥,ú0àJºw×Ó¯¨±Ç¹´.U.Ê»WКëëéL¸:þÄpã¢ß…–¼Mó¥í·ãŸK¶æ0ÐíOÂè„ZÑ̃$u©0=\©¹y†P¤¤ –‡‡î„p#ò¹à! m…1>ÑOÓs~_PªsI¥± ÿ^Ûºx¥{õöýì­mðTVBeÆÐ‰ž"D <Óör¡kpêöäÑf ?84}¹0Þ™û(ƒòŽ”ëa[¬’BÝT.DUŽìÍ)Ljc[ -tÂUˈˎ;Ð4‚z;àŸ’áû{ؼgÇ–FŸâÅ:C]ý‡ð‡tù@ÁÈ/"_g#טevvs5»xõ–V(¥E6—8ð¶e–ò ÎU2ƪ•ð'éçþ@xùĈРb6ÿî5~j‡LÓcm„=„îˆ)ÔŠ*Peè …³¥{¡9ĤÜßÇ©¯÷|,Ü€%Т)uæ2¹½ë8w vârwl‹ØíÔowJŒýÞ7ág§Úw‡S€[Øœm°‹ck;$ XÛ-®Ê·©Å±V„èÕ²m 6ºF§Vé »Í±®_¬¥æ$¥É ÛyüA—ËÇÑ*)|`þ éJo$Æç±kIæ ¦£A<8ŽºrXŠ=Ãì°›8~*?¦Mê\i2¹ÎDuëj£0Ÿ-[n@¨Â°·uÐYvÉÚs¬Uä Ç`ÜˆÒ s€4¦±'«!HKÞ½á 8á2´™zóöå¯>KíØ:¡w$ Ü[u‘».„£ð$¤ ×#ôzz}I`;>Ô±à÷ˆÐÕT8¶éóåT0ƒ [Šåt«vÔnØ’*.™²Úङ\kmÔ—†eõü#N îòýÖ‰÷·?tþ¦Å)qÝ,kiª>ònå ªø¨m¡xt{N•l¯¤Ni2žL'½h8êΧgý“Ñx|6^\žEƒçƒËóñÞ«÷Þ§Ô†ãád0Úu?\N|ƒE#\åM¸³ó&oÎÞ¼<ðÒ†Uþ)ÜM[è6/tÇ=šOÏ Ç£ RŠ×ûÖŸ‹ÙÑÏGå9>/XObject<<>>>>>>endobj -1444 0 obj<>stream +Īe»¶ Ò8i´ëÖxh‡ih‰¶ÕH¢'RuóßïIÉŽãnÉ~t-8Å»{w÷î‘¿EÔÃÿˆÆ}Œ()Žzaß´¿Þ¿æohÂ!õ†áØÿ•Ó}õ£pBÃÉëúø©$-Ž^ÍŽž_)Šh¶àG“1ÍR»qfI M••ËðÙìÖÁ»®GÝhö±0XoÒ7B›iÜ’f«à”f+IYiäRVd²‚ÿ -U¦štV&’¢“q6+Y’ÁÚû6‚¼øQh½QUº·3‰2Ý_\šÃ‹w<¡Ìk#5m$bÏá6ü1>¶ÄÇÖ‡“ˆšðâþh¼gË>ïögÄ/’Ä\æb©÷œ<%‡©oœ¬D%#+„^W•ªËT¦4¿#ý{-àÌOo¥ÑôëoÈ˺’Z–ÀöÇbC‹ÆÆNDºNV$4ýLqPkYÅÏŽéC²[m„ÉTÉß|ŒƒRÑÚcIòË:«Ú‡ å4ÒL‹y.ÓøÙ?C#WKUÎëh\ûBø,òZR `~Gu Ï}†ï§å—_Å¿I[\,¾©ÉÛ,¹ýÖ6Ñfç¢<_‰rùí°…Ñ·µ6ߨêJrZeŸÆ©×2ɘé"å5”Kƒ®"£À#Ú +±¶ ~þáeoVÔ¼gÎnŸU21ªº³Õ¾ÓQLY÷ö-?ÍåÎ 1¶¾PUA§æ/4ðGÊœ[Þ!´ýÖIçTHïåÂúÊÝÑÝ1Ë+;¶wœõü®D!92oOóÔ¹ˆƒñ3„XbÉÒºA…‚ý¬dl_lᆯ¾ÚPƒ“pħ“*[ƒMÍêA3:ÛÇ´®ÔZVv//r>³Ò÷š\hîÕc +ÏßNñûâãÅ1©Š­ì@¾:›Ñ"Ëehç‡'Ññ" eçî{kˆW2G̨@Ì(–Òxc \ìÑ nzˆ=ÃÿâÀ‘>ùZájÙÇéõ¯2&Ãs«ÃJX´ü:&$$"'1×*Ç|½Yq6°®i›Ãà1ðO/Ï=kÿ^±ó+Ðo¿U1^zÜkôÇ+¿@iC Üá¶jj[t{A*ÍëY³–šÈ «VvÓ¸Ë/ÇnykS¯Tƒ¦¤Ë[Üå §þrBª¥á©ßæŽU·ƒe©ÿÃg„Xs[ÄqåÁÊÙ ”»Î×ÑášàŸ^IY #}•²^ô¡gAYœ¡[Ñó ZñÕh²Ã"ä o>N…TÙ¾H=µø7ò·•t– ›ìø&n9,KYôaÀUtﯧ_Qcsi]e…¨î^Ck®¯§0áêøË~Zò6Í—¶#ÜŽ.ÙšÃ@·? £jE3’B|RU†éáJUËíÌÓ„"%U²<„8t'„QÌYÈh+Œñ‰~œžóû‚RULÊ8¨üˆeø÷êØîÐÅ+Ý«wfïlƒ§Òˆ,×0†NÜðá!›-k8à,B_ÃŽ“¦Î̹*M¥òœ%÷!jXà™Ú°— UƒS·'60 ùÁ¡eÐ'œ Íáy±2¨î(s=l‹ÕARª²›Ê…¨sãÈ^ŸrŒ8¶µÐB'\µŒø¸ì¸M#¨·þ)¾¿‡ÁÛyöwÜhiô)^¨3ÔÕH—Œü"Šu.1rµ®1Qfg7W³‹×ïh…R*Qds‰o[f)Ÿà\%óa̬„?I¿ðÒÀË'F„^³ùwoðS;dš h#ì!tGL¡V²U†ÎÈp¶t/4‡ø ‘”ûû8õõå‚°¢Z4¥Î\&·wçÄ®S\®óŽ›~{~)ø½oÂÏÎlßaNlas´Á.Ž­í0`m·¸*ߦÇÚL#D¯–m±Ñ0:u–¾´Û«úåZ*NRš¼´ÇTµìp­’Â柮ÔFb|»–dj:ăãH©ŒsÀÂPîf‡ÝÄqTçÀx L;šÔ¹Òdr‹êÖ1Ô&Ã|¶l¹¡B +ÃÞÖAgÙ%kϱV'w‚qo JŠ 1…=Y AZòî Å —¡ÍÔÛw¯~ñYjÇÖ E¸#YàÞª;ˆÜuÉ …'!]¸¡7ÓëKºÛñ¡Ž—¸G„©¦Â±MŸ/§‚\ØR,§ƒXý°£vÖTqÉ”×÷ ÍäZ+}iXVÍ?á˜àÈÑ(ßoxûCçoZž×Ͳ–Úô¡w+YÈÊOÊVЧA·çTÉöJê”&ãÉtÒ‹†£Þè|zÖ?ÇgÃáÅåY4x1¸<ï½zïà}Jýh8N£¡]÷ürâ;,á*o2À7ysööÕ†•âÀ0¬ðOén‚ØB·y¡;î!Ð4xz6àH8MR¼Þò®³£ŸŽþ%š9—endstream +endobj +1462 0 obj<>/XObject<<>>>>>>endobj +1463 0 obj<>stream x¥VÛnÛF}×WÌCÀâ]$%ÔºbÉ ESKr%­Mré½Àf‹þ{gIJ–h71P 6dîìì™3gÎòqà‚ƒ"üÒbàXxß ˆ#ó…m³à†®¿µú¯ŸÏ7{íÀ6[<"ŒñK˜Þq`“+Á "ê‚ëêj9×sÜ›û#×Ád›l˜·DÊ'.²)ŒÇÞÄñ߯–«Éj=›-ýyàçc7p‚Õª·µzÊ>©î¨ÂÌ~¢‰ë½ œïx¹a‚Ó[âÉ=MÕ"Çó§ I‘Yšr]ª^œfˆm§©T^oå¥|»mÓ{n±Q/Ф©Zçd‡§üþõ~þè…¤?Í% wâ8ao7’± åbOÊÝ¡T{€ë¶y¡a{³Ç.ó<çO¬Ü“@Jø´¼Z-•¨qI€–f)áj @@ -2715,30 +2735,31 @@ x ÃS³r Hâå.%BQq\_V”W9½ÈÒË*'¬¼çÍw.v½º~пŒIÜ[ßÓÜT<ƒEsB?ÇÿÐØÏ|&£Svz(ÎâNiíŽS.ZRñ2:§¢®Ô?óêÚ£÷ñ—‡¿PL½¼­ŒÛ¼^ºÑEBÅPZý9I±}?¤—ïXy·§y>;a¥¹ïð.qïXv€á¾Bñ¾Y{Ã<¿_Ðqˆú {^Ð%è \ÔXŒùßVX¢;nwòíUöÆàØ®^k©sùŸQª—^ÆQ¼Œ7p±œy“0ŠfA€vèúc½hìÅ^OÀºÙö›)ó­È‚ëúîó'ƒ° ÀçÆ–G¾c5ãoB\ æšåNywj˜M‚Cb"šù¯rݽ¡Ë6|ÜyÊ -ò@Áô»Ê’?‹Z>æ–lD÷bƒ[ÁÍ‹ ,yªQઃptØ0Šó¢6<· |}±¢0FÃÀ%/6;V›ÁçÁ¿d\ò2endstream -endobj -1445 0 obj<>/XObject<>>>>>endobj -1446 0 obj<>stream -xXÛnÛH }ÏWpŸìµ|¿$Àb‘6l€¶hûP‹±.öÔ’F%õßïáHªåXr‚:1äá!yxHŽýãbHü i>¢ñŒüäâ çÞ¨xÊo†Þ‚&é7áû÷Ã)Ý*ú|ñvyÑ¿»¢á„–ÏxÐÀ ´ô»coî=z§ÒHnr-ÓÍåò;,&4½ÑÝåVÊâ|#SŠ…¿3dTÒF©€åçI˜Za¥JßÐ:·´ uH°p‡ÌViK2Ô5£¨7š!N Þ ²Û"Çê þÉ*~P„1-ÃèR&Œ Ö´†ë0 ŽƒìÒ£ÐR¬c¸Li¯rMÅæ²èšdíùÈñ™ §7 «*×I×±7ú“¾*Ĥ{æ[ÉÄu?V¾ËºoU? Öÿ%{ó#öŒº–‘‘ õsÛãÁˆþ`ä‹”Ö!‰tOÆr]8/Šå.|CÂP¬ðÿ¥û¡I;–|0z’vë(= R¹ ÊÀñ@sð>C<(Eñ±L©:‹CBt9ÿ& }í)Éc+3ð}8b!c-aŠ"tŽì¼qæ"Æ©4 ]ýj¾QòÜ„È(‚nRhåæ2Κd$ëLĤ2~c¨äj#ÙëÜ¥_Õœ"Yƒeöu«µˆ¿‘ }6öŠjœ*àÁµ«)m•±Ôôê¥"Ai‚0àÆ°Š;,Ž˜í:×4)¸>g¶ž”þÅKÛ9°¤›b Þ±g#’µxÑk ¬X ÿüõ[h7yÓëm<ÌÚé@@(Vë«GA3«™‹YF_[!Sn¦Ç­ØhäCLœ¹7;¡?HèÛÙW¬cøh÷ ¨´#™g—U: XÍììHN…œ1×ò8 Dì -¼ú±*Ų»œu(—ŸJã}9ç\Ìp ,éZv•óÈ[Ä€ä ÔÂqÖ,F´Ýc¢ùÓ­Ç<%"ùŒ*õÜ«%½(’fÚ\OsŒ˜y_.38q<®º÷G œ Tq‚ì>ƒ•…„FeÒ[Ã‘ÔÆ®.[ÇhMç±Ú()Q½¼^äb±«îÕê²âí´!Bá›!^ƒ°“þ®â5¬¬?LÚ“P^ÀËߊtÝ¥ój„$G M¯A`ó¸jªa”`›Z¯º£étu‰y*:¡²U{…• ›Qq?.±½œMÕs™ÀQnOó~8U–Ùðb‡Ê =ò(ãF ïpšÜq "oÞò%)º™”ì/L5[±Q&ì¶›OK¯¼ŽíŠx+5vžÒûÒˆÁiÕ 7×ÔùçºóRë¥d|-3wÏÀô¨uoÝS)˜·ÂúÛbñbb°šß%ïvžgô´ÅªFGã:¹ÁgíIfZ¹Ùé¢=™ ®?qZ¨KiØŽ,|—§Ðø/ÒW&õÀµ¼yxwO¥¨ˆ7h»lô®Så%Å Ýó´ý[7p-Á“¢ -Åžúøåý{·°DŸ«YžîRõ„ª·ÇgÔ5wlОU’cnáÒ/q{†Šì€ÿjÇÊå¯]Sc¦z{˜e€uá8¹¿°<—ýæw€7Zå°a|Û7dßL@¥–‡ûÛv* -çm° ´µ°9‡‹4„ÜÞzU±ÂÔ×ûÌ¢À5ÓóWSôt >²!òƒÒôéÌÅ7‹y§´9h@w6üYDu>t7ø©Uƒ˜ôW.žZ¾j¢q£8ŽË£íŠ(ú>| ä[ÕîÿÖ™ÃUã΂qÛ‚êT/¼=ƒRå5}åż*,üŒqšÖqD5¬þÝ¢ü6?œÍ½ÁbL³ùÌ[̦ü…êáæÃÛú¤Õw¬8üðQû=‚ùíU&½ù_õƒ–Ÿ=&ó‰7Ÿ-ð3 ŽŒ®ØòïåÅç‹ÿP?^endstream -endobj -1447 0 obj<>/XObject<<>>>>>>endobj -1448 0 obj<>stream +ò@Áô»Ê’?‹Z>æ–lD÷bƒ[ÁÍ‹ ,yªQઃptØ0Šó¢6<· |}±¢0FÃÀ%olv¬6ƒÏƒýéò¼endstream +endobj +1464 0 obj<>/XObject<>>>>>endobj +1465 0 obj<>stream +xX]oÚJ}ϯ˜û‘Šù ÐHWWis£‹ÔV­BuJuµø¶Ø^ww„Ϭíb‚M¢’‡ ³sfæÌ™™…ŸCàoH³§ä'?i8óFÅS~3ôæ4^yþ°¿NéVÑ—‹wË‹þÝ[NháðtŽ7 ¼Á`@K¿;öfÞØ£÷*ä&×2Ý\.ÀbBÃaaÑÍ`Ñ]n¥¡,Î72¥Xø;CF%!m” +(P~ž„©Vªô ­sKÛP‡ wÈl•¶$ÓH]3ú€z£)âêM » )Rq¬៬âEWe]Ê„1ÁšÖp¦Áq]zZŠu —)íU®©8Â\]“¬=9>³sáôïô¶ÊuRÄuìþ¤o +1é^A€ù^2qÝ•ï²î[ÕÏ‚õÉÞüŒ=£®eBd$CýÜö8GFA0¢?ù"¥uH"Ý“±\΋b¹ ß0+<ÁiÁ~hÒŽ% €¥Ý:Jh†TD.ƒ2p<мÇJQ|,ScEê‡Îâ-"çßd¡/£=%yle¾GŒ"d¬%LQ„Î1ƒ7Î\Ä8•†¡«_Í7Jž›EÐM +­ü"ÂüQÆY“Œd‰˜TÆo •\mäC˜"s»ô«šS$ a°Ì¾mbµñw2¡ÏÆ^QS"¸v5¥­2–š^½â£T$(MFÜVq‡Å³]§âz€&×'àÌÖ£Ò¿xi;–tS Ô;ölD²/z „k⟿~ -ã&oz£Çƒi;Åj}õèhf5s1‹Ãèk+dÊ-Âô˜¢¢Õ¼Ñ`ˆ‰3ó&c'ô{ };ûŠu í•v$óì²J‡«™É©3æZ”ˆ]W?V¥Xv—Ó EàòSi¼/看„%CË®r¹q‹œZ8ÁšÅˆ¶{LX4 Õ㘧D$ŸpÀ¨RϽZÒó"i¦Íõ4LjI‘'ðå2ƒÇ㪻è<`à Šd÷¬,$|0*“Þ +ޤ6vuÙ:Fk:ÕFH‰ê•àõ"÷‹]uß®.+ÞN;€"¾â5;éïÚ!^ƒÀŠÁúÃ$0¡= åÕ<°ü­H7ÐÍQ:¯FHrÄÐñ8«¦JF ¶) õª;ººZ]âAžÊ''T¶j¯P 4b3j#î§%¶—³©z."ÊíiÞ§*Àr8~CìðQ´GåqÜÂHäN“;ŽAÄàíÀ[¾$R7“Ò€ý•©f+6ʄݶcó‰@cé5‚×±]o¥ÆÎSz_18­ºáæš:ÿ\w^j½”Œ¯eæî˜µî­{*óNX[,^,B 6Bóû±äÝÎóŒ·XÕèh\'7ø¬=ÉL+7;]´'“£ÁõgN u) Û‘…ïãòÿEúʤ7÷ï *EE¼AÛ=`£ïp*/)nèž§íߺk žåèT(öÔ§¯>¸…%âø\Íòt—ªGT­¸=>£®¸cƒö¬’s —~‰Ø3Td×üW;V.íš3ÕÛÃ,¬k ÇÉâLÀò\ö›ßÞh•gÀ†ñ9lTÜ}3•Zî·íTÎÛ`hjas5i ¹½õªb…©¯÷™Ek¦ç¯¦èé|.dCä¥é㙋oóNisЀî løTDu>t7ø©Uƒ˜ôW.žZ¾j¢q£8ŽË£íŠ(ú>| ä[ÕîÿÖ™ÃUã΂qÛ‚êT/¼=ƒRåuõ2Ê‹yUXøã4­ãˆjXý»yùm~8yƒù˜¦³©7Ÿ^ñªû›ïnè³V?°âðÃGí÷æ·W™ôf|ÕZ~ö˜Ì&Þl:ÇÏ$82rßRþ^^|¹øaD?\endstream +endobj +1466 0 obj<>/XObject<<>>>>>>endobj +1467 0 obj<>stream x¥VÛnÛ8}÷WÌ›À’oŠooI·YHzA\ì.  %ÊbC‘ /qü÷;Cɵ-»E""‰äÌ™3ç óÒÁF0Ãd iÙÆC˜&‹xÉ|†Ïcü5ò°,øzaa2ÅÉ¥…q29?q»ê î`•cöé|« 0óp«´÷þ•+ç™”»>ì´‡”)¨¼©–ZÁSoùt,wÜ€+8(VrÐ9p–´Å—ªÛBà›-´—ØŠ§"ß…Ýõp|•1ǯVß;CˆF“xŒ(zÛ‚«zE¨M8àØZòþk0iõ€J»‚ö­9þÉöñcDÏ*|À$ r£Ëð– Ž€¶BJÀíäkÞ€ÊbZÜ-`”Ô$EbNâYœÄðÕRÞJ2¡sP1k·Úd´®R³«Ï~|®Ã8ÆÄyïXg´ÚÈd¦Ú¶á§·Ó úPè-åæÐÚŒõ–˦žñ´Æú! ܆&HñŒ»vÜ|1¬åº"Ãæ dÉ,%S%µ+kÚÚ†,ïQuåûõŸ˜­ûñëý}5³ÅàBq/^;nID­p×iFŒq,2zn$”jåþF'­Ô* =E©µØ!>Îfû@|Pºãz/üe‘1¬ aAØB ñœyé~­¶ëþæÎQJ«¨©þTÖÁ$”àØØ{‘9L•¶V “H{EÛj´4Ú ¯¬B)Ù3å´íÝE²­cÊuÛ,Þ‘ÞßXYI~d[J¹—2Œ‰|—@±î®›9ÔƒwŸ>¾»Y=õîmïw¡Ûô&¼<]××èüz¡ÍøŒˆ@à{y^LKýiäG^Ûña÷øå2úý¢BŽ•—‡3eãɸ$ãSgEŸÓ&É~~ÌcøŒžÊÖðïÃ=ZÑo„ª›a<­ÇÍ<Åpë…̰ç@à -+u汿†¿xa¸)Öo¥SÑ8ØõOJ^¶#¬p™¢C•­¿á>¯Îšƒbà°jÐ슭>ÅÒà Á.&O6;¨7àõ.šžÅñ–òAëØ©óI;Ç4i‘ÚÓC„¾©'6­ÓýÓ b7h˜ W&6…ÃNm™ÉЉµZiã‚êû4 Ï*Å0<¢öÕTwj9ðÖ Ûeåšñ±Ì…ä$ÛS°=~§K¼Y'„í™FkÔ)ºhÃd [K¨Zô§ÝåïV uýf,Ro ª;BÚ%üCÐG„²¿ª/–ƒ%Îê«ø0¢hœEߊ, Õ`ÞÈd4Å{渞6æ~¼y¸½ÏFGYÁ_Ç$@Ñþ@4.þì‚NfI<›ÎÑ­tÏ)úûUçKçzEüÑendstream ++u汿†¿xa¸)Öo¥SÑ8ØõOJ^¶#¬p™¢C•­¿á>¯Îšƒbà°jÐ슭>ÅÒà Á.&O6;¨7àõ.šžÅñ–òAëØ©óI;Ç4i‘ÚÓC„¾©'6­ÓýÓ b7h˜ W&6…ÃNm™ÉЉµZiã‚êû4 Ï*Å0<¢öÕTwj9ðÖ Ûeåšñ±Ì…ä$ÛS°=~§K¼Y'„í™FkÔ)ºhÃd [K¨Zô§ÝåïV uýf,Ro ª;BÚ%üCÐG„²¿ª/–ƒ%Îê«ø0¢hœEߊ, Õ`ÞÈd4Å{渞6æ~¼y¸½ÏFGYÁ_Ç$@Ñþ@4.þì‚NfI<›ÎÑ­x5gýýªó¥ó?z€ü×endstream endobj -1449 0 obj<>/XObject<<>>>>>>endobj -1450 0 obj<>stream -x+ä2T0BCs#c3…ä\.§.}7K#…4 Œ™¹…BHŠ‚žP$YÃÓSO!¤² U!?M!3¯¸$1''±$3?O3$ ¨ÏBÁТO¢¯zs=s3  -!)Ɔ #\C¸¹øÌ&âendstream +1468 0 obj<>/XObject<<>>>>>>endobj +1469 0 obj<>stream +x+ä2T0BCs#c3…ä\.§.}7K#…4 Œ™¹…BHŠ‚žP$YÃÓSO!¤² U!?M!3¯¸$1''±$3?O3$ ¨ÏBÁТO¢¯zs=s3  -!)F #\C¸¹ù&èendstream endobj -1451 0 obj<>/XObject<<>>>>/Annots 609 0 R>>endobj -1452 0 obj<>stream +1470 0 obj<>/XObject<<>>>>/Annots 609 0 R>>endobj +1471 0 obj<>stream xZ]oÛF}÷¯ôa‘>˜¿D©Àb‘8ÉÖEâxc/òR`AK´­$:×ÿ~ϹCÎYIQ,Ú¦=>sgî÷Ü¡ûõ$uü•º*sùÔ-6'“d‚Ÿ„?>ýód–d®œO“‰Û¸œ˜œx¯föŠš™>¹-kد䙊ÁbÀ¨” ßsa­Âù°Y-çáÙÆ‚©/ÇÚÈz}íûíp;ú·æn衵îräpä±)Âmm;R0Xœ¡¬?²ðŸf|¦()‚˜2af s[Edý¶Öáy¶ißžm[Æ•:†¤¬cŒœµˆÈ >ýFÎ:Æ(gßz#'ЇÛá<Ž¡wbHÿéwÜ5ÅeçDV0ê9·ÖÛ—“ƒ?,6`öGH·r¤b°œTT1ÎÖ ²‚Áb€O•ÌÂf¢¬b°˜˜² ²™cßi‡:²ÿ6cXUã¿¿J ´Aâ”~!ÅRSÞ¾Q.BêÉçAàL< í½BÆþ›;VAEŽ'‰Gá`)àðÄ1àß™ÈEÍDÌ †7¨"¾ôT‘cóÃ=Œ¯8¨;ÜÎø§kÜíÉëë“—ïÐe'îú¿—šV3w½´_Gá'‹çÛ¾k—ûE¿j·?_ÿk‘©_{Š»:ÃêWõæ¦v‹zëÚ‡¦«ûÆ­¶î[Ý­ÚýÎ]}xí¶MÿØv_v‰»¾_íÜCÝõnÑnûzµÝaímÛmjžàð7~~»ºÛw«íÛÙÆ ÇݨÂÄZÛÇÁÍöÛªk·›fÛï¯Ê$¨ÇüŪëúfݸöÖáH.õ+QnãÊq¿"qÿÞ5«·Kwu_ÃA»fUú'·n¾5k÷û *ƒ%ßšnç¶mOKk·l70å÷ŸŸ©W&λ¦ÞaÑÅuá üyµÍ¾¸Ënµ©»'÷Æ$M³®]¯›Ž[à÷‚ÁD|ïN°ºéš¯ûÕnß~jê%œstV–¸×õâË]×î·Ë#6OxHðlß º}Wñq™À+g]ƒ!"êÅýjÛ¸ën¿ëݫŇõ°û­]m¹äl½¢“]ß:žâ÷?6 ¿H°Ýv_¯‡íÿÛœpd &q?}ÜžâŒÓwë§Ÿþ¿Mà–Qo*ëu?Výô0$ìY»Ù@áË®Erm¼Þv]ÛYvøoŠ4xÚõÍÆ]¶ëÕbÕøÕ½]­›ãõUâ>ß×½k¡Qçî›õƒÕÖ¹»kú9b–l­×k÷¸êïÝû7¯.½~øŸ3BF9Jõæjtæ¦ÙÜ7ìŠá`1a[¦=•²æÝ5KÜ|‹/õÂÄ}Óܬj»UOŘ•ÿ¢ü§fùkÝ?k˜¬X™›Xïõ>Z€È¡<áå§vß¹—M¿xù¥»)$ÇíÑb¶:6ïÝ6Þ÷¼!}ççr ¦0+Žv·[ñÒmBG<È ®Ü ¦‚¿OûýÑp?WÒ•$xa7 W:­ð¢í}G=8„„ðà" -ãû±´69Þ>…‡bªø=ñK‡gJ[wDý½Süd(ðç¿æeí=ùÒCNÞ ÂÍý=N 3È߇ÉÃrôå; Ø6À˜©ø¤d³Øó­ÀäZMgí0 å5}{}ò¯“ÿG@jendstream +ãû±´69Þ>…‡bªø=ñK‡gJ[wDý½Süd(ðç¿æeí=ùÒCNÞ ÂÍý=N 3È߇ÉÃrôå; Ø6À˜©ø¤d³Øó­ÀäZMgí0 esjúöúä_'ÿG>@pendstream endobj -1453 0 obj<>/XObject<<>>>>>>endobj -1454 0 obj<>stream +1472 0 obj<>/XObject<<>>>>>>endobj +1473 0 obj<>stream x•XMoÛF½ûW t‰ ز-»¶[ ‡¦©’¢°Š €/+r%mLî2Ü¥ýû¾™]~håŠ$(’óñæÍ›Y~?¹¦+ü¹¦ûÝÜQQŸ|\ž\>þL‹+Z®qçîþ–%]ͯ®ðKqúûV5A·t;§¿=þW¶¤ç­j5y]t­ {ªô›®èåtíڳ巓+ºXÜÂÆ)Ó­'ëKŠJW+c_Îø©ËÇ[º¾Ž>/ó¿ñ=þÃü]UžÂVSQm©@>¨6t í¶¸˜F0#?žÚÎZc7sZn5ÂäPÃΑk‚qÖã-‰^‚ž¥x¯o¢NnÖqšñöœ¾nM±%·æ8|44‰¨Õ…6oÚ“Z¯ub´;µŸFÇ-…Öà©àHu|L¡‚Μ›àuµžÓSPxša+ \„jŸd¶a÷´i5Ð?Œ½œ‰¿ÞﳪWªQ,õ8Á6½Z·ÃãÀÉø,Ze7úœV€ ´FD\¸ ÛIF—©>ªiZ§":(Œ[)ØÐîáÁn¸Æš`l)Ì)œ ­«*\®ö™û×sy–¯“«BYr00'&¡DÀ‹zS¦R« åF w[—™«¤ ®:¢ªÊít9O^ws!éÓX,µ/Z³Ò4Ö~¤÷Ú´> $ä<¼©›J·’í{OY7˜ö)æª÷‰×àoλÂÕ5>)7÷ÛÆÁ®"«7Ž‘„¦62b0ÑOHMⶪŽé7ÊûkKé€ „ÞeeŠB7\K­þ²Á+˜Å©±ÁËÞ¼Õ+c“ÿ/. øAü6¡37üÓP³-³ŽL©•”)ó»0G ܱ¡C©Pêÿ'i%*wNæ ­·#ÜÍb—1úx‚º'þ9ÉqÚ_Ø=;¿z”$?tU‚ò•§×sâk\^ôúÀ/Õ ¼±){þ!©“¤fÖ¯[WXZDK‹ŸFÿO")}ubQ?Ž¢â4!!£+ý£‰jãœÚ©Úu,’‡ˆíËiç9ű@”û$f¡Õˆ:â 6Í Üâ]ïaج÷òõ¥I|JÑAlÙCmÍf‹¶®s0’Cæñ8£èÇ@ /œYÖG]*Ê®*0 qh$îtŒ0?¡ü¥Óê®  š¹¿wÚÏ’žÐLâÒjß8[r{ÓFÔeôÓÁ”3æ%râdYbFIçGHhï·QìÉdŽe'"w1õ‘gž3ëÜóP}Ñeé;Vý—Ó¯Æ~ú$*g1K-Ž®i*ž6×N&¿ç0Oë$…¾ž£cwýdHØ8èEóÞ»1åæ$^̰8Ó`¡Q-†Úš«¦yjˆ¡¾Î=71û¦ªÙ3âíÀdDòò‡AŒLºàåL8;ŒQ ¤Q3{‚F‚«k4"Nb;mò؇„ò{WÄa7†*ag-uƒÉÀkM\.DŒ’°×ZAÕ…@^†9k)\@Ô_‰ÛTÖŸ!è‰2`Z¬ {Ú) ’—ùÅ;‚ ÄÊòœY¦È°–²8§g‡‘ÂÃI·È«šlg„Šˆ¸¾,yÈFÍÆà‰dnû:úq @‚p9/n’=ßâ"Pˆî$ê¬ù‘wž/¶ºÎ;»@´6¯ÇŠQæ{cë’ûRšvÅaÎzºöó™Õ663ywÒ42jwhø÷RyØÃ{[ËL6ßTeÊ Ó¡ü¼­aÐö£jÂ,ŽØ-¸†_E•ñB»Ù ¥ý}?›ècL,s ‚ب!€'Ÿ$Œ³ˆ´*Ù³‹ÎÅK6”D÷˜=~}gÒ£™к«X-2ÿ[¦dÜ“/Õ^¼9q!8 /ÉMæ ÿH¿ÎÈ׫9Äsû=°D8=bL I ü)^Ó»]k3ÏjÃË–´´ÿ}ì0Õ$= 5`t‰\FÓœ~R}Ü8 [œ™içÊöˆ•‹·!ÌG9ÅsI&É“[ÃvK±w†9׸VDAî¥hDeb{€ŒV–öaOÌ/MDöhÁå¤ú­º„à·8Âai^æAõ;:óÊîŸèFn ž¿¨}ºnbf•Û a×(mÂ@…Ñ›áÐ!mÊê1)'+˜Ì|µQ‡æh¨Â.+ÞEh*78î'¬Qã„f:÷š–•[H—¹h“ôOZ3noŒ)3ŠO7bñ°è@PÂk\…Çãuæ˜ js„XÎÇ\ár]ØyƒÝéA@þâ1]9®Îg2>ˆsýÿãx/CmÀ)ÒNˆ™…jìù 3Gß ´xÇwM亶E»—ƒ¿”·ÒúÚŸ1cî©!d0)ÂQŸ+2×3±öª÷É%R^‘4a3ê5®úB -RPèY='q«ÞŸoêÆ`[‹µfçìóòñaü:rs=ço2ÿóSLÂ9~GÙŸ~~¹½¿ßß=Ä“ÎÍ ûücyò×É¿[X,^endstream -endobj -1455 0 obj<>/XObject<<>>>>>>endobj -1456 0 obj<>stream -x…TAnÛ0¼ëŸ Q$[µÜCIÛ=¤ha½äBK”ÅT"’Š«ßw(Û-b¤( ¹»3;;ëç(EÂ_Š|å -e%q‚wy¯­s~/x¬DÝÑõ}†4EQ3eµÎQT`x’ (çR—vì½2R‹m++x7ô½±¾Qµ~°òBWÍ€F¼ÈÕ ¥=œì…^ÂuÛ^8·¯P«Vb¯|ƒÍÃÝEñ%¸J—ñ‚ðsçG>± 9¥[¹Ÿ=ˆ9‘2;+úF•¢mG¨®7Î)2 ÐÞ -íÚX[ÓaÐê^ 1î?ÐŒb[­o̰kØ­¤d‚Ç™Ž•…²vD&h'´ØÉNjW6üp؎ؓޔ¿7(ÍÐVØJü”½?k™2¹Q—ññz±Š³ ÄÌÉr°Ê¸¡ˆöEÚ:ÉæÈFxlD·d˜¯Ñ*R8¾ªI+;h­ôD˜ ¬ÎTr†íà!J?LêÉØÔõ-¾B ì\{ -=ùÀÊçAºœÐ&¨òªðfŒ"˜#+ËÒ‚6¨**ˆ–µ¢“>džf{|¨‚›Ù¡ÑÞÐKS‡ÄcUÖ8£õ–ºü;%™p'æ“‚ocû'?”®ÌÞáKqÃe°‚Å,4…y‘ôB)ú°#Ôñ óž¶fñõýú¸séŠû¸^"]äÜNŽ|sûpw‹¯Ö<ÉÒã£)‡àªIûÀóê”p•'ïCü‡FôEã{oXÃM3ÙôäV’ç5[:èäÀÉKT&,êãE(žåYœ¯Öü#`áe®>Ñ·è7Fo+endstream -endobj -1457 0 obj<>/XObject<>>>/Annots 618 0 R>>endobj -1458 0 obj<>stream -x¥WÙnÛF}×W\ä¥6`EŠÚúæ%n&Îb¥éƒb4I“fHZÑß÷ÜR› MDEÎ]Ï9÷òk/¢>þE4Ži0"•÷ú¢_¶ëM"Óp”ˆ å ø®2zèŃHDÛ»ñ$>¼»wÓ ‹éÞYx¡ápˆÏd2ÆgŒÿNÓ¢÷•ðd"ã/Œ&Ó¾!À‹»(¡Kzñ(CJúc|ÂúhÄ–üG6MDBƒi"¸›Ä‰µW|wÿw“ž -Ïú»{׸;š"€ÝÝ«YïâvJqŸf 9Oh–úšáur½’e­ =È|.IV$é~–uôÙñ½w&—ns:ûÒëÓyœàüÉÍ¥)èÚµ³Y¦ße?Ñ8ø9$¨žŠHÀ„vúkc*Skú¨ejŠe8‘Pµ'â1’Ɖ+½°¨ìÆ6¤`ßF¥ý‚Ïze*R!ì3*3-+M¹|ÒT58V¯díÏJ\(›ÃV-癦µ©Wlpa–ƒšËʨ6«h¢]˜LWTi÷l¾À]•ÏŸ"Y¤´²kª-éÂ[ä_dš›ÂT\ÂRVÕÚº·•Û”µ±ðe4[é -ëµ……Ò¨êÈs÷uJC–šB…x_¡“.’Ç“áãéaõNP€¢”Kí£¬Wš^ïbhkEvj÷û»Ï³whÚ¦8HlöÎwy(bAWR=-mŠ4<7jã‰c÷#b*úßê˦^Y÷KE÷¶Ö¿G8ã¾¥V5¹.jÂwÉí™›BúJ!ºùlRø+ -[ÀÊ«H¸¡÷7×äÃ~ÅV®_Ü‚ö¹ûˆæQy{ùáâ¶èwçÞ‡ª)µ«tŠÏ7¡¶Ð>ÿóm:c1 éü‰gQžŠ B)+§ì8¶•LQ}·D")YʹÉLm¸×–¤ª£@¥Ô®Qš%`~Ë©6⣤v¬¢Ç¤þx*@Ed³-ˆèŸÑÍFN%Z“zW([S(pFƒtK Ÿ@¦òžÿóªÞdúÈmª—Ù%'½p6?:åÁÕŠû^•4³btsC]m˜f›:3@5ÊŠ - :UPæÈï>'C†^ƒ¸ ;”Ýi”t%Ÿ‘9iOÌâp‚Ëìdrá0`íÈíÅbäItkO ¯Þza¹hYf×@Ê.‰6/ÏÏO÷wý}wÿ0»|óF¬ê<ûŽ9…¨9//–e¬•#¸QÖ9ð1ÛÐ<è«´f¥t‰ˆV8²´6ø*XA£½¢Â­By]`!€-ª÷˜2CBN\’ƒä©ZÙ&K}IÙ(PíÙ‹{0— ÊGàx¨‹BU`%õ×ñð@B˜“ÐO”'Õµ4ÖùF­Ï~xtrzv¬€g¤k%„ ß1öÁ×3¯¼º%ÄdÝ«PÇܪÔÊ`çò[Ø®,ì2o]ÃÔÆ[‚ÒÉõÞ"åBã½ ì3X ”.ÃN…3k“e@g¼‡N¿Ù`uMÉÜGŒ±þbEP¸¸ì½W Åx0äéûã/{/#HƉ&¡Ñƒ!ÿôzÖûÐûu<¼>endstream -endobj -1459 0 obj<>/XObject<<>>>>/Annots 665 0 R>>endobj -1460 0 obj<>stream +RPèY='q«ÞŸoêÆ`[‹µfçìóòñaü:rs=ço2ÿóSLÂ9~GÙŸ~~¹½¿ßß=Ä“ÎÍûücyò×É¿[:,[endstream +endobj +1474 0 obj<>/XObject<<>>>>>>endobj +1475 0 obj<>stream +x…TËnÛ0¼û+>9@¢H¶k¹‡’¶zHÑÂ*zÉ…–(‹©D*|ÄÕßw(Û-b¤( ¹»3;;ëçI†”¿ ù‹Ên’&)Þåi²Âró{Îc%êÉ]1¹¾_"ËPÔLY­sž¦(ʙԥz¯Œ†ÔbÛÊ +ÞÀ…¾7ÖÃ7Ê¡–Â+/!t…Á4âEƨN(íy àd/¬ð®Ûö¹}…Zµ{ålî.ЧIŠ«l‘Ì ?s~àã›cб•KðÙƒ˜#)³³¢oT)Úv€êzãœ"Ãí­Ð®€µ5‚V¿ðªhlˆqÿfÛj}c®a·’’ g:VÊØ™ Ðb';©=\ÙðÃa;`Ozc"üÞ 4¡­°•ø){Ö2erƒ.“ãõ|•,£S'Ë`•pCí‹´St’Í‘ð؈n+8È8 ^¢U¤p|U£V6h­ôD˜Ö@g*9Å6xˆÒ‡Q½(0›º>£ÅWˆÀε§Ð£¬|Òà„6Q•W…4Ñ1XY–´AU©XA´¨ô1ó4Û3àCÜLö†^;$«²Æ­¿°Ôåß(É„#81|ÛØ?Áø¡teö_Šã.£-f¡)Ì‹¤JÑÇ¡Žo˜÷´5㈯ï×ÇËVÜÇõÙ<çvrä›Û‡»[|µæI–M¢«Fí#Ï«SÂUž¾ñÑGËßãxãnšÑ¦'ï´’ôð8«ÙÒA'N.ZB 2qQ/bñe¾LòÕš,¼ÈâÕ§bòmò(o(endstream +endobj +1476 0 obj<>/XObject<>>>/Annots 618 0 R>>endobj +1477 0 obj<>stream +x¥WÙnÛF}×W\ä¥6`Ejï›—¸5š8‹•¦ŠÑp$NLr˜!iEßsgHmn€4EY9w=çÜ˯½ˆúøÑ$¦Á˜TÞë‹>~Ù~|ü­7DL£ñPL)§h4Àßp•ÑC/D"ÚÞ§ñáݽëœÑDÌöΠF#|§|Æøï4-{_ OÆ!2þÁèp6Æ7xqèÆÒ‡^<ŽÄˆ†ý >a}ÇCœ?¹±¹4]Û¢v6Ë´ã»ì'š?çƒ!*€'G"0¡þÚ˜ÊÔš>j™˜bN )ŠÚñIãÄ•^ZTvcR°oŠF£Òþ ÁgšŠTûŒÊLËJS.Ÿ4U ŽÕ©¬ýY‰ esتå"Ó´6uÊ—fÕ8ø§…¬Œj³Š!Ú¥ÉtE•vÏFá ÜUùBð)’EB©]SmIÞ"ÿ"“ܦ▲ªÖÖ%¸­Ü¦¬-Ø€/« yª+X¬×J£ª#Ï!ÜgÔ) Yj +à}…NºHOF§‡Õ;AŠR®´²N5½ÞÅÐÖŠì2Ôî÷wŸçïÐ:´Mq"Ø:ìïòHÄ‚®¤zZ9ÛIxnÜÆÇ"îGÄLô¾Õ—MZ÷KE÷¶Ö¿G8ç¾%V5¹.jÂwÉíY˜BúJ!ºùlø+ +[ÀÊ«H¸¡÷7×äÃ~ÅV®_Ü‚ö¹û9ˆæQy{ùáâ¶èwçÞ‡ª)µ«t‚/6¡¶Ð>ÿóm:1 éü‰gQžŠ B)+§ì8¶T&¨¾[!‘Œ”,åÂd¦6ÜkKRÕQ Rb×(Íœ†`~Ë©6⣤v¬¢Ç¤þx*@Ed³-ˆèŸÑÍFN%Z“xW([S(p—FƒtK Ÿ@¦òžÿóªÞdúÈmª—Ù'½t6?:åÁÕŠû^•4³btsC]m˜f›:3@5ÊŠ + :UPæÈï>'C†^ƒ¸ ;”Ýi”4•ÏÈœÀ´'fq8ÁŒe +v 29„Æp°väv‰b1ò$ºµ§¥W o½°\´,³k e—D›—çç§û»¿þ¾»˜_¾y#Ò:Ͼ#EGN!jÎË ‚ekån”u|Ì6´ú‡Æ*­Y)]"¢GVÖ&_+h´CT¸U(¯ ,P¢U@õSæ(BȉKrÌYà¦Ý캈¶ªÀc' ÀÀ"¨sÄâá';ÄðüÃYùYfS‹¾ÝÐòKÀ¡\º Ã¬ÿà`m•Í|…»±º ¥¥T Ðv€zyç1Tkˆzb–KìvØ|¼ž`Á>BËáa†VŠ,´.¶fZß`'UÙe1ùVì;¨Üí¿}È*L¿÷ÊÌOÄ…Ë“²Óâ“„™í+²?À†íîÌEÙ39ǒꛊmŸ¯q¹Õôkßc*—*Åb@žÂØ–:Àæ‹Å ص‹,ûU9p€•Ô_Ç£aNB?QžD×ÒdXç•2žýðèäôìXÏH×JA¿c샯g^-:xuKˆÉºW¡Ž¹U©•ÁÎå·°]YØeÞº†©·¥“5ê½7D Ë…Æ{AØg°(]† +gÖ&Ë€Îx~³Áêš-¸cKüÅŠ pq;Ý{¯‰É`ÄÓ÷Ç_ö^* G0œ Åd< ÄüÓëyïC>/XObject<<>>>>/Annots 665 0 R>>endobj +1479 0 obj<>stream x•WÉrÛF½ë+ú’ ­2A,@ÆåJÉ‹l")/)ˇ!0ac30­|}^÷¸Ä©P%=½ïƒïg¹øó(ò))ÎÏ\Ç¥p6w¦4Exöñ_kZ1¤»¯O΂yà\PèOA’ÓÔ;Q et6„½oˆÀÀFSg6ÀŠž‹³œ|þ `±¾ç„tÌ``N³?èq~Šœ"×ñéB€n:¿ÀaN!«³@›ME¦çÎàÏT "tî1£=.ôÅP1f*@ \j -°ÃsV”“ç ±P /z…=.Ä‹ˆIv8αCd<üX ÇEóžÏ Ç¡åãˆúìpÞÜ:8eµèq3.6Úž=.òz}ž=ηÎ[™ô8/²|œAO€ç²­ž;’ˉŸ3·<3F\Aà%ÒЃˆ1À¨7‹³ÉÕœ¼ˆ+4Aˆ(Ïh‘H‘»´ˆGNàÐÛ²X¥›:-ɬ5Ý«|©è]™«´`¤©Ë,Óõ‹ÅWH›Â^+m,•·HF ð¬Òº1Ô]˜âZ+ÃâmËú?Y¡wïÞRÚ)iS$,ªHDg¥j•kƒ#*t¬›FÕÏ,©É—N ûº¦mšel„Kc”GFEiH£óʰÐZõ*c»Ù‘еF‹+h^ëgRxÎK|™µ¢¿o”ÑÙ3ÅåèVÌürÊUq ¸RÚ¡«²Oñ¤‹T±~y¤U=iZj]P–ß x›šµ©ØlTÖkHt×ieÒ²pZU>×|üȦ#hª ýCåU¦É¦SMR1êì´Ç]†F´‚yP$‰?!ú¿u¬ó.‰< åócV.Uö¥U.ÓÇ„Ï+z£š4¦F×~ ‹l˜RfÕ¸#.´Y¦%2ˆT2vD¯[SQ®¬otwûáöÐ‚Ž›+å±.7ÕiÖ›ËO7×—{Ìc«^¾w¶n‘·u¹Év½M9%¶˜¹Ú²2Fàs…Z­iY—[¸ÅR÷]™~ÒRoìF8e®<ÖPVÕz¥k.+ª3úYK`”­îÿ"Úu 줟ŽÑ²æy—zå4áá°Å¾øáű‹I§Œùøù¤6”wý\¸[©¦Aª·zîû&­u® c ŽËìX[+ gïÔ¶;©µÙTUY›.}YùX'ê®pæŒýLîVÆFcx HĪº\¥™n~?¶]Ãr³îŒ~Àç—›‡‡Ž Іq'½°Ú¸ƒEÓ¯ ­Ë\S‚¨ÅÐy„²´Dm妆… jȶá’ÇÖ¦à,(ó¯v&uú´k¿ÒðIÖ6`è ö½êISé8]Á`zÔ…®1¬8;»lú³L¼<ìëY# ‰ZgXççïnïÏÏ%¼<Ãyð~Æ$É_ÐË(36u¿?‡z;Gä̉ó„2ñj°VD¤ÛFø`Ç ‚ÕÛqlÁ°&›¦žHO^ž“,]N:˜u «1¡²Èž;³'Æ}­±2)ƒã)Z•䩬¤É•kGë‘¿½—\ä¼öÊüÀªÏ]%ËØõž§Ø¯èÈ VΤ0-Ó¬#‹ò€Bî(fÕ|ë¢à†®{@Õ7Èad û«HçzÈsya7½Œ¦ËÛ²\QU¦…‘{® -kl³¿±Rí’WK,}ÞârBM¶/ ãn¿?1ýdÖ¢#u¡–™Nìe@n‰6*Í$¾åšN¸¬Óæ%†%–N:OÛkÌû›·Ÿþº[\ßÞ8k“gr˜\Åí~GÎÌ£îÊóà‡Q»Ug-‡—…Ù<ÀýŽoýÂýåo.é®.¿bÂà&ox<‹o¬yì…xñ™4Ž\ìåä_ùm& -g¸R‚9YæûÅÙŸgÿV®³Àendstream -endobj -1461 0 obj<>/XObject<<>>>>/Annots 670 0 R>>endobj -1462 0 obj<>stream -xWÙnG|×W4”¦qyФò&Éqı1ÈCÃÝ¡¸öî =3+šùúTÏÁcMÙA`[Ö^}TWW÷|8P4ÒhBy}ÖÏú¸³ûñÛ÷gãá0Ò¤?ÉfTÓøj–õãUE÷ü>]]² ž §ÙU¼àG—5]]e×Ïüg³LŽgS˜⟑´ôö×ÓOÜÎÏz¯Æ4Ð|ɱNfSš>Ô>ÍóÎ|%ÉJó$ Õud›õZG…®E©¨ÒZYª Aów0†¼½±ÎŸJ:ÿü¯ð yé] #ÃÍ<¾ÝElŒÚ¼è< 'Óh+}âv# †Ú1-$9„Cª…uˆvaô‚Ô¦À/KmèR¸MyUJåÈi$ ¾i -¤Ã±õiçðå]Fo+)¬šKØÂ‡ìñI˜R7–~‘n£Í{ºeŸ¥zD(ySÃp¥V!¯šB´)Ý -––ŠÒ:S.ÿ‘µÒ‰²²Ù)Œ†“lü LÝá,\S÷jˆB¨K÷¢^ð`ˆ˜¤%¥é%§ (×õº’H¾äÿ÷áê%=ݬ©ë5g³@zRªz¿Ìà ¾î­ÈWåÇôô¡ãsEºFŠªÚÒ‡¦„;ï·dØ R~\WL%ü`“Ë®E...i«¾ÕTÅ1ð¡Ô-×¢¨a#„nëE–kµ¤µ0¢F’¡þ¥Öu¨ -ÒÌ—ã Ï_:ß° {NÖm+I"Ïu£\*Ã5 ÐK´;‡\eãŒî’•×"_•JÒÜp§Üį}sü¤KÅŽî<ñ,òŽÁûÁÓ)jž˜ghø‰¯& -8ï †GÀWÄ:§[n%ßolÀX4°¯œ+èŸÌ=tŒÀsÐz%¸øÊ<\ìcL}Ç1>…VÉèÇ=)1°Óhøíeà8ü¿Wz‹àùèÖp!"0Ùy‚ zóka-Z©IñM -ð8_‘;†xß+I…B)oqüÚ@ò@²ºQœ0w`l¼CˆÚûN+gtUI“Ñœ»Ó#ê •nKK„M‚«k#ŸX8S£TmÊq -tçÇ‚t, ·?¾¹'ÅK£ëaßERp"Q¼XHÑ ÌSZ¦JzÈué~ÇBÛì°)ùãaƒ&Ô×—¿å2z„¨½$(ÑÎÒõÇB³bdôƒT¹¼DE’€îÞa¬@aAQIµ¬¸ÒË–g‘²XÈ\ *yˆDIZkk9×gJÏHÍ­ µ+^éVÝw°ŸÔè@*o‹q7»|Þ¾¼CÓkƒx$šlWÐ#œX¢¸V „ßä#Ëø6£›Ø0sI+½a@.£Á_0¿É„q( ]‚”˜(ß² Ìæn’þä.² z*R|ž|~°1÷a‡‰C? õšÛHBÀw@WÈú¡ƒ¶1àvµeoû1~Ð'UÿYÞHÕy¸à¾IÚƒ¢XSØf—Á’VŒ`;€“ƒ.ÉγûÀŽ\#v»ÖªàÆñ3h‡Û®!<~|=JÇ)vzÒ当©eæUãÛßH¿XˆIU ʧ2®l®{”’Avý|‘í½èyoüM)möp"<ÞŽ>Hšü£ë0+P(¶,ÂfB±õ:ã9-Ÿ° liD‡¤VÝj¿¾ì -²>¼w´Ø¢qUq²Ìÿmç;£º`NwYmÏBÚÓîdR^ɇáγ9pQe”°ËpЕPlÜN“"ÇbªÊ÷ƒÐxv`­L£b?øø#yIÅ›V•.PWn”–³Ï`X‹-¶¯]И8©ÀqíKTmO›Úã °Â`w\BIâ¢È',Š¼Ç 2Š¿ó ¤CøõÉ&°3 €ò©Á/æËÒð1ÁÉ5ËQ -0–Œ§ÚsÚêzü~¬Á'ÍÝ0)ü…ÀvGç[-NúŠ€ µ­áÕ=¸Jgz*×›ãl;8O:’úB^ÙÌ ¿o„!6/Å{&ÂÇkn+䨉JnŽÔ -óüˆºÏRÆ›ˆÂŠ,xE÷û ŸKÕ|¤N#ÅÑ:æøH¸ŒÖî«vf½Æšž]” -¿HÙti€í¡[P¯O=Õ@çºyÄt” 9O†íê=¯6~ë½ÚcÖµÔc»KQÙxÌK_ôX4ó7›hÅöu¸Ned~Åñd&A¹©[µCý²‹C -Go}s{ÿ’ì$®1ˆý!æ¢xyx‘¯Øù ÂA®Â®K0‹X &8„ÏF4™Æþþæõí ½5úÌöýƒS"§ÜMt§ýëÔ—ÿó|áãÛŸ(ÆÓq6Ì {4eoßÍÏ~=ûl|3endstream -endobj -1463 0 obj<>/XObject<>>>/Annots 675 0 R>>endobj -1464 0 obj<>stream -xWkÚFý¾¿âv“*¤Z i+e“¦MÕ$M–(ªšªì&±gˆÇ^–þúž;0䡪B <û<÷Üëg)õñIi2 á˜²ò¬Ÿô±²ÿyý3¯Ðh2ITÒxœŒÃCA×g)åu'‚ÿ¤É”†“)þARïYzIO ½rÓq’Òh:´¾•¤åÙp4Åßt:J&>tÒýKo?cW'á¬Ûm=—4JGɃÖ.='—§¯æg½§P™Ò| »ÇÓ ÍsçoŸæY§2¦¾sþ‡.áeë°–º‚ÎýÖ0n•"[+-ÿÖ¢”'·îýßþlÖÇç­©>ØZÔÊèc)}ê¦C„lžw¾"oÖËåMO7E1ëÙ…Ò=m -³R:˜4Ú»ÔŒ“ ›¯%yMÑßNOÖYÙæ~'^ëÔuµ£­* -*”­©Æí`±{تׄÜ='±ÙHËü‚¶Fß«i-n$¶œ`Sñ2‹áUÖÒòO;@v-ñ+tNÚÐÚ@x®*™Õ¦Ú%ôÔT$oE¹)XfÛ„œîåf³Ù݃ڦȃZýŸlâ½-Ô G•Å8=ð°èF>†NßÝÙí첉oÈ<äKeè‡ÝvÊ8cKQØ“w˜4s²-̼® >¿ ?^2…¦¤w”K›UjS+¤Âåk‰8r³BÁÛ R‰L.èJXYâù±)7M-«Ä{5¶Bô)zÅš׋• ÀXÕ Y_={yíõ›eK=Õ†½7¨–œøxnJ¡tBsü¬N°G°Å[_Q¯E¹ÚÔ`™Ì¬´úǧ™„mAª®`ú‰R‘e¦Ñµ‹ŠË‡Á ³…ÅÂWEfªJÚѹÒ+z£Õ-…k@¤…›RSVIQs°ŸZÞÖdk¹!eÙ ¿é¶¼¹ñ:Rvb_÷ ¤Ìèáb¼ºE u?h³Õ„ÅZ‰b_+α½M±*9ÎÐ “-©±AšAd¼l¹ðtñ®3}wß;À 3eÉU ¯íš-YËJîk)rìž>K®{ ̯Ý2TÀW6ªo¥gËz¿X;{nŽ7;.ˆa€ø={„\È×ÏžP€°–ÛxtUDr%µ¬8Ë'9[V¦t)zsñeÌ„Œ± ’A?+òõ±T£¡ð­Ò¹Ù"ÖsúýÉãøèüZV7²"X)V²:Gˆ!¬šƒpUÚmÁr»VÙÚ%–#Û×\ä wõp0DEˆä{öq]([ ½’nùÄX<´3Mï@ÙMSpöhRHhX¡69¼` áöUÑŠ:wÓ]l”åNÛf¸„¹h)Í×5rèBËé)²²¤-w\÷µS2MM‚õ´£Wˆjÿ媒8±D&`¶Ò`ŸÒ'ì‘m`3›Ð¦ñÝÖ‘ÛVT`ñoXlï)†.LK 6 w8H¦C7Í\&£dÐùKÝ…oݧÅîœs’0±Þç~z¢91=òÔk½ØX«\å<¢¹iÆ‚ÍA7ï:L:Lí?Ï!ïîÓVìŽpùYZ³U-Ed­(¯ËÐ5\È>aà6_—LuZJè$ÎQ]BôgÛ[ÈrœÊ®•Î$I¸´~ÖRx‡zC›d¾Ì (_¥ÜíES££Ö*ãRjãd¹/XFÙQÏ‚Ýõì`›ÍÓBþ‚å½ ˆúR­]È yî‘ãç2˜=W¦Û8s¶ªTŸ°¨ã wBc:ÐoÜÎtP4 vxø•8 ~LWnÈ>/XObject<<>>>>>>endobj -1466 0 obj<>stream +°ÃsV”“ç ±P /z…=.Ä‹ˆIv8αCd<üX ÇEóžÏ Ç¡åãˆúìpÞÜ:8eµèq3.6Úž=.òz}ž=ηÎ[™ô8/²|œAO€ç²­ž;’ˉŸ3·<3F\Aà%ÒЃˆ1À¨7‹³ÉÕœ¼ˆ+4Aˆ(Ïh‘H‘»´ˆGNàÐÛ²X¥›:-ɬ5Ý«|©è]™«´`¤©Ë,Óõ‹ÅWH›Â^+m,•·HF ð¬Òº1Ô]˜âZ+ÃâmËú?Y¡wïÞRÚ)iS$,ªHDg¥j•kƒ#*t¬›FÕÏ,©É—N ûº¦mšel„Kc”GFEiH£óʰÐZõ*c»Ù‘еF‹+h^ëgRxÎK|™µ¢¿o”ÑÙ3ÅåèVÌürÊUq ¸RÚ¡«²Oñ¤‹T±~y¤U=iZj]P–ß x›šµ©ØlTÖkHt×ieÒ²pZU>×|üȦ#hª ýCåU¦É¦SMR1êì´Ç]†F´‚yP$‰?!ú¿u¬ó.‰< åócV.Uö¥U.ÓÇ„Ï+z£š4¦F×~ ‹l˜RfÕ¸#.´Y¦%2ˆT2vD¯[S‰¾ÑÝí‡ÛC :n®”ǺÜT§Yo.?Ý\_î1­zùÞÙºEÞÖå&KØõ6唨bæjËÊÏjµ¦e]náKÝw^dúIK½±á”i¸òxXCYUë•®¹X¬¨Îèg-P¶ºÿ‹lh×°“~6:FËšç]>èa”oЄ8„ÃûZà‡Ç.v$2æãç“ÚPÞõseàn¥š©JPPÜRè¹ï›´Ö¹.Œ-8.³cm­€ž½SÛì¤ÖfSUemºôeåcYœ¨»6Â=š3ö3¹[á1 «êr•fºùýØv Ëͺ3úŸ_n:&@ÆôÂjãM¿6´.sM ¢C?æÊÒµ•›6¨!Û†K[›‚³ Ì¿Ú™ÔéÓ®ý>JÃ$Y_Ø€¡/ Ûöþ©'M¥ãtƒéQºÆL°âìì²éÏ2ñò° ¬f0H$jaE`<žŸ¿»½??—ðò çÁû“D$A/£ÌØÔýþêí‘3'Î>8ÈÄ«ÁZ‘bl[8áƒ7VoDZÃr˜lšz" ž[ôµÆÊh¤ ާhaT’§²’&W®­Gþö^r‘óØ+ó«>w•, `?Ö{žb¿¢#'X9“´L²Ž<,Ê +¹ ˜Uó­‹‚ºîUß {„‘%ì¯"ë!Ïå…Ýô2šb,lËrEU™Fî¸*¬±ÍþÆJµK^-±ôy‹Ë5Ùn`¼,Œ»üþÄô“Y‹ŽÔ…Zf:±—¹U$Ú¨4kd4ú–k:á²N›—–X8é>/XObject<<>>>>/Annots 670 0 R>>endobj +1481 0 obj<>stream +xWÛrÛ6}÷W츉ܱ¨‹eIî›í4m:¹5V§u§‘Å„´¢~}Ï⢠#'Nlj½œ={vñéd@}üÐdHcÊë“~ÖÇ7Ûï> ‡ÙÆýq6¥šF—Ó¬?UtÇïÓåÕE6Ƴá$»ŒøÑÞÇš./³«½gþØô&GÓ L ñÏHZx{ƒ«É—nf'½# h¶àXÇÓ Í +jŸfyg¶”d¥y”†êÆ:²Íj¥£B×¢TTé­, U ³ÙCÞÞXçO%þWx¼tÈ.…‘áË<¾ÝElŒÚ¬èÜÇ“h+ñ»ƒ †Ú1Í%9„Cª…uˆvnô‚Ô¦À/ mèRøšòª”Ê‘ÓH .œi +¤Ã±õiëðùmFï*)¬š ØÂAöø(L©Ko¤[kó‘nØg©JÞÔð \©BÈ«¦­K·ÄÁÒRQZgÊyãŸ#²–ÃB:QV6;†Ñpœž€©;œfƒ+ê^QhuméNÔs “´¤´#½àåº^UÉ—üÿ.\½ £›ÕbµâlæHOJµEïÍ,¼àëÞŠüwU~NOï;>W¤k¤¨ª }jJ¸ó~K†½` åçUÅTÂ_f0¹ìJäòþìœ6ºá¯šª8>”ºåZ5l„Ðm=Ïr­´FÔH2Ô¿TÀºUAš9ârœáéó@çk6aOɺM%Iä¹n”Ke¸¢zc’v/F¡—Ù(£ÛdåµÈ—¥’43Ü)×ñ´oŽ_u©ØÑ­'žEÞ1øa?Xb:… BÍóá ?öÕDA‚çÄðøŠXçô•[ +Çß76`,ØW΃ΕôOæî;Fà9h½\œ2÷g»SßqŒO¡U2z¹# v ¿9‡ÿJ¯a‘<½Ý.D&;MDBÏ`~%¬E+ )Τó¹ƒA`ˆ÷½’P(”Òùǯ $$«Å sÆÆÛ‡x¯½oµrFW•4͸;=¢ÞPé6´IØ$¸º2ò‘…05ŠAÕ¦ü§@·~,HDzpóòí)þ°0ºnöC$'Å‹…ôÝÀ\A1¥eª¤‡\—^àw,´Íö›’û4¡¾¾ü-—)ÐDí9A‰¶–®>o š#£_¤Êå9*’tûc¥ + +ŒJªe=Ç'½hy)‹¹Ì2¡’‡H”¤•¶–s}¢äðŒÔÜR»Dá•nÕ} ûQ]€¤ò¶w½ÍçÝó[4½6ˆG¢É¶=À‰%Šk•@x/XÆ7]Ǿ€™sZê5r ¶pø†ù5H&ŒCIè¤ÄDù‘M`6w“ô'w‘ÑS‘âóäóƒ¹;Lz%Ôkno ß6]"ëûÚÆ€ÛÕ†½íÆø^Ÿ@Tý±"¼‘$ªsÆ}“´!E±¦°Í.‚%­0ÁvG]’'÷¹Fìv¥UÁãgзYAxüø{”Sìô¤Ë{GSË̋Ʒ¿‘~°“ª"”e\Ø\w(%ƒìúù"Û{ÑÓÞø›RÚìþ,Dx¸}4ù/®Â¬@9 Xز› ­ÅÆëHŒç¸|Á2°¥U’Zet£ýú²-4Êú4ðÞypXÐ|ƒÆUÅÑ2ÿ·ïô­ê‚9ÝEµ9Ý iG»£Iy%o†;Ï>æÀ^Da”aPÂ.ýW@WB±ñuš”9ëPUþ>gÖÊ4*vƒß1’‡T¼ùaYêuåFi9û +†µØ`ûÚ‰³— +×¾DÕæ(°©=öú+ vÇ”$.Š|#À¢È{Ì £Xñ[¿Ð@:0„_Ýi;“¸!ßüb¾( _œ\±¥cÉxª=¥­ž¡‡ïÇ|ÑÜ-“âÀ_l{yºÕâ¤Ï¡ˆ¸ÐXÛ^݃Ët‡¡Çrµ>̶ƒû¡ ©ÏDá•Í<óûFRaóR¼g2á |¼æ¶Bލäú@­0ÏÁ¨û,e¼‰(¬È‚Wt¿ßzUªæ3Íq)Ö1ßÀÂ`´vßµ3ë5Öôì¼TøEΤû@lÝ‚z…|ì©:×Íùù‘ÓÔiØ®>òjã÷¸Þ‹f]K=¶»•×¼Ýñxúo>Ù +éûð9UiWã Á¦nÕŽðÛ.ö™]¼UôÃÍÝs²p·Æüõw—/øáUáY¾dçÏ÷· ++bD~1Œq÷ž^Ðx¯ wׯo®éÑdî°æï]9ön:Ðô¯R;þÏk…ow‘MFÙd< ë‹{ûivòÛÉ¿k41endstream +endobj +1482 0 obj<>/XObject<>>>/Annots 675 0 R>>endobj +1483 0 obj<>stream +xWkÚFý¾¿âv“*¤Z –WÚJ»I·MÕMš,QTu«j°˜Äž!{Yúë{îŒ ÙDU…@x÷yî¹×ŸNbêâÓ¨Gý!%ùI7êbe÷óög^¡Á¤ (§á0ÖÝœ|¢xõ¼þGcêOb…¤ÎËxH/ ½qz“IÔ§Áxi=| I‹“þ`Œ¿ñdM ¼ï¤û'–Þ|Æ.®Žê³n·ñœÓ @Æþ.=žà‘ÆËÙIç +*cš-`÷p<¢YêüíÒ,iÆ”žÎ>àÐy}¨EÉj-¬¥¶ S¿5[¹HVJË¿µÈåÑ­ÇÓï¦q7Æ·;vñyoж¥2úPJ—ÚqÁ›¥­¯È›vRy×ÑU–M;v®tG›Ì,•®Mì\j÷†ˆ?„ÍV’¼¦ào«#ˤÃÎlR¿®µHê²ØÒFeeÊ–Tâvm±{Ø*W„<>%±^KÊôŒ6F?)i%î$¶œ`Sð2‹áUÖÒðO;@v%ñ+tJÚÐÊ@xª +™”¦ØFte +’÷"_g,³iBJOR³^oŸ@m•¥µZýŸlâ½ÍÔG G•†8M<,Ú½¡Ó÷xz?=ïžã×¹ƒû|©äãÝz·™2ÎØBd¶†Iˆ;Lê 9Yss'ϼ"À+xÿ·>.™BÓaÒ[J¥M +µ.Ráòµ@9‰I¦àí©HFgt)¬ÌñüÜä몔Et¨²¢Ï±¸×+æÖd¸žm)¯ØÀª^Éòòåë¯ß,ê©4|èƒAµ¤üÀÇS“ ¥#šá?ÊE†«Án}E <¾ù\xüiS‚e³ÔêŸf¶©²`ÓE’˜J—..>ñ¯Ì6 +_‰) +i×F§J/éV÷á0há˜Ô”R”\ì™–÷%ÙR®IY¶Ûoº-o`­•¤#ùºO%F—ëäÕ Š¦ýQ›&,–JdtàÊ®9²Ð_ƒ$5ZReki>íãi·ùÜÄmk|ûÔÛ'>1yÎu ¯íŠ-YÉBîª'°êŽ‚¤ÓfÔvîUì(5øÔàÔ ¾‘ž ëõ7¨–‡›-—İõ{€UÁ·/_P Z-7áè.ÓˆäRjYp–Ys#f‹Âä.Eïö"¾Œ™ºäBì{½¨×Á“hì¹àWT‰Wãà \Hå¹L¬È¶‡ÙaƒÐNÏAMiëZèJd¨O=NúžKÑ ÿrY®Lb%?UêNd Ë^Αó¡¥ …ï•NͱžÑï/žïÁG§7²¸“ÁJ±”Å)X?„°ThÂñ@»âÍJ%+”P:Œl_sÜÕýÁ:zÌ9(B$ßóë;ÉJè¥tËGîì›ØÖTE¸ewUÆÙŸ£-!! ^…ŽY¥ð‚5p„›|TE#êÜ?t±Q–{k“Ó"ºpÑRš1®KäÐ…–Ó“ÏeaHî¸~k9¦d*pëiF/ÅþËe!qbLÀl¥Á>¹HØ#[!À>f6¢?Låû«#·(ÀÛß°ØÎÆ,Ì ¶Fn¿ûn~9Q/¢Ó׺ ßÚWÙö”žs’0ô°Þk?/ÑÌQï…§^ëņZå*ç¡ÌÍ/ü º¹m1é0™ü¥ØàòAZ³U&Ed-˯˺O¸}ÆÀM¾Î™ê´”ÐI ƒº„èZå0‡Ý(H’p½Öú ¥ðõ†6È|™;ÎP¾J¹¿‹ªD-UÂ¥^« ³ä®`e= vWÖ³ƒ­ÖkÌé3–w6 ê µ¬@vuæXˆHS?iÁ´¼ªzž Sf£jAõ‹:Ìp«nL{ºñ­ÚùŠÆ"ÁϾÒyÊ5Ê9yÜÚ/%ƒÞ¢†Ã é‚Ioeú ZþÃøoJW÷d·hâyMØõXÇø¬§Ã?—™™‹ì¯ ¸‹×—ˆÑ÷Q’¦`- +”:F.‹?¿rݨSÙÂÏú\¯¼ßNi÷@í%áå‚Ú–:»é’Ú×ômUOÄãzŽŒ‡xé÷iØG“Ø™xsq} š)ÌŒÝxIK* +]¶Ù²v¸Òu];ùÿ…= ¢ÑpŒw-D¦ÎÒš¼9ù"¢têendstream +endobj +1484 0 obj<>/XObject<<>>>>>>endobj +1485 0 obj<>stream x­WÛnÛF}÷WLV ‹Ö]r ´°åP€¦)¬"( —¹’6&w•]ÒŠþ¾gv¹²ÄØE Ä7Èär.gΜ~=ëRß]÷¨?¢´8ë$ê‡É„“1>÷ðk%­ÎnçgW÷×ÔÐ|…GF|ÈÇ;š§­a2Hú }0J+½¦r#iš+©K*ÿïÎBé·ó/03 n7˜i÷Æ0ÓšãøÖšTf;3–¾Ô†¥'f2o†ž„UÒÑN•oýIZ§Œ&³¢ÏJgfç’àjT»BvíÞ(á [õ ê!öïЇ6R{Ó•“–d.ÓÒq.˜¿þ— Õeô͹[œçL„&‘¦¦Bg´ÎíŒÍØq‡ÚÝ~Òã˜Ê(I9<©žT.×2;q$tC¢X @@ -2823,31 +2845,29 @@ x r1Iº×°;¬å~˜ fQíüdÍ2—ëAFï­5ÖëôÕ}l?»ÆÉˆÏ@)ÍÔT:Í« ÒOo.ð>D†0ëckuÖ ]ôÏ.Zå~‹ŽAAðCWþ¡l;39D%¶[©3™%to¥¼}¸k”rÑâ” *j wÉí] ~C ;£/бáüöÓþ/žR–¹e8ÛƒÊ#ÕhÔ»nPÔpmEqè®BceÁ: % -Kn€àì¨xî]) -ÄHÓw‹ÅçÙÇóÅâ×pè™ô0çI÷3]5®#÷•·-ºïtþ{,½õ (d±e¡?ÂwéÚšj{”ÃÍýáXŒ¼"a[à P|¹Œ _|ßX´–"#•Iù¦ßl=­yžXõÄZB»ýZáí2HÞð†š8SHŒ -sÌÿ†K4yf°‘°Š¢ä5b‡¸/±b.±c{Gi˜Zb7¦—gM\¥^ïÉá$t휡ðºÊ“Ã;ÍÍÚ§š,ZSLÉN÷úS _¡h§ý÷»“¡6©u¬ÛÇÀ»îÓhT»z¸ùýö†ÇÙt9Ý™´ÂÒUú5Œí¶»#¼QNúÔw®ÙæÿxgŒÉx4Á‹'žë_³¹÷ó³?Ïþs ¨endstream -endobj -1467 0 obj<>/XObject<<>>>>>>endobj -1468 0 obj<>stream -xWkO9ýί¸ªZ5Haò M_VPJU<‚ÐJH•gÆI\fÆ©í!äßï¹¶‡„«RU„Éø>Ï9÷ú÷Nºø×£QŸö‡”•;Ýv»IŸã>÷ñßHšîOv:§êõh2åw‡ãMrÂûÝ.M²ÖýÒª’9¹¹¤\—BUdë,“ÖNë¢XQZ;S' Õ‹™¹ªfä4 ªä¥±JW¤§ÞÂ(SA™Î%ÑL:~¸;ùµÓ¥½Þ>¢›ä­¦ÅL¶éÃ.íÊ:YR&*ª´£BÏh¥k‚ÅûÖWÄØíßï¶éªÂJrf×3ŽRø©l]8>a¢¥-g"/U¥¬3Âió–sY‘pð¸p1xÔUÂÇöd˜ 8ÈÉ\YÒYVm”çæì„,Ì¡hƒOvNQ}_áÖ¨GádçîòúÇ÷ëËÛ«¯‡wš.´¶³¹¨f2OèyÈ'Q. -ÙÞ -ž ad©‘7J5U…$QåÁÚ—Æ#Ù2ÏÖDíÐK§2Á=ÌŒDL64 µ• ]_gØ¥X,¸©ÈØMµqó­`Ré–Õ‹ · ±dÔ¦ÉÅw†#üûÛÑ ¥FTÙ<`à¾ÅM52Óe)«\æ÷» qÛu…°–b(mùÉ´Áû8´0:-€Ô 3ÒWÝ×B5S•(ÈrOPÈjE,g…’•£©ÑåXŒ/qÎF2<:§ÃXÜ ØrÔ¥Èæ PX[°"ËtͶáØ1^å¢f¦H…jĆšsä Èñá%þ'A…Ü¢¿¦q¼c¨žyÀ#wŽÍ'#~&E:65þQh[…ÿÿ@?$t7î3è`t5û+~Á—ve¢¶àGŠ£nW'_}ÞsñÈ8PåÒ»¢ MŸÑY[OÔ #ÓþëΈ<'xƒdF-G¶–¼ -äæú¦# š¾S\bß¹¥® fsÂ8f›p¤ÍEè×R›pu«`ß > 'ØàˆÕ&Æt çÃH¡9ÝTì¨R*PôQ‚ -j°'«/SÄðkTŠªötŽqË„6pãR¦f yz -«Æg#½çâtA#CÖoS`/PŠÈ¾€éwúòÑYk— –%è5Œl( 4ÝÐà+Ö 4´ê/sM%5SàBÆÖox«*”[µQïU»ÉogÔ¸¨D)½„àYC éŽÏ.oÈ·]ÊÏ?”Ðëø‡V'¤nžÿäÓ)j P²,¤,Ò±œ(Tªa¼#]Ö‰õb±áð^V0¡0Rcp7óòM2rYöåctV<ü +¬n¶N+ÌÚRØ ÿA¨ÙGè¸Õ~Vé‹ EUôvU·ZçYùœÐn`£˜GÇF ŒŸk´ÍiÇQã²ÈܽQ2îQï`Ìsö¾?ÅÚh®ÿz¯ßë…u!ê`ÚÜLlCÞAB~'amñ/èb2èÜõxÞY‚骗ñ¬–"ÕØkÊÕVÚ dRÉÈË•e‘ -Ä_KÊ«=áMÝtutŽ©R@P „õŒYâí'<;1¡þ =á-¼Áßõ0žQc³œ]akÑ%ÏV+ମpœ$dçè–– -ð(e™²*úî[6ΈRågv -]z‰d·|Icx\UqµÂ†‘ ì‡ÄÎS@¹äOIvˆO?cÕî[ýáø~—ó>¤Û‹—wôíúúòÚÈ[r¸åæëö§øðY1R• L’Qc5å§À‡¢OÈ+ÈË:§/6¢H¶=Ikë¶Ú¨ªïç±)½ªæØ‹ü¶É<¿0²NmefG϶6QŸñFš³ti=ðÛSNžÜm3s¦jÖÌ@3ÛZÑExÚì->ãŒ.hZFSøºÙ<7ô)ªM™äËûø¶°Ht¾ùÖ7…Wؾ#ð -2K0ÅŸÀü»V¼öÆîýBšR¹Äú5n]`XÙ&žâq–/„ -µÁŠÆÛ;ïšKaxXJN¥^Öù²ß.Ÿ¸Ó¯ì÷¢«Š7Q„p6J²Ðaßbï]æé«¯‚‚î°é饅PÒå`0¡Ás;÷⊠S¼SãØê q¯ïÓpï±7GçÇGî/¾®œè¬æü|îð^s`oÔ±òÖUx0$£á,ĉA— }›ìü³ó™'Xendstream -endobj -1469 0 obj<>/XObject<<>>>>/Annots 682 0 R>>endobj -1470 0 obj<>stream +ÄHÓw‹ÅçÙÇóÅâ×pè™ô0çI÷3]5®#÷•·-ºïtþ{,½õ (d±e¡?ÂwéÚšj{”ÃÍýáXŒ¼"a[à P|¹Œ _|ßX´–"#•Iù¦ßl=­yžXõÄZB»ýZáí2HÞð†š8SHŒ -sÌÿ†K4yf°‘°Š¢ä5b‡¸/±b.±c{Gi˜Zb7¦—gM\¥^ïÉá$t휡ðºÊ“Ã;ÍÍÚ§š,ZSLÉN÷úS _¡h§ý÷»“¡6©u¬ÛÇÀ»îÓhT»z¸ùýö†ÇÙt9Ý™´ÂÒUú5Œí¶»#¼QNúÔw®ÙæÿxgŒÉx4Á‹'žëØÜûùÙŸgÿU ¥endstream +endobj +1486 0 obj<>/XObject<<>>>>>>endobj +1487 0 obj<>stream +xWkO9ýί¸ªZ5•ÂäAš„~YÑRº¨*°„VBª<3Nâ23Nm!ÿ~ϵ=d°*UEÈŒïóœs¯ï ¨š é`LY¹×Oðg¿Ÿ i4àóÿ¤ùÞçÙ^ïdDƒÍæüîx:¡YNx¿ß§YÖ9¥_ZU2'·””ëR¨ŠleÒÚy]JkGbzµ0"WÕ‚œ&A•\ãË{i¬Òé¹·p%ÊTP¦sI§´Ž¿ü0ûµ×§ýÁ¢›å¦ÅBvéÍ .íÆ:YR&*ª´£B/h£k‚ÅÛÎÄØ~¾ýÐ¥‹B ++É™ \/8Jmà§²uáø„‰–vœ‰¼T•²Î§ÍZ/eEÂÁãÊÅDàQW ÛGÃq2â gKeIgYml8Ô*ÏÕé1Y˜CÑŸì ú¾Â•Q÷ÂÉÞÍùå÷o—ç× ^ï4]èlgKQ-džÐ ò¢\²»<ÂÈRß#o”j® +I¢ÊƒµG²e¿ÛzµC/Ê÷031ÙÐ4ÔV&tn|@b×bµâj¤"»c4ׯ-w‚I¥[KT/6Ü2Ä’I—fgßüŽðï¯GÇ”QeË€Û7ÕÈL—¥¬r™ß~HˆÛ®+„µ@iÇO¦ Þ÷À¡•Ñit ^€œ‘¾ê¾Ú¨…ªDÑ@–{‚B¶ª±œJVŽæF—/`1¾Ä9ÉDð@èŒcq[°å¨K‘-A °¶`E–éšmñc¼ ËUÍL‘ +Õ0ˆ 5çÈ@ãÃKü7N‚ +¹EMãZ¼a¨žzÀ#wŽÍ'#~$E:65þQh;…ÿÿ@ß$t³î=è`tµø+~—V»2Q[ð#EƒQ·‹ã/>兩gœ (Œré¿\Ñ„Nç謭'j‘Þ‰xÞ‘çoP€Ì¨•ãȶ’×AÜRCßt¤AÓ7`ŠKì;·ÖuÁlÎAÇlŽ”£¥ýZksÇ\ý +¹apް^4¢Ö‰å&„ çÓÈÁ·ºÕà£P©ÀÑ{ .¨mÆž­¾N`°Q€R)ªÚó9.7ˆâÀK™›ç9€è9TlŸM˜?Äør@Š,0Þ7‰½@*"ý¨_iëTg%¬]C-X— ر,­ª„i€îo;šCøÍ¦ (–Oµ"™+ˆ*A©™;h2ö¾å­vªPnÓE5îžµa›ZÛE%Jé5¤Eá3é>Ÿž_‘¶_Ê÷oߤР㸅X'¥­¼¢ÿäÓo)ŠQ².¤¬Ò±œ(Tªa¼']Ö‹õbµáðžV0¡+0WRcìÂË7ÉÈtÙ—áYñôƒ®°¼Ù:­0lKaï,ü¥f¡ dûQ¦ÏfeÑÛ \„nâi Ðn`³˜gG+FŒÏ5Úæ4ƒã(rY¤îþ$™hp8åA{;Oâ mD×?Þa_ˆB§6÷#›Õ—ßqØ[¼È :›z7ÃïžwÖ`ºêÆmD<Ê¥H5›r³“v#œ©däåʲJå;*ýlQxQø]ýÀX) (PÂzÁ¬ ñž„PÿÀ‚Dx oð³æ3jlv‚³¬-ºäAÃrœÕÕv”]¢#ØZ*TÀ ”eʲè»oÙ8C"J•ZX*tQè5’Ýñ%áyUÅÝ ++F‚²"ÆpžÊ%J²Oøô3Ví¶3Oo?pÞŸèúìûÙùÍ}½¼<¿ô3ò|ÚqóŽ…û]ü²&G˜©Ê&É(¹„òƒSàCÑ'ääe½“'+Q$Û¾¤­ÖX袨¾Ȧôªšc1ò+X[ØýÆÈ:´•™=7ÚÚD}Ê+iÎÒ¥=ôÀ¬Lu8yDHhp¿ËÌ™«Ekœlg[§qÒj–ƒŸqF4/£)Eµ)“¼gy!ßµ6I€Î7ßú¦ð{È—Q£°Sü‰Ì¿kÅ{oüáÞ¯¤)•K¬ß㶆•ƒqâ)‡ùZ@¨Pìh¼¾ó²¹†‡ äTêe_ð!ûõò;ýlÃ~Ýi§ ÍÆŠ"ŠN«$+.vðšÑuž>Ë£ã÷U(ß”Y¡AXà&Œkž˜¯¬+õðÜ b ‡+)ýÞÞŠ’±ÒeboaÏÁ2æK B`3f¹r麸Ÿ/Šìp4ÞÙCà8G§ÉàõC¯?&cŒ °´\èBe¼q°†_ÍöíS1J&‰·þ£ÆºïªÂà‹T¨B°¸ê…)¾ààà^ôq©ýbx ^?úcñ‰Ï®[UŠ +†Ä¹0€ ºÃŸ1y=ºŠË +èßQ¸öytƒUO¯-„’F¸)ƒ ý žÛ¥Wܘâ¥jÇÖ`Œ‹õô€Æ“x‘½:úñùˆÃýÅ÷•cÕœŸÏÞoìOú VÞù£ +&£d2ž‚…8q0aC_g{ÿìýÊéendstream +endobj +1488 0 obj<>/XObject<<>>>>/Annots 682 0 R>>endobj +1489 0 obj<>stream x¥XÛrÛF}çWô™”¼Ó/[¾H‰j-ÙkÒqv‹/C`HNÌ @ÿ~OÏk³IÅ.QæÒ=§OŸîáï½FøÒbL“9EioŒð¦ùøòSo¾–4_΃¥NÆÁ¤zJhÝk?ct¾ºm=ct¹Víµ­ç”ÆãY0k¶Ÿ1:™7^°Ýö3F—a°h¯m=ctµ Âöhë9¥I8 æíÑpŒ)œNa/¥é|‰sû'wÞÙïÃÑ s0:™4O< -Üh5 ¦4ÅÑF4ÆO.iß{·é o§†´ÙîùrA›Ø¡<¢M4(Ž’NGUHÊD&sºK³D¦RJèsnö*‘–„Žé³IT¤ð 4}S:6'KšÂx*»ör“Ò½Šrc;~ØüÖÑõx¿6ñàg —~¬IñG«B-Šeìž?¼WÞ‚ÍÒoGQØ™²hw>é™ü~õËY›ÅCQ.ir’˜L~*Ðu° t½W‡ 3Éå.:›’ÒÒTZI ½–ùÀº0åÎê= {±­@>Ëîž@<:’²üø¸°¥£¤ŒeL'U[vveáw¨‘6OøfòG[†±c# Í‘áVˆÞ¥£d4^=l?lL@s°_Ç[ªÂÇ 9ø@‰®L*À¸ñ·eÈò+Iq4åáè¬é³šu<‹„¦Cëœ0–ÎqÝ9öÐÇâŠÏqRIâ9–DÄÁw'#Q1—e‹üLò Ÿ„;ýu˪£©,hÇÃÈÞJäˆdúÙœ$Hpå†}š8ö_RĹ”—šŽ"ËTr&© ²–II@ÿß´Äi=˜ G[tº¢È¤©ÑˆÓä.U;+OJë╹ݹ؃ûOR+$=†2p‚ÏPœ ïÓòïGÞƒüQôŽ•èÍvë,m·Jï»nÕŒ‡Ø0+ÙÀNi8„ci¢a ¥RCt,œIs¼ÉOÊÊZLêdy0Èg‘Xƒ5Ð÷«\F‚3SºTq,u¿^X«Ð¶k"…ªÈrªÂ>§ ïy™Šì.óLE’>‹è‘&´°(2òíÎõ—=;¸A"ºy.ryh=„¥mêE4¬·’ÁˆÉásI=;n¿Ê·—ÕÅÔfsϯ,u^V ÷8Æ\8™`mî_@òWt!a¬„µ&RÀUÆT¼Ù‹™… ¾;IÒCƒÉÂÒI&IEÌ®[.0™±Vq©UQƒtb+&[íähe‘Yõi¿GèV —dµ@eg2ûöBOš.5ÏÞBAAì^NL䗹ℚmÿGæ†ÞÆ©Ò,+~üŸ¤Vi„µÃ¯ÕÉámT•Žkt=!…«%×Ìíx¾¨R­V7|=C4˜ñ¢ îALcÓ(ñÿ.†wÚÉ©;ø!7eVãvDô”ãýž(ÐsZ3¡ó}ä„…ˆñÙyò’Þ@Òx²ÖšÕÒŽí¶0&±Ûm.í£*¶[’Ïpm·•°uxTŽ^šöÕËû%N´vg^Û2› ¹ÆpôÈ}Ì¥W·!¬ßëìZìSX¤\ߘ.%#G•V‘•(¯ûêølY ÕqåÒù€¾jÀ[”¹bP¹ôBìYì8b£aDW–s…TDG…×NáP¿¬FÇ#?‡ÿª¡Zðîöð±™>Ê%WI6˜Ë NY²åá -þ@Џ£[f±Käí-TüÆ­¨ÈàÇeÇêx„¹&qõìD¦ò!A~pær±Û!q]ÍÊ"ºíœïߥBÈï%î®Á4'N‚;>õ¿Bëè^hqyß´Ï"ÞzÉ¿tÇ,5fk‰³_©m Ü£±7p«n˜©Ðg\3Ëé™ü~õËY›ÅCQ.ir’˜L~*Ðu° t½W‡ 3Éå.:›’ÒÒTZI ½–ùÀº0åÎê= {±­@>Ëîž@<:’²üø¸°¥£¤ŒeL'U[vveáw¨‘6OøfòG[†±c# Í‘áVˆÞ¥£d4^=l?lL@s°_Ç[ªÂÇ 9ø@‰®L*À¸ñ·eÈò+Iq4åáè¬é³šu<‹„¦Cëœ0–ÎqÝ9öÐÇâŠÏqRIâ9–DÄÁw'#Q1—e‹üLò Ÿ„;ýu˪£©,hÇÃÈÞJäˆdúÙœ$Hpå†}š8ö_RĹ”—šŽ"ËTr&© ²–II@ÿß´Äi=˜ G[tº¢È¤©ÑˆÓä.U;+OJë╹ݹ؃ûOR+$=†2p‚ÏPœ ïÓòïGÞƒüQôŽ•èÍvë,m·Jï»nÕŒ‡Ø0+ÙÀNi8„ci¢a ¥RCt,œIs¼ÉOÊÊZLêdy0Èg‘Xƒ5Ð÷«\F‚3SºTq,u¿^X«Ð¶k"…ªÈrªÂ>§ ïy™Šì.óLE’>‹è‘&´°(2òíÎõ—=;¸A"ºy.ryh=„¥mêE4¬·’ÁˆÉásI=;n¿Ê·—ÕÅÔfsϯ,u^V ÷8Æ\8™`mî_@òWt!a¬„µ&RÀUÆT¼Ù‹™… ¾;IÒCƒÉÂÒI&IEÌ®[.0™±Vq©UQƒtb+&[íähe‘Yõi¿GèV —dµ@eg2ûöBOš.5ÏÞBAAì^NL䗹ℚmÿGæ†ÞÆ©Ò,+~üŸ¤Vi„µÃ¯ÕÉámT•Žkt=!…«%×Ìíx¾¨R­V7|=C4˜ñ¢ îALcÓ(ñÿ.†wÚÉ©;ø!7eVãvDô”ãýž(ÐsZ3¡ó}ä„…ˆñÙyò’Þ@Òx²ÖšÕÒŽí¶0&±Ûm.í£*¶[’Ïpm·•°uxTŽ^šöÕËû%N´vg^Û2› ¹ÆpôÈ}Ì¥W·!¬ßëìZìSX¤\ߘ.%#G•V‘•(¯ûêølY ÕqåÒù€¾jÀ[”¹bP¹ôBìYì8b£aDW–s…TDG…×NáP¿¬FÇ#?‡ÿª¡Zðîöð±™>Ê%WI6˜Ë NY²åá -þ@Џ£[f±Käí-TüÆ­¨ÈàÇeÇêx„¹&qõìD¦ò!A~pær±Û!q]ÍÊ"ºíœïߥBÈï%î®Á4'N‚;>õ¿Bëè^hqyß´Ï"ÞzÉ¿tÇ,5fk‰³_©m Ü£±7p«n˜©Ðg\3Ë>/XObject<<>>>>/Annots 687 0 R>>endobj -1472 0 obj<>stream +1490 0 obj<>/XObject<<>>>>/Annots 687 0 R>>endobj +1491 0 obj<>stream x¥XÛrÛF}×WôKŠrН"¥¼lÉ–UŲ³!w]©â˰€3­ÚÝßÓ= AɃkËeJÄ¥¯çœîÑSšàß”V3š/)..&ÑWN¿ý|1[­¢ͯgø,ðs~ú–Óúb~5‹®ðîM4ÃÝÅr-›o|÷íæbüaAÓ)mRøY^¯h“ˆù mâË]e.3ûèÍæ+\6"’Ñl 7›äòËAyR•&g MI¦öÆ:ŸÅ޼µ¹£{Š•¡Úi|§Dïê=ù´…Ê åvo ••µs¤LBǃ†1~çžÒÌ$ìyB£éñÃÞ-þ¢9‡} æ³ÑdSq°ÓÎwÂi¢Im‚Ø#+ö»Ëuá(s´VÅNQæÎÓˆ~·õ9n„;JÈ–>³¦ÛÛY Wì‰ßð/HÕ•:ÎÒgäƒú Bâ¹~Òù€páxÈâ?VÕ&¢µFuà¥@Ö¥ÚkG( [²»Q'}±ÎeÂÝ(¶&%Ž °(Yfðk¡8H~]!Xt¢Ž˜q™ÔEÉ0WO*Ëù ‚ïËŸÆããñÉCed«ý8¢÷'•s³DÒ8¶ö²VªøÐp&KSОYýO“}8~ÉÌ|F G7é™|¹U ‚ î8‡N¾*‡Ê}Qý»¾Rq€*>e`àzÈâÊ:›z‚;Xw”!}!+ô`Mæñ.þ¨"BÑ k€ÓUøS~ŸíÞñ ߪ“ÕwwdÄÞÏ>1Ò¸À´ zü$:²Æ×A˜G½"v:‚ƒY(;d% ;@Êo‹@»0ƒÐD®B(¼;QM™gBÎ2Tj¨‰CÎYHÑiZ™·EÔ\ )dEW©Šy¢ò†Pd.®mí€úDcÀÉ=dºý:aÖί+"Ö@0$~˜“fpô|ëmeÕÅæRAÄ‹Fšs«œç‹3ó«™Jb(ò©÷òH¯ ®ÞÁrDo!{GÞÒ¤ž-–àUØ\ŽUqnêèb—àR e'ìÐ}]Oe弄ëØóyE”Fó›%ßÿ;æib±Ðµp|z‰ÈOhòûržÄCñª›oœ{o÷ë Ü}À´Iâd”Û U¨ö5Š âu Þ³Þx]6Rjyþ³®S¸‰—zÕEè"ýku<š/n†Í^ʾàõLœ×äÀk2N_=Ówó²*x-€°]0€êˆÀî”в +U¸ÏŒîEÓ,$¼ë„-³@¬J_C _E ­èl÷X²Û£LÛ>a\ÀpÖ?ém‡ýaQZ‡C‚HK‡Ül¥eG×—ÍÂÒ°\v$~¾c¿¦>|dÍæ+üÅC¶ÒÓºnZ>_G×7sZ,áëÛ‡··85Ù¯ÌÑ;×äEcÚt¹Š&×s­&7ló*ZE$9Ÿre¨Þó¡MfÕbµˆVËë°/flæýæâÿ¡Í¢­endstream -endobj -1473 0 obj<>/XObject<<>>>>/Annots 704 0 R>>endobj -1474 0 obj<>stream -x­XÛrÛF}×WtR”S"xEJ~ÙÒ%vT»²“YWj¹C`HLÌ0˜hîÃ~{N÷”DÅÙdåR•$`fúrºût~=P?š )SVõ“>Þì}|{4’S:Œ’U4LÇÉ`÷TÒôh2Lú4–1/NFXŒO¼8èO’ ÒÓd(«ý$Ý=ñêpÐçÝC–PQÚó^y’³ãs¨õÏ’3^…ÚöIÎöOñœžŸŠÞô|IñIVÏÆÐ˜Ž†ñ츿ñIV‡c¸’öS±*=•UyâÕËÙQï͈š-–ñÙ„f¹@Ò§YvüÖGÓ ê@]šêŒ]yü{ål¨]I”Õ%žßé°qõlªïM¦yÓEž¿šýÙNAw0HúiŠÌòãùð´Oq½5`·Ü°±Ø2ե΅BS§Õpë¬ ®¦‹•¶¡CÊæ”•&»#g©óþïäe*¯D b¬¹UüÄåj¹±^RÿÉØÜm<½›Ñ' èƒ -šGHcñT–tuM›B[Z×®ZÿEåÝá(9Ohë;·¡Ì­·¢iJk ÑÑÛÂ\ßëÚéÛéÏÓÙ÷·ß¿Ÿ};ŸO·>è*ÎçV‡ÊÙùü»ä; -Žï?Hÿ3‡vÐ>v˜éu µ®+ã=0ð¤AÑ?ÏEì+Xë„ÑÙ!!BËî£Ü€WYº ŸGJ‡M*t¹^6%ýôñðÉà€eM¥±wþ5 ÆÞåßÝ’¦ªZ(‰;!¬_÷zžß$®^%ôIS¡sE•©k$‰ÕJ2…¾ayÿ?-Á‹(`¼ãµcºÖ÷ºtë -‘ŽK-¥¾¬á÷mÒE›£I¦!!‰×¹ê%‘Ù‹RW Ý,É»2"òŠíÅ¥"äÑ]<äHHø_´,ûDÜÁTKdÃ4s!Э®k.0oª¦Dæq>^^_ÑBo Õ¡Å»àl6›Äß™õz› E{ˆmó¹ç«E²ƒKŠP•/·õ¢ …kV¡Ó¢Ç UVYV¨hxÊÕ–©Eч뫺†Í9]*k–ÇÖk©£(»8¦óxš†ˆŒY·0„~¯ÀèéDçM¢š˜´rœíLS¨–‚+v«¿BPnÏb}p•^ݼ™¢ø -ø° z™YúÞË2MêÚU -5.îüdÍç¼-  œd‹A’¹ª÷ßò.+{6äøÿeZßÌ>Äg]™ƒ¦·—ä×:ó¯i)ußIe²Úy·„ й«ˆº—׫£ó§¬è¦Ãd2™Ð`ÄcœŒ)hÑþ¶Ü'ÉÙýnÂc vü€ÂGÞÐ -í‹iìëŽ=“œÿ[”Ò2Ãã#¼Îu«È6ÕîÉ­Ö\b9=•Ð[²k±ß“ÞÉÃ,$TÂŒ§½TããôÝñ!³,HÖîEO÷¬6mÖkW?c´ÿ}Nhùw-ŠÁña·}ƒÿÚÀdéÿ"ñƒ«‘6gïÞ¢œ¹.”ÂêºÁ®˜÷{tÕîÁFð¬Ö" ø S>ï{¹³ LzÕÂ5!jì²F¨NK%´ªvæH\}mCO”‰Þ£½[° g¥i±(9HëR+w !ÑñÐWÉy£Ó˜ -sØ…Å€‰ÿv.°âΑ¥âë;¬íqN²-0¬àpW®Ö_hmGúƒ¦•žÇºÜaÔöÖ ·J¸É£%——DŠMk<+f#dŸÃН¼L½Ò70$Z¼:À©± ¤8vz4ž2g°jQn%ÊU$²¾˜˜p³˜Ú0@*Ýle—2¥0”œÒÓrëxIø¯U å¿!œÁ_.ùš„>E>VìËÁ»Á›çF¦’]úï°Ã@Ü- -¥KóÞ(ºúçt?Ëpšç<ŸËÝ…+¢„c‡Ne…Îî Ã`>j¾BSœÕÈqD±Rwh³|+hË,Çó/.j£—'˜›ù*°Ä_»s:ËÕÂ\ÛñBé9‚‡·a_ht#ÔF[Th9(ç vžÍétÊ=µðdCÚf.‡ô#xšïÌ0Éùx×Í\ £Q+.qãFüæXÍ篾B˜c(ùú³g'Œ2dÍ2l©sÓ©xl-\i04ùÜEø‡ré(PÑIÜ3À¾¬8ÁÍ -k a'ô£¬ß Ë=mj|êùTþÆÔˆ8^èwþ(Ád޹++øÆÁi)4$¦6æ~üåÄð`;©ÿLmAš&•I“8ŒI{nÒŠdÒ•a' -Š-Ig…5™*ºU ÃµvÈRàÜK,[o>«Í‚Ùö=fCìDŽpˆÄl¶•§ Z·U6ÅÖЩڦ³A×Ì"\ŒKÜûeÐöÐû —ñ—%=ô-VÅQ—;ªt#;ø„æZ•xËWO8¤˜Âu}"’~?ž-=ï¼¹ø• Tóá~ä:ÛÍ"ƒ_ÆÎS|ã/düièâöò‚>ÔëÝKnâÜ`‹_§F)‹ù~vôãÑod­õendstream -endobj -1475 0 obj<>/XObject<>>>/Annots 709 0 R>>endobj -1476 0 obj<>stream -x¥X]oÛÊ}ׯ˜·*…E‹²¬Û¢…}o’ -¨ßHEZÀ/+r%nLr™Ý¥ýûžÙ]Ê4Q (Š$Ž)rwgΜsf¨£”¦ø“ÒrF7 ʪÑ4™â“˯ŸG‹i²¢Û9ÿ¬(½½½\•´ÍnæÉ ÝΖÉwg·‹d¯ø.ö¡ùr•Ìh¾Zâ÷þI‡ÑJ—øÔŸÍ¿¤Øtž®“9‡p½Içô›¦ßG÷»Ñõ§9¥)íâbµ¤]îÛÒ.´9 ““r¤kÂu›|Ø}M¦4Io°ó.ÿK·T©cáHÕYÙæ’¸þ´ˆûŽ©Æ)Q†»ãÆTê#T)-ŒrNÖ$ Êå¾=R)_eIV:rš„¥ªÍ -þ6Mè©”ÂJÊuýÇ›öb±²ÎÉ’dí à3ö­Ã¥nïuT¯Ò?‘éÚÉŸÈìƒü*i­8J듼þ”Å&išLon¨Kùyv;¥÷ùÄ'&³P*Ïã'm­Ú—çç´90rTœ-(ÓUSJ'©–®°ÎˆLÒó˜FW>ÝÈZÕÇ.¶F5ˆY÷â|þÀ§÷«Àûg¢d?&¿Þ=y€·“,Ëÿ?©ˆ¼+Tý‚ÓŒ<´ey¦½7™s"í#WQgm…"øòÕ$+¡Ê„~ÕµU¹4 „uü —ÊH[ÔÃR2k,(óÞëüÜá«”ÐË­¨ö‚xÞ°T«ŽÀ -´¡¢=å¶ÚãHÔ¹‘À_!¸mÆ™DY¢"2÷jüaÕ­ö Èr@,¯21QÊÁ°Ìisþk Â-*¼±¥Åd6OÖ‹%MnÖP6èò7}BX´¡#(¯“ï’Š‡túé»ýw:0ËG[‹Š!­ô+2ñ„ÿ¢«ã%5%sItŠU€>–ò÷ÌéÉì³Ç·p®ùåúÚCžø2$Ú¯(+UöÂŽ’à‰u°¯0èY_ž -ØÝ^ÜbÛ66ž oæ4¦ÿ²®/…­gh%0xb8¬ÃpœÐpQšB4Ê‘THãí«‡nßm¨ÑœI4‰N’ 4öâ ­¡†ÿ«¨±¾·xÆß9HcV¤µØ£P6Š<bŽÐÖ°G ÖÁ£3¾8€éX2ZÂÄ9I’à=ÃZ&«”Ö³èE3P-¤¾Fg`·ŸÌVIº†‰ƒD+& úN‚®´j–©3ºôŽÿMÕ¹>YZÿ¼~øø¾Ù,™MSlµ†9úVÀz<è²Ô'ÆÂB -4`§Å¶ÑÄ£ßj£Žª%ýöåánó˜8X1wä)_•n-|%ö“œNÊ|‘zྷ¬PoƒFCÊÒ"gž;Ïéž•è—I'Ç1m™ñҹ☯è–Sð§¼Ïz|Å×}¾íÏôUewÊ-~62´È <¨E€ç÷3™´y9Ý6…ü)2‡¤/’d—=zÓ‘¦²œ$ú¯¡½AEp3`®à”¬¡_$î¹"`å`¨Qh„b„E‹3Ð3áË“ |Ì «…µ8°nsoäñ•ç -Ú†¦ -’ˆÌÓÑûl ,¡»ÒjOÏ,ºø ‘°•/`ÒÜ­ ˆ£÷A´VX¾7¿3ÙÖ?ZL/f$pd:ùa!à‰6Rcõ«4ƒÔŸÇ»xÇ{ˆFîðô³u ^hòö þ •½âÖ™kŒ( O.0‚vŸ©Ö§ç3^¼ -Ø>ܳ»±"0°­ƒR¬m‘½ü Ö¹P_7 ='„賉M§[h Ý–ài† óBœV,?U£;Cø=¡Ç…èÐÖ^¥¢TÎ÷¼"Çt EUð7¬ñ“\¯Àü$n#›u ÞtÿõË·íæñ3ë:¡£9 -^k”û*µc²g®vhÁˆÁ¸‚ë 5³XÚP”!Úk[§³úè©,RNÂÊN3•Î1P²Ð †¬µl¾¡#òhTI,ndWž¹? ”ßÌè6ŽfF5Ž 0˜Çì×aºå¹ùaK‘òeW~¾wwýÏh³=|—0Ãpèí0r¹˜²¼30Y/iÄ€;J~ƒØ™m=Z²|;J”-€áj û¨ŠÈ3f»‘?0ÄÊQ‹®ž™Á|Êà1]ó|:ÊÈÕÄ Á¦$é»Þt^A5xÎT¸…IÐ…ÂvÍ*@“…£Öʆ8´t‘W -a^ÆÔ…™ÇNdS…dîDЮyçášß¼º¬k•c(GÆ™‘8®‡÷­/aßÁZpüɾ;I9äEp0@%2á=0Q²­Ãœ!0¼ÍœßÊ "Ë“S>u,©¬,_Ùm|ž©º ] +㮆™çø<€Áê³äÐ,ýhR}3c?2*Y©q,wÛWÓ£óG*.´E„Š~qxèÖO9ìæ•xñ3¤‰ögquð= csPÊ«áPÒ€ÚŸÂÒŽè¦?µÝ òû áÄ„ö‡£ì;A²¢0²Ô%HÌáḏE¢>¹´/N£éâ9ðÅð@W‡×ÚÞØwÞiJŒ8žÃïêØë஀½õʵÇK0„ʵ‚x¥Ö<¢}øª\\ÀS¦A¦˜GÙ°Á‚€Ø/|ß¼ÍûPSì/¥ò´ãÛ<õÜÍ’qD²í0Å0U n ÷ý3Š= y ⛥¤¼æ~óeKþm#LpN³¿p›ìß.ÅYš`1à¬Ð`[p„à Pîú!ïÙ—wì4‰#ë*¾¤s|¿±º¡Å߆,nyhÝÞ=ÜßÑ“Ñß¡1L¯áÓ†ƒŸ¤x”—L–Óõÿ4äΗód¹Xáœ2Ÿófw£ßGÿ‰•¿nendstream -endobj -1477 0 obj<>/XObject<>>>>>endobj -1478 0 obj<>stream -xXkoÛÈýî_qᶨØ´$Ëz( -?·ÖŽ7Vš- /#rhMLrEÿ¾çÞáЭ"ØM@âã>Ï9÷޾ ¨¿š é|Lq~Ôú4𠢦|â_©)=úFƒI4ôó‡A4¥óÑ9þÇ[g÷ƒ º±ô›¼qMº¯_ÍÎîF4ÐÌ¿õétpŽðçIo³qftQñ+û+t\ÁŸÅ¼í-Ÿü8‚§E/±Ú‘*èùáÊiçtU¯_|À•ä ÝqxÿtýWr+…z.zµ3ÅKc«‚kØ‘OQ¢á0"6+§Ã1Zr h—çË««ÔgÄü«”¥ÔßjíªPÌRW¥Ñ¨®”g·Š¨ZùwÇIÚ¢°‹K³®Þ…uþó°ök)íóaùô¹`N«2^! ô -A.lB&%@_R[ã+_ŠQð¥2¸–8¾˜bö{C/GŸŸçHÒ™¤e( É11`~eËm[êö‹·RŸÏ¢ñ!ü·íkr{—@¨ƒµ6ü&dàÃ1쪺„ÜØºêâlkk¡[ëØ¤Z{$s.;c£ÁµH…T¹/¥2a¶ »Ö¬ƒ¼€2­n®#ú²‚3¸r…ˆB»¼1÷Í·÷ §:>ýPc‹ŽÑ½è)Yºþ‰ç™_xJ|à²qÂ=ˆõå] Å\­(­q…5zñ!L†V×õ‹µX­8Bg#ú/¶[Ù:KÐÄ\çKf'ïô\8(µÔ±Ô/ð)wpQ°ó—Árï¨ÁX7¢»DÙŽLyÌJÙ6ƒ4ùSÄ!³1óÛ»D…›¹žh„ÕçýR·jÇ ^áâîúlÆ‹{¸ò;…`Ê*TZ²¥ñËÞ›<ðkAlLJ3M \톖*máWZ -–¤…o–Pmä uDT¸Ì·4ú§ÐäX&|£îܬ,0’ž b½fåc²5è‚"Z«¸ßUf®3o-l„q<â›uÛoü ÝñË4¤”g‹?í±d{aÆÁW¡h¶ƒE¿¯Ãˆö!ãøZðÀ—åX-±?úX¤x¥ã×÷³Žh6û[8ÍV&Ç”–ú(B]T rk="îÔn<£eyzuœîi›ßÀŽ[Q8ÆžZâ`Í\ -ƒÃ­7ç¿sæ ~œ‡¨=9®³¿]¼ªŒW·­Œ¼œPi^VÕ¿š@çahñ°‹¹¥ý$«Yƒ1‘Ÿ8ü%:5…ðÐõwܽÂ^§8r…:BâšIí·^ûQÙFmw0*Àh4¢ Rµ¢ëCk–“i3QXK§Ó!ñÛI*ÛÉóåÃÕ%=•ö+‹ŸQâš÷ 5RÕÁ¿ÄLÏétÒ—…äO-´£É(šŒ§~]°áÛùÑoGÿÑMÇendstream -endobj -1479 0 obj<>/XObject<>>>>>endobj -1480 0 obj<>stream -x¥WkÛ6ü~¿bà `ë,ÙçG€~È¥I{@êæá -â  %ÊfO‘Šsÿ¾³¤(ûì4 ÒÈ6ÉÝ™¥>Å4À_L“„†cJ˳OO¢ÄËq4¥ñhøÇË›øŠ~Öôúl èj0‰†4šNðœà-)ÿêþáU]µûGûýÃáðt?f§?\/Î._Ì(Ñ"Gzã)2ÂòÁ€éÅU4’ˆžé*Wë¦VéŠn*cë&ågó„ÞJkUµ¦fKo´(ùñ‘5½ªu® +¥rÛmÏðIGš—K‰¥˼ªžéîãÇAü>+U¸ÏŒîEÓ,$¼ë„-³@¬J_C _E ­èl÷X²Û£LÛ>a\ÀpÖ?ém‡ýaQZ‡C‚HK‡Ül¥eG×—ÍÂÒ°\v$~¾c¿¦>|dÍæ+üÅC¶ÒÓºnZ>_G×7sZ,áëÛ‡··85Ù¯ÌÑ;×äEcÚt¹Š&×s­&7ló*ZE$9Ÿre¨Þó¡MfÕbµˆVËë°ÏoØÌûÍÅ?.þ¢¢³endstream +endobj +1492 0 obj<>/XObject<<>>>>/Annots 704 0 R>>endobj +1493 0 obj<>stream +x­XÛrÛF}×WtR”S"x)ùeK—ØQíÊvLf]©å> €!10Ã`¢¹ûí9ÝCPg“•KU’€™éËéîÓ=øõh@}ü h:¤Ñ„²ê¨ŸôñfÿëãÛ£ÁdœÒé`œŒ©¢áh’ vO%ÍŽ¦Ã¤Ocl™ðâtŒÅøÄ‹ƒþ4™Òxtš eµŸŒvO¼:ôy÷%T4êOx¯<ÉÙÉ9ÔŽûgɯBmû$gû§xŸŠÞÑù’⓬žM q4Ƴ“>þÆ'YNàʨ?«F§²*O¼z9?ê½Ó`@ó%Ã29›Ò<Hú4ώߺàhT¨K3‚±+¯œ µ+郲ºÄó;6®¾“Mõ½É4oºÈóWó_  Û)èI4B æùñbxÚ§¸Þ°[îØXl™éRgB¡©Ój¸uÖWÓÅJÛÐ!esÊJ“Ý‘³Ôyÿ÷Nò2•W"‹±@ÖÜ*~âò µÜX¯)‹ÿdlî6žÞÍéôAÍc¤‰±x*Kºº¦M¡-­kW­ƒÎÿ¢òîpœœO¦´‡õÛPæÖ[Ñ¿4%‚µ„èèía®ïu íôíìçÙüûÛïßÏ¿],f[t5.V‡ÊÙÅâ»ä; +Žï?Hÿ3‡vÐ>v˜éu µ®+ã=0ð¤¬öa;ÿ,"ÚPqD!Gj{%SgêÂmÀqòêúÀ­Åñb! ÆÁ¹ÒïÑ~•ме&`¨ÖØß=*]rx + bô„ò.ײgï2rÉ,®Í–±À²Š / ä °É„Ÿ èŸçŒ"ö¬ÀuÂèì!‚e÷QnÀ„«,݆Oˆ#%‚Ã&º\/›’~úøø‡dpÀ²¦ÒØ;ÿšcïƒòƒƒïnI3U¥JâNEë×½žç7‰«W }ÒT(Ä\QeêIbµ’L¡oXÞÿOKð" +˜ìx혮õ½.ݺB¤ãRKiÇ€/kø}›tÑæh’‡iHHâu®zIcdvZê*¡›%ywBFD>B±=£˜ T¤‘< k€‡iƒÂ _à‹–eÿ€ˆÛ"˜i`‰l˜e.ºÕuÍæMÕ”È<ÎÇËë+J5ð6ZZ¼ Îf³IüY¯· R´‡Ø6Ÿ{¾J»\R„ª|¹­e(\³*=¶‰¨²rȲBå@ÃS®¶L-Š>\_Ð5lÎéRY °„8î´^KE ØÅ1}œÇkÔ4@d̺Ô8ú½N¢§7‰jb6ÒÊq¶3M¡Z +®Ø­þ +A¹5>‹õÁUzuóf†â{(àÂèefé{/Ë|4©kW)Ô¸¸ó“5Ÿ[ð¶,€r’¥ƒ$sUï¿å]VölÈñÿË´¾™ˆ5κ2-Ìn/ɯuæ_ÓRê¿“Êdµón  sWu/¯W=FçOYÑ “étJƒ1q2¦ uFûÛrŸ&gô»)Øñ +yC+´/¦±®gP8öLrþoQJË {Œð:×­"ÛT)Ü“[­¹Ärz"*¡· e×b¿'½“‡YH¨„O{©ÆÇé»ãCfY¬ÝŠžîYm֬׮~ÆhÿûœÐòïZþƒãÃnûþµÉÒÿEãW#mÎß½E9=r](…Õuƒ]1ï÷è†+݃àY­Eð¦|Þ÷rg;:˜ôªÔ5!jì²F¨NK%´ªvæH\}mCO”‰Þ£½[° g¥i±(9HëR+w©‡èx莫Æä¼Ñ‚iž5À‹r£¶îUZÒåK}àÞ• má„Ń÷dÖÁcÒÛr‹ÎˆACó¨Ë¬U+>˦£'åMÆù¹Æ]Àdà} Z…†“6<}L…9ìÂbÀÄ;Xq'Edi…øúk{œ“l +8Ü•«õAÛ‘þ iÎc]î0j{ë†[%ÜäÑ’ËKŠF"Ŧ5ž³²Ïa ŃW^¦^é-^àÔXR;=O™3X©JË­DY¢ŠDÖ÷nSH…¢û­ìR¦´†’sBzú!Bn" ÿµ*¡¢ü7„3øË%_“ЧÈÇŠ}9x7róÜÈT²KÿvHb‚»4  PZ±4Îö³ §yÎó¹Ü]¸"J8vèTVèì2 æ£æ+4ÅyG+u‡6Ë·‚¶¬Ár<ÿñbZ½<ÁÜÌW%þÚ˜ÓY®æÚöˆJÏ<¼={ªÑPmQ¡å œƒFØy6§oÐ)÷Ô“ i›¹ÒwŒàiq¼C2Ã$çã]7s%Œ>D ¬¸Ä]ð?˜ÿa5 \¼ú +aŽ¡äëÏž0Ê5˰¥ÎM§â±µp¥ÁÐä;pàBÊ¥£@E'pÏtû°â7+¬†Ð²~ƒ.÷´©ñ©çSù_S#â<x¡_Üø£“9殬à§¥Ð\<˜Ú˜ûñ—Ãí¤þ \0µišT&Mâ0&í¹¤ɤ+ÃN[’Î +k2U&t«@‡kí#¤À¸—X6&¶ߤ>«MÊl{€³!v"G8Db6ÛÊÓ­Ûˆ*›Îâ@kèTmÓÙ ëf‘.Æ%îý2h{è‹Ç}Š…ËøË’ú«â¨ËUºŠƒ)¾!„¹V%ÞòÕ)¦p]Ÿˆ¤ßgKÏ{oG.þF%Õb¸¹Îv³È`„/cç#|ã/düièâöò‚>ÔëÝKnâÜ`2Múg#êNûç¼ÿ4™"˜-ã½Ræ4®;Ûd4ã{Þtr¿Nû,æûùÑG¿dòendstream +endobj +1494 0 obj<>/XObject<>>>/Annots 709 0 R>>endobj +1495 0 obj<>stream +x¥X]oÛÊ}ׯ˜·*…E‹²>o‹ö½Ij v|#i¿¬È•¸1Éev—Vôï{fw)ÓD¢(’8¦ÈÝ9sΙ¡~ŒRšâOJ«Ý,)«FÓdŠO.?¾~-§ÉšsþYQºX\®JÚŽf7ó䆳U²ÄÝÙb™LãßÅ>4_­“Í×+ü>Ã?#é0úAé +Ÿú³ù—›ÎÓM2ç®ïÓý¦é÷ÑÝntýiNiJ»‡¸\¯h—ûð¦´ËÆmNÂä¤éšpEgÝ&vßG“)MÒì¼ËÇÿÒ-UêX8RuV¶¹ä®?-ã¾cj„qJ”áãî¸1•úHUJK'£œ“5 G‚r¹oTÊWY’•Žœ&a©j³‚ÿŸMz*¥°’r]ÿÁñ¦½X¬¬sr…$Y;(øŒ}ëp©ÛcÁ{Õ«ôOdºvò'2;„Æ ¿JZ+ŽÒú$¯?e1‡Iš&Ó›êR~ž-¦ô>ŸøÄd¶Ê@åyü¤­UûòüüîŒg ÊtÕ”ÒIª¥«¬3"“ô<¦ƒÑ•F7²Võ±‹­Q bÖ½8Ÿ?ðéý*ðþ™¨YDàɯ·O`Æí$ËòÿO*"ï +U¿à4#mYži/Á dæœÈpëÈUÔY[¡¾|5ÉJ¨2¡_umU. (a?È¥2Åõ°”Ì Jż÷:?wxÄ*%´Ãr+ª½ ÞŸ7,•Ū#°m¨h@¹­ö8un¤ðWn@„q&Q–¨ˆÌ}…@5d«}² Ç«LL”r0,sÚœÿ¨0dË… +oléD1™Í“ÍrE“› ” ºüMŸÝÓ”ׇÀÉwIÅC:ý€ôÝþ;˜å£­EÅVú™xB‰ÿÑU„ˆñ€’š’9È$:Ū@K ù{æôdöÙã[8×ür}í!O|mŽW”•*{aÇIðÄ:X„W˜ô¬/Oì·Ø¶M£gÛ9鿬ëKaëZ  Þë0'ô\”¦…r$Òxûê¡Ûwj4gM¢“$½xBk¨¡Ãÿ*ª@¬ï-žñwÒ„i-ö(Ô€"Ϙ…#´5ìÑ‚upÆÆèŒ/`:ÖƒŒV£p'qN’$øAϰVÉ:¥Í,zÑ T ©oÐØí'³u’n`â Ñš ˆ¾“ +­šeêŒ.½ãSu®O–6?¯>¾‡o6KfÓ[m`޾°º,õ‰±°P‡ Øi±m4ñè·Ú¨£ªEI¿}y¸½L¬˜»ò”¯J·¾ûIN'åŠH¾È =p_ˆ[V¨·A£!ei‘3OŒçtÏJôKȤ“㘶ÌxéÇ\qÌWôË)øSÞg=¾âë>ßögúª²‚;å?ZäÔ"Às ‰{€™Ì‚NÚ¼n‚BHþ™CÒI²Ë½éHSYNý‚×ÐÞ "¸ 0WpJÖÐ/÷\°r0Ô(4B±¢Åè™ðåÉ>憊ÕÂZ X7Œ¹7rŽøÊsmCSIDæéè}6–ÐmiµÇ§g]|ÐHX‚Ê0iîVPÄÑÀûƒ Z+ ,ߛߙlë-¦382ü°ðD›G©±úUšAêÏãÇ]¼ã=D#wxúÙ: P/4y{ÈÿÊ^qëÌ5Fˆ§A»ÇÏTëÓó‡Î/^ lîØÝØGXŽFŽÖÁ )Ö¿À¶È^þë\¨‚¯†ƒÆBôÙĦÓ-´…nKpÈ4Æy!N+–ŸªÑ¡ üžÐã€Bthk¯RQ*ç{^‘ã:†¢*ø›ÖøI®W`~·‘M‰ºoºûúåÛöþñ3ë:¡{G1r¼Ö(÷U jÇdÏ\íЂƒq×jf±´¡(C´ï­mQœÎ꣧²4J9 +;ÍT:Ç@ÉBƒ²Ö²=ø†ŽÈ£Q%±¸‘\yæþ€P~[0£Û8˜Õ8& À`³_‡é–çæ‡-uFÊ—=\ùùÞÝÍ?£Íöð \ WÀe K´ÀÈå>`ÊòÎÀd½¤î(ù bg¶õhÉòí(uR¶†¨1ì£*"ϘíFþÀ+G-ºbxfó9(ƒÇtÍóé(#T3›’¤ïzÐyÕà98Sá&A 84 +Û5«MŽZ+âÐÒE^)|„ySf;8‘M’¹gA»æœ‡k~ ðê²®mTŽ¡gFâ¸Üÿ}´¾„}gkÁað'øî$åÁ}À•È„÷ÀDɶs†Àð6s~+{4$ˆ,GLNùÔ±¤²²|e·a\ðy¦è6t®`Œ»fžcàCò« Ì’C°ô£UHõÍŒýlȨd¥Æ±Üm_5NÎm`¨¸Ð*úÅà¡X?å°›WâÅÏ&ÚŸeÄÕÁ÷4ŒÍA)¯Jx„CIj +K;¢›üÔv/Èï'„ÚvŒ²ïÉŠÂÈR— 1?†“1SĉúäÒ¾8¦‹çÀÃ]^k{cß]x§)ü16âx¿ ¨c ¬ƒ»öÖ[(×/Á*[Ô +â•Zó\ˆöá«rq?NE˜™beà b¿ð}|{ð6ïCM±¿\”ÊÓbŒïþ©'àn–Œ#’m÷€)†©j¨@pKø»ïŸQì`ÈcÞ,ýë å5w÷_¶äß6Â÷ç4û ·ÉþíRœ¥ FÎ + ¶GÞ5ஂñž}yÇN“8²®ã«A:Ç÷ëZ.ñmÈrÁCëööáî–žŒþaz 0ü$Å£¼d²šnþ§!w¾š'«åß à”yÊ›}Ü~ýš°¿lendstream +endobj +1496 0 obj<>/XObject<>>>>>endobj +1497 0 obj<>stream +xXkoÛÈýî_qᶨÈ´$Ëz( +?·ÖŽ7Vš- /#rhMLrEÿ¾çÞáЭ"ØM@âã>Ï9÷޾ ¨¿š é|Lq~Ôú4𠢦|â_©)=úFƒI4ôó‡A4¥óÑ9þÇ[g÷ƒ1ÝXúMÞ¿8&ÝׯæGgw# hž²«ñtBó„à®ß§y|b*¸‰µù®]6+¯(¶E¥Lá¨ZizÔÕÕýÇg*T®É¦r-³/¶ §ËﺤÊRí4™Bn¥¶ÌUÅ.ðçùöÓn?Eæ_út:8Gøóäd³qftQñ+û+t\ÁŸÅ¼í-÷~ÁÓâ$±Ú‘*èùáÊiçtU¯_|À•ä ÝqxÿtýWr+…z.NjgŠ—ÆV×°#ž¢D!ÂaDlWN‡c´ä@Ð>".Ï—WW©ÏˆùW)K©¿ÕÚU¡˜¥®J£Q])ÏnQµò´E'`—f]½ ëüçaí×RÚçÃòésÁœVe¼B@è‚2\Ø„LJ€¾¤¶ÆW¾£àK x¨¤× Ï…Äü³ú‡ŽëJ'´ÜJ¢¾¿]¦c^z;×)1®4-m.÷PËXße?úyöN Òá®pC~ÑÕ}‘Z„*-ñøÒ-¼·„øo²²@º”«éáûÜñ$€g›RJ!×¥MM¦]DϦˆµ,µ[Ûä`K3…%P*lˆGy¯:Ns ð2\K_L1û½¡—£‡ÏÏs$éLÒ2” ä˜0¿²å¶-uûÅ[©ÏgÑøþÛö5¹½‹K ÔÁZ~2ðávU]Bnl]uq¶µµÀЭulR­ž¸çÒ1ácw­ªUDw@¸þ¡òu¦{"HÈšµX¤¥N‹¨ ã>åzŸîˆ׺-,+‡ðB@¼%þnØjÓÉ»ú^¿ƒ x—ZOªˆ6íIä!Zwð’Yûê~ýññîþ—èé㯞k›™Ø0ý׈îYÒAçÀü^#Ìz/ ò :9ñyžÝÍh•L!—t:yÈ\DÓhѵ-RóR—ª2ÐòûÂUeóg÷&êÆ–¯$¼wœÃÛ°B3†<«d^äHP4Õ¥fz-ñ¢ÆìPôts-q*ô»q4ûáEµ!:Ój'$ÊC†}a¶úþ¤œC( Á|¹]K¬x”iÉòª$¯ÿëF@pv7£ötMyÈ#þÅp<‘yò–›Ülâ[àg·-w+Þ×óÎ9ÊU¼2D ¬]E*ޡӕûC^O‡hÈì-g âRc +€ŠžU¾ôÕܘ,#•9 /ðÄäz‹p¯´÷‹&çá0öyf΢éPTÃa*”¦ÚRn¡@LÌ\9žËÒe§åBÀiÔ¿˜5}ϘkŠR½Asæ›ì ¹zECÇüRˆËš‹7ÀÑåY‘äH+d±d¼°´R¢—ªÂ6)èІYoœ«eÕÙ¬4¾—aøñh_YͤtS6)Ò”ïUi³ o³{€Æ±Evº¯5˜´üØ eS;ùŒÝÉ_ +ËÛ‰$ƒ}(Ûî[mÖ6i*ŒJK³ŽW…‰U+Î1Ñ;®žÿ}ùé¶ãKÆ×vã ¹Ö·ÁÞ||¸¼ìšàvw]ÉBØ}PÀŒs€ˆ5C–_éô]•Æ‹ô Ì@ʰTem!‰¬ͺvW5Û`̓AßS|XÇðûÀŒŒqîzÀDjîµÝó"çP° É£¾ÏÉœËÎØhp-RaUîÅKiL˜-È®5ë / L«›ëˆ¾¬ Ã ®\!¢Ð.DoÌ}³Äí=È©ŽO?ÔØ¢ct/N”,]H¿çyæÞ„¸lœpbA}yCDq—A`+Jk\a^|¡Õuýb-VÇD+ŽÐÙˆþ‹íV¶Î41×ù’ÙÉ;=J-u,õ |Ê\ìüe°Ü;j0Ö¨Ã.Ñ@¶#S³R¶Í M~ãqÈlÌüö.Qáf.„'aõy¿ÔÆ­Úq‚W¸¸»>›ñ"Æ®üN!˜ò„ +Õ–licü²÷&üšGÛñáßÀLÓÂ×G»¡¥ŠE[ø•Vƒ‚%iá›%TùAB.sAÇ-þ)49– ߨ{7+ L£¤Á‡'ƒØE¯Yù˜l º ‚È‚Ö*îw•™„ëÌ[ áCøfÝöhwü2 )åÙâO{,ÙÞ_˜q0ÂU(ší`qÂߎ×aDûŽq|-xàËr¬–Ø},R ¼ÒñëûÀYG4›ý-œf+“cJK}¡.*¹5Šwj· +žÑ2‹<½:N÷´Ío`Ç­(cO-q°f.…ÁáV„›óß9s?ÎCT‹9®³¿]¼ªŒW·­Œ¼ô¨4/«ê_‹M ‚ó° ´xØÅÜÒþ’Õ¬A˜H ƒOþšÂxèú‚;î^a¯S9B!qͤöÛ¯ýЍl£¶;`´ŒQ©ZÑõ¡5ËÉ´™¨¬¥Ó鯸í¤?•íäùòáê’žJûÈÅÏ(qÍû…Œ©ê`Œ_b¦çt:éËBò§ÚÑdMÆS¿ +ކløv~ôÛÑÿâçÇendstream +endobj +1498 0 obj<>/XObject<>>>>>endobj +1499 0 obj<>stream +x¥WkÛ6ü~¿bà `ë,ÙçG€~È¥I{@êæá -â  %ÊfO‘Šsÿ¾³¤(ûì4 ÒÈ6ÉÝ™¥>Å4À_L“„†cJ˳OO¢ÄËq4¥ñhøÇË›xL?kz}6ˆt5˜DCM'xNð¿–”uÿð*‰®ÚýWûýÃáðt?f§?\/Î._Ì(Ñ"Gzã)2ÂòÁ€éÅU4’ˆžé*Wë¦VéŠn*cë&ågó„ÞJkUµ¦fKo´(ùñ‘5½ªu® i/þFˆ1Å1‡H’(ÄÔO¦Ñh˜ ÖÅü÷Åó~Ѩ]tÑ´m!Ól·º¶¤ e*Ïe-+K¹®éUÍþ$Qeü4_D|R?Dçq³‹k‰Å{MÚÃInôެ¦´-MRÝfböH¹x‘ySðZ#¥Ûv“ÒB!Wé€úñ FHUn Yržv# º(…mji\ŠX—ŒÑ~¬ó§µg J4—–QüEÚ›*× Á§Fœ¤ù0,ª?b|ZKwSµL­®ï¾å|ÚqåÛ§¿½ÔkP÷Í«gËí6*Ý0¬PH±կʠõUZ4Ç?Á•ÌÈUÂ- €“Îó å€Ñ1šIV}½`š˜E³È+5ŽX™Þ÷dË9_¾;àßÄnÕ…½{üWÊûu¡W¢ø@è¹DS®"–¾óÌuQè¶¼à’äÁü_>~âhæ-¦ŸŒ|Æ…ëÈVØ ýDKü (8rï?2—ºO¼|¹<·\–Ðs»ƒ¿üJy Ë­Éd.šÂÛ…eJê­ó19 ä@)—ÁJcTzu÷ÝŽ$˜%`¼»‰»u ÇaÊ-ÿÅQÅì„¶W}±Ÿßÿ[ÓÖ[ã1^h¦C¼aÄÑ0ž² p+»~Êï cà&mø¶ì®­œb?léO¸;„+Î}$àed4E“ño;8s4æPÏg¯Ïþ •gÑendstream -endobj -1481 0 obj<>/XObject<>>>>>endobj -1482 0 obj<>stream -xXoÛÆüߟb! H´$K– xHêWÀh󣌾‡*(NäIº˜¼côÃwöŽ'©tRM`X6ÉÛÝÙÙÙ¡¿œi„ÿcšOèòŠòêì çÙ$þ–?Œ³kºšÍ²)_¼¸OéÖÐÏg£lDWÓYvIÓë9>Oðe%­ÏÞ,Î.~Ñ -Ö8äê -ÂÝ£-òóÒlŒ¦Zø-½¢%þ}÷ÓrY[³V¥tøéþÅâ3žŸÒxÌL&Ùd4¦ádžM/'8éü޶âQ’6žò­ÌdA»­ðÔ×ÒSã$]lM%ûTé¡Þ-p]jêÅÈ|±GÊ‘Ãí‘X™G™Å 7mÐaŠzy™]OGq>Ë®³I6ÍèW¥ ³stó?ú³¦Ò7õ_Ó!ã+ †'åà‚3³´VÖyB"Ž”æäާ ÈoP·f·¯œen¥ð²„T^SÒ:ê}ôÂzz+uÓplD_¢[ˆØ»•îÁ›º7 rÜXQ¹ ]Pïô[cŠ^F‹­V…²2÷Æ*`Å7 e)7ÚKííTYÒJR%í†qVè§Yš\”¨HK `qnFùËårñ:í1C¡E%׬œüÒ â´âAéMˆSÀ… ùòÚšŠ¤È·ýß4à!Q-Ö›@Îò·MiV¢üD¦ö!³^mQ´{râ_Ñ^:Ém °üÚňZ¸ÛIí”WxøU'¸6 ÚiÑŽ_ ¥=¾¥V^”TJï¹iøU•7À?½'³•¶úyB"tëH‹@îb mhW˨öW±–Vê\ºŒîÖ´7 úæÐ7CR¯Í%ØÈäGä“›À94g)Û©ÏŒ ¡#Ä6{ûúx Ö…๊vVyœŸ#ºãˆ~ óC¡ èËa,Þëõaf€-ß*-´Ás†¾GÖ”ôAhYÒøîÜG¢:Y‚¸áˆ{$—fAÅ*ÃDòÕN ’×@ù-yÄ©€ÀQ1ÝN ÈpçÿþÇ­%¡ß!7¿3Ôfb榪ô”µreŒ!Zi -ÇqøÍ¿¯㊒Pý÷¥ -C`,½U¹5ά=µ—ýÁ‘†'€Ž,ˆhPÿ'³á‘CÊÐÄ[Ã4í!ÐPÃ5ÏJÊ@}°ªvOx ‰ýcÝ`ϱG£®à¯0óÿ䓈áp2£ál‚=u»×}5¤á]P‚†§¡£a§hA+…ý¸a‰‰Œ€àäÕüefâÚŠB#ÜvEª"ur1Иž5öÁ‘fϩ̃4®ÌSXCAâ~cýÀ4D ÉLÞOÐPç¥(8§Ïë|ç±Oàú¾–,¼Üu'ª !ãÝŒGRÀå9Æ,ˆ3n´éÒÒÓ#Ÿ”óQVRXØ‚rR#'à€hp¤ö*ç­~‚/ƣ̀ÇåÀ¥.eâë0¦ñþNè–x¡*,׺Æfîñ˃°!bƒÓâ}Ñ‚ÚmÚ{t;àÒßÂ)­$ŒŒk‚¶¯›²ÜÓ£(Uí #š¸xsÐòX¶âµS…Mï/póáX(ëóØm`€VOÂËq¾à– g´\KKͱäð© £ôý§]ÔÇ¢ï³Â“¼ó(³w¢¦Fþ­ã)¢¥„ °Ä›²`c$VðkTùÄ[$æqpO`%òê—מ\-sµV¨´edëPÙ÷‚PwX`[Õš·m+Ô§fïï<á7Œ`2ÑT‡·–³ šÏ”ügR•K1#x½ ëc4M(MxêSôÀf½¦åyÛO9Ý÷P¤¢‹žª°fE14AVÁlhz9\¾f0Òì¨,aBZŠÅj`B‹c`Á[ ^lÈfŒe¼Å3¦ÞiZ¨6˜àP^2k‡NŸŒé1‡‹‘i¦–{UÈ5@ûš©N@žxb-w’œêàÑ8rtÉlñº-¼‹*Ö ÃŠI]ŸæNpn›y*”í¾‹¦‹p)­50·‡m»»™uàk³#ê'ÍŸÈ”…7 rUCª0LG ãŽâ»™8VVî²E?£7ÂAG!D‡ýÕub³Œ·ZÉj¶FMûoß%C˜{­žâ‹X-m¥\|«á$ ÿ°ñ[U“U›-’mj3êD>Nz¢Â =p -éß5 C`ªö5mjÍ6hËÈ…4ìèÓtAÖ#r­jáLi€TÁ[IÙ8™ð¢ {‚Ã4iùtx_ ½ß6™Ç !bÞ -ÅîÞ°žõ Ü!ŸøÊËÖ¯^üpݾe¯ðgƒëKºšÏ²Éì’½ÝÇ×oß¼f?÷™Íý­É› -ËRðÛƒ;L ç#þ«BûVί -kµil¸‘î` -l“‡W¾—ürîp5ýÒZý{^ÈÂï%ÁìMçÓl~u¿VàÌéœCýwqöóÙŸÎë¥Ñendstream -endobj -1483 0 obj<>/XObject<>>>>>endobj -1484 0 obj<>stream -x•W]oÛH|÷¯hX¬H´¾,ɾ'oœìgû²í‡(0FäHœˆä(3¤ýû­žR”¼ûp âØ29Ý]U]Ýóýb@}üÐtH£ ÅùE?êÓh4Â×ñlНCü3’Vßi0†þqþfÍh8æ¯xëêa0¦{M¿_ü2¿¸ú8¦Á€æ+>r2›Ò2UáN5r-UFò‡ÄzmDÞ%Q$ÈAoÀ-¿Ø§Þpù½ßþýá¯ÿy÷øút÷þ·‡ç‹Å‹*½·‹ÅûÊY”ÿ•Æ*],ŸŒ^©L>*[žsÐíU–Ñ -ï"á5sèÒJ’"NÉ ,ŸD™Fô¬KéÒŽuQâËh•©²´‘Z\fj#³•š–Ò!€ÌëŠãÛÅb_gŠR93äÌ -‘ËÅ».Ÿ\P"3¢ð¡­ø.;¦ÂÈï•22qY:¨[}ùðC•5¶¨ÜˆÖækCÊÍЃ9ô¼\}œY8†ú×Ñ„¡~¹ûãùáùW®ã(œKê¡6À$}¢,NéüùÅz  9 Uh‰Ÿk—³¸tнsÜþ?Ø„ÝðÙ9)&˜¥b'AêT¾Õ¦E ž6Yd„\´ËE”`7¥ÞXWEHÍN¶¦¤\UÔfæŸË=-0FHÐRÄ›jËr^N5è]Nê,¬²…”‰Lï‡>Œà/ ¦pý0^Öu+pÿ‡5ÚˆÖ¨NȪÃl‰h[„œÎöä‹AìÖª÷d·2V+ËÔèj:[9é¾­€Ka ‡Äp ûX^†Óh6rëË—lg4è‹j}3ÅHTÀ„HÊÚ‚]gCQ üqÑóªZ,Róè{òecô9ÆWÐnæÒSŠz]»¡ŠX ÆCe -à 8Ë)˜W²ÿ¼9cL˜L a¾¿¸Ø_ÏP²©EªÐ^‰†F^ ]¾Âä4â`·*˜¤¥ô Ì po#Htì œÏtvðÛÚzl¾OQ°Êãüøp^‡jnietÞΜ\®a—yK ”€q·W௣)ð“/vð,±Dg±I0Žu+} -;ÙmmĉQ;Ùauá]›ê*KXBl¨¶“ÞvΪ ®£Qv ~;4fó.â¹UÄ|« -ÏLÓ‹…Üס™¥Î±‚Ú@ê-UúµŠhC´^Ý€×f {Eé% áéè»ϧ2ƒƒbÞ„ºyËa©0ÀKgæY™ŒnfuC‘+@` ߆…a/æíÛ‡a:»0%žÊL¸U`UpTç¼{£°ín¥É•å÷Zß׎õU•egáC¾@ÇMNžŠ¬¿Pí4ì:o{våZ'ôW§Ö3>á,vƒ¨ëE‰[‡Oqm:IªÊEQaNC­+EËýŒxÄoËÈÁ‰1 -*¤­r¨fYyxÎÂ3‹¥ä}šmÑ;=1D5‰‡.”º4¸I'öo 8&'® ¥¿¿¹Æ®Â´ñ΀„ ȺàÀôp^”X·NýgÄ¿u9B -¼ùcä0žÇX¬±”Ú¿jžO?ö­Ý~šÖ´7työø<,å|# ;%CS`I‹è¡lèÜm·™ -Ãà^”Âo¤®W±Â·Ú³š;÷þŽÀëìóq³ýìîO¸„Íîá7Û“i¼­ÌVŒy¸{_߇­YÆí¬¾…Mp¿Ÿh2E“É5ßÅ>ß=ýrÇ—§o¼ìßë*Ïs»r¾½Ax¥7íßðó~LÓ{]¬Ôº2~>à†o*g:ö–>‡Q…æ°ÓüÉÎŽ ͽd<GÓÉÌßâÇ3õa~ñûÅ_?>/XObject<>>>>>endobj -1486 0 obj<>stream -x}WÛnÛF}÷W M‹–dÝ Nœ¢jÕ‰UAU+re±¢¸Ìî2²þ¾gfIŠa$p"‹Ë¹œ9sföëÙø;¤Ùˆ.§ïϾÒp·üaÍi:à^ÜÇtcèãÙ ÐørÍh<Ÿáó?VÓF\NÆÑ¤ûà%׃QtUžÃ/›³õÿ¹¿œF㮓w˳‹ßÆ4Òrƒ¦ó-B°ƒ-ãW ã·iþDª(´²Ž¼¡µ&çÕ ¥9ù­¦èþæ’Ôê_ÏIåxä¥-ŒÓ”:ŠKkuî³#•ù.7‡•6Ä”:Wâ´rtÔ¾¦Ò¹„ßEUí´ë¦ôÈ\Þ=†tÙ9G+…à\øm¯¼ç€…ìV;“}ÓÉ?u^5gœ£Nµá— “ôI;ðAW˜<ÑyÌyÂו6¦Ì“Ð* +UyRÝsZ¶"@Vq¦áÎ4±SEAYcn0 ŤPu ƒé7«6`wÐ}Àˆ]EfGêÒ‚1ÛMÃsî–m1JÚ¨,“Õòññ ã.ÐNv¾¬Ó#pvìzD.kQ€‰Ì1,‘©À¯œšWÎÜ5M±à[ —@Ó0f÷¥ÛäùQÊ:÷3”¯Bí8=ªŽÍ.IÄåFw/âÛ ÷;¾3âšÊF¹(ì¼ÕE¡àŒ@ñ(öÞ!Ýlp½u†{(×7ÆðÐùÅá½ô;Mã/Ø>9 ä@)—ÁJcTzu÷ÝŽ$˜%`¼»‰»u ÇaÊ-ÿÅQÅì„¶W}±Ÿßÿ[ÓÖ[ã1^h¦C¼aÄÑ0ž² p+»~Êï cà&mø¶ì®­œb?léO¸;„+Î}$àed4E“ño;8s4äPÏg¯Ïþ'?gÐendstream +endobj +1500 0 obj<>/XObject<>>>>>endobj +1501 0 obj<>stream +xXkoÛÆýî_1PÈ$Ú’%?I} mmdô^TA±"WÒÆä.³»´, ?¾gv¹”J'Eцe“Ü™9sæÌ¡¿œLèÿ't5¥‹KÊ«“/4¹Ê¦ñ·üa’]Óå|žÍøâÙÝdN·†~>9ÏÎér6Ï.hv}…ÏS|YIë“7‹“³Îé†kryáîósZä§¥ÙMµð[zEKüûî§å²¶f­JéðÓý‹ÅgºyœCSp–²½ +ùìÀÈ:Bl³·¯ß—`M!Qž«hg•Çù9¢;Žè·à0? +‚¾tcñ^‡¬»˜¶|«´ÑÏúZSÒ¡eIà»s;`‰êd â†#î‘\šE« ÉW{E0H\å ´ä§kDÅt;‚"ÃiœÿûG´j<”„~‡ÜüÎP›]ˆ™›ªnÐSNÔÊ•1>8†h¥)œdÄ à7ÿ¾fŒ+J~@õß—* ±ôVåÖ8³öÔ^vôGI +8° ¢Aß̆G)Co Ót„@@ ×@^<+)õÁªJØ=á<‚&ôƒ=OÇ Œº‚#¼ÂÌÿ# “vN#†ãéœÆó)öÔí^ó˜x3:ô^ ˆ³.(Ðã ÏŠé¦"¬‘g—!´=ÞUNï°,0o øaPíÈä´ÃÂD@ËXÜr«jß©h?5Œ¦M'~dY²iì‡Úùýf¦4L8„>}5¤á}P‚†§¡£q¯hA+…ý¸a‰‰Œ€àäÕüefâÚ‘ŠB#ÜvEª"ur1Иž5öÁfϩ̃4®ÌSXCAâ~cýÁ4D¡ÉLÞOÐPç¥(8§Ïë|ï±Oàú¾–,¼Üu'ª !ãÝŒGRÀå)Æ,ˆ3n´éÒÒÓ#Ÿ”óQVRXØ‚rT#'ßq@48R{•óV?ÂãÑfÀãÒq©O…¸À:Œi¼¿º%^¨ +˵®±Ù°küòÅ(lˆX Çà´x_´ ö›öÝ8…ô·pJ+ #ãš íë¦,÷ô(JUD{ˆ&.ÞtZËV¼vª°‰BâÃn²>¯Ýh%ñ$¼ç n¹pF˵´Ô»AŸ +:HßÚE@C,úá7+<Ê;2 y‡!jjäß:ž"ZªQÈK¼) 6Fb¿A•O¼Eb{+‘W¯¸ä¸öäj™«µB¥-#[‡ÊÞx„ºÇÒتּm[¡>6{ç ¿a“ሦ:´¸µœ}¸Ð4x¦ä?“ªäXÚ¨ ˆ ÁëYG£9hê@‘hÂSŸ¢6ë5-OÛ~²È顇"}ÌðT…5+бѲ +fCÓËñòE0ƒ‘fe ÒR,VÒX ÞhLxðbc6c,ã-ž1õ^ÓBµÁ‡ò’Yë:}4¦cº‹‘i¦;˽Ç*äš:оfªGžXË„$§:x4…\2[¼~ ï¢J‡uÂ0‡bÒAgÁ§¹#œÛf e»ï¢©Ä"ÜÀGJk Ìm·mw7ó|­³cvD}â¤ùS9ƒ²ð¦C®jH†étÜQ|7ÇÊÊÀ]¶ègôF8è(„¨Û?\Y/6Ëx›¡•¬†`k$!Ñ´ÿFñ]2„¹×ê)¾ˆÕÒVÊÅ·Nú¿U5YµÙ"Ù¡6£^ää'*ŒÒÇþ]“p0¦j_Ù¦Ùlã¶Üˆ\h@ÃŽ>Md="תnÁ”¨A,±•„‘M“Ù/ªÁ°‡ 8L“–OÝûjèý¾Ûdƒ„ˆql@fx/´»{Ãz6€p‡|â+/[¿AxöÃuû–=¹ÄŸ ®/èòjžMçìí>¾~ûæ5û¹ÏlîoMÞTX–‚ßÞÜqzd|uÎUhßÊùUa­6 7ÒLmòðÊ÷’_Î}®¦_Z«Ï Aø½$˜½ÙÕ,»º¼Æ_+pælÆ¡þ»8ùùäOß·¥Ïendstream +endobj +1502 0 obj<>/XObject<>>>>>endobj +1503 0 obj<>stream +x•W]oÛF|÷¯X(ê­oÉî“'­QÛMµFƉ<‰‘<厔¢ßÙ;’¢èö¡ âØ2y»;3;»÷íb@}üÐlH£)…éE?èÓh4Â×ñ|†¯Cü3’Ößh0 †þqþfÌi8æ¯xëê~0¡;M/~^\\½Ó`@‹59ÏhŽí÷i^ªÌæRD¤×”èÍFeRY$ 層υ•¦K;aíA›¨K‘N…ʾP¤^ÀoŒ´–¤ ÅNo_/zˆ…££ËA@ü3~ì FÈ™"s§¹‘‘Êù]â½1"í’È"ä ·Hà†_ìSo8 ÆüÞ¯¿½ûûåá÷··/·o½z·\>«,Ò»\¾-Œ‘Yþ—4Vél¹ü`ôZ%òAÙ¼uÌQtPIBk¼‹x„×̱KkmHŠ0&_,°(Ïø ò8 'K—v¨³¯XF+•¥­<Òò2Q[™)×´’d^UÞ,—‡*S”Ê™!g”‰T.ßtùäŒ"™È2 +Úˆï²c*ŒüV(##—¥ƒºÐçwßU^a‹ÊÍ‘am¾Ô¤\=˜CÏËÕûi) ÇPLêçÛ?žîŸ~á:N¹¤jLÒ'Ê2á”ÎÁ/‘_ˆ GJR…–ø¹f9ËKÐkãöÿ`vËg§¤˜ `‹½©GRéN›\d9xÚd‘rÑ.eP‚ÝæzG`]e¥D*¾pž°¹09¥2+‚&3ÿ]îy©Ø2B‚V"Ü;ÎórªAïrR­°ÈfRF2Z¾ñ„5¸]°Ôœn]‰ ¨\¯4Ÿhdª÷‰EE´tOge¬¢ò²GБºÐË7^@w·‹’eZÙ”:=щæDƒÿ9¾Ô)‘ìt©“É<Ö:âoOèu\Swp·¸í@Ë œÅÖšœ]{c¼¢’©• %¹79"wÌ–‚ϵõB4-×ÎVZktÜYèø²É`<\pmTãSðJ°6€ë„äÑÐõ„ÂD¡ÿÏßž¼~;ŒeèÄùªA*dw0ðd¥¤bAšüI‡¥µ‚ZÅJï=°-6Üq˜;íXë5šÆýêñöÉÃÑ®Kÿ"ÉÊOêrªâ§¾¢ÞpB½Ñµ·…{HôËÄBÀB%¶ ¼Cè ?[‘®¸‰äªØð¡Dîñ¤wÄü !À‘S ïmþŠ{‡@ÝáV¹ŒëYÐ’£- ^¸‹ŠÔõ-Ô–êŒçGcnpÅÜgÒ>^² x©5š …ððf†<¼`ܘO ´{žvÐ[ÍñQNè`£EÊB+ù³®W2qb(x¯«Ïq¸6èy[øÓYÁ]ÆA~ç³ý„áïwÐrËQ÷ +Þ)B6u_:kè gþ-à"›ÀlD•Äã^wöI² ´ìÉó𻄯Þ_—cA›û‘1 æÁ0€ÒË¡Ë9'Û0¡A_›ëF¢n| D’Wì:ŠZâkŒžWÕrë”G™±'/R6DŸcÝ>þ|Ë—§¯¼ìßé*Ïs»r¾½AùJoÖ¿æçý˜¦·:[«Maü¼Ç ßÎtì }*Gvš?ÊæOvv©ï%ãÙ8˜Mçþ?žp¨w‹‹ÿOqgÞendstream +endobj +1504 0 obj<>/XObject<>>>>>endobj +1505 0 obj<>stream +x}WÛnÛF}÷W M‹–dÝ Nœ¢jÕ‰UAU+re±¢¸Ìî2²þ¾gfIŠa$p"‹Ë¹œ9sföëÙø;¤Ùˆ.§ïϾÒp·üaÍi:à^Ü'tcèãÙ ÐørÍh<Ÿáó?VÓF\NÆÑ¤ûà%׃QtUžÃ/›³õÿ¹¿œF㮓w˳‹ßÆ4Òrƒ¦ó-B°ƒ-ãW ã·iþDª(´²Ž¼¡µ&çÕ ¥9ù­¦èþæ’Ôê_ÏIåxä¥-ŒÓ”:ŠKkuî³#•ù.7‡•6Ä”:Wâ´rtÔ¾¦Ò¹„ßEUí´ë¦ôÈ\Þ=†tÙ9G+…à\øm¯¼ç€…ìV;“}ÓÉ?u^5gœ£Nµá— “ôI;ðAW˜<ÑyÌyÂו6¦Ì“Ð* E`x$U»×øZêQ±Ûu2C—àîB®º°†¿Íþ2Ï´sÔs—ú#½·=éÍb±ÇÂS¡œ;›8<>j׫šÑt| w?,Þúr¿¼ýsùg¿zÍEk;W¹¨M×íø–Ò"RI4\„‹Ð!v±lÞ±]—@)‰èC*Р!ñ?¤Á¡Wi–¡g™qxÀuF'êB â˜à‡ßÉB阻\/8Ã>¨&)úG=¡ 6ÀµNÁÓa˜Ò‹9)šŽeF:Md÷Âg«¿–Á„ÖÇnH…¦qAí{ýܪÃ(6©;vÝQö,bëÌ$µæè€BÍ™7*÷‹£Pkåcà¶{Œäk®l'°Ç}éü# ›ÁzKŠŒ=u-ºý¤7•åóúD*äqñÛU5Wú]ÕZ4‰æÑ(šFô9Í!+Ò«"ÝN{$53b‰.‘å†á2¢?1‰ @@ -2943,20 +2953,21 @@ V[r d¸˜î×0S|à$z/v‰M™%µ§`½ íi0bB|?ŽDáâ ­þp÷®j ³Ì ˆšÄ‹g·¡IÈ•Ea,ÊþEEšNxó`‡ÁpžEô°U2ÒîÃÐt(°?hÓ竉ÈBGÿÇÑ TbR±]ÃÑ”çæ½ñÜÂ}ólÊi^LM[øÜ¬¢eßÕv8“+6v‹ôYŽ›)_›§í·¹·ê›æqE‰Î4ûI}½ú”ÆÈ+‘ì ½zÍ!ŸØÖL>”/nT™ñâu€ ‚)³ÂŸ_øù+âjOÀ 2˜{h%¸[tPÙf×éªÇÆDnú¡f« ]óŽÔ£tÓæ*Re66Ñ€?±Ð’wËŽã¿à…î‚‚u9Œ×€d®÷Kh Çí ŸÕ¾ÈÛϯVU‡÷¡Š-éüN?É¥1)°@_·(#WCô»•·D[BÆ1ªtëÁ{`|9T.Åq AXQì^YOw:/é‚n´Û±N°Œ3Ý¥·_ƥתÇÛÊ?®n“O¾ß±„Ì[–÷áĪÃZÅ;^A+2AºÉmÑÕ1OCXºrí#ý¬Ï;ÎD¼—€²‡Û2³Ÿi¿Y­iž{PVgl| MYênó;#mÖßRS:ÙÈO€ëç[ ËWÇ=TújÒ79ÎoóÿT«á¤ªŠ4ªøs¼£aбû·`ß@ô¡€…Âb6"ÙtùæÐš6<œ]¸eHY+&v‚k¢4:Õtµ¨5S€+ÌÙ1e« †U/¥½ìbT´¦ë9Œ5® -BÒD6úö.!<óé^_°$bF¡Ë0[Ò b²ú¡"²r³>Hê(I®ùâR•ކ´Û{,˜Ü¹ø¸¬ jì0˜ Ë:®Jihz>nLmk–'ZT4A$€Û¨·ŠÍ: e:n±­ó,öô˜í°R[•» ¿¨hfê©þõV0¯Êp<ŽæóM§ƒh<œðx¸¾{wM÷ÖüË×­—¼éȸæúÃ)®ÎóKêÏ24Âtãkbë–p›;oËX6Å7ô ½ç­LüdÂÝJäN„_lw<G³é÷_Ä0¾â¯>,Ï>žý¡ï.endstream -endobj -1487 0 obj<>/XObject<>>>>>endobj -1488 0 obj<>stream -xWkoÛFüî_±ÆdZ[Vü¡€_iÝÆ–cÑ0 -(NäѼ˜ä1wGËì¯ïì‘’iÆE‹"€#ñq»;3;»ú¾3¢!þèhL“)EùÎwãæ*3šŽƒ¾¹9:¤sM_wNÃýÏŸð,… žÎFÆ4 †Ã!…Ñîað) óùÕÉåõŸgóëðvþ%pÏŽŽé^±^[ºqP.TAgºpFgÃo;CÚ*Œw¢…ÈW‚¯î>¤ÎOh<ÆÃíMFÁpŒÐñî¶V­²šæ•‹…“1]á¯QŸ·ÿù }sGfÁðð¿¦Ê’(KYÄê™ÖÂ’6êA"ÃI¢r©68iUÓo:-èW -¥)­3‚tB.•Mj¸*rEL8LQVÅx)•F¶¥Œ&ÀÑm¨Ô–ÓruÐT4Ýäµ)i|Ì&þñëyxAÇÍc›ôw)DXœÓ»×°eÒ¼óI i+ÉÈÌ£à4)‡o‰4„ϺdK©DE”K<s-\ª,œŠ„Sºè¥íRá(UE, SÐâê”bOè}Eò°T…Z¯ÃòBš'$1 F´6duæ¡}x¸²½ ‘ÎKQ( zìJX@ª >ø u‘|v²°ÈÕr¦âËÉ5(/ÄbŒ£4ÚéHgA7Å -‹«HƽpW*2ÚêÄímÑY‹rH(V`\­*§Š©²ñ1‚ä'ÐBÊVð^è̹|y™¡ô¦zÝjˆñ-…ªäÑx32’¿¼ m_ °©`qþC"d£Tæà˜^X0ZøRºôœ\yIrëM›ÖëÞmÈã,WœœuhŽnI*Ž@‚ÊŒ»8Q™ôœªÂ°bÖ—»÷óÛß¹ßÝÐZ›G¼ÏJC½Ôšç—¹z.6xvâNë)A§°ó•4º1*¦Þ<5…þ÷TDUùã“Ëo9+rÔ µ™J“:_ìé^˜Œs‰:‡sº.õ5z<þdU®2Ñ/…Ðd­­S¥¾×:¥¾Q©È4ĸòu÷é 5墨©”êc¾á lÖG$©,t=@7R&Ý.°æ–Š2)ÐÁh,¡Lÿä Ô[w"“­áj9xÍmKØL=—F>p3Õv a{™ ‚† )ô)÷>³ÞH,m„vôõå`ñê¯FMª3yó™9bTYP*ÂYË]®F~¯à 0Þwlÿ\ÈF‚,½ÈLUxd¡/¼Ð‹Þi Y<)£‹G5Ù–!2 ùf-€)aàd­Õ÷Ä­ÑÈ žMÈ'Œ½¨q]ˆoðTÊ´ˆÅ -|fje`-Jœ+p•<ʨ*uÐ%šQDnÀ·þc¼Ø Ú·aÉL»´±>Œè©ù–‹š - @Æl ÿ£ß¥AÄF˜MTëqæÏFúR -»¹±wlÅ™iL£ÆõYÅäs!#ÉsY£^NNïjÙ÷ó’Eju‰{íÅrãW‡Ž¿/—÷—××árù3#þ²%ìÂõ ½_xYßjíÞ/—Í—Éx¹ä¶Q-G³äB:’ kž§î)¸šÁ?ZÕ+V;JD!ÿ9×~¦2Jõ«LßÈ œ¨'éç‹i 5m/zÑ׺‚YÔXРý•@r™‚ x›a‰òkŠØý!›DT$Ö;èév#nÜo7$+£j»ýt¨€VE»PtQÐv0wÐl¾Å°06ÇëÙiäK‹¡Ï9óÅÉU/=ÖÈââìîö2ü£- ëñ`çàÞÏ4†°É2@ãÃ=rèK7 ¿WB˜ IÈô-¹¿YR O$fBų½ÊC°rˬIÑò~²M¶ã)~eꕺuÁ¼BGvvÏjneö„Î[I¸¦¿R{6Å1¹Âzy »<š/µ;Dk¸Ø† ìk¨¼´bý(ö¾C²Û 'FZàk7€tõËÞ Ôx^2èÝ[žA?Oø*¯múþ¶-£¡/Q<ÈSY‘Ó¦ЃÑX š¥Â¦ªÄ¼F2N—ì6ÜàÐ…ï2òûŸg­ÝŒ¦GÁp6¡éá$˜Œfü3B<=Án¢¿!6ލâ²Ý¼÷6¯ì ý”ÿñŠ:¿šŽ‚£é ?ÎûpÈé]„;_wþôœcendstream -endobj -1489 0 obj<>/XObject<<>>>>>>endobj -1490 0 obj<>stream +BÒD6úö.!<óé^_°$bF¡Ë0[Ò b²ú¡"²r³>Hê(I®ùâR•ކ´Û{,˜Ü¹ø¸¬ jì0˜ Ë:®Jihz>nLmk–'ZT4A$€Û¨·ŠÍ: e:n±­ó,öô˜í°R[•» ¿¨hfê©þõV0¯Êp<ŽæóM§ƒhŒk2†ÀÃõÝ»kº·æ_¾nݘ¸äMGÆ5ÐNquž_R6¡¦_[·„ÛÜy[Ʋ)¾¡í=o`â'îV"—p"üb»ãÙ8šMç¸ÿ"†ñ”¿ú°<ûxöÐ*.endstream +endobj +1506 0 obj<>/XObject<>>>>>endobj +1507 0 obj<>stream +xWkoÛFüî_±ÆdZ[Rü¡€_iÝÆ–cÓ0 +(NäѼ˜ä1w¤eö×wöŽ’iÆE‹"€#ñq»;3;»ú¾3¢!þh6¦É”¢|ç;fÁØ_å£`NÓñapÀ7÷/FS:Óôuç$ÜÙÿü ÏR˜àáé|DaLÃ`8RíŸ:[\_\ýyº¸ +o_‚ê¹¢#ºWE¬×–®B” UЩ.*£³á·!í‡Æ»?Ñ­ÈW‚¯î>¤ÎOh<ÆÃíMFÁpŒÐñîµ¶V­²†u‹JÆt‰¿F wÞþçƒöÍ==šÃÃOüV˜*K¢,e«gZ KÚ¨Uˆ '‰ºJµÁI«†~ÓiA¿R(Mi+#H'T¥Ò§†«"'QÄ„ÃTeuŒ—Rid[Êhü-цJm9­ª |EÓM^›’Ƴ`>q_-Âs:òmÒߥaqBNï^ÖIóÎ%¤­$#3‡B¥IUø–HCø¬ I¶”‘JTD¹Ä³1×¥ʢR‘¨”.ziW©¨(ÕE, SÐíå ÅŽ6ÐûŠ>äa©4 +µ"^‡å[ižÄ$ÑØÕ™ƒöIàáÚö‚F:/E¡$è°+a©.øà'ÔEò¹’…E®–£0_ޝ@y!cŒ¥Ñ•ŽttsP¬°¸ŽdÜ w©"£­Nª½-:kÑ@ Å +Œ«U]©âÁEª-B¼FŒ 9ÁIt+e+x'tæ\>‹¼ÌPŠNzaS½n5Äø–€Urè¼É_^ж/PØT°8ÿ!²Q*sŽ pL/,-\)]zŽ/$¹õ¦¾õºw=yœåŠ“³Z„£[’Š# 2ã.NT&g ª¨X1ëËÝûÅÍï¿Ü,î®i­Í#Þg¥¡Æ^jþùåG®‡‹ÍN„€¸ÓzÊCï4v¾’f@×FåÂ4›ç"o0PèqODôX—?>¹ü¸–³"GÝP›©%1©‹Ûý1Ý S‚q.q@gpÀB×¢J]‡?Y•«Lô‹…F!ÆÊh²ÖÖ©ŠR×kRߨTdb\ùŽºûô…šrQ4TJ õ1ßð¶ë"€G’Ôº )“Õ.°á–Š2)ÐÁh,¡LÿäsÔÛt"“màj9xÍmKØL—F>p35v a{™ ‚† )ô)÷>³ÞH,m„vtõUÁâÕ_^Mª3¹ÿÌ1ª,(á¬å.W#¿×p ï»¶&d#A–Nd¦.²Ð^èEï´„,ž”ÑEŽ£¼D¶eˆ h¾Y àGJ8YkµÀ=©ÖhdPϦä Æ^Ô¸)DŽ7x*eZÄb>3µ2°Î%θJeT—ºèÍ(¢jÀ·þc¼èQíÛ°d¦«Ô[Æôä¿å¢¡BÂñcÃÿèwiÑ ÓGµgþì5Ò—RØÍ½c+ÎLcy×gwÏE„Œ$Ïez99¼s¨=fßÏKN©5%îµË[:þvz´\Þ_\]…ËåÏŒøË–° ×7ôþÖÉúFëêýré¿LÆË%·zh9Ú˜%Ò‘ñXs>/XObject<<>>>>>>endobj +1509 0 obj<>stream xmUÛnÚ@|ç+ÎS›HÅ\B€ô\*Ej m\U•"UëõÛÚ^wwÊßwÎÚâTIL°÷\fΜñŸÞˆ†øÑlLS’yo ir1¦4™ÏðÿVѺw÷Ÿ&4Q¼FÈt>£8%)–gw/Êîé».R³s´ŒÉíW9=ŸíŒýí¼ðÚ$íT–ñ§S!Ïç´Ó¸±/Š´wdvêm´óvæ{ çÝyü«7¤þè"£þ™ß O¥°^K] @@ -2964,10 +2975,10 @@ O oMSCP*¼H„SbýVíÉm0"Fš>/XObject<<>>>>/Annots 712 0 R>>endobj -1492 0 obj<>stream +1510 0 obj<>/XObject<<>>>>/Annots 712 0 R>>endobj +1511 0 obj<>stream xW]oÚJ}çWŒÔ—TR©ªòÑÜö¡InAÊ•’<,ö{c{ï:”Ïì®Á8éUUµª÷kfΜ93¼tÔÇŸM†t2¦8ëô£>Vvÿüü«38™F#:L£>e4FÓð•ÒŒÏÓéx i4àÿCü-%-ÝÆàlßÛ˜ðHëÂżs|}FÃ>Í—ði<™Òº\‹ÂÊ’Æ}Ó²šÎcK  ?W]éL¨üãüßNŸzÃn]êÜ–:MqOå8yW•2ÝÒLd A»Í¤q•]L¼ ½“âÂ3ãhÑ])KùR)£¬¤ŸR$*_±±ãë áÆp‚€qãB.5`ØêŠbø òJw‡=±ke(öu©H¥0’2ñ,ÉÀCl ëî |Ä:Ã[V,RIe×üàR­ªöI„p'ÞSÙÝÕ%#“H—j!oRú¸{Øí}»½ŸßFÞýÀnãh9XW¥®òä·aÞ³£E÷˜–_è{ØÊD¼VyˆŠs$ÈŸÈ͉IõJç祒ÆZ–:£.ŸVé̵ܸ¼Wy¢7†næÁpD÷k™ËW¼'¨2þY¾Êv¨qü~ÿr8Òý#›ËNð­–IÏ®F€ð?Ê젅 ¯%^+Ý“l?™t' @@ -2979,26 +2990,26 @@ a l$ Qâ6Ê =?ý°JõB¤O=eäØC©˜lqïFgÆHû‰_=¾îÓY݃G^-XÙ¹ôÙûV›ïcø€š„BQ~¦­ÜQäð„ã¢Á+áÄaÇwý~Æ­G¤¤7ôfC©BCô°FœæÉ÷ zÈ¥u>‘Y3ÑDj4”aË@"|k4v×éñ‰Ñ/qFš Ôu ¡éCàÖM‘f{””L6N¢óÉ„Dn 8jÖb §ëéINtŒüæöÿæ‚®4ý—J¤jÉÝèÞ_WBå$|ñzgLú ¶¾5 ¼æ!iŽkµž•r¥œ°2D7Ò^|¿‘Ï<3³…–»úa{ˆùÊý÷› /á v °HG©EuA“õʘjô) 1íÞå¯vÁGË`•+Ì6;Ç\÷ N,Þu¿íÎñ¬@ ¯lhó\ö¥tÎ&5(-{‡¼F‡*&a–d; -HÀ4åBJt˜)ò­_Ô ‘ÅÌ‚9h¯º¨Å.-€ñCÅ¥6zi[Ö¯¼)ž9˜L~0q“3ünjG(¼à`(耵áñ©æ·?¤‰;;¾žî¸/ÿðçA£[óXò'? F“Q4Oñ›¢q:d¾Î;wþr­BŒendstream +HÀ4åBJt˜)ò­_Ô ‘ÅÌ‚9h¯º¨Å.-€ñCÅ¥6zi[Ö¯¼)ž9˜L~0q“3ünjG(¼à`(耵áñ©æ·?¤‰;;¾žî¸/ÿðçA£[óXò'? F“Q4Oñ›¢1:c¾Î;wþrèB’endstream endobj -1493 0 obj<>/XObject<<>>>>>>endobj -1494 0 obj<>stream +1512 0 obj<>/XObject<<>>>>>>endobj +1513 0 obj<>stream xWËnÛH¼û+ØCÀ¢õ²$çø‘ >¬“…µðeDŽ$ÆäŒÂYÖ~ýVÍ2MÛ»À"0"i†ý¨®®nþ:Hÿ2Êh"iyÔOúr:ë'CϦø<Ä_¥eÆg§ÉøµƒáÙøåó£“/g2Ë| '“>dý¾ÌÓ÷“d” ùjw’YíDÉ[Ý;¯|n,s“IîÎJ•I­ñ•- ]}ú0ÿ Ãc ¢áÞp ÃïÏåf.»– <å׺1p{þûÅ9~P^vÊÀ°’¦ª­Ó•x+ -j‹ŒÏSåu&kåø{ˆäɽ÷¥7!ax}ŠK–¶’à%‘ksòëÜÉb/¹YÁãö×ßnŨR˯­®öá)Z_Uv»‰ÁÈoƒ”v:î”sÛ`…<´J×b—!ËŸsƒ“ÜËJ#½…JïeYÙ2ÓWÎSæýRQ;Uÿ»Ð(ìÊšŽçJÆó.‘¹c½Ø6âtº­r¿—µ-`~aý:økׯ™¡Ó…N ìÝûù·«oCéÏ®.%][§Í݇ŽßW‚mUI"0Q%r¾ô,%KL›í`9‹žXîwNÒJg,µ*âa™X“ŽoF¾ä°”Ý} h÷EDÇ¢Ü= L¨Í¦²ªHh«ÍÿÞh€æeHüa"?@5Öƒ&¿#£Qö»y[? = 9ŒˆÒµ2+-Ì  õ6ñµæ/xY£MU» %<оù@7÷6zu¾ÁÞš® Âvˆà¿¦¤°=þbª¥r¬Rj7ûÚ5“avêÇ6S)h]§p©VnýVÅþYç6ó^ƒGƒ0!O•nP™z£qS™q"—èƒ[U.TP¹@¡1¯¢ ]dˆlÀÍ›yŰmÎ×j˜LXú9úUt”¸a2 $Të½—Þïol@£=¾¤ÜL^m‡†­Üfu¿ F³dv6’É$¬Áam”ï•ý sدR¼Ø`É£eÆÕLðþ9IoÚ?kÖæÿý¾8žŽ“éd†e¸ŸŽèàóü裃›¾Ïendstream +Z”¶Øæá1̸çí gÈh8-ÑÆnWë—ï8«o‡ÀTšbœ„÷’ðÚp("ßPXÌ ÿÌr ßVÍ®ñœ2§ÃdÆmàMÊL²@¾D9,2mÄ3HÐA ÊE]î'Jý{y;É> $Të½—Þïol@£=¾¤ÜL^m‡†­Üfu¿ F³dv6’É$¬Áam”ï•ý sدR¼Ø`É£eÆÕLðþ9IoÚ?kÖæÿý¾8žŽ“éd†e¸Ÿöéàóü裃}¾Ìendstream endobj -1495 0 obj<>/XObject<<>>>>>>endobj -1496 0 obj<>stream +1514 0 obj<>/XObject<<>>>>>>endobj +1515 0 obj<>stream x•V]oã6|÷¯X Éb¥8¶óp(ò‰hÓ´6PMQPeñN"’Šëûõ7KINâó(‚ Nø±³³3Ó{ô-×GT›½j^.·k¯nÏAJ›Re%·$¨Õê©•»&| ·2pŸÁÜøƒUµ°[ºî~e´·¦ªÀV7ÎsŠ!Þ Ó¸ÓÎ,:‹âˆ~2‘î^Ü.Ü9… UÉ»[½³(8ŽïÿVÅÂA¦ÙIí”WÏ ìο²B°ÿÎç«C”pC #˜½¹ =¼Ê†¨`K-(8r˜üllÞÇ ÷z}Û ˜ï``½Î¨å¾"†`ƒCŽ)¼Ô\]KŒÜaì!8.:î!‚i<<ŠF*¶ª—ÿú—žäS«žE%µw'œuuë¤Îì¶áÌ5—ÌÝFÙo8c±¦§7‚ƒ‘ƒ…/`v=ÂÓßIoîGA|(ÓzU)7szFÝNã=Yóvçz={+´kŒõQø›òNVÅá=&”Y&Oï9-Þ÷7‡£EŸæ¦õ,رÃLXŒÎo¹‡@ìýo7$]ÁäwìÏïB¼{;~¾¾xøž˜Y§ê¦’P—ÛNþy³ŒhɉÌÍÓª\4”™{Û† p”*ôèwpq¥>èN‚Z7 - Dåö5YÀÞ°®• Äb=l¶’/ 4Uûª`é„ÇTK™‡r(£jmrUð“Ífòp*^¤ÂÁ­Ç÷ÆÖg„;ê!­Ð†tB®ç,àe‰š,k-žØâñ]Oü¢QãþOYœÒ4 }H>d˜ù„G–µ5ÄPñ(ÇÃöñ|‚0?þßÑ5O£ùl§§Ï¦|éÍjôÛè+Ô¾òJendstream + Dåö5YÀÞ°®• Äb=l¶’/ 4Uûª`é„ÇTK™‡r(£jmrUð“Ífòp*^¤ÂÁ­Ç÷ÆÖg„;ê!­Ð†tB®ç,àe‰š,k-žØâñ]Oü¢QãþOYœÒ4 }H>d˜ù„G–µ5ÄPñ(ÇÃöñ|‚0?þßÑ5O£ùl§§Ïb¾ôf5úmôÔ òGendstream endobj -1497 0 obj<>/XObject<<>>>>>>endobj -1498 0 obj<>stream +1516 0 obj<>/XObject<<>>>>>>endobj +1517 0 obj<>stream x•U]OãF}ϯ¸R¤fˆ'•ö!¬Á–mH[­„Tã±==“õ)ÿ¾çŽm4¬Z ±ïÜsÎ=ómàÑ?…>Mf´-c1¦©ï‰ æ!þ÷ñW*JÜ‹À ÄìÔ 2ÁÛ—›ÁùÇ òÇ´IPdÎi @@ -3007,97 +3018,111 @@ UD *5Ò^nw2Ug‚6ˆÊ”.b™ó<®ÉI ú±ÀA#©±5l¹ëq:ΕîöÊÜ._èd‹î Ä ™ÙQÛdÚà OÐuÛ>óÉ)Kõ­Ñ%ïÚ­ÐREZš+%„Zëé"ŽÄA&=0œ6±yn\¤Ï{šIŒ¿+£éuÊ8Nì^ËN±ß›Ëÿs­UüIÖß›«4X„BIÓj³Êl“Ç”I-¡ %«úô@®if"q«ð0d@wÚèúáìôŒõÅq¹6MÝv½îÈG|¤¶’¥ÆË"±4[[ì5¤­4[A¶Iz-Wv ãX»Ás†ŽM,Ëø•º”yÔ¥5¼ ½&ûÝýÅÖ°‡ xà4K=°~Ÿó°Ph'ŽŸ5\Ç…|jWÕSård“„®–þ%c]'A롘ºrƒªÖŒÞ%ó:á:€¾÷¨ãªq§ Ú5£çvsÛ¹Æ1XŒÖ.Ù”ChkM¢Ó§íž‘ëéìvy4bS±>,¯×oñZ$ìÎÌVÙ°Õç*äàsV¦6Û¼‰Õy 2Ò52ª”5ìOköVV -¾ægY¬NçÇtÑ»z‡Ø±JJŸ¿¯þ¼Y_NÉëÛ ¾@†¯"œ½¸ˆ×w„Û{@Šfb«*ó£cì屎ý¨æòâ…ƒBÞŽ<–ûãcA·ÖnàÜ™,µ@÷­vÛö˜=9%úotóä s×n‰NzWz¾›ª‘¹ ¯à¡hpG9·îvÚ±|ô®IÇ3®ECU nñ]¤ š‘yAèëÝokq³Z_®Öw÷b½ZÜ~ne:qëú"`£ŽÿϽ„gs\þ87rÒÕfðëà(•²endstream +¾ægY¬NçÇtÑ»z‡Ø±JJŸ¿¯þ¼Y_NÉëÛ ¾@†¯"œ½¸ˆ×w„Û{@Šfb«*ó£cì屎ý¨æòâ…ƒBÞŽ<–ûãcA·ÖnàÜ™,µ@÷­vÛö˜=9%úotóä s×n‰NzWz¾›ª‘¹ ¯à¡hpG9·îvÚ±|ô®IÇ3®ECU nñ]¤ š‘yAèëÝokq³Z_®Öw÷b½ZÜ~ne:qëú"`£ŽÿϽ„gs\þ87õ9éj3øuð(r•¯endstream endobj -1499 0 obj<>/XObject<<>>>>>>endobj -1500 0 obj<>stream +1518 0 obj<>/XObject<<>>>>>>endobj +1519 0 obj<>stream x…Vmo"7þž_1âK¹Sذ¼ßI•J.œ]óÒÀ©:5ý`v 8ìÚ{¶7Uýï}Æ»B¸–ˆhYÛ3ó<3󌿟ÅÔÆ_LÃu”ägí¨Mý~õ¨7⹃¯•´ n?O,ÄÃîé…Ñ(긜]|nÓš-à{0ÂCJðÛnÓ,i9™”Vù-ýLã«é»ÙÓY›Zq;a–¥Nì¶ðTç6Ʀû¶Òñ¾‹Ï=ŠãÊn«3àýךá$9‘ÏõOžjY“)=mMiIÀ†“öYZ*ÒËê­•"ËI‹\žãµ$¿’•~í£ypðµ÷&™Â+£Iéj`¹|%F/ŽN~ܨéiuzÈE~&#ðh-í\Zã¢*úצ@ZEÁ7SRjè½6þ=i)Sï¿dd(tJ&KÁ@’)©½£Ê2šK%€k¯áù¤#µ ÆAŠR“ ¥çìœóTÙ_™r¹"åic˜u„ ô–VÂæÁÈ2³q „¼ÁëgI™IDÆd[Gˆô1ë8É."º&ùW!—‚ÿ!¸¹yY9ðlå÷RYÄZå F’¬„^¢ ²² ÚHZJ„ÞµH¼B)&ÞØ-\{¹´‚³U¼~ xX—V·ÎÉ0êE4•¾,ª’¹>¹XÛyÿDf9Ã(Ôä ‘çJ«`¹¸ƒ'ZKûó¤Ü«áPîÏëûî úv÷õ!ú2y¸œ<ÜM£‡Éø×tÈß'v>ë4áþùA51­¦ÿ©˜xÓd3éêVªàÐ|‹¤q' j¬ÔÓ×éäáv|3ù%Ô ¬-Éq3†”rû¾|¤%‘ên|]\0ÏÙÿ]髯—«O!GLñ ê–Û»Ùä#1ÑUç%"D5—E!- Âñn‘9Ca§Ô¯‚bÝõ kP ˆÁÕíÕjÖÈ< Šƒ¹¾‡¤V:GfQ•ÇEc=;XJŽ€Ô… ¤;õÑ\ŽÛ¢ŠFÁåðÙ‘–~® æØ¿ƒ'zl*…_+ã|XÝà ©n #ßÂ{‘¬dúøŽPuHƒDÛJ«QŒÏ2Ûžô¸0Ü·h¯: ßc6gˆI §¸.6Ù2í@)·;÷_1hµ\¡ËR‡j Äñ;ðèCQp‘0ÊÓÃø2…Ó‡,A9BFÀ Ñ‘{XÖA…‚âñ"жR"i­±J/8pPžPÚ! “Øá ÒVY:ÀÛé4J½(Œ ®¤–-UpÜZä¼8s^ÔG7~î2aF#=¬åozòÌ¡nØõ¿¬/p ¦¡÷¥çJ§éé[?¢O@é«ÒKL^”•\&¦Ôžy=sk…£uƒŽ¤z…±±ÁH—„îË•s<ë¾™†Á\XõÌ^^ø±YºDnÉãQ¤¶Ôµ¾ `d9 aÎH Tã’/­.ßb09‡Q?Š#º7ð;ÏP˜œÕú¾0x̨{ÚlàʱOÏ ÆŒ™b"4^ãÅ…i?î*;•Á©eç›VæSµÔG wðp -xcmþ± 9ĦL†6ÌàÏyàç æeÂþ[¬Éµîó›©9‡Á•âx†¤Öä.Á£k bÚ£. b\¸Òæt|s9¦{kžx´^™¤ÌÑzañ÷@lo Û|Sÿ7ôzÃ^4ŒlïØÊdvöÛÙ¿î€:sendstream +xcmþ± 9ĦL†6ÌàÏyàç æeÂþ[¬Éµîó›©9‡Á•âx†¤Öä.Á£k bÚ£. b\¸Òæt|s9¦{kžx´^™¤ÌÑzañ÷@lo Û|Sÿ7ôzÃ^4ŒlïwÙÊdvöÛÙ¿îb:pendstream endobj -1501 0 obj<>/XObject<<>>>>>>endobj -1502 0 obj<>stream +1520 0 obj<>/XObject<<>>>>>>endobj +1521 0 obj<>stream x}”_oÚ0Åßùçml¤OU[:ií6‘iš4 ™Ä!.ÁÎü§Œo¿ë: ÓˆPÅ÷ÞsÏïÚ¿ÆtEH'˜&(¶ƒ1#‰6Aœ¥ô<¡¿¨º³8¢×|ˆ§W,¾üp›>|¼B”"¯¨H’EÈKPñy1LY ë°×ÞÀ ó,ÂÍùömþD¡1"Š¡£ -¦àágŽïR•zg1 ‰ŠF åà̾š‚†PÂÁ[wøI¿>=ÝknÄyþ!Ãíakí›+F¯×¢„TØIWc#ÌJm»7í]ˆ&MÑ”L"MJˆRª5œÆFé l¹µ;mJ†O\--*.KBÁxu©tÓHrÁÉb#œ}¥m.ËàÖÔ?¬B¥MHwpís-,䥴š? p¡ ÝkÜ·ºÂü~1º»½=Ìg¸î+þ5šÆ“:KYÚ íuVØíª7ü\å9¡ç‚oWü•è{ÈWò”:†¾uêæu”·¡îKIj¤|aÁ‚€ßôÉJKä=oÞcål+ Y‘òk´nÔŒ¢Öšâ^ørVt%NøÄ—ŒáQ;qëĆ0P[OT‹š«5A(·ReÃõzp‡FpZ¦UA‹*G;`~G“goH>yUÁèĹ®Ý9ÌNA¨›ôÈv“ Jšõ†úb{‘ayì•-}ÙvŽ.›’·léŠ6 < JQqß8‹ùã¢ß‘ |O[£’¿»qaÀ(©ƒ–{¨ì°£„ΑlŠÉ,cY«ÅÍÃí ¾ý$ -G“[ø-¹ÞyÒŽŽ£t|ÕáŠ8YšdtLPîYRÜ烯ƒ?wyAendstream -endobj -1503 0 obj<>/XObject<<>>>>/Annots 723 0 R>>endobj -1504 0 obj<>stream -x­WïoÛ6ýî¿â€a€;$ª%ÿÐiÓ Ðt«½ò´DÛj%Ñ%©¸þï÷ޤlYn·$¡IÞ½»{÷ŽùÔ‹i€¯˜¦ '”–½A4À'Çï~êÅñ<šÑx8‹FTRœƒ}Xòi},>zJEQȬkþö훎ñ+Úoót ØœÇ_n_}#PXÂáŽ1‡Ôî­Dú±Þ…JPª*«ðhÓë’ÒN‰ùâ—·¯¾˜ïü˜: Âɤ ) -.“ ÈRÝåÚØâpåŠUÖÆ’ÌrË+ÝõmÊUìëÇþøñY×î:/$YEV ­£"̘­ª‹Œ*µ§ÚÈ&F¦µÎí¡‹d®6’û(§È²ÇgmIÉæ6½èb(òJR^‘ÝJúsS¨•(þßR›«ŠÉå‚j¢`°ZŠìGoeÜbqHÍÉQ«‡žß5|ï£ÅÎïöÙ™‹Œ^ WÝöùLîd•qSO¾v8™b¹i:Vוkº`FßÜæè•>°Ÿ©µ4;멸Èáƒül)õ‰ä>/XObject<<>>>>/Annots 730 0 R>>endobj -1506 0 obj<>stream -xWÛn7}÷WLŸìöêjI.P¹¹HQ§®­6-àj—²˜ì’’kEß3Ã]Y^;EÄÐ^È9sæÌáì×£ ñoDó1Mf”WGÃlˆ;û?7¿¦³lN³ó‹lFæçû«’nù}šÎÎùïbŽ¿cü÷šÖò`2ŸaQïÁx8ÉÆ4^L³öO‡Ø/]ñ~‡×üô¢÷ôñOçÙä`-.G4ž0³i{Å^ãétž<}³<\‚ˆ-× d¶˜Ó²†´ÌO~uÆê‚ -W)céÝïWÙ«åg¬˜¶+NÈyJ·ºMº5Ç·ïoþStàE•_ýsóþõoWÇO·ÒÙxÄËâ!v®ñµ¯ŒU%m-Ü6£[­)n4YïNw¯¨R–ju¾¿r ¾ÐQ™2¾ƒ-—¨ö.×!Ðgdd£ ýƒF ÇWmv[7®‰´QÆÞó³ÀcŠ\©|*(ú&DRyîÉYÙíúÝ[Î aG\bd²Ò¦7Ê/Ê]… -ºwšñx×Üod§.L V!l/(Ç^H™D—»ò”ß¶´õ&ÊLÍ–îN…õjÀM/'ƒe·„ýAÒËV5€gÑ?P-Î,¯¿60ÎæQó—]+´Ù¶ü­jm©ÓëÅ9˵hõ -ª®»ãýºÔ*hD_³‚åèåVð´7ÚLLÓXJU -¬0D1PÛDØ §‘Ü2˜{K~üð75•ÇãÑõàtp‘c2ªVº²¤Õ¡­UÎŒ³Y<`˜Çû¼«+Ö÷ -'l¾ÌœeÃÁÃøÙi/è -³ÄÖ”%Ÿ~Œ UO"a¿OpÎö‰bQѲ‘G0•´œœGAˆ'´zfÔâÈ/¬a­ QmõÁFxéæú­ŒV—lúܓ͌-®“¼ˆS8[' ¤É‘‰Oú»“7Ï^ý¦°ræ=ñø¶ƒÓÈåu)šgý–=†€ü0™Lg§bf9ª¢H]ÓË9Ùï*+ÚcÞIc/«DÎ,Nû€n¥–Lü·TP÷ÓŘ Eº¶³›ðÚx­¯‚ØpÇ¢å1œòƒËóýèýÌÿÓ ÝLtBÐ-œ&±žÆžX÷cÞÇ þ¢u›¹³Ó'…#Òí£>0œˆ‰8i[ìU:Üâ=Ym¼RÌkÉä¹…ç &ò ^Çw\™Ü»àÖ±|_\éô\Áz¡0ê€F»ñ!¾ïÜÇðé¿ùKUèñwJ·eå€xQ9Ý°ÕÆjI#Tsð…“àû€t-xÆçˆBmXo”¦O >QÒ¸š˜1W3a=2³ct ÆH }8RyPaÍ=>ßK2} .­‚F3|¸.&4› ñIŠ!íöõÕ›×tíÝgN™7ìkÒvý¬[p6^ðûÿs œÎ§Ù|¶Àç%Öœ_ðVï—Gý MtöÐendstream -endobj -1507 0 obj<>/XObject<<>>>>/Annots 735 0 R>>endobj -1508 0 obj<>stream -x]RËnÛ0¼ë+æè1­W)¥7'NŠ›Ö|¦%Êf ’ŽMÚ¯ï®-B €Ð>fgvÈ· BH_„,F"QÚ !e®ÇïïA"¥!“DİHãDDcÔ`Ãý1Ÿq&¾Ž—&!á‘Mj“Ð"Äí¤6 -¢(rR¼+‚ÅcJi5)—y†¢: Q”³¥«P§šæï TÙ·‡qè²V9§[¨Êa] ÓíŽêp½)Õ Ñ{(¼¬îaµr¡UÏ£j{øš§})^ƒóˆM)ªÙïZ}d~fÝ(»Sš½îyšÆ@¼0SÖ'RWûÖ’úï†òÀŒ×ÞÍÓê<¯1køÄO›ì[?'ˆn¼ÛSÂß@÷¥`ÄâQ^›ÇR¤¬}ý³xøv®^|ᙜWE¯?ƵM‡Ê—ƒ%Ýx'yµiIÍqØ‘ªƒ®.NoõŽŒÞ«Æiü0nøØú¶©. ‘‹¦l>[¸ò|W¼ðúi³ …NβóQv$3æ òœ•o–ÏwK¼´þU—=V£²“ƒ¼ÏüÒ=ÏÂ[îÏE,Æ QôN¶ÆUþ½CÒ“_y«Œë—f©ÈdN¯‹02äÔCü -þþ^è“endstream -endobj -1509 0 obj<>/XObject<<>>>>>>endobj -1510 0 obj<>stream -x+ä2T0BCs#c3…ä\.§.}7K#…4 Œ™¹…BHŠ‚žP$YÃÓÓSOÁ¿ $3?/1G!9?/-3½´(Ä× ÉjµP04„hÕ…è%¤ÅÄÜDÏÜÌhWHІ™!È×®@.08)¡endstream -endobj -1511 0 obj<>/XObject<<>>>>/Annots 780 0 R>>endobj -1512 0 obj<>stream -xZKÛȼϯèCÎÁ²ø%mï:kÀžõîŒãA´Ä1–H…¤<žŸª¯Åî¢f²0P*~ïG7iÿç*qsüIÜ2uYá6‡«ùlŽ_Â_¿ÿíj5KÝb]ÌæîàŠùlq{ws%ðà–ËÙZ8—¤ ä½ -*[dµŠÁ®Á“|pi25»H©j•ÎVpwµ¢K(é¹b=+ÈÍÉ '&³ùl)¤b°yÊ`‚¨b°‹ù,SV0ØeÆ`¢¬`“.f¹°ŠÁ.²‰Ëë5C]âbãñdNkœ/f‰[Š$‚dM“uBµ†"™–Á4Y1C$} -癤Ð9ŸÂ3—¤&HŰ™Ï¡~YÁŒ%cú#+˜þæLd³¦0°Š™ÂœYЬàƒËæÅÄ.š~åòõÜ'9˜Ÿ£MéÛÐ?k¬`°«YV0]^¢:‘õf1?,ÝÙŒ!1;²Å’NEV0Íf °^qÁôÌ8)¹!S,l¾¦Çõ¢heŽU’²ÅsC&*,:>Ö‹fKk™žºÜ¢X(Èb`­Ûò4·,M­J -„`²Fåü“¦V0Õr+,öÒ+æèp„"«˜¥c? +l^LYÁ`— ¤DdƒEW«ÏŠÑ©9§+Ê*»æ‚VðÁåiµ«ì"™hö%ÀP±±¶P̲@– £Ñ@*‹v€ÑÈ -f ,_d#Ø^ªY1Ø´`ù‚¬b°è¥\YÁ`Qz¤1Ê -F“©]Å`±05"Å`— Ë4+F’Ólâ•H¶^!L&²€b|/G 6ãø -+,f=QV0Øu†pEV°OóJX¦yÄ`1Qê•b&rΈš3‘,Qd}¸+68œB. jÈ Ëf#+,öÓDV0Êh6È*f@\+ -‹ãk"+lÎÃVdƒÅµC}VŒdÌw”U w õJ1»jê•O$Zš$Ïé²!K¤`°Ø—0YÁ`W\÷ -F@>‘AV1X¬¸YÁ`qA2kû$[¬ ³s# ™Ë<¯2$“Ë™À¥Ô9‡å“¥($b ¤b°ïšÂ -‹¬ÀÛ(+,öè蟹+‘âhSÍŠ™%·Q³b°¸`ªƒ]d'2‚¯²ZÈ`m´©ìbM‡#+,úެ`¸„Û"¬b°Ë9›-²‚}8ª™á˜`©²Š9¼–FÍŠ9lŽÈúDáD³ë~B 0Q«‘D+]à2‰¶é©,EODV0Xxd3ŶÜ"+,¼@#+IÄÅ ¬b°$¤)°>XÙ\¾E ÄŽ9s<—N Ã%´)òXS›Â/Ž«©õ ¨9¯&’Š¡ÖiaÓèF…ìó°P탧—”¡æWè”b°ö”°^¶à´Í—ÈpjÈdÃ.u&¬OÒn§^æV„•3QÁÞ)(¶gG§F 6[PqdÓeîFaÃ)¬+„d½S™¥õë45äâïÓ,ov -‹Ø‘å(+,Î8YÁ¬û8²ŠÁÂYµ«,n((hVŒqÇ%K½òá¢yâéÁû^~®…;²>¼È -áFÖ‡;Êúð"+8„Øs¸gÙ4ãG‡è•b†Ë—va#\¼H¡O‚fŒ* þf§c± X\˜LÎ}ä"T»„FR1Ø"aþƒZÅ`Ñ|p7²‚™ˆ©KŠÁâ­=d3T¾±EÖWvî?Ià•œ†*.á΀üR1X?K5µ|ý¶¡Møzé‘͇`k.¬Å÷ûZÄXøñ¦°VÃ!ñ2¶R1X;s£¨b$iÎ/²â| fƒÛ«˜tW 8öºpÂ$Öw"¤b:ÄËEU Ö*,¬`¸‹^ý£KŠÁbÄÔ)Å`q»AÒ,6“ vÔ+ï$¦Ò–<š(³•ž'G€‚ËX×^„¬¬–C%ä‰ÃÃ~O ÄÔðWá̃ùùC…Ý C–|’vÏ„A¼¢$˜=;TpÛ0WíÖmÀ¸!g¯—‘3¹‚ŠGØ€!@p¸=¯…‹:¹·£\„È)I9àð½0‰\b¾àk˜Í ¶1¾Îx_„=4;?%Ž\„ô“o ‘‹ö0kø.7Ê ¤ŸÜA‘‹ G9ïg~~ãÉì÷3@ø9~¹Á­íc]à"¤ŸŒ!È ‡Fã炳Nà°ø¡aä"‡ãƒŸ -F.BìAØã7•3çãÃ˦phi¬:_€Œ/G¿E.Bp¸Èc¹Ÿ]>FîÍíÕ«w\§îöÿP,WîvkßÿñËæÅûfèÚíi3Ômó×ÛãYLpâŸ} )ž~qS¾–nWö®¯¾W]¹wwU9œºªwîÜc{r‡ú~7¸‡²\ÛQÓžZwê«™»ÝUn³+CÕõ®n ]÷îXvƒ«ÊÍÎmZh§s÷ÒNØn›ÊõÇjSßÕ›ÑìÌ{ºOyEÀÓ·å×}åÚ;÷¶m†ªzÿ$vÖÓ¨w=sˆ½ºïÊ¡nîÝÇ÷¥n¶íCïšjxh»o½{¨‡³Ø©ÿzœBçÍÜëûªÙ–îâÎ:s×å¡r¿W}»?1¯Œ´tGäË}nê¯>ÔÍ釃ýö©b\´fÎ{µf^¿xU ›W»¶ÿÃp°0ŸD™Úý÷Ù¦mî¼Þg³+Üóâ´ûçÂùóÂMß#‹›Ý3 +G“[ø-¹ÞyÒŽŽ£t|ÕáŠ8YšdtLPîYRÜ烯ƒ?vüy>endstream +endobj +1522 0 obj<>/XObject<<>>>>/Annots 723 0 R>>endobj +1523 0 obj<>stream +x­WmoÛ6þî_qÀ0ÀÕ²å·û—fÈ€¦[í­–} %ÚV+‰.IÅõ¿ßs$+rŠeÀР)EÞñ¹»çžc¿ôbàOLÓ!&”–½A4À—§¿>üÜ‹ãy4£ñh%TR<â·_´èÍ^ÆÃhÀ›£q4 ++Þl¯±›$ìÈåÝi)I&Þt8ŽæaåL[kï8i'pˆÝÙ<ŠÃÊÙ¶Ö% ݵþ¬Û¶N£!ÛN¶u+·ÛZcw>¦íÝÖžìãh{µì½¹ã3-×Èêd:£eæ’‰/iÿz+vVjšE´åJ0$è~™Òô1¯†Ÿ)S¥È«³å§Þ€.† Ìû¥,WRó'öO½ï‹Q‚«±=‹âˆ~Qy•WÜÑsBûÜnÃE£hà$ÇÁ"ž°ƒKcêRÒAÕ´ˆ<8Ø‘ú€' •öêîý‚*ójMÞ%Øã\öo?ü?¿¦D -éÓáS°÷K>@ã‘ÅGO©( +™uÝß¼×q~Nûmžn›óøëÍõ+Âwœ9¤v¯h%ÒÏõ.T‚RUY­€G›X—”vJÌ ˆ¯n®_L‰¿ü)u@„“Ã.¤(\9œ ÇPªÛ\[Î]±ÊÚX’Yny¥»w›rûú¡?~8ëú]ç…$«ÈÊ”wT„³Uu‘Q¥öTÙ$ÀÈ´Ö¹=t±€ÌÕFÒCåYöpæ`ø›DC È[ÓO] E^IÊ+²[Im +µÅß|Üæªbr¹ š(¬–"ûÑ{·XRs¼¨ÕCon¾÷ÑbÏmû-lÀU·}>“;YeÜTÀ“¯N¦XnšŽÕuåšî˜Ñ77¹z¥|O‹ÔZš‡õXœäð^~µ”úD"à1y{¥?o´ÿ[öþ5Y-ÇtÒV,>/XObject<<>>>>/Annots 730 0 R>>endobj +1525 0 obj<>stream +xWÛn7}÷WLŸìöêjI.P¹¹HQ§®­6-àj—²˜ì.7$׊þ¾g†\Y^;EÄÐ^È9sæÌáì×£ ñoDó1Mf”WGÃlˆ;û?7¿¦³lN³ó‹lFæçû«’nù}šÎÎùïbŽ¿cüwšÖò`2ŸaQïÁx8ÉÆ4^L³öO‡Ø/^ñ~‡×üô¢÷ôñOçÙä`-.G4ž0³iºâ¯ñt:ÏΞ¾Y .AĈ–k2[ÌiYCZæ'¿ZSë‚ +[)Sӻ߯²WËÏX1M+NÈ:Š·ºMº5Ç·ïoþS°àE•_ýsóþõoWÇO·ÒÙxÄËâ!v¶u´«L­JÚšº°ÛŒnµ¦°ÑTëpw²¸{E•ª©Q÷àñ+ â ”)½à;Ør¹1žgsí=}F6^6òÚ=h²|•²Ûš°±m z0õ=?Ë<ÄÈ•Ê7 ‚‚k} •ç¶­ÙZv»~÷–sBØ—™¬4€éª‹å¶BÝ[Íxœmï7²S¦ Ð(ï·Ö”c/¤‹L‚ÍmyÊo×´u&ÈLÍ–îNvµÕÝ«œïnËô¦èVU+E‰S#yEkSjBM˜y¯*plœÎƒu;¾»Ý˜|C¨ƒ¯V³½È[Û–­°ÖAIgT[W©²ÜÑQnŠ6h½”6WåqWjÐ8ó€J ¼FI‚ÏB±Š‹;,–ŠGè>U°Ì‚ì–¥¼Ú‘³%Ää]ã'ª\¨rÅ3UïÈ"aG-ÈÈèCà·˜/z—ô’Úá¬Ôºìå „-вaŠ˜ýÎ]J@E:‚H À€Q9½n™\ ÍCÝ©òœJ_D—ÜåîÐ}P.͉5,”®,d.úÒ1»'/®²±(È=JØzz’‡ü‡Èì/zÂÙdÛs‘ÑŠ"Þü“4§§ñÎùNÂ?¯ÊFˆ†¸bbmÐŒÓÈõ ªáô½r…´‹,p»Ùu rŒV¦d2¸Aš&7 ¿èê¥ðM]F¬Ø"j(f]ç(>]éj…:'Í#joÏÄ‹m´S!"le¾5š¦Æ-dQÙb_œ.êR2Ñ ‡´œiÓ ¶L:„E—S)Í!{‚{pù"哌>mÐp,BüYéwÄon¼Nk?¥$~þ.ýo[çP{–L¯ÜœŲ>´vp[H?lõÜ ¥/éÏÚ|“99Ý@‰ÀÒëî#P‚8¨øjì ±àŒ¤_+­Ä™ÚmÝAä•ýÃGÐÝOS=IØ mì†^ž=T1åX{1S!µÖEêh¡—'ÓRðæ‡¹®€‡lB +÷kìù”›‘®88pòìțʔª;‚È–’íP%au=¯ò)¬Wn|9,» ì’^¶ª¼ýÕâÌrúk ãàl5ÿqÙµBÊÆ³åoU²¥N¯ç,ÿýÕ"-êT];vÇûu©•׈¾fËÑË­à#ho´™˜¦©q(U(°ÂÅ@l`3œFtKoîkúóㇿ©5¨œ8ÿ¶§ƒ‹£Q%éÊ +ÖøT«œg³xÀ0!Ž2 +öyÛT¬ïNØ|™Ùš [àg§½ +Ì[S–|úU0‚¤žHÂ~omÝ'ŠDª<
¨åxà< +B`Ë–ÇpÊ; .Ï÷£÷3ÿ/t3Ñ A·pšÈz xbÝyƒHø‹Ö næ¶®1ÝqR8ò iÐ>ê#Á‰‰“¶Å^¥Å-Þ“‘â•Êc^‹&Ï%(H0‘ñ:θ«€äÊäÎz»½àûâJ§ç +Ö …1P×4Úñ}ç>€OÿÍ_¬B¿SÚØ-s(Ä‹Ê醭+‘F¨æà +/&Á3ö;èZðŒÏ…Ú°Þ)Ÿ|¢Äq41c¶aÂzd>/XObject<<>>>>/Annots 735 0 R>>endobj +1527 0 obj<>stream +x]RËnÛ0¼ë+æè1­W(¥7§NŠ›Ô|¦%Êf ’®MÚ¯ï®-B €Ð>fgvÈßA„¾YŒD¢´A(BÊ\_߃DJB&‰ˆa‘ƉˆÆ¨Á†û!c>-âLÜŽ—&!á‘Mj“Ð"Äݤ6 -¢(rR¼/‚ÅcJi5)—y†¢: Q”³¥«P§šæï TÙ·‡qè²V9§[¨Êa] ÓíŽêp½)Õ Ñ{(¼¬¾Ájå:B«ž!GÕöð5OûR¼!æ›RT³)Þ;´úÈü̺Qv§.4{Ýó4xa*¦¬O¤2®ö­%ôß å¯½›§Õy^c:Öð‰Ÿ6Ù·~8N;Ýx·§„¿îKÁˆÅ£¼:7¥HYûúgñðõ\½ø:Ã3 8¯Š^Œk›•/KºñNòjÓ’šã°#U]]œÞê½WÿŒÓøaÜð±õmS]"MÙ|¶påù®xáõÓfA œeç£ìHf"Ìä9+ß,Ÿï—xiý›.{¬Fe'yŸù¥{ž…wÜŸ‹XŒ¢èl«ü{‡8¤'¿òV×1.ÍR‘Éœ^an3N=Ákðþ™è™endstream +endobj +1528 0 obj<>/XObject<<>>>>>>endobj +1529 0 obj<>stream +x+ä2T0BCs#c3…ä\.§.}7K#…4 Œ™¹…BHŠ‚žP$YÃÓÓSOÁ¿ $3?/1G!9?/-3½´(Ä× ÉjµP04„hÕ…è%¤ÅÄÜDÏÜÌhWHІ©È×®@.0s)§endstream +endobj +1530 0 obj<>/XObject<<>>>>/Annots 780 0 R>>endobj +1531 0 obj<>stream +xZKÛȼϯèCÎÁ²(>$mï:kÀžõîŒãA´Ä1–H…¤<žŸª¯Åî¢f²0P*~ïG7iÿç*qsüIÜráÒÂmWóÙ¿„¿~ÿÛÕj¶pùº˜ÍÝÁóY~{ws%ðà–ËÙZ8—,È{-T ¶H'jƒ]åÁ“|p‹dj6_PÕj1[ÁÝÕŠ. ¤çŠõ¬ 7'g€œ@˜Lç³¥ŠÁf DƒÍç³TYÁ`—)ƒ‰²‚Ì"ŸeÂ*›§—×k†šâ"ˆñx2£5HÎóYârC‘D¬i²N¨ÖP$“Â2¸HVŒÆIŸÂy*)4@ΧðÌ%  ¤bØÌæPŸGV0cI™þÈ +¦¿ÓYÁ쇄) ¬b¦0c–"+øàÒy1±‹¦_¹l=÷ FægÄhÁp*gúg vU ‹Â +¦ËKT'²Þ,懥;›1$fG¶XÒ©È +¦Ù”Ö+.˜>)'%3dŠƒÍÖô8°^­Ì±Jlñ̉ +‹Ž„Oõ¢éÒZ&A‡/\fÈ‹F Q,d1°ÖmÙ"³,M­J +„`²Fåü“¦V0Õr+,öÒ+æèp„"«˜¥c? +lVLYÁ`—9R"²‚Á¢«ÕgÅèÔŒÓeƒ]sA +øà2Œ´ÚU 6O&š} 0TlF¬-”dz,%Hi4ŠÁ¢`4²‚Y‚œå‹¬`¤ÛK5+»(X¾ «,z)SV0X”iŒ²‚‘ÆdjW1X,LH1ØeÂòÍŠ‘äE:ñÊF$]¯&Y@±G¾—#›r|… ³ž(+ì:E¸"+اy%,ÓIóD`vn¤!s™çUŠdrÙ ¸” 'ðà°a2p¡…D,T 6å]SXÁ`‘xeƒÅý3w#RmªY1³Äã6jV Lu°‹ŒâDæBðU6@«¬V ƒÍ×t8²‚Á¢O‘áÈ +†K¸-ÂáÀ*»œ³Ù"+؇£šÞˆ9–Š «˜ÀkiÔ¬˜À戬ON4»î'ôصŠI´ÒN “h›.ŠÁÂQôDdƒõGV0SlË-²‚Á $1²‚‘DÜHP¼À*‹ABšë•ÍUà[Ä@ì˜3ÇsáR1\B›"¿5µ øÅq5µµ#çÕDR1ÔÚ!-¬`]è°‚}reÑ>xzIj^àêàR ÖžÖËœ6°Ù^2YÁ°‹E +ëS´Û©…W…¹aåLT°w +ŠíÙÑ©ƒMs*ެ`ºÌÝ(¬`8…u…pƒ¬w*õ¯´~. y§ø»Ç4Ë›°‚Á"vd9Ê +‹óNEV0+Ä>ެb°pVí*‹ + +šcÜqÉR¯|¸hžxzð¾—k`Ꭼ/²‚C¸‘õᎲ>¼È +áöîYv‘ò£CôJ1ÃåK»°‚.^¤Ð'A3F³Ó±XF,®@L&ç>rª]B#©l‘0ÿA­b°h>¸YÁLÄÔ%Å`ñÖŽž ²Š*ߨ"ë+;÷Ÿ$ðÊ ÎC—pg@~©¬Ÿ¥ÀšZ¾~ÛÐ&|½ôÈæC°5Ö‹âûŒ}-b,üxSX«a‚xË…T ÖÎÜ(ªIšóã‹°¬8_ƒÙàö*æÝ޽.\„0‰õ©˜ñrEƒµ + +Fÿè’b°1uJ1XÜn4‹Ídƒ…õÊ;‰©´%&JmE-ΓÎ#À¿ +Áe, „k/BVVË¡òÄáá ¿§bjø«pæÁüü¡Âî‰!K>I»g ^QÌž*¸m˜«vë6`\„³×ËÈ™\AÅ ‚#lÀÇ 8Üž×ÂEHÜÛQ.Bä‹$œ@pø^˜D.1_ð5ÌæÛ_ç¼/šŸG.BúÉ7ÈE{˜5|—åÒOî ÈEŽ£œ÷3;¿ñ¤öŽÀû |? Œ\„àÖö±.pÒOÆä‚C£ñsÁY§@pØ üÐ0r‚ÃñÁO#!ö ìñ›Ê™óñáeÓ8´4V/@Æ—¡ß"!8\ä±?ƒ\„ŒÏ.#÷æöêÕ;®Sw{‡(–+w»µïÿøeóâ}3tíö´ê¶ùëí¿ñ,&8ñϾ„ž~qS¾–nWö®¯¾W]¹wwU9œºªwîÜc{r‡ú~7¸‡²\ÛQÓžZwê«™»ÝUn³+CÕõ®n ]÷îXvƒ«ÊÍÎmZh§s÷ÒNØn›ÊõÇjSßÕ›ÑìÌ{ºOyEÀÓ·å×}åÚ;÷¶m†ªzÿ$vÖÓ¨w=sˆ½ºïÊ¡nîÝÇ÷¥n¶íCïšjxh»o½{¨‡³Ø©ÿzœBçÍÜëûªÙ–îâÎ:s×å¡r¿W}»?1¯Œ´tGäË}nê¯>ÔÍ釃ýö©b\´fÎ{µf^¿xU ›W»¶ÿÃp°0ŸD™Úý÷Ù¦mî¼Þg³+Üóâ´ûçÂÙóÂMß#‹›Ý3 ^N -ë–6óÖ§ ý†®ÙZ§%Báž&›Û7Úu5¼yÿëWûýUñai-ìæŒMùáã/¿ÞÜÞ¸»zoO½¼x ÞM¸àþO×7îCÛ~;Ÿ1³˜¹/ï'\„¿´îk‡d?Þ›ÉÞ•ÍÖí@a†¶Õqß>º~°.'_Ø„lú z2¡o'žÂIc_mN]=<ºöÈ>Øb»Ô÷ìY?ýw˜ê¾ªûªçèž'Ç/i%qìÌÜç¾RK×·Õ,1§a‡¹¬7;LF_u瑟fßàiùm´^ºCuøZumh‘ 9„±memkì"h” aÏŸ¹3©0›=r‹<±À“úáèsŸ¯ßÿÃ}ªºCÝó!÷¦|BǽO_o6L—S×î݇ú<Òj º¿¿×Õû€EÆÆlî ÌÄ1˜àxðgdÔMÒP—ûöÞ¼”<@/rÊ&C'}‡zkö˜<¸\žkÝïÊîrX Ž,ŽnqN\ûÐ`ïjkx­žE?OŸíܶîªÍÐvNB¸œ_Eüïh fó™`p:bè‚΋g/ËÃÆo·õÝ£ —yÿ]ƒêó¬èJI.0éD _·=§mÓáT¬Ü¡ì¿ñPÃ!Àsîb Àåÿ§Îr\CW=™ÚãÎ?í=dkln÷éõGÇaÝ¢¹¼èÖAÛ`ìptïá`SÞc¯NgñI%ö¡~v!ô^†‚ 1Kí¼žL÷ÓÇÑAtot×ï¬öþð5œÓÊYËövD—îc½éÚ¾½&F­Unû¡:¸¡«Ð—wûIDv¶¾o௿ðXm&³Ç'õu;TF¾Ä›§>®îS‡ÝÇ4ßœŽÇ¶žØ°ãÝ2¹UéÚ™3ÉÀ3:ÌÓ·ì'Úúç‘Vÿò¯Ë„RtS öØO]eÚ[õþ²X;Pô™6¤,â9‡Ñß—Ý}åšÓ¸fÍæÿÄt¿Þn©þ{ÄrBÃßëÒ–‘n¼O_žóã(å]tŸOËú«wxk³«åìrw™Õ¯Ëb…[-n~EJ;?ß^ývõ_ÿãJendstream +ë–6óÖ§ ý†®ÙZ§%Báž&›Û7Úu5¼yÿëWûýUñai-ìæŒMùáã/¿ÞÜÞ¸»zoO½¼x ÞM¸àþO×7îCÛ~;Ÿ1“ÏÜ—÷“.‡‚_Ú÷µC²ïNÍdïÊfëv 0CÛê¸o]?X—“À/lB6}=™‚зOᇤ±¯6§®]{dŸNl±]ê{ö¬Ÿþ;Lu_U‡}ÕstÏ“ã—Æ´’8vfîs_©¥ë[‡j–˜ƒÓ°Ã\ÖŒ&£¯ºóÈO3Žoð´ü6Z/Ý¡:|­:Ž6´H ÐÂØ¶‡²¶5v4ʇ…0‰çÏÜ™ÆT˜‚͹EžXàIýpô¹Ï×ïÿá>UÝ¡îù{S>¡ã^§¯7¦Ë©k÷îC}i5]Èßßëê}À"cc6÷fâLp<ø32ê&i¨Ë}{o^J 9e“¡“¾C½5{L\.ϵîwew9,GG·8'®}h°Çwµ5¼ÖÏ¢Ÿ§Ïvn[wÕfh»G'!\ί‰"þw4³ùL081tAçų—åaã·Ûúîц˼ÿ.‚AõyVt¥¤?˜t "†¯ÛžÓ¶ép*VîPößx¨áà9w± àòÿSg9.‡¡«¿žLíñçŸö²567ƒûôú£ã°nÑ\^të Àm0v8º÷p°)ï±W§³ø¤ ûÐ?»z/CÁ…˜%ˆv^O¦ûéãè º7ºëwV{øNˆiå¬e{;¢K÷±ÞtmßÞ £Ö*7ýPÜÐUèËÆ»ý$";[ß7ð×_x¬6“Ùãˆúº*#_â¿M„SW÷©ÃîcšoNÇcÛ OlØñƒn™Üªt íÌ™dàæé[ömýóH«ù×eB© + º©{ì§®Æ2í­ú?ÿ@Y¬(úLRñœÃÀèïËî¾rÍi\³fóbº_o·T=b9¡áïuiËH7Þ§/Ïyq”Îò.ºOȧeýÕ;¼µÙÕÇò v¹»Ìj†×e±Â­7¿|M;?ß^ývõ_-Pendstream endobj -1513 0 obj<>/XObject<<>>>>/Annots 832 0 R>>endobj -1514 0 obj<>stream +1532 0 obj<>/XObject<<>>>>/Annots 832 0 R>>endobj +1533 0 obj<>stream x}YÛrÛÈ}×WÌcRaqù”’­ØQ²ºD¢ã¼‚$$aMZ”jÿ>çtƒ˜Iom•ä³gº§ïÓ¤~¿ˆ\ˆÿ"WÄ.ÉÝj{!þÏøãñëE6 B—Ïrüܺ¢âlÜÓ…[EEÒb°Y¤– cª*â`½Q<[ 6™Q³œÖ`°³: «š³ySsš‘ˉ¬Á`‹NÖà­‹£0( k1Ø,›Êê½i?¡9Ž‚Ìå‚Ô#Áæ k0ØyD¼¬jNÄhÔ,Èh>°EÆ|yÖ`ئ´yd5¹1NÅaÆ Åzm˜kŠržÊy6›'æ, æN‘°CóŒucXƒaTNeåÞldi(Rw=†æ<ƒu†5lÁ"0¬Á´ŠEmXƒ™|Ò°jUNO ›0ù™ ±Ê`°ékXƒyïk0SÄ’ô²3V1JÒ°ƒ…=“{Õæ,Õü"³È‘ ¤Ç´™bXƒÁfÅTÖ`z4£U^³Þ›†Z9z¯ sïÕ{sÆCU#T>ú!äIID ‚†( £Ä6ñ¤ÅŒR†B4¬$5EÛë8HÑxЍ8J<†, Dâä¬7)fè`_‚T€˜ä!M¢Ož´˜jù¤VMÂü'5e¦‚Ä$ƒ!‹G×zÖ`&N’>²3qìv#+÷&sNDh–{ù{Glè k04£P3ÃZ 6‘#«÷¢ åÁE±.$÷ «ä]0¬Á`QlÐìeUs>×äf!~'‚D³Á° kḬ̈k¬RÃFª9Óu*й,$‚D³ÁŒ$#jXƒÁbùŠ,k0=bYƒaæ)²àïU«ÒaCö!+H#é1ïõˆ¬4_ÛV$× Qƒ!ª)ñ¬Á4™«šDVІ}JÖDaÃa'B:a² ÏÆóa±I „Y‘°Ó¡4¬Á`åqö¬¸ÃN„÷gîQ±’ù°))Ho…{1j‡Õ*-¤`,FŽ5så¤ ƒ¢unXƒÁ¢FàÌ(«Á_™RPs0§8eXƒÁʃïYU,#¤*dØ„ûNìYƒ©8D•Ö`°èIø3Ê굈ìð @RoÅ«p€ÄöRÙç2£Ä^EÞÞ‘ÅðNe&äNXƒ¡XÊc*ÃÎa3ˆYÄŠDÖ`ÅÉiXƒ©9²£g±yGFÖbvô|r¯Å`¡)·²ƒEŒ­ÍªB×Ì–HŒ=„ÁøÀ“FÒb°(L+j1CÑY/k0CÁÇѳj’üÄë/6ð& Ü`ÂHZ µ¨-¨õ¬Á`±3À`ÏL–Û—e=füùúxV”p¥–:½¼Á78’{V >Ȫž5x4ذbð Ë7ÈÝȪÁ‰îPó鎈ÁB-vbx:’ƒEo#ž5˜î°› k0 æÇ|ÃŒcc¶šÕàˆ‹8JB:V€ì! ––I‹Á♃ZÏ *ZóÃ$Œ”ÄÈbÔ¢)8lñ!zÐ$¡£jGÒb°H#ºÕ³3ÿ‘•KçºKFx3'€wHGçÈ›çøÁËë_Ž$úoJy$Ëi謪‚:|¨K=%ÙÀ#ì7pb…,äK0¾EàAá<„J™Î#'*eÅE~¹‰É¿)å„ð]?¨ÁQˆÉŽ]mXÜäã›ÏaÅ’/;>áÈ}Z\üòAÜâ™_…å³Â-ÖòMXè«¿p–nñZ¹›í[[ïúÎ-šfÓUý_¿]@à'bˆèÉ(pß_ËÞÕÝxþï•Ãð­y¯×ZÃG7áÛ”fÙ¾T½ûÖé‘i9J¦ÿÙ|Ìuß›öÇiYòTÝÖ«¶éšçÛ6}Å»Þ}[¹Ï¨|‘›´åP«^î -%ý^¡ÚjÕ7í¨²ö½^v %Q´wå¶:œqOu¿z=Î!O"A´C‰pWûþµW¯´oÑH›ó R–VR÷µmPé7×îj³iTôÜM¨ØÇªÛozx¼zJê8¦Ð{c‡Ûæs³{®_ö­u¦*°*üyß§=ÞþûÑÛÂÓî㎭ª“Î]оÎÝÍwTðä×z[÷bÐUh6ؼڠœuM½¤ÓÍ;šbÙ¢XôõÎuåvYžø'ÞÝc~¾×Õ‡kžG‘㋟úºýÛ[Óbƽv(ˆ»(BÎ=×V]³ÙŸ™øÎ=p£Ò’Eܹn¿ÜUÃIdx©`S¬›ªsöôh¶û@Ÿ8GÒŒ¥û~s÷4ŒËSg‘sx4þBðþñß_ï¿=œŠ!7?»¾¿½º¹;•Á<üÒ´+¦IräúcÌ¡Wܶìð(žŠ`4Þ–?Œή›m ó~&‚uÍÝq4”KÌ}Æ«\¯ Þ•ë5tBÓ$â w‹žªßоò@?—ÃL˜ÃÕóÍfŸÿ÷Ë“Ûú枤Ÿã¦Ý$=¾:îAkpŠ à×(éŸ+Æz¸r¿®ezk€Œ¶?V›Šáüå 7[î;øâ%œñOw²À<]Ý~ºâôü cÐ]7«=ûy —þÈÀã—E8çÂsü"ð{Ù"ŸáïŠ ó„WýcqñŸ‹ÿÉvendstream -endobj -1515 0 obj<>/XObject<<>>>>/Annots 862 0 R>>endobj -1516 0 obj<>stream -xmW]sÛ6|ׯ¸·¶‚Á/|tìÚÍL¤‘&î+EÁ.QTIJvúë»wèc2“Ìr±‹»=€TþD¤ñ'¢<¦ÄPÝN´Òxrüëëã$Ò±ŠÉFij)JµJ÷hE³IVà±ÉcU€ÌK•ïs„0*U!kØÁù°4Ä-źTYȺ’²R. ÿ¢$A¢uljðl‚nÈ6á’=µ$O`.€Ò ê•…Ì¡™äf"ÎäH†˜·L9ϘËÕª ك͹2¯uùÆÜo›qñ‚¸&Gj#áZ%d0@&‘ 1Ø8=‘†ØU„M½VâÍÊÄ…ÞJrˆ·åÞÚ,Bj`°%§°Î•»Á‰“ ÀùÀ:'ÏÎ&ç*<ËCÏðP†žñ®Ø7õ°%œò,àÓ¸@L^ˆLaš¥29:ˆ)¾é숤“ÉÖ2+CÍpÍøFñ-)È“q.Ù|+2Ì‹M±Æ“Î5â­Ðe¦Dè!„„GÒ 5O -B>c™zè„: E˜ü~Àeây8À²0B9žtÂïšæõ¯p€“¢µ«±Zýømþ}2Åï€)NYŒ•¼ô·‡µÝr»²U»ªYU‹•%»ìÛ?¶·¬ºEŠîṨû0ãúÌ5V´êj-{¢6¿g®è¶®í0Ьj ݶ¯-ÕÝÒÒ®©èl‰Ó­èãzìQf=6؆[âÕ¯Xy°;Ø]uýëE¼~û*ö{¾ÙÅy¼¶Áºz7\6T(zì»í†Új³iÖ¯ôÇççùçs³RíûÝØþ¥ëÛj¦›aØZ±÷Íhé*‹¨f«îîV]WŠæ”x¶o®5i#b·k„ÍœœiÜJºëm5ò$Ü\¾ôÝKƒÓÍkܱ9?7ëe÷6Ð/åûY;à‘óÿ4§ôŠƒ¥YƒÃ»¨zúÔnŸi·øÀé©Z/«±ëÒ&¨è|!æÖv;»l¯ì»Œî Ó{Äìgï¯õ‡CѱÖúæï/¼êæ¡Ø¿*¢$RºÀ+?Ð ¿f·On 1}·õH÷]½m1Dè.Ú”o±`šë’ןßDþFç¦À5@Ié÷ùä¯Éÿ )Ëÿendstream -endobj -1517 0 obj<>/XObject<<>>>>>>endobj -1518 0 obj<>stream -x­VÁŽÛ6½ïWÌÑbÙ’µ²½7w› šmÚ¸Èe/´D[l$RéÝõßç )ie;E[´Y°$òqæ½™7üó&¦9þbZ&´È(¯oæÑœÒù:ZQºZâw‚ÿ­¤½ÿ¬âë?lofï×”Ìi»V¶\Ѷ àÌñ&ŸÜ—¢q²¥uD´“‡V8¥ôñ3}Qº0Ï–´tϦýjéY¹òÍö›9M“ “Ï¢Þ ~ÃÄËpÀt‘F ]GqD›ƒÔE·&¥8îÖ$Ë(ã5[CªÚ©ý‰\)é«<Ñþ¨s§ŒÕ2/…V¶¶dö߉‰#u†¤»Jz€B6•9Õ€äC€9^„°„%`¡=¦|qq„.f¦™M%ò -¶³„ùrˆG›ÊNQODy*¾HÐSU$_D­´¼ãÏPlštßD-mMuäÜHiDÑ!ÝïZ½Ì~VúøBÛûO³ŸÎ“jæ$f -Ö U1üŒÇ!™KX$w´²ðRáˆk‘Øfrù“y¦] 噄^ ¦ *ñ |’É:O;ÀÖ™U¶=À ÁÆâúÈQœVæÇV¹™†‰:;77z¯LšG¥=ô²RÖ•´ŒvÕkôY†éõq÷JRôuBÂ^ɶá$u1•ÑgµO² èóh±Jƒ.¢;!¼´Ùœñÿ°¥Eô2KѯCŠ…©Tªe½ëa;©w×ANTèT¨ŸP슌ðcÀEš®5UÕcBÎþt‘EYœÑmß@…݆ׯíj,qÒ‡ô¤ÄÙ¹´;úI4š¢¸&”Ø<ž'÷GY`×&ÏÙ‹;çé#K0ê›ûþW³ÚAÄ0ýAW'Z$´SHPI}®ÃüF¥qŽîÔpRØÑ ±4büíͱ¥ÇIúøC)W5§}d=£§Hv'èU@…Ç Bld«LñøÆ×0ùÒâ‹âNœ~˜s*¯¥1q A{˜ °NZDÀ]q+®ãhq³¢B”£7‡‹€/JÂÊQÔ9n!:4îƒw+y7wqr·Hïn³‹pß¡Nƒø<'Û}+rIõW -L%c}6Öš\yŠøÖ’FŸ¹¨ @-N´C§`0?GåQ,8+]ÚúM蕇_Е7}[ªîYJL7=Ú¨Ÿúý[‘=æˆÆZuð÷£ÎïWg7K?Êþå½öõª˜.Óh™­ÂhÏn™ËwÛ›_o¾#†|Sendstream -endobj -1519 0 obj<>/XObject<<>>>>>>endobj -1520 0 obj<>stream +%ý^¡ÚjÕ7í¨²ö½^v %Q´wå¶:œqOu¿z=Î!O"A´C‰pWûþµW¯´oÑH›ó R–VR÷µmPé7×îj³iTôÜM¨ØÇªÛozx¼zJê8¦Ð{c‡Ûæs³{®_ö­u¦*°*üyß§=ÞþûÑÛÂÓî㎭ª“Î]оÎÝÍwTðä×z[÷bÐUh6ؼڠœuM½¤ÓÍ;šbÙ¢XôõÎuåvYžø'ÞÝc~¾×Õ‡kžG‘㋟úºýÛ[Óbƽv(ˆ»(BÎ=×V]³ÙŸ™øÎ=p£Ò’Eܹn¿ÜUÃIdx©`S¬›ªsöôh¶û@Ÿ8GÒŒ¥û~s÷4ŒËSg‘sx4þBðþñß_ï¿=œŠ!7?»¾¿½º¹;•Á<üÒ´+¦IräúcÌ¡Wܶìð(žŠ`4Þ–?Œή›m ó~&‚uÍÝq4”KÌ}Æ«\¯ Þ•ë5tBÓ$â w‹žªßоò@?—ÃL˜ÃÕóÍfŸÿ÷Ë“Ûú枤Ÿã¦Ý$=¾:îAkpŠ à×(éŸ+Æz¸r¿®ezk€Œ¶?V›Šáüå 7[î;øâ%œñOw²À<]Ý~ºâôü cÐ]7«=ûy —þÈÀã—E8çÂsü"ð{Ù"ŸáïŠ óWýcqñŸ‹ÿ«vendstream +endobj +1534 0 obj<>/XObject<<>>>>/Annots 864 0 R>>endobj +1535 0 obj<>stream +x}WÉrÜ6½ÏWô!UI¢î<ÚR¤¨*¶Ï8Εš$Ú\&$G‹¿>¯Y’R•T¯û¡74©š~4e!E)­›… +žÌ¿>_/´ +ƒÒ< 5¤cĪi¹HrkCJŠ åð! _ËÆ)ž‚ ¥‚„ø (BN Å §&€96„„qæÌy¢aD©E4ä“ Ê§DÔA8ªdô1Çï±¶¸*•ârÁ +ˆu…LŠHjs,`΃l GZÇœûˆ,#üIˆ£ƒlÈŽ3iÓLJ‡§%ÄÑAë¨<Ò:&±”'Ë‚‚ìèAvÔÎLZGŒO— U€ uâ´â†&3iÃ̇»œGùÄcéH먹81dN€8:Gî‘Öñó\YGÎqâ4ôrJf2к8ç{ÔÚ©'ÀŽĉè£òHº8cµ5Cª°£MÆ¢b(Ñ8È¢|»éc°qÆGή’dœj)+7 º‚X×Ƕ>ˆhf­kœKa'SAžë«3ÌVìXsÄ ̱rÝ㈻Êl„ñ²H”=Ìù„œØ +ëa°iZz¬UF…dó%¢,H|= ß‚/@ìXë«réŽNù +Æ‚l¾\õ¨à¦qÌ +1[dcv˜cVØªŽ•BF˜0ÙnÒ‹¬0÷df‘^4!ayMEÈ’+%#bsÄÄðzó8Î(™Þ:aAâ($N’;Êó `“÷‘ÒGl3éc°ï[õ0Ø<ÞcmBû°§p‡NojÔv&} Ù,Ýc­,n¶Ü~ ^€“8tš9r&Rõ™´¢² ä.¢"œèÄY•™ó DCÞ,ÎÑÇ`å6x¬‡9Kž`ÇJ@!VÆïVEqDÚÃ,¬1|ŽeŸ«+CªÎ½¡ûÅûÕâü*ÅV¤Õ=M¤yF«|I(Z­A5P•€Z3–cYÿuõmq†OŽ3l±–lú¯«%5ÝfW›Ê§²ªË»Ú©óühzÃ^GN: KhÞ•ƒ¹Z²…:P zÖe+g"6wfÐußí¶Ô”ÛmÕ>Ð®>jä-Ëæ®¤­é﻾)Ûµ¡jvf8 +#ÐE×l˾ºV üxr”–Ýú»©ÛŽÕIâ³)74T?$å}8 å ½4ÕxiÐÝÕæÉÔÇl: ÷åó1‰b|í«ÑÐI–‹PwÏtQW¦OäUL8¾:•·V(Œ8Ó¸kQlŽ` qÑ›räNؾÜö]]­_éªÂD°Ã^÷ñE‰˜«vÓ=ôsñr˜ã?®(>¡€w:¯6†îÊž>v£=ç̯9ë@éCÙnʱë_iÛw÷o¢yM÷dvƒéó"ý;C ¯1Ë›ËSE€Â[R¡RêüïÛ#+¼1hiÖ»žK%Ãy˜,ØM;ö¸Nk4¶ð‚…rú2°Âc7ŒÈ0Nm4ÿaÀ¬}ÕŽ¸ +%®Áÿ™#Kk^Ò}Õ›ç²>IÄ€}3º¹½ø‰†Ç ecÚ×ãx1¾_¶}¹ÙËúü*ŸöŽŽt r¼†uÎ+eùîÃûw„ú†„è²[ïŒ.ÆËÖâLãë•ÍÏ2U°ýa±ø»'Ksüƒ2ÕÏo«ÅŸ‹ÚøËendstream +endobj +1536 0 obj<>/XObject<<>>>>>>endobj +1537 0 obj<>stream +x­VMÛ6½ï¯˜£IJ%ký±7w› šmÚ¸Èe/´D[l$R©Ýõ¿ÏRÒÊvжh³`IäãÌ{3oøçMLsüÅ´Jh±¤¬º™GsJç›hMéz…ß þ7’þC²Ž¯?ü°»™½ßP2§ÝXËÕšv9gŽ7Ùä¾µ“ m"ú <6Â)}¤Ÿé‹Ò¹y¶¤¥{6ÍWKÏÊovÜÌiš¤™|Õ^ð> ^…¦‹4Jøë&Š#ڥλ5)Åq·&YEK^³3¤r©:œÈ’¾ÊZ9e´(©’Y!´²•%søNL©3$µØ—Òä².Í©$ïDÈñ"„%, í1å‹C€Œ#t>3 ȬK‘]Pð°›%Ì—C<Ú”æxŠz"–‘§â‹=eIòETJË;þ ŦI÷ýATØÖ”-çFJ#Šº…t¿kõ2ûYéö…v÷Ÿf>!'ÕÍI0̬Aª|:ùC2—°H®µ2÷Ráˆk‘Øfrù“y¦}噄^ ¦s*ð |’É:O;ÀÖ™U¶¶``Hcq}ä(N+³¶QîD¦f¢ÎÎÍŒ>¨#“æQ齬”U)­£]õ}–az}Ü}‡ƒR‡}°W²m9IOEi´ÄYÍ“lú&Ë•oŸWÿqËcø}Š8²ÿˆÄÑü8ÚZønVüc,81éëYGñ†¦‹88Ô&JØCZq·hrÉÜ™\\\D(R6M´‚S•Êzs…SmóŒYèÆ& áq6"yômÄ>/XObject<<>>>>>>endobj +1539 0 obj<>stream xWÛnÛ8}ÏW Ú‡uZ¾Ä°îSÚlÛn¶u±/y¡%Êb#‘.IÅñßïR’eÅÅn/h*‘s;gÎŒ~^ÍhŠß3ZÍézIiu5M¦´˜Í“9-Ö+ü<Ç_+)/æ«E²¼ôb6_¿|ñ~s5ù¸ ÙŒ69œ,×+ÚdÓ)mÒ‘€Ya·Ê {$c)S.µÒ+£ùÒ¤…¯­LèÖ“/$UÆyÚ §R*å“,I”%iéÆ>RjªªÖ*|ß‘ÒѾ©¤Ú)½{³ùq5¥ñì‰m²ÑçÛ$²ÌJÇ/ú¦4NöžâvU³?I»ÒláêH°ÿ³–oIèŒvRKžZY —¹z–åHDèãÀÝ^X¯ÒºyyisÄõ6$%ÀNWR{29nÒ§û60ªBNj‡ú[S‘èÒ­„;®í¥u{™zõ$“ÛÏ%ö¬-û–S¯ãëYÔþ›HÒ ;kÞG¡‹º›°RFðOÆx뮏ӵ—eGÑ0Rm­€ ¸wl«Ï¸;̪pºBÃó©ÒAÑRX½kd7môx¼JÖ¼V!’‡ùrÕ$ÑF^v{Hëìaä .ðÈuÌ‚GŽÀ¸ÂÔ%†Ú²öx=Ä€YPƒ“þÇšžçÒnM¿Lçeíú&C^-ætëù…ùõMÚ'¬/1ÓJCšî1 –­Š`¼˜ ­Hy+´‹ŠN3õþ"Rhi7Æî:»¡ñ‚w[€ÆÜ»¾Ì=.]yíq#óºIÜ;Ô¦1ªÝíP•Däg-P=†î’GÁTëà\,OžcÙ“YBŸÂb1r©U"ƒU‚E ¯Íj›ÃØ ó®›a¯°ç°{eÁÔã¸gxå¼­SÞØ1öCW±.ß4=_ÄÆ¦æWt––·[¥;ŽN“5cЫêÒ+LÔÈʶ”\ïʉEºÓÎ,¨Ë©aÚM3¡ûR -,ÑVæ¼’±äás‚¶ÇMlø_^[œÀ‰ÄÐ*]˜;¿”©Åeªhç Òiq ]NBu‡@yY(p܉ú{`ƒÔ€÷²¦ó1Ú·?@â¯ôûI$†«nŽuÔþª×‘‹/B³\¯#NëF gK|A®¯i¹jVúo·Ÿßßò>¼3iÍkP˜²|sÜ^¯¦ NlEŒa/ðÙ>EWËuÔÙå’ý±¹úûê_㈸ endstream +,ÑVæ¼’±äás‚¶ÇMlø_^[œÀ‰ÄÐ*]˜;¿”©Åeªhç Òiq ]NBu‡@yY(p܉ú{`ƒÔ€÷²¦ó1Ú·?@â¯ôûI$†«nŽuÔþª×‘‹/B³\¯#NëF gK|A®¯i¹jVúo·Ÿßßò>¼3iÍkP˜²|sÜ^¯¦ NlEŒa/ðÙ>EWËuÔÙå5?úcsõ÷Õ¿ãj¸endstream endobj -1521 0 obj<>/XObject<<>>>>>>endobj -1522 0 obj<>stream +1540 0 obj<>/XObject<<>>>>>>endobj +1541 0 obj<>stream xWïS7ýÎ_±ã|(LÁ¿ 6ɤ4¤Lc ±3ùÂLG¾“m…³tH:Œÿû¾•N¶¹ÆmSûNÚ}ûv÷­ôxУ.~{4ìÓ進åA·Ý¥Ó^·Ý§³ó!>÷ñg%Í.'«.½¦É ;çøVw»4É©þyE7b)i,í“Êð¥|¶ Ì虚WVxe4ÍT!ÛG“¯]:§sÚ÷{íÁîóR8·Êß$7°¸,…ßg„. /­†»'IR{«¤£™±Ì›“¨ü/T! +ßì5öÒwô‚p¤•£"%­”ž*ï±á"7«ÿˆ~nMUn×¾ µÉËÂ8ïv3·V®Ý4¯öÒÃÖHs­t¦¨Bºþ‘›—þ£wxÄ€œiC*§|ZDZ¡k:-ýÊØ‡MPLñÆnQ“‰dÚÍ ÞÞ= ”Öx“™"mÙøØ³Þ–ÙÇÿnßÅòOæ_âé\Q¯Û褪üvv*ëä1I~13BDNÒRf tK‡Œd¬ƳB!vEÁ,‰i!Ù´™z¡ônÛ!Âј¾@TÌÊÑô—×·ãМ H½ÈsÔƒ“®MÓð:gk~Á½SéŒûX <Ö4Áj)ó`XÏ70rS¥=©Í«ÉKÅQçT] %W¯ÐëÝ¢XB+Ìt ?l‹$=çZ=&`ax3òÈ…˜ÞªoÜTŒ‹8Ì!Ž~µPФ©Aç°ìÄ~IVjZ¿ K²ßЊ«×ÔÖšwz%æuû´ »ÓÆQåêj˜m Ô‰ëwãæZ~ÀÊKŠq¦èãÙa»7ésÈ´[™³ºÀ˜š*ªihì ¾)4¬œã¡¹<ñ9,ÀÿmVšž„U¦rSÔûCf2ÍPêѽ?ŠäKjq·U¡Î›Ö1µ’3¶Îß·q‡õ£©2.k2R·…ÍAP ¶1,–RÄD"YФµ–>N |ÎdF;4†n­×¹Î°JYë×VúŽã ¢m¹`ð°‹Ü,Y€WlYØ ýØŠëðcÁJ4÷š¾òüKöÏ>ƒ„ÇšdW‰@dƒÂd<óÈÅKÑdòYð¤κ ô|\Ž›iîkoà Ÿ›Å\>¨VÌwv‚!‰ï¡^Á‘ƒÎ@Ñ1¸%1”ŸDQ1ûh:Èx¨8—æ2<>ÉÏq,]ÖçâH^Ãõnµ-†0çâB#ÒÍpHT0i ôX ûÌmZÇ2Òóë2‚l8†œ/žk †¹ŽÓ«·Í;Á‚™) -I…ÚÀ+,#èbƒq…Í|5n#®x/pá¾sÇ8é×B‘NýŸµz¡‰‘˜‹›¾q‘H{Fï~»¾ys1zÿ¶Ûý…~wý¸¾¢pB+­3Ž;ËÊ7 Ÿ²áRK«2Õ²Ìø0&\Žþþè;¬öÜBÐŽ ¨SÒþ/ê/·Ÿ~ÿðéöóÝÛÞ”1ÿu„ã ¬_Zœ5¤­16OÙøb;¥ê¼½½®Šç§4žGu_Œ./èΚ¯˜¾p’…ƒD(s6~’6œ »|<ü¾Q°#çlílxÖÎq+…¥Á½ŸüqðÞendstream -endobj -1523 0 obj<>/XObject<<>>>>>>endobj -1524 0 obj<>stream -x•XÛrÛ8}÷WtùÉ™ŠdÉòÊÎÔìTÙ‰3«Z߯R*ûˆEÄ$Á dýýžÆE’éªÌLbË* -@wŸ>}º¡Gcáÿ˜.Îh2¥¬> Gt6¹Àëù%¿žá×H*ü“Éð¼ÿüzqtúyDhQà¤é%Þä„SF#Zd'Ôû÷õáé¿<=|yüm4ùþMÈF•ѽ¨%쬔uÒÈœ–[UEµ¬—ÒXÒív¾[|?Ñ`<^ÂÔO,Œ3¶ðI×B5ôQ7ÎèªâÓNé^ºJ¯tCsiÖxô÷ÏÌùÌ[‰Šî;K×Foì?:Cò³›éBèOÒê*yrúùœÆãèàlÊQÎÙRw‘Ôhˆ\)œ Á\ÏæT‹¬T´;±D*CzÓP|- K-<ÆcK½–CZ”Êÿ4´F8 ‡ÉðŒ­f “Ó´øøx:{ÄBëá”n,mJd‹°&Wülýév hjy­¤Ô§ m2šK„§’M²#§Òe§¥¶Y6=ûqɧû9剥°&v ¶…µ:S‚Ù(W’?Ežií0žx6sÑ aC­Vcje•0ªP™ªó{ï%Ã4i9Ù;>Hù:¡BUpªáôHbÇÌ´É-åšóF­Ñk•Ë^ ¼8¥‘c#·m¡B›:xå³}7§¯ªÉÁ7ø¬dÌrÙJX•‘£ -¼tØŒÓüˆ Ì\«ŒŸ‰~vk±õl’2—ù®’/¢ná?ö¹H w)ZXñén½ñƒ6‚Ù» /×]/ÎPtì“4C© „l%Gvû²;Â⹋ôGA[ÇJN3PªYa]¥õs×Ò·“µ$zöÆK£EžÙßÞ¶’lºZ‚¥à°·ÆÒ“ªÉ#_Šõ+}bˆ÷‰úå7h „qˆJϦ‘?:‰B•aWƒ@À: ÕcªÏ/2Òu†<Hò O*Ôû·ÇFÚ!}-8/iÏr  ì3²g¢àŒ%Àdä8¢}z@™7µ³H1o´y^ݵǨY:©>†/•‚xå£ñâ(Q¾H¶…EDV­_z¼B½@_•8Ãó0@³Î(‡a xNf,’VrêÊž²Ê¡ ;tèy<Ü#ò¦6ØÃÖ¨Z˜-ò|x~<”Y+£›š³éý/=Q[)ÍÀéÿEyr„ :êfßÂX¶{¡îè& -”«…¼ª%j‘é o¢Ž§Ðß{Yq÷ô˜ÛH²?•ª jKSØáÙ÷$èD ýF9êå¹áF1ÿÏÕÓ Ý=|ºÙøí¡†L#e®KòÏŠû*ÞˆN"Lï›kl*›R37¸¶‹ßw « C[Ò­¯Ï™Fï¼¡Ðø¼€ ÔVÛbõK¿Ìož¼ÿ=Œ÷ø¼ÎÆA*Yí;®Á2EOðJžJ@·Û%û­æ@$PñT…SNj…»,¥‚ í3äzU¯|¾¬Ñú“4õ¢Cƒ·bÚ"¥ð+°õít¤á>}'âÝÜK0ÝÅ=×èÏàÀüîŠ$‹ù‡“›B5ƒŒ=Ë÷qÙûv‚G\zt-,¦»YÓvŽ:Çæ~6`F¥}Q0d“‰Öv˜-v¶no?«[½‚ ô+æV5Ïi¬ƒÓ;ãÎ×D(|è†(¨®r>[ =ìÆÍ— ½öúæÅA&eÞ‹ö ÁOo…Èd?QYÍêg:tH2´ú89M{ -»ñ(²gÌ~7/Y)šNÙû -ôÉZn{†ïqè'¿B$‚ Fôvã –ð°ôϹ^ôLƒ‰ŒÒ" Cü–N_0÷òï*Q¡n2ÍŒzvÌÐ%ßF‘ ]u¾ÿÖ’1Q¶Fk›ûαÁ>¨bÐcUõq˜däfqôçÑÿe°Ýendstream -endobj -1525 0 obj<>/XObject<<>>>>>>endobj -1526 0 obj<>stream +I…ÚÀ+,#èbƒq…Í|5n#®x/pá¾sÇ8é×B‘NýŸµz¡‰‘˜‹›¾q‘H{Fï~»¾ys1zÿ¶Ûý…~wý¸¾¢pB+­3Ž;ËÊ7 Ÿ²áRK«2Õ²Ìø0&\Žþþè;¬öÜBÐŽ ¨SÒþ/ê/·Ÿ~ÿðéöóÝÛÞ”1ÿu„ã ¬_Zœ5¤­16OÙøb;¥ê¼½½®Šç§4žGu_Œ./èΚ¯˜¾p’…ƒD(s6~’6œ »|<ü¾Q°#çlílxÖÎq+…¥Á?z?9øãà/Àendstream +endobj +1542 0 obj<>/XObject<<>>>>>>endobj +1543 0 obj<>stream +x•X]sÛ8|÷¯˜ò“³É’å•­½­²gWuþ:K©ÜC^ “€’õï¯%™®Êí&¶¬¢ÌLOOÏ@?ŽÆ4Âÿ1]œÑdJY}4Žèlr×óK~=ï•T„&“áyÿùõâèôóˆ>ТÀIÓK¼É §ŒF´ÈN¨÷ïëÃÓ¿ÿ|zøòøûhòý‹þ”ZZ•ѽ¨%쬔óÒÊœ–[UEµ¬—Ò:2ív¾[|?Ñ`<^ÂÔO,Œ3¶ðÉÔBiúh´·¦ªø´Sº—¾2+£i.íþþ™9Ÿyk2QÑ`géÚšûGgH>c¦±YKC’ÎT'§ŸÏi<Ž€ΦåÌ“+M[IÚx@äKáHæzö0§Zd¥ÒÒípÄ©,™& | G <ÆcK³–CZ”ÊÿhZ#œ‡ÉðŒ­f “7´øøx:{ÄBç‘á•ÑŽ6%²EX“+~€¶át·45‰¼V)µÂK…Œæaã©d“ìÈ©ôÙiiœG–mÏ~Zòé~N¹ðb)œ„I„ÂmáœÉ”`@6Ê—$ÁO‘çV:7L'žMÁ\DôÃEkaØRc”öL­¬V* Aõq~¼äc˜æ1-'{§ã]¾N¨PœÒœI츕™±¹£ÜpÞ¨±f­rÙ ”wiäØÈoF¨0¶Ž^…lßÍé«Ò9øŸ•ÔÀ,—„5P9ªÀKÍ8-€ØÀÌµÊø™èg·ÛÀ&)s™éJ“|uÿ±Ï'b¸KÑÀJH·FpôÆÚvfï‚@¼\w½8cѱOÒ ¤.N´Õ9Úa·Ï!»#B »H´õ¬à4¥ô +ë*cžÛ†¾¬• ѳßa¼´Fä˜ýía+IÝÖ,‡ƒ5–ž®šò¥X¿Ò'†xŸ¨_~‡ÖA‡¨ôlZù£•¨!TviÖ©SC†x‘•¾…0ä]t¾áI…ZbÿöØH7¤¯¥ç% íYN!d‹}V6àLrœq˜"’ŒG´O(ó¦v]ÌÇcŸWÖ´Í1j–Žcªa!@†@¥ Eëøh¼J”o’m¡@‘S+JW˜¢ÈªgF`ÖZåÑ",ÏË €%ÒÊCnB]ÙSV9d‡=O‡DÞÔ{ØXU »EžÏO‡‚2ke®9›Á/ð2µ‘Ò¼ð_”'Gª£nö-Œe»êŽn¡@¹È«Z¢™žð&éxúû 1+îžsׂ݇ìO¥j ƒÚ2Ôvxö½ úÑ@?QŽzyÖÜ(Ð"æ]=ÝÐÝç›Ý‰ßÞ…jÈ4RæÛNþYq_Å›ÐéÓû暚ʦ4Ì îÆíâ]Â)èЖL*%pF›7_„Ú¡B¬aé—ùÍSð¿‡ñŸ×Ù8H%«}Ë5ø£U–£Hà ~ccɳB èƒçv»¢Â~«9ÉTU`¡Á”ÓµÂ]–º‚í3äU¯B¾­¬Ñú;iêE‡ïÄ +´EJáWd=êÛ› HÃ}( +úNÄ»y`ºK{®Ñ9žÁùÝ51J0ó7&96Åj{–ïÓ²3öí¸ôèZ8Lw3Ý´žZÏæa6`Fuû’`H‰Æµ˜-v¶no?«[³‚ ô+æVéçn¬ƒÓ;ãÎMÐD(|ì†(¨¶ò![ {,Ø›/3zíõÍ‹‡Lʼí&B˜Þ +‘É~¢r†Õ϶è$dhõqr7í1(ìÆ£Èž1ûݼd¥Ð+œ²÷’µÜö ßã<ÐN~…HD@Lèí ¦A­ÃÃÑ?äzÑ3 &2J‹8 ñ[8C|ÑÜOÈ¿«lD…ºÉ 3êÚm1@—BE‚LÕ†þ[KÆD¹­m:Çû ŠQUÕÇb’ñ(&À`r ÖÔÙ‘òY p®¾Ÿ~þ@cŒˆ|‰LÆqZü0œ DZº˜ïy:ûˆÙ ÁëIý‚'Ì+¤è ôwÑK„mв4Ó÷ƒÎ²l‹Ùñ:Lʈ„ûOg2ªåì±——4墇ub!AZ‹A¼ î÷ËðÒÉK Š! u«¹»v¸…l†¾Çÿx4ÿJ˜©ZÏ3Ƭ?<ÂU„ IœyåNc–3ǸŸP¢g;TXS‡èxV­@^ ÉÞ–ØG ­ `ºX•AþÞê Oj…žŸÿŒ< ªnòŸñÙ!€2æ!¸ÌqGÂÃèã´”<²•Ð-ŒÝ<×è¨)aa)øF†%ò¥Qp¨Ÿ$­¨ZWÂÕ]äáðPI*áqUŠN&9`O“2‡KÍ«ì… …qíò;FàÞ3êU-†=–•Ø"yj(‡¿!…®qòŠ%Þ ™æèØŽÛ,Ã-á=ËTÚu Öžžq¾ãÄñWŠp»LúTXÌ\ˆP?&+ÔWñA82¦ÚP ++2s.ÚÄ!ð1Iv_cpä Ò …,t9¾%ñ…Fa~Ks=ŸvXU‰~ @j‹Çzéq¿õDZèç¢^ö'&ž Ö¢bÆÿ˜?ûëeî8©Êeº2ާø6årBÓéyüÞb~uw}EÖ„$~2n ¦á*C:è6 .Fü•ÊÉÿÕ¢ó‹óáÅôú…ÕÓ_ù›ÅÑŽþe’Ýendstream +endobj +1544 0 obj<>/XObject<<>>>>>>endobj +1545 0 obj<>stream xXkoÛÊýî_1¿8€­HŽáGpQ@¶åV€­¸oƒ (VäRÚkr—w—´¬þúžÙ%-Ùí&½M;"—ó8sÎÌPŒi„¿cº8¥/ç”U×ÉÁç»+ŸQRàÎù%þ“Óh8(ÉŽ®†_†§CJÖ’îþöm‘,¨P¥ü”üŽÇÎh<œ^à±£d­œ¿OøÝºV”å–J“‰Fæ¤4=,è»Ò¹Ù8š't6‘±tÊ®p3ØDpÞæÑÍ×4ý>›Ï“4]ü¶H¦_NÓôöiöéÓ"M§ÉÍûŽHèœ/èdŒ˜9œÌèF(í¨Aø³Gšä¹•ÎñI©ÙZiIZT’#¨D“­i-”u!éAu|tÍP-mal…Ôds=û¶ðf?DÔŽCtqT¢®•^%5 v§Oχ\…£YCͶVY£yvTªgùµêªÿ,œ§îÏ!ݘzkÕjÝPz”¥Ÿh|uuI*³Æ™¢Ám[÷ÎÆ£á%;{{¸ùãuUÅ?ANT52ÞgÊ ä–[ìÎÊíè¦äüJ‡LÔƒy‘–’›ÇϳGí‘=0íIsu{2v=ÄìËóŽ òŽL±W ¦fffªºm¤eb¸¨í·|«?9$š‚R„dí–ÜÚ´% ‘ô,놌ïÀ²\½¨Ê@)µŒÁ+n*;cu)² &fu¦6ˆ·l+ ¨ÊÒlÞÊ <3:¨ bûö“ ¤ïùÙë„OthDmît²Ö+l •R D¹¡³ä± ž‡ÊÖ8žÁ~Ô68·’ZZ¯Ï3”)—Ú4ÒÓ D±ðP€™µ \s2Ü”¯àWFÇ ¹”€-ý-F4°wýŽQZBÕ¬÷äv?™ÓƒÐbvŸ_;†SY­kâa1mC³2E!mhc¡Æ\7ùÚHí81߸ï}”l4p/öÃǧéONÜ~{øúKn*tÑ¿üäèl~sÿëí”~á°Y?{àzú×ÙüŸ“ûdú4Ÿ$?‹d:¿ý_ϦéèUk´môIm•n<Í{š‘këÚØ&ýË(vî¼ÀØšÐÛNæ˜Aˆ}ÝùÓ§ æ(Q–” °7j ­ôFÛ¨-x)r/v\áÛ~Reè1rH×[h mÙûÇ“ÅÆÍC.;“Ç´l>Žag¹sQ- Èò-ܨ,8C£@saýP!Téþ¼HöAëòóúà|‡û  1¬RÂ9“)tN;ŠX@ëÍZ *ÚŒÌT¡BìÙËý†g””5ŽÖfóCËK‹%Xp ,Í ÙãÓ‹Ê€ñR®Å‹ß¤BN/ÊÍ}‡·Ó£ ›3gé„ßRÍCß`HNǤ¸Z¯˜) (~ä9‰¨}fe?~ÊøiÒ#áGx¹[× ¤DÙ`\­ÖìÑSl‰Ú7Ñî7š6kØ¿ã%[QSèÏ3eá ·e} ÿ³Ÿt"ÂB€)¹=Ýݼ-[Æ×I\ÒÄ{φù\0ž½Sv]Ë—Ü‹‚±Øx Šü´xÅ-‡{­QØ,A¿ÎoN–‚uÆHnLßG¢ gLnQªá¡nR„Õ  Ü’y¹Å]Þ,<=¥bNØ%Óäþûä7l¦û„ª­ÁF"a£ßGyåb|÷ö W\‰Ëâ€ZÐlùÑÀ¼¾‚òzãU ⣠zž©¹²Ð¤zùÁ64CŠyî»æÐËÑ<êvYªlÀ«;_•¯a-õ㜼nF#¿£yâ/o* æmY. 9´½ûrÞ‰±9’dt²°Ñv/¼6F Á;P±R„wõtmÆò.àrÛaõ,·\­VÃ_ÔpšvîÓÔm]#«4ÍZ,vºáUךÒÉ·º¶•¦¥Ð•СRiÊ;Z%Ñî]šj¸v![l|%é¶r¤,Â](¼ `p ½•£«¿³0H‚«cãÕf˜ ¨‡aMðª<|·`­ÞnP4uV -^6Š_KzâEíb_\Ü®¹*(ÐÊš¶†’³’ë&˜ï…¹]}À¥¬ló¸ vCÞÒ›eÞÄÿÓï”æ¥÷˜þû*ã°QhN@VK™‡M¡W1Õ6Š@xmp  ׇ hÿÅ•uóGk€o˜Ç|_C¶ÝQ6üùî²{WŸ_ G—_ðå¾3È“‡ë =Zó;dM·&kkoˆŸ;éŸ\Œð›ÿè;†³‹³áÅù%¾˜À¹ó+~|šüýàß„¢äÛendstream -endobj -1527 0 obj<>/XObject<<>>>>>>endobj -1528 0 obj<>stream -x•WmOã8þίÁ‡c%H_—ÂJ÷h÷®t9š½ÕJ‘NnâR/‰“þý=c'}½cA Ö±Ç3Ï<óÌäçQ‡ÚøíРK½ г£vЦ~¯t©9Àç.þ -Is÷ ×ë¾ý sÕ.öOÜ„G­Ïmº¢pŽ;..ñ!!Øo·)ŒO©þ9¡(j¿hMÚ”¢TFSiÈæ2VóW´/´iLïÚèó¼PºTú‰â…(D\Ê"øþ8jÓy§\â–ñCë.Øbšš’/"ËSI*M+[¢”–Dš’™S¹VbC)µ…wöÓ!“‡Ö©Óîû º¸ ‹…Ò¦‰ŸNGt2ürÿIËreŠgvˆNð…ž -Så¿YÞ¾Ã8®a›Ç"ϵÈ$9\;ýãõE[NÀ"%l&+‹¥,ÞsC·Ç6r“W©(¶Ìùv¬©ŠXþ‚íŽÃ&5±Hm±Ü²åðÙúÎÐÈD&ŽÈ)§U"phNnFŒ'ÿ\ß…£ÇÉu8:¼q<¹½û:Ñ(j<Œ¢¼š¥*ÆJ¶0¶´ï;îrÿ gG“áÿ{xðê1ª ‰™Y2‡ÉÏÜRC“ã:E] -¥Á{_}"=hu]v€žTi‰ùV›­ÉqLB'tÜ€µ¾…wâŠâ`¶(/djò{æL°ûÇ´¤l- -L°nP,4Í$UV&]‡¶¤¨î‚Nšœ -Š¥Fɧé+e€A€É:©4W, N¶Â9hß¾ÚRfì]¥ÅR¨TÌRùëê41¥DšDérµZ8á=±”‹Ö¬w*h² !X‚vJ/(5æ¹ÊÏ;ièYÊœÏ2¼ºÊf@Z7–“ Li•U­ Š¤²¼`å²€gBLJÃbq-$¶¹’±€´“H–Ê2Nßax‹dh΄AÀEþ A‚]Nœaq·>_Q§ïÛÍy¯Ãà*èá—þü2 §n#[l}îS¹-w¼/\Ô†\êlåèÀì-Ôt?¥oJ'feiRMݨ˭ %àm¢:›§·Ÿ¢èÛx2 £hú}Žî{Ý(>Žÿ=N£h:1ßøpÊìݵÞ}pÑ€´¥“íFh¯üÁŽÑV³2vÌÀÈDöÇÇY\æ¦BeÔ‰i<á}{7ÇGé2à¬Ï!ÐîÍœ8«e‚‹ìîÞKòŠ)SÆÏLg$ÙfýÚ péúž†\¾+H¼óš—|ð– ïÅŽ SšºiŒ—ÌŒ{,ױμ¤n<=kÜ\K}-Ц5ÆÍi Åñ-¡ÜÇÇÀ;ñŸÕqí÷D§"Ž5آ̄3ã@t:ÌüK¶DËñ„áÜ{¹„B¡Í°zºG(Îi!Ÿ:5TŠåQ4â¾O—T9Uóí§àÂbØšžÔÿa6•Lz£åN7âíç†sáñÍZ!šÈf‚“ŽÞ0꠺͋ʦ8yF¬þDÂó0>ófŽß»ênd³YÀšì—©;uÍнËl½£wûÞ·fÜÆËæ¬*ÏMQÒïô]º)w#¸.×?ß †uá]Ѹ‘ê¹¾.ãÆñmO/ë¨:x7½ìÑÅÅGß0§×÷7×ôP'CWÜœòràçÍóA›_Cßž úƒ~0¸¸„¬aÇ ÍGáÑ_Gÿ¹-rendstream -endobj -1529 0 obj<>/XObject<<>>>>>>endobj -1530 0 obj<>stream -xX]OÛH}çW\õ‰JÁI M`¥}€¥¨H[ÚUXõ…—‰=‰§Ø3©Ç&äßï¹wÆŽ1‘*-Š2÷ëœsïô×É”&øžÒâœ.æ”–'“dBóÙ4™Ñìr¿ÏñSiZËÂ2øüæñd|7¡+z\ã¦ù%þÈ·L&ô˜žRüÚëÉ7Û­«jú“ÜÇÇŸ':›N’KìÓÕ‹®°íõõ5éýð™ñÝŒ¦Ó`ìì|Îgw¹†‡añ<.žöŽñož’ñTçšî¿“ʲJ{On-Ÿü¸X’’p芦‹hïb†¼ÀâU2Kè‹ÛѪr;oì†ÖMk㤲åXªez[¸=ùZ­ -Í |!‚>Ÿ„k°®m&‹ÝE\·TåJ½õ™Ï- ø©¬U­3R+÷¢GôuI?ŒÍà •*ÍÕEÛ_#ˆÓTô ë›ûoK²ªÄâÓ©Itò‡DOÈ -­]EWDO§É9Ì 1©¦z¿Õd,¹­®Çûô‘œeoPÖf›Ðuá݈ÔÐAε~UiM¥®s—ÑjO»Ü¤9<@)Ø©èp¸v`¾VÏpz[(¸€í™F\%¢Œ÷àJÄ Ï­«%¤^>ÒÂh[CE)‡g+­-mÌ ~+ê•{`3âb?ßÜÿ÷×/ß–K*œ{n¶ì޶\ÂlĘ5Ý@œÆ~ÆœwEÃ{sBש Œ‹; ¸·Bª¼fÓ@6G'q[×÷—TQ¼Ïèi§±„%¯ÁQ|ŽK2g5çþßÛïƒp@•ÁhÐ#—ÄÀ_@¬«Mç>pÍÕ,\ª -0zeu=¢ÆÌ¡678ßxT{ €°ó4°ã~h;¦Zû„½o oêFæI¸@Ûʽ˜ þ(@Hg=iòÌ—HÛu©ö¨4"5«b?ˆÖØŸ:eã",vR P±ÒÕºO-DºsÕ3ÈHÊiø·)k$@ ­ª€fôéã°´?¤o@ÇhàTŽã–v•Ä®²l¸BœÖŽÝ;S3‰t­Ý–½KÎèV¥Ïºö”*ˉ©\#µªóƇã@kH¤c¿ä­¾‘J+‡JÇã1%¾µØ‚ø¶©XÙ/ÑL#0¯ $Ÿ© Ñ1¹#·XZiÀù+/¸ª#ôbgŽ ²«Û³auõ+ª˜Ð7X‚”ˆëÇ7´¢' âR@ì!ÔÐ#2W*HÞ[OK¨Š;;-gµ—Ðc¤íÀ!`T êäuŠ Õ{|&—§ÎÖ•+ÿˆWE8µ<°)ÂÅš±Ë—AjÙªÄ4“O§kVTùgÞ+RÝZW®l™ y?´­Nú5Í•Ýð™>kØ,¤$Ù€m|?È\(:V,^{r«šó«àw¹-Àœ ‹bm×Ýê\¡úP4 ˆQ˜Ðg19žM?Z@þrà[® ‘¦®ÄVÔÇÄÀ.ÂV†¸ÙãªnØ•0AtèNQa]Õ#øÁDdmn6¹¥›mmJträ†ÖK‡^[ƒUШv©+qzpHŽc Ik-‹U#—x×ù4EÔ¼IËD1¾…n¬s/ÓÈhËÊ$a#­,#Z5ÌJ/Æ›¶>êE™B­LÁ ŒVD`èáa“hž[VŒ—þÀ6>txK+>×vÏX›M¦ ¤hYA*žß‹ð=F^;Ò¢#@»¼I9ÜF¡ì{´âÑ!U2œÂü‚Õÿ¹‚‹`úI€ä Û¹`è(ͦÍöÄ{ZäJóˆõNJCû‹£3·¿5’á(›Û ø½Msg—ÖÉyîgj7<z»¶·Å;øò^{ã1‹ãËUÂÙ¦µ)tä¾d©íÜ,êA‘dÿ15¤œîúoÛty¬ÆM•þÕ0_zq…¨«.ìèƒ^¯f 1«Êdúw›o–Ì !ã^sçraÂ6W‰¤!á8Û}Û÷ÀÁi{èSaŠ¢æ·ì]'ÐXf&î T2 ~î$½wŠßœùßÔ§›˜z¹¼2Gg¬öÁÐϚЄ›¨@û^:L´#yHü˜2?’ñ7`- ˆ³â`Îu'`DÕB̰ŽY-Â`È … -¹<ê&BîHÆ—œ¥wv´Ev¦mV_ Ð˜ÙGñ‰×°>/XObject<<>>>>/Annots 869 0 R>>endobj -1532 0 obj<>stream -xXQsÛ6~ׯØé“2cÑ’,KòÍô!¾Ä×ÎÄIï¬NÚ¿@$d¡&–-ë~ý}» (…ñM;M$vû}ûí"Žf4Å3ZÍéjIy5šfS¬ô?þó¯Ñl:Ϧt=_eKªh¶Xf7ÝSI£óg¼½Yã«ø-¿…!š/¯eçzÖ?ô¯®ÙFWüÅ\Ò«Å*[Ðb½â=ø¿Ñ´ÝnF—w šÍh³CÔËõŠ6…;¥M>¾ ¯Æîà)/¶ÁS¥ŽÔzMÚæÍ±º ZypMáIy<4ÜŽå{U–Úê'}Ùh_;‹Mª {X1¹ -ÆYª\¡Ëw›?FSšÌ®²9|Ç*{ÎTFŸ7Ÿî_fïÈ5¤Jgõÿ–—Z5ôk cŸ<í°ìMU—º…¶Ê#²oÝeô36í][´Õ8¿*Íu1ðö*ÐÁ„=!Tz¸¿¥ºqÁå®”…tX2|VÏ^Ü‹FDøØê€<<“Æn,Ku©ðS¢E}Ê.hÛ². |oÜòóªú._þ³ÕÁgݶù€"e_‘Ó“ñ> À+$¢_„mœo¤¶ZvÝàƒíQœâcÄíÏŒq4Guôÿ`· ô$ù}oéþÂírŽú×Ï?ÿóˇé±ÏVÄ*£ÍÖñçÙºƒe¾ð¦Ï±!Ǻ¼Ë;6NVÙšk‰91_®ˆ½Ÿ¸*/{Òl`¥÷󹳅ɵuSå`Ä)‹%NW­Š‚±rM :ÆOg d"hߣæxyÏ,³–mY®ãF>øç_?}bö7*Gr|úº4ƒY+Éèõ’¶Xúðñžõ\Ê:)ö49«‰*õdòh-NèE•­æ™Ä¾-Ê€f°Ç¡K9 \ú¤ì½²ÿ?³ Å7’;™¯³Ù M®çÐäÿwצÂiôŽÙî¸_ºÊ§Q ¸¦qp¨‚°?0Ø?}ùºù@ ¹=—kåÀÌBeJOØÄñku3È1—×x·œB>“¥›kÔ§ž€·/&gäÏ4» ³/À.pÁ#6OWÙ«ÀÑ-Ð:øÝö+ ZeI$/Ö5«ãÜn(3ïËòäž#Õ·C2Ü Iìc³Ž rOßåÀƒ¿¢z¦%É3Šøˆ4î80…3§Iº÷ê’F0ñWѸºfî$áªÀi‘ÔN$𹨄) ­ŒÛlJ•±-Ó O1Üä8 ¸¨*b¢BÐU¾Á…ˆãò vƒº)(UÛ1ã[i’ètq![â@÷‰öAmK㑼YØô™µÖóÑЇT¾‡·ÜÕÇ¡,¥Ð¯$ô{“7λ]`*Œ”åè̉ pñ]BŠ3Å^Ù?ÒÌqÀ ì§Ò -4•DX¦xo£Ÿ ”èß š‚$.ç$+I‘” 3Om'Ù‡ê» £  O@†ë,6%ñªú#uŒ s 246¥Vh‡B&ÚèÊáÕ·E185—+4¢p Ú`Ÿ¹¾CöyNR|–8…®€öÆš Ë£XPôä\A¦ÐŠÄD‘” Ÿpè=ôÎÑê|›ïÓ¤3$ÇPÄÊe\{,€TóØ-íFFÕ¸6¶Äê[Ñ‹4Iݼv.N‰-r¹Xà;¤5·„"ü€\¨¢4©LåGÐR¢"ó¼Ò%WŒEp64} ‹œñònJ7qþ›Ìq¤`‡2ÔQ©_âŒ6¦»<Ÿ ˜îD³Ïm̦±k¤ým§9#÷Û^ÝèAU[Éíìú¹”Gï¦ËMGUN)’R:÷ÜÖý‡iº{ψ\-¥ËÕPîýÑC·Hå9pÄÄE·:WðÄÎo'¨Xo^x uÃ.ôÅâÖÐØ,ìöqöÓ@T3&ååݼtÆé®ö™?M=ãï¸ xp„,4\c’ö'Ä€J»81ÝVÎOßì®Ôs¯•ye½äìôq¿U†= ,w2²œM,|$n쪿?œXT:™f€TmÇÚ¿ ì›ùKÕñwòWµ>pµz-ãëk¥^MÕVdÛjËQïNu©Á]4°†{“ï#lËN«D\LÔSTUFç4tã2ÒȲ>ˆŸqÝá¿<0µâJ¼0‘X2$¦‘áÉÅëqüøN²ÁIŽAô„J 9UÞ9…`a+)N\Œö04\جGhÒÉ \ñ<_v«zlíÄžp_ó¬Á<›²õ8(à¯'<ãÑ?–4ßž… U1C’ƒé½jƒÜ™®q-MžÝˆ.s=Z¤h!îŠ<ñ_(^t&Œ”Ùæbçaÿq̬ýnÌË]µ5¶óÅ]íñݰ¤6Àk‹)„\-ó,s¸Àïl¿Ç¶Ó7.Ž7º…{WnÓ廑ÆBÆz¼Ae³²o´ 8;óÔ6ñ];ïÍÖànaSö•fäé ·r…»¼[wž-ñë+Z^w’ýðþþö=ýÒ¸?0’Ñ—·ÔM|q4“´a²š¢cã›l‘4†¶ þ€%w×ZóãµgÏc®C¯®KwÄ…]†Æ -+¸<Éc¿5–¾°‚-V‹lµ\ÇàjÎK7£þéB°tendstream -endobj -1533 0 obj<>/XObject<<>>>>/Annots 874 0 R>>endobj -1534 0 obj<>stream +^6Š_KzâEíb_\Ü®¹*(ÐÊš¶†’³’ë&˜ï…¹]}À¥¬ló¸ vCÞÒ›eÞÄÿÓï”æ¥÷˜þû*ã°QhN@VK™‡M¡W1Õ6Š@xmp  ׇ hÿÅ•uóGk€o˜Ç|_C¶ÝQ6üùî²{WŸ_ G—_ðå¾3È“‡ë =Zó;dM·&kkoˆŸ;éŸ\Œð›ÿè;†³‹³áÅù%¾˜À¹ós~|šüýàß„„äØendstream +endobj +1546 0 obj<>/XObject<<>>>>>>endobj +1547 0 obj<>stream +x•WÛnÛ8}ÏW ’‡MD¾ÖN +ìC.î®ÄÍÆê,h‰ŽÙH¤*Jvò÷{†”|C¼›&H`SäpæÌ™3£ŸGjã·CÃ.õgGí Mý^;èRÿbˆÏ]ü’æîA¯×}ûAç² öO\‡G­Ïmº¤pŽ;øì·ÛƧTÿœPµ_´&mJQ*£©4ds«ù+ ZÈZŠ´‚ ¦Àwmôy^(]*ýDñB".e|µé¼Ó.pËÆø¡u +l1MÍŠ É‘å©$•¦•- QJK"MÉÌ©\H+±¡”ÚÂ;ûéÉCëÔiwƒý]]ÐÅBiÓÄO'#:¹ýrÿIËreŠgvˆNð…ž +Så¿Yº½y‡q\Ã6Ežk‘Ir¸vúÇë‹¶>œ8€EJØLVKY¼ç†nmä&¯RQl™ó1ì,XS±üÛ‡Mjb‘Úb¹eËá³õ¡‘‰L!R:N«D +àÐ:\þOþ¹º G“«ptxãxrs÷õvD£¨ñ0Šòj–ª+ÙÂØÒ¾ï¸Ëý/œMnÿßÃWQM@HÌÌ’9ìH~æ–š×)¢ØèR( ÞûêéA«ë²ô¤JKÌ·ÚlMŽc:¡ã¬õ-¼W³Ey!S#ß3g‚Ý?v íØ ek‘P`‚5pƒb¡i&©²29è:´%EutÒäTP,5J>M_) LÖI¥¹bYp2°ÎAûöÕ–2cï*-–B¥b–Ê_W§‰)%Ò$J—«ÕÂÀ \ˆ°f½SA“eÁ´SŠxA©1ÏU~vØICÏRæ|–áÕU6"к¸±˜eJ«¬ÊhU$•å“(—„8:>‹k!± È•Œ¤D²T–ÑpúsÀ[${@s&.öí`ìrâ ë Œƒ¸õù’:}ßnÎ{n—A¿ôç—i8uÙbësŸ:xÌmé¼;ä}á¢6äRg+Gfoé ¦û)}S:1+K“úhŠèF]ne(omÔÙ<½ùE߯“IEÓïÓptßëFÑíãøïÑã4ŠF¡ó§Ìó&Ðú+ÜY#çgü@WIRH‹ÂAØõkŽÓy8‰2^ÀÑ\¨Â4Þ©š½ú4sS€“VÜf÷nTz^´¾*.+Î›Þ +ùŒ™q& 8¶0+g0¼yhÁ7©—ª0š)ÈàÁõ¹z‚$¶P…I‰>óºwñJx÷äÏJ¡Ñ³ßué«V/­;¥«—}„[²Œ[kÑ݆òг¡ÐídJw®F|æÞfC,r1S©*_wÃbl8uøV–UΊ&šu_#á§š¹ˆ1¤g̸äs Á0<8MÝJdúg%QuìŒ\pžý€`Æ +#Š.soµPPe}Ö#ª±X«ÉD–×ã/Ó½‹'&AH¯9ìa¦Ê$käN6Q¶]Ñf.jS&Z$—j³4+ Þ1¨DÑ)£ ¯·{w­·D\4 méd»ZÇk'pc´Õ쇌302‘½Æñq—¹©PubOxßÞÍ1äQº 8ës´»@3'Îj™à"»»÷’¼bÊ”ñ3Ó‰C¶Y¿6(\¸¾§!—oã +ïÁ¼æ%¼eÂ{±#ˆÆ”¦nã%3ã^Ëu¬3/©OÏ7×R_Ë´iqsHqg|K(7Åñ1ðNügu\ù=Ñi£ˆc ¶h 3áÌøÏ•Ê–sè |«¾‹yÜi·;-üën5óÉõdŸœÑi“Ó˜3?Á’-Ñr>/XObject<<>>>>>>endobj +1549 0 obj<>stream +xX]OÛH}çW\í•‚“@`¥}€¥U‘¶«°ê /c{O±gRMÈ¿ßsïŒc¢­´ (Ê|ܯsνӟ'sšá{N—çt±¤¬:™%3Z.æÉ‚W—øû?µ¦µ,\ó'£ÏoN¦gtMkÜ´¼Â9á–ÙŒ²SŠ_;c=ùv»uuCÐ÷îáÇÉŒÎæ³ä +Fûtý¬kl{yyI?|fúqAóy0vv¾ä³»B×:¬©¸vúßGOÉxj +M÷ßHåy­½'·–O¾ßY‘’pç5Í/£½‹ò‹×É"¡OnGiívÞØ ­[›5Æ!Hes*°Ô8Êõ¶t{òJKÍ 1èóY¸ëÚæ²Ø_ÔÊu+U¥êm¸—‰|ƒT6ªÑ9©Ô=ë }^ÑwcsøB•Ê +cµGÑ6Æ7H#â45}ÑÍíý×YUaññÔ$:ù]"Ž'd…Ö®&+¢§ó‹äœ愘LS³ßj2–ÜV׊ã}|Gβ7(k»Mè¦ônBjì çZ¿¨¬¡J7…Ë)ÝÓ®0YP +v*:®™oԜޖ +.`{®W…(ã=¸qÂsë i¬4Ú6ÓPQ*àYªµ¥yÆoEƒrlF\Làç«ûÿúüéëêaE¥sOí–ÝÑ–K˜Oس¦;ˆÓ8Ì8‚ó®l9c¯Nè&” çËŠ{+!dÊk6 îqt·uCI•åÛÌ€žvKøWòÅç¸$wVsîÿ¹û6 +T9Œ6 =pI üÄúÚôî×\ÍÒeª£S«› µ¶du¹ÁùÖ£:Ø[„½§÷cÛ1ÕÚ'„è} XxÓ´0OÂÚÖîÙäðGB +< H“g¾DÚ†¨+µG¥¹™IËý(ZcèŒ dlŒGˆ°Ø]HBÅ*×è!µéÎÕO O )§á·¸MYë ú7Úªh@ßKû] +ù +tŒNÕä8nigPIlàŠ!ˆ+ÄiíÙ½3 “H‘ÑÙíØ»âŒnUö¤O™²œ˜Úµ" P«¦h}8D±†D:KÞ马v¨t<Sâ;‹ˆïÚšU‘ýmQPÀŒ1óºDò™ +“;reµìÿ° +ñ‚Û¡:B/Fpî˜ »*±=WW¿ Š }…%HÙˆ±~|C'zâÒ!.ÄB ="w•‚ä½ö$°d„ª¸³×rVx =F*ÐFµ N^gÈP³ÇgryælS»’ñxU„ÃQË#›"lÁQ\ »|¤–­JüG3ùxº`E@•â½"…ЭuíªŽÉ÷CÛêà¤_²BÙ Ÿ²†ÍBjAb¨ÑÆ÷£Ì…¢cÅ‚áe¹'—6œ_¿«m æHX–£hûîÖ +Õ‡¢EŒ²Ä„>ˆÉùülþžÐ"ò×ß +]Š4õm$¶¢!&Fv¶2ÆÀí>WMË®„ ¢Gw† +ëÚ¨Á&"k ³)4(ÝnS¡“#ÿ04²^9ìðÚ¬‚FË\IˆÓƒCrI:{hY¬¹Ä»Þ ñ(¢ÆäýSZ&ºˆñtc™F.@[V& ieéœPÚ2+½ ?nºú¨geJ•š’A/­kˆÀ(Ð#ÂÃ&Ñ<·¬ÏÃmzèñ–N|nìž9°6›6LHÐ’B*žÞŠð=E^{Ò¢#@»¼É8ÜF¡ì{´æÑ!S2œÂü‚Õ‘ÿ…‚‹`úI€ä Û¹`5è(ͦËöÄ{:äJóˆõFJCû‹£3·¿5’á(›Û ø½Í +g—ÖÉygj7<z»®·Å;øòA{ã1‹ã«4álÓÚ”:r_²Ôunõ H²ÿ˜ÒN÷ý·kº¡sÚàY:‚pèÞK‡‰v"/‰óQî'2þ¬…qdV̹þገ" ZˆÖ1+ E ™¡P!—GÀDÈɸгãζèÃάËê33û„ØK~ʆçåéÃù´€ôú°Ð½;Oñ¾A– qΊtN?}"¾O†Ãcßñ”~ôNìĪÓýî}¨Ïo ¯u%6ÔIoo¤éÇ«èî|‰·ùÕ-ßËquóùö†¾ÕŽç\ºsY[!›" ÍY·ýìrÆöÿý¢å7î¯Þ°‹ËEr¹¼ÂÿÀÐòŠíx8ùûä_³ê‡endstream +endobj +1550 0 obj<>/XObject<<>>>>/Annots 871 0 R>>endobj +1551 0 obj<>stream +xXQsÛ6~ׯØé“2cÑ’,KòÍô!¾Ä×ÎÄIï¬N®3~HÈBM,ZÖýúûvAB +ã»vš:& ì.öûöÛEþÍhŠÿf´šÓÕ’òj4ͦx“~üë£ÙtžMéz¾Ê–TÑl±Ìnº§’FçÏøz³Æª¸–¿Â͗ײs=KéÓõ"[ÃèŠWÌå¡ÿ´Xe Z¬W¼ÿ7šv£ÛÍèònA³mvˆz¹^Ѧ`§´ÉÇ÷ôÕØÂ<å¥Ñ6xªÔ‘Z¯IÛ¼9ÖAT+ï®)<)‡&Û‘¢|¯ÊR[ý¤/íkg±Iµa+&WÁ8K•+tùnóûhJ“ÙU6‡ïñãXeÏ™ÊèóæÓýËìñ¹†T鬾àßòR«†‚~ äCcì“§^{SÕ¥N¡ÐVyDö­»Œ~Ʀ½kË‚¶çW¥ù.þÃ^:˜°'„J÷·T7.¸Ü•ò¢?,>«g/îE#",¶: Ϥ±¯Œ¥ºTø)Ñ"È”² Ú¶¬ ß[·¼Ƽª¾ËW£ÿhuðY·m¾ HÙWäôd<%xc`…D¤—°óíÔVË® ,ØÅ)#nfŒ£98:¨£ÿ»¥'½ß÷–î?,ØØž!ç¨ýüóß¿|øØ?¦lE¬2Úìaž­;Xæ oú¼r¬Ë»¼cãd•­¹–˜óåŠØû‰«ò1‘f+ÉÌçÎ&gpÔÖ5N•ƒ¤,^qºjUŒkZÐ1.-‰ }hŒšãå=°ÌZ¶!d¹ŽùàŸýô‰ÙߨÉ +ðéëÒd­$£×KÚâÕ‡ô¬ðàú¬“bO“³šø¡RO&ÿÖâ„^TÙj‘IìÛ2  h{º”Â¥OÊÞ+û¿3Û£øFr'óu6»¡ÉõZ‚üÿæÚ¾p½c¶;î—®òéc®iª ì öO_¾n¾hA.EÏåZ90³ÐA™Ò6q¼ÆZÝ rÌåÄ5Þ½îC>“¥›kÔ§ž€·/&gäÏ4» ³`¸à›§«ìUàè^Ð:øÝö+ ZeI$/Ö5«ãœ7”™÷eyr‰…gÁHõí wàCCSlÖTîé»xð×ATÏ´¤÷Œ">"; EáÌi/Ý{õI#˜xˆ«h\]3wzáªÀi‘ÔN$°\TÂÐVÆm6¥ÊØ–i†§nï¸pQ#TÄD… «}ƒ ÇåìuS4Pª¶cÆ·Ò$ÑéâB¶Ä#€îíƒÚ–Æ#y²°é3k­ç£¡©|o¹«CYêCïy%¡ß›¼qÞíSxˆ`ôY>Î,Ø€çëz¤8Sì•ý#Í× ¼AÐ=”âTZ¦’ˆËïmô“á»ASâ‚ÄõÁ9ÉŠER$åÂÌSÛéíCu‡Ý†QPÐ' Ãu›’xUéH#èÆFC€LÍ„M©Ú¡ÉÄ£6ºrøômQ NÍå +(ˆ„6˜2—:dÊs/Åg‰Sè +ho¬ º<ŠEOÎd +­ø@LIÉÀñ ‡ä!9G«óm¾ï'!96€"V.ãš°PYÌ`·´TãÚØj«oE/úIêæµsqêLl‘ËÅß!­¹}ô(ÂÈ…*j@“ÊQ~p-%*2Ï+]rÉXgCÓ·°È/ï¦tç¿É|G +v(C•ú%Îhcú±ëÁ*.0݉fŸÛ˜Mc×èô—MœæPŒÜwn“ºÑƒª¶*’ ÚÙõs)ä¦ËMGUN)’R:÷ÜÖia?]½ŠgD®–Òåj(÷þè¡[¤ò8bâ¢[+xâçß'¨Xo^x uÃ.ôÅâÞ¡±YØMq¦i@ƒ9yy§º9gœÌ ¸š2šzÆ'Þq 4ðàYh¸Æ02$íOˆ•vqbº­œ!ž:¾ Ø]©ç¤•ye½ä줸ß*C‹P –;YÎ&…»J÷‡ëJ'Ó ê íXû'„}3©:ÞÈØYLUëª×2‰±´VêÕTmE¶­¶ðîT’´Eïjè°7ù>B¶L¥ÜቂÊÀœæmÜcX EÑñN(wçþòÀ4\Ý…‰œ’ù°ŸVžÜ¹Çï$ÈïKÿ/c>à:Q¹èALw5ëúsoPnwžï »ÆU Vº'M¸ªy–_KÙzœðׂ¼ñÔ«™/ϪƄ!%‹Á½jƒ\™©ñ]?tvÓ¹ŒôèŽ"ƒ¸&òLÄ¡nÑ”0uäžëœçüÇ1ö» /wÕÖØÎ7´ÇwÃjÚ€2[ äje™¾~gëø=vœÔO¸.Þhh ®\\´M—ìF ™èñE=ÌʾÑ2ÛìÌSÛÄ»sí¼7[ƒk…ANÙW?~ Oo¸•ÛÛåݺ£ðl‰X_ÑòºSë‡÷÷·ïé—ÆýŽiŒ>¸¼­ lâ‹£™ô&«)šE1¾ÉA^hÛàŸXmw­• ?Þxö<á:´éºtGÜÕe>a¬ð÷&yL[cÕ +ØÙbµÈVËu¼ü-oøÕÇÍ蟣ÿ5¬°Lendstream +endobj +1552 0 obj<>/XObject<<>>>>/Annots 876 0 R>>endobj +1553 0 obj<>stream xÅWÛnÛF}÷W üä­›%¹@|IZ±•V2‚Œ¹”h“\ew)Yß3»KI¤ýP(šÄdîÎåÌ™3Ã'=êâoÆ}Œ(.NºQ—†ц“1>÷ñ£%¥üG÷ÿýùÛÉpÐñ^„# Çýh¾å4s†z½~4ág>è¾ìuì©éãz~rþå’zCš§k4Á‡Ä9íÒ<>»Œ.¢^DFÒýŒ¾ge¢¶†æ$ ‰’DeW²´Y,l¦J2Ro¤þeþ ›ìÝÛìôǰy6_e† iW*¡¬Ü¨|# á:‰$Éøº!•º_¤*ÏÕ6+—´ZàŠÔWÜ3S,¢X•)¥Y.õ®ºtY{"kø¢ðG–±Þ­-ì³U:1ô‰þ’†¯u©Ó몣ÓFÆ•Î쇙¼s®¶Náøéƒ´×wÓÙS‰pŸTúôíöæô-#ƒDu~ìVÑVì\ÞYÂ8¦;Îz»JR“ÒT*K‚*„Öy²Ï2û†6"Ï’p:¢i)ù‚öNtõÙµ–ë|$S¥ _±µV¸N¸žÛÖ%h¶Æˆ¥«ˆV1¾|tÅP.Lçì¹2ˆáI­w¬ï`«+ʵ}ÊŽGü…‹š-+íã¦F*b‹ÂBÜ¡>Z Ã|™‰b!h›å9žÁ7®´2n—JÐB-+ÓD´þåþ0ç‘y.jY(+ëJ§"Ë™B>KšÃÚ§åùm©:ÿrºDž¹Ï>”¿n$àኺ'}+@2Br°×!·œç*~!U¡")|áF,µh¡²*Ì,ôRáº7;XX+‹µeôQ‡¬–¦Ê-÷´&ú ó+†¡9quu¸…Ôûï&“[ŠWbÍ£×Æýß§ßçS¨”'æe7´Ãaón œAD7aÚOŸ\¸ÃzuDÞÔY`àò˜Çn^` c~†þâ|Þh²†'°qÃÙØ]~h|ÑÖŸ-—eFy-è -¤Ðs¦ }#7èö F;­7·£ª ,âmÁö|œß·» '”6qžg÷×ä§ýqgJ1 ”ëð6àUÈIÁìêþúоiå¾[»ä3¢Sx ñûÂϼ1 ÇÃh<šà Fƶýy~òÇÉ?›>ƒYendstream -endobj -1535 0 obj<>/XObject<<>>>>>>endobj -1536 0 obj<>stream -xVÛnÛF|÷WØ}H”HE—´)àÄNûKnÌ (â¢X‘+“ ¹«p—’õ÷½P–d+icö`rÏeÎÌœýzÒ§¾û4Š)RVŸô &I8¦Áx„Ï1~N û Œž~'ƒ0~êÄhòøÀëô$z; ~ŸÒ’Ç#JsBâ^ÒìYZ”Šj® ™S)V²ZqE,ÏK]JArAº@=²ªäºw´d ÃÛ¼Q¤¥}¦êy˜I± EYñ—?§Ÿ‘®G—-ˆáùžÑ²âLq´·àMwø†ÕsF×oèÙÇtFYÁ–N3¿KA&^‚~¹0Úœ¡ žÙ²¡Z´œkVVêàħ»JÎYõ÷Á¿Éq‘5›¥F_J­e“+zEñà ÝÛŠgmSê ^joŽÄÌeÍPz%ï¤øv¼_ˆ šÝPÅW¼2`' uí Ë†g²®¹Èy~$•Tþì+õïÄýph°ú4½LßÍ~ŸMõ¾dº@'‘’5_¬áQ)"3ÅHm”æõ‘œ g9IQ6ª]‚±Í'†hæcgæIÚè/Äèƒ(ïÉ¥"–e²šç˜Þ™sÊIóÜFà,+,æÏ‰)Zóª2Mló¤«4,ÐùÕ },E.׊¦i¦×x«<¤tÎJ7m¦[°ÇÂýµ-ž‡&\ôv²ÕL‹'á‹0 û!}Àô-I:w¯ÛJ·=é‚i°¡e#WeÎÑzÈ)G²LËfCªm•ïô|Xç»R´[¬ )˜È·$õ]c€¤7Ë2c–JF·H˜ñÜ´g²xƒtoßêc½vŒ?³­À(PÍA9S9E¦‡èÔè ÌO)¨©ûÜMÃkö!”Yþ½÷ˆ.…Qÿµ—äKúu¹þÍíÈýþããìÇCŒÛ°È ;iNtå˜D玱ÇY¦ÁîÌTîˆåT³.¸ g| ðË •yÛ€—êÆØ[ÒûG^À+ç•i‡´gÀ® þÀd¬BÁf´9_E¢…ÆN½nþpýÓÛÛŸºŒÇfüŸ3{£3ÚËfRÙ±`a™Í$v“LÂaHo¤ÈªVaE=ÿÈùŸƒØkμ¨ø}9¯8Öƒ1Ãdä’7°à†0leøW§â ™¬’‚h¾)šJRKž•PsS4¶…9JˆÎ¸†èοö¼@…´´ÓÏ¥P MgéÖ-×Ö0í>±u”WÏmFÍÞ^¬¿¡+c6 •ó\_µ‹hÒf™ú|hª¨ç2Ì[Í‹›¯Ùn£Y¿÷·=¸뢄;†JóAëÀá ¹C¦¥™ÙÞ‘+Г5óŽàÞÓ§“6:¼‡#{xðZûBcSØ”› 3 ÂÑp ±!Äh`þu™žüyò/b¥$˜endstream -endobj -1537 0 obj<>/XObject<<>>>>>>endobj -1538 0 obj<>stream -x•WMoÛ8½çW rrǵ7Îî- ’ÝEÚmÜv¹Ðq+‘*)Çë¿o†”-ËNEÀ±¨ù|óæñçÙ„Æø™Ð|J—W”UgãјޯGSš]ÏñyŠ_¯i%.gãÑUÿÁûÅÙÛûßh:¦Å -¶®æ×´È vÆø&ܪn´§ÉxD_>üMŸµ¯LÆYzoš@ÊæôÝØÜm=,Þ,þ9ÓÅt#ƒ›,Ó!Э³w%}4¡ |€ýMæÑßÅå Áâ0LFôÍè±Ïb5+”}æÄo½óhøë¦Ðã‘ø :[{Ól)7ªtÏÉߌ&“äo:G àïAoÈX1ò¨ª¥âRÁ„×¥VA“ òH-MÉÖVÎw²¤¬4Ú"ùÆ!Í''«ó¢iAÐMƒ8%ÔdrÑÒý˯¿ aɶr¹YmÅéÚæÚ—ÛS©Ú_Åt\ÃîUƒ?¹ 3åõj]’uxæ(sUí:'Ñîƒt+q)%.\h(üÚZÁÙ¡S–É}›‹[ê-¼–¥Y™RÓ¾O°Pj.#¢SÉ®Ê+c¯T4S‘4’TÒM€b:¢?ÝfW*ñ±+1@ØZŽè:Ñí{äŽ,€ša$bÿ†Ä8*õþÍ~ÐÆ4…äáÍsÑP帵ËuÓÀ ;²€gˆÀsãu† ¶ ¡6¼`÷J”{E ,`Šðêׇ[ªUSŒè{¡#þ*m×T»:\¬ë!dž`ਊù\%ôè³w¨oct×àA;]Qê-›oqÓ6nÁhYz†'­kÉÚ:_©2¦¨$?iŽ®C.F¬Rwbx`ƒ -…LY ºQKÀÂÅ)íU¤q5UÊÿˆ¥z{¿Oï1 ïa#ºÝ×q‹qÐÎÖ­ͨöøÛ†G…Û³GÏøÑÑ›unxnûçxúf?m¬ö¡0uïðq¹ZùŠ›p’W¦‚¸v€^í=TTÕ³¦ÕϵÀÕ@°‰oQùB—9-#ŸD´c„8Ê©ºÖÊ“‰WøߎÔJ7Ýi2zU‹‡Ma²‚`|•ó„‚0ªôàEy’÷çB¥2K' 4ªŠìE.†žÃÈ̘ä/#L'v•<ìÅjm³«Jõ‰Kf½\¡Ž8;x¯1•ãE/Ζ[¦xfÒˆ­á~.ßíæò&¦÷ö¾¥žÁA¹!XK)Â\ª•àAÌh¯)Üøv´äU¢í/Éñr¿1#5Æ#oä´öd’"­ŸJä|‡èó¤Û„ö¤±Ã‚¬2]–lVf²pä66Vðôg¥¥Ü!°'‡ØËÙªJÇIFÒ‰µ°q+ú=ÑšóH‹ïüñîË·»/OOÛ§ÁGæ¶óô¦yç%0.ÄP´9m› õ³e °¾ÐÍûŸÅrY$?´éEûa߇óŠ-‰TRí.]ùvSôgsW?îk\À½¸r~Åe®CæMuIÃtO& -¡4ø3g˜êÙè\a‹åI±Õ_üqw‹R¬ SK7…Z…°q>§\š¡žžÞPvâ¾¶‹й éË£òA›DKœç–OÛU+ŽóbíÕÆBqdØ ëºv¾9Q¨ž±ø -ZÔá`¥Êã¸P¤¸¦÷¶Ãj(Ч–+ÀHûî·ÉvÊw~ÀlÕ=€úÙaLb`­‘-ÔMŸNO÷1×D†áQDŽ"££ê“ÙãuÛŒKN8„³>èrEOщ!ŒÔ®“ƒ¬¥Ü„ºT ²v0°À,Äà* ÇmÖaÀ™Ã³LÙ")2V„L–K)@ǯ ’a…Ú*`°&ŒÈ¬ÂãîÂÀ6rmw -´ê~UÄ9í°ÇXÄ@Ç­zQ¦TK}¼b¸±7{Õâ;‚'>¢ÈpV.©šl”²ÚùÆÄFÄaUGΗžÝRìµYÛ8N5­–8Ê©¶XËýÚŠ{i —›$oä3éXZ'‰þáaTЙ  ¯øò'ú^Ì™ÄÓvÙ dëlí}7zùeÎZHì¤+Òí!^Ñ"óòÔqåq.R`ÍA\ õ¥Ë p÷Ìbx´…v‚Lî¯#æ\«’žçµX'ÑóIlpEvA<à#ÞèŒé>H mK³Œßî9íßÝeðØ+hø ®¯Toñôub'4ú.Þúþ祜^»ˆÏæ³Ñüê×~\ˆçïØßÝâ쯳ÿ(ë!Ýendstream -endobj -1539 0 obj<>/XObject<<>>>>>>endobj -1540 0 obj<>stream -x•XMsÛ6½ûWìè"eFV,Y•ì^:¶cwÜɇ«I¾@$d¢& M«¿¾oR")'i'ãŒd€ûñöíÛ¥ÿ>šÒ þMi9£ÓEÙÑÉä„ËÅdFó³%>Ïðc$müÁ|>›,^;˜žŸOæýƒËÕÑÛ›9M§´ÚÀÉâlI«˜ààä„VÑè7id¶¥‹4UVç¤7äI÷"[ ZI‘I< •Šu -÷Fgþ8*¯ïl\AV99y³ú ŽÎi -ûìèøtŽ`Vñhz2™Oè‹’•Êi£`HŠ•‘‘ÓfK…4™²VéÜû`gKd -+ÄäebZ—Î!Ne9pÿ§:¹ îö¶]c£úÉ ]¥*zâP`6-­ ¾Y* K¤ú‘Öúg‘Mt…Ú%?d6=EaU+ryÌ7è·’®ri,2ž§îÀ}¬l‘Š­Œ  ²‰6ýÜÍ ^g‹€çàþúó—ëÏ¥…“‡Ñ{\r‘ɇ7½œ[}MPg -6g ^ÁP§-}”îòöÓ½·Ü¤h·ÏÒŒûÖ8œoØò‘rˆ!’ÿm•h~¨…*€ñÅõTýl/îNÎßpKU8õ,É:®0©XæNm¶ü™q®ñË·HÓ-p/á+¡Ó¯×W€b£dwR(„µ•-cáÄZXÔÀ7B ùÛÐQ…0Èß¡b½drG"JÉ–E¡{%+9]?•ð<ÚˆÔÖüoúeÄYÕò]æYX©4¥5@“sÚ+Ÿ}ðÖôO«ƒkTx«sÙcÔhÇó6÷\Àü঄ß+;£ÓAn€¶…€l§bµÙ€³¹ó•1ž Ö»o¤CI;&«évO¡ÞÈ“+[ T“!hùèUT ö·Qƺ½„A·‚„M[6Ð Û¼ÛkL·Z\tW¯VÖ¸ÌØQýí£Ñeñt‰ÀȶՈ´1Ò:™œ#E<Ó 2PVþ _dTâãw -ËDQ@OÖÛZ¤U @c¤$™Ê °Štqõž*´†f8¦a…ÿ8ªáËÖÊÙÆ–7l{0v‡ÉâAç|þ!éÖY;ÌÆ4=¦z-RÌCõMv6äìÂ?£ƒÓTW!sæfšã~í8®¯@eCm|l­Xƒ03»(ZÑ1ÕáZKä¾ö¨ÕhûFU†»xõ‰TG€aç}?¾Gädª`xBÚ|o¼šs¯N°[0J;†úˆ¼Û~¿^0òm¸º·EÐ& 0óÚ žE:˪Ȋo¡lQÝéÃHÞ/áÁ­(ùã¡ ézÔ4Ú…Ù¿àô²Ê^~z^‚N–¶ô²ÏìS²hˆ ˜…‘õ²'ëüa÷¨vºˆ"ií\Ö#`Ôbã9Ù‡÷²tTñº‘pãbü©04¼†% V®;!"nOsæ° Œ§¢25¡ý\óeäE+´ŠuAÛ÷ú…n±ô™s‰%‚íÒ ëmÀ'<@$† s6ÓÐf`€\³jÌ‹T‹¸/u\‰§¾v|âùdU Æº$ ۞ĊS% -ªÈ¤Èý8Ï=Þø Œäñ‰dþ…Tƒ´u“é¥hñÜ,‡½;øtD‘iÏ‚yUÁB”h  3‘.ÅÒè†'I¸™jý„’ã‹ ¤ÑcjÂço½hZ,œÐÍê"–oVUþ)^”QŽD¡~}møú=à”ð“l6¡w»õûî‡ã¬¹‹yËxÉB{ßðB„f·ÖÉŒqDæ•ÑëÁÔ¡+¿Agý¸åã¾8+ß`-¹åæd6ø»a·iÆÿøZ™nÆ£éèý\o6jï;˜9ìZ¤SŸ‡ð€³Ÿ¿öªß - mÝ6•5¾“Eç®;ŽI¾ˆˆ7ÎÏòbÌ+‹ot^FÿÃò2Þm<"k´_۪ή±ßWû–Ðȸfm‹ŠMß!‹tÇÞÚ´í»AmX%ИS@ú•’ ­r¼Ÿ`׉{€:²çßÈx yÞ5°òãÃñ¹7o••.±fÕvû™×ï1[OÅDð|h®£VíœXeQnlSFºÒxñA©B09¹ˆ=$X$ûz§\VÝvkšËw´Mx‰  ‰Æ®;ú¬^ÿ§ üUàì”ÿFÀ çýÅ‡Ë º3ú/¬ôNG%oxÂA*êãæúñòäœïÿÏWòùr>Y.ÎðRg— 6y½:úýè_ó?úendstream -endobj -1541 0 obj<>/XObject<<>>>>/Annots 879 0 R>>endobj -1542 0 obj<>stream -x•WÁrÛ6½û+vt‰2cÓ’,KNoNÝ´™4v«Ó|HPBL @šÖß÷-Šé:idX¼Ý}ûvñãlN3üÍi½ «ÅùÙ,šÑêæC´¤åÍ¿øI©{±¸^G7o¼€h¾¾ýz¶\̱kɦrZ®¯xÿ“Ñ£7³Â“œ+œ‚¯÷âãæìòÓš¯i“Òju›ÄYžÑ&žÎgÑuD_u¢Òƒ*v”ªL’6”(#ãJ›•ÒäÊZ¥ û~óæ–4Ÿ{s‹u´‚¹é`¿(’· ²$,Y•—8¿â½(v|nµ—ØbËLdÒ?“T^ŠLïh«_ÏÆŒ.æWÑ‚çÓâLÅÏÁŽGyPNéáË)î)mëªÒED¿éF¾HsÎ ŸLåª{‹§¢"Aµ•† -)<Ѵź†Wêôœøh‘Y=@¤ŠJ{+ªöÎ[a¹0 =Š|+z>R.ì3c¹(KvC§t÷ðH¢ªŒZÀ0 -ÁgÉàØJ<Ëñâq¬ë¢ŠÂ -G -„êsꔈ\#ùÈ,ÚXð7ÎÈÖe©Må_¶éžrò¬¬ø|ÿwD˜¦ÀãÀtä˜òA|:°2/Ý>Þne\U‹•e” -•Àmn]ðDáÏëR:¹ci-ÝÉBÉd2šãØÉ¡÷p,UÆÊÞqES¡+É~¹Tñø dlÞÓÇc†TrUø -òÀ6RÇŒ±L\ŸiT;jòiª*¿g§^@"çTÆÒÔ]€+#( ßÈœ—FÇ2©ÁÂX„ÀL D%ìÉW„¹’ÃÐ<½h³‡Ã¹-ú†™‚t‘øÐ¦\ª¬3#BâŒGØ¿ËÑuyÙh“Ö+`FeFYÔÀ| ìéÔ -Æ™ 3qÀ‘ÖW%ÎðzErö×ýçÀÙ`s/ì0é üI­¡ X{ž¦u‰ -`_ÎÉ9sÎÂçzzϤà`¿À•ÔèÜùßæ·'‰­Ÿ÷„žjAÖ+Þ[PÃ_ø5Êë×a–‚@1†Ò€ËÎÀ–Ÿ²ÌÀz–ÏI¡û!™ H¨‹ŠU‰Œþ#ÁTЋ’[ÝwGìDÈÜÈ62và*¤0Œ–è~3öiäRš‰ÓR"m Q“É“Ø"Ø-I²L7–;µKN¶ñ³{þF·ÒE,ݾ½@‘µÊܧQ N tˆu^êéskÉÓK¢õ4d¯'frN“fâÊnò:¡­ªðt+ºýùwô8%†µ¯'ì¶Ž÷ˆË×äNfPhr‡ Ö-Å\[Î.¾B6À µ+´ÁG²– ^„@s´º¡{3B¨rÅzØçöŠ^Ça ^CaXÃáe1¤Íón°  ì´Òú‚Úõ%‘©¨34@i×ÚÐ0„X0e΢ ÇGh<‡¼Z't ¿f¢4ÊÄ?ò*\ñ^2MÞ(¸ocF<ìž}‡à½|…ŽqT˜u÷¨þÑ–S¤â8‘ŒKcTîäø’…ÿƒƒ$FÏÏN‚îTÉO''Z|¤²§‰‹ˆ8P»½Úí3|¸#ÐíäNâFªvÕå§^óýætq߈º1”é,Â'à®,›JC0GáÙ`ˆÔÂCS ŸîU9:²Ë½}5`~í%Á‰ËAT¾¸Z¢icf„¼뺑ΓCƒ‰.6’;%OsÁƒ7~Ø8\ÿ=Bßs_w\w3O79\óQ +@ªkEê 2CP—•Ñr]tHYMÛú“t;ê¡É·CáQ”úÀùà 2ô´[¡“69íîceöVõpbç­µÁb79ö=°˜‡ÜÑ1„¯ÇÅ7š'‹ôäàRÔ1Ći #¶o[<†'%åGçÑx3 £¹l._)40Ý_$ôxcÂão7På>D.¹k–ëµn•¾ypÙ%=ÍÖ´ÍÀJ›±.zÓŽÝbúv]ÉóŠYä.\®…ðÝxXtåªéÝü?žçŽãe2Åê ²ÅÇxŒ7á0_áf{s…{îÜßËo¿~¼¥?ŒþŽ®Ew:®s´w·â톋õìC(´ÿw]®—Ñzuƒ{-˜º^³Ñ_6gžý ß§à²endstream -endobj -1543 0 obj<>/XObject<<>>>>/Annots 888 0 R>>endobj -1544 0 obj<>stream -xµWKoÛ8¾ûWÌ-.*²lKî{H±Í¢‡.v7>öBSTÌVU’Šãýõ;CêA+^')°0`€"9of¾þ˜- Æß²–)ðjG1~þþþ}–lVÑÒ?BËdeݪ„ûY¸ÆÝuzº»N¢%¬Ó,Jèîf=¬ÜÝ`]ÁjµÂ»þ,í†kÜͲ“]oÕj³ñV-2´Ñ¯œä`zÓ%ê vƒ5î~HOvÉÏdG´8K¢´[ØÛÙÍÝ - Ø[ºÉ`›;´bØòy#t%‘ª6Ñ»í·Y ï“4Zá™ù'cDm%+Ëã5ü#´‚´d v/€ßÜ%๼ÕÒ¡bæ»ßë•ÎÝ7ü;ÂN€Õ‚Y‘3ÀÀ ªðrIhk„iüý´— µ²S‘h•: «h­^,1^h5ß³úA\«sPµð²™FÅ{eèУ ð·¦|.Hµ³R<5¥äÒ–G! 4L³JXg®;`•“mð+<²²äá ¸óÿ,L£LÖhõ(s1õNU ³r'KÂú íîYµcD1Fí°ÎS2plçŒw×Ð2Y[­ò–‹<‚­òP`@\žaZ©\G:4àwó UÛÜ”.ó@—AÌQL!K Ew:gX[}ªý!žlçß þÝ#çƒr*¾Pº“ìÉÚŠ.ʤï|vâ-.О>G•6,Œ!†(Dp[cÊRÎÛ=³p l{›Ü®´¦Q˜jè˜;é|Vpµ¸ò¦œ¤ -¥¡3ÅŸ'‹ìŠ“ªDþ¤[ó O_®?f¯)ƒêIÎùèËúa0òPP{ªèòÀŽÆp¥ê«©‡ÿGUù÷µõ,¼!ϲ»«4௫-¤û[Kk‚,&ÍO•–/üZfŸÕ’[¢oú)7Q¹Åñ4Û7Ò7Q)YÐý‹ ŽiyÏ$PGØ®`}¡?ZôÁ× -s,p¹Ò¹ÐSëïäR n•>v´qHNÈyhXå8"Vøé’ÐÁìÌ…áZî¨ùìÔ£+ÅžKÄEú£4Ç”žjà„)0Ú1²Ë™HD%v¤b*áÒ5ßÅÎB?èX:Š»XÿmÏ+";È™|Ì9ãÜ`0âº;bx -Ö–˜ ·¼ØPU$.룜&ñ—Á ¬¿çEë'v]<øƒGÄ.ÇFÔõœ·r×Ä–× Ýža¦!…tß ¨ñ¾srO(ÊuM†B^ÉZ"w1,aàø…ú¦ë*~œ1{ä êF²4SV0–jÝ oT­4² ÖJ)ª~×BiPr-Ûx`Ð4‘±3U‹NÕ8U(gSÛ E8kÐa¼íÔšNiÑ¢!\Ñ(U…òœè~–ÚMGHHu>‰Fw)Ü.äJ˜úÊú‘Ï©›[ÉÛ’én.qM–°£F{Mò=”¤¿P4#DC™õÓ;)¾¹ÃGT÷*†Sí"t¨ø:_}çOc@ãÍlîYsûåã-ü©Õ7~S¼­ðqæzÁó¾?þ>‹?Ð3ƒë¾¸ÁRÀÅkmDb¬÷ÞZeø”M7øDÄÛÙ†„~ÚÎþšý ®Äêendstream -endobj -1545 0 obj<>/XObject<<>>>>>>endobj -1546 0 obj<>stream -x•AoÛ8…ïþƒœ V$Ûµœc»ÝÅb›UÑr¡):b#‘^’Šáß7¤äÚN/]lk8óæ›7Ô“‚rüTÎi±"ÙMò,§Õ|‘-i¹.ñyާh,Öóluùà]5¹½ŸSQPµE®Õº¤ª&äÉsªä´ÖNÉ`Ý:៯«“œfó -TõtkTtbkÅ!·÷ËcÂcð^AHïUMÚø DMvK¡Q´Nt*(ç‘ÊËÞsLƒè,庣šXÜl±L…‹<+3ú`pHÈ ­¡½MÌæƒ0µp5}ÝFÐV·ŠDNoúűþ<¥éÄn§ÍÓkÉ%8¡¿”Qž¼íÔ(øý×_)i£ƒ§Ç©ïeCÂÓ•‹­™öpõxVƒ²¾~üðvÊuÚ{èõœ+©Ë¨j´È‹lΕ;%:`&…¡ š iͶÕ2à[Ø+e½cΤī@/Z$JöN‡¸ŠÖ>ÈüîÌEmΰ9ÄÀsz°@äçrbƒ£h/ø„öQ­oìžúá«Û¤pŒ¥"2R*ï &еìÞ(G:`”mKcŠs¢ày!– tù¹\ð› ¼”ºÏè«A­ÐT;¨À@hL’E7¡q¯¦GÊ‹ò)! -d-‹+^ÒùƹŽhx°Ì%V.›:—0O*U;5 - $Ú@ÚyÕ¾ æ”_ïaa~x!ÍŸÿ†$¼óv{ÿfØÏ)]=üsÅ'íì”Pò‰M ä3fGÆÇ]‚R±ØÞŒÖ2P[Ë.d§‰ÜpQC«Á PÃ*â€OáŒÈÌbé°‰°L¢ëiŸØŸÜØäý¿bn¯±¥ú×i-i\DÌPlqݶ#0ðS¼W‘îñ2ùc¾'XOl;Ñ·5Ü€eóÔèˆîl– #UûjžN OÞ2×çìÈïǯŒïqõDŽâht§À¯ð:Ù圮ke¢ßoï׃£ŠÞ;ë-Š7Ã%úößwo铳?ð"¡÷VöÂbñ­ÍýÍÆ³2¿ã«ïÿÞíãíÄI—å2+Wk¼2°¼ãŸþ®&Ÿ'?¼‰B™endstream -endobj -1547 0 obj<>/XObject<<>>>>>>endobj -1548 0 obj<>stream -x•WÛnÜ6}÷W à݉öbÇvô!I“§Háí›—+qwÙP䆯7_ß3¤´ÒÊJë*€Sœ™3‡gf¨ogsšáßœ®tqEe}ö~y6ýô†3Z®ñæêú†–ÍŠÙ +åäÃVì‚t4ŸôÁšµÚD§Ì†¾¼ûLkë¨R>8µŠAV„Ÿ/–ŸÍèÕâN&¥4Á ­T #6Ø!bØbQ•"(kx3Çž_çØ¯..‹"ÂÝŠz%H˜Šƒå½—ÀÑì]\W¼÷™X¯€Ð®éO£É|µ§»‰Ü¼¥ÛhèÖjᔿ{ñ’„§½Ôš =âyû­E­“cý®L||IÆî)¥ÕwÉ;›¼æà7±Ò’ÞdDŸmµäàÀ|÷ŽKø -–vÎ>¨J\pcúžxI8œô6ºr¹´àÔjòÒ=¨Rú‚¾8…s€NHñÛ*–L/3pN•,•ç%l‹ PàX â= Álœ™£ð~o]5ȹA¬Œï&ù0 £t“© å4Y%›é§ö˜&``o£®ÈÉoQ¹Deæ!¡À ŸÅ쀩8ðáÈ›—%´\·±Ü"ÙrkÁLX™«‘b"4(’÷lx *üÛœàë6AÒv£¹s{9Ü4ÊÀ“]@·u…²iå>‹&ËÅU‘j‰ë­G޵,·Â(_gŠP…†‘eHºÆ!µdui­åÝ’¢©¤ÓTñ€ÉÓꜞjR™µ¨uh+: Ùò„°©' ¸¥‚w(qëlÜlÉIk…É< ÕRlšßµœö(¸›ôªú^HV*pëQ¦R(¤(tòߨD@]Ú¢±‰2? :Tèç%Z[­í>…׆䣨wÿ’H5ÓÇ‘š\ÓLEAË-8kým:"änw\®žVR&eôhˆ¦´u–ÉYy>ÌÚÎí) SB+S|åWÏöÀ™ªìM:µœœ”ަá×Qc'Õ4ŠX&)'ŽÈ}ôž;wjç º¤G+É£€a0„„š9„¯šl H»”»$XÂÎÍžJ£—÷NÔ÷»}µ*|³§•È$Øôӌ޴ƒà2WÈùÏä«y1ks™<Ê&ç ]&¹¶Zí$uNö¯”í/m[ºüÍ•A½§énU»ÄèSÊM -œ\ƒè9æÆ&DOÏÓ¬h#QÛYObW8¦¸ûoÛ,<ÔQó0îZ(ýÔò9›ó"]czÖÕëm€^–6šÐ„K´yd/|Pµ b7žtO.=®=Ä˃¯}ÆŽjÜòbèÛŽ‘¥ÑqNOŸ§h<¶t(Y­Xã8Åà¿^ k'ñ3ÀXïf0¸X¤‹7l”ÝûtÀìur§E™šHï-Ü ,ß ‚ôÔ ò¹ÿ5÷eJ+٠ɧ…øMWÊLQàSd7m'Ñ“Üê{È{ òÇÃâ[Vm›n^ÓªV¡Ý”úzïxÙÈ”»{Ög²ä‡‚?]ÃäêByéŸF²Áë£aÏ·ÝÔÈÈ‘Œº²m2rÖûµKнn¢Ç¥/•4Ý{¶PÞG.‹–^k -µYñ²“Ì5VlÑoIl–°äzû±—c/i-:Íg£„åëÖÖ˜Ï.EÃ’{ygá·¸†O5c‰¸¾wIŽx‘æ¡{Ïqu%úG”2ªm¨º]#^œ¨TlC'^êWÚш× ë3ó7âe¿•’eJ©³huØetŸï…Ø:â—q—¦\Ëî^8Ózm×–¦5nFê›§\wsiïüÆî8ÍùbÝT>¾Sø ð!ÏÖæbÏiõšctB¹aÐ~«pu†‡ä*›ßtiWù#í~EÒs¾/¯/‹ë«|³bÈߤ©ÿqyöÇÙ?­“Sendstream -endobj -1549 0 obj<>/XObject<<>>>>/Annots 891 0 R>>endobj -1550 0 obj<>stream -xÕXÛnÛF}×W PQ‹ºX¾$@¸)ÔAZ»oÚ¹7!¹ÌîR²úõ=³KŠejŠm‚¶¸œË™9gôe4§þÎéjAç—£Y„_篢%-¯¯ðóÿŒ¤”àèþ¿_-/£9],q  ùÅ,:¿ät?zó0š¾]Â=¤°y}E‰{FñØî¬“UÂÚ­6 %‰•°’>Ž_>|«ì¿:žJOý¹$G|AïöLØLÚˆ2e;»øÙ:mðš*I"i޲T[3Íu,ò©e§¦•Qáä´‰e{”çg3àkŒ<û2iþÚUõoFÉóS"+Y&ª\“.»42¡Š*—…D*±îtmè·R=NVeýHnœ,9ôäëU  ¤µ2z£$vµ£PÌ4¼YD 4|È‘SÑ;G±(i%)ÖE¥ò`ÁV2VéŽ#CBr.ZÈÓdœô\ 'öÐ']q¬(“%™º,Ù’wë… gÛêApKÕº6Í}5U¹ˆÞÂíèAÁÅ"ä³Éü¡Õ>ø‡¾…œ‘•Ò×,ÑqÝ•XØGü„•‹%~ß[Có‰22Æw¤Ó^¤DYgÔªæôD­Ï¯Âš,–˜jèÜï¾ÿps7™G3>À šE×þs -ÃY#rJ!ež×ÁÏy#]¦âAi9\(ßÚ@¢ ÌZ(ãV±ó dfG j <”Z¡Ì")ç¼d£ˆZ ‰£mb  -¹Jy&3”ÎCØßæ÷ )…øÌ+—Á,Ÿè4µÐ¡š÷LÚmT“ð»ßÂ(­  a(“y•Öð£“ÃÍÈ|Es,´¼ÙNÎQ9ŸCùÓm«?1vo˜ T¿ÏQWÑ^ ëj'ûÉ@†¶ -90RäêO%£ ¸Üæ’¡‹…b¥ÊF¥§k±9 Þt+$l%G»“ÐáÙ^#»+ãÃ¸ÆØàYøgÎU¯§S"ò4i³žúõQí¹Œ$z•+›qçø Õb5ß¡f¥u²þp k¾8øÁޝ–hqÎïnŒ+níc¹~N‰­ÀÚÓ/z Ì+ª*oH¼Y³9Ò^ô¦Wï7ß”‰ Sx«Pá~…AP"ÙwÄú7×ã\D˜6Ýö;C·íšò{Ý,‡óK|'s}Ž/Tfa—¹¿¹{sCŒþ„­ˆnû»¿9i_˜\Ͱ%ãS`º¼ZFW—×@7^¸ž³F¿Œþ¨ã¶©endstream -endobj -1551 0 obj<>/XObject<<>>>>/Annots 896 0 R>>endobj -1552 0 obj<>stream -x•TMs›0¼ûW¼[™š&@ÚéÁiÚžÒIkfrÉEa” -É•D\ÿû®'Øé¥ã±Çâ}ì¾}+~Ï" -ñ‰(‹i™RÙΠ¤4Kƒ˜’<Ãÿ_éö¤¾üüü6‹ÒeP'Hi)Bz:ž$­gÓsKqx,'ÑéÑ4 ®§Ñ4 2ºJ’ Gçeg8ùÎÓ3¢Wð'ÑÉQt>‰NΈfÙIgŸ›äñÛáoŠÙåׄ¢ˆŠz¥yFEÕ«RQÎ×Ü<‹’Óã|u»~¼ ¡Èjª™!f¡^Õ•NhEº¦½¨81Ã)îöÚü"Ö¹†+'JÖç8ÃêZ”ÁEñÈkŠ€ä!ËT‹jEÁ2 ûÕ}ÖªÛÎ …³Ý%µ¯t±_ j‹†c—™]7)£’IÉ+Ò~ kÁÜ:#zî6 S­¥Ô{¡¶¾ImtK OZ-¤Pœ.wH1x(¬'ÚÑjúný°*>ŽÑ8†z€´fí†Áp±oîçðÃqrš¸bÉû¡m·Ûiã µx@èpp¿™ùb±®Y€ü©óÇ‹÷=+ÌeXË7X…”Æ-ÏÈî޹ a¥ÝHÌ6º“£:ÿT,KÝ)5+²ÜZ¿ã–)¶å-6J•0â=óQ¼Š×¬“Ž6¼aÏB›3P Q;;Ìée,%‡…ÿˆS—h%=,*ÄViÈÄžŒ„Pû–O@ßµƒœ sgȃðLîÙÁŽíl/¶'q† ¿ø•— <ág®JsØ9Èj-ì\YúD‡ãÀ°¹…$~°· ÞÁ­®:ɱl¦¼ÎÇÝö7£ÚòK¸p§àΘ´¼l˜¶ÅUâ|;RÛ¡´<½ó9ïn^ˆ™cgý]ƒUf¼öôÁW_~½:zëß÷ó*=dæcf”âÅ™/)ŽúK·^ÝݬèÞè'¸nuÙywô—Ö×-Žé‹,¼þ ždI¥9^ ¸]yì[})f?fL?¹ûendstream -endobj -1553 0 obj<>/XObject<<>>>>/Annots 903 0 R>>endobj -1554 0 obj<>stream -x­V]oÛ6}÷¯¸@æ¶bù;: içµE±ÅC1Ì{ $Úf+‘žHÙõ¿ß¹¤$;j‚!À ÅËû}νÿôbá7¦Å˜&sJ‹Þ(áKûç÷_ù Ífq4§‚¦“hZrzè] Šã8š]]Ž“(¦ébŒ'MFóöÄO¯Ï¸Î¢E-n—Ñ’¦³ÛhÌo§Kè'{uÆí2~t{¿îݬni<¢õ±ÍKZg>$|IûïöâàdIñ8¢Æ:¥w$è“JKcÍÖÑ{e]©’ÊÉŒV*—¯×_{#ާÐÒ8[' r¥”d4=ˆ",ÀãE08œLá5„a!Žè£†¾*uÊhD§HU-:^ ­]ï冩6¶é›’Þoíæ5JsT™´p¸B[2[²ò JáÃpÐ’›JENG%O|½E×eª”©3¥’ÞÄO‚£n/UV–Ú$mKƒ¡K¤®‚ªÃþl½Îܤ0„8X1¬¤RZS•)L üFKw2å7ÄíHä¹9YÚÂÿ½ÚíeYç²±+ŽBå"Q¹rçÙÂh(ÉÂI±“$¿#ì •È(¹Ð)×Kº4¢Ô¦”¤4,Þ3‰©PíÀµ-”9Ó1z©tfÒªÚù—Q-6ž£™|E”¥F‚]É…Bà{s‚Jü³í´½ è­¾S!Ò½Ò’6}Cqp2ÍLAÜPR"+å¬,‚é¸ç[êg I-’\Òçûa",zóýêÁgÖ?PjôVí*N‡£“r{_ V~³× ×ùfXØlÛéÅ>™—6¢Ï:•”T*wDØvøU» QŽÈl*4%g蟊ú"9£\Û‘»Ü r”“£g©ãRHå“q_’±ªBo…§ +Ÿ¾-’ˆÃŸ¯PÕô÷~DšŠ€µÓ±§vÏõ "®_‰® •ð ·¹<Êç]öÞú‡M÷©u9¢»V; ]¥¯Áá¹eŸëås¥¿Ù&^nkñs‘˜\¥n=\FiÇÝTcÆ×ÄTÈï¢8äõ똶׊êJ´éüZiÏRß}|ojÆ›ÏIܵ.JHØ%(R‹FgJC~µMO7Åù²—š:ø{𑉼5J|¬ûL\ÅRÃÀRÁ&òh¸ -@ôŽª.é¥@Ñ€6øéºyÝøÚÇÁœïYÎC‚˜äÎÀrOÄQ -½cªòdúE錙ðvÆnŽG£Q×ÂYÊŸ˜§A5¾xÚŠªCÝ«ÍÜ©q ˜1½®›Õˆn›©2 öŠÖœ‘&~¼i:b„ù -šû+ óïÎgªÀæ‰2–4€HoéáîÓýÝ3¢ž2¢çvÊŒyu`SÙÖ>gç @XoéCx´¸+ß·¾Ôlµ¼€g2ap¼t/oÖã†ÛMeº˜F‹ù2@n9á`Y÷~ëý wô0endstream -endobj -1555 0 obj<>/XObject<<>>>>>>endobj -1556 0 obj<>stream +¤Ðs¦ }#7èö F;­7·£ª ,âmÁö|œß·» '”6qžg÷×ä§ýqgJ1 ”ëð6àUÈIÁìêþúоiå¾[»ä3¢Sx ñûÂϼ1 ÇÃh<šà FÆ]¶ýy~òÇÉ?› ƒVendstream +endobj +1554 0 obj<>/XObject<<>>>>>>endobj +1555 0 obj<>stream +xVÛnÛF|÷WØ}HIE—´)àÄIûKnÍ (â¢X‘+“ ¹«p—’õ÷½P–d;mcö`rÏeÎÌœýzÓß1JG”7'ƒp@ÃiNh8ãs‚Ÿ–ÓÒ>H‡ãÇ$é0L;1ž><ð:;‰Þ )Ž)["ùh2¦¬ $ (ËŸee¥¨áº”Ub-ë5WÄŠ¢Ò•$—¤KÔ#ëZn*qK+Ö2¼Í[EZÚgªY„¹KZV5ùcöé4uÙ‚d‘ïÙÙ­jÎG{KÞö‡¯Y³`tuñ†~›Ìæ”—l…àT3ó»dâ (ˆh̅ѦàñÜ–¸”-5 \³ªVG'>ÝÖrÁ꿎þMþ‹‹¼Ý®4úRj#ÛBÑ+ú“éßV<ïÚJoñR§xûDÌB6 ¥×òVŠoÇû‰˜ ù5Õ|ÍkvšRߺly.›†‹‚O¤’ÊŸ}…£þ$G«O³·Ùûù¯óÙS½¯˜.ÑI¤dÃ7%kyT‰ÈL1R[¥yóDΖ³‚¤¨ +[Õ>Á‚Äf€C4ó±3ó$môbôATwäRËsÙ M‚sÌï,8åȤya#p–—óçÄmx]›¿&¶yÒWšBèüòš>V¢E³,J Ó¼U Rv@g¥Û.רcáþÚU-/B.z7Ýi&H&ŽÅÓðE˜†qH0}K’£ÎÝkç¶Ò]OºdliÕÊuUp´^r*,ײݒ*eW{=×ù¾Ý+C +&ŠI}× éíªÊ™¥’Ñ-æ¼0í¤,žFÄ ÇÛ·úP¯=ãÏl+ð +E dÁTIAA‘é!:5:¨ŠS +ê?÷Óðš½eEVüÛ{Do…Qÿ•—äKúyµùÅíÉ}þããìûCÛ°È ; é€Nté˜D玱O³LƒÝ™©´ÜË©fSrAÎø@:àW*3ò¶/Õ­±·6¤?xe¯ œWb¤=Òžû6ø“]²›Ñ|‰;õºù[ÀõOon~è3>5Ûàÿœ9!ÐA6“ÊŽ Ël® µ›dŽBz#E^w ++êüÇÎÿÄ^sàeÍïªEͱîŒ&#W¼…Åÿ0´€a+ÿz_kÈ,`µœ@ó5HÐL’Zñ¼‚ʘÛ@˜¢±-ÌQBtÆí 0Dwþuà*¤½ =˜~|.…h6Ïvn!¸¶†i÷‰­£Ê¹zn»0jööbý ]³©œçúª]D“.0ËÔçCóàPsO=—aÑil^,Ø|þpÍú½¿ ìéÁØ”Ü0ÔÒ˜ZGÍí2Ý(ÍÌöŽ\ž¬¹wÜ÷ž˜RLÚèð&í=àÞkíóàEâ.çâH¢ix q“Ú­k/­†7 ÈÊë0îBßÈÔ#†L¬†7 ¿ÄÒXé^g³ŒúÜî¢öjþ/i'8„“iJ£ØožëóË×çtÕÊÏXt!ó÷‡¡k<Âõq’R0àêÕ›—Ñɲº5 À©Á zè0¡±)ì ÊÍÀ„އáx4Øb›½ÍN~?ùb‡$•endstream +endobj +1556 0 obj<>/XObject<<>>>>>>endobj +1557 0 obj<>stream +x•W]OÛH}çW\ñ”J’vß(‚ÝJtKÚî/{‚gkϸ3Ùüû=÷Î8NœPi…@!ßÏsÏ=óódL#üŒi6¡Ë+ʪ“ÑpDïG×à M¯gø<Á¯×´”—ÓÑðªÿàÃüäâþ7šŒh¾„­«Ù5Ís‚¾É·…ªíi<ÒׇÓgí+‚q–>˜&²9}76wë@ówóNFt>™ÂÈà&Ëttëlã]IŸLh`ãYôw~9E°8 ã!}3zmì‹XÍ +e_øñ[oýZþº)ôŽÇÑP|­¼i6”Uº—äoJãqò7™¡ð÷ ×d¬yRÕBq©`ÂëR« Éy¤¦dkKçw²¤¬4Ú"ùÆ!Í''«óªiAÐMƒ8%Ôd|ÑÂý˯¿"aɶr¹YnÄéÊæÚ—›c©Û_Åt\ÃîUƒ?¹ 3åõrU’uxæ(sUí:'ÑvAº¥¸”.4‹~e-‡àì™S–É}›‹[è ¼–¥YšRS×'X(5—Ñ©dW啱ÀW *š)‹HIª +é&@1ÒŸn½-•øØ– l-‡ Gtéö=rGÀ M1±gÄ8*õ9þÍ~ÐÚ4…äáÍKÑP帵‹UÓÀ ;²€gˆÀsãu† 6 ¡6¼`÷J”{E ,`Šðêׇ[ªUS é{¡#þ*mWT»:œ¯ê3Ž ÁÀ!Pó¹JèÐgïP߯è®8"Á‚vº¢Ô[6ßâ¦mܜѲð OZÕ’µu¾ReLPI~Ò1\ϸ±J»#À[T(dªÈÑZ.Ni¯"«©RþG,ÕÅ}—ÞSÞý6†tÛÕq‹qÐÎÆ­ͨöøÛÎ +×±GÏøÁÑ›Unxnûçxúf×VûP˜ºwø°Ü­|ÃM 8É+S A \;@¯öª@ªêEÓ ÈêçJ`Žj  ØÄ·¨|¡Ëœ‘O"Ú1B婺ÖÊ“‰WøߎÔJ7»ÓzÆèU-Ö…É +>n€yðUÎ +"À¨"нåIÞŸ •Ê,I`œ€ÒH¨*B°¸üNx#3c’÷¼ I0ØUò°ç˕ͬ*Õ'.™õvp…:âìà½ÆTŒ½8[n˜â™I#¶Îº¹|¿Ë›˜ÞÅ}K=ƒ½>rC°–ÈÀa“Èb‰óÜòiÛý‘²jåÑq,Ö~m,G†½°ªkç›#Åêà‹O  E–ª<Œ EŠkº›°-VC>µ\Fêºß&»S¸Ó;fã¬îtÐÏck h®~hz<>݇\†G9ŠŒŽªOf×Ul0.9áÎú Ë%=D$†0R»d-å&Ô¥‘µË€ €f© îWIˆ¸8h³Ü’9<˔͓"cEÈd¹ìøT2¬PàC,Öä‚™UxÜ^Øæ^®íNVíV%@ ‘Ñ[q,eœwܪWeJµ`ÑÇ‹ †{Ó©ïÜÄ8ñ!Ý@†³rIÕ”`“ ”ÕÎ7&6ª «:êt¾ôé–b¯;‘µãTÓj‰£œj‹µÜ¯­¸—r‰1°IòF>“Ž¥õwèF êÑðŠ/¢ïÅìIM‡³«k\ûq!žMØßÝü䯓ÿåA"–endstream +endobj +1558 0 obj<>/XObject<<>>>>>>endobj +1559 0 obj<>stream +x•X]SÛF}çWÜñ ÎŒq0¸6ô¥„tè$7é/ki…¶HZuw…p}ÏÝ•lI&I;26»ºçž{îÌèÿf´<¡ÓEùÁñô˜ËÅô„ægK|>Á‘”øƒùüdºxí`v~>.WoßÏi6£U'‹³%­b‚ƒãcZEãߤ‘ù†.²LY]NÈ¥’îE¾´’"Ÿx*ë îÎýq.TÑÜI\IV99}³ú ŽÎiûìèètŽ`VñxvK3Zãp¾aËGÊ!¶†Ølû§SƒÑ5*¼Ñ…0j¼åy—û{.`~ô¾‚ß+]8£³Ñn€®…€l¯b•$àlá|eŒgƒõî[éPÒNÈjº9„§PoäÉ•­ªÉt| j) §»ÎK”±n'aЭ a³Ž„ͦôžmÞí4¦_-.:‹«W+ë@\fl©þöÑèª| º€D`d [­jDÚiK]ÄLΑ‘"MhT(+/2ªðñ; ‹@‰å¢,¡'ëM#Òª 1R’ÌdX Eº¸ú@µ +ÚF‡æpB‡5þã¨_i­œmmyÀvc?p˜ì tÎç’îœuÃlMÓc¦×"ãÀüã :8Ët2g`¦9î×žãæ +T6ÔÆÇÖ‰53c°¢Ó=S=¡µDàûa;¶kTaø°‹WŸÈt¶Þwã{LþA¦ +†'¤Í÷Æ«9êÔ »ƒ£´e¨È»öëó Ø„«;[mÂÓÅ¡cž@;Á³Hç9²CYñ-”-J¡;CXɇ%Ü»¥¢xÜ—!ÝŒšV»0ûÎ k ìågà%ède+/û Á.%‹†‚Y™¨—™Xç÷³¸G%°3ÐEIk÷ä²™&£ÏÉ!¼—•£š×”ãO…¡á5,± +Ý q{š3‡a´8U™híçš/#/Z¡õP¨ Ú~€Ð/tƒ¥ÏÄØ$X"Ø.úÞF|ÂDb¸0gs mVȵk Æ¼È´ˆÛñ²WÇ•xjÇ-Ï'›ªr5Ö%á hØö$Vœ:UàPD.EáÇyáéøðÆe$O´ ó/¤¤­ŸÌ }@›Šçv!ØïÝÑí^lE¦= æU Qª-€€ÎDº2#H£ž$áf¦õJŽ/‚þ‘FO¨ Ÿ¿ ¢é°pJ5«‹tX¾mXUùk¤xQF9R…Jøõµåë#ô€OPÂL²“)½Û®ßw?gí]Ì[ÄKÚûý}˜±vcÌGd^k½ÜAúòtÖ[>гò Ö‘[nNfƒ¿v›vüo€¯•Y2 0 mGïæz»QóxßúÄ,`×"æ<¬€{œýüuPýN`èhë6™lxðŒ(Â8wýqLòED¼Ùp~–c^Y|£ó2ú–—ÉvãÁY£ýÂØî­PMv­ý¡ê¬Ø·„FÆ-4;h;TlûYd[ö6¦ýèèÞ jÃ*†ÄœÒ¯”tiUàý»N<|Ü“=ÿFÆcÈëb +/0>Ÿ{ûVYë +kVcw˜yó³ñ4PLχö:jÕ͉UåÆ6e¤«Œ”*ô““‹8@‚Er¨w!|*dÝO`»¦¡¹|GÛ”—¸ò‘h즣Ϛõ¶À_ÎNùo¼pÞ_|¼¼ ;£ÿÂZ@ïtTñ†'¤‚¡>j¯-Ïùþÿ|%Ÿ/çÓåâ /õxvyÊ&¯W¿ü -0@³endstream +endobj +1560 0 obj<>/XObject<<>>>>/Annots 881 0 R>>endobj +1561 0 obj<>stream +x•WÁrÛ6½û+vt‰2cÓ’-KroJÝ´™4vk«Ó|HPBL @šÖß÷-Jé:kX¼Ý}ûvñãlJü›Ò⊮ççg“hBóåm4£Ùrç+üI©ûpu³ˆ–ï|€h~=›M—Ñ5ÍØTN³›ÛèÊÿ'£'of+9]ͱ +?KâŸÖg—Ÿoiº u +Hóù >¬gyBëxHzÇVâEˆ/ˆc]UV€3Õ—Ô!)…¹FqUãŒl]–ÚTþk›î1'ÏÊŠÏ÷_@qG„q +<Ì‘c>¨€O{vBæ¥ÛÇÛ­Œk£ªbQ£²ŒR¡2Ò혩içÁƒ(u‡YT†žWè¤MN»ûP™UœØyom°x;ÈXÌÃìíèÂ×áâ;Í“Ez²w):2Ći Óµo[<†'%å§æÁxÓ££¹l.ß(40Ýß$ôxž`Âã/6På.D.¹–ëµn•¾ypÙx%=MÖøÛ”6cÇèÔˆh…ÁÛu%Ï+f‘»k¹Â×¼àaÑ•«¦Óþxž;ÚÛ¿É«3tÈVïØr.Ó9.µËk\q§þJö´úöiEý]‹ît\çhîZÅ;/Ú ‹É-Éÿ¾…γh1_âJ‹Ý‹ýe}öçÙ¿8à)endstream +endobj +1562 0 obj<>/XObject<<>>>>/Annots 890 0 R>>endobj +1563 0 obj<>stream +xÅWMsÛ6½ëWìÍÊŒC“²¾Ü™œiÜÉ!¶Ö1ˆ-$$¡eõ×÷-Àˆfí¤™NÇ3ò€À.vßî¾]|$ã/¡ÕŒ®—”–“8Šñ¥ûùó×ÉlDsZÎð‘JºNøïWÝOÂ5vçóè:ÜßD Z,WÑŒeW+Èú•“ Ö%Í“õÙn¸Æî|ÝibYoÕ|Í2Я£ò+§9X³U3È»Áš­ºŽ’`—ýœÍæNïj-›«}·™\ÝÍ)Ih“¶åzE›Ì¡Ó&îe]*c”®LôfóyÓÛÙØm²é{cde•(ŠÓ%ý%kM[e ©ŠìNòÙ«;Ñè’‘é¡VöD¥0_üf{éÔ}Ãω¶’l-…• CR–tîõB)Œ¬I/¿ì”WÚUÂ*}„«yV'׈¬Nw¢z—$ªŒt%½nQãâ6üÛÝB½òRC>ä„«•òi_¨TÙâÊÐ^Ô¢”Ö™ëXít|¥GQ${8Têü…©× eûZ?ªÌáz§Ë½°j« +Æú¨ìŽîE¹4‹bDí¸“ÎS6° lãå"mÄ`™ªl­³C*³ˆ6ÚC€¸<ôԙÊO|¨Ãïê¡Ö‡ýÕQ×EÜe€9Ôäª@8º°àX¼B 5AkSí7ùdGÒL¿8ä»ÏÕçºnô“xª2|Ee¾o<;!•JØÓæ¨öÀ†…Ñ%P…ˆn+¤,ç¼Ý KGÆÖ' +òŽ¿¤º®¥Ùk¤s'Ïš.’ oÊYªp:Süy¶È¡8«ºNå¿tkäéëõ'ì%gP5¨(}U=ôAî +jÇ]ÅÉøÀIººzø_T•p[[ÏÂâð£µ%ƒtÿŸJË~¥ Ùgk•Z¦oú97q¹Åñ0›ï¤oP©§ßžî_-¨q¤ò^ìA Ž°]Áú:‚_ðÁ× +*J×™¬‡öÞ¹šÏT-S«ëSCG:ËÁ”Ò©tÔ«ñÉx 3iÒZm¹Ýlõ£+¾–=äS*÷„ljÝðt@´ =ïÍèéd¤å13I”¼$æÚÖPÀc=vï³<sØþ“)ßÅa,Frg̲D:Di{B`rq(÷Ž,˜G^mžýUccFw#@Á£@ápdù\ƒlþë¬Í6SU?8uqi&toš^ã©ÁõÁ@Ðì´Íù|¨½)=Y9W|—3:rR`ÈJU)ð”@ñRŠ/Ü#]ñ£‹Ù¸ó¨Â¸9/±\ånPã:åñ·jj&Nšà~×.y(rít4Ldt¡“>À© +„v6ö g †´»Ö4—æ’j› +¦«¾+Ž÷ðYÕny k3YI·K™–¦º°~<Àùwn«ÒC!êfq •±ã¦zÉú=”|®yfˆº”9ŸÔñ`j^Ý cÊm‡òOÓŧ7ó~š:»;Vö˜˜½LU®R`å:ýä…Ú®ïÚ”9ã8úÙÍ|ƒ¬á>88ÕÂtâKûÆK*ÇDPZ­òÞÉÀÞÛ U\²ÛáPíâÛŽûæ¯Ûñ£!¿@¿w¶Ýï +}Ý%Ác3^ãº\Gk~ÄÜß~|wK¿×ú3 ¦_tz(ñs}zÛ +¼]Å7|>‰£EDݘÎIÀó7z)õXôUâ^WóÕ>/XObject<<>>>>>>endobj +1565 0 obj<>stream +x•ÍnÛ:…÷~ŠAV+’íZî²?7@Q´iQ÷.²¡):b#‘¾$Ãoß3¤äÚN7-‚¶5œ9óÍêÿIA9þ +*ç´X‘ì&y–Ój¾È–´\—ø<Ç¿S´ëy¶º|ð¶šÜÞ * +ª¶ÈµZ—TÕ„2hkh¯C³ù L-\MßD·´Õ­"‚Ó›>Dq¬?Oi:±ÛióøRr Nè/¥@”'o;5 +~ÿíWJÚèàéaê{Ùðtåbk¦=\=\£Õ`£¬ïŸ?üG;å:í=ôzΕÔeT5Úd‹E6çʈ0“ÂÐM´fÛjð-ì•2‰Þ1gRâU g- %{§Ã\Ek d~wæ¢6gØbà9=X òŠs9±Á½Q´|Bû¨Ö7vOýŽðUmR8ÆR )•÷ÅZvo”#0ʶ¥1Å9Qð¼Ë:Žü\.ø‰Í^JÝgôÝ VèªÔ` 4&‚É¢›ÐˆÀ¸ƒ€WÓ£åEy”²–‡Å/éü˹Žhx°Ì%V.›:—0*U;5 + $Ú@ÚyÕ>#æ”_ïaa~x!ÍŸÿ†$¼óv{÷jØÏ)]ݼ⓿vvJ(ùÈ&ò‰?³Æ#ãã.A©Ø loFk™?¨‚­e +²ÓDn¸¨¡ÏÕà¨aqÀ§pF‰ df±tØDX&Ñõ´OìOnlrˆþ‚_1·—ØRý‡ë´–4."f(¶¸nÛø© +Þ«H÷x™ü1߬ƒ'¶¿@ƒèÛnÀ²yjtDw6ËwÂHÕ¾˜§è“·LÄõ9;òûñ+ã{\=‘#„8Ý)ð+¼NöY9§ëZ™è÷Û»õà¨b…÷ÎzA‹âÕp‰¾ùôö }qö^$ôÞʾSX,¾µ¹¿Ùx`Væ¯ùêûÛ»}¼8é²\fåjW–+þéŸjòuò!BÅendstream +endobj +1566 0 obj<>/XObject<<>>>>>>endobj +1567 0 obj<>stream +x•WÛnÜ6}÷W à]ŽöbÇ›èC’&O àÂÛ7.Wâ®ØH䆯7_ß3¤´ÒÊJë*€Sœ™3‡gf¨ogsšáßœ– ºº¡¼>û°:›~~K‹­6xs³|C«‚fÙl†•|ò±;/-Íç}4z£¶Á*½¥Û÷_hc,Êy«ÖÁË‚ðóbõ÷ÙŒ^-®ád’Kí­¨ªÕB‹-vˆàK,ª\xe4oæØóeŠýêê:[°!‚!ܨׂ„.8XÚ{ ÍÞÅ2»á½ïI‡z „fCjõDî༬ÝOäöÝMw¦V¹û‹KŽö²ªø7Оw¿ÑFÔ +09ÖïJ‡§KÒfOÁ«J}—¼³Ék~•ÞVa»ëJÒû“Œè‹)B%980ß_Àqþ@ÞÐΚGUH#"€ nŒUß#/‡•Λ#çœšŠœ´*—.£[«pðÏ )~[„œéeF€Ω¹r¼„mÁ‚ +«F¼G$˜Œs´Îí-9‹µ€ñý$dc2•>ŸF«h3ýÜÓ ìM¨ +²ò[P6R™xˆh°ÃEA1;`jkÎЗÂys2‡öüa€«câ.ä%’ÍKfšÀJ?š +)FòGƒ"ydžǠ½K ¾n¤ÊlU#×cn—ÃM£ <ÛtûQW(›V^à3k²\Üd±–¸Þ9äX˼Z¹:Q„*„0´Ì}Ô5©%«Kkc ï–t!mu@˜<­Îé©&•ÞXZ‡¶‚•)G{Š[*x‡Kk¶$£%mJ$ñ4TK±iz×rÚ£à~Ò«Zè{} Y(Ï­GéB¡‚¨¢ÿF%êª  (ýàC…y^ ©*³¡Àµ&ù$êÝ¿$RLÇôq¤&Õ4S‘Ѫg­¿R #BîfÇåêh-eTF† sS×h™œ•ãÃ\£íО< +9v ´2åÉy‘uÜh˜©J.ѤcËI Aéhn*ì⤚F1PË$æÄÙ £OÎqçŽíœA÷‚äàh-y0 ̆Q3‡ðU“ içrç£sxÀ¹™SiôòÞ‰úa·/Ö™kö´™Ä›~žÑÛv\§ +9ÿ’|5Ïfm.³ŒGÙä¤Ë(×V«ÝÄŽÃÉþ³ý¥m«Cƒ¿¹2¨÷4Ý­h—},@éý¡I“k½Ä\›ˆè¹ñyœm$j;ëIìÇvÿm›„‡:jÆ] U=·| äæ¼ÈAטžuñz@ ç¹ Ú7á"mNyÙ ïU-GŸØ'Ý“KkñòàkŸ±£·<‡ú¶cdUèˆ8§ç€ÏS4 ›[”l¥Xã8Eo¿^ k'ñ ÀXïf0¸XÄ‹7l”Ù»xÀìµrW‰<6‘:Ý[¸A¾£%/XäàÝé&WjÌKÿ4"–-ÆX {®pÛ<‚ɨ+Û&#kŒ7_»¤Ø‹ç&z\ñRHݽg å\à²h™áµ¦P›¥/;iÁ\cÅý–ÄfKª·{9ö’Ö¢Ó|2ŠX¾–¦Æ|¶1Ú–ÔË; Wâ~<Õ„%àúÞ%9âEêÇî=Ç­ +Ñ?¢˜Qm|ÑíñbE¡B:òR¯¹ÒŽF¼ÆXXŸ‰¿/ûRJn”1¥Î¢Õa—ÑCºbëˆ\Æmœr-»{auëµ]‹XšfÔ¸©ožrÝÍ¥½cð7¸ã4ç‹uSùøNáWüA€nÀÿe„<[›‹=§ÕkŽ]Ð ¥†AûRáê ÑU2Ó}¤]ݤ´ÿùI/ùr¼^^gË›7øfÅ_.9ö§ÕÙgÿè“Yendstream +endobj +1568 0 obj<>/XObject<<>>>>/Annots 893 0 R>>endobj +1569 0 obj<>stream +xÕXïoÛ6ýž¿â€a¨ IJ8±[`Rd +,E·xß +l´DYl%Q%);Þ_¿w¤dËr\xl-Z$u¼ïî½ó—‹ ñwB³+º¾¥¸¸Gøuò*šÒt>ÃÏWøg$¥üGwÿýúÓÅô6šÐÍ +šÜŒ£ëðKNo£·S¢E +û·ó-ÿö˜ñÀn­“UÂÚ6 %‰¥°’>^.>áUö_Œ¤‹Gþ\ž´F—ôÜQ›‰DoÎ:º2º®z'?¾¤r¹LR¡“:—‡—Œi8¹Ž®Ì Åï¶X²o‘Õ=;´ÉTœQm¥õ¶E±û0ÃÓX—N¨2œxP±ÑV§Žî§$ËØl+'“]Žø‚Îí™°™´-2e÷vñ³uÚà5U’D Òe©¶f”ëXä#ËN*£ÖÂÉQËæ(Ï'3àkŒœ|™´a_m„ªú7£äôÅ”ÈJ–‰*W¤Ë}{™PE•ËB"•NáXŠ ·º6ô[©žF?«²~¢7N–ì{òõ*ÒZ½V »ÜR(æZ‹ {Þ\EWh +ø#§&¢wŽbQÒRR¬‹JåÁ‚­d¬Ò-G†…äÜ´§á18ì¸Nì OºâX-P&K2uY²%ïÖ ζ Ô à–ªUmšûöÖllTå"z ·  C‹Ï&ó‡V»àïûrvIVJ_³DÇõ¾<ÀÂ.âg|´¨\,Ñð»Þê›O”‘10¾%î1AáEJ”uF-kNOÔúü* ¡áÕS ûÝ÷hÌ8Aãhî?÷Á3Ô*¤ªÊæqÏé\¯TùᙵŠ}.»&z&EaÒùcä—$íG@1D¨Ô‰ÌŶo$Žu]ºöŒão0‚IÄpýgFv»1s¾']6^Ýrº¹SçzÃèEqz¿’}YhœŠë\:nìD¦¢ÎÑn#Þ¾-Z&:ßÕ&YÏî 7~Ü}nr<ÊÕrde\å¶¾Mš¨¬‘ÉÏ-‚(𠉹8 §3m{+­éžµ®Î´ö<È;Ð:ÓNb‘Ü„"· íö.ÆcòI0Y„±„ ìLŠñŒ9Zˆ4“¶?±ã´=¿Ê5Î1Ã@¬¨˜|IÛ|4²€;d¤b?;"z¬¡@ýíuhå€I»¥€Šb~wà;B¥µ4 e2¯Ò~ìåp32_Ñ -o¶ÃëFTN&PþtßêOŒÝ»&ÕïrÔ,ÚÉ a]íd7ÈÐF!FŠ\ý ¡dt—Û\2t±P,UÙ¨ôôo-6—Á›ýÊ [ÉÑîÇ$tx¶ÓÆnËø0®6xþ™sÕëÑÈŸˆ>/XObject<<>>>>/Annots 898 0 R>>endobj +1571 0 obj<>stream +x•TMs›0¼ûW¼[™š˜€ÝNNÓö”NZ3“K.2£THTqýﻜ§—ŽÇ‹÷±ûö­ø= i‰OHYDqJE3[KJ³4ˆ(Yeøák8U>€Ô矟ßfa ¥Q‚”†B¤§ãIÒv6=7-×A<‰Nψ¦Ë`=¦iÑU’+tŽ—p†“ï<=#zœEçWÑÉÑ,{ÕÙç&«èíð×ùìòkBaHy½ÒUFyÙ«±¤¼˜o¹y§‡ùæfûpAB‘ÕT1CÌB½²+œÐŠtEQrb†3RÜ´ùE¬s5WN¬Ïq†U•(‚‹ük +ä!qªy9à ènsKŸµªÄ¾3C¡ÇlvA‡Cí ÝEäWƒÚ¼æØ¥°Ä@¦íñ&eT0)yIzÇԲ̭3¢çnB1UZJ}jï›TF7ò¤ÕB +Å©æ²EŠÁCa= Ðc¨ è¸íý&ÿ8F£têЖ5;ÃE¾¹ŸÃÇÉiâŠí$]Ûjã µx@èpp¿™ùbq®^€ük æï{V˜Ë°†;n° +)=Œ3Zž‘=ÔsÂ(J»‘˜­u'Gu ÿ;¨XºSj–d¹µ~Ç SlÏl”Ja8Ä{â£x%¯X'íxÍž„6g £vv˜ÓËXH 9þ¯]¢•<ö°¨{¥!Sx2Bí[>}×rÖÌ!Â3y`G;¶³½ØžÄ2üâW^0ð„Ÿ¹*̱uÕZع´ô‰Ž§as Iü`oA½ƒ]v’cÙLyO»íjoFµç—pa«àΘ4¼¨™¶ÁUâ%|;RkQZžÞùœ·×ÏDO̱³þ®Áª'3Þ {úà«/¿^¼õï{y•2Wcf˜âŹŠ) +ûK·ÝÜ^oèÎèG¸ntÑywô—Ö×-Né‹l¹þ ždI¥+¼p»²µoõ%Ÿý˜ýLzºendstream +endobj +1572 0 obj<>/XObject<<>>>>/Annots 905 0 R>>endobj +1573 0 obj<>stream +x­VMÛ6½ûW ÐCÀÖZþXïHݤnrŠv]EÝ%ÑITIÊŽÿ}ß’ì(Yš dgæ ç½™F1Íð7¦õœ·”–£Y4Ã/ý?¿ÿ¿ÐjG·TÒr-Û‚žFWŸ%Åq­®çëY´ åzŽ+%Íï—Ѽýâ«×ß%-æ·ðlýéÝ*º§åêwpß±'ÿŧ×ß8]ú8ýéãvt³¹§ùŒ¶{`»]ßÑ6óðK:~‹ÚICñ<¢·Ú:UHÐ{•mõÞÑeQIãdFUÈÛ£MçKx?­“%9#%銞D™6à€ñ:œ.)Œ!Žè]Mê”®l0]¢T­é| Ø0Ýæò«ÀÔÛµ¡7{»{AµÑG•I‹„K)*KzOVÖÂÃÁK¡*•<ññ`_e”)#S§’>`Š!Q— G•ÆÂ›¤½Ñ€_"u \ÕùÙzŸ…N8Ø1 ¬$#­nLŠ(ß©¤;ió ¸‰¢Ð'K{䟫C.M[Ë.®8 +UˆDÊ'dK­áÁE’â I~®ñ&@%2JD!ª”ßKº4¢ Ü–ÚHR"”>3‰nð†{;Aj{8szôòÒ™N›RVÎߌZ34¢ém®,uœJ!€çú—øÏÇé{AЕúL¥HsUIÚ6 ¦â$dZ(„‚¹¦Ä *ÏÙX€¤ç[ê«d4ÉJ$…¤§÷ÓDXôæ›Í“¯¬¿0¡TW{uh¸ŽNÊåüìûf#Ú~ÓtÊ'ÓÒfûA/ŽI×ü´ýZ¥’’Fn„}‡_µ åˆÊ¦¢¢Dp†Nñ¥h’3ÚÈõy(4^Ž­ ôì0%_Éo&Äm]J¦ª +­®B­<{ƶL"F~îH5öß°ë´?uCà:TÂq¶6ç7L$~CƒÎ ¯á{8œò(ŸMÛgìï Ã÷iGôpqÞ‘ïÌæWµìDÄw”õö…ª>Ù3w¶gù¹Lt¡R +§ž±µV•ã†jiãŸÅbÈÏ¢¬ ÉOhÛ«ƒÈìˆBò}I?6•ªéOßË–‰ñnçK±¶êÕCdÝ@eÑë¬j(oç6¢¹ôpU¯)"4¶öÈD +i Ž:'¾ö}&~D#C`P¥à~tr.úDAèÔ™ +±ÃŸ!ÐÝ‹®ƒ:=`,û^è<+ˆu.P BÇ@T7¢:°Zy=ý ªŒÅð~ÅiÎg³Ù0Â[iä,ÕPÿxAÝ‘šºmÕnô´ÔÓ˜ŒÞ×ÍfF÷Ý`Yû¶\‘–*ž/;ü³ˆ'ãø¯@п?Sû‚ž(m©é==¼|xÆôÂeÜ}Eç~ÐÌy{àPÙÞ>§ЬWt©ÕÆÝÀ’YùL¤ ý.qn6 »·Ü» ¯ý,<Ó Õ‘ M˜c„¨Ã´Î7NŒ ~åíàଧq{ºXEëVT ;…ðâhl§]Ûý‡7Œ£*¨×á—é}¯×Rg´^­þÏT‹Š¦–¾•Ï>/XObject<<>>>>>>endobj +1575 0 obj<>stream xu”AsÚ0…ïüн•ÌÄ6;Ǥ)·vÚ ™^¸i‰•`É•d<þ÷}²MÚÒ†¥Ý}ûí[~Î2Zà›Q‘ÓrM²ž-Ò­óeº¢UYà9ÇÏ1†ƒYžæ—÷ÛÙÍfEYFÛr­Ë‚¶Šg± ­œo´ÇcOžµ …ŠÉ÷õÞµ¤£6¯ž‚¥ÆjâC<6:ë^ÉW±§Þ¶Ô ®IE>èQÔ{‘^m_f Jò5ÔnÕüɳód =|":“iÛz­mkâ{cMR£JÒžj¡Wã;‡ÐHç¤%ÇÚ „Ñ·à‹"!€}'úªð„³ª•1‹ánÊ]Pƒi8ƒ;çŸZ—““"-3:Ùåë‚þîz83ϧÖ9X%‚¯Øñšp_pZ=‡'j?4Ø×qÜdD±ùʶGEðx¤t´;)<¿« ¡æÿ•rÖº(ϲu:ôÔ´®±žýõØë䢞dÁ‹pVd0ò= ÏgcOÊ*q‚É;Ì•nâ]X§aWkXÛtƒ-õq Ñ­5 ¡Øëg÷©É q•j«ôa u¹Ëz\¦³Ûûw1œýƒD9M-[–iy»¤¬ÈÓ2Òz¼ûrGßœ}ÁúЃ•m1‰8“ÁHÙÿRå’’bqïÿcóU±J‹u‰UÀi¹ŠAŸ·³ï³_®‹endstream -endobj -1557 0 obj<>/XObject<>>>/Annots 910 0 R>>endobj -1558 0 obj<>stream -x•WÛRÛH}÷WôUkª°l°å¼vÙBb§ò°ÎÃXáI$ÑHö’¯ßÓs1Æ1{)À…¥Q_NŸ>ÝzìÄ4ÀOLã!Ž(-;ƒh€+ÛO¿vÆq4¦óÁ$QIÃAúoM;ñÙ×Ï’ÓhÈwG“(ößø.ìÐp’Dg|g&þÛö^’اÇ|µ¤¼óHñÖl\üO%4Nð‰ðú×ñ9½ÓôÑÚ†iv÷âñ·³Nÿ -Ž4Ëad4Nh–ÙŒp%í^.Ū‘5ŧÝתjTõ@ÓvµÒus<ûfŸÇîÙÞéüϲ.Ç]WM­³6m”®ÜÑ3Šct8F&8úV>¨ªb£Õ,©YJdær+¤0ò„¦¢\2Î¥±'*Ѩµ¤/ªÊôÆÐÝŒV!´R¦KQ)SR媥¬™±ûõ—o­ÝN{Ÿî/iÞU‘Œ¬Õéý‡7Ó)U¢”­ÔJÎ9i¹Vº5´–µA&†tîcÒUñÃ7¢ºÕ6”=Ÿ©( -ù‹ÃjŒìgHWd™bˆDAy[Y´D¡š'Òk•ÁðâÉe-7bôpªÒ¢Í¤yÆÁÈ^°ìKD¹® U…£lB=³Ö”«BS½ÅrrÞŸ$ý»Y8±ÓB?CíJW”ÉRT™M¡•úRöÆQÂMdæÃј8ŽþU(´½¹…ýó*D_xQ®þNQ/²Ìq~Q?D¡\÷_æÇ„¬øðuiÍpº #-%w -=ïÖ2ÇÓHpÙ4«7ý>HÁT1‘ÑmJÀó £J6(µ ýeb1¯ævoŽÌSÔ³Ìúdø- À™tIÂдuóN§÷’¬Oè}Õ–¿ë…™wçÇ'$›4Š"ä<•’Óõä 1ÝNßÝ¡¶iËGG D¢ y–&«¢R¥µ6:o¢T—}Ë…RC4T…¼K÷žò°Ÿ_ãîÅýõüøCDð(ª'ÚÈ£FQµå”/ŠS¶ˆ€ß @Ø6ªP?8šYC¹¬îùÁùËà0ŒŠBo¸‹o§ôÇ[XmTZ ÒpÅ–g)‹©œžtk=gz\·]yµâÝ¿yIíÒozƒ”ö"ÛQCã†å¦ÏˆcÐÊZØÉÁeØuÁ6žåÊòrè+µ§þjÿû¢ï“4ýq2éÇýÁyt1½wf'Ø<ž'¿hÌìˆû:Wmm{Ê=÷É 1Ý1øGƒ¡•†?-K޾ÒÚDä¾ÈúèëËÈ{,êI48Ÿ°šüÃL®%¤‚Ès½ØA±%ÀõgÌ ô_‡@pñ f™ -ž±ûAâ»á3¦^«TRZKÅ‚Iðžüµ—è8nÐClÞ‘E»§Ãm¶‰åbÏ¥(ÀlƒÖǦ³5õÀf©0DüŽ`ÐÌ"ëÙ…D8måyZ¡-„14æ¡þd‡X¿…xünÖ†Ÿ¶ÐS"à;8‚m·-?‰¸W€ë-¢5`æ=ÒUÁ»ª]»{Ž î0'ì;Õ@»£ß ^†V0ìŠ qFMq߬dªr·8{Ü¡(íËÝøèTÙZú "ê -ëZÐë  éÿJÇå²è†’e€ÅI4¢ÊdAVo KПÔù(§ÊÏ8Ùò+ ú͘£ÙC³ £Ócû»ù%Ó—†î{% Z;ë^Puö×¾¾Ê9å=±òW¶˜ ¹ªñÉÊ5ÉÌ[ç®<úºø ®lþ¶r¨¬«2þAKg°Émɳï¿`åg%Ä ÆA‡‹}ÇA×'~!À[‹jsG¹#„œŽïjBâi NñB•Xàþí=èl|G‰Û„“s¶ô~ÖùØùò£o endstream -endobj -1559 0 obj<>/XObject<>>>/Annots 921 0 R>>endobj -1560 0 obj<>stream -xWkoÛÆý®_1- -Ø"ŠÔ“ºF:ŽÓhÅRÑuQ¬ÈµÈ„ä2»¤ýñ÷Ì.I1ºJp• árwfgΜyðÓ ZŒi2§(øž7Ý??‚¥·¤i€w”ÓlÜ-2ZzËœÂÙ{A0ö¦4Yν‚Á<ôæÍŠ%ûkì.}oÒßí­sèpšX6´ª>ÔC4˜ñ¦]YŽ5v'¾ôw{kÞ]zpü(Û[cw6g“»ÝO,pÜÆß;žâ ¸î‚)½Vô~0/áËÂ3˜7Da³bóúkìΧޢ·;CÛx:ÞÄõna%KÄaÆrö ïõ–9-æ¸×[Â' <Ž›g} -a¹siæ\zµŒÞL5mžàÿ<\Ð&¶,ñi]ÖFÆ´=Ðïi«½¡û •:-*2R?Km¨Rx¡žÓX’©ËR銞”v‡¤¦X§8F-2%âÇދ͇OÃñžlâË?UM&QuS®âôé@UUVû…!“o½HOô”f’/qlOì2µ•B‹\Vl‰(°£(ÒRT8 --O*ËÔ>-vVº¹„óÅ&ZÒã¥z¢HÕÚÈ—dT. k–íÓ³Èji°[G C¥¨’ bi¡·i¥…>ØË7¶’´,3¹}Z%'÷ŠxC6Ò©¶€`™´’/þã7>-]L† ¢Åê/çôß­Fôƒ'„ßå2ß2 ýE%â<-h§U]¶Ã4±ÍäYù[0‡¦‘UH6Zê*•欴Vª¢ÔPš—Y¥UH€Sá·¦\œüâýH?5f7GÇÒþeÏýpÎqGµÑ£LE"‘oŨÑ|ÎÚÂY‘ú±ÃYw¶T—ŒÔW€d1©n~MÉ¢YDLDÀâȆærº«5¸*uZ^2ç -ÚK*¤ŒÏuÅpî5øAYjª è&‘ÑGÇsÎ s0•Ì AÊScRUØÜÌÅÇóá6°ÁÙ&"ð‰æ•›,VØf"§ n»ã´HÏÁyÅqU@3æªZ:4ŠßRÔ —ç"3Šäg¸qÞQïÿ Î „ åÍK¾˜µökj “hƒ¬v[¨ï¶Ü]u|)sÉ.ÙÒÇqq†ÉZT¨h”Ég™ñÛágKöœV¼– QÒ1ŽAS]ÆÈúÖé¦qaCÖ6’–'­¥+`mõ{¼œ=¾ *ÅŽëšF±DüÒ9,‚8þ¶äj+ž£9-¹ „–ŸêTË\"ðÐáÜŸµ¸Ðÿ¦ÈÐKŠe)‹•¸48]ñbÜZ+dì1k#ƒB˜e„ò³«Q°QÀÿJ aÁƒ-!L֜ϸÆT “lFá"G5½–ÖÅÑ›Öîµ~€&³ôBüëºJ”FC¹W.G†èFAèù3”[Çf°UËîT‰@e{b8?{­ÐùÆà ¿ØQ n!ⶃr2YWN¼v­¨í/Ý2à«èM/tí :Ð-íÔ‘q9à>4“”ùÕÝöÚª9¹îF•F_#ûÔÌÔŽáV–…=L£24¥{GŒ–ÛÉ^¡d1ÓÑ=z×5Ó“kq— ½Ò]?’ÅsªUaé·O$…èCº¼=ئWñ£­å¶—ª”Ö¦¸ØòÒ€Y¾ÍƱIª.'y(02ªQ9 ?g3ªïšG˜K.q´½-Á¡3 ó_väÚ%ò’+߉ÃNÛô -}â7ÄØ µƒ -ŒKø¶¥³‘6Õ½Ì2Þ¢rcæh © ÔS±;{&¤Í㌫c#k ØJäµW*_ð¿Þ% ‡$´ˆuy²ð‰ŠîÚrÅ5F|mìã ´Óóºïø*ÌÍÐç*†Ç¼Îª´Dв9q‚”ÐQ‚¾UðcLÍ™ÍgêmŒBUJcö°$h¡k†› ):í>I1¡E ‡4¨Lv”¯ÜHtrmc?ÒÅY…a®gj°-;n„ä*€R€E¿P£¯dïåçÎh‹Ic5Zr¾•ÜEx£fš¡€¶Vöï·é°OMÒCº©qgÆÂˆ!ÿZ/{³!χÿŸŒÿçüÜü®èû^¢çß]öî~ê·rüOv9-ÃoˆNÆ×¿®~¹î¤{¢(e×Y™ˆ®ÿX}SÃÛ»ÕºSп¦¾ïSzµº9 -ŸH¯Ô^êÕ•?æt—KoÚôÍæö~s÷îþ;z¸}ÿÛÝÃíkZÝ>¼½[¯ñrÍÈÞ„Mÿ ¦S/ Ç4ŸÏ½ÉÔŽîëë·¯®i¥ÕP_^Q͵Ïvn–ó…ç‡.|Û†nQò䌯HaŠæÔZ»,˜.ðu9ñņžÎùÕífð~ð_ ~ºGendstream -endobj -1561 0 obj<>/XObject<<>>>>/Annots 926 0 R>>endobj -1562 0 obj<>stream -xWïoâFýÎ_1B•Ž“‚„é—*¹\ª“.¹ôàTUM?{½Ø»Ôk‡£}ßÌ®Cr•zŠH‚מoÞ¼ÿÝÒ?CšŽèlBIÞD\i~}þµs6½ˆÎh2>”Óxt‡oÍ;ç³hD“³a4ÃáŰùÂg0Cçƒa4¥ñlŠÿGøŠVr0›DÇׯÓ›1 ‡´XÑhCšÌàp2£E*a h‘ô>²Eª -*-%UQ(Sf{ŠÓ”b2jGi¡ŸüéÞV4óeLëʲF‘]Q¹ÃƒÖ¤ºÔÖ8Ê+Wâ†,¥²¨ÔÏo_;@£?šDcøí-6Šâ$±•)©r -wÉÓF%%ÿ[âøÙG0?áªtÊîôÐÓ‘Šp¥°¶¬=¼eO§7Iȸ?f\¸|M¦äOk<ä°?<Ä?Ó’#ÊU¾4ŒÂöFÁo[hSª‚¯¨q§¹6‡±ô(Ó®ŒüÅÃðë_É ?šEà êŸ]DÎáÓ -E¨ -§N$„!¾5ØRWê,£­uN9ÇGü°s¹W:Sò…“qÕ2Õ,ØB+w”ÄR—úSrü鯈>«€E¹‰Qø`kä6q›øENI}ß*FM¶CË=¥jW™O¾/$*¨Î™æ“I1í6LÏrF_¡þ®_ÚÄÅ“Æí±AÎÎÙDË͇‰œÓùüÎìQ´ w”#›Cm+§Íº¦ÚCÏß)3|Y؇· ú«Âæ0ó»6©Ý9º[Ð8œŽ)É4:.¢O[e¨{§ÐMÅãQ,wJ¯7KTwcmÚE»R÷vOá^ºÏb”±+‰/ X‡*à–ÃN‚ƒ,3›4XúTOŽœšøI¯qOÝ•Ý{OhEQ2hFD 8nc+´»S >i!ˆ3!5c‡î­r1;ò¸L6Ì4”1œ¢Erhƒ[Ã(Zºšå‚†Ð–„>DSä…;?4WeÉÞ¯E½œ òþúŒ/Ö™°¿g„•Ñ´–ƒÿÊB›#p߸Æd†vÜgÂZcAVàQ§ôÕkή´Gi—<¢ÅF»º=|‹ÒÝ—É•(ÃZz6ËìN"ŽÖ"ÄuÍèí’åþ‰ ñnq:`"yÊ9±%M—e©ò­„¾xÒÐþv‰¶…ݪ¢„˜q“Ðn£“ råŠ>Ç\Ï&OAj€vGØôQÞª(@ÛŠ¯ýÜ8½™5åÚ„r­¤Í¡'ª£$6c‚œj·Íâ½J=|õƒ«î·U‰^i ^WÁò“Ú¸Š¥Ržh·µ6{!Ü­ô%“C×Vdjcª¼`Rð a»ûå%ßBNï2<¢ûm7@CŒ¡bIc¬o#D©ì4dø;UÚ‰Öx,vñþ%Ñ|i J!Džmpð]Á¾‡¢=ÿ€oìrµ &¢°¬ÊÍÚÀ¯5àÞ`–©øc³z®2^š EX»­¶¢:Ü MQCr.¢^˜Paá)ÝQ&þþÕü½ ¢ž¿5-?¬B‰ -òÌ€ÃÔ}ëøþ#n§XÚÍíZÏ‘e°T´Ûšßf“îÉ3ŒRéQëÀ!k€ÔdŽ™‹ÆèR/kU¨£h‘ØS«Ö€:‹Kç*̱µxóC·Y$„k‡KW+ª8s–›0^bîç6Õ«}Èçç®J6G)@>.ß}Ä®®§G-WßKûíEè´“ÌÊÄNlž£E<àò¤m° žFË;Ù4Ç -ÂÌe W¶ ¿õ - -!'üBßù®%ž ý}Í aäå‡eFv!H“ßnS åËyüÈ…cá”é$AFt%»‘L!Ž™Í‹8Õ¡Æ{öÖa-Þ±cþ”ØÖU8–M¬B`64²'¼¿È CÏåËKäÊ_®÷æÞ Ô‘“Vv]åǫө¤¬gù-2‡áC©•ôkÚÎo¯鑘NjBh¶?JØWɯ¨ÜÑ.³o,pMC`-×üÖºÛyÿóý»0ež_yo¬0€|ÐðüšSîŽÐÁ~æ!WÅ{t\HOX|×°ÁBˆª*·X¢Ä·¬¨<¼q=2Œ*¿!×X ðu亣Xš[)qÞµ)ZãEc‡0 »m{ ‘½ÇZ»Ç«[—v*ËúL†Ö…­¶RÛÓ›Y Àp‚÷ÌÞV‡xœóf4¿¼½ºÏíWÖàk›-SBĬԧ_?ÒŸ.øþÿ½§ãhŠTQÝÙ”Ax¿èüÖùâáñ%endstream -endobj -1563 0 obj<>/XObject<<>>>>/Annots 939 0 R>>endobj -1564 0 obj<>stream -xµXïOÛHýÎ_1Bwj*%ÆNBb8)ôšS8’–“’~Xì qk{}^‡Àýõ÷f×›˜t=©¥‚²Ù3óæí›Yþ>ÈÇ¿€†]ê (Ê|ÏÇ'Û׿ƒÀР{‚Ÿuƒž×­G)Mšċ^МmŒ3êùC¯×˜…êõú8¯ñ{ߥ¤åAoÀ£ÀZt½~=`ƒaFaè…¹Æ0£ Ï~ÛSxcsŒYXlnmއl=0Q6ƘíŸ¸Ô ï„‚F&£>ÖëïmŽ1{Ü÷޳ŒAòOÌ p€‡†k؇-ø{<€ 30s»!{{‹Û¹ÆsÀëx7tC€Ò½ÿ÷íÀœ¹Z8/XÈs H=ÄbðwsofGoŸfKiâ—ØpȧYÔbÂx=¦ë¢PeE‚RQÞIÊ×Ù­,I-©(“¼’¥~=û‚“úö¤Nwˆ“Z—¹¤D뵤j%*Z M¢L´Ì)^cç>–Ë{™ª"“yE–H>x*²[Zu±ß¬Ê¥Œ©R¤k_â2¹‡±Ú䩱ñÀ§Žá8,/UIï¿ÒM/=ú¨Õ›$Ç^M“®nØŠV™Ü°›bóu#JkM<ëi¢+ÆKÊhŽ`rR¹ä¨6k0¢¤õÖb4Þ¶ù, ˆd jQYDQš xøªeUÇ©,yü×E0|˧×`ÈʸWoZ«(•4ûžm’jEØšäºiŠÍv‡G3$`©ÒTm  DV¤&+µÁéø,Rë4f»"‚_ÀXÉøÔúæÓ‰K9ÓÐÿB<ÓÚÆE…ºSÔùH¥RÕ¯ZF%¼îDt(Á#ë‡>ä-ì°«3ÎU&’ül>]OÆ£Ït9=›Ì“‡Ï4•%ò~6ßÄó;"ozŸë3º,8cÞHñC8pÓÎÄ•¥.["ó¥¢ÀÕðƒø«^1A"OiþîŠÞƒ¤åˆ¢ïCráQ"5]MçÀ°Ð‰®…þ49Â÷‡¿ž‰à¥ÒiÁÌ¥K–ÉÃ2wútî?„€Ý÷ÜOÖ䜤ù_W—¿_.«¢cüzvq,uT&E•¨ütn×ïïkO.éüzüéâšFŸFã÷£7ï/èíå5ÍÞ§tu=žÌ.®ÛÏžÎW×útîf/¾ ÕÅbïJüf¯•¹9;pñÑbqø231ù3²2]G‘Ôz¹NÓGÖ.Úz¡¶7›^vÊã›å§Óƒ$ƶêô=Å1kÒDn¨¾Išîa¯qµ¡Þö oªÏ›GÔ–¥X§U»®'j¹D±"H «\¤WkÍ “º˜ä棷¨íV uvëE*_>5Òâ•\½ožç²”Ʋ„ï©VRT #«¹Ë%÷Ѩª]ëê[3¢8vÓMò—¢X±æbµIäX³B«à'Æ=ôîÀª0 ;6å2B9à‚Q²%q i7U´‘9ù £uuÏé²yÐÅâÅ÷;!¸‹×°ÊE$Î’a•¢Býå°::ƒ«vŸ¤ò€.Z‰'=£ù„ZlÑCdAÅBîìq{È.^×̈êÕô{¹Ê¾è†{Ç™ùmä ‘ÅðŒå^£Ò‚›œÄš&/XF/·fÑ:èÈ‚“äc4%ÒÏs±¬±ö†)œ¹}èÙM±u³¢fªEÝ4 {Á¶¡íÑê…¦![kî½îáÒ–ç÷"]#=Ì’¢Tw¥Èh¥ÔW2kuó^³9ÆÈ¡ 'y¨u%³:Í6ƒîÊ4q$«èÈìŒD±—g¦…(`óèYh æhð mÏwßÁ%à Q>ÒÀ´»7+´™»6ŒÑ_–*¶ÝjãÒ˜H¸dìÈbôm%(œ«ÊÞá¶õ|׳A¾iÍÌ¥tW‰²›¶”ŽüI‡è icJYˆ’ùcA·G:œ[/Ió¨Bv -t‡ŠR1¼ìR-uVM ¦§5éd„Bì¹ý‚Ô0µ@¶Y%dY"wèÒGFFè\扌YaÐÜ­KVÒÚe ¶Ge|@{ý<6ί=jrÚÀÝŃør£jT Ú–›;‡ð w•|¨Ø36òTþÚ& G—¢)¬:qS»Î«}þÌVÒ Â„á¦Wr1ÏöóËT"4ë Éä÷H)3uÏõ™–Ñð‘=}¶ˆÔH8>ß§:'¢nÖ-¹Û³,ÝOӢᩄ£yþæ}õ¨Ö`¢Œë»nƒÚD)J0'ïÕ9W¯°8‰Vœj^ FCk ¬ C0ÀßBü]bX×ÕéèÛj§ú‚²Gç*Z›¤qƒÇ;;nCgèãÕR·ßýÀíã>„x(ckò‰³ƒ?þ–º Yendstream -endobj -1565 0 obj<>/XObject<<>>>>>>endobj -1566 0 obj<>stream +„Þ¸f•ì&Ø[„*ÒÔ8>iÛz­mkâ{cMR£JÒžj¡Wã;‡ÐHç¤%ÇÚ „Ñ·à‹"!€}'úªð„³ª•1‹ánÊ]Pƒi8ƒ;çŸZ—““"-3:Ùåë‚þîz83ϧÖ9X%‚¯Øñšp_pZ=‡'j?4Ø×qÜdD±ùʶGEðx¤t´;)<¿« ¡æÿ•rÖº(ϲu:ôÔ´®±žýõØë䢞dÁ‹pVd0ò= ÏgcOÊ*q‚É;Ì•nâ]X§aWkXÛtƒ-õq Ñ­5 ¡Øëg÷©É q•j«ôa u¹Ëz\¦³Ûûw1œýƒD9M-[–iy»¤¬ÈÓ2Òz¼ûrGßœ}ÁúЃ•m1‰8“ÁHÙÿRå’’bqïÿcóU±J‹u‰UÀi™Å ÏÛÙ÷Ù/­ü‹endstream +endobj +1576 0 obj<>/XObject<>>>/Annots 912 0 R>>endobj +1577 0 obj<>stream +x•WMSÛH½ûWôª5UX²Ørn„„]vØ©Ö9Œ¥žDÒd/ùõûz4cŒcö£–FýñúõëÖc/¢!~"Çt:¢´ì ƒ!®l?>ýÚGÁ˜Î‡“`D%ÅÃ$8uß +šö¢³®Ÿ%§AÌwG“ rßø.ìP‡¿ZRÞ{¤h k6.þ' +Šã >^xè¦Ö6L³»¿õÂ+8Ò,‡‘Ñ8¡Yf3•´¹«FÖt_«ªQÕMÛÕJ×Íñì›}6wÏNÏà–õq8 +èºjjµi£tÕ=£(rGã12ÁÑ·òAUݨfIÍR"³.·B +#Oh*Ê… Ó¹4öD%µ–ôEU™Þº›ÑʇVÊt)*eJCª\²”U#3v?¤â²ñ­• ÛéàÓý%Íû*µ:½ÿðáf:¥J”2£•ZÉù1'-×J·†Ö²6ÈÄÎ]Lº*ž|`xâFT·¢Ú†²ç3Eaw1¡ÆÈ~†tE–)†H”·•EKªy‚!½V /žº¬å†|ŒRUZ´™4oØ09ð–]‰(×5¤ªÐ"c”-P¨gVÁšrUH`ª·XNÎÃIÞÍÂxb§…~†Ú•®(“¥¨2›Bx•ºRÆAÂMdæñhLGxå monaÿ¼òQ—^Ô„«¿SÔ‹,ë8‡@¿¨¢ÎP®‹û/ócBV|øº´f8]‘–’;…ž÷k™ãi$¸lšÕ›0)˜*&0º­S xdPÉ¥îB™˜gÌ«¹›#su,³>~Ëp&]’04mDݼÓé=‡$ëz_µåïzaæýùñ É& ‚9O¥äty|L·Óww¨mÚ2ÇÑ(‘h|ž¥Éª Ti­Î› Õeh¹Pjˆ†ªwÙ=‚§ì§ñkܽ¸¿ž‚Çgÿ*<§,ƒàÆ.Ñ®i*¡KÍQÐ2 j{yõu=„ºéÅ7™6æëÿF9&ˆ^£‡|Ãp?ØjÀúc+[I µZµE‡F³¬uûÐéPk$÷:ZÚV‡4X@•ŒÅÒ¬ÀºŸÄå›^ì|(v_Á° bhô„¸ÙR¢`Ke!eEF—\>¢Iu•·¬I$ºmh³Dý!3(¨2TJ±BÇâºD‰fM•nHá70=[U[…ätöØåAê„ÂjÄ‚]›({u:¸Ô&+ØÏº^ó`oiŸ×ºÜv¶•€.8 +‰Ûs ·ºŸi€ÍQs5>}Dð(ª'ÚÈ£FQµå”+J§l¿'€°mT¡~ p4 ²†rw²ºçÛç.{‚à 0* +½á.¾ÒoaµQiHKDlÀ[ž¥,V¤rzÒ­õœIè¹p^ÞvåÕŠwx5r’Ú§ßô)íE¶£†¦–wš> ŽA+ka'—a×Ûx–c(£OÈÉ¡«ÔžR¸«á÷Eè’4áÇ(™„Q8<.¦÷Ù 6çÉo3;à¾ÎÕC[ÛžêΞ»äbL÷a~GÁ0¶Òð§eÉÑWZ›€º/²>úú2ò‹z Ï'¬&ÿ0“k ©ƒ òÜDovPlÉèÆú³æú€/ƒC ¸øŽ³LÏØýÎ qÝp„S¯U*)­¥ÀbÁ$òxOþÚÎKt·‡ï!6oƒÈ‚ÝÓþ6ÛÄr±çR`¶AëcÓÙšz`³T"nG0hf‘ ìB":måyZ¡-„14æ¡þd‡X·ùxÜnà׆Ÿ¶ÐS"à;8¼m·-7‰¸W€ë-¢5`æ=ÒV¡«­Øò}Ïq¡Óæø]¢Ï]Ž6ƒìïsV‹V°ÞU +Ââ´YÉTåÝöär›¢¾/ €¤Se êÖP(©‹ +:ý~îÕçåÔeüœÊv·N§U&s€ Ærx{X–vù'çHº[ÀN¼Ü"ƒîDKæhyßrq`Æ£l—bC¿d³G߃/Ãd¹@ƒgýëÚÎA¶¯/tþžX,[̇\Õøä‘ÅÊÀ”æÝó@o}õ[²“3¸²ØÒ¡´]™ñ;ƒMnvŸ}Sø‹?ë!Æ5Z˜º‡q¤}â×¼»€8ï[”xr:®·;ÇN€pŠ×ªÄ÷ooCgã³`>/XObject<>>>/Annots 923 0 R>>endobj +1579 0 obj<>stream +xWmoÛFþ®_1- +Ø"Šz£¨3 +Ôqìž‹«X*Ú¢>VäZdBr™]ÒŠ€þø>³KRŒª§ —»3;óÌ3/ü4“?cZLhP”|ÏÇ›îŸÇŸã…7¦Ùï(§ÙÔ›5‹ŒÖƒÞ2§ùÒ[öö–¾· é2ðBÈg6ÝŠûkì¡ôw{kì.'°à(Úà –`s<ÇS»²Š{kìN}=îöÖ¼»ôàwo÷¸Æî<`£ºÝO$&/~󽓞Ûè~<§·ŠÞf“¥7¥ „çŒ×|‚cne뭱̀Ñqw2¶ @²(_ïVò¸Ôs–³y¯·Ìi±0ǽÞ>ù åqó¬O!,w.Î¥7›Áèn¨ió ÿƒpA›Ø’ħMtYÓö@¿¥E¬ö†6Tê´¨ÈHý"µ¡Já…zIcI¦.K¥+zVÚ’šbâA¶È”ˆŸ^y¯6> '<ÙÄ—¨šL¢ê,¦\Åé󪪬ö C&ßz‘*žé9Í$_&âØžØej+2*…¹¬ØQ`GQ¤¥¨pZžU–©}Zì¬tsñxŠ8àb“-ééR=S¤jmäk2*—„5ËvŠéEdµ4Ø­£„„¡‹RTɱ´ÐÛ´ÒBìåZ–™ˆ€Ü>­’“{E ¼€!éT[À°LZɧWÿb‰ÑOK“!ˆh±úÓ9ýßV£úÁÂïŠr™o†Æþ¢qž´Óª.[„ašØfò¬|ƒ­ ˜CÓȪ $-u•JsVZ+UQj(ÍË,Ò*$@Š©‚ð[S.Î~q€~¤Ÿ³›£“1ÒþiÏýpÎqGµÑ£LE"‘oŨÑ|ÎÚÂY‘ú±ÃYw¶T—ŒÔW€d1©n~MÉ¢YDLDÀâȆærº«5¸*uZ^3ç +ÚK*¤ŒÏuÅpî5øAYjª è&‘ÑGÇsÎ s0•Ì AÊScRUØÜÌÅÇóá6°ÁÙ&"ð‰æ•›,VØf"§ n»ç´HÏÁyÅqU@3æªZ:4ŠßRÔ —ç"3Šäg¸qÞQïÿ Î „ åÍk¾˜µökj “h“X$Fw¢©v—tÔñ¥Ì%»dK{ÄEÄQ&kQ¡¢Q&_dÆG@n‡ŸE,ØsZñZ$DAJÇ8MusÖs)ë€lª‘*l$-Oñ+bì„ZΡÀ¸„o[:iÓQÝË,óè*7fŽšº@ 1»³gBÚ8Î(±úGEÙJäµW*_ð¿Þ% ‡$´ˆuy²ð©ŠîÛrÅ5F|mìã ´Óóºïø*ÌÍÐgëyUi‰e)râ)¡£}-ªà+Æ,˜š3š9ÎÔÛ…*ª”ÆìaIÐB× 6ARtÚ}’bB‹@iP™ì4(^¹‘èäÚÆ~¤‹³ +Ã\ÏÔ`[vÜÉU¥*Š~¡F_;È>ÈÏÑ“Æj ´å|+¹‹ðF;Ì4Cm­ìßoÓaŸš¤‡tSãÎŒ… Cþµ^öfCžÿþ6üüÜü®èû^¢ƒï¿.{ÿ0ó[9þ¿'»œ–á7D§“ëÿ¬þ}ÝI÷DQÊ®³2ÿ»þ}õM ïîWëNAÿrhxœù¾ÿMéÕêæ(|"½R{©W7Vþ˜Ó]^,½YÓ?6›Û‡Íý/ßÑãíû_ïoßÒêöñÝýz—kFnt6ýs<›ya8¡ ¼éÌŽîëëwo®i¥ÕP_^Q͵Ïvn–Žƒ…ç‡S.|Û†nQò䌯HaŠæÔZ»,˜-ðu„øbCÏ +§üêv3x?ø…!ºGendstream +endobj +1580 0 obj<>/XObject<<>>>>/Annots 926 0 R>>endobj +1581 0 obj<>stream +xW]oÛF|ׯX¢-ɲ$÷¥°ã¤;n¤ (ê>œÈ“t1ÉSx¤õ×wvïHS²S´!Ûâ‘û1;;»üÚÒ?CšŽèlBqÖD\i~}úµs6Dç4ŸGÊh<D³ð-¥y§ý§ã³ƒS¢óÁ0šÒx6Åÿ#| +M+vC³Itq|ýjÑ9}7¦á+¢Ñ`H“Ùyt>™Ñ"‘À´ˆ{ïs²E¢ *-ÅUQè¼L÷¤’„åzGIaýéÞV4WÙRÑÆºò„l®É®¨ÜáA›'¦46w”U®Ä iBeQéŸ_/¾t€G4‰ÆðÛ[l4©8¶U^Rå4î’§s—üo‰ã'Á˜zÄ3T™„Ý è¾g"áJamY»ÍžNßÅ!ãþ4šqIàò~4™’?­ñÃþð,ý`LKŽ(ÓÙÐ0í¨à¾GÛÂä%NU’™üÐû€שqeôRäul/ßÍ¢áõÏ.¢ ‡ÿqü«Âéµ`4m³”Ä•&MikÓÎñÿâ\é•Iµ|aø]µLL ¶0Úql­x—:תÜП’ÞOEôIÊB5àƒ­‘Û¨6ñ‹œ–Ò¾*´BótÿŠ–{JôJU©O¾/ü%(Ì™ÔäckbÆm¸ú1žåŒ8¾B­_ÒÄÅ£Áí*GÎÎÙØÈ͇‰œ3ÙÔNíQ´¹v”#›Cá*gòuͲûž-|™þS…{÷¯ôW…Í`æw“'vçèvAãhp:z 85h¶ˆ>nuNÝ[F*Žb¹Õf½Y¢ºk“.:•º7{ +÷Ò]ªPÆ®$¾,`‚€[›°LmÜ`éS=9rš«G³Æ=uCvï<—]E]xH!ý⸭ÐéN3ødrh€J‰IÍØ¡1B€\ÌŽL•ñ†™†2Öýá‰rÈar”ØæÌ¢% ¡Y.h9a5èŸ ½²pÇà‡æºï×"\Nyû-„TgâkYˬŒ¦µü[&?÷•£Úd†vÜgÂÚÜ‚¬À£N5H)(jÖœ]iÒ.YD‹qu{ø¥ÛÏ>+Q†µôlšÚD ú^Çðu‰vr«B@¼]œŽGžrN@luõeYêl+¨¡/ d¿]¢ma·º(¡¦jÚmL¼A®\ѧ˜ë‘Ñä)ˆ@ Ðîà›>Ê[h›A‘ÔÚŒÓw“ ¤\›0;®µ´9ô„Cu«<Ç€'ÆmSµ× £‡¯~fÕ½à¶:6+ÄëJ X~Ò䮄b鄇¤Ám­Mµ4z Vú’É¡¿k+2µSh/˜üB¹Ýýòœo!§7©‰Ðý¶ !F‚F‚P±¤± +ÖŽ·€¢Tv2ü*íDk<;µN4_¨R‘ç@|×°ï¡hïÏà;…\íèZ`QXVe‰fmà·‡pï0ý‘1=×)o MÐ"¬‚€ÝV[Qî…¦¨!9Ñ{/L¨°ð”õ©A”‰¿qoy¨çoMË÷«P"‡‚<1à0uß:¾ÿˆÛII»¹½Cë9² 6¢ƒŠv[“âÛlÒ=y"@®urÔ:pÈ 5™cæ¢1ºTªe­ +u-{jÕPgqé\…Me-ÞüÐm áÚá¾ÕŠJ¥Îrª%æ~f³Ú‡|^pîªxs”äãòÍì +àzrÔâ~{uñ±´ßž…N+°1N­LìØfZÄ.O:Ð»é ´¼“Èp¬ ìÁ\–pe›àZX/â!'üBßùe®% ý]Í aäå‡eFF¤É/¶‰…ŽòåL=páX8e:I]Én$Sˆcfó"Nu Gèñ^†½uXS;vÌŸ‹ºDz‰5BÌÆAöâ„—yWè¹la‰\ùËõŒì=C90ieÍÕ~â;“HÊšq–‘ß"s>”XI¿¦íü檑‰é„ &„aëÐø£„}•üŠÊ éÊ÷®i¬åš_XÂBw3ïº{¦,Àó«3ïž_rÊÝ:ØÏ<äªyV…ðˆÅw ,„¨Z¡3‹%J|ËŠÊÃ×C!èòk0A2ƒÅ¯PG®›1Š¥¹•ç]›¢5ÞÑ8v³P±Û¶ÇÉÑ[¬µ{¼µui§Ó´ÿ€Á”Óº°ÕVj{ún(0œàsvF“á0MÎy3š_Þ\]‚çö kðµV^BĬԧ_?ÒŸ.øþÿ½§ãhŠwSQÝÙ˜Ax»èüÖùuµðÂendstream +endobj +1582 0 obj<>/XObject<<>>>>/Annots 937 0 R>>endobj +1583 0 obj<>stream +xµXmO9þί¡;5•Ȳ›„$ qR*è5§8’–“’~0»Ùvw½·Þ¸_ÏØëĤ ëI-„c{æ™g^Íß{…øŽhСnŸâ|/ B|²ùuýû^Ô‚>õ;ÇøS'êf•ÑdÏ_c÷hDþ®·Î©‚®· 5Ôíö ¯7àï~*I‹½nŸW‘ÕõƒfÁ +½eNÃ.ÔÙƒ¼ç-sŠ"Ö¶Ýôר=ê<¹ê¯±klöîzkì£`èIîŽ!+:ffrê…apÔ¬”¿Æ.ìú»Þ»ÃþFߢXô‚G½[˜½íÒA2ÍžAØÜëtØv¯sC(¶2»vád6K+óÈÛƒÌf Gw;Nß{3Ý;|{ „4] žúCü‘˜0 +i·8f‚n@“UYªª&A™¨î$«üVV¤TViQËJ¿ž~¤œg%µ;Hj]’R­W’ꥨi)4‰*Õ² d…›wøXR"ïe¦Ê\5•8"YðDä·‘ÕÁ}sª2¡Z‘n°$Uz ‰Z™‰ARÛ„94/TEQ¾Ò>Ê€>j§õ&-pWÓÅ”FW7¬E«\®¦X]‹ÊjF{–ê: ñ‚r…H‡1©B²ÕžÎ† ˜(iµQ¤E Ú–e©B¤ªZT•qœ¥0Xµ¬»b•ç¢HžòÚ¢ŠoYzC†¬ ¼æ’ÐZÅ©¨¥¹ç![§õ’p5-t-² —퀦pÀBe™Z31`A>ˆ¼ÌŒ–j éø,V«,a½"®d,erb±…tì\Îáê!Þimì¢RÝ)j¤J©úW-ã +¨Û1íKđš÷ù +‘eq¦r‘§³‹ÑõÅxô™.'§³Eúð™&²‚ßOg› ¶È7ÝÏŒ×=Șy.~öݶSqeC—Îl ‹…¢Èåá þjN\À‘'4{wEï¤Õ°5"dD©Ôt5q€¡¡ƒ þ¹z“ô?þzÆ‚ÿåJW ~¤/³Œ™¸Ó'³ðaÚÃÐÑýäLÁNšÍñuuùûå|¾,Û׳‡©ã*-ëT'3{~÷ÞÁÅ%]?_ÓèÓhü~ôæý9½½¼¦é»ñ„®®ÇÓóëƒg¥s +#­Ofn×ÅÅw±:Ÿï¤Äo6­Læl넳æóý—#›?Ã+“UK­«,{äÚE4(Ô6³éePè·Ÿv%1±]§Ð(I¸&]È55™¤é>¦ày©êm}Ó}Þ<¢·,Ä*«š~¢ 4+B t‹ôåZóÁ´@]L Cóá[LW¶@ëü6ˆU±xª¤Å'¹{í;lAìs)Mdì™V(¥è¦¬ΗÜÑa¢©ªö¬ëo¾EIâ,¦›ônE)ØbÍÍj”cÍZ ?5ð0 +¶;}[…¹°ãR!c´nk·(í¦‹zž“2^Õ¨î]–²h :˜·8pwþZ¹‰$yZÀ¬JÔè¿lVÛë3Hµû4“w tÞJ˜šOª²ä Çé†}#n‡Ùùë&2âæx{ 1§5ÜÍ;ýAã#'Ïìo,7¬p4<œ¸áð”åΠÒLvb&/hÆ,”´<µ.ÐÚLÍÇ[ÊÇ +*¸Ÿ æfÙp îM¤°çv©g˜b»¢‰T˺708[[pÁÖ´gÇÏ!ùJóØu4›¿Ù +žá)+uW‰œ–J}%sVû)Íš˜G$ðñR?êZ懭ó\¶xªeš›±(w\ žH”ÐŽ}Œ+´@Ðh„&žïN¿!¶Q}Dõhâª]ìß,1an'0&~Q©ØIëùb,án±%Ó”L”ˆÞBÕ6},òí¸†rðÍTfòÑe²wžxŒ?òÈqŒ>ë?¸ßÇ\·ª¸ˆ6-Ù](ƒ“õóÜlp5áhMuY†J»;Ü7T£¬&Ý`J]-jFÆ6=­|ÆŸ.\RÔKa ϳ«¢ÞŸéRZF0<ïJîãˆ3 lë×Df¦9Z_p&?E*™«{nd¦EŒôÙþÑ8ÁÅ3ð<ÒÙvNß…ôŸÅ¡EvæûñÒIûºò“ÑA¬•îbÎ ß'¹p”™¸Ù¾¹°Æx%á±h^~ˆó´zT+D¢Lš\·ƒ¶Dº/;ïÕÞU¯p8—S|-¼ÁM[ŽúøÏÃÿ•4ma2úðf„¶©¾ ãÑ™ŠWÆi<ÛñͶ»Ð„x°4SÆw¿m{x†úC¼‘quxÄϧ{îý à !'endstream +endobj +1584 0 obj<>/XObject<<>>>>>>endobj +1585 0 obj<>stream x­VkOã8ýÞ_q·¤#VÛ&Mú©He Z`»i5Ò~7v©g;c;¤ýñ{í$¥Ãc‡-6ö½Çç>ê{¾·BèãO“cH²VßÇÇÑÈÂp:ÁÏþ)«ÖqÜ Î††¯Ðe<@LÍû}ˆ“}³f°YË”A®d´#a#Õ7ÿ×ø+zöá tìECéþÞ/Á’‹@¯­AzQèÝ:Ü$ŠçÆp¡™2@@° sa˜&ŒzÀ-ÜwK ÉýT&$­€Â¾?u@ÍgðÂîEŒu¡ÐŒA²HŸ2íæw ìî®{Ô½&˜Ž]皜ݕTpÁEq¿ 1@CúñÃ.P…ç«göG]°‘.EÅÝU’¿ã žÌ±rå–*J»Æ]Øpqp¿ÅªL¶Øq¹$ßè#ß0›3‡_3ÁbàšÑOø†›ÚÅï*²Í6e+Ý@]\Ÿ_Åç‹YÀL¼XÉ“y|:ûB‰að[çs'ëÐ^çSç²só¥y±˜¥ycíúô&ž_dz6¶’ËQšSlimˆ2íÊv9üÎXŽý–Èü¡“äàÕœ?ùž%×0݃9¥Ok`{yëÜ0fÉZB» ÿõutô ¤ýã…‡ãëíூj: îˆ t.e`6/zñ˜·€f÷³þa–â?½~¬NÓ[@Ó|Z®M²%qÌ]³ÞÈÏ•8|LÎ ëÆ0²HÖÐ~­ ˜,/šPê{DGÂFÕ±èÞÅâÿ­Yfß(W°Sœ£3Ia‚÷öë–5É×,÷\{¡ ÿ Yj0ª¼£wyÞå=|—÷è]ÞãŸóöª›íç¼÷àJšòNçv^p ø+£Œ6ÊS6ÿNï§|èlé'R¬{Ígø, noBÅL¡Þ²w$-p/ ç@25£(Ü@ƈÐNA @xn®—艬¾ÎkKv}Ë%8;€e‡•.½jºüÈùpc¯ ‚¢ ÐnZ=<½È žý¿¸ r£á*"+}ÜUv´0¥QIh™p;§H9æ7ܬ¼;œ!S>Äk†TH•‘4}cG«à8É3;º/qxØ­ˆ$í±ÿ¸ÄE8;¿8Å7˜¾_3Ï -)Õ‹™;maѰ( C…€ví 5ŠÃI!Á2\ŽPû¬H‘š.H‘n_u6&¶¶uX]'N(´ËÌ=ÍZ¹ÝsÇI[_ý  Ëj¢T¢4°%VÌE^¥ˆ Š¢ä1²´#ØE0 eÛ” ÷÷‚+–¡ ´ÑÕIRŽ+Ûf‰Æ¥ÊÄ&·éÅv*ÙnI<“¬öc82åâ¶m…&SÂ1f˜¸²„å·e³f6ÌTÞò'ò³J[•^GZk~+Pibóg˜fž[\•êÒ§’PX’”ˆÆ´ÀŠð$öV%£§•Ç(Χ”áý2Λùåñ;X~e‰™6AN)Ú¬öj‡Þ¤BüMÝ?œ ýÉxŠß´ŸX˜Ó¸õgë_ín†Qendstream -endobj -1567 0 obj<>/XObject<<>>>>/Annots 946 0 R>>endobj -1568 0 obj<>stream -x¥WÛrÛ6}÷Wì£à%³±B¡ˆKXÙC,h`Yþ“(7‚×ötÜxæ·C—5`m¼Et©¤p §³ád•Œ×4œÍ¼8ë˜$ô2B+ú•§íêm‘g$ÑF`L‹ûDÀ#˜³D7òhsØd¦’ÞYð"+]N¾ILìKP¬és¿¤=„ÝBvÒ( úGG½×ç ]jjö¨‰gìÍ1ÝÕ«/ªÝOUU²ÏŠõÌ£äà0JÇÒ -lU!›g`Ò€ç\¾Cák •¢pIKÉÆ´9z[º/©'ì¢oÿ^FÚ5[¿’¯ °7A¹°bÃöÞù¶+ŽÜÔ¾·¦—ÓB[²¸ ,€þLÓ+*e¶Z5e“Ðk‘í{LEE°§°¸‹ž"íaß A4É”ÃëóÇ¿q¬‘Ù>„Æ£ #œå°·áMp1þêEfi©â"=¢¯ìxTàôßêöêm(Õ^ËFe©-s!Nѱ'ú”p gat¿ñ8×¼Ô_ôV][¨ÍÝ3´ˆãiÓkÙÐÂÆԬ— m©­•=R¶—Ù77©Fl -™?¡”Yº{é\ëµ¼ëUоÏw?Ýì!d n„*8±…g²N㌠}6Ã??|I?$U€(:ÏÀ×ËýºWqò ­<*#ˆ!ö·ô©”65Óv0,@È™èöH(³ÛŸ©ÀøIW²Æ•Õª²¿Ðä Ëô¯ßˆË/'̈&JHßµÒ­ÀˆFŠ;¡«ÿ:6ƒ.8Ñx=ƒ¡Ér}g 8J)´3¶†c4ÁÈæ=3á>-)±Oa*Ìö¼“Ç_ö›F©ŸúdirYLLgÜ‹¡yÄÎp§Í²:½wZl/ò©ávggUw,÷»0 ±€ÀŽÊÀI§ñÇ&Å«-ÆIØ£¬0ÌÞñ“áìŠ^B¢6mü‚˜Ÿ ß(~†àDo?|Žt»¶®²×Ñ:L–“ðì%œ ¶ñÓ KÐ[LŒPá -Úa`Óºësu2/ðÝ·šâKmî¿„>=÷â9¾ÌWœA¯º7ïÆ Ãåé<õ­2[Î’åbå'ÂõˆOxžýsö9¼Úendstream -endobj -1569 0 obj<>/XObject<<>>>>>>endobj -1570 0 obj<>stream +)Õ‹™;maѰ( C…€ví 5ŠÃI!Á2\ŽPû¬H‘š.H‘n_u6&¶¶uX]'N(´ËÌ=ÍZ¹ÝsÇI[_ý  Ëj¢T¢4°%VÌE^¥ˆ Š¢ä1²´#ØE0 eÛ” ÷÷‚+–¡ ´ÑÕIRŽ+Ûf‰Æ¥ÊÄ&·éÅv*ÙnI<“¬öc82åâ¶m…&SÂ1f˜¸²„å·e³f6ÌTÞò'ò³J[•^GZk~+Pibóg˜fž[\•êÒ§’PX’”ˆÆ´ÀŠð$öV%£§•Ç(Χ”áý2Λùåñ;X~e‰™6AN)Ú¬öj‡Þ¤BüMÝ?œ ýÉxŠß´ŸŽ-ÌiÜú³õ/íP†Nendstream +endobj +1586 0 obj<>/XObject<<>>>>/Annots 942 0 R>>endobj +1587 0 obj<>stream +x¥WMsÛ6½ëWìQžF´¾%÷ÒÉw=m7a&=ø‘„„´£üú¾%š’íñL3iÒ `ï½}»ü>˜Ð&´šÒlIY9'c<éþùøv0[-“%-×ËdL%Íg“d~ôiÐÿ·ëVùµüÑrÉÏæëþâo-i;˜NÉš+]"ô"™‡_qÛb9Á³“m|Þ|Æ'=ðb¶˜&Ó‡^Lóû/^¤ƒó7sšL(Ý‚åzEiÞÞ|Li6¼ÜÒÁ4Hö{£±Û GeS8U’*S;KI¹Ü*-sÚšš¬)%Ö kô3:K¿âx Û?´å&ÉŒÞúÇ1êY+ù?þ•ˆ;Hê¦ôq2S–BçÇ{Ç4šÌp«4ÞîU¶§LhΨ±HÇ™á¡üád­EAUmvµ(ý]vRËZ8ŽL…²Né™m¸™ÑxjÖÉ2ña/h|¨Ñl^ág ¥{I—eU+ DRc ++ݽL§L3¶-vXLXÍyݨ¼Íäóûˉ!¿…ÔŽ3rðEéÜÜZzŸÒó<§+Ž&k<þ)ê<¡7@ '9v¥AM)œbR°@Xæh‹ÍÀˆîr¿•²ÊIÑ{çªßÏÏU¸WbMSg'íd¢¥;'aéVÿ‡œÄÌM֔ȾJJgE“ƒ”[åömÈx,ÃÇRøkµi8ITYÀ’ñ/ìA£‹C ¼lj%[!]ÓÕ&oü¦p³­®©+@Œ·¼cz6¹Ê"›“„¾°Ð‘AÜñÇdòúøž× + _!e¦Œeàk¢©XÃ,.{g^˜6{ØÍhºôÁ¯Zð*äj¨µ–(åL}„‰x¼ç¼´' +T],Î/Ö€ÉK#¯Õ H®DöMì¤õ—ÈBqVÉš׸ž.W¡XcU¶/»âºK/ào¦e†¢È yQ†šïnØÁòH"€_ËE­´u¢(¼Ä²Bq±xð’Ù8¡PÄÀ%¬÷>ÐZÇ4¡—ºXѯm<­€k^ê/z§®€-ÔÇæîZv£†6'-{ZxêšõÑ&äB[jjå”íeö­€”›BæO(e…¾Ä^¶®õˆZÞTоÏwïnö2P7BœX€ÂG‰ãX¯qƃF>›ÑŸ¾¤’*@gèëå~Ý«8ù„V•Äû[úTÊši»5,@È™è÷H(³Û1µiIW²Æ•Õªr¿Ðä Ëô¯ßˆË/'̈&JH¿m¥[%ŒG¡«ÿ:6ƒ>8Ñx=ƒ¡©äú,Î@Oü áëäNöa(8s·¶®²×ÓE˜,§á;ØK83¬õÓ`› w˜1 ¶†+h‡Mè®Ï|"ëád‰O¾õ i ÿÉóéù»Ïñ`¾â zÕ¸yç(n­ÆHç©o•ùjž¬–k?®W|ÂëtðÏà?¬¼‰endstream +endobj +1588 0 obj<>/XObject<<>>>>>>endobj +1589 0 obj<>stream x…W]oÛ6}÷¯¸ÈS Äògc§À0¤i³kÖlqÑõh‰¶™P¢BRvŒaÿ}ç’Rb«–¦ˆmñ~{îáõSg@}üÐdH£sJóN?éãÕ$™Òx:Áë!þ[IËÎûY§wݧ š-aq>Å‹Œpºß§Yzú÷›ÙC§OÝA–³ì”øgÙ2Mµ’…G¿HO~-I”¥5¥UÂKªJmDF™²2õÆîè˜öeŠ`ken`æ¤ÝH{ìì1]¾hb~þ9lflh©´tÇ,G‡ÙÞ8WIG¢ Ë,»³ªðÒ~.æ§ó7t{ßýãîªåçŸúýpœ3 ã#.=~|ÞóFÞH}%´Þµ<3©• ×ô8>Ô»Ó`»Ò†°_ @@ -3340,20 +3403,21 @@ X' ×HY8€’ÏQ è$ × šš™f' }ã‹#\€cRUÉè!ëv—fˆ¿]¤ÀdN£NC* 3ÜÍ“Æ[W‚çËØ¦Ü:+µÜp‡›cóÓíZ¥ëcQé,Ü0­Ô‘R}å4>‰A/¡ؼ„•ïØ`oíë9æ5‰èûJ›…Ð5n÷wR<>„‚ ºà4Z'ÂrYèJlAÇWLèò‰,Ù»Xac VôTÉ -cq¬Žnš8®K›zè­Ü`cô`GSÿ2Ëÿ³2Õø‰zXÄz!•ž.³žã[&"¶¯RaUä&/ÖfËÝ´T(¬y`DXkÄÂTþЦXo)˜P¯ SoJTS'MX>"òž˜Ï´ÞøÆÑŸŽðµ¢^%ï/oß_òZó€­‘>˜´âë/Ü6lÙm º“>9="àãÉ8™œO!ßx~1`³³Îï‘!åendstream -endobj -1571 0 obj<>/XObject<<>>>>>>endobj -1572 0 obj<>stream -x¥WmOÜFþί˜’Ð)ç{ ´ %QS© --WUðam¯Ï ¶×쮹œªþ÷>³k‡mÔr/Ø·;óÌË33ë»1ðÓ|BÓJÊQ4¢ÙhMhv8Çõ#)Ûy»Ø~Ñ-2Hâ"%ìh‘ìSûw×ÈFi›RR¢ËRT)Ñ€¬Æ‘ Ú¨ÊICÚ„Kòû_-n {FãqP>˜@ùþûÏ¢¬ y–7ЃÉ,šñz‡é•nÐNhØX3ŒU5,jC¼Ï÷jÚ³¬fDƒñ(:Ü–.ê»,Ñ#é;Fø7iS>ˆ?’ÆB'}ó ¶÷¾}V«Âû“o®ÿ· -d Dò‹@_ˆ2dsÝ)Yépau%âBR*3ÑÎR†œ¹\ÂÔTÖ²JUµ$]ÑZ7†ìÚ:Y’[×ò5Å#…·­¾s”B™{½•‹è#ÿJ•övp*¦ ÙTL(s¹p¬‘rq/Éir+)n[X6 Ð‰(oÀ;¥+Ñ"ßÄÎv.ˆb%Ö6(Éš¢Xw±kñl-•)™R-\^‰RÚ×$,ã-Ó˜J±f3[3<‚12qt~¶ø‘îEÑHµJ'¿çÒGçÝè˜=±ÅE,[ö§¯9<+UÀ¹•ØŠØÕÚ³†gõštæãÇá@°k¬=X­ªžC¼ñ²­-{ ŽND\}Àj3ËH£tªÄ`…‚ ä†ãØÖ‹®Y$=-2ï³Â;{ðÞjh7²Ô÷P(2®qoXò=}Ì67” UøH‡`•j™;Ê -dæ npWHKŠý]6@м;=ð¯q.$e–ú˜n—<2“J˜[ª -ÂÉ]N\Õ”±4» …UKŽ‘Ó=XÏûÐyX ^{a[k]HÓçwï´@?@?Ý-Eb´Ý…(¿DÍ¥k±ÍŒ‘u!À®”ËIԵрN¶Ü£“ Ö®½2vÌg°gãžeÍyÙVÇN2ç™g|ímöAÆ„`%èià˜ó.´ÐÖÕÃf™–‘\{7Ï)xñU®’œ;*°3£ÑT ˆ–Ö *à ?Ñ#€Ñ`:õ‡f2‹&½“q³\rwjáñ_£“•~<3sî>Ÿxô .Ö”e¸Ú r×ÂjbÈtˆ'CÀ¸­Þí³es‰Ê¶‰QuW;¨`m|{Af‰AYa_f´6çh“ÆÑYÅ‘dŒ!°í–ËÇ À&K¡¦âÿ08]Y-Zo@Ýžš“qäg2OÄßøéºÙØ9µ5X_ÐJ†îf°Ý“¿0ó9ŸÆW=hkžÝŒo•Ò ¦Ó![…Oä­zBÀƒ™&ôËîÐÁe =ž4Ô²b)Ÿ:¼èjÄoïtø|²½Ù®BE[ƒï ›6NlÎ /ÇôrB“ÓÓo¿tè1+} Ý8 ¹¡@=M0 |§e*´î?00ybù.ºiÖAΟ0¨’2õF“æ³DÖ‚þ -R¢Ý2³¥ì|hG${dÁzׂ†þîC„ž÷ì¹,ŸÓŸ³É_´G2É5åªMb®:”–*aç”wÚ2N -êÓpè§|®­«YOD¤©74C‹$UŸàDǯʼn°®»¼yCU)ìí ®¢î3ê©;G‡_!ÇÔ[x§K¡ª“˳‹ÅÙ¯‹kútqrù[¥>_Ó…4˜R'—¡Oâ|ͯ{Âp昮®NC+!Ÿð/œG7sœB.în ŸBr5ÏßLgtµÏ‡ñÛxh¯^ád6 /Ÿ¹ÛŸCõ‰ë-ŽG³#.^šúïö«ÃêmÞØŸˆ*‘±poË{_Ra½`7x -zctïfö¾BçOŠV­LŸÓñ”‡ùYµ'ÝÃö‘b|€G™Ã)žZÚG‡‹³ŸßžÑ¹Ñ7|ª{§߆Ÿ{rÐ æ#~ÎÙÿºá2›Ï¢ùÁ!¦DŽ&¬éýbç—¿Nj#3endstream -endobj -1573 0 obj<>/XObject<<>>>>>>endobj -1574 0 obj<>stream +cq¬Žnš8®K›zè­Ü`cô`GSÿ2Ëÿ³2Õø‰zXÄz!•ž.³žã[&"¶¯RaUä&/ÖfËÝ´T(¬y`DXkÄÂTþЦXo)˜P¯ SoJTS'MX>"òž˜Ï´ÞøÆÑŸŽðµ¢^%ï/oß_òZó€­‘>˜´âë/Ü6lÙm º“>9="àãÉ8™œO!ßx>²ÙÇYç÷οÌ!ëendstream +endobj +1590 0 obj<>/XObject<<>>>>>>endobj +1591 0 obj<>stream +x¥WmOÜFþί˜’Ð)ç{ GhA""QS© +-WUðam¯Ï ¶×쮹œªþ÷>³k‡mÔr/Ø·;oÏ<3³¾ÛÓ¯1Í'4= ¤ÜE#šFÑ„f‡s\Oð1’²w‹á‡½¥E‰ƒC\¤„Ý£-’}jÿîÙH#mSJJtYŠ*%uÂ8TU9iH›pI~ÿ«Å tÏh<Ê“(ßÿY”u!ÂòÆô`2‹f¼ÞÙôJ7ÖŽiØX3ŒU5,jC¼Ï÷jÚ³¬fDƒñ(:Ü–.ê»,Ñ#é;¶ðoÒ¦|$…NúæÛ>úZ4ö¬V… þ'Á¼uºþß*€ä@_ˆ2dsÝ)Yépau%âBR*3ÑÎR†œ¹\ÂÕTÖ²JUµ$]ÑZ7†ìÚ:Y’[×ò5Å#…·­¾s”B™{½•‹è#ÿJ•ö~p*¦ ÙTL(s¹p¬‘rq/Éir+)n[³ì@¡Qo˜wJW6¢E¾ÁÎv!ˆb%Ö6(Éš¢Xwصöl-•)™R-\^‰RÚ×$,Û![¦1•bÍn¶nx ÆÈÄÑùéâGºE#mÔ*6þžKçÝè˜#Øâ"–-ûÓ× ÏJìÜJlvµ6¬Y½&yü€­Ø°ÆÚƒ×ªêÄ/ÛÚ²×ð at"âꃭ6³ì4J§ + 0VHQÝ 7Œc[/ºfiô´È¼Ï +›ØøÙ3fv#K}…"ã÷þ€%ßÓÇlsC™P…G:€Uªeî(Sp´™ƒ¸Á]!-)ŽtÙ€ùpzÆ¿&¸”Yê1Ý.yd&•p·TD»œ¸ª)civA +«–Œ‘Ó=³ž÷¡ó°@¼ö¶ֺ¦Ï w句~ ~º[ŠÄh» )P~‰šK× b›#ëB$0»R.'Q×FÔp²å­˜lðví•q`>ƒ=÷,k¶È˶:’9Ï<ãkï³=8ÀJÐÒÀ˜ó.´ÐÖÕ³Í2-#¹önžSðñU®’œ;*lgF£©@' ,­AT63üð–Æ<ˆÓq¨?4“Y4‰èLÆÍrÉÝ©5ÿ¬ôàñ˜™s÷ù„Ä£_p±¦,ûÀÕN»VÃC¦žlÎmõnŸ-›KT¶MŒª»ÚAkãaì$̃²Â¾f´6çh“ÆÑ)YÅ‘dŒ!ðí–ËÇ À'K¡¦âÿ08]Y-Zo°º=5'ãÈÏdžˆ/¾ñÓu³± jk°¾ • ÝÍ6`»'9~aæs>¯zÐÖÆ‰Ž_3Ša]w;yó†ªRØÛc\EÝgÔSwŽ¿GÔ[8Ó¥PÕñåéÅâô×Å5}º8¾ü­RŸ¯éBL©ãËÐ'q>Žæ×=asDWW'¡•OøÁ£›9N!w·…O!¹Œço¦3ºÚçÃøm<´W¯p2ЗÏÜíÏYõ‰ë-ŽG³·\¼4õßíWg«·yã"ªDĽ-ï}I…õ‚Ãà)è¡{§p³'ð:êT´jeúœŽ§"ÜŸU{Ò=l)Æx”9œâ©¥}t¸8ýùÝ)}çº3ø6,øÜÃ&À`>âçœý¯.³ù,šb*AäÐ#ö~±óËÎßN¥#9endstream +endobj +1592 0 obj<>/XObject<<>>>>>>endobj +1593 0 obj<>stream xWkoÛFüî_±ßèõ´äŠ­› ê6*ŠŠy”Î&yÌiYE~|g÷Hêa»MÛ$ÅÛÛ›™]}=ÓÿÇ´˜ÐtNIq6ŠG4ŸÎã9Í®¸žàÇiÊäƒÙåe|õÒÓQ<9}þay6¼™ÑxLË {̯´L ñG#Z&ç˦(±©¦QD¦LM¢jí©Þ¨¿4ÝÛm•Çæ…}ÔiL¼ ±E¡ËšV;yÇ«$7üÀxR´25ÆçZ¥¦\“-ñ’ññ›åýÙˆã)r\¦çÙ†U’]yíµ⸪LÉ6uÕÔÄ—È¡”‹ÜÚj“ÖEÅ?qå vÍLŽõ–¼Ö´íwÚ7y|œ~më¯IòÖ‡=Éd’Fåì*×W³5õ†v¶q$[q=~çk]ÄôkV#µJÛ »oJh×µ«¹q'Eu %R¢ª·Eh퀗7¶ôŒÖ£rÆ6>ìH_Ýè€Þðæ-gáÓqŒËôxÎâiLráZ;O©¥O’ÔœÁ!&@ãôN½®\é#.cíTÁˆ&[’kçDf^7(¯#ì iJ‚í°tA³bü~2lg’Œgœ -<Tß\¯d~‚¡Ô!ãjd‘ÌÀ2 ¾žùï»Ìy–(ah~c›>/XObject<<>>>>>>endobj -1576 0 obj<>stream +1594 0 obj<>/XObject<<>>>>>>endobj +1595 0 obj<>stream x…W]OÛJ}çWŒÔ¨L!|¼ÑR¤^µ” T½•Е6öo±½fwM‰ÏÌÚĵh/Ð*qvçãÌ™3“Ç­Mñ;££}:XPZmM“)^&sšáõ>þ9MùÖ»Û­½‹šÍé6Ç•Å1^d„ãÓ)ݦ;³ƒdž&ô—]’×u˜Pmɶ¡iÃÛÛ¸:§Ù,^ÝÝ?ÂÕÛÂxÂ_(4UÖÊ]ëƒSÁÔ÷Ô(ÈæÔ8S󃄾ۖ*µ¦B=iñ Øå„ž´3¹Ñž¨Ð?¦•ò”[·R.ÓÙ„ƒ˜Ò.ÂÜgç^jR´rªi´#ål[³M©­*ů-û‰ÏrSê -[1<ØøK‚ˆÜVrUÂÕ.é¼í/€#¼]çHZèôÍVê9´°óKÄ×Î>}úΘÜë 0à,GäÌ}"ôØêV'ô1§5Q°ÑzFLÑ»›s²n”è§«k†“a$ßX[j7‘›©ª)誱N9S®ÉÛlr`‹€ðz©©'>ïƒ)KZrìËÊ„\{LÖ´Âg#çµ |:¢’%ôÕëS>²w1¥“ž óˆQÙ¤´{ÕA(ñijCæ,ÎK»ê"@Ö15JR³B×DÓvÙŽ€+ÿdôJ¬¼T^¸LK '}s 5ðôÜ=ÇQ¦k‡+‡?rÍÎV¶-3Ò?Æ”‘I_eµ,¡D’mtÉ‘q±9ﯗÿ¡mŽg›Ú`ÀÔ5Gé 2à„FŽ;UZÎø?Д(ÍhïI¹=é§½²ÉözÒ½‰]F™qÈÀºõ‹Š `½ãirÌL&ü”žÿýçM¤×T~å:?§,?›NgÕº€Žò™_åVš†Kä Aw$?€½#"tз $!°,£:`¾\ã-(&'#kèWžÐCSƒ^e‰Ê«>ÎNm·c‡!T½È¶¤aR[C¼£fK"¨˜ê½B˜ÅM¤êÑ{‡´ôËpíÌ¢ŽÈ Z s¹¾ëÿ4¾p_0e¾ô$ÞОÉä†Gžze[KG/¹×*¿A»Çlk“êr=nì[PU¦O[㬫+´¼ƒž©{í™41ÜSZªºFaâsTbYªú¡{Û;L©±ŸÁ|è‡ÉÐP?ŒX3GtàÜ%ƒT5d›`e¯Tˆ£{‚xQ¼ÜÜcŠe£rƒ5<£?¨C‹ Û 6lO"Å`ˆ=žú‚îv˜}N{O…V;sÃôïÞvÞc÷G6|¿”/·eiWRQèŠwÔymżµ;¥$I8¤ßôÒ0!é“F“%.ÎÉ×qG²8¬Ž9 Ƥ…ˆò¦Ã:ŽãÐ(¹{ &Ä f*™ ÌYÕ‹`RV¯!8ãÚöè¶*#3žu5Ž£—Úov˜~c’u­õQ ~l!p¾Û=×°2,VÞæ›šŽq·©ÎÀ/êRò¦¶„8÷'¤*[D¬÷uËœªsŽŸMêì ð ©×!¡ ¸Ö?UÕðN‰­g¿™úäpä—{¦D~ýa(]qEµóÏÝ ºT•~¾Û¹–Íñ}iÒ‡»·WS¨­Ñ8†¬¼dõ|–=1ÿ²çß]x bÙ•²ia-Æ.àSô>¸r÷\EÉÈàÇy+¡~ÍW¼¦¯ÑμPs[òp¶Âà=”aŠç#â´áò0ä9&ºþ=gK 4ïêƒ%ÑÅÕ‹W€”.¸ÚT“#ƒ·e0¨›Á¦5rž*Þ.À:¸ÂFakUŠðn¨×‰Éq÷åf¶Àw¦ãZ-‿9ûüîŒü&̹MÛ -@«Úš}íöv¦Xˆ³ÿû5?š'G‹c|ÿÂÙ“9›øp»õ÷Öy!‚Hendstream +@«Úš}íöv¦Xˆ³ÿû5?š'G‹c|ÿÂÙ“›øp»õ÷Öy‚Eendstream endobj -1577 0 obj<>/XObject<<>>>>>>endobj -1578 0 obj<>stream +1596 0 obj<>/XObject<<>>>>>>endobj +1597 0 obj<>stream x…TÑn›@|÷W¬*UI¥˜‚M0~t”FêC«´¡}<`m“Àå–¤ôë;wà¸r“V¶%ÃÞÍÌÎìÝYD!>­´L¨hfaR’®ƒ˜ât…ÿ ü:¦íXã y©p&/âå%N ®²Ùû›5E1e[°'I¤”•î0¤¬8–A¬úªžèÖX¹+ºªj»J —ï²{ì)ŠÆýóÅ »Ï³}e _…u&¯¹!Ù+qozÛ«º¨P½å’ò¸’=wXÀ#(ÙÖ˜ºÒ;²ƒlm{÷Xé­é%•Ñ0·ÁŠê„ÌÖÉi­ Gĺ7ùHݨ¶GOXéÿÆ-òb… m«š/Èt4˜¾›úìÈVM Ù¥Š6B¶o[ÓÉ ñÑ €¾›ž5fô)†X+8Ag›^Œë¢ ß]³páº:#tö'k0Ú{Œg¾Œ0 èЧ’´)•.@pëò€K¯òÙFæktBÖ4Îs tE²„u©ôÖYîÅT®¦Gߟ–÷ì*LÓ(]¾!ÓºNì@e$±{®k²~tl@ׯª(L糧 XÙÁÑ·Êz.É·ß&t碛(tz &|B;òŒ ¼.‰Y£ÅçÁaÌ&éTzû}A†–1MdzÁБ“_‰Eö¿Ø?Xöo¼Ž¿zm1êЦ`´—ÈÝâ[ãP±ª! ïwpøµì>n½8•›G“T­E‚úLζnkpÈÙeö]m0‘æëvÑ7¬Å£™6ÌWáúy˜ÿyÅÄ+ÜAIŠ -³¿¾t(²Ù—Ùo6Óž±endstream +³¿^8”ÙìËì76µž®endstream endobj -1579 0 obj<>/XObject<<>>>>>>endobj -1580 0 obj<>stream +1598 0 obj<>/XObject<<>>>>>>endobj +1599 0 obj<>stream x¥WMoÛF½ûW zrP[±dErzK‚0Ð8n­ =ä²"—âÖä.Ã%Ũ¿¾ïí’M-ÚÂ6l“»óñæÍ›Ñ׳¹\ák.ë…\¯$)Ï®fWòjþj¶”åÍ/ðSkÉ‹ÅÕb¶š¾x»9{ùþµ,®d“ÁÖj}#›T`ç O’ów¹ª]Ë|9“OÖdF§ò‹Û9ëe«›Nk+ŸM]çånóbóÇÙ•\.–0q®l*Ÿîn—Ö»ã©-òýÍ×Ñßåõr¶àq8˜ÏäÍÖ7µJšxl)óyl±Fè8vk½«Ucœ—EôôÁ$µó.kFáH“×®Ý墤íC/ºäŠÑ#ôy˜T×HJɹ+ã¦ø¡Ïd~ƒ3¸£ƒÛi«]ëq±¬Ú†yi»7µ³¥¶—ÌÕ0T8Õ2jXé0Z1.H܉ßÑ–rº ®sbÄúOL‚‘rÈ•-×%R‰kTœqøßÝ>üȈyrâÅ]ú½tSl¼«NdÒÈÛ*g0,óä%G²=]Ü59ùËX 1I@x>{Ї úŽ})Èï±ã ñÃJ¿A"ˆtºV0ÚÙLÞêD!¸#esDV¶¸G?K -ÈsÑï0´öº/ç{£Bìwa[ˆa‡e|’0¶.®Æ,+#x'…ÙÖª>|yÿ;†#dXþˆÏœh1ÊG٬ٵ…ŽX_aÂÚ¦ï͛ӧ§å«?Öý»Osà=i zߤÌf¹^ÎÖ«›8‘^¯øèçÍÙ¯g–ËÍ endstream +ÈsÑï0´öº/ç{£Bìwa[ˆa‡e|’0¶.®Æ,+#x'…ÙÖª>|yÿ;†#dXþˆÏœh1ÊG٬ٵ…ŽX_aÂÚ¦ï͛ӧ§å«?Öý»Osà=i zߤÌf¹^ÎÖ«›8‘^_óÑÏ›³_Ïþ–­Í endstream endobj -1581 0 obj<>/XObject<<>>>>>>endobj -1582 0 obj<>stream +1600 0 obj<>/XObject<<>>>>>>endobj +1601 0 obj<>stream x…WÁrÓH½ç+º8…ªÄ±㘣!K-‡„,q ¹´¤±4Dš13’µÞ¯ß×3’ì(ÙÚÈšéî×ï½nÿ>™Ñ¿ft}IW J«“édJ®fø9_^ãç%þ8E›ðÁÕr:¹|ëƒËŇÉü­–Ë×>­O.¾Ìi6£õÁËkZg„ÀÓ)­ÓÓG¯œ'k¨.=Þ}ýI§…6ŠR 5^ÑÝZþrÄ&£ÜÙfK†+剽ÜSk›2 o¾3\ëz/ oMÞ¯Lé|v…ôÖÙéZNÈõia[C]â&oq×ñ:øHe”ì%vf+Ö!IÖ‘Ú)C¥Íñ¬–s£Ô%KטQXŽ)ý<ÿ¡Mf[òÊ{ÊQGèÓ½\å˜.*÷d“¶'×)ª ¨!eÜ—àiO‰Ò&ÂÿBAoâVó³ yo¬«FyÞ|»]}½{zöðZ„ßF¥¨€Ý^*Ð5qYÚÖÙ˜LÕÊUÒ̉S™v*‰[âQÜäÔšÚÙ²D·¤eS£¤ ¶ìj6%;€oŸÁAº-tZPí/ov· X8µQN™Tec\WY¦%ä½?ÒÞ:»Ó™P iÐZƒlp§Ó®˜ H+ºþß—MžsR*Z½84ªñÖf°íéô~uûôžüIWB¢.î8æN3 @@ -3398,326 +3462,366 @@ yo šò–]êz–—;„Æ" ŽWd7Ȥ…³Fÿ#ìÙ²÷­u™°©n˜³„F4p”>½#RñµEoÆ«žâDLJÛAøtÚIýU³ŸÞ‡þ\|ùH3Ð^¼âÎ0›O®&3ÔÆ.W5=B9RⱯœ_НœI¡/ >5$›3ª m”êñ¨àJ1¤þÖ¾–²qÂ"œžAfãØƒViÝ ÆÐéŽjðÄ­ö  ºØ =q1øìë. È+ÜÓMžµ0ÉH7`q£E=ÛÒîÃuãhÇ—·º.,¢ )IˆWÕâWŒ°Ð ר4Mmcj”q\U'æÜ)®a0^W ÒFG†Œ‚r%+\%‹r Å™ð'f*Ñ_×p Žè—ùJ‘Æ èšw*¶¥å½+"ß*ôk `D¹‰ /Xi É:Ž:t~sŠÁƒT$ö}è~&¬DDá“H^Ž2‚Ël² -m„€C–nuꬷ›ºãZ¤1Z‹¬‚àEéQ¾#Xû@^qg–¢rJAö"Õ!íÈByIz Ø%3$3ŸÐŸ3½$~Hn|$›É¢2m7G:S‚…Âu.c1saµLi©ïE¤3cV×è2¡t`òp!†úÐMþS ¦Tö2…SÊXU(µµ” j|ÐÍN•ަϰ€–a݈%sÁ©ß ÈzÂΜBk‘Ôð‰˜T®Œ)„™.Þ=<„ÎÂKG=‰EÊÈÄ&eÌᘗ8˜2/zúÏhàP+[øžgBQ”ªp¬¯˜¡{ʧN'xÔÆ”d]‚ÆŸ‡†¾ásñÀë¾7(û^ÌÄ¢>#³·:,ýý¹.•ð4Ú¨–öŠ?#µ†/øa"nF+'²Ãî³cVŽ®¦58J•ªÙÙP\¦R›©þ¥ˆìE¨X—"‡ÿ'oLÄÛ‡ï÷Ÿ‡™ØYÓ‹QéweQA'¶QL§ÊÐa»•VCA‡`éòbó݆)RKË&¹ˆeņóЮ3é vŽÃ\1ŠØÙÂÖÚ÷@¥¸q^àn0T¨ÔeúÀZHÊÊ:„)®Á°p È ø{§+ÙªnâÒùy؇F¡±CÜ^›Æ„ŠÃ„¡B³Îd%+ÄK¬¶{­Ê tcJl†MrC¡sÑUeîMTŽ&¼mÜÖbÒŽ©Þû ðñ}ë)ô;5(Å)ÓTAlý00£žÂÿ‰mU”@¨£j9‘!'«/Ö³ö¯DºñÆ }œîE&Ç… ä‡f†o¥r«í(hZ°ÉÃxq‡•gBŸö7YtžàöB!§ C[‚1ÉÅÁCâ7ŒÞ¾¶³Á *ÞŽ=/xÓúxb÷Çð5e„;ºûð=çâ˲³ÜÙ_é–W´˜MÅV·ŸVâ¿d~ÞØ-š *‘ªÏû×ϯ§åýÿXºæ×óÉõb‰õ ï|¼–£¬Oþ:ù9ǃendstream -endobj -1583 0 obj<>/XObject<<>>>>>>endobj -1584 0 obj<>stream -x•XMoÛF½ûW r‰ Ø´d+²“›7@ÐÚu+í­X‘Kkã%—Ù]ZU}ßÌ’2E9HŠÀ€MrçãÍ›7³ùz4¥ þMéòœ.æ”WG“lBóÉ<›Óì꿟ãÇk*åÅtþ&›_¼_}|KÓ-KØš_á—‚`g2¡e~BS5VWpà\¥º=Sàôb -šC©ýEFwcWeZ *ùúµ^"£¾>!çén±8!ÃY–ZÅq¢‘Ÿ4^N˜Võ–>ß}ú‹\Ãr‘Ã6D]…Œ>ERÖ‚#äÓ8^:_IN @ºv!ÖUD-Ît*—f︷Òh—àìhYzWQaŸGtcŸ®õà|F‘ -Ê2SBæÊºZ§46Î?â¶½õ.©=÷â´7ˆÐ•T¢iFnKcñ. ï L2…¬Ë•%y#HetMµŽì(À1Ò&r»uù¾ÑØ7ã1p–¨‰jÊ]Z ³t÷iA…Šj˜ õØKÏÝÜ-¤óPþ¨/ÓÈã ¢ÂRô÷ùÅÞ9tF¥0á]‚úÍ`ÃéÔ(~—D¸Ç$}ݳ` ]"™Ü9ÏÕÜË÷J?`yîåa|ŒwLpÐAˆ\k]°²â¡ VcMÇ éÈÑ­|‡•„óña@âGOÚc†%+ -zÕ™z•ÂNßý¸bã¥Ðëä–7åÆb,¾H0‰)3D°_[DQvzž$å;+í,£{Û><¨ìºeó±ß!n¥í¾u—ùÞ1Lu‹Eý±v èþú¶Ûy»•i V!òý†—µïyŒPâœ7ÿ¦ 'ê|];ë €¼^à~¤ØI¯&íÓ.ù"—åöy»¬4€bˆläz·úö«á Rs:ðn­ž8¸Â}ÐU T& ø9G”`«àƒš•-ôîÀåNÎj”GaZ«<5k^j£=HpÙAY¬†Æ®,›·«¡O ‘ÛŒòäåÕ!j† ³j·gw”V_‘zŒÑzZgÃÝö²SœnwîÄ#߀ n¹ôB§[Ý;_uÃf:Çuþê‚æo.Ówq}ûþšî½û‚Ûݸ7ÎîFÇ>Nû§—“·»ËÜ_äg—³ìr~…ÿÀEðí›üyyôûÑ>Ai÷endstream -endobj -1585 0 obj<>/XObject<<>>>>/Annots 949 0 R>>endobj -1586 0 obj<>stream -xWßS7~ç¯Ø·’™p`ÞJ Ié4 ÎЇÌtä;ÙÜIŽt‡ñßoW:ûÉ´ÃÄŸ´?¾ýöÛ½ï{#:ÂÏˆÎÆt<¡²Ù;*Žèôx„Ï“ó3|ŽñÏkšËƒãÓãâüGÆ£I1þÁ/ŽÒÇ—{£ñiqA£É Œ64>>/F鯚îÄÃÙékÏï¦{‡ïOh4¢éÁNÎÏhZ‰á#š–û÷ÆÎŒ­¨ :P»Ô¤:|ÚÖ”ª5ÎR£¬Zèß±• -aí|5üþöò#Ûj?W¥¦ÖÉ ¯Zýfú°wD£c¤7­ØWåÖ>MÙ|Б¢¯Ÿnþ¦° ­n -š.M U×|ðÕ¯Ý÷ØMºØ¨ri,Gx³Üå ]‘Z(c2¡Ð™VÍjM·Þ4ÊoèÚ5xFWζÞÕµö‰:EZ*‹ ‚£r©ìY.µñ[4°­²d—ê‰!™þŠzÔ¤çs]¶Tÿê aýçQ$«ãIq -Ö0éìÜ,:œfZy÷d*cü=‡OsS£œ ŒGgI²±Ã÷`¬aÿP·åáJ5EuŸô4Ù§¹ó¤,¹¹Ø@¹žL)Qm–©×ß;ä“1§ {ðÀdߣ¾wE2ª4'À‡V«ºçœ R•SW™ÓÚÌ<×­vî1P·JPògŠT´l˜ë¥j©qUÇÀT%'œä7à ³¾\êòQ÷|5óŽˆ A;ê7¨0¨PI)Y½ÎsO0 -¼}ç=i¤¡UؼeÚ#jµ®$ÌW„®’W9Æ@ÅÊmkŠrþ³Ž=]îÊàû¥[°HdìaÐeçM»yÅ n²]y†dc2¼®õ“‚plÉ£À’nUAijtyÑ“QÔ'@wZZ˜ö•+;Ö¡¨KLÐÆù¼ßQpeêPĤ –è–½ˆ²4Ðè¤8)N úŠ ¤À¼{n®éšEï%j¸)³[BJÂd‰ÓTÛ¨Ø)K -áTPQ-2·Éf¤ëVð)ÀX; †‡$Qâ€ç -B¤°âYÄ>ÔëC©rý)cs¿}®¡Æc‹Ín³ŸÃÃýËÁÆñy\ý¼™¨Ü1sã!z­iô[f… ™ÓMø´ÕÏm,-’™{׈ )­ &’ZAø¡É(:‹'¤‡} bécü ˆ£çÌgðÚ@xd`50ÅLÅßCyÚ[Þ%¸eþõ QÅîã¶ICkŠ„€GW·! ø°#žXÌK»ˆ`°Xæ8tSmÙ„j¨™Â@^꺒ÇÔV3ê¿þIÛh0%SÙaʲïf(ûcΦh­6ÿ!"“‚¾HRt%È‚Á®ZI6.a¹”V+ñ.±ÐV󆧵 - ”[f‘å^äáÖ­ÐcS«Ž×+!G‹ìá‚Q‘ý!Âtµ—Rnu‡2†JЪ_Bî ²‡³…Ÿ(Ø“„Z²f`m«dKÊX”–ìLˆô+7àN-(ÙDÅöºí¼…;øt{}%}xâW=Uí@‹µi—8•…“9–…lh–Áá( ùevg,Äš‡Hô9 øËŠæ>Q6êâ6‰Ì©¤Ä>/XObject<<>>>>/Annots 952 0 R>>endobj -1588 0 obj<>stream -x…XMsÛ6½ûWlOVf$Z¢dIž:N›4?šª“‹/ ЍI@H«ú÷} Å$íd}Àî¾}ûv¡¯3šâߌV1Í—”VÓhJ‹x­i±^á}Œ?+)çXzüïóï«›hFñõ"ZPE³é<ºi?•ôçEÿ3ž.®£Uÿiï3ž.—°Nò{{ŸñôfÍ{OÙÃÙuÅCßo.®>ÞÀmrµ\ãMæ]žÒ&ÍÑu4‹èN×ÖdMZ+£ßmþÆžÍfaÏ$^aÏhS(GŸž¾lž(“.µ*‘ŽêBÒΚTfÅÇÆÉŒjC[YÓ^éD錚 ¼ØFk¥·d4Uú,³O¢¦ÀrWË*b«SšÌæˆÖ¾´»a3;‘”’LΦÞTÆÇˆ4•Îù“E/t­RÁÞSj8–’rc §dfïè7S ¥Ù=Ë>[Ól ì¥ÇÍÀlØßÓóo¿ú.­Ü6¥°—„½o -FÇäš»q,5„ðòz7æïö² ¦ÿ¼}x{ÜÔ…/AŒs0 ìJ¤Ô´·ª®ñš[SáÐË€Ñ$ElV¥—´ƒó;‰½Iø`Håt0 0±qm€„¥L9ìH†c<wTâ@…x“œ©Êd*?ø<*mçWr_ EX“+¼ Ñ{ìÃþs´7öÕùø®>.[Ò l&]¨_йÂ4eFw|Z ýò-ÇúÀˆ²ä¬±Í£È*¥9*Q#C8ÄÊòÀTâ%ƒüW2-W®[ð¸¹âû]Š¿s¨–ÊT²J€{ª„CZiC¥Ñ[ ­eà¼GÔÉ€“’MMzt]M£ë£K'vHÛb—¶ØMVÑzF¨å5å%^®( ÕëŸO–K_&…éÀM$P¾8b6¸ó?X‡ŠæõÒ©­F,\8¡(é w€pw¢œªv¥äó™y!äC€,¥¾ÐB:T™pÇ9OrÈa/ÅPOâu4»¡ÉÍ*È…—é8‚l~m”õ°»@ŠodºM‘g£@U"Xsµm€. $gÈŽå#m¬E&‘/$Q4(罿ýõžî6ô×óOçvG-'N”)™…‡XP^Çèz9:éĈ‘¾r‹à" 'ÇmŒ®d^íDeáAÇÿÎB=x±‡çî^y™Ó—Ðèà¤/ƒ`PbLÍ2ùú?·÷¾?=~ Ç§/àw§pèDÌ×½ªAn§¿ƒ9w24?ñ* ‚ª¥`þ£Œ vswJ³E!ð;æy%ÒBiøz‰ÞR aåî…ö*ú÷m›}xYTU8 výa|<; {Ü Yÿ±û³t@T€c¤ð#À7™èHÒ7€ cÕViQ’«¹¨ñÕÍà@Û¹xJÈmãeºs„Ï"ߢ¿cÃÖàmD?O^Þµ¦:à7°SâtWÆ1¹¡ÜA^FÝWsÌFè±xâu‘Û,|y7FÝïáNZ6Ð>–®FûO»é%£LÈÊè®wãÉs‰¢gÁÍa±1‚ñ½L@‚-£0Fs÷BqN+¥¥A9Ô­£•²–W%V¨³6¦±ž–bœÑ¥éd^¢O76E#Gt EÜH‡ÓóD•ªîÔŠç¨V6 à†* Œ:ÝDƒ×ÁpR+‰Î‹tÂåv" iHhÒŽ áð–€c/²/£]Ùl·ž°Ãþ9¶Ñ*PèÁN …À±f6®=Œ«Çb¹ lÒÂJÔÓK;Q‚ñ|¾ÏE×;ƒZÖÄY ³—p©+¬"@Eeˆþ¶Û–>"}P&^ظá‰C¿Ã¨;>æWèT2½ -WRh׊߱ä`2V‹Is §y|y3¾kv«)k„=Q¾!ô˜RÈr—7¥oI%‹ï<_œ™|“¥ÙqûOÓWPÕqaSgNø¥?r%¬ïºŒÏg½†5‡rÁM.'\¸œŸšú<VQ»x/Á}¤º–7´!qÒäpb ½*„`òœ©íC äÂ<èª ;Ý6|É…$¢ûv;{Ñà -‡¿®;É#W%mß9ª]Û,NkôwÖ°˜Ïj©7>/XObject<<>>>>/Annots 955 0 R>>endobj -1590 0 obj<>stream -xWMs"7½ó+º*‡ÌV™0†½í&ÙÔ6_æ§Rš h­‘ˆ¤1KU~|ºõØIÖv’º_·^¿îùkTÀ ¸+a¶€ºMó),–«|óå¾/ñÏphýÂít–/Ÿ[X­žýmçÓøòÛ£r6Ïg0/òtP® -rB$ÜÞ¯G“+( -X·ˆhqW Åuã La]gÅ<¿Így‘ÃwZµbÓ#*¦¨u·’Ãý»Oïß½YF3ó£™q¹@'ë&[o9î ç˜Z ΆϺ &@XØîܬ3Ll¶®ÕfÏL“Yi…±ÜÖpŽøÎBÇ ´ƒŠ“û)Œ‹Y^’SÅkn-3høŽ«F¨ ô;ô½ßr·å´ñº‡-{âä÷IèÞÊT½äc]Å ŠÁmBœÂ*$j\ÎC„Fk÷MX,Ââ¬ÄÌ]“±ÞiŠþììØ¯‹©Otöoç;öˆé“œ©×Z0]L^³zë5ùƒø - ù$]â«MP,¯ÂçA(똔ÁF¢ZŒ¡\²!‡öBʨèî[ÖKwñ`¢™‚#>›ôÖL¤®™œXºósY÷H9bDÇ„ŠV]÷W.pX´€\¢sî™B"é ÷VwiˆEÄ¥å9|t10iµ'_ã]í…Bæ5 ð/¼î«°Ò¨ê¤¨Ì§Ê—Ë@ÈX°å°`CHE¬ÏLY»®Þæ'r&C™wCÑF'—çyÁH‡E~Šó†cL¯(˜pî69O†›s{4ŒwX¤Xâºßl!ôÉ\ER²Á6Ú Wï¸!CƒÄÓU’ÔØ°:8A©w=¨»´zyX0±º75Ÿ$ŒßÿÓ’ãuÑWçA ’ò1\i«{¼6á0Š$JŠ'4%¹ÕRj4¹{è*-EùVo¿¶T0¶Î (¯¿ÎË‘¿S çaÍ,’h¼J«%RϾ›¯1Q]P~Ï-åÅyfÅ-¶µ» ­ÏÞŸO§½Ç¦ð²›‚óû½t_bÓ\NËÿr2wÅ,™¹FváþåúIïo€Y òK„7È´ó¤eîê#‹Ÿ$4£ÚBaÕ{è-6G’™ –àPߨõÅÚ{V µFw×e=¨¿¤]ÇÉM¨ï>¾bK£†ÔúË{¢Û¢Ò³Ö!\ -ëçÈÊËþ ñgÇPôš·þY£Ná5–`úØÓ~»eÞ÷¿°Ñç*ìÃ!åÂðÅP”F¢+µÄ~5ÔÜ(…ÔËHöhŽèPÓ°EሂׂýEEáÅ=£¯² Íú2ÿ~ðnÿâR4qfr¢ãD%ƒB„ãU‡Ãg…ìB ­zGú… o®xȈ"D»F«oIÙ¢Üûo ´C\¥sS=Á>^ÐÿSâ‰Åþ7I¡Àø þFVòÝðÖ.’Úßš¨Aúj/Yv^Ž—ÙaOLHßg1«‰Â¾x½Õ*V?¢ð?nÁøãL˜Z'‰ÿyž {°íªgªoÐ1îù7LÂŽÖqÌ4Rç„ØO£ '+žj„ïÚ-ý½VÇYÓ­Ž#穳¥ˆ. +ƒN™Æéäòâ(MåØbÃmmDå9 öß8Lgê"ÉùC¶Dz #0Æ ?×Jð’/_ÿ{f Ã@j:݈6NBÕ²o¤vj«IÃbú~ßH]1ùX^ÓŒY¹ŒóA±Àg¯å ƒVø|„¼º_ŒþŒûáûáÔGPÆéÀønŠÂÓ¤§%XsKª„9ÂW ?÷¾Þæ‹e¾¸¤˜úööÃzôëè%) endstream -endobj -1591 0 obj<>/XObject<<>>>>/Annots 970 0 R>>endobj -1592 0 obj<>stream -x¥V[oÛ6~÷¯8kQ4ElI–/qŠ]6I‘mºÅEÖ=Ðm+•D¤âØßwHÑvܤX0'NDò\¿óþÕéS‚Ÿ>¤4Ó¼ì$Q‚7Û?¿¿ë¤'QBãÑ(SIýþ$š´«‚nZá`ˆ-%MÆÑÆn±“õS¼ 2·ØÊF§ ”Ai:ŒRò«p/œð–GnµŽ&Nk¿?Àÿ‘[í„Ãïk’òI·b!ë &05œpL)¾ZÒ §},o¦ø2¡Sš.¥ñ™KNBÓùÑËBÍDñç«ém'¡^Ÿƒ™fGÄŸ£(úù!Ás2²ZXI™*E^‘¨2jŒÔ•(%­s»¢—Ç/»Tä_%_¿?»úpĬ0=Ù™ZçÕ,ÇñV¥Ò¼áˆ~¢c~èíou^=gCÔ䙡…VH|‚YE©{X(œb‹æ1sP 9 =wü{&—ÿÁäR«¦~Ô&4<Á¦( -µ&Y5¥DªsU‘Z ·>[.6—öï›äã®2Î)NëFºÇ½bnïNÝÞæ‡ª°Ìï¸Ô÷ÜEAf%‹‚¾©ªØP%e&3ÊdWrC+SV•´$æsiÌ—W‡%²²¬ ×J•2Ë·€ˆyÃdeãçñ‹O|p/Ží9ç@Èt tÅ3aVü"¾+|É8"Ñmƒ®Pk -»´cËE®hª¼¿HÏ¡õíäÑw9¨¨ ²}¼wèkŸÂÿß”G«qõ²$Q¬Å1cÎV*Ï\Ý< Db0„ƒ¦¯3Äô‹ü릪@=ßOs¶6Ô’þ¡¥–uȧY;:ØÃÌt“mƒæÊš¹äÊÔ(Žwûºí dg½—mQ…’tD¿P’¼v¿÷¼Ø³ýA­hÖÓ­›;è’ÕÆìa0/Flblr+Ì1œ3??ñÊ$˜÷i™z•Ö˜4 E½æÑººŒµ#ç`Ñ™˜%41˜^}niû_#ºDÜòo9)»tå‚娶S§Mjë¶àmoƒ=\Z•¼½¸>þ†A‘îpdù¬Ñ{PÝÞYò®Aæxk{ÂÁç@ÓW=³Kw ¾œ´Lßã:;à‚šx—<|ÔêVÎ-«9îA•uudS½p w’ð•6°!Má Ï]äºZºnœ¡áxG)nÀ¼5IYÅÅ´ó[ç_‘Eˆáendstream -endobj -1593 0 obj<>/XObject<<>>>>>>endobj -1594 0 obj<>stream -x½Vko"7ýί¸JÑÂjà ¯²ÒªJBØFÝ„t3mU5ý`f<àÍŒMlOXÔýñ½×ž!„@Tµjƒ‚˜±ïóœsí‡ZÚøéÀqzˆóZ;hC¯?ºÐãï.þkií,ª…ã6œ@”¢Å`ˆ?ÀÝí6Dqóübò.2—Òr-¹ýÙpý6ú‚}èt¼E«;@‹ædú(Ta²Õ!\œ=r,ç ä+HT΄„új“î÷Ò-½4—BN®¾`šYµ¥ Â@ã]# ³6`È OASÄLb°s#‚QÚ‚Jñ…3° -fÜÂL«bB¦JçÌ -%!Õ*wF7£ó÷>›uZݾ÷¯•²ßùÅŽïP¯‹+Ø™¤F‡™ŠYbÜ) ±€p‰_©‚Öì™Ç–³juÚÁ,©§#ß“Ó$Ò”UíX§†¿²ü±àƾ²~®òEнºEZ­²l÷¦sŽÍ¼)¦™0óÝ;nã9Ïì-䂨³ÐÂðý{>:tnT&âœkN€ÉR–w°-B´ÓBÆÊ"Ì¥m8*Hµ„)‡Â ÷Jð )RX„5D©²spÐ9:"h¿6îÉQÅéñ£Â¦‡ÊAìRl•B¶Î VyŽd^sgC/ÈsTñœÈˆ©Â‚³L|3ä6wyoz>lÆÔUWiÓ—¿Ø¬Yh|¹Uy!s3÷=W(´Dh#R‚ûÆ%Ÿyòz¡Óä5O4˜_ú‚Ÿ -&ƒjª†%IÅ9 -%F¨àÁ# µ ­þÜHÇð‡‚˘pµÚ"’4§OäU·÷ì@ðªÞÞ·ZëcÎ<õ{Çéå·l¹jv¥t<Êæ³•ÃøÆÓ$.[ä´9ª¨ëIY^5ÖŠr^îšwoáOJÚZž”Pþýxy=úpp{uv°gçxêJ¨Ü’Ši>×É/úQÄܼ‡}¦¥øvç$3¨cÜÑä&ºœ\ßî ÿù"úåôÓ‡ú÷{Ö)½=K¾´ëÿ½4"Ô1îß*­û/jûÕßíöõÿ?‚nS;åëý£²~‡º7‡ÀË`‹U/º/ÞôÊ7À›78gŠxá#sÇûÐS‘4ïàÛ7¸»#Š„ãa9;¼§{x%/Õp{zuv -7Z}ÁsF*.r¼K¸ë,Y¶*ƒÖq›.ñÍò¤‚/‰¤ˆˆnÄ&…¥íýÁ0uýe¶ÓîÑ»‹¨öSí/ÂDyÂendstream -endobj -1595 0 obj<>/XObject<<>>>>>>endobj -1596 0 obj<>stream +m„€C–nuꬷ›ºãZ¤1Z‹¬‚àEéQ¾#Xû@^qg–¢rJAö"Õ!íÈByIz Ø%3$3ŸÐŸ3½$~Hn|$›É¢2m7G:S‚…Âu.c1saµLi©ïE¤3cV×è2¡t`òp!†úÐMþS ¦Tö2…SÊXU(µµ” j|ÐÍN•ަϰ€–a݈%sÁ©ß ÈzÂΜBk‘Ôð‰˜T®Œ)„™.Þ=<„ÎÂKG=‰EÊÈÄ&eÌᘗ8˜2/zúÏhàP+[øžgBQ”ªp¬¯˜¡{ʧN'xÔÆ”d]‚ÆŸ‡†¾ásñÀë¾7(û^ÌÄ¢>#³·:,ýý¹.•ð4Ú¨–öŠ?#µ†/øa"nF+'²Ãî³cVŽ®¦58J•ªÙÙP\¦R›©þ¥ˆìE¨X—"‡ÿ'oLÄÛ‡ï÷Ÿ‡™ØYÓ‹QéweQA'¶QL§ÊÐa»•VCA‡`éòbó݆)RKË&¹ˆeņóЮ3é vŽÃ\1ŠØÙÂÖÚ÷@¥¸q^àn0T¨ÔeúÀZHÊÊ:„)®Á°p È ø{§+ÙªnâÒùy؇F¡±CÜ^›Æ„ŠÃ„¡B³Îd%+ÄK¬¶{­Ê tcJl†MrC¡sÑUeîMTŽ&¼mÜÖbÒŽ©Þû ðñ}ë)ô;5(Å)ÓTAlý00£žÂÿ‰mU”@¨£j9‘!'«/Ö³ö¯DºñÆ }œîE&Ç… ä‡f†o¥r«í(hZ°ÉÃxq‡•gBŸö7YtžàöB!§ C[‚1ÉÅÁCâ7ŒÞ¾¶³Á *ÞŽ=/xÓúxb÷Çð5e„;ºûð=çâ˲³ÜÙ_é–W´˜MÅV·ŸVâ¿d~ÞØ-š *‘ªÏû×ϯ§åýÿXºæ×óÉõb‰õ ï|œËÑ?Ö'ü 9Ç€endstream +endobj +1602 0 obj<>/XObject<<>>>>>>endobj +1603 0 obj<>stream +x•X]oÛ6}ϯ¸ÈK3 QlÇqÒ¾¥Í +[¼lv±½ ´DÙl(Q%©xޯ߹$åÈrŠv($’x?Î=÷ÜË~=ÓÿÆt3¡«åÕÉ(Ñl4Ëf4½½ÁïüXIex1ž]gÓá‹÷Ë“Ëoi<¥e [³[üRìŒF´ÌÏÆÓlšM2zP¹5Δžîr¯ž%Ý++soìŽÒ>«\ºŸ–_`jJãq4u1¹©³…ªsIZxI“Ñh|N Q­m„£µPµ,Èo$‰•ÒÊïÈRµ—Väž¶ÊozŽÿTua¶Ž­Œ¨uª^“òŽÞÌÄÞGt1¾Ê&ìõÁò 5Öx“íÎÉ +¸±ð%êàp¾œÒÈ¥è3úLþz÷H¢.èiW9Ÿ“ ÂT•*YáÙ¶®á}àq«ê"¤dÝVÈ)·°ï‚½µ5mãÉF®ÈÛ‰JÒVìpBŠ“'ʵ’5Ò7­.à6qÈDqì>«øQÕæª ª-ËRåÁŸÅ_(—¬‹PU–\8Sg±n/¸¸ƒ&À0Ôþ*£9ǘªL T%ß|£ÖKdôÊ×çd,Í‹sRœe)…o'jáùIc¥ã„aQïèóüÓ_d‹ìvÎËÊeôɓР?ÀñÒØ*äDŽÁ¤ã|ðQETPã¼NÆ‚pi{+‰vqF?ƒ–¥5 +ðYD7ôiZ Îgô©¡  )3Åy`.´©eLckìž1Ј`×YOI¸þ`AZ…MI%šfà¶TïúÂ$SH›\h +oRÝQ-={ÆGÃJepô€´ñÜn)ßW"úfhÂ~Ø$ýåž~–T +1ÂÜç^éÆ,oн< ¢á®ƒ :"×R¬ìƒxAè‚ÕÀFÓú!C9ÒÊw\I8 ˆüèH{Æ dEA§ÉÔi ;~÷ãˆcB×È-oÊÆX|•`!¦LÁnm в×ó()ßYi§=êv½+4Ø]Ëæ}·C<„¶ûÖ]æ{Ç0Õ5õ§Úlš£Ç»‡´ó¦•i VÎóý†—qèy PâŒUÿÆ ÇË|SmÖP@^/p?ì¤S ÷iãœâÜ@ —åîeº¬$€bˆlàz¿úv«a¯bsðn#ž9¸Â}ÐT T& ¿ÿ9G”`kÀ5+[èݑ˽œl¨…iµ°Ô¬y± 9^Àà Êb T 4vå°y›ú™í O^^ ¢fX!aábVí÷ì¤Aqõ RÑ´žV@àÅpÚ^öŠ“v·þN<ð Øà–›Ñ@/‚à¤Õ=qø6 ›ñ ×ùÛ+š]ßÄ îâîáý=Zó·;º79nœéFÇ>.º7£·ûËÜ_ä§7Óìfv‹ÿÀEðí5›üyyòûÉ>#iôendstream +endobj +1604 0 obj<>/XObject<<>>>>/Annots 945 0 R>>endobj +1605 0 obj<>stream +xWßS7~ç¯Ø·’™p`†¼5&¥Ó$48C2Ó‘ïd[p'9Òÿû~»ÒÙ‡H¦&ø¤ýñí·ßî}?Ñ ~Ft1¦Ó •ÍÁIqBç§#|ž]^àsŒ^Ó\œžŸ—?z0MŠñÀxq’>¾|8Ï‹74šœÁhCãÓËb”þªéN<\œ¿ôünzpüþŒF#šÎìäò‚¦•>¡iyxoìÌØŠº µKMªÃ§mM©Zã,5ʪ…nð )[©6ÎWÃïoß~$c[íçªÔÔ:ùcáU«_MNèhtŠô¦ûªÜ&Ч)»ó:RôõÓÍß¶¡ÕMAÓ¥ ¤ê𾏀ãµ[à»IU.Eào–»d£+R el@&:ÓªY­éÖ›Fù-]»ÏèÊÙÖ»ºÖž#ÑA§HKeTpT.•] Ë¥6~‡¶U–ìR­ù’鯨GMz>×eK•ñø¯ÞfÐE²:žg ¡` “ÎÎÍ¢óÈi¶¥•wkS»àï9|š›åd˜`<:sH’¿c… ‡Çº-Wª)ªãø¤§É!Í' `ÉÍÅʵ6¥PDµY¦^ïOÆœ‚îÁ#“}~øÞiÈ4ªÒœZ­êžs‚HU:Ü—5À÷K·2`È Ùã ËΛvû‚Üdûò ÉÆd y]뵂pìÈ£À’nUAijtyÑÚ(ê ;-­FLûÊ•ëPÔ%&hã|Þï(¸2u(bRPKt ËÞDYhtVœç}EPRàÞ=7×ôšEï9j¸)³[BJÂd‰ÓT»¨Ø)K +áTPQ-2·Éf¤ëNð)ÀX; †‡$Qâ€ç +B¤°âYÄ>ÔËC©rý)cs¿}®¡Æc‹ÍÃÃýóÁÆñy\½ÞLTñ½Ö4ú5³Â„Ìéž&|Úê§6–É̽kĆ”VI­ üÐdÅÒþ±ô1~ÄÑsæ³xc <2°˜b¦âï¡<íïÜ2ÿú†¨b÷qÛ¤¡5EBÀ£«Û‹|ØO,æ¥ÀŒÝD0X,sº‹©€¶ìB5ÔLa /u]Écj«õ_ÿ¤m´ ˜’©„Šì0eÙw3”ý1gS´QÛÿ‘IA_$)º’ dÁàW­$oa¹”V+ñ.±ÐV󆧵 + ”;f‘å^äáÖ­ÐcS«Ž×+!G‹ìá‚Q‘ý!Âtµ—Rnu‡2†JЪ_Bî ²‡³…Ÿ(Ø“„Z²f`m«dKÊX”–ìLˆô+7à^-(ÙDÅöºí¼…;øt{}%}xâW=Uí@‹i—8•…“9–…lh–Áá( ùevg,Äš‡Hô9 øËŠæ>Q6êâ.‰Ì©¤ÄÉB½/ÞaGÿªø¾ƒXðÔX›Ô÷s£ß‘ fúÙù•%•5gÀ¿D®Ëô¶3šà…üò”&ãô6Q¸õîßÈ®‡Û%ƒrÔ_8º8y“(ù¿6dz‹³âbr‰¥T|3a[¿Mþ:øÀ0G°endstream +endobj +1606 0 obj<>/XObject<<>>>>/Annots 948 0 R>>endobj +1607 0 obj<>stream +x…XÛrÛ6}÷WlŸ¬ÌH´n–äéCÇi“Æãñ¥©:yñ HB"jPÒªþ¾gP¢˜¤Œ£ ìîÙ³gúz1¡1þMh9¥Ù‚²êbœŒi>$+š¯–x?ÅŸ•´áXzüïóïË›dBÓëy2§Š&ãYr?•ôçE÷3žÎ¯“e÷iç3ž.°Nò{;ŸñôfœÌ:OÙÃÉõ4™ö=|¿¾¸úx[´Þ ¨Å +orïò˜ÖÙ`2O®“IBwº¶&o²Zýný7öÌi2 {FÓ%ö Ö…rôééËú‰ré2«Ré¨.$í¬ÉdÞX|lœÌ©6´•5í•N•ΩّÀ‹m´VzKFSu Ï2ÿ$jZ,wpµ¬¶:¦Ñd†`íKÜ ›™Ø‰´”d6lêMå|ŒÈ2éœ?Y4ðB×*ì=e†c)ic,á”Üìýf*¡4»gÙgkšm½ô¸î™ {¦÷ôüÛ¯þ„K+·M)ì%aÑ!¹&Ãn$K@!¼M½òw{YÓÞ>¼¿=njÛ.@Œs0 ìJ¥Ô´·ª®ñº±¦Â¡—£Q†Ø¬Ê.içw)z“ðÁÚÐÁ4$ÀÄÆyL´–rå°#mŽa/@ÞQ‰âMr¦*“«ÍÁçQil p8¿’û)š ½Ç>ì?7@{c_ïêã"’e3jCýRȦ)sºãÓjðè—o9ÖF”%gmE^)ÍQ‰Â!V–¦/éå¿’Y!°¸rí‚Çõˆ0½ïAѦø;g€jy L%«¸' J8$’H*Þm-ç=¢NljÔ¡3èj]]:±CÚˆ]±-“Õ„PË+&ÊËt±¤€V ®>Z,|™¦7•@Eøâ`ˆ@ÖTàÎÿ`*š×K§¶±pá„¢¤3ÜÂ݉rªÚ•’Ïgæ…p²”>úNð\9ŠU`¯\Áù{l„²È¡N•‡—w¤t-· Éi>µ¹¯ Ï?Ϊœ¹Ô·Õvè¹5 r`؟К‰í„ʇ ¤¨É|\ž>ß>À< +­öÖˆuLôè“JT«å]ÞqyÀ'N5°ñÒ¡Ê„;Èy’C;)n…z4]%“Ý,ƒ\x™ž&ͯ²vHñLÇy6 +Y¥‚%q£¶ Ðeä @Àñ±|dµÈ$Òá…$Izå< ÷·¿ÞÓÝšþzþéÜî râD™’YxèåuŒ®—£“N (Ù+·.Âpò4ÖÁàJÖÙÕNTI´ü@à,tÐØƒ{xî~à•—9} ^Aúr¥ÆÔ,“¯ßøóp{ÿ¡çûÓãz|úÒ3~· +÷€NÄ|Ý«äF pú;˜s'Có¯’ ¨Z +æ?ÊÈ`7÷7p§4[¿cžW"+”–¯—è-EVNà^h¯Ò¨ß&±Ù‡ç‘EU…³`×ÆÇ³³°ÇÝõû¸?KDeø8F +?|“‰–t!}=¸`10Vm•%¹š‹_ÐaÄÎÅSÂÆ6^Ö¡;Gø|!!ò-ú;6l Þ&ôóèå]4Õ¿†§»š 0ŽÉ åð2h¿ša6Bů‹ÜfqàË»!ê~w²²ö±t5Ú@xÚN/9åBVF·ý»OžK= îƈýˆŒïe +l…!š»Šƒ„¨pZ)+ Ê¡ŽŽVÊZV\”X¡ÎÚp˜Æ:ZŠqF—¦•y‰>ÝØ Œ4¶>Ñq#íO?ÌUªºU+ž£¢lÀ; U,uÚ‰¯;ƒá¤V8é„Ëq"ê iHhÇ…px$àЋìË`W6Û­'l¿c…m´„ +Ôz°SC!p,„™kcÏê±Xî@›‡´°µÃô'J0žÏ÷¹h{gPËš8«aÖá.Uj…U@¨¨ÑÿÀvaé#Òeâ…qÀ OúFÝá1¿Bg’ èU¸’B»(~Ç’ƒýÑ8YÎGÓ)zšÇ‰7ƒá»f·š²F(ÐåB‡)…,w›¦ô-©äqã’ç‹3—o²4;nßàiö +ª:.Ì`êÌ ¿ôG®„õmׂñÙ¤Ó°fP.¸Éå„Ë—óSSŸGÃ*êoï%¸T×Âò†'=I 'ÆÐ«Bf³ajûP¹0BÚjEÂN· _raIè>ng/:Xá°à×u+yäª4ö£ÚÅfqZ£¿³†Å´V¤^ÿ¼psrÜ0@ð|x†5Ú·Mf<Œ˜[¹÷}ÄáÖå÷öâáÕa‡BS ›ûÂ‹Ùæ d ,E©í …;kv\¼;m7>r¡ß¨tºq¸?À'Tß ²Ln \[± +ãí%ˆs^ìYò[eÁ¦Zt‘³z„.¡cñQé““³W|Ã×'9iWv|»â=•Ðý=¨ _ûŒ¬'|™ôÚ´Q%ë’WuM` zZŒmäK¦­+$ ŠÚ)@™·BÝ6ä5”á©ñiF)(™cÑP(‚VÖN€ N\¸cLgò噞®Û=’Äßß?!è},ùðï+G¿‡<¯þ/© ÏÏ,1^ƒ"WW±Ü& ü¬²šáç‰Yâï5ÓgkþÆ ‡®2~~eãvÃh9¾á{Ð~ǘ/çÉr±Â/Xt³ä½Ö\ü Ðt‰Zendstream +endobj +1608 0 obj<>/XObject<<>>>>/Annots 951 0 R>>endobj +1609 0 obj<>stream +xWÛrã6 }÷W`¦ÕÎIJ%;¾ì[¶ívöa{‹ßšN‡’(›ŠtI*^Ïôã ¢-ßÚ&ÉıM8 ¿Œñ7ƒy“”Í`œŽa¶X¦S˜.æø>Ç?áö ÷ãIº¸¶°\^ým§ãîå·ùdšN`š¥3h _fä„>Hx|X F—e°ªÑlž¡ÅUå ŒaU&Ù4½O'i–ÂwZÕbÝ"*¦*(u³’ÃãÃçïV_ÐÌô`f˜ÏÐɪJVŽ;Ã9æ„V½³á³®ƒ ¶†;·ë 뫵Ù1S¥@Vja¬·1œã¾µÐ°=(í àä~ Ãl’æäTñ’[ËÌ*¾åªj í}ï6Üm¸müÁ½naÃ^8ù}ºµrE+$¹ÁÀXS0(„bFp›†ǰ ‰æÓ¡ÑÚ}³°8ÉqsW%¬uš¢?9;ôëÃlìüÛù†=cú$gê­LÓ¥?-Y¹ñ‰}ì‚xt/ñÍ&(–·Fáó ”uLÊ`#R­‹!Ÿ²!‡vBÊ;(èîkÖJwÝÁH3F }2j­I]29²tç§’‘rĈ† ÕY©tÙ6\¹ÀaQr‰ÎõX¸c +‰¤ÏÜ[Ýp¤!—–§ðÉyÄÀ¤Õž|•wµ +™WUÀ¿ò²u¬ÀJ£ª“¢0}>+w˜/!»‚ÍûBʺúL”µ;áÊMz$g4”x7máèò4/i¿ÈÀ@q^qŒBƒiÎÝGçÑpuj/Šñ‹K\·ë DÞ ™+HJ¶"ØF»Â`áê-7d¨—xºJ’{V'(µÀ@÷êî­ÜBšŒ¬nMÉGÆ#Ä÷viIñºè«Ó zIù®´Ö-^›pE% Åš’\k)5š\ƒÝ7…–¢Ä|«ç÷¯ƒ- ­‡såå×i~ùƒª¨h<Kf9DãUZ-‘zömØ|‰â„ò»¶”f§i˜d÷ØÖæA[¯ÞŸOƽ‡¦pÛÍÁéýž»Ï±i.Æù¹?š»`ŒGÍ\";sû†~Ò»;`(¤<‡á2í4iɈ»òÀâ^ÅG M¨¶PXõZ‹Í‘df%¸Ô7j}]í½+H†j£›Ë²îÕ_Ô®€ãè&Ôw +Ÿ÷¯‡XÓ¨!µ~ÆòÀžè6¨ô¬v—BÆú9°ò¼?C÷³e(zÕ{ÿ‰¬Q§ðK0 }×ã~»a•Þõ÷ߨèsöárføl(Š#Ñ…Zb¿êkn'…ÔËHöhŽhPÓ°EሂׂýEEáÅ]ÑWY…f}ž?x7Šu1šnfr¢áD%ƒB„ãUƒÃgìB -ZGú… ¯®xJˆ"D»J«oIÙ:¹÷'žÞAh‡¸Jç¦Z‚}¸ ÿ§Ä#‹ýoCá ü¬äÛþ­%7´¿QƒôÕž³ì´ϳÃ^˜¾ÏbV#…}1ðr£-¬|8DáÜ‚ñw3al$þ§=xÒïÁ¶)®T_¯c<òn˜„-3¬á˜i¤8Î ]?í9ZñT#x×Îhéïµà8Î +œnu7r;[Œè,ìÀ°Òë”qœŽ.ÏŽÒTŽÍ VÜ–Fž“ÐhÿÃtÆ.?% ¤2c\ãðs©·|ùúß1KzRÓèJÔÝD T)Û*LjǶ5¬Kßïk© &ÿËKš:V.ºù ›á³×b‚AK|> Þ?ÝÀ/FÁýð}ê#(Ãx`8£ðTñi VÜ’*aŽðÕÂÏ­¯·é|šÎg‹ÐA– ²ðÃjðëàØ eendstream +endobj +1610 0 obj<>/XObject<<>>>>/Annots 966 0 R>>endobj +1611 0 obj<>stream +x¥VmoÛ6þî_qkP4ElI~·‹½ m’¢ú²ÅE?¬û@[´ÍT5’Šg`?~Ï‘’í8I±`Nœˆ:ò^ž{º”à§KãõG´È[I”àÍîÏïo[½q”Ðh8ŒF”S·;‰&õ*£ëZØ`KN“Q4 ‘_ìeÝ^62¿ØÉ†ÓÊ ´7ˆzV{á^xá–‡~µ'^k·ÛÇÿ¡_í…ƒqð5éñI¿b!ëö'05˜pL=|¤¥ô§],¯g­ø*¡)Í–@i4ÁCêÁIh¶8ýc•é¹Èþ|9»i%Ôér0³ô”øócE??$8!+Ka„“”ê\¨‚D‘Re¥)D.i£Üš^œ½hS¦¾Iºøøþü݇³FÌ +{㽩*æ +Çk•Úð†Sú‰Îø¡s¸Õ{u†¨R©¥¥Ñ>Á‡œ¦žXjÓ8Åícæ  1ä5tüñï™\ý“+£«òQ›Ðð›"Ëô†dQåP+]^Û€–ÍÃþ}“|ÜgÆ;Űn¥%Í­4Ì-~÷éâMͬ iPk‚=n(›ËÂñ~l^jΞ*V´ÐyÎå-¹@9ÜSÓÝhÓf- vDmç´®¤»ÖOIY¯“KE Hýî€/[]ú‚úÒÛÔ¼9Ö|žæªPÖh¡ã«&Gš¾™¹[ùñÕ¤îôÝ®³“>.¨Ip)ô€OFßÈ…£ ½À=¨p>lªÓ茾Ò6Ýfð…ç.°.V–>VÞÐ`<ˆÆ£ nÀØ:²†ËYë·Ö¿ËW‰endstream +endobj +1612 0 obj<>/XObject<<>>>>>>endobj +1613 0 obj<>stream +x½Vko"7ýί¸JÑÂjÃ<€²ÒªJBØFÝ„t3mU5ý`f<àÍŒMü‹º?¾×ö !¢ªUÄŒ}Ÿçœk?4bˆðÃqzHËFDÐë‚.ô‡Çø»‹ÿ’BÞ8Ká8‚Hr´ ñG¸;Š IÛç“w‰ºäšJNõÏŠÊ·É4èC{‹Nw€íÉô‘ £ŠÕ!\œe¸¢è‚H¢ÅV”60­w­ÀÚE€!ƒ¾ ú›0Ž@Ï)(ŒJH "ÇŒÏ@ ˜Q 3)ÌÏ…,‰f‚C.EéŒnFçï}:ë&tº}ï_ +¡¿ó‹±ïP¯‹+Ø™¬%ÃB¤¤1X@¸Ä¯\@göÌcÇYuâ(ZKÛÓ‘ïÉiV2®ªªv¬Û†¿²üÑP¥_Y?å t¯náZŠ¢Ø½éœb3oÌ´`j¾{Çm:§%½…\Xê,$StÿžQ°tç’ZÀdÉ«ˆ;Ø– ڹᩃ²…S®[Ž +\,aJÁ(ä^¾á,gøˆEhe©1z:GGd€Ý/•{rTQ$reùQcÓCå v9¶J [gвD2¯¹³¡‡ä9Zݧ + ¢Ô2ó$y&¥'^«¹0EæØK\ê˜ Ñ˜¶¸Wø|Oa%Œ„šh>|;¤: wyo{>lÆÔUWkÓ—¿dج™Iàt¹U¹a™:„™ûž ZÆ$M)F}ã2šSh@¦…Ú–ªEÌéÓëÒªaÊG mßuœ>ƒº»Ï«ÛPþ†2_4×ùò–'cjè{÷ƒ£  ³¯n0Ît€³G©qJ¨T²…WU8>©ãz&¬íã>1n¾úHÏP´LÁ‚ýÊS~Õ”Û½ ¡%Ž$Ni¦,i]&€©ÅS³0?yRåô…$ãv@¾c›†áô—†sä2’]I‘Ñ +t ÈÖ£â½&êþÐ2Îei“,EÆrO¢­ÎY‰9nª•Ò´Dïsºrñ¬æ4’yìSÅ#Ê#ž·ˆ‹{ÞSÿܾAüã*ŸÏ4û½ØÓä5Ov0¿ô#:e„Ô¶’e5çŒ? +”˜íD a¨ XH±ð§àF:Š>ÊSÀÕj‹HþQ!œ>‘WA<ÜÞ³ÁC[õö¾}ÔZsÞà©ß;N/¿eƒÈu³k¥ãQî4_¬¦ÐrÀ·ž&qÕ"¯ ÍQeû¸ž”ÕUc­(çå®}÷þ´)ضV'%T?^^>Ü^ìÙ@Ó9žºš·VÅv>7­^(ä#K©zûL+ñí<έ̠‰qG“›ärr}»'üç‹ä—ÓOšßïY·éíYò¥]ÿï¥YbAãþ­Òºÿ¢¶_ýÝn_ÿÿ#è6±ƒQ±Þ?*ëwhzsèм vHý¢ûâM¯zó¼yƒsƤs‰»8Þ‡ÊLqDÚyß¾ÁÝ¥H8V31à=}ØÃ+y¥†ÛÓ«³S¸‘â ž»0©)ñÚ㮳ֲStŽ#{‰oW'$xI´ŠHìXÁÄh»½?ƒ£®¿ÌÆQdß]$Ÿä*yîendstream +endobj +1614 0 obj<>/XObject<<>>>>>>endobj +1615 0 obj<>stream x½VkoÛ6ýî_qjµ3DO»Ž[À$Š®í6Û‡¸Ce‰ŠÙȤCRñ‚mÿ}—”å8Nµðq,ò>ν—çP·­!ýF8‰1!]µB?Ä0ŠýÃñ }éO1ä­³Y+¸ ñ³œÓ󣃸µãšg“ÏuEÁZðgƒ­óÙÙ^+¶†·A7úFM(zO¿ßAoûß>|nHz…v—@¶ñb‚vŽØ®N»zàã®Ab=³¦öìöFª»A·™b·%W„&—j{V˜³çž&šQö¨½=À{[t©RàÞ“¶>9d¸È¸±3¡P”ÝÞ²%­ÉUÍ‘ÄÝÌóþ:1K}ŒT7×J–ëc,¥6ÏfqºåJµ\ ‹õü 14¹¯ÍJ!ÍäžÆ|þÔçaट;†’“OÌ­}p9ÞÊQ4¢×žñ£z±ÉúÓÓ÷g§øQÉ/,58—i¹¢— W§õójsï$´oDý­PbÆ´»ïg–ÖKGˆáhì^Å$þÖ4Ú³ÖO­¿Y‰ endstream +ç^×ínÍãÈwRÊs\á¼ 2Áħƒˆ4#QkÜþÿŽs¡Îšf) k¢û›ƒ˜9?ÀQk[¥°ÓØ=×,‘¬¨íV™Öó>Ó󣃸µãšg“ÏuEÁZðgƒ­óÙÙ^+¶†·A7úFM(zO¿ßAoûß>|nHz…v—@¶ñb‚vŽØ®N»zàã®Ab=³¦öìöFª»A·™b·%W„&—j{V˜³çž&šQö¨½=À{[t©RàÞ“¶>9d¸È¸±3¡P”ÝÞ²%­ÉUÍ‘ÄÝÌóþ:1K}ŒT7×J–ëc,¥6ÏfqºåJµ\ ‹õü 14¹¯ÍJ!ÍäžÆ|þÔçaट;†’“OÌ­}p9ÞÊQ4¢×žñ£z±ÉúÓÓ÷g§øQÉ/,58—i¹¢— W§õójsï$´oDý­PbÆ´»ïg–ÖKGˆáhì^Å$þÖ4tïH³ÖO­¿Xþ‰ endstream endobj -1597 0 obj<>/XObject<<>>>>>>endobj -1598 0 obj<>stream +1616 0 obj<>/XObject<<>>>>>>endobj +1617 0 obj<>stream x¥WkoGýî_q•~®Ì.`Œq¢ªŠëZ‰Ô4iMUUBª†Ù&ÞÝ!3»&¨íï¹3;<ꪪ-cÄÎ}{î=Ãç³>õðÛ§ë]ŽHg½¤GÛ+~_ãu€?«h n’á©ýñM2n?¸œ¥÷=º¡É1Fc¼Éþ{=šÈŽ’KC•°•.ôãûÛ»óɧ³uû=¸šd"JkgÓÜH‘§N3‘Ît™–Å,£îusšNm`vÂðI°£uݱSWÌiÊyãkÐOFÿ0Á_u‰àÝ U˜ò8ìÉT×Á(;>þúu+ÚKW™ÕËéùñÑGç+k$qáÏw.Úg"ÈûgH”Ùô~çkν³”y~8UKíhetY]øÌÜÒÔyF3Eb–+ª u¥’8ipاËü¿LÌ?ÏxjpðH™)„.©PÅ Pª]Eø\‡º× c*ÈO Õ0K"¦;œÆ˜^xn`½Nè;Ð^/jXF~£Túøæý ŒƒmƒòR<)*D¦H7…Î… e>–fr@Ĉñ£PŽ@¨µ±<ó•Y(”mjœ®Eé±@ö‹Æ…QxÒˆ+jØ–•–¢Ò¦¤¹±dØ›GLKå.èQ©ø 2DKh²T´ƒîknìt®•Jeì|Ö,ò ¸fØ};]¥V M;w:kØÖtÆ…xT4ò±^92¾+ÈÉê….ENQìZÏÚŽŸ ¤“4ÌÚ2’æœÑ·ŒIiÀœÌâ@8ÙÎè`:óȿƮÅ_ka²:P ˜îú±ÖÕ’‡Ï1c”@ÚÆÌ{]¥)VHªA¡«XÉ^—’$u¦¶R¥¥sˆ!—‡4êP¦-ønì†f`údÐÄ(¶c¶ç;Vg©¾ îvCè±R ù{C”Ä™ÃÐÈ2zš[SpñíŽl³?´ÜK:p(<Ž)vž‹ÚñͤÝàK³ÒiœÏª'ï–,øÔ²ÿ=P™²NÉÚêjÓ4Æ%ôk`ƒ˜½Åœ¹ hY\†®±NT—æz–F?ÏTÇ&Vc~Ø Â·ŠNb2¼qy 1"-h‚&þsÜfCE(÷zt²ÛrEÜ#hñ¬Õ{:Qí¾¶´Ö`?¡tYIï­R·w]·RRϵäMx¸/‘óóFÓi7à!åCˆ™áåcª½Dr)ʅʰÊÏÕ<®X !/|lVá^E°›ûUw0 eñbä;UŸkŒ[Æïùç„R>bTâÊü&©ËØ;³°¹Œ )MíüÿîÄò½Ã=ê×ï˜bèC˜‘ç^X«ï×( -¬e[X7¡äe‘‰\[ˆ<–Õh,®„ -äƒO@œÁ¶œv %‚°ø ¿¹r3=ÇD¨¼TfÖµyµŠø¡epf3ˆä@•AæýšmÒqþ¾Á¸6 ð¥ì 52(à“‚ÄY ’œ˜.¾ƒ}ÑÈ';_CdȾä„ó¬áéVw¦ç|Çòûä:é3Æ®–GQ­)ÆÄÏÖ²Âíáb«R 7\Ô‰RrÄþ×BÒq+¹Ý loYD ý¤Å¤ÒuÝEKÚö¼ôÃgãFû#|½_Òèz¾o<¼yû†>Zó‰¯dwFÖÀ÷ š-»Ñ {Ýão2ñE\8ù:å,Ž>Ô^­‡£q2ºà‹í]±‹ï'g?ý ðY endstream +¬e[X7¡äe‘‰\[ˆ<–Õh,®„ -äƒO@œÁ¶œv %‚°ø ¿¹r3=ÇD¨¼TfÖµyµŠø¡epf3ˆä@•AæýšmÒqþ¾Á¸6 ð¥ì 52(à“‚ÄY ’œ˜.¾ƒ}ÑÈ';_CdȾä„ó¬áéVw¦ç|Çòûä:é3Æ®–GQ­)ÆÄÏÖ²Âíáb«R 7\Ô‰RrÄþ×BÒq+¹Ý loYD ý¤Å¤ÒuÝEKÚö¼ôÃgãFû#|½_Òèz¾o<¼yû†>Zó‰¯dwFÖÀ÷ š-»Ñ {Ýão2ñE\8ù:å,Ž>Ô^­‡£q2ºà‹í ØÅ÷“³ŸÎþð; endstream endobj -1599 0 obj<>/XObject<<>>>>>>endobj -1600 0 obj<>stream +1618 0 obj<>/XObject<<>>>>>>endobj +1619 0 obj<>stream xÍWMoÛF½ëW â‹ HÔ§e©€€:m ø`4u)`ÀX’Kic’«p—QØ_ß7»¤ÄHr\$>TF +Üy3ófæñsgDCüŒèzL“EYg i<™SšÎ¯ùoü+$%÷«ÎàvH Z%¸1›ã˜pz8¤UÔ•¹SIKÊõåêNNi4òGûãŽvmý`o¢?žÂ žìïVÒ¼pùV”Ø-Y|Q‘4d5ítñLÛBoe‘V=ªtI;•¦$R£)—2æCRÙ,h#¾HRy¬¾¨¸)Ū‘Õ…‚©¶qˆb •S Æú£I0f„"-¤ˆ+x“Fæ–tîn0Yô¢È×ÒýïFg0V;¨ÈÊl› ‹gš­e.‹€Ê¹€íÝsü-ÇL@« üR$r %IaTZ!XU¾vN}ÞPI—ô®É Òyòm:»´Nu¨ü³«æÊ(üGwþh㙯0‘?²÷:6lEÄëè>% ©cðérBìz‡Êå!êãŠ,"TØ \ÈW&r$ŒŒÊT*P'í/²PÔxš±ù€î«µ¦. C”jýL©zær*óKdÍü=mEi7ä?…ü\¢à±û6HU802* e+NÇSªŒuð@L>,¹¬(`nä2–98ìK—=äÍÕ“E±4%r!ã&Ôa0wt&Ö©‰WÀ+¢ghzoi*ƒúþ˸^3º‘ijÎÀŠ"]ºXè‡#;˜x ÄÌ€ ]ÏO=3¿ßI©^«Üs°™©Ý³½”KAØô‡¤¨º³˜È;bJ›7å´#¸´¶:SÄ7¥ç+<(sõ•Ù‰®yJTaìÓV˜ýüþ°=×®ˆg2uàê+a¾ÜÈ?ÉÌÖtàb½ò<{;£o×C-¤-£zkÑ¢Ønü9…X‡FcEøQx¦ ïx©+ladîHÄ1kˆôÍwX”nð·êuêëÛj|uÑ‚9$öM(¡;à',­W,/¸ãXk²/ï”ãþk;¡f¹c{¼/ceüŠ-´¶˜&†ðÜ‹ž\ZÖQmn·n!¢mF~é4ö—² ‘ó@"±Æq†¿Ÿ?Žj õS¨˜tBPºbëô b¶µ^å5´6NË nšÝ‹šÑ4¸ &Áu0èACq(Ó7[),YbA¥Öe!˜gr3‘Q%¯ry–ïe_pJÔéUH·Zöp¶÷ -ˆ)礆˜ÝKYE¿·¤¨“L(¶O¨¡8R¡ž8té+•™eeŠªŒ$Ñ,®87T®Ýâ{ºƒ¼Šeð7”3벨4Vgê’uœ Àƒ]èlÙNž²2ƒ1=f3â4%Ü¡4v£Y·:mÌ”Æ4 ;†Þëº TõÒ=•¬ÓÙ y•ìñR;ŠTe[}Ì/ B^×=}·¸h®Ö›àBApA+½ûõ±{ñx¹’hŒ¦<9‹Áp1ÍèáþîÝñíãïô›ÞV…Zo,=v£ÇK-³>~-zôPæt¯¢BûP fJ9 ­ùuA7¨ÚG¶`è#T>Þ(â“C'n?ÜÜŸÒ±möäÆ –2"W‘c/ëj±–\´ã“ü}p;¯_ F3¼Î'4»ž{Ùÿpsÿþ†>ú^ @Ô¨d#û–è7ú×C~CìÖE+i,qµÁoC–Îñt6fWc¼PòÑáŒÿ±êüÕùz’Šþendstream -endobj -1601 0 obj<>/XObject<<>>>>>>endobj -1602 0 obj<>stream -xµWÛn›@}ç+Fr’sñ»ŽÚHQÕ6•Qž"YkX̦À’½(õßwNˆã˲ÞÙ³gÏÎÌÎŽð+(ÄÖU`9×8AŒü9>D€Æ® Ax‘ò Ë€h• ý£f‚Føîh)œ”­IC-˜Ú:ÉVO,_³<²%¿ ,†žkÏï˜/7ËE‰¥söl”Ø®b&¤ZDJøÛÅ‹iŽˆÍUBEøq/xsV °C®ÑQ3’“ ÍÐgsûÕÄgÛ,Õüh¨àÊíJ¦h v(¥ìƒ§TŹÍñ™†opl@÷ÎßÂ|ÓÝûÑ¡qû>u8ºKÕ½éÐ8k?:´ázñ‡ƒ =ë0€%•’ñ¼{(Õ´d5ñn:€[¼Ÿ¸ˆºóÔÄÌÍZNmù‰1þ -®µÑ×pÇÃ1Rµj/‹.XG"OR -b.àk*¸„»iYï`†d!Qæ ï/tòÌ$MP´¤õýå±Eª«¾dÏ ƒGR Êwøÿëé¡Ú¤½ÒóR¤_ä:ŸT¹ù Ü+W9r›{•®ºßVºfÛ#VíÕ}ðjÂ÷$°Vemöì\OÀóv½Àpä›ÚýH*9(ÂÊŸ´æ@Êr -$VX aIû`7‚Á²¡ -‹€Ç@òœoY¾ˆëuJ¡<+”4ÑW >Æ­7$íj`äÛ3ð‹?a"Á Ýr-`I²5AäÈ0ƒç9 •YC%‚ëM²³"E‘ÖÁ¬RÎ5Æ1Ûhs=`“cècc›ËUëy¥…çcË4ƒï––‹ŸW ¸ü—‚o<Ô&1”™Â°ÖæÃ™kº© obOí± ò6Ì‚%üÖe6ñç¶?aóeLÝ™øX¬ÿÑ_endstream -endobj -1603 0 obj<>/XObject<<>>>>>>endobj -1604 0 obj<>stream -xuUKsâF¾ó+ú¸©- 87/Ž«\»ˆQ*9ä2Ì bv¥í<`ýïóµ„b¢2Šyt÷÷Ò÷ÑŒ¦ø›Ñ*§ù’d=šfSZ¬YŽ÷¾çø÷šíÂ|gËá—bôùéžf+*¸k¹žQ¡÷L§TÈO³E¶ÌèWS›(¢q6üT|ÅͰLò.-Ô§?ŒÝ«è( ²©ÞkOî@ÕÇY2–L $“÷ÚFtVi´¢“ö—S<ŠHgMG×hŠŽ¤«5<¤˜¼æò(:›cD½Ü~æßÁ$_f‹ënÌ?Õªwroâ$L%öPq5¦³éǘv®û†x~{þ“ЄÇж¤ð¢®Ã˜D.•Gjœ-WÍpøS’ Rû( ·Ð¸ :Èè -„$/÷ñÈ{ôPxyÌPxý=œæF7ƒé+³÷Âc®C»…/uüOu¾5¤†;n·½ -ºÓþd$>Ï&¢<ϼ­RY20ƒ* µm4²½8•*zL2*Ž ¯½UŒVíxZW×`bxÝíºû^¨}3ƒ2ÛKúýÀŸ´U·Œw|~’­MVÄy—gk&ø¯|¹¢nC/Æv}²lÕX®Z4 ú ŒÔ©ÜÍôöü“¶”QmïÖElW—Λx¬1nÅj0J7h×°@‡è8¯À8¦: €L–«BÒ)@ÓzKïRU“ µ¥ý;;«dôÌUß™se#SŠ8—¬üÕ®GòF]ÑOK¦ÃÁ@áÒY–“[–,4_w<²3œ÷©‰è}*¢wïZÝ„½÷ÕÿÂ>¿ïb`Óyбb/“ÒÜ×­pH9ˆ‡ñŽâó -)]Bô¾ ³óßB8-•+|SÑ÷Ü´‘m2¡ Òã‚çž¡p›üŠü––ñ Poal¶†’;Þ>nø«f¤¤¾‰E>WXô:É×Ùìž&‹K(">Wmœ•Uâ„û·`¯Ò“õÚƒÕ¥ 7 é k¸-ôÝÛü†Çæ¥ÛvEtY5t\Óx×x#¢¦#½ îém»!Ö~@’ŸØ•;·zfXpàd`“ E`£.9%ÁlöqÍ惪ÊÕ !:#vCsšpævg1ì£Áª×*µ,³Ó¡5ä£4º”. øä“mÕ.¨6?ôpàÖñìh¤€Õ‘Uv!x}ɘÙOÍõœæ³»Nλ‡—/´õî«–‘L5²°—çšô&«é=ÇÒÍçåb¹Î–w9ž–¼cºæ“¿£ßFõ#z4endstream -endobj -1605 0 obj<>/XObject<<>>>>>>endobj -1606 0 obj<>stream -xWMSãF½ó+º¸UF؆vo°›­â³)œÊ!¤R#idMVšQf$¼þ÷yÝ# #ï&) -0h¦?^¿~ÝúûhAs|-èfI—×”ÕGódNW·×É5~Þàóß^S!ó›ävúà~}tñù=-ç´.`ëúæ–Ö9ÁÎÿÉN?–ªiµ§Å»„êÆ»SêÝ6»!c)¨:Ugë¿ÄÊâ&Z9¿¼J–°sŠk‹„_´1zK®ïÆ+W´XôW–7ˆWž~¾'«Û­ó_Ù»4¹¤¨ÖY©¬ 5¥;Ú–&+)«Œ¶m LYRY¦Ÿ«LhÙU­²ÒX\E˜j°9#‰vNç‹Ëcp癪*äu,‰i1pœÐº4!Ëœm•±áÕd[ª– õZå;jÀ©0•&eó 纱-Αə¶Ôž3ßs?F¹5-Â%bå:„ßRî`Àº©dU—ë×@"ˆÄž´”uÚjG*Eˆ*w"kUø’‰ó5œí%MH¸ÔêÅÀB¸Ò°TUÄ5é¡N裳…Ùt^µÆYÆ™ŸŽ”(U TkË…C 5NeT¸iÖÁÕšž˜;ìȇüÚ !3æ¹Ëºy Ñ.¯“+¦ÆýÀ»­AP«Ç51KÈdÌy\ÕIT…w5­t{ÿðø$þ‡/¤òÇÐ!-:›ñ¥ 4™–°Lè× 9OE¿=¬ž<*³)޹ñæ +ƒ_Àu/\‚yf‚?Ÿí5q<†˜D(Ú æj×jxß04C9„U)“sôÀXüÙî ²x®ê$„å6aØR=ñÙwY,¸Ý‘c¢¢á8à'ðJ]X5öû]*„~_&4Ö)tMã<³v_'¾×ôÂë¶Tt í/‚J}ɹzªŠð„áH$©­ÓœÛŽ ¬ªàˆ;Ö;éjpØ5Œ Á$o®S¨ÓNjػϧA¿þïùôÝóÙóÙ”ˆ‘¸Qt ":"2ôR­‹&Ði˜£ïºFd*5•iwò\ô“«8`•»š«Y¹ "ž„ˆ̛’‡L/õ¢LÅÝžÐÿôøóÝÃ*i¿µb½v¨}€ oüKf £ÊúôúK}bR•Ã{ÉŒ´ÂAº¤W3”B½,͸;'™U‡ðq¹¸`‚…5|hA¶†±òyMŒl¿;¤ _XY «h (A©w÷µB5 ó‡;вé+/>¿éoÖýí -%ݹΡfo…bŠðŠ»XÀÁ= -¥ëª\š2è¶WDdÆ€ßÂ>å“XaÁ³J£2§D_­é“ë“ñÖqDuÇÓÓ¢ 5Æ6• -Ø9«ÚLÐàÈHðÙU¯7ÊçOeˆÈ¶ÔˆÓ÷ ®Ö³>[n’QrD·pømâ‘K¡_X¤Hýh"üû+Ä¢ ܧÀ“{œçC:vOÌg”v(µT›§¬Õ¼J(/ƒ=4:3…áA¦âPùÀpMçڞфVë»'YM¼ eÞœ‹±á˜oˆµâÌ•ô»H£¶/Æ;ËÒ?åÄ`â¹ãÁœázü»\bæ(SfttÞŒ¶L5Q¢ŒÒ_+ÇtIòØúdqJr‘ÿˆ²ÜàiI׎6ha°^Êèçl¬Žs×wv4Ø…NU±ª¢?Ù!ó㑳Çýp8œ ã\€³~œ€ÃhÿñnOà”ç?tEQ£0ì\1>Ž ™KÜ­²ò`Î žc[ÇC}áá2 ºÂhB“ŒÉsÅÁRî¥Ð¥Ø•Q#¦î„²%=G!ËšT€äbý¤³Ú 5o6¤ðb–#ͬÃyf$Ó²¬=ÜÎøâÄ©þ¦êfFÇýÎ2Ø9Žòú:^±ÆbQT-ˆýh£¸LèK\&÷v*ö{ñù;«ÄCA¼\"YÈ/y¼ Y»¥Ò5:îœ -¦lÆÑ/L)uÕˆ¶^e_a`Wò~ňƒ*(ÊuÚm&¹WLµ %] -¬lòþ"Å€à€öØuZÌñ8œtœì5C9mKyùèßeâ Lr·è‹Ï·¯¯Z—óøæóÿ_î®®o“ëwK¼ òKÝü=gþÓúè—£à6Ðåendstream -endobj -1607 0 obj<>/XObject<<>>>>>>endobj -1608 0 obj<>stream -x­WÛnÛF}÷W ŒU‰eù–—· ~ˆëÚjó" X‘Kic’Ëp—øã{fHÊ7EQÆxÙÝ™9sæÌèëAHcü élBǧeã`L'ãipJÓó3ÜOð¿Ô”ȇÉô;®fG§†4KpÖéùÍbÂ9ã1Í¢Á½õšüJy2 O±Õ.ÿÙÓÆ–ϔؒ¶¶bÎùŽÜÊViLΛ4¥…&µH±Ý’ß|Œ&§Ëµ.)W>:šãzº}üóö‘Lþnöå`L£ð8˜À‡AbR©\-±^ ¬`_ç*©û¹1W¤j+†Rã<Ù„ÔZ™TÜp+Uj4V&§Á”­µ`\¦Îâp…ŽLbt?‹ãW’„CÃešp®Û!—-$ÁówŒÃÑÇ -¡6,;£ãi]ŽáI0 読A•Ö9rÕN¹z׫X&gP:ñçÖp©S ¤8;O*[( -ƒ‹ <›TZ¬T(0«…]ëù»fÁ -*´`.UE¬¼‰,DFrƒW…-®^öJ]¤&RB?áàüsÁî9N C¬JùE6F‘òš¼®.Xqp×N¨he´Ù‰V«R®‘‰X»¨4 Ðc²Ç¬?\A‰V¾%«‚y›$Ñ Žç\Ì»cÛòŸñ^½ˆPe—Óìúá|hr´œEŠ4Wm(m% ›kÑ,ò¸#[I_ª$1’ÂMD$Œƒ€ß¬€È(äÚñùîþ †¸ƒ°Fì½â ;þ諸5Ýku÷Û“4÷Mɧ©Ý°¢uW1zÊíܥu‚ñýL”Æ–·*`ÊN_+]n™t¨©¾—FhÛékHŒ³6jw`ûãæâ=#nè¦P.<>cz‡BfAà3%ÐÁzŽWuM£^û sѳï:QUê¡óèÑÿ2úÖglßåü*m&ÞIüŒHëZÏ´ð5Ó@ËáE³L:'¶æmxj`©ïLPB›6ý–§QÞî~… ,wõ=ìHà"zG¯.ƒš¥-ùÛ~<,¥˜eÏžq:D£wÚ^ÃØ:4d×áΖ>c–À A'ÃÝýý¬ÏBd­Ö©šÕ®æþnÀèpäÚÏïÒ¬¹ -=2Î+ˆÿë5êSêcÈê—h¼•J{¨p“5Ë -åÊcÆ|Àä¿'¢I¸ƒ£ˆI翺Í6ÕÿPÚB—J6$hpƒ‘VTPÄ|ž„Õ³Û;²m2ÊI“–€±¬n a§%„ý -uãñ“º©ÅŠ%Nü»ó,Z7ˆëNyÝ‚èO'µŒ£c•GzÈ3˜W&B£R φ™]ó3DÎCÄïxÆ™Õ3rðɰG6ñ½pä»Ä|¸Õ -Ã2…!JÊEä_ -¡y. 8Óªžèj^¤jÉý õs&O«èÿ ->60DÙøUÏ4KFÝú Ò‡ ÑØŒ*¤¿Ro@Éã|KÀ²#{ظÆ$d˜ªm _­ÛPËëèC“1]4‰4½ž~|Í7Ÿ®êqtœs6÷ö݇]Ö/pwÕ~ÂýusÛ›ÎëÛªïF/íJêÞvï;+èåͳFÿízó¼=w¹ _}Ý»{Û«÷ðêýÞÚ7dé›î¼<†ÀäQÚ<~~s5_&øðò8ùœþ7öúÆŸÞ‹·’c|ÙûÎÕ¼=~}%Ç}>/XObject<<>>>>>>endobj -1610 0 obj<>stream -x}X]OãF}çWÜ7@"Þ8aYZU•X*Ô(°Ú¤ÕÄžYë“RõÇ÷Üùpœ!¬‘œÄž¹ŸçÞ{†{9 ñ—Ó§O¨XíMï÷>\ éº_àÅÉ)¾”4̆Ã!ÝDƒw/ò×»ï{/ï¿ï i³Sˆ‡ÔÿÜÞþ=< -Bñá_ö¿lñÓTælômB„ûÔÝϰ?Îñ¯Ù˜WàÂ, -ßx¡»ðôœR©ñeïóáàëåìîá—~¸8¦<÷±ŒNع3]e¬ªI/hL¦×Òz8ÈhtDã‡C*t]ËÂÊ’æ¯dךÝZÙð¢[¬ºaÍ€ìRI¥¦Z[zÆÐ¼Ñ¢,„±&£;'—òhñ8±ú¥0ô‘V¢XªZÒ5){Œ ñëãîu÷bœ¼ÈhbL»’´Ð ÛA+½’µÅWaIT•·-QÝ)dê±mà£Õ4—¤j'ÈH]ëæé>?ÃaÖ`Ôê¹R…² -&ñ$3ºò>Ð,ÿvÆ~ø@»Ê$Š{ºàÞ¹^ (»B˜dCÓF¯ >”Ì Z+˜_èªV:‹T¬  -I3¿…[–O‰jeúžB;cƒ ð:E]Æ`‘F›.ðô6D|„Xƒ…ª¡™´ÓËë;ª/£í2Õl³ðdt’sê'&jƒ;[ɘkÍ`kŸHVžF«+$àÏÇ"ô\‰BrØ%ÒÀHfØe#ebGÀw‡‘ Ýçn­ ­—À#_¥Éc”ÇËUaòjLƒD)ŒI}|ªõº&d Ò…¨à¿ fçY2"û,«Š¶À«¡Ì›É¥! ¡|µŒØD+̪¹®±£±KQßO^À"FZŸïgšÈëQ'4¥9Ú¤ÖWã›bÓ‹`d–¢ac‹ªpðßAàJn¼&N22ÞìãEdtÿ·PB‘:5²êÅ’Õiæ(—ô$%’èÆÝ”m Q„ŽÃÑŽB8;óDôŽ-à ®aÞíå ú>QsŽ¥zD¸¥]è&1Á²´X 8úØïyÑ -øð^Øc¸vÕØÕ¡ ú -Ýñf$ÊÙþ 0Ñ×`À‘Ûþöœ±a%»ÖhT)¹ ï‹Ö.u£¬°Èʾ«ÿÐÊC—Q6±'dÐЋî]CÈ¡c. Ñ"Ã"FY‘µmïÁ…彑˜(_µHæ&`npDÏ~VŒ.»l]öíÛrd¹ïP·¶¬JÌ+ ‘F·M!cÄó0B¯zÃÓ·íX{ë‹fgíR4è sLsZ/?gB%¡÷ôÀg0r_ÒfÊ“~ÎÁ+bo«WÊÈ"®ø;Îj­ëÁvf£?Ý\à*Bžžµr#<‚/Œ¼Jë'nM ÌDLBLJ_õ¬¤Wx†^u‹ÉÝV%Åó𨗒äÕR=.çºYj]’Z¸½¬c#º"Ê@ô[qÌlƒ}ŒgÁË2{ät0:öƒîÎSŸ '›úF>Ñ_¨£hPàœžn¶l[<çɯ'ßlrTdó“çÆÓ,ÿ6u÷3w?w÷ÏAÖ(Ï-ô²F›Íž©nýfYà¯îβ6tc[ʸ·‹IkïbŽ‹ ¸îÎR°Âò UxH;Tw‰]Á7sßëŒÄÜe:Bnº:ÇWê¢h4詨_c— [S(Îôšä?bnù܈™Í€0žð$FSåtÜÙë!Æ“§1"ÎU?õcC=û¢±Òd^ëbÙèZý ƒîõêÑq¬Œ.-7¦¥«°ó­l^Co‘»‡Îˆz`ty“èe‰ƒ°£ …Ø•N‡óiÖ£wôõúöÏ?n¯¿ÜüžO }•y­ˆÈ ýY ÕSˆD×6ÝA 3TaG§p‹—nâ0²OÓl]× €§L®ü,NFøL¢R­¬*G\ËP¸•ìÌ$â—8ãÁƒÓ -âod]røE ô“ºÖ-ìrÇ‘gQ>/XObject<<>>>>>>endobj -1612 0 obj<>stream -xíWKoÛ0 ¾çW𘠱ëGêf»åÑž¶bÃìR P¥ÖšH›$'è~ýHÉŽR#ÃÖî2`u™VLò£D}¤¿÷RHð—ÂUyå®7]ô.nx ‹ þQŒQXC'I‹²ÿ¹^In!\S­†Ãf,×8ý^;X|í%¥IŒ¶E‚!ñˆ/]z|h?]^ÿjÀÝæËyxB¨¹ƒš»%Í—ßèÌõžka+`àÛÐæÛŠï€iRɈնRZXfÅgØŽ›˜L]ÜŒ M}rE™[ÉEUaà›ÒBmÈüV©!ïAH2+4`Ö”~À»¸¯VJWJ­AI0.! f°Ò!¬í çÀðŽš({¼øêJÙjØ®|g´ÞÛÑäKv”Ü>:cC‘:´Þ]`˜ðYÈè‚übĨû½æ²ä 6À÷\Zƒ˜˜U–µækØ f—0Rü¤qsäo«J¶…?W+wÊtòN w}Ú¬»A _*.AX0²¬´’â7à ÀOg³wäc­v W¸ãMQº ÈÈ=Ç÷iáN³ãÃÒ]„EL‡Àä52C˜Îb˜¸Dq‰W1s -qí3 -=Ïœò^”,¢Lcä¹ãòI4”*ØoòëÈ]Q6òûñß“Ö1ëF>=õge¢‚–d‚xäJ6"Ìfgþ;>l‹ÛÙå;tg©)-LÝÏß°°™Ï[6>ÏçHñ^0µ\!a ›"rB=Bë¡”{eCXÕk™…¼Kð7B¢óÇ¡#ųDMÌîíaQBB¥¦bЀ@^vOÄëŠèoˆxvQU}ìçÿj³ÁXövŽd ïhoN:ÉW6ƾÏi›µ¯l>N)ó¬ü—%é¥}ï+Ï·}û¸éÛÓâ*NÆ9Åeó 4ù0ÀG­¾òÒÂ\•õé%)Ó£V!ºJèc²Ÿ^Æ£¦ÔÒc±R+ƒ½ oäIcTŒãâ2ÃÏOz;ÍhîzÑûÔû ù¿ºendstream -endobj -1613 0 obj<>/XObject<<>>>>>>endobj -1614 0 obj<>stream -xW]OãF}ϯ¸âe©„MH€ª‹Ë"ñ°YZ¢VUÕ‡‰=Žg×ö¤3cØô×÷ÜñL⪮*”„Øžûqî=çÞü5šÐº˜ÒÙœ²z4NÇ4;›àýüòïS¼Œ¤bt»ÞŸÓdBËGæ—´Ì Ç´ÌŽŸ¶MVݨ¿…Sº±´’îEʆ\))×µP ÕÂ:iheô‹Å§hrªt&ªÁ K/ªª(ÓSM+ÉiÒYÖšZµî‡å—ј’ÉY:…ÿcW*K¶Ôm•Ã# ‚‘oñ!œ$«\ëÃIñé<=çcI…È ÝrL¿LHã}J…P•õAºªô‹jÖ]8>„Ù€J¢¡…¨¥%] ÚzÖð¥!)²ÎsÉwÕˆ,“ÖªU%©2Ú|¥Âˆu-òEøŒ’ÃKæT aÙVÑË¥ª“ö¦½‡h´‘j]®tkJ­¯²Îúä.‚6I‰ ãÊ.çd½A(À72sü/b·ƒè÷‰ú*1^¾0]£ÑŽ+bd­Ÿ9£kvšoÆ÷Ä=}7 -©›Ì{DÑYëá=ûà~{X<ïY¢•” emª­ï® 2îêóÅTîu¸im»èÈ}K­å6é.$Êê -͇~4ZäzžÒÝ>|~¢ð<Ð2IRZ¢7dQmK4³ªV•0dPyW -Î|ñ®B”/Ýí²Ú:vçYØéýM@×õžQ2§—L‚É,¥ô$h¶¦v[=ˆ8€>á“éE:çc;âzõJ g³ËôÁyÕä 7-–°Ë@ïn×ÂÃl¥óžnßÐÀÜ᪷:È>ú@¾žä½0i«[ª[€,òÜ—yÏ[½a”C“­W)Z ¡Pj¾ð­¬>Š]x†÷z4Ðëu¥W¢²âDæ­Fw’ï°šíÄqG+Èä©Ýl´qôž¶Ò·Ò!¬A’~…vxáD•;d7F>+ÝzNNÒ«%,çˆæÞƒ^båÊe!ÚʳæS#’RÀ¶ó8pÊì´ ô`auPô5bÛõZBZso»Ý¬€¸¡!..þ -K-hºÆ=i³w„ êȃ' 4X ²a²hXÎßQ™0­4ëÏçÅG8áVñ¤IéNÓâó2âö’ ½Dk a~4¬”ƒ »â¯á^Ä90²Ó…W¼fú öÑH …b†Ü¸ vTU™¤wd×h‹å ”\g-OC?¯=’¹Ä,¬ÐÒ Yî°§/Þp'2Ðzdgä¦R}Dà'°FzÔ¶›ãŒÄÀkÄ…Ï@ZBà ½ð½’ß‚¬“lžØÀ!¦tcé“ÊŒ¶ºpp\´èWXˆ9„ŽÖ·£Î46®ˆŸç%–ûèpéLm8N‚à¡g‰î)ºÑa«BU´®íê Exõ¾’ëΥǯg‘bL ž—j o"~Ãx)6Ì2вßN‡3`à.‹[Y@õUË`ë¥ì™Àüߔ‘-^θŸŽ^ÜK@O²÷ºÇCÞ,š‰ï%b[ñ¶ÊB­`§t~°ÈÆî!…NDaê‰h˜(Ø üv‡qþ -í¨(<´°ø ÒëúŽ.ÒD)7{!R¨ò`òžð@«âèÁ8޳íáqç/tËÑ£Qµ€N÷Øt{ëtX]>`7ºØ|¬’k¨g›\?ÆŽN®—“냹•^[Ž12øjÆ£"~[,ýà$y³kÁL¿Npázi„{¨½±ð„fvòÙ0Ç÷cŸØà›óþÚ$ß<Â5¿N8d,áî·D?ÙXYøÄšÚóëÛþôþ2¬$“9~Ë]žÑ|~Þí~O7ŸnoEû›þ]_{9â$H.ÆWß·+žÏ/ÓùlŠŸ†¼ZNÎØÌÇåèçÑ? -¤ïendstream -endobj -1615 0 obj<>/XObject<<>>>>>>endobj -1616 0 obj<>stream -xÍWËnÛFÝë+.¼©ÈŒ$[²\4âæ£ˆ“Æ ²hº‘C‰ 9£ÌQõ÷=w”ÄH)²jmøÉ™û<çÜË/ƒ1ð9¦ë ]Î(«£dDÓùe2§«ù5~ŸàËH*·éàÉË+)-pe6¿¦4'(ÍÎïu#©Y‰ßJKU©$½~ÿÒý›”n_ÐË”J…‡’l½H2­ -*ÊJ’.Ü?D½d¥ù* ‰¬)Õ’„u>ÜÝ?„'ÒOƒ]Œ/“ ¼Ÿ—•U‘Ð]A[ÝâLC ݬܭ3>ûäå4D|¾)•%Û®×Ú4ô”¶Òú1¥ó3Òë¦ÔŠ„Ê¿cÁGø”~U¢–¿œ²<©z‘÷"Þ”UE…(+j4ÙF˜& '&³äŠsJWõøj6šÖÚÚr2ÙL*aJm©Ð†3uj×”Ab ÅÙ½±(]B0ƒúÛP.øÃ‘ãwzF Ä… ØÜhó™Ð.QÜ”¥Êá„n¦CòMãzÅÿÞ§T‹l…îsï€NDé†-å²52G[{>×(ã@ì›y®kxô‰X‰ëù¿eÒeϱ‡ÈC!þž_ë½Xׄ'/oh T3¼/.¯|;ÆÓd–Ðîv·¡ÄŒfüæÝï¯Þ½yÿ–MïóãbrÌ\?ÑgtæT§NÖ¹+#üà2à²=ŸCWY¡N¥åH¡$JÎ`óAhðò€kÞ0óÒׂ^ Û€ƒ.OüüxŽöíSì~ R?îye ”`Ö -zkÊZ˜m´ùðctUI3$Q5+Ý.W.E]眅:­+±µžÑ¸,íÇG=ÇüÈ£'$Pû’‘âE޼ —‡ô8‘Ð(Û€NF×TéLT@®Ë<\´®5 «ËÌñ«\‡ð•øŠ¤#ì‰Á\fåZ8‚Éc-n× ÎéïhDLô€°•;ì‡xz鯴$hi¿Ñm•3>„BºšÍ©ó9¤V Ö‡>´ž}Žøª‰Ryž60ÓóËUXi¥²¡ÜQ†¢ÏúZ|†•¦¤±‰]˜}!¼c%ÞŒ¤úZ­j©xÆÈÃ"uîë’Ç•8@9PçEjäNhUm{ â÷äxVkT§+(±ôŠ©yµ3ìùdRr.Щ1¡–qÜü¹¬ôBT½‰µ0-GèÏlu7ê ^q˜qdêíMOÖÔ°À—¨,’‘…4xÚr™9øcäqS -ã™ôFí`…øMŽJ6ºW4r»Ã©¢Ø¸@üPUFt$}$Âljâð~1ÂþƒYOdØUñÈÁP°/hÉ÷c–WHºÂ62›úÆeĵ%l'Y‹®¢ùíÒ4¤ÒïGF~iK#ûD»—7C¿@ùFƒâÔhæ·“™ˆ:/‚q` -æÎfà+V7ÿƒšEÑå{guÄJè´h·CP@ó9X®H@hKn™Š›ÇÍ4c1³º!ûЫFªþ&1\‚}F.4榑².prHÀyÙüdÝxµ-tVÐRëœÊ\ -VÑ–M²a7‘4î+®ìW —u¬ÇuÕðƒôçÚ•;ô×é‡k Ùèo-½8„®pC¶±Æ˜ àÅCšß+6«Íüv´¹Ý -ÇZGJŸ.)Îí÷öŒg>&oM‚u܆Ù¤|—n›¡³¾hœQ&€°þæ· 8”1Ú"†dg”–ß(°-v¯0Qcöcèb„«{˜Tnè‹Ë¦Ö@BŒ'·:ôýÆåyÞ´Æ3¼7Î/i†wJhèó׷ϰêOû`ÖòÇv¤ÝÞz_\ Ôùù,ÜW³y2›N°¯óÅñþ"ü1ø¥É¡endstream -endobj -1617 0 obj<>/XObject<<>>>>>>endobj -1618 0 obj<>stream -x½WËRãFÝó7^AÕXã~ʤÊf ñCÆJ±Y´¤HjG-áñßçÜî–‘…™"›@¶Õ}Ÿçœ{ùç¤O=|÷i2 á˜Âì¤çõht1ôÎé|:Áë~ -I±y0NÞ>˜û'Ÿ¯Ï©ß'?†­ñtB~D°Ó둞.bÚ©ŠÖâE’ÈiéS&Âu’KR9•kIº -rYâ¥(ÍÉm¢×T* -¤yœªP¤¸£KYPP¨­Æ_ÜËÍá&£D‹ •gþÓIºý¡7@§+‘‚âBe°ª,ÉIÐQkÁŽ´,K>ÁÅ*MÕ–ß©M™¨\Sb#ýë1UHÿÆéŠùB˱Î/TyLq’Jú™Ÿ~¾îÑ…-OwpŽ">r_‘Ê컿P®j{=oÚ,iœ<®mõdêÎàÆ 6Ðà›¹àd›µ½î7×½£ö9BéÐF¸Æ"ÎC_ñÂ<Ñ–›Êâ c‹,ëe°±IUD8 ­ÝÇa8eÙÃÒ.?„*P ÖvÄZTT9Ø#Æz¦ðI$êÔ¥ˆ(´´Îk©ï\ß~»\,£Õìf>#ÿ–æWuë\¢þïWt3[ùWß:9H±M¬æ(lÐæ0-/“YÀ̷󅜤¡ú‚á¨iå„‹Å7t…_&=.K+0‘nÅNó@uyóÉ7óÓaÁLÌR¾ÇjŒ²C“.FŸ(@yyåZú³•G3ó·Ö ‘[L„·¢êªÔaøPñL|O²*{å>¹i5u4îñ?ÇtHã±Y}­ÖÞê ã;PXeËïÞì³[ïNzX¯£Óïªçã©7 °åò­¾‰âÊ?ùãä_´{% endstream -endobj -1619 0 obj<>/XObject<<>>>>>>endobj -1620 0 obj<>stream -xWMoÛF½ûW t©HŒ$˲] mÓÂ*Œ¹¬È•´ ¹ËrI ú÷}3»”IJ.Ú"‰cQÜùzoÞÌþu1£)þÌèfNWKJ‹‹i2¥ÅÝ,YÐâö¿Ïñ¯Ò´ _,“åðùÃêâã§Íf´ÚÀÔòö†VÁÌtJ«ôòqC×Ð^Ùš¼*ÖŠjGW¥š”%ë´6ÎþúZUuSŽ©Þi|Ò5ÿB£²Ò]U:£BùZW#Úæn­rr¥œ4x·X'©³˜þ°úv1¥Éì*™#ŒËÑAûQBÏâxoò<ß©W¸'Ÿ›í®&•½":µÕä^uEn+*]­mmà'¸¥uåö^WΠ&ÖÕtŒnàxp(¡?¼ÆIã©T•*4¡½©w”ÂÒ˜”' -%¡Õ{G;çkO_/÷;-áÇAÜîÍ -Ý]“«èi5ðŒgR篸¨\B|Ô”»¹øfmQØ5r” -KgJ Œ¤tŒRWÆerÄ`3Bµkcþ

)¤¤tÞ›5‚AjÜ9fÛ€ÐL»ˆŽVשºÖE‰fìaö~¢mZÇm+®€ôÆTˆ0@0 <5%šÍ @™g't7Bsöƒ”£oa*Ú!ÚY»¤‘鮩¡kíB¤‡Ï­âTÀ‚e¡ë™™¥òJ«ìÀaüžwÆÍºC™œ]±"TîÕd(ƒjjp¹6)›56S6=ŒÉï\“sšÒB!íÙø:EvÀß}ütG3ˆ2«óäjúivÜ%ôY}7v“b'†»Ò>™ß@þÑŒ«á›¡Ç|él`>u9xÈæÙpˆŠrâ†(š¼6%Xê ½()/ò©ãÁ¥Èx˜Ÿ®÷š„Hàú½Ì/ê{Û˜*Eã°R2¢õ;^¢èÆOÄ£‚Œ¸kgKBÊôF!pnÏNïC„zuk™ßj×FIHŽe'Âùôe%âóÜÎijÜçB*Ú»êû¶rè)Ñ.¦.bñ4[²±_V¿_ü ? endstream -endobj -1621 0 obj<>/XObject<<>>>>>>endobj -1622 0 obj<>stream -xRËnÛ0¼û+¾Ä9˜mYrŽ Ò=¤ha¹øBI+›±Dª$U5ßeÇ© … ¸;;ý1‘Hø’ÈXf¨ºI"d2 ¤ëœ¿|;Bóz°J%ÿ^Ü“›Ï·9І±²µDQƒq’E5“+!¯6Ti‡€ÒYUWʨºvä=ùëâ™ARHî óE.2†™}iðbCa´î€‹¡0M¦(•§úo0lgu _ªë[‚n ÈÔÚpg²½FØ“‰°uÛ§ð\¹då<·w¶l©óOÚÔvôˆ OLaçìÐ{Ô–‰à‰: ?ô½u¬ É•ÿHËÔçYV•í Fe*\ÌeoF¯ÍŠÏê­µ‡8p´æ*ðÓÄÑ­³åóe*ÒÈ:z-‡6èWñ&kTõƒ7ª+ O<:Uíµay£{t'°SúTàöê' Ï:}!ÕÇÇÆq¤±Ósß¶Úš™ïJQYÓÄÒøÖ»÷‘: Ñûùv¶âhcJ5¥[ÿfÓúm©dÆë¼^B®òcÄ›»Çû;|sö™ª€[ ™ âÜÈt~j˜çÉíÉÜÿZä4[‹lµà5Ž‘È<¢}*&ß'¿˜ßendstream -endobj -1623 0 obj<>/XObject<<>>>>>>endobj -1624 0 obj<>stream -xV]oÛ6}ϯ¸)K–ì8n>t[]äa¶x]‹u(hŠŠÙH¢JRqüïw.I%Š‹!KD/ïǹçžëïgÍñ]ÐUI‹ÉölžÍiqy™­i¹¾Âs‰«¨Åz•-N~Úžå›×TÎi[Ã×êjMÛŠàgŽ7òüç½è½²T¬2ºñBÞ‰]£èãæ†ZS r¯¶ß‚ƒâ*:˜-–Y ç¸QdtÝy CéµéHtIÓÕúv°‚ßÄËK*Št¹¼ÊV|ùFwR‘íNÐ"›_¤G7ô½±Þ‘›¦òåü£¶~ m4’»9:¯Ú/¯Æ ‘xðÓ ç”#%ä˜|”óä §0§Y±ˆY )•sä÷ІN?PÍ]ðˆ—v'•ª¦(d´ÝkG2¡%ͽ²ŽDÓûž…­¢ƒöû“È2ìÌ`Q=£eU­¬HÉã«êýèPlòš%?å*[2tŸÍ@­8Ò^Ü+ê­A¿Úp{®œo_š{aQO£wVXXø—ódó*äÑèJ×!%’þA¡Çç 5ÇШ#ÉÁ¢ߤÄvJuäÑp+t‡f|øíφ‡òúëO§µm È¡šPð‚¤U±X 9ÝêFX†ŒMM§h§s©n™C¢óÔ +ZÅôFï`É%å›ËDÇsº¯QÒî›’¡Ø|3!êÈ—'‡½±Ú…ôFÃ{Š®„äP~ß!™:äô òcЬ6ƢâíuÁshyy‚9ΙŸè¨ÂÀF%š¼ÓÝ›XΜ^õŒ ¡øõ·*íÿ}Î! O:|ü´è½¥wlŽvå•ð}F(oìñ…û\8.‡K/˜>ÁÍøbîM²Ìœyz“jÄ»,‚õ–ŽQªxÔÿ£Ò5wbþ¬çe&°yž0'À= F`š­@&<Ñë•ÔµVÕ)7ƒ…‘¥ÊÈÑ bÈÓÃëîvÊnªA‰¨`Rt 2^ è7f‘CÆ“_Ô=Þ³è|t¥B@Öõ©,y€,—,˲XÃNU6¼f‹yâ`]`¸Ÿ#ѯÎßñÀ°ÉÓ6˜Gñ5Î"¤”)] ©íq"kÓ`:¹n.!€5¦·ª -D.²å¢¤Ä5Lg4ãž®²ùê’_c¿t f^i—G’<š“2Á˜Îg^ˆñÝ(dá¯=ä20MtGl&ŽM’÷ËAãHÅQØXÖQ±£0pEÕ¨D“ð“÷„‹°Kä™ÛQ©òø}oâ†gÓówIjV“Ež¶fúkŠû•5ɪÞ8=êÆ™ðñåqo®?ýú>‚4zœMÏO}Þ)”mU’ï×é‰ÇuÊ1x\,²b‰ÏÕÿûœ³\­³Õe‰ùÀ¢XsŽï·g¿Ÿý »é;endstream -endobj -1625 0 obj<>/XObject<<>>>>/Annots 975 0 R>>endobj -1626 0 obj<>stream -x­VMoÛ8½ûW zÙ°iKŽ?’›»mŶE·ñ{(PÐe±‘H•¤ì¨‡ýíû†’[×èe ˆ‹äÌ›÷Þ õu”Ð ? ­Rš/)«G31£Å<Áçõz…Ï¿NQ®g3qó«…t½É/\̆ŒÒv¥ó•XPMéz-–÷ŠîGI*Ö”& ¶Ô4Ÿ#Qÿ…×ξÖÀ*VgkŒx"äàÛÑônIIBÛ5.×+ÚæÏŒ¶ÙÕ¡ðŸÊº¬RŸwÚÜ”óÚÿ|û箇s e’ÌEŠ£Ww¯ÿyûª_>…œ¯_F ¶Íʧ WËG¯¿©§ ¨³ªÍŸ>àç\»§CiìÿR憒k<*ãK~•,E*悌 -2Èêágt3š¤ì«Í÷ TÛ¼­Ô˜B)uU‘’^Qf'êQû L¦Èäe½“$Mþãd¡+E¾”N›=yå:S^pFγìmòƒ4Aî•GȺ‘Nå,²!ju¬‡q˧QÊÞݲx’©+Ée©Ê«c©Ü…£¦/ài[j!²€îÛ8"DdQ¨e[0ÜO‰¢þ¥<(Ú)e¨±Ð>§ˆÎmd¾uN™Pu’u:ŸFØ`Mï£M~ÿxOÁ©(“#Ò“ pPŸúÓ•{Át3V;–-†¨A7S|`5"⺰ÊíÑÂ_dçdŸž_zï%6Pµ - !š†1âÙNW:t³hMäKÆÒtó°„maPè¨ë¦Òà"o#ÒÖ€ƒØ¬GL;½;õ#9ëÆ¹H½D/îÐUw÷™µcåþþðæ–ÊšÛéôx<ŠÌ{dWY× -•·ÓþÕµrÓ|Uø©6¹zMÙ dœZîEG¯œÎèMä’•×=§±}ØŸg. c©³2 Ò ³F…Ô¢sóV*D)ó‰5xÄýï;ؤô: œ„x­p w‰6–úÎÖyªdLð= ·”ìù—.Κ½‚ PÊQvL=ZÈ)×EÚ œ9áyqwiÉÖ£¼OW`a¯ wåpîÞà){ͺ½4ú7ÆÛ÷sO-ètŽ«2à &†Ç­ÆŸm\@sûñ3zvo±ÿOÕ­Ëù -™¨ÿÂѶ^óð”MlXK€ýp¼ãC¡ ×q'誃•i §žÀt8äÚ,´<¤€ ø8`ßr§`SU‘E6}?_©–(̇÷mݰ*ç­qŠu–o§:‹©Ï1`bÌ!ÔáÔ×>/XObject<<>>>>/Annots 978 0 R>>endobj -1628 0 obj<>stream -xeQÁr›0½óïèÌË8·dÚô’N[›vzÈE–EQj•„iþ¾+ìv:í Á²zûžÞî„#§‡cS P}’³œ2^»wI±fb-XŽ\pú^þNØG8ÖÛ’U¨ê Åm§Ñ&M’=nÁ+4-)ˆš‚ãBœ£Q+.XÉ -†³Wr¸i^\ó 8-6^}Þ=Ý¡ a¼Ë²yž™õ ‡`ÎÆMžY÷-‹…9ÒB>xÙdºPÂxHŒÎÚ6¥¥ì ôÐÛãt¢ëY‡}ßbîŒê0yí:/{<¯H!Lò„ÖØ¿ú ûç´Z†ÉжWaN¢ðÂEÞ ö3+©ò4vò+ÇÊ÷íE $‹ƒ¦t?ù³ Ý¢ê§q´.0üíâšôÿè¥3Ä‹¥ˆ-´#ÃÃ1úî¥mb?¼b#‡'3|g—F××FsA«Kð¼bõbãþýÃ=>:û¢UÀ«¦^S0vQú» ÝäÛˆÿoˆ•¨™X4ïxZäQïm“|J~Ú ±iendstream -endobj -1629 0 obj<>/XObject<<>>>>/Annots 985 0 R>>endobj -1630 0 obj<>stream -x­V]oÛ6}ϯ¸ÈKS –#ù+ÉÓ¶né -ÅÖ¸ ô…¦(‹µ$j$eÍÿ~璒㺆CàÄŠÈûqι^¤tŸ”VÍ–$ë‹ëäÿ9þúøî"»É’-–Y2§šæÙM²ž*zäó´XdÉ’æ7+|Ï𱊊ðb¾œ'Ùù‹å,¹…³,¹¹,Mq">æf‹Œœ™›¥·ð‘-Rüæ(–¸ŸøÚOë‹éý-e×´.ÏruCë<¤ÿÈ«·¥h½²”®úQJå=Šz#È™ÎJEÒäŠöZÐÛϯ×_ƒ­tmMfœÃ:¿Âå4¡÷·&ï¤×¦‰G甦ÃÑl…èp4׎rµW•iUNº!Ѿ6¤š½¶¦©Uãúy8auNqôåê­idg-Ðge\éfKçUýå5yÞ¯i’Îbh—²Tr§›KÜ•3´kL‡Ž.¥©kí/q«Qýi¾I„à•£½°Út.øÞXÑÀ˜#‰h7ŠD@ ñ3§¢1Í¡/vŽCô¥B¦ÎÛà…®bþ¾"2R‘ ÆÀãœ[ó»ÜÈŽQ!|T›\š]GÈßÛ/L×ä$<•Þ·wÓ©cZc·ñÛTî]RúºŠTÝBϬÇ`5KBêƒ0¼¡£‘xë‚×ȳ²Ôz>M¶k8ð¶ÛTZV‡<½©"¯VµÆioì -c‡· 3duªD$ê +BØ'<·BîÄV¹7YV]·`ßu‡FBb9}ÕZßtÛ„&jQàã{ƒ€!Â^#‰9cÙ9eá“Lƒx´;#»4ÎθÌR Çe6™¥‘½"Šc€p¨¤^m^ÙþÃtA`1ˆïòçûT&b?Ú+zzz¢5=‚ä´X U…G>ÇžX’¦ñgy–„nr½×y'** JÇEÉŠ=!† ›•1;–V<²×\‡×A>k ç¶Òsó£ÆÇ*=fÍ*Ü.ª€ ò‚*˜e26Ê÷ -=B4‡ÀÙ }Ø?u´>VÐ'tŽôÓǺû¾äVO6ºá‚8òòOL¢ N˜Ä£1$û*‡pªeæRPcl ÔaŠd¥Cã $nõ40‡u'K”<¤ÊüYS‘a5ò+´¢3"sC½öåËäÊ"ôEÓyêKƒ*óVÁ+3¸Sªe+5uøk(Їüð™kæ7Ý B‘3n­*vNµò¥ÉŸ+Œt’à"Çy€ê‡÷ÆxúÚ9R8–å(ñÁéÈí‘¡¡WFäÁ]…0qá<Áú µF£{3;Zõû*ú¾OäDÈéL“ ?î ³³|9»W¿šžÑÙªàóÔÚìbÓDþÐD…ï9G´cÐÆ·Þ}øDï~{à‘„J&î—× }0Ù—±²|^îw[+ÚRKà **ÇK ­´Ö –ÔçSÈ^ÙB`¢#ZŽÁð¡k°]#0n 9|@"ç­.^u¸3: Üï1Ì÷óšz,²oá<¯Kp·åÆ;t¨PÇÉÉ òØçX Ã-´t¯ZìC‚[1©¿DÝÂ©Ž“Ñ9LIäúèH?ŸÎÒ´‡qb†qª”Ѷ"ÏöôÕs3Ô@`äÂêÅêº z•ï‰\®Ð½ôg²&5¢Vü -ËådTó{,èÞ`yܱ t¼á¬¬Â™¶^x¬Ž§«çFBhjÂê,bØ÷°ª%ÄNñx\‘>v±õ˯§÷‹“ÕmXDØò$§»6ŽÃ;<ÿpÜî¸}Zƒ²EÏסT¦÷ãz0Á@S|*ÑÃAº|loaàS+œëw‡V…§÷éÃLǨFƒWǤ°_óB{…Æ<æµ ‹æÿœ•vŸoã`XÇÄf1‚éýÍö$[Ðd1{ïݳçË›d¹ÈÒ²”ýþ²¾øýâoõù2endstream -endobj -1631 0 obj<>/XObject<<>>>>>>endobj -1632 0 obj<>stream -xu”Ánâ@ †ïy -«'zHHÊiéR´—•º"Ú½Tª†‰CR%c:3ñö뙄.´Z!"’xlÿŸó$ó'y -“ dÄQ ³IÂ×ébÎ×”¿¡ ó`¼™B’@^ºØl1‡¼ŽcÈå(¯j§ºi@jA@Qk”–ô¤h,Àˆv'@’²¢VµÚƒ­6vxg¨Ó9¤@xÕF>æÇÓj}Ÿ¿1„É$J¹ðÈŠýžSÊ£JV/÷ø&d§5*ÛpYâ_æ@ª0`Égš°žØÐ¡å °1r©CÎfÑÔåþþ{;$EÄMjp° ;Ú¹þ¹øî ¹èpIÆ›t 4 -uÿà‚lB\ºì• ` DË -WÐÔL€Ê¡èW¥>Ð\ê—Ôq*R^ÐÝúŸš;8ˆ=÷Wú7=íîÀÔÖ—‘Ô¶|Lã{çóÀ,}*Ökóç‡Á¤Ì[cƒÂôs¹P¦®a)¼%QRÓÐÉqqY¶<ÞÌ6W¤ÝøÂ–ƒúˆzÉ÷ß|ßéýrÌ·šÈr5lW?W¯ékÚ›å–ï•5þT¨І3upnÊ-jFS÷ÐiÞf²jÏsîXŸóã—î¡ÔÔ²µmÕŸþD¬ÇüáõeßÖ´v‡ÂíKŸoûy³&Qæü7 ¹ˆ%SÞÃÅ’tÞGxð¬é7 Ö$;çfakRîd˜d¼¼| œÇÞÑ•8X&’ÌÙnR¢1°õËx½pÇZ[ß%˜f‹(›¥üßÀí$iêž=åÁ¯à/G×endstream -endobj -1633 0 obj<>/XObject<<>>>>>>endobj -1634 0 obj<>stream -x•WÛnÛF}÷WLó"h‰¾Æ/E›K[4uZDEPÀ/+r%®MrÙÝ¥eý}Ïì%¢7MaذșsÎ\ô÷É’øYÒuNçWT4'‹ ‹,§‹›küŸã×HÚœü¸:9{ÿšò­60¹º¾¡UI8¾À“bú¦“†–7ýdtßQ#ºNµ[úùãçÕÇÓÕÌ/h¹ æóü.Våô“Æñ±r}ÍZÐ9|Šº«å3ÔÊm®Üômá”nIYOBÕb]ËŒV•¤¢7F¶Žé*]Òý´V²Þ“Ó‚æËóศD»•÷§xƒP[±•ä`ïY±w\èoK*D]Ë2¤qÓ˜’mÖÞ@–ʧ8Í¢¿ü*»àD9¸2Ö‘jœNXa‘"èíÀýèðNÐïoßÌ8W Ç!Žc(u#– þúhF‘Þ„'`6ÁŸP@Y¡Ûx ñ3e­ìºõ¸âc'Œ¨ x',Ç[rÜ[õ¯•ux„çÆR­WŒÈ¨må,qš•T&¢’üï´y´N0™6£_œ¿ÜêFƒ­*Ⱥ~³ ©[Õt ’-àhÝ;*UÙNY8“ô$ ^ʺ¦6ÚºZ>“•®ï옋’Bò¹«º +ˆ)礆˜ÝKYE¿·¤¨“L(¶O¨¡8R¡ž8té+•™eeŠªŒ$Ñ,®87T®Ýâ{ºƒ¼Šeð7”3벨4Vgê’uœ Àƒ]èlÙNž²2ƒ1=f3â4%Ü¡4v£Y·:mÌ”Æ4 ;†Þëº TõÒ=•¬ÓÙ y•ìñR;ŠTe[}Ì/ B^×=}·¸h®Ö›àBApA+½ûõ±{ñx¹’hŒ¦<9‹Áp1ÍèáþîÝñíãïô›ÞV…Zo,=v£ÇK-³>~-zôPæt¯¢BûP fJ9 ­ùuA7¨ÚG¶`è#T>Þ(â“C'n?ÜÜŸÒ±möäÆ –2"W‘c/ëj±–\´ã“ü}p;¯_ F3¼Î'4»ž{Ùÿpsÿþ†>ú^ @Ô¨d#û–è7ú×C~CìÖE+i,qµÁoC–Îñt6fWc¼PòÑá„ÿ±êüÕùztŠûendstream +endobj +1620 0 obj<>/XObject<<>>>>>>endobj +1621 0 obj<>stream +xµWÛn£0}ç+FÊ>´á’š}Lµ[©ZíMAûT)rÀwS_ÔÍßï˜iiÚ–(Jñøøøxf<ó`yàâǃ« Lˆr˵]øìÛðçWø8Á¯ XסåÜà„ Næø».„ÑEÆ7¬¢UŠöš 㻣¥p2¶v$´`jë”$_=²bÍŠØ–ü2¼·\{®=G¼`>Ý.–.Ø?²=Pb»J˜jU)áãÐ1#ÙÊì¨þ¨³ž¨%©‘:IXÄh¡NU¤?L«ˆH¹TrOü-boU‹øšÆä®±ÚiðA žÁœ•°)úl/n¥9"6W) âû½àÌY%Á"ЏFGÍIA64GŸ=rÌmìןl³Ró½9 †«¶+™¢Ø¡”²? žQ¹ Öç.Ç'¾Â±Ý;óUwF‡Öí‡Ôá è.U¦Cë¬ÃèÐ…Ä‚¬Ã–TJÆ‹þ¡ÔÐ’õÄs¸é~áõøÈEܟר!fnÖjj'ÈOŒñp¾„;ޱjT{^„ôÁ:Ùx’º,¹PpߨXSÁ%ü™UõfHeúîBÏMÒÅAKÚZß][¤¾ê+ö¼4x$à|ƒÿ_±žªMº+=-E†EnòI›ÏÀ½v•3 w¹×骨ð]¥¶b5^=¯6|OëTÖfÏΞ·ëÆ“ÀÔî·@2ÉÄ1Vþ¤32VP ‰ÂjK"Øw» – U X <R|ËŠ Ä\¯3 +¥ày©¤‰¾Fð)v(¸h³!iדÀöÍÀþˆ}ˆTƒv˵€%Éבcà "^4Rf • +®7éΊ”eÖ³JI5×'l£Íõ€MŽ¡MŒmþ­Vunæµ^€-Ó| +[qX.¾_/à—à÷¸|á‘6‰¡Ê†í¸1_¹¦›ºð|{fOm‘·a¦ø+á§®*0?˜ÛÁl‚Í—1u}ñ5´~[ÿ³_endstream +endobj +1622 0 obj<>/XObject<<>>>>>>endobj +1623 0 obj<>stream +xuUKo"G¾ó+긑`– 87/Ž%K±EÌDÉ!—¦»zw¦{¶°þ÷ùj1!DÆ€èGU}¯ù>ÊiŠ¿œV3š/IÖ£i6¥Åz‘Íð¾Â÷þ½¦C»0_ϲåõ—bôùéžòܵ\çT(Â=Ó)òS¾È–ýjjE4ΆŸŠ¯8° ûøÀd¶Â¥…úô‡±{cE A6Õ{íɨú8KÆ’‰dò^ÛˆÎ*-‚VtÒ>àrŠGé¬éèMёÂtµæƒ‡“×\Eó9FDÑþ†ð3ÿ&³e¶¸ìÆüS­z'gñ&NÂTb_çQQc:›~Œiç*á±_`ˆç·ç? Mx mK +ï!ê:ŒITñèRy¤ÆùØbqÑ 7Œû0õõA Aj…á‚A=¡…d¼G_…—Ç …×ß“Áints5}eö^xÌuh—£ð¥Žÿ©Î·†ÔpÇí¶W@wÚŸŒÄçÙD”ç™·U*KæªÊCBml@/N¥J‡“ŒŠ#@Ãk¯A£U;žÖÕ5…^w»îþ‡*ÀÐÌUí%ýþ +àOÚ*çCÆ;>?É^k“UqÞͲ5ü×l¹¢nà Æv}²lÕX®Z4 ú ŒÔ©ÜÍôöü“¶”QmïÖElW—Λx¬1nÅj0J7h×°@¯Ñq^qLu>™,W…¤S€¦ ô–Þ¥ª&AkKûw:wVÉ虫¾3çÊF¦ +9p.Yù7ª]Žäºc˜–L'†ƒÂ¥³,9&%¶,Yh¾îxdg8ïSÑ-úT:DïÞµº ûà«ÿ…}~ßÅÀ¦ó6 cÅö“ÒÜ×­pH9ˆ‡ñŽâó +)]B ¾ ³óßB8-•+|S_£ï¹i#ÛdBA¤Gçž¡p›ü‚ü––q¨·0¶[ CÉo7üU3RRßÄbŸ ,†ÌÖY~O“EŠˆÏUFge•8áþ-Ø‹ôd½`uiÃMB:Èn }6¿áßñ‡yé¶]]V];®i¼k¼QÓ‹‘Þwˆô¶Ýk? ÉOlˆÊ[=3,8p2°IТF0€Q—œ’à6û¸æó«ªÊÕ½?»¡9M8ó;³öÑ`Õk•Z–ÙiŒ‡PˆòQ]J|òɶjT›úzàÖñìh¤€Õ‘UÖ¼î3&_⩹žÓ<¿ëä¼{xùò@[ï¾jéÑÉT# Ûyy®Ép`²šÞs,Ý|^.–ëly7ÃÓ’wLïøä/Åè·Ñßõz1endstream +endobj +1624 0 obj<>/XObject<<>>>>>>endobj +1625 0 obj<>stream +xWQOÛH~çWŒx)HÁ„Ú7(W éšrÂRé´±×ñ^í]ß®4ÿ¾ßÌÚ!1<œ*Jpì™o¾ùæ›õ'SºÂ¿)ÝÌh¾ ¬>¹J®èz>OnéúöŸgøñš +ùbq›ÌÆ×ïӓ˯ŸhvEiP‹›[JsB˜+\Éiµ§éÇ„ëÆ»ÎiåÝ6»&c)¨z¥ÎÓ%Êô&F¹˜_#SšŸá±iBß7ÚoŒÞ’+öÏÆG®i:í™Ý$ ~äùÛ=YÝnÿÉ)8¥Éu EµÎJeM¨iµ£mi²’²ÊhÛÊ”%•e:ð}• -§ªUV‹GS 1'$h¯èb:ƒ»ÈTU¡®S)LK€Ó„ÒÒ„,s¶UƆ×m©ZR`Ök•ï¨uHX€§ÂTš”Í/tc[ +\;É=m©=W~~rkZÀ%Ü2`eà·”;°®E)YÕåúHäH쇖²ÎãC[íH­€¨r'€¬UágHFÉS$;(šPp©ÕÆ B¸ÓˆTUÄ=é©N苳…Yw^µÆY晿ÝK¢TVZ[n0Ô¸+£Â«®ÖôÌÚáD>L×f€Ìœç.ëjÔ1 -’k–Æ·gúalñA¯Ð'x¦JAžhj æ/†¼˜~ÅÚXiB6ª/Ì%ÓR·÷ߟ ºö”~yº||²úødGO3Ä­Úq_ðÉÔf.6 ¢° +•y\Õ A/gÌÊÃòùòχ»§Ë»‡ç—óˆÝÊЭQSr…nˆŸÐý0x[ƒ®,¿§ÄcB¦x“µð®–Æôò’DƒO£t*Ï7@`{•Í|æzˆ)C+@ +Äÿ{L‰¶,¿\†>ýx\>:Ä÷¥Y—PŠw5úœÇ–(ƒÎ@ܹb„uHøÂ6™ì¾*ÚבÄ|.+ÅëÚµÙ×,©AÆ2+ê}ëŸv×èQNc!_Ö1Ô.fA1÷UïNqPìŽ8ŒJÁ+PùH B"»í¡OŠ²á“³ƒö†®iœçi?ô×÷ÌR&¨P™©L‹IÀìõaïèg[œ:P4Nµ­W¹ Ú¡ªàXà­wbƒz×p¹âœ¨hDH¨W k4šÝËYР·¿öröñåüå<ég;ú2œR|ÙÁg»©Uà½j¡VñÚ»®H,µâŠvï9‡”ŒHÊ]Ím¬ÜšóĄ̛[µY·%µQ¦bEŽEýG02*ëö{ˆÂè[¨ý~ˆ½]Àd.3Ј^ÈêÄ“8"°zKSš@–/–ýÂ憷v0×ç=šˆìPÒ2;âDX"q6J=ö—ÞUÀGY^â·zÒÛÙÑP²Ÿ­ é¨Bávç:¿ÏÈz4Ýc†—95p«ãîõ¥¸’vªŠ";îÊ?Ý»õi¿'`$#ðÃ:àdýfÁHÀMöÏöe¬ø €µ¥¨QXx®£ÕÊŠâá—ãbÑUCæèG” e<‹›6è +[ +RÛÏ"€èy4C·²š-•'a„ÿ ÊÆ­ÈkEz +Br‰þ¡³BÚj:ß8¥>#‹u8Ei–îçQ`íÀåµGÚÉ;›MÿRuƒ-…9ÑtÚŸ[†8§Ñ­_7-^pÈVë¸Õ.¿Þ¾¾JÝ|âÓòÿu»Æ‹áâã ¯üÊvµ`2þHOþ:ù ; Âtendstream +endobj +1626 0 obj<>/XObject<<>>>>>>endobj +1627 0 obj<>stream +xW]sÛ6|÷¯¸ñt¦öŒDëÖì¼ÅNÒú!Ž©Mü‘ „˜$X´ªß½¨0Œ§ÓÄÉÈìíîíAŸLi‚¿SZÎh¾ ´<™$š_Í’]^/ñz†¦\>¸yåýÛõÉŇš.ic«Åõ”Öa›É„ÖéÙô*™'ôØØM¡KìälÑzc«óõ7Þ^ÜÝXQZn'éç(t°'ÌÃb¿¡»ÐÿÛÐXXOZú»Õhð!Ϊ›¯ƒ:ÃiÀƒ˜C_$ãr!-ó,Z +ž‡Oë~Å–=ÄñÖ6 +ªØ·¨"ÇüäÒ Ñæ|6’B¨ÙïÑ»›PE îo-h¬T«ÍŠ®s$žd™K|’Áš K‘‰Ù Lä >ôY–@ ri¾1ÈH~!‘†ÐBÔ + F¿×€ÁLÚZ̈@kvÇÃ^Ú ß3Õ´œ˜'µÔƒÒÁ³.ä®ÀË'F½twlò}pn¦]Ú˜ \±Cf2b#Ü8¹V¡ŠÒØ>™És-7,àþi¤­ùYÝ¿ D‡ Û*Zß=^ÀQ‰ä¤³*”ÑÜpL "¡±­ô½Ø+̾ZA¾£Ç%à”ç&…(|'’IÄE72èˆBd|¹Xá ¾0#?¼Á‘ ÚñCï°ŠoÚßÞZI(»Ÿ:' ;«¿ŠÙë9°*W¹ñ • P˜Y1%8åÆŽq«±ç(¸µwƒ0²Í‹Q|Å“@ÛŸï‘Yé3êF\Šå¦ó%#lÚ ©@Av°žëUý£Ñ¦C’¹×»ÎU[xÄ;®Zÿ³ú3?j5¶t2Θ‘8?»,ê®,㥛Xq™ 6x*ŒRn½  ÜÅ㵉/¸ýçqIAMÜcP3¼ˆ‘ôêk—vyÙ]«FÂ%ª|-xX‰æc¤;@#†8‡ã%èæjt|ý°ºª… +®vÁûÇ{bÏ‹0×únÍ >±GÉºÂø¿ß¡?¥?FÚxó7ü+Ýu+8ûéŒÍƒKÛÍ•d^(ª€èü¦kì~|Eªuã‘d#B¦w8HéBMÌûIYƒs[vS@näñ.ro”Ó¾Ö]Ïi1‘¯[«·oßò÷³oÜnïlÚ–¸{ ~>cÜ-/'7üí㿾Ï].®“ÅÕ ßæxádɼ_Ÿüqò/öQendstream +endobj +1628 0 obj<>/XObject<<>>>>>>endobj +1629 0 obj<>stream +x­XÛnã6}ÏWÌ[¬­µìÄÉö¥°“ º@“m“}1PÐms#‹®(Åï^dYŽR´¨È´HçræÌ0Ä4Ä_L—#O(ٜ̞N>ß~¡øœž–˜™\aÒ0‡ô”ôâ‹è<Š#úEï(ÕÒPRhcÈT‹\–´(ôΨ|E;]<ÓÏgO? ìœâØ Œ.!¬wýîeHP¢7ÛL%¢”)¥"Od¯òR¨œ¥nª¬TÛLÒF¿ðï­(JÑ·’ÖÂP)žeNwŠ5ÒË’Ò G#>ÔÈYˆŒ^¥(°VÓ +ú–k ù©Ä@”$’µÂ*Ì®¡L¢‹B&eŸDžÒ£Ø,ebeh!× +oTNFo$‰B +èà(Ó:5[±€ÂzÙå¨5t†‰Kµª +íOÍ^#/i4‰8½k•ÊN‚§­ ,¨¶Ó—:ËàyúÉy|H_‚ÃÏÝnúçϼws7›Ÿ†Ñ{°ï>þsê^`4 S_û1†7×_?Foa%5‡Íqc½uÊü·O§¼u<°ã½®£n­>A«Ok;Ø¥ê¼=ÄðɃ®Jÿ=üÌâßFøéÓèÀAVù‰nY1Þ¿¬}ããߎ÷¯ŽÅtGÝïê^°Ÿ9òºƒ\óÙ¤•\£²,9Òô~ÄYƒ'2OÎ|ÕyÂ?Ç>¯0ði…QH*ž¾¡#M½•¯yïo÷.…iwR3ˆ)™8AGcÏن潸O£>çgÌD9HD´x%° w¼è«FX3`Ú4ôO¹.AÂà¿Ha˜Ž]-ˆƒÆž€™¢/hÃ$›ƒcuN +äZÇŸ§Ïëézbl©}?ÑÔ˜ +¼»Ô…¥ï H8g&gÏ2§[ëèúPu“lQ’™œë€ʼº‚Í[Ì'eë‘*T6(0ó³ˆîœ d‰vxb:¦ÿ=±Ã¼½A!Ãvé<ãZ‰ïyOɾ ‚ú ˜ÕÏjd«©¤LÁ­µ½µ†šO-›m«Ë +NglD´%Í;‹4Œ/jÇs=k¹¨+h€5X¨ +º—åìÛ÷GÊá/¥Ëuûä²]»¦(í!4‡'-´f°UÛ>É ÀS¨rÖÔs’s +¶uWxÚf"AAÍI" Œd^¹.¤léáÂ@zÄXˆx(¸ØíNk°ï²´õ©Á-€ÍÂÖÔ˜­C¡ RãpϹÞå\¥3 i[æ Ïr;£’*À͡ȩɩ! !}h…VŒØÖ©PË6HXÈÞxï ¦¬ ˆì[ˆwÁÙä÷w¼ÚÓß›í²ñIz¹ŒÌZLBŒE•X 5ƒÀ¤2ÌxmÉÈ´x³ósÑÓf[ ø$µ8B_'Õ‹M2«>™½œÒ³”è©Zgc‡.Ò€¶¥H<ã°·¤àÎZ=¬cÍ0Á9Ì»xßj!ŒÝe£ÖH÷ˆnuÑRÁ5¥Â %ã269/hºÜÜm´ÍÆ£Ö%àA$›ãÔhÎú·Á]ú~´o·waÏ*:WJcûYdÿ©¨Êµ.T)JDåÔæ`'Ç2ªÝÍûzQhËm^Õaô.Ç ™ˆ +Á;ˆ +Úm.m]payG[ÎØTæÞa¶pË>Ê@FW¹®lô–äÈôԢ–Š/ §@‰ÑU‘Èàñp‡¹kOGÛþXF“KšwsøÃ­ ²@5§»rpñ™îi€Ï ä¾´É”+ý‚—*ø¾Ì^+C/pmÁ‡ØqTs#ì wš)gâ´ÕÊ–ð>_ò2­Ÿ›·›yaãpáÄ3ôª+Tî*KY)®çxQ^j/—jµ^èb­5.qK»—‚ÆØVDˆ&‡ÈØW¢ãÙ¡ð²ÌÏ·Ç׬G×úì{²™-ò¡äýŠ< + +ù–kF÷[hßb„÷ü»µÇÓ¸ 4î`V~OQÍpK³Ïkû¼±O{)û|{åoåñä2^irG¶M|œÞͦô[¡ ÎèYP Ê—fÖb6 .‡¸e¦ÿþ?ç“«hr1Â?x÷ðŠ¥~}:ùýäo‘(Ñendstream +endobj +1630 0 obj<>/XObject<<>>>>>>endobj +1631 0 obj<>stream +xíWÛnÛF}×WÌ£]H /ެE ÉrZ£ìÄ +übÀàem1–¸wiÕýúœ™%EšU‚À@­lËËÎ}Î~äã/ ã¢1¥›Ál9xõÖ§7´¼Åƒñ‹Œ|Ï÷}Z¦—UR(Òî·of» ,p=òq&Ç9ΗŸ>ÂÀC\-%j÷-¢›y{)‘H‰DJtÃRðKyõöˆ‚À7 +EÚB[Ev[¿]å†t^àj½Æ¥"#6ŠK¬ÕC\ÆV ©Ð´‰ÓU^(£TAqZjƒ÷Š'Ò·Ý­^cÿØ;bûzKêÏxÛt +=šBŒÖcÄZa‘¨ToØ:EkÆkè4V•””zkpÎ-îë{C·º¤˜æzçEýR­4ˆ¼•6[¬&óT¤«Rù_0ÞB‹H£un,ms»òèÌR¦•qáHžès¥Ê§¼¸K®Î—ð¸|„×ÈÕüúP `3Ï.zzã,+‡Åæˆ]&:DÒBÙÙÙù%1œ¼:ÿðû¯Î?^üÌ~òhÉ™[¢Tw°N•ÁÖã\íéêEÆ7'0Žú›éÚÄad%‰F)dýl©r¹/u‘Ó8UçùYܻɱj½6œ%©/8ôÕL"=gšÊ`*2L臘E¡+صQ(Ô‡8½W¨WĘ>Î/P¾¥¥ šÔ$›Ð[tón\L`YòÔÓ›¡úY’s)I>-ªMH¨¾uçU›…Ú(šÕUÉ%ƒÙï]¹rá|J<$”=Åq¢+ë‘Ä›…gÝjÞEµT©Ê¥6Õ7¢Ý&]©¬ZãÕ¸§©m€Øæh¹R¡ÀQü0œ³ñ¨mI.0ÁÅ z+­§QK=ÐpÈ4ú™÷wúÉô4s·¢ÑîýÈO:P9 +:8ŒìÀ™ kd¢?Ð Xß›psä×ÙãnÔGÜçUoÓ´›¸YÚ+ h (ŠâP4¸™ËñtH=iÝ{׌ì×?\ +¤ÏÚåI»œË²–üí_ÊA¡½6uo²·%p¹]îìƒóíÝÓ¯›ú"bêÒ›ôJÝ¡1 A£XŠÕµ‘Z+t1Š+»ÒenQÃJ Òvíá¸é3f«ÞFˆƒ;„±yI`æ­.ïqÎïV‰.WZg„îp@dÀò ™ÀbáõzÛð« šcØTFMôèŠÑ”¦%Òg,ZçŽuì1a¦)Ò +!wŠ)˜Q…ßw1èi†[ekm †˜32ìЮ7Q’1B +E&"ž :&ÖÄ+mΛó4ÄMÌš{*»&¥"¨U××n¾û´xúTkâ÷Ýxƒµ ªír‡7\l,º–üŸÃúw0õÝ {1ý›ñ¼AãýxŽñ­©ëÍMU$¬!õa½!†oÂzK% @á’Ê™-E5²L꯳`|ìù“ˆÆ8»o¾é»Ù”.JýI¥ÓZñì+ã6ŒŽ}þä<^{G^àÑo€}ù”qgÎ7¡1ù áýÂŽÆoü:ÄG+ïößð½Óåàýà ‹I8endstream +endobj +1632 0 obj<>/XObject<<>>>>>>endobj +1633 0 obj<>stream +x¥WÛnÛF}×W ò¹h‘²e§@ìØÔJ -Šº0VäRÚ˜ÜU¹ËÊ×÷Ì./ +4ujÃ4o;sæÌÌ™åߣ˜føé,¡ù‚Òr4‹f4ŸÍq<9?Ã1Á_%)]®FÇ7'Ǵʱdq~F«ŒðúlF«t|£´(Šý„ÜVRaRQP)¬“­+ódñ?7Ùz­¥£„îÇËäáòþˆžTQÝë”ÄF(k·õ62SòõÀÖÅoïŽVG3šÆó(Œ±ÐY°TÉTÉOÒ[(•µJoÎ?Á¿Ô®RÒFÔ@¥)ñ2aI€ŠlÂI`S9i×éVi‰ç  ’¥ù$3â ¶µø7yŽX8ô-Ê: Æ<âúQÒ¼êøfFo‡Óä$:aøwê~.=gt$úæZ—³èœ×LýO·‚(ÜhޏÏgƒ5ÁOÜ/b2û+"\_Løxéoýñʯ'4°v¸ð«çHñÅýø‡û#àlw§oûÓ«púbÓóÞô¼7=Gm4^æÁtc9‰£EOuÒãedý(è€×™‚äáêÅø@d‹lö§¾¸ÁûñõáÅNþ ó>ì%Øê¯@,˜õG&o¼ß÷0y±—ÿ\e宼.p—BrÚ•J"gÍB'—¾íµÑSQ»­©´AAY´(!"lêP§I¨.Ù¶2Z}ÆËF[ZK÷$¥þEc úš^6ê‘í”®¡h†LšÖÕ„ÖÏäÇm•…,™ºÈàq¨gV¹ÚÃñ¨¡šÉ"Èλœ$bG¼•©9ì1ëÛ‡„r¡ +ëAç¦(Ì˨WjÁëÆEghÉœÉ)5åŽ-áB“„~’U™ä'¬i*!Êë<‚S=R^‰M mnâ|Ö}‡?¨-Ï aÛŠhľ0@Ù‚Ô8i'0í=´FµT›íÚÔÕÖÐËb샟b|µ3#޼ áNÇ…s²Ü +ÈñZ¦ŽOÝÐ÷zZ˜/Ÿ˜€ÂÓáhã8#íôÈ+Sr4ÓƒÙÅ̼wò7itGsÏ(ª"­èÏA³)=¸ßß-ïš‘Ú\“V]ì}åpfqÈSóšO¦rÏÓÀC>Ltľ§:L[?˦ʚÃõX‘¥d´”îòÝû;ßA`/ÔÜ$­À€Ìs°f­U¥*ºÐ 2ï¶‚£A¿xW JÆKW]T]¢Û2ŸÂŽoÞPŒMKŽ|ŸÒtÑÌÑø4:èN:´Ù†êlPô¼ÏϹ#èN”kÑî¸}°^é {Z®`×ï=š­^ó4[ìØo=œ Îîz«ƒè[#ˆ×7ùÁJÚ›šÊ$‹,óiîûÖì˜å¦ŽÉ–륂PH5ßùV Éj]ø?¨Ñ¦½þÜf- +ûV¤Þjë®@»®N»-b×VÈS½Û™ÊÑO´—¾”ò$é7h‡Nd90»«HEÌqô&Bþ¶‚DeïD…>cÙÊd.ê·*lG„v`>¶r-ôžL‘á-ì¿4= \`UÕõ"zƒUÕAÎ7è[o6ûÄÌÛ®w›J@Ù|íaÓ kL| ˆ…Ï=’«ŸóÊ·:Ø÷°ôZ›×œl¤ùUhN»*÷m»5õ³ëÕ—Ì¿Å÷øUèúG)¹ÜY¹«ØíaZ4éÏd… Û}y98øVáêÄÀMÈ’ý…•!ö?šfV5}`X}Þ/¯á„ Å·LDW†–ïWoßdSù`´4ØÂC=4ëät(³Æk󬕎UèÇ  +ϺzØ¿¾2´[Hf§¼kT•J|uX)C¥-W(™Ikž…~Z{&3‰IX ¦—_&^ÿÔÅ¥Gt•Ü*å ðó×ö Èm˜âÌ{=¾9o5^à;ï|Ž/ºv‹|q{yA¿Tæ#Ï¿«CL¼rÚ.˜žÍð!“¿­ '‹óhqšà³‘_glæz5úuôñ—<„endstream +endobj +1634 0 obj<>/XObject<<>>>>>>endobj +1635 0 obj<>stream +x•WÛnÛF}×W üä#É–l‰;—Â(츃<4}X‘K‰ ¹ËrɨúûžÙ‹DÑrŠ80‰»s9sfÎðŸÁ˜Fø7¦Ë Ï()£hDçÓëè‚.®.ñÿ ~kIÙà6¼úpAã1Ů̮.)N ÇG#Š“Óf-i%©Ñ´”ddCmE¹"A‰.«BþK¦]*|-Õ¼Öª”ª‰èÆÐ}žÔÚ謟¬5ÖBª“–P³–ø¦–U‘'¢ÉµzŒh8>&ðZպщ. -D¹„/¡”n(ië׋-U¢nò$¯D#9š'öLDw å†*mL¾,Â)ÊÚ¦EâÈ«!Ñój} çÎå—»‡E7B +1Q)¶ŒE*³\ÉôŒýoÖy²F”HªÔμƒÍÙ*E²ÆÙž»D·EÚAU jÝYÿ5-ÛnÊZ!o.…³éϘµµ²?8)I'›\Ô¤ªtÝÐÚJsÒó ìD)8@9#ÿp27€üMÆØR7’5b[J©Pt•å+ ˜ÒV·T¶†+oöð±Ùû]‘rµBèÖ,¸²ÑõwõS¢œ Pጃ¨»_rÉ…GÈÇqFYލKÜ£ þ Ý=RðçOŸ<Öy)ê­s±°e9=‰ÂÙø[­šZ=›BÉb8pÙçÑÃyüöq8·‰ƒi. +½2ã—\¥zcèzJ™ùOqD±¦F"‘£¬E)-e¸p4|ŒÔ8C‹l¦‹Bƒ,+*@Mîo¾ûתÐKQü { ÷%g)àԔˈkßËÈJC¿ñ·¯>LwSdØäÈèB{CsÞqZû_»«û´¿º–h¤cW¸Æñ<}‡>u†™#‡¼ •…ϼ1¿}Ú?h ;,Í,$÷Ÿ1=|Œéö=-ÞÇA +¦²qNzR:àŠžéÅÓC!É" <¶Ãu©=ñmÓî1=uHvÛú¹ÓÒ•­˜P®ÀÇ-„Z¼fÈæÏÙ@ÜŠT¹L{o¸“2‘ÌÓ ¿û@ƶlhnB›ï§¯I¤u® e¨æŽERÂ"ÁóÊjȲõÈŽBfyé’Êþpäø^€ÁOAaÖ€¹0¢¸(¡£®§g~L0^áÛ‡x?½œD «<û¹'LÏ'9Û']3ït .ô’†“ÿÉ„º±ûÈ™A*Ï/‚u^Œ-«×4†z³ŒÏ/Ü8O£YD‹=v·bf3Ôæã§?~ÿôñó#›îîÃÉe4c=ÀÔò,úG+õ,Î;€\] ™‡>Ï,²B=—–U%!5L6Äýs†¹Ït/ +˜Í¿ž¢|ÝÖÆðx‰¦~ÙóÊ '«Âaì{›o݈/d}†iØ@rWk›Œ¢]l¯[ aèT…ØB6¹£¡Ò|}aéÐsÌ{¼³Ò%`Ù€/rÄ.Tð®Ãaº'Û#-«uI…Në®ÍÜ_„f¢ÂhW›™í¯>q-·ìæ í{š‚ñuìU­Û*Å9}ðš=ÃR`ÑK-÷}<½tCZKBhûMX„°kæFs¢éÞçµJðgY€©mðìrÄg` ¨Üñ›_Ï/§Qa•À²âá>ˆÒƒÊ›ú­ß!kÇ ¿[(y‰}˜ýAxô!ç¡Áºû±Åô¸{»P¡SÂãd¬sCÓÈžà]°— .qMŽ›­€Î®ˆV-AÅ]S:spÔÎYÏ'7%»ß%¼yÞÛ&øü¡„>¿>a—YŽàpPùÅ5†ÝÃój~E… áeDÖ5ødwxæXóX•âAoÔžV؆êH6º‡/¼Ò.àèÖç@±ë;ü%TFtíGúÄtò?‡ÉîÀá·¨Qtų;œ<Èðg=:è>?K~vZ^ é/³é‘²Xõx¶(þ%ʲÇn˜%O—&¼`Ù=/cÿ´y-½Ø]ùms<ÃûìÕ9Þ\ÇN±7÷·7„}ûVX¨‚{åܽeÃ…áåЦ§¿"‘³«h6@aùâxÌi¿þmà@endstream +endobj +1636 0 obj<>/XObject<<>>>>>>endobj +1637 0 obj<>stream +xåWKoÛF¾ëW |© X%Ù’\Ô¬Øn²Hº‡%¹”“\‡KZÑ¿ï7»KF¢m.½4A`û˜Ù™ï1üÒ’¿CšŽh<¡(ïùžOãéÌ›ÐÉlŠßGøWJJzó 7¸>¡á‚G&³)1a»ïS.ä×꘶ª&½Vu“,tƒÕZT$E´&•à?’t²Ò©¢i¡IPŽå´p{#Qˆ*¼’©HdXו,),ÕFãg¢Ê£àsϧþpìÅ!ß»QåãªTõ“GÅ–n—ô)-bœ E0ý6øã~0òýqÌ¥Ja†ØŠb…S}Ì¡7i–µœ}íÄs kz8Y…÷®Öü6kdó]+Y¡l¡R•Œ)W(„J°vLZQZý ©PJ²Z)SKÁk¾„¯z8ò(PH÷vâ/E +B-žQŽ7ª¤‘×%QY¦6i±"õT¥ +O ³ðç*S¡ÈþÂ=/´ ÊCÍI(IQ—9ôàÚ§3Û÷þèÄ;áš“û«mlztއ5ÉúÞlwã^/Ïi+õŸJ™È²äÂÙÆ¿·YiÊä³Ìèœ&§6×o í&œÁ¥2åvýeüØ–›x5€·WOTÂàÕõ˜°uÜZHlD‰_ªµƒ4JRÜ…Í:E3ÓöM 2a܇½ç;({®£‰­i€}»èI”"— Á}Ô.W å]’;|W·” ¬›e‘‡µ¨L´µL“Y‚t%ʪ~"Áç»›ÊïæÐ5®SB†½Ñ´jZîÊãHxâÞ틸º[ ›ÄHÌZ<#ÍÌn錮qV¶i6‹Ñ&Õ æ»Màs…¹–¥'N5ëA'O ¤T9Ú©œéôïÂ-UU¼ƒú^úuëÿ†Œo’¶ Ðìͽ °Ççg ®Ïh—`»èh O½©GKW iΚεbÐåÝíÅÍžÝeñv»î ¨©ˆc>µK\Í}­h—VšÚþæµ®¬ðBÊ{çãtÊ¿/n ki¾¥X&¢Î`y{ïË4嶉üWBÁ^<ÐfT€ÒÐ +PÚ0£‹6·ë¥íY\óiÄs& <«X9Ç +K))MºO+å*eE€I{ç©h YÍoî–dR}8´ùi8ÿùáÈ +à§›Å]í"n¬ãþòC—±×xwcù +ÁYLA3Nƒ•×M [¾Y6á.CÊ\Bq¿ö» —6Rùî;Pc^é¨LCï8êÞe(×®ê¶:ôOÚ ýÿqTÇÄF]­ï—4þÛ ¤ucœíìÔ(6sÁÉ6+vÓoF<¦Sbãõ»ŽÎÃ+³¢=ÃMeñ†ñ,ëUmæK€®Œ±³h›‡q&3ïiwN݉»ÏÌPf˜ÝkQYzÄX7³^,1Úfgvj‚šIëàúî㇛Å/´¼¸_PpGó«NÀà×+º½XW`9xb—X®¦ô;´Ù§—Ëü×6z2Á—Üȩ́†#¾í*èýÞûK4pJendstream +endobj +1638 0 obj<>/XObject<<>>>>>>endobj +1639 0 obj<>stream +xWMoÛF½ûWLur›Ñ‡%Ù‡l4Œ6N © +ø²"WâÆä®Ê%­èßçÍ,)Sk¥( ;!¹œyóæÍÿ½Ñ?#ši2£´¼&CšÝÞ%7ts;ÇÿÇø­4mäÁx>Âeôàayññóæ´ÜÀÖl6Mni™, ‡´L/G¸‘ÐgW¥ÆnÉ«r­¨v´ÖTçšJåk]}X~ƒ•‚•ëñ<™ÁÊå*ç“©+µ—ãƒpžÖ•Û{] ÈxÊ4,”ÆêŒÖR–t¡ÓÚ8K»Ê¥Ú{j<»Æ;*KáÏ'ôI¥ùñ{Òõh’ŒÙçN¥/º¦ÔÙZëI‘mʵ®Èmh§*U²?OûÜÀÆÑ9®U :Õ™¶©¦ç˵QþùÞϯÉç®)2ÊÕ«&c9šÈo;¡‡ìnTSÔ´¾ø½êê@…Û÷Ý(›ÁVãqŸuF@—£o üªµkðלÕxìuÒúÏfÄû¸¡ƒkh¯lç¯î±g+×6Xó`†ó6pð¨_u1 máÖª ·Îñž/× ØÛ0o¶9È v¾;®ë.R³WèOm5I^CFw®Ö¶6×iÙs/@":D9Ž^bmqÓEÇ2†®êœRXº"åÉ„RhõÞIáz(jŸk‘þ ÃÀ-ÊC}7%W!Ý‘gÜžQý oñ¥F‰¦ˆÅ7k b׈QƒcGŠQ=B]›Œ®ŒË ,Üå2щ± _Gî¦0ý>ɘ«2h æCg|Ú)c±àÎÊ}\Ñ •îéûƒ9Êœ£3º²Ô6ƒŠ$}ÜtTáðK09`¸-@­Pí(‘0Ym0ª+£S,&$Ð}î +ˆL]Ñ÷O #r¹ÂM(!ÀfÓ‚Rµé‹ì"¿¦öäöömÀ \W¨†\¿#RÙ9ïÍ`·K³m ,–]¨QÌ7´鋪FgCK;ÍÙYÒ%ÐŽ„Îq×n—PâÆT<ÄxHD¯ÍªFq¶ƒù¬qô2œhÛ­L¦¤¼ú3b´'´³vÛ>>%Œñ¦ÖÐ@zx6(µ€S!Òè{žYYª¨´ÊœÞÈïyg\<¡:”)Øw„ʽšŒ§lS£ ×&…`³Æfʦ‡«nxÃ¥ !Få‰íÈo»žÐ†ð³þŠt=¹ ƒ›Ñ]B_ÔKo1‚ƒw†ÏnF èôd¨1¿s6¨ŠŸbŒ ,?Œ< ¢Â`â +(±`˜Tê µ(•)ù­Û”KqŸ®÷š„´2¤ëÔ2–qä«Rwê'–4 Aõ_‰G¶£È]·PœlF²@¡öÑ„Nxë”ß Ë'Œ’·v{úº”æ³AIqÁËD*,Õ˶r¨¡(oC“¾n¹¹ã†Š?-é7ê1œ•ŒWq ñ½ç(luÝzÜ­»aBÌœBÐÏÈÚv¤¬u ÖN4X$÷ù²TY\ ¿Í1;Â΄ØDۂàÚT®<Ûâ ¨1ÔB¾eüàFØU8Ѹ(Ñâ¼lšWÎtë¾øb6~6XÞó"Nc»Õèb'#„O÷ÖRÞ;IƒüƒÔe¢ÃFÃnÙ[œ± ?ðêó6“ÎÍdG[œ Z‡}äâ§ëTï›y¥E`¶möϗƦE“[@ð°/Œd¶U.štø¨Q´z|Z´¯sœ•ÆìAbŸtýðøuÁÑ~ü|Û~Yfø¨»Ðl.›ÿâþËÃ=ýY¹oø`‚Rӆ僆áDÈ×ÝñëùðŽ¿þï§ÜÍì6™MÇøä—Fñiyñ×ű3Ê2endstream +endobj +1640 0 obj<>/XObject<<>>>>>>endobj +1641 0 obj<>stream +x¥VËnÛ0¼û+¹$,U²Ûé­A[ ‡¦-l —\h‰²ÙH¤*RUó÷¥Q”´@Q†e“ÜÝ™úÇ,¦¯˜6 Z®))fQÑê*W´Únð¼À»’”µ Ñ’—_.,›p;]¸ÞÏÞ~ZQÓ>C’õvCû” ŠhŸ\hQHÒMF¦®(É•ÔÎ’@6£óGª­ÒG:TF¤‰°Ž¿8,Öä?%ÝJw}óeG>ÊœÜIjrÁ6ZjTž“I’ºz÷fÿ}†Ú‚ÅEíÓ Ÿ-7‰È©@\YqŽÆÊª;uTkqÈ%§Ë”NIPj +¡ôdÿœ„%åº\ Gsc€€“FÄËpÁ9 Àx‘³Úú ¥ yK€æô{âø'ü2@Ur·¡“(K©-ƒ:JG'“§dx½Å4*•]%”+ë€ÎC¯Q çdQ¢»8-’DZô!¬#¥'PÝI¸.@_Û³Žôp=cŒ?Ëa_·h‹ —,¯Â57å&›C#ÊjNãNdEq÷ I´jtws»#”ä1ëÿÌob´‰ó„Œ¢qZÏhn 40Û‚9á©’G4TV2m+D_”´­ça¢ˆuq¯F©æ­â_Ó`+¦J&RAäÂ9DVz±Œ%ÒD€EV }]Ÿ ½òG +ë9hxnuyYÿ«ª¶S­•›Â÷ãù'"FSþw‘qõ=[ƒô0(SnFüq³ž©vཞÄÉýôx´‚Þ¬„7ð˜<“zßåNêo?]Q ÇË0Îý:‚ABôñeG!ÝÇñL힎:R¥Ç?¶ÎöÚL+øGcª†ÇdEgtúì²F÷™©HþE Kƒ£@½R§Ð Ý¿aujÛjϺJ=ȉºËÊÀ Øõ nIôŽ•©K €hã0š²`—±uYšÊq +x ¦4äâ°hêck³ÜÒI^ïÌìüìelõÞ_9acô9¬¼ÌŸº!Y®Z§ç^CóŸëÜ)_¼ÆgöÇi^mðÎ;6M_€Å@'¸SPž—JÑë)PCÐþ.ƒ1»ÃƧ Ï;=)UK¶Ôò>:{:wF¦t +w(³Å!ÄàÀk ñ§:Ö¸0q i]öë÷— –YJ¥*·]›¶Ý}¯q»o—´ÜDm³vï?_¿§¯•ù.aŽLR¸çe¤A ØDWÿ$äÕz®/øÀòWíã~ömö8ó³–endstream +endobj +1642 0 obj<>/XObject<<>>>>>>endobj +1643 0 obj<>stream +xV]oÛ6}ϯ¸)K–üw@º­.ò°[¼®Ã:4EÅl$Q%©8þ÷;—¤ÅÅÐ%H¢ˆ—÷ãÜsÏõ׋‚æø.躤Śd{1Ïæ´X­² -7×x.ñcÕá Ø¬³ÅùÁ»‹|ûšÊ9íjøZ_ohWüÌñF^þt½W–ŠuF·^È{±o}ØÞRkª¡QîÕîKpP\G³Å2+áâ7ŠŒn:oa(½6‰®"iºZß Vð›xyIE‘.—×Ùš/ßêN*r¢Ý Zdó«ô膾7Ö;rÓT>]~ÐÖ¢¡­Fr·'çUûéÕ˜!~záœr¤„<“¯ƒrž¼áæ4+1k!¥rŽüAÑÐéGªÙ£ ñÒá¤1¢RÕ…ŒvíH&´¤yPÖ‘hš`Ÿ Â³ð UtÔþp™CÆ‚,ªg´¬ª•UÀ)r|U=¢ŠM^³ä§\gK†î/3P+NtŠzkЯ6ÜFàž«A §ÆÛW$€æAXÔÓè½V#þå<Ù¼ +y4º»Ç£î¨ÒuHÉŸ¥'GèñÓyBÍ14êDr°(Ä7)±½Ry´€Ü Ý¡ïý#G á1„¼ùýæãym;Crg¨&¼"i•ð@,VBN·º–!cSÓ)Ú«ÆC*¤[æè<õŠV1½Ñ;XrIùv•èxI5JÚQ2›o'DùòìâxÐ V; ÞhxOÑÕ£Ê:#S‡œ^@~JQ€ÕÖXtX´}£®ØCcî"/Ï0Ç9óýUÂÈ“D“÷ºû!–3§×ãp-#C(~ý-†JûFŸsˆè“Ÿþ€-úFoè-›£]y%¼@ŸÊ{úÎ}.—Ã¥ï˜>ÃÍøbîM²Ìœy~“jÄ»ï8“2Á˜Îg^ˆñý(dáÏä20Mt'l&ŽM’÷ËQãHÅQØXÖQ±£0pEÕ¨D“ð“÷Œ‹°Kä™ÛQ©òø }oã†gÓówIjÖ“Ež¶fúsŠû™5ɪÞ8=êÆ3™ðñåioo>þò.‚4zœMÏÏ}Þ+”mU’ï×é‰ÇMÊ1x\,²b‰ÏÕÿûœ³\o²õªÄ|àFQ¬8Çw»‹ß.þé8endstream +endobj +1644 0 obj<>/XObject<<>>>>/Annots 971 0 R>>endobj +1645 0 obj<>stream +x­VMoÛ8½ûW zÙ°iKŽ?š›»mÅ6E·ñ{(PÐe±‘H•¤ì¨‡ýíû†’[×èe ˆ‹äÌ›÷Þ õu”Ð ? ­Rš/)«G31£Å<Áçõz…Ï¿NQ®g3ñâW éz)’_, ¸˜ þ¥ ìJç+± šÒõZ,‡oÝ’T¬)Ml©i>G¢þ ¯}­U¬ÎÖñ:EÈ À/·£éí’’„¶j\®W´Í#žm³«Cá?;•uY¥>ï´¹9(çµ5þùö Î]ç@Ê$™‹G¯nßüs÷º_>…œ¯_F ¶Íʧ WËG¯¿©§ ¨³ªÍŸ>àç\»§CiìÿRæ%×,xT>Æ—ü*YŠTÌdÕÃÏèf4IÙW›ï¨¶y[©1…R:êª"%½¢ÌNÔ£öA™L‘-ÈËz'IšüÇÉBWŠ|)6{òÊt¦¼àŒœgÙÚäi‚Ü+u#Ê)XdCÔê,Xã†O£”yÊHÅVÊ­òæ·@ÜÙÿ:%§:±išJ½²í +ëü˜¾´>ЃR'k^òÉ8ÃÁÔl¹ˆáQªPqG½™5Å„èqô§ :¨šw—:GŽ +%U`kLÀIÜfž£XÙ[h&«ªëå€rPÊ •ΧJ +â}¼½dñ$RW’ËR•WÇR¹ GM1^ÀÓ¶ÔBdÝ ¶#pDˆÈ¢P˶`¸ŸEýKyP´SÊPc¡}N;ÛÈ|ëœ2¡ê0$=êt> °ÁšÞG›üþñž‚SQ +&G¤&à >õ§+%ö‚éf¬v,[ Qƒn¦øÀjDÄua•!Û£!„¿ÈÎÉ>=¿ôÞ;Km j@C4 cij®tè8fњȗŒ¤éæa Û ÐQ×M¥ÁEÞ*F¤¬±3X˜vz{êGrÖs‘z…^Ü¡«n#î37jÇÊýýáí •!47Óéñx™÷"È®²®*o§ÿ*ü«kå¦ùªðSmrõ(š²È8µÜËŽ^;ÑÛþÈ%+ozNcû°?Ï\@ÇRge,¤f +©Dçæ­TˆRækðˆûßw°I-èM8 ñZáþîm ,7ô/œ­òTɘà{n)Ùó/]œ5{ ”£ì˜z´=R®‹´8s ÃóâîÒ’­GyŸ®ÀÂ^î>ÊáܽÁSöšu{iô7nŒ»÷sO-ètŽ«2à &†Ç­ÆŸm\@sûñ3zvo±ÿOÕ­Ëù +™¨ÿÂѶ^óð”MlXK€ýp¼ãC¡ ×q'誃•i §žÀt8äÚ,´<¤€ ø8`ßr§`SU‘E6}?_©–(̇÷mݰ*ç­qŠu–o§:‹©Ï1`bÌ!ÔáÔ×øz;úkô!ÖJendstream +endobj +1646 0 obj<>/XObject<<>>>>/Annots 974 0 R>>endobj +1647 0 obj<>stream +xeQÁr›0½óïèÌ œ[2mzI&­M;=ä"cQ”D%aš¿ï +;N;H°¬Þ¾§·û3âHéá(3äM¥,¥ÌŸ×öS”­‡X –¢œ¾ç¿#vŽõ&gŠª¤8£mÚ讎’û xº%QQpXˆSÔÍŠ –³Œáä9\Õ/.Àùg%W_·7è¼o’džgfF5ÈÁë“¶“cÆþHBaŠ8¤ONö{/”У5¦i5fhÔèÑ›Ãt¤ë‹]_cîtÓarÊÁw +ßîwx^‘‚Ÿä­&°{s^õÏWh•ô“% i/œ<á…‹¼gìW’Säqìäw†§!îë³:I*{Eé~$òfí»EÕMãh¬gøÛÅ%éþÑ;I«‰K'Z8(K†‡CðÝK=xÚľÃ6DzxeçFW—FsA«rð´`ÕbãöñyQÇÓL½"&¯Í2¢ø½ .ÓMÀÿ7ÄBTL¬3šw8åeÐûXG_¢ßÚH±oendstream +endobj +1648 0 obj<>/XObject<<>>>>>>endobj +1649 0 obj<>stream +x•WÛnÛF}÷WLó"h‰¾Æ/E›K[4uZDEPÀ/+r%®MrÙÝ¥eý}Ïì%¢7MaذșsÎ\ô÷É’øYÒuNçWT4'‹ ‹,§‹›küŸã×HÚœü¸:9{ÿšò­60¹º¾¡UI8¾À“bú¦“†–×ýdtßQ#ºNµ[úùãçÕÇÓÕÌ/h¹ æóü.Våô“Æñ±r}ÍZÐ9|Šº«å3ÔÊm®Üômá”nIYOBÕb]ËŒV•¤¢7F¶Žé*]Òý´V²Þ“Ó‚æËóศD»•÷§xƒP[±•ä`ïY±w\èoK*D]Ë2¤qÓ˜’mÖÞ@–ʧ8Í¢¿ü*»àD9¸2Ö‘jœNXa‘"èíÀýèðNÐïoßÌ8W Ç!Žc(u#– þúhF‘Þ„'`6ÁŸP@Y¡Ûx ñ3e­ìºõ¸âc'Œ¨ x',Ç[rÜ[õ¯•ux„çÆR­WŒÈ¨må,qš•T&¢’üï´y´N0™6£_œ¿ÜêFƒ­*Ⱥ~³ ©[Õt ’-àhÝ;*UÙNY8“ô$ ^ʺ¦6ÚºZ>“•®ï옋’Bò¹«º ™*¸æX8лÕÙçü×çW ŸòñlD)IìÄ>£Ï•„[D_×,à`Åöb”$Ó9ÜDÙ½¨T@NZòyYrAŠÝi}CÂ0žüÀ4k#œ6v¡Jø<¸°#×HÁëÆßtF=©ZnákÃ_+ÖªVŽ«„B]ø§%k”ov hU¼~T@X´{¾Ö¢ÂîZ³€µ¾?`ú¶etÿQ(*”5Niâ%ꯑÍ0iÀøÜqê®êÇ™OT[I£Üä+ÆH"añmPl“-!bJÁZ‚FÀá ¢e{LÏv­êF>‹ÂE.-ê‰byàÕÈv¬Y/7‘Tdœ4 ôÅ((ô‚•½aÐ=õè£Vé½zzÅ‹"Š82B÷ñd”eðñïL$ž%Ñ;_–2ÔVdòå0FžƒdiLÍäkŠ f­·Ûî†AE?©1ÿ¥{qÜïvº-!@Ç=ro*Ä×%bßëÞXÈbXB¥¾œÛ(—1àßcV 7±<jÈs`ï Çž§À‚ú ¸¾UÏ¡ÐQm½í½ ú;9{ŸºúôLºâì¥p:£Z²;žbÜêX'eÃösŒ ðrºÌü}øøeDŠÒËÊUPY`ƒÙi{i5=ÆÙZÒqz½GK€Ò¹“ò¸¡¯c(£¸fºB‡DSi„ÙÏF8y„1¾ÑÊÿG~ØV­õ£ïh· —×¼kÌ1óó‹0ƒCÚ·Ï·—‹ü63ã@‚Iš ÊùuvŸä\.ášßD‡Ò(ᾄ ·Ú¯Ngߢ[Ð4®÷”º$ã7Ž˜EÚ58‹¸I —štTÕöÍû¿wœTºâ<$5Ï/i~™g¼ÊMQ”&æÌ…?¦|‰p¾àÒÌ ú.’˜.ÿ¦ÊÛA·‰ šqA†-èïüf­0ÍÀøŸ™£òxÆÜ­D!8o%jŠr$>=°O0™9ó:vÊÔÌS;½Ÿ"²4È J/T;–ô±‘ËÄÙNµkÕ–\dœÛN÷u'kÜDá'%'E…4Ž1,•‘F¸Ÿ¹ƒÁ¿«p 4¦Ìx›•ˆy -oƒv„ª«ElùáfÊ1tPÚ·ª+4ŸpßÜÅý7•É@“‰^ýÀ}Fé>²Ž}Ú¯LºÿN€ÍB¬1–Ò¢biü§ÚŸB¡Þ 6YÈêý†ïW7ÙÕeÛ]~ÎW½[üqòŽL)”endstream -endobj -1635 0 obj<>/XObject<<>>>>>>endobj -1636 0 obj<>stream -xV]oÛ6}ϯ¸ÈS -¤Ší¸Nú°‡6k‚`kÒ-ºJ¢$6é’”=ï×ïÜKÙu”ìAÃÉsÏ9÷\~;šÒ?Sº˜Ñù‚Šîh’Mh>›d š_^àó ¿^S%¦‹¼_]¿¥Ù„–öZ\\Ò²$ì3Á7ÅÉU£VQ{š¾ÍèAu¹¢•ö•ó²…&B¯Ã«åWÙcz‘öx}>ÏfØå‹¦]¹n¥¼ ÎoÎi:Þœ]*Þ\6zØ>h¿Æy}ЖWŸ(:Šª}”ÿx©h¶1£eÓ2m]O -F¿5¶æ·‚®ŠLÜ! ´Ñm+o†ÆõmÉx'ôzzžPz­ÚvK…ÀÄÚÈ»¬¼«½êÅFEFƒš‚ê4?Š®p-ƒÐÔ¹A±* öPkeZ•·òRZ®¨2ø&zeC¥ýèôýþ\,WRÅa²'zá WA—ôðñ=Šcv²aÙ"›3{·‰‡²‚=j@Rµ2ÿƒëtl˜›ÖÑ´q> 7o)ô`§€ùES×lÈJæ@,R‚³ÏðgÚc¨R̆…£ÓåË ÷—PzƒÒ÷eÉ$ñ9kdŒC($®BF7xE%Áΰ>c¿Îï¹)T­ÑG¡ðV¥Æ¡uy8ˆ)IŒ²†¶2“žL®ݧD°1”T-ƒæ9IÞÔM’§S’´pþ>Ù0,q<‚Çïr‚詘½þ¾gGïy$U©1OJOù–¾öñAÒ"Í¡ÂyÏ^`Y0ˆ—$QR˜p¸îâ¤u²HçÇ>“ŸôÇÝý~~÷;·/³Í)#nÄ´å!龨™íú#©´‹vÀ£Ç娲:ö£²Û]šy½ržÅ‚åUY2ç# ЇȎ©t=&oÂÇùèÑ‘Ò ÉÏ%‰BŽ4Ò®ZeE|™d*j´^RZ(®õ£)¼ ®’éxvû‰BTÅ#“ZÎŒE 𕸧XÑ»«Ÿþ=<Î3ú•Ëæ/éÛ³ë¸8¥l¡c)šß>‚aÐ -.h.ÏôG¹¬„³Ç”ÂÕˆmPàÉÄxj,Õ¹ž½ƒÕ*>›jZÊ®6iÌQ9Ì¥¡3ùÞ2äBÀX/zÕrzá 8ÝúMÚßs)9Æ-†¾w(¦r½›¢inª¶ï¥A0Ä]®k\€ÐOˆp˜‡åâôð¡ôQƒBÏh¤@ši›ÆñÕ "&*ï:^5²ÎÀÕA’ÉÈd~pc2òEä)ÜdbGö€ƒ¯W{lŒ(g·qý£ƒ ( {v}ùýýf‘nÑÿ÷²>_\f‹73\÷ù’>›óI–G¿ý ç0 Nendstream -endobj -1637 0 obj<>/XObject<<>>>>>>endobj -1638 0 obj<>stream -xµVMoã6½çW |i²°µþ”C ÚèvÛÆ@Q J¢,n$R+RqÔ_ß7¤ìudoz(Š$@ ‰3oÞ¼yœ¯W3šâgFë9-bJ««i4¥x6æ´Ü¬ñÿ¤Ü¿XÎo£å¥‹Õòò‰Ù&ŽâK'V›óç÷Û«÷–4›Ñ6ªx³¦mF@4Ò6½ÞÊ’y–M)êZéíMód)‘ÖѾš\!ÉÖRfø,§LÙ':#-I"M¥µ$PŽU•*E3¦B‡7ZðTmZЮ‘ÂÉD@a¥‰úó¤!Æð2™‹¶tô,ÊÖŸŸÅ‹ÍrLI‹g§ ^jÙ¨Jj'œ28¹PÔ˜qÞN:rÁ´RxÀ•›Ú©J”!ôx€ŸyPŽ—êI–CE óô8{UòqPá ÂW ¨ã¬¶³NVàNw{ÑEt×ÀÝ xµ‚vº6JƒAk/$÷±SÑZ 7-£eiRÐF•¬ r¶ZKnhTÙyîÞ¸¥4Àb˜,–Å$Ñ'ñB/•òm:ÕÌd¾†®@ö#ëDãÚÚW™– -\z9XÙ0j-wÆ)Î/hT‰Uµ¹Fh‹°#(äo9†¬Ú[B-Îú8ü˜»¯¥hÀj ‡O÷ƒzSSU ÜFôJM¡ Ë Ù‡<>ŒoÁƒ¨AžoˆZË¢äŒÌJ?ÒÈ·bPzÐVI”Gô«AA}oÑüž¥z@ÆPmyr†(xJj©Í+ØÃ¬ÌÅQGïÅïB-!JD[ÔÐs¨½A—Õ3Ï Ž åÆ@‰„¥y<òõÏ© £MÛpqàÛ3¶î0køÊôM:'-=^ŸpòxJ ÃQkUðeYS`ÐEG˜ÉÜ4û^¹‚ĚŠ–ì½” kå@DÓy£á¹÷öÄsÂi4ͧËÍédH†çÄJèTRÝ ªìY…š*ƒ¦Â""—t0—¾ë~²ÙŒ~sœVýbvT"]ÉÅ\œ§¹ŸÛƒËð)JkèI›½&¸Ô(“IÛG=ÞP¡vð¾R†©} ¦Ó¶°Úó+Þ~cêsm÷œ J–jÃo"E\u?ÏyÙÚ¢'‚Ñå -m9÷I - ±A 磊©æ¹Ldp] »Õª|“¨8¢?¤È¨ûïò´¢®ÿOlŸ•QgÒª– ™‘ß{¶²2Siö“v¤Ó.`÷AŽçÙsûJAÝ@sia ƒ°<±¶­kÓÀì1Å…Ù³Š"ï|aÂ*ñšAϯñ²\D ’XܘŠD²n¥aFÉ0u¯¹ â ÓãÅýƒÃ]¦3ôæ„% ìh/a¦<ð"u-f·\´ ƒ'" `Ž@æ‡ -Bâcß¾ø ‡ñUÁôИ#§g#õ`‚6!YdÆEÉ”:`;b… k3êï‰û·huêÁFÀ§ùfñûFDð *„â"ÆÐ ZM ]tPø¥#œ?)6¢Ïš/k5w%‹˜¶Þë:¢?…Ûà_Õº?|öŸä¢¹ý_õú -ñ›‚ÐŒÛå;‚}`¯¯`X§‚Ùç -Z¤²A‹^v×v-ÿv Óê7ö⣽í•-X@){ã»jç•9oúÅwcïÞ,(^܆UæáîÓýýÖ˜/ØKé'“¶Ç½ãM&ëé-¯>çÒ2ƶ½šcâ×óûy{õûÕ?ÂÛÂendstream -endobj -1639 0 obj<>/XObject<<>>>>>>endobj -1640 0 obj<>stream -x…V]sÚF}÷¯¸ÃKœ™XA€1îLLZfŒM<ž´éÃ"­`cI«î®ô×÷Ü•äÄÄMÆÒÞ¯sϹwÿ9 ©Ÿ.4SœŸôƒ>_Œƒ1&ø<ÀŸ‘”6/úa0:~ñ!:yÿñ’ ŠRøOBŠ‚Ÿ~Ÿ¢ø4¼ &­2]Ó4S²pömô# -q-Î%§w…¤R« Ú -‹°¥6N&ä¶Â‘•Ωbƒ/8d´Ó±ÎÈišÞÝÏ–7+2¯ .èæêvqu; ØI”‘ §bŽŒxá0p<[JxW9ÜídŽÔèóijtNaÿé½eçá9úü6h-cÔË9Ù -Ö±krÛ*KËé ûádl÷á˜ÖÂÊäó[ª%Ðö‰SOµ¡\ã{"œhEÊŠu•%oeÐWÏ‚¬ÊU&Ì«Y76k ¤Zžáé‰FÔô+ºG¢H¨—‹=ísåðlÐMzïHÖñA"®(6ÇÈvwPÝhÒjbXõ¯ìQ®6[G"³š¶2+½Ý·t8ŽÈÀƒË–7ñþŸž+™?C‚ÑËrm9F-–’Jrg< „µµ6ºØ#ìT.z°]¦`„iiDŒö‹Œzeg“ÉÌzGØÖ*Ë:B ÜXÐ'Ó. Oºjå‹•…XgÈlì=|œRl¥ë‘.}Uáß,Ä“LU&ˆJØZe« -„äœ^×Gêd|Þ‚µÈ §|jd­4ÐÄ^jEȯùÌÜÿä^ä%TE¢kë9ù¨ÍÓÆèªÓÙÝ(Ú‡åUìe 1BkÑtɂœ\qS&ë¹UÉJJ:èÊt$:n&Ò •Y°½ R´¦Ïßü[ìV -4ÕT9l!CV?ãü˜>nZ€=y¾Q2yœß^ß=®æÎ<çñd5ûm1»ü#ÉûF7…ÙHn28AèÕ -¸bZÚqŸy霔fü¼³TW׋ñt-SQeî>Þ5wTøk±BJC§`"¢Bx¨ééÕ§U4[óÛ91mÞ²¯}ö1¥7j'™“kµéˆÊ“‹G¢‹7Žž -LÚz{èÜ5cq ]è?êÅŽ%ÕnKß§Û>§t”Wñ¶kö78Q­`ÛA¹4ùù4'££ŠÀ·Á ¥;Tl^ørÄ‹âà5GǦ)×BÁœ‘W"‹ -°̰ÙŸ7ÆQ\ˆ»øº@:É$F—Œ¼ ÍGnø<ì-Áj^~x¨ù$¼üÚ9O½Æ@8P"KY$íÔ`zylAè³ìç&“ÙJÉá¡ø=­õžÏµ mØ®=XðÕR…2U<7u ®ÑTÇ[#€/M@6Du˜|<‘C;¬J¼ˆù)ï…˜ùÜŒTg€šßĺˆ³Ê‚¤ö—ÕŽCsl É<°‘«2{ܘ¬¸º®ƒ\ÅF[Lxa;â -¬Jl>œòìᬎŸNñŸ3ªœÊ”SòXßõVˆí¦þ‘b§ºHÕ¦ÂÖh\žó”š/A†²Î>/XObject<<>>>>>>endobj -1642 0 obj<>stream +oƒv„ª«ElùáfÊ1tPÚ·ª+4ŸpßÜÅý7•É@“‰^ýÀ}Fé>²Ž}Ú¯LºÿN€ÍB¬1–Ò¢biü§ÚŸB¡Þ 6YÈêý†ïW7ÙÕeÛÝò†¯z·:ùãä)–endstream +endobj +1650 0 obj<>/XObject<<>>>>>>endobj +1651 0 obj<>stream +xV]Oã8}çW\ñÄHÚÂæafØ¡ÝÙ¥ÒìJ#­œÄI<$qÇvÚíþú=÷Ú-%°B@ÕÄö¹çœ{®¿Li‚Ÿ)]ÌèlNEw0É&t>›ds:¿¼Àç~¦JLç¯<ø°88½~G³ -*ì5¿¸¤EIØg‚oŠ£«F-ƒv4½ÌèAu¹¢¥v•uê MÆûAû7‹o²Çô"îqrvžÍ°ËM3º²ÝR9ãmŸÞ<§é4½9»T¼¹htÚÞk·Âyƒ×žWŸ)X +ª}”ÿx©hîCF‹fðd*ÚØ* ncúšßò¸*2a‹ÔÓZ·­¼é;´%ãÐÉô,¢tZµí† +‰µwY:[;Õy + +Œ4yÕi~la[¡©³>€bUì¡VÊ´*o奸\QeðMpª÷•v£Ówûs±\I–„5ª·8Ñ ¹òº¤‡OP³“¥=fóìœÙ»<¬U/؃$U+Óã¿· sÓšGMŠî¼ý—êKvãÊz¡gmÀS£Vk©4^*9”A€Ø~„^‰?IÞ;¤{~¶6àŽUêÔ& +‘kðÉ€޶à­4˜°;réë‘І”§;r=˜¯oÀÉX»(šxKi„ýWª5嘥Ýk'Ç1œhHÓ—QãgîöäM)À Ö6pj½“‘üRë2£[P,®ÚÚ¾&€èS9|U)ϽÉ{º»~8&Õ¬­|ežœ4+´ 訜du0»p™"7­á÷gh½ˆÂ ºŸ~Ò•H¿BÓ:]óȵñ/õC—Ã&¶9û‹Q&LXÀ<5'pÞ mÍû±Œ•j/8R¤rÿH.ƶZ€Ì׎ÄI03N¯C€Èိ “¡DÖÀ†BKsrŸê?fÃÌ—òú.Ï +ÛW’•¯!:|éçL)ÓÄgì6Àù7…ª5úÈÎÀªÔX´.1%"‰QÖÐVfÒ³iÀ5 û”6†rƒªeм$É™º‰òtJ’Îß%†%ŽGð¸mNð=³×O{v´vÑ‘GR•ó¤”ñ”oèÛÀï%-â*¬sì–½xI%† ‡ë6NZ[€¡É`Ýã¸Âò³“þ¸»ÿñãÏïçöe¶9eʶ<$-Ò5ó£m¿sÄ#•¶Ñxò¸U–p c?©~³M3§—Ö±X°¼*Kæ|dúaÙ!•vÀäøx ï=:R$úY¢$RÈ‘FúÏe«zA&™Š{/)- ×úÉÎz[Ét<½ýL>¨â‘Iò- gÆ"zøJÜS,éýÕOÿgýÊexó—ôíéõ?\œb¶Ð¡Ío¦`HZÁ­Â¥¢â™þ(—ºv˜R¸q %ž=AŒÇÆRØ;X­Â‹©¦¥œtµqHcŽÊ4—Rgò½%å‚ÇX/µçôÂAq¼ûô›´%¾çRrŒ[ }3îPLåz;EãÜTí Þ‹ƒ Å]®k\€ÐOˆp˜‡åâôð¡ôQƒBÏh¤@œiëÆòÕ "&*g;^5²Nâj/Édd2?{¸1ù"òn²±%;áàëÕ#ÊÙm\ÿè`ÁÃJÞ^_>Ý¢ßÎã-úÿ^ÖÏç—Ùüí ×}¾¤OßñI¿ü Æc Mendstream +endobj +1652 0 obj<>/XObject<<>>>>>>endobj +1653 0 obj<>stream +xµVMoã6½çW |i²°µþ”C ÚèvÛÆ@Q J¢,n$R+RqÔ_ß7¤ìudoz(Š$@ ‰3oÞ¼yœ¯W3šâgFë9-bJ««i4¥x6æ´Ü¬ñÿ¤Ü¿XÎo£å¥‹Õòò‰Ù&ŽâK'V›óç÷Û«÷–4›Ñ6ªx³¦mF@4Ò6½ÞÊ’y–M)êZéíMód)‘ÖѾš\!ÉÖRfø,§LÙ':#-I"M¥µ$PŽU•*E3¦B‡7ZðTmZЮ‘ÂÉD@a¥‰úó¤!Æð2™‹¶tô,ÊÖŸŸÅ‹ÍrLI‹g§ ^jÙ¨Jj'œ28¹PÔ˜qÞN:rÁ´RxÀ•›Ú©J”!ôx€ŸyPŽ—êI–CE óô8{UòqPá ÂW ¨ã¬¶³NVàNw{ÑEt×ÀÝ xµ‚vº6JƒAk/$÷±SÑZ 7-£eiRÐF•¬ r¶ZKnhTÙyîÞ¸¥4Àb˜,–ÅÙ&ZFôI¼ÐK¥|›N53™¯¡+}çÈ:Ѹ¶öU¦¥—^V6ŒZËqŠó UâEUmE®Ú"ì +ù[Ž!+…ö–P‹³>?æîk)ðƒèáÓý ÞÔT·ý…RShÂrÃ@ö!ã[ð ªDgç¢Ö²(ù#ó…Ò4ò-†”$´U¥FçýjPPß[t¿gi1Ô_[žœ! +ž’ÚEjó +ö0+sqÔÑ»@ñ»PKˆÑ5ôÜjoÐeõÌ3ˆãh¹1ÐC`"aiϰlýóAêÂhÓ6\øö ‡í£;̾2½F“ÎIK×'œ<Þ„RÃpÔÆZ•À|YÖT$tÑf27MÅcÁã¾W® 1€f1ƒ%{A/%èZ9ÑtÞhxî½=ñœpMóérs:™’á9±:•T7ˆ*{V¡¦Ê ©°ˆÈ%̥ﺟlv£ß§UD¿˜•HWr1çécîçö äòplŠÒzÒf¯ .5ÊdÒöÑF7T¨¼°¯”ajˆé´-¬¶ÁüÁŠw€ß˜ú\Û=çB§’å„Úð›È@WÝÏs^¶¶è‰`t¹BEÎ}’ClÈ{éaªy.\WÂnµ…*ß$*Žè)2jÄþ»Ãa|U0=4æÈéÙH=˜ MH™qQ2¥ØŽXaÃÚŒú{Dâ~À-Z`z°ði¾Yü¾<¨ +¡¸ˆ1tƒVG—~éçOŠè³æËFÍ]`É¢æÆ­7źŽèÏFá6øWµîŸý'¹†(GnÿW½¾Bü¦`4ãvùŽ`Øë+Ö©`ö¹‚G'©lТ—Æ5€]Ë¿ôúM½øho{e P +ÁÃÞø®ÀyeΛ~ñÅØ»7 Š·a•y¸ûtG¿5æ öRúɤíq/äx“ÃÉzzË«Ïù†´Œ±m¯æX£øõ|ÊÇ~Þ^ý~õ"Û¸endstream +endobj +1654 0 obj<>/XObject<<>>>>>>endobj +1655 0 obj<>stream +x…V]sÚF}÷¯¸ÃKœ™XA€1îLLZfŒM<ž´éÃ"­`cI«î®ô×÷Ü•äÄÄMÆÒÞ¯sϹwÿ9 ©Ÿ.4SœŸôƒ>_Œƒ1&ø<ÀŸ‘”6/úa0:~ñ!:yÿñ’ ŠRøOBŠ‚Ÿ~Ÿ¢ø4œ“€V™®iš)Y8û6ú‹…8Ègƒ „‹’Ó»BR)Õm…EØR'r[áÈJçT±Á2ÚéXgä4MïîgË›‡W†tsu»¸ºÐFì$ JŒÈ…S1GF¼p 8ž-%¼«îv2Gjôù45:§°ÿôÞ²óðœ?}~´–ƒ1ê‡åœlëØ5¹m•¥åô…ýp2¶ûpLkaeòù-Õè ûÄ©§ÚP®ñ=N4‰"åźÊŠ·²è«gAVå*æÕ¬›µR ­ÏðôŒÄ#jú• +Ý#Q$ÔËÅžö¹rx6è&½w¤ +ëø NW›cd»‚;¨n4 +é51¬úWö(W›­#‘YM[™•Þî[:œ G dàÁe˃xÿOϕ̟!Áèe¹¶£KI%¹3žÂÚZ]ìv*—=Ø.S°N´4"FûEF½²³ÉäNf½#lk•e!n,è“iÐ']µòÅÊB¬3d6ö>N)6‡ÒõH—N¾ªðoâI¦*“?D%ì­2ÈUBrN¯ë#u²@> oÁZdS ¾ƒ5²Vhb/µ€"ä×|fnƒr/ò‰?ª"ѵõœ|ÔæictU‚éìîíÃrˆª@ö²†¡µhºdÁâI.Џ)“õܪd%%teº 7é„Ê,Ø^P) ZSçï@þ- v+šjª¶!«Ÿq~L7-Àž<ß(‰<Îo¯ïWó?gžóx²šý¶˜ÝFþƒä}£›Âl$7œ ôê\1­ í¸Ï<‚tÎJ3~ÞYª+ÈëÅxº–©¨2wï„;*üµX!¥¿¡S0Q!<Ôt„ôêÓ*š-‚ù휘6ï@Ù×¾û˜Òµ“ÌɵÚtDåÉŃ#ÑÅGO&m½=t +îš±8® ôõb Ç’j·¥ïÓmŸÓF:Ê«xÛ5ûœ¨V°í Ü‰ šü|އ“ÑQEàŠÇÛ`†Ò*6/|9âEqðš#ŒcÓ”k¡`ÎÈ+„EXfØìÏã(.Ä]|] d£KF^PŠæ#7|öƒ`5¯¿<Ô€|^~íœ'Œ^c (‘¥,’vj0½¼¶ tYöÎs“Éì¥äðPüžÖzÏçZ†6l×,øj©B™*žŽ›º×hªã­@‚—&H ¢:L>žƒÈ¡V%^Äü”÷BÌ|nFª3@Íob]ÄYeARûK‹jÇ¡9¶†À„äØÈUÈ=nLV\]×A®b£-¦F€<‚°ñ V%6NyvpVÇO§øÏUNeÊ)y¬ïz«@ÄvSÿH±S]¤jSak´.ÏyJÍ— ÃFYgž7¥ßﬦünæÄTY¾8 ­Ü0³L&G[D«ålví!h2„j4†JêÅM…„.#p®ð·F·Ôtö¹Ô¦¿ÈS"5R‚Fb‡ÉÆ;8 +Ü]…š˜¾®víWÝ×qÜÜ7|lßH\ðžGóBì‘>ÝËZc÷g¸á¾–œ†ñw|}¾'Ýc¶¾vÒ8> +§W•Ó×ÊÆ^ÄøÀU¼ˆ0|ÕìCü®3y-_¬^³}oaãS¤é†;9óKÙ÷é¹žóŸØœÑïwË /rou{=§©À-V¸ùPÿÅù‹æüû“öZŽpsž i|> +&ŒëêjñኖFñÕé¸â¹[©öûö,㺠ƒ³‹þ¥ïë÷æÑxŒÏm«!'1‹Nþ8ù>³endstream +endobj +1656 0 obj<>/XObject<<>>>>>>endobj +1657 0 obj<>stream xmUMSÛH½ûWôžBjc1ú°lrƒ[®]¶¼…9ä2–F–@šQfF8üû}=’XÖ‰)(ªi=½÷úuó}“ÀWLë„ÒœŠn!"AYGÊ6küžàÛ*ª7ûÅå}FqLû ä›5íKB»´/.¶äm£Jzi¬dÛ¾~©È׊¯:GÒ¾1MåÒIê2ŒÆsè SÝ5u²T$©lªJY¥ EÞåãþi!h§Q 'éÂÃÎÏÊ“éù%.¢­'?X~”¦Äs‘ÛÆQÁà¡åˆXýÁ¿ÄÀµkJe}œÅL çªáä ¡GÙ$5í 5zA…³þßÎ ÂÖu£Õ/2ÍÃúÙ8[Æ8ðLè`Íp¬=šÂF½)ä89ª,&ú4°zÎp,F±ÌÎtj}ˆÖs^¤kÒê4Ï´%íÒ4eµZ>\ ‰"Ð8œ˜À¦¿õÄÂ×@:á(Ðјòó™_Ù ±˜ØaP}Øò’r!~Dí¨ü9Ñ¿Œyf?¥'ç±rLä~¿ƒÁ |úÏ|I‡}­ lãìÅÐcF¥ã}Ü’úÞp`j&  „0M'Ñ…éöÖxS˜÷Ü› -† 8à¦c€šã4õÊV¦“|)O¡ý èû€ëËŠŽÇ­iõ7Ó%s\ùMJÉz:|×7×´³æ ã¡ÛéDãÍ6/ç–kãQ^ÄWÑ&¢G8A_ƳÇmY¾‰òU‚Ü’¬¹v·_ü³øôpðˆendstream -endobj -1643 0 obj<>/XObject<>>>>>endobj -1644 0 obj<>stream -x¥WÁnÛ8½ç+½8 Är$»¶Ó[7I·AÛ$m\‹Íhж¸‘DU¤šúï÷ IÅŽŠÅ.ŠÂŠEμ™yófüõ(¥SüKi‘ÑtN²::MNi6&Kš-xÎð¿U´9úJé"ÉÂq~˜.p&›Ÿ%3¾6¹Jgtaè£7NÓd:4À–aø‡ï_MÞœQvJ« ÌÏKZå„Ó§øFŸ¢qªÅû„Î[%œ®·ôGkº†n[³Ñ¥²¿­þñ&ÒE01žÎp•ãNšÐ]çæÑÒèì{89£4'³E2瓚Žj¥rr…â gËÞ‡)µÜÑe®iɲÊõ¯¢{”®ÎñÀSBWޤ¨iä¼&S³qFpJãtÞ´z«kQÒ¦+KjZ“wÒEº¶N”%"ÆÕó‹è#„€šùŽ1¥´Ê>h7©•y¥ëIcJÄÏÃ=NˆÃŒf@\¡-u–“Ë)xç“Oª2ßgyÛŠÊÒFH]j·#hp¨&‰Ü<ÄÀhôVàô…¶#rbDÙ A†?[å-ÇÒ Ó*¹´Š:'œ ‹ó‘m”Ô­¬¿^b6€‹œ#gžŒjÂ%úAŽ>ìÁ^ÙUªv‘9=ŽI9™uÝfr壴žŠÏü³H" zŒ%o.ÏM½ÑÛäöæ}x±wácbª!ÃìhJ!a@×HkŒ#DÊÏ]_®Þßüqsý7ÙB´ - ÛÐÎtžvà+ê'½×®e*͵Áß¾ÕZ C+¡ëÒŽuY<ŠÎá½ÓÒ]/¸Ì0ëãä¢wMÎEb{¡GZµÕÖµ»c%d¡ëX8ÜЛa éðt÷á”GþM1läuoý“²O*z¼y¬™¯þÐZÈÎP„á<ôG±;a‹5)8Ø‘5ðêðgÀÏI Y(°˜ÝêÚ©mË9Š£÷‡Ñi‚ak7²{rlZSy{k!ÆPišM¢7e¹1Å&ôVÕRp‰ƒk„¦åÐ3¢d>ÊBÔ>Óì’‹Ïá˜^\zÚú´±Ø*¥ïN(e¶WÊëÍžó’ÕKåçzcZ×Õ`B’KÏ -¥ñžKŠ Óõj6ÉÞRoYÄb+ËaùÞ¢ö|EÐ׎eÛé\½bJã^Anê@wD&´™k °=![@r{I}ØáuÕt£È«JyåÜ@¡¨kå›wqjÍЗQLšŒŠ;ÆÜK©×ïûl¾ˆ½ß·¸ÿú.¸ÏÄ*ÔTÔ€b¨ÒW–>Pì ½vÞm–%Ùiês¿œú‘vE¢:ÐiWÑ‹hâúÍ"Æ]/ž>žyÕ ’ìîIh·Ï]-¨RÕŠÞŒ{|0G]ÛYÉ -ÓÒºAϸbO˜Û‹óa!§Ø10Eç‹drûÓb.±Í_ò;÷ôâGçÜÔ+3¢uç\¸É›ç4Á“ÿÔlŸ•« zkóý€’Þ|$!ê6"‘ç!œZ=R#\qBjûj8xä«û{§ªæþ~cÌZxVÿ7T!Tt-Gb<„Ç‚DÁ~q "jçÂäÁ`~Ag˜qß¿–“gÞ=Ué€}Ü+€Õo 7ïZñ¤’h€¸(ŒdgÏ[”èa¹6±3ሙ÷« gË$=Û+ØHlqBÅšw+(iL‡Ô7Elëèª ©æyŒõz¯ÚØpï —„bÓµqý:ÜË‘Wî~ŵ…éJ¬¢k‡5À㸻ºà†ò]ÇÂzn/(%ÙjÝkýVáÊÍ@ôý~ ¨‚Î4b«>/XObject<>>>>>endobj -1646 0 obj<>stream -x¥W]oÚJ}ϯõ…T¤o4IoQC’&îí­d©Zì\l/õ®›òïï™]›¯Þܪ­¢ïîÌœ9gföë‰O]üø4 ¨7 8?éz]ôzøì†ø ð[JšÛçßëÿ׋ÞÅðÇ_Éz3À½¡7"ÔÅ# Mü>])zr¼ÎDz¡ï ¾*¸8>ëuxröæ‚pt8‡åÁ !¨n—Âø4€qüÐT‰0ªÜкTó4“úeø;ûäûng'bçi¸”$fꛤ\š¥J(Í$UZ&dÅ¥/8D¦•G!–¨â›, Z”ªZ7)-°_ì¶²]êø=Ä˵c¤Ó|m(S12ðç6ü eé]Cb×qý:VëN5ûàWˆ »Zo›Žo=ì¦Nó -£ŸžG9"Fˆ¥'¿ËÿAæcðÎÚ“Z§ª jU•±¤l.…>8èðXŠ—¢XHm}×2®ÊÔlHÍI¼Tù*ª°Ø—(à(ò2ÕÀ;SOî4Ǫ* %* r`mµ±%9SØ 9<²ðlßÿ—¾GIC“«g ù¤*Ë4‘…IçkËi¶¹´Xð~üϨg|L‹„=¿ éQ–  -õ¡¹‡Éw©±~ÁÀeio/Õ r#³$Ûâ—sUæÂ 7 IJ¹Hµï«"%b®9ön%7¯Žð~ûîúÓç›»ËñÍçéøòíäö:ŠïÞ„Çxš¦q©´š›(ÚùE—U 晿eÉ´ˆ¢{§±X®o"ù°õbo ûÑf×PwžÒ,c½éj†oµMX‚oͲW3gš„jzZ*zÍÔb9 tä×€!G‘Å*_W†é† -J‚^ø˜†|ûàÆ­ ¶ ùx ]Æ"^î©n -< pFYDm{ð‘i6ô8<¶‰i#•I3¨Â‹^ҤРU«XÃÍu™rI`"·tP›¬Œš–(] G‰Ô9ðMd•¬±¬Ÿäb!ï…YîD€È5´Óëo‹JC“è%õìŸ{>ù¨nz.%,†¼Ò”ølªà>ÄVÂA¹ÅÀ‰F¹M.8‰Àlú¸µþ¤Ê•6ŽÚâ8µŽÑÚr]m«›µ`> ,ñi–ÕtpP’§˃[CC\w„š7KDƒ!Æm_nK÷CºX"â,W–0Öšnè²f\‹&@£e26ÔBÖh©Ô-wêïØ¼<°Æ ‚êÌê1ûý“›û‰sÓÐ஽E§Û€QûUËèåï=gVƒ¼µ.ÕzƒŽú(M‘^ÜË2Oq=zA3õ½}”²KÛ4ZäÌÿ‚iÝ(µB9~A³˜( e #eŽr’¢Çqcj£ÔÈ -ÚAk+"ÀµEœ)ã„`;{ƒƒ£×|ÄäÑñ]G|Z¦±«¡È¬XQjÑ=¹ŸÏ2iC00u}ˆïÙÉ„•m](¤¥–yžrïÆ³³Lì †‡]/^¡~YÑø“^8uî¹=\]·QT*eÚ´ZCœÉ+Ê7Íóqzì0°÷½À¹ö¬4#o48gõ¢Öçbå&©&ôX¬âåê:“Ü A‰„»¶(6>/XObject<<>>>>>>endobj -1648 0 obj<>stream -x­VËnë6Ýû+ÞÔbFòCvî¦p.‚6½©­¢-  CÑo$R©¨þûÎÐâ¾EÉ"Éyœ93gþî…àO³Œ#Eï&î]-'†o`:g£ „h>eÓhq - ‚b1ˆ3e9X)êJ¹ˆLŠвgà¥SÓXøó ’© à»g Fç»Ã#+«W%$”_†Éƒwë0 Çl„‚kÀ—©²ü9—)¼*ŽN·•©K(M®Ä”†…pêUª¤p¦Ú1ˆ34ÛžÛ/­ÑQÄ&d´kвv²‚[£7j[WÜ)£“d‘J+ëè´ˢ̹“6IÖ;ëd‘$¿cÌðT™Êéóm\›û­ñü(ÓhYÙL•`6°2]l;°4yЧ}z3ļ»c\§ ØÌÔyJ XéÛþ½öXôÜiÁaªû+ÚÁ,È‹åÅ3‡Œcˆß1:GñqÍs³­åð€/Í%Ô°35Uü’7rìý¿áê2¬Â6ÃëʲãøÑYÀò>ôò f -£Æªù(?ì.7‚çÈÌPr‘%Qà'¥%2hï¸áڃ媰u“ׯä¹i¨ÉàWvƒ¯ 5ú/Ú4@u´u…9gÕ•ç]Š5S½P„?¦"¡A¸8õDj -Žï’ O«¥h›k8cóÂÉtÏódÍ€<¼µŸ¿0 ± =i¿î=aG‘cë‰æ,šŽpUÅ«á8 o÷qï·Þ¿?ø¢endstream -endobj -1649 0 obj<>/XObject<<>>>>/Annots 1028 0 R>>endobj -1650 0 obj<>stream -x}˜ÛnÛF†ïýsרižWEâ4­¶qc¥îEnh‰²ÙH¤JRqòöýg†äe¡(ô÷Ç9/w—ú÷" ÿ”…¥´Þ_øž¿Ìÿ|üå"ˆ¼œÒ(ñRÚS{á(vtw‘äžOiz1Xá{Á(ó ì)¼„RÌŒÜSà'^f 8MŠ®a˜Â·ŠÙi’‡H cf"˜ §H*4ÐjÐÎTjLÒBjŒ%¤vk$êçTõAfF"`ÁŒDÀ ƒogh5h\ uŽjÎÐϸQÓj6å‰8ª¦q$]Ï -ÎH[Én /20ð¥afÏAÃ-NDIP£5(:ï(’˜4hâ/m-¤…ÎÖè=…¡Ïƒ™©Õ qÆ9j4hžq5´àéjôž¢ÐUÀõZ š [«™‹z­ÍBîóœ•Õ ¹¿ôlôžbŒÞNÁjÐ0š»Î9[ š.sç¤ð8ÏW”™ïDužŽ=Ï×Qïd«ótÔèy¾3ç;ÚŽóuTç;Ñ$ñ -J5ž3ym5}Öí`¦Vƒ"Žo<[ š¦üŠ9[£y‚!¯IGEõ˜¾£FcFAÀ+v¦Vó|Ó…g«y¾ñ¢ã|ýë‰çë3¥óu{*rÔhPõì¨Ñ Øæ±&5SŠE\«AcÙUf[«y‚ò.8j4h.=>G²ùζVƒÆÁ"g«AQ&èlÍdûuÔhÐ<áýÊQ£y¾ù²Ï²ÇÆè˜lì²§ªrïàL£ž 5š'Èï‚¡FóC¬+Cæ &ˆo¨Ñè3²²¶VóŒTäl­F7>=µžSKÅ.b³²šûœá=ržå˜‹e(Èç×H•4ÒhP¼^™¥Fƒf|½±¶| ò˥Ǡ4R”ŽÈiØÆ9{vÔhP,då¨Ñh$Z…rgj5hñx5š‡ Kc¦úêDz #.žEV¢$g£A±i"+GŦ‰ê5GæÂ³ÑÈ -‡Æ;ÛZ­9/<ë«ñµžq‚­(ÉÙhÎJfä¨ÑðŒ— YÍÔjД/ŽŽ½’ãžCÞøcQ:_§AÓœ§à¨Ñ 8ªQ‘£F#nXð|gª û=߆Ç+JÂê‚(†fÌTL£‚¯Ú“©*g:SÙR 5šë àÃP£¹¾˜j4hÁ+ÒPI”Çø·bî± -ÎÉH\à”옃]DÆðy‰bC…øW>'ø¦‰`†ïI"y‡TCìÜ]ù‰Dˆ!–¨dÌ˘¡F¡ô!ªˆ1â$aˆÃ86P ±ôä6…ý Å–Ñ“»d¨Ñì8âüœ­Ñ è%†â¨Ñ /WG5)|Nqs±«§‰œx`|ˆroS¾Wª`f¤´/3LŽ÷ÉN¿¢œ¡ÕH' ÑG%Þ¬dÍˬUqL…¸JɪƮ$GQÆv¢jë¨ØøÖ‹;Ûªr¶3[CÕû¥ë囹tYëW=õÊPµÅ‚ÓËŠÄeâNTã:ª¶¸V»^¢ŒíDÕÖQµ¦XâŠ2¶U[G僉/¿Ú+~=U©­Ó¨7ÑCÕÿj¯äYQÆv¢j;SYÌòûÞ2þiAþŸíœBDÙÒgd$ÎacÆ ›+Ž\||âý©«h{ñvuqõ¾ Ð§Õ?ܤYN«ü^ƒ¿¬_Ýüåћáj6õ·ª½úOgˆ«O_†|]m^­Ê‡]Eí–®Ûf¨ša|ݘž”•‹'ÃÀ£Û¶ʇzWßÙ#~'º4üzûéo&—þ‚„Ý] OMýéF½ûãFÌ– öècµùµè·º9~ƒØ?te³.on$È">Ç(÷%á j‡§ª£ë›÷w´ÞÕS]'Ï#ßßËuÝ mÿ4=öÓi~¸zôá.¤kñÃøÄ î(¼}¦uÙÐ ­Ûf[?1£wW!Ý—Ý›ÛTëÚÎü1¦²§r L[0É_2XôS@ÿ"¢Ï¯šv˜B}~ý£†Â5ãG -°QÀè};‰cÎA0‹7Èœ»W¡‘ßÇFÖ}¬zz~ªõúùïU××móù5Õ=ûjc+:_fÊulZtê±èСÿÕ¦«á nvm¹¡ç¶ûR7’®ôq£z=™²¾¯Øöòü=l»öxÅüâYLëS_Ñ®ª~ ÕõíÕÍ-õC¹þBÛ®ÝÓïõºkûv;È[v;>Vkµ«†Š¼Ãó޶õ)·\áì{佡õSÙ¶ƒg2ÂePé®Àèœ%ÊŸƒh©ÀäDó¦ç`6ÂìÌGøbr)Å‹s–ølÖ c-JNtét ¨õn¨w;¼S_e‘`ÃÀQØËsõ—9ÅL~ÁøòLñ˜&!Î_`\19‘ŸW^ü+‘(endstream -endobj -1651 0 obj<>/XObject<<>>>>>>endobj -1652 0 obj<>stream -x}VaoÛ6ýž_qÀ>ÄÅ–ÛÙ>uI·Xq° óPÐes‘H•¤âúßï)%©ÚµEK"ïÞ½{÷ÈÏ'cáÿ˜æ)Mf”U'£dD³ô"YÐt1ÇïVR>Læ—xü·t6MÒþ‡_×'ç¿]R:¢u$³ù‚Ö9!Áo²ÁÕ^Ô^ZJÇ ­Œõb«JåoÖÿbÛ”Æã¸í,] ô:܉j+è`ì£#£ ?U.É -½“d -ªKá c+GÛÆ“ßKRá ‘IeÞ¼¬©­yâíÊ‘6 âè8õˆÎÆ“˜03U-¼Ú–2¡õ+³qf´J»çœg®–™*T†œŒ»áÖ GAazGBçÔ8þ帔$VzIãy[édšL¹R0NnV÷ß’1Of¼äfuêHUu)+ 0!HpMݽ²GÚYÓÔXæ†$í…ê3çBØœ6¥ýÑ#•‰MÎh·yÃÅJ´\àÏL”“ -UJD=—>;o¸¸ðXšJä̿Χ¨¨@r¿¼vä é¦ÚJëZ6¸WÌcDïz •V>²lÞ0Ì1°ýö„Þç©Í"òŠûrØzÔæÖYSK‡šðø2€ô÷Ro{¦*ìËtúÔý1ÚŽ/”cÈù¦V9W¶3,;CÌ SÙCPP"+¢„~Hr/׋ìA8šæ}àź–ö‚KžËL;¤"ûÝãO¢¬åõËT¶§J -°UòÒHO/çߣ$A§>½ûðïd1´ÏÀüŠN9È<ºR¿€à!€œ›¬á©Å:Äd 7+À×Ì@-v`«Ñè$9ù,ü\ó„Õ¹C¾L¡­^GÏ-Sÿ8ªŒê ]–´Úæx ‰´~ă³FæÂJùü*òyB¨/ô²óHÞÝ£$(Y ¸LhöÒhx’‚_ÿÐäÒ„î®né^«/øk×o®ízè&Sæô„ö°½ÂîºÝ\ Ž•‹#i fy%&£ªùhÂõÕê|¹ƒ>Û£>áx¢`%*ß”MgÐtB¡ÕìäÌbØ>|Nõ"ÆÌXÛÔžráyœJ®xq¸¿¥g¦?„ Ñhˆãþöz²¸ +£5Òs×VqÉt÷Ç]BK”äHùóä?èÂ/endstream -endobj -1653 0 obj<>/XObject<<>>>>>>endobj -1654 0 obj<>stream -xÝVMoÛ8½ûW ’\ V$Y•=$›k é~ć.P  %*bB‘.IÕë¿”ä:Nì¹lKÔðÍÇ{3Ò·IB1Ž„)Ís*šIáòjå”-8Oñ5œªpc>²Óõ›õäòCLW´®€”/qRPâ˜ÖÅ”úO£¿Kš}™Úí—×,y½~œÄ4Kâh‰CgØÖž_lŠÂzƒäÕˆÁc¨àÆhsb”¼z{²â±ü§&DXÆ#ÆYçòCFIÒe;Ksû¶uäjaI(ü£XBrêlQÌ`;µÜñV”Ñ Æ4„sTÀYš¡ÆG‰¤Þ ²¯=ÂItÃòXZ(<ÿ†ôγÅÅhj;çI_°± â‹rŒ¾é—ä™UŽ* gN¨‡@5Û ¾pK{Ýú5EÌZÞl \5ÔZwjxs¬œŽffé™4ÐiþìÖÃKÕ¹š9²µneI[£Ë¶nûFD¨»õAÈSbªü™`½ëÛg®‘«OZq^’ÓÄJüÕÜ"ªóqusGR(>´Æí§Õg$\8¡é*XݳfÃèŽ=qß8ý£[C?¶‚ŸG©ï‹ÒoS$µ~"«ŽÞR<ùÔ…m©ó](xHíPzM3©ž%$ê"œ¡ÀÁ­á¾Bä>³Qoç%òAæŸþøú~u;^ݨÓÂtö‡ñ!T!Û’Û¨în\Q²ègмieýÍËß¡ˆBµÿâ¢Ùpëf«ÕËòÈïfOˆ”µÒ ›·QÙ_]¡¬cRBù D[h†¸rfïɾ䮸¬µuX¶Ti)õnœ‡0oñ“¤xÂàH<•Û +žè̃(Öð³è¬Ô *\¼ >„¾öC·`­å–:!EL«^‡x¡ÐÁ+ ²5µáÖ§ ÐFDńæB7M«DÁ÷þ!ˆ¤×`¡†åžvÂÕ¿6è@ßG‰á•6Ô°=y°kØ¡øƒv˜´«uçšÃÔúѲ1(‡’­£ZËK@¶ÍD½á0?~ë¢ëuh¸·tË%žC!àŽ»n¤!dBåú'Yh]oÂÀ;ðÕѱì§Y’ƒÆåœò<ëžå÷×w7×ô§Ñ(Ýê¢mà-HÇïœ f‹Ø¿-Lÿ‡r³¯$oR¼aÀ>™Ï=Îûõä¯ÉkIlýendstream -endobj -1655 0 obj<>/XObject<<>>>>/Annots 1039 0 R>>endobj -1656 0 obj<>stream +† 8à¦c€šã4õÊV¦“|)O¡ý èû€ëËŠŽÇ­iõ7Ó%s\ùMJÉz:|×7×´³æ ã¡ÛéDãÍ6/ç–kãQ^Ä›hÑ#œ /ãÙã¶,ßDù*Á? +nI®Ýíÿ,þôð‚endstream +endobj +1658 0 obj<>/XObject<>>>>>endobj +1659 0 obj<>stream +x¥W]sÛ6|÷¯¸ñ‹”‹)YyKe;ñ$‘„™N§î‚j’PH0²þ}÷Ò’Ùf&mÇc›ÜíÞÞüí,¤¾BšE4ž’ÌÏFÁˆÆ‹IÑd>Ãs„ïRQzöÂ>uËùa< æE üĶámxIW†>¹a0ëîÿ%>Þ,(Qœâ”élNqB7Â'²¿ÜŠU%…‹€–¥Vz[šzG÷¥É´<ÐÎTõ*þÓÎü9ƒ1ç'}l úU‰ÙWÔ[<ù• +Ãfe4 ¦¼ò7SS¡TBv«xÃbÞòq®mMIÖP¥lûª4)‡'äS =‰Э%) +Zƒ(ƒ×d +>œ3Ñ û ïJ½Ñ…È(­³Œv¥Iji›tQY‘e€­Ë«&†‡€ú8}kLV KU=j;,”I®‹áÎd +¿„Ûˆa6Çv±[ 3̼I’ág•›ïŠ©Þ”"¯(RgÚH $QƒÇõÞ ¬¾ÒÕc¬XM€hL˜á¯•r'7õëÒ*¹¾Š!u.,3‹õÂRµSR§:`¯Œ¬sUØF9­ú¤¬ ¨²ušz®ÊŠqá P|a‘ªËQ¢DÐM'äÒ©Þ÷wü‹c‡‰¥<†Õ±Ë„ĺè$É@Jc,)?ÿ¾ºŽ?ܽ½[ýAÕV” + +Ké`j';èõ“.j]²Ž ¨Ú 6xàÝ_D¾èÆ\èâ‚´¥½Î²NDQ[¼·š!Ðá‚ËŒcN.z½K¸H|÷ÈÓð#RT]ÙòЦ™ ¹ÕES;lFP8gÒUÄ(ÞaÃ*—üwÅ™ƒÚ6Àœ>« +¥¢÷H9iÊæÐ=Í“5T€3ü—ý^.øÄ‚¨2ˆjñç3¦‚äVAËYVmJzÃü3DæàxC÷Á°Ñöª£DÒÒäî¼µx„4»¿‰,ÝæŠÛH»cZ “½S…T\ëNÁ\âFJQÁ"\Ñ€]ƒ-g•Ê­(ùœK‚á™ÖrZ1w™Œ±(5Yfö\7‹§ªtzmn£Ñè©í>Ê5<ÂÕÀñX®‘Ѷ0`å½U€œÀ:n$É«;x@A»‹ú«¸í"“=¼BJ%­â‰‹ëRæÑqjùÎf`ùÑÑòW1M8Æð¦m@xoëù_ iëùd^"/å¦ñž… ÌÄaRscH²ËÛ;È—× úV³/nj¨×ctÐúà]á›–OôíH€i1Ï2U^гÅàhµ÷ñ€×ù®Æì52®Tö\-á³”‰µrԃŖFaÞÎ{ c²™LêÚ)ôMgƒµ<¹÷ÏIñ!Å Ëe´R1`àh‘çìµua£(ˆF¡#~>vƒù–D~2m.§s¯!u˨€ñà-˜g¨ëŒ†Ã=‹ _: ›uÇýíܧ߻f0…êy¶°¹3Úó— éüÚ¶Ð-]1%zÏ¿y±¿9¸Îa„¢ñiI•óÜÄy.¯gc”«|¹oœ÷àä6`˺²è6?ó«­ÞÁnìö(˜û«e·c\—p˜Î‚‰çö‡ÅœãÞ6½äY¼tòbȽ%›Rlz´®­m>/XObject<>>>>>endobj +1661 0 obj<>stream +x¥W]oÚJ}ϯõ…T Ò7š¤·(!I½¹•,U‹Y`Ûëz×¥üûžÙµ á6·º­¢¦Þ3çÌ _:ÔÆO‡!uû§Gí Mýv?èSo8Àsˆ…¤¥{qÚ=ÅŸ?yÑëwƒÞÏ^„ggÿ~ñ•:ƒ ôžù¡;†4 ñ„NÆSºÐôáèíìèäÝuz4[âpˆ‡!Àv›fñqç,ƒN@Sµ4Ýh+ÍëÙÜêQ§ãoµÂnÒ%™µ.“é¹*#»–4_^ÒV—¸=ëÑB§xŸŽEF¥‘dÒy.ŒÙ,ÈjÀ=eº—ÀDŠc¹XÉ€·©ö‘/>(»¦©Hç¢Õ T‘äkA±F°ðçÌ«4×…Å›Ä}ô‰8Öef "PÙÊ9ʤ%#R³ÍbJ¥]ëEí²Órp9Cd´ÛýBºL]zy¡—*A:ÒZ˜4$pVÂ3þ¯(8ßÂ8³ûÀ·ºŸ“C< h"²…°ºØReõ%ÔgHÌõ7Àä"vYÏ%ûqpÆ…Öax`!ÐL°ì›dhUè2¯=’ÊPÁðû«ü5»tq²¥DÇìˆ v3ûˆ,ƒ‹ÑŒ b+U߃YÐ>©$e¹òÕµÉèæøtJ‘1CÈïò>22á•ó'Q: 01–ôŸkfßÐs³¯E¶’Æ¥dd\Ên™Ëb—²Ðé*:sØœÈ4à(2ÓÐo­â^%>ê}5qeq¢q±szäàÙ½ÿ.½€þ…!¹ ©E9gV-·Î+t¾­d€ûø›Q%NÎxPÙ‚#¿™ÑT  +õ ¶ûÉ+ek™<)swƒ¹Â‘Y’ìðSÙR©°¨ Øæœr¥ŒïËlO ÄR3r,ÒG¹}s€÷û«ËOŸ¯oÏGן'£ó÷ã›Ë(šÞ¾›=Œîñ4Qq¡^Ú(zÊ"ŠÎË̳CŠpEw^¹×ð\™¯3ù¸‹bï ÇÑäÐе7 +‡ÞL9ǧÆlOÑš8v€i˜3uAÑÖă^½ZAHõå–wY¬Ó¼´LŸèx¦¡$è…ÍÔúÙ0î\°4U‡4t‹x½§:nŒ‘9Á1÷›Îðë*r ¿o¶Îi#¥U TD¯iœžU®"G˜y¡¸%0‘¦B¨éZ§CÍH´.£@iø&’RVXVÀSŒ€;a×O"ÀØá©ÕêövÍ­¡.tˆ!vòÏ[>˜V˜¼Õ¼JKc@ßu܇ØI@x(w¸£Z¢Vn] ."J3™î¼otñh¬§¶8,­g´q\ÆN°›h×zÅ|@[bkŽÕôÌÐ"U˃GC…C\Íá&<¯È, +ûzž·{Ùª[÷½Z­‘q¢âGÇ?8kL¶t^1®Ac ÑÄ Kdl© +äJš†·ú;>ÏŸyãAUeMƒ¬˜ÿ¾å©s¿pŽåÊ@ƒOã-:Þ%ŒÞ¯³XF¯ßé³t極¨[ã\ç[LÔ?@iì‰ôêN©²ÖÏpèÍõ÷æAÉÎÝ€jwÿ|x–LãZëG´ãW$°;€‰ÂRÒyR¦h' +3ŽS­Ff~rÕuà:yƒ3Xïr r 2­ÙçiÅ=9ô̹_¹l›µŠ}­EæÄŠV‹éÉó|žø0ÄVÛî@Dàx×mi<æ\™ô¢Õ2ÏÏn<{ÏÄbý˺\½Aÿr¢ñ3&½ðêÜ {2¾¸ÝÏÞGQ¡µmb%Åʪ‹ÅJ·õóa ºXK±&Ÿö‚Їö¢4ûÃ`Ø?u;¦ÆÊõè7©:õXäùrwKž„ Ä‚§¶È¶¼qÔJ½Ätæþ€¾·W¼µ`~9mUµò Æ ÆËa¢ÿ£ùÜèÍok;½úu_ÎÕn£û;¶e}£Åïç'ïþ» «Ùéã³.õ½ëéhòvÄ}è ×üBÇeнÀumÇÚN_І]j Úg\›—¿õPÀþ)ãâca¯_ÎŽ>ýqsAendstream +endobj +1662 0 obj<>/XObject<>>>>>endobj +1663 0 obj<>stream +x­VÛNãH}ÏW”ò² ;Wæen+4à C2Ú])/݉{°»=î6™üýžjÛ"d™"+@ vwÝΩ:õ£R?!M"Œ)Î;?(œQý”¿„Á”Æ£AÐç—§7áˆ. }}ýXØF/õq/<N'øᯔ´êœ/:§×C +CZ¬àl<Ð"!ï÷i]-úÛT¤Í†Rñ$IPQš•Ê$¹T8Š…¦I2QÎÉ„*«ôo$Y‘?ˆ†«æ†%gL/¾w¢(ˆú!õ¢I0DðyôM'²¤Ï‹Ó裿_YIfE¹Ð‰q¦Ü>Y™2–°'Í¡Û9]ýŒS¡×ð‹ÃŸþ®Ê(Nx—}ê…T¾ù£”…¥DÚGgŠgë•™ô7€DoÃñ¨¾¤,áW•qU*·¥8•ñ#i¹Abô§B¤KÝÑòÈ”ˆ|‹Âmw_YY>©XR!p3\t㸠;Ñ5%M”$¡'%àt]š +ašLÅ[Ršf±S€ãR•2æú´@AÚ÷öCc4C޾{aò¢r(ñ…Ñ+µ®Já”ÑËå,É•VÖñÿ°·y‘ 'ír9ßZ'óåòb¦»t<ï´ð>w`Á ”{)˜–¥MUÁ0ÜëÖ]› PÛ.ßé!ï6Ä 6)G65U–0¯¬t\Ûî•fT’nÚ7ØsÙŸ`Y°Ï·†¢ÿ®Î^|B‹Ì¬+ù;Ýà¦9a2iÚ‚ç@ý²7vìý?×Õ¥@a⸲ž"»ñÃ[|\¾¹ƒ™BÔ@ÍGùfw™‰Eþ C)ât/‰÷gãx#´/–C³p€›ÄøVY™,3Æayô98Ç-JŒþ }À­Í8Ú +#Á75ߦʲ¢¶q6¦|ä4š—´A¹÷Dbr;o—Çž„§×q3_zhöÂá¨îÂe4ž{xž@þ@/MkÒ~©=¡£Ø±už²ä8†r)aúìIˆ86•vœ}ÏiÉѯ½6Ãáöøºs'J×=¡î}¥=Wßgn±-$¬åy|€‘6¦/02£[—Æš•£[tÀZæŒÁ<°lošN…åáõ»†D x³$9½—¹Áh™kQô”F›sUñâ€\.M…íµuùÃÇ;?°Ú𻿉˜r”™±ò°xp7u`„×HÝãºà?ëÍ«-ö6¢_ý,0oÁÍOÂo¬•þ'¸³a%I±z@’êðË )ˬ_Fë/ÁõZmZÕúåÈo7{ù€–zÍÄ>«§”…á8ŸE4ê‡ÁðlÊÂ2ŸÝžÏxÉùÔ°¦ÄW/Yl¹ޱyOÔ›ôÏø|xDAÐ\%’v_ƒµ‹ÇÓ`<âåŸE#~vµè|íü6*xkendstream +endobj +1664 0 obj<>/XObject<<>>>>>>endobj +1665 0 obj<>stream +xWMoÛF½ûWÌMIáÐ"¥ÈN’4 4M +«‡¹¬È¥¸1¹Ëî.-ëß÷Í,)ÉB↉;3oÞ{3ùç"§9~rº.h±¢²»˜gszý¦È +ZÞ\ãs_¯©–‹ëU¶úѼȳåù÷ë‹«Oo¨˜ÓºFÕõ ­+B€9®”/>4ªÚã~Fwº¼±[ºSÝF½\—7óëôæ«Åù¬«x4ÏèÖF瑱ŒÆÙôè’ò||´¸F†xtݘ@ÖEM;HŨÊFWÅF§0¨­ÈnP]«UÐò0ž d"•ÎFe,^P–L×;•$͸§ÚÆ­¥NÙýYLW©0"[¯UÔ846ü éwÈåb0•¦½<°èteð$YwÎßgô~O•®ÕÐÆ34R;Ó¶¤ÊR÷«M©âhï: »—R.iט²¡N+ Œ$`jŽH~°Ò+ØkzÐ>0¼‡äñYsÒ'¨2!Û=7„ƒIi2$N‰Fo4éÐëÒ /{zZnȦÕÒœ_¬@rpë‹ÕŸa G˰À mŒL¼’ …ÑíŸøÉg~µ­ÛÍPR5]©´ÝÏÈõÌšñ„‰ ¡ÛdH»>–/™íàÑjÓ"‚#g‘´/p‰.M Ú¶q’ +kS’Wv+…Hf½³¤×CÙ6à—þ5‘qNo&y-$mË¡·”CwPv–SóÈW7Öüª€0ǯ ù:2‡îät +C€Cøü\ÍSÔSUš†Ž6îšfR|÷ùýÔ_AQÈ5k]©Z.nFß^nÇÂìúÿöRº rƒ@ghÉ<€ÜSš£¬Gª‡C1…¼y,Þq:8Ä?ÉB²©¼®Á‚êÉ=øLpÌ]¦»¦æ`Ï´­ØŽ ãÁ±^•÷:Šñ¤3U›@ŒNù{¶+´„fð=jMˆÚ²W°¸kU§g¤½wþY›YL6cX"µ*õÿq™£Œ¾ò3ésÙhø+D3Iše1qáx,ÑwJ:.¶œK‚­¢Q`†¢Û»ßþ@õ¬Q¯_¿~=~í|ûßéF°Hó¡÷a2ƒÉóeÐt +åt4bÇYr:;LŒéáÉ9þÆuvš²í‰Wl47l®ƒXûä­¹OÎQ;ö tò50 БŽÍ/Ôº‰Å±mëmŽñ–ö:üTpìaºmÃ4)F›Iä’ñ0ÚªÈ;Idgbƒ0é³ÎG&£\œ!Ã…ŽÂâËü’ÿæ—SÊ£ðúv°BZçú pŒ0±:Ÿ%QH(ÁžýÁêäõìÀ•îELÈPôåNz¤0™õK{œƒ&·¹eÇîÀ:u]‡3$Ǹ(3DU²ÍHº¿;<ž·þ6ͳi¤“y LZ¶F?îBã=õ4&.*óiòÃ'ná8«bÖ÷ý|ƹóhÒûd[L=EëO¤1Ù”×}»ç5 /ð&–£‘¥Ã*VÈ\Æ!<ÜÅÂÎ⺳S:D¾Pg€<8 ׉ TÔ+Œ©SnÌóÿè +Nì{N©CÒï•§Ûá´-'ãRl™z‡ô8¯«O§³dÜ?³õÚñ¼ã®_áÌd$ñÚ’æ(Pƒ/ ²rvEå›=ü¡:¬J¸oüäoLM# +;YQÆuCñ>³§­sf¥Õ%…× Û†niç …íœyG{ÀvŠ-˜}¬l}IR9²µƒ’ì3ðª«Îg +«ƒY?nHZ? )iÛÂŽ0¢Æ-æ)„€«2Õ™§ÈFg…ÛWŸnŽk÷r‘&úóKý{Áêuÿ `øçÅŠ{óq}ñçſ귌endstream +endobj +1666 0 obj<>/XObject<<>>>>>>endobj +1667 0 obj<>stream +x…VËnÛ8Ýû+î¢@S –%ůè"M§@ƒÉ îj: š¢-6©!©þû9—”ëG§Ó1èò>Î9÷PÿL +Êñ)hUÒÝ’d;ɳœË¾çkþ.ñëíâƒrYdóëï7“ÙÇ9mvȵ\¯hSòä9mäͧlOI¼ +A›=õ Úi§Ñ4jebˆQª¢`éÙØ†ZÚ<>‘0}ùðDuÁócœÁsþ÷¶±ò9£Ï¢ÝŠ7›o“œ¦Å]V¢üMï‚k4n9UßrÄìcN÷©Ïi9Ç,EòYq·"üL ç÷@¦ÝVÇ”y¶>Å­‡¦‘ïþ2Îÿ˜ãæóÅÇ#:-—\ƒiáY£H{Ò-C"L á©æ@¶©”; ¸ûŽah«H LƒÝ‘·´×/>0ΡF>ÎFrYÓ޳pŠªJÜ0¤³ÁJÛ6†Tèà „óYBøž +(€¥0½!.ól‘ÑÏä úôôøŠ|Í­TÊÄR—㮲80”ÃåÄÖ¾(jU¨m壎xßë ¶ºå˜¤iû¦‚<¼¥®'©µ,»NI½Ó2VÃt1ëYí¯FŽJÀ„ÜBš²9P¥½D7`x%{§ÃjÛ¨Œ6 a”¦b†Pín:„”ÊGáZ¤rip}ë&ÍP®JŸŽÄ.wζ`'h +êMp½«¹¾ { ^.“¨7–*‹ÞA.o_‚#ýt ˆþÒ|õ÷±•Qô¬ÎTaÜ»wTÜ—Y±\gE±ÈòY‰Í/aø??Ë<Ó;6þÌr޼ä<2u8Dƒ‚5ÄÍNSD$¤5FÉ ­9 !b>"JØ‚ +Úö¬jE‰í¢&®Yþz c-EPüòÚ¾¾Éèñ¬&“zAblÕ^y½ØjT•ÑCòž3A8xhÜ*^´qF "Å .ŠFCßèÊšCk{Ø´§Î¾è +öæm GP/ªá•æ­LØØ mx „|VŽk‹pUòà=Šf+Ø÷œ­šuÂ{ xZÇÒq‘ý¸ÚgòM§ROi;yDC²ÑP*>¢’|FÐëQÖЂVÕk,U‡‘@WÜ1 çð {÷ä1~W]GÛàmƒ°[% ƒˆ¼­\T>Zcˆ´[g„Äóþ6rÍÆÝÔõ†Íä¬>ƒ{U;Qï”*ØékL¢€g. ðm« »fo6€¸†ÂðS†M¬±FSÞ£ÁjM®Ç$DšÞšÿuØ%¶Û;Q±Ë~¿/·ltÖ§é€W­ä3zÝ÷pàÖX‡Ð½Í†aÈ<_«™uûYÔBßU"@u|ñž]=¨7RaV˜ý!¥ðXO¶©+ô¾û¥S±zÚàVT,q¤ |§Õz_£‘søÀ]ÇR£Dň“ÿ¾ôQNluÃnüƒŸ,{Do=¾ªü–³¾£E¹Hï Ÿ~ÿ@OÎ~ÃÑ+{žJ°Ýð,Óãé*Ç;DuóË[m—\.JÜ„ˆ†Kr–ß6“?'ÿúendstream +endobj +1668 0 obj<>/XObject<<>>>>/Annots 1022 0 R>>endobj +1669 0 obj<>stream +x…™ËrÛȆ÷zŠÞ]5†‰ A2›”­ÄcUÅÇ’ÇYx‘ „˜8hÙoŸïœ&Ф*©©Rùçs¿tóçUìfü»EâÒÜ­÷W³hÆ/ãŸO¿]Åi´ty:r·wy%'°s·Wóe4sy’DÜjÅ'¸Ù +½[ÆÑÜå +„3pïâÙ )Å—8ñ•ü)òYXD¥ëEc ~ï+ñHH(jWQjÈSrg©f>Næ’EjÔ`o”Ô' ;ŸMe †]i +ƒ¬Á&™I;Œ¬Å°™–-°Ã.’ÅÀ »’ž2¬Á{—&!‰×bXZËÊZ,ìj¯Å°‹Dò[ ›O}öõÍX :òÈÛ –îž[Ö`XFŸU“ÊŒÝYÆ ÖbXjdY£Úì:6©bƒ1KålCyVX/Ê_½NøGÑÕE—Ö`sQ!žÀ ËÔ,,k0ìJæÄÈJ£¤ìBi*æƒXˆO²™—ÌȨ/:Ôuäxï ¹sáÎHâ5¾§ õµ Nä` ¤FR –)æÏ`Xæ}°¢¬Á°¬o š ¦â¼xÐKõ}ÈÌh2hV¤š=Ëk ß~2Ñ©"e™í‹ÏrÕ0¬Á°Ì +vƒ¬Áâ•æmd5rÂûf’óØ#ïTÀ(Ö›a §D‡a †åesiYƒýè¬ +£3`XnsË «ÇK°k1,‘õáREiSH®+=ѹ2‡cÙ²ï=i±«ެWËíT›QÚ6Q Iä%~€¢V³4’æ2ÔAÔb1*G£a †ÕµdXm¨„*h»e²Œ=ÒÊŒ¬žî†5˜êiX¯™[‘¶*^ Y‘j6Í|˜°£™w3âe-»rÓ2¬Á°Œy ²òÊ(ßÈ꜄k½´¹LˆÇ²‚d¤ç ‹´ž•8€RE"èÉ™ÿX@™ág YЋO U0f½IiXV1Õ ‚Š |‡ ¤ä–ÌkcÉ íÔPé‰ÔyJQbEb2¦ ›Òù†5X§ân5–ß–5v%g|õNñ¨Ã(›/V >Éy§þ¾Îˆœá Ô¯qø>rtî1ȚÑôY[:ZMYj>ñžä½_»šŠeúÈœ¹úq‘¦Õûäɧ1>æi‡ÔåÄÖVn8"v³¿ ‰œ‚ 7p*8•cÿh j@A8• œÊñ:æÏ±§ È œÊÎOûé¶¡öANáßȽ½»zýŽñ¹»-ŸWóÅÒÝmô«*¿¬_Üü¹7‡CYoªe÷òî?Û”Û⸓|7}³nvjæ,5XÒøËjþú—Õò2ÏpfÏÎö{µ.ÝGI_r©•€¥Þ}Ã\ì$Ëݾùðö<8±ÎÉIë­×eׯ¸kŽ-Š×ͦtß«Â]ÿqû¬r7uß6›ãº§Ï]ÅÔ éA=¾t²(¢¦õÙ>s„§½#ÒL‚Úy:õ¥í~Ök]4Ûþ AÛh™ß«ÝfÐ𶪋¶ò»|2Ú—¬­¾hûáÑnϱÂjþñLÀ™®ÄAB¶ªË~ÉÞ¹ ž‹ áìhϺ豿H§{kUïÇuS”{Ÿ·W“…ŠgŸÊdž¸ööøp9MêËyò'ñ©ùßʺlÙÞU½mÎ=äÍ_êþøàvå÷rwÑÍü-°°seÛ6í3ÏÈ Ò3šƆµÚëZ /Mui7çL,úõã©*“&@ÝÝXxYÛUÇþOóqaÆ1–çþ ½yáŸá±ÄRæL·Ž„.>÷^äЬ¤m?!Oj]úœ$ UÉì9RB›s!_¿ã¢©· m ýzÄ}âò‚’qËç —è8ÑÅñ÷»«]ýé²endstream +endobj +1670 0 obj<>/XObject<<>>>>/Annots 1030 0 R>>endobj +1671 0 obj<>stream +xm“]OÂ0†ïû+Î¥^Pú±~ìÊ@ã…‰Jã=Ž¡#cCÆŸïi»±š,Ëš¼<çi{ÚñM80|8RCq Œ2üå:¼=Π­¦ À…¤²O5¬Iš‘JNuJ£kµ£Râ4º#®ÊqÆëº!%î@£;Òèfšf£Râ4º#ew«¥Ä®ýºöš¢;f¤™ðý†Ú@£+ðG7¤Äht¯TY”4Óᨌ¥ªÞL".ʹ¿P¦M2R¥þ©~+*78fÖßS ;²td¾Ò8¸¿m ¸m¸{®¸ŠJª)¸òܾu{Â`Æý©¸m„¦‡f +ÚÚ)˜÷0Ÿ‚œõ”³IÌÌ=žáw›n+£°îªº†¯ÍOÕ|Bwj/uy¾óÅó•íö_*³8󇉭Ï˼œÚ}Ytpß—CÙt›®j›° ×xz(Ì Ë}ýÓ;…ÅñX6Ûê·<û’L[ª•Àÿb.Bo޼’?fœ½|endstream +endobj +1672 0 obj<>/XObject<<>>>>>>endobj +1673 0 obj<>stream +x}VïoÛ6ýž¿â€}ˆ 8ŠÅv¶O]Ò.ÚÆC,è<´DÙ\$R%©¸þï÷Ž”âDíÚ"€%‘wïÞ½{äד! ðH³§”–'ƒd@ÓÑE2§É|†ß#üYIyø0ž]âñFÓI2ê~ø}urþþ’FZåH2Íi• ð&í]íD奥Ñ0¡¥±^lT¡üáÍê_l›Ðp·æ½Êzw¢ÜÚûèÈhÂO•I²Bo%™œªBøÜØÒѦöäw’”Fø\¤’DQ„7Ç5•5O¼]9ÒÆcÁ^§ÐÙp¦¦¬„W›B&´ÚaeÚ NöBi÷œóÌU2U¹J‘“1`#Ü á((LoIèŒjÇ¿—’ÄJ/i8k*O’ W +FÀÉÍòþá{2fÉ”—Ü,O©²*d)&ä ®®ÚWö@[kê +Ë\Ÿ¤í£P}æ ®yÂ*áÜ>[÷&ÐV¯¥ç–©¿•5FuÐ6M Zmr¼…D?âÁY!sn¥|~y‚<!ÔzÙz$ïîP”¬„†\*4{i4½t8ºþ´øÿÉ?síxF9AвVo£f~ÞÆç Fç†WýáieNÐÊïZ‰5ÍùÑ6hϦUÈÜóx²T¸y×ü|cŽGŽë öÆÊ»õ> ØŽ'c£–Í2™‹º@«e rèR¤ÖЧÛ/ï×íT‡t®é" (Í0Ù5öî2Ý 0€Y☵q8Ð¥bÇÀ=%Ížl¹°Q0tQôc=ìÎ[yžO›½y>¶¬Úî|·Ì•¾½JˆÄ•´°söÛvšà<²dÉ1´Ü°ÑñU7Êk¤Š®Eèš$f&²PJ‰qìÔ‰Ð–Ž½×á˜Å®c&öñbfª0†¨»1N¾‡PôÜbñר* ×¹£§ô~m×]¶ËæºEÍ¿d[à,!úÒDhpÆ•«}âðH5ïÛí¥y’_ñðËdÖÏÍ/! ƒ¾øÉªjØÏ†öüÅ…xï€?¹@O¦ódz1­À‡ãçÝêäÏ“ÿèÂ-endstream +endobj +1674 0 obj<>/XObject<<>>>>>>endobj +1675 0 obj<>stream +xÝVMoÛ8½ûW ’\ V$Y•=$›k é~ć.P  %*bB‘.IÕë¿”ä:Nì¹6KÔðÍÇ{3Ô·IB1¾ -RšçT4“8ÂíÕ2Ê)[.pâÏpªÂƒù<ÊN×oÖ“Ë1]ѺR¾ÄEI@‰cZSê?þ.ýeöej·_^_°äõúqÓ,‰£%v a[ox~5b°) +ë ’W#M ‚£Í‰QòêíÉŠÇòŸBšagý“Ë%I—í,Í}ìÛÖ‘«…%¡ð‹b É©³E1ƒíÔrÇ[QF'ÓÎQgi†$zzƒÈ¾ö'Ñ Ëci¡ðüÒ;Ï£© ìœ'q|ÁÆ +p€Š/Ê1ú¤_’gV9n¨0œ9¡ÕlƒúÂ-íuë×1ky³p×PkaÜ©áͱr:š™¥gÒ@K¤ù³G/UsdäjæÈÖº•%m.Û"¸íC¡îÖ!O‰©òg‚õ®OlŸ¹F®>iÅyIN+ñSs‹t¨ÎÇÕÍýI¡øÐ·ŸVŸ‘pá„V¤«`uÏš £;öÄ}ãDôn ýØ:~¥¾/vBJ¿M‘Ôú‰¬n8ztHñäSv´¥:Ìw¡à!µCé5ͤz^”¨wˆp†·†ûF‘ûÌF½—È™úãëûÕíxet N ÓÙƇP…lKn£º{pEÉ¢ŸAó~`¤I”Eô7/‡"> +Õþ‹›fcÀ­›­V/X`È#¿›=!RÖJ7l>ÞFek|u…²ŽI åƒ8m¡âÊ™½'û’»â²ÖÖaÙR¥¥Ô»q¼ſ$Å ƒoâ©ÜnXñDgD±†ŸEg¥n˜Páæeð!ôµºk-·Ô©±x, +`Zõ:<À …®X•­1¨ ·>m€„6ê *&$4ºiZ% +æ¸÷A$½ m 4,÷´®üí´Aú>‚H ¯´¡†íɃuXÃÅ´À¤]­;צ֖AÙ8”lÕZ–Xâ‰ó±m&ê ‡ùñ[¥€X¯Cý¥[.q…€;† ”?xèO²Ðº Þ„wà«£cÙO³$Ë9åyÖå÷×w7×ô§Ñ(Ýê¢mà-HÇïœ f‹Ø¿-Lÿ‡r³¯$oR¼aÀ>™‡ãçýzò×ä?k5lûendstream +endobj +1676 0 obj<>/XObject<<>>>>>>endobj +1677 0 obj<>stream +xmËNÃ0D÷ùŠQWec;©ã.S$H@½`ë:Nq•G›G%þž™²B–­+ùÌÌk"À陂kÎ8”L!×Í’îàQ';“<>o! +˜š$J ˜ +„sãÖR° Cùòù`ÎÌ#˜fœÌL Ápð×ÙwS° >¼­P~ÑU9¹.ö©¤œj½£=6¡;ý¯Â<.«[;ÍG:€¯ÚËÐßüˆÑ¶G‹‹ê~hmç<ÆpêBœmšo#õo¤PÔVgЛ¸í¡|Ý•xú³wö½›[ZÚN¡ïazçÓ‚oÿÚÝûçJ3µ‘Ôƒ:ˆL.Š'“¼'?®¦c +endstream +endobj +1678 0 obj<>/XObject<<>>>>/Annots 1041 0 R>>endobj +1679 0 obj<>stream x¥WÛn7}÷W ôbVÖź䥰]»_)q (¸+JbÌ%7K®½ôÛ{†\I¶ C‚–KrfΜ93þzÔ¡3üuhØ¥Þ€²üè,9£AoŒïþhˆï.>¥¤¿ÀÖÝׇߎ:ãdLç£A2¢œÎÇI¯~Ð4 ×ô#Ω7Ä«øÀ¯ÎGɰ~ÌiÔÅéý;¶Þïw’Žups§~Ú]Ùëðþ·žuÏ{8ÐëñU9õ‡Ýä¼~ÚƒsßÅs9;jߌ©{F³  G4›‡±’\­DáeIÝnBS‘§‚„™“õ+¬]Mn¦”i%w§³/¸§ON¼§Õ%]Üt2[)GY}KfÊ`!œj¹Bfj¡2RfaË\xeM¯SgX_Õë'}¾ @@ -3728,39 +3832,76 @@ l ·"üM‚@𻫩Ô(€HuèòÀº¾ A6ýÂ%S{Þ˜†bGöUÑÀf&sÈÎ (cঠÐëi.]VªtOÄ"ÐôK…¤ÐGHsí‚5ÈÏa s›U»~ƒáÇ ÈñíÃlš\¾nòð‘=srîÿxõЀÔñþâaÚw[\,˜Ý]Ïï?]ؾ?”ÖÛÌjwÌràØOnïÀÝ@'^¸H-_Ue‰e5 ÖCÄ™˜ ì†ÎóÑÃébïæ<³”dª<•etÝdA’1¡4 âHn£­"{‡9ï˜Õ±¿p§”åÓ kz$`‡~Z’¶ÐÐ*É¢ø°ÜÚ"vBd m‘ Fäu§ÅB) íˆm¸ÃÜEk€‰E“+=}¯œo4Yªã܉›éqr7 =;ÖüVÂàò1“„óÆ÷áæ #`™+cµ]nösÌV®¸¾é <1äÓgÐS»ŸÁb=­ñð²Kö9…’.v@ÄþCº%iŒ+šËJ½Ï©ÕHå -tjbê¢M€ "OBrÚ7£ý€>Ǿô3>ÿ‡28ïFíîôúÌãëÙÑŸGÿY¡,endstream -endobj -1657 0 obj<>/XObject<<>>>>/Annots 1048 0 R>>endobj -1658 0 obj<>stream -x­WßoÛ6~÷_qÈËRÀ¡,ùG’Á´Éš¢I³Øk0,Ã@K´­V"5QŠë—ýíûޤbÇEÑ=¬iU[$ï¾ûî»ãåï^LüÄtœÐpBiÙˆÞI¡‹èŸB©vR—R‹USìÏki@W®±PÊ&7šðwFƒ·¶‘EARgäãÌ-¥.Aך$é¶±+U}RYÞx"òBÑã#à}º¼‡ ÷²6¦Ùó›å5Òaê ™…Ûãh™c#U²nr‡…=Ë,sëE®•}íÓ1 Ó.#Áª8¤½?Éà̪¦­„úª:ÏŸß½„­Z5ë/VØýO»Ÿ²¬ÛûBࡹ¡Š6PIÇ"«¤#ï¼°¦O™Ñ?5YÎAZ´™Êèö2 –³:‚zæ*•L>èûóv¹Üš6¶ç·vˆƒŽ ÝÛé® ÖmÕ•føî”UµóÈØ$âðMý%ÒYn#XÉLxª·õw4Œ=×®ð†‚Î!Pà)5ÒÈѶÊÒz¥´¯³ÇC^D$âz|ÅA ¤Õ’ì€Ò<;ß«¸6É„fÊ»½œÑ§ëË”ï3ƒW¬=ÖÌ]£Ø|Åн²¦­SEµY[UôI_Ý„¯ ,Kjé*g+V)¨®hrîÞ;d(« -Ô9BÑȘ°o´°pŠ4ºØ²ýÍâä³ÅV‡ÌìN@}Gµl ¶ -s€A“Eì¶»«lhW2mZÔçæåþ üyëGŠÚ'wªá¾ÃWÁÖ8ß+\%òIæ…/ç~ö° -ZÝ/–€´Ïת3ɽ†3Ž)îõ6/+@ã–Ÿe܈öBïZÓŒeP´à6¶^åè¹»†÷"DŽŖ^p¶m™/yÚ=†É·-îÚ‡\ƒRÖcí:ð²FËw³Êîˆ|4`Œæ–Å‚~ÃäÀ—*{öæ.º¾CW’éßÍŸÇÕ—š„o?ãòaú]Ïs*å^FÜËv‘2«iˆï$P<Áo'Cšàxz~sqŽ{ÛðÍCoMÚ–˜—ÝDÊè0œûGÇŒ~.ÀÿgøÇx¾?îø—£q‚$ÀQ<3€ËYï×Þ¿‘Wÿendstream -endobj -1659 0 obj<>/XObject<<>>>>/Annots 1051 0 R>>endobj -1660 0 obj<>stream -xW]OÛH}çW\õ¥¬DòA•ö’P¡BÈ&.éJH«‰=v¦Ø¯gL’¿çŽí@-V+­ª‚í™û}î¹—¿OztŽ=ºìÓ`DAzrîÓÅÕ%~Çü³ÿ…¤È ‡#¯ÿÑÁ`8þðʽóúÇòëIò—Ô¼!¥Ô?ï{Wõ[B+g¡?à¬eúÆ?éÞ©×#?‚·£ñ%ù¡Ó|N~pêo%IQ$ò'‹îÝ‚ŒÁ‹¡­)ÑÖŽhSÆÆûÍÿyrN>›÷ÃÓÚèÈâ¦A‰F†$2RYPÈTfV$Tæq!BIV“ÝJU4Fýβô´ŸRX¨WYØ“DXil£Ž¨ÛÈÚro€,Ár¤Ë,$Õ#›“QV’°„g/móž!†:CxEÝ\:7ÓÝ©,Ô;ÓÍËM¢‚® r•wwÑÎúžÜKç ê¦LË4Ü)óú<»‡5• ²­ÄM»…õPš Piø#å…Þ$2åœíøV¤ö2ôh.wNÖpª’éYßÍW“oÞôþþ¬eÒŸÝÏg¾7û1;£µ»4Îèi~ã{îi½BáªGy=™-ëËZù×õ‹È–^È7Ç®´ÝÛ+ꡲŒ‘ΠW¹ß÷t¦(/2ì廤ö\DV” cvº)ØŠ,v…zµNŸ±vºŽÖ1…y(GiôSoh§ìö¨å¿ƒfÔÕeKEx­tRz8Þâ¢KˆÁ2g¸ÌÔž6zOºz_LZ1ò%#"F”ݪ,f†euUL|ç]\€ ©B¡*d`uq¨à¹˜à$IÈÊ»b£KK™¶-ËŠ3] s†& -XØh„KK¸'eÏH$‰†Å˜ºd×Ð;uˆ Ò$¹Ýw‘»êì3°Ç †ÀXC*ïré²Ï ™nÐfhÐJScT'áQýÉW‰î­´Z>B‡ -‚ ­àt&Û¾<9S.F«ÑýàgÀG+ÎÁÏÊ9H±HtÌuü<šè,Rq 0õ¦à äýü¾kQ$n„”‚XP¦hÀ(æ–¯ù°„ʼÐó©û5~þ)A±¾]ÓÀ‘º#-@4e`LhC<ö·Éjöcq=ŸÒõ—ççëéÃÝ|rû½üMð]?}\¯~9™1 "-aE¥ ÞPþª„óâÓ1ˆ´U“‘‰XŸèØå=ȬdÈ"è&d² - €ÛB'´Õ;—K!PÑ€ ©$*@b-[‹¦ë'"pm%m༮\[Wu¸¨gÎ)”…²ú¡WTÇÿF7C”£c¥**gÿèU%ú6͆©øÜ9±ÖÅK\è27àj0~e5#7~o$r -jU“råÜ|—=éÑwf–£ÑÇëí@fÃÙnuoáûV/®P&Ý`eÑóé0¤2ØL…U¨¨ÎÚjlQ‚&L~ò”½3¹ Tt 0c!pD{>‘n¸‚îµÅ%I€,°è•·fGW¤?<’>j°®Súùê¢ûùjü«K¼\z#G4Ì^ÈÕ=Îhµì»ã‘WøaE¥½×úÅM'Ã*\Pˆès÷³Ú&í¾fZ<¹Ùk¬Î«j¥Ž Ûü:ez‹9Å -Xkö Ü `,¥]KðGp î4Nñìn¼€ë¼x(à-A«"…}Ù2DdX未wàrÍ/‚@׫™´XÜ^0ÝU¼Ýèb«a”éúª]¿{;® ¼7Âß2ãþtèU=¿º~¸¹&Ì¡ŸÜfS”nÝçn`«F sy~Åðúkäp4öFýžƒëù'œüm +Yendstream -endobj -1661 0 obj<>/XObject<<>>>>/Annots 1054 0 R>>endobj -1662 0 obj<>stream -xVMSãF½ûWtqYSedYزÙ*/ UÙ…]»*‡8‡±4F³Œf!¿>o>d@–à²%u÷ô{¯ßÌ_ƒ ÅxMhžÐiJY9ˆ£˜ÒÅY4¥ébŽÿ¼kN{{>¾ý2˜&“(¥Ùt-¨¤é|ŽoÿKÒÚ%JN<ÑKt±Œ¯Îh2§ÍµÓt†¸MîrǴɆIÍ"ú]¨\?JbÔ]óúAdœnYvOÉñæ;RLi2ñ)N’9Êlòá¦àX+ÃÛð^3IL)ýÄTÆ =Цèe½M"ºQœôž ‘¤•|"VUœÕ(¸¢ÖuGŒÖ¬Ü1[8¦“Éi”Ør«â55š -m<ŠU­÷B¢®¾ná6¡L -®CB!cw7×%*¢M! 1cÚÒF¬ñ5É^í.y¹C-,»)8ù#Úµû%ì$/Ѱ”$Å=GO:ËښĞDc*ÝD!g’‚k4s­H×¹o'4vèÅ´4ûV"ÕÏÛhHOº Ðíêr{<úOËàì{^g×!©†X&É´U¥ë†Î±lÿHGýXžóÜ.Éa'SXþ=…'LNµf¥]L×SD×=`áኊz8#P¹èŽ+/Æ“âL—•…ÄvØæwÜ5ìÚ˜CÏ% -åi;\ú‹+®ϷǽÊLå”Õœ5œÊV6¢B¦LWÝ€u¨åÂÜ#ÑêæóòúKdՇ霌èõ…dD¼É¢(ÚG˜#,h˜reZí·ÃÙ¥K¦¨bw€S×Tj€™ó† ‰Ê À¥«Fh(v)¶íÚœ+ÿœÁ>y«YÉhî‘[®dV`Œî¤Þ1Ùƒäùi@]sə嶪– ݀®ì+DvÒÞXmh)õ£e 0‚ªurðªùèÓYç+S?þþôýÙ--vÖ5ìîw߃՜Әÿm…;Qïut3°zNqÇï䢿Y£ë'*CÌüݘ7FÊšÚ½@„¹÷ÅçaIg¼ „(ĪƩd×:¬;iX¿Kîiý<;èa¬‚9{O3ÀÙzÖT ë5•VÆÙZ(õbCüÚòúi¸\=SÙÔLlïàÌ;8sÈ6† ì,–—¿õ56ÉðDû¼P™l¡¡×8™úI~É]aC£Kh¨ÖÒ=¾J_œ*ÂÎøåfó‰>úýÙŠ:×`ÞmqnS}qL€¿ìpl±v¦|êÖnùÎ;yp)w\°ƒ²r{¿;9Gëøj0IqüZœÒç#7cN’t[ëï˜zDf8(@ýÖŠm»']ÀÉ<†åÿï5MQ:KpCÄätn3}Ú ¾þ>׃endstream -endobj -1663 0 obj<>/XObject<<>>>>/Annots 1063 0 R>>endobj -1664 0 obj<>stream +tjbê¢M€ "OBrÚ7£ý€>Ǿô3>ÿ‡28ïFíîôzÌãëÙÑŸGÿY—+endstream +endobj +1680 0 obj<>/XObject<<>>>>/Annots 1050 0 R>>endobj +1681 0 obj<>stream +x­WQoÛ6~ϯ8äe)àP–ìØI`HÚdMѸYì5–a %ÚV+‘š(ÅõË~û¾#©ØqQtkZÕÉ»ï¾ûîxùû ¦>~b'4QZôEož÷¿ð%#]ÝÄ{YÓìùÍòé0õ†ÌÂíq´Ì±‘*Y7¹Ãže–¹õ"×ʾöéèÓY—¡`UÑÞŸ¤nUÓVB}Uç¾ÏïÞNÂV­šõ+ìÆþ§ÝOYÖí}!ŽAÐÐ\PE¨¤c‘UÒ‘wQXÓ£Ì蟚À,ç -ÚLe4¹Jú¨å¬ÎŸ ž¹J%“zÁþ¼].7‚f íù­â #Hw2Ý5ÁZ£­ºÒ ß²ªv›D¾©¿D:Ëmä+™ Oõ¶þޱçÚÞ@Ð" +<¥Fù#0ÚVYZ¯”öuöxÄ‹ˆÄB\¯8„ƒ´Z’ð@šgç{÷À&™ÐÌ@y“«}º¹z@ù>3xxÍÚcÍÜÕ9ŠÍW Ý+kÚ:UtY›µUõa´ñÕMøÊÐȲ䡖Q r¶bÅ£·ÌQáùWÀžo༒MºBɃÖŸå&ᬫ?dYóÇ×9J v»¼ï¹FåH*dNy\(®'¡ø’ÃÑøÚ +¡cƒÏBU›y¡JÛ#Û)¸®jűæzI…Ácª´,Cªö|›ùgÔ& #µY-—Kî¢eÍ=@)U!Áç”KŸ¿vÈŸ?ÎÐ÷läñ†– +õÎÙBœAñ™YëÂÈŒX“ ˜›±ë^ ö{ +¹ÎkÛô(­h+vŤhaÀÿÇÝýÍdööþÓŸ€+]1Á~‘cw&Á–ÀQmXaÁ[€ÃLY¯sAË|~1f@\]üåxµT¶¶!Û„ […ŽHȆq +v©× +¨@^wƒ˜:_æZÏ Ã9î9=ó–2:H1ô•íAèà²*±Í†vÖ¨²S5f×+oB_gГYGû‚Ùs\;~BRœb5Ppvèk²åíC/\%Ô’×#4’ÎT)+:gxѵÜ^œqwÏéù ÝÍztع +w‡O¶Ri¾È]á½4xô,á=;=b÷ë»»]¶qº·A´Ž$O[á! €t»P7 SèáÞ9ÙFÓ‘‰>˜wG·;¯Åa¦žrÔ o8ü­KñšÞÝщ +}z8ù@ç˜ ¦W÷ï¯fâåJ€ÙyïÆ•|RP]ÑäܼwÈPV¨s„¢‘1£ßhaáit± dû›e‡‡{«Cfv' ž£Ú‹G6P[…9À I‡"vÛÝU¶Ç°+™6-êsórPþ¼õ#ÅNí“;Õpßá«`kœï®ù$ó—óG?{X­îK@ÚãkÕ™ä^ÄÇ÷z›— qËÏ2nD{¡w­iÆ2(Zp[¯rôÜ]Ã{‘cÂbK/8Û¶LŒ—<íÂdƒÛwíC®A)ë±vxY£å»YewD>ô1Fó ˇbA¿aràK•={sÝÜ¡+Éô‹ïæÏãêKM·Ÿqù0ý®ç9•r/#îe»H™U4Äw +(á7‡Óð¿<½¸½¼À½møæ¡·&mKÌËn"etÎýãq£Ÿ ðÿþ1žïûCþåè$Aà( ÀÕìà׃W\endstream +endobj +1682 0 obj<>/XObject<<>>>>/Annots 1053 0 R>>endobj +1683 0 obj<>stream +xW]OÛH}çW\ñÒ¬Dœï*í$¡B…%nÓ•Vc{œL±=©gLÈ¿ßsÇv‹U¥UÕàñÌÜÏsϽþuÒ£.þõè¼Oƒ1…éI×ëÒèâ¿Ã ÿöñ?—»ápìõ?Ú 'n@¸×­~¾œôpÿœú“±7¤”úݾwQ­Z9 ýñ{¨îO¼qsãÊ?é\©×#?†ãÉ9ù‘SÙ%?lù[IRäÉüé²s³$cEødh+"J´5¤c +Šñþðžt©Ýg»ü¨u§Â\[œ4ð>‘ÂȈDF* s™ÊÌŠ„ŠÝ&‘$«Én¥Êk%ƒ~ûJYúþ2£(WÏ27±%‰°ÒØZ…ÈJso€ðAs¬‹,"Uc»#£¬$a Ï^Zæ…:=ƒ!dF°Š:;™ë9˜Î^e‘ޛήvl¸S»Î>ÞÛAß“/ÒÙ‚„*ÓP sŠ]yž}6•À³­ÄI»…öHš0W4ü’v¹™ò{{>«y´{w×p¨’áYß,V÷Ó¯Þìöö¬¡ÒŸß.æ¾7ÿ1?£µ;4˜ŒÏèûâÊ÷ÜÓz…Ä•þÃåtþPÆ­•Y-D5äâ~½íRÛ¹¾ 2Ëize’û}A÷h†ô"ÂÞnŸT–‹ØÊœv˜½Î# +·"Û¸D½ÅZ»ÏXk­ãõ†"¸¤£0ú©Ú+»= +@úo yuÑR1–¥LJÇSœt‰kÐÌ.2õB~!]®—Ó†|Ȉ˜e·*Û0 #´º‡Ò'>óÆ/À„ßT¡Hå2´:?”ð\N±“$dí³"Ð…¥LÛ†fvÅ)„,†‰9C|Ùh¸±‘–4pOÊž‘H :è‚MCíT.f€JäfÞÄî|¤³OÀc ©8¼‰¥‹>d ÌP ¦Â¨N¢£ø3’ÏÕ[Jµ¼… +ÎéL6m¹2rªœV£úÁ)j“i_µ87¨xÎDˆE¢7œÇßàpàÑTg±ÚU¯2¾(AüØÎðç»Ep`F®AH)ˆ‰QŠŒ7\òŸ€€–H™'zl¹?“Ç?˜ëë5 <©Û0Ò@SÆ„4øc»&YÍ,/3ºüüøx9»»YL¯¿ –ÿ¡)^ êg÷ëÕ»9Ó Â•T*1à áÏJ8+N—ðA¤œÜ‰Lld~J§`—Sº“YÁ…ÓµËd%@1¶¹Nh«÷Î/B ¢ +RIvT€Äº–uÕOEèÊJÚÐY \¹².ó0ªzN‹Œ ‹\ÙýÉÐËËíÿ¢›!ÒŒV‚¶R&•£´ª¼úÚÍj†)ùܱÖùÓ&×Å΀«Áø!„UŒ\ÛHÄÔ Ë"å̹þ„79jÒ£oÌ,G¥·!–Û†ô†³Ýêb³…í[>¹D™4@ ÊâÇÖRt¦Â*dTgÍÕº(A&ï½l±uf'ChÏÍ̘‹ÑìOF¤ SP½6?ðÍcpÈ +Ù>ÔÊoŠm„ ÕL€ÉX‰e8Yê†<8®÷a*4êœOªÌÒ¯B _Õ÷ž ˜²¶‚Ccßéä¢kêëG%„ ³ ˜x<ºF¡²6aæŠÊ0™@øBÚ@ŠàÊ[±È=[àJ™µ­†4–̉y££„E‡Gï—q¥IS¤(˜˜Æq!§×8#>es›+°¾® ûébÔùt1yŸzVŒtÜD9y…áÖW.Ft?¿£ÕCß¹뺔3 +ø GÿÒ)¦±3€7+ØH–†GÎÈ7Ž-Ý4G‹{Ñ@‡ ½q¬º²cyÇ莎Òur Hä¯ÖîrH˜]Q䫞zˆôAlfÊY߄ʲ £ÓâQUûù´G/¥g±Ìs¼nؾ׉t-ƒr$dêï5Ò2Ê!“Óô,T ÷ªZ³;À‘«7Ϧ®fã7qwñ·Àqþ*óL&ôÍ ‡ŸéëÃâöÛrÆSën£g`ØŽZ=xåºKÎÁµzùL˛ŗ.aþ*Q1©µ7ÄÇd@ãs7‰¯.ï®. ]á''c¦Ã ß³Rùß(8Þ>ï^°ÿc¨Žña1êWN F,wîŸüuò/šendstream +endobj +1684 0 obj<>/XObject<<>>>>/Annots 1056 0 R>>endobj +1685 0 obj<>stream +xVÛrÛ6}×Wìä¥òŒDI´.NfòàXvë™$V,¥íLÕˆMÔ$Àdõë{e[‰›ZÖ…$v»çìYüݛЯ -b:SRöÆÑ˜f¯øœžñgŒw-)ãXzø¸ý¹7'Ñœ¦³8šRIÓÅ": W­£ÉtÅÇŽÞmz£«)M&´É8èülA›Ô¹Ó&éß®.ès•ŠF¾!ü¾Ý|^-£Ëß/O6õ†°Â¢´_ãr89E ÜÚ\¬F׫ƒé¯×«ïN¿5¼•©ªeÒ˜úÑøvyû=ë™·Æ3Æsä¸ç…5RµVé;ú°¦›¶yoÌ=©†”¥TZU‹]!©1¤´mDQP“KºybP¦¾F´É±¿¨{²©hoÚWI®´ätÇÙfµ))úŽcfغÐ$¿6R§2¥JÖʤôK¾©^ÓmJè”ýº ['m•HdÕV™J„nÈVR¦muÔ9I"­KUËæÁÔ÷¤¥ºËw¦Î ‚ZY?±íèê5MoÔ†§S_°8ŽPÇß”N̓¥x ^­½­DrO±·ì(Ëx¢1ĹÞV~‘µ(µ6{¡T“y]ÅÝhI&C-T’“ÑÅžDUIQÀËãA´åN¥Ë©ÈšaËm°Um2U î>OaSR(© ”QÎîijJ¡t€WXÛ–l‹ÆÇdŠ.e¹C,l›yâ h×6î[›J$ "ê^"'“$  +Hè9L]ý¹v¦×šLútBb‡\lë0ÍÚ®þ+±mß îÉ€dÂ1K Z-/¶'ƒï–±lQ¼\|q]ÍBë÷ <IA¶­*S7ôT|}ŸDÊ|Æ–¸\x²9ãïáÌ 0ábJª(™æ]N]sõP\üó~S£åà`jgÝaåÉx@Ò—81eUB;ØÙNr¬®©}G8G!µ²Þ¯–ËG(›Zh‹ñÇ'¯Ì‰8(sð ·‚ +d’Gçï9†dXqT^¯tR´àÐó<™rOq WWhtÕ¦pÅ]ÍÃôybóñfsIoüñ‹I ïFœªOŽ Ð—Ž- 1';ì–c¨WÚÿ_‡¨éü,šÏbdžœÎÙÓå¦÷©÷/5l¢êendstream +endobj +1686 0 obj<>/XObject<<>>>>/Annots 1065 0 R>>endobj +1687 0 obj<>stream +xW]oÛ6}÷¯¸èKS V,Ù±<-íÖn@WlÛb@_h‰²XK¢FRöüïw.)ÙŠÒbCá$2u¿Î9÷^öïIL3ü‹i•Ð|Ii5™E3|sþññÝ$^/£-ëhM%ñ2ºëžJzœ Ÿqz;æƒS8¢er ËÅz…¿|Œ¤|’¬b¼¸¸›y§‹x­º'vÊf‹uì>1ãƒùÝ2JÆþ–sd•Ü­£…Ï1Æá©w—¬×Ñrl5ïðeÜg‘°ãðÄf¯7“›·ð:£M–«5m2 ¾I¯Þ¢qÒP2èW}$§)ÕU£JI¿¿~xµùûÅq°Ÿ&k¸ßdWé–RQ“Þ:¡jr…$+ª­ «[“£«Á·G¹µÊɈ6º7”Ƀ,uSÉÚÑA«t}M§à˜ÏhÏC¸LëR‹¬ ⽿ùüHÚPkU½#cOu…tï(^uéÎ颾8¢‡4•ÖÒã0ÑTg’JÜÍaÃhMç3@Û›ÃÁoµ3:kS‡TŸCƒ ÙUp®l_Ìø0R¬IÖetÍ%Gôs¨•£É Ð׫7ºN[c“Ï.ïñd¬¾¾A#d^¤…L÷ª~[QZMûX‘°ôLVʽ€U-=1\o xié ŒÒ­õ±·FÔpf=¯[I£…üÎ(¨¨u}ªzÃÀK@ÕÖ™i”¡~W‘4ˆÍ³p¡TÏÍfpFxMP¥3•+Ž {-=qŸë¶ÎH8*œkîon¼ü"mvᯛô`£ÂUåsRã&’È×Þ)ò?»ù¿”Y‰´Pu§xI¦­9ñ¦Ý–*-Ovj‹>bZl4ô¯Í‰rH6 ËÍæû&tŒ" +µP…>íA4"Ý‹´×À8-ÛŒEáS½Ò‡Â2ú¦šyÛîÐg…ÄŒø¸£FÂÐàQœ,#¢³ŽÎéYi“4÷±²#® mÝ¥±sàÒXÉ ¹ºVBÃ?°#¼Ÿ= <;°LC¹8àÆ}ùò…¶F‘(—Æ")K<úižR];4W:*DÕ™:¨¬%åÐ¥å¾dä0ˆ¾‰à³ÔzÏò +¯'BhÏ"¿Ú ïí<¬c÷½Ìûv®š›TØ}PAé9•pË„l¥;JŒ QŸCiøñ¨[GÇB£»Äœ‘ˆÊ,î¥lØKE-~kÊôÆe_…fÞai;%BŒ\qcd.1·3ª¤+tvé4R¹/‚›ñ¼ôPG¯µ£o­u8H…eiö2ï‚öünY¿9\‰4aÆp°¾¦F+lß>§^ÃO”q<£ô"ÒåÜD>~ÜCj£z9ÜËîr°“>æK(¶Þ‡Ñ‰ús ‰4rwä1–Q[½ûð‰Þýñž7º­[¼__EôAdW„îbXðùþÜÛÑ*0<¨‚r,¸TÐJc4ú™A½¼…ê¥Én à’s°|¨ +lWHL`j{GgߣñÈ ¦6}@Ï×ø;Mð\÷wn÷<…sÜ›ànǸ›R,®Ëeyûs®¹æ©æG»“ öË‚G2ÉDÕ ¨r~CZÛVPšGûã(@úxI§º9õ›Ó¯Š¡Rzß’4"›áÑe * Ð-²þÄjÛ-æ•k=‰Ü®Ð}êF²é6Õ¢’|„«ùyåÿ†{&8˜ƒ!_uú\fN¸*#ñÎ —¾Cðzíßb¬.ƒ„0Ø„9yÔ§i¸ØfW¸¬qP<žïÛ0D»þåã›··ƒ!Ø­'ö<Íè¾ kñÏ?o÷>/XObject<<>>>>/Annots 1070 0 R>>endobj +1689 0 obj<>stream +x­VMÛ6½ï¯¤‡:@%[–¿vOÝm’6‡¢iÖhQ @@K”ÅD"’òÆÿ¾oHÉñ:IIÄXŠä|¼yo†®2šá_Fë9å+*Ú«Y:£ÅjÉ¿›5~çøo%U¼£§Ÿ×¿†£ùõuº¢–²Õ*ÝP\5t•oføžoVé»ùuØ «°{¶ni1Ïq*žåÝó5v×Ù£]0ÇÍe€wÛ«é‹em+NfµYÓ¶ !Ïh[Lþ®¥&åI¸÷ŽŽ¦§ÊXÔ çŒ-É;IO·ï`%¬LŠƒ‹_F»“”×3J²<Ãüäu¯É×’ +Ó¶B—ñôr¸ssFç`‰’’n:'íAÚ¬v¢Ý‰ÔØýÍKkŒ‡ +_{MÎ mkåèA5 V +/‘B©¬,¼±G*DÓÈ2š€-í…ÒJïC„ ;?ì9ÓÛ‚£.%½™¨T¦áÌoÏoŸ]$èÅ~“ÿÎ +]Ôož¦‚(zk¥ö Üüå:£KGÞK9ÊTʃlL×ây+eÀî<—_þºŒJG0Z↦$³ãøá|w¤Þ yDdÄX!Jìc¬&„2Àu3„H‹ÞR£€€©§ŸgºÑez˜2±ÀOž}Êæ X³G|UH5Œ䎜òÁ “׬üÐ3ä(˜7Îbnç…™ƒPV6R¸X—eÓ7@@Ri´|„Ü4æqØž¾ø.ú%–îo¿»};;ÿ"!°l±ŒìÏÓ |J²å&2u¨lÐØƒàÚj¥`*B901¯¨…Þ£ú=²f}–UÖ´ ¼¯ãí #ø'ÜD2|¾+Y1Ðaò*u …œ[¤ºˆIM_\S†RAÄKJÖAÆhÿãd±Ú¤«å<:Ë7öóíÕŸWÿ.â”endstream +endobj +1690 0 obj<>/XObject<<>>>>>>endobj +1691 0 obj<>stream +x•W]OÛH}çWܲ›j‰/’Ð}¢*H•º”]"­*UZMì1™bϘ™1!ÿ~ϱ ز ¢ÏÜsÏ=÷æö`L#üŽi1¡éœ²ê`”Œèx9M–4[.ð~‚?+©f““dÖðqužÃƘVlÍ— Zå;£­²5Æÿò~õ‡Æí¡éq²8ÆÑU>¨Ä$¥eY ÏÍÚsÃxp8™Ã+_/Éo„'UÐÎ4$YS_[‘+}M…±$¨¶òN™ÆÑ´NM¦ +Q­E¸Q©ë§RÁ«7t£Í6ôI¦Ì»K·8– ÇÓdÂÎùÄZia•t´UeIk d´¨dŽÏ~߇ l’¼÷R³ï„¾!ÊLhº6´Ù ;eCÏ‚d1ù=’y¿B$-­ÿoøZÐ +¥s¡ö Ê•ÎKû.Z8¡1ŠÈÕNgûÉ4™%tå…õŒ5'áªuNÆ4Þn)1Y¤ïy$ôÉè_=y»c„s€müæE£  +[yTL.IÝàÂFV°HÑIý øH2£ ÒóŽƒîFÜ1 q3$‚òƒe¹}sZïÞï'Çæ8"ÁÞ>û^¼-:ŒG€>3UpW"R¶õ<…Tú,µYRšL”1¦‡,PG2 ¡Z\ƒÑÜ<¹ôB•@^?sÒ‹ÇÔôv ­¸k&EÖ”Â"!´$J`¥`’qËxk¬·Ü¸C‘9s-¢‰¼±9þŒÐ¯ }Ö`@ôIíâeVÜ…˜¤°ÓŠ|W¦E~'´GŽ,Á<øÙ“Щ܉KÝ?öœèdÔõƒ•\©sdIL•ô“z-ÈÙíhƒí´ÅJW°Ç•,OåŽ*o•Ýà`A™”V^‰’ÀJ-3† ß6ÒÅÔÓs4-T26íøQÓŽµm ÐkìMtöëêìwb S–fË vŠ—«¢½ FEéâóÕ¿üÆ\üòéô’c†¦x«Ö 4E¿SªV‰Úõ+õŘ5PQÛoÄÀâîv¯@ ýFCBÓ:ŒÔÊ2žž¤>«A ‚4„€ãG ºc¨Óç1Ð?< zayüýuC‹Ñiçh­Œ:§;_Oc{tÖ©J¡1PFî°ñt‘6yØë6¦ÁÄ j‚úR¨ÇòsÇPÇÖÒ«~/0„Hæè¾Wq}Qå ¿5"GÎ0•È8;÷øŒè¤eݤÔûy (!4,«Q™­@xܼ”6ΦAªRdz:ŤMÃ| /]uFXK0Rzö¡%±€%Ç2PCüãÜÊapµ”ëÄ¥›Î£ny/2Œªäž$âý0(?_Çñ.n ké·œk´º—ÍŽñ "žP>.>ïЫ½µ¸Ðt¹·kÈu£rÙo¡ 4ìºBZ$JVà]dWg=”®ë€õ}€îˆƒ jY—Av¾¿ç(^ÊóÕ>üöl¾en‡V áÿ°ÇòÒñ=0ñiW±‹MØ#eÅúè <Èùe”¾Æ¡‚šâPÕ±{H¬g\˜C¥±²uHqÞ10àcX °ªe¦ +4޾dI;Ž,ê´=,HÒWÂÝ0B7îM'ôW£c>ûi¤ +^=T;¥öyb=ÝÒ.ryØyÂf+‡±¶Fäv9>/XObject<<>>>>>>endobj +1693 0 obj<>stream +x•UMO1½çW ê¡©Jö›%p£êçÚ¶UŽ3a ^{k{üûŽíXB+µ‰"mbÏÌ{oÞL~ÍrÈèÃqe ¼›eIuž%TËcz.èc6ᠬˤÚ?xÓÌÒ÷ä94ÊU/¡YåÉ2høüàààÇÙåŧ‹ôçLmaPâ-h%·À8ÇÞ3zPk8‚žÖ¡CãÏÁµ\w£3)‚P𪹡‚:œÓ¯np­6ñ`‡dž@Ó +ëÌ`‘—ĨYÏ;dÊÂV`[=ȵzé`°¶gœ ­ÐÝ#ƺºwBÓe_›™ë¡Cåì!h3 ± ,7¢w‡áªuÌ8|¯r¼£»ôhÇ€H…}ôcxQ“âüCâ =„MËz 7ƒu`‘’>~û’À§MÀß²;¯&%•‰ dF +4pGÚqУ 8U·Ú‡é‰ª°c[PˆáÂDp§áVH >˜…{”2‰,N 'jÞ3‹2, òWR$p&ÉŠ9q‡§ˆ uHP?`ͰÓê©`”¤ðÆ›7:ïX4DÇ×ÝEM›Ç 2‡t4öÆjr^ë+Iq‹”@x⣞œÄŠ@bñ '|XÛ­ž¢›”38Ud {¯éJ¨Ô¶>Ï›%KOk賈5©Ô„(µ¬[±åE^¼ #ò¿±¡Acìtže„NwŒ„!3áòÁ±•D¸.€Mß?:…·^Ãë‡ØŠgrøf¾þI£ÈÉ}!»Æ®>fú‹ž°ÚBë'“Æ1b °ütí/ˆO O‚XOÛ2ÁA¶ >%na`XüjŵbÈÅz£iKX [eÊ÷O“Aèbµ ™çŒ1Áqñ¹ywºR¿™|Ý«ï—I¹%µ…ò·Öa5ó»ÌÏ^´¬©õ-°°ö•ÀÖõmjïLµÊý3Ev«r +¢š~å]ª.TƒjD£·—ã>ËkúßX–P–U4ÎÕÙù›3øbô ro5«”†;Îðb°8Îh:Öóÿ]U½LꣂöçUæ½kf_g¿îRû¸endstream +endobj +1694 0 obj<>/XObject<<>>>>/Annots 1079 0 R>>endobj +1695 0 obj<>stream x}W]Û6|÷¯X(z.ò·Ï h›¦I ô¡M òBK+‹9JTIê|þ÷%%ŸO¹ÉÙú —³³³CúßÉœfø7§›-7”דY6ÓóÇÇ“Åò6ÛÒf¾ÎTÓr±É–ý¡O“õ*[Ñf¶Èfx9ßndh¼“—ÛÛlM«Ù*½¼Ýbfº“—X„–·+D]mop-!S9™Ï—ò -QVs}ƒién˜¶XˈѴ·»Éôý--f´+‘ÓæfK»"¦‚'ùÕ¯•j;Z,3úÈ­uA7zÛüËÝ×8s~“f¾Z +QVs}ƒién˜¶XˈѴ·»Éôý--f´+‘ÓæfK»"¦‚'ùÕ¯•j;Z¬2úÈ­uA7zÛüËÝ×8s~“f¾Z ¨]q…¡óŒþh‚³E—m›4tEóy?tq“mdè®bâZiCª({O¥u´ïHIÖJ÷>¨½a<2¬<{Òž¼ª÷êçø™YwÈÑ“9Ê´•:O3z†"B_ÙÎt°l õ*p^5:Wæ"h? ¥[ Ø¿âòÔSð k|X,¢ <ªRæž‘ÓÉvä»}­©‹Œ2úÅx{Mm @@ -3772,2300 +3913,2351 @@ N êÈenë6k 6·Æg¾ÞSÃGßÓ™L‰BŒŽóDÁòvÔ¶hç>ÓηœGnC”a!4g-…c~{T@HSêCç”xÀy 6RL€ÎÅ[¤ …A©™„’²¤¸äØx…š+ü}¹A–„|¾¼¤õ ~le¨eç Ûç„ûö‰Ö2èÅsÿ= Cc{-½oÉX{‡x¶;T‘rQbž²ª\^AþÂÖÒO Fˆ/ÏáxÐ!äûh”zJûÈ{jÕ¶‡«Ú×ÓéÙ÷ÒÕ4b¿ôâèYðâEF¸a§ 馌üNß?ãÅo“o%ÏŠ.é[hFË‹ôuVí!™±sÖ¡'ÿZtò ptˆ†˜<Üîïµ…Êk¤,ÙŒrµ lLì§x‡¥~D;ÖÚ:‚¡ˆ‰Áj¡\1×7ö¡U®–²ÈõSˆbȲ¥äÖ¡F0Á¬éa\ãߥï±^ XÁ—úºZëµÿ‰vbðøÏîDº–ÝI5ßtjß&ºÉMW0 -çBôŽ3h²P%Œ^-jÄË}‘ Õ —`™Òq?¨\4s”Þ¤°-qXXá%I‰r#*ÍH%þyH^a×í H~WG8¼cÁlÄâúíÿ‰+#eOSÍ) iaw‰Ù$eï~+ÁV*4…¸(:4£­c¿9.;/ãÎ -ŽºB— m#déG剣EãA—ÇÍ2VŽPvFÒA´â‚´ÁËT ó”êõÛ1-£èæ3ÂùáˆiÏ,=D̥ŃÖi”?õ{J -|sˆÛVÁØ.Í5( 9‰c!W›ö¡Bû;ò­Ê¿Ù·wb›©¾Åcad¶›¾_÷ç­«‹lÞ¤WCÙ®ÎÝšžãLhWØ42i»ÑðŒ>_Úa©“k'B¥> )ALS\œaz¤%¿vhVÛÈ® £Ä·Èó޹Eô¨Q’{0† ã2BâPR>/XObject<<>>>>>>endobj -1666 0 obj<>stream -x•WMo7½ûWLu©IJ¾,ÛzpP0Ф©£à w—»b´Kª$ײþ}ß w-wmŠ @Â%93oÞ›Gýs2£)þÌèbN‹åÍÉt2¥óËÅä’–—ø÷½¦R>̳Éò­³ùÕÛ'–oø´>9»]ÒlFëÁW—´.§SZçãFåcõäÃúÇÉ”Nç+„\ãõF/Ý"_9:M6É-Ór㘴þÏû½T»Šjý¨kúu¸ß -ëì¡qm ½‰Šˆöæ5…ÎÚê{âFEÚ¨@™Ö–Ú  2–\]hÏ!QÌl1™s1Úãl WÒ7ÕdŠ”Åf>ilÀ£•ÎS¦òí^ù"P&3µ‰>Ú@¥©u"v¸Œÿãª[ÍY›{­8ÿƒkH]#¥Üù‚SYSš\ÙXúœtY D/‹¤ìlŸ\À-*k\ˆ/v»ö²7HØFȺHV#ÄÕ1òSm´GeÊÒbB_´òÈC!E4a9Ó=Pãs‘Ôûþ"d:›~Ä©Èv^ï”ï Wô÷Íýwª•¯4=ººm4ÃÍ*TTRËÙíÍÀ\¦ðéb™H:_L–º³Q{«jÒÞ;þK7¦ôÅdÅ,¸+¥ÐJ#IÝ}Yßܹþnîïÿ¸Q£CPˆ -¡ ^¢KŸÉD|T`.ñ§R(½µúi§óˆB¸Qª¿ß€)ä[k%2Üîw™ÊE \5ུJÕÖ|+`¬¥W¹öLLìLñcÎ ¦Æ­¥}ƒ¸õˆ!Â÷ _€Ð€ÔCw!ꆂ+#/=|èÎõªD,Å‹\¡¥w8Ñd²Œ†0ô¹ -tSå¢k€CÆuõ þ|ΡŒZä&‡8HöÛçOÏÀ{mÓ5sBë(¤t òF -óõ^¶5£!äc®nÿ!έ–:iW³²!¸º-Ðkô£k7# N:{éô˜|‡&ÃÆµ5÷%¸®Ú¸=EÇg¼+Ú8þH¦¤ Á }•¨Q[Þ…2XíÎ -6ºx+*KRB–¤ö)L%ö¦•Úí F`…@hþ „Qh³ÂÊè”Ä©ö´)lµÞ Ûø™‘¬¿4éR$(²çÛ„Ÿ] ¢sµŒÎתè ãf1Ø<Þ -'üÂ!Ïn{Ãxá‡AW:ûKB޼çS纎 ¸Sq¥ªwf@Ž)þšémýÅ®[ Šà0’[kžtà–X°ÞG“·0Ïô'¨TÛ>Ñƨë1„¥˜_m³Cøã.ÌĨ–ŸSÃáüZÕšÓ@7(RüðAD.rèßshS@ÚL°Îtû\Æh×l%x0¾3ÉAô(Œq=φ¯w¿:rð½ìéXzö*È-¶!éWÔ9ÊEx¾‚çxu±J»4r`a9!HÀJÁe­6Wî=ª¿3‡\Exï:9ZV é1Ÿužúýö£fÏàÛôû¬X#N¦ñ ëQ>rTŒbÃè¬. ã¥yú©Ÿ{A¼¾139Lg“ UÊ«ŸËcøFYÒi›–ûA<æy—f§©wÞÛÜ|9Ú;+fGüHù½ÁÈ|7Z¾„›Ðg6O[ŒË'aSCrªÂ# H€Ó0Zyðk¿›m|Ó‹Qð¶ƒYsÿkb’Ipœ7(ªû¹ CŽÉ›Ïn/»7³~©].hu¾Â¯0<,¿]þtM_½ûË¥ß\Žl÷¨ãè§ýÓ‹éï÷Ùº\]NVçs>/XObject<<>>>>>>endobj -1668 0 obj<>stream -x•VÛnÜ6}÷W ö¥.h¯õ ÈÃÚ^' Ø»®%7 Š>p%Êb-‰ -Iy³ß3¤”:ªûPlq8—3gÎðëÑ”&ø™ÒéŒæ'”VG“hB‹óóèŒg§ø{†_#)÷ÓÓI4{ë`~ ¿_&Gã›sšM(ÉãäôŒ’Œà‚/éñU!' Í]+ñTk«ê':èÖÕN•æEšŸ“¿¼Ÿéiðó~¾@IvŒ‹ÓˆÖµ3:kS§tL4v¦³S¤Ó¤P–rUJJu턪- *•u¤srÒ:Ëq)55ÒäÚTä4½ˆReÂÉSü*'„u$J«q¹,Ãå}!¹BÂï³,œË„ÞOç!ÙT´Vúh°hŒÞ•²"$¥rRŽr¡àEÔÒuosëdcËÛ4ÂZ £²ä(8 yãïš]À»»ò@{mžå …\Õ2ê¾ÍN¢óUÛB·eF™¦åí­¯À{~Gªöÿi“¡M°Ú×}–Tˆ7Jf R*ŒÌÛQÓBkN«@e@¦r¦KR×ÿ„áHE#vªTN¡0´Zåì´ +…)Uïa˜7 á†YYg¯ ëxSM¦7˜Q%É_pxà¯#€•ii럜j‹Ì{ó…ÕíÐe©÷\x3@‘±a¤S™µ˜ ¿O% È×wè\k£,\àÌt p»As#3_ÇkRû†€Ô³ˆ–Ö¶UÔöáÇ7opz]{.0A©@†À¥­BèÐ,A¯É ØËÇ—ëñêá·Õƒ@ÐýU²¼º]¯6 í´+å£9Ì®'£Û†’Uœ||Ø>ÞÛ“’w¡n«*U -d Á)·õРéÈ>E—kg‡.ÖžÒ~Æ^×ó\ë½/¸•Ÿ´W¼ ½ >`/ÀF&GÝV»óžc‚h¯07Á‘ïjoj»šeŽ\ÕŒ"úÒ‰‚È2†ÿØ]ä!§Ýp¤âÖøÿ4õ±/ØñøfBç½$-ÂäýöQ'[L#Ô©ª}@?«Fa^¶, -á -˜áexd¤à¡ÀD~ ƒ|ƒ@A?­â•ï`LË8~¼[¨¯·šG¼¶t»LÀŽí %ŸV/ï.—?®“UDñöWÛ»»åæ:îè¤.þ´ý¼¡ëõ5m¶ ­~_Ç ­7´Z>€U}”þV¯D÷¥„FSçÈÏúÂÈJcÀ›JZ+ž@7#S©^¤GÖÍLp -ð0ûŽ59pÁïVÉD‹)·u=«3`ÆÎ;EÌ•Á¬§…LŸ¿{¢õ=yêiuÙú,á4Õ9Ü·ÒQÛD$Ÿ.èN€$‚°A1ÇÒ¥cïåų4ì§F+ Ø‚ƲÎB¨å7HÛpb–ØGí Œ0b)ò’v½‰»]J"M¢ÃaMhÀ«rz”ã€W¸ÂHªèy²G9m‰ô1£ K:ùiXk Sw;VÏ=zÌ›£–eÑb@AèËX#°~{¿#Ž÷_J9‡S^Þßm ¡üÔx?Ÿ„½5ó#­hÌ~Rž:)Wš)î ÆÄ±Æ*-ð©{ô9ùZß‘iÃEZ^!o$ßïîž`ê?Ï[î/¶x j'ZüRÉÕSk„瘼¦\àðõíä«ötßߨ5ÖQ©Slc^­^IXÂ#éØÓп·~„瘶æMûÖš1û+ÇþÖ¸T»póìŸw×â<ˆÜÿyã-Nð†üe†ö¡'ÓÅ„®’£_þ»ØVÈendstream -endobj -1669 0 obj<>/XObject<<>>>>>>endobj -1670 0 obj<>stream -x½W[OÛH~çWùeA"& h¥>¥+$–eK´R%^Æö˜L±gÒ›Äÿ~¿sƆ`ØíÛAÁžÛùngòsgFS|ÍèdN‡Ç”×;ÓtJ¦3ü<:=ÁÏ9¾½¦rç|±sðõ#ÍŽhQbÊñ)~)çSZä»ó£ô0§´Ð¡¡ùÞâFÑlGOæ'½û­µÔ,5å®®•-(Yû@çW¿ß]~ûûò[B¥wµŒ¸½ —g×W—7‹­×­5ÊÜ&¥«’:×Ráìo =è†wžÒd†ÃðŽŠžTe -”VÎÍ‹[žáiqq{puKÁ•ÍZ¡DȺgó^çMÕ‘±¡QU¥‹´_t~œrÑ»7®á…T#[¯MU‘Õº Æfø†%… ´B5«&¡µ±…[“‹Å£4 ô€‚«¯Ý׃J°J­CPš‚ê¨dé.²t­-rž‚©M¥üV]_nî^ŠÂˆÝä<3Piª¡ÎN/UÝ´+àÚ0 +‚É0©?qPu¦PO³tmC¼“¶7Kc'¦6hÿ¤½—Wo÷)ÃÐ+R!´µîÉí¾TO, +çBôŽ3h²P%Œ^-jÄË}‘ Õ —`™Òq?¨\4s”Þ¤°-qXXá%I‰r#*ÍH%þyH^a×í H~WGˌޱ`6bqýöÿŒŽ@Ä•‘²§©æ” +†´°»Äl’²÷ ¿È`+•GšB\ šÑֱߗ—qˆg… G]¡Ë…¶ ²ô£òÄÑ¢ñ Ëãf«G(;#é ZqAÚàe*†ˆyJõú혖QtóáüpÄ´g–" æÒâAë4J‰Ÿú=%>ˆ9Äm«`l—攉…œÄ±«MûP¡ýùVåßìÛ;±ÍTßâ±02[€M߯ûóÖÕE6oÒ«¡lWçnMÏq¦G´+l™´ÝhxFŸ/í°Ôɵ¡RŸ” ¦).Î0=Ò’_;4«md׆Qâ[äyÇÜ"úFÔ(É=C†q!q()ž¸°òëúíp¸”³5Îkg ô†æ³È Gíþe<®½¡içÝÔXœýz;5zûCöC=š4´õÿÌHë'>uÙxÞÁRŽMÉ%Ó€¾'þY0çÀ=UiÎcq'|Ñ¿}!6%}Ð(œ _\‰ôàÞ¢‘h= ŒŠ„äØŽápÈM+Ûxs¢a}Øh]£Lédx„ÿ]Gw…;Õ8Á%XÏÈîÕ¥öJ*ByÅiãv«Œ±Ç´òŽU8ÂÖ¢‹º,aZ¸õœwN=ùÀ5¶\´]<þôfErqÆAs éöñÉò&iæû?wV›m¶Y/ð3 +𝿿·ÝäïÉ.ëÛendstream +endobj +1696 0 obj<>/XObject<<>>>>>>endobj +1697 0 obj<>stream +x•WÁn7½û+¦ºTbY’eÙ)ЃƒÚ€&Mµ@_¸»Ü£]R%¹’õ÷}3ܵܵ}(‚")—ä̼yoõÏÉŒ¦ø3£«9],)oN¦“)]^_L®iq}…ÏñŸ×TʇùÅl²xëÃlþñí‹7|Zœß-h6£U‰àËë+Z„ÀÓ)­òq£òµ±zrºúq2¥³ù!WÅxµÖÄKçwÈWŽŽC“MrgË´Üß8&m£?¤ÅË~/Õ®¢ZïtM¿÷›@á`=4® ´7qMÑÞ¼¦ÐY[½sO\«Hk(ÓÚRtAÆ’« í9$Š™]Læ\ÌNû`œ äJú¦šL‘²ØÌ'­xT€  ÒyÊT¾Ù+_Ê]³UÑd¦6ñÀG{¨4µCÄn—ñ?pØ©ºÕœ…±¹×Šó?¸€Ô5RÊ/HQ0•5¥É•õ¡ßÉI'P•@Tñ’±( AÊÎöÉõÜ¡²Æ…øb·Ûj/{ƒ„mÔ¬‹d5ò@\#ß¹6ÕZ{T¦,]Lè‹Vy(¤ˆÆ#,gš¢j|.’`ß_„LgÓ8ùÀÖë­òäŠþ¾}øNµò•¦«ÛF3ÜL¡BE%µœß}¤˜Ë>»X$’Îñ÷„îmÔÞªš´÷·ÿÒ)}5Y2 îK)´ÒH’F÷_V·_n~§Û‡‡?FÔèâƒBè‚—èÒg2Ø#„Kü©€Jo­~Úê<¢n”ªÅï×` +ùÖZ`‰L#·{ë]¦2F(W x/m Rµ5ß +kéU®=;S|Řs‚)‡ÇqkÁCiß îZí0Dø¾â zè.DÝPpeä¥ÇÓî\¯z@ÄRì±È:Qz‡MVð'ËhCŸ«@7U.Z±8d\WêÏ×àʨEhrˆƒd¿}þô|¼×f—®á˜Z­E!¥cè7R€œ¬÷²­ !sµp{üòçÜj©“¶5+k‚«Û½F?ºv3²à¤ó±—NÉwh2¬][s_‚몡µÛSt|Æ»¢Í¡càdJÚº Ò˜ÐWɵá](ƒÕî¬p a£‹·¢²$%di@ +aŸÂTb`Z©íjV¨„æBØ…6+  Œ@AIœÚqaAk‘ÂFë­°}€OÉúK“.5A‚"{¾MøÙµ :WËè|Ý Š:nƒÍã­p‚Á/òü®7ŒÎSY¢”võ^ób—* +n90ðnëŠèºŠkdçÒiÖ‘`…–ñ•<©:u)¦aP8û3›ä›Póé@£"{1ù´`Ã~ŤcHÙœ*LG. ‚†ãŽâçRÍ,ôˆ)L•Ñ–ZÀGzªºë<õûíGÍžÁ·é÷Y±BœLãA×£|ä¨%Ä,†ÑY]@ÇKóôS?÷‚x}cfr˜Î&ª”W?—Ç𲤳6-÷ƒxÌó/ÍNSï¼·¹ùr<´[vVÌŽø ò{ƒ‘ùn´|17¡Ïlž¶—O.¦†äT…G§a´ò<à×~7Ûø¦£"àm³æþ× Ä$“à8oPT÷sA‡“7Ÿß]w?nfKüR»¾ åå¿Âð°üvóùÓ }õî,—~s9°Ý£Ž£Ÿõή¦yÿ»ÏÖÅòz²¼œã‰‹]³ÅœOß®Nþ<ù•öendstream +endobj +1698 0 obj<>/XObject<<>>>>>>endobj +1699 0 obj<>stream +xVÛnÜ6}÷W ö¥.k¯ñ ÈÃÆ^' Ø»®¥4 Š>p%ÊbM‰*)y³ß3¤”Úª †[ÎåÌ™3üëhJüLélFóSJË£I4¡ÅÅEtN‹ó3ü=ï•”ûƒéÙ$š½u0?N‡ß?&Gã› šM(Éãô윒Œà‚/éñU!êFZš½()$9QLŸ´rÍÏÉŸþúô,\?™/:ÉŽa?h]5ÖdmÚ(SÓM§éì ÙÀ4)”£\iI©©¡*G‚Ø9™œéGÓR**ª¥Í-©1ô,´ÊD#ùÌRìÓrÒ>K‹° í .k.ï ÑPƒüµz’úÀ¹Lèd:ɦ¢uÒGƒEmÍNË’”ÊI5” /¢:©z+˜»FÖ±¼M-œ“0Òš£à4ä¿+v_ìVìôöÆ>©êqB®*ußf§Ñ‚ù†ª]aZQfhy{ë+ðžß‘ªüÆfè¬öUD_%âÁ­’ƒ” ++óV#jZÃi¨ Èh g»$Mõ/@ŽTÔb§´j +¬*g§]X)¬V½‡aÞ€„æd•½€¬£N 4Q¾o0£J’¿àðÀ_G+3ÒU?5¨,2ïÍV´Ãhmö\x3@‘±a¤S™µ¿O% È×wè\kk«\xݕ±2óåðL¼$µoH=‹hé\[ÖLi~|ó§×•ç” +d<QÚ2„Í¯È صÆñÇõ§xõðëêÁ èþª?Y^Ý®W›„v¦)å£9Ì®GkÚš’Uœ|zØ~¹¶' $ï0BÝN•J d-Á)·õP£éÈ>E—«Æ ]¬=¥ýŒ½¬ç©2{_p%J?)h¯xF{A|À^€L º+wæ=ÇÑ^an‚#ßÕÞÔu5Ê5e=Šè[' +"Ë þcw‘‡œv “Š[Xãÿ3ÔǾdÇã› ]ô’´“÷;"üÑG@e1P§²ôý,kc…=xÙr4´¬ESÀl /Ã#+&òä +’øy¯|cZÆñ—» +ñz»¡yÄÚ¿} Ûevlo(ù¼¢xy÷qIñ—u²Š(ÞÂþj{w·Ü\Ç}ÔÅŸ·_7t½¾¦Í6¡Õoë8¡õ†V˰ê¡Òßê•è^KI¨0m€ò³¾0²ÒZð¦”ΉG†ÇÍÊTªgéÅ‘uó• ND½aM\ðºÍ*¹“hÑ å¶Ê¡gUÌØy§ˆ¹²˜u¿ˆ~x¢õ=yêYéŒn}–pš‹ŒÜw²¡¶ŽH>^ÒI aƒ bŽe“޽—gÏÒ°Ÿj£0 \¸ÖMWË: ¡–ß±»†³Ä>‚he„K‘—´ëMŒ´xo‘HS èÇpXEð¢\†å4À+\a$Uô<Ù£œV#}Là(Ã’…N~gVÔÀÝŽÕsóæà `Y„±ŒÕë·÷;âxÿ¥”s8ååýÃÊ/Œ“ù$ì}¨éœ lEÓ`öJJyê ¤\i¦¸ƒÇW¨´\À§îÐçäk}G¶ yhy…¼‘|¿»{>‚©ü>/XObject<<>>>>>>endobj +1701 0 obj<>stream +x½W[OÛH~çWùeA“h¥>¥+$–eK´R%^Æö˜L±gÒ›Äÿ~¿sƆ`ØíÛAÁžÛùngòsgJ|MédFGsÊëI:¡“)~Ÿžàç ß^S¹s¾Ø9üú‘¦Ç´(1e~Š_ +ÂðÉ„ùîìCz”ÎRZèÐÐloñ£i:£f'½û­µÔ,5å®®•-(Yû@çW¿ß]~ûûò[B¥wµŒ¸½ —g×W—7‹­×­5ÊÜ&¥«’:×Ráìo =è†wžÐÁ‡á=©Ê(!¬œ š·<ÃÓââöðê–‚+›µB‰&u Îæ½Î›ª#cC£ªJi¿èlžrÑ»7®á…T#[¯MU‘Õº Æfø†%… ´B5«&¡µ±…[“‹Å£4 ô€‚«¯Ý׃J°J­CPš‚ê¨dé.²t­-rž‚©M¥üV]_nî^ŠÂˆCÝä‡<3Piª¡ÎN/UÝ´+àÚ0 +‚É0©?qPu¦PO³tmC¼“¶7Kc'¦6hÿ¤½—Wo÷)ÃÐ+R!´µîÉí¾TO, þÍŠ^× -bQWòL"DÆÈ˜%Fy­ ^/;˜jó°bÊT\‘½x(ñ7x°Œmi¼^ƒígèRú]½"×ëJmø£ãû¶€¨k&²¼vþbh Ž‚G?[¿ïÓJû¥ZÊ:ÂvÚx •ç`:ª_õe„6³Xî~ \ÛòÆ|þ0ÚÊ×ôd” oVåZ5+ïÁ«:½ßãÑÛ¾΢ˆÅ°‡½aã°_6ÔY¤•&×ÛÆíµýâK/@%UÁ®„–+í‚Aõ&k*,a»q9™ÊÇ̾ò„öRœ‘;Û@ ¢¨bd£œ«‚VPX€MðF<ϰdغ#œ†ŒEª ¨ß[1\ˆ<%ûÑ -m;ñ^³¥…æC‚A¨–pN)ÎVî³GåÉ+€™†uÅ[ìcY ¥‹¥ÎG{¯û|ñôff¤HvÁJù:·5º^9¯¼Ay°Œƒ£”í†3‹ÔF%  Ù´q_Îû¦Â7¶{EN‚š-Ò“Uïu‰¥ÿëìšê¬’¢VDZ¦/>‡ús“a_Î ¸›B@~‡`]˜†™AŒ©7P\uﯯÀ3 -ȉ-åLJ\· µŽýu/c¹>œ,3.LB@È;46®Åú×Ww‹Ëîè =ÌÓD%ÿ)ü$ #"°’&iŒ¯È[`ÙÛÏϪR5 -A/ ”ÀžèqüVAœiZkKD¼-*¨^ö2h%ÏVÊt®À³»ØjÍÐäÅЩªu£H—ÿâ 5ô¯ÑÆ¥Bç•=*]K¿‘j`ôÆà…tÙvÅq£)UÁõ„‰ÙØz†C1s¿;˜ñ~OÚTè’ ²øh÷dä,ƒùw¹€^‘7NúÞ šûâ£ÖvF§ru\p* ñ)é pLðBfóíC‘më,6¹ØÁbO]/M¾”*‰¹åP)4‚‰_ë‘޳Ö|U` - gWŽ -D1` D¹ -1Á „#Õá±Å¦¡5 ØE,ûnÿ‰×;ø:¥Ãõî(6êÿÅë%}¦³ëëaÿizʨ×Ã$›0n³Ù¤[ß]÷/Ó2\pz¨©Thœ(™÷™¾ÇfòúÞyÌû]Åž¬2¤â>Ò&&º²¹F'@+Öèµ*pÍœš#H!ZÖ€\TÛ¸}=DZ;j¼²¡b7£ýÖáÄýõ³rnÅT¡VP þ/‡fs\®ñ5[¸5 -ÒßÙW¬ù|©,n~‘)&šóá.Ç‹o_ Ë/Žnþ\ ¼äp”¼GF‚æÛû÷06\)ú]›°d¨†éÑ8C«î«’MešN£÷Ûó5DÚGùî¯Q0gÂÍ€`¦Ô"{¸ ¹ª•Ö„Gü8äç­ÏÇÔ½$gH‘!7¸ó’øeÅ….MŽÀÌ»¾x¤n¼G¢ãG±o-þKáDÁÈè‘¥Ù ¯çìýž¤ÉÁ×ÓþcÖìš:=¤ã“ñÃÏÝÙçgtëÝÄ}q9.àˆ>†€!ž &'S¹xç3ÜÑñizüaŽÏ{x=;šñ´ËÅÎ_;ÿF½¢Éendstream -endobj -1671 0 obj<>/XObject<<>>>>>>endobj -1672 0 obj<>stream -x…V]OãF}çWÜò[“/ô-°l…Ôݦ`Uª„„Æö8™eìIgƤüûž;3 Y/»hµû~œ{ι÷߃ ñoDçcšÌ¨l†ÙÎ.ÏñszÁ?Çøo%Õá‹ét–ßúb2eo}1;˦ýϯòƒÓOS(¯‘|vqNyEH<R^Ï[ãWÒRišÆ´TŠÎI25áCüâ7†¤µÆ:RŽVâYµKr¦‘~Å¿ m¥¨^ÈvmË#ÀÚXO£Éå ¹®\‘pt/šB|È¿ i0š £¼:~8Vò7rMQqÜíëµ5 ©Vújùá»—P«'IÕRy¡-„_mŒ}r]¯dùD/¦³1BVš¶¦ZiÙK]ÈÚbo_¸boÈy’C-¨VP%$8!åFKâÙ(ÔCÚxÆ¥¶óVxeÚ_Räñ ¨£©y[Ñ‹ô$¤kãœ*´L "-ÕBéÙ(¿¹ÏiÂíoV²e¼Xæ©î A*:åæ kDU -‡¸Ue¥s½~œô rÄUmi¬•¥Ïh¡¥ÀË€‹_ R >†½´µ(%Ý.h#ßÕ.Ùëg÷±ªÏ¨êg©SâPxHæÎ8p+Ô¤_ÈÈ*qKŦµYfmS„QeœàôÓ%(³u0ElÇÓl’M3Ê%€˜ÆÇ^I=3©ïº’¹Ìø"®6æ©[ÓàŠ®n¿¿¹ûûæŽï矯æ‡ýc:r+Ó銖ÀžÇDÔ<'¦T¯ïØ™“öÂ)DùêFµ[&܆ר2íQÙ* Tß `¨ÔÓZV?b¯Ša &cPkUž0/¶#íÕÙ»¯*FB+çe(ßUë­LÏû•ÿÙ‚2Ñ -ÖÖ€¼¤‹¹)×ÌêTÍßÈÖ`À"4* ÎðÔZX° Xcº‰F€Œnë^Õ°“à0áQ¦-~Á]¼„öL+ü&¹Òª5C -:Cà^ÃߪåÊÓ^^îš ¾Ë; ;K ;ûÃbÄ];ñ©³d®Ç<åW¾Í¯ÿ¸½ù’ÓѯGßGK–ñû×nŸ^Œy¸O¨€”V˜ì±öVÂzq™ñ@v롽Óc R|6¸ ¬Â'œj »ã-™ö!ðÆšvÙ' ªÛ6[RèŒ~–ô¬}ürÏ¡ZâÕÂ1¿Ø^'ÉDaðª‡Ôß×,kö=ÀoÂOÆUÑø§ƒÊ™ ^‹ ¹·?ÐŽcˆ`sÜÈÚÊge:üÁFUtpíׇ!bÆCìy:äȯU²Æ [ÿíM,ùQFsj»¦€íÀ™¾H_(ãNóë]çwrÛÚ|r6LcmZ Wh¯[®âR†Xƒ%C¿žwµÖ½´HÂÕÅׄD£š+3Àž¢¹`ï±ÙII‡Ì!«qÊ+ 4PéßNZ ¡ '©ÁFKÙßjA±NÂ`…Ž­½Aºà[Æ-9… §¥…å hÂ÷Û± §àÈI«Q;Qðà‰w&|lT|ÑyÓÀKtU®D«\¯cÈ@¬pDœf"ÿ[K BAÀ[]î¶²;$³æˆ÷f‚C%Þ6h fÛaj/ì…µZòeíÚ=¼R*lfƒÏ‹7À /Bálœiµºl#ÉVÍÓ‰d›Ø(­©•¼Ô±X’¾±lSõø÷I Ñ»@F%¿N¼c+Œ ûõF9²ÄB¼ªDø¾¢¸6q6öΩ]»õÎÚÄIøÒÑôp|'k¨ u§ûŒ/–>9ƒ?=|E~ºHö?šá‚¿˜Ðl2ÆuŽs$´°æ+2úhÊn·2y¦ƒí ƒóá%?ÿý3]d³³1!|=šŽùµ›ü௃ÿŽïendstream -endobj -1673 0 obj<>/XObject<<>>>>>>endobj -1674 0 obj<>stream -x}WmoÛ6þž_q0Ìj;~‰ã]¦k‡k›5Ù†ùBK”ÍF"UR²ã¿çHJ–f 8y/Ï=÷ÜéÇÙ„Îñ;¡Ë)Í”–gç£sšÍ§£Í——ø<ÅŸ•”Ÿ]Ý?¾¢Éœîr\Y,ñ!#??§»t0f£ËÝIWÓå‹»ï8=§É$œN/qzðµÑTo$¥¦,…Ω‹xj@®\¥…’º¦ñøêúÛ_ÿùðu|÷鿨Ü`DßLCncš"c{šV’*kʪ–寒 J8·36ógùþ9 '³Ñ”È7'}4íQ2¹ÿ_¤©iÄNr/Ìz »Jׯ?o´z¤•y¤ª7#ºÎýÉÀ>ÁðÚ 8{â¼µîã™O€†ÓÛø@‹R¾!SÕʬàQê¬ .BG…ÒrDrýúYOüŽÇ+µvÒn¥×e—ßÍFgFýZ-F\ÛÁgSË×t]“rTçÔª`†\%S•ï±…Ñë7WØZ΄„CAŠÂìÜó‘¢ÜG±DÞEú‹“©•õ³Ñ©ôµ…¤=Ž‹ë¾–(bLÀ··I$NWÇÌè_ýs›á°´¼*¥sb à¯ó“ UMNì%JoE¡2Ò²ÿˆQHØ_ >W@!Ì5HYý`­LëbONÖMªq–b”¢³i¬ (×ù[‰¬#{ÏO¡$쥕pLc?z|ØaD6b+‹ÈÌÎAÃ8º SgP<ÏßÎ:¹½«eyÿ‚VMM™Ê(ð±RàBvMU[ûD¾%¾; ùø¦BÚfœŒˆOá›~d–’#É%p£sµn¬ðmØ”Ž ñe¶ÊÓƒ±Ö~—¦ R=¢S¾ïz2ä)ÃHp>R Ð?xhrîmB].R§vä¥_G+EôðöÓnùC¢»—£ÌG/‚ÃáôâP:ß‚(–q™ˆ]‰fdY@ZáZæØêøãadÊ7iÕœôú€dbÆì«¨Z‡;YTô6Z|,¶š6`JòW½ ´«m“2ÜÑ<‘^ÞDÁÍãA¯7QDéǦDn¥D¸h¡@3#ÅæŠENÒŽÛ“¯Ÿ„Ú‹yžê½?f‡³Ic?_—q¾.¯Ád˜¯_‚ÆÜ¼÷~½ÈEDÂ…\P'Ú*¹£{üt³öØlœ³;UP3î C$$šcÚz.¢ï%™Áˆð8a½w -3fw„0—v%@gÖcXP±ªðô€YÏ>Ht˜W?‘?Æ–íÀw_h½šæ(S†f…ˆ©f-ñöŒÓ+…hýp‚'S4­¤°³d+½Μ¥òÔìeÓ¸&0ƒe5£Õ oðšÕŽ4ô W LY Y k -¬*Ïh¨jX3ÂX„3.§c4(q>1ÝÑ:\†?Ñó\=bt0jÂq5bõ‚Éæ:ì n«ír}CøTP€œ:Z´kH‚bºX“Äo@È™Šl+0{Á´«*N±XÛ÷¾~ÿŸhtÐ(ð‰¹ò´6[%è÷Ï·Œð‘7¬¾vоó£Œ{ÚÛÏø(?TÀRQnŒ«ÁnžhÏ„eöHõâ - ùó tLú³:²7±¯K("몰:!Ý=OÚv¦žð‚7˜¸1ÿ„)^=Å -䢡ܶViƒxI¥x@75Øf}¢IÈü0»vöÔë~à o 5¶t˜YKwÿ"ºn‡×»Â™—Ìh_–¼Væ"å ªéeíp[޾ZVþh¨OŽç:ŠÞ® V"’, ¼¢8I[ÔXC*ø0í}Œn$våÛOÉÝF¥¯Âqƒ7¼ÁûüÿL+Eºñ‹ô74`«qŒÕ‰GœO €´¼|„zy©ò6oû‡1ÍÈG†Ã7,ÄX8Ú™ú?–„-[¡© $˜„Xh¡HŒ6VE©¶œo 周ArX’ ¦{ì«ÛM0®z´r’ êP#N/ÁÜnè%_¬ªaûxÌ 䫵e­=ö¸±³`.öµ—x÷åØ"YPðŠÚîc³ïñÇe|ï›,𞹜ÑârÉ+Üí»OWïèÆšïàýnÒ¦ÄÝžŒÅãÃËóW~å{òâ9_,G‹‹iØ'ó»ûpwö×Ù¦-¾endstream -endobj -1675 0 obj<>/XObject<<>>>>/Annots 1068 0 R>>endobj -1676 0 obj<>stream -xWÛnÛF}÷WLõˆiQ’%9€Ñ:møÁ®k3 ŠºVäRbBî²\ÒŠþ¾gf©í^D¡HîÜΙ3£¿ŽBàoHÓ!&Gƒ`@“é$Òx6Åõÿ*M©<ÏNƒÙkFãÙë'†á ˜¼r^ƒAûñp}t6Äñp|ŠÏ‚Âé ^ü·œÂIˆ ‡RÐp2 ¦í7~ú!::¹SR”"•ÉlJQ"ÖÅý¥uµ TžÛ¥YŽLlEkÛTç™65=õqÃ5s£ëw¤ë8xzû6ú -›gÁÛ<….“þpŒ‚³€"íj:ó¯í\Ùuÿ¡1T/5Ŷ(”Iü[§m€}‚jœ¦ïïé >Ü\?^>üvùðôÝÞšìô»mÈ-m“'4×TV¶(kHŠJåÜÊV »3œTû*[Ðq8B9ÐõÚx8®2×lÅ5q¬K›<_÷¨À¥Zè€nR2¶Þ­èþgr6­W -DÈe&¶U¥ã:_ãÚÕ(.ŒÙªãVŠìŠy[“œ ¨Pß4ÜÞ¼Õ”HPêŠF)"œÌ”gF³[ÚZãHÚ ‚Öípâ1º©ß8Xr–Jë\6äõRI:ätõÌf•yS*÷lƒ ~ H*2ªÀÛ–ýä'%Ux[Eî)Lq‡Ñ€õ¢“¶J šzböœ>㻋ÛË[ç³ÔEù'ŒÆuf Ùt—Ú -‰kêíN´ÞØÇ×q'Up¥5Ifë[b0'êu©A•¿¥ª+Y¤ÙwT—fá$ÓB­ÁN@Énܪ²Ä+·¶äÀ_ÖžŠl±ݸþ ,[ŠØ.ÖmÛYö8mGÚÄÕZh½‰"Jw©ž%ã“«]µïoéïè¼±|c' }&¿!¥èo¸Ôy`7•¡¬¦¹ŠÁô²EѾKªÿ, -9¯ -áàÐ úðÿÉB1Ï­ýÖ”t|KÑåctýð˧®€ªLŽíã …· —›i½¨, qÍ9˜=)U1W›^àB'ìÊ¡Ï@Ë­é@{XB¤ìáæž@ò -rÁÄå;…r5Úg^Á -þ‡Ävü -üÛÈ^Ð&¬Ëm {^?uÞvúŒe -\p”*h8ØüY!¶™¦––mûwÑ/_èó\sG8~o³Z“Z¨ÌH/dÝÒ¸:Ës±ö¥œÎF6 12Ôjˆ$É–} øÖaš¢¢p¾©€n÷UîU*—•N5´T¦ÄNmAÏi­Ý!ŸúÌGmD;%@eh[)¤¾Ô²\ÕMù_´ 7´ Ýli{…‘ã'†ÆÊ‚:"¶ÀïeUƒQºÏ®vtAB´ª¸8Ì–ödž$H8™ÛXåÒlùâg4µF&¹RÇYšA«ö -þôö€³%êo)± _AzÚ–†©½žéøõéˆùѹ‰Ô-1w00 Y›Ú¹š™g•gÉVŽzD±S WýPNDòý5.žˆlÝq[5Æ0¯Ðw‘x÷dEÇvEßv¯0€ûÂ0)º2 -é-Õ<˳ÌGŸƒ(+{Çu®ŸuÎÓ¨©øÝÂ&¼0Z8"ú­3”àji›}5Þž:o%…mïKïÅÝGk§àoO¼ÐïV¾ÜE_nUŒ Õ΀ͮ%z.¼Ù¨¸Pô–”APY GWÑåƒì?¨ -ÊÜiÊÒV]-àñ5O}éWF‚ÙÈýÍ;%ˆç3Äʈ×ÐãÑx»2ŽzqJŽPgÐÑýxX)i9,ËØØ"n18( v|Âû‰^9ÑvÉ@Ê[š¡Ñ*§^?„çL–zmn·ô9÷Ošfq†W}—¶ö9Ž=ñoØ‘x€Ãn¼D›±¢pcÿ$Ÿ­0ȃ´âª° ¶šó¥7Í|[²ô"–fîâ*ãuÀ×íßÜ.5·(ÌpþÞÔJÏÑ\ دiY×åû““mþªM`³^ðö±¯Ù~›Ll, À–E¥JŒxþÁß²„üð™h2z /n?\Ð}e¿òRøÑÆM_Š7 >y¼9p<œ½þ3a<™“Ó!ˆtÃñ˜]FG¿ý ßä:ýendstream -endobj -1677 0 obj<>endobj -1678 0 obj<>endobj -1679 0 obj<>endobj -1680 0 obj<>endobj -1681 0 obj<>endobj -1682 0 obj<>endobj -1683 0 obj<>endobj -1684 0 obj<>endobj -1685 0 obj<>endobj -1686 0 obj<>endobj -1687 0 obj<>endobj -1688 0 obj<>endobj -1689 0 obj<>endobj -1690 0 obj<>endobj -1691 0 obj<>endobj -1692 0 obj<>endobj -1693 0 obj<>endobj -1694 0 obj<>endobj -1695 0 obj<>endobj -1696 0 obj<>endobj -1697 0 obj<>endobj -1698 0 obj<>endobj -1699 0 obj<>endobj -1700 0 obj<>endobj -1701 0 obj<>endobj -1702 0 obj<>endobj -1703 0 obj<>endobj -1704 0 obj<>endobj -1705 0 obj<>endobj -1706 0 obj<>endobj -1707 0 obj<>endobj -1708 0 obj<>endobj -1709 0 obj<>endobj -1710 0 obj<>endobj -1711 0 obj<>endobj -1712 0 obj<>endobj -1713 0 obj<>endobj -1714 0 obj<>endobj -1715 0 obj<>endobj -1716 0 obj<>endobj -1717 0 obj<>endobj -1718 0 obj<>endobj -1719 0 obj<>endobj -1720 0 obj<>endobj -1721 0 obj<>endobj -1722 0 obj<>endobj -1723 0 obj<>endobj -1724 0 obj<>endobj -1725 0 obj<>endobj -1726 0 obj<>endobj -1727 0 obj<>endobj -1728 0 obj<>endobj -1729 0 obj<>endobj -1730 0 obj<>endobj -1731 0 obj<>endobj -1732 0 obj<>endobj -1733 0 obj<>endobj -1734 0 obj<>endobj -1735 0 obj<>endobj -1736 0 obj<>endobj -1737 0 obj<>endobj -1738 0 obj<>endobj -1739 0 obj<>endobj -1740 0 obj<>endobj -1741 0 obj<>endobj -1742 0 obj<>endobj -1743 0 obj<>endobj -1744 0 obj<>endobj -1745 0 obj<>endobj -1746 0 obj<>endobj -1747 0 obj<>endobj -1748 0 obj<>endobj -1749 0 obj<>endobj -1750 0 obj<>endobj -1751 0 obj<>endobj -1752 0 obj<>endobj -1753 0 obj<>endobj -1754 0 obj<>endobj -1755 0 obj<>endobj -1756 0 obj<>endobj -1757 0 obj<>endobj -1758 0 obj<>endobj -1759 0 obj<>endobj -1760 0 obj<>endobj -1761 0 obj<>endobj -1762 0 obj<>endobj -1763 0 obj<>endobj -1764 0 obj<>endobj -1765 0 obj<>endobj -1766 0 obj<>endobj -1767 0 obj<>endobj -1768 0 obj<>endobj -1769 0 obj<>endobj -1770 0 obj<>endobj -1771 0 obj<>endobj -1772 0 obj<>endobj -1773 0 obj<>endobj -1774 0 obj<>endobj -1775 0 obj<>endobj -1776 0 obj<>endobj -1777 0 obj<>endobj -1778 0 obj<>endobj -1779 0 obj<>endobj -1780 0 obj<>endobj -1781 0 obj<>endobj -1782 0 obj<>endobj -1783 0 obj<>endobj -1784 0 obj<>endobj -1785 0 obj<>endobj -1786 0 obj<>endobj -1787 0 obj<>endobj -1788 0 obj<>endobj -1789 0 obj<>endobj -1790 0 obj<>endobj -1791 0 obj<>endobj -1792 0 obj<>endobj -1793 0 obj<>endobj -1794 0 obj<>endobj -1795 0 obj<>endobj -1796 0 obj<>endobj -1797 0 obj<>endobj -1798 0 obj<>endobj -1799 0 obj<>endobj -1800 0 obj<>endobj -1801 0 obj<>endobj -1802 0 obj<>endobj -1803 0 obj<>endobj -1804 0 obj<>endobj -1805 0 obj<>endobj -1806 0 obj<>endobj -1807 0 obj<>endobj -1808 0 obj<>endobj -1809 0 obj<>endobj -1810 0 obj<>endobj -1811 0 obj<>endobj -1812 0 obj<>endobj -1813 0 obj<>endobj -1814 0 obj<>endobj -1815 0 obj<>endobj -1816 0 obj<>endobj -1817 0 obj<>endobj -1818 0 obj<>endobj -1819 0 obj<>endobj -1820 0 obj<>endobj -1821 0 obj<>endobj -1822 0 obj<>endobj -1823 0 obj<>endobj -1824 0 obj<>endobj -1825 0 obj<>endobj -1826 0 obj<>endobj -1827 0 obj<>endobj -1828 0 obj<>endobj -1829 0 obj<>endobj -1830 0 obj<>endobj -1831 0 obj<>endobj -1832 0 obj<>endobj -1833 0 obj<>endobj -1834 0 obj<>endobj -1835 0 obj<>endobj -1836 0 obj<>endobj -1837 0 obj<>endobj -1838 0 obj<>endobj -1839 0 obj<>endobj -1840 0 obj<>endobj -1841 0 obj<>endobj -1842 0 obj<>endobj -1843 0 obj<>endobj -1844 0 obj<>endobj -1845 0 obj<>endobj -1846 0 obj<>endobj -1847 0 obj<>endobj -1848 0 obj<>endobj -1849 0 obj<>endobj -1850 0 obj<>endobj -1851 0 obj<>endobj -1852 0 obj<>endobj -1853 0 obj<>endobj -1854 0 obj<>endobj -1855 0 obj<>endobj -1856 0 obj<>endobj -1857 0 obj<>endobj -1858 0 obj<>endobj -1859 0 obj<>endobj -1860 0 obj<>endobj -1861 0 obj<>endobj -1862 0 obj<>endobj -1863 0 obj<>endobj -1864 0 obj<>endobj -1865 0 obj<>endobj -1866 0 obj<>endobj -1867 0 obj<>endobj -1868 0 obj<>endobj -1869 0 obj<>endobj -1870 0 obj<>endobj -1871 0 obj<>endobj -1872 0 obj<>endobj -1873 0 obj<>endobj -1874 0 obj<>endobj -1875 0 obj<>endobj -1876 0 obj<>endobj -1877 0 obj<>endobj -1878 0 obj<>endobj -1879 0 obj<>endobj -1880 0 obj<>endobj -1881 0 obj<>endobj -1882 0 obj<>endobj -1883 0 obj<>endobj -1884 0 obj<>endobj -1885 0 obj<>endobj -1886 0 obj<>endobj -1887 0 obj<>endobj -1888 0 obj<>endobj -1889 0 obj<>endobj -1890 0 obj<>endobj -1891 0 obj<>endobj -1892 0 obj<>endobj -1893 0 obj<>endobj -1894 0 obj<>endobj -1895 0 obj<>endobj -1896 0 obj<>endobj -1897 0 obj<>endobj -1898 0 obj<>endobj -1899 0 obj<>endobj -1900 0 obj<>endobj -1901 0 obj<>endobj -1902 0 obj<>endobj -1903 0 obj<>endobj -1904 0 obj<>endobj -1905 0 obj<>endobj -1906 0 obj<>endobj -1907 0 obj<>endobj -1908 0 obj<>endobj -1909 0 obj<>endobj -1910 0 obj<>endobj -1911 0 obj<>endobj -1912 0 obj<>endobj -1913 0 obj<>endobj -1914 0 obj<>endobj -1915 0 obj<>endobj -1916 0 obj<>endobj -1917 0 obj<>endobj -1918 0 obj<>endobj -1919 0 obj<>endobj -1920 0 obj<>endobj -1921 0 obj<>endobj -1922 0 obj<>endobj -1923 0 obj<>endobj -1924 0 obj<>endobj -1925 0 obj<>endobj -1926 0 obj<>endobj -1927 0 obj<>endobj -1928 0 obj<>endobj -1929 0 obj<>endobj -1930 0 obj<>endobj -1931 0 obj<>endobj -1932 0 obj<>endobj -1933 0 obj<>endobj -1934 0 obj<>endobj -1935 0 obj<>endobj -1936 0 obj<>endobj -1937 0 obj<>endobj -1938 0 obj<>endobj -1939 0 obj<>endobj -1940 0 obj<>endobj -1941 0 obj<>endobj -1942 0 obj<>endobj -1943 0 obj<>endobj -1944 0 obj<>endobj -1945 0 obj<>endobj -1946 0 obj<>endobj -1947 0 obj<>endobj -1948 0 obj<>1<>8<>9<>13<>14<>16<>23<>27<>38<>39<>40<>42<>59<>62<>65<>68<>69<>72<>82<>87<>90<>92<>103<>116<>125<>128<>130<>131<>135<>138<>139<>141<>145<>147<>]>>>>endobj +bQWòL"DÆÈ˜%Fy­ ^/;˜jó°bÊT\‘½x(ñ7x°Œmi¼^ƒígèRú]½"×ëJmø£ãû¶€¨k&²¼vþbh Ž‚G?[¿ïÓJû¥ZÊ:ÂvÚx •ç`:ª_õe„6³Xî~ \ÛòÆ|þ0ÚÊ×ôd” oVåZ5+ïÁ«:½ßãÑÛ¾=8šF‹azÃÅa¿6l¨³H+\o·×ö‹/¼•T»Z® ´ Õ˜P¬©°„íÆåd*3ûÊÚ{HmpFîlu0ˆ¢>ˆ‘r® +ZAq`6Áñ<Ã’aëŽDp2©‚ ^|#lÅp!ò”ìGÿ*´íÄ{IÌ–š + ZÂ8¥8[¹Ï•'¬fÖo±e”.–:í½îóÅÓ›™m"Ù+åëDÜÖèzå¼òåÁ2ŽR¶Î,R•€‚dÿÑÆ}98wbì› +ߨî9 j¶HOV½×%–ü¯³Whª³bHŠZui™¼øêÏL†}5:'àn +ù‚uaNd1¦Þ@qÕ½¿¾ÏT( '¶”3)qÞ~,Ô>8öcÔ½Œåúp²Ì¸pBÞ¡!°q-Ö¿¾º[\Þp—@éiÄ`þ›TòŸÂO2"+i"‘ÆøŠ¼Ö˜½=ðü¡:ð!U£ô’@ ì‰ÞÇouÀÄ™f¡µ¶DÄÛ¢‚êe/ƒVòl¥Lç +j`gt*‡PǧrŸ"Þ Ç/d6ß>Ù¶Îb“‹,öÔõÒäK©’Ø)‘[•B#ˆ‘8€ðµ.é8kÍW¦rvå¨@Æ@”«Ü@8RŽ[,`ZÓ€]IJïöŸx½Ã¯ú8\ïŽcS¡þ_¼npPÒg:»¾öŸ¤§|z=L² ã6›Mºõ}Øuÿ2-Ãu§‡šJ…ƉyŸé{l&¯ïsÞï*öd•!÷‘61Ñ•Í5:Z±F¨Uk.pàÔA +Ѳä2 ÚÆÕèë9ŽÝQã• »í°'•s+îh¤ +µ‚bð8 4ár¯)ØÂ­QxþξbÍçKeqó‹L1Ñlœÿ w9^äxûJ X~qtóçá%‡£ä=24ßÞ︇±AàJÑïÚ„%C5LÆZu_õDl*Ót’½ßž¯!Ò>úËw‚é8#n3¥ÙÃmÈU­´&<âÇq ?o}>¦î%9CŠ ¹Áÿ“¤À/+.tirfÞõÅ#uã=?Š}kñ_ +' +F@,Í}-8gï÷$M¿žö³¦shêôˆæ'㇟»³?ÎÏèÖ»ˆ+úâr\À} C|0L88™ÀÈÅ;ŸáŽç§éüà Ÿ÷ðzz|ÌÓ.;íü_0¢Ïendstream +endobj +1702 0 obj<>/XObject<<>>>>>>endobj +1703 0 obj<>stream +x…V]OÛH}çWÜåº"&ßÀ¾JWH-›k¥•ÐØÇSlO:3&Ë¿ßsg&!uiQU‰}?Î=çÜûí`DCüÑÙ˜&sÊ›ƒa2¤ÙÅ~NÏùçÿ¤Ò1Γñ[_LÆ£äü­/æ³dÚÿü2=8ý4¥ÑˆÒÉççg”„ÄÃ!¥ùñ¢Õ®’†rÝ4º¥\tV’. â·Ñ$ÑÆ’²T‰gÕ®ÈêFºŠµ‘¢x!Óµ-ÿkm&'d»¼"aé^4™ø~=Ò`4AGiqüp¬äd›¬à¸Û×K£R­tÅ6òÃÒf/a­ž$}T+åD}di)\µÑæÉ&tUÉü‰^tgB„$×mI¥ªe/u&K ˆyáŠ&ëJöµ ZA…@â„”-‰g­PÕÚ1.¥é¬3Â)Ýþ#ç@M-Ú‚^¤#!]kkUVË*ÒR)TÝ!;¥×÷)M¸ýM%[ƈehžaŸ¤ Sn>3Z¹°ˆ[FZÛëÇJçÐ *G\ÕæÚ™»„–µ˜`îqq•p>â3`xÐISŠ\ÒÍ’!0ò]î’½~vªú‚ª~•:&ö…ût~îàŒ·|Mõ YDn©Ðt­WIÛd~T '8ýtA#ÊlLFÛñ,™$Ó„R ¦á±WRÆLêã».„d.3~‡ˆ[kýÔ­ipI—7Þ_ßýs}G÷‹/—‹ÇÇÄþÕÙJwuA+`Ïc"jžSª×wèÌJó ád"òu£Ú-nükTèöȇl •xªï0T êÕµ,~Æ^Â@LF¯ÖªÞÞs¨–xµpÌï¶×I´‘i¼ê õwÆ5ãšÿð[†ð‹q4þå R&¨SÀbBîí´c"Ø7²6òYé°Qe\ûõaˆ˜ñ{ž9òk…,EWã…­ÿö&ý(¡µ]“ÁvàL·ÒeJÛÓôj D+mÝNn[›Î†i¬u‹áŠÚÁëVUXÊ«·dè×ñ®®ë^Z$áêÂëVB¢AÍ‹•éá@OÁ\°ƒ÷Øl¥¤Cæ€ÕXåê©ô­“ƒ/ÈÊCj°ÑÄJö·šW¬•0XQ‡ÖÞ w-ãVœBUª…á hÄ÷û± 'ïÈQ«A;Qðàމw&|ŒT|Ñ9ÝÀst•W¢U¶×1d V¸ô"Ž3‘ÿ­¥¡ à­.w[Ù’^óÄ{3Á¡n´³í0µöÂR­ø²€vÍžÀN^)å73ˆÁçÅ`ú¡p6θÚ@]¶‘h+žæñDñ²MlT]S+y©c±D}cÙÆêñ!îO¢w Jð~yÇVöë rd‰ùxU‰ 8ð}EamâlìS» +v뵉“ðÅ£éáøN–PêŽ÷_,}rzzøà‹:ýtí4Ç>¡ùdŒëçˆ?2hiôWdôQçÝneòLÛgà ~þÇg:?Oæ³1!|=šú­tü}ð?%ïendstream +endobj +1704 0 obj<>/XObject<<>>>>>>endobj +1705 0 obj<>stream +x}WïoÛ6ýž¿â `˜ Ôvì$Ž[tš®¬mÖd +ä -Q‰TIÉŽÿû½#)Yvš%àXäýx÷îÝéÇÉŒNñ;£Ë9-(­NN'§tv>Ÿ,è|y‰ÏsüYIùÉÕÝÉôã+šÓ]Ž+‹%>d„ã§§t—Žæ“³Éå„î¤kèòÅÝwœ>§Ù,œÏ/qzôµÕÔ’RSUBgáÔE<5"W­ÒRIÝÐtzuýÇ퇯ÿ|ø:½ûtshn4¡o¦%W˜¶ÌØž¦•¤ÚšªndF¹±$¨ÎmÍüY¾JãÙÙdÎaÄ›­“>šî(™Üÿ/ÒÔ´b'¹—f½†]¥㟷Z=ÒÊ<ÒV5Å„®sr+p…O0ü„„6Î9ï¬û¸Eæ ñßô6>Т’oÈÔ2+x”:ë‚‹ÐQ©´œ\¿~Ä#¿ÓéJ­´i§MUÃåwSèÌÈ``X«Å„k;úlùš®RŽjãœZ•Ì«eªòÝ!v¢4zòæ +[Ë™p(HYš­{>R”û ¶£ÈûHq2µ²y6à/:•¾ ´‡ñq1cÝ×…BŒ øö6‰Äéë˜ý«®Qxó@"–Ö‚W•tN¬üu~¤jȉ£Dé(UFZ6àß1 + û Ôç +(„™  # ’ ¬•iSîÈɦ­A5NÃrCLR£óIt6•åz+‘õdø)Õƒ„½T ŽiìáG;#ŒH!6°ˆÌl½4Œ£û2uÅóüí­“Û¹FV÷/hÕ6”©Œk^ d×Öµ±o@ä[á»#oú1t¡kÆÙ„ø¾Ff) 02‘\7:WëÖ +߀Mé_f{P¡l4ßëì÷i +ªÔ#ú8èû¾ç!Cž2Œç#µÍCW&ý©Rnd™t] J*Ôº8JOjÓ® ò‡»°º0Îö‘uð¬”â·Ä÷³1–œ©Ñç8¡÷…L¸è^YXcja«Î‰Ïý|ï¡sʹw õ¹HÚ]—a­MÐÃÛOW¸åˆþ^Ž28¼Çó‹}é| ¢XtÆe v$š‘eé„7j™c«Óû9)Kܤu{Ôë#’Mг«£jíﲬém´ø&Xì4mÄ”ä¯3@iר6e:¹ƒy"½¼‰’›ÇƒÞQDåǦDn¥D¸h¡@3#Å­æŠENÒ–Û“ož„:ˆyê}8fÇg³ Æ~¾.ã|]^ƒÉ0_¿¹yïýz‘‹ˆ„ {¸ N´QrK÷øégí¡Ù8g·ª,¡f܆2HH4Ç´õ\Dß J2ƒápÂ69nfÌöa.íJ€Î¬Ç° b#Téé1²,ž}è0¯~"Œ-Ûï¡Ðz5ÍQ¦ Í +SÌZ +âí5§W +ÑúáO¦l;Ia%fÉVz œ9Kå©9Ȧum`ËjF«@Þà5«iè®2˜²@²Ö,XUžÑPÕ°f„±g\NÇhP.â|bZÑÚ_†?Ñó\=bt0jÂq bõ‚Éæzn§Ýr}CøTP€œzZtkH‚bºX“Äo@È™Šl#0{Á´žª:N±XÛ÷¾~½ÿŸhtÐ(ð‰¹ò´6%è÷Ï·Œð7¬¾vСóƒŒÚ;Ìø ?TÀRYÆ5`7O´gÂ2{ zqŒ„üù:&ÃYH9˜ØŽ×%‘Çu]ƒ XîŽ'm7SxÁLܘǯžbòaAÑPnÛ¨´E¼¤J< ›Zl³>Ñ$ä ~˜m7{öêu?rÐ7†[:̬¥»]wÃë]éÌKf4w ÓÝ/K^+s‘òÎÕô2Èv¸­@G_-+´Ô'ÇsGÅ`× +I^Y¥-¬!5|˜î>F +7»òí§ä¶PiáU8nð†7xŸÿ¿‘i•H ¿HCvÇXyôÈù”H·ÁËG¨——*oóvxÓŒ|d8|qÃBŒ…£›©ÿ#lIزš +B‚Iˆ…ŠÄhcU”jÃùvPˆ$‡% jºÃ¾*бýãªG+G ¢ âôÌí†^ò5ÀªŠñ¶€Ç¼PA¾:[¶ÕÚc[ æb_{‰w(PŽ-’ÿa¡hì.v0ûž~\Æ÷¾Ùï™Ë3Z\.y…»}÷éêÝXó¼ ßMÚV¸;±x||yúʯ|O^<ÏËÉâb6ÂÙù‚Ý}¸;ùëä?¼[¾endstream +endobj +1706 0 obj<>/XObject<<>>>>/Annots 1084 0 R>>endobj +1707 0 obj<>stream +xWÛnÛF}×WLõˆiQ’%9€Ñ:møÁ®k+ ŠªVäRbBî²\ÒŠþ¾gf©í^D¡HîÜΙ3£¿:!õñ7¤É€†cŠòN?èÓx24šNp=À¿RS"FÓ³`úÚƒáhúú‰AØƯœ€× ß|<ÞtÎ8ŽÎð™S8™Â‹ÿ–ÑS'‡"r(9 Æã`Ò|ã§fÓë…!ͤ2žNh‹õ>Í¢ÞʺÊ*Ëìš’4C&¶¤­KвT›Šæ=ÜpõÂèêé* +æoßÎ¾Âæ9Bð6O†a€Ë¸78 †Áy@3í*:÷¯í]Ÿ Øuï±6T­4E6Ï•‰ý[gM€=‚ª¦ïïiŽ?nož®»zœÏgwÇ&{ýnkr+[g1-4¥Í‹JÇ’„¢B9·¶eÌî 'Õ¼ÊVútQN´„GEÝ&Ž«È4[quiç’:Ë6]Êq©–: Û„Œ­vFKzø™œMªµRG©‰lYê¨Ê6¸vŠ c¶l¹•"»|DÖ$GçÊÕ7 ÷°'ou%”º„¢‘EJ€'Ó%e©Ñì–vÖ8’&ˆ q;{Œn«7–œ¥Â:—.yµR’9]>³YeÞT„Ê}#[ã‚’’ŒÊñ¶e¿ùII•ÞG‘{S\ÇÅa4`=o¥­bÁC‚¦®˜½ OÀøþòîªËÖùìU^ü £Q•ZC6Ù§¶F⚺û7¶ÄñµÜI\aMœšåÖúŽ̉jSèXPåoIŠêJIúUÅ¥Y:É4W°Pr€[w€ª(ðJË­-8ð—µ§<]®@7®?Ë–"¶ ‚uÓvÖ€=N›Ø‘6Q¹Zo〈’Ã]©gÉøôzßAÍû;ú;ºhEg,ߨËBÉãoAHD)z[.µÞØui(­h¡"ð½lQ´ï’ê?‹dΫBØ?6ˆ>ü²/2k¿ÕÜÑìêivóøË§¶€ªLŽÝã-…· —›i½,- qÍ9˜)žT¾PÛ^àB'ìÚ¡Ï@ˬéH{XB¤ìáö@òrÁÄå;¹rÚgQ +þ‡Ä¶ü +ü»È^Ð&¬cËm {^?uÖtúŒe +\p”(h8ØüY!¶™º’–múwÑ/_kèóBsG8~o³ÜZªÔH/¤íÒ¸*Í2±ö%œÎV6 12Ôhˆ$É–} øÖaš¢¢p¾©€îUîU*¥N4´T¦ÄNMA/h£Ý1ŸzÌGmD;%@ehW)¤¾Ò²\Vuñ_´ ·´ Ýìh{‘ã'†ÆÊ‚:"¶ÀïeUƒQzÈ®ftAB´*¹8Ì–æd–$H8™ÙHe-Òìøâg4µF&¹BGi’B« +>{ÄYÈõ·Ûš¯ =MKÃÔAÏ´üútD‚üèÜFêV˜;¬MÍ\MͳÊÒx'G]¢Ø)Ы~(Ç"ùþšÏ D¶i¹-kc˜WèÆû™x÷dEjÇöEßu¯0€ûÂ0)Ú2 +é-Ô"ÍÒ +ÌGŸƒ(+{Ëu¦ŸuÆÓ¨.ùÝÜÆ¼0Z8"ú­S”àji›C5Þºh$…mJïåýGk¯à[oN¼ÐïF¾ÜϾܩª™Û]Kô\x³Uq¡è;,!(ƒ þ²Ž.¯gW²ÿ &((s§. +[¶µ€wÄ× Ì{Ò¯Œ³‘û›wJÏgˆ•+ ¯¡'ÃÑneô$╡Π£ûñ¸RÒrX–±±Í¸Åà ‡Úñ O@ì'zíDÛ%S)oi†F«Œjxaüž3iâµ¹ÙRÐçÜ?I’F)^õ]ÚØç8ÄG¼aGâ»Ñ +mÆŠÂý“|¶\ FЊw¨Ü‚ØjÁ—Þ4ómÅÒ‹Xê…‹Ê”×_·s»ÒÜ¢0Ãù{Sk½@s-a¿¢UUïOOwQø«&í +xÉÛÇ¡fûm2¶‘4[~•*0âaø~sÈjŽñÃg:¤qà1|º¼ûpI¥ýÊKáGÕ9~9(Þ€øäÉöÀɤþúÏ„ÑxŒÏ Ð G>v5ëüÚùü\;endstream +endobj +1708 0 obj<>endobj +1709 0 obj<>endobj +1710 0 obj<>endobj +1711 0 obj<>endobj +1712 0 obj<>endobj +1713 0 obj<>endobj +1714 0 obj<>endobj +1715 0 obj<>endobj +1716 0 obj<>endobj +1717 0 obj<>endobj +1718 0 obj<>endobj +1719 0 obj<>endobj +1720 0 obj<>endobj +1721 0 obj<>endobj +1722 0 obj<>endobj +1723 0 obj<>endobj +1724 0 obj<>endobj +1725 0 obj<>endobj +1726 0 obj<>endobj +1727 0 obj<>endobj +1728 0 obj<>endobj +1729 0 obj<>endobj +1730 0 obj<>endobj +1731 0 obj<>endobj +1732 0 obj<>endobj +1733 0 obj<>endobj +1734 0 obj<>endobj +1735 0 obj<>endobj +1736 0 obj<>endobj +1737 0 obj<>endobj +1738 0 obj<>endobj +1739 0 obj<>endobj +1740 0 obj<>endobj +1741 0 obj<>endobj +1742 0 obj<>endobj +1743 0 obj<>endobj +1744 0 obj<>endobj +1745 0 obj<>endobj +1746 0 obj<>endobj +1747 0 obj<>endobj +1748 0 obj<>endobj +1749 0 obj<>endobj +1750 0 obj<>endobj +1751 0 obj<>endobj +1752 0 obj<>endobj +1753 0 obj<>endobj +1754 0 obj<>endobj +1755 0 obj<>endobj +1756 0 obj<>endobj +1757 0 obj<>endobj +1758 0 obj<>endobj +1759 0 obj<>endobj +1760 0 obj<>endobj +1761 0 obj<>endobj +1762 0 obj<>endobj +1763 0 obj<>endobj +1764 0 obj<>endobj +1765 0 obj<>endobj +1766 0 obj<>endobj +1767 0 obj<>endobj +1768 0 obj<>endobj +1769 0 obj<>endobj +1770 0 obj<>endobj +1771 0 obj<>endobj +1772 0 obj<>endobj +1773 0 obj<>endobj +1774 0 obj<>endobj +1775 0 obj<>endobj +1776 0 obj<>endobj +1777 0 obj<>endobj +1778 0 obj<>endobj +1779 0 obj<>endobj +1780 0 obj<>endobj +1781 0 obj<>endobj +1782 0 obj<>endobj +1783 0 obj<>endobj +1784 0 obj<>endobj +1785 0 obj<>endobj +1786 0 obj<>endobj +1787 0 obj<>endobj +1788 0 obj<>endobj +1789 0 obj<>endobj +1790 0 obj<>endobj +1791 0 obj<>endobj +1792 0 obj<>endobj +1793 0 obj<>endobj +1794 0 obj<>endobj +1795 0 obj<>endobj +1796 0 obj<>endobj +1797 0 obj<>endobj +1798 0 obj<>endobj +1799 0 obj<>endobj +1800 0 obj<>endobj +1801 0 obj<>endobj +1802 0 obj<>endobj +1803 0 obj<>endobj +1804 0 obj<>endobj +1805 0 obj<>endobj +1806 0 obj<>endobj +1807 0 obj<>endobj +1808 0 obj<>endobj +1809 0 obj<>endobj +1810 0 obj<>endobj +1811 0 obj<>endobj +1812 0 obj<>endobj +1813 0 obj<>endobj +1814 0 obj<>endobj +1815 0 obj<>endobj +1816 0 obj<>endobj +1817 0 obj<>endobj +1818 0 obj<>endobj +1819 0 obj<>endobj +1820 0 obj<>endobj +1821 0 obj<>endobj +1822 0 obj<>endobj +1823 0 obj<>endobj +1824 0 obj<>endobj +1825 0 obj<>endobj +1826 0 obj<>endobj +1827 0 obj<>endobj +1828 0 obj<>endobj +1829 0 obj<>endobj +1830 0 obj<>endobj +1831 0 obj<>endobj +1832 0 obj<>endobj +1833 0 obj<>endobj +1834 0 obj<>endobj +1835 0 obj<>endobj +1836 0 obj<>endobj +1837 0 obj<>endobj +1838 0 obj<>endobj +1839 0 obj<>endobj +1840 0 obj<>endobj +1841 0 obj<>endobj +1842 0 obj<>endobj +1843 0 obj<>endobj +1844 0 obj<>endobj +1845 0 obj<>endobj +1846 0 obj<>endobj +1847 0 obj<>endobj +1848 0 obj<>endobj +1849 0 obj<>endobj +1850 0 obj<>endobj +1851 0 obj<>endobj +1852 0 obj<>endobj +1853 0 obj<>endobj +1854 0 obj<>endobj +1855 0 obj<>endobj +1856 0 obj<>endobj +1857 0 obj<>endobj +1858 0 obj<>endobj +1859 0 obj<>endobj +1860 0 obj<>endobj +1861 0 obj<>endobj +1862 0 obj<>endobj +1863 0 obj<>endobj +1864 0 obj<>endobj +1865 0 obj<>endobj +1866 0 obj<>endobj +1867 0 obj<>endobj +1868 0 obj<>endobj +1869 0 obj<>endobj +1870 0 obj<>endobj +1871 0 obj<>endobj +1872 0 obj<>endobj +1873 0 obj<>endobj +1874 0 obj<>endobj +1875 0 obj<>endobj +1876 0 obj<>endobj +1877 0 obj<>endobj +1878 0 obj<>endobj +1879 0 obj<>endobj +1880 0 obj<>endobj +1881 0 obj<>endobj +1882 0 obj<>endobj +1883 0 obj<>endobj +1884 0 obj<>endobj +1885 0 obj<>endobj +1886 0 obj<>endobj +1887 0 obj<>endobj +1888 0 obj<>endobj +1889 0 obj<>endobj +1890 0 obj<>endobj +1891 0 obj<>endobj +1892 0 obj<>endobj +1893 0 obj<>endobj +1894 0 obj<>endobj +1895 0 obj<>endobj +1896 0 obj<>endobj +1897 0 obj<>endobj +1898 0 obj<>endobj +1899 0 obj<>endobj +1900 0 obj<>endobj +1901 0 obj<>endobj +1902 0 obj<>endobj +1903 0 obj<>endobj +1904 0 obj<>endobj +1905 0 obj<>endobj +1906 0 obj<>endobj +1907 0 obj<>endobj +1908 0 obj<>endobj +1909 0 obj<>endobj +1910 0 obj<>endobj +1911 0 obj<>endobj +1912 0 obj<>endobj +1913 0 obj<>endobj +1914 0 obj<>endobj +1915 0 obj<>endobj +1916 0 obj<>endobj +1917 0 obj<>endobj +1918 0 obj<>endobj +1919 0 obj<>endobj +1920 0 obj<>endobj +1921 0 obj<>endobj +1922 0 obj<>endobj +1923 0 obj<>endobj +1924 0 obj<>endobj +1925 0 obj<>endobj +1926 0 obj<>endobj +1927 0 obj<>endobj +1928 0 obj<>endobj +1929 0 obj<>endobj +1930 0 obj<>endobj +1931 0 obj<>endobj +1932 0 obj<>endobj +1933 0 obj<>endobj +1934 0 obj<>endobj +1935 0 obj<>endobj +1936 0 obj<>endobj +1937 0 obj<>endobj +1938 0 obj<>endobj +1939 0 obj<>endobj +1940 0 obj<>endobj +1941 0 obj<>endobj +1942 0 obj<>endobj +1943 0 obj<>endobj +1944 0 obj<>endobj +1945 0 obj<>endobj +1946 0 obj<>endobj +1947 0 obj<>endobj +1948 0 obj<>endobj +1949 0 obj<>endobj +1950 0 obj<>endobj +1951 0 obj<>endobj +1952 0 obj<>endobj +1953 0 obj<>endobj +1954 0 obj<>endobj +1955 0 obj<>endobj +1956 0 obj<>endobj +1957 0 obj<>endobj +1958 0 obj<>endobj +1959 0 obj<>endobj +1960 0 obj<>endobj +1961 0 obj<>endobj +1962 0 obj<>endobj +1963 0 obj<>endobj +1964 0 obj<>endobj +1965 0 obj<>endobj +1966 0 obj<>endobj +1967 0 obj<>endobj +1968 0 obj<>endobj +1969 0 obj<>endobj +1970 0 obj<>endobj +1971 0 obj<>endobj +1972 0 obj<>endobj +1973 0 obj<>endobj +1974 0 obj<>endobj +1975 0 obj<>endobj +1976 0 obj<>endobj +1977 0 obj<>endobj +1978 0 obj<>endobj +1979 0 obj<>endobj +1980 0 obj<>endobj +1981 0 obj<>endobj +1982 0 obj<>endobj +1983 0 obj<>endobj +1984 0 obj<>endobj +1985 0 obj<>1<>8<>9<>13<>14<>16<>20<>24<>35<>36<>37<>39<>56<>59<>62<>65<>66<>69<>79<>84<>87<>89<>100<>113<>122<>125<>126<>130<>133<>135<>137<>140<>144<>148<>150<>]>>>>endobj xref -0 1949 +0 1986 0000000000 65535 f 0000000015 00000 n -0000000249 00000 n -0000001815 00000 n -0000001889 00000 n -0000001968 00000 n -0000002050 00000 n -0000002136 00000 n -0000002214 00000 n -0000002291 00000 n -0000002370 00000 n -0000002454 00000 n -0000002531 00000 n -0000002613 00000 n -0000002672 00000 n -0000003099 00000 n -0000003837 00000 n -0000003939 00000 n -0000004042 00000 n -0000004144 00000 n -0000004246 00000 n -0000004348 00000 n -0000004450 00000 n -0000004553 00000 n -0000004656 00000 n -0000004759 00000 n -0000004862 00000 n -0000004965 00000 n -0000005068 00000 n -0000005171 00000 n -0000005274 00000 n -0000005377 00000 n -0000005480 00000 n -0000005583 00000 n -0000005686 00000 n -0000005789 00000 n -0000005892 00000 n -0000005995 00000 n -0000006098 00000 n -0000006201 00000 n -0000006304 00000 n -0000006406 00000 n -0000006509 00000 n -0000006612 00000 n -0000006715 00000 n -0000006818 00000 n -0000006921 00000 n -0000007024 00000 n -0000007126 00000 n -0000007229 00000 n -0000007332 00000 n -0000007435 00000 n -0000007538 00000 n -0000007641 00000 n -0000007744 00000 n -0000007847 00000 n -0000007949 00000 n -0000008050 00000 n -0000008151 00000 n -0000008461 00000 n -0000008563 00000 n -0000008666 00000 n -0000008769 00000 n -0000008872 00000 n -0000008975 00000 n -0000009078 00000 n -0000009181 00000 n -0000009284 00000 n -0000009387 00000 n -0000009490 00000 n -0000009593 00000 n -0000009696 00000 n -0000009799 00000 n -0000009902 00000 n -0000010005 00000 n -0000010108 00000 n -0000010211 00000 n -0000010313 00000 n -0000010415 00000 n -0000010517 00000 n -0000010619 00000 n -0000010722 00000 n -0000010825 00000 n -0000010928 00000 n -0000011031 00000 n -0000011134 00000 n -0000011237 00000 n -0000011340 00000 n -0000011443 00000 n -0000011546 00000 n -0000011649 00000 n -0000011752 00000 n -0000011855 00000 n -0000011958 00000 n -0000012061 00000 n -0000012163 00000 n -0000012266 00000 n -0000012369 00000 n -0000012472 00000 n -0000012575 00000 n -0000012677 00000 n -0000012779 00000 n -0000012881 00000 n -0000013201 00000 n -0000013304 00000 n -0000013408 00000 n -0000013512 00000 n -0000013615 00000 n -0000013719 00000 n -0000013823 00000 n -0000013927 00000 n -0000014031 00000 n -0000014135 00000 n -0000014239 00000 n -0000014343 00000 n -0000014447 00000 n -0000014551 00000 n -0000014654 00000 n -0000014758 00000 n -0000014862 00000 n -0000014966 00000 n -0000015069 00000 n -0000015172 00000 n -0000015275 00000 n -0000015379 00000 n -0000015483 00000 n -0000015587 00000 n -0000015691 00000 n -0000015795 00000 n -0000015899 00000 n -0000016003 00000 n -0000016107 00000 n -0000016211 00000 n -0000016315 00000 n -0000016419 00000 n -0000016523 00000 n -0000016627 00000 n -0000016731 00000 n -0000016835 00000 n -0000016939 00000 n -0000017043 00000 n -0000017147 00000 n -0000017250 00000 n -0000017353 00000 n -0000017455 00000 n -0000017557 00000 n -0000017910 00000 n -0000018013 00000 n -0000018117 00000 n -0000018221 00000 n -0000018325 00000 n -0000018429 00000 n -0000018533 00000 n -0000018637 00000 n -0000018740 00000 n -0000018844 00000 n -0000018948 00000 n -0000019052 00000 n -0000019155 00000 n -0000019259 00000 n -0000019363 00000 n -0000019466 00000 n -0000019570 00000 n -0000019674 00000 n -0000019778 00000 n -0000019882 00000 n -0000019986 00000 n -0000020090 00000 n -0000020194 00000 n -0000020298 00000 n -0000020402 00000 n -0000020506 00000 n -0000020610 00000 n -0000020714 00000 n -0000020818 00000 n -0000020922 00000 n -0000021026 00000 n -0000021130 00000 n -0000021234 00000 n -0000021338 00000 n -0000021442 00000 n -0000021546 00000 n -0000021650 00000 n -0000021754 00000 n -0000021857 00000 n -0000021961 00000 n -0000022065 00000 n -0000022169 00000 n -0000022272 00000 n -0000022374 00000 n -0000022476 00000 n -0000022845 00000 n -0000022948 00000 n -0000023052 00000 n -0000023156 00000 n -0000023260 00000 n -0000023364 00000 n -0000023468 00000 n -0000023572 00000 n -0000023676 00000 n -0000023780 00000 n -0000023884 00000 n -0000023988 00000 n -0000024092 00000 n -0000024195 00000 n -0000024299 00000 n -0000024403 00000 n -0000024507 00000 n -0000024611 00000 n -0000024715 00000 n -0000024819 00000 n -0000024923 00000 n -0000025027 00000 n -0000025131 00000 n -0000025235 00000 n -0000025339 00000 n -0000025443 00000 n -0000025546 00000 n -0000025650 00000 n -0000025754 00000 n -0000025858 00000 n -0000025962 00000 n -0000026066 00000 n -0000026170 00000 n -0000026274 00000 n -0000026378 00000 n -0000026481 00000 n -0000026585 00000 n -0000026689 00000 n -0000026793 00000 n -0000026897 00000 n -0000027000 00000 n -0000027102 00000 n -0000027204 00000 n -0000027306 00000 n -0000027667 00000 n -0000027770 00000 n -0000027874 00000 n -0000027978 00000 n -0000028082 00000 n -0000028186 00000 n -0000028290 00000 n -0000028394 00000 n -0000028498 00000 n -0000028602 00000 n -0000028705 00000 n -0000028809 00000 n -0000028913 00000 n -0000029017 00000 n -0000029121 00000 n -0000029225 00000 n -0000029329 00000 n -0000029433 00000 n -0000029536 00000 n -0000029639 00000 n -0000029743 00000 n -0000029847 00000 n -0000029951 00000 n -0000030055 00000 n -0000030158 00000 n -0000030262 00000 n -0000030366 00000 n -0000030470 00000 n -0000030574 00000 n -0000030678 00000 n -0000030782 00000 n -0000030886 00000 n -0000030990 00000 n -0000031094 00000 n -0000031198 00000 n -0000031302 00000 n -0000031406 00000 n -0000031510 00000 n -0000031613 00000 n -0000031717 00000 n -0000031821 00000 n -0000031924 00000 n -0000032026 00000 n -0000032128 00000 n -0000032489 00000 n -0000032592 00000 n -0000032696 00000 n -0000032799 00000 n -0000032903 00000 n -0000033007 00000 n -0000033111 00000 n -0000033215 00000 n -0000033319 00000 n -0000033423 00000 n -0000033527 00000 n -0000033631 00000 n -0000033735 00000 n -0000033839 00000 n -0000033943 00000 n -0000034047 00000 n -0000034151 00000 n -0000034255 00000 n -0000034359 00000 n -0000034520 00000 n -0000034573 00000 n -0000034660 00000 n -0000034714 00000 n -0000034800 00000 n -0000034855 00000 n -0000034942 00000 n -0000035009 00000 n -0000035095 00000 n -0000035198 00000 n -0000035302 00000 n -0000035406 00000 n -0000035510 00000 n -0000035614 00000 n -0000035718 00000 n -0000035822 00000 n -0000035926 00000 n -0000036030 00000 n -0000036134 00000 n -0000036238 00000 n -0000036342 00000 n -0000036446 00000 n -0000036550 00000 n -0000036654 00000 n -0000036758 00000 n -0000036862 00000 n -0000036966 00000 n -0000037070 00000 n -0000037174 00000 n -0000037278 00000 n -0000037382 00000 n -0000037486 00000 n -0000037590 00000 n -0000037694 00000 n -0000037798 00000 n -0000037902 00000 n -0000038006 00000 n -0000038109 00000 n -0000038213 00000 n -0000038317 00000 n -0000038420 00000 n -0000038522 00000 n -0000038624 00000 n -0000038945 00000 n -0000039049 00000 n -0000039153 00000 n -0000039257 00000 n -0000039361 00000 n -0000039465 00000 n -0000039569 00000 n -0000039673 00000 n -0000039777 00000 n -0000039881 00000 n -0000039985 00000 n -0000040089 00000 n -0000040193 00000 n -0000040297 00000 n -0000040401 00000 n -0000040505 00000 n -0000040609 00000 n -0000040713 00000 n -0000040817 00000 n -0000040921 00000 n -0000041025 00000 n -0000041129 00000 n -0000041233 00000 n -0000041337 00000 n -0000041441 00000 n -0000041545 00000 n -0000041648 00000 n -0000041752 00000 n -0000041856 00000 n -0000041960 00000 n -0000042064 00000 n -0000042168 00000 n -0000042272 00000 n -0000042376 00000 n -0000042480 00000 n -0000042584 00000 n -0000042688 00000 n -0000042792 00000 n -0000042896 00000 n -0000043000 00000 n -0000043104 00000 n -0000043208 00000 n -0000043312 00000 n -0000043416 00000 n -0000043520 00000 n -0000043624 00000 n -0000043728 00000 n -0000043832 00000 n -0000043936 00000 n -0000044039 00000 n -0000044141 00000 n -0000044243 00000 n -0000044668 00000 n -0000044772 00000 n -0000044876 00000 n -0000044980 00000 n -0000045084 00000 n -0000045188 00000 n -0000045292 00000 n -0000045396 00000 n -0000045500 00000 n -0000045604 00000 n -0000045708 00000 n -0000045812 00000 n -0000045916 00000 n -0000046020 00000 n -0000046124 00000 n -0000046228 00000 n -0000046332 00000 n -0000046436 00000 n -0000046540 00000 n -0000046644 00000 n -0000046748 00000 n -0000046852 00000 n -0000046956 00000 n -0000047060 00000 n -0000047164 00000 n -0000047268 00000 n -0000047372 00000 n -0000047476 00000 n -0000047580 00000 n -0000047684 00000 n -0000047788 00000 n -0000047892 00000 n -0000047996 00000 n -0000048100 00000 n -0000048204 00000 n -0000048308 00000 n -0000048412 00000 n -0000048516 00000 n -0000048620 00000 n -0000048724 00000 n -0000048828 00000 n -0000048932 00000 n -0000049036 00000 n -0000049140 00000 n -0000049244 00000 n -0000049348 00000 n -0000049451 00000 n -0000049555 00000 n -0000049659 00000 n -0000049762 00000 n -0000049864 00000 n -0000049966 00000 n -0000050391 00000 n -0000050495 00000 n -0000050599 00000 n -0000050703 00000 n -0000050807 00000 n -0000050911 00000 n -0000051015 00000 n -0000051119 00000 n -0000051223 00000 n -0000051327 00000 n -0000051431 00000 n -0000051535 00000 n -0000051639 00000 n -0000051743 00000 n -0000051847 00000 n -0000051951 00000 n -0000052055 00000 n -0000052159 00000 n -0000052263 00000 n -0000052424 00000 n -0000052527 00000 n -0000052631 00000 n -0000052735 00000 n -0000052839 00000 n -0000052943 00000 n -0000053047 00000 n -0000053151 00000 n -0000053255 00000 n -0000053359 00000 n -0000053463 00000 n -0000053567 00000 n -0000053671 00000 n -0000053775 00000 n -0000053879 00000 n -0000053983 00000 n -0000054087 00000 n -0000054191 00000 n -0000054295 00000 n -0000054399 00000 n -0000054502 00000 n -0000054606 00000 n -0000054710 00000 n -0000054814 00000 n -0000054918 00000 n -0000055022 00000 n -0000055126 00000 n -0000055229 00000 n -0000055333 00000 n -0000055437 00000 n -0000055541 00000 n -0000055645 00000 n -0000055749 00000 n -0000055853 00000 n -0000055957 00000 n -0000056061 00000 n -0000056165 00000 n -0000056269 00000 n -0000056373 00000 n -0000056477 00000 n -0000056581 00000 n -0000056685 00000 n -0000056788 00000 n -0000056890 00000 n -0000056992 00000 n -0000057361 00000 n -0000057465 00000 n -0000057569 00000 n -0000057673 00000 n -0000057777 00000 n -0000057881 00000 n -0000057985 00000 n -0000058089 00000 n -0000058193 00000 n -0000058297 00000 n -0000058386 00000 n -0000058439 00000 n -0000058526 00000 n -0000058551 00000 n -0000058598 00000 n -0000058685 00000 n -0000058710 00000 n -0000058766 00000 n -0000058853 00000 n -0000058922 00000 n -0000059009 00000 n -0000059060 00000 n -0000059147 00000 n -0000059232 00000 n -0000059319 00000 n -0000059375 00000 n -0000059462 00000 n -0000059512 00000 n -0000059599 00000 n -0000059664 00000 n -0000059716 00000 n -0000059803 00000 n -0000059859 00000 n -0000059946 00000 n -0000059994 00000 n -0000060081 00000 n -0000060122 00000 n -0000060170 00000 n -0000060257 00000 n -0000060282 00000 n +0000000247 00000 n +0000001813 00000 n +0000001887 00000 n +0000001966 00000 n +0000002048 00000 n +0000002126 00000 n +0000002203 00000 n +0000002282 00000 n +0000002365 00000 n +0000002442 00000 n +0000002524 00000 n +0000002609 00000 n +0000002698 00000 n +0000002757 00000 n +0000003184 00000 n +0000003922 00000 n +0000004024 00000 n +0000004127 00000 n +0000004229 00000 n +0000004331 00000 n +0000004433 00000 n +0000004535 00000 n +0000004638 00000 n +0000004741 00000 n +0000004844 00000 n +0000004947 00000 n +0000005050 00000 n +0000005153 00000 n +0000005256 00000 n +0000005359 00000 n +0000005462 00000 n +0000005565 00000 n +0000005667 00000 n +0000005770 00000 n +0000005873 00000 n +0000005976 00000 n +0000006079 00000 n +0000006182 00000 n +0000006285 00000 n +0000006387 00000 n +0000006490 00000 n +0000006593 00000 n +0000006696 00000 n +0000006799 00000 n +0000006902 00000 n +0000007005 00000 n +0000007108 00000 n +0000007211 00000 n +0000007314 00000 n +0000007417 00000 n +0000007520 00000 n +0000007623 00000 n +0000007726 00000 n +0000007829 00000 n +0000007932 00000 n +0000008034 00000 n +0000008135 00000 n +0000008236 00000 n +0000008546 00000 n +0000008648 00000 n +0000008751 00000 n +0000008854 00000 n +0000008957 00000 n +0000009060 00000 n +0000009163 00000 n +0000009266 00000 n +0000009369 00000 n +0000009472 00000 n +0000009574 00000 n +0000009676 00000 n +0000009778 00000 n +0000009880 00000 n +0000009983 00000 n +0000010086 00000 n +0000010189 00000 n +0000010292 00000 n +0000010395 00000 n +0000010498 00000 n +0000010601 00000 n +0000010704 00000 n +0000010807 00000 n +0000010910 00000 n +0000011013 00000 n +0000011116 00000 n +0000011219 00000 n +0000011322 00000 n +0000011424 00000 n +0000011527 00000 n +0000011630 00000 n +0000011733 00000 n +0000011836 00000 n +0000011939 00000 n +0000012042 00000 n +0000012145 00000 n +0000012248 00000 n +0000012351 00000 n +0000012453 00000 n +0000012556 00000 n +0000012658 00000 n +0000012760 00000 n +0000012862 00000 n +0000013175 00000 n +0000013278 00000 n +0000013382 00000 n +0000013486 00000 n +0000013590 00000 n +0000013694 00000 n +0000013798 00000 n +0000013901 00000 n +0000014005 00000 n +0000014109 00000 n +0000014213 00000 n +0000014316 00000 n +0000014419 00000 n +0000014522 00000 n +0000014626 00000 n +0000014730 00000 n +0000014834 00000 n +0000014938 00000 n +0000015042 00000 n +0000015146 00000 n +0000015250 00000 n +0000015354 00000 n +0000015458 00000 n +0000015562 00000 n +0000015666 00000 n +0000015770 00000 n +0000015874 00000 n +0000015978 00000 n +0000016082 00000 n +0000016186 00000 n +0000016290 00000 n +0000016394 00000 n +0000016497 00000 n +0000016601 00000 n +0000016705 00000 n +0000016809 00000 n +0000016913 00000 n +0000017017 00000 n +0000017121 00000 n +0000017225 00000 n +0000017329 00000 n +0000017432 00000 n +0000017777 00000 n +0000017880 00000 n +0000017984 00000 n +0000018088 00000 n +0000018192 00000 n +0000018295 00000 n +0000018399 00000 n +0000018503 00000 n +0000018606 00000 n +0000018710 00000 n +0000018814 00000 n +0000018918 00000 n +0000019022 00000 n +0000019126 00000 n +0000019230 00000 n +0000019334 00000 n +0000019438 00000 n +0000019542 00000 n +0000019646 00000 n +0000019750 00000 n +0000019854 00000 n +0000019958 00000 n +0000020062 00000 n +0000020166 00000 n +0000020270 00000 n +0000020374 00000 n +0000020478 00000 n +0000020582 00000 n +0000020686 00000 n +0000020790 00000 n +0000020894 00000 n +0000020997 00000 n +0000021101 00000 n +0000021205 00000 n +0000021309 00000 n +0000021413 00000 n +0000021517 00000 n +0000021621 00000 n +0000021725 00000 n +0000021829 00000 n +0000021933 00000 n +0000022037 00000 n +0000022141 00000 n +0000022244 00000 n +0000022346 00000 n +0000022448 00000 n +0000022825 00000 n +0000022928 00000 n +0000023032 00000 n +0000023136 00000 n +0000023240 00000 n +0000023343 00000 n +0000023447 00000 n +0000023551 00000 n +0000023655 00000 n +0000023759 00000 n +0000023863 00000 n +0000023967 00000 n +0000024071 00000 n +0000024175 00000 n +0000024279 00000 n +0000024383 00000 n +0000024487 00000 n +0000024591 00000 n +0000024694 00000 n +0000024798 00000 n +0000024902 00000 n +0000025006 00000 n +0000025110 00000 n +0000025214 00000 n +0000025318 00000 n +0000025422 00000 n +0000025526 00000 n +0000025629 00000 n +0000025732 00000 n +0000025836 00000 n +0000025940 00000 n +0000026044 00000 n +0000026148 00000 n +0000026252 00000 n +0000026356 00000 n +0000026460 00000 n +0000026564 00000 n +0000026668 00000 n +0000026772 00000 n +0000026875 00000 n +0000026979 00000 n +0000027082 00000 n +0000027184 00000 n +0000027286 00000 n +0000027647 00000 n +0000027750 00000 n +0000027854 00000 n +0000027958 00000 n +0000028062 00000 n +0000028165 00000 n +0000028269 00000 n +0000028373 00000 n +0000028477 00000 n +0000028581 00000 n +0000028685 00000 n +0000028789 00000 n +0000028892 00000 n +0000028995 00000 n +0000029099 00000 n +0000029203 00000 n +0000029307 00000 n +0000029411 00000 n +0000029515 00000 n +0000029619 00000 n +0000029722 00000 n +0000029826 00000 n +0000029930 00000 n +0000030034 00000 n +0000030138 00000 n +0000030242 00000 n +0000030346 00000 n +0000030450 00000 n +0000030554 00000 n +0000030658 00000 n +0000030762 00000 n +0000030866 00000 n +0000030970 00000 n +0000031074 00000 n +0000031178 00000 n +0000031281 00000 n +0000031385 00000 n +0000031489 00000 n +0000031593 00000 n +0000031697 00000 n +0000031801 00000 n +0000031904 00000 n +0000032006 00000 n +0000032108 00000 n +0000032469 00000 n +0000032572 00000 n +0000032676 00000 n +0000032780 00000 n +0000032884 00000 n +0000032988 00000 n +0000033092 00000 n +0000033196 00000 n +0000033299 00000 n +0000033403 00000 n +0000033507 00000 n +0000033611 00000 n +0000033715 00000 n +0000033819 00000 n +0000033923 00000 n +0000034027 00000 n +0000034131 00000 n +0000034235 00000 n +0000034339 00000 n +0000034443 00000 n +0000034547 00000 n +0000034651 00000 n +0000034755 00000 n +0000034859 00000 n +0000035060 00000 n +0000035113 00000 n +0000035200 00000 n +0000035254 00000 n +0000035340 00000 n +0000035395 00000 n +0000035482 00000 n +0000035549 00000 n +0000035635 00000 n +0000035738 00000 n +0000035842 00000 n +0000035946 00000 n +0000036050 00000 n +0000036154 00000 n +0000036258 00000 n +0000036362 00000 n +0000036466 00000 n +0000036570 00000 n +0000036674 00000 n +0000036778 00000 n +0000036882 00000 n +0000036986 00000 n +0000037090 00000 n +0000037194 00000 n +0000037298 00000 n +0000037402 00000 n +0000037506 00000 n +0000037610 00000 n +0000037714 00000 n +0000037818 00000 n +0000037922 00000 n +0000038026 00000 n +0000038130 00000 n +0000038233 00000 n +0000038337 00000 n +0000038441 00000 n +0000038545 00000 n +0000038649 00000 n +0000038753 00000 n +0000038857 00000 n +0000038960 00000 n +0000039062 00000 n +0000039164 00000 n +0000039485 00000 n +0000039589 00000 n +0000039693 00000 n +0000039797 00000 n +0000039901 00000 n +0000040005 00000 n +0000040109 00000 n +0000040213 00000 n +0000040317 00000 n +0000040421 00000 n +0000040525 00000 n +0000040629 00000 n +0000040733 00000 n +0000040837 00000 n +0000040941 00000 n +0000041045 00000 n +0000041149 00000 n +0000041253 00000 n +0000041357 00000 n +0000041461 00000 n +0000041565 00000 n +0000041669 00000 n +0000041772 00000 n +0000041876 00000 n +0000041980 00000 n +0000042084 00000 n +0000042188 00000 n +0000042292 00000 n +0000042396 00000 n +0000042500 00000 n +0000042604 00000 n +0000042708 00000 n +0000042812 00000 n +0000042916 00000 n +0000043020 00000 n +0000043124 00000 n +0000043228 00000 n +0000043332 00000 n +0000043436 00000 n +0000043540 00000 n +0000043644 00000 n +0000043748 00000 n +0000043852 00000 n +0000043956 00000 n +0000044060 00000 n +0000044164 00000 n +0000044268 00000 n +0000044372 00000 n +0000044476 00000 n +0000044579 00000 n +0000044681 00000 n +0000044783 00000 n +0000045208 00000 n +0000045312 00000 n +0000045416 00000 n +0000045520 00000 n +0000045624 00000 n +0000045728 00000 n +0000045832 00000 n +0000045936 00000 n +0000046040 00000 n +0000046144 00000 n +0000046248 00000 n +0000046352 00000 n +0000046456 00000 n +0000046560 00000 n +0000046664 00000 n +0000046768 00000 n +0000046872 00000 n +0000046976 00000 n +0000047080 00000 n +0000047184 00000 n +0000047288 00000 n +0000047392 00000 n +0000047496 00000 n +0000047600 00000 n +0000047704 00000 n +0000047808 00000 n +0000047912 00000 n +0000048016 00000 n +0000048120 00000 n +0000048224 00000 n +0000048328 00000 n +0000048432 00000 n +0000048536 00000 n +0000048640 00000 n +0000048744 00000 n +0000048848 00000 n +0000048952 00000 n +0000049056 00000 n +0000049160 00000 n +0000049264 00000 n +0000049368 00000 n +0000049472 00000 n +0000049576 00000 n +0000049680 00000 n +0000049784 00000 n +0000049888 00000 n +0000049991 00000 n +0000050095 00000 n +0000050199 00000 n +0000050302 00000 n +0000050404 00000 n +0000050506 00000 n +0000050931 00000 n +0000051035 00000 n +0000051139 00000 n +0000051243 00000 n +0000051347 00000 n +0000051451 00000 n +0000051555 00000 n +0000051659 00000 n +0000051763 00000 n +0000051867 00000 n +0000051971 00000 n +0000052075 00000 n +0000052179 00000 n +0000052283 00000 n +0000052387 00000 n +0000052491 00000 n +0000052595 00000 n +0000052699 00000 n +0000052803 00000 n +0000052907 00000 n +0000053011 00000 n +0000053115 00000 n +0000053219 00000 n +0000053323 00000 n +0000053427 00000 n +0000053636 00000 n +0000053739 00000 n +0000053843 00000 n +0000053947 00000 n +0000054051 00000 n +0000054155 00000 n +0000054259 00000 n +0000054363 00000 n +0000054467 00000 n +0000054571 00000 n +0000054675 00000 n +0000054779 00000 n +0000054882 00000 n +0000054986 00000 n +0000055090 00000 n +0000055194 00000 n +0000055298 00000 n +0000055402 00000 n +0000055506 00000 n +0000055609 00000 n +0000055713 00000 n +0000055817 00000 n +0000055921 00000 n +0000056025 00000 n +0000056129 00000 n +0000056233 00000 n +0000056337 00000 n +0000056441 00000 n +0000056545 00000 n +0000056649 00000 n +0000056753 00000 n +0000056857 00000 n +0000056961 00000 n +0000057065 00000 n +0000057169 00000 n +0000057273 00000 n +0000057377 00000 n +0000057481 00000 n +0000057585 00000 n +0000057689 00000 n +0000057793 00000 n +0000057897 00000 n +0000058000 00000 n +0000058102 00000 n +0000058204 00000 n +0000058573 00000 n +0000058677 00000 n +0000058702 00000 n +0000058751 00000 n +0000058838 00000 n +0000058863 00000 n +0000058919 00000 n +0000059006 00000 n +0000059075 00000 n +0000059162 00000 n +0000059213 00000 n +0000059300 00000 n +0000059385 00000 n +0000059472 00000 n +0000059528 00000 n +0000059615 00000 n +0000059665 00000 n +0000059752 00000 n +0000059817 00000 n +0000059869 00000 n +0000059956 00000 n +0000060012 00000 n +0000060099 00000 n +0000060147 00000 n +0000060234 00000 n +0000060275 00000 n 0000060323 00000 n 0000060410 00000 n -0000060454 00000 n -0000060541 00000 n -0000060586 00000 n -0000060673 00000 n -0000060717 00000 n -0000060804 00000 n -0000060848 00000 n -0000060935 00000 n -0000060977 00000 n -0000061064 00000 n -0000061112 00000 n -0000061199 00000 n -0000061272 00000 n -0000061320 00000 n -0000061406 00000 n -0000061431 00000 n -0000061484 00000 n -0000061570 00000 n -0000061595 00000 n -0000061698 00000 n -0000061801 00000 n -0000061905 00000 n -0000062009 00000 n -0000062113 00000 n -0000062217 00000 n -0000062321 00000 n -0000062425 00000 n -0000062529 00000 n -0000062633 00000 n -0000062737 00000 n -0000062841 00000 n -0000062945 00000 n -0000063049 00000 n -0000063153 00000 n -0000063257 00000 n -0000063360 00000 n -0000063464 00000 n -0000063568 00000 n -0000063672 00000 n -0000063776 00000 n -0000063880 00000 n -0000063984 00000 n -0000064088 00000 n -0000064192 00000 n -0000064296 00000 n -0000064399 00000 n -0000064503 00000 n -0000064607 00000 n -0000064711 00000 n -0000064815 00000 n -0000064919 00000 n -0000065023 00000 n -0000065127 00000 n -0000065231 00000 n -0000065335 00000 n -0000065438 00000 n -0000065542 00000 n -0000065646 00000 n -0000065750 00000 n -0000066087 00000 n -0000066135 00000 n -0000066222 00000 n -0000066270 00000 n -0000066357 00000 n -0000066407 00000 n -0000066494 00000 n -0000066542 00000 n -0000066629 00000 n -0000066678 00000 n -0000066726 00000 n -0000066813 00000 n -0000066861 00000 n -0000066946 00000 n -0000066991 00000 n -0000067077 00000 n -0000067120 00000 n -0000067206 00000 n -0000067247 00000 n -0000067333 00000 n -0000067382 00000 n -0000067468 00000 n -0000067514 00000 n -0000067600 00000 n -0000067645 00000 n -0000067731 00000 n -0000067783 00000 n -0000067869 00000 n -0000067919 00000 n -0000068005 00000 n -0000068051 00000 n -0000068137 00000 n -0000068180 00000 n -0000068266 00000 n -0000068310 00000 n -0000068396 00000 n -0000068439 00000 n -0000068525 00000 n -0000068570 00000 n -0000068656 00000 n -0000068694 00000 n -0000068780 00000 n -0000068822 00000 n -0000068908 00000 n -0000068951 00000 n -0000069037 00000 n -0000069075 00000 n -0000069161 00000 n -0000069203 00000 n -0000069289 00000 n -0000069333 00000 n -0000069419 00000 n -0000069466 00000 n -0000069552 00000 n -0000069600 00000 n -0000069685 00000 n -0000069886 00000 n -0000069936 00000 n -0000070023 00000 n -0000070073 00000 n -0000070159 00000 n -0000070192 00000 n -0000070241 00000 n -0000070327 00000 n -0000070374 00000 n -0000070461 00000 n -0000070494 00000 n -0000070609 00000 n -0000070696 00000 n -0000070778 00000 n -0000070865 00000 n -0000070950 00000 n -0000071037 00000 n -0000071078 00000 n -0000071133 00000 n -0000071220 00000 n -0000071276 00000 n -0000071363 00000 n -0000071396 00000 n -0000071444 00000 n -0000071531 00000 n -0000071605 00000 n -0000071692 00000 n -0000071760 00000 n -0000071847 00000 n -0000071901 00000 n -0000071988 00000 n -0000072056 00000 n -0000072143 00000 n -0000072217 00000 n -0000072304 00000 n -0000072352 00000 n -0000072439 00000 n -0000072496 00000 n -0000072583 00000 n -0000072664 00000 n -0000072719 00000 n -0000072806 00000 n -0000072887 00000 n -0000072974 00000 n -0000073007 00000 n -0000073060 00000 n -0000073147 00000 n -0000073172 00000 n -0000073220 00000 n -0000073307 00000 n -0000073349 00000 n -0000073436 00000 n -0000073479 00000 n -0000073566 00000 n -0000073616 00000 n -0000073703 00000 n -0000073751 00000 n -0000073838 00000 n -0000073895 00000 n -0000073938 00000 n -0000074025 00000 n -0000074079 00000 n -0000074166 00000 n -0000074211 00000 n -0000074298 00000 n -0000074339 00000 n -0000074396 00000 n -0000074483 00000 n -0000074579 00000 n -0000074665 00000 n -0000074698 00000 n -0000074801 00000 n -0000074905 00000 n -0000075009 00000 n -0000075113 00000 n -0000075217 00000 n -0000075321 00000 n -0000075425 00000 n -0000075529 00000 n -0000075633 00000 n -0000075737 00000 n -0000075841 00000 n -0000075945 00000 n -0000076049 00000 n -0000076153 00000 n -0000076257 00000 n -0000076361 00000 n -0000076465 00000 n -0000076569 00000 n -0000076673 00000 n -0000076776 00000 n -0000076880 00000 n -0000076984 00000 n -0000077088 00000 n -0000077192 00000 n -0000077296 00000 n -0000077400 00000 n -0000077504 00000 n -0000077608 00000 n -0000077712 00000 n -0000077815 00000 n -0000077919 00000 n -0000078023 00000 n -0000078127 00000 n -0000078230 00000 n -0000078334 00000 n -0000078438 00000 n -0000078541 00000 n -0000078645 00000 n -0000078749 00000 n -0000078853 00000 n -0000078957 00000 n -0000079060 00000 n -0000079162 00000 n -0000079264 00000 n -0000079633 00000 n -0000079737 00000 n -0000079841 00000 n -0000079945 00000 n -0000080049 00000 n -0000080153 00000 n -0000080257 00000 n -0000080361 00000 n -0000080465 00000 n -0000080569 00000 n -0000080673 00000 n -0000080777 00000 n -0000080881 00000 n -0000080985 00000 n -0000081089 00000 n -0000081193 00000 n -0000081296 00000 n -0000081400 00000 n -0000081504 00000 n -0000081608 00000 n -0000081712 00000 n -0000081816 00000 n -0000081920 00000 n -0000082024 00000 n -0000082128 00000 n -0000082232 00000 n -0000082336 00000 n -0000082440 00000 n -0000082544 00000 n -0000082648 00000 n -0000082752 00000 n -0000082856 00000 n -0000082960 00000 n -0000083064 00000 n -0000083167 00000 n -0000083271 00000 n -0000083375 00000 n -0000083479 00000 n -0000083583 00000 n -0000083687 00000 n -0000083791 00000 n -0000083895 00000 n -0000083999 00000 n -0000084103 00000 n -0000084207 00000 n -0000084311 00000 n -0000084415 00000 n -0000084518 00000 n -0000084622 00000 n -0000084725 00000 n -0000084827 00000 n -0000084929 00000 n -0000085354 00000 n -0000085458 00000 n -0000085562 00000 n -0000085666 00000 n -0000085770 00000 n -0000085873 00000 n -0000085977 00000 n -0000086081 00000 n -0000086185 00000 n -0000086289 00000 n -0000086392 00000 n -0000086495 00000 n -0000086599 00000 n -0000086703 00000 n -0000086807 00000 n -0000086911 00000 n -0000087015 00000 n -0000087119 00000 n -0000087223 00000 n -0000087327 00000 n -0000087431 00000 n -0000087535 00000 n -0000087638 00000 n -0000087742 00000 n -0000087846 00000 n -0000087950 00000 n -0000088054 00000 n -0000088158 00000 n -0000088262 00000 n -0000088366 00000 n -0000088615 00000 n -0000088663 00000 n -0000088750 00000 n -0000088797 00000 n -0000088883 00000 n -0000088930 00000 n -0000089016 00000 n -0000089057 00000 n -0000089102 00000 n -0000089189 00000 n -0000089234 00000 n -0000089320 00000 n -0000089353 00000 n -0000089399 00000 n -0000089484 00000 n -0000089530 00000 n -0000089613 00000 n -0000089646 00000 n -0000089690 00000 n -0000089777 00000 n -0000089828 00000 n -0000089915 00000 n -0000089964 00000 n -0000090051 00000 n -0000090099 00000 n -0000090185 00000 n -0000090234 00000 n -0000090289 00000 n -0000090375 00000 n -0000090400 00000 n -0000090453 00000 n -0000090540 00000 n -0000090590 00000 n -0000090677 00000 n -0000090710 00000 n -0000090829 00000 n -0000090915 00000 n -0000090958 00000 n -0000091045 00000 n -0000091088 00000 n -0000091175 00000 n -0000091216 00000 n -0000091279 00000 n -0000091366 00000 n -0000091424 00000 n -0000091511 00000 n -0000091605 00000 n -0000091691 00000 n -0000091732 00000 n -0000091775 00000 n -0000091861 00000 n -0000091909 00000 n -0000091996 00000 n -0000092037 00000 n -0000092124 00000 n -0000092168 00000 n -0000092255 00000 n -0000092299 00000 n -0000092385 00000 n -0000092442 00000 n -0000092488 00000 n -0000092575 00000 n -0000092621 00000 n -0000092708 00000 n -0000092741 00000 n -0000092790 00000 n -0000092877 00000 n -0000092931 00000 n -0000093018 00000 n -0000093069 00000 n -0000093156 00000 n -0000093207 00000 n -0000093293 00000 n -0000093347 00000 n -0000093434 00000 n -0000093484 00000 n -0000093569 00000 n -0000093634 00000 n -0000093684 00000 n -0000093771 00000 n -0000093821 00000 n -0000093907 00000 n -0000093971 00000 n -0000094058 00000 n -0000094099 00000 n -0000094161 00000 n -0000094248 00000 n -0000094273 00000 n -0000094322 00000 n -0000094409 00000 n -0000094434 00000 n -0000094482 00000 n -0000094567 00000 n -0000094592 00000 n -0000094642 00000 n -0000094728 00000 n -0000094772 00000 n -0000094858 00000 n -0000094902 00000 n -0000094988 00000 n -0000095038 00000 n -0000095124 00000 n -0000095174 00000 n -0000095260 00000 n -0000095309 00000 n -0000095395 00000 n -0000095442 00000 n -0000095528 00000 n -0000095601 00000 n -0000095690 00000 n -0000095776 00000 n -0000095839 00000 n -0000095925 00000 n -0000095958 00000 n -0000096019 00000 n -0000096105 00000 n -0000096130 00000 n -0000096193 00000 n -0000096280 00000 n -0000096343 00000 n -0000096430 00000 n -0000096484 00000 n -0000096571 00000 n -0000096612 00000 n -0000096715 00000 n -0000096819 00000 n -0000096923 00000 n -0000097027 00000 n -0000097131 00000 n -0000097234 00000 n -0000097338 00000 n -0000097442 00000 n -0000097546 00000 n -0000097650 00000 n -0000097754 00000 n -0000097858 00000 n -0000097962 00000 n -0000098066 00000 n -0000098171 00000 n -0000098276 00000 n -0000098381 00000 n -0000098486 00000 n -0000098591 00000 n -0000098695 00000 n -0000098800 00000 n -0000098905 00000 n -0000099010 00000 n -0000099115 00000 n -0000099220 00000 n -0000099325 00000 n -0000099429 00000 n -0000099534 00000 n -0000099639 00000 n -0000099744 00000 n -0000099849 00000 n -0000099954 00000 n -0000100059 00000 n -0000100164 00000 n -0000100269 00000 n -0000100374 00000 n -0000100479 00000 n -0000100584 00000 n -0000100689 00000 n -0000100794 00000 n -0000100899 00000 n -0000101004 00000 n -0000101386 00000 n -0000101442 00000 n -0000101530 00000 n -0000101599 00000 n -0000101687 00000 n -0000101763 00000 n -0000101852 00000 n -0000101923 00000 n -0000102011 00000 n -0000102091 00000 n -0000102180 00000 n -0000102243 00000 n -0000102326 00000 n -0000102414 00000 n -0000102490 00000 n -0000102579 00000 n -0000102653 00000 n -0000102742 00000 n -0000102821 00000 n -0000102910 00000 n -0000102964 00000 n -0000103013 00000 n -0000103102 00000 n -0000103129 00000 n -0000103178 00000 n -0000103267 00000 n -0000103294 00000 n -0000103343 00000 n -0000103432 00000 n -0000103497 00000 n -0000103586 00000 n -0000103642 00000 n -0000103731 00000 n -0000103779 00000 n -0000103868 00000 n -0000103922 00000 n -0000103977 00000 n -0000104066 00000 n -0000104121 00000 n -0000104210 00000 n -0000104246 00000 n -0000104282 00000 n -0000104318 00000 n -0000109465 00000 n -0000109510 00000 n -0000109555 00000 n -0000109600 00000 n -0000109645 00000 n -0000109690 00000 n -0000109735 00000 n -0000109780 00000 n -0000109825 00000 n -0000109870 00000 n -0000109915 00000 n -0000109960 00000 n -0000110005 00000 n -0000110050 00000 n -0000110095 00000 n -0000110140 00000 n -0000110185 00000 n -0000110230 00000 n -0000110275 00000 n -0000110320 00000 n -0000110365 00000 n -0000110410 00000 n -0000110455 00000 n -0000110500 00000 n -0000110545 00000 n -0000110590 00000 n -0000110635 00000 n -0000110680 00000 n -0000110725 00000 n -0000110770 00000 n -0000110815 00000 n -0000110860 00000 n -0000110905 00000 n -0000110950 00000 n -0000110995 00000 n -0000111040 00000 n -0000111085 00000 n -0000111130 00000 n -0000111175 00000 n -0000111220 00000 n -0000111265 00000 n -0000111310 00000 n -0000111355 00000 n -0000111400 00000 n -0000111445 00000 n -0000111490 00000 n -0000111535 00000 n -0000111580 00000 n -0000111625 00000 n -0000111670 00000 n -0000111715 00000 n -0000111760 00000 n -0000111805 00000 n -0000111850 00000 n -0000111895 00000 n -0000111940 00000 n -0000111985 00000 n -0000112030 00000 n -0000112075 00000 n -0000112120 00000 n -0000112165 00000 n -0000112210 00000 n -0000112255 00000 n -0000112300 00000 n -0000112345 00000 n -0000112390 00000 n -0000112435 00000 n -0000112480 00000 n -0000112525 00000 n -0000112570 00000 n -0000112615 00000 n -0000112660 00000 n -0000112705 00000 n -0000112750 00000 n -0000112795 00000 n -0000112840 00000 n -0000112885 00000 n -0000112930 00000 n -0000112975 00000 n -0000113020 00000 n -0000113065 00000 n -0000113110 00000 n -0000113155 00000 n -0000113200 00000 n -0000113245 00000 n -0000113290 00000 n -0000113335 00000 n -0000113380 00000 n -0000113425 00000 n -0000113470 00000 n -0000113515 00000 n -0000113560 00000 n -0000113605 00000 n -0000113650 00000 n -0000113695 00000 n -0000113740 00000 n -0000113785 00000 n -0000113830 00000 n -0000113875 00000 n -0000113920 00000 n -0000113965 00000 n -0000114010 00000 n -0000114055 00000 n -0000114100 00000 n -0000114145 00000 n -0000114190 00000 n -0000114235 00000 n -0000114280 00000 n -0000114325 00000 n -0000114370 00000 n -0000114415 00000 n -0000114460 00000 n -0000114505 00000 n -0000114550 00000 n -0000114595 00000 n -0000114640 00000 n -0000114685 00000 n -0000114730 00000 n -0000114775 00000 n -0000114820 00000 n -0000114865 00000 n -0000114910 00000 n -0000114955 00000 n -0000115000 00000 n -0000115045 00000 n -0000115090 00000 n -0000115135 00000 n -0000115180 00000 n -0000115225 00000 n -0000115270 00000 n -0000115315 00000 n -0000115360 00000 n -0000115405 00000 n -0000115450 00000 n -0000115495 00000 n -0000115540 00000 n -0000115585 00000 n -0000115630 00000 n -0000115675 00000 n -0000115720 00000 n -0000115765 00000 n -0000115810 00000 n -0000115855 00000 n -0000115900 00000 n -0000115945 00000 n -0000115990 00000 n -0000116035 00000 n -0000116080 00000 n -0000116125 00000 n -0000116170 00000 n -0000116215 00000 n -0000116260 00000 n -0000116305 00000 n -0000116350 00000 n -0000116395 00000 n -0000116440 00000 n -0000116485 00000 n -0000116530 00000 n -0000116575 00000 n -0000116620 00000 n -0000116665 00000 n -0000116710 00000 n -0000116755 00000 n -0000116800 00000 n -0000116845 00000 n -0000116890 00000 n -0000116935 00000 n -0000116980 00000 n -0000117025 00000 n -0000117070 00000 n -0000117115 00000 n -0000117160 00000 n -0000117205 00000 n -0000117250 00000 n -0000117295 00000 n -0000117340 00000 n -0000117385 00000 n -0000117430 00000 n -0000117475 00000 n -0000117520 00000 n -0000117565 00000 n -0000117610 00000 n -0000117655 00000 n -0000117700 00000 n -0000117745 00000 n -0000117790 00000 n -0000117835 00000 n -0000117880 00000 n -0000117925 00000 n -0000117970 00000 n -0000118015 00000 n -0000118060 00000 n -0000118105 00000 n -0000118150 00000 n -0000118195 00000 n -0000118240 00000 n -0000118285 00000 n -0000118330 00000 n -0000118375 00000 n -0000118420 00000 n -0000118465 00000 n -0000118510 00000 n -0000118555 00000 n -0000118600 00000 n -0000118645 00000 n -0000118690 00000 n -0000118735 00000 n -0000118780 00000 n -0000118825 00000 n -0000118870 00000 n -0000118915 00000 n -0000118960 00000 n -0000119005 00000 n -0000119050 00000 n -0000119095 00000 n -0000119140 00000 n -0000119185 00000 n -0000119230 00000 n -0000119275 00000 n -0000119320 00000 n -0000119365 00000 n -0000119410 00000 n -0000119455 00000 n -0000119500 00000 n -0000119545 00000 n -0000119590 00000 n -0000119635 00000 n -0000119680 00000 n -0000119725 00000 n -0000119770 00000 n -0000119815 00000 n -0000119860 00000 n -0000119905 00000 n -0000119950 00000 n -0000119995 00000 n -0000120040 00000 n -0000120085 00000 n -0000120130 00000 n -0000120175 00000 n -0000120220 00000 n -0000120265 00000 n -0000120310 00000 n -0000120355 00000 n -0000120400 00000 n -0000120445 00000 n -0000120490 00000 n -0000120535 00000 n -0000120580 00000 n -0000120625 00000 n -0000120670 00000 n -0000120715 00000 n -0000120760 00000 n -0000120805 00000 n -0000120850 00000 n -0000120895 00000 n -0000120940 00000 n -0000120985 00000 n -0000121030 00000 n -0000121075 00000 n -0000121120 00000 n -0000121165 00000 n -0000121210 00000 n -0000121255 00000 n -0000121300 00000 n -0000121345 00000 n -0000121390 00000 n -0000121435 00000 n -0000121480 00000 n -0000121525 00000 n -0000121570 00000 n -0000121615 00000 n -0000121660 00000 n -0000121705 00000 n -0000121750 00000 n -0000121795 00000 n -0000121840 00000 n -0000121885 00000 n -0000121930 00000 n -0000121975 00000 n -0000122020 00000 n -0000122065 00000 n -0000122110 00000 n -0000122155 00000 n -0000122200 00000 n -0000122245 00000 n -0000122290 00000 n -0000122335 00000 n -0000122380 00000 n -0000122425 00000 n -0000122470 00000 n -0000122515 00000 n -0000122560 00000 n -0000122605 00000 n -0000122650 00000 n -0000122695 00000 n -0000122740 00000 n -0000122785 00000 n -0000122830 00000 n -0000122875 00000 n -0000122920 00000 n -0000122965 00000 n -0000124382 00000 n -0000124543 00000 n -0000124712 00000 n -0000124905 00000 n -0000128845 00000 n -0000129039 00000 n -0000133591 00000 n -0000133785 00000 n -0000138337 00000 n -0000138531 00000 n -0000142593 00000 n -0000142787 00000 n -0000146401 00000 n -0000146595 00000 n -0000150431 00000 n -0000150625 00000 n -0000151714 00000 n -0000151875 00000 n -0000152109 00000 n -0000152313 00000 n -0000155026 00000 n -0000155201 00000 n -0000158846 00000 n -0000159021 00000 n -0000161306 00000 n -0000161481 00000 n -0000162406 00000 n -0000162567 00000 n -0000162755 00000 n -0000162959 00000 n -0000165774 00000 n -0000165949 00000 n -0000166560 00000 n -0000166772 00000 n -0000167933 00000 n -0000168121 00000 n -0000169583 00000 n -0000169780 00000 n -0000171150 00000 n -0000171365 00000 n -0000172601 00000 n -0000172795 00000 n -0000174374 00000 n -0000174544 00000 n -0000176360 00000 n -0000176511 00000 n -0000176752 00000 n -0000176931 00000 n -0000178637 00000 n -0000178825 00000 n -0000180580 00000 n -0000180768 00000 n -0000182419 00000 n -0000182588 00000 n -0000183308 00000 n -0000183537 00000 n -0000185315 00000 n -0000185521 00000 n -0000187106 00000 n -0000187319 00000 n -0000189112 00000 n -0000189334 00000 n -0000191497 00000 n -0000191700 00000 n -0000193251 00000 n -0000193464 00000 n -0000194891 00000 n -0000195113 00000 n -0000196884 00000 n -0000197106 00000 n -0000198986 00000 n -0000199192 00000 n -0000200390 00000 n -0000200610 00000 n -0000202128 00000 n -0000202316 00000 n -0000203434 00000 n -0000203595 00000 n -0000203785 00000 n -0000203989 00000 n -0000207035 00000 n -0000207205 00000 n -0000209164 00000 n -0000209324 00000 n -0000210004 00000 n -0000210249 00000 n -0000212043 00000 n -0000212256 00000 n -0000213758 00000 n -0000213980 00000 n -0000215808 00000 n -0000216061 00000 n -0000217745 00000 n -0000217952 00000 n -0000219645 00000 n -0000219861 00000 n -0000221794 00000 n -0000222016 00000 n -0000224029 00000 n -0000224241 00000 n -0000226327 00000 n -0000226530 00000 n -0000228794 00000 n -0000229048 00000 n -0000231276 00000 n -0000231506 00000 n -0000233547 00000 n -0000233778 00000 n -0000235351 00000 n -0000235562 00000 n -0000237584 00000 n -0000237804 00000 n -0000239854 00000 n -0000240096 00000 n -0000242032 00000 n -0000242261 00000 n -0000243981 00000 n -0000244141 00000 n -0000245133 00000 n -0000245327 00000 n -0000246906 00000 n -0000247086 00000 n -0000248827 00000 n -0000249016 00000 n -0000250217 00000 n -0000250396 00000 n -0000251485 00000 n -0000251682 00000 n -0000253053 00000 n -0000253232 00000 n -0000253957 00000 n -0000254187 00000 n -0000255664 00000 n -0000255867 00000 n -0000257676 00000 n -0000257860 00000 n -0000258395 00000 n -0000258556 00000 n -0000258747 00000 n -0000258960 00000 n -0000261909 00000 n -0000262084 00000 n -0000264566 00000 n -0000264741 00000 n -0000266021 00000 n -0000266219 00000 n -0000267581 00000 n -0000267779 00000 n -0000269465 00000 n -0000269653 00000 n -0000271334 00000 n -0000271513 00000 n -0000273615 00000 n -0000273794 00000 n -0000275567 00000 n -0000275746 00000 n -0000277427 00000 n -0000277615 00000 n -0000279468 00000 n -0000279680 00000 n -0000281715 00000 n -0000281928 00000 n -0000283479 00000 n -0000283668 00000 n -0000284942 00000 n -0000285148 00000 n -0000286922 00000 n +0000060435 00000 n +0000060476 00000 n +0000060563 00000 n +0000060607 00000 n +0000060694 00000 n +0000060739 00000 n +0000060826 00000 n +0000060870 00000 n +0000060957 00000 n +0000061001 00000 n +0000061088 00000 n +0000061130 00000 n +0000061217 00000 n +0000061265 00000 n +0000061352 00000 n +0000061425 00000 n +0000061473 00000 n +0000061559 00000 n +0000061584 00000 n +0000061637 00000 n +0000061723 00000 n +0000061748 00000 n +0000061851 00000 n +0000061954 00000 n +0000062058 00000 n +0000062162 00000 n +0000062266 00000 n +0000062370 00000 n +0000062474 00000 n +0000062578 00000 n +0000062682 00000 n +0000062786 00000 n +0000062890 00000 n +0000062994 00000 n +0000063098 00000 n +0000063202 00000 n +0000063306 00000 n +0000063410 00000 n +0000063513 00000 n +0000063617 00000 n +0000063721 00000 n +0000063825 00000 n +0000063929 00000 n +0000064033 00000 n +0000064137 00000 n +0000064241 00000 n +0000064345 00000 n +0000064449 00000 n +0000064552 00000 n +0000064656 00000 n +0000064760 00000 n +0000064864 00000 n +0000064968 00000 n +0000065072 00000 n +0000065176 00000 n +0000065280 00000 n +0000065384 00000 n +0000065488 00000 n +0000065591 00000 n +0000065695 00000 n +0000065799 00000 n +0000065903 00000 n +0000066240 00000 n +0000066288 00000 n +0000066375 00000 n +0000066423 00000 n +0000066510 00000 n +0000066560 00000 n +0000066647 00000 n +0000066695 00000 n +0000066782 00000 n +0000066831 00000 n +0000066879 00000 n +0000066966 00000 n +0000067014 00000 n +0000067099 00000 n +0000067144 00000 n +0000067230 00000 n +0000067273 00000 n +0000067359 00000 n +0000067400 00000 n +0000067486 00000 n +0000067535 00000 n +0000067621 00000 n +0000067667 00000 n +0000067753 00000 n +0000067798 00000 n +0000067884 00000 n +0000067936 00000 n +0000068022 00000 n +0000068072 00000 n +0000068158 00000 n +0000068204 00000 n +0000068290 00000 n +0000068333 00000 n +0000068419 00000 n +0000068463 00000 n +0000068549 00000 n +0000068592 00000 n +0000068678 00000 n +0000068723 00000 n +0000068809 00000 n +0000068847 00000 n +0000068933 00000 n +0000068975 00000 n +0000069061 00000 n +0000069104 00000 n +0000069190 00000 n +0000069228 00000 n +0000069314 00000 n +0000069356 00000 n +0000069442 00000 n +0000069486 00000 n +0000069572 00000 n +0000069619 00000 n +0000069705 00000 n +0000069753 00000 n +0000069838 00000 n +0000070039 00000 n +0000070089 00000 n +0000070176 00000 n +0000070226 00000 n +0000070312 00000 n +0000070345 00000 n +0000070394 00000 n +0000070480 00000 n +0000070527 00000 n +0000070614 00000 n +0000070647 00000 n +0000070762 00000 n +0000070849 00000 n +0000070931 00000 n +0000071018 00000 n +0000071103 00000 n +0000071190 00000 n +0000071231 00000 n +0000071286 00000 n +0000071373 00000 n +0000071429 00000 n +0000071516 00000 n +0000071549 00000 n +0000071597 00000 n +0000071684 00000 n +0000071758 00000 n +0000071845 00000 n +0000071913 00000 n +0000072000 00000 n +0000072054 00000 n +0000072141 00000 n +0000072209 00000 n +0000072296 00000 n +0000072370 00000 n +0000072457 00000 n +0000072505 00000 n +0000072592 00000 n +0000072649 00000 n +0000072736 00000 n +0000072817 00000 n +0000072872 00000 n +0000072959 00000 n +0000073040 00000 n +0000073127 00000 n +0000073160 00000 n +0000073213 00000 n +0000073300 00000 n +0000073325 00000 n +0000073373 00000 n +0000073460 00000 n +0000073502 00000 n +0000073589 00000 n +0000073632 00000 n +0000073719 00000 n +0000073769 00000 n +0000073856 00000 n +0000073904 00000 n +0000073991 00000 n +0000074048 00000 n +0000074091 00000 n +0000074178 00000 n +0000074232 00000 n +0000074319 00000 n +0000074364 00000 n +0000074451 00000 n +0000074492 00000 n +0000074549 00000 n +0000074636 00000 n +0000074732 00000 n +0000074818 00000 n +0000074851 00000 n +0000074954 00000 n +0000075058 00000 n +0000075162 00000 n +0000075266 00000 n +0000075370 00000 n +0000075474 00000 n +0000075578 00000 n +0000075682 00000 n +0000075786 00000 n +0000075890 00000 n +0000075994 00000 n +0000076098 00000 n +0000076202 00000 n +0000076306 00000 n +0000076410 00000 n +0000076514 00000 n +0000076618 00000 n +0000076722 00000 n +0000076826 00000 n +0000076929 00000 n +0000077033 00000 n +0000077137 00000 n +0000077241 00000 n +0000077345 00000 n +0000077449 00000 n +0000077553 00000 n +0000077657 00000 n +0000077761 00000 n +0000077865 00000 n +0000077968 00000 n +0000078072 00000 n +0000078176 00000 n +0000078280 00000 n +0000078383 00000 n +0000078487 00000 n +0000078591 00000 n +0000078694 00000 n +0000078798 00000 n +0000078902 00000 n +0000079006 00000 n +0000079110 00000 n +0000079213 00000 n +0000079315 00000 n +0000079417 00000 n +0000079786 00000 n +0000079890 00000 n +0000079994 00000 n +0000080098 00000 n +0000080202 00000 n +0000080306 00000 n +0000080410 00000 n +0000080514 00000 n +0000080618 00000 n +0000080722 00000 n +0000080826 00000 n +0000080930 00000 n +0000081034 00000 n +0000081138 00000 n +0000081242 00000 n +0000081346 00000 n +0000081449 00000 n +0000081553 00000 n +0000081657 00000 n +0000081761 00000 n +0000081865 00000 n +0000081969 00000 n +0000082073 00000 n +0000082177 00000 n +0000082281 00000 n +0000082385 00000 n +0000082489 00000 n +0000082593 00000 n +0000082697 00000 n +0000082801 00000 n +0000082905 00000 n +0000083009 00000 n +0000083113 00000 n +0000083217 00000 n +0000083320 00000 n +0000083424 00000 n +0000083528 00000 n +0000083632 00000 n +0000083736 00000 n +0000083840 00000 n +0000083944 00000 n +0000084048 00000 n +0000084152 00000 n +0000084256 00000 n +0000084360 00000 n +0000084464 00000 n +0000084568 00000 n +0000084671 00000 n +0000084775 00000 n +0000084878 00000 n +0000084980 00000 n +0000085082 00000 n +0000085507 00000 n +0000085611 00000 n +0000085715 00000 n +0000085819 00000 n +0000085923 00000 n +0000086026 00000 n +0000086129 00000 n +0000086233 00000 n +0000086337 00000 n +0000086441 00000 n +0000086545 00000 n +0000086649 00000 n +0000086753 00000 n +0000086857 00000 n +0000086961 00000 n +0000087065 00000 n +0000087169 00000 n +0000087272 00000 n +0000087376 00000 n +0000087480 00000 n +0000087584 00000 n +0000087688 00000 n +0000087792 00000 n +0000087896 00000 n +0000088000 00000 n +0000088103 00000 n +0000088207 00000 n +0000088311 00000 n +0000088415 00000 n +0000088519 00000 n +0000088623 00000 n +0000088727 00000 n +0000088992 00000 n +0000089040 00000 n +0000089127 00000 n +0000089174 00000 n +0000089260 00000 n +0000089307 00000 n +0000089393 00000 n +0000089434 00000 n +0000089479 00000 n +0000089566 00000 n +0000089611 00000 n +0000089697 00000 n +0000089730 00000 n +0000089776 00000 n +0000089861 00000 n +0000089907 00000 n +0000089990 00000 n +0000090023 00000 n +0000090067 00000 n +0000090154 00000 n +0000090205 00000 n +0000090292 00000 n +0000090341 00000 n +0000090428 00000 n +0000090476 00000 n +0000090562 00000 n +0000090611 00000 n +0000090666 00000 n +0000090752 00000 n +0000090777 00000 n +0000090830 00000 n +0000090917 00000 n +0000090967 00000 n +0000091054 00000 n +0000091087 00000 n +0000091206 00000 n +0000091292 00000 n +0000091335 00000 n +0000091422 00000 n +0000091465 00000 n +0000091552 00000 n +0000091593 00000 n +0000091656 00000 n +0000091743 00000 n +0000091801 00000 n +0000091888 00000 n +0000091982 00000 n +0000092068 00000 n +0000092109 00000 n +0000092152 00000 n +0000092238 00000 n +0000092286 00000 n +0000092373 00000 n +0000092414 00000 n +0000092501 00000 n +0000092545 00000 n +0000092632 00000 n +0000092676 00000 n +0000092762 00000 n +0000092819 00000 n +0000092865 00000 n +0000092952 00000 n +0000092977 00000 n +0000093026 00000 n +0000093113 00000 n +0000093167 00000 n +0000093254 00000 n +0000093305 00000 n +0000093392 00000 n +0000093446 00000 n +0000093533 00000 n +0000093583 00000 n +0000093668 00000 n +0000093725 00000 n +0000093775 00000 n +0000093862 00000 n +0000093926 00000 n +0000094013 00000 n +0000094046 00000 n +0000094108 00000 n +0000094195 00000 n +0000094220 00000 n +0000094269 00000 n +0000094356 00000 n +0000094381 00000 n +0000094429 00000 n +0000094514 00000 n +0000094539 00000 n +0000094589 00000 n +0000094675 00000 n +0000094719 00000 n +0000094805 00000 n +0000094849 00000 n +0000094935 00000 n +0000094985 00000 n +0000095071 00000 n +0000095121 00000 n +0000095207 00000 n +0000095256 00000 n +0000095342 00000 n +0000095389 00000 n +0000095475 00000 n +0000095548 00000 n +0000095637 00000 n +0000095723 00000 n +0000095786 00000 n +0000095872 00000 n +0000095905 00000 n +0000095966 00000 n +0000096052 00000 n +0000096077 00000 n +0000096180 00000 n +0000096284 00000 n +0000096388 00000 n +0000096492 00000 n +0000096596 00000 n +0000096700 00000 n +0000096804 00000 n +0000096907 00000 n +0000097011 00000 n +0000097115 00000 n +0000097219 00000 n +0000097323 00000 n +0000097427 00000 n +0000097531 00000 n +0000097635 00000 n +0000097739 00000 n +0000097843 00000 n +0000097947 00000 n +0000098051 00000 n +0000098155 00000 n +0000098259 00000 n +0000098363 00000 n +0000098466 00000 n +0000098570 00000 n +0000098674 00000 n +0000098779 00000 n +0000098884 00000 n +0000098989 00000 n +0000099094 00000 n +0000099199 00000 n +0000099304 00000 n +0000099408 00000 n +0000099513 00000 n +0000099618 00000 n +0000099723 00000 n +0000099828 00000 n +0000099933 00000 n +0000100038 00000 n +0000100142 00000 n +0000100247 00000 n +0000100352 00000 n +0000100457 00000 n +0000100562 00000 n +0000100667 00000 n +0000100771 00000 n +0000100874 00000 n +0000100977 00000 n +0000101393 00000 n +0000101498 00000 n +0000101603 00000 n +0000101708 00000 n +0000101813 00000 n +0000101918 00000 n +0000102023 00000 n +0000102128 00000 n +0000102209 00000 n +0000102265 00000 n +0000102353 00000 n +0000102422 00000 n +0000102510 00000 n +0000102586 00000 n +0000102675 00000 n +0000102746 00000 n +0000102834 00000 n +0000102914 00000 n +0000103003 00000 n +0000103066 00000 n +0000103149 00000 n +0000103237 00000 n +0000103313 00000 n +0000103402 00000 n +0000103476 00000 n +0000103565 00000 n +0000103644 00000 n +0000103733 00000 n +0000103787 00000 n +0000103836 00000 n +0000103925 00000 n +0000103952 00000 n +0000104001 00000 n +0000104090 00000 n +0000104117 00000 n +0000104167 00000 n +0000104256 00000 n +0000104320 00000 n +0000104409 00000 n +0000104473 00000 n +0000104562 00000 n +0000104617 00000 n +0000104706 00000 n +0000104760 00000 n +0000104829 00000 n +0000104917 00000 n +0000104973 00000 n +0000105062 00000 n +0000105098 00000 n +0000105147 00000 n +0000105236 00000 n +0000105301 00000 n +0000105390 00000 n +0000105446 00000 n +0000105535 00000 n +0000105583 00000 n +0000105672 00000 n +0000105726 00000 n +0000105781 00000 n +0000105870 00000 n +0000105925 00000 n +0000106014 00000 n +0000106050 00000 n +0000106086 00000 n +0000106122 00000 n +0000111433 00000 n +0000111478 00000 n +0000111523 00000 n +0000111568 00000 n +0000111613 00000 n +0000111658 00000 n +0000111703 00000 n +0000111748 00000 n +0000111793 00000 n +0000111838 00000 n +0000111883 00000 n +0000111928 00000 n +0000111973 00000 n +0000112018 00000 n +0000112063 00000 n +0000112108 00000 n +0000112153 00000 n +0000112198 00000 n +0000112243 00000 n +0000112288 00000 n +0000112333 00000 n +0000112378 00000 n +0000112423 00000 n +0000112468 00000 n +0000112513 00000 n +0000112558 00000 n +0000112603 00000 n +0000112648 00000 n +0000112693 00000 n +0000112738 00000 n +0000112783 00000 n +0000112828 00000 n +0000112873 00000 n +0000112918 00000 n +0000112963 00000 n +0000113008 00000 n +0000113053 00000 n +0000113098 00000 n +0000113143 00000 n +0000113188 00000 n +0000113233 00000 n +0000113278 00000 n +0000113323 00000 n +0000113368 00000 n +0000113413 00000 n +0000113458 00000 n +0000113503 00000 n +0000113548 00000 n +0000113593 00000 n +0000113638 00000 n +0000113683 00000 n +0000113728 00000 n +0000113773 00000 n +0000113818 00000 n +0000113863 00000 n +0000113908 00000 n +0000113953 00000 n +0000113998 00000 n +0000114043 00000 n +0000114088 00000 n +0000114133 00000 n +0000114178 00000 n +0000114223 00000 n +0000114268 00000 n +0000114313 00000 n +0000114358 00000 n +0000114403 00000 n +0000114448 00000 n +0000114493 00000 n +0000114538 00000 n +0000114583 00000 n +0000114628 00000 n +0000114673 00000 n +0000114718 00000 n +0000114763 00000 n +0000114808 00000 n +0000114853 00000 n +0000114898 00000 n +0000114943 00000 n +0000114988 00000 n +0000115033 00000 n +0000115078 00000 n +0000115123 00000 n +0000115168 00000 n +0000115213 00000 n +0000115258 00000 n +0000115303 00000 n +0000115348 00000 n +0000115393 00000 n +0000115438 00000 n +0000115483 00000 n +0000115528 00000 n +0000115573 00000 n +0000115618 00000 n +0000115663 00000 n +0000115708 00000 n +0000115753 00000 n +0000115798 00000 n +0000115843 00000 n +0000115888 00000 n +0000115933 00000 n +0000115978 00000 n +0000116023 00000 n +0000116068 00000 n +0000116113 00000 n +0000116158 00000 n +0000116203 00000 n +0000116248 00000 n +0000116293 00000 n +0000116338 00000 n +0000116383 00000 n +0000116428 00000 n +0000116473 00000 n +0000116518 00000 n +0000116563 00000 n +0000116608 00000 n +0000116653 00000 n +0000116698 00000 n +0000116743 00000 n +0000116788 00000 n +0000116833 00000 n +0000116878 00000 n +0000116923 00000 n +0000116968 00000 n +0000117013 00000 n +0000117058 00000 n +0000117103 00000 n +0000117148 00000 n +0000117193 00000 n +0000117238 00000 n +0000117283 00000 n +0000117328 00000 n +0000117373 00000 n +0000117418 00000 n +0000117463 00000 n +0000117508 00000 n +0000117553 00000 n +0000117598 00000 n +0000117643 00000 n +0000117688 00000 n +0000117733 00000 n +0000117778 00000 n +0000117823 00000 n +0000117868 00000 n +0000117913 00000 n +0000117958 00000 n +0000118003 00000 n +0000118048 00000 n +0000118093 00000 n +0000118138 00000 n +0000118183 00000 n +0000118228 00000 n +0000118273 00000 n +0000118318 00000 n +0000118363 00000 n +0000118408 00000 n +0000118453 00000 n +0000118498 00000 n +0000118543 00000 n +0000118588 00000 n +0000118633 00000 n +0000118678 00000 n +0000118723 00000 n +0000118768 00000 n +0000118813 00000 n +0000118858 00000 n +0000118903 00000 n +0000118948 00000 n +0000118993 00000 n +0000119038 00000 n +0000119083 00000 n +0000119128 00000 n +0000119173 00000 n +0000119218 00000 n +0000119263 00000 n +0000119308 00000 n +0000119353 00000 n +0000119398 00000 n +0000119443 00000 n +0000119488 00000 n +0000119533 00000 n +0000119578 00000 n +0000119623 00000 n +0000119668 00000 n +0000119713 00000 n +0000119758 00000 n +0000119803 00000 n +0000119848 00000 n +0000119893 00000 n +0000119938 00000 n +0000119983 00000 n +0000120028 00000 n +0000120073 00000 n +0000120118 00000 n +0000120163 00000 n +0000120208 00000 n +0000120253 00000 n +0000120298 00000 n +0000120343 00000 n +0000120388 00000 n +0000120433 00000 n +0000120478 00000 n +0000120523 00000 n +0000120568 00000 n +0000120613 00000 n +0000120658 00000 n +0000120703 00000 n +0000120748 00000 n +0000120793 00000 n +0000120838 00000 n +0000120883 00000 n +0000120928 00000 n +0000120973 00000 n +0000121018 00000 n +0000121063 00000 n +0000121108 00000 n +0000121153 00000 n +0000121198 00000 n +0000121243 00000 n +0000121288 00000 n +0000121333 00000 n +0000121378 00000 n +0000121423 00000 n +0000121468 00000 n +0000121513 00000 n +0000121558 00000 n +0000121603 00000 n +0000121648 00000 n +0000121693 00000 n +0000121738 00000 n +0000121783 00000 n +0000121828 00000 n +0000121873 00000 n +0000121918 00000 n +0000121963 00000 n +0000122008 00000 n +0000122053 00000 n +0000122098 00000 n +0000122143 00000 n +0000122188 00000 n +0000122233 00000 n +0000122278 00000 n +0000122323 00000 n +0000122368 00000 n +0000122413 00000 n +0000122458 00000 n +0000122503 00000 n +0000122548 00000 n +0000122593 00000 n +0000122638 00000 n +0000122683 00000 n +0000122728 00000 n +0000122773 00000 n +0000122818 00000 n +0000122863 00000 n +0000122908 00000 n +0000122953 00000 n +0000122998 00000 n +0000123043 00000 n +0000123088 00000 n +0000123133 00000 n +0000123178 00000 n +0000123223 00000 n +0000123268 00000 n +0000123313 00000 n +0000123358 00000 n +0000123403 00000 n +0000123448 00000 n +0000123493 00000 n +0000123538 00000 n +0000123583 00000 n +0000123628 00000 n +0000123673 00000 n +0000123718 00000 n +0000123763 00000 n +0000123808 00000 n +0000123853 00000 n +0000123898 00000 n +0000123943 00000 n +0000123988 00000 n +0000124033 00000 n +0000124078 00000 n +0000124123 00000 n +0000124168 00000 n +0000124213 00000 n +0000124258 00000 n +0000124303 00000 n +0000124348 00000 n +0000124393 00000 n +0000124438 00000 n +0000124483 00000 n +0000124528 00000 n +0000124573 00000 n +0000124618 00000 n +0000124663 00000 n +0000124708 00000 n +0000124753 00000 n +0000124798 00000 n +0000124843 00000 n +0000124888 00000 n +0000124933 00000 n +0000124978 00000 n +0000125023 00000 n +0000125068 00000 n +0000125113 00000 n +0000125158 00000 n +0000125203 00000 n +0000125248 00000 n +0000125293 00000 n +0000125338 00000 n +0000126782 00000 n +0000126943 00000 n +0000127112 00000 n +0000127305 00000 n +0000131199 00000 n +0000131393 00000 n +0000135922 00000 n +0000136116 00000 n +0000140407 00000 n +0000140601 00000 n +0000144435 00000 n +0000144629 00000 n +0000148097 00000 n +0000148291 00000 n +0000152503 00000 n +0000152697 00000 n +0000154093 00000 n +0000154254 00000 n +0000154488 00000 n +0000154691 00000 n +0000157410 00000 n +0000157585 00000 n +0000161151 00000 n +0000161326 00000 n +0000163564 00000 n +0000163739 00000 n +0000164975 00000 n +0000165136 00000 n +0000165324 00000 n +0000165527 00000 n +0000168158 00000 n +0000168333 00000 n +0000168598 00000 n +0000168801 00000 n +0000170235 00000 n +0000170452 00000 n +0000171906 00000 n +0000172103 00000 n +0000173955 00000 n +0000174115 00000 n +0000174610 00000 n +0000174780 00000 n +0000176520 00000 n +0000176708 00000 n +0000178197 00000 n +0000178376 00000 n +0000180352 00000 n +0000180531 00000 n +0000181473 00000 n +0000181702 00000 n +0000183480 00000 n +0000183686 00000 n +0000185271 00000 n +0000185484 00000 n +0000187277 00000 n +0000187500 00000 n +0000189669 00000 n +0000189872 00000 n +0000191423 00000 n +0000191637 00000 n +0000193063 00000 n +0000193285 00000 n +0000195056 00000 n +0000195279 00000 n +0000197158 00000 n +0000197365 00000 n +0000198564 00000 n +0000198784 00000 n +0000200302 00000 n +0000200490 00000 n +0000201609 00000 n +0000201770 00000 n +0000201960 00000 n +0000202163 00000 n +0000205209 00000 n +0000205379 00000 n +0000207338 00000 n +0000207498 00000 n +0000208178 00000 n +0000208423 00000 n +0000210216 00000 n +0000210430 00000 n +0000211931 00000 n +0000212154 00000 n +0000213981 00000 n +0000214236 00000 n +0000215927 00000 n +0000216134 00000 n +0000217827 00000 n +0000218044 00000 n +0000219974 00000 n +0000220196 00000 n +0000222209 00000 n +0000222421 00000 n +0000224507 00000 n +0000224710 00000 n +0000226974 00000 n +0000227228 00000 n +0000229455 00000 n +0000229685 00000 n +0000231726 00000 n +0000231957 00000 n +0000233530 00000 n +0000233741 00000 n +0000235763 00000 n +0000235983 00000 n +0000238031 00000 n +0000238273 00000 n +0000240209 00000 n +0000240438 00000 n +0000242158 00000 n +0000242318 00000 n +0000243311 00000 n +0000243505 00000 n +0000245084 00000 n +0000245264 00000 n +0000247005 00000 n +0000247194 00000 n +0000248395 00000 n +0000248574 00000 n +0000249663 00000 n +0000249860 00000 n +0000251231 00000 n +0000251410 00000 n +0000252135 00000 n +0000252367 00000 n +0000253842 00000 n +0000254045 00000 n +0000255854 00000 n +0000256038 00000 n +0000256573 00000 n +0000256734 00000 n +0000256925 00000 n +0000257137 00000 n +0000260086 00000 n +0000260261 00000 n +0000262743 00000 n +0000262918 00000 n +0000264264 00000 n +0000264462 00000 n +0000265824 00000 n +0000266022 00000 n +0000267708 00000 n +0000267896 00000 n +0000269577 00000 n +0000269756 00000 n +0000271858 00000 n +0000272037 00000 n +0000273810 00000 n +0000273989 00000 n +0000275670 00000 n +0000275859 00000 n +0000277706 00000 n +0000277919 00000 n +0000279950 00000 n +0000280163 00000 n +0000281714 00000 n +0000281903 00000 n +0000283177 00000 n +0000283384 00000 n +0000285159 00000 n +0000285357 00000 n 0000287119 00000 n -0000288881 00000 n -0000289093 00000 n -0000290796 00000 n -0000290998 00000 n -0000292377 00000 n -0000292565 00000 n -0000293456 00000 n -0000293644 00000 n -0000295169 00000 n -0000295372 00000 n -0000297081 00000 n -0000297284 00000 n -0000298101 00000 n -0000298313 00000 n -0000299791 00000 n -0000299971 00000 n -0000300733 00000 n -0000300996 00000 n -0000302719 00000 n -0000302964 00000 n -0000304855 00000 n -0000305077 00000 n -0000306871 00000 n -0000307093 00000 n -0000308972 00000 n -0000309151 00000 n -0000310374 00000 n -0000310605 00000 n -0000312271 00000 n -0000312450 00000 n -0000314031 00000 n -0000314210 00000 n -0000315757 00000 n -0000315936 00000 n -0000317439 00000 n -0000317618 00000 n -0000319284 00000 n -0000319454 00000 n -0000320199 00000 n -0000320388 00000 n -0000322081 00000 n -0000322260 00000 n -0000324005 00000 n -0000324193 00000 n -0000326028 00000 n -0000326222 00000 n -0000328079 00000 n -0000328310 00000 n -0000330425 00000 n -0000330637 00000 n -0000332073 00000 n -0000332285 00000 n -0000333649 00000 n -0000333855 00000 n -0000335128 00000 n -0000335307 00000 n -0000336327 00000 n -0000336515 00000 n -0000337983 00000 n -0000338171 00000 n -0000339570 00000 n -0000339739 00000 n -0000340573 00000 n -0000340753 00000 n -0000341814 00000 n -0000341984 00000 n -0000343662 00000 n -0000343841 00000 n -0000345654 00000 n -0000345823 00000 n -0000347662 00000 n -0000347831 00000 n -0000348819 00000 n -0000348998 00000 n -0000350645 00000 n -0000350833 00000 n -0000352324 00000 n -0000352512 00000 n -0000353934 00000 n -0000354104 00000 n -0000355770 00000 n -0000355940 00000 n -0000356497 00000 n -0000356694 00000 n -0000357906 00000 n -0000358109 00000 n -0000359454 00000 n -0000359639 00000 n -0000360115 00000 n -0000360318 00000 n -0000361851 00000 n -0000362029 00000 n -0000362697 00000 n -0000362885 00000 n -0000364373 00000 n -0000364543 00000 n -0000366050 00000 n -0000366220 00000 n -0000367617 00000 n -0000367787 00000 n -0000369337 00000 n -0000369506 00000 n -0000370469 00000 n -0000370690 00000 n -0000372308 00000 n -0000372551 00000 n -0000374120 00000 n -0000374290 00000 n -0000375365 00000 n -0000375561 00000 n -0000377747 00000 n -0000377926 00000 n -0000379453 00000 n -0000379641 00000 n -0000380609 00000 n -0000380805 00000 n -0000382535 00000 n -0000382748 00000 n -0000384429 00000 n -0000384624 00000 n -0000386375 00000 n -0000386588 00000 n -0000387853 00000 n -0000388057 00000 n -0000389795 00000 n -0000389983 00000 n -0000391726 00000 n -0000391905 00000 n -0000393304 00000 n -0000393483 00000 n -0000395181 00000 n -0000395360 00000 n -0000396842 00000 n -0000397021 00000 n -0000398807 00000 n -0000399011 00000 n -0000400662 00000 n -0000400721 00000 n -0000400824 00000 n -0000400989 00000 n -0000401071 00000 n -0000401179 00000 n -0000401302 00000 n -0000401414 00000 n -0000401593 00000 n -0000401702 00000 n -0000401828 00000 n -0000401955 00000 n -0000402094 00000 n -0000402234 00000 n -0000402403 00000 n -0000402520 00000 n -0000402649 00000 n -0000402801 00000 n -0000402941 00000 n -0000403119 00000 n -0000403275 00000 n -0000403388 00000 n -0000403505 00000 n -0000403640 00000 n -0000403781 00000 n -0000403896 00000 n -0000404007 00000 n -0000404216 00000 n -0000404317 00000 n -0000404460 00000 n -0000404606 00000 n -0000404722 00000 n -0000404889 00000 n -0000405001 00000 n -0000405175 00000 n -0000405278 00000 n -0000405451 00000 n -0000405572 00000 n -0000405702 00000 n -0000405828 00000 n -0000405943 00000 n -0000406051 00000 n -0000406198 00000 n -0000406303 00000 n -0000406422 00000 n -0000406551 00000 n -0000406710 00000 n -0000406844 00000 n -0000406981 00000 n -0000407113 00000 n -0000407262 00000 n -0000407394 00000 n -0000407542 00000 n -0000407643 00000 n -0000407771 00000 n -0000407889 00000 n -0000408043 00000 n -0000408174 00000 n -0000408320 00000 n -0000408421 00000 n -0000408519 00000 n -0000408643 00000 n -0000408755 00000 n -0000408927 00000 n -0000409125 00000 n -0000409236 00000 n -0000409351 00000 n -0000409495 00000 n -0000409703 00000 n -0000409837 00000 n -0000409991 00000 n -0000410116 00000 n -0000410247 00000 n -0000410380 00000 n -0000410511 00000 n -0000410686 00000 n -0000410821 00000 n -0000410974 00000 n -0000411119 00000 n -0000411344 00000 n -0000411455 00000 n -0000411570 00000 n -0000411763 00000 n -0000411906 00000 n -0000412022 00000 n -0000412180 00000 n -0000412337 00000 n -0000412468 00000 n -0000412589 00000 n -0000412766 00000 n -0000412900 00000 n -0000413048 00000 n -0000413166 00000 n -0000413296 00000 n -0000413466 00000 n -0000413560 00000 n -0000413687 00000 n -0000413814 00000 n -0000413910 00000 n -0000414096 00000 n -0000414222 00000 n -0000414357 00000 n -0000414490 00000 n -0000414617 00000 n -0000414729 00000 n -0000414920 00000 n -0000415017 00000 n -0000415202 00000 n -0000415305 00000 n -0000415428 00000 n -0000415549 00000 n -0000415660 00000 n -0000415855 00000 n -0000415970 00000 n -0000416093 00000 n -0000416210 00000 n -0000416327 00000 n -0000416431 00000 n -0000416619 00000 n -0000416841 00000 n -0000416979 00000 n -0000417141 00000 n -0000417277 00000 n -0000417379 00000 n -0000417585 00000 n -0000417744 00000 n -0000417892 00000 n -0000418020 00000 n -0000418201 00000 n -0000418311 00000 n -0000418426 00000 n -0000418571 00000 n -0000418735 00000 n -0000418885 00000 n -0000419103 00000 n -0000419208 00000 n -0000419340 00000 n -0000419461 00000 n -0000419668 00000 n -0000419796 00000 n -0000419881 00000 n -0000420047 00000 n -0000420151 00000 n -0000420308 00000 n -0000420419 00000 n -0000420564 00000 n -0000420706 00000 n -0000420856 00000 n -0000420973 00000 n -0000421137 00000 n -0000421248 00000 n -0000421388 00000 n -0000421515 00000 n -0000421632 00000 n -0000421771 00000 n -0000421877 00000 n -0000422011 00000 n -0000422143 00000 n -0000422288 00000 n -0000422415 00000 n -0000422547 00000 n -0000422677 00000 n -0000422802 00000 n -0000422910 00000 n -0000423116 00000 n -0000423216 00000 n -0000423334 00000 n -0000423499 00000 n -0000423590 00000 n -0000423751 00000 n -0000423877 00000 n -0000424020 00000 n -0000424147 00000 n -0000424287 00000 n -0000424423 00000 n -0000424531 00000 n -0000424705 00000 n -0000424811 00000 n -0000424931 00000 n -0000425043 00000 n -0000425160 00000 n -0000425262 00000 n -0000425439 00000 n -0000425551 00000 n -0000425682 00000 n -0000425806 00000 n -0000425973 00000 n -0000426090 00000 n -0000426220 00000 n -0000426360 00000 n -0000426497 00000 n -0000426633 00000 n -0000426769 00000 n -0000426906 00000 n -0000427018 00000 n -0000427189 00000 n -0000427311 00000 n -0000427471 00000 n -0000427570 00000 n -0000427685 00000 n -0000427787 00000 n -0000427948 00000 n -0000428052 00000 n -0000428151 00000 n -0000428333 00000 n -0000428437 00000 n -0000428590 00000 n -0000428701 00000 n -0000428809 00000 n -0000428940 00000 n -0000429115 00000 n -0000429218 00000 n -0000429338 00000 n -0000429453 00000 n -0000429567 00000 n +0000287332 00000 n +0000289040 00000 n +0000289243 00000 n +0000290623 00000 n +0000290812 00000 n +0000291702 00000 n +0000291890 00000 n +0000293416 00000 n +0000293619 00000 n +0000295328 00000 n +0000295531 00000 n +0000296348 00000 n +0000296561 00000 n +0000298048 00000 n +0000298228 00000 n +0000298990 00000 n +0000299254 00000 n +0000300976 00000 n +0000301222 00000 n +0000303114 00000 n +0000303337 00000 n +0000305125 00000 n +0000305348 00000 n +0000307223 00000 n +0000307402 00000 n +0000308625 00000 n +0000308857 00000 n +0000310525 00000 n +0000310704 00000 n +0000312284 00000 n +0000312463 00000 n +0000314008 00000 n +0000314187 00000 n +0000315690 00000 n +0000315869 00000 n +0000317535 00000 n +0000317705 00000 n +0000318450 00000 n +0000318639 00000 n +0000320332 00000 n +0000320511 00000 n +0000322256 00000 n +0000322444 00000 n +0000324279 00000 n +0000324473 00000 n +0000326330 00000 n +0000326561 00000 n +0000328675 00000 n +0000328887 00000 n +0000330323 00000 n +0000330536 00000 n +0000331902 00000 n +0000332109 00000 n +0000333382 00000 n +0000333561 00000 n +0000334581 00000 n +0000334769 00000 n +0000336237 00000 n +0000336425 00000 n +0000337824 00000 n +0000337993 00000 n +0000338827 00000 n +0000339007 00000 n +0000340067 00000 n +0000340237 00000 n +0000341911 00000 n +0000342090 00000 n +0000343874 00000 n +0000344053 00000 n +0000345698 00000 n +0000345867 00000 n +0000347182 00000 n +0000347370 00000 n +0000348936 00000 n +0000349124 00000 n +0000350744 00000 n +0000350932 00000 n +0000352332 00000 n +0000352502 00000 n +0000354135 00000 n +0000354305 00000 n +0000355316 00000 n +0000355513 00000 n +0000356725 00000 n +0000356928 00000 n +0000358273 00000 n +0000358458 00000 n +0000358933 00000 n +0000359121 00000 n +0000360609 00000 n +0000360779 00000 n +0000362286 00000 n +0000362456 00000 n +0000363854 00000 n +0000364024 00000 n +0000365574 00000 n +0000365743 00000 n +0000366706 00000 n +0000366927 00000 n +0000368462 00000 n +0000368683 00000 n +0000370289 00000 n +0000370511 00000 n +0000371760 00000 n +0000371939 00000 n +0000373483 00000 n +0000373662 00000 n +0000374894 00000 n +0000375089 00000 n +0000377715 00000 n +0000377891 00000 n +0000378341 00000 n +0000378520 00000 n +0000380047 00000 n +0000380235 00000 n +0000381203 00000 n +0000381373 00000 n +0000381703 00000 n +0000381899 00000 n +0000383629 00000 n +0000383843 00000 n +0000385526 00000 n +0000385721 00000 n +0000387428 00000 n +0000387641 00000 n +0000389129 00000 n +0000389324 00000 n +0000390907 00000 n +0000391130 00000 n +0000392495 00000 n +0000392692 00000 n +0000394229 00000 n +0000394417 00000 n +0000395297 00000 n +0000395501 00000 n +0000397238 00000 n +0000397426 00000 n +0000399168 00000 n +0000399347 00000 n +0000400746 00000 n +0000400925 00000 n +0000402623 00000 n +0000402802 00000 n +0000404282 00000 n +0000404461 00000 n +0000406247 00000 n +0000406451 00000 n +0000408102 00000 n +0000408161 00000 n +0000408264 00000 n +0000408429 00000 n +0000408511 00000 n +0000408619 00000 n +0000408742 00000 n +0000408854 00000 n +0000409032 00000 n +0000409153 00000 n +0000409313 00000 n +0000409431 00000 n +0000409528 00000 n +0000409680 00000 n +0000409820 00000 n +0000409998 00000 n +0000410153 00000 n +0000410255 00000 n +0000410355 00000 n +0000410564 00000 n +0000410665 00000 n +0000410808 00000 n +0000410954 00000 n +0000411070 00000 n +0000411237 00000 n +0000411349 00000 n +0000411523 00000 n +0000411626 00000 n +0000411799 00000 n +0000411920 00000 n +0000412050 00000 n +0000412176 00000 n +0000412291 00000 n +0000412399 00000 n +0000412546 00000 n +0000412651 00000 n +0000412770 00000 n +0000412899 00000 n +0000413058 00000 n +0000413192 00000 n +0000413329 00000 n +0000413461 00000 n +0000413610 00000 n +0000413742 00000 n +0000413890 00000 n +0000413991 00000 n +0000414119 00000 n +0000414237 00000 n +0000414391 00000 n +0000414522 00000 n +0000414668 00000 n +0000414769 00000 n +0000414867 00000 n +0000414991 00000 n +0000415103 00000 n +0000415275 00000 n +0000415473 00000 n +0000415584 00000 n +0000415699 00000 n +0000415843 00000 n +0000416051 00000 n +0000416185 00000 n +0000416339 00000 n +0000416464 00000 n +0000416595 00000 n +0000416728 00000 n +0000416859 00000 n +0000417034 00000 n +0000417169 00000 n +0000417322 00000 n +0000417467 00000 n +0000417692 00000 n +0000417803 00000 n +0000417918 00000 n +0000418111 00000 n +0000418254 00000 n +0000418370 00000 n +0000418528 00000 n +0000418685 00000 n +0000418816 00000 n +0000418937 00000 n +0000419114 00000 n +0000419248 00000 n +0000419396 00000 n +0000419514 00000 n +0000419644 00000 n +0000419814 00000 n +0000419908 00000 n +0000420035 00000 n +0000420162 00000 n +0000420258 00000 n +0000420444 00000 n +0000420570 00000 n +0000420705 00000 n +0000420838 00000 n +0000420965 00000 n +0000421077 00000 n +0000421268 00000 n +0000421365 00000 n +0000421550 00000 n +0000421653 00000 n +0000421776 00000 n +0000421897 00000 n +0000422008 00000 n +0000422203 00000 n +0000422318 00000 n +0000422441 00000 n +0000422558 00000 n +0000422675 00000 n +0000422779 00000 n +0000422967 00000 n +0000423189 00000 n +0000423327 00000 n +0000423489 00000 n +0000423625 00000 n +0000423727 00000 n +0000423933 00000 n +0000424092 00000 n +0000424240 00000 n +0000424368 00000 n +0000424549 00000 n +0000424659 00000 n +0000424774 00000 n +0000424919 00000 n +0000425083 00000 n +0000425233 00000 n +0000425451 00000 n +0000425556 00000 n +0000425688 00000 n +0000425809 00000 n +0000426016 00000 n +0000426144 00000 n +0000426229 00000 n +0000426395 00000 n +0000426499 00000 n +0000426656 00000 n +0000426767 00000 n +0000426912 00000 n +0000427054 00000 n +0000427204 00000 n +0000427321 00000 n +0000427485 00000 n +0000427596 00000 n +0000427736 00000 n +0000427863 00000 n +0000427980 00000 n +0000428119 00000 n +0000428225 00000 n +0000428359 00000 n +0000428491 00000 n +0000428636 00000 n +0000428763 00000 n +0000428895 00000 n +0000429025 00000 n +0000429150 00000 n +0000429258 00000 n +0000429464 00000 n +0000429564 00000 n 0000429682 00000 n -0000429796 00000 n -0000429911 00000 n -0000430029 00000 n -0000430146 00000 n -0000430252 00000 n -0000430425 00000 n -0000430528 00000 n -0000430684 00000 n -0000430792 00000 n -0000430918 00000 n -0000431038 00000 n -0000431139 00000 n -0000431246 00000 n -0000431360 00000 n -0000431521 00000 n -0000431617 00000 n -0000431731 00000 n -0000431841 00000 n -0000431958 00000 n -0000432136 00000 n -0000432246 00000 n -0000432400 00000 n -0000432569 00000 n -0000432757 00000 n -0000432938 00000 n -0000433094 00000 n -0000433260 00000 n -0000433392 00000 n -0000433539 00000 n -0000433678 00000 n -0000433798 00000 n -0000433919 00000 n -0000434038 00000 n -0000434202 00000 n -0000434306 00000 n -0000434424 00000 n -0000434542 00000 n -0000434663 00000 n -0000434799 00000 n -0000434898 00000 n -0000435062 00000 n -0000435166 00000 n -0000435283 00000 n -0000435433 00000 n -0000435533 00000 n -0000435647 00000 n -0000435761 00000 n -0000435875 00000 n -0000435989 00000 n -0000436103 00000 n -0000436217 00000 n -0000436331 00000 n -0000436445 00000 n -0000436561 00000 n -0000436663 00000 n -0000436777 00000 n +0000429847 00000 n +0000429938 00000 n +0000430099 00000 n +0000430225 00000 n +0000430368 00000 n +0000430495 00000 n +0000430635 00000 n +0000430771 00000 n +0000430879 00000 n +0000431053 00000 n +0000431159 00000 n +0000431279 00000 n +0000431391 00000 n +0000431508 00000 n +0000431610 00000 n +0000431787 00000 n +0000431899 00000 n +0000432030 00000 n +0000432154 00000 n +0000432321 00000 n +0000432438 00000 n +0000432568 00000 n +0000432708 00000 n +0000432845 00000 n +0000432981 00000 n +0000433117 00000 n +0000433254 00000 n +0000433366 00000 n +0000433537 00000 n +0000433659 00000 n +0000433819 00000 n +0000433918 00000 n +0000434033 00000 n +0000434135 00000 n +0000434296 00000 n +0000434400 00000 n +0000434499 00000 n +0000434630 00000 n +0000434805 00000 n +0000434908 00000 n +0000435028 00000 n +0000435143 00000 n +0000435257 00000 n +0000435372 00000 n +0000435486 00000 n +0000435601 00000 n +0000435719 00000 n +0000435836 00000 n +0000435942 00000 n +0000436120 00000 n +0000436223 00000 n +0000436379 00000 n +0000436487 00000 n +0000436613 00000 n +0000436733 00000 n +0000436834 00000 n +0000436941 00000 n +0000437105 00000 n +0000437209 00000 n +0000437342 00000 n +0000437474 00000 n +0000437596 00000 n +0000437725 00000 n +0000437832 00000 n +0000437946 00000 n +0000438107 00000 n +0000438203 00000 n +0000438317 00000 n +0000438427 00000 n +0000438558 00000 n +0000438691 00000 n +0000438792 00000 n +0000438970 00000 n +0000439080 00000 n +0000439234 00000 n +0000439403 00000 n +0000439591 00000 n +0000439772 00000 n +0000439928 00000 n +0000440094 00000 n +0000440226 00000 n +0000440373 00000 n +0000440512 00000 n +0000440646 00000 n +0000440770 00000 n +0000440891 00000 n +0000441010 00000 n +0000441180 00000 n +0000441342 00000 n +0000441448 00000 n +0000441565 00000 n +0000441716 00000 n +0000441843 00000 n +0000441999 00000 n +0000442117 00000 n +0000442247 00000 n +0000442411 00000 n +0000442515 00000 n +0000442633 00000 n +0000442751 00000 n +0000442872 00000 n +0000443008 00000 n +0000443107 00000 n +0000443262 00000 n +0000443366 00000 n +0000443483 00000 n +0000443633 00000 n +0000443733 00000 n +0000443847 00000 n +0000443961 00000 n +0000444075 00000 n +0000444189 00000 n +0000444303 00000 n +0000444417 00000 n +0000444531 00000 n +0000444645 00000 n +0000444761 00000 n +0000444863 00000 n +0000444977 00000 n trailer -<<116c97ced400123fda9c473dd7e06727>]>> +<]>> startxref -437645 +445867 %%EOF -- cgit From 25db62e3101dbcae8e9daee3cb16430297afa223 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 18 Mar 2003 16:48:14 +0000 Subject: Regenerate --- docs/Samba-Developers-Guide.pdf | 4 +- docs/Samba-HOWTO-Collection.pdf | 4 +- docs/faq/samba-faq.html | 65 +- docs/htmldocs/Samba-Developers-Guide.html | 953 +++-- docs/htmldocs/Samba-HOWTO-Collection.html | 5989 +++++++++++++++-------------- docs/htmldocs/ads.html | 56 +- docs/htmldocs/appendixes.html | 210 +- docs/htmldocs/browsing-quick.html | 98 +- docs/htmldocs/bugreport.html | 54 +- docs/htmldocs/compiling.html | 631 +++ docs/htmldocs/cvs-access.html | 307 -- docs/htmldocs/diagnosis.html | 100 +- docs/htmldocs/domain-security.html | 102 +- docs/htmldocs/findsmb.1.html | 22 +- docs/htmldocs/groupmapping.html | 14 +- docs/htmldocs/groupprofiles.html | 73 +- docs/htmldocs/improved-browsing.html | 152 +- docs/htmldocs/install.html | 648 +--- docs/htmldocs/integrate-ms-networks.html | 188 +- docs/htmldocs/introduction.html | 152 +- docs/htmldocs/lmhosts.5.html | 2 +- docs/htmldocs/msdfs.html | 84 +- docs/htmldocs/net.8.html | 18 +- docs/htmldocs/nmbd.8.html | 46 +- docs/htmldocs/nmblookup.1.html | 66 +- docs/htmldocs/oplocks.html | 208 - docs/htmldocs/optional.html | 332 +- docs/htmldocs/other-clients.html | 117 +- docs/htmldocs/p1346.html | 917 ----- docs/htmldocs/p18.html | 438 --- docs/htmldocs/p3106.html | 391 -- docs/htmldocs/p544.html | 388 -- docs/htmldocs/pam.html | 24 +- docs/htmldocs/passdb.html | 370 +- docs/htmldocs/pdb-mysql.html | 341 -- docs/htmldocs/pdb-xml.html | 189 - docs/htmldocs/pdbedit.8.html | 22 +- docs/htmldocs/portability.html | 47 +- docs/htmldocs/printing.html | 236 +- docs/htmldocs/pwencrypt.html | 445 --- docs/htmldocs/rpcclient.1.html | 108 +- docs/htmldocs/samba-bdc.html | 56 +- docs/htmldocs/samba-howto-collection.html | 424 +- docs/htmldocs/samba-ldap-howto.html | 1011 ----- docs/htmldocs/samba-pdc.html | 266 +- docs/htmldocs/samba.7.html | 2 +- docs/htmldocs/securing-samba.html | 307 ++ docs/htmldocs/securitylevels.html | 2 +- docs/htmldocs/smb.conf.5.html | 5797 ++++++++++------------------ docs/htmldocs/smbcacls.1.html | 38 +- docs/htmldocs/smbclient.1.html | 404 +- docs/htmldocs/smbcontrol.1.html | 102 +- docs/htmldocs/smbd.8.html | 64 +- docs/htmldocs/smbgroupedit.8.html | 22 +- docs/htmldocs/smbmnt.8.html | 4 +- docs/htmldocs/smbmount.8.html | 66 +- docs/htmldocs/smbpasswd.5.html | 12 +- docs/htmldocs/smbpasswd.8.html | 120 +- docs/htmldocs/smbsh.1.html | 92 +- docs/htmldocs/smbspool.8.html | 10 +- docs/htmldocs/smbstatus.1.html | 16 +- docs/htmldocs/smbtar.1.html | 26 +- docs/htmldocs/smbumount.8.html | 2 +- docs/htmldocs/speed.html | 68 +- docs/htmldocs/swat.8.html | 16 +- docs/htmldocs/testparm.1.html | 22 +- docs/htmldocs/testprns.1.html | 6 +- docs/htmldocs/type.html | 76 +- docs/htmldocs/unix-permissions.html | 290 +- docs/htmldocs/vfs.html | 60 +- docs/htmldocs/vfstest.1.html | 24 +- docs/htmldocs/wbinfo.1.html | 50 +- docs/htmldocs/winbind.html | 298 +- docs/htmldocs/winbindd.8.html | 104 +- docs/manpages/findsmb.1 | 2 +- docs/manpages/lmhosts.5 | 2 +- docs/manpages/net.8 | 2 +- docs/manpages/nmbd.8 | 2 +- docs/manpages/nmblookup.1 | 2 +- docs/manpages/pdbedit.8 | 2 +- docs/manpages/rpcclient.1 | 2 +- docs/manpages/samba.7 | 2 +- docs/manpages/smb.conf.5 | 130 +- docs/manpages/smbcacls.1 | 2 +- docs/manpages/smbclient.1 | 2 +- docs/manpages/smbcontrol.1 | 2 +- docs/manpages/smbd.8 | 2 +- docs/manpages/smbgroupedit.8 | 2 +- docs/manpages/smbmnt.8 | 2 +- docs/manpages/smbmount.8 | 2 +- docs/manpages/smbpasswd.5 | 2 +- docs/manpages/smbpasswd.8 | 2 +- docs/manpages/smbsh.1 | 2 +- docs/manpages/smbspool.8 | 2 +- docs/manpages/smbstatus.1 | 2 +- docs/manpages/smbtar.1 | 2 +- docs/manpages/smbumount.8 | 2 +- docs/manpages/swat.8 | 2 +- docs/manpages/testparm.1 | 2 +- docs/manpages/testprns.1 | 2 +- docs/manpages/vfstest.1 | 2 +- docs/manpages/wbinfo.1 | 2 +- docs/manpages/winbindd.8 | 2 +- 103 files changed, 9100 insertions(+), 15554 deletions(-) create mode 100644 docs/htmldocs/compiling.html delete mode 100644 docs/htmldocs/cvs-access.html delete mode 100644 docs/htmldocs/oplocks.html delete mode 100644 docs/htmldocs/p1346.html delete mode 100644 docs/htmldocs/p18.html delete mode 100644 docs/htmldocs/p3106.html delete mode 100644 docs/htmldocs/p544.html delete mode 100644 docs/htmldocs/pdb-mysql.html delete mode 100644 docs/htmldocs/pdb-xml.html delete mode 100644 docs/htmldocs/pwencrypt.html delete mode 100644 docs/htmldocs/samba-ldap-howto.html create mode 100644 docs/htmldocs/securing-samba.html diff --git a/docs/Samba-Developers-Guide.pdf b/docs/Samba-Developers-Guide.pdf index 905837450cf..166a77ac303 100644 --- a/docs/Samba-Developers-Guide.pdf +++ b/docs/Samba-Developers-Guide.pdf @@ -1,6 +1,6 @@ %PDF-1.3 %âãÏÓ -1 0 obj<>endobj +1 0 obj<>endobj 2 0 obj<>endobj 3 0 obj<>endobj 4 0 obj<>endobj @@ -2585,7 +2585,7 @@ xref 0000177544 00000 n 0000177648 00000 n trailer -<<911a4337bc5829cf93b7c365500d45af>]>> +<<4109506ff23eff872a95decb81258ca1>]>> startxref 178148 %%EOF diff --git a/docs/Samba-HOWTO-Collection.pdf b/docs/Samba-HOWTO-Collection.pdf index a0ea04b7915..b9114a70d5a 100644 --- a/docs/Samba-HOWTO-Collection.pdf +++ b/docs/Samba-HOWTO-Collection.pdf @@ -1,6 +1,6 @@ %PDF-1.3 %âãÏÓ -1 0 obj<>endobj +1 0 obj<>endobj 2 0 obj<>endobj 3 0 obj<>endobj 4 0 obj<>endobj @@ -6257,7 +6257,7 @@ xref 0000444863 00000 n 0000444977 00000 n trailer -<]>> +<]>> startxref 445867 %%EOF diff --git a/docs/faq/samba-faq.html b/docs/faq/samba-faq.html index 50037e1e1e0..600c966034d 100644 --- a/docs/faq/samba-faq.html +++ b/docs/faq/samba-faq.html @@ -5,7 +5,7 @@ >Samba FAQSamba FAQSamba FAQ

I have set 'force user' and samba still makes 'root' the owner of all the files I touch!
3.2. I have just installed samba and I'm trying to log in from Windows, but samba refuses all logins!
4.1. MS Office Setup reports "Cannot change properties of '\\MSOFFICE\\SETUP.INI'"
4.2. How to use a Samba share as an administrative share for MS Office, etc.
4.3. Microsoft Access database opening errors
5.1. Not listening for calling name
5.2. System Error 1240
5.3. smbclient ignores -N !
5.4. The data on the CD-Drive I've shared seems to be corrupted!
5.5. Why can users access home directories of other users?
5.6. Until a few minutes after samba has started, clients get the error "Domain Controller Unavailable"
5.7. I'm getting "open_oplock_ipc: Failed to get local UDP socket for address 100007f. Error was Cannot assign requested" in the logs
6.1. How can I prevent my samba server from being used to distribute the Nimda worm?
6.2. How can I use samba as a fax server?
6.2.1. Tools for printing faxes
6.2.2. Making the fax-server
6.2.3. Installing the client drivers
6.2.4. Example smb.conf
6.3. Samba doesn't work well together with DHCP!
6.4. How can I assign NetBIOS names to clients with DHCP?
6.5. How do I convert between unix and dos text formats?
6.6. Does samba have wins replication support?
7. Printing problems
7.1. setdriver or cupsaddsmb failes
SAMBA Developers GuideSAMBA Developers Guide

SAMBA Developers Guide

1.1. NETBIOS

1.1. NETBIOS

NetBIOS runs over the following tranports: TCP/IP; NetBEUI and IPX/SPX. Samba only uses NetBIOS over TCP/IP. For details on the TCP/IP NetBIOS @@ -904,8 +904,8 @@ CLASS="SECT1" CLASS="SECT1" >1.2. BROADCAST NetBIOS1.2. BROADCAST NetBIOS

Clients can claim names, and therefore offer services on successfully claimed @@ -927,14 +927,14 @@ CLASS="SECT1" CLASS="SECT1" >1.3. NBNS NetBIOS1.3. NBNS NetBIOS

rfc1001.txt describes, amongst other things, the implementation and use of, a 'NetBIOS Name Service'. NT/AS offers 'Windows Internet Name Service' which is fully rfc1001/2 compliant, but has had to take specific action with certain NetBIOS names in order to make it useful. (for example, it -deals with the registration of <1c> <1d> <1e> names all in different ways. +deals with the registration of <1c> <1d> <1e> names all in different ways. I recommend the reading of the Microsoft WINS Server Help files for full details).

2.1. Introduction2.1. Introduction

This document gives a general overview of how Samba works internally. The Samba Team has tried to come up with a model which is @@ -1022,8 +1022,8 @@ CLASS="SECT1" CLASS="SECT1" >2.2. Multithreading and Samba2.2. Multithreading and Samba

People sometimes tout threads as a uniformly good thing. They are very nice in their place but are quite inappropriate for smbd. nmbd is @@ -1048,8 +1048,8 @@ CLASS="SECT1" CLASS="SECT1" >2.3. Threading smbd2.3. Threading smbd

A few problems that would arise from a threaded smbd are:

2.4. Threading nmbd2.4. Threading nmbd

This would be ideal, but gets sunk by portability requirements.

2.5. nbmd Design2.5. nbmd Design

Originally Andrew used recursion to simulate a multi-threaded environment, which use the stack enormously and made for really @@ -1173,22 +1173,22 @@ CLASS="SECT1" CLASS="SECT1" >3.1. New Output Syntax3.1. New Output Syntax

The syntax of a debugging log file is represented as:

  >debugfile< :== { >debugmsg< }
+>  >debugfile< :== { >debugmsg< }
 
-  >debugmsg<  :== >debughdr< '\n' >debugtext<
+  >debugmsg<  :== >debughdr< '\n' >debugtext<
 
-  >debughdr<  :== '[' TIME ',' LEVEL ']' FILE ':' [FUNCTION] '(' LINE ')'
+  >debughdr<  :== '[' TIME ',' LEVEL ']' FILE ':' [FUNCTION] '(' LINE ')'
 
-  >debugtext< :== { >debugline< }
+  >debugtext< :== { >debugline< }
 
-  >debugline< :== TEXT '\n'

TEXT is a string of characters excluding the newline character.

3.2. The DEBUG() Macro3.2. The DEBUG() Macro

Use of the DEBUG() macro is unchanged. DEBUG() takes two parameters. The first is the message level, the second is the body of a function @@ -1338,8 +1338,8 @@ CLASS="SECT1" CLASS="SECT1" >3.3. The DEBUGADD() Macro3.3. The DEBUGADD() Macro

In addition to the kludgey solution to the broken line problem described above, there is a clean solution. The DEBUGADD() macro never @@ -1369,8 +1369,8 @@ CLASS="SECT1" CLASS="SECT1" >3.4. The DEBUGLVL() Macro3.4. The DEBUGLVL() Macro

One of the problems with the DEBUG() macro was that DEBUG() lines tended to get a bit long. Consider this example from @@ -1437,16 +1437,16 @@ CLASS="SECT1" CLASS="SECT1" >3.5. New Functions3.5. New Functions

3.5.1. dbgtext()

3.5.1. dbgtext()

This function prints debug message text to the debug file (and possibly to syslog) via the format buffer. The function uses a @@ -1463,8 +1463,8 @@ CLASS="SECT2" CLASS="SECT2" >3.5.2. dbghdr()3.5.2. dbghdr()

This is the function that writes a debug message header. Headers are not processed via the format buffer. Also note that @@ -1480,8 +1480,8 @@ CLASS="SECT2" CLASS="SECT2" >3.5.3. format_debug_text()3.5.3. format_debug_text()

This is a static function in debug.c. It stores the output text for the body of the message in a buffer until it encounters a @@ -1726,8 +1726,8 @@ CLASS="SECT1" CLASS="SECT1" >5.1. Character Handling5.1. Character Handling

This section describes character set handling in Samba, as implemented in Samba 3.0 and above

5.2. The new functions5.2. The new functions

The new system works like this:

5.3. Macros in byteorder.h5.3. Macros in byteorder.h

This section describes the macros defined in byteorder.h. These macros are used extensively in the Samba code.

5.3.1. CVAL(buf,pos)5.3.1. CVAL(buf,pos)

returns the byte at offset pos within buffer buf as an unsigned character.

5.3.2. PVAL(buf,pos)5.3.2. PVAL(buf,pos)

returns the value of CVAL(buf,pos) cast to type unsigned integer.

5.3.3. SCVAL(buf,pos,val)5.3.3. SCVAL(buf,pos,val)

sets the byte at offset pos within buffer buf to value val.

5.3.4. SVAL(buf,pos)5.3.4. SVAL(buf,pos)

returns the value of the unsigned short (16 bit) little-endian integer at offset pos within buffer buf. An integer of this type is sometimes @@ -1913,8 +1913,8 @@ CLASS="SECT2" CLASS="SECT2" >5.3.5. IVAL(buf,pos)5.3.5. IVAL(buf,pos)

returns the value of the unsigned 32 bit little-endian integer at offset pos within buffer buf.

5.3.6. SVALS(buf,pos)5.3.6. SVALS(buf,pos)

returns the value of the signed short (16 bit) little-endian integer at offset pos within buffer buf.

5.3.7. IVALS(buf,pos)5.3.7. IVALS(buf,pos)

returns the value of the signed 32 bit little-endian integer at offset pos within buffer buf.

5.3.8. SSVAL(buf,pos,val)5.3.8. SSVAL(buf,pos,val)

sets the unsigned short (16 bit) little-endian integer at offset pos within buffer buf to value val.

5.3.9. SIVAL(buf,pos,val)5.3.9. SIVAL(buf,pos,val)

sets the unsigned 32 bit little-endian integer at offset pos within buffer buf to the value val.

5.3.10. SSVALS(buf,pos,val)5.3.10. SSVALS(buf,pos,val)

sets the short (16 bit) signed little-endian integer at offset pos within buffer buf to the value val.

5.3.11. SIVALS(buf,pos,val)5.3.11. SIVALS(buf,pos,val)

sets the signed 32 bit little-endian integer at offset pos withing buffer buf to the value val.

5.3.12. RSVAL(buf,pos)5.3.12. RSVAL(buf,pos)

returns the value of the unsigned short (16 bit) big-endian integer at offset pos within buffer buf.

5.3.13. RIVAL(buf,pos)5.3.13. RIVAL(buf,pos)

returns the value of the unsigned 32 bit big-endian integer at offset pos within buffer buf.

5.3.14. RSSVAL(buf,pos,val)5.3.14. RSSVAL(buf,pos,val)

sets the value of the unsigned short (16 bit) big-endian integer at offset pos within buffer buf to value val. @@ -2034,8 +2034,8 @@ CLASS="SECT2" CLASS="SECT2" >5.3.15. RSIVAL(buf,pos,val)5.3.15. RSIVAL(buf,pos,val)

sets the value of the unsigned 32 bit big-endian integer at offset pos within buffer buf to value val.

5.4. LAN Manager Samba API5.4. LAN Manager Samba API

This section describes the functions need to make a LAN Manager RPC call. This information had been obtained by examining the Samba code and the LAN @@ -2069,8 +2069,8 @@ CLASS="SECT2" CLASS="SECT2" >5.4.1. Parameters5.4.1. Parameters

The parameters are as follows:

5.4.2. Return value5.4.2. Return value

The returned parameters (pointed to by rparam), in their order of appearance are:

5.5. Code character table5.5. Code character table

Certain data structures are described by means of ASCIIz strings containing code characters. These are the code characters:

6.1. Lexical Analysis6.1. Lexical Analysis

Basically, the file is processed on a line by line basis. There are four types of lines that are recognized by the lexical analyzer @@ -2340,8 +2340,8 @@ CLASS="SECT2" CLASS="SECT2" >6.1.1. Handling of Whitespace6.1.1. Handling of Whitespace

Whitespace is defined as all characters recognized by the isspace() function (see ctype(3C)) except for the newline character ('\n') @@ -2377,8 +2377,8 @@ CLASS="SECT2" CLASS="SECT2" >6.1.2. Handling of Line Continuation6.1.2. Handling of Line Continuation

Long section header and parameter lines may be extended across multiple lines by use of the backslash character ('\\'). Line @@ -2417,8 +2417,8 @@ CLASS="SECT2" CLASS="SECT2" >6.1.3. Line Continuation Quirks6.1.3. Line Continuation Quirks

Note the following example:

6.2. Syntax6.2. Syntax

The syntax of the smb.conf file is as follows:

  <file>            :==  { <section> } EOF
-  <section>         :==  <section header> { <parameter line> }
-  <section header>  :==  '[' NAME ']'
-  <parameter line>  :==  NAME '=' VALUE NL
<file> :== { <section> } EOF + <section> :== <section header> { <parameter line> } + <section header> :== '[' NAME ']' + <parameter line> :== NAME '=' VALUE NL

Basically, this means that

6.2.1. About params.c6.2.1. About params.c

The parsing of the config file is a bit unusual if you are used to lex, yacc, bison, etc. Both lexical analysis (scanning) and parsing @@ -2547,12 +2547,12 @@ CLASS="SECT1" CLASS="SECT1" >7.1. Introduction7.1. Introduction

This is a short document that describes some of the issues that confront a SMB implementation on unix, and how Samba copes with -them. They may help people who are looking at unix<->PC +them. They may help people who are looking at unix<->PC interoperability.

It was written to help out a person who was writing a paper on unix to @@ -2564,8 +2564,8 @@ CLASS="SECT1" CLASS="SECT1" >7.2. Usernames7.2. Usernames

The SMB protocol has only a loose username concept. Early SMB protocols (such as CORE and COREPLUS) have no username concept at @@ -2610,8 +2610,8 @@ CLASS="SECT1" CLASS="SECT1" >7.3. File Ownership7.3. File Ownership

The commonly used SMB protocols have no way of saying "you can't do that because you don't own the file". They have, in fact, no concept @@ -2637,8 +2637,8 @@ CLASS="SECT1" CLASS="SECT1" >7.4. Passwords7.4. Passwords

Many SMB clients uppercase passwords before sending them. I have no idea why they do this. Interestingly WfWg uppercases the password only @@ -2668,8 +2668,8 @@ CLASS="SECT1" CLASS="SECT1" >7.5. Locking7.5. Locking

Since samba 2.2, samba supports other types of locking as well. This section is outdated.

7.6. Deny Modes7.6. Deny Modes

When a SMB client opens a file it asks for a particular "deny mode" to be placed on the file. These modes (DENY_NONE, DENY_READ, DENY_WRITE, @@ -2731,8 +2731,8 @@ CLASS="SECT1" CLASS="SECT1" >7.7. Trapdoor UIDs7.7. Trapdoor UIDs

A SMB session can run with several uids on the one socket. This happens when a user connects to two shares with different @@ -2750,8 +2750,8 @@ CLASS="SECT1" CLASS="SECT1" >7.8. Port numbers7.8. Port numbers

There is a convention that clients on sockets use high "unprivilaged" port numbers (>1000) and connect to servers on low "privilaged" port @@ -2782,8 +2782,8 @@ CLASS="SECT1" CLASS="SECT1" >7.9. Protocol Complexity7.9. Protocol Complexity

There are many "protocol levels" in the SMB protocol. It seems that each time new functionality was added to a Microsoft operating system, @@ -2900,14 +2900,14 @@ example, if I'm using a csh style shell:

strace -f -p 3872 >& strace.outstrace -f -p 3872 >& strace.out

or with a sh style shell:

strace -f -p 3872 > strace.out 2>&1strace -f -p 3872 > strace.out 2>&1

Note the "-f" option. This is only available on some systems, and @@ -2963,8 +2963,8 @@ CLASS="SECT1" CLASS="SECT1" >9.1. Introduction9.1. Introduction

This document contains information to provide an NT workstation with login services, without the need for an NT server. It is the sgml version of 9.1.1. Sources9.1.1. Sources

9.1.2. Credits9.1.2. Credits

9.2. Notes and Structures9.2. Notes and Structures

9.2.1. Notes

9.2.1. Notes

    9.2.2. Enumerations9.2.2. Enumerations

    9.2.2.1. MSRPC Header type

    9.2.2.1. MSRPC Header type

    command number in the msrpc packet header

    9.2.2.2. MSRPC Packet info9.2.2.2. MSRPC Packet info

    The meaning of these flags is undocumented

    9.2.3. Structures9.2.3. Structures

    9.2.3.1. VOID *

    9.2.3.1. VOID *

    sizeof VOID* is 32 bits.

    9.2.3.2. char9.2.3.2. char

    sizeof char is 8 bits.

    9.2.3.3. UTIME9.2.3.3. UTIME

    UTIME is 32 bits, indicating time in seconds since 01jan1970. documented in cifs6.txt (section 3.5 page, page 30).

9.2.3.4. NTTIME9.2.3.4. NTTIME

NTTIME is 64 bits. documented in cifs6.txt (section 3.5 page, page 30).

9.2.3.5. DOM_SID (domain SID structure)9.2.3.5. DOM_SID (domain SID structure)

9.2.3.6. STR (string)9.2.3.6. STR (string)

STR (string) is a char[] : a null-terminated string of ascii characters.

9.2.3.7. UNIHDR (unicode string header)9.2.3.7. UNIHDR (unicode string header)

9.2.3.8. UNIHDR2 (unicode string header plus buffer pointer)9.2.3.8. UNIHDR2 (unicode string header plus buffer pointer)

9.2.3.9. UNISTR (unicode string)9.2.3.9. UNISTR (unicode string)

9.2.3.10. NAME (length-indicated unicode string)9.2.3.10. NAME (length-indicated unicode string)

9.2.3.11. UNISTR2 (aligned unicode string)9.2.3.11. UNISTR2 (aligned unicode string)

9.2.3.12. OBJ_ATTR (object attributes)9.2.3.12. OBJ_ATTR (object attributes)

9.2.3.13. POL_HND (LSA policy handle)9.2.3.13. POL_HND (LSA policy handle)

9.2.3.14. DOM_SID2 (domain SID structure, SIDS stored in unicode)9.2.3.14. DOM_SID2 (domain SID structure, SIDS stored in unicode)

9.2.3.15. DOM_RID (domain RID structure)9.2.3.15. DOM_RID (domain RID structure)

9.2.3.16. LOG_INFO (server, account, client structure)9.2.3.16. LOG_INFO (server, account, client structure)

9.2.3.17. CLNT_SRV (server, client names structure)9.2.3.17. CLNT_SRV (server, client names structure)

9.2.3.18. CREDS (credentials + time stamp)9.2.3.18. CREDS (credentials + time stamp)

9.2.3.19. CLNT_INFO2 (server, client structure, client credentials)9.2.3.19. CLNT_INFO2 (server, client structure, client credentials)

9.2.3.20. CLNT_INFO (server, account, client structure, client credentials)9.2.3.20. CLNT_INFO (server, account, client structure, client credentials)

9.2.3.21. ID_INFO_1 (id info structure, auth level 1)9.2.3.21. ID_INFO_1 (id info structure, auth level 1)

9.2.3.22. SAM_INFO (sam logon/logoff id info structure)9.2.3.22. SAM_INFO (sam logon/logoff id info structure)

9.2.3.23. GID (group id info)9.2.3.23. GID (group id info)

9.2.3.24. DOM_REF (domain reference info)9.2.3.24. DOM_REF (domain reference info)

9.2.3.25. DOM_INFO (domain info, levels 3 and 5 are the same))9.2.3.25. DOM_INFO (domain info, levels 3 and 5 are the same))

9.2.3.26. USER_INFO (user logon info)9.2.3.26. USER_INFO (user logon info)

9.2.3.27. SH_INFO_1_PTR (pointers to level 1 share info strings)9.2.3.27. SH_INFO_1_PTR (pointers to level 1 share info strings)

9.2.3.28. SH_INFO_1_STR (level 1 share info strings)9.2.3.28. SH_INFO_1_STR (level 1 share info strings)

9.2.3.29. SHARE_INFO_1_CTR9.2.3.29. SHARE_INFO_1_CTR

share container with 0 entries:

9.2.3.30. SERVER_INFO_1019.2.3.30. SERVER_INFO_101

9.3. MSRPC over Transact Named Pipe9.3. MSRPC over Transact Named Pipe

For details on the SMB Transact Named Pipe, see cifs6.txt

9.3.1. MSRPC Pipes9.3.1. MSRPC Pipes

The MSRPC is conducted over an SMB Transact Pipe with a name of 9.3.2. Header9.3.2. Header

[section to be rewritten, following receipt of work by Duncan Stansfield]

9.3.2.1. RPC_Packet for request, response, bind and bind acknowledgement9.3.2.1. RPC_Packet for request, response, bind and bind acknowledgement

9.3.2.2. Interface identification9.3.2.2. Interface identification

the interfaces are numbered. as yet I haven't seen more than one interface used on the same pipe name srvsvc

9.3.2.3. RPC_Iface RW9.3.2.3. RPC_Iface RW

9.3.2.4. RPC_ReqBind RW9.3.2.4. RPC_ReqBind RW

the remainder of the packet after the header if "type" was Bind in the response header, "type" should be BindAck

9.3.2.5. RPC_Address RW9.3.2.5. RPC_Address RW

9.3.2.6. RPC_ResBind RW9.3.2.6. RPC_ResBind RW

the response to place after the header in the reply packet

9.3.2.7. RPC_ReqNorm RW9.3.2.7. RPC_ReqNorm RW

the remainder of the packet after the header for every other other request

9.3.2.8. RPC_ResNorm RW9.3.2.8. RPC_ResNorm RW

9.3.3. Tail9.3.3. Tail

The end of each of the NTLSA and NETLOGON named pipes ends with:

9.3.4. RPC Bind / Bind Ack9.3.4. RPC Bind / Bind Ack

RPC Binds are the process of associating an RPC pipe (e.g \PIPE\lsarpc) with a "transfer syntax" (see RPC_Iface structure). The purpose for doing @@ -5736,8 +5736,8 @@ CLASS="SECT2" CLASS="SECT2" >9.3.5. NTLSA Transact Named Pipe9.3.5. NTLSA Transact Named Pipe

The sequence of actions taken on this pipe are:

9.3.6. LSA Open Policy9.3.6. LSA Open Policy

9.3.6.1. Request9.3.6.1. Request

9.3.6.2. Response9.3.6.2. Response

9.3.7. LSA Query Info Policy9.3.7. LSA Query Info Policy

9.3.7.1. Request9.3.7.1. Request

9.3.7.2. Response9.3.7.2. Response

9.3.8. LSA Enumerate Trusted Domains9.3.8. LSA Enumerate Trusted Domains

9.3.8.1. Request

9.3.8.1. Request

no extra data

9.3.8.2. Response9.3.8.2. Response

9.3.9. LSA Open Secret9.3.9. LSA Open Secret

9.3.9.1. Request

9.3.9.1. Request

no extra data

9.3.9.2. Response9.3.9.2. Response

9.3.10. LSA Close9.3.10. LSA Close

9.3.10.1. Request

9.3.10.1. Request

9.3.10.2. Response9.3.10.2. Response

9.3.11. LSA Lookup SIDS9.3.11. LSA Lookup SIDS

9.3.11.1. Request9.3.11.1. Request

9.3.11.2. Response9.3.11.2. Response

9.3.12. LSA Lookup Names9.3.12. LSA Lookup Names

9.3.12.1. Request9.3.12.1. Request

9.3.12.2. Response9.3.12.2. Response

9.4. NETLOGON rpc Transact Named Pipe9.4. NETLOGON rpc Transact Named Pipe

The sequence of actions taken on this pipe are:

9.4.1. LSA Request Challenge9.4.1. LSA Request Challenge

9.4.1.1. Request9.4.1.1. Request

9.4.1.2. Response9.4.1.2. Response

9.4.2. LSA Authenticate 29.4.2. LSA Authenticate 2

9.4.2.1. Request9.4.2.1. Request

9.4.2.2. Response9.4.2.2. Response

9.4.3. LSA Server Password Set9.4.3. LSA Server Password Set

9.4.3.1. Request9.4.3.1. Request

9.4.3.2. Response9.4.3.2. Response

9.4.4. LSA SAM Logon9.4.4. LSA SAM Logon

9.4.4.1. Request9.4.4.1. Request

9.4.4.2. Response9.4.4.2. Response

9.4.5. LSA SAM Logoff9.4.5. LSA SAM Logoff

9.4.5.1. Request9.4.5.1. Request

9.4.5.2. Response9.4.5.2. Response

9.5. \\MAILSLOT\NET\NTLOGON9.5. \\MAILSLOT\NET\NTLOGON

Note: mailslots will contain a response mailslot, to which the response - should be sent. the target NetBIOS name is REQUEST_NAME<20>, where + should be sent. the target NetBIOS name is REQUEST_NAME<20>, where REQUEST_NAME is the name of the machine that sent the request.

9.5.1. Query for PDC9.5.1. Query for PDC

9.5.1.1. Request9.5.1.1. Request

9.5.1.2. Response9.5.1.2. Response

9.5.2. SAM Logon9.5.2. SAM Logon

9.5.2.1. Request9.5.2.1. Request

9.5.2.2. Response9.5.2.2. Response

9.6. SRVSVC Transact Named Pipe9.6. SRVSVC Transact Named Pipe

Defines for this pipe, identifying the query are:

9.6.1. Net Share Enum9.6.1. Net Share Enum

9.6.1.1. Request9.6.1.1. Request

9.6.1.2. Response9.6.1.2. Response

9.6.2. Net Server Get Info9.6.2. Net Server Get Info

9.6.2.1. Request9.6.2.1. Request

9.6.2.2. Response9.6.2.2. Response

9.7. Cryptographic side of NT Domain Authentication9.7. Cryptographic side of NT Domain Authentication

9.7.1. Definitions

9.7.1. Definitions

9.7.2. Protocol

C->S ReqChal,Cc S->C Cs

C & S compute session key Ks = E(PW[9..15],E(PW[0..6],Add(Cc,Cs)))

C: Rc = Cred(Ks,Cc) C->S Authenticate,Rc S: Rs = Cred(Ks,Cs), -assert(Rc == Cred(Ks,Cc)) S->C Rs C: assert(Rs == Cred(Ks,Cs))

9.7.2. Protocol
C->S ReqChal,Cc
+S->C Cs
C & S compute session key Ks = E(PW[9..15],E(PW[0..6],Add(Cc,Cs)))
C: Rc = Cred(Ks,Cc)
+C->S Authenticate,Rc
+S: Rs = Cred(Ks,Cs), assert(Rc == Cred(Ks,Cc))
+S->C Rs
+C: assert(Rs == Cred(Ks,Cs))

On joining the domain the client will optionally attempt to change its password and the domain controller may refuse to update it depending on registry settings. This will also occur weekly afterwards.

C: Tc = Time(), Rc' = Cred(Ks,Rc+Tc) C->S ServerPasswordSet,Rc',Tc, -arc4(Ks[0..7,16],lmowf(randompassword()) C: Rc = Cred(Ks,Rc+Tc+1) S: -assert(Rc' == Cred(Ks,Rc+Tc)), Ts = Time() S: Rs' = Cred(Ks,Rs+Tc+1) -S->C Rs',Ts C: assert(Rs' == Cred(Ks,Rs+Tc+1)) S: Rs = Rs'

C: Tc = Time(), Rc' = Cred(Ks,Rc+Tc)
+C->S ServerPasswordSet,Rc',Tc,arc4(Ks[0..7,16],lmowf(randompassword())
+C: Rc = Cred(Ks,Rc+Tc+1)
+S: assert(Rc' == Cred(Ks,Rc+Tc)), Ts = Time()
+S: Rs' = Cred(Ks,Rs+Tc+1)
+S->C Rs',Ts
+C: assert(Rs' == Cred(Ks,Rs+Tc+1))
+S: Rs = Rs'

User: U with password P wishes to login to the domain (incidental data such as workstation and domain omitted)

C: Tc = Time(), Rc' = Cred(Ks,Rc+Tc) C->S NetLogonSamLogon,Rc',Tc,U, -arc4(Ks[0..7,16],16,ntowf(P),16), arc4(Ks[0..7,16],16,lmowf(P),16) S: -assert(Rc' == Cred(Ks,Rc+Tc)) assert(passwords match those in SAM) S: -Ts = Time()

S->C Cred(Ks,Cred(Ks,Rc+Tc+1)),userinfo(logon script,UID,SIDs,etc) C: -assert(Rs == Cred(Ks,Cred(Rc+Tc+1)) C: Rc = Cred(Ks,Rc+Tc+1)

C: Tc = Time(), Rc' = Cred(Ks,Rc+Tc)
+C->S NetLogonSamLogon,Rc',Tc,U,arc4(Ks[0..7,16],16,ntowf(P),16), arc4(Ks[0..7,16],16,lmowf(P),16)
+S: assert(Rc' == Cred(Ks,Rc+Tc)) assert(passwords match those in SAM)
+S: Ts = Time()
S->C Cred(Ks,Cred(Ks,Rc+Tc+1)),userinfo(logon script,UID,SIDs,etc)
+C: assert(Rs == Cred(Ks,Cred(Rc+Tc+1))
+C: Rc = Cred(Ks,Rc+Tc+1)
9.7.3. Comments9.7.3. Comments

On first joining the domain the session key could be computed by anyone listening in on the network as the machine password has a well @@ -7733,8 +7748,8 @@ CLASS="SECT1" CLASS="SECT1" >9.8. SIDs and RIDs9.8. SIDs and RIDs

SIDs and RIDs are well documented elsewhere.

9.8.1. Well-known SIDs9.8.1. Well-known SIDs

9.8.1.1. Universal well-known SIDs

9.8.1.1. Universal well-known SIDs

9.8.1.2. NT well-known SIDs9.8.1.2. NT well-known SIDs

9.8.2. Well-known RIDS9.8.2. Well-known RIDS

A RID is a sub-authority value, as part of either a SID, or in the case of Group RIDs, part of the DOM_GID structure, in the USER_INFO_1 @@ -7938,8 +7953,8 @@ CLASS="SECT3" CLASS="SECT3" >9.8.2.1. Well-known RID users9.8.2.1. Well-known RID users

Groupname: 9.8.2.2. Well-known RID groups9.8.2.2. Well-known RID groups

Groupname: 9.8.2.3. Well-known RID aliases9.8.2.3. Well-known RID aliases

Groupname: 10.1. Abstract10.1. Abstract

The purpose of this document is to provide some insight into Samba's printing functionality and also to describe the semantics @@ -8156,13 +8171,13 @@ CLASS="SECT1" CLASS="SECT1" >10.2. Printing Interface to Various Back ends10.2. Printing Interface to Various Back ends

Samba uses a table of function pointers to seven functions. The -function prototypes are defined in the printifprintif structure declared in 10.3. Print Queue TDB's10.3. Print Queue TDB's

Samba provides periodic caching of the output from the "lpq command" for performance reasons. This cache time is configurable in seconds. @@ -8274,7 +8289,7 @@ struct printjob { for the UNIX job id returned from the "lpq command" and a Windows job ID (32-bit bounded by PRINT_MAX_JOBID). When a print job is returned by the "lpq command" that does not match an existing job in the queue's -TDB, a 32-bit job ID above the <*vance doesn't know what word is missing here*> is generating by adding UNIX_JOB_START to +TDB, a 32-bit job ID above the <*vance doesn't know what word is missing here*> is generating by adding UNIX_JOB_START to the id reported by lpq.

In order to match a 32-bit Windows jobid onto a 16-bit lanman print job @@ -8294,14 +8309,12 @@ TYPE="1" >

Check to see if another smbd is currently in the process of updating the queue contents by checking the pid - stored in LOCK/LOCK/printer_nameprinter_name. If so, then do not update the TDB.

10.4. ChangeID and Client Caching of Printer Information10.4. ChangeID and Client Caching of Printer Information

[To be filled in later]

10.5. Windows NT/2K Printer Change Notify10.5. Windows NT/2K Printer Change Notify

When working with Windows NT+ clients, it is possible for a print server to use RPC to send asynchronous change notification @@ -8455,7 +8468,7 @@ C: Send a RFFPCN request with the previously obtained to monitor, or (b) a PRINTER_NOTIFY_OPTIONS structure containing the event information to monitor. The windows spooler has only been observed to use (b). -S: The <* another missing word*> opens a new TCP session to the client (thus requiring +S: The <* another missing word*> opens a new TCP session to the client (thus requiring all print clients to be CIFS servers as well) and sends a ReplyOpenPrinter() request to the client. C: The client responds with a printer handle that can be used to @@ -8533,9 +8546,9 @@ information

A A SPOOL_NOTIFY_INFOSPOOL_NOTIFY_INFO contains:

The The SPOOL_NOTIFY_INFO_DATASPOOL_NOTIFY_INFO_DATA entries contain:

11.1. WINS Failover11.1. WINS Failover

The current Samba codebase possesses the capability to use groups of WINS servers that share a common namespace for NetBIOS name registration and @@ -8620,7 +8633,7 @@ resolution. The formal parameter syntax is

	WINS_SERVER_PARAM 	= SERVER [ SEPARATOR SERVER_LIST ]
-	WINS_SERVER_PARAM 	= "wins server"
+	WINS_SERVER_PARAM 	= "wins server"
 	SERVER 			= ADDR[:TAG]
 	ADDR 			= ip_addr | fqdn
 	TAG 			= string
@@ -8637,7 +8650,7 @@ CLASS="PROGRAMLISTING"
 >

In the event that no TAG is defined in for a SERVER in the list, smbd assigns a default -TAG of "*". A TAG is used to group servers of a shared NetBIOS namespace together. Upon +TAG of "*". A TAG is used to group servers of a shared NetBIOS namespace together. Upon startup, nmbd will attempt to register the netbios name value with one server in each tagged group.

Using this configuration, nmbd would attempt to register the server's NetBIOS name -with one WINS server in each group. Because the "eth0" group has two servers, the +with one WINS server in each group. Because the "eth0" group has two servers, the second server would only be used when a registration (or resolution) request to the first server in that group timed out.

12.1. Security in the 'new SAM'12.1. Security in the 'new SAM'

One of the biggest problems with passdb is it's implementation of 'security'. Access control is on a 'are you root at the moment' basis, @@ -8752,8 +8765,8 @@ CLASS="SECT1" CLASS="SECT1" >12.2. Standalone from UNIX12.2. Standalone from UNIX

One of the primary tenants of the 'new SAM' is that it would not attempt to deal with 'what unix id for that'. This would be left to the 'SMS' @@ -8771,8 +8784,8 @@ CLASS="SECT1" CLASS="SECT1" >12.3. Handles and Races in the new SAM12.3. Handles and Races in the new SAM

One of the things that the 'new SAM' work has tried to face is both compatibility with existing code, and a closer alignment to the SAMR @@ -8814,16 +8827,16 @@ CLASS="SECT1" CLASS="SECT1" >12.4. Layers12.4. Layers

12.4.1. Application

12.4.1. Application

This is where smbd, samtest and whatever end-user replacement we have for pdbedit sits. They use only the SAM interface, and do not get @@ -8835,8 +8848,8 @@ CLASS="SECT2" CLASS="SECT2" >12.4.2. SAM Interface12.4.2. SAM Interface

This level 'owns' the various handle structures, the get/set routines on those structures and provides the public interface. The application @@ -8855,8 +8868,8 @@ CLASS="SECT2" CLASS="SECT2" >12.4.3. SAM Modules12.4.3. SAM Modules

These do not communicate with the application directly, only by setting values in the handles, and receiving requests from the interface. These @@ -8873,16 +8886,16 @@ CLASS="SECT1" CLASS="SECT1" >12.5. SAM Modules12.5. SAM Modules

12.5.1. Special Module: sam_passdb

12.5.1. Special Module: sam_passdb

In order for there to be a smooth transition, kai is writing a module that reads existing passdb backends, and translates them into SAM @@ -8896,8 +8909,8 @@ CLASS="SECT2" CLASS="SECT2" >12.5.2. sam_ads12.5.2. sam_ads

This is the first of the SAM modules to be committed to the tree - mainly because I needed to coordinate work with metze (who authored most @@ -8918,8 +8931,8 @@ CLASS="SECT1" CLASS="SECT1" >12.6. Memory Management12.6. Memory Management

The 'new SAM' development effort also concerned itself with getting a @@ -8974,8 +8987,8 @@ CLASS="SECT1" CLASS="SECT1" >12.7. Testing12.7. Testing

Testing is vital in any piece of software, and Samba is certainly no exception. In designing this new subsystem, we have taken care to ensure @@ -8994,9 +9007,9 @@ it particularly valuable.

Example useage:

$$ bin/samtest13.1. Introduction13.1. Introduction

With the development of LanManager and Windows NT compatible password encryption for Samba, it is now able @@ -9051,8 +9064,8 @@ CLASS="SECT1" CLASS="SECT1" >13.2. How does it work?13.2. How does it work?

LanManager encryption is somewhat similar to UNIX password encryption. The server uses a file containing a @@ -9116,11 +9129,11 @@ CLASS="SECT1" CLASS="SECT1" >13.3. >The smbpasswd file>The smbpasswd file

In order for Samba to participate in the above protocol it must be able to look up the 16 byte hashed values given a user name. @@ -9151,28 +9164,24 @@ CLASS="FILENAME" file use the following command:

$ $ cat /etc/passwd | mksmbpasswd.sh - > /usr/local/samba/private/smbpasswd

If you are running on a system that uses NIS, use

$ $ ypcat passwd | mksmbpasswd.sh - > /usr/local/samba/private/smbpasswd

The

username:uid:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:
-	[Account type]:LCT-<last-change-time>:Long name
+	[Account type]:LCT-<last-change-time>:Long name
 	

Although only the Although only the usernameusername, - uid, uid, XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, - [Account type] and Account type] and last-change-time last-change-time sections are significant and are looked at in the Samba code.

To set a user to have no password (not recommended), edit the file using vi, and replace the first 11 characters with the ascii text - "NO PASSWORD""NO PASSWORD" (minus the quotes).

For example, to clear the password for user bob, his smbpasswd file @@ -9333,8 +9332,8 @@ CLASS="SECT1" CLASS="SECT1" >14.1. About14.1. About

This document describes how to make use the new RPC Pluggable Modules features of Samba 3.0. This architecture was added to increase the maintainability of @@ -9348,13 +9347,13 @@ CLASS="SECT1" CLASS="SECT1" >14.2. General Overview14.2. General Overview

When an RPC call is sent to smbd, smbd tries to load a shared library by the name librpc_<pipename>.solibrpc_<pipename>.so to handle the call if it doesn't know how to handle the call internally. For instance, LSA calls are handled by .. These shared libraries should be located in the <sambaroot>/lib/rpc<sambaroot>/lib/rpc. smbd then attempts to call the rpc_pipe_init function within the shared library.

SAMBA Project DocumentationSAMBA Project DocumentationSAMBA Project Documentation

1.1. Read the man pagesObtaining and installing samba
1.2. Building the BinariesConfiguring samba
1.3. The all important step
1.4. Create the smb configuration file.
1.5. Test your config file with - testparm
1.6. Starting the smbd and nmbd
1.7. Try listing the shares available on your server
1.8. 1.4. Try connecting with the unix client
1.9. 1.5. Try connecting from a DOS, WfWg, Win9x, WinNT, Win2k, OS/2, etc... client
1.10. 1.6. What If Things Don't Work?
2.1. Discussion
2.2. Use of the "Remote Announce" parameter
2.3. Use of the "Remote Browse Sync" parameter
2.4. Use of WINS
2.5. Do NOT use more than one (1) protocol on MS Windows machines
2.6. Name Resolution Order
3.1. Introduction
3.2. Important Notes About Security
3.3. The smbpasswd Command
3.4. Plain text
3.5. TDB
3.6. LDAP
3.7. MySQL
3.8. Passdb XML plugin
5.1. Prerequisite Reading
5.2. Background
5.3. Configuring the Samba Domain Controller
5.4. Creating Machine Trust Accounts and Joining Clients to the Domain
5.5. Common Problems and Errors
5.6. System Policies and Profiles
5.7. What other help can I get?
5.8. Domain Control for Windows 9x/ME
5.9. DOMAIN_CONTROL.txt : Windows NT Domain Control & SambaDOMAIN_CONTROL.txt : Windows NT Domain Control & Samba
6.1. Prerequisite Reading
6.2. Background
6.3. What qualifies a Domain Controller on the network?
6.4. Can Samba be a Backup Domain Controller to an NT PDC?
6.5. How do I set up a Samba BDC?
7.1. Installing the required packages for Debian
7.2. Installing the required packages for RedHat
7.3. Compile Samba
7.4. Setup your /etc/krb5.conf
7.5. Create the computer account
7.6. Test your server setup
7.7. Testing with smbclient
7.8. Notes
8.1. Joining an NT Domain with Samba 3.0
8.2. Samba and Windows 2000 Domains
8.3. Why is this better than security = server?
9.1. Agenda
9.2. Name Resolution in a pure Unix/Linux world
9.3. Name resolution as used within MS Windows networking
9.4. How browsing functions and how to deploy stable and dependable browsing using Samba
9.5. MS Windows security options and how to configure Samba for seemless integration
9.6. Conclusions
10.1. Viewing and changing UNIX permissions using the NT security dialogs
10.2. How to view file security on a Samba share
10.3. Viewing file ownership
10.4. Viewing file or directory permissions
10.5. Modifying file or directory permissions
10.6. Interaction with the standard Samba create mask parameters
10.7. Interaction with the standard Samba file attribute mapping
11.1. Samba and PAM
11.2. Distributed Authentication
11.3. PAM Configuration in smb.conf
12.1. Instructions
13.1. Introduction
13.2. Configuration
13.3. The Imprints Toolset
13.4. Diagnosis
14.1. Abstract
14.2. Introduction
14.3. What Winbind Provides
14.4. How Winbind Works
14.5. Installation and Configuration
14.6. Limitations
14.7. Conclusion
15.1. Overview of browsing
15.2. Browsing support in samba
15.3. Problem resolution
15.4. Browsing across subnets
15.5. Setting up a WINS server
15.6. Setting up Browsing in a WORKGROUP
15.7. Setting up Browsing in a DOMAIN
15.8. Forcing samba to be the master
15.9. Making samba the domain master
15.10. Note about broadcast addresses
15.11. Multiple interfaces
16.1. Introduction and configuration
16.2. Included modules
16.3. VFS modules available elsewhere
17. Access Samba source code via CVS
17.1. Introduction
17.2. CVS Access to samba.org
18. Group mapping HOWTO
19. 18. Samba performance issues
19.1. 18.1. Comparisons
19.2. 18.2. Socket options
19.3. 18.3. Read size
19.4. 18.4. Max xmit
19.5. 18.5. Log level
19.6. 18.6. Read raw
19.7. 18.7. Write raw
19.8. 18.8. Slow Clients
19.9. 18.9. Slow Logins
19.10. 18.10. Client tuning
20. 19. Creating Group ProfilesCreating Group Prolicy Files
20.1. 19.1. Windows '9x
20.2. 19.2. Windows NT 4
20.3. 19.3. Windows 2000/XP
20. Securing Samba
20.1. Introduction
20.2. Using host based protection
20.3. Using interface protection
20.4. Using a firewall
20.5. Using a IPC$ share deny
20.6. Upgrading Samba
21.1. HPUX
21.2. SCO Unix
21.3. DNIX
21.4. RedHat Linux Rembrandt-II
21.5. AIX
22.1. Macintosh clients?
22.2. OS2 Client
22.3. Windows for Workgroups
22.4. Windows '95/'98
22.5. Windows 2000 Service Pack 2
23. How to compile SAMBA
23.1. Access Samba source code via CVS
23.2. Accessing the samba sources via rsync and ftp
23.3. Building the Binaries
23.4. Starting the smbd and nmbd
24. Reporting Bugs
23.1. 24.1. Introduction
23.2. 24.2. General info
23.3. 24.3. Debug levels
23.4. 24.4. Internal errors
23.5. 24.5. Attaching to a running process
23.6. 24.6. Patches
24. 25. Diagnosing your samba serverThe samba checklist
24.1. 25.1. Introduction
24.2. 25.2. Assumptions
24.3. 25.3. Tests
24.4. 25.4. Still having troubles?
1.1. Read the man pagesObtaining and installing samba
1.2. Building the Binaries
1.3. The all important step
1.4. Create the smb configuration file.
1.5. Test your config file with - testparm
1.6. Starting the smbd and nmbdConfiguring samba
1.6.1. Starting from inetd.conf1.2.1. Editing the smb.conf file
1.6.2. Alternative: starting it as a daemon1.2.2. SWAT
1.7. 1.3. Try listing the shares available on your server
1.8. 1.4. Try connecting with the unix client
1.9. 1.5. Try connecting from a DOS, WfWg, Win9x, WinNT, Win2k, OS/2, etc... client
1.10. 1.6. What If Things Don't Work?
1.10.1. Diagnosing Problems
1.10.2. 1.6.1. Scope IDs
1.10.3. Choosing the Protocol Level
1.10.4. Printing from UNIX to a Client PC
1.10.5. 1.6.2. Locking
1.10.6. Mapping Usernames
2.1. Discussion
2.2. Use of the "Remote Announce" parameter
2.3. Use of the "Remote Browse Sync" parameter
2.4. Use of WINS
2.5. Do NOT use more than one (1) protocol on MS Windows machines
2.6. Name Resolution Order
3.1. Introduction
3.2. Important Notes About Security
3.2.1. Advantages of SMB Encryption
3.2.2. Advantages of non-encrypted passwords
3.3. The smbpasswd Command
3.4. Plain text
3.5. TDB
3.6. LDAP
3.6.1. Introduction
3.6.2. Introduction
3.6.3. Supported LDAP Servers
3.6.4. Schema and Relationship to the RFC 2307 posixAccount
3.6.5. Configuring Samba with LDAP
3.6.6. Accounts and Groups management
3.6.7. Security and sambaAccount
3.6.8. LDAP specials attributes for sambaAccounts
3.6.9. Example LDIF Entries for a sambaAccount
3.7. MySQL
3.7.1. Building
3.7.2. Creating the database
3.7.3. Configuring
3.7.4. Using plaintext passwords or encrypted password
3.7.5. Getting non-column data from the table
3.8. Passdb XML plugin
3.8.1. Building
3.8.2. Usage
1.1. Read the man pages

The man pages distributed with SAMBA contain - lots of useful info that will help to get you started. - If you don't know how to read man pages then try - something like:

1.1. Obtaining and installing samba

$ man smbd.8Binary packages of samba are included in almost any Linux or + Unix distribution. There are also some packages available at + the samba homepage - or - $ nroff -man smbd.8 | more - on older unixes.

Other sources of information are pointed to - by the Samba web site, http://www.samba.org

If you need to compile samba from source, check the + appropriate appendix chapter.


1.2. Building the Binaries

1.2. Configuring samba

To do this, first run the program ./configure - in the source directory. This should automatically - configure Samba for your operating system. If you have unusual - needs then you may wish to run

Samba's configuration is stored in the smb.conf file, + that usually resides in /etc/samba/smb.conf + or /usr/local/samba/lib/smb.conf. You can either + edit this file yourself or do it using one of the many graphical + tools that are available, such as the web-based interface swat, that + is included with samba.


1.2.1. Editing the smb.conf file

root# ./configure --help -

There are sample configuration files in the examples + subdirectory in the distribution. I suggest you read them + carefully so you can see how the options go together in + practice. See the man page for all the options.

first to see what special options you can enable. - Then executing

The simplest useful configuration file would be + something like this:

root# make

	[global]
+	   workgroup = MYGROUP
+
+	   [homes]
+	      guest ok = no
+	      read only = no
+	

will create the binaries. Once it's successfully - compiled you can use

which would allow connections by anyone with an + account on the server, using either their login name or + "homes" as the service name. (Note that I also set the + workgroup that Samba is part of. See BROWSING.txt for details)

root# make install

to install the binaries and manual pages. You can - separately install the binaries and/or man pages using

root# make installbin -

and

root# make installman -

Note that if you are upgrading for a previous version - of Samba you might like to know that the old versions of - the binaries will be renamed with a ".old" extension. You - can go back to the previous version with

root# make revert -

if you find this version a disaster!


1.3. The all important step

At this stage you must fetch yourself a - coffee or other drink you find stimulating. Getting the rest - of the install right can sometimes be tricky, so you will - probably need it.

If you have installed samba before then you can skip - this step.


1.4. Create the smb configuration file.

There are sample configuration files in the examples - subdirectory in the distribution. I suggest you read them - carefully so you can see how the options go together in - practice. See the man page for all the options.

The simplest useful configuration file would be - something like this:

	[global]
-	   workgroup = MYGROUP
-
-	   [homes]
-	      guest ok = no
-	      read only = no
-	

which would allow connections by anyone with an - account on the server, using either their login name or - "homes" as the service name. (Note that I also set the - workgroup that Samba is part of. See BROWSING.txt for details)

Note that Note that make install will not install a

For more information about security settings for the [homes] share please refer to the document UNIX_SECURITY.txt.



1.5. Test your config file with +NAME="AEN50" +>1.2.1.1. Test your config file with testparm

It's important that you test the validity of your smb.conf!


1.2.2. SWAT

SWAT is a web-based interface that helps you configure samba. + SWAT might not be available in the samba package on your platform, + but in a seperate package. Please read the swat manpage + on compiling, installing and configuring swat from source. +

To launch SWAT just run your favorite web browser and + point it at "http://localhost:901/". Replace localhost with the name of the computer you are running samba on if you + are running samba on a different computer then your browser.

Note that you can attach to SWAT from any IP connected + machine but connecting from a remote machine leaves your + connection open to password sniffing as passwords will be sent + in the clear over the wire.


1.6. Starting the smbd and nmbd

1.3. Try listing the shares available on your + server

You must choose to start smbd and nmbd either - as daemons or from inetd. Don't try - to do both! Either you can put them in inetd.conf and have them started on demand - by inetd, or you can start them as - daemons either from the command line or in /etc/rc.local. See the man pages for details - on the command line options. Take particular care to read - the bit about what user you need to be in order to start - Samba. In many cases you must be root.

$ smbclient -L + yourhostname

The main advantage of starting smbd - and You should get back a list of shares available on + your server. If you don't then something is incorrectly setup. + Note that this method can also be used to see what shares + are available on other LanManager clients (such as WfWg).

If you choose user level security then you may find + that Samba requests a password before it will list the shares. + See the nmbd using the recommended daemon method - is that they will respond slightly more quickly to an initial connection - request.

smbclient man page for details. (you + can force it to list the shares without a password by + adding the option -U% to the command line. This will not work + with non-Samba servers)



1.6.1. Starting from inetd.conf

1.4. Try connecting with the unix client

NOTE; The following will be different if - you use NIS or NIS+ to distributed services maps.

$ smbclient //yourhostname/aservice

Look at your Typically the yourhostname + would be the name of the host where you installed smbd. The aservice is + any service you have defined in the /etc/services. - What is defined at port 139/tcp. If nothing is defined - then add a line like this:

smb.conf + file. Try your user name if you just have a [homes] section + in smb.conf.

For example if your unix host is bambi and your login + name is fred you would type:

$ netbios-ssn 139/tcpsmbclient //bambi/fred +


1.5. Try connecting from a DOS, WfWg, Win9x, WinNT, + Win2k, OS/2, etc... client

similarly for 137/udp you should have an entry like:

Try mounting disks. eg:

C:\WINDOWS\> netbios-ns 137/udpnet use d: \\servername\service +

Next edit your /etc/inetd.conf - and add two lines something like this:

Try printing. eg:

		netbios-ssn stream tcp nowait root /usr/local/samba/bin/smbd smbd 
-		netbios-ns dgram udp wait root /usr/local/samba/bin/nmbd nmbd 
-		
C:\WINDOWS\> net use lpt1: + \\servername\spoolservice

The exact syntax of /etc/inetd.conf - varies between unixes. Look at the other entries in inetd.conf - for a guide.

C:\WINDOWS\> print filename +

NOTE: Some unixes already have entries like netbios_ns - (note the underscore) in /etc/services. - You must either edit /etc/services or - /etc/inetd.conf to make them consistent.

Celebrate, or send me a bug report!


1.6. What If Things Don't Work?

NOTE: On many systems you may need to use the - "interfaces" option in smb.conf to specify the IP address - and netmask of your interfaces. Run ifconfig - as root if you don't know what the broadcast is for your - net. nmbd tries to determine it at run - time, but fails on some unixes. See the section on "testing nmbd" - for a method of finding if you need to do this.

Then you might read the file HOWTO chapter Diagnosis and the + FAQ. If you are still stuck then try the mailing list or + newsgroup (look in the README for details). Samba has been + successfully installed at thousands of sites worldwide, so maybe + someone else has hit your problem and has overcome it. You could + also use the WWW site to scan back issues of the samba-digest.

!!!WARNING!!! Many unixes only accept around 5 - parameters on the command line in inetd.conf. - This means you shouldn't use spaces between the options and - arguments, or you should use a script, and start the script - from inetd.

When you fix the problem please send some + updates of the documentation (or source code) to one of + the documentation maintainers or the list. +


1.6.1. Scope IDs

Restart inetd, perhaps just send - it a HUP. If you have installed an earlier version of nmbd then you may need to kill nmbd as well.

By default Samba uses a blank scope ID. This means + all your windows boxes must also have a blank scope ID. + If you really want to use a non-blank scope ID then you will + need to use the 'netbios scope' smb.conf option. + All your PCs will need to have the same setting for + this to work. I do not recommend scope IDs.


1.6.2. Alternative: starting it as a daemon

1.6.2. Locking

To start the server as a daemon you should create - a script something like this one, perhaps calling - it startsmb.

One area which sometimes causes trouble is locking.

		#!/bin/sh
-		/usr/local/samba/bin/smbd -D 
-		/usr/local/samba/bin/nmbd -D 
-		

There are two types of locking which need to be + performed by a SMB server. The first is "record locking" + which allows a client to lock a range of bytes in a open file. + The second is the "deny modes" that are specified when a file + is open.

then make it executable with chmod - +x startsmb

Record locking semantics under Unix is very + different from record locking under Windows. Versions + of Samba before 2.2 have tried to use the native + fcntl() unix system call to implement proper record + locking between different Samba clients. This can not + be fully correct due to several reasons. The simplest + is the fact that a Windows client is allowed to lock a + byte range up to 2^32 or 2^64, depending on the client + OS. The unix locking only supports byte ranges up to + 2^31. So it is not possible to correctly satisfy a + lock request above 2^31. There are many more + differences, too many to be listed here.

You can then run startsmb by - hand or execute it from /etc/rc.local -

Samba 2.2 and above implements record locking + completely independent of the underlying unix + system. If a byte range lock that the client requests + happens to fall into the range 0-2^31, Samba hands + this request down to the Unix system. All other locks + can not be seen by unix anyway.

To kill it send a kill signal to the processes - nmbd and smbd.

Strictly a SMB server should check for locks before + every read and write call on a file. Unfortunately with the + way fcntl() works this can be slow and may overstress the + rpc.lockd. It is also almost always unnecessary as clients + are supposed to independently make locking calls before reads + and writes anyway if locking is important to them. By default + Samba only makes locking calls when explicitly asked + to by a client, but if you set "strict locking = yes" then it will + make lock checking calls on every read and write.

NOTE: If you use the SVR4 style init system then - you may like to look at the examples/svr4-startup - script to make Samba fit into that system.

You can also disable by range locking completely + using "locking = no". This is useful for those shares that + don't support locking or don't need it (such as cdroms). In + this case Samba fakes the return codes of locking calls to + tell clients that everything is OK.

The second class of locking is the "deny modes". These + are set by an application when it opens a file to determine + what types of access should be allowed simultaneously with + its open. A client may ask for DENY_NONE, DENY_READ, DENY_WRITE + or DENY_ALL. There are also special compatibility modes called + DENY_FCB and DENY_DOS.



1.7. Try listing the shares available on your - server

$ smbclient -L - yourhostname

Chapter 2. Quick Cross Subnet Browsing / Cross Workgroup Browsing guide

You should get back a list of shares available on - your server. If you don't then something is incorrectly setup. - Note that this method can also be used to see what shares - are available on other LanManager clients (such as WfWg).

This document should be read in conjunction with Browsing and may +be taken as the fast track guide to implementing browsing across subnets +and / or across workgroups (or domains). WINS is the best tool for resolution +of NetBIOS names to IP addesses. WINS is NOT involved in browse list handling +except by way of name to address mapping.

If you choose user level security then you may find - that Samba requests a password before it will list the shares. - See the smbclient man page for details. (you - can force it to list the shares without a password by - adding the option -U% to the command line. This will not work - with non-Samba servers)

Note: MS Windows 2000 and later can be configured to operate with NO NetBIOS +over TCP/IP. Samba-3 and later also supports this mode of operation.


1.8. Try connecting with the unix client

2.1. Discussion

$ smbclient //yourhostname/aservice

Firstly, all MS Windows networking is based on SMB (Server Message +Block) based messaging. SMB messaging may be implemented using NetBIOS or +without NetBIOS. Samba implements NetBIOS by encapsulating it over TCP/IP. +MS Windows products can do likewise. NetBIOS based networking uses broadcast +messaging to affect browse list management. When running NetBIOS over +TCP/IP this uses UDP based messaging. UDP messages can be broadcast or unicast.

Typically the yourhostname - would be the name of the host where you installed smbd. The aservice is - any service you have defined in the smb.conf - file. Try your user name if you just have a [homes] section - in smb.conf.

Normally, only unicast UDP messaging can be forwarded by routers. The +"remote announce" parameter to smb.conf helps to project browse announcements +to remote network segments via unicast UDP. Similarly, the "remote browse sync" +parameter of smb.conf implements browse list collation using unicast UDP.

For example if your unix host is bambi and your login - name is fred you would type:

Secondly, in those networks where Samba is the only SMB server technology +wherever possible nmbd should be configured on one (1) machine as the WINS +server. This makes it easy to manage the browsing environment. If each network +segment is configured with it's own Samba WINS server, then the only way to +get cross segment browsing to work is by using the "remote announce" and +the "remote browse sync" parameters to your smb.conf file.

$ smbclient //bambi/fred -

If only one WINS server is used for an entire multi-segment network then +the use of the "remote announce" and the "remote browse sync" parameters +should NOT be necessary.

As of Samba-3 WINS replication is being worked on. The bulk of the code has +been committed, but it still needs maturation.

Right now samba WINS does not support MS-WINS replication. This means that +when setting up Samba as a WINS server there must only be one nmbd configured +as a WINS server on the network. Some sites have used multiple Samba WINS +servers for redundancy (one server per subnet) and then used "remote browse +sync" and "remote announce" to affect browse list collation across all +segments. Note that this means clients will only resolve local names, +and must be configured to use DNS to resolve names on other subnets in +order to resolve the IP addresses of the servers they can see on other +subnets. This setup is not recommended, but is mentioned as a practical +consideration (ie: an 'if all else fails' scenario).

Lastly, take note that browse lists are a collection of unreliable broadcast +messages that are repeated at intervals of not more than 15 minutes. This means +that it will take time to establish a browse list and it can take up to 45 +minutes to stabilise, particularly across network segments.


1.9. Try connecting from a DOS, WfWg, Win9x, WinNT, - Win2k, OS/2, etc... client

Try mounting disks. eg:

C:\WINDOWS\> net use d: \\servername\service -

Try printing. eg:

C:\WINDOWS\> net use lpt1: - \\servername\spoolservice

C:\WINDOWS\> print filename -

Celebrate, or send me a bug report!


1.10. What If Things Don't Work?

If nothing works and you start to think "who wrote - this pile of trash" then I suggest you do step 2 again (and - again) till you calm down.

Then you might read the file DIAGNOSIS.txt and the - FAQ. If you are still stuck then try the mailing list or - newsgroup (look in the README for details). Samba has been - successfully installed at thousands of sites worldwide, so maybe - someone else has hit your problem and has overcome it. You could - also use the WWW site to scan back issues of the samba-digest.

When you fix the problem PLEASE send me some updates to the - documentation (or source code) so that the next person will find it - easier.


1.10.1. Diagnosing Problems

If you have installation problems then go to the - Diagnosis chapter to try to find the - problem.


1.10.2. Scope IDs

By default Samba uses a blank scope ID. This means - all your windows boxes must also have a blank scope ID. - If you really want to use a non-blank scope ID then you will - need to use the 'netbios scope' smb.conf option. - All your PCs will need to have the same setting for - this to work. I do not recommend scope IDs.


1.10.3. Choosing the Protocol Level

The SMB protocol has many dialects. Currently - Samba supports 5, called CORE, COREPLUS, LANMAN1, - LANMAN2 and NT1.

You can choose what maximum protocol to support - in the smb.conf file. The default is - NT1 and that is the best for the vast majority of sites.

In older versions of Samba you may have found it - necessary to use COREPLUS. The limitations that led to - this have mostly been fixed. It is now less likely that you - will want to use less than LANMAN1. The only remaining advantage - of COREPLUS is that for some obscure reason WfWg preserves - the case of passwords in this protocol, whereas under LANMAN1, - LANMAN2 or NT1 it uppercases all passwords before sending them, - forcing you to use the "password level=" option in some cases.

The main advantage of LANMAN2 and NT1 is support for - long filenames with some clients (eg: smbclient, Windows NT - or Win95).

See the smb.conf(5) manual page for more details.

Note: To support print queue reporting you may find - that you have to use TCP/IP as the default protocol under - WfWg. For some reason if you leave Netbeui as the default - it may break the print queue reporting on some systems. - It is presumably a WfWg bug.


1.10.4. Printing from UNIX to a Client PC

To use a printer that is available via a smb-based - server from a unix host with LPR you will need to compile the - smbclient program. You then need to install the script - "smbprint". Read the instruction in smbprint for more details. -

There is also a SYSV style script that does much - the same thing called smbprint.sysv. It contains instructions.

See the CUPS manual for information about setting up - printing from a unix host with CUPS to a smb-based server.


1.10.5. Locking

One area which sometimes causes trouble is locking.

There are two types of locking which need to be - performed by a SMB server. The first is "record locking" - which allows a client to lock a range of bytes in a open file. - The second is the "deny modes" that are specified when a file - is open.

Record locking semantics under Unix is very - different from record locking under Windows. Versions - of Samba before 2.2 have tried to use the native - fcntl() unix system call to implement proper record - locking between different Samba clients. This can not - be fully correct due to several reasons. The simplest - is the fact that a Windows client is allowed to lock a - byte range up to 2^32 or 2^64, depending on the client - OS. The unix locking only supports byte ranges up to - 2^31. So it is not possible to correctly satisfy a - lock request above 2^31. There are many more - differences, too many to be listed here.

Samba 2.2 and above implements record locking - completely independent of the underlying unix - system. If a byte range lock that the client requests - happens to fall into the range 0-2^31, Samba hands - this request down to the Unix system. All other locks - can not be seen by unix anyway.

Strictly a SMB server should check for locks before - every read and write call on a file. Unfortunately with the - way fcntl() works this can be slow and may overstress the - rpc.lockd. It is also almost always unnecessary as clients - are supposed to independently make locking calls before reads - and writes anyway if locking is important to them. By default - Samba only makes locking calls when explicitly asked - to by a client, but if you set "strict locking = yes" then it will - make lock checking calls on every read and write.

You can also disable by range locking completely - using "locking = no". This is useful for those shares that - don't support locking or don't need it (such as cdroms). In - this case Samba fakes the return codes of locking calls to - tell clients that everything is OK.

The second class of locking is the "deny modes". These - are set by an application when it opens a file to determine - what types of access should be allowed simultaneously with - its open. A client may ask for DENY_NONE, DENY_READ, DENY_WRITE - or DENY_ALL. There are also special compatibility modes called - DENY_FCB and DENY_DOS.


1.10.6. Mapping Usernames

If you have different usernames on the PCs and - the unix server then take a look at the "username map" option. - See the smb.conf man page for details.


Chapter 2. Quick Cross Subnet Browsing / Cross Workgroup Browsing guide

This document should be read in conjunction with Browsing and may -be taken as the fast track guide to implementing browsing across subnets -and / or across workgroups (or domains). WINS is the best tool for resolution -of NetBIOS names to IP addesses. WINS is NOT involved in browse list handling -except by way of name to address mapping.


2.1. Discussion

Firstly, all MS Windows networking is based on SMB (Server Message -Block) based messaging. SMB messaging is implemented using NetBIOS. Samba -implements NetBIOS by encapsulating it over TCP/IP. MS Windows products can -do likewise. NetBIOS based networking uses broadcast messaging to affect -browse list management. When running NetBIOS over TCP/IP this uses UDP -based messaging. UDP messages can be broadcast or unicast.

Normally, only unicast UDP messaging can be forwarded by routers. The -"remote announce" parameter to smb.conf helps to project browse announcements -to remote network segments via unicast UDP. Similarly, the "remote browse sync" -parameter of smb.conf implements browse list collation using unicast UDP.

Secondly, in those networks where Samba is the only SMB server technology -wherever possible nmbd should be configured on one (1) machine as the WINS -server. This makes it easy to manage the browsing environment. If each network -segment is configured with it's own Samba WINS server, then the only way to -get cross segment browsing to work is by using the "remote announce" and -the "remote browse sync" parameters to your smb.conf file.

If only one WINS server is used then the use of the "remote announce" and the -"remote browse sync" parameters should NOT be necessary.

Samba WINS does not support MS-WINS replication. This means that when setting up -Samba as a WINS server there must only be one nmbd configured as a WINS server -on the network. Some sites have used multiple Samba WINS servers for redundancy -(one server per subnet) and then used "remote browse sync" and "remote announce" -to affect browse list collation across all segments. Note that this means -clients will only resolve local names, and must be configured to use DNS to -resolve names on other subnets in order to resolve the IP addresses of the -servers they can see on other subnets. This setup is not recommended, but is -mentioned as a practical consideration (ie: an 'if all else fails' scenario).

Lastly, take note that browse lists are a collection of unreliable broadcast -messages that are repeated at intervals of not more than 15 minutes. This means -that it will take time to establish a browse list and it can take up to 45 -minutes to stabilise, particularly across network segments.


2.2. Use of the "Remote Announce" parameter

2.2. Use of the "Remote Announce" parameter

The "remote announce" parameter of smb.conf can be used to forcibly ensure that all the NetBIOS names on a network get announced to a remote network. @@ -2225,9 +1821,9 @@ CLASS="SECT1" >


2.3. Use of the "Remote Browse Sync" parameter

2.3. Use of the "Remote Browse Sync" parameter

The "remote browse sync" parameter of smb.conf is used to announce to another LMB that it must synchronise it's NetBIOS name list with our @@ -2248,9 +1844,9 @@ CLASS="SECT1" >


2.4. Use of WINS

2.4. Use of WINS

Use of WINS (either Samba WINS _or_ MS Windows NT Server WINS) is highly recommended. Every NetBIOS machine registers it's name together with a @@ -2302,22 +1898,23 @@ CLASS="emphasis" CLASS="EMPHASIS" >DO NOT EVER use both "wins support = yes" together with "wins server = a.b.c.d" -particularly not using it's own IP address.

use both "wins support = yes" together +with "wins server = a.b.c.d" particularly not using it's own IP address. +Specifying both will cause nmbd to refuse to start!


2.5. Do NOT use more than one (1) protocol on MS Windows machines

2.5. Do NOT use more than one (1) protocol on MS Windows machines

A very common cause of browsing problems results from installing more than one protocol on an MS Windows machine.

Every NetBIOS machine take part in a process of electing the LMB (and DMB) +>Every NetBIOS machine takes part in a process of electing the LMB (and DMB) every 15 minutes. A set of election criteria is used to determine the order of precidence for winning this election process. A machine running Samba or Windows NT will be biased so that the most suitable machine will predictably @@ -2333,6 +1930,19 @@ interface over the IPX protocol. Samba will then lose the LMB role as Windows as an LMB and thus browse list operation on all TCP/IP only machines will fail.

Windows 95, 98, 98se, Me are referred to generically as Windows 9x. +The Windows NT4, 2000, XP and 2003 use common protocols. These are roughly +referred to as the WinNT family, but it should be recognised that 2000 and +XP/2003 introduce new protocol extensions that cause them to behave +differently from MS Windows NT4. Generally, where a server does NOT support +the newer or extended protocol, these will fall back to the NT4 protocols.

The safest rule of all to follow it this - USE ONLY ONE PROTOCOL!


2.6. Name Resolution Order

2.6. Name Resolution Order

Resolution of NetBIOS names to IP addresses can take place using a number of methods. The only ones that can provide NetBIOS name_type information @@ -2431,9 +2041,9 @@ CLASS="SECT1" >

3.1. Introduction

3.1. Introduction

Old windows clients send plain text passwords over the wire. Samba can check these passwords by crypting them and comparing them @@ -2472,9 +2082,9 @@ CLASS="SECT1" >


3.2. Important Notes About Security

3.2. Important Notes About Security

The unix and SMB password encryption techniques seem similar on the surface. This similarity is, however, only skin deep. The unix @@ -2580,9 +2190,9 @@ CLASS="SECT2" >


3.2.1. Advantages of SMB Encryption

3.2.1. Advantages of SMB Encryption


3.2.2. Advantages of non-encrypted passwords

3.2.2. Advantages of non-encrypted passwords


3.3. The smbpasswd Command

3.3. The smbpasswd Command

The smbpasswd utility is a utility similar to the

To run smbpasswd as a normal user just type :

$ $ smbpasswdsmbpasswd

Old SMB password: Old SMB password: <type old value here - - or hit return if there was no old password><type old value here - + or hit return if there was no old password>

New SMB Password: New SMB Password: <type new value> - <type new value> +

Repeat New SMB Password: Repeat New SMB Password: <re-type new value - <re-type new value +

If the old value does not match the current value stored for @@ -2762,9 +2364,9 @@ CLASS="SECT1" >


3.4. Plain text

3.4. Plain text

Older versions of samba retrieved user information from the unix user database and eventually some other fields from the file


3.5. TDB

3.5. TDB

Samba can also store the user data in a "TDB" (Trivial Database). Using this backend doesn't require any additional configuration. This backend is recommended for new installations who @@ -2795,17 +2397,17 @@ CLASS="SECT1" >


3.6. LDAP

3.6. LDAP

3.6.1. Introduction

3.6.1. Introduction

This document describes how to use an LDAP directory for storing Samba user account information traditionally stored in the smbpasswd(5) file. It is @@ -2871,9 +2473,9 @@ CLASS="SECT2" >


3.6.2. Introduction

3.6.2. Introduction

Traditionally, when configuring --with-ldapsam--with-ldapsam or ---with-tdbsam--with-tdbsam) requires compile time support.

When compiling Samba to include the When compiling Samba to include the --with-ldapsam--with-ldapsam autoconf option, smbd (and associated tools) will store and lookup user accounts in an LDAP directory. In reality, this is very easy to understand. If you are comfortable with using an smbpasswd file, simply replace "smbpasswd" with "LDAP directory" in all the documentation.

There are a few points to stress about what the There are a few points to stress about what the --with-ldapsam--with-ldapsam does not provide. The LDAP support referred to in the this documentation does not include:


3.6.3. Supported LDAP Servers

3.6.3. Supported LDAP Servers

The LDAP samdb code in 2.2.3 has been developed and tested using the OpenLDAP 2.0 server and client libraries. The same code should be able to work with @@ -3013,9 +2607,9 @@ CLASS="SECT2" >


3.6.4. Schema and Relationship to the RFC 2307 posixAccount

3.6.4. Schema and Relationship to the RFC 2307 posixAccount

Samba 3.0 includes the necessary schema file for OpenLDAP 2.0 in /etc/passwd entry, so is the sambaAccount object meant to supplement the UNIX user account information. A sambaAccount is a -STRUCTURALSTRUCTURAL objectclass so it can be stored individually in the directory. However, there are several fields (e.g. uid) which overlap with the posixAccount objectclass outlined in RFC2307. This is by design.


3.6.5. Configuring Samba with LDAP

3.6.5. Configuring Samba with LDAP

3.6.5.1. OpenLDAP configuration

3.6.5.1. OpenLDAP configuration

To include support for the sambaAccount object in an OpenLDAP directory server, first copy the samba.schema file to slapd's configuration directory.

root# root# cp samba.schema /etc/openldap/schema/


3.6.5.2. Configuring Samba

3.6.5.2. Configuring Samba

The following parameters are available in smb.conf only with The following parameters are available in smb.conf only with --with-ldapsam--with-ldapsam was included with compiling Samba.

secretpwsecretpw' to store the # passphrase in the secrets.tdb file. If the "ldap admin dn" values # changes, this password will need to be reset. @@ -3271,7 +2861,7 @@ CLASS="REPLACEABLE" ldap suffix = "ou=people,dc=samba,dc=org" # generally the default ldap search filter is ok - # ldap filter = "(&(uid=%u)(objectclass=sambaAccount))"


3.6.6. Accounts and Groups management

3.6.6. Accounts and Groups management

As users accounts are managed thru the sambaAccount objectclass, you should modify you existing administration tools to deal with sambaAccount attributes.


3.6.7. Security and sambaAccount

3.6.7. Security and sambaAccount

There are two important points to remember when discussing the security of sambaAccount entries in the directory.


3.6.8. LDAP specials attributes for sambaAccounts

3.6.8. LDAP specials attributes for sambaAccounts

The sambaAccount objectclass is composed of the following attributes:

  • lmPasswordlmPassword: the LANMAN password 16-byte hash stored as a character representation of a hexidecimal string.

  • ntPasswordntPassword: the NT password hash 16-byte stored as a character representation of a hexidecimal string.

  • pwdLastSetpwdLastSet: The integer time in seconds since 1970 when the - lmPassword and lmPassword and ntPasswordntPassword attributes were last set.

  • acctFlagsacctFlags: string of 11 characters surrounded by square brackets [] representing account flags such as U (user), W(workstation), X(no password expiration), and D(disabled).

  • logonTimelogonTime: Integer value currently unused

  • logoffTimelogoffTime: Integer value currently unused

  • kickoffTimekickoffTime: Integer value currently unused

  • pwdCanChangepwdCanChange: Integer value currently unused

  • pwdMustChangepwdMustChange: Integer value currently unused

  • homeDrivehomeDrive: specifies the drive letter to which to map the UNC path specified by homeDirectory. The drive letter must be specified in the form "X:" where X is the letter of the drive to map. Refer to the "logon drive" parameter in the @@ -3479,9 +3069,9 @@ CLASS="CONSTANT" >

  • scriptPathscriptPath: The scriptPath property specifies the path of the user's logon script, .CMD, .EXE, or .BAT file. The string can be null. The path is relative to the netlogon share. Refer to the "logon script" parameter in the @@ -3489,18 +3079,18 @@ CLASS="CONSTANT" >

  • profilePathprofilePath: specifies a path to the user's profile. This value can be a null string, a local absolute path, or a UNC path. Refer to the "logon path" parameter in the smb.conf(5) man page for more information.

  • smbHomesmbHome: The homeDirectory property specifies the path of the home directory for the user. The string can be null. If homeDrive is set and specifies a drive letter, homeDirectory should be a UNC path. The path must be a network @@ -3510,25 +3100,25 @@ CLASS="CONSTANT" >

  • userWorkstationuserWorkstation: character string value currently unused.

  • ridrid: the integer representation of the user's relative identifier (RID).

  • primaryGroupIDprimaryGroupID: the relative identifier (RID) of the primary group of the user.

  • smb.conf
    file. When a user named "becky" logons to the domain, -the logon homelogon home string is expanded to \\TASHTEGO\becky. If the smbHome attribute exists in the entry "uid=becky,ou=people,dc=samba,dc=org", this value is used. However, if this attribute does not exist, then the value -of the logon homelogon home parameter is used in its place. Samba will only write the attribute value to the directory entry is the value is something other than the default (e.g. \\MOBY\becky).


    3.6.9. Example LDIF Entries for a sambaAccount

    3.6.9. Example LDIF Entries for a sambaAccount

    The following is a working LDIF with the inclusion of the posixAccount objectclass:


    3.7. MySQL

    3.7. MySQL

    3.7.1. Building

    3.7.1. Building

    To build the plugin, run


    3.7.2. Creating the database

    3.7.2. Creating the database

    You either can set up your own table and specify the field names to pdb_mysql (see below for the column names) or use the default table. The file mysql -umysql -uusername -husername -hhostname -phostname -ppassword password databasenamedatabasename < /path/to/samba/examples/pdb/mysql/mysql.dump


    3.7.3. Configuring

    3.7.3. Configuring

    This plugin lacks some good documentation, but here is some short info:


    3.7.4. Using plaintext passwords or encrypted password

    3.7.4. Using plaintext passwords or encrypted password

    I strongly discourage the use of plaintext passwords, however, you can use them:


    3.7.5. Getting non-column data from the table

    3.7.5. Getting non-column data from the table

    It is possible to have not all data in the database and making some 'constant'.


    3.8. Passdb XML plugin

    3.8. Passdb XML plugin

    3.8.1. Building

    3.8.1. Building

    This module requires libxml2 to be installed.


    3.8.2. Usage

    3.8.2. Usage

    The usage of pdb_xml is pretty straightforward. To export data, use: @@ -3944,7 +3522,7 @@ CLASS="TITLE" >

    Introduction

    5.1. Prerequisite Reading
    5.2. Background
    5.3. Configuring the Samba Domain Controller
    5.4. Creating Machine Trust Accounts and Joining Clients to the Domain
    5.4.1. Manual Creation of Machine Trust Accounts
    5.4.2. "On-the-Fly" Creation of Machine Trust Accounts
    5.4.3. Joining the Client to the Domain
    5.5. Common Problems and Errors
    5.6. System Policies and Profiles
    5.7. What other help can I get?
    5.8. Domain Control for Windows 9x/ME
    5.8.1. Configuration Instructions: Network Logons
    5.8.2. Configuration Instructions: Setting up Roaming User Profiles
    5.9. DOMAIN_CONTROL.txt : Windows NT Domain Control & SambaDOMAIN_CONTROL.txt : Windows NT Domain Control & Samba
    6.1. Prerequisite Reading
    6.2. Background
    6.3. What qualifies a Domain Controller on the network?
    6.3.1. How does a Workstation find its domain controller?
    6.3.2. When is the PDC needed?
    6.4. Can Samba be a Backup Domain Controller to an NT PDC?
    6.5. How do I set up a Samba BDC?
    6.5.1. How do I replicate the smbpasswd file?
    6.5.2. Can I do this all with LDAP?
    7.1. Installing the required packages for Debian
    7.2. Installing the required packages for RedHat
    7.3. Compile Samba
    7.4. Setup your /etc/krb5.conf
    7.5. Create the computer account
    7.5.1. Possible errors
    7.6. Test your server setup
    7.7. Testing with smbclient
    7.8. Notes
    8.1. Joining an NT Domain with Samba 3.0
    8.2. Samba and Windows 2000 Domains
    8.3. Why is this better than security = server?

    5.1. Prerequisite Reading

    5.1. Prerequisite Reading

    Before you continue reading in this chapter, please make sure that you are comfortable with configuring basic files services @@ -4339,9 +3917,9 @@ CLASS="SECT1" >


    5.2. Background

    5.2. Background


    5.3. Configuring the Samba Domain Controller

    5.3. Configuring the Samba Domain Controller

    The first step in creating a working Samba PDC is to understand the parameters necessary in smb.conf. I will not @@ -4519,21 +4097,17 @@ CLASS="PROGRAMLISTING" HREF="smb.conf.5.html#NETBIOSNAME" TARGET="_top" >netbios name = = POGOPOGO workgroup = = NARNIANARNIA ; we should act as the domain and local master browser @@ -4623,11 +4197,9 @@ TARGET="_top" HREF="smb.conf.5.html#WRITELIST" TARGET="_top" >write list = = ntadminntadmin ; share for storing user profiles @@ -4703,10 +4275,10 @@ CLASS="SECT1" >


    5.4. Creating Machine Trust Accounts and Joining Clients to the -Domain

    A machine trust account is a Samba account that is used to authenticate a client machine (rather than a user) to the Samba @@ -4777,9 +4349,9 @@ CLASS="SECT2" >


    5.4.1. Manual Creation of Machine Trust Accounts

    5.4.1. Manual Creation of Machine Trust Accounts

    The first step in manually creating a machine trust account is to manually create the corresponding Unix account in @@ -4794,55 +4366,45 @@ CLASS="COMMAND" used to create new Unix accounts. The following is an example for a Linux based Samba server:

    root# root# /usr/sbin/useradd -g 100 -d /dev/null -c /usr/sbin/useradd -g 100 -d /dev/null -c "machine -nickname" -s /bin/false -s /bin/false machine_namemachine_name$

    root# root# passwd -l passwd -l machine_namemachine_name$

    On *BSD systems, this can be done using the 'chpass' utility:

    root# root# chpass -a "chpass -a "machine_name$:*:101:100::0:0:Workstation machine_name$:*:101:100::0:0:Workstation machine_namemachine_name:/dev/null:/sbin/nologin"

    doppy$:x:505:501:doppy$:x:505:501:machine_nicknamemachine_nickname:/dev/null:/bin/false

    Above, Above, machine_nicknamemachine_nickname can be any descriptive name for the client, i.e., BasementComputer. -machine_namemachine_name absolutely must be the NetBIOS name of the client to be joined to the domain. The "$" must be appended to the NetBIOS name of the client or Samba will not recognize @@ -4896,24 +4452,20 @@ CLASS="COMMAND" > command as shown here:

    root# root# smbpasswd -a -m smbpasswd -a -m machine_namemachine_name

    where where machine_namemachine_name is the machine's NetBIOS name. The RID of the new machine account is generated from the UID of the corresponding Unix account.


    5.4.2. "On-the-Fly" Creation of Machine Trust Accounts

    5.4.2. "On-the-Fly" Creation of Machine Trust Accounts

    The second (and recommended) way of creating machine trust accounts is simply to allow the Samba server to create them as needed when the client @@ -4995,7 +4547,7 @@ be created manually.

    [global]
    -   # <...remainder of parameters...>
    +   # <...remainder of parameters...>
        add user script = /usr/sbin/useradd -d /dev/null -g 100 -s /bin/false -M %u 


    5.4.3. Joining the Client to the Domain

    5.4.3. Joining the Client to the Domain

    The procedure for joining a client to the domain varies with the version of Windows.


    5.5. Common Problems and Errors

    5.5. Common Problems and Errors

    C:\WINNT\>C:\WINNT\> net use * /d

    This problem is caused by the PDC not having a suitable machine trust account. - If you are using the add user scriptadd user script method to create accounts then this would indicate that it has not worked. Ensure the domain admin user system is working. @@ -5241,11 +4791,9 @@ CLASS="COMMAND"

    In order to work around this problem in 2.2.0, configure the - accountaccount control flag in


    5.6. System Policies and Profiles

    5.6. System Policies and Profiles

    Much of the information necessary to implement System Policies and Roving User Profiles in a Samba domain is the same as that for @@ -5459,9 +5007,9 @@ CLASS="SECT1" >


    5.7. What other help can I get?

    5.7. What other help can I get?

    There are many sources of information available in the form of mailing lists, RFC's and documentation. The docs that come @@ -5879,9 +5427,9 @@ CLASS="SECT1" >


    5.8. Domain Control for Windows 9x/ME

    5.8. Domain Control for Windows 9x/ME

  • The client broadcasts (to the IP broadcast address of the subnet it is in) - a NetLogon request. This is sent to the NetBIOS name DOMAIN<1c> at the + a NetLogon request. This is sent to the NetBIOS name DOMAIN<1c> at the NetBIOS layer. The client chooses the first response it receives, which contains the NetBIOS name of the logon server to use in the format of \\SERVER. @@ -6013,9 +5561,9 @@ CLASS="SECT2" >


    5.8.1. Configuration Instructions: Network Logons

    5.8.1. Configuration Instructions: Network Logons

    The main difference between a PDC and a Windows 9x logon server configuration is that

    There are a few comments to make in order to tie up some loose ends. There has been much debate over the issue of whether or not it is ok to configure Samba as a Domain Controller in security -modes other than USERUSER. The only security mode -which will not work due to technical reasons is SHARESHARE -mode security. DOMAIN and DOMAIN and SERVERSERVER mode security is really just a variation on SMB user level security.


    5.8.2. Configuration Instructions: Setting up Roaming User Profiles

    5.8.2. Configuration Instructions: Setting up Roaming User Profiles


    5.8.2.1. Windows NT Configuration

    5.8.2.1. Windows NT Configuration

    To support WinNT clients, in the [global] section of smb.conf set the following (for example):


    5.8.2.2. Windows 9X Configuration

    5.8.2.2. Windows 9X Configuration

    To support Win9X clients, you must use the "logon home" parameter. Samba has now been fixed so that "net use/home" now works as well, and it, too, relies @@ -6254,9 +5802,9 @@ CLASS="SECT3" >


    5.8.2.3. Win9X and WinNT Configuration

    5.8.2.3. Win9X and WinNT Configuration

    You can support profiles for both Win9X and WinNT clients by setting both the "logon home" and "logon path" parameters. For example:


    5.8.2.4. Windows 9X Profile Setup

    5.8.2.4. Windows 9X Profile Setup

    When a user first logs in on Windows 9X, the file user.DAT is created, as are folders "Start Menu", "Desktop", "Programs" and "Nethood". @@ -6459,9 +6007,9 @@ CLASS="SECT3" >


    5.8.2.5. Windows NT Workstation 4.0

    5.8.2.5. Windows NT Workstation 4.0

    When a user first logs in to a Windows NT Workstation, the profile NTuser.DAT is created. The profile location can be now specified @@ -6573,9 +6121,9 @@ CLASS="SECT3" >


    5.8.2.6. Windows NT Server

    5.8.2.6. Windows NT Server

    There is nothing to stop you specifying any path that you like for the location of users' profiles. Therefore, you could specify that the @@ -6587,9 +6135,9 @@ CLASS="SECT3" >


    5.8.2.7. Sharing Profiles between W95 and NT Workstation 4.0

    5.8.2.7. Sharing Profiles between W95 and NT Workstation 4.0


    5.9. DOMAIN_CONTROL.txt : Windows NT Domain Control & Samba

    5.9. DOMAIN_CONTROL.txt : Windows NT Domain Control & Samba

    The registry files can be located on any Windows NT machine by opening a command prompt and typing:

    C:\WINNT\>C:\WINNT\> dir %SystemRoot%\System32\config

    The environment variable %SystemRoot% value can be obtained by typing:

    C:\WINNT>C:\WINNT>echo %SystemRoot%

    The active parts of the registry that you may want to be familiar with are @@ -6825,9 +6373,9 @@ CLASS="SECT1" >

    6.1. Prerequisite Reading

    6.1. Prerequisite Reading

    Before you continue reading in this chapter, please make sure that you are comfortable with configuring a Samba PDC @@ -6842,9 +6390,9 @@ CLASS="SECT1" >


    6.2. Background

    6.2. Background

    What is a Domain Controller? It is a machine that is able to answer logon requests from workstations in a Windows NT Domain. Whenever a @@ -6887,9 +6435,9 @@ CLASS="SECT1" >


    6.3. What qualifies a Domain Controller on the network?

    6.3. What qualifies a Domain Controller on the network?

    Every machine that is a Domain Controller for the domain SAMBA has to register the NetBIOS group name SAMBA#1c with the WINS server and/or @@ -6904,9 +6452,9 @@ CLASS="SECT2" >


    6.3.1. How does a Workstation find its domain controller?

    6.3.1. How does a Workstation find its domain controller?

    A NT workstation in the domain SAMBA that wants a local user to be authenticated has to find the domain controller for SAMBA. It does @@ -6923,9 +6471,9 @@ CLASS="SECT2" >


    6.3.2. When is the PDC needed?

    6.3.2. When is the PDC needed?

    Whenever a user wants to change his password, this has to be done on the PDC. To find the PDC, the workstation does a NetBIOS name query @@ -6939,9 +6487,9 @@ CLASS="SECT1" >


    6.4. Can Samba be a Backup Domain Controller to an NT PDC?

    6.4. Can Samba be a Backup Domain Controller to an NT PDC?

    With version 2.2, no. The native NT SAM replication protocols have not yet been fully implemented. The Samba Team is working on @@ -6962,9 +6510,9 @@ CLASS="SECT1" >


    6.5. How do I set up a Samba BDC?

    6.5. How do I set up a Samba BDC?

    Several things have to be done:


    6.5.1. How do I replicate the smbpasswd file?

    6.5.1. How do I replicate the smbpasswd file?

    Replication of the smbpasswd file is sensitive. It has to be done whenever changes to the SAM are made. Every user's password change is @@ -7050,9 +6598,9 @@ CLASS="SECT2" >


    6.5.2. Can I do this all with LDAP?

    6.5.2. Can I do this all with LDAP?

    The simple answer is YES. Samba's pdb_ldap code supports binding to a replica LDAP server, and will also follow referrals and @@ -7106,9 +6654,9 @@ CLASS="SECT1" >


    7.1. Installing the required packages for Debian

    7.1. Installing the required packages for Debian

    On Debian you need to install the following packages:


    7.2. Installing the required packages for RedHat

    7.2. Installing the required packages for RedHat

    On RedHat this means you should have at least:


    7.3. Compile Samba

    7.3. Compile Samba

    If your kerberos libraries are in a non-standard location then remember to add the configure option --with-krb5=DIR.


    7.4. Setup your /etc/krb5.conf

    7.4. Setup your /etc/krb5.conf

    The minimal configuration for krb5.conf is:


    7.5. Create the computer account

    7.5. Create the computer account

    As a user that has write permission on the Samba private directory (usually root) run: @@ -7285,9 +6833,9 @@ CLASS="SECT2" >


    7.5.1. Possible errors

    7.5.1. Possible errors


    7.6. Test your server setup

    7.6. Test your server setup

    On a Windows 2000 client try


    7.7. Testing with smbclient

    7.7. Testing with smbclient

    On your Samba server try to login to a Win2000 server or your Samba server using smbclient and kerberos. Use smbclient as usual, but @@ -7343,9 +6891,9 @@ CLASS="SECT1" >


    7.8. Notes

    7.8. Notes

    You must change administrator password at least once after DC install, to create the right encoding types

    8.1. Joining an NT Domain with Samba 3.0

    8.1. Joining an NT Domain with Samba 3.0

    Assume you have a Samba 3.0 server with a NetBIOS name of - SERV1SERV1 and are joining an or Win2k NT domain called - DOMDOM, which has a PDC with a NetBIOS name - of DOMPDCDOMPDC and two backup domain controllers - with NetBIOS names DOMBDC1 and DOMBDC1 and DOMBDC2 - .

    Firstly, you must edit your Change (or add) your security =security = line in the [global] section of your smb.conf to read:

    Next change the workgroup = workgroup = line in the [global] section to read:

    You must also have the parameter encrypt passwordsencrypt passwords set to set to yes - in order for your users to authenticate to the NT PDC.

    Finally, add (or modify) a password server =password server = line in the [global] section to read:

    In order to actually join the domain, you must run this command:

    root# root# net join -S DOMPDC - -UAdministrator%passwordAdministrator%password

    as we are joining the domain DOM and the PDC for that domain (the only machine that has write access to the domain SAM database) - is DOMPDC. The Administrator%passwordAdministrator%password is the login name and password for an account which has the necessary privilege to add machines to the domain. If this is successful you will see the message:

    Joined domain DOM.Joined domain DOM. - or Joined 'SERV1' to realm 'MYREALM'Joined 'SERV1' to realm 'MYREALM'


    8.2. Samba and Windows 2000 Domains

    8.2. Samba and Windows 2000 Domains

    Many people have asked regarding the state of Samba's ability to participate in a Windows 2000 Domain. Samba 3.0 is able to act as a member server of a Windows @@ -7582,16 +7116,16 @@ CLASS="SECT1" >


    8.3. Why is this better than security = server?

    8.3. Why is this better than security = server?

    Currently, domain security in Samba doesn't free you from having to create local Unix users to represent the users attaching - to your server. This means that if domain user DOM\fred - attaches to your domain security Samba server, there needs to be a local Unix user fred to represent that user in the Unix filesystem. This is very similar to the older Samba security mode @@ -7676,7 +7210,7 @@ CLASS="TITLE" >

  • 9.6. Conclusions
    10.1. Viewing and changing UNIX permissions using the NT security dialogs
    10.2. How to view file security on a Samba share
    10.3. Viewing file ownership
    10.4. Viewing file or directory permissions
    10.4.1. File Permissions
    10.4.2. Directory Permissions
    10.5. Modifying file or directory permissions
    10.6. Interaction with the standard Samba create mask parameters
    10.7. Interaction with the standard Samba file attribute mapping
    11.1. Samba and PAM
    11.2. Distributed Authentication
    11.3. PAM Configuration in smb.conf
    12.1. Instructions
    12.1.1. Notes
    13.1. Introduction
    13.2. Configuration
    13.2.1. Creating [print$]
    13.2.2. Setting Drivers for Existing Printers
    13.2.3. Support a large number of printers
    13.2.4. Adding New Printers via the Windows NT APW
    13.2.5. Samba and Printer Ports
    13.3. The Imprints Toolset
    13.3.1. What is Imprints?
    13.3.2. Creating Printer Driver Packages
    13.3.3. The Imprints server
    13.3.4. The Installation Client
    13.4. Diagnosis
    13.4.1. Introduction
    13.4.2. Debugging printer problems
    13.4.3. What printers do I have?
    13.4.4. Setting up printcap and print servers
    13.4.5. Job sent, no output
    13.4.6. Job sent, strange output
    13.4.7. Raw PostScript printed
    13.4.8. Advanced Printing
    13.4.9. Real debugging
    14.1. Abstract
    14.2. Introduction
    14.3. What Winbind Provides
    14.3.1. Target Uses
    14.4. How Winbind Works
    14.4.1. Microsoft Remote Procedure Calls
    14.4.2. Microsoft Active Directory Services
    14.4.3. Name Service Switch
    14.4.4. Pluggable Authentication Modules
    14.4.5. User and Group ID Allocation
    14.4.6. Result Caching
    14.5. Installation and Configuration
    14.5.1. Introduction
    14.5.2. Requirements
    14.5.3. Testing Things Out
    14.6. Limitations
    14.7. Conclusion
    15.1. Overview of browsing
    15.2. Browsing support in samba
    15.3. Problem resolution
    15.4. Browsing across subnets
    15.4.1. How does cross subnet browsing work ?
    15.5. Setting up a WINS server
    15.6. Setting up Browsing in a WORKGROUP
    15.7. Setting up Browsing in a DOMAIN
    15.8. Forcing samba to be the master
    15.9. Making samba the domain master
    15.10. Note about broadcast addresses
    15.11. Multiple interfaces
    16.1. Introduction and configuration
    16.2. Included modules
    16.2.1. audit
    16.2.2. recycle
    16.2.3. netatalk
    16.3. VFS modules available elsewhere
    16.3.1. DatabaseFS
    16.3.2. vscan
    17. Access Samba source code via CVS
    17.1. Introduction
    17.2. CVS Access to samba.org
    17.2.1. Access via CVSweb
    17.2.2. Access via cvs
    18. Group mapping HOWTO
    19. 18. Samba performance issues
    19.1. 18.1. Comparisons
    19.2. 18.2. Socket options
    19.3. 18.3. Read size
    19.4. 18.4. Max xmit
    19.5. 18.5. Log level
    19.6. 18.6. Read raw
    19.7. 18.7. Write raw
    19.8. 18.8. Slow Clients
    19.9. 18.9. Slow Logins
    19.10. 18.10. Client tuning
    20. 19. Creating Group ProfilesCreating Group Prolicy Files
    20.1. 19.1. Windows '9x
    20.2. 19.2. Windows NT 4
    20.2.1. 19.2.1. Side bar Notes
    20.2.2. 19.2.2. Mandatory profiles
    20.2.3. 19.2.3. moveuser.exe
    20.2.4. 19.2.4. Get SID
    20.3. 19.3. Windows 2000/XP

    Chapter 9. Integrating MS Windows networks with Samba

    9.1. Agenda

    To identify the key functional mechanisms of MS Windows networking +>

    20. Securing Samba
    20.1. Introduction
    20.2. Using host based protection
    20.3. Using interface protection
    20.4. Using a firewall
    20.5. Using a IPC$ share deny
    20.6. Upgrading Samba

    Chapter 9. Integrating MS Windows networks with Samba

    9.1. Agenda

    To identify the key functional mechanisms of MS Windows networking to enable the deployment of Samba as a means of extending and/or replacing MS Windows NT/2000 technology.


    9.2. Name Resolution in a pure Unix/Linux world

    9.2. Name Resolution in a pure Unix/Linux world

    The key configuration files covered in this section are:


    9.2.1. /etc/hosts

    Contains a static list of IP Addresses and names. @@ -8642,11 +8182,11 @@ CLASS="SECT2" >


    9.2.2. /etc/resolv.conf

    This file tells the name resolution libraries:


    9.2.3. /etc/host.conf


    9.2.4. /etc/nsswitch.conf

    This file controls the actual name resolution targets. The @@ -8778,9 +8318,9 @@ CLASS="SECT1" >


    9.3. Name resolution as used within MS Windows networking

    9.3. Name resolution as used within MS Windows networking

    MS Windows networking is predicated about the name each machine is given. This name is known variously (and inconsistently) as @@ -8800,16 +8340,16 @@ the client/server.

    	Unique NetBIOS Names:
    -		MACHINENAME<00>	= Server Service is running on MACHINENAME
    -		MACHINENAME<03> = Generic Machine Name (NetBIOS name)
    -		MACHINENAME<20> = LanMan Server service is running on MACHINENAME
    -		WORKGROUP<1b> = Domain Master Browser
    +		MACHINENAME<00>	= Server Service is running on MACHINENAME
    +		MACHINENAME<03> = Generic Machine Name (NetBIOS name)
    +		MACHINENAME<20> = LanMan Server service is running on MACHINENAME
    +		WORKGROUP<1b> = Domain Master Browser
     
     	Group Names:
    -		WORKGROUP<03> = Generic Name registered by all members of WORKGROUP
    -		WORKGROUP<1c> = Domain Controllers / Netlogon Servers
    -		WORKGROUP<1d> = Local Master Browsers
    -		WORKGROUP<1e> = Internet Name Resolvers

    It should be noted that all NetBIOS machines register their own @@ -8828,7 +8368,7 @@ be needed. An example of this is what happens when an MS Windows client wants to locate a domain logon server. It find this service and the IP address of a server that provides it by performing a lookup (via a NetBIOS broadcast) for enumeration of all machines that have -registered the name type *<1c>. A logon request is then sent to each +registered the name type *<1c>. A logon request is then sent to each IP address that is returned in the enumerated list of IP addresses. Which ever machine first replies then ends up providing the logon services.


    9.3.1. The NetBIOS Name Cache

    9.3.1. The NetBIOS Name Cache

    All MS Windows machines employ an in memory buffer in which is stored the NetBIOS names and IP addresses for all external @@ -8890,9 +8430,9 @@ CLASS="SECT2" >


    9.3.2. The LMHOSTS file

    9.3.2. The LMHOSTS file

    This file is usually located in MS Windows NT 4.0 or 2000 in


    9.3.3. HOSTS file

    9.3.3. HOSTS file

    This file is usually located in MS Windows NT 4.0 or 2000 in


    9.3.4. DNS Lookup

    9.3.4. DNS Lookup

    This capability is configured in the TCP/IP setup area in the network configuration facility. If enabled an elaborate name resolution sequence @@ -9035,9 +8575,9 @@ CLASS="SECT2" >


    9.3.5. WINS Lookup

    9.3.5. WINS Lookup

    A WINS (Windows Internet Name Server) service is the equivaent of the rfc1001/1002 specified NBNS (NetBIOS Name Server). A WINS server stores @@ -9064,11 +8604,9 @@ CLASS="PROGRAMLISTING" wins server = xxx.xxx.xxx.xxx

    where where xxx.xxx.xxx.xxxxxx.xxx.xxx.xxx is the IP address of the WINS server.


    9.4. How browsing functions and how to deploy stable and -dependable browsing using Samba

    As stated above, MS Windows machines register their NetBIOS names (i.e.: the machine name for each service type in operation) on start @@ -9145,10 +8683,10 @@ CLASS="SECT1" >


    9.5. MS Windows security options and how to configure -Samba for seemless integration

    MS Windows clients may use encrypted passwords as part of a challenege/response authentication model (a.k.a. NTLMv1) or @@ -9217,43 +8755,35 @@ CLASS="PROGRAMLISTING" HREF="smb.conf.5.html#PASSWORDLEVEL" TARGET="_top" >passsword level = = integerinteger username level = = integerinteger

    By default Samba will lower case the username before attempting to lookup the user in the database of local system accounts. Because UNIX usernames conventionally only contain lower case -character, the username levelusername level parameter is rarely even needed.

    However, password on UNIX systems often make use of mixed case characters. This means that in order for a user on a Windows 9x client to connect to a Samba server using clear text authentication, -the password levelpassword level must be set to the maximum number of upper case letter which appear is a password. Note that is the server OS uses the traditional -DES version of crypt(), then a password levelpassword level of 8 will result in case insensitive passwords as seen from Windows users. This will also result in longer login times as Samba @@ -9282,9 +8810,9 @@ CLASS="SECT2" >


    9.5.1. Use MS Windows NT as an authentication server

    9.5.1. Use MS Windows NT as an authentication server

    This method involves the additions of the following parameters in the smb.conf file:


    9.5.2. Make Samba a member of an MS Windows NT security domain

    9.5.2. Make Samba a member of an MS Windows NT security domain

    This method involves additon of the following paramters in the smb.conf file:


    9.5.3. Configure Samba as an authentication server

    9.5.3. Configure Samba as an authentication server

    This mode of authentication demands that there be on the Unix/Linux system both a Unix style account as well as an @@ -9418,9 +8946,9 @@ CLASS="SECT3" >


    9.5.3.1. Users

    9.5.3.1. Users

    A user account that may provide a home directory should be created. The following Linux system commands are typical of @@ -9430,10 +8958,10 @@ the procedure for creating an account.

    # useradd -s /bin/bash -d /home/"userid" -m "userid" # passwd "userid" - Enter Password: <pw> + Enter Password: <pw> # smbpasswd -a "userid" - Enter Password: <pw>


    9.5.3.2. MS Windows NT Machine Accounts

    9.5.3.2. MS Windows NT Machine Accounts

    These are required only when Samba is used as a domain controller. Refer to the Samba-PDC-HOWTO for more details.


    9.6. Conclusions

    9.6. Conclusions

    Samba provides a flexible means to operate as...

    10.1. Viewing and changing UNIX permissions using the NT - security dialogs

    New in the Samba 2.0.4 release is the ability for Windows NT clients to use their native security settings dialog box to @@ -9525,9 +9053,9 @@ CLASS="SECT1" >


    10.2. How to view file security on a Samba share

    10.2. How to view file security on a Samba share

    From an NT 4.0 client, single-click with the right mouse button on any file or directory in a Samba mounted @@ -9595,9 +9123,9 @@ CLASS="SECT1" >


    10.3. Viewing file ownership

    10.3. Viewing file ownership

    Clicking on the "SERVER\user (Long name)"

    Where Where SERVERSERVER is the NetBIOS name of - the Samba server, useruser is the user name of - the UNIX user who owns the file, and (Long name)(Long name) is the descriptive string identifying the user (normally found in the GECOS field of the UNIX password database). Click on the button to remove this dialog.

    If the parameter If the parameter nt acl supportnt acl support - is set to falsefalse then the file owner will be shown as the NT user


    10.4. Viewing file or directory permissions

    10.4. Viewing file or directory permissions

    The third button is the "SERVER\user (Long name)"

    Where Where SERVERSERVER is the NetBIOS name of - the Samba server, useruser is the user name of - the UNIX user who owns the file, and (Long name)(Long name) is the descriptive string identifying the user (normally found in the GECOS field of the UNIX password database).

    If the parameter If the parameter nt acl supportnt acl support - is set to falsefalse then the file owner will be shown as the NT user


    10.4.1. File Permissions

    10.4.1. File Permissions

    The standard UNIX user/group/world triple and the corresponding "read", "write", "execute" permissions @@ -9813,9 +9325,9 @@ CLASS="SECT2" >


    10.4.2. Directory Permissions

    10.4.2. Directory Permissions

    Directories on an NT NTFS file system have two different sets of permissions. The first set of permissions @@ -9845,9 +9357,9 @@ CLASS="SECT1" >


    10.5. Modifying file or directory permissions

    10.5. Modifying file or directory permissions

    Modifying file and directory permissions is as simple as changing the displayed permissions in the dialog box, and @@ -9859,15 +9371,13 @@ CLASS="COMMAND" with the standard Samba permission masks and mapping of DOS attributes that need to also be taken into account.

    If the parameter If the parameter nt acl supportnt acl support - is set to falsefalse then any attempt to set security permissions will fail with an


    10.6. Interaction with the standard Samba create mask - parameters

    Note that with Samba 2.0.5 there are four new parameters to control this interaction. These are :

    security masksecurity mask

    force security modeforce security mode

    directory security maskdirectory security mask

    force directory security modeforce directory security mode

    Once a user clicks - security masksecurity mask parameter. Any bits that were changed that are not set to '1' in this parameter are left alone in the file permissions.

    Essentially, zero bits in the Essentially, zero bits in the security masksecurity mask mask may be treated as a set of bits the user is create mask - parameter to provide compatibility with Samba 2.0.4 where this permission change facility was introduced. To allow a user to @@ -10035,22 +9531,18 @@ CLASS="PARAMETER" the bits set in the force security modeforce security mode parameter. Any bits that were changed that correspond to bits set to '1' in this parameter are forced to be set.

    Essentially, bits set in the Essentially, bits set in the force security mode - parameter may be treated as a set of bits that, when modifying security on a file, the user has always set to be 'on'.

    force - create mode parameter to provide compatibility with Samba 2.0.4 where the permission change facility was introduced. To allow a user to modify all the user/group/world permissions on a file with no restrictions set this parameter to 000.

    The The security mask and security mask and force - security mode parameters are applied to the change request in that order.

    For a directory Samba will perform the same operations as - described above for a file except using the parameter directory security mask instead of directory security mask instead of security - mask, and , and force directory security mode - parameter instead of parameter instead of force security mode - .

    The The directory security maskdirectory security mask parameter - by default is set to the same value as the directory mask - parameter and the parameter and the force directory security - mode parameter by default is set to the same value as - the force directory modeforce directory mode parameter to provide compatibility with Samba 2.0.4 where the permission change facility was introduced.

    file in that share specific section :

    security mask = 0777security mask = 0777

    force security mode = 0force security mode = 0

    directory security mask = 0777directory security mask = 0777

    force directory security mode = 0force directory security mode = 0

    As described, in Samba 2.0.4 the parameters :

    create maskcreate mask

    force create modeforce create mode

    directory maskdirectory mask

    force directory modeforce directory mode

    were used instead of the parameters discussed here.


    10.7. Interaction with the standard Samba file attribute - mapping

    Samba maps some of the DOS attribute bits (such as "read only") into the UNIX permissions of a file. This means there can @@ -10276,9 +9730,9 @@ CLASS="SECT1" >

    11.1. Samba and PAM

    11.1. Samba and PAM

    A number of Unix systems (eg: Sun Solaris), as well as the xxxxBSD family and Linux, now utilize the Pluggable Authentication @@ -10490,9 +9944,9 @@ CLASS="SECT1" >


    11.2. Distributed Authentication

    11.2. Distributed Authentication

    The astute administrator will realize from this that the combination of


    11.3. PAM Configuration in smb.conf

    11.3. PAM Configuration in smb.conf

    There is an option in smb.conf called

    When Samba 2.2 is configure to enable PAM support (i.e. ---with-pam--with-pam), this parameter will control whether or not Samba should obey PAM's account and session management directives. The default behavior @@ -10571,9 +10025,9 @@ CLASS="SECT1" >

    12.1. Instructions

    12.1. Instructions

    The Distributed File System (or Dfs) provides a means of separating the logical view of files and directories that users @@ -10589,21 +10043,17 @@ TARGET="_top" machine (for Dfs-aware clients to browse) using Samba.

    To enable SMB-based DFS for Samba, configure it with the - --with-msdfs--with-msdfs option. Once built, a Samba server can be made a Dfs server by setting the global boolean host msdfs host msdfs parameter in the msdfs root msdfs root parameter. A Dfs root directory on Samba hosts Dfs links in the form of symbolic links that point to other servers. For example, a symbolic link junction->msdfs:storage1\share1junction->msdfs:storage1\share1 in the share directory acts as the Dfs junction. When Dfs-aware clients attempt to access the junction link, they are redirected @@ -10652,54 +10100,44 @@ CLASS="PROGRAMLISTING" >In the /export/dfsroot directory we set up our dfs links to other servers on the network.

    root# root# cd /export/dfsrootcd /export/dfsroot

    root# root# chown root /export/dfsrootchown root /export/dfsroot

    root# root# chmod 755 /export/dfsrootchmod 755 /export/dfsroot

    root# root# ln -s msdfs:storageA\\shareA linkaln -s msdfs:storageA\\shareA linka

    root# root# ln -s msdfs:serverB\\share,serverC\\share linkbln -s msdfs:serverB\\share,serverC\\share linkb

    You should set up the permissions and ownership of @@ -10719,9 +10157,9 @@ CLASS="SECT2" >


    12.1.1. Notes

    12.1.1. Notes

      13.1. Introduction

      13.1. Introduction

      Beginning with the 2.2.0 release, Samba supports the native Windows NT printing mechanisms implemented via @@ -10843,9 +10281,9 @@ CLASS="SECT1" >


      13.2. Configuration

      13.2. Configuration

      However, the initial implementation allowed for a -parameter named printer driver locationprinter driver location to be used on a per share basis to specify the location of the driver files associated with that printer. Another -parameter named printer driverprinter driver provided a means of defining the printer driver name to be sent to the client.


      13.2.1. Creating [print$]

      13.2.1. Creating [print$]

      In order to support the uploading of printer driver files, you must first configure a file share named [print$]. @@ -10950,11 +10384,9 @@ CLASS="PROGRAMLISTING" >The write listwrite list is used to allow administrative level user accounts to have write access in order to update files @@ -11094,12 +10526,10 @@ one of two conditions must hold true:

      printer - admin list.

      Once you have created the required [print$] service and associated subdirectories, simply log onto the Samba server using -a root (or printer adminprinter admin) account from a Windows NT 4.0/2k client. Open "Network Neighbourhood" or "My Network Places" and browse for the Samba host. Once you have located @@ -11132,9 +10560,9 @@ CLASS="SECT2" >


      13.2.2. Setting Drivers for Existing Printers

      13.2.2. Setting Drivers for Existing Printers

      The initial listing of printers in the Samba host's Printers folder will have no real printer driver assigned @@ -11204,9 +10632,9 @@ CLASS="SECT2" >


      13.2.3. Support a large number of printers

      13.2.3. Support a large number of printers

      One issue that has arisen during the development phase of Samba 2.2 is the need to support driver downloads for @@ -11227,9 +10655,9 @@ of how this could be accomplished:

       
      -$ $ rpcclient pogo -U root%secret -c "enumdrivers"
       Domain=[NARNIA] OS=[Unix] Server=[Samba 2.2.0-alpha3]
        
      @@ -11243,9 +10671,9 @@ Printer Driver Info 1:
       Printer Driver Info 1:
            Driver Name: [HP LaserJet 4Si/4SiMX PS]
       				  
      -$ $ rpcclient pogo -U root%secret -c "enumprinters"
       Domain=[NARNIA] OS=[Unix] Server=[Samba 2.2.0-alpha3]
            flags:[0x800000]
      @@ -11253,13 +10681,13 @@ Domain=[NARNIA] OS=[Unix] Server=[Samba 2.2.0-alpha3]
            description:[POGO\\POGO\hp-print,NO DRIVER AVAILABLE FOR THIS PRINTER,]
            comment:[]
       				  
      -$ $ rpcclient pogo -U root%secret \
      -> >  -c "setdriver hp-print \"HP LaserJet 4000 Series PS\""
       Domain=[NARNIA] OS=[Unix] Server=[Samba 2.2.0-alpha3]
       Successfully set hp-print to driver HP LaserJet 4000 Series PS.

      13.2.4. Adding New Printers via the Windows NT APW

      13.2.4. Adding New Printers via the Windows NT APW

      By default, Samba offers all printer shares defined in

      The connected user is able to successfully execute an OpenPrinterEx(\\server) with administrative - privileges (i.e. root or printer adminprinter admin).

      show - add printer wizard = yes (the default).

      add -printer command must have a defined value. The program hook must successfully add the printer to the system (i.e. @@ -11338,35 +10760,29 @@ CLASS="FILENAME" not exist, smbd will execute the will execute the add printer -command and reparse to the smb.conf to attempt to locate the new printer share. If the share is still not defined, an error of "Access Denied" is returned to the client. Note that the -add printer programadd printer program is executed under the context of the connected user, not necessarily a root account.

      There is a complementary delete -printer command for removing entries from the "Printers..." folder.

      The following is an example add printer commandadd printer command script. It adds the appropriate entries to

      13.2.5. Samba and Printer Ports

      13.2.5. Samba and Printer Ports

      Windows NT/2000 print servers associate a port with each printer. These normally take the form of LPT1:, COM1:, FILE:, etc... Samba must also support the @@ -11460,12 +10874,10 @@ CLASS="FILENAME" > possesses a enumports -command which can be used to define an external program that generates a listing of ports on a system.


      13.3. The Imprints Toolset

      13.3. The Imprints Toolset

      The Imprints tool set provides a UNIX equivalent of the Windows NT Add Printer Wizard. For complete information, please @@ -11494,9 +10906,9 @@ CLASS="SECT2" >


      13.3.1. What is Imprints?

      13.3.1. What is Imprints?

      Imprints is a collection of tools for supporting the goals of


      13.3.2. Creating Printer Driver Packages

      13.3.2. Creating Printer Driver Packages

      The process of creating printer driver packages is beyond the scope of this document (refer to Imprints.txt also included @@ -11542,9 +10954,9 @@ CLASS="SECT2" >


      13.3.3. The Imprints server

      13.3.3. The Imprints server

      The Imprints server is really a database server that may be queried via standard HTTP mechanisms. Each printer @@ -11566,9 +10978,9 @@ CLASS="SECT2" >


      13.3.4. The Installation Client

      13.3.4. The Installation Client

      More information regarding the Imprints installation client is available in the


      13.4. Diagnosis

      13.4. Diagnosis

      13.4.1. Introduction

      13.4.1. Introduction

      This is a short description of how to debug printing problems with Samba. This describes how to debug problems with printing from a SMB @@ -11732,7 +11144,7 @@ and it should be periodically cleaned out. Samba used the lpq command to determine the "job number" assigned to your print job by the spooler.

      The %>letter< are "macros" that get dynamically replaced with appropriate +>The %>letter< are "macros" that get dynamically replaced with appropriate values when they are used. The %s gets replaced with the name of the spool file that Samba creates and the %p gets replaced with the name of the printer. The %j gets replaced with the "job number" which comes from @@ -11743,9 +11155,9 @@ CLASS="SECT2" >


      13.4.2. Debugging printer problems

      13.4.2. Debugging printer problems

      One way to debug printing problems is to start by replacing these command with shell scripts that record the arguments and the contents @@ -11761,7 +11173,7 @@ CLASS="PROGRAMLISTING" /usr/bin/id -p >/tmp/tmp.print # we run the command and save the error messages # replace the command with the one appropriate for your system - /usr/bin/lpr -r -P$1 $2 2>>&/tmp/tmp.print

      Then you print a file and try removing it. You may find that the @@ -11800,9 +11212,9 @@ CLASS="SECT2" >


      13.4.3. What printers do I have?

      13.4.3. What printers do I have?

      You can use the 'testprns' program to check to see if the printer name you are using is recognized by Samba. For example, you can @@ -11829,9 +11241,9 @@ CLASS="SECT2" >


      13.4.4. Setting up printcap and print servers

      13.4.4. Setting up printcap and print servers

      You may need to set up some printcaps for your Samba system to use. It is strongly recommended that you use the facilities provided by @@ -11913,9 +11325,9 @@ CLASS="SECT2" >


      13.4.5. Job sent, no output

      13.4.5. Job sent, no output

      This is the most frustrating part of printing. You may have sent the job, verified that the job was forwarded, set up a wrapper around @@ -11958,9 +11370,9 @@ CLASS="SECT2" >


      13.4.6. Job sent, strange output

      13.4.6. Job sent, strange output

      Once you have the job printing, you can then start worrying about making it print nicely.


      13.4.7. Raw PostScript printed

      13.4.7. Raw PostScript printed

      This is a problem that is usually caused by either the print spooling system putting information at the start of the print job that makes @@ -12019,9 +11431,9 @@ CLASS="SECT2" >


      13.4.8. Advanced Printing

      13.4.8. Advanced Printing

      Note that you can do some pretty magic things by using your imagination with the "print command" option and some shell scripts. @@ -12035,9 +11447,9 @@ CLASS="SECT2" >


      13.4.9. Real debugging

      13.4.9. Real debugging

      If the above debug tips don't help, then maybe you need to bring in the bug guns, system tracing. See Tracing.txt in this directory.

      14.1. Abstract

      14.1. Abstract

      Integration of UNIX and Microsoft Windows NT through a unified logon has been considered a "holy grail" in heterogeneous @@ -12083,9 +11495,9 @@ CLASS="SECT1" >


      14.2. Introduction

      14.2. Introduction

      It is well known that UNIX and Microsoft Windows NT have different models for representing user and group information and @@ -12137,9 +11549,9 @@ CLASS="SECT1" >


      14.3. What Winbind Provides

      14.3. What Winbind Provides

      Winbind unifies UNIX and Windows NT account management by allowing a UNIX box to become a full member of a NT domain. Once @@ -12179,9 +11591,9 @@ CLASS="SECT2" >


      14.3.1. Target Uses

      14.3.1. Target Uses

      Winbind is targeted at organizations that have an existing NT based domain infrastructure into which they wish @@ -12203,9 +11615,9 @@ CLASS="SECT1" >


      14.4. How Winbind Works

      14.4. How Winbind Works

      The winbind system is designed around a client/server architecture. A long running


      14.4.1. Microsoft Remote Procedure Calls

      14.4.1. Microsoft Remote Procedure Calls

      Over the last few years, efforts have been underway by various Samba Team members to decode various aspects of @@ -12249,9 +11661,9 @@ CLASS="SECT2" >


      14.4.2. Microsoft Active Directory Services

      14.4.2. Microsoft Active Directory Services

      Since late 2001, Samba has gained the ability to interact with Microsoft Windows 2000 using its 'Native @@ -12268,9 +11680,9 @@ CLASS="SECT2" >


      14.4.3. Name Service Switch

      14.4.3. Name Service Switch

      The Name Service Switch, or NSS, is a feature that is present in many UNIX operating systems. It allows system @@ -12348,9 +11760,9 @@ CLASS="SECT2" >


      14.4.4. Pluggable Authentication Modules

      14.4.4. Pluggable Authentication Modules

      Pluggable Authentication Modules, also known as PAM, is a system for abstracting authentication and authorization @@ -12397,9 +11809,9 @@ CLASS="SECT2" >


      14.4.5. User and Group ID Allocation

      14.4.5. User and Group ID Allocation

      When a user or group is created under Windows NT is it allocated a numerical relative identifier (RID). This is @@ -12423,9 +11835,9 @@ CLASS="SECT2" >


      14.4.6. Result Caching

      14.4.6. Result Caching

      An active system can generate a lot of user and group name lookups. To reduce the network cost of these lookups winbind @@ -12446,9 +11858,9 @@ CLASS="SECT1" >


      14.5. Installation and Configuration

      14.5. Installation and Configuration

      Many thanks to John Trostel


      14.5.1. Introduction

      14.5.1. Introduction

      This HOWTO describes the procedures used to get winbind up and running on my RedHat 7.1 system. Winbind is capable of providing access @@ -12532,9 +11944,9 @@ CLASS="SECT2" >


      14.5.2. Requirements

      14.5.2. Requirements

      If you have a samba configuration file that you are currently using...


      14.5.3. Testing Things Out

      14.5.3. Testing Things Out

      Before starting, it is probably best to kill off all the SAMBA related daemons running on your server. Kill off all


      14.5.3.1. Configure and compile SAMBA

      14.5.3.1. Configure and compile SAMBA

      The configuration and compilation of SAMBA is pretty straightforward. The first three steps may not be necessary depending upon @@ -12657,44 +12069,44 @@ whether or not you have previously built the Samba binaries.

      root#root# autoconf
      -root#root# make clean
      -root#root# rm config.cache
      -root#root# ./configure
      -root#root# make
      -root#root# make install

      14.5.3.2. Configure nsswitch.conf and the -winbind libraries

      The libraries needed to run the daemon through nsswitch need to be copied to their proper locations, so

      root#root# cp ../samba/source/nsswitch/libnss_winbind.so /lib

      I also found it necessary to make the following symbolic link:

      root#root# ln -s /lib/libnss_winbind.so /lib/libnss_winbind.so.2

      And, in the case of Sun solaris:

      root#root# ln -s /usr/lib/libnss_winbind.so /usr/lib/libnss_winbind.so.1 -root#root# ln -s /usr/lib/libnss_winbind.so /usr/lib/nss_winbind.so.1 -root#root# ln -s /usr/lib/libnss_winbind.so /usr/lib/nss_winbind.so.2

      root#root# /sbin/ldconfig -v | grep winbind


      14.5.3.3. Configure smb.conf

      14.5.3.3. Configure smb.conf

      Several parameters are needed in the smb.conf file to control the behavior of

      [global]
      -     <...>
      +     <...>
            # separate domain and username with '+', like DOMAIN+username
            

      14.5.3.4. Join the SAMBA server to the PDC domain

      14.5.3.4. Join the SAMBA server to the PDC domain

      Enter the following command to make the SAMBA server join the -PDC domain, where DOMAINDOMAIN is the name of -your Windows domain and AdministratorAdministrator is a domain user who has administrative privileges in the domain.

      root#root# /usr/local/samba/bin/net join -S PDC -U Administrator

      The proper response to the command should be: "Joined the domain -DOMAIN" where DOMAIN" where DOMAINDOMAIN is your DOMAIN name.


      14.5.3.5. Start up the winbindd daemon and test it!

      14.5.3.5. Start up the winbindd daemon and test it!

      Eventually, you will want to modify your smb startup script to automatically invoke the winbindd daemon when the other parts of @@ -12949,9 +12353,9 @@ SAMBA start, but it is possible to test out just the winbind portion first. To start up winbind services, enter the following command as root:

      root#root# /usr/local/samba/bin/winbinddI'm always paranoid and like to make sure the daemon is really running...

      root#root# ps -ae | grep winbinddNow... for the real test, try to get some information about the users on your PDC

      root#root# /usr/local/samba/bin/wbinfo -u

      Obviously, I have named my domain 'CEO' and my Obviously, I have named my domain 'CEO' and my winbind -separator is '+'.

      You can do the same sort of thing to get group information from @@ -13010,9 +12412,9 @@ the PDC:

      root#root# /usr/local/samba/bin/wbinfo -g

      root#root# getent passwd

      The same thing can be done for groups with the command

      root#root# getent group


      14.5.3.6. Fix the init.d startup scripts

      14.5.3.6. Fix the init.d startup scripts
      14.5.3.6.1. Linux
      14.5.3.6.1. Linux

      The


      14.5.3.6.2. Solaris
      14.5.3.6.2. Solaris

      On solaris, you need to modify the


      14.5.3.6.3. Restarting
      14.5.3.6.3. Restarting

      If you restart the


      14.5.3.7. Configure Winbind and PAM

      14.5.3.7. Configure Winbind and PAM

      If you have made it this far, you know that winbindd and samba are working together. If you want to use winbind to provide authentication for other @@ -13281,9 +12683,9 @@ CLASS="FILENAME" > directory by invoking the command

      root#root# make nsswitch/pam_winbind.so/usr/lib/security.

      root#root# cp ../samba/source/nsswitch/pam_winbind.so /lib/security


      14.5.3.7.1. Linux/FreeBSD-specific PAM configuration
      14.5.3.7.1. Linux/FreeBSD-specific PAM configuration

      The


      14.5.3.7.2. Solaris-specific configuration
      14.5.3.7.2. Solaris-specific configuration

      The /etc/pam.conf needs to be changed. I changed this file so that my Domain users can logon both locally as well as telnet.The following are the changes @@ -13535,9 +12937,9 @@ CLASS="SECT1" >


      14.6. Limitations

      14.6. Limitations

      Winbind has a number of limitations in its current released version that we hope to overcome in future @@ -13577,9 +12979,9 @@ CLASS="SECT1" >


      14.7. Conclusion

      14.7. Conclusion

      The winbind system, through the use of the Name Service Switch, Pluggable Authentication Modules, and appropriate @@ -13601,9 +13003,9 @@ CLASS="SECT1" >

      15.1. Overview of browsing

      15.1. Overview of browsing

      SMB networking provides a mechanism by which clients can access a list of machines in a network, a so-called "browse list". This list @@ -13614,8 +13016,13 @@ list is heavily used by all SMB clients. Configuration of SMB browsing has been problematic for some Samba users, hence this document.

      Browsing will NOT work if name resolution from NetBIOS names to IP -addresses does not function correctly. Use of a WINS server is highly +>MS Windows 2000 and later, as with Samba-3 and later, can be +configured to not use NetBIOS over TCP/IP. When configured this way +it is imperative that name resolution (using DNS/LDAP/ADS) be correctly +configured and operative. Browsing will NOT work if name resolution +from SMB machine names to IP addresses does not function correctly.

      Where NetBIOS over TCP/IP is enabled use of a WINS server is highly recommended to aid the resolution of NetBIOS (SMB) names to IP addresses. WINS allows remote segment clients to obtain NetBIOS name_type information that can NOT be provided by any other means of name resolution.


      15.2. Browsing support in samba

      Samba now fully supports browsing. The browsing is supported by nmbd -and is also controlled by options in the smb.conf file (see smb.conf(5)).

      15.2. Browsing support in samba

      Samba can act as a local browse master for a workgroup and the ability -for samba to support domain logons and scripts is now available. See -DOMAIN.txt for more information on domain logons.

      Samba facilitates browsing. The browsing is supported by nmbd +and is also controlled by options in the smb.conf file (see smb.conf(5)). +Samba can act as a local browse master for a workgroup and the ability +for samba to support domain logons and scripts is now available.

      Samba can also act as a domain master browser for a workgroup. This means that it will collate lists from local browse masters into a @@ -13649,12 +13054,12 @@ regardless of whether it is NT, Samba or any other type of domain master that is providing this service.

      [Note that nmbd can be configured as a WINS server, but it is not -necessary to specifically use samba as your WINS server. NTAS can -be configured as your WINS server. In a mixed NT server and -samba environment on a Wide Area Network, it is recommended that -you use the NT server's WINS server capabilities. In a samba-only -environment, it is recommended that you use one and only one nmbd -as your WINS server].

      To get browsing to work you need to run nmbd as usual, but will need to use the "workgroup" option in smb.conf to control what workgroup @@ -13670,9 +13075,9 @@ CLASS="SECT1" >


      15.3. Problem resolution

      15.3. Problem resolution

      If something doesn't work then hopefully the log.nmb file will help you track down the problem. Try a debug level of 2 or 3 for finding @@ -13688,6 +13093,19 @@ filemanager should display the list of available shares.

      MS Windows 2000 and upwards (as with Samba) can be configured to disallow +anonymous (ie: Guest account) access to the IPC$ share. In that case, the +MS Windows 2000/XP/2003 machine acting as an SMB/CIFS client will use the +name of the currently logged in user to query the IPC$ share. MS Windows +9X clients are not able to do this and thus will NOT be able to browse +server resources.

      Also, a lot of people are getting bitten by the problem of too many parameters on the command line of nmbd in inetd.conf. This trick is to not use spaces between the option and the parameter (eg: -d2 instead @@ -13704,11 +13122,11 @@ CLASS="SECT1" >


      15.4. Browsing across subnets

      15.4. Browsing across subnets

      With the release of Samba 1.9.17(alpha1 and above) Samba has been +>Since the release of Samba 1.9.17(alpha1) Samba has been updated to enable it to support the replication of browse lists across subnet boundaries. New code and options have been added to achieve this. This section describes how to set this feature up @@ -13735,15 +13153,14 @@ CLASS="SECT2" >


      15.4.1. How does cross subnet browsing work ?

      15.4.1. How does cross subnet browsing work ?

      Cross subnet browsing is a complicated dance, containing multiple moving parts. It has taken Microsoft several years to get the code that achieves this correct, and Samba lags behind in some areas. -However, with the 1.9.17 release, Samba is capable of cross subnet -browsing when configured correctly.

      Consider a network set up as follows :

      Once N2_B knows the address of the Domain master browser it @@ -13947,9 +13364,9 @@ CLASS="SECT1" >


      15.5. Setting up a WINS server

      15.5. Setting up a WINS server

      Either a Samba machine or a Windows NT Server machine may be set up as a WINS server. To set a Samba machine to be a WINS server you must @@ -13961,9 +13378,9 @@ CLASS="COMMAND" > wins support = yes

      Versions of Samba previous to 1.9.17 had this parameter default to +>Versions of Samba prior to 1.9.17 had this parameter default to yes. If you have any older versions of Samba on your network it is -strongly suggested you upgrade to 1.9.17 or above, or at the very +strongly suggested you upgrade to a recent version, or at the very least set the parameter to 'no' on all these machines.

      Machines with "

      wins server = >name or IP address<wins server = >name or IP address<

      where >name or IP address< is either the DNS name of the WINS server +>where >name or IP address< is either the DNS name of the WINS server machine or its IP address.

      Note that this line MUST NOT BE SET in the smb.conf file of the Samba @@ -14015,7 +13432,7 @@ CLASS="COMMAND" >" option and the "wins server = >name<wins server = <name>" option then nmbd will fail to start.


      15.6. Setting up Browsing in a WORKGROUP

      15.6. Setting up Browsing in a WORKGROUP

      To set up cross subnet browsing on a network containing machines in up to be in a WORKGROUP, not an NT Domain you need to set up one @@ -14073,11 +13490,12 @@ server, if you require.

      Next, you should ensure that each of the subnets contains a machine that can act as a local master browser for the -workgroup. Any NT machine should be able to do this, as will -Windows 95 machines (although these tend to get rebooted more -often, so it's not such a good idea to use these). To make a -Samba server a local master browser set the following -options in the [global] section of the smb.conf file :


      15.7. Setting up Browsing in a DOMAIN

      15.7. Setting up Browsing in a DOMAIN

      If you are adding Samba servers to a Windows NT Domain then you must not set up a Samba server as a domain master browser. By default, a Windows NT Primary Domain Controller for a Domain name is also the Domain master browser for that name, and many things will break if a Samba server registers the Domain master -browser NetBIOS name (DOMAIN>1B<) with WINS instead of the PDC.

      For subnets other than the one containing the Windows NT PDC you may set up Samba servers as local master browsers as @@ -14165,9 +13583,9 @@ CLASS="SECT1" >


      15.8. Forcing samba to be the master

      15.8. Forcing samba to be the master

      Who becomes the "master browser" is determined by an election process using broadcasts. Each election packet contains a number of parameters @@ -14180,8 +13598,8 @@ option in smb.conf to a higher number. It defaults to 0. Using 34 would make it win all elections over every other system (except other samba systems!)

      A "os level" of 2 would make it beat WfWg and Win95, but not NTAS. A -NTAS domain controller uses level 32.

      A "os level" of 2 would make it beat WfWg and Win95, but not MS Windows +NT/2K Server. A MS Windows NT/2K Server domain controller uses level 32.

      The maximum os level is 255


      15.9. Making samba the domain master

      15.9. Making samba the domain master

      The domain master is responsible for collating the browse lists of multiple subnets so that browsing can occur between subnets. You can @@ -14286,9 +13704,9 @@ CLASS="SECT1" >


      15.10. Note about broadcast addresses

      15.10. Note about broadcast addresses

      If your network uses a "0" based broadcast address (for example if it ends in a 0) then you will strike problems. Windows for Workgroups @@ -14300,9 +13718,9 @@ CLASS="SECT1" >


      15.11. Multiple interfaces

      15.11. Multiple interfaces

      Samba now supports machines with multiple network interfaces. If you have multiple interfaces then you will need to use the "interfaces" @@ -14321,9 +13739,9 @@ CLASS="SECT1" >

      16.1. Introduction and configuration

      16.1. Introduction and configuration

      Since samba 3.0, samba supports stackable VFS(Virtual File System) modules. Samba passes each request to access the unix file system thru the loaded VFS modules. @@ -14362,17 +13780,17 @@ CLASS="SECT1" >


      16.2. Included modules

      16.2. Included modules

      16.2.1. audit

      16.2.1. audit

      A simple module to audit file access to the syslog facility. The following operations are logged: @@ -14408,9 +13826,9 @@ CLASS="SECT2" >


      16.2.2. recycle

      16.2.2. recycle

      A recycle-bin like modules. When used any unlink call will be intercepted and files moved to the recycle @@ -14479,9 +13897,9 @@ CLASS="SECT2" >


      16.2.3. netatalk

      16.2.3. netatalk

      A netatalk module, that will ease co-existence of samba and netatalk file sharing services.


      16.3. VFS modules available elsewhere

      16.3. VFS modules available elsewhere

      This section contains a listing of various other VFS modules that have been posted but don't currently reside in the Samba CVS @@ -14528,9 +13946,9 @@ CLASS="SECT2" >


      16.3.1. DatabaseFS

      16.3.1. DatabaseFS

      URL:


      16.3.2. vscan

      16.3.2. vscan

      URL:


      Chapter 17. Access Samba source code via CVS

      17.1. Introduction

      Chapter 17. Group mapping HOWTO

      Samba is developed in an open environment. Developers use CVS -(Concurrent Versioning System) to "checkin" (also known as -"commit") new source code. Samba's various CVS branches can -be accessed via anonymous CVS using the instructions -detailed in this chapter.

      +Starting with Samba 3.0 alpha 2, a new group mapping function is available. The +current method (likely to change) to manage the groups is a new command called +smbgroupedit.

      This document is a modified version of the instructions found at -http://samba.org/samba/cvs.html


      17.2. CVS Access to samba.org

      The first immediate reason to use the group mapping on a PDC, is that +the domain admin group of smb.conf is +now gone. This parameter was used to give the listed users local admin rights +on their workstations. It was some magic stuff that simply worked but didn't +scale very well for complex setups.

      The machine samba.org runs a publicly accessible CVS -repository for access to the source code of several packages, -including samba, rsync and jitterbug. There are two main ways of -accessing the CVS server on this host.


      17.2.1. Access via CVSweb

      Let me explain how it works on NT/W2K, to have this magic fade away. +When installing NT/W2K on a computer, the installer program creates some users +and groups. Notably the 'Administrators' group, and gives to that group some +privileges like the ability to change the date and time or to kill any process +(or close too) running on the local machine. The 'Administrator' user is a +member of the 'Administrators' group, and thus 'inherit' the 'Administrators' +group privileges. If a 'joe' user is created and become a member of the +'Administrator' group, 'joe' has exactly the same rights as 'Administrator'.

      You can access the source code via your -favourite WWW browser. This allows you to access the contents of -individual files in the repository and also to look at the revision -history and commit logs of individual files. You can also ask for a diff -listing between any two versions on the repository.

      When a NT/W2K machine is joined to a domain, during that phase, the "Domain +Administrators' group of the PDC is added to the 'Administrators' group of the +workstation. Every members of the 'Domain Administrators' group 'inherit' the +rights of the 'Administrators' group when logging on the workstation.

      You are now wondering how to make some of your samba PDC users members of the +'Domain Administrators' ? That's really easy.

      Use the URL : http://samba.org/cgi-bin/cvsweb


      17.2.2. Access via cvs

      1. You can also access the source code via a -normal cvs client. This gives you much more control over you can -do with the repository and allows you to checkout whole source trees -and keep them up to date via normal cvs commands. This is the -preferred method of access if you are a developer and not -just a casual browser.

        To download the latest cvs source code, point your -browser at the URL : http://www.cyclic.com/. -and click on the 'How to get cvs' link. CVS is free software under -the GNU GPL (as is Samba). Note that there are several graphical CVS clients -which provide a graphical interface to the sometimes mundane CVS commands. -Links to theses clients are also available from http://www.cyclic.com.

        To gain access via anonymous cvs use the following steps. -For this example it is assumed that you want a copy of the -samba source code. For the other source code repositories -on this system just substitute the correct package name

        1. Install a recent copy of cvs. All you really need is a - copy of the cvs client binary. -

        2. Run the command -

          cvs -d :pserver:cvs@samba.org:/cvsroot login -

          When it asks you for a password type cvs. -

        3. Run the command -

          cvs -d :pserver:cvs@samba.org:/cvsroot co samba -

          This will create a directory called samba containing the - latest samba source code (i.e. the HEAD tagged cvs branch). This - currently corresponds to the 3.0 development tree. -

          CVS branches other HEAD can be obtained by using the -r - and defining a tag name. A list of branch tag names can be found on the - "Development" page of the samba web site. A common request is to obtain the - latest 2.2 release code. This could be done by using the following command. -

          cvs -d :pserver:cvs@samba.org:/cvsroot co -r SAMBA_2_2 samba -

        4. Whenever you want to merge in the latest code changes use - the following command from within the samba directory: -

          cvs update -d -P -


      Chapter 18. Group mapping HOWTO

      -Starting with Samba 3.0 alpha 2, a new group mapping function is available. The -current method (likely to change) to manage the groups is a new command called -smbgroupedit.

      The first immediate reason to use the group mapping on a PDC, is that -the domain admin group of smb.conf is -now gone. This parameter was used to give the listed users local admin rights -on their workstations. It was some magic stuff that simply worked but didn't -scale very well for complex setups.

      Let me explain how it works on NT/W2K, to have this magic fade away. -When installing NT/W2K on a computer, the installer program creates some users -and groups. Notably the 'Administrators' group, and gives to that group some -privileges like the ability to change the date and time or to kill any process -(or close too) running on the local machine. The 'Administrator' user is a -member of the 'Administrators' group, and thus 'inherit' the 'Administrators' -group privileges. If a 'joe' user is created and become a member of the -'Administrator' group, 'joe' has exactly the same rights as 'Administrator'.

      When a NT/W2K machine is joined to a domain, during that phase, the "Domain -Administrators' group of the PDC is added to the 'Administrators' group of the -workstation. Every members of the 'Domain Administrators' group 'inherit' the -rights of the 'Administrators' group when logging on the workstation.

      You are now wondering how to make some of your samba PDC users members of the -'Domain Administrators' ? That's really easy.

      1. create a unix group (usually in /etc/group), let's call it domadm

      2. create a unix group (usually in /etc/group), let's call it domadm

      3. add to this group the users that must be Administrators. For example if you want joe,john and mary, your entry in Chapter 19. Samba performance issuesChapter 18. Samba performance issues

        19.1. Comparisons

        18.1. Comparisons

        The Samba server uses TCP to talk to the client. Thus if you are trying to see if it performs well you should really compare it to @@ -14896,9 +14142,9 @@ CLASS="SECT1" >


        19.2. Socket options

        18.2. Socket options

        There are a number of socket options that can greatly affect the performance of a TCP based server like Samba.


        19.3. Read size

        18.3. Read size

        The option "read size" affects the overlap of disk reads/writes with network reads/writes. If the amount of data being transferred in @@ -14950,9 +14196,9 @@ CLASS="SECT1" >


        19.4. Max xmit

        18.4. Max xmit

        At startup the client and server negotiate a "maximum transmit" size, which limits the size of nearly all SMB commands. You can set the @@ -14973,9 +14219,9 @@ CLASS="SECT1" >


        19.5. Log level

        18.5. Log level

        If you set the log level (also known as "debug level") higher than 2 then you may suffer a large drop in performance. This is because the @@ -14987,9 +14233,9 @@ CLASS="SECT1" >


        19.6. Read raw

        18.6. Read raw

        The "read raw" operation is designed to be an optimised, low-latency file read operation. A server may choose to not support it, @@ -15009,9 +14255,9 @@ CLASS="SECT1" >


        19.7. Write raw

        18.7. Write raw

        The "write raw" operation is designed to be an optimised, low-latency file write operation. A server may choose to not support it, @@ -15026,9 +14272,9 @@ CLASS="SECT1" >


        19.8. Slow Clients

        18.8. Slow Clients

        One person has reported that setting the protocol to COREPLUS rather than LANMAN2 gave a dramatic speed improvement (from 10k/s to 150k/s).


        19.9. Slow Logins

        18.9. Slow Logins

        Slow logins are almost always due to the password checking time. Using the lowest practical "password level" will improve things a lot. You @@ -15056,9 +14302,9 @@ CLASS="SECT1" >


        19.10. Client tuning

        18.10. Client tuning

        Often a speed problem can be traced to the client. The client (for example Windows for Workgroups) can often be tuned for better TCP @@ -15164,15 +14410,15 @@ CLASS="CHAPTER" >Chapter 20. Creating Group ProfilesChapter 19. Creating Group Prolicy Files

        20.1. Windows '9x

        19.1. Windows '9x

        You need the Win98 Group Policy Editor to set Group Profiles up under Windows '9x. It can be found on the Original @@ -15196,25 +14442,28 @@ CLASS="FILENAME" > that needs to be placed in the root of the [NETLOGON] share. If your Win98 is configured to log onto the Samba Domain, it will automatically read this file and update the -Win98 registry of the machine that is logging on.

        All of this is covered in the Win98 Resource Kit documentation.

        If you do not do it this way, then every so often Win98 will check the +>If you do not do it this way, then every so often Win9x/Me will check the integrity of the registry and will restore it's settings from the back-up -copy of the registry it stores on each Win98 machine. Hence, you will notice -things changing back to the original settings.

        The following all refers to Windows NT/200x profile migration - not to policies. +We need a separate section on policies (NTConfig.Pol) for NT4/200x.


        20.2. Windows NT 4

        19.2. Windows NT 4

        Unfortunately, the Resource Kit info is Win NT4/2K version specific.

        Unfortunately, the Resource Kit info is Win NT4 or 200x specific.

        Here is a quick guide:

        I am using the term "migrate" lossely. You can copy a profile to +>I am using the term "migrate" lossely. You can copy a profile to create a group profile. You can give the user 'Everyone' rights to the profile you copy this to. That is what you need to do, since your samba domain is not a member of a trust relationship with your NT4 PDC.


        20.2.1. Side bar Notes

        19.2.1. Side bar Notes

        You should obtain the SID of your NT4 domain. You can use smbpasswd to do this. Read the man page.


        20.2.2. Mandatory profiles

        19.2.2. Mandatory profiles

        The above method can be used to create mandatory profiles also. To convert a group profile into a mandatory profile simply locate the NTUser.DAT file @@ -15320,9 +14569,9 @@ CLASS="SECT2" >


        20.2.3. moveuser.exe

        19.2.3. moveuser.exe

        The W2K professional resource kit has moveuser.exe. moveuser.exe changes the security of a profile from one user to another. This allows the account @@ -15333,9 +14582,9 @@ CLASS="SECT2" >


        20.2.4. Get SID

        19.2.4. Get SID

        You can identify the SID by using GetSID.exe from the Windows NT Server 4.0 Resource Kit.


        20.3. Windows 2000/XP

        19.3. Windows 2000/XP

        You must first convert the profile from a local profile to a domain profile on the MS Windows workstation as follows:


      Chapter 20. Securing Samba

      20.1. Introduction

      This note was attached to the Samba 2.2.8 release notes as it contained an +important security fix. The information contained here applies to Samba +installations in general.


      20.2. Using host based protection

      In many installations of Samba the greatest threat comes for outside +your immediate network. By default Samba will accept connections from +any host, which means that if you run an insecure version of Samba on +a host that is directly connected to the Internet you can be +especially vulnerable.

      One of the simplest fixes in this case is to use the 'hosts allow' and +'hosts deny' options in the Samba smb.conf configuration file to only +allow access to your server from a specific range of hosts. An example +might be:

        hosts allow = 127.0.0.1 192.168.2.0/24 192.168.3.0/24
      +  hosts deny = 0.0.0.0/0

      The above will only allow SMB connections from 'localhost' (your own +computer) and from the two private networks 192.168.2 and +192.168.3. All other connections will be refused connections as soon +as the client sends its first packet. The refusal will be marked as a +'not listening on called name' error.


      20.3. Using interface protection

      By default Samba will accept connections on any network interface that +it finds on your system. That means if you have a ISDN line or a PPP +connection to the Internet then Samba will accept connections on those +links. This may not be what you want.

      You can change this behaviour using options like the following:

        interfaces = eth* lo
      +  bind interfaces only = yes

      This tells Samba to only listen for connections on interfaces with a +name starting with 'eth' such as eth0, eth1, plus on the loopback +interface called 'lo'. The name you will need to use depends on what +OS you are using, in the above I used the common name for Ethernet +adapters on Linux.

      If you use the above and someone tries to make a SMB connection to +your host over a PPP interface called 'ppp0' then they will get a TCP +connection refused reply. In that case no Samba code is run at all as +the operating system has been told not to pass connections from that +interface to any process.


      20.4. Using a firewall

      Many people use a firewall to deny access to services that they don't +want exposed outside their network. This can be a very good idea, +although I would recommend using it in conjunction with the above +methods so that you are protected even if your firewall is not active +for some reason.

      If you are setting up a firewall then you need to know what TCP and +UDP ports to allow and block. Samba uses the following:

      UDP/137    - used by nmbd
      +UDP/138    - used by nmbd
      +TCP/139    - used by smbd
      +TCP/445    - used by smbd

      The last one is important as many older firewall setups may not be +aware of it, given that this port was only added to the protocol in +recent years.


      20.5. Using a IPC$ share deny

      If the above methods are not suitable, then you could also place a +more specific deny on the IPC$ share that is used in the recently +discovered security hole. This allows you to offer access to other +shares while denying access to IPC$ from potentially untrustworthy +hosts.

      To do that you could use:

        [ipc$]
      +     hosts allow = 192.168.115.0/24 127.0.0.1
      +     hosts deny = 0.0.0.0/0

      this would tell Samba that IPC$ connections are not allowed from +anywhere but the two listed places (localhost and a local +subnet). Connections to other shares would still be allowed. As the +IPC$ share is the only share that is always accessible anonymously +this provides some level of protection against attackers that do not +know a username/password for your host.

      If you use this method then clients will be given a 'access denied' +reply when they try to access the IPC$ share. That means that those +clients will not be able to browse shares, and may also be unable to +access some other resources.

      This is not recommended unless you cannot use one of the other +methods listed above for some reason.


      20.6. Upgrading Samba

      Please check regularly on http://www.samba.org/ for updates and +important announcements. Occasionally security releases are made and +it is highly recommended to upgrade Samba when a security vulnerability +is discovered.

      21.1. HPUX
      21.2. SCO Unix
      21.3. DNIX
      21.4. RedHat Linux Rembrandt-II
      21.5. AIX
      21.5.1. Sequential Read Ahead
      22.1. Macintosh clients?
      22.2. OS2 Client
      22.2.1. How can I configure OS/2 Warp Connect or OS/2 Warp 4 as a client for Samba?
      22.2.2. How can I configure OS/2 Warp 3 (not Connect), OS/2 1.2, 1.3 or 2.x for Samba?
      22.2.3. Are there any other issues when OS/2 (any version) is used as a client?
      22.2.4. How do I get printer driver download working for OS/2 clients?
      22.3. Windows for Workgroups
      22.3.1. Use latest TCP/IP stack from Microsoft
      22.3.2. Delete .pwl files after password change
      22.3.3. Configure WfW password handling
      22.3.4. Case handling of passwords
      22.3.5. Use TCP/IP as default protocol
      22.4. Windows '95/'98
      22.5. Windows 2000 Service Pack 2
      23. Reporting BugsHow to compile SAMBA
      23.1. Access Samba source code via CVS
      23.1.1. Introduction
      23.1.2. CVS Access to samba.org
      23.2. General infoAccessing the samba sources via rsync and ftp
      23.3. Debug levelsBuilding the Binaries
      23.4. Starting the smbd and nmbd
      23.4.1. Starting from inetd.conf
      23.4.2. Alternative: starting it as a daemon
      24. Reporting Bugs
      24.1. Introduction
      24.2. General info
      24.3. Debug levels
      24.4. Internal errors
      23.5. 24.5. Attaching to a running process
      23.6. 24.6. Patches
      24. 25. Diagnosing your samba serverThe samba checklist
      24.1. 25.1. Introduction
      24.2. 25.2. Assumptions
      24.3. 25.3. Tests
      24.3.1. 25.3.1. Test 1
      24.3.2. 25.3.2. Test 2
      24.3.3. 25.3.3. Test 3
      24.3.4. 25.3.4. Test 4
      24.3.5. 25.3.5. Test 5
      24.3.6. 25.3.6. Test 6
      24.3.7. 25.3.7. Test 7
      24.3.8. 25.3.8. Test 8
      24.3.9. 25.3.9. Test 9
      24.3.10. 25.3.10. Test 10
      24.3.11. 25.3.11. Test 11
      24.4. 25.4. Still having troubles?

      21.1. HPUX

      21.1. HPUX

      HP's implementation of supplementary groups is, er, non-standard (for hysterical reasons). There are two group files, /etc/group and @@ -15897,9 +15394,9 @@ CLASS="SECT1" >


      21.2. SCO Unix

      21.2. SCO Unix

      If you run an old version of SCO Unix then you may need to get important @@ -15914,9 +15411,9 @@ CLASS="SECT1" >


      21.3. DNIX

      21.3. DNIX

      DNIX has a problem with seteuid() and setegid(). These routines are needed for Samba to work correctly, but they were left out of the DNIX @@ -16021,9 +15518,9 @@ CLASS="SECT1" >


      21.4. RedHat Linux Rembrandt-II

      21.4. RedHat Linux Rembrandt-II

      By default RedHat Rembrandt-II during installation adds an entry to /etc/hosts as follows: @@ -16040,6 +15537,27 @@ is the master browse list holder and who is the master browser.

      Corrective Action: Delete the entry after the word loopback in the line starting 127.0.0.1


      21.5. AIX

      21.5.1. Sequential Read Ahead

      Disabling Sequential Read Ahead using "vmtune -r 0" improves +samba performance significally.


      22.1. Macintosh clients?

      22.1. Macintosh clients?

      Yes.


      22.2. OS2 Client

      22.2. OS2 Client

      22.2.1. How can I configure OS/2 Warp Connect or - OS/2 Warp 4 as a client for Samba?

      A more complete answer to this question can be found on


      22.2.2. How can I configure OS/2 Warp 3 (not Connect), - OS/2 1.2, 1.3 or 2.x for Samba?

      You can use the free Microsoft LAN Manager 2.2c Client for OS/2 from @@ -16212,10 +15730,10 @@ CLASS="SECT2" >


      22.2.3. Are there any other issues when OS/2 (any version) - is used as a client?

      When you do a NET VIEW or use the "File and Print Client Resource Browser", no Samba servers show up. This can @@ -16234,10 +15752,10 @@ CLASS="SECT2" >


      22.2.4. How do I get printer driver download working - for OS/2 clients?

      First, create a share called [PRINTDRV] that is world-readable. Copy your OS/2 driver files there. Note @@ -16247,17 +15765,13 @@ NAME="AEN3350" >

      Install the NT driver first for that printer. Then, add to your smb.conf a parameter, os2 driver map = - filenamefilename". Then, in the file - specified by filenamefilename, map the name of the NT driver name to the OS/2 driver name as follows:


      22.3. Windows for Workgroups

      22.3. Windows for Workgroups

      22.3.1. Use latest TCP/IP stack from Microsoft

      22.3.1. Use latest TCP/IP stack from Microsoft

      Use the latest TCP/IP stack from microsoft if you use Windows for workgroups.


      22.3.2. Delete .pwl files after password change

      22.3.2. Delete .pwl files after password change

      WfWg does a lousy job with passwords. I find that if I change my password on either the unix box or the PC the safest thing to do is to @@ -16335,9 +15849,9 @@ CLASS="SECT2" >


      22.3.3. Configure WfW password handling

      22.3.3. Configure WfW password handling

      There is a program call admincfg.exe on the last disk (disk 8) of the WFW 3.11 disk set. To install it @@ -16354,9 +15868,9 @@ CLASS="SECT2" >


      22.3.4. Case handling of passwords

      22.3.4. Case handling of passwords

      Windows for Workgroups uppercases the password before sending it to the server. Unix passwords can be case-sensitive though. Check the password level to specify what characters samba should try to uppercase when checking.


      22.3.5. Use TCP/IP as default protocol

      To support print queue reporting you may find +that you have to use TCP/IP as the default protocol under +WfWg. For some reason if you leave Netbeui as the default +it may break the print queue reporting on some systems. +It is presumably a WfWg bug.


      22.4. Windows '95/'98

      When using Windows 95 OEM SR2 the following updates are recommended where Samba +is being used. Please NOTE that the above change will affect you once these +updates have been installed.

      +There are more updates than the ones mentioned here. You are referred to the +Microsoft Web site for all currently available updates to your specific version +of Windows 95.

      1. Kernel Update: KRNLUPD.EXE

      2. Ping Fix: PINGUPD.EXE

      3. RPC Update: RPCRTUPD.EXE

      4. TCP/IP Update: VIPUPD.EXE

      5. Redirector Update: VRDRUPD.EXE

      Also, if using MS OutLook it is desirable to install the OLEUPD.EXE fix. This +fix may stop your machine from hanging for an extended period when exiting +OutLook and you may also notice a significant speedup when accessing network +neighborhood services.


      22.4. Windows '95/'98

      22.5. Windows 2000 Service Pack 2

      +There are several annoyances with Windows 2000 SP2. One of which +only appears when using a Samba server to host user profiles +to Windows 2000 SP2 clients in a Windows domain. This assumes +that Samba is a member of the domain, but the problem will +likely occur if it is not.

      +In order to server profiles successfully to Windows 2000 SP2 +clients (when not operating as a PDC), Samba must have +nt acl support = no +added to the file share which houses the roaming profiles. +If this is not done, then the Windows 2000 SP2 client will +complain about not being able to access the profile (Access +Denied) and create multiple copies of it on disk (DOMAIN.user.001, +DOMAIN.user.002, etc...). See the +smb.conf(5) man page +for more details on this option. Also note that the +nt acl support parameter was formally a global parameter in +releases prior to Samba 2.2.2.

      +The following is a minimal profile share:

      	[profile]
      +		path = /export/profile
      +		create mask = 0600
      +		directory mask = 0700
      +		nt acl support = no
      +		read only = no

      The reason for this bug is that the Win2k SP2 client copies +the security descriptor for the profile which contains +the Samba server's SID, and not the domain SID. The client +compares the SID for SAMBA\user and realizes it is +different that the one assigned to DOMAIN\user. Hence the reason +for the "access denied" message.

      By disabling the nt acl support parameter, Samba will send +the Win2k client a response to the QuerySecurityDescriptor +trans2 call which causes the client to set a default ACL +for the profile. This default ACL includes

      DOMAIN\user "Full Control"

      NOTE : This bug does not occur when using winbind to +create accounts on the Samba host for Domain users.


      Chapter 23. How to compile SAMBA

      You can obtain the samba source from the samba website. To obtain a development version, +you can download samba from CVS or using rsync.


      23.1. Access Samba source code via CVS

      23.1.1. Introduction

      Samba is developed in an open environment. Developers use CVS +(Concurrent Versioning System) to "checkin" (also known as +"commit") new source code. Samba's various CVS branches can +be accessed via anonymous CVS using the instructions +detailed in this chapter.

      This chapter is a modified version of the instructions found at +http://samba.org/samba/cvs.html


      23.1.2. CVS Access to samba.org

      The machine samba.org runs a publicly accessible CVS +repository for access to the source code of several packages, +including samba, rsync and jitterbug. There are two main ways of +accessing the CVS server on this host.


      23.1.2.1. Access via CVSweb

      You can access the source code via your +favourite WWW browser. This allows you to access the contents of +individual files in the repository and also to look at the revision +history and commit logs of individual files. You can also ask for a diff +listing between any two versions on the repository.

      Use the URL : http://samba.org/cgi-bin/cvsweb


      23.1.2.2. Access via cvs

      You can also access the source code via a +normal cvs client. This gives you much more control over you can +do with the repository and allows you to checkout whole source trees +and keep them up to date via normal cvs commands. This is the +preferred method of access if you are a developer and not +just a casual browser.

      To download the latest cvs source code, point your +browser at the URL : http://www.cyclic.com/. +and click on the 'How to get cvs' link. CVS is free software under +the GNU GPL (as is Samba). Note that there are several graphical CVS clients +which provide a graphical interface to the sometimes mundane CVS commands. +Links to theses clients are also available from http://www.cyclic.com.

      To gain access via anonymous cvs use the following steps. +For this example it is assumed that you want a copy of the +samba source code. For the other source code repositories +on this system just substitute the correct package name

      1. Install a recent copy of cvs. All you really need is a + copy of the cvs client binary. +

      2. Run the command +

        cvs -d :pserver:cvs@samba.org:/cvsroot login +

        When it asks you for a password type cvs. +

      3. Run the command +

        cvs -d :pserver:cvs@samba.org:/cvsroot co samba +

        This will create a directory called samba containing the + latest samba source code (i.e. the HEAD tagged cvs branch). This + currently corresponds to the 3.0 development tree. +

        CVS branches other HEAD can be obtained by using the -r + and defining a tag name. A list of branch tag names can be found on the + "Development" page of the samba web site. A common request is to obtain the + latest 2.2 release code. This could be done by using the following command. +

        cvs -d :pserver:cvs@samba.org:/cvsroot co -r SAMBA_2_2 samba +

      4. Whenever you want to merge in the latest code changes use + the following command from within the samba directory: +

        cvs update -d -P +


      23.2. Accessing the samba sources via rsync and ftp

      pserver.samba.org also exports unpacked copies of most parts of the CVS tree at ftp://pserver.samba.org/pub/unpacked and also via anonymous rsync at rsync://pserver.samba.org/ftp/unpacked/. I recommend using rsync rather than ftp. + See the rsync homepage for more info on rsync. +

      The disadvantage of the unpacked trees + is that they do not support automatic + merging of local changes like CVS does. + rsync access is most convenient for an + initial install. +


      23.3. Building the Binaries

      To do this, first run the program ./configure + in the source directory. This should automatically + configure Samba for your operating system. If you have unusual + needs then you may wish to run

      root# ./configure --help +

      first to see what special options you can enable. + Then executing

      root# make

      will create the binaries. Once it's successfully + compiled you can use

      root# make install

      to install the binaries and manual pages. You can + separately install the binaries and/or man pages using

      root# make installbin +

      and

      root# make installman +

      Note that if you are upgrading for a previous version + of Samba you might like to know that the old versions of + the binaries will be renamed with a ".old" extension. You + can go back to the previous version with

      root# make revert +

      if you find this version a disaster!


      23.4. Starting the smbd and nmbd

      You must choose to start smbd and nmbd either + as daemons or from inetd. Don't try + to do both! Either you can put them in inetd.conf and have them started on demand + by inetd, or you can start them as + daemons either from the command line or in /etc/rc.local. See the man pages for details + on the command line options. Take particular care to read + the bit about what user you need to be in order to start + Samba. In many cases you must be root.

      The main advantage of starting smbd + and nmbd using the recommended daemon method + is that they will respond slightly more quickly to an initial connection + request.


      23.4.1. Starting from inetd.conf

      When using Windows 95 OEM SR2 the following updates are recommended where Samba -is being used. Please NOTE that the above change will affect you once these -updates have been installed.

      NOTE; The following will be different if + you use NIS, NIS+ or LDAP to distribute services maps.

      -There are more updates than the ones mentioned here. You are referred to the -Microsoft Web site for all currently available updates to your specific version -of Windows 95.

      Look at your /etc/services. + What is defined at port 139/tcp. If nothing is defined + then add a line like this:

      netbios-ssn 139/tcp

      1. Kernel Update: KRNLUPD.EXE

      2. similarly for 137/udp you should have an entry like:

        Ping Fix: PINGUPD.EXE

      3. netbios-ns 137/udp

        RPC Update: RPCRTUPD.EXE

      4. Next edit your /etc/inetd.conf + and add two lines something like this:

        TCP/IP Update: VIPUPD.EXE

      5. 		netbios-ssn stream tcp nowait root /usr/local/samba/bin/smbd smbd 
        +		netbios-ns dgram udp wait root /usr/local/samba/bin/nmbd nmbd 
        +		

        Redirector Update: VRDRUPD.EXE

      The exact syntax of /etc/inetd.conf + varies between unixes. Look at the other entries in inetd.conf + for a guide.

      Also, if using MS OutLook it is desirable to install the OLEUPD.EXE fix. This -fix may stop your machine from hanging for an extended period when exiting -OutLook and you may also notice a significant speedup when accessing network -neighborhood services.


      22.5. Windows 2000 Service Pack 2

      NOTE: Some unixes already have entries like netbios_ns + (note the underscore) in /etc/services. + You must either edit /etc/services or + /etc/inetd.conf to make them consistent.

      NOTE: On many systems you may need to use the + "interfaces" option in smb.conf to specify the IP address + and netmask of your interfaces. Run ifconfig -There are several annoyances with Windows 2000 SP2. One of which -only appears when using a Samba server to host user profiles -to Windows 2000 SP2 clients in a Windows domain. This assumes -that Samba is a member of the domain, but the problem will -likely occur if it is not.

      nmbd
      tries to determine it at run + time, but fails on some unixes. See the section on "testing nmbd" + for a method of finding if you need to do this.

      -In order to server profiles successfully to Windows 2000 SP2 -clients (when not operating as a PDC), Samba must have -!!!WARNING!!! Many unixes only accept around 5 + parameters on the command line in inetd.conf. + This means you shouldn't use spaces between the options and + arguments, or you should use a script, and start the script + from nt acl support = no -added to the file share which houses the roaming profiles. -If this is not done, then the Windows 2000 SP2 client will -complain about not being able to access the profile (Access -Denied) and create multiple copies of it on disk (DOMAIN.user.001, -DOMAIN.user.002, etc...). See the -smb.conf(5) man page -for more details on this option. Also note that the -inetd.

      Restart nt acl support parameter was formally a global parameter in -releases prior to Samba 2.2.2.

      inetd, perhaps just send + it a HUP. If you have installed an earlier version of nmbd then you may need to kill nmbd as well.


      23.4.2. Alternative: starting it as a daemon

      -The following is a minimal profile share:

      To start the server as a daemon you should create + a script something like this one, perhaps calling + it startsmb.

      	[profile]
      -		path = /export/profile
      -		create mask = 0600
      -		directory mask = 0700
      -		nt acl support = no
      -		read only = no
      #!/bin/sh + /usr/local/samba/bin/smbd -D + /usr/local/samba/bin/nmbd -D +

      The reason for this bug is that the Win2k SP2 client copies -the security descriptor for the profile which contains -the Samba server's SID, and not the domain SID. The client -compares the SID for SAMBA\user and realizes it is -different that the one assigned to DOMAIN\user. Hence the reason -for the "access denied" message.

      then make it executable with chmod + +x startsmb

      By disabling the You can then run nt acl support parameter, Samba will send -the Win2k client a response to the QuerySecurityDescriptor -trans2 call which causes the client to set a default ACL -for the profile. This default ACL includes

      startsmb by + hand or execute it from /etc/rc.local +

      To kill it send a kill signal to the processes + DOMAIN\user "Full Control"

      nmbd and smbd.

      NOTE : This bug does not occur when using winbind to -create accounts on the Samba host for Domain users.

      NOTE: If you use the SVR4 style init system then + you may like to look at the examples/svr4-startup + script to make Samba fit into that system.

      Chapter 23. Reporting BugsChapter 24. Reporting Bugs

      23.1. Introduction

      24.1. Introduction

      The email address for bug reports for stable releases is


      23.2. General info

      24.2. General info

      Before submitting a bug report check your config for silly errors. Look in your log files for obvious messages that tell you that @@ -16581,9 +16606,9 @@ CLASS="SECT1" >


      23.3. Debug levels

      24.3. Debug levels

      If the bug has anything to do with Samba behaving incorrectly as a server (like refusing to open a file) then the log files will probably @@ -16651,9 +16676,9 @@ CLASS="SECT1" >


      23.4. Internal errors

      24.4. Internal errors

      If you get a "INTERNAL ERROR" message in your log files it means that Samba got an unexpected signal while running. It is probably a @@ -16695,9 +16720,9 @@ CLASS="SECT1" >


      23.5. Attaching to a running process

      24.5. Attaching to a running process

      Unfortunately some unixes (in particular some recent linux kernels) refuse to dump a core file if the task has changed uid (which smbd @@ -16712,9 +16737,9 @@ CLASS="SECT1" >


      23.6. Patches

      24.6. Patches

      The best sort of bug report is one that includes a fix! If you send us patches please use Chapter 24. Diagnosing your samba serverChapter 25. The samba checklist

      24.1. Introduction

      25.1. Introduction

      This file contains a list of tests you can perform to validate your Samba server. It also tells you what the likely cause of the problem @@ -16763,9 +16788,9 @@ CLASS="SECT1" >


      24.2. Assumptions

      25.2. Assumptions

      In all of the tests it is assumed you have a Samba server called BIGSERVER and a PC called ACLIENT both in workgroup TESTGROUP.


      24.3. Tests

      25.3. Tests

      24.3.1. Test 1

      25.3.1. Test 1

      In the directory in which you store your smb.conf file, run the command "testparm smb.conf". If it reports any errors then your smb.conf @@ -16831,9 +16856,9 @@ CLASS="SECT2" >


      24.3.2. Test 2

      25.3.2. Test 2

      Run the command "ping BIGSERVER" from the PC and "ping ACLIENT" from the unix box. If you don't get a valid response then your TCP/IP @@ -16857,9 +16882,9 @@ CLASS="SECT2" >


      24.3.3. Test 3

      25.3.3. Test 3

      Run the command "smbclient -L BIGSERVER" on the unix box. You should get a list of available shares back.


      24.3.4. Test 4

      25.3.4. Test 4

      Run the command "nmblookup -B BIGSERVER __SAMBA__". You should get the IP address of your Samba server back.


      24.3.5. Test 5

      25.3.5. Test 5

      run the command


      24.3.6. Test 6

      25.3.6. Test 6

      Run the command


      24.3.7. Test 7

      25.3.7. Test 7

      Run the command . You should then be prompted for a password. You should use the password of the account you are logged into the unix box with. If you want to test with -another account then add the -U >accountname< option to the end of +another account then add the -U >accountname< option to the end of the command line. eg: etc. Type help >command<help >command< for instructions. You should especially check that the amount of free disk space shown is correct when you type


      24.3.8. Test 8

      25.3.8. Test 8

      On the PC type the command


      24.3.9. Test 9

      25.3.9. Test 9

      Run the command


      24.3.10. Test 10

      25.3.10. Test 10

      Run the command


      24.3.11. Test 11

      25.3.11. Test 11

      From file manager try to browse the server. Your samba server should appear in the browse list of your local workgroup (or the one you @@ -17241,9 +17266,9 @@ CLASS="SECT1" >


      24.4. Still having troubles?

      25.4. Still having troubles?

      Try the mailing list or newsgroup, or use the ethereal utility to sniff the problem. The official samba mailing list can be reached at diff --git a/docs/htmldocs/ads.html b/docs/htmldocs/ads.html index 2c556b61f3a..6fc44d91700 100644 --- a/docs/htmldocs/ads.html +++ b/docs/htmldocs/ads.html @@ -5,7 +5,7 @@ >Samba as a ADS domain member

      7.1. Installing the required packages for Debian

      7.1. Installing the required packages for Debian

      On Debian you need to install the following packages:

      7.2. Installing the required packages for RedHat

      7.2. Installing the required packages for RedHat

      On RedHat this means you should have at least:

      7.3. Compile Samba

      7.3. Compile Samba

      If your kerberos libraries are in a non-standard location then remember to add the configure option --with-krb5=DIR.

      7.4. Setup your /etc/krb5.conf

      7.4. Setup your /etc/krb5.conf

      The minimal configuration for krb5.conf is:

      7.5. Create the computer account

      7.5. Create the computer account

      As a user that has write permission on the Samba private directory (usually root) run: @@ -291,9 +291,9 @@ CLASS="SECT2" >

      7.5.1. Possible errors

      7.5.1. Possible errors

      7.6. Test your server setup

      7.6. Test your server setup

      On a Windows 2000 client try

      7.7. Testing with smbclient

      7.7. Testing with smbclient

      On your Samba server try to login to a Win2000 server or your Samba server using smbclient and kerberos. Use smbclient as usual, but @@ -349,9 +349,9 @@ CLASS="SECT1" >

      7.8. Notes

      7.8. Notes

      You must change administrator password at least once after DC install, to create the right encoding types

      AppendixesPrev
      21.1. HPUX
      21.2. SCO Unix
      21.3. DNIX
      21.4. RedHat Linux Rembrandt-II
      21.5. AIX
      21.5.1. Sequential Read Ahead
      22.1. Macintosh clients?
      22.2. OS2 Client
      22.2.1. How can I configure OS/2 Warp Connect or OS/2 Warp 4 as a client for Samba?
      22.2.2. How can I configure OS/2 Warp 3 (not Connect), OS/2 1.2, 1.3 or 2.x for Samba?
      22.2.3. Are there any other issues when OS/2 (any version) is used as a client?
      22.2.4. How do I get printer driver download working for OS/2 clients?
      22.3. Windows for Workgroups
      22.3.1. Use latest TCP/IP stack from Microsoft
      22.3.2. Delete .pwl files after password change
      22.3.3. Configure WfW password handling
      22.3.4. Case handling of passwords
      22.3.5. Use TCP/IP as default protocol
      22.4. Windows '95/'98
      22.5. Windows 2000 Service Pack 2
      23. Reporting BugsHow to compile SAMBA
      23.1. Access Samba source code via CVS
      23.1.1. Introduction
      23.1.2. CVS Access to samba.org
      23.2. General infoAccessing the samba sources via rsync and ftp
      23.3. Debug levelsBuilding the Binaries
      23.4. Starting the smbd and nmbd
      23.4.1. Starting from inetd.conf
      23.4.2. Alternative: starting it as a daemon
      24. Reporting Bugs
      24.1. Introduction
      24.2. General info
      24.3. Debug levels
      24.4. Internal errors
      23.5. 24.5. Attaching to a running process
      23.6. 24.6. Patches
      24. 25. Diagnosing your samba serverThe samba checklist
      24.1. 25.1. Introduction
      24.2. 25.2. Assumptions
      24.3. 25.3. Tests
      24.3.1. 25.3.1. Test 1
      24.3.2. 25.3.2. Test 2
      24.3.3. 25.3.3. Test 3
      24.3.4. 25.3.4. Test 4
      24.3.5. 25.3.5. Test 5
      24.3.6. 25.3.6. Test 6
      24.3.7. 25.3.7. Test 7
      24.3.8. 25.3.8. Test 8
      24.3.9. 25.3.9. Test 9
      24.3.10. 25.3.10. Test 10
      24.3.11. 25.3.11. Test 11
      24.4. 25.4. Still having troubles?
      PrevCreating Group ProfilesSecuring Samba
Chapter 23. Reporting BugsChapter 24. Reporting Bugs

23.1. Introduction

24.1. Introduction

The email address for bug reports for stable releases is

23.2. General info

24.2. General info

Before submitting a bug report check your config for silly errors. Look in your log files for obvious messages that tell you that @@ -150,9 +150,9 @@ CLASS="SECT1" >

23.3. Debug levels

24.3. Debug levels

If the bug has anything to do with Samba behaving incorrectly as a server (like refusing to open a file) then the log files will probably @@ -220,9 +220,9 @@ CLASS="SECT1" >

23.4. Internal errors

24.4. Internal errors

If you get a "INTERNAL ERROR" message in your log files it means that Samba got an unexpected signal while running. It is probably a @@ -264,9 +264,9 @@ CLASS="SECT1" >

23.5. Attaching to a running process

24.5. Attaching to a running process

Unfortunately some unixes (in particular some recent linux kernels) refuse to dump a core file if the task has changed uid (which smbd @@ -281,9 +281,9 @@ CLASS="SECT1" >

23.6. Patches

24.6. Patches

The best sort of bug report is one that includes a fix! If you send us patches please use PrevSamba and other CIFS clientsHow to compile SAMBA

The samba checklist
Quick Cross Subnet Browsing / Cross Workgroup Browsing guide

Note: MS Windows 2000 and later can be configured to operate with NO NetBIOS +over TCP/IP. Samba-3 and later also supports this mode of operation.

2.1. Discussion

2.1. Discussion

Firstly, all MS Windows networking is based on SMB (Server Message -Block) based messaging. SMB messaging is implemented using NetBIOS. Samba -implements NetBIOS by encapsulating it over TCP/IP. MS Windows products can -do likewise. NetBIOS based networking uses broadcast messaging to affect -browse list management. When running NetBIOS over TCP/IP this uses UDP -based messaging. UDP messages can be broadcast or unicast.

Normally, only unicast UDP messaging can be forwarded by routers. The "remote announce" parameter to smb.conf helps to project browse announcements @@ -109,18 +112,23 @@ segment is configured with it's own Samba WINS server, then the only way to get cross segment browsing to work is by using the "remote announce" and the "remote browse sync" parameters to your smb.conf file.

If only one WINS server is used then the use of the "remote announce" and the -"remote browse sync" parameters should NOT be necessary.

If only one WINS server is used for an entire multi-segment network then +the use of the "remote announce" and the "remote browse sync" parameters +should NOT be necessary.

Samba WINS does not support MS-WINS replication. This means that when setting up -Samba as a WINS server there must only be one nmbd configured as a WINS server -on the network. Some sites have used multiple Samba WINS servers for redundancy -(one server per subnet) and then used "remote browse sync" and "remote announce" -to affect browse list collation across all segments. Note that this means -clients will only resolve local names, and must be configured to use DNS to -resolve names on other subnets in order to resolve the IP addresses of the -servers they can see on other subnets. This setup is not recommended, but is -mentioned as a practical consideration (ie: an 'if all else fails' scenario).

As of Samba-3 WINS replication is being worked on. The bulk of the code has +been committed, but it still needs maturation.

Right now samba WINS does not support MS-WINS replication. This means that +when setting up Samba as a WINS server there must only be one nmbd configured +as a WINS server on the network. Some sites have used multiple Samba WINS +servers for redundancy (one server per subnet) and then used "remote browse +sync" and "remote announce" to affect browse list collation across all +segments. Note that this means clients will only resolve local names, +and must be configured to use DNS to resolve names on other subnets in +order to resolve the IP addresses of the servers they can see on other +subnets. This setup is not recommended, but is mentioned as a practical +consideration (ie: an 'if all else fails' scenario).

Lastly, take note that browse lists are a collection of unreliable broadcast messages that are repeated at intervals of not more than 15 minutes. This means @@ -132,9 +140,9 @@ CLASS="SECT1" >

2.2. Use of the "Remote Announce" parameter

2.2. Use of the "Remote Announce" parameter

The "remote announce" parameter of smb.conf can be used to forcibly ensure that all the NetBIOS names on a network get announced to a remote network. @@ -190,9 +198,9 @@ CLASS="SECT1" >

2.3. Use of the "Remote Browse Sync" parameter

2.3. Use of the "Remote Browse Sync" parameter

The "remote browse sync" parameter of smb.conf is used to announce to another LMB that it must synchronise it's NetBIOS name list with our @@ -213,9 +221,9 @@ CLASS="SECT1" >

2.4. Use of WINS

2.4. Use of WINS

Use of WINS (either Samba WINS _or_ MS Windows NT Server WINS) is highly recommended. Every NetBIOS machine registers it's name together with a @@ -267,22 +275,23 @@ CLASS="emphasis" CLASS="EMPHASIS" >DO NOT EVER use both "wins support = yes" together with "wins server = a.b.c.d" -particularly not using it's own IP address.

use both "wins support = yes" together +with "wins server = a.b.c.d" particularly not using it's own IP address. +Specifying both will cause nmbd to refuse to start!

2.5. Do NOT use more than one (1) protocol on MS Windows machines

2.5. Do NOT use more than one (1) protocol on MS Windows machines

A very common cause of browsing problems results from installing more than one protocol on an MS Windows machine.

Every NetBIOS machine take part in a process of electing the LMB (and DMB) +>Every NetBIOS machine takes part in a process of electing the LMB (and DMB) every 15 minutes. A set of election criteria is used to determine the order of precidence for winning this election process. A machine running Samba or Windows NT will be biased so that the most suitable machine will predictably @@ -298,6 +307,19 @@ interface over the IPX protocol. Samba will then lose the LMB role as Windows as an LMB and thus browse list operation on all TCP/IP only machines will fail.

Windows 95, 98, 98se, Me are referred to generically as Windows 9x. +The Windows NT4, 2000, XP and 2003 use common protocols. These are roughly +referred to as the WinNT family, but it should be recognised that 2000 and +XP/2003 introduce new protocol extensions that cause them to behave +differently from MS Windows NT4. Generally, where a server does NOT support +the newer or extended protocol, these will fall back to the NT4 protocols.

The safest rule of all to follow it this - USE ONLY ONE PROTOCOL!

2.6. Name Resolution Order

2.6. Name Resolution Order

Resolution of NetBIOS names to IP addresses can take place using a number of methods. The only ones that can provide NetBIOS name_type information diff --git a/docs/htmldocs/bugreport.html b/docs/htmldocs/bugreport.html index 813d0055ccb..cc4fc83df6c 100644 --- a/docs/htmldocs/bugreport.html +++ b/docs/htmldocs/bugreport.html @@ -5,7 +5,7 @@ >Reporting BugsPrev

Diagnosing your samba server
+How to compile SAMBA
SAMBA Project Documentation
PrevNext

Chapter 23. How to compile SAMBA

You can obtain the samba source from the samba website. To obtain a development version, +you can download samba from CVS or using rsync.

23.1. Access Samba source code via CVS

23.1.1. Introduction

Samba is developed in an open environment. Developers use CVS +(Concurrent Versioning System) to "checkin" (also known as +"commit") new source code. Samba's various CVS branches can +be accessed via anonymous CVS using the instructions +detailed in this chapter.

This chapter is a modified version of the instructions found at +http://samba.org/samba/cvs.html

23.1.2. CVS Access to samba.org

The machine samba.org runs a publicly accessible CVS +repository for access to the source code of several packages, +including samba, rsync and jitterbug. There are two main ways of +accessing the CVS server on this host.

23.1.2.1. Access via CVSweb

You can access the source code via your +favourite WWW browser. This allows you to access the contents of +individual files in the repository and also to look at the revision +history and commit logs of individual files. You can also ask for a diff +listing between any two versions on the repository.

Use the URL : http://samba.org/cgi-bin/cvsweb

23.1.2.2. Access via cvs

You can also access the source code via a +normal cvs client. This gives you much more control over you can +do with the repository and allows you to checkout whole source trees +and keep them up to date via normal cvs commands. This is the +preferred method of access if you are a developer and not +just a casual browser.

To download the latest cvs source code, point your +browser at the URL : http://www.cyclic.com/. +and click on the 'How to get cvs' link. CVS is free software under +the GNU GPL (as is Samba). Note that there are several graphical CVS clients +which provide a graphical interface to the sometimes mundane CVS commands. +Links to theses clients are also available from http://www.cyclic.com.

To gain access via anonymous cvs use the following steps. +For this example it is assumed that you want a copy of the +samba source code. For the other source code repositories +on this system just substitute the correct package name

  1. Install a recent copy of cvs. All you really need is a + copy of the cvs client binary. +

  2. Run the command +

    cvs -d :pserver:cvs@samba.org:/cvsroot login +

    When it asks you for a password type cvs. +

  3. Run the command +

    cvs -d :pserver:cvs@samba.org:/cvsroot co samba +

    This will create a directory called samba containing the + latest samba source code (i.e. the HEAD tagged cvs branch). This + currently corresponds to the 3.0 development tree. +

    CVS branches other HEAD can be obtained by using the -r + and defining a tag name. A list of branch tag names can be found on the + "Development" page of the samba web site. A common request is to obtain the + latest 2.2 release code. This could be done by using the following command. +

    cvs -d :pserver:cvs@samba.org:/cvsroot co -r SAMBA_2_2 samba +

  4. Whenever you want to merge in the latest code changes use + the following command from within the samba directory: +

    cvs update -d -P +

23.2. Accessing the samba sources via rsync and ftp

pserver.samba.org also exports unpacked copies of most parts of the CVS tree at ftp://pserver.samba.org/pub/unpacked and also via anonymous rsync at rsync://pserver.samba.org/ftp/unpacked/. I recommend using rsync rather than ftp. + See the rsync homepage for more info on rsync. +

The disadvantage of the unpacked trees + is that they do not support automatic + merging of local changes like CVS does. + rsync access is most convenient for an + initial install. +

23.3. Building the Binaries

To do this, first run the program ./configure + in the source directory. This should automatically + configure Samba for your operating system. If you have unusual + needs then you may wish to run

root# ./configure --help +

first to see what special options you can enable. + Then executing

root# make

will create the binaries. Once it's successfully + compiled you can use

root# make install

to install the binaries and manual pages. You can + separately install the binaries and/or man pages using

root# make installbin +

and

root# make installman +

Note that if you are upgrading for a previous version + of Samba you might like to know that the old versions of + the binaries will be renamed with a ".old" extension. You + can go back to the previous version with

root# make revert +

if you find this version a disaster!

23.4. Starting the smbd and nmbd

You must choose to start smbd and nmbd either + as daemons or from inetd. Don't try + to do both! Either you can put them in inetd.conf and have them started on demand + by inetd, or you can start them as + daemons either from the command line or in /etc/rc.local. See the man pages for details + on the command line options. Take particular care to read + the bit about what user you need to be in order to start + Samba. In many cases you must be root.

The main advantage of starting smbd + and nmbd using the recommended daemon method + is that they will respond slightly more quickly to an initial connection + request.

23.4.1. Starting from inetd.conf

NOTE; The following will be different if + you use NIS, NIS+ or LDAP to distribute services maps.

Look at your /etc/services. + What is defined at port 139/tcp. If nothing is defined + then add a line like this:

netbios-ssn 139/tcp

similarly for 137/udp you should have an entry like:

netbios-ns 137/udp

Next edit your /etc/inetd.conf + and add two lines something like this:

		netbios-ssn stream tcp nowait root /usr/local/samba/bin/smbd smbd 
+		netbios-ns dgram udp wait root /usr/local/samba/bin/nmbd nmbd 
+		

The exact syntax of /etc/inetd.conf + varies between unixes. Look at the other entries in inetd.conf + for a guide.

NOTE: Some unixes already have entries like netbios_ns + (note the underscore) in /etc/services. + You must either edit /etc/services or + /etc/inetd.conf to make them consistent.

NOTE: On many systems you may need to use the + "interfaces" option in smb.conf to specify the IP address + and netmask of your interfaces. Run ifconfig + as root if you don't know what the broadcast is for your + net. nmbd tries to determine it at run + time, but fails on some unixes. See the section on "testing nmbd" + for a method of finding if you need to do this.

!!!WARNING!!! Many unixes only accept around 5 + parameters on the command line in inetd.conf. + This means you shouldn't use spaces between the options and + arguments, or you should use a script, and start the script + from inetd.

Restart inetd, perhaps just send + it a HUP. If you have installed an earlier version of nmbd then you may need to kill nmbd as well.

23.4.2. Alternative: starting it as a daemon

To start the server as a daemon you should create + a script something like this one, perhaps calling + it startsmb.

		#!/bin/sh
+		/usr/local/samba/bin/smbd -D 
+		/usr/local/samba/bin/nmbd -D 
+		

then make it executable with chmod + +x startsmb

You can then run startsmb by + hand or execute it from /etc/rc.local +

To kill it send a kill signal to the processes + nmbd and smbd.

NOTE: If you use the SVR4 style init system then + you may like to look at the examples/svr4-startup + script to make Samba fit into that system.


PrevHomeNext
Samba and other CIFS clientsUpReporting Bugs
\ No newline at end of file diff --git a/docs/htmldocs/cvs-access.html b/docs/htmldocs/cvs-access.html deleted file mode 100644 index 4e088faf706..00000000000 --- a/docs/htmldocs/cvs-access.html +++ /dev/null @@ -1,307 +0,0 @@ - -Access Samba source code via CVS
SAMBA Project Documentation
PrevNext

Chapter 17. Access Samba source code via CVS

17.1. Introduction

Samba is developed in an open environment. Developers use CVS -(Concurrent Versioning System) to "checkin" (also known as -"commit") new source code. Samba's various CVS branches can -be accessed via anonymous CVS using the instructions -detailed in this chapter.

This document is a modified version of the instructions found at -http://samba.org/samba/cvs.html

17.2. CVS Access to samba.org

The machine samba.org runs a publicly accessible CVS -repository for access to the source code of several packages, -including samba, rsync and jitterbug. There are two main ways of -accessing the CVS server on this host.

17.2.1. Access via CVSweb

You can access the source code via your -favourite WWW browser. This allows you to access the contents of -individual files in the repository and also to look at the revision -history and commit logs of individual files. You can also ask for a diff -listing between any two versions on the repository.

Use the URL : http://samba.org/cgi-bin/cvsweb

17.2.2. Access via cvs

You can also access the source code via a -normal cvs client. This gives you much more control over you can -do with the repository and allows you to checkout whole source trees -and keep them up to date via normal cvs commands. This is the -preferred method of access if you are a developer and not -just a casual browser.

To download the latest cvs source code, point your -browser at the URL : http://www.cyclic.com/. -and click on the 'How to get cvs' link. CVS is free software under -the GNU GPL (as is Samba). Note that there are several graphical CVS clients -which provide a graphical interface to the sometimes mundane CVS commands. -Links to theses clients are also available from http://www.cyclic.com.

To gain access via anonymous cvs use the following steps. -For this example it is assumed that you want a copy of the -samba source code. For the other source code repositories -on this system just substitute the correct package name

  1. Install a recent copy of cvs. All you really need is a - copy of the cvs client binary. -

  2. Run the command -

    cvs -d :pserver:cvs@samba.org:/cvsroot login -

    When it asks you for a password type cvs. -

  3. Run the command -

    cvs -d :pserver:cvs@samba.org:/cvsroot co samba -

    This will create a directory called samba containing the - latest samba source code (i.e. the HEAD tagged cvs branch). This - currently corresponds to the 3.0 development tree. -

    CVS branches other HEAD can be obtained by using the -r - and defining a tag name. A list of branch tag names can be found on the - "Development" page of the samba web site. A common request is to obtain the - latest 2.2 release code. This could be done by using the following command. -

    cvs -d :pserver:cvs@samba.org:/cvsroot co -r SAMBA_2_2 samba -

  4. Whenever you want to merge in the latest code changes use - the following command from within the samba directory: -

    cvs update -d -P -


PrevHomeNext
Stackable VFS modulesUpGroup mapping HOWTO
\ No newline at end of file diff --git a/docs/htmldocs/diagnosis.html b/docs/htmldocs/diagnosis.html index 0c710430742..e91ac21f034 100644 --- a/docs/htmldocs/diagnosis.html +++ b/docs/htmldocs/diagnosis.html @@ -2,10 +2,10 @@ Diagnosing your samba serverThe samba checklistChapter 24. Diagnosing your samba serverChapter 25. The samba checklist

24.1. Introduction

25.1. Introduction

This file contains a list of tests you can perform to validate your Samba server. It also tells you what the likely cause of the problem @@ -95,9 +95,9 @@ CLASS="SECT1" >

24.2. Assumptions

25.2. Assumptions

In all of the tests it is assumed you have a Samba server called BIGSERVER and a PC called ACLIENT both in workgroup TESTGROUP.

24.3. Tests

25.3. Tests

24.3.1. Test 1

25.3.1. Test 1

In the directory in which you store your smb.conf file, run the command "testparm smb.conf". If it reports any errors then your smb.conf @@ -163,9 +163,9 @@ CLASS="SECT2" >

24.3.2. Test 2

25.3.2. Test 2

Run the command "ping BIGSERVER" from the PC and "ping ACLIENT" from the unix box. If you don't get a valid response then your TCP/IP @@ -189,9 +189,9 @@ CLASS="SECT2" >

24.3.3. Test 3

25.3.3. Test 3

Run the command "smbclient -L BIGSERVER" on the unix box. You should get a list of available shares back.

24.3.4. Test 4

25.3.4. Test 4

Run the command "nmblookup -B BIGSERVER __SAMBA__". You should get the IP address of your Samba server back.

24.3.5. Test 5

25.3.5. Test 5

run the command

24.3.6. Test 6

25.3.6. Test 6

Run the command

24.3.7. Test 7

25.3.7. Test 7

Run the command . You should then be prompted for a password. You should use the password of the account you are logged into the unix box with. If you want to test with -another account then add the -U >accountname< option to the end of +another account then add the -U >accountname< option to the end of the command line. eg: etc. Type help >command<help >command< for instructions. You should especially check that the amount of free disk space shown is correct when you type

24.3.8. Test 8

25.3.8. Test 8

On the PC type the command

24.3.9. Test 9

25.3.9. Test 9

Run the command

24.3.10. Test 10

25.3.10. Test 10

Run the command

24.3.11. Test 11

25.3.11. Test 11

From file manager try to browse the server. Your samba server should appear in the browse list of your local workgroup (or the one you @@ -573,9 +573,9 @@ CLASS="SECT1" >

24.4. Still having troubles?

25.4. Still having troubles?

Try the mailing list or newsgroup, or use the ethereal utility to sniff the problem. The official samba mailing list can be reached at diff --git a/docs/htmldocs/domain-security.html b/docs/htmldocs/domain-security.html index fcb40641e41..d47138d791e 100644 --- a/docs/htmldocs/domain-security.html +++ b/docs/htmldocs/domain-security.html @@ -5,7 +5,7 @@ >Samba as a NT4 or Win2k domain member

8.1. Joining an NT Domain with Samba 3.0

8.1. Joining an NT Domain with Samba 3.0

Assume you have a Samba 3.0 server with a NetBIOS name of - SERV1SERV1 and are joining an or Win2k NT domain called - DOMDOM, which has a PDC with a NetBIOS name - of DOMPDCDOMPDC and two backup domain controllers - with NetBIOS names DOMBDC1 and DOMBDC1 and DOMBDC2 - .

Firstly, you must edit your Change (or add) your security =security = line in the [global] section of your smb.conf to read:

Next change the workgroup = workgroup = line in the [global] section to read:

You must also have the parameter encrypt passwordsencrypt passwords set to set to yes - in order for your users to authenticate to the NT PDC.

Finally, add (or modify) a password server =password server = line in the [global] section to read:

In order to actually join the domain, you must run this command:

root# root# net join -S DOMPDC - -UAdministrator%passwordAdministrator%password

as we are joining the domain DOM and the PDC for that domain (the only machine that has write access to the domain SAM database) - is DOMPDC. The Administrator%passwordAdministrator%password is the login name and password for an account which has the necessary privilege to add machines to the domain. If this is successful you will see the message:

Joined domain DOM.Joined domain DOM. - or Joined 'SERV1' to realm 'MYREALM'Joined 'SERV1' to realm 'MYREALM'

8.2. Samba and Windows 2000 Domains

8.2. Samba and Windows 2000 Domains

Many people have asked regarding the state of Samba's ability to participate in a Windows 2000 Domain. Samba 3.0 is able to act as a member server of a Windows @@ -296,16 +282,16 @@ CLASS="SECT1" >

8.3. Why is this better than security = server?

8.3. Why is this better than security = server?

Currently, domain security in Samba doesn't free you from having to create local Unix users to represent the users attaching - to your server. This means that if domain user DOM\fred - attaches to your domain security Samba server, there needs to be a local Unix user fred to represent that user in the Unix filesystem. This is very similar to the older Samba security mode diff --git a/docs/htmldocs/findsmb.1.html b/docs/htmldocs/findsmb.1.html index bf63db867c3..bc0aec55c08 100644 --- a/docs/htmldocs/findsmb.1.html +++ b/docs/htmldocs/findsmb.1.html @@ -5,7 +5,7 @@ >findsmbnmblookup(1) - will be called with -B-B option.

nmblookup(1) - as part of the -B-B option.

The command with The command with -r-r option must be run on a system without is running on the system, you will only get the IP address and the DNS name of the machine. To get proper responses from Windows 95 and Windows 98 machines, - the command must be run as root and with -r-r option on a machine without findsmb - without -r-r option set would yield output similar to the following

Group mapping HOWTOPrevChapter 18. Group mapping HOWTOChapter 17. Group mapping HOWTO

Starting with Samba 3.0 alpha 2, a new group mapping function is available. The @@ -185,7 +185,7 @@ WIDTH="33%" ALIGN="left" VALIGN="top" >PrevAccess Samba source code via CVSStackable VFS modulesCreating Group ProfilesCreating Group Prolicy FilesNextChapter 20. Creating Group ProfilesChapter 19. Creating Group Prolicy Files

20.1. Windows '9x

19.1. Windows '9x

You need the Win98 Group Policy Editor to set Group Profiles up under Windows '9x. It can be found on the Original @@ -106,25 +106,28 @@ CLASS="FILENAME" > that needs to be placed in the root of the [NETLOGON] share. If your Win98 is configured to log onto the Samba Domain, it will automatically read this file and update the -Win98 registry of the machine that is logging on.

All of this is covered in the Win98 Resource Kit documentation.

If you do not do it this way, then every so often Win98 will check the +>If you do not do it this way, then every so often Win9x/Me will check the integrity of the registry and will restore it's settings from the back-up -copy of the registry it stores on each Win98 machine. Hence, you will notice -things changing back to the original settings.

The following all refers to Windows NT/200x profile migration - not to policies. +We need a separate section on policies (NTConfig.Pol) for NT4/200x.

20.2. Windows NT 4

19.2. Windows NT 4

Unfortunately, the Resource Kit info is Win NT4/2K version specific.

Unfortunately, the Resource Kit info is Win NT4 or 200x specific.

Here is a quick guide:

I am using the term "migrate" lossely. You can copy a profile to +>I am using the term "migrate" lossely. You can copy a profile to create a group profile. You can give the user 'Everyone' rights to the profile you copy this to. That is what you need to do, since your samba domain is not a member of a trust relationship with your NT4 PDC.

20.2.1. Side bar Notes

19.2.1. Side bar Notes

You should obtain the SID of your NT4 domain. You can use smbpasswd to do this. Read the man page.

20.2.2. Mandatory profiles

19.2.2. Mandatory profiles

The above method can be used to create mandatory profiles also. To convert a group profile into a mandatory profile simply locate the NTUser.DAT file @@ -230,9 +233,9 @@ CLASS="SECT2" >

20.2.3. moveuser.exe

19.2.3. moveuser.exe

The W2K professional resource kit has moveuser.exe. moveuser.exe changes the security of a profile from one user to another. This allows the account @@ -243,9 +246,9 @@ CLASS="SECT2" >

20.2.4. Get SID

19.2.4. Get SID

You can identify the SID by using GetSID.exe from the Windows NT Server 4.0 Resource Kit.

20.3. Windows 2000/XP

19.3. Windows 2000/XP

You must first convert the profile from a local profile to a domain profile on the MS Windows workstation as follows:

NextAppendixesSecuring Samba
Improved browsing in samba

15.1. Overview of browsing

15.1. Overview of browsing

SMB networking provides a mechanism by which clients can access a list of machines in a network, a so-called "browse list". This list @@ -93,8 +93,13 @@ list is heavily used by all SMB clients. Configuration of SMB browsing has been problematic for some Samba users, hence this document.

Browsing will NOT work if name resolution from NetBIOS names to IP -addresses does not function correctly. Use of a WINS server is highly +>MS Windows 2000 and later, as with Samba-3 and later, can be +configured to not use NetBIOS over TCP/IP. When configured this way +it is imperative that name resolution (using DNS/LDAP/ADS) be correctly +configured and operative. Browsing will NOT work if name resolution +from SMB machine names to IP addresses does not function correctly.

Where NetBIOS over TCP/IP is enabled use of a WINS server is highly recommended to aid the resolution of NetBIOS (SMB) names to IP addresses. WINS allows remote segment clients to obtain NetBIOS name_type information that can NOT be provided by any other means of name resolution.

15.2. Browsing support in samba

15.2. Browsing support in samba

Samba now fully supports browsing. The browsing is supported by nmbd -and is also controlled by options in the smb.conf file (see smb.conf(5)).

Samba can act as a local browse master for a workgroup and the ability -for samba to support domain logons and scripts is now available. See -DOMAIN.txt for more information on domain logons.

Samba facilitates browsing. The browsing is supported by nmbd +and is also controlled by options in the smb.conf file (see smb.conf(5)). +Samba can act as a local browse master for a workgroup and the ability +for samba to support domain logons and scripts is now available.

Samba can also act as a domain master browser for a workgroup. This means that it will collate lists from local browse masters into a @@ -128,12 +131,12 @@ regardless of whether it is NT, Samba or any other type of domain master that is providing this service.

[Note that nmbd can be configured as a WINS server, but it is not -necessary to specifically use samba as your WINS server. NTAS can -be configured as your WINS server. In a mixed NT server and -samba environment on a Wide Area Network, it is recommended that -you use the NT server's WINS server capabilities. In a samba-only -environment, it is recommended that you use one and only one nmbd -as your WINS server].

To get browsing to work you need to run nmbd as usual, but will need to use the "workgroup" option in smb.conf to control what workgroup @@ -149,9 +152,9 @@ CLASS="SECT1" >

15.3. Problem resolution

15.3. Problem resolution

If something doesn't work then hopefully the log.nmb file will help you track down the problem. Try a debug level of 2 or 3 for finding @@ -167,6 +170,19 @@ filemanager should display the list of available shares.

MS Windows 2000 and upwards (as with Samba) can be configured to disallow +anonymous (ie: Guest account) access to the IPC$ share. In that case, the +MS Windows 2000/XP/2003 machine acting as an SMB/CIFS client will use the +name of the currently logged in user to query the IPC$ share. MS Windows +9X clients are not able to do this and thus will NOT be able to browse +server resources.

Also, a lot of people are getting bitten by the problem of too many parameters on the command line of nmbd in inetd.conf. This trick is to not use spaces between the option and the parameter (eg: -d2 instead @@ -183,11 +199,11 @@ CLASS="SECT1" >

15.4. Browsing across subnets

15.4. Browsing across subnets

With the release of Samba 1.9.17(alpha1 and above) Samba has been +>Since the release of Samba 1.9.17(alpha1) Samba has been updated to enable it to support the replication of browse lists across subnet boundaries. New code and options have been added to achieve this. This section describes how to set this feature up @@ -214,15 +230,14 @@ CLASS="SECT2" >

15.4.1. How does cross subnet browsing work ?

15.4.1. How does cross subnet browsing work ?

Cross subnet browsing is a complicated dance, containing multiple moving parts. It has taken Microsoft several years to get the code that achieves this correct, and Samba lags behind in some areas. -However, with the 1.9.17 release, Samba is capable of cross subnet -browsing when configured correctly.

Consider a network set up as follows :

Once N2_B knows the address of the Domain master browser it @@ -426,9 +441,9 @@ CLASS="SECT1" >

15.5. Setting up a WINS server

15.5. Setting up a WINS server

Either a Samba machine or a Windows NT Server machine may be set up as a WINS server. To set a Samba machine to be a WINS server you must @@ -440,9 +455,9 @@ CLASS="COMMAND" > wins support = yes

Versions of Samba previous to 1.9.17 had this parameter default to +>Versions of Samba prior to 1.9.17 had this parameter default to yes. If you have any older versions of Samba on your network it is -strongly suggested you upgrade to 1.9.17 or above, or at the very +strongly suggested you upgrade to a recent version, or at the very least set the parameter to 'no' on all these machines.

Machines with "

wins server = >name or IP address<wins server = >name or IP address<

where >name or IP address< is either the DNS name of the WINS server +>where >name or IP address< is either the DNS name of the WINS server machine or its IP address.

Note that this line MUST NOT BE SET in the smb.conf file of the Samba @@ -494,7 +509,7 @@ CLASS="COMMAND" >" option and the "wins server = >name<wins server = <name>" option then nmbd will fail to start.

15.6. Setting up Browsing in a WORKGROUP

15.6. Setting up Browsing in a WORKGROUP

To set up cross subnet browsing on a network containing machines in up to be in a WORKGROUP, not an NT Domain you need to set up one @@ -552,11 +567,12 @@ server, if you require.

Next, you should ensure that each of the subnets contains a machine that can act as a local master browser for the -workgroup. Any NT machine should be able to do this, as will -Windows 95 machines (although these tend to get rebooted more -often, so it's not such a good idea to use these). To make a -Samba server a local master browser set the following -options in the [global] section of the smb.conf file :

15.7. Setting up Browsing in a DOMAIN

15.7. Setting up Browsing in a DOMAIN

If you are adding Samba servers to a Windows NT Domain then you must not set up a Samba server as a domain master browser. By default, a Windows NT Primary Domain Controller for a Domain name is also the Domain master browser for that name, and many things will break if a Samba server registers the Domain master -browser NetBIOS name (DOMAIN>1B<) with WINS instead of the PDC.

For subnets other than the one containing the Windows NT PDC you may set up Samba servers as local master browsers as @@ -644,9 +660,9 @@ CLASS="SECT1" >

15.8. Forcing samba to be the master

15.8. Forcing samba to be the master

Who becomes the "master browser" is determined by an election process using broadcasts. Each election packet contains a number of parameters @@ -659,8 +675,8 @@ option in smb.conf to a higher number. It defaults to 0. Using 34 would make it win all elections over every other system (except other samba systems!)

A "os level" of 2 would make it beat WfWg and Win95, but not NTAS. A -NTAS domain controller uses level 32.

A "os level" of 2 would make it beat WfWg and Win95, but not MS Windows +NT/2K Server. A MS Windows NT/2K Server domain controller uses level 32.

The maximum os level is 255

15.9. Making samba the domain master

15.9. Making samba the domain master

The domain master is responsible for collating the browse lists of multiple subnets so that browsing can occur between subnets. You can @@ -765,9 +781,9 @@ CLASS="SECT1" >

15.10. Note about broadcast addresses

15.10. Note about broadcast addresses

If your network uses a "0" based broadcast address (for example if it ends in a 0) then you will strike problems. Windows for Workgroups @@ -779,9 +795,9 @@ CLASS="SECT1" >

15.11. Multiple interfaces

15.11. Multiple interfaces

Samba now supports machines with multiple network interfaces. If you have multiple interfaces then you will need to use the "interfaces" diff --git a/docs/htmldocs/install.html b/docs/htmldocs/install.html index e518e270bf7..d596ba4fd9e 100644 --- a/docs/htmldocs/install.html +++ b/docs/htmldocs/install.html @@ -5,7 +5,7 @@ >How to Install and Test SAMBA1.1. Read the man pages

The man pages distributed with SAMBA contain - lots of useful info that will help to get you started. - If you don't know how to read man pages then try - something like:

1.1. Obtaining and installing samba

$ man smbd.8 - or - $ nroff -man smbd.8 | more - on older unixes.

Other sources of information are pointed to - by the Samba web site,Binary packages of samba are included in almost any Linux or + Unix distribution. There are also some packages available at + http://www.samba.org

1.2. Building the Binaries

To do this, first run the program ./configure - in the source directory. This should automatically - configure Samba for your operating system. If you have unusual - needs then you may wish to run

root# ./configure --help -

first to see what special options you can enable. - Then executing

root# make

will create the binaries. Once it's successfully - compiled you can use

root# make install

to install the binaries and manual pages. You can - separately install the binaries and/or man pages using

root# make installbin -

and

root# make installman -

Note that if you are upgrading for a previous version - of Samba you might like to know that the old versions of - the binaries will be renamed with a ".old" extension. You - can go back to the previous version with

root# make revert -

the samba homepage +

if you find this version a disaster!

If you need to compile samba from source, check the + appropriate appendix chapter.

1.3. The all important step

At this stage you must fetch yourself a - coffee or other drink you find stimulating. Getting the rest - of the install right can sometimes be tricky, so you will - probably need it.

1.2. Configuring samba

If you have installed samba before then you can skip - this step.

Samba's configuration is stored in the smb.conf file, + that usually resides in /etc/samba/smb.conf + or /usr/local/samba/lib/smb.conf. You can either + edit this file yourself or do it using one of the many graphical + tools that are available, such as the web-based interface swat, that + is included with samba.

1.4. Create the smb configuration file.

1.2.1. Editing the smb.conf file

There are sample configuration files in the examples subdirectory in the distribution. I suggest you read them @@ -288,19 +172,18 @@ CLASS="FILENAME" >

For more information about security settings for the [homes] share please refer to the document UNIX_SECURITY.txt.

1.5. Test your config file with +NAME="AEN50" +>1.2.1.1. Test your config file with testparm

It's important that you test the validity of your smb.conf!

1.6. Starting the smbd and nmbd

You must choose to start smbd and nmbd either - as daemons or from inetd. Don't try - to do both! Either you can put them in inetd.conf and have them started on demand - by inetd, or you can start them as - daemons either from the command line or in /etc/rc.local. See the man pages for details - on the command line options. Take particular care to read - the bit about what user you need to be in order to start - Samba. In many cases you must be root.

The main advantage of starting smbd - and nmbd using the recommended daemon method - is that they will respond slightly more quickly to an initial connection - request.

1.6.1. Starting from inetd.conf

NOTE; The following will be different if - you use NIS or NIS+ to distributed services maps.

Look at your /etc/services. - What is defined at port 139/tcp. If nothing is defined - then add a line like this:

netbios-ssn 139/tcp

similarly for 137/udp you should have an entry like:

netbios-ns 137/udp

Next edit your /etc/inetd.conf - and add two lines something like this:

		netbios-ssn stream tcp nowait root /usr/local/samba/bin/smbd smbd 
-		netbios-ns dgram udp wait root /usr/local/samba/bin/nmbd nmbd 
-		

The exact syntax of /etc/inetd.conf - varies between unixes. Look at the other entries in inetd.conf - for a guide.

NOTE: Some unixes already have entries like netbios_ns - (note the underscore) in /etc/services. - You must either edit /etc/services or - /etc/inetd.conf to make them consistent.

NOTE: On many systems you may need to use the - "interfaces" option in smb.conf to specify the IP address - and netmask of your interfaces. Run ifconfig - as root if you don't know what the broadcast is for your - net. nmbd tries to determine it at run - time, but fails on some unixes. See the section on "testing nmbd" - for a method of finding if you need to do this.

!!!WARNING!!! Many unixes only accept around 5 - parameters on the command line in inetd.conf. - This means you shouldn't use spaces between the options and - arguments, or you should use a script, and start the script - from inetd.

Restart inetd, perhaps just send - it a HUP. If you have installed an earlier version of nmbd then you may need to kill nmbd as well.

1.6.2. Alternative: starting it as a daemon

To start the server as a daemon you should create - a script something like this one, perhaps calling - it startsmb.

		#!/bin/sh
-		/usr/local/samba/bin/smbd -D 
-		/usr/local/samba/bin/nmbd -D 
-		

then make it executable with chmod - +x startsmb

You can then run startsmb by - hand or execute it from /etc/rc.local -

To kill it send a kill signal to the processes - nmbd and smbd.

NOTE: If you use the SVR4 style init system then - you may like to look at the examples/svr4-startup - script to make Samba fit into that system.

1.2.2. SWAT

SWAT is a web-based interface that helps you configure samba. + SWAT might not be available in the samba package on your platform, + but in a seperate package. Please read the swat manpage + on compiling, installing and configuring swat from source. +

To launch SWAT just run your favorite web browser and + point it at "http://localhost:901/". Replace localhost with the name of the computer you are running samba on if you + are running samba on a different computer then your browser.

Note that you can attach to SWAT from any IP connected + machine but connecting from a remote machine leaves your + connection open to password sniffing as passwords will be sent + in the clear over the wire.

1.7. Try listing the shares available on your - server

1.3. Try listing the shares available on your + server

$ $ smbclient -L - yourhostnameyourhostname

You should get back a list of shares available on @@ -566,39 +273,31 @@ CLASS="SECT1" >

1.8. Try connecting with the unix client

1.4. Try connecting with the unix client

$ $ smbclient smbclient //yourhostname/aservice //yourhostname/aservice

Typically the Typically the yourhostnameyourhostname would be the name of the host where you installed smbd. The . The aserviceaservice is any service you have defined in the For example if your unix host is bambi and your login name is fred you would type:

$ $ smbclient //bambi/fred -

1.9. Try connecting from a DOS, WfWg, Win9x, WinNT, - Win2k, OS/2, etc... client

1.5. Try connecting from a DOS, WfWg, Win9x, WinNT, + Win2k, OS/2, etc... client

Try mounting disks. eg:

C:\WINDOWS\> C:\WINDOWS\> net use d: \\servername\service -

Try printing. eg:

C:\WINDOWS\> C:\WINDOWS\> net use lpt1: - \\servername\spoolservice

C:\WINDOWS\> C:\WINDOWS\> print filename -

Celebrate, or send me a bug report!

1.10. What If Things Don't Work?

If nothing works and you start to think "who wrote - this pile of trash" then I suggest you do step 2 again (and - again) till you calm down.

1.6. What If Things Don't Work?

Then you might read the file DIAGNOSIS.txt and the +>Then you might read the file HOWTO chapter Diagnosis and the FAQ. If you are still stuck then try the mailing list or newsgroup (look in the README for details). Samba has been successfully installed at thousands of sites worldwide, so maybe someone else has hit your problem and has overcome it. You could also use the WWW site to scan back issues of the samba-digest.

When you fix the problem PLEASE send me some updates to the - documentation (or source code) so that the next person will find it - easier.

1.10.1. Diagnosing Problems

If you have installation problems then go to the - Diagnosis chapter to try to find the - problem.

When you fix the problem please send some + updates of the documentation (or source code) to one of + the documentation maintainers or the list. +

1.10.2. Scope IDs

1.6.1. Scope IDs

By default Samba uses a blank scope ID. This means all your windows boxes must also have a blank scope ID. If you really want to use a non-blank scope ID then you will need to use the 'netbios scope' smb.conf option. - All your PCs will need to have the same setting for + All your PCs will need to have the same setting for this to work. I do not recommend scope IDs.

1.10.3. Choosing the Protocol Level

The SMB protocol has many dialects. Currently - Samba supports 5, called CORE, COREPLUS, LANMAN1, - LANMAN2 and NT1.

You can choose what maximum protocol to support - in the smb.conf file. The default is - NT1 and that is the best for the vast majority of sites.

In older versions of Samba you may have found it - necessary to use COREPLUS. The limitations that led to - this have mostly been fixed. It is now less likely that you - will want to use less than LANMAN1. The only remaining advantage - of COREPLUS is that for some obscure reason WfWg preserves - the case of passwords in this protocol, whereas under LANMAN1, - LANMAN2 or NT1 it uppercases all passwords before sending them, - forcing you to use the "password level=" option in some cases.

The main advantage of LANMAN2 and NT1 is support for - long filenames with some clients (eg: smbclient, Windows NT - or Win95).

See the smb.conf(5) manual page for more details.

Note: To support print queue reporting you may find - that you have to use TCP/IP as the default protocol under - WfWg. For some reason if you leave Netbeui as the default - it may break the print queue reporting on some systems. - It is presumably a WfWg bug.

1.10.4. Printing from UNIX to a Client PC

To use a printer that is available via a smb-based - server from a unix host with LPR you will need to compile the - smbclient program. You then need to install the script - "smbprint". Read the instruction in smbprint for more details. -

There is also a SYSV style script that does much - the same thing called smbprint.sysv. It contains instructions.

See the CUPS manual for information about setting up - printing from a unix host with CUPS to a smb-based server.

1.10.5. Locking

1.6.2. Locking

One area which sometimes causes trouble is locking.

1.10.6. Mapping Usernames

If you have different usernames on the PCs and - the unix server then take a look at the "username map" option. - See the smb.conf man page for details.

Integrating MS Windows networks with Samba

9.1. Agenda

9.1. Agenda

To identify the key functional mechanisms of MS Windows networking to enable the deployment of Samba as a means of extending and/or @@ -147,9 +147,9 @@ CLASS="SECT1" >

9.2. Name Resolution in a pure Unix/Linux world

9.2. Name Resolution in a pure Unix/Linux world

The key configuration files covered in this section are:

9.2.1. /etc/hosts

Contains a static list of IP Addresses and names. @@ -270,11 +270,11 @@ CLASS="SECT2" >

9.2.2. /etc/resolv.conf

This file tells the name resolution libraries:

9.2.3. /etc/host.conf

9.2.4. /etc/nsswitch.conf

This file controls the actual name resolution targets. The @@ -406,9 +406,9 @@ CLASS="SECT1" >

9.3. Name resolution as used within MS Windows networking

9.3. Name resolution as used within MS Windows networking

MS Windows networking is predicated about the name each machine is given. This name is known variously (and inconsistently) as @@ -428,16 +428,16 @@ the client/server.

	Unique NetBIOS Names:
-		MACHINENAME<00>	= Server Service is running on MACHINENAME
-		MACHINENAME<03> = Generic Machine Name (NetBIOS name)
-		MACHINENAME<20> = LanMan Server service is running on MACHINENAME
-		WORKGROUP<1b> = Domain Master Browser
+		MACHINENAME<00>	= Server Service is running on MACHINENAME
+		MACHINENAME<03> = Generic Machine Name (NetBIOS name)
+		MACHINENAME<20> = LanMan Server service is running on MACHINENAME
+		WORKGROUP<1b> = Domain Master Browser
 
 	Group Names:
-		WORKGROUP<03> = Generic Name registered by all members of WORKGROUP
-		WORKGROUP<1c> = Domain Controllers / Netlogon Servers
-		WORKGROUP<1d> = Local Master Browsers
-		WORKGROUP<1e> = Internet Name Resolvers

It should be noted that all NetBIOS machines register their own @@ -456,7 +456,7 @@ be needed. An example of this is what happens when an MS Windows client wants to locate a domain logon server. It find this service and the IP address of a server that provides it by performing a lookup (via a NetBIOS broadcast) for enumeration of all machines that have -registered the name type *<1c>. A logon request is then sent to each +registered the name type *<1c>. A logon request is then sent to each IP address that is returned in the enumerated list of IP addresses. Which ever machine first replies then ends up providing the logon services.

9.3.1. The NetBIOS Name Cache

9.3.1. The NetBIOS Name Cache

All MS Windows machines employ an in memory buffer in which is stored the NetBIOS names and IP addresses for all external @@ -518,9 +518,9 @@ CLASS="SECT2" >

9.3.2. The LMHOSTS file

9.3.2. The LMHOSTS file

This file is usually located in MS Windows NT 4.0 or 2000 in

9.3.3. HOSTS file

9.3.3. HOSTS file

This file is usually located in MS Windows NT 4.0 or 2000 in

9.3.4. DNS Lookup

9.3.4. DNS Lookup

This capability is configured in the TCP/IP setup area in the network configuration facility. If enabled an elaborate name resolution sequence @@ -663,9 +663,9 @@ CLASS="SECT2" >

9.3.5. WINS Lookup

9.3.5. WINS Lookup

A WINS (Windows Internet Name Server) service is the equivaent of the rfc1001/1002 specified NBNS (NetBIOS Name Server). A WINS server stores @@ -692,11 +692,9 @@ CLASS="PROGRAMLISTING" wins server = xxx.xxx.xxx.xxx

where where xxx.xxx.xxx.xxxxxx.xxx.xxx.xxx is the IP address of the WINS server.

9.4. How browsing functions and how to deploy stable and -dependable browsing using Samba

As stated above, MS Windows machines register their NetBIOS names (i.e.: the machine name for each service type in operation) on start @@ -773,10 +771,10 @@ CLASS="SECT1" >

9.5. MS Windows security options and how to configure -Samba for seemless integration

MS Windows clients may use encrypted passwords as part of a challenege/response authentication model (a.k.a. NTLMv1) or @@ -845,43 +843,35 @@ CLASS="PROGRAMLISTING" HREF="smb.conf.5.html#PASSWORDLEVEL" TARGET="_top" >passsword level = = integerinteger username level = = integerinteger

By default Samba will lower case the username before attempting to lookup the user in the database of local system accounts. Because UNIX usernames conventionally only contain lower case -character, the username levelusername level parameter is rarely even needed.

However, password on UNIX systems often make use of mixed case characters. This means that in order for a user on a Windows 9x client to connect to a Samba server using clear text authentication, -the password levelpassword level must be set to the maximum number of upper case letter which appear is a password. Note that is the server OS uses the traditional -DES version of crypt(), then a password levelpassword level of 8 will result in case insensitive passwords as seen from Windows users. This will also result in longer login times as Samba @@ -910,9 +898,9 @@ CLASS="SECT2" >

9.5.1. Use MS Windows NT as an authentication server

9.5.1. Use MS Windows NT as an authentication server

This method involves the additions of the following parameters in the smb.conf file:

9.5.2. Make Samba a member of an MS Windows NT security domain

9.5.2. Make Samba a member of an MS Windows NT security domain

This method involves additon of the following paramters in the smb.conf file:

9.5.3. Configure Samba as an authentication server

9.5.3. Configure Samba as an authentication server

This mode of authentication demands that there be on the Unix/Linux system both a Unix style account as well as an @@ -1046,9 +1034,9 @@ CLASS="SECT3" >

9.5.3.1. Users

9.5.3.1. Users

A user account that may provide a home directory should be created. The following Linux system commands are typical of @@ -1058,10 +1046,10 @@ the procedure for creating an account.

# useradd -s /bin/bash -d /home/"userid" -m "userid" # passwd "userid" - Enter Password: <pw> + Enter Password: <pw> # smbpasswd -a "userid" - Enter Password: <pw>

9.5.3.2. MS Windows NT Machine Accounts

9.5.3.2. MS Windows NT Machine Accounts

These are required only when Samba is used as a domain controller. Refer to the Samba-PDC-HOWTO for more details.

9.6. Conclusions

9.6. Conclusions

Samba provides a flexible means to operate as...

General installation

1.1. Read the man pagesObtaining and installing samba
1.2. Building the Binaries
1.3. The all important step
1.4. Create the smb configuration file.
1.5. Test your config file with - testparm
1.6. Starting the smbd and nmbdConfiguring samba
1.6.1. Starting from inetd.conf1.2.1. Editing the smb.conf file
1.6.2. Alternative: starting it as a daemon1.2.2. SWAT
1.7. 1.3. Try listing the shares available on your server
1.8. 1.4. Try connecting with the unix client
1.9. 1.5. Try connecting from a DOS, WfWg, Win9x, WinNT, Win2k, OS/2, etc... client
1.10. 1.6. What If Things Don't Work?
1.10.1. Diagnosing Problems
1.10.2. 1.6.1. Scope IDs
1.10.3. Choosing the Protocol Level
1.10.4. Printing from UNIX to a Client PC
1.10.5. 1.6.2. Locking
1.10.6. Mapping Usernames
2.1. Discussion
2.2. Use of the "Remote Announce" parameter
2.3. Use of the "Remote Browse Sync" parameter
2.4. Use of WINS
2.5. Do NOT use more than one (1) protocol on MS Windows machines
2.6. Name Resolution Order
3.1. Introduction
3.2. Important Notes About Security
3.2.1. Advantages of SMB Encryption
3.2.2. Advantages of non-encrypted passwords
3.3. The smbpasswd Command
3.4. Plain text
3.5. TDB
3.6. LDAP
3.6.1. Introduction
3.6.2. Introduction
3.6.3. Supported LDAP Servers
3.6.4. Schema and Relationship to the RFC 2307 posixAccount
3.6.5. Configuring Samba with LDAP
3.6.6. Accounts and Groups management
3.6.7. Security and sambaAccount
3.6.8. LDAP specials attributes for sambaAccounts
3.6.9. Example LDIF Entries for a sambaAccount
3.7. MySQL
3.7.1. Building
3.7.2. Creating the database
3.7.3. Configuring
3.7.4. Using plaintext passwords or encrypted password
3.7.5. Getting non-column data from the table
3.8. Passdb XML plugin
3.8.1. Building
3.8.2. Usage
lmhostsHosting a Microsoft Distributed File System tree on Samba

12.1. Instructions

12.1. Instructions

The Distributed File System (or Dfs) provides a means of separating the logical view of files and directories that users @@ -99,21 +99,17 @@ TARGET="_top" machine (for Dfs-aware clients to browse) using Samba.

To enable SMB-based DFS for Samba, configure it with the - --with-msdfs--with-msdfs option. Once built, a Samba server can be made a Dfs server by setting the global boolean host msdfs host msdfs parameter in the msdfs root msdfs root parameter. A Dfs root directory on Samba hosts Dfs links in the form of symbolic links that point to other servers. For example, a symbolic link junction->msdfs:storage1\share1junction->msdfs:storage1\share1 in the share directory acts as the Dfs junction. When Dfs-aware clients attempt to access the junction link, they are redirected @@ -162,54 +156,44 @@ CLASS="PROGRAMLISTING" >In the /export/dfsroot directory we set up our dfs links to other servers on the network.

root# root# cd /export/dfsrootcd /export/dfsroot

root# root# chown root /export/dfsrootchown root /export/dfsroot

root# root# chmod 755 /export/dfsrootchmod 755 /export/dfsroot

root# root# ln -s msdfs:storageA\\shareA linkaln -s msdfs:storageA\\shareA linka

root# root# ln -s msdfs:serverB\\share,serverC\\share linkbln -s msdfs:serverB\\share,serverC\\share linkb

You should set up the permissions and ownership of @@ -229,9 +213,9 @@ CLASS="SECT2" >

12.1.1. Notes

12.1.1. Notes

    netnet {<ads|rap|rpc>} [-h] [-w workgroup] [-W myworkgroup] [-U user] [-I ip-address] [-p port] [-n myname] [-s conffile] [-S server] [-C comment] [-M maxusers] [-F flags] [-j jobid] [-l] [-r] [-f] [-t timeout] [-P] [-D debuglevel]

    {<ads|rap|rpc>} [-h] [-w workgroup] [-W myworkgroup] [-U user] [-I ip-address] [-p port] [-n myname] [-s conffile] [-S server] [-C comment] [-M maxusers] [-F flags] [-j jobid] [-l] [-r] [-f] [-t timeout] [-P] [-D debuglevel]

USER DELETE <name> [misc options]
USER DELETE <name> [misc options]

delete specified user

USER INFO <name> [misc options]
USER INFO <name> [misc options]

list the domain groups of the specified user

USER ADD <name> [password] [-F user flags] [misc. options]
USER ADD <name> [password] [-F user flags] [misc. options]

Add specified user @@ -345,14 +345,14 @@ CLASS="VARIABLELIST"

GROUP DELETE <name> [misc. options] [targets]
GROUP DELETE <name> [misc. options] [targets]

Delete specified group

GROUP ADD <name> [-C comment]
GROUP ADD <name> [-C comment]

Create specified group @@ -366,14 +366,14 @@ CLASS="VARIABLELIST"

SHARE ADD <name=serverpath> [misc. options] [targets]
SHARE ADD <name=serverpath> [misc. options] [targets]

Adds a share from a server (makes the export active)

SHARE DELETE <sharenam
SHARE DELETE <sharenam

nmbdnmbd [-D] [-F] [-S] [-a] [-i] [-o] [-h] [-V] [-d <debug level>] [-H <lmhosts file>] [-l <log directory>] [-n <primary netbios name>] [-p <port number>] [-s <configuration file>]

[-D] [-F] [-S] [-a] [-i] [-o] [-h] [-V] [-d <debug level>] [-H <lmhosts file>] [-l <log directory>] [-n <primary netbios name>] [-p <port number>] [-s <configuration file>]

nmbd also logs to standard - output, as if the -S-S parameter had been given.

.

-H <filename>
-H <filename>

NetBIOS lmhosts file. The lmhosts @@ -253,12 +253,10 @@ CLASS="COMMAND" resolution mechanism name resolve - order described in .

-d <debug level>
-d <debug level>

debuglevel is an integer @@ -344,11 +342,9 @@ CLASS="COMMAND" the log levellog level parameter in the file.

-l <log directory>
-l <log directory>

The -l parameter specifies a directory @@ -395,7 +391,7 @@ CLASS="COMMAND"

-n <primary NetBIOS name>
-n <primary NetBIOS name>

This option allows you to override @@ -403,12 +399,10 @@ CLASS="COMMAND" to setting the NetBIOS - name parameter in the .

-p <UDP port number>
-p <UDP port number>

UDP port number is a positive integer value. @@ -440,7 +434,7 @@ CLASS="COMMAND" won't need help!

-s <configuration file>
-s <configuration file>

The default configuration file name @@ -565,9 +559,9 @@ CLASS="FILENAME" wins supportwins support parameter in the (see the local masterlocal master parameter in the nmblookupnmblookup [-M] [-R] [-S] [-r] [-A] [-h] [-B <broadcast address>] [-U <unicast address>] [-d <debug level>] [-s <smb config file>] [-i <NetBIOS scope>] [-T] [-f] {name}

[-M] [-R] [-S] [-r] [-A] [-h] [-B <broadcast address>] [-U <unicast address>] [-d <debug level>] [-s <smb config file>] [-i <NetBIOS scope>] [-T] [-f] {name}

Searches for a master browser by looking - up the NetBIOS name namename with a - type of 0x1d. If 0x1d. If name name is "-" then it does a lookup on the special name - __MSBROWSE____MSBROWSE__.

-A

Interpret Interpret namename as an IP Address and do a node status query on this address.

Print a help (usage) message.

-B <broadcast address>
-B <broadcast address>

Send the query to the given broadcast address. Without @@ -169,11 +163,9 @@ CLASS="REPLACEABLE" either auto-detected or defined in the interfacesinterfaces parameter of the

-U <unicast address>
-U <unicast address>

Do a unicast query to the specified address or - host unicast addressunicast address. This option - (along with the -R-R option) is needed to query a WINS server.

-d <debuglevel>
-d <debuglevel>

debuglevel is an integer from 0 to 10.

log level log level parameter in the file.

-s <smb.conf>
-s <smb.conf>

This parameter specifies the pathname to @@ -253,7 +239,7 @@ TARGET="_top" the Samba setup on the machine.

-i <scope>
-i <scope>

This specifies a NetBIOS scope that @@ -307,7 +293,7 @@ CLASS="EMPHASIS" >This is the NetBIOS name being queried. Depending upon the previous options this may be a NetBIOS name or IP address. If a NetBIOS name then the different name types may be specified - by appending '#<type>' to the name. This name may also be + by appending '#<type>' to the name. This name may also be '*', which will return all registered names within a broadcast area.

-Oplocks
SAMBA Project Documentation
PrevNext

Chapter 3. Oplocks

3.1. What are oplocks?

When a client opens a file it can request an "oplock" or file -lease. This is (to simplify a bit) a guarentee that no one else -has the file open simultaneously. It allows the client to not -send any updates on the file to the server, thus reducing a -network file access to local access (once the file is in -client cache). An "oplock break" is when the server sends -a request to the client to flush all its changes back to -the server, so the file is in a consistent state for other -opens to succeed. If a client fails to respond to this -asynchronous request then the file can be corrupted. Hence -the "turn off oplocks" answer if people are having multi-user -file access problems.

Unless the kernel is "oplock aware" (SGI IRIX and Linux are -the only two UNIXes that are at the moment) then if a local -UNIX process accesses the file simultaneously then Samba -has no way of telling this is occuring, so the guarentee -to the client is broken. This can corrupt the file. Short -answer - it you have UNIX clients accessing the same file -as smbd locally or via NFS and you're not running Linux or -IRIX then turn off oplocks for that file or share.

"Share modes". These are modes of opening a file, that -guarentee an invarient - such as DENY_WRITE - which means -that if any other opens are requested with write access after -this current open has succeeded then they should be denied -with a "sharing violation" error message. Samba handles these -internally inside smbd. UNIX clients accessing the same file -ignore these invarients. Just proving that if you need simultaneous -file access from a Windows and UNIX client you *must* have an -application that is written to lock records correctly on both -sides. Few applications are written like this, and even fewer -are cross platform (UNIX and Windows) so in practice this isn't -much of a problem.

"Locking". This really means "byte range locking" - such as -lock 10 bytes at file offset 24 for write access. This is the -area in which well written UNIX and Windows apps will cooperate. -Windows locks (at least from NT or above) are 64-bit unsigned -offsets. UNIX locks are either 31 bit or 63 bit and are signed -(the top bit is used for the sign). Samba handles these by -first ensuring that all the Windows locks don't conflict (ie. -if other Windows clients have competing locks then just reject -immediately) - this allows us to support 64-bit Windows locks -on 32-bit filesystems. Secondly any locks that are valid are -then mapped onto UNIX fcntl byte range locks. These are the -locks that will be seen by UNIX processes. If there is a conflict -here the lock is rejected.

Note that if a client has an oplock then it "knows" that no -other client can have the file open so usually doesn't bother -to send to lock request to the server - this means once again -if you need to share files between UNIX and Windows processes -either use IRIX or Linux, or turn off oplocks for these -files/shares.


PrevHomeNext
Improved browsing in sambaUpQuick Cross Subnet Browsing / Cross Workgroup Browsing guide
\ No newline at end of file diff --git a/docs/htmldocs/optional.html b/docs/htmldocs/optional.html index b5564b9f264..6ef61883114 100644 --- a/docs/htmldocs/optional.html +++ b/docs/htmldocs/optional.html @@ -5,7 +5,7 @@ >Optional configuration

Introduction

9.1. Agenda
9.2. Name Resolution in a pure Unix/Linux world
9.2.1. /etc/hosts
9.2.2. /etc/resolv.conf
9.2.3. /etc/host.conf
9.2.4. /etc/nsswitch.conf
9.3. Name resolution as used within MS Windows networking
9.3.1. The NetBIOS Name Cache
9.3.2. The LMHOSTS file
9.3.3. HOSTS file
9.3.4. DNS Lookup
9.3.5. WINS Lookup
9.4. How browsing functions and how to deploy stable and dependable browsing using Samba
9.5. MS Windows security options and how to configure Samba for seemless integration
9.5.1. Use MS Windows NT as an authentication server
9.5.2. Make Samba a member of an MS Windows NT security domain
9.5.3. Configure Samba as an authentication server
9.6. Conclusions
10.1. Viewing and changing UNIX permissions using the NT security dialogs
10.2. How to view file security on a Samba share
10.3. Viewing file ownership
10.4. Viewing file or directory permissions
10.4.1. File Permissions
10.4.2. Directory Permissions
10.5. Modifying file or directory permissions
10.6. Interaction with the standard Samba create mask parameters
10.7. Interaction with the standard Samba file attribute mapping
11.1. Samba and PAM
11.2. Distributed Authentication
11.3. PAM Configuration in smb.conf
12.1. Instructions
12.1.1. Notes
13.1. Introduction
13.2. Configuration
13.2.1. Creating [print$]
13.2.2. Setting Drivers for Existing Printers
13.2.3. Support a large number of printers
13.2.4. Adding New Printers via the Windows NT APW
13.2.5. Samba and Printer Ports
13.3. The Imprints Toolset
13.3.1. What is Imprints?
13.3.2. Creating Printer Driver Packages
13.3.3. The Imprints server
13.3.4. The Installation Client
13.4. Diagnosis
13.4.1. Introduction
13.4.2. Debugging printer problems
13.4.3. What printers do I have?
13.4.4. Setting up printcap and print servers
13.4.5. Job sent, no output
13.4.6. Job sent, strange output
13.4.7. Raw PostScript printed
13.4.8. Advanced Printing
13.4.9. Real debugging
14.1. Abstract
14.2. Introduction
14.3. What Winbind Provides
14.3.1. Target Uses
14.4. How Winbind Works
14.4.1. Microsoft Remote Procedure Calls
14.4.2. Microsoft Active Directory Services
14.4.3. Name Service Switch
14.4.4. Pluggable Authentication Modules
14.4.5. User and Group ID Allocation
14.4.6. Result Caching
14.5. Installation and Configuration
14.5.1. Introduction
14.5.2. Requirements
14.5.3. Testing Things Out
14.6. Limitations
14.7. Conclusion
15.1. Overview of browsing
15.2. Browsing support in samba
15.3. Problem resolution
15.4. Browsing across subnets
15.4.1. How does cross subnet browsing work ?
15.5. Setting up a WINS server
15.6. Setting up Browsing in a WORKGROUP
15.7. Setting up Browsing in a DOMAIN
15.8. Forcing samba to be the master
15.9. Making samba the domain master
15.10. Note about broadcast addresses
15.11. Multiple interfaces
16.1. Introduction and configuration
16.2. Included modules
16.2.1. audit
16.2.2. recycle
16.2.3. netatalk
16.3. VFS modules available elsewhere
16.3.1. DatabaseFS
16.3.2. vscan
17. Access Samba source code via CVS
17.1. Introduction
17.2. CVS Access to samba.org
17.2.1. Access via CVSweb
17.2.2. Access via cvs
18. Group mapping HOWTO
19. 18. Samba performance issues
19.1. 18.1. Comparisons
19.2. 18.2. Socket options
19.3. 18.3. Read size
19.4. 18.4. Max xmit
19.5. 18.5. Log level
19.6. 18.6. Read raw
19.7. 18.7. Write raw
19.8. 18.8. Slow Clients
19.9. 18.9. Slow Logins
19.10. 18.10. Client tuning
20. 19. Creating Group ProfilesCreating Group Prolicy Files
20.1. 19.1. Windows '9x
20.2. 19.2. Windows NT 4
20.2.1. 19.2.1. Side bar Notes
20.2.2. 19.2.2. Mandatory profiles
20.2.3. 19.2.3. moveuser.exe
20.2.4. 19.2.4. Get SID
20.3. 19.3. Windows 2000/XP
20. Securing Samba
20.1. Introduction
20.2. Using host based protection
20.3. Using interface protection
20.4. Using a firewall
20.5. Using a IPC$ share deny
20.6. Upgrading Samba
Samba and other CIFS clientsNext

22.1. Macintosh clients?

22.1. Macintosh clients?

Yes.

22.2. OS2 Client

22.2. OS2 Client

22.2.1. How can I configure OS/2 Warp Connect or - OS/2 Warp 4 as a client for Samba?

A more complete answer to this question can be found on

22.2.2. How can I configure OS/2 Warp 3 (not Connect), - OS/2 1.2, 1.3 or 2.x for Samba?

You can use the free Microsoft LAN Manager 2.2c Client for OS/2 from @@ -239,10 +239,10 @@ CLASS="SECT2" >

22.2.3. Are there any other issues when OS/2 (any version) - is used as a client?

When you do a NET VIEW or use the "File and Print Client Resource Browser", no Samba servers show up. This can @@ -261,10 +261,10 @@ CLASS="SECT2" >

22.2.4. How do I get printer driver download working - for OS/2 clients?

First, create a share called [PRINTDRV] that is world-readable. Copy your OS/2 driver files there. Note @@ -274,17 +274,13 @@ NAME="AEN3350" >

Install the NT driver first for that printer. Then, add to your smb.conf a parameter, os2 driver map = - filenamefilename". Then, in the file - specified by filenamefilename, map the name of the NT driver name to the OS/2 driver name as follows:

22.3. Windows for Workgroups

22.3. Windows for Workgroups

22.3.1. Use latest TCP/IP stack from Microsoft

22.3.1. Use latest TCP/IP stack from Microsoft

Use the latest TCP/IP stack from microsoft if you use Windows for workgroups.

22.3.2. Delete .pwl files after password change

22.3.2. Delete .pwl files after password change

WfWg does a lousy job with passwords. I find that if I change my password on either the unix box or the PC the safest thing to do is to @@ -362,9 +358,9 @@ CLASS="SECT2" >

22.3.3. Configure WfW password handling

22.3.3. Configure WfW password handling

There is a program call admincfg.exe on the last disk (disk 8) of the WFW 3.11 disk set. To install it @@ -381,9 +377,9 @@ CLASS="SECT2" >

22.3.4. Case handling of passwords

22.3.4. Case handling of passwords

Windows for Workgroups uppercases the password before sending it to the server. Unix passwords can be case-sensitive though. Check the password level to specify what characters samba should try to uppercase when checking.

22.3.5. Use TCP/IP as default protocol

To support print queue reporting you may find +that you have to use TCP/IP as the default protocol under +WfWg. For some reason if you leave Netbeui as the default +it may break the print queue reporting on some systems. +It is presumably a WfWg bug.

22.4. Windows '95/'98

22.4. Windows '95/'98

When using Windows 95 OEM SR2 the following updates are recommended where Samba is being used. Please NOTE that the above change will affect you once these @@ -448,9 +459,9 @@ CLASS="SECT1" >

22.5. Windows 2000 Service Pack 2

22.5. Windows 2000 Service Pack 2

There are several annoyances with Windows 2000 SP2. One of which @@ -560,7 +571,7 @@ WIDTH="33%" ALIGN="right" VALIGN="top" >NextReporting BugsHow to compile SAMBA

-Optional configuration
SAMBA Project Documentation
PrevNext

III. Optional configuration

Introduction

Samba has several features that you might want or might not want to use. The chapters in this -part each cover one specific feature.

Table of Contents
10. Integrating MS Windows networks with Samba
10.1. Agenda
10.2. Name Resolution in a pure Unix/Linux world
10.2.1. /etc/hosts
10.2.2. /etc/resolv.conf
10.2.3. /etc/host.conf
10.2.4. /etc/nsswitch.conf
10.3. Name resolution as used within MS Windows networking
10.3.1. The NetBIOS Name Cache
10.3.2. The LMHOSTS file
10.3.3. HOSTS file
10.3.4. DNS Lookup
10.3.5. WINS Lookup
10.4. How browsing functions and how to deploy stable and -dependable browsing using Samba
10.5. MS Windows security options and how to configure -Samba for seemless integration
10.5.1. Use MS Windows NT as an authentication server
10.5.2. Make Samba a member of an MS Windows NT security domain
10.5.3. Configure Samba as an authentication server
10.6. Conclusions
11. UNIX Permission Bits and Windows NT Access Control Lists
11.1. Viewing and changing UNIX permissions using the NT - security dialogs
11.2. How to view file security on a Samba share
11.3. Viewing file ownership
11.4. Viewing file or directory permissions
11.4.1. File Permissions
11.4.2. Directory Permissions
11.5. Modifying file or directory permissions
11.6. Interaction with the standard Samba create mask - parameters
11.7. Interaction with the standard Samba file attribute - mapping
12. Configuring PAM for distributed but centrally -managed authentication
12.1. Samba and PAM
12.2. Distributed Authentication
12.3. PAM Configuration in smb.conf
13. Hosting a Microsoft Distributed File System tree on Samba
13.1. Instructions
13.1.1. Notes
14. Printing Support
14.1. Introduction
14.2. Configuration
14.2.1. Creating [print$]
14.2.2. Setting Drivers for Existing Printers
14.2.3. Support a large number of printers
14.2.4. Adding New Printers via the Windows NT APW
14.2.5. Samba and Printer Ports
14.3. The Imprints Toolset
14.3.1. What is Imprints?
14.3.2. Creating Printer Driver Packages
14.3.3. The Imprints server
14.3.4. The Installation Client
14.4. Diagnosis
14.4.1. Introduction
14.4.2. Debugging printer problems
14.4.3. What printers do I have?
14.4.4. Setting up printcap and print servers
14.4.5. Job sent, no output
14.4.6. Job sent, strange output
14.4.7. Raw PostScript printed
14.4.8. Advanced Printing
14.4.9. Real debugging
15. Security levels
15.1. Introduction
15.2. More complete description of security levels
16. Unified Logons between Windows NT and UNIX using Winbind
16.1. Abstract
16.2. Introduction
16.3. What Winbind Provides
16.3.1. Target Uses
16.4. How Winbind Works
16.4.1. Microsoft Remote Procedure Calls
16.4.2. Name Service Switch
16.4.3. Pluggable Authentication Modules
16.4.4. User and Group ID Allocation
16.4.5. Result Caching
16.5. Installation and Configuration
16.5.1. Introduction
16.5.2. Requirements
16.5.3. Testing Things Out
16.6. Limitations
16.7. Conclusion
17. Passdb MySQL plugin
17.1. Building
17.2. Configuring
17.3. Using plaintext passwords or encrypted password
17.4. Getting non-column data from the table
18. Passdb XML plugin
18.1. Building
18.2. Usage
19. Storing Samba's User/Machine Account information in an LDAP Directory
19.1. Purpose
19.2. Introduction
19.3. Supported LDAP Servers
19.4. Schema and Relationship to the RFC 2307 posixAccount
19.5. Configuring Samba with LDAP
19.5.1. OpenLDAP configuration
19.5.2. Configuring Samba
19.6. Accounts and Groups management
19.7. Security and sambaAccount
19.8. LDAP specials attributes for sambaAccounts
19.9. Example LDIF Entries for a sambaAccount
19.10. Comments
20. HOWTO Access Samba source code via CVS
20.1. Introduction
20.2. CVS Access to samba.org
20.2.1. Access via CVSweb
20.2.2. Access via cvs
21. Group mapping HOWTO
22. Samba performance issues
22.1. Comparisons
22.2. Oplocks
22.2.1. Overview
22.2.2. Level2 Oplocks
22.2.3. Old 'fake oplocks' option - deprecated
22.3. Socket options
22.4. Read size
22.5. Max xmit
22.6. Locking
22.7. Share modes
22.8. Log level
22.9. Wide lines
22.10. Read raw
22.11. Write raw
22.12. Read prediction
22.13. Memory mapping
22.14. Slow Clients
22.15. Slow Logins
22.16. Client tuning
22.17. My Results

PrevHomeNext
Samba as a NT4 domain member Integrating MS Windows networks with Samba
\ No newline at end of file diff --git a/docs/htmldocs/p18.html b/docs/htmldocs/p18.html deleted file mode 100644 index a8f2a3c53c8..00000000000 --- a/docs/htmldocs/p18.html +++ /dev/null @@ -1,438 +0,0 @@ - -General installation
SAMBA Project Documentation
PrevNext

I. General installation

Introduction

This part contains general info on how to install samba -and how to configure the parts of samba you will most likely need. -PLEASE read this.

Table of Contents
1. How to Install and Test SAMBA
1.1. Read the man pages
1.2. Building the Binaries
1.3. The all important step
1.4. Create the smb configuration file.
1.5. Test your config file with - testparm
1.6. Starting the smbd and nmbd
1.6.1. Starting from inetd.conf
1.6.2. Alternative: starting it as a daemon
1.7. Try listing the shares available on your - server
1.8. Try connecting with the unix client
1.9. Try connecting from a DOS, WfWg, Win9x, WinNT, - Win2k, OS/2, etc... client
1.10. What If Things Don't Work?
1.10.1. Diagnosing Problems
1.10.2. Scope IDs
1.10.3. Choosing the Protocol Level
1.10.4. Printing from UNIX to a Client PC
1.10.5. Locking
1.10.6. Mapping Usernames
2. Improved browsing in samba
2.1. Overview of browsing
2.2. Browsing support in samba
2.3. Problem resolution
2.4. Browsing across subnets
2.4.1. How does cross subnet browsing work ?
2.5. Setting up a WINS server
2.6. Setting up Browsing in a WORKGROUP
2.7. Setting up Browsing in a DOMAIN
2.8. Forcing samba to be the master
2.9. Making samba the domain master
2.10. Note about broadcast addresses
2.11. Multiple interfaces
3. Oplocks
3.1. What are oplocks?
4. Quick Cross Subnet Browsing / Cross Workgroup Browsing guide
4.1. Discussion
4.2. Use of the "Remote Announce" parameter
4.3. Use of the "Remote Browse Sync" parameter
4.4. Use of WINS
4.5. Do NOT use more than one (1) protocol on MS Windows machines
4.6. Name Resolution Order
5. LanMan and NT Password Encryption in Samba
5.1. Introduction
5.2. Important Notes About Security
5.2.1. Advantages of SMB Encryption
5.2.2. Advantages of non-encrypted passwords
5.3. The smbpasswd Command

PrevHomeNext
SAMBA Project Documentation How to Install and Test SAMBA
\ No newline at end of file diff --git a/docs/htmldocs/p3106.html b/docs/htmldocs/p3106.html deleted file mode 100644 index 9967d8fb594..00000000000 --- a/docs/htmldocs/p3106.html +++ /dev/null @@ -1,391 +0,0 @@ - -Appendixes
SAMBA Project Documentation
PrevNext

IV. Appendixes

Table of Contents
23. Portability
23.1. HPUX
23.2. SCO Unix
23.3. DNIX
23.4. RedHat Linux Rembrandt-II
24. Samba and other CIFS clients
24.1. Macintosh clients?
24.2. OS2 Client
24.2.1. How can I configure OS/2 Warp Connect or - OS/2 Warp 4 as a client for Samba?
24.2.2. How can I configure OS/2 Warp 3 (not Connect), - OS/2 1.2, 1.3 or 2.x for Samba?
24.2.3. Are there any other issues when OS/2 (any version) - is used as a client?
24.2.4. How do I get printer driver download working - for OS/2 clients?
24.3. Windows for Workgroups
24.3.1. Use latest TCP/IP stack from Microsoft
24.3.2. Delete .pwl files after password change
24.3.3. Configure WfW password handling
24.3.4. Case handling of passwords
24.4. Windows '95/'98
24.5. Windows 2000 Service Pack 2
25. Reporting Bugs
25.1. Introduction
25.2. General info
25.3. Debug levels
25.4. Internal errors
25.5. Attaching to a running process
25.6. Patches
26. Diagnosing your samba server
26.1. Introduction
26.2. Assumptions
26.3. Tests
26.3.1. Test 1
26.3.2. Test 2
26.3.3. Test 3
26.3.4. Test 4
26.3.5. Test 5
26.3.6. Test 6
26.3.7. Test 7
26.3.8. Test 8
26.3.9. Test 9
26.3.10. Test 10
26.3.11. Test 11
26.4. Still having troubles?

PrevHomeNext
Samba performance issues Portability
\ No newline at end of file diff --git a/docs/htmldocs/p544.html b/docs/htmldocs/p544.html deleted file mode 100644 index 502d978b5f8..00000000000 --- a/docs/htmldocs/p544.html +++ /dev/null @@ -1,388 +0,0 @@ - -Type of installation
SAMBA Project Documentation
PrevNext

II. Type of installation

Introduction

This part contains information on using samba in a (NT 4 or ADS) domain. -If you wish to run samba as a domain member or DC, read the appropriate chapter in -this part.

Table of Contents
6. How to Configure Samba as a NT4 Primary Domain Controller
6.1. Prerequisite Reading
6.2. Background
6.3. Configuring the Samba Domain Controller
6.4. Creating Machine Trust Accounts and Joining Clients to the -Domain
6.4.1. Manual Creation of Machine Trust Accounts
6.4.2. "On-the-Fly" Creation of Machine Trust Accounts
6.4.3. Joining the Client to the Domain
6.5. Common Problems and Errors
6.6. System Policies and Profiles
6.7. What other help can I get?
6.8. Domain Control for Windows 9x/ME
6.8.1. Configuration Instructions: Network Logons
6.8.2. Configuration Instructions: Setting up Roaming User Profiles
6.9. DOMAIN_CONTROL.txt : Windows NT Domain Control & Samba
7. How to Act as a Backup Domain Controller in a Purely Samba Controlled Domain
7.1. Prerequisite Reading
7.2. Background
7.3. What qualifies a Domain Controller on the network?
7.3.1. How does a Workstation find its domain controller?
7.3.2. When is the PDC needed?
7.4. Can Samba be a Backup Domain Controller?
7.5. How do I set up a Samba BDC?
7.5.1. How do I replicate the smbpasswd file?
8. Samba as a ADS domain member
8.1. Installing the required packages for Debian
8.2. Installing the required packages for RedHat
8.3. Compile Samba
8.4. Setup your /etc/krb5.conf
8.5. Create the computer account
8.5.1. Possible errors
8.6. Test your server setup
8.7. Testing with smbclient
8.8. Notes
9. Samba as a NT4 domain member
9.1. Joining an NT Domain with Samba 2.2
9.2. Samba and Windows 2000 Domains
9.3. Why is this better than security = server?

PrevHomeNext
LanMan and NT Password Encryption in Samba How to Configure Samba as a NT4 Primary Domain Controller
\ No newline at end of file diff --git a/docs/htmldocs/pam.html b/docs/htmldocs/pam.html index a64de2a1b47..d110c385f1c 100644 --- a/docs/htmldocs/pam.html +++ b/docs/htmldocs/pam.html @@ -6,7 +6,7 @@ managed authentication

11.1. Samba and PAM

11.1. Samba and PAM

A number of Unix systems (eg: Sun Solaris), as well as the xxxxBSD family and Linux, now utilize the Pluggable Authentication @@ -296,9 +296,9 @@ CLASS="SECT1" >

11.2. Distributed Authentication

11.2. Distributed Authentication

The astute administrator will realize from this that the combination of

11.3. PAM Configuration in smb.conf

11.3. PAM Configuration in smb.conf

There is an option in smb.conf called

When Samba 2.2 is configure to enable PAM support (i.e. ---with-pam--with-pam), this parameter will control whether or not Samba should obey PAM's account and session management directives. The default behavior diff --git a/docs/htmldocs/passdb.html b/docs/htmldocs/passdb.html index f53641624a0..7a8fb7fdece 100644 --- a/docs/htmldocs/passdb.html +++ b/docs/htmldocs/passdb.html @@ -5,7 +5,7 @@ >User information database

3.1. Introduction

3.1. Introduction

Old windows clients send plain text passwords over the wire. Samba can check these passwords by crypting them and comparing them @@ -121,9 +121,9 @@ CLASS="SECT1" >

3.2. Important Notes About Security

3.2. Important Notes About Security

The unix and SMB password encryption techniques seem similar on the surface. This similarity is, however, only skin deep. The unix @@ -229,9 +229,9 @@ CLASS="SECT2" >

3.2.1. Advantages of SMB Encryption

3.2.1. Advantages of SMB Encryption

3.2.2. Advantages of non-encrypted passwords

3.2.2. Advantages of non-encrypted passwords

3.3. The smbpasswd Command

3.3. The smbpasswd Command

The smbpasswd utility is a utility similar to the

To run smbpasswd as a normal user just type :

$ $ smbpasswdsmbpasswd

Old SMB password: Old SMB password: <type old value here - - or hit return if there was no old password><type old value here - + or hit return if there was no old password>

New SMB Password: New SMB Password: <type new value> - <type new value> +

Repeat New SMB Password: Repeat New SMB Password: <re-type new value - <re-type new value +

If the old value does not match the current value stored for @@ -411,9 +403,9 @@ CLASS="SECT1" >

3.4. Plain text

3.4. Plain text

Older versions of samba retrieved user information from the unix user database and eventually some other fields from the file

3.5. TDB

3.5. TDB

Samba can also store the user data in a "TDB" (Trivial Database). Using this backend doesn't require any additional configuration. This backend is recommended for new installations who @@ -444,17 +436,17 @@ CLASS="SECT1" >

3.6. LDAP

3.6. LDAP

3.6.1. Introduction

3.6.1. Introduction

This document describes how to use an LDAP directory for storing Samba user account information traditionally stored in the smbpasswd(5) file. It is @@ -520,9 +512,9 @@ CLASS="SECT2" >

3.6.2. Introduction

3.6.2. Introduction

Traditionally, when configuring --with-ldapsam--with-ldapsam or ---with-tdbsam--with-tdbsam) requires compile time support.

When compiling Samba to include the When compiling Samba to include the --with-ldapsam--with-ldapsam autoconf option, smbd (and associated tools) will store and lookup user accounts in an LDAP directory. In reality, this is very easy to understand. If you are comfortable with using an smbpasswd file, simply replace "smbpasswd" with "LDAP directory" in all the documentation.

There are a few points to stress about what the There are a few points to stress about what the --with-ldapsam--with-ldapsam does not provide. The LDAP support referred to in the this documentation does not include:

3.6.3. Supported LDAP Servers

3.6.3. Supported LDAP Servers

The LDAP samdb code in 2.2.3 has been developed and tested using the OpenLDAP 2.0 server and client libraries. The same code should be able to work with @@ -662,9 +646,9 @@ CLASS="SECT2" >

3.6.4. Schema and Relationship to the RFC 2307 posixAccount

3.6.4. Schema and Relationship to the RFC 2307 posixAccount

Samba 3.0 includes the necessary schema file for OpenLDAP 2.0 in /etc/passwd entry, so is the sambaAccount object meant to supplement the UNIX user account information. A sambaAccount is a -STRUCTURALSTRUCTURAL objectclass so it can be stored individually in the directory. However, there are several fields (e.g. uid) which overlap with the posixAccount objectclass outlined in RFC2307. This is by design.

3.6.5. Configuring Samba with LDAP

3.6.5. Configuring Samba with LDAP

3.6.5.1. OpenLDAP configuration

3.6.5.1. OpenLDAP configuration

To include support for the sambaAccount object in an OpenLDAP directory server, first copy the samba.schema file to slapd's configuration directory.

root# root# cp samba.schema /etc/openldap/schema/

3.6.5.2. Configuring Samba

3.6.5.2. Configuring Samba

The following parameters are available in smb.conf only with The following parameters are available in smb.conf only with --with-ldapsam--with-ldapsam was included with compiling Samba.

secretpwsecretpw' to store the # passphrase in the secrets.tdb file. If the "ldap admin dn" values # changes, this password will need to be reset. @@ -920,7 +900,7 @@ CLASS="REPLACEABLE" ldap suffix = "ou=people,dc=samba,dc=org" # generally the default ldap search filter is ok - # ldap filter = "(&(uid=%u)(objectclass=sambaAccount))"

3.6.6. Accounts and Groups management

3.6.6. Accounts and Groups management

As users accounts are managed thru the sambaAccount objectclass, you should modify you existing administration tools to deal with sambaAccount attributes.

3.6.7. Security and sambaAccount

3.6.7. Security and sambaAccount

There are two important points to remember when discussing the security of sambaAccount entries in the directory.

3.6.8. LDAP specials attributes for sambaAccounts

3.6.8. LDAP specials attributes for sambaAccounts

The sambaAccount objectclass is composed of the following attributes:

  • lmPasswordlmPassword: the LANMAN password 16-byte hash stored as a character representation of a hexidecimal string.

  • ntPasswordntPassword: the NT password hash 16-byte stored as a character representation of a hexidecimal string.

  • pwdLastSetpwdLastSet: The integer time in seconds since 1970 when the - lmPassword and lmPassword and ntPasswordntPassword attributes were last set.

  • acctFlagsacctFlags: string of 11 characters surrounded by square brackets [] representing account flags such as U (user), W(workstation), X(no password expiration), and D(disabled).

  • logonTimelogonTime: Integer value currently unused

  • logoffTimelogoffTime: Integer value currently unused

  • kickoffTimekickoffTime: Integer value currently unused

  • pwdCanChangepwdCanChange: Integer value currently unused

  • pwdMustChangepwdMustChange: Integer value currently unused

  • homeDrivehomeDrive: specifies the drive letter to which to map the UNC path specified by homeDirectory. The drive letter must be specified in the form "X:" where X is the letter of the drive to map. Refer to the "logon drive" parameter in the @@ -1128,9 +1108,9 @@ CLASS="CONSTANT" >

  • scriptPathscriptPath: The scriptPath property specifies the path of the user's logon script, .CMD, .EXE, or .BAT file. The string can be null. The path is relative to the netlogon share. Refer to the "logon script" parameter in the @@ -1138,18 +1118,18 @@ CLASS="CONSTANT" >

  • profilePathprofilePath: specifies a path to the user's profile. This value can be a null string, a local absolute path, or a UNC path. Refer to the "logon path" parameter in the smb.conf(5) man page for more information.

  • smbHomesmbHome: The homeDirectory property specifies the path of the home directory for the user. The string can be null. If homeDrive is set and specifies a drive letter, homeDirectory should be a UNC path. The path must be a network @@ -1159,25 +1139,25 @@ CLASS="CONSTANT" >

  • userWorkstationuserWorkstation: character string value currently unused.

  • ridrid: the integer representation of the user's relative identifier (RID).

  • primaryGroupIDprimaryGroupID: the relative identifier (RID) of the primary group of the user.

  • smb.conf file. When a user named "becky" logons to the domain, -the logon homelogon home string is expanded to \\TASHTEGO\becky. If the smbHome attribute exists in the entry "uid=becky,ou=people,dc=samba,dc=org", this value is used. However, if this attribute does not exist, then the value -of the logon homelogon home parameter is used in its place. Samba will only write the attribute value to the directory entry is the value is something other than the default (e.g. \\MOBY\becky).

    3.6.9. Example LDIF Entries for a sambaAccount

    3.6.9. Example LDIF Entries for a sambaAccount

    The following is a working LDIF with the inclusion of the posixAccount objectclass:

    3.7. MySQL

    3.7. MySQL

    3.7.1. Building

    3.7.1. Building

    To build the plugin, run

    3.7.2. Creating the database

    3.7.2. Creating the database

    You either can set up your own table and specify the field names to pdb_mysql (see below for the column names) or use the default table. The file mysql -umysql -uusername -husername -hhostname -phostname -ppassword password databasenamedatabasename < /path/to/samba/examples/pdb/mysql/mysql.dump

    3.7.3. Configuring

    3.7.3. Configuring

    This plugin lacks some good documentation, but here is some short info:

    3.7.4. Using plaintext passwords or encrypted password

    3.7.4. Using plaintext passwords or encrypted password

    I strongly discourage the use of plaintext passwords, however, you can use them:

    3.7.5. Getting non-column data from the table

    3.7.5. Getting non-column data from the table

    It is possible to have not all data in the database and making some 'constant'.

    3.8. Passdb XML plugin

    3.8. Passdb XML plugin

    3.8.1. Building

    3.8.1. Building

    This module requires libxml2 to be installed.

    3.8.2. Usage

    3.8.2. Usage

    The usage of pdb_xml is pretty straightforward. To export data, use: diff --git a/docs/htmldocs/pdb-mysql.html b/docs/htmldocs/pdb-mysql.html deleted file mode 100644 index e98d0c30d08..00000000000 --- a/docs/htmldocs/pdb-mysql.html +++ /dev/null @@ -1,341 +0,0 @@ - -Passdb MySQL plugin

SAMBA Project Documentation
PrevNext

Chapter 16. Passdb MySQL plugin

16.1. Building

To build the plugin, run make bin/pdb_mysql.so -in the source/ directory of samba distribution.

Next, copy pdb_mysql.so to any location you want. I -strongly recommend installing it in $PREFIX/lib or /usr/lib/samba/

16.2. Creating the database

You either can set up your own table and specify the field names to pdb_mysql (see below -for the column names) or use the default table. The file examples/pdb/mysql/mysql.dump -contains the correct queries to create the required tables. Use the command : - -mysql -uusername -hhostname -ppassword databasename < /path/to/samba/examples/pdb/mysql/mysql.dump

16.3. Configuring

This plugin lacks some good documentation, but here is some short info:

Add a the following to the passdb backend variable in your smb.conf: -

passdb backend = [other-plugins] plugin:/location/to/pdb_mysql.so:identifier [other-plugins]

The identifier can be any string you like, as long as it doesn't collide with -the identifiers of other plugins or other instances of pdb_mysql. If you -specify multiple pdb_mysql.so entries in 'passdb backend', you also need to -use different identifiers!

Additional options can be given thru the smb.conf file in the [global] section.

identifier:mysql host                     - host name, defaults to 'localhost'
-identifier:mysql password
-identifier:mysql user                     - defaults to 'samba'
-identifier:mysql database                 - defaults to 'samba'
-identifier:mysql port                     - defaults to 3306
-identifier:table                          - Name of the table containing users

WARNING: since the password for the mysql user is stored in the -smb.conf file, you should make the the smb.conf file -readable only to the user that runs samba. This is considered a security -bug and will be fixed soon.

Names of the columns in this table(I've added column types those columns should have first):

identifier:logon time column             - int(9)
-identifier:logoff time column            - int(9)
-identifier:kickoff time column           - int(9)
-identifier:pass last set time column     - int(9)
-identifier:pass can change time column   - int(9)
-identifier:pass must change time column  - int(9)
-identifier:username column               - varchar(255) - unix username
-identifier:domain column                 - varchar(255) - NT domain user is part of
-identifier:nt username column            - varchar(255) - NT username
-identifier:fullname column            - varchar(255) - Full name of user
-identifier:home dir column               - varchar(255) - Unix homedir path
-identifier:dir drive column              - varchar(2) - Directory drive path (eg: 'H:')
-identifier:logon script column           - varchar(255) - Batch file to run on client side when logging on
-identifier:profile path column           - varchar(255) - Path of profile
-identifier:acct desc column              - varchar(255) - Some ASCII NT user data
-identifier:workstations column           - varchar(255) - Workstations user can logon to (or NULL for all)
-identifier:unknown string column         - varchar(255) - unknown string
-identifier:munged dial column            - varchar(255) - ?
-identifier:uid column                    - int(9) - Unix user ID (uid)
-identifier:gid column                    - int(9) - Unix user group (gid)
-identifier:user sid column               - varchar(255) - NT user SID
-identifier:group sid column              - varchar(255) - NT group ID
-identifier:lanman pass column            - varchar(255) - encrypted lanman password
-identifier:nt pass column                - varchar(255) - encrypted nt passwd
-identifier:plain pass column             - varchar(255) - plaintext password
-identifier:acct control column           - int(9) - nt user data
-identifier:unknown 3 column              - int(9) - unknown
-identifier:logon divs column             - int(9) - ?
-identifier:hours len column              - int(9) - ?
-identifier:unknown 5 column              - int(9) - unknown
-identifier:unknown 6 column              - int(9) - unknown

Eventually, you can put a colon (:) after the name of each column, which -should specify the column to update when updating the table. You can also -specify nothing behind the colon - then the data from the field will not be -updated.

16.4. Using plaintext passwords or encrypted password

I strongly discourage the use of plaintext passwords, however, you can use them:

If you would like to use plaintext passwords, set 'identifier:lanman pass column' and 'identifier:nt pass column' to 'NULL' (without the quotes) and 'identifier:plain pass column' to the name of the column containing the plaintext passwords.

If you use encrypted passwords, set the 'identifier:plain pass column' to 'NULL' (without the quotes). This is the default.

16.5. Getting non-column data from the table

It is possible to have not all data in the database and making some 'constant'.

For example, you can set 'identifier:fullname column' to : -CONCAT(First_name,' ',Sur_name)

Or, set 'identifier:workstations column' to : -NULL

See the MySQL documentation for more language constructs.


PrevHomeNext
Unified Logons between Windows NT and UNIX using WinbindUpPassdb XML plugin
\ No newline at end of file diff --git a/docs/htmldocs/pdb-xml.html b/docs/htmldocs/pdb-xml.html deleted file mode 100644 index 1b419dcc745..00000000000 --- a/docs/htmldocs/pdb-xml.html +++ /dev/null @@ -1,189 +0,0 @@ - -Passdb XML plugin
SAMBA Project Documentation
PrevNext

Chapter 17. Passdb XML plugin

17.1. Building

This module requires libxml2 to be installed.

To build pdb_xml, run: make bin/pdb_xml.so in -the directory source/.

17.2. Usage

The usage of pdb_xml is pretty straightforward. To export data, use: - -pdbedit -e plugin:/usr/lib/samba/pdb_xml.so:filename - -(where filename is the name of the file to put the data in)

To import data, use: -pdbedit -i plugin:/usr/lib/samba/pdb_xml.so:filename -e current-pdb - -Where filename is the name to read the data from and current-pdb to put it in.


PrevHomeNext
Passdb MySQL pluginUpStackable VFS modules
\ No newline at end of file diff --git a/docs/htmldocs/pdbedit.8.html b/docs/htmldocs/pdbedit.8.html index 14497f522c1..ee7b9802119 100644 --- a/docs/htmldocs/pdbedit.8.html +++ b/docs/htmldocs/pdbedit.8.html @@ -5,7 +5,7 @@ >pdbedit

This option may only be used in conjunction - with the -a-a option. It will make pdbedit to add a machine trust account instead of a user account (-u username will provide the machine name).

Sets an account policy to a specified value. This option may only be used in conjunction - with the -P-P option.

-d|--debug=debuglevel

debugleveldebuglevel is an integer from 0 to 10. The default value if this parameter is not specified is zero.

Print a summary of command line options.

-s <configuration file>
-s <configuration file>

The file specified contains the diff --git a/docs/htmldocs/portability.html b/docs/htmldocs/portability.html index 4942cdb1bb9..b6d406ce1df 100644 --- a/docs/htmldocs/portability.html +++ b/docs/htmldocs/portability.html @@ -5,7 +5,7 @@ >Portability

21.1. HPUX

21.1. HPUX

HP's implementation of supplementary groups is, er, non-standard (for hysterical reasons). There are two group files, /etc/group and @@ -114,9 +114,9 @@ CLASS="SECT1" >

21.2. SCO Unix

21.2. SCO Unix

If you run an old version of SCO Unix then you may need to get important @@ -131,9 +131,9 @@ CLASS="SECT1" >

21.3. DNIX

21.3. DNIX

DNIX has a problem with seteuid() and setegid(). These routines are needed for Samba to work correctly, but they were left out of the DNIX @@ -238,9 +238,9 @@ CLASS="SECT1" >

21.4. RedHat Linux Rembrandt-II

21.4. RedHat Linux Rembrandt-II

By default RedHat Rembrandt-II during installation adds an entry to /etc/hosts as follows: @@ -257,6 +257,27 @@ is the master browse list holder and who is the master browser.

Corrective Action: Delete the entry after the word loopback in the line starting 127.0.0.1

21.5. AIX

21.5.1. Sequential Read Ahead

Disabling Sequential Read Ahead using "vmtune -r 0" improves +samba performance significally.

debugleveldebuglevel is an integer from 0 to 10. The default value if this parameter is not specified is zero.

-I IP-address

IP addressIP address is the address of the server to connect to. It should be specified in standard "a.b.c.d" notation.

Normally the client would attempt to locate a named SMB/CIFS server by looking it up via the NetBIOS name resolution - mechanism described above in the name resolve ordername resolve order parameter above. Using this parameter will force the client to assume that the server is on the machine with the specified IP @@ -207,9 +199,9 @@ CLASS="PARAMETER" >

File name for log/debug files. The extension - '.client''.client' will be appended. The log file is never removed by the client.

rpcclient
will - prompt for a password. See also the -U-U option.

Sets the SMB username or username and password.

If %password is not specified, the user will be prompted. The - client will first check the USERUSER environment variable, then the - LOGNAMELOGNAME variable and if either exists, the string is uppercased. If these environmental variables are not - found, the username GUESTGUEST is used.

A third option is to use a credentials file which @@ -271,11 +261,9 @@ CLASS="CONSTANT" wish to pass the credentials on the command line or via environment variables. If this method is used, make certain that the permissions on the file restrict access from unwanted users. See the - -A-A for more details.

Be cautious about including passwords in scripts. Also, on @@ -441,7 +429,7 @@ CLASS="EMPHASIS" >

adddriver <arch> <config>adddriver <arch> <config> - Execute an AddPrinterDriver() RPC to install the printer driver information on the server. Note that the driver files should @@ -450,21 +438,17 @@ CLASS="COMMAND" CLASS="COMMAND" >getdriverdir. Possible values for - archarch are the same as those for the getdriverdir command. - The configconfig parameter is defined as follows:

addprinter <printername> - <sharename> <drivername> <port>addprinter <printername> + <sharename> <drivername> <port> - Add a printer on the remote server. This printer will be automatically shared. Be aware that the printer driver @@ -502,11 +486,9 @@ CLASS="COMMAND" CLASS="COMMAND" >adddriver) - and the portportmust be a valid port name (see

enumjobs <printer>enumjobs <printer> - List the jobs and status of a given printer. This command corresponds to the MS Platform SDK EnumJobs() @@ -582,7 +564,7 @@ CLASS="COMMAND" >

getdata <printername>getdata <printername> - Retrieve the data for a given printer setting. See the

getdriver <printername>getdriver <printername> - Retrieve the printer driver information (such as driver file, config file, dependent files, etc...) for @@ -608,16 +590,14 @@ CLASS="COMMAND" >

getdriverdir <arch>getdriverdir <arch> - Execute a GetPrinterDriverDirectory() RPC to retrieve the SMB share name and subdirectory for storing printer driver files for a given architecture. Possible - values for archarch are "Windows 4.0" (for Windows 95/98), "Windows NT x86", "Windows NT PowerPC", "Windows Alpha_AXP", and "Windows NT R4000".

getprinter <printername>getprinter <printername> - Retrieve the current printer information. This command corresponds to the GetPrinter() MS Platform SDK function. @@ -636,7 +616,7 @@ CLASS="COMMAND" >

openprinter <printername>openprinter <printername> - Execute an OpenPrinterEx() and ClosePrinter() RPC against a given printer.

setdriver <printername> - <drivername>setdriver <printername> + <drivername> - Execute a SetPrinter() command to update the printer driver associated with an installed printer. The printer driver must diff --git a/docs/htmldocs/samba-bdc.html b/docs/htmldocs/samba-bdc.html index 42f653fb7db..c0c1805f8fc 100644 --- a/docs/htmldocs/samba-bdc.html +++ b/docs/htmldocs/samba-bdc.html @@ -5,7 +5,7 @@ >How to Act as a Backup Domain Controller in a Purely Samba Controlled Domain

6.1. Prerequisite Reading

6.1. Prerequisite Reading

Before you continue reading in this chapter, please make sure that you are comfortable with configuring a Samba PDC @@ -97,9 +97,9 @@ CLASS="SECT1" >

6.2. Background

6.2. Background

What is a Domain Controller? It is a machine that is able to answer logon requests from workstations in a Windows NT Domain. Whenever a @@ -142,9 +142,9 @@ CLASS="SECT1" >

6.3. What qualifies a Domain Controller on the network?

6.3. What qualifies a Domain Controller on the network?

Every machine that is a Domain Controller for the domain SAMBA has to register the NetBIOS group name SAMBA#1c with the WINS server and/or @@ -159,9 +159,9 @@ CLASS="SECT2" >

6.3.1. How does a Workstation find its domain controller?

6.3.1. How does a Workstation find its domain controller?

A NT workstation in the domain SAMBA that wants a local user to be authenticated has to find the domain controller for SAMBA. It does @@ -178,9 +178,9 @@ CLASS="SECT2" >

6.3.2. When is the PDC needed?

6.3.2. When is the PDC needed?

Whenever a user wants to change his password, this has to be done on the PDC. To find the PDC, the workstation does a NetBIOS name query @@ -194,9 +194,9 @@ CLASS="SECT1" >

6.4. Can Samba be a Backup Domain Controller to an NT PDC?

6.4. Can Samba be a Backup Domain Controller to an NT PDC?

With version 2.2, no. The native NT SAM replication protocols have not yet been fully implemented. The Samba Team is working on @@ -217,9 +217,9 @@ CLASS="SECT1" >

6.5. How do I set up a Samba BDC?

6.5. How do I set up a Samba BDC?

Several things have to be done:

6.5.1. How do I replicate the smbpasswd file?

6.5.1. How do I replicate the smbpasswd file?

Replication of the smbpasswd file is sensitive. It has to be done whenever changes to the SAM are made. Every user's password change is @@ -305,9 +305,9 @@ CLASS="SECT2" >

6.5.2. Can I do this all with LDAP?

6.5.2. Can I do this all with LDAP?

The simple answer is YES. Samba's pdb_ldap code supports binding to a replica LDAP server, and will also follow referrals and diff --git a/docs/htmldocs/samba-howto-collection.html b/docs/htmldocs/samba-howto-collection.html index 82e29206ac5..51b4fddcba5 100644 --- a/docs/htmldocs/samba-howto-collection.html +++ b/docs/htmldocs/samba-howto-collection.html @@ -5,7 +5,7 @@ >SAMBA Project DocumentationSAMBA Project DocumentationSAMBA Project Documentation

1.1. Read the man pagesObtaining and installing samba
1.2. Building the BinariesConfiguring samba
1.3. The all important step
1.4. Create the smb configuration file.
1.5. Test your config file with - testparm
1.6. Starting the smbd and nmbd
1.7. Try listing the shares available on your server
1.8. 1.4. Try connecting with the unix client
1.9. 1.5. Try connecting from a DOS, WfWg, Win9x, WinNT, Win2k, OS/2, etc... client
1.10. 1.6. What If Things Don't Work?
2.1. Discussion
2.2. Use of the "Remote Announce" parameter
2.3. Use of the "Remote Browse Sync" parameter
2.4. Use of WINS
2.5. Do NOT use more than one (1) protocol on MS Windows machines
2.6. Name Resolution Order
3.1. Introduction
3.2. Important Notes About Security
3.3. The smbpasswd Command
3.4. Plain text
3.5. TDB
3.6. LDAP
3.7. MySQL
3.8. Passdb XML plugin
5.1. Prerequisite Reading
5.2. Background
5.3. Configuring the Samba Domain Controller
5.4. Creating Machine Trust Accounts and Joining Clients to the Domain
5.5. Common Problems and Errors
5.6. System Policies and Profiles
5.7. What other help can I get?
5.8. Domain Control for Windows 9x/ME
5.9. DOMAIN_CONTROL.txt : Windows NT Domain Control & SambaDOMAIN_CONTROL.txt : Windows NT Domain Control & Samba
6.1. Prerequisite Reading
6.2. Background
6.3. What qualifies a Domain Controller on the network?
6.4. Can Samba be a Backup Domain Controller to an NT PDC?
6.5. How do I set up a Samba BDC?
7.1. Installing the required packages for Debian
7.2. Installing the required packages for RedHat
7.3. Compile Samba
7.4. Setup your /etc/krb5.conf
7.5. Create the computer account
7.6. Test your server setup
7.7. Testing with smbclient
7.8. Notes
8.1. Joining an NT Domain with Samba 3.0
8.2. Samba and Windows 2000 Domains
8.3. Why is this better than security = server?
9.1. Agenda
9.2. Name Resolution in a pure Unix/Linux world
9.3. Name resolution as used within MS Windows networking
9.4. How browsing functions and how to deploy stable and dependable browsing using Samba
9.5. MS Windows security options and how to configure Samba for seemless integration
9.6. Conclusions
10.1. Viewing and changing UNIX permissions using the NT security dialogs
10.2. How to view file security on a Samba share
10.3. Viewing file ownership
10.4. Viewing file or directory permissions
10.5. Modifying file or directory permissions
10.6. Interaction with the standard Samba create mask parameters
10.7. Interaction with the standard Samba file attribute mapping
11.1. Samba and PAM
11.2. Distributed Authentication
11.3. PAM Configuration in smb.conf
12.1. Instructions
13.1. Introduction
13.2. Configuration
13.3. The Imprints Toolset
13.4. Diagnosis
14.1. Abstract
14.2. Introduction
14.3. What Winbind Provides
14.4. How Winbind Works
14.5. Installation and Configuration
14.6. Limitations
14.7. Conclusion
15.1. Overview of browsing
15.2. Browsing support in samba
15.3. Problem resolution
15.4. Browsing across subnets
15.5. Setting up a WINS server
15.6. Setting up Browsing in a WORKGROUP
15.7. Setting up Browsing in a DOMAIN
15.8. Forcing samba to be the master
15.9. Making samba the domain master
15.10. Note about broadcast addresses
15.11. Multiple interfaces
16.1. Introduction and configuration
16.2. Included modules
16.3. VFS modules available elsewhere
17. Access Samba source code via CVS
17.1. Introduction
17.2. CVS Access to samba.org
18. Group mapping HOWTO
19. 18. Samba performance issues
19.1. 18.1. Comparisons
19.2. 18.2. Socket options
19.3. 18.3. Read size
19.4. 18.4. Max xmit
19.5. 18.5. Log level
19.6. 18.6. Read raw
19.7. 18.7. Write raw
19.8. 18.8. Slow Clients
19.9. 18.9. Slow Logins
19.10. 18.10. Client tuning
20. 19. Creating Group ProfilesCreating Group Prolicy Files
20.1. 19.1. Windows '9x
20.2. 19.2. Windows NT 4
20.3. 19.3. Windows 2000/XP
20. Securing Samba
20.1. Introduction
20.2. Using host based protection
20.3. Using interface protection
20.4. Using a firewall
20.5. Using a IPC$ share deny
20.6. Upgrading Samba
21.1. HPUX
21.2. SCO Unix
21.3. DNIX
21.4. RedHat Linux Rembrandt-II
21.5. AIX
22.1. Macintosh clients?
22.2. OS2 Client
22.3. Windows for Workgroups
22.4. Windows '95/'98
22.5. Windows 2000 Service Pack 2
23. How to compile SAMBA
23.1. Access Samba source code via CVS
23.2. Accessing the samba sources via rsync and ftp
23.3. Building the Binaries
23.4. Starting the smbd and nmbd
24. Reporting Bugs
23.1. 24.1. Introduction
23.2. 24.2. General info
23.3. 24.3. Debug levels
23.4. 24.4. Internal errors
23.5. 24.5. Attaching to a running process
23.6. 24.6. Patches
24. 25. Diagnosing your samba serverThe samba checklist
24.1. 25.1. Introduction
24.2. 25.2. Assumptions
24.3. 25.3. Tests
24.4. 25.4. Still having troubles?
-Storing Samba's User/Machine Account information in an LDAP Directory
SAMBA Project Documentation
PrevNext

Chapter 17. Storing Samba's User/Machine Account information in an LDAP Directory

17.1. Purpose

This document describes how to use an LDAP directory for storing Samba user -account information traditionally stored in the smbpasswd(5) file. It is -assumed that the reader already has a basic understanding of LDAP concepts -and has a working directory server already installed. For more information -on LDAP architectures and Directories, please refer to the following sites.

Note that O'Reilly Publishing is working on -a guide to LDAP for System Administrators which has a planned release date of -early summer, 2002.

Two additional Samba resources which may prove to be helpful are

  • The Samba-PDC-LDAP-HOWTO - maintained by Ignacio Coupeau.

  • The NT migration scripts from IDEALX that are - geared to manage users and group in such a Samba-LDAP Domain Controller configuration. -

17.2. Introduction

Traditionally, when configuring "encrypt -passwords = yes" in Samba's smb.conf file, user account -information such as username, LM/NT password hashes, password change times, and account -flags have been stored in the smbpasswd(5) file. There are several -disadvantages to this approach for sites with very large numbers of users (counted -in the thousands).

  • The first is that all lookups must be performed sequentially. Given that -there are approximately two lookups per domain logon (one for a normal -session connection such as when mapping a network drive or printer), this -is a performance bottleneck for lareg sites. What is needed is an indexed approach -such as is used in databases.

  • The second problem is that administrators who desired to replicate a -smbpasswd file to more than one Samba server were left to use external -tools such as rsync(1) and ssh(1) -and wrote custom, in-house scripts.

  • And finally, the amount of information which is stored in an -smbpasswd entry leaves no room for additional attributes such as -a home directory, password expiration time, or even a Relative -Identified (RID).

As a result of these defeciencies, a more robust means of storing user attributes -used by smbd was developed. The API which defines access to user accounts -is commonly referred to as the samdb interface (previously this was called the passdb -API, and is still so named in the CVS trees). In Samba 2.2.3, enabling support -for a samdb backend (e.g. --with-ldapsam or ---with-tdbsam) requires compile time support.

When compiling Samba to include the --with-ldapsam autoconf -option, smbd (and associated tools) will store and lookup user accounts in -an LDAP directory. In reality, this is very easy to understand. If you are -comfortable with using an smbpasswd file, simply replace "smbpasswd" with -"LDAP directory" in all the documentation.

There are a few points to stress about what the --with-ldapsam -does not provide. The LDAP support referred to in the this documentation does not -include:

  • A means of retrieving user account information from - an Windows 2000 Active Directory server.

  • A means of replacing /etc/passwd.

The second item can be accomplished by using LDAP NSS and PAM modules. LGPL -versions of these libraries can be obtained from PADL Software -(http://www.padl.com/). However, -the details of configuring these packages are beyond the scope of this document.

17.3. Supported LDAP Servers

The LDAP samdb code in 2.2.3 has been developed and tested using the OpenLDAP -2.0 server and client libraries. The same code should be able to work with -Netscape's Directory Server and client SDK. However, due to lack of testing -so far, there are bound to be compile errors and bugs. These should not be -hard to fix. If you are so inclined, please be sure to forward all patches to -samba-patches@samba.org and -jerry@samba.org.

17.4. Schema and Relationship to the RFC 2307 posixAccount

Samba 2.2.3 includes the necessary schema file for OpenLDAP 2.0 in -examples/LDAP/samba.schema. (Note that this schema -file has been modified since the experimental support initially included -in 2.2.2). The sambaAccount objectclass is given here:

objectclass ( 1.3.1.5.1.4.1.7165.2.2.2 NAME 'sambaAccount' SUP top STRUCTURAL
-     DESC 'Samba Account'
-     MUST ( uid $ rid )
-     MAY  ( cn $ lmPassword $ ntPassword $ pwdLastSet $ logonTime $
-            logoffTime $ kickoffTime $ pwdCanChange $ pwdMustChange $ acctFlags $
-            displayName $ smbHome $ homeDrive $ scriptPath $ profilePath $
-            description $ userWorkstations $ primaryGroupID $ domain ))

The samba.schema file has been formatted for OpenLDAP 2.0. The OID's are -owned by the Samba Team and as such is legal to be openly published. -If you translate the schema to be used with Netscape DS, please -submit the modified schema file as a patch to jerry@samba.org

Just as the smbpasswd file is mean to store information which supplements a -user's /etc/passwd entry, so is the sambaAccount object -meant to supplement the UNIX user account information. A sambaAccount is a -STRUCTURAL objectclass so it can be stored individually -in the directory. However, there are several fields (e.g. uid) which overlap -with the posixAccount objectclass outlined in RFC2307. This is by design.

In order to store all user account information (UNIX and Samba) in the directory, -it is necessary to use the sambaAccount and posixAccount objectclasses in -combination. However, smbd will still obtain the user's UNIX account -information via the standard C library calls (e.g. getpwnam(), et. al.). -This means that the Samba server must also have the LDAP NSS library installed -and functioning correctly. This division of information makes it possible to -store all Samba account information in LDAP, but still maintain UNIX account -information in NIS while the network is transitioning to a full LDAP infrastructure.

17.5. Configuring Samba with LDAP

17.5.1. OpenLDAP configuration

To include support for the sambaAccount object in an OpenLDAP directory -server, first copy the samba.schema file to slapd's configuration directory.

root# cp samba.schema /etc/openldap/schema/

Next, include the samba.schema file in slapd.conf. -The sambaAccount object contains two attributes which depend upon other schema -files. The 'uid' attribute is defined in cosine.schema and -the 'displayName' attribute is defined in the inetorgperson.schema -file. Both of these must be included before the samba.schema file.

## /etc/openldap/slapd.conf
-
-## schema files (core.schema is required by default)
-include	           /etc/openldap/schema/core.schema
-
-## needed for sambaAccount
-include            /etc/openldap/schema/cosine.schema
-include            /etc/openldap/schema/inetorgperson.schema
-include            /etc/openldap/schema/samba.schema
-
-## uncomment this line if you want to support the RFC2307 (NIS) schema
-## include         /etc/openldap/schema/nis.schema
-
-....

It is recommended that you maintain some indices on some of the most usefull attributes, -like in the following example, to speed up searches made on sambaAccount objectclasses -(and possibly posixAccount and posixGroup as well).

# Indices to maintain
-## required by OpenLDAP 2.0
-index objectclass   eq
-
-## support pb_getsampwnam()
-index uid           pres,eq
-## support pdb_getsambapwrid()
-index rid           eq
-
-## uncomment these if you are storing posixAccount and
-## posixGroup entries in the directory as well
-##index uidNumber     eq
-##index gidNumber     eq
-##index cn            eq
-##index memberUid     eq

17.5.2. Configuring Samba

The following parameters are available in smb.conf only with --with-ldapsam -was included with compiling Samba.

These are described in the smb.conf(5) man -page and so will not be repeated here. However, a sample smb.conf file for -use with an LDAP directory could appear as

## /usr/local/samba/lib/smb.conf
-[global]
-     security = user
-     encrypt passwords = yes
-
-     netbios name = TASHTEGO
-     workgroup = NARNIA
-
-     # ldap related parameters
-
-     # define the DN to use when binding to the directory servers
-     # The password for this DN is not stored in smb.conf.  Rather it
-     # must be set by using 'smbpasswd -w secretpw' to store the
-     # passphrase in the secrets.tdb file.  If the "ldap admin dn" values
-     # changes, this password will need to be reset.
-     ldap admin dn = "cn=Samba Manager,ou=people,dc=samba,dc=org"
-
-     #  specify the LDAP server's hostname (defaults to locahost)
-     ldap server = ahab.samba.org
-
-     # Define the SSL option when connecting to the directory
-     # ('off', 'start tls', or 'on' (default))
-     ldap ssl = start tls
-
-     # define the port to use in the LDAP session (defaults to 636 when
-     # "ldap ssl = on")
-     ldap port = 389
-
-     # specify the base DN to use when searching the directory
-     ldap suffix = "ou=people,dc=samba,dc=org"
-
-     # generally the default ldap search filter is ok
-     # ldap filter = "(&(uid=%u)(objectclass=sambaAccount))"

17.6. Accounts and Groups management

As users accounts are managed thru the sambaAccount objectclass, you should -modify you existing administration tools to deal with sambaAccount attributes.

Machines accounts are managed with the sambaAccount objectclass, just -like users accounts. However, it's up to you to stored thoses accounts -in a different tree of you LDAP namespace: you should use -"ou=Groups,dc=plainjoe,dc=org" to store groups and -"ou=People,dc=plainjoe,dc=org" to store users. Just configure your -NSS and PAM accordingly (usually, in the /etc/ldap.conf configuration -file).

In Samba release 2.2.3, the group management system is based on posix -groups. This meand that Samba make usage of the posixGroup objectclass. -For now, there is no NT-like group system management (global and local -groups).

17.7. Security and sambaAccount

There are two important points to remember when discussing the security -of sambaAccount entries in the directory.

  • Never retrieve the lmPassword or - ntPassword attribute values over an unencrypted LDAP session.

  • Never allow non-admin users to - view the lmPassword or ntPassword attribute values.

These password hashes are clear text equivalents and can be used to impersonate -the user without deriving the original clear text strings. For more information -on the details of LM/NT password hashes, refer to the ENCRYPTION chapter of the Samba-HOWTO-Collection.

To remedy the first security issue, the "ldap ssl" smb.conf parameter defaults -to require an encrypted session (ldap ssl = on) using -the default port of 636 -when contacting the directory server. When using an OpenLDAP 2.0 server, it -is possible to use the use the StartTLS LDAP extended operation in the place of -LDAPS. In either case, you are strongly discouraged to disable this security -(ldap ssl = off).

Note that the LDAPS protocol is deprecated in favor of the LDAPv3 StartTLS -extended operation. However, the OpenLDAP library still provides support for -the older method of securing communication between clients and servers.

The second security precaution is to prevent non-administrative users from -harvesting password hashes from the directory. This can be done using the -following ACL in slapd.conf:

## allow the "ldap admin dn" access, but deny everyone else
-access to attrs=lmPassword,ntPassword
-     by dn="cn=Samba Admin,ou=people,dc=plainjoe,dc=org" write
-     by * none

17.8. LDAP specials attributes for sambaAccounts

The sambaAccount objectclass is composed of the following attributes:

  • lmPassword: the LANMAN password 16-byte hash stored as a character - representation of a hexidecimal string.

  • ntPassword: the NT password hash 16-byte stored as a character - representation of a hexidecimal string.

  • pwdLastSet: The integer time in seconds since 1970 when the - lmPassword and ntPassword attributes were last set. -

  • acctFlags: string of 11 characters surrounded by square brackets [] - representing account flags such as U (user), W(workstation), X(no password expiration), and - D(disabled).

  • logonTime: Integer value currently unused

  • logoffTime: Integer value currently unused

  • kickoffTime: Integer value currently unused

  • pwdCanChange: Integer value currently unused

  • pwdMustChange: Integer value currently unused

  • homeDrive: specifies the drive letter to which to map the - UNC path specified by homeDirectory. The drive letter must be specified in the form "X:" - where X is the letter of the drive to map. Refer to the "logon drive" parameter in the - smb.conf(5) man page for more information.

  • scriptPath: The scriptPath property specifies the path of - the user's logon script, .CMD, .EXE, or .BAT file. The string can be null. The path - is relative to the netlogon share. Refer to the "logon script" parameter in the - smb.conf(5) man page for more information.

  • profilePath: specifies a path to the user's profile. - This value can be a null string, a local absolute path, or a UNC path. Refer to the - "logon path" parameter in the smb.conf(5) man page for more information.

  • smbHome: The homeDirectory property specifies the path of - the home directory for the user. The string can be null. If homeDrive is set and specifies - a drive letter, homeDirectory should be a UNC path. The path must be a network - UNC path of the form \\server\share\directory. This value can be a null string. - Refer to the "logon home" parameter in the smb.conf(5) man page for more information. -

  • userWorkstation: character string value currently unused. -

  • rid: the integer representation of the user's relative identifier - (RID).

  • primaryGroupID: the relative identifier (RID) of the primary group - of the user.

The majority of these parameters are only used when Samba is acting as a PDC of -a domain (refer to the Samba-PDC-HOWTO for details on -how to configure Samba as a Primary Domain Controller). The following four attributes -are only stored with the sambaAccount entry if the values are non-default values:

  • smbHome

  • scriptPath

  • logonPath

  • homeDrive

These attributes are only stored with the sambaAccount entry if -the values are non-default values. For example, assume TASHTEGO has now been -configured as a PDC and that logon home = \\%L\%u was defined in -its smb.conf file. When a user named "becky" logons to the domain, -the logon home string is expanded to \\TASHTEGO\becky. -If the smbHome attribute exists in the entry "uid=becky,ou=people,dc=samba,dc=org", -this value is used. However, if this attribute does not exist, then the value -of the logon home parameter is used in its place. Samba -will only write the attribute value to the directory entry is the value is -something other than the default (e.g. \\MOBY\becky).

17.9. Example LDIF Entries for a sambaAccount

The following is a working LDIF with the inclusion of the posixAccount objectclass:

dn: uid=guest2, ou=people,dc=plainjoe,dc=org
-ntPassword: 878D8014606CDA29677A44EFA1353FC7
-pwdMustChange: 2147483647
-primaryGroupID: 1201
-lmPassword: 552902031BEDE9EFAAD3B435B51404EE
-pwdLastSet: 1010179124
-logonTime: 0
-objectClass: sambaAccount
-uid: guest2
-kickoffTime: 2147483647
-acctFlags: [UX         ]
-logoffTime: 2147483647
-rid: 19006
-pwdCanChange: 0

The following is an LDIF entry for using both the sambaAccount and -posixAccount objectclasses:

dn: uid=gcarter, ou=people,dc=plainjoe,dc=org
-logonTime: 0
-displayName: Gerald Carter
-lmPassword: 552902031BEDE9EFAAD3B435B51404EE
-primaryGroupID: 1201
-objectClass: posixAccount
-objectClass: sambaAccount
-acctFlags: [UX         ]
-userPassword: {crypt}BpM2ej8Rkzogo
-uid: gcarter
-uidNumber: 9000
-cn: Gerald Carter
-loginShell: /bin/bash
-logoffTime: 2147483647
-gidNumber: 100
-kickoffTime: 2147483647
-pwdLastSet: 1010179230
-rid: 19000
-homeDirectory: /home/tashtego/gcarter
-pwdCanChange: 0
-pwdMustChange: 2147483647
-ntPassword: 878D8014606CDA29677A44EFA1353FC7

17.10. Comments

Please mail all comments regarding this HOWTO to jerry@samba.org. This documents was -last updated to reflect the Samba 2.2.3 release.


PrevHomeNext
Stackable VFS modulesUpHOWTO Access Samba source code via CVS
\ No newline at end of file diff --git a/docs/htmldocs/samba-pdc.html b/docs/htmldocs/samba-pdc.html index 63a52129d00..7c4caf4f302 100644 --- a/docs/htmldocs/samba-pdc.html +++ b/docs/htmldocs/samba-pdc.html @@ -5,7 +5,7 @@ >Samba as a NT4 or Win2k Primary Domain Controller

5.1. Prerequisite Reading

5.1. Prerequisite Reading

Before you continue reading in this chapter, please make sure that you are comfortable with configuring basic files services @@ -108,9 +108,9 @@ CLASS="SECT1" >

5.2. Background

5.2. Background

5.3. Configuring the Samba Domain Controller

5.3. Configuring the Samba Domain Controller

The first step in creating a working Samba PDC is to understand the parameters necessary in smb.conf. I will not @@ -288,21 +288,17 @@ CLASS="PROGRAMLISTING" HREF="smb.conf.5.html#NETBIOSNAME" TARGET="_top" >netbios name = = POGOPOGO workgroup = = NARNIANARNIA ; we should act as the domain and local master browser @@ -392,11 +388,9 @@ TARGET="_top" HREF="smb.conf.5.html#WRITELIST" TARGET="_top" >write list = = ntadminntadmin ; share for storing user profiles @@ -472,10 +466,10 @@ CLASS="SECT1" >

5.4. Creating Machine Trust Accounts and Joining Clients to the -Domain

A machine trust account is a Samba account that is used to authenticate a client machine (rather than a user) to the Samba @@ -546,9 +540,9 @@ CLASS="SECT2" >

5.4.1. Manual Creation of Machine Trust Accounts

5.4.1. Manual Creation of Machine Trust Accounts

The first step in manually creating a machine trust account is to manually create the corresponding Unix account in @@ -563,55 +557,45 @@ CLASS="COMMAND" used to create new Unix accounts. The following is an example for a Linux based Samba server:

root# root# /usr/sbin/useradd -g 100 -d /dev/null -c /usr/sbin/useradd -g 100 -d /dev/null -c "machine -nickname" -s /bin/false -s /bin/false machine_namemachine_name$

root# root# passwd -l passwd -l machine_namemachine_name$

On *BSD systems, this can be done using the 'chpass' utility:

root# root# chpass -a "chpass -a "machine_name$:*:101:100::0:0:Workstation machine_name$:*:101:100::0:0:Workstation machine_namemachine_name:/dev/null:/sbin/nologin"

doppy$:x:505:501:doppy$:x:505:501:machine_nicknamemachine_nickname:/dev/null:/bin/false

Above, Above, machine_nicknamemachine_nickname can be any descriptive name for the client, i.e., BasementComputer. -machine_namemachine_name absolutely must be the NetBIOS name of the client to be joined to the domain. The "$" must be appended to the NetBIOS name of the client or Samba will not recognize @@ -665,24 +643,20 @@ CLASS="COMMAND" > command as shown here:

root# root# smbpasswd -a -m smbpasswd -a -m machine_namemachine_name

where where machine_namemachine_name is the machine's NetBIOS name. The RID of the new machine account is generated from the UID of the corresponding Unix account.

5.4.2. "On-the-Fly" Creation of Machine Trust Accounts

5.4.2. "On-the-Fly" Creation of Machine Trust Accounts

The second (and recommended) way of creating machine trust accounts is simply to allow the Samba server to create them as needed when the client @@ -764,7 +738,7 @@ be created manually.

[global]
-   # <...remainder of parameters...>
+   # <...remainder of parameters...>
    add user script = /usr/sbin/useradd -d /dev/null -g 100 -s /bin/false -M %u 

5.4.3. Joining the Client to the Domain

5.4.3. Joining the Client to the Domain

The procedure for joining a client to the domain varies with the version of Windows.

5.5. Common Problems and Errors

5.5. Common Problems and Errors

C:\WINNT\>C:\WINNT\> net use * /d

This problem is caused by the PDC not having a suitable machine trust account. - If you are using the add user scriptadd user script method to create accounts then this would indicate that it has not worked. Ensure the domain admin user system is working. @@ -1010,11 +982,9 @@ CLASS="COMMAND"

In order to work around this problem in 2.2.0, configure the - accountaccount control flag in

5.6. System Policies and Profiles

5.6. System Policies and Profiles

Much of the information necessary to implement System Policies and Roving User Profiles in a Samba domain is the same as that for @@ -1228,9 +1198,9 @@ CLASS="SECT1" >

5.7. What other help can I get?

5.7. What other help can I get?

There are many sources of information available in the form of mailing lists, RFC's and documentation. The docs that come @@ -1648,9 +1618,9 @@ CLASS="SECT1" >

5.8. Domain Control for Windows 9x/ME

5.8. Domain Control for Windows 9x/ME

  • The client broadcasts (to the IP broadcast address of the subnet it is in) - a NetLogon request. This is sent to the NetBIOS name DOMAIN<1c> at the + a NetLogon request. This is sent to the NetBIOS name DOMAIN<1c> at the NetBIOS layer. The client chooses the first response it receives, which contains the NetBIOS name of the logon server to use in the format of \\SERVER. @@ -1782,9 +1752,9 @@ CLASS="SECT2" >

    5.8.1. Configuration Instructions: Network Logons

    5.8.1. Configuration Instructions: Network Logons

    The main difference between a PDC and a Windows 9x logon server configuration is that

    There are a few comments to make in order to tie up some loose ends. There has been much debate over the issue of whether or not it is ok to configure Samba as a Domain Controller in security -modes other than USERUSER. The only security mode -which will not work due to technical reasons is SHARESHARE -mode security. DOMAIN and DOMAIN and SERVERSERVER mode security is really just a variation on SMB user level security.

    5.8.2. Configuration Instructions: Setting up Roaming User Profiles

    5.8.2. Configuration Instructions: Setting up Roaming User Profiles

    5.8.2.1. Windows NT Configuration

    5.8.2.1. Windows NT Configuration

    To support WinNT clients, in the [global] section of smb.conf set the following (for example):

    5.8.2.2. Windows 9X Configuration

    5.8.2.2. Windows 9X Configuration

    To support Win9X clients, you must use the "logon home" parameter. Samba has now been fixed so that "net use/home" now works as well, and it, too, relies @@ -2023,9 +1993,9 @@ CLASS="SECT3" >

    5.8.2.3. Win9X and WinNT Configuration

    5.8.2.3. Win9X and WinNT Configuration

    You can support profiles for both Win9X and WinNT clients by setting both the "logon home" and "logon path" parameters. For example:

    5.8.2.4. Windows 9X Profile Setup

    5.8.2.4. Windows 9X Profile Setup

    When a user first logs in on Windows 9X, the file user.DAT is created, as are folders "Start Menu", "Desktop", "Programs" and "Nethood". @@ -2228,9 +2198,9 @@ CLASS="SECT3" >

    5.8.2.5. Windows NT Workstation 4.0

    5.8.2.5. Windows NT Workstation 4.0

    When a user first logs in to a Windows NT Workstation, the profile NTuser.DAT is created. The profile location can be now specified @@ -2342,9 +2312,9 @@ CLASS="SECT3" >

    5.8.2.6. Windows NT Server

    5.8.2.6. Windows NT Server

    There is nothing to stop you specifying any path that you like for the location of users' profiles. Therefore, you could specify that the @@ -2356,9 +2326,9 @@ CLASS="SECT3" >

    5.8.2.7. Sharing Profiles between W95 and NT Workstation 4.0

    5.8.2.7. Sharing Profiles between W95 and NT Workstation 4.0

    5.9. DOMAIN_CONTROL.txt : Windows NT Domain Control & Samba

    5.9. DOMAIN_CONTROL.txt : Windows NT Domain Control & Samba

    The registry files can be located on any Windows NT machine by opening a command prompt and typing:

    C:\WINNT\>C:\WINNT\> dir %SystemRoot%\System32\config

    The environment variable %SystemRoot% value can be obtained by typing:

    C:\WINNT>C:\WINNT>echo %SystemRoot%

    The active parts of the registry that you may want to be familiar with are diff --git a/docs/htmldocs/samba.7.html b/docs/htmldocs/samba.7.html index 796bce7d205..689fba7cee5 100644 --- a/docs/htmldocs/samba.7.html +++ b/docs/htmldocs/samba.7.html @@ -5,7 +5,7 @@ >samba +Securing Samba

    SAMBA Project Documentation
    PrevNext

    Chapter 20. Securing Samba

    20.1. Introduction

    This note was attached to the Samba 2.2.8 release notes as it contained an +important security fix. The information contained here applies to Samba +installations in general.

    20.2. Using host based protection

    In many installations of Samba the greatest threat comes for outside +your immediate network. By default Samba will accept connections from +any host, which means that if you run an insecure version of Samba on +a host that is directly connected to the Internet you can be +especially vulnerable.

    One of the simplest fixes in this case is to use the 'hosts allow' and +'hosts deny' options in the Samba smb.conf configuration file to only +allow access to your server from a specific range of hosts. An example +might be:

      hosts allow = 127.0.0.1 192.168.2.0/24 192.168.3.0/24
    +  hosts deny = 0.0.0.0/0

    The above will only allow SMB connections from 'localhost' (your own +computer) and from the two private networks 192.168.2 and +192.168.3. All other connections will be refused connections as soon +as the client sends its first packet. The refusal will be marked as a +'not listening on called name' error.

    20.3. Using interface protection

    By default Samba will accept connections on any network interface that +it finds on your system. That means if you have a ISDN line or a PPP +connection to the Internet then Samba will accept connections on those +links. This may not be what you want.

    You can change this behaviour using options like the following:

      interfaces = eth* lo
    +  bind interfaces only = yes

    This tells Samba to only listen for connections on interfaces with a +name starting with 'eth' such as eth0, eth1, plus on the loopback +interface called 'lo'. The name you will need to use depends on what +OS you are using, in the above I used the common name for Ethernet +adapters on Linux.

    If you use the above and someone tries to make a SMB connection to +your host over a PPP interface called 'ppp0' then they will get a TCP +connection refused reply. In that case no Samba code is run at all as +the operating system has been told not to pass connections from that +interface to any process.

    20.4. Using a firewall

    Many people use a firewall to deny access to services that they don't +want exposed outside their network. This can be a very good idea, +although I would recommend using it in conjunction with the above +methods so that you are protected even if your firewall is not active +for some reason.

    If you are setting up a firewall then you need to know what TCP and +UDP ports to allow and block. Samba uses the following:

    UDP/137    - used by nmbd
    +UDP/138    - used by nmbd
    +TCP/139    - used by smbd
    +TCP/445    - used by smbd

    The last one is important as many older firewall setups may not be +aware of it, given that this port was only added to the protocol in +recent years.

    20.5. Using a IPC$ share deny

    If the above methods are not suitable, then you could also place a +more specific deny on the IPC$ share that is used in the recently +discovered security hole. This allows you to offer access to other +shares while denying access to IPC$ from potentially untrustworthy +hosts.

    To do that you could use:

      [ipc$]
    +     hosts allow = 192.168.115.0/24 127.0.0.1
    +     hosts deny = 0.0.0.0/0

    this would tell Samba that IPC$ connections are not allowed from +anywhere but the two listed places (localhost and a local +subnet). Connections to other shares would still be allowed. As the +IPC$ share is the only share that is always accessible anonymously +this provides some level of protection against attackers that do not +know a username/password for your host.

    If you use this method then clients will be given a 'access denied' +reply when they try to access the IPC$ share. That means that those +clients will not be able to browse shares, and may also be unable to +access some other resources.

    This is not recommended unless you cannot use one of the other +methods listed above for some reason.

    20.6. Upgrading Samba

    Please check regularly on http://www.samba.org/ for updates and +important announcements. Occasionally security releases are made and +it is highly recommended to upgrade Samba when a security vulnerability +is discovered.


    PrevHomeNext
    Creating Group Prolicy FilesUpAppendixes
    \ No newline at end of file diff --git a/docs/htmldocs/securitylevels.html b/docs/htmldocs/securitylevels.html index 9501fa5c6a4..0904611dbe1 100644 --- a/docs/htmldocs/securitylevels.html +++ b/docs/htmldocs/securitylevels.html @@ -5,7 +5,7 @@ >User and Share security level (for servers not in a domain)smb.conf

    name = name = value -

    The file is line-based - that is, each newline-terminated @@ -178,11 +174,11 @@ CLASS="FILENAME" The share is accessed via the share name "foo":

    [foo]
     	path = /home/bar
    -	read only = no

    The following sample section defines a printable share. @@ -199,13 +195,13 @@ CLASS="EMPHASIS" elsewhere):

    [aprinter]
     	path = /usr/spool/public
     	read only = yes
     	printable = yes
    -	guest ok = yes

    path = /data/pchome/%Spath = /data/pchome/%S

    would be useful if you have different home directories @@ -300,10 +294,10 @@ CLASS="USERINPUT" section:

    [homes]
    -	read only = no

    An important point is that if guest access is specified @@ -401,12 +395,12 @@ NAME="AEN80" this:

    [printers]
     	path = /usr/spool/public
     	guest ok = yes
    -	printable = yes 

    All aliases given for a printer in the printcap file @@ -416,9 +410,9 @@ CLASS="COMPUTEROUTPUT" more lines like this:

    alias|alias|alias|alias...    alias|alias|alias|alias...    

    Each alias should be an acceptable printer name for @@ -614,20 +608,16 @@ TARGET="_top" >Name of the domain or workgroup of the current user.

    %$(%$(envvarenvvar)

    The value of the environment variable - envarenvar.

    username
    username method of passing a username.

  • abort shutdown scriptabort shutdown script

    add group scriptadd group script

    addprinter commandaddprinter command

    add share commandadd share command

    add user scriptadd user script

    add user to group scriptadd user to group script

    add machine scriptadd machine script

    delete group scriptdelete group script

    ads serverads server

    algorithmic rid basealgorithmic rid base

    allow trusted domainsallow trusted domains

    announce asannounce as

    announce versionannounce version

    auth methodsauth methods

    auto servicesauto services

    bind interfaces onlybind interfaces only

    browse listbrowse list

    change notify timeoutchange notify timeout

    change share commandchange share command

    config fileconfig file

    deadtimedeadtime

    debug hires timestampdebug hires timestamp

    debug piddebug pid

    debug timestampdebug timestamp

    debug uiddebug uid

    debugleveldebuglevel

    defaultdefault

    default servicedefault service

    deleteprinter commanddeleteprinter command

    delete share commanddelete share command

    delete user scriptdelete user script

    delete user from group scriptdelete user from group script

    dfree commanddfree command

    disable netbiosdisable netbios

    disable spoolssdisable spoolss

    display charsetdisplay charset

    dns proxydns proxy

    domain logonsdomain logons

    domain masterdomain master

    dos charsetdos charset

    encrypt passwordsencrypt passwords

    enhanced browsingenhanced browsing

    enumports commandenumports command

    getwd cachegetwd cache

    hide local usershide local users

    hide unreadablehide unreadable

    hide unwriteable fileshide unwriteable files

    hide special fileshide special files

    homedir maphomedir map

    host msdfshost msdfs

    hostname lookupshostname lookups

    hosts equivhosts equiv

    interfacesinterfaces

    keepalivekeepalive

    kernel oplockskernel oplocks

    lanman authlanman auth

    large readwritelarge readwrite

    ldap admin dnldap admin dn

    ldap filterldap filter

    ldap portldap port

    ldap serverldap server

    ldap sslldap ssl

    ldap suffixldap suffix

    ldap user suffixldap user suffix

    ldap machine suffixldap machine suffix

    ldap passwd syncldap passwd sync

    ldap trust idsldap trust ids

    lm announcelm announce

    lm intervallm interval

    load printersload printers

    local masterlocal master

    lock dirlock dir

    lock directorylock directory

    lock spin countlock spin count

    lock spin timelock spin time

    pid directorypid directory

    log filelog file

    log levellog level

    logon drivelogon drive

    logon homelogon home

    logon pathlogon path

    logon scriptlogon script

    lpq cache timelpq cache time

    machine password timeoutmachine password timeout

  • mangle prefix

  • mangled stackmangled stack

    map to guestmap to guest

    max disk sizemax disk size

    max log sizemax log size

    max muxmax mux

    max open filesmax open files

    max protocolmax protocol

    max smbd processesmax smbd processes

    max ttlmax ttl

    max wins ttlmax wins ttl

    max xmitmax xmit

    message commandmessage command

    min passwd lengthmin passwd length

    min password lengthmin password length

    min protocolmin protocol

    min wins ttlmin wins ttl

    name cache timeoutname cache timeout

    name resolve ordername resolve order

    netbios aliasesnetbios aliases

    netbios namenetbios name

    netbios scopenetbios scope

    nis homedirnis homedir

    ntlm authntlm auth

    non unix account rangenon unix account range

    nt pipe supportnt pipe support

    nt status supportnt status support

    null passwordsnull passwords

    obey pam restrictionsobey pam restrictions

    oplock break wait timeoplock break wait time

    os levelos level

    os2 driver mapos2 driver map

    pam password changepam password change

    panic actionpanic action

    paranoid server securityparanoid server security

    passdb backendpassdb backend

    passwd chatpasswd chat

    passwd chat debugpasswd chat debug

    passwd programpasswd program

    password levelpassword level

    password serverpassword server

    prefered masterprefered master

    preferred masterpreferred master

    preloadpreload

    printcapprintcap

    printcap name

  • printer driver fileprintcap name

  • private dirprivate dir

    protocolprotocol

    read bmpxread bmpx

    read rawread raw

    read sizeread size

    realmrealm

    remote announceremote announce

    remote browse syncremote browse sync

    restrict anonymousrestrict anonymous

    rootroot

    root dirroot dir

    root directoryroot directory

    securitysecurity

    server stringserver string

    show add printer wizardshow add printer wizard

    shutdown scriptshutdown script

    smb passwd filesmb passwd file

    smb portssmb ports

    socket addresssocket address

    socket optionssocket options

    source environmentsource environment

    use spnegouse spnego

    stat cachestat cache

    stat cache sizestat cache size

    strip dotstrip dot

    syslogsyslog

    syslog onlysyslog only

    template homedirtemplate homedir

    template shelltemplate shell

    time offsettime offset

    time servertime server

    timestamp logstimestamp logs

    total print jobstotal print jobs

    unicodeunicode

    unix charsetunix charset

    unix extensionsunix extensions

    unix password syncunix password sync

    update encryptedupdate encrypted

    use mmap

  • use rhostsuse mmap

  • use sendfileuse sendfile

    username levelusername level

    username mapusername map

    utmputmp

    utmp directoryutmp directory

    wtmp directorywtmp directory

    winbind cache timewinbind cache time

    winbind enum userswinbind enum users

    winbind enum groupswinbind enum groups

    winbind gidwinbind gid

    winbind separatorwinbind separator

    winbind uidwinbind uid

    winbind use default domainwinbind use default domain

    wins hookwins hook

    wins partnerswins partners

    wins proxywins proxy

    wins serverwins server

    wins supportwins support

    workgroupworkgroup

    write rawwrite raw

    COMPLETE LIST OF SERVICE PARAMETERS

    admin usersadmin users

    allow hostsallow hosts

    availableavailable

    blocking locksblocking locks

    block sizeblock size

    browsablebrowsable

    browseablebrowseable

    case sensitivecase sensitive

    casesignamescasesignames

    commentcomment

    copycopy

    create maskcreate mask

    create modecreate mode

    csc policycsc policy

    default casedefault case

    default devmodedefault devmode

    delete readonlydelete readonly

    delete veto filesdelete veto files

    deny hostsdeny hosts

    directorydirectory

    directory maskdirectory mask

    directory modedirectory mode

    directory security maskdirectory security mask

    dont descenddont descend

    dos filemodedos filemode

    dos filetime resolutiondos filetime resolution

    dos filetimesdos filetimes

    execexec

    fake directory create timesfake directory create times

    fake oplocksfake oplocks

    follow symlinksfollow symlinks

    force create modeforce create mode

    force directory modeforce directory mode

    force directory security modeforce directory security mode

    force groupforce group

    force security modeforce security mode

    force userforce user

    fstypefstype

    groupgroup

    guest accountguest account

    guest okguest ok

    guest onlyguest only

    hide dot fileshide dot files

    hide fileshide files

    hosts allowhosts allow

    hosts denyhosts deny

    includeinclude

    inherit aclsinherit acls

    inherit permissionsinherit permissions

    invalid usersinvalid users

    level2 oplockslevel2 oplocks

    lockinglocking

    lppause commandlppause command

    lpq commandlpq command

    lpresume commandlpresume command

    lprm commandlprm command

    magic outputmagic output

    magic scriptmagic script

    mangle casemangle case

    mangled mapmangled map

    mangled namesmangled names

    mangling charmangling char

    mangling methodmangling method

    map archivemap archive

    map hiddenmap hidden

    map systemmap system

    max connectionsmax connections

    max print jobsmax print jobs

    min print spacemin print space

    msdfs proxymsdfs proxy

    msdfs rootmsdfs root

    nt acl supportnt acl support

    only guestonly guest

    only useronly user

    oplock contention limitoplock contention limit

    oplocksoplocks

    pathpath

    posix lockingposix locking

    postexec

  • postscriptpostexec

  • preexecpreexec

    preexec closepreexec close

    preserve casepreserve case

    print commandprint command

    print okprint ok

    printableprintable

    printerprinter

    printer admin

  • printer driver

  • printer driver locationprinter admin

  • printer nameprinter name

    printingprinting

    publicpublic

    queuepause commandqueuepause command

    queueresume commandqueueresume command

    read listread list

    read onlyread only

    root postexecroot postexec

    root preexecroot preexec

    root preexec closeroot preexec close

    security masksecurity mask

    set directoryset directory

    share modesshare modes

    short preserve caseshort preserve case

    strict allocatestrict allocate

    strict lockingstrict locking

    strict syncstrict sync

    sync alwayssync always

    use client driveruse client driver

    useruser

    usernameusername

    usersusers

    valid usersvalid users

    veto filesveto files

    veto oplock filesveto oplock files

    vfs pathvfs path

    vfs objectvfs object

    vfs optionsvfs options

    volumevolume

    wide linkswide links

    writablewritable

    write cache sizewrite cache size

    write listwrite list

    write okwrite ok

    writeablewriteable

    EXPLANATION OF EACH PARAMETER

    that should stop a shutdown procedure issued by the shutdown scriptshutdown script.

    For a Samba host this means that the printer must be - physically added to the underlying printing system. The add - printer command defines a script to be run which will perform the necessary operations for adding the printer to the print system and to add the appropriate service definition @@ -4788,11 +4102,9 @@ CLASS="REFENTRYTITLE" >(8).

    The The addprinter commandaddprinter command is automatically invoked with the following parameter (in order):

    • printer nameprinter name

    • share nameshare name

    • port nameport name

    • driver namedriver name

    • locationlocation

    • Windows 9x driver locationWindows 9x driver location

    • Once the Once the addprinter commandaddprinter command has been executed, will return an ACCESS_DENIED error to the client.

      The "add printer command" program can output a single line of text, + which Samba will set as the port the new printer is connected to. + If this line isn't output, Samba won't reload its printer shares. +

      See also deleteprinter command deleteprinter command, printingprinting, show add - printer wizard

      Samba 2.2.0 introduced the ability to dynamically add and delete shares via the Windows NT 4.0 Server Manager. The - add share commandadd share command is used to define an external program or script which will add a new service definition to smb.conf. In order to successfully - execute the add share commandadd share command, smbdsmbd will automatically invoke the - add share commandadd share command with four parameters.

      • configFileconfigFile - the location of the global

      • shareNameshareName - the name of the new share.

      • pathNamepathName - path to an **existing** directory on disk.

      • commentcomment - comment string to associate with the new share.

        This parameter is only used for add file shares. To add printer shares, see the addprinter - command.

        See also change share - command, delete share - command.

        Default: add machine script = <empty string> +>add machine script = <empty string>

        NOT be set to be set to security = sharesecurity = share - and add user scriptadd user script must be set to a full pathname for a script that will create a UNIX - user given one argument of %u%u, which expands into the UNIX user name to create.

        smbd(8) contacts the contacts the password serverpassword server and attempts to authenticate the given user with the given password. If the authentication succeeds then smbd attempts to find a UNIX user in the UNIX password database to map the - Windows user into. If this lookup fails, and add user script - is set then smbdAS ROOT, expanding - any %u%u argument to be the user name to create.

        If this script successfully creates the user then

        See also security security, password serverpassword server, delete user - script.

        Default: add user script = <empty string> +>add user script = <empty string>

        (8) when a new group is requested. It will expand any - %g%g to the group name passed. This script is only useful for installations using the Windows NT domain administration tools. The script is @@ -5370,17 +4627,13 @@ CLASS="EMPHASIS" >AS ROOT. - Any %g%g will be replaced with the group name and - any %u%u will be replaced with the user name.

        Synonym for hosts allowhosts allow.

        This option only takes effect when the securitysecurity option is set to - server or server or domaindomain. If it is set to no, then attempts to connect to a resource from a domain or workgroup other than the one which

        This is a synonym for the preloadpreload.

        will use when authenticating a user. This option defaults to sensible values based on security security. @@ -5590,7 +4835,7 @@ CLASS="PARAMETER" >

        Default: auth methods = <empty string>auth methods = <empty string>

        Example:

        This parameter lets you "turn off" a service. If - available = noavailable = no, then nmbd will service - name requests on all of these sockets. If bind interfaces - only is set then nmbd will check the source address of any packets coming in on the broadcast sockets and discard any that don't match the broadcast addresses of the - interfaces in the interfacesinterfaces parameter list. As unicast packets are received on the other sockets it allows nmbd to refuse to serve names to machines that send packets that arrive through any interfaces not listed in the - interfacesinterfaces list. IP Source address spoofing does defeat this simple check, however, so it must not be used seriously as a security feature for

        If If bind interfaces onlybind interfaces only is set then unless the network address 127.0.0.1 is added - to the interfacesinterfaces parameter list address as an SMB client to issue the password change request. If - bind interfaces onlybind interfaces only is set then unless the network address 127.0.0.1 is added to the - interfacesinterfaces parameter list then smbpasswdsmbpasswd(8) -r -r remote machineremote machine - parameter, with remote machineremote machine set to the IP name of the primary interface of the local host.

        If this parameter is set to If this parameter is set to nono, then samba will behave as previous versions of Samba would and will fail the lock request immediately if the lock range @@ -5937,11 +5160,9 @@ NAME="BROWSABLE" >

        See the browseable browseable.

        NetServerEnum call. Normally - set to yesyes. You should never need to change this.

        smbd(8) daemon only performs such a scan - on each requested directory once every change notify - timeout seconds.

        Default:

        Samba 2.2.0 introduced the ability to dynamically add and delete shares via the Windows NT 4.0 Server Manager. The - change share commandchange share command is used to define an external program or script which will modify an existing service definition in smb.conf. In order to successfully - execute the change share commandchange share command, smbdsmbd will automatically invoke the - change share commandchange share command with four parameters.

        • configFileconfigFile - the location of the global

        • shareNameshareName - the name of the new share.

        • pathNamepathName - path to an **existing** directory on disk.

        • commentcomment - comment string to associate with the new share.

          See also add share - command, delete - share command.

          If you want to set the string that is displayed next to the machine name then see the server string server string parameter.

          A synonym for this parameter is create modecreate mode .

          Following this Samba will bit-wise 'OR' the UNIX mode created from this parameter with the value of the force create modeforce create mode parameter which is set to 000 by default.

          This parameter does not affect directory modes. See the parameter directory mode - for details.

          See also the force - create mode parameter for forcing particular mode bits to be set on created files. See also the directory modedirectory mode parameter for masking mode bits on created directories. See also the inherit permissionsinherit permissions parameter.

          security masksecurity mask.

          This is a synonym for create mask create mask.

          Note that the parameter debug timestamp debug timestamp must be on for this to have an effect.

          Note that the parameter debug timestamp debug timestamp must be on for this to have an effect.

          Samba debug log messages are timestamped by default. If you are running at a high debug leveldebug level these timestamps can be distracting. This boolean parameter allows timestamping @@ -6591,11 +5768,9 @@ NAME="DEBUGUID" >

          Note that the parameter debug timestamp debug timestamp must be on for this to have an effect.

          Synonym for log level log level.

          A synonym for default service default service.

          NAME MANGLING. Also note the short preserve caseshort preserve case parameter.

          Typically the default service would be a guest okguest ok, read-onlyread-only service.

          Also note that the apparent service name will be changed to equal that of the requested service, this is very useful as it - allows you to use macros like %S%S to make a wildcard service.

          smbd(8) when a group is requested to be deleted. - It will expand any %g%g to the group name passed. This script is only useful for installations using the Windows NT domain administration tools.

          For a Samba host this means that the printer must be - physically deleted from underlying printing system. The deleteprinter command deleteprinter command defines a script to be run which will perform the necessary operations for removing the printer from the print system and from .

          The The deleteprinter commanddeleteprinter command is - automatically called with only one parameter: "printer name" "printer name".

          Once the Once the deleteprinter commanddeleteprinter command has been executed,

          See also addprinter command addprinter command, printingprinting, show add - printer wizard

          Samba 2.2.0 introduced the ability to dynamically add and delete shares via the Windows NT 4.0 Server Manager. The - delete share commanddelete share command is used to define an external program or script which will remove an existing service definition from smb.conf. In order to successfully - execute the delete share commanddelete share command, smbdsmbd will automatically invoke the - delete share commanddelete share command with two parameters.

          • configFileconfigFile - the location of the global

          • shareNameshareName - the name of the existing service.

            This parameter is only used to remove file shares. To delete printer shares, see the deleteprinter - command.

            See also add share - command, change - share command.

            Default: delete user script = <empty string> +>delete user script = <empty string>

            AS ROOT. - Any %g%g will be replaced with the group name and - any %u%u will be replaced with the user name.

            veto filesveto files - option). If this option is set to nono (the default) then if a vetoed directory contains any non-vetoed files or directories then the directory delete will fail. This is usually what you want.

            If this option is set to If this option is set to yesyes, then Samba will attempt to recursively delete any files and directories within the vetoed directory. This can be useful for integration with file @@ -7184,12 +6309,10 @@ CLASS="COMMAND" >

            See also the veto - files parameter.

            Synonym for hosts - deny.

            >dfree command (G)

            The The dfree commanddfree command setting should only be used on systems where a problem occurs with the internal disk space calculations. This has been known to happen with Ultrix, @@ -7306,12 +6425,10 @@ NAME="DIRECTORY" >

            Synonym for path - .

            Following this Samba will bit-wise 'OR' the UNIX mode created from this parameter with the value of the force directory mode - parameter. This parameter is set to 000 by default (i.e. no extra mode bits are added).

            directory security maskdirectory security mask.

            See the force - directory mode parameter to cause particular mode bits to always be set on created directories.

            See also the create mode - parameter for masking mode bits on created files, and the directory - security mask parameter.

            Also refer to the inherit permissions inherit permissions parameter.

            Synonym for directory mask directory mask

            0777
            0777.

            See also the force directory security mode force directory security mode, security masksecurity mask, force security mode - parameters.

            See also the parameter wins support wins support.

            >domain logons (G)

            If set to If set to yesyes, the Samba server will serve Windows 95/98 Domain logons for the workgroupworkgroup it is in. Samba 2.2 has limited capability to act as a domain controller for Windows @@ -7698,18 +6791,14 @@ CLASS="COMMAND" claim a special domain specific NetBIOS name that identifies it as a domain master browser for its given workgroupworkgroup. Local master browsers - in the same workgroupworkgroup on broadcast-isolated subnets will give this

            Note that Windows NT Primary Domain Controllers expect to be - able to claim this workgroupworkgroup specific special NetBIOS name that identifies them as domain master browsers for - that workgroupworkgroup by default (i.e. there is no way to prevent a Windows NT PDC from attempting to do this). This means that if this parameter is set and nmbd claims - the special name for a workgroupworkgroup before a Windows NT PDC is able to do so then cross subnet browsing will behave strangely and may fail.

            domain logons = yes , then the default behavior is to enable the , then the default behavior is to enable the domain - master parameter. If parameter. If domain logonsdomain logons is - not enabled (the default setting), then neither will domain - master be enabled by default.

            Default: smbd is acting - on behalf of is not the file owner. Setting this option to yes yes allows DOS semantics and "Samba Printer Port""Samba Printer Port". Under Windows NT/2000, all printers must have a valid port name. If you wish to have a list of ports displayed (smbd does not use a port name for anything) other than - the default "Samba Printer Port""Samba Printer Port", you - can define enumports commandenumports command to point to a program which should generate a list of ports, one per line, to standard output. This listing will then be used in response @@ -8082,11 +7157,9 @@ NAME="EXEC" >

            This is a synonym for preexecpreexec.

            It is generally much better to use the real oplocksoplocks support rather than this parameter.

            (8) from following symbolic links in a particular share. Setting this - parameter to nono prevents any file or directory that is a symbolic link from being followed (the user will get an error). This option is very useful to stop users from adding a @@ -8240,33 +7311,27 @@ CLASS="EMPHASIS" the mode bits of a file that is being created or having its permissions changed. The default for this parameter is (in octal) 000. The modes in this parameter are bitwise 'OR'ed onto the file - mode after the mask set in the create maskcreate mask parameter is applied.

            See also the parameter create - mask for details on masking mode bits on files.

            See also the inherit - permissions parameter.

            directory maskdirectory mask is applied.

            See also the parameter directory mask directory mask for details on masking mode bits on created directories.

            See also the inherit permissions inherit permissions parameter.

            See also the directory security mask directory security mask, security masksecurity mask, force security mode - parameters.

            If the force user - parameter is also set the group specified in - force groupforce group will override the primary group - set in force userforce user.

            See also force - user.

            See also the force directory security mode force directory security mode, directory security - mask, security mask security mask parameters.

            See also force group -

            smbd(8) when a client queries the filesystem type - for a share. The default type is NTFSNTFS for compatibility with Windows NT but this can be changed to other - strings such as Samba or Samba or FAT - if required.

            Default: wide linkswide links parameter is set to parameter is set to nono.

            Default:

            Synonym for force - group.

            This is a username which will be used for access to services which are specified as guest ok guest ok (see below). Whatever privileges this user has will be available to any client connecting to the guest service. @@ -8764,40 +7795,34 @@ NAME="GUESTOK" >>guest ok (S)

            If this parameter is If this parameter is yesyes for a service, then no password is required to connect to the service. Privileges will be those of the guest account guest account.

            This paramater nullifies the benifits of setting restrict - anonymous = 2

            See the section below on security security for more information about this option.

            >guest only (S)

            If this parameter is If this parameter is yesyes for a service, then only guest connections to the service are permitted. This parameter will have no effect if guest okguest ok is not set for the service.

            See the section below on security security for more information about this option.

            See also hide - dot files, veto files veto files and case sensitivecase sensitive.

            Ifnis homedir - is is yesyes, and smbd(8) is also acting - as a Win95/98 logon serverlogon server then this parameter specifies the NIS (or YP) map from which the server for the user's home directory should be extracted. At present, only the Sun @@ -9057,27 +8068,23 @@ CLASS="EMPHASIS" >

            See also nis homedirnis homedir , domain logonsdomain logons .

            Default: homedir map = <empty string>homedir map = <empty string>

            Example: --with-msdfs option. If set to option. If set to yesyes, Samba will act as a Dfs server, and allow Dfs-aware clients to browse Dfs trees hosted on the server.

            See also the msdfs root msdfs root share level parameter. For more information on setting up a Dfs tree on Samba, @@ -9161,12 +8166,10 @@ NAME="HOSTSALLOW" >>hosts allow (S)

            A synonym for this parameter is A synonym for this parameter is allow - hosts.

            This parameter is a comma, space, or tab delimited @@ -9193,11 +8196,9 @@ CLASS="FILENAME" >Note that the localhost address 127.0.0.1 will always be allowed access unless specifically denied by a hosts denyhosts deny option.

            >hosts deny (S)

            The opposite of The opposite of hosts allowhosts allow - hosts listed here are permitted access to services unless the specific services have their own lists to override - this one. Where the lists conflict, the allowallow list takes precedence.

            This is not be confused with hosts allowhosts allow which is about hosts - access to services and is more useful for guest services. hosts equiv hosts equiv may be useful for NT clients which will not supply passwords to Samba.

            NOTE : The use of The use of hosts equiv - can be a major security hole. This is because you are trusting the PC to supply the correct username. It is very easy to get a PC to supply a false username. I recommend that the - hosts equivhosts equiv option be only used if you really know what you are doing, or perhaps on a home network where you trust your spouse and kids. And only if you

            It takes the standard substitutions, except It takes the standard substitutions, except %u - , , %P and %P and %S%S.

            The permissions on new files and directories are normally governed by create mask create mask, directory maskdirectory mask, force create modeforce create mode and force - directory mode but the boolean inherit permissions parameter overrides this.

            map archivemap archive , map hiddenmap hidden and map systemmap system as usual.

            See also create mask - , directory mask directory mask, force create modeforce create mode and force directory modeforce directory mode .

            See also bind - interfaces only.

            A name starting with '+' is interpreted only by looking in the UNIX group database. A name starting with - '&' is interpreted only by looking in the NIS netgroup database + '&' is interpreted only by looking in the NIS netgroup database (this requires NIS to be working on your system). The characters - '+' and '&' may be used at the start of the name in either order - so the value +&group+&group means check the UNIX group database, followed by the NIS netgroup database, and - the value &+group&+group means check the NIS netgroup database, followed by the UNIX group database (the same as the '@' prefix).

            The current servicename is substituted for The current servicename is substituted for %S%S. This is useful in the [homes] section.

            See also valid users - .

            The value of the parameter (an integer) represents - the number of seconds between keepalivekeepalive packets. If this parameter is zero, no keepalive packets will be sent. Keepalive packets, if sent, allow the server to tell whether @@ -9765,11 +8714,9 @@ CLASS="PARAMETER" >Keepalives should, in general, not be needed if the socket being used has the SO_KEEPALIVE attribute set on it (see socket optionssocket options). Basically you should only use this option if you strike difficulties.

            For UNIXes that support kernel based oplocksoplocks (currently only IRIX and the Linux 2.4 kernel), this parameter allows the use of them to be turned on or off.

            Kernel oplocks support allows Samba Kernel oplocks support allows Samba oplocks - to be broken whenever a local UNIX process or NFS operation accesses a file that cool feature :-).

            This parameter defaults to This parameter defaults to onon, but is translated to a no-op on systems that no not have the necessary kernel support. You should never need to touch this parameter.

            See also the oplocksoplocks and level2 oplocks - parameters.

            >ldap admin dn (G)

            The The ldap admin dnldap admin dn defines the Distinguished Name (DN) name used by Samba to contact the ldap server when retreiving - user account information. The ldap - admin dn is used in conjunction with the admin dn password stored in the

            This parameter specifies the RFC 2254 compliant LDAP search filter. - The default is to match the login name with the uiduid - attribute for all entries matching the sambaAccountsambaAccount objectclass. Note that this filter should only return one entry.

            Default : ldap filter = (&(uid=%u)(objectclass=sambaAccount))ldap filter = (&(uid=%u)(objectclass=sambaAccount))

            This option is used to control the tcp port number used to contact the ldap serverldap server. The default is to use the stand LDAPS port 636. @@ -10070,11 +9003,9 @@ CLASS="FILENAME" script.

            The The ldap sslldap ssl can be set to one of three values:

            • OffOff = Never use SSL when querying the directory.

            • Start_tlsStart_tls = Use the LDAPv3 StartTLS extended operation (RFC2830) for communicating with the directory server.

            • OnOn = Use SSL on the ldaps port when contacting the - ldap serverldap server. Only available when the backwards-compatiblity option is specified to configure. See passdb backendpassdb backend

            • The The ldap passwd syncldap passwd sync can be set to one of three values:

              • YesYes = Try to update the LDAP, NT and LM passwords and update the pwdLastSet time.

              • NoNo = Update NT and LM passwords and update the pwdLastSet time.

              • OnlyOnly = Only update the LDAP password and let the LDAP server do the rest.

              Currently, if kernel - oplocks are supported then level2 oplocks are - not granted (even if this parameter is set to yesyes). Note also, the oplocksoplocks parameter must be set to parameter must be set to yesyes on this share in order for this parameter to have any effect.

              See also the oplocksoplocks and kernel oplockskernel oplocks parameters.

              will produce Lanman announce broadcasts that are needed by OS/2 clients in order for them to see the Samba server in their browse list. This parameter can have three - values, yes, yes, nono, or - auto. The default is auto. The default is autoauto. - If set to nono Samba will never produce these - broadcasts. If set to yesyes Samba will produce Lanman announce broadcasts at a frequency set by the parameter - lm interval. If set to lm interval. If set to autoauto Samba will not send Lanman announce broadcasts by default but will listen for them. If it hears such a broadcast on the wire it will then start sending them at a frequency set by the parameter - lm intervallm interval.

              See also lm interval - .

              If Samba is set to produce Lanman announce broadcasts needed by OS/2 clients (see the lm announcelm announce parameter) then this parameter defines the frequency in seconds with which they will be made. If this is set to zero then no Lanman announcements will be - made despite the setting of the lm announcelm announce parameter.

              See also lm - announce.

              nmbd(8) to try and become a local master browser - on a subnet. If set to nono then nmbd will not attempt to become a local master browser on a subnet and will also lose in all browsing elections. By - default this value is set to yes. Setting this value to yes. Setting this value to yesyes doesn't mean that Samba will in elections for local master browser.

              Setting this value to Setting this value to nono will cause nmbd

              Synonym for lock directory lock directory.

              max connectionsmax connections option.

              lock spin - count for more details.

              may not need locking (such as - CDROM drives), although setting this parameter of nono is not really recommended even in this case.

              This parameter specifies the local path to which the home directory will be connected (see logon homelogon home) and is only used by NT Workstations.

              C:\> C:\> NET USE H: /HOMENET USE H: /HOME

              Note that in prior versions of Samba, the logon pathlogon path was returned rather than - logon homelogon home. This broke net use @@ -10902,11 +9781,9 @@ NAME="LOGONPATH" nothing to do with Win 9X roaming profiles. To find out how to handle roaming profiles for Win 9X system, see the logon homelogon home parameter.

              The script must be a relative path to the [netlogon] service. If the [netlogon] service specifies a pathpath of

              If a If a %p%p is given then the printer name - is put in its place. A %j%j is replaced with - the job number (an integer). On HPUX (see printing=hpux - ), if the ), if the -p%p-p%p option is added to the lpq command, the job will show up with the correct status, i.e. if the job priority is lower than the set fence priority it will @@ -11097,25 +9964,21 @@ CLASS="PARAMETER" >

              See also the printing - parameter.

              Default: Currently no default value is given to - this string, unless the value of the printingprinting - parameter is SYSVSYSV, in which case the default is :

              lp -i %p-%j -H hold

              or if the value of the or if the value of the printingprinting parameter - is SOFTQSOFTQ, then the default is:

              See also the printing - parameter.

              Currently nine styles of printer status information are supported; BSD, AIX, LPRNG, PLP, SYSV, HPUX, QNX, CUPS, and SOFTQ. This covers most UNIX systems. You control which type is expected - using the printing =printing = option.

              Some clients (notably Windows for Workgroups) may not @@ -11244,43 +10101,35 @@ CLASS="PARAMETER" server reports on the first printer service connected to by the client. This only happens if the connection number sent is invalid.

              If a If a %p%p is given then the printer name is put in its place. Otherwise it is placed at the end of the command.

              Note that it is good practice to include the absolute path - in the lpq command as the lpq command as the $PATH - may not be available to the server. When compiled with - the CUPS libraries, no lpq commandlpq command is needed because smbd will make a library call to obtain the print queue listing.

              See also the printing - parameter.

              depends on the setting of depends on the setting of printing printing

              lppause command - parameter.

              If a If a %p%p is given then the printer name - is put in its place. A %j%j is replaced with the job number (an integer).

              Note that it is good practice to include the absolute path - in the lpresume commandlpresume command as the PATH may not be available to the server.

              See also the printing - parameter.

              Default: Currently no default value is given - to this string, unless the value of the printingprinting - parameter is SYSVSYSV, in which case the default is :

              lp -i %p-%j -H resume

              or if the value of the or if the value of the printingprinting parameter - is SOFTQSOFTQ, then the default is:

              This command should be a program or script which takes a printer name and job number, and deletes the print job.

              If a If a %p%p is given then the printer name - is put in its place. A %j%j is replaced with the job number (an integer).

              Note that it is good practice to include the absolute - path in the lprm commandlprm command as the PATH may not be available to the server.

              See also the printing - parameter.

              depends on the setting of depends on the setting of printing -

              magic scriptmagic script parameter below).

              Warning: If two clients use the same Warning: If two clients use the same magic script - in the same directory the output file content is undefined.

              Default: magic output = <magic script name>.out +>magic output = <magic script name>.out

              If the script generates output, output will be sent to the file specified by the magic output magic output parameter (see above).

              Note that the character to use may be specified using the mangling charmangling char option, if you don't like '~'.

              Note that this requires the Note that this requires the create maskcreate mask parameter to be set such that owner execute bit is not masked out (i.e. it must include 100). See the parameter create maskcreate mask for details.

              This controls whether DOS style hidden files should be mapped to the UNIX world execute bit.

              Note that this requires the Note that this requires the create maskcreate mask to be set such that the world execute bit is not masked out (i.e. it must include 001). See the parameter create maskcreate mask for details.

              This controls whether DOS style system files should be mapped to the UNIX group execute bit.

              Note that this requires the Note that this requires the create maskcreate mask to be set such that the group execute bit is not masked out (i.e. it must include 010). See the parameter create maskcreate mask for details.

              This parameter is only useful in security modes other than modes other than security = sharesecurity = share - - i.e. user, user, serverserver, - and domaindomain.

              This parameter can take three different values, which tell @@ -12040,36 +10841,34 @@ CLASS="REFENTRYTITLE" >

              Note that this parameter is needed to set up "Guest" - share services when using securitysecurity modes other than share. This is because in these modes the name of the resource being requested is

              For people familiar with the older Samba releases, this - parameter maps to the old compile-time setting of the GUEST_SESSSETUP GUEST_SESSSETUP value in local.h.

              Default:

              This option allows the number of simultaneous - connections to a service to be limited. If max connections - is greater than 0 then connections will be refused if this number of connections to the service are already open. A value of zero mean an unlimited number of connections may be made.

              Record lock files are used to implement this feature. The lock files will be stored in the directory specified by the lock directorylock directory option.

              max - disk size
              .

              This option is primarily useful to work around bugs in some pieces of software that can't handle very large disks, particularly disks over 1GB in size.

              A A max disk sizemax disk size of 0 means no limit.

              Default: will remote "Out of Space" to the client. See all total - print jobs.

              • CORECORE: Earliest version. No concept of user names.

              • COREPLUSCOREPLUS: Slight improvements on CORE for efficiency.

              • LANMAN1LANMAN1: First

              • LANMAN2LANMAN2: Updates to Lanman1 protocol.

              • NT1NT1: Current up to date version of the protocol. Used by Windows NT. Known as CIFS.

              • See also min - protocol

                (8) when acting as a WINS server ( wins support = yeswins support = yes) what the maximum 'time to live' of NetBIOS names that

                See also the min - wins ttl parameter.

                message command = csh -c 'xedit %s;rm %s' &message command = csh -c 'xedit %s;rm %s' &

                . That's why I - have the '&' on the end. If it doesn't return immediately then + have the '&' on the end. If it doesn't return immediately then your PCs may freeze when sending messages (they should recover after 30 seconds, hopefully).

                All messages are delivered as the global guest user. - The command takes the standard substitutions, although %u won't work ( %u won't work (%U%U may be better in this case).

                • %s%s = the filename containing the message.

                • %t%t = the destination that the message was sent to (probably the server name).

                • %f%f = who the message is from.

                • message command = /bin/mail -s 'message from %f on - %m' root < %s; rm %s

                  If you don't have a message command then the message @@ -12673,7 +11442,7 @@ CLASS="EMPHASIS" >Example: message command = csh -c 'xedit %s; - rm %s' &

              Synonym for min password lengthmin password length.

              See also unix - password sync, passwd programpasswd program and passwd chat debugpasswd chat debug .

              See also the printing - parameter.

              max protocolmax protocol parameter for a list of valid protocol names and a brief description @@ -12802,12 +11559,10 @@ CLASS="FILENAME" >If you are viewing this parameter as a security measure, you should also refer to the lanman - auth parameter. Otherwise, you should never need to change this parameter.

              when acting as a WINS server ( wins support = yes wins support = yes) what the minimum 'time to live' of NetBIOS names that Only Dfs roots can act as proxy shares. Take a look at the msdfs rootmsdfs root and host msdfshost msdfs options to find out how to set up a Dfs root share.

              --with-msdfs
              option. If set to option. If set to yesyes, Samba treats the share as a Dfs root and allows clients to browse the distributed file system tree rooted at the share directory. @@ -12930,12 +11679,10 @@ TARGET="_top" >

              See also host msdfs -

              • lmhostslmhosts : Lookup an IP address in the Samba lmhosts file. If the line in lmhosts has no name type attached to the NetBIOS name (see the

              • hosthost : Do a standard host name to IP address resolution, using the system

              • winswins : Query a name with the IP address listed in the wins server wins server parameter. If no WINS server has been specified this method will be ignored.

              • bcastbcast : Do a broadcast on each of the known local interfaces listed in the interfacesinterfaces parameter. This is the least reliable of the name resolution @@ -13092,12 +11835,10 @@ TARGET="_top" >

                See also netbios - name.

                See also netbios - aliases.

                homedir maphomedir map and return the server listed there.

                Default: non unix account range = <empty string> +>non unix account range = <empty string>

                smbd(8) will allow Windows NT - clients to connect to the NT SMB specific IPC$IPC$ pipes. This is a developer debugging option and can be left alone.

                will negotiate NT specific status support with Windows NT/2k/XP clients. This is a developer debugging option and should be left alone. - If this option is set to nono then Samba offers exactly the same DOS error codes that versions prior to Samba 2.2.3 reported.

                encrypt passwords = yesencrypt passwords = yes . The reason is that PAM modules cannot support the challenge/response @@ -13376,20 +12111,16 @@ NAME="ONLYUSER" >

                This is a boolean option that controls whether - connections with usernames not in the useruser list will be allowed. By default this option is disabled so that a client can supply a username to be used by the server. Enabling this parameter will force the server to only use the login - names from the useruser list and is only really useful in user = %S which means your which means your useruser list will be just the service name, which for home directories is the name of the user.

                See also the useruser parameter.

                A synonym for guest only guest only.

                Oplocks may be selectively turned off on certain files with a share. See the veto oplock files veto oplock files parameter. On some systems oplocks are recognized by the underlying operating system. This allows data synchronization between all access to oplocked files, whether it be via Samba or NFS or a local UNIX process. See the - kernel oplockskernel oplocks parameter for details.

                See also the kernel - oplocks and level2 oplocks level2 oplocks parameters.

                nmbd(8) - has a chance of becoming a local master browser for the WORKGROUP WORKGROUP in the local broadcast area.

                <nt driver name> = <os2 driver - name>.<device name>

                <nt driver name> = <os2 driver + name>.<device name>

                For example, a valid entry using the HP LaserJet 5 printer driver would appear as

                Default: os2 driver map = <empty string> +>os2 driver map = <empty string>

                passwd programpasswd program. It should be possible to enable this without changing your passwd chatpasswd chat parameter for most setups. @@ -13777,7 +12488,7 @@ CLASS="REFENTRYTITLE" >

                Default: panic action = <empty string>panic action = <empty string>

                Example:

                See also non unix account rangenon unix account range

              • private dirprivate dir directory.

                private dirprivate dir directory.

                See also non unix account rangenon unix account range

                See also non unix account - range

                ldap sslldap ssl) or by - specifying ldaps://ldaps:// in the URL argument.

                uses to determine what to send to the passwd programpasswd program and what to expect back. If the expected output is not @@ -14066,16 +12761,14 @@ CLASS="PARAMETER" >

                Note that this parameter only is only used if the unix - password sync parameter is set to parameter is set to yesyes. This sequence is then called

                The string can contain the macro The string can contain the macro %n%n which is substituted for the new password. The chat sequence can also contain the standard - macros \\n, \\n, \\r, \\r, \\t and \\t and \\s\\s to give line-feed, carriage-return, tab and space. The chat sequence string can also contain a '*' which matches any sequence of characters. @@ -14125,16 +12816,14 @@ CLASS="CONSTANT" >

                If the pam - password change parameter is set to parameter is set to yesyes, the chat pairs may be matched in any order, and success is determined by the PAM result, not any particular output. The \n macro is ignored for PAM conversions. @@ -14142,36 +12831,28 @@ CLASS="CONSTANT" >

                See also unix password - sync, passwd program passwd program , passwd chat debugpasswd chat debug and pam password changepam password change.

                log with a debug leveldebug level of 100. This is a dangerous option as it will allow plaintext passwords @@ -14225,55 +12904,43 @@ CLASS="PARAMETER" CLASS="COMMAND" >smbd log. It is available to help - Samba admins debug their passwd chatpasswd chat scripts - when calling the passwd programpasswd program and should be turned off after this has been done. This option has no effect if the pam password changepam password change paramter is set. This parameter is off by default.

                See also passwd chatpasswd chat , pam password changepam password change , passwd programpasswd program .

                The name of a program that can be used to set - UNIX user passwords. Any occurrences of %u%u will be replaced with the user name. The user name is checked for existence before calling the password changing program.

                Note
                that if the that if the unix - password sync parameter is set to parameter is set to yes - then this program is called will fail to change the SMB password also (this is by design).

                If the If the unix password syncunix password sync parameter is set this parameter ALL programs called, and must be examined - for security implications. Note that by default unix - password sync is set to is set to nono.

                See also unix - password sync.

                This parameter defines the maximum number of characters that may be upper case in passwords.

                For example, say the password given was "FRED". If For example, say the password given was "FRED". If password level password level is set to 1, the following combinations would be tried if "FRED" failed:

                "Fred", "fred", "fRed", "frEd","freD"

                If If password levelpassword level was set to 2, the following combinations would also be tried:

                The name of the password server is looked up using the parameter name - resolve order and so may resolved by any method and order described in that parameter.

                The name of the password server takes the standard - substitutions, but probably the only useful one is %m - , which means the Samba server will use the incoming client as the password server. If you use this then you better trust your clients, and you had better restrict them with hosts allow!

                If the If the securitysecurity parameter is set to - domaindomain, then the list of machines in this option must be a list of Primary or Backup Domain controllers for the Domain or the character '*', as the Samba server is effectively @@ -14553,11 +13200,9 @@ CLASS="CONSTANT" CLASS="COMMAND" > security = domain is that if you list several hosts in the - password serverpassword server option then smbd @@ -14565,17 +13210,15 @@ CLASS="COMMAND" > will try each in turn till it finds one that responds. This is useful in case your primary server goes down.

                If the If the password serverpassword server option is set to the character '*', then Samba will attempt to auto-locate the Primary or Backup Domain controllers to authenticate against by - doing a query for the name WORKGROUP<1C>WORKGROUP<1C> and then contacting each server returned in the list of IP addresses from the name resolution source.

                If the If the securitysecurity parameter is - set to serverserver, then there are different restrictions that

              • You may list several password servers in - the password serverpassword server parameter, however if an

                See also the security - parameter.

                Default: password server = <empty string>password server = <empty string>

                Any occurrences of Any occurrences of %u%u in the path will be replaced with the UNIX username that the client is using - on this connection. Any occurrences of %m%m will be replaced by the NetBIOS name of the machine they are connecting from. These replacements are very useful for setting @@ -14705,11 +13338,9 @@ CLASS="PARAMETER" >

                Note that this path will be based on root dirroot dir if one was specified.

                See also preexecpreexec .

                Example: postexec = echo \"%u disconnected from %S - from %m (%I)\" >> /tmp/log

              • >postscript (S)

                This parameter forces a printer to interpret - the print files as PostScript. This is done by adding a %! - to the start of print output.

                This is most useful when you have lots of PCs that persist - in putting a control-D at the start of print jobs, which then - confuses your printer.

                Default: postscript = no

                preexec = csh -c 'echo \"Welcome to %S!\" | - /usr/local/samba/bin/smbclient -M %m -I %I' &

                Of course, this could get annoying after a while :-)

                See also preexec close - and postexec - .

                Example: preexec = echo \"%u connected to %S from %m - (%I)\" >> /tmp/log

                This boolean option controls whether a non-zero return code from preexec - should close the service being connected to.

                is a preferred master browser for its workgroup.

                If this is set to If this is set to yesyes, on startup, nmbd domain master domain master = yes, so that

                See also os levelos level .

                Synonym for preferred master preferred master for people who cannot spell :-).

                Note that if you just want all printers in your printcap file loaded then the load printersload printers option is easier.

                default case - .

                MUST contain at least - one occurrence of %s or %s or %f - - the - the %p%p is optional. At the time - a job is submitted, if no printer name is supplied the %p - will be silently removed from the printer command.

                If specified in the [global] section, the print command given @@ -15146,17 +13728,15 @@ CLASS="PARAMETER" be created but not processed and (most importantly) not removed.

                Note that printing may fail on some UNIXes from the - nobodynobody account. If this happens then create an alternative guest account that can print and set the guest accountguest account in the [global] section.

                print command = echo Printing %s >> +>print command = echo Printing %s >> /tmp/print.log; lpr -P %p %s; rm %s

                printingprinting parameter.

                Synonym for printableprintable.

                >printable (S)

                If this parameter is If this parameter is yesyes, then clients may open, write to and submit spool files on the directory specified for the service.

                read only - parameter controls only non-printing access to the resource.

                Synonym for printcap name printcap name.

                to automatically obtain lists of available printers. This is the default for systems that define SYSV at configure time in - Samba (this includes most System V based systems). If printcap name printcap name is set to lpstat

                Default: printer admin = <empty string>printer admin = <empty string>

                >printer driver (S)

                Note :This is a deprecated - parameter and will be removed in the next major release - following version 2.2. Please see the instructions in - the Samba 2.2. Printing - HOWTO for more information - on the new method of loading printer drivers onto a Samba server. -

                This option allows you to control the string - that clients receive when they ask the server for the printer driver - associated with a printer. If you are using Windows95 or Windows NT - then you can use this to automate the setup of printers on your - system.

                You need to set this parameter to the exact string (case - sensitive) that describes the appropriate printer driver for your - system. If you don't know the exact string to use then you should - first try with no printer driver option set and the client will - give you a list of printer drivers. The appropriate strings are - shown in a scroll box after you have chosen the printer manufacturer.

                See also printer - driver file.

                Example: printer driver = HP LaserJet 4L

                >printer driver file (G)

                Note :This is a deprecated - parameter and will be removed in the next major release - following version 2.2. Please see the instructions in - the Samba 2.2. Printing - HOWTO for more information - on the new method of loading printer drivers onto a Samba server. -

                This parameter tells Samba where the printer driver - definition file, used when serving drivers to Windows 95 clients, is - to be found. If this is not set, the default is :

                SAMBA_INSTALL_DIRECTORY - /lib/printers.def

                This file is created from Windows 95 msprint.inf - files found on the Windows 95 client system. For more - details on setting up serving of printer drivers to Windows 95 - clients, see the outdated documentation file in the docs/ - directory, PRINTER_DRIVER.txt.

                See also printer driver location.

                Default: None (set in compile).

                Example: printer driver file = - /usr/local/samba/printers/drivers.def

                >printer driver location (S)

                Note :This is a deprecated - parameter and will be removed in the next major release - following version 2.2. Please see the instructions in - the Samba 2.2. Printing - HOWTO for more information - on the new method of loading printer drivers onto a Samba server. -

                This parameter tells clients of a particular printer - share where to find the printer driver files for the automatic - installation of drivers for Windows 95 machines. If Samba is set up - to serve printer drivers to Windows 95 machines, this should be set to

                \\MACHINE\PRINTER$

                Where MACHINE is the NetBIOS name of your Samba server, - and PRINTER$ is a share you set up for serving printer driver - files. For more details on setting this up see the outdated documentation - file in the docs/ directory, PRINTER_DRIVER.txt.

                See also printer driver file.

                Default: none

                Example: printer driver location = \\MACHINE\PRINTER$ -

                >printer name (S)
                none (but may be none (but may be lplp on many systems)

                Synonym for printer name printer name.

                This parameters controls how printer status information is interpreted on your system. It also affects the - default values for the print commandprint command, - lpq command, lpq command, lppause command - , , lpresume commandlpresume command, and - lprm commandlprm command if specified in the [global] section.

                Currently nine printing styles are supported. They are - BSD, BSD, AIXAIX, - LPRNG, LPRNG, PLPPLP, - SYSV, SYSV, HPUXHPUX, - QNX, QNX, SOFTQSOFTQ, - and CUPSCUPS.

                To see what the defaults are for the other print @@ -15810,11 +14160,9 @@ NAME="PROTOCOL" >

                Synonym for max protocolmax protocol.

                Synonym for guest - ok.

                If a If a %p%p is given then the printer name is put in its place. Otherwise it is placed at the end of the command.

                depends on the setting of depends on the setting of printing -

                queuepause command queuepause command).

                If a If a %p%p is given then the printer name is put in its place. Otherwise it is placed at the end of the command.

                depends on the setting of printingprintingsmbd(8) will support the "Read Block Multiplex" SMB. This is now rarely used and defaults to - nono. You should never need to set this parameter.

                read onlyread only option is set to. The list can include group names using the syntax described in the invalid users invalid users parameter.

                See also the write list write list parameter and the invalid usersinvalid users parameter.

                Default: read list = <empty string>read list = <empty string>

                Example:

                An inverted synonym is writeablewriteable.

                If this parameter is If this parameter is yesyes, then users of a service may not create or modify files in the service's directory.

                In general this parameter should be viewed as a system tuning tool and left severely alone. See also write rawwrite raw.

                >read size (G)

              The option The option read sizeread size affects the overlap of disk reads/writes with network reads/writes. If the amount of data being transferred in several of the SMB @@ -16210,11 +14532,9 @@ CLASS="COMMAND" If you leave out the workgroup name then the one given in the workgroupworkgroup parameter is used instead.

              Default: remote announce = <empty string> +>remote announce = <empty string>

              Default: remote browse sync = <empty string> +>remote browse sync = <empty string>

              This is a integer parameter, and mirrors as much as possible the functinality the - RestrictAnonymousRestrictAnonymous registry key does on NT/Win2k.

              Synonym for root directory"root directory".

              Synonym for root directory"root directory".

              wide linkswide links parameter).

              Adding a Adding a root directoryroot directory entry other than "/" adds an extra level of security, but at a price. It absolutely ensures that no access is given to files not in the - sub-tree specified in the root directoryroot directory option, some files needed for complete operation of the server. To maintain full operability of the server you will need to mirror some system files - into the root directoryroot directory tree. In particular you will need to mirror >root postexec (S)

            This is the same as the This is the same as the postexecpostexec parameter except that the command is run as root. This is useful for unmounting filesystems @@ -16436,17 +14742,15 @@ CLASS="PARAMETER" >

            See also postexec postexec.

            Default: root postexec = <empty string> +>root postexec = <empty string>

            >root preexec (S)

            This is the same as the This is the same as the preexecpreexec parameter except that the command is run as root. This is useful for mounting filesystems (such as CDROMs) when a @@ -16469,25 +14771,21 @@ CLASS="PARAMETER" >

            See also preexec preexec and preexec closepreexec close.

            Default: root preexec = <empty string> +>root preexec = <empty string>

            >root preexec close (S)

            This is the same as the This is the same as the preexec close - parameter except that the command is run as root.

            See also preexec preexec and preexec closepreexec close.

            , see the map to guestmap to guest parameter for details.

            where it is offers both user and share level security under different NetBIOS aliasesNetBIOS aliases.

            If the guest - only parameter is set, then all the other stages are missed and only the guest accountguest account username is checked.

            Is a username is sent with the share connection request, then this username (after mapping - see username mapusername map), is added as a potential username.

            Any users on the user user list are added as potential usernames.

          If the If the guest onlyguest only parameter is not set, then this list is then tried with the supplied password. The first user for whom the password matches will be used as the UNIX user.

          If the If the guest onlyguest only parameter is set, or no username can be determined then if the share is marked - as available to the guest accountguest account, then this guest user will be used, otherwise access is denied.

          username mapusername map parameter). Encrypted passwords (see the encrypted passwordsencrypted passwords parameter) can also be used in this security mode. Parameters such as useruser and guest onlyguest only if set are then applied and may change the UNIX user to use on this connection, but only after @@ -16880,20 +15146,16 @@ CLASS="EMPHASIS" guest shares don't work in user level security without allowing the server to automatically map unknown users into the guest accountguest account. See the map to guestmap to guest parameter for details on doing this.

          has been used to add this machine into a Windows NT Domain. It expects the encrypted passwordsencrypted passwords parameter to be set to parameter to be set to yesyes. In this mode Samba will try to validate the username/password by passing it to a Windows NT Primary or Backup Domain Controller, in exactly @@ -16985,20 +15245,16 @@ CLASS="EMPHASIS" guest shares don't work in user level security without allowing the server to automatically map unknown users into the guest accountguest account. See the map to guestmap to guest parameter for details on doing this.

          See also the password - server parameter and the encrypted passwordsencrypted passwords parameter.

          . It expects the encrypted passwordsencrypted passwords parameter to be set to - yesyes, unless the remote server does not support them. However note that if encrypted passwords have been negotiated then Samba cannot @@ -17130,20 +15380,16 @@ CLASS="EMPHASIS" guest shares don't work in user level security without allowing the server to automatically map unknown users into the guest accountguest account. See the map to guestmap to guest parameter for details on doing this.

          See also the password - server parameter and the encrypted passwordsencrypted passwords parameter.

          0777
          0777.

          See also the force directory security modeforce directory security mode, directory - security mask, force security modeforce security mode parameters.

          It also sets what will appear in browse lists next to the machine name.

          A A %v%v will be replaced with the Samba version number.

          A A %h%h will be replaced with the hostname.

          This enables or disables the honoring of - the share modesshare modes during a file open. These modes are used by clients to gain exclusive read or write access to a file.

          The share modes that are enabled by this option are - DENY_DOS, DENY_DOS, DENY_ALLDENY_ALL, - DENY_READ, DENY_READ, DENY_WRITEDENY_WRITE, - DENY_NONE and DENY_NONE and DENY_FCBDENY_FCB.

          default case - . This option can be use with printer adminprinter admin group), the OpenPrinterEx() call fails and the client makes another open call with a request for a lower privilege level. This should succeed, however the APW icon will not be displayed.

          Disabling the Disabling the show add printer wizardshow add printer wizard parameter will always cause the OpenPrinterEx() on the server to fail. Thus the APW icon will never be displayed.

          See also addprinter - command, deleteprinter commanddeleteprinter command, printer adminprinter admin

          %m %t %r %f parameters are expanded

          %m%m will be substituted with the shutdown message sent to the server.

          %t%t will be substituted with the number of seconds to wait before effectively starting the shutdown procedure.

          %r%r will be substituted with the switch

          %f%f will be substituted with the switch Shutdown does not return so we need to launch it in background.

          See also abort shutdown scriptabort shutdown script.

          This parameter determines the number of - entries in the stat cachestat cache. You should never need to change this parameter.

          This is a boolean that controls the handling of - disk space allocation in the server. When this is set to yesyes the server will change from UNIX behaviour of not committing real disk storage blocks when a file is extended to the Windows behaviour @@ -17947,15 +16153,15 @@ CLASS="CONSTANT" terminology this means that Samba will stop creating sparse files. This can be slow on some systems.

          When strict allocate is When strict allocate is nono the server does sparse disk block allocation when a file is extended.

          Setting this to Setting this to yesyes can help Samba return out of quota messages on systems that are restricting the disk quota of users.

          This is a boolean that controls the handling of - file locking in the server. When this is set to yesyes the server will check every read and write access for file locks, and deny access if locks exist. This can be slow on some systems.

          When strict locking is When strict locking is nono the server does file lock checks only when the client explicitly asks for them.

          nono (the default) means that

          See also the sync - always> parameter.

          This is a boolean parameter that controls whether writes will always be written to stable storage before - the write call returns. If this is nono then the server will be guided by the client's request in each write call (clients can set a bit indicating that a particular write should be synchronous). - If this is yesyes then every write will be followed by a fsync() call to ensure the data is written to disk. Note that - the strict syncstrict sync parameter must be set to - yesyes in order for this parameter to have any affect.

          See also the strict - sync parameter.

          This parameter maps how Samba debug messages are logged onto the system syslog logging levels. Samba debug - level zero maps onto syslog LOG_ERRLOG_ERR, debug - level one maps onto LOG_WARNINGLOG_WARNING, debug level - two maps onto LOG_NOTICELOG_NOTICE, debug level three - maps onto LOG_INFO. All higher levels are mapped to LOG_DEBUG LOG_DEBUG.

          This parameter sets the threshold for sending messages @@ -18176,18 +16376,14 @@ TARGET="_top" >winbindd(8) daemon uses this parameter to fill in the home directory for that user. - If the string %D%D is present it is substituted - with the user's Windows NT domain name. If the string %U - is present it is substituted with the user's Windows NT user name.

          Synonym for debug timestamp debug timestamp.

          max print jobsmax print jobs.

          This boolean parameter controls whether Samba attempts to synchronize the UNIX password with the SMB password when the encrypted SMB password in the smbpasswd file is changed. - If this is set to yes the program specified in the yes the program specified in the passwd - programparameter is called

          See also passwd - program, passwd chat passwd chat.

          nono.

          In order for this parameter to work correctly the encrypt passwordsencrypt passwords parameter must be set to parameter must be set to nono when - this parameter is set to yesyes.

          Note that even when this parameter is set a user @@ -18551,9 +16735,9 @@ NAME="USEMMAP" >This global parameter determines if the tdb internals of Samba can depend on mmap working correctly on the running system. Samba requires a coherent mmap/read-write system memory cache. Currently only HPUX does not have such a - coherent cache, and so this parameter is set to nono by default on HPUX. On all other systems this parameter should be left alone. This parameter is provided to help the Samba developers track down problems with @@ -18567,51 +16751,6 @@ CLASS="COMMAND" >

          >use rhosts (G)

          If this global parameter is yes, it specifies - that the UNIX user's .rhosts file in their home directory - will be read to find the names of hosts and users who will be allowed - access without specifying a password.

          NOTE: The use of use rhosts - can be a major security hole. This is because you are - trusting the PC to supply the correct username. It is very easy to - get a PC to supply a false username. I recommend that the use rhosts option be only used if you really know what - you are doing.

          Default: use rhosts = no

          >user (S)

          Synonym for username username.

          Synonym for username username.

          The The usernameusername line is needed only when the PC is unable to supply its own username. This is the case for the COREPLUS protocol or where your users have different WfWg usernames to UNIX usernames. In both these cases you may also be better using the \\server\share%user syntax instead.

          The The usernameusername line is not a great solution in many cases as it means Samba will try to validate the supplied password against each of the usernames in the - usernameusername line in turn. This is slow and a bad idea for lots of users in case of duplicate passwords. You may get timeouts or security breaches using this parameter @@ -18695,12 +16824,10 @@ CLASS="PARAMETER" >To restrict a service to a particular set of users you can use the valid users - parameter.

          If any of the usernames begin with a '&' then the name +>If any of the usernames begin with a '&' then the name will be looked up only in the NIS netgroups database (if Samba is compiled with netgroup support) and will expand to a list of all users in the netgroup group of that name.

          Default: The guest account if a guest service, - else <empty string>.

          Examples:AstrangeUser - .

          Default:

          For example to map from the name For example to map from the name adminadmin - or administrator to the UNIX name administrator to the UNIX name root root you would use:

          root = admin administrator

          Or to map anyone in the UNIX group Or to map anyone in the UNIX group systemsystem - to the UNIX name syssys you would use:

          Note that the remapping is applied to all occurrences - of usernames. Thus if you connect to \\server\fred and fred is remapped to fred is remapped to marymary then you will actually be connecting to \\server\mary and will need to - supply a password suitable for marymary not - fredfred. The only exception to this is the username passed to the password server password server (if you have one). The password server will receive whatever username the client supplies without @@ -18931,9 +17056,9 @@ NAME="USESENDFILE" >>use sendfile (S)

          If this parameter is If this parameter is yesyes, and Samba was built with the --with-sendfile-support option, and the underlying operating system supports sendfile system call, then some SMB read calls (mainly ReadAndX @@ -18959,9 +17084,9 @@ NAME="UTMP" Samba has been configured and compiled with the option --with-utmp. If set to . If set to yesyes then Samba will attempt to add utmp or utmpx records (depending on the UNIX system) whenever a connection is made to a Samba server. Sites may use this to record the @@ -18975,11 +17100,9 @@ CLASS="CONSTANT" >

          See also the utmp directory utmp directory parameter.

          utmputmp parameter. By default this is not set, meaning the system will use whatever utmp file the @@ -19049,11 +17170,9 @@ CLASS="COMMAND" See also the utmputmp parameter. By default this is not set, meaning the system will use whatever utmp file the @@ -19084,40 +17203,32 @@ NAME="VALIDUSERS" >

          This is a list of users that should be allowed - to login to this service. Names starting with '@', '+' and '&' + to login to this service. Names starting with '@', '+' and '&' are interpreted using the same rules as described in the - invalid usersinvalid users parameter.

          If this is empty (the default) then any user can login. - If a username is in both this list and the invalid - users list then access is denied for that user.

          The current servicename is substituted for The current servicename is substituted for %S - . This is useful in the [homes] section.

          See also invalid users -

          include the unix directory separator '/'.

          Note that the Note that the case sensitivecase sensitive option is applicable in vetoing files.

          fail unless you also set - the delete veto filesdelete veto files parameter to - yesyes.

          Setting this parameter will affect the performance @@ -19196,20 +17301,16 @@ CLASS="PARAMETER" >

          See also hide files - and case sensitive case sensitive.

          This parameter is only valid when the oplocksoplocks parameter is turned on for a share. It allows the Samba administrator @@ -19255,11 +17354,9 @@ CLASS="PARAMETER" match a wildcarded list, similar to the wildcarded list used in the veto filesveto files parameter.

          vfs object vfs object.

          endpwent() group of system calls. If - the winbind enum userswinbind enum users parameter is - nono, calls to the getpwentendgrent() group of system calls. If - the winbind enum groupswinbind enum groups parameter is - nono, calls to the getgrent()

          Default: winbind gid = <empty string> +>winbind gid = <empty string>

          This parameter allows an admin to define the character - used when listing a username of the form of DOMAIN - \\useruser. This parameter is only applicable when using the

          Default: winbind uid = <empty string> +>winbind uid = <empty string>

          Default: winbind use default domain = <no> +>winbind use default domain = <no>

          nmbd(8) will respond to broadcast name queries on behalf of other hosts. You may need to set this - to yesyes for some older clients.

          Default: nmbd(8) process in Samba will act as a WINS server. You should - not set this to yesyes unless you have a multi-subnetted network and you wish a particular NEVER set this to set this to yesyes on more than one machine in your network.

          Synonym for writeable writeable for people who can't spell :-).

          read onlyread only option is set to. The list can include group names using the @@ -19968,18 +18051,16 @@ CLASS="PARAMETER" >

          See also the read list - option.

          Default: write list = <empty string> +>write list = <empty string>

          Inverted synonym for read only read only.

          Inverted synonym for read only read only.

          WARNINGS

          VERSION

          SEE ALSO

          AUTHOR

          smbcacls

          The owner of a file or directory can be changed - to the name given using the -C-C option. The name can be a sid in the form S-1-x-y-z or a name resolved against the server specified in the first argument.

          The group owner of a file or directory can - be changed to the name given using the -G-G option. The name can be a sid in the form S-1-x-y-z or a name resolved against the server specified n the first argument. @@ -198,10 +194,10 @@ NAME="AEN79" >

           
          -REVISION:<revision number>
          -OWNER:<sid or name>
          -GROUP:<sid or name>
          -ACL:<sid or name>:<type>/<flags>/<mask>

          The revision of the ACL specifies the internal Windows @@ -229,30 +225,30 @@ ACL:<sid or name>:<type>/<flags>/<mask>

          • #define SEC_ACE_FLAG_OBJECT_INHERIT 0x1#define SEC_ACE_FLAG_OBJECT_INHERIT 0x1

          • #define SEC_ACE_FLAG_CONTAINER_INHERIT 0x2#define SEC_ACE_FLAG_CONTAINER_INHERIT 0x2

          • #define SEC_ACE_FLAG_NO_PROPAGATE_INHERIT 0x4#define SEC_ACE_FLAG_NO_PROPAGATE_INHERIT 0x4

          • #define SEC_ACE_FLAG_INHERIT_ONLY 0x8#define SEC_ACE_FLAG_INHERIT_ONLY 0x8

          smbclientsmbclient {servicename} [password] [-b <buffer size>] [-d debuglevel] [-D Directory] [-U username] [-W workgroup] [-M <netbios name>] [-m maxprotocol] [-A authfile] [-N] [-l logfile] [-L <netbios name>] [-I destinationIP] [-E] [-c <command string>] [-i scope] [-O <socket options>] [-p port] [-R <name resolve order>] [-s <smb config file>] [-T<c|x>IXFqgbNan] [-k]

          {servicename} [password] [-b <buffer size>] [-d debuglevel] [-D Directory] [-U username] [-W workgroup] [-M <netbios name>] [-m maxprotocol] [-A authfile] [-N] [-l logfile] [-L <netbios name>] [-I destinationIP] [-E] [-c <command string>] [-i scope] [-O <socket options>] [-p port] [-R <name resolve order>] [-s <smb config file>] [-T<c|x>IXFqgbNan] [-k]

          //server/service where where server - is the NetBIOS name of the SMB/CIFS server - offering the desired service and serviceservice is the name of the service offered. Thus to connect to the service "printer" on the SMB/CIFS server "smbserver", @@ -122,11 +118,9 @@ CLASS="FILENAME"

          The server name is looked up according to either - the -R-R parameter to smbclient

          The password required to access the specified service on the specified server. If this parameter is - supplied, the -N-N option (suppress password prompt) is assumed.

          There is no default password. If no password is supplied on the command line (either by using this parameter or adding - a password to the -U-U option (see - below)) and the -N-N option is not specified, the client will prompt for a password, even if the desired service does not require one. (If no password is @@ -212,7 +200,7 @@ CLASS="REFENTRYTITLE" options.

          -R <name resolve order>
          -R <name resolve order>

          This option is used by the programs in the Samba @@ -227,9 +215,9 @@ CLASS="REFENTRYTITLE" >

          • lmhostslmhosts: Lookup an IP address in the Samba lmhosts file. If the line in lmhosts has no name type attached to the NetBIOS name (see @@ -244,9 +232,9 @@ CLASS="REFENTRYTITLE" >

          • hosthost: Do a standard host name to IP address resolution, using the system

          • winswins: Query a name with - the IP address listed in the wins serverwins server parameter. If no WINS server has been specified this method will be ignored.

          • bcastbcast: Do a broadcast on each of the known local interfaces listed in the - interfacesinterfaces parameter. This is the least reliable of the name resolution methods as it depends on the target host being on a locally @@ -307,12 +291,10 @@ CLASS="REFENTRYTITLE" (name resolve order) will be used.

            The default order is lmhosts, host, wins, bcast and without - this parameter or any entry in the name resolve order - parameter of the to the machine FRED.

            You may also find the You may also find the -U-U and - -I-I options useful, as they allow you to control the FROM and TO parts of the message.

            See the See the message commandmessage command parameter in the -d debuglevel

            debugleveldebuglevel is an integer from 0 to 10, or the letter 'A'.

            debugleveldebuglevel is set to the letter 'A', then -l logfilename

            If specified, If specified, logfilenamelogfilename specifies a base filename into which operational data from the running client will be logged.

            -I IP-address

            IP addressIP address is the address of the server to connect to. It should be specified in standard "a.b.c.d" notation.

            Normally the client would attempt to locate a named SMB/CIFS server by looking it up via the NetBIOS name resolution - mechanism described above in the name resolve ordername resolve order parameter above. Using this parameter will force the client to assume that the server is on the machine with the specified IP @@ -578,19 +544,19 @@ CLASS="PARAMETER" >

            Sets the SMB username or username and password. If %pass is not specified, The user will be prompted. The client - will first check the USERUSER environment variable, then the - LOGNAMELOGNAME variable and if either exists, the string is uppercased. Anything in these variables following a '%' sign will be treated as the password. If these environment - variables are not found, the username GUESTGUEST is used.

            smbclient will look for - a PASSWDPASSWD environment variable from which to read the password.

            -A-A for more details.

            Be cautious about including passwords in scripts or in - the PASSWDPASSWD environment variable. Also, on many systems the command line of a running process may be seen via the

            username = <value> 
            -password = <value>
            -domain = <value>
            username = <value> +password = <value> +domain = <value>

            If the domain parameter is missing the current workgroup name @@ -663,12 +627,10 @@ domain = <value>smbclient -L host and a list should appear. The and a list should appear. The -I - option may be useful if your NetBIOS names don't match your TCP/IP DNS host names or if you are trying to reach a host on another network.

            • cc - Create a tar file on UNIX. Must be followed by the name of a tar file, tape device or "-" for standard output. If using standard output you must turn the log level to its lowest value -d0 to avoid corrupting your tar file. This flag is mutually exclusive with the - xx flag.

            • xx - Extract (restore) a local tar file back to a share. Unless the -D option is given, the tar files will be restored from the top level of the share. Must be followed by the name of the tar file, device or "-" for standard - input. Mutually exclusive with the cc flag. Restored files have their creation times (mtime) set to the date saved in the tar file. Directories currently do not get @@ -787,11 +741,9 @@ CLASS="PARAMETER" >

            • II - Include files and directories. Is the default behavior when filenames are specified above. Causes tar files to be included in an extract or create (and therefore @@ -800,28 +752,22 @@ CLASS="PARAMETER" >

            • XX - Exclude files and directories. Causes tar files to be excluded from an extract or create. See example below. Filename globbing works in one of two ways now. - See rr below.

            • bb - Blocksize. Must be followed by a valid (greater than zero) blocksize. Causes tar file to be written out in blocksize*TBLOCK (usually 512 byte) blocks. @@ -829,38 +775,30 @@ CLASS="PARAMETER" >

            • gg - Incremental. Only back up files that have the archive bit set. Useful only with the - cc flag.

            • qq - Quiet. Keeps tar from printing diagnostics as it works. This is the same as tarmode quiet.

            • rr - Regular expression include or exclude. Uses regular expression matching for excluding or excluding files if compiled with HAVE_REGEX_H. @@ -870,41 +808,31 @@ CLASS="PARAMETER" >

            • NN - Newer than. Must be followed by the name of a file whose date is compared against files found on the share during a create. Only files newer than the file specified are backed up to the tar file. Useful only with the - cc flag.

            • aa - Set archive bit. Causes the archive bit to be reset when a file is backed up. Useful with the - g and g and cc flags.

            • command string is a semicolon-separated list of - commands to be executed instead of prompting from stdin. -N is implied by -N is implied by -c-c.

              This is particularly useful in scripts and for printing stdin @@ -1056,9 +980,9 @@ NAME="AEN336" >Once the client is running, the user is presented with a prompt :

              smb:\> smb:\>

              The backslash ("\\") indicates the current working directory @@ -1078,7 +1002,7 @@ CLASS="PROMPT" >

              Parameters shown in square brackets (e.g., "[parameter]") are optional. If not given, the command will use suitable defaults. Parameters - shown in angle brackets (e.g., "<parameter>") are required. + shown in angle brackets (e.g., "<parameter>") are required.

              Note that all commands operating on the server are actually @@ -1096,11 +1020,9 @@ CLASS="VARIABLELIST" >? [command]

              If If commandcommand is specified, the ? command will display a brief informative message about the specified command. If no command is specified, a list of available commands will @@ -1110,11 +1032,9 @@ CLASS="REPLACEABLE" >! [shell command]

              If If shell commandshell command is specified, the ! command will execute a shell locally and run the specified shell command. If no command is specified, a local shell will be run. @@ -1169,27 +1089,23 @@ CLASS="REPLACEABLE" directory on the server will be reported.

              del <mask>
              del <mask>

              The client will request that the server attempt - to delete all files matching maskmask from the current working directory on the server.

              dir <mask>
              dir <mask>

              A list of the files matching A list of the files matching maskmask in the current working directory on the server will be retrieved from the server and displayed.

              get <remote file name> [local file name]
              get <remote file name> [local file name]

              Copy the file called lcd [directory name]

              If If directory namedirectory name is specified, the current working directory on the local machine will be changed to the directory specified. This operation will fail if for any @@ -1267,13 +1181,13 @@ CLASS="REPLACEABLE" lowercase filenames are the norm on UNIX systems.

              ls <mask>
              ls <mask>

              See the dir command above.

              mask <mask>
              mask <mask>

              This command allows the user to set up a mask @@ -1299,28 +1213,24 @@ CLASS="REPLACEABLE" mask back to "*" after using the mget or mput commands.

              md <directory name>
              md <directory name>

              See the mkdir command.

              mget <mask>
              mget <mask>

              Copy all files matching Copy all files matching maskmask from the server to the machine running the client.

              Note that Note that maskmask is interpreted differently during recursive operation and non-recursive operation - refer to the recurse and mask commands for more information. Note that all transfers in @@ -1330,30 +1240,26 @@ CLASS="COMMAND" > are binary. See also the lowercase command.

              mkdir <directory name>
              mkdir <directory name>

              Create a new directory on the server (user access privileges permitting) with the specified name.

              mput <mask>
              mput <mask>

              Copy all files matching Copy all files matching maskmask in the current working directory on the local machine to the current working directory on the server.

              Note that Note that maskmask is interpreted differently during recursive operation and non-recursive operation - refer to the recurse and mask commands for more information. Note that all transfers in

              print <file name>
              print <file name>

              Print the specified file from the local machine @@ -1372,7 +1278,7 @@ CLASS="COMMAND" >See also the printmode command.

              printmode <graphics or text>
              printmode <graphics or text>

              Set the print mode to suit either binary data @@ -1392,7 +1298,7 @@ CLASS="COMMAND"

              put <local file name> [remote file name]
              put <local file name> [remote file name]

              Copy the file called See the exit command.

              rd <directory name>
              rd <directory name>

              See the rmdir command.

              rm <mask>
              rm <mask>

              Remove all files matching Remove all files matching maskmask from the current working directory on the server.

              rmdir <directory name>
              rmdir <directory name>

              Remove the specified directory (user access privileges permitting) from the server.

              setmode <filename> <perm=[+|\-]rsha>
              setmode <filename> <perm=[+|\-]rsha>

              A version of the DOS attrib command to set @@ -1493,15 +1397,13 @@ CLASS="COMMAND"

              tar <c|x>[IXbgNa]
              tar <c|x>[IXbgNa]

              Performs a tar operation - see the Performs a tar operation - see the -T - command line option above. Behavior may be affected by the tarmode command (see below). Using g (incremental) and N (newer) will affect tarmode settings. Note that using the "-" option @@ -1509,20 +1411,18 @@ CLASS="PARAMETER"

              blocksize <blocksize>
              blocksize <blocksize>

              Blocksize. Must be followed by a valid (greater than zero) blocksize. Causes tar file to be written out in - blocksizeblocksize*TBLOCK (usually 512 byte) blocks.

              tarmode <full|inc|reset|noreset>
              tarmode <full|inc|reset|noreset>

              Changes tar's behavior with regard to archive @@ -1564,25 +1464,25 @@ NAME="AEN532" >

              ENVIRONMENT VARIABLES

              The variable The variable USERUSER may contain the username of the person using the client. This information is used only if the protocol level is high enough to support session-level passwords.

              The variable The variable PASSWDPASSWD may contain the password of the person using the client. This information is used only if the protocol level is high enough to support session-level passwords.

              The variable The variable LIBSMB_PROGLIBSMB_PROG may contain the path, executed with system(), which the client should connect to instead of connecting to a server. This functionality is primarily diff --git a/docs/htmldocs/smbcontrol.1.html b/docs/htmldocs/smbcontrol.1.html index 25c8e33e08a..dcea1b564a1 100644 --- a/docs/htmldocs/smbcontrol.1.html +++ b/docs/htmldocs/smbcontrol.1.html @@ -5,7 +5,7 @@ >smbcontroldestination

              One of One of nmbd, nmbd, smbdsmbd or a process ID.

              The The smbdsmbd destination causes the message to "broadcast" to all smbd daemons.

              The The nmbdnmbd destination causes the message to be sent to the nmbd daemon specified in the message-type

              One of: One of: close-shareclose-share, - debugdebug, - force-election, force-election, ping - , , profile, profile, debuglevel, debuglevel, profilelevelprofilelevel, - or printnotifyprintnotify.

              The The close-shareclose-share message-type sends a message to smbd which will then close the client connections to the named share. Note that this doesn't affect client connections @@ -188,25 +180,25 @@ CLASS="CONSTANT" share name for which client connections will be closed, or the "*" character which will close all currently open shares. This may be useful if you made changes to the access controls on the share. - This message can only be sent to smbdsmbd.

              The The debugdebug message-type allows the debug level to be set to the value specified by the parameter. This can be sent to any of the destinations.

              The The force-electionforce-election message-type can only be - sent to the nmbdnmbd destination. This message causes the daemon to force a new browse master election.

              The The pingping message-type sends the number of "ping" messages specified by the parameter and waits for the same number of reply "pong" messages. This can be sent to any of the destinations.

              The The profileprofile message-type sends a message to an smbd to change the profile settings based on the parameter. The parameter can be "on" to turn on profile stats @@ -233,25 +225,25 @@ CLASS="CONSTANT" disabled), and "flush" to zero the current profile stats. This can be sent to any smbd or nmbd destinations.

              The The debugleveldebuglevel message-type sends a "request debug level" message. The current debug level setting is returned by a "debuglevel" message. This can be sent to any of the destinations.

              The The profilelevelprofilelevel message-type sends a "request profile level" message. The current profile level setting is returned by a "profilelevel" message. This can be sent to any smbd or nmbd destinations.

              The The printnotifyprintnotify message-type sends a message to smbd which in turn sends a printer notify message to any Windows NT clients connected to a printer. This message-type @@ -308,9 +300,9 @@ CLASS="VARIABLELIST" event has occured. It doesn't actually cause the event to happen. - This message can only be sent to smbdsmbd.

              smbdsmbd [-D] [-F] [-S] [-i] [-h] [-V] [-b] [-d <debug level>] [-l <log directory>] [-p <port number>] [-O <socket option>] [-s <configuration file>]

              [-D] [-F] [-S] [-i] [-h] [-V] [-b] [-d <debug level>] [-l <log directory>] [-p <port number>] [-O <socket option>] [-s <configuration file>]

          -d <debug level>
          -d <debug level>

          debugleveldebuglevel is an integer from 0 to 10. The default value if this parameter is not specified is zero.

          log - level parameter in the file.

          -l <log directory>
          -l <log directory>

          If specified, - log directorylog directory specifies a log directory into which the "log.smbd" log file will be created for informational and debug @@ -289,11 +283,9 @@ CLASS="REPLACEABLE" its size may be controlled by the max log sizemax log size option in the

          -O <socket options>
          -O <socket options>

          See the socket optionssocket options parameter in the file for details.

          -p <port number>
          -p <port number>

          port numberport number is a positive integer value. The default value if this parameter is not specified is 139.

          -s <configuration file>
          -s <configuration file>

          The file specified contains the @@ -534,17 +522,17 @@ NAME="AEN177" CLASS="VARIABLELIST" >

          PRINTERPRINTER

          If no printer name is specified to printable services, most systems will use the value of - this variable (or lplp if this variable is not defined) as the name of the printer to use. This is not specific to the server, however.

          obey - pam restricions smbgroupedit/etc/group
          ), let's call it ), let's call it domadmdomadm.

        • root# root# smbgroupedit -vs | grep "Domain Admins"root# root# smbgroupedit \
          @@ -254,9 +254,9 @@ CLASS="EMPHASIS"
           >To verify that your mapping has taken effect:
           
          root# root# smbgroupedit -vs|grep "Domain Admins"root# root# smbgroupedit -a unixgroup -tdsmbmntsmbmnt  {mount-point} [-s <share>] [-r] [-u <uid>] [-g <gid>] [-f <mask>] [-d <mask>] [-o <options>]

          {mount-point} [-s <share>] [-r] [-u <uid>] [-g <gid>] [-f <mask>] [-d <mask>] [-o <options>]

    smbmount
    username=<arg>
    username=<arg>

    specifies the username to connect as. If - this is not given, then the environment variable USER USER is used. This option can also take the form "user%password" or "user/workgroup" or "user/workgroup%password" to allow the password and workgroup to be specified as part of the username.

    password=<arg>
    password=<arg>

    specifies the SMB password. If this option is not given then the environment variable - PASSWDPASSWD is used. If it can find no password

    credentials=<filename>
    credentials=<filename>

    specifies a file that contains a username and/or password. The format of the file is:

    username = <value>
    -password = <value>
    username = <value> +password = <value>

    This is preferred over having passwords in plaintext in a @@ -181,14 +181,14 @@ CLASS="FILENAME"

    netbiosname=<arg>
    netbiosname=<arg>

    sets the source NetBIOS name. It defaults to the local hostname.

    uid=<arg>
    uid=<arg>

    sets the uid that will own all files on @@ -197,7 +197,7 @@ CLASS="FILENAME"

    gid=<arg>
    gid=<arg>

    sets the gid that will own all files on @@ -206,14 +206,14 @@ CLASS="FILENAME" gid.

    port=<arg>
    port=<arg>

    sets the remote SMB port number. The default is 139.

    fmask=<arg>
    fmask=<arg>

    sets the file mask. This determines the @@ -221,7 +221,7 @@ CLASS="FILENAME" The default is based on the current umask.

    dmask=<arg>
    dmask=<arg>

    sets the directory mask. This determines the @@ -229,7 +229,7 @@ CLASS="FILENAME" The default is based on the current umask.

    debug=<arg>
    debug=<arg>

    sets the debug level. This is useful for @@ -238,20 +238,20 @@ CLASS="FILENAME" output, possibly hiding the useful output.

    ip=<arg>
    ip=<arg>

    sets the destination host or IP address.

    workgroup=<arg>
    workgroup=<arg>

    sets the workgroup on the destination

    sockopt=<arg>
    sockopt=<arg>

    sets the TCP socket options. See the smb.conf(5) socket optionssocket options option.

    scope=<arg>
    scope=<arg>

    sets the NetBIOS scope

    mount read-write

    iocharset=<arg>
    iocharset=<arg>

    sets the charset used by the Linux side for codepage @@ -307,7 +305,7 @@ CLASS="PARAMETER"

    codepage=<arg>
    codepage=<arg>

    sets the codepage the server uses. See the iocharset @@ -316,7 +314,7 @@ CLASS="PARAMETER"

    ttl=<arg>
    ttl=<arg>

    sets how long a directory listing is cached in milliseconds @@ -341,26 +339,26 @@ NAME="AEN130" >

    ENVIRONMENT VARIABLES

    The variable The variable USERUSER may contain the username of the person using the client. This information is used only if the protocol level is high enough to support session-level passwords. The variable can be used to set both username and password by using the format username%password.

    The variable The variable PASSWDPASSWD may contain the password of the person using the client. This information is used only if the protocol level is high enough to support session-level passwords.

    The variable The variable PASSWD_FILEPASSWD_FILE may contain the pathname of a file to read the password from. A single line of input is read and used as the password.

    smbpasswddisabled
    disabled and the user will not be able to log onto the Samba server.

    - This means the account has no password (the passwords in the fields LANMAN Password Hash and NT Password Hash are ignored). Note that this - will only allow users to log on with no password if the null passwords null passwords parameter is set in the smbpasswdsmbpasswd [-a] [-x] [-d] [-e] [-D debuglevel] [-n] [-r <remote machine>] [-R <name resolve order>] [-m] [-U username[%password]] [-h] [-s] [-w pass] [-i] [-L] [username]

    [-a] [-x] [-d] [-e] [-D debuglevel] [-n] [-r <remote machine>] [-R <name resolve order>] [-m] [-U username[%password]] [-h] [-s] [-w pass] [-i] [-L] [username]

    smbpasswd can also be used by a normal user to change their SMB password on remote machines, such as Windows NT Primary Domain - Controllers. See the (-r) and -r) and -U-U options below.

    This option specifies that the username following should be added to the local smbpasswd file, with the - new password typed (type <Enter> for the old password). This + new password typed (type <Enter> for the old password). This option is ignored if the username following already exists in the smbpasswd file and it is treated like a regular change password command. Note that the default passdb backends require @@ -181,13 +177,13 @@ CLASS="FILENAME" >

    This option specifies that the username following - should be disableddisabled in the local smbpasswd - file. This is done by writing a 'D''D' flag into the account control space in the smbpasswd file. Once this is done all attempts to authenticate via SMB using this username @@ -212,9 +208,9 @@ CLASS="REFENTRYTITLE" >

    This option specifies that the username following - should be enabledenabled in the local smbpasswd file, if the account was previously disabled. If the account was not disabled this option has no effect. Once the account is enabled then @@ -240,11 +236,9 @@ CLASS="REFENTRYTITLE" >-D debuglevel

    debugleveldebuglevel is an integer from 0 to 10. The default value if this parameter is not specified is zero.

    This option allows a user to specify what machine they wish to change their password on. Without this parameter - smbpasswd defaults to the local host. The remote - machine name is the NetBIOS name of the SMB/CIFS server to contact to attempt the password change. This name is resolved into an IP address using the standard name resolution - mechanism in all programs of the Samba suite. See the -R - name resolve order parameter for details on changing this resolving mechanism.

    The username whose password is changed is that of the - current UNIX logged on user. See the -U username-U username parameter for details on changing the password for a different username.

    -R <name resolve order>
    -R <name resolve order>

    This option is used to determine what naming @@ -145,9 +145,9 @@ CLASS="EMPHASIS" >

    • lmhostslmhosts: Lookup an IP address in the Samba lmhosts file. If the line in lmhosts has no name type attached to the @@ -164,9 +164,9 @@ CLASS="REFENTRYTITLE" >

    • hosthost: Do a standard host name to IP address resolution, using the system

    • winswins: Query a name with the IP address listed in the - wins serverwins server parameter. If no WINS server has been specified this method will be ignored. @@ -203,16 +201,14 @@ CLASS="PARAMETER" >

    • bcastbcast: Do a broadcast on each of the known local interfaces - listed in the interfacesinterfaces parameter. This is the least reliable of the name resolution methods as it depends on the target host @@ -229,20 +225,16 @@ CLASS="REFENTRYTITLE" >smb.conf(5) file parameter - (name resolve ordername resolve order) will be used.

      The default order is lmhosts, host, wins, bcast. Without - this parameter or any entry in the name resolve order - parameter of the

    -d <debug level>
    -d <debug level>

    debug level is an integer from 0 to 10.

    If specified causes all debug messages to be - written to the file specified by logfilename - . If not specified then all messages will be - written tostderrstderr.

    system% system% smbshsmbsh -Username: Username: useruser -Password: Password: XXXXXXXXXXXXXX

    ls /smb/MYGROUP/<machine-name>ls /smb/MYGROUP/<machine-name> will show the share names for that machine. You could then, for example, use the smbspool

    smbspool tries to get the URI from argv[0]. If argv[0] - contains the name of the program then it looks in the DEVICE_URI DEVICE_URI environment variable.

    Programs using the exec(2) functions can pass the URI in argv[0], while shell scripts must set the - DEVICE_URIDEVICE_URI environment variable prior to running smbspool.

    smbstatussmbstatus [-P] [-b] [-d <debug level>] [-v] [-L] [-B] [-p] [-S] [-s <configuration file>] [-u <username>]

    [-P] [-b] [-d <debug level>] [-v] [-L] [-B] [-p] [-S] [-s <configuration file>] [-u <username>]

    gives brief output.

    -d|--debug=<debuglevel>
    -d|--debug=<debuglevel>

    sets debugging to specified level

    causes smbstatus to only list shares.

    -s|--conf=<configuration file>
    -s|--conf=<configuration file>

    The default configuration file name is @@ -146,15 +146,13 @@ CLASS="REFENTRYTITLE" > for more information.

    -u|--user=<username>
    -u|--user=<username>

    selects information relevant to - usernameusername only.

    smbtar-d directory

    Change to initial Change to initial directory - before restoring / backing up files.

    Tape device. May be regular file or tape - device. Default: $TAPE$TAPE environmental variable; if not set, a file called

    Log (debug) level. Corresponds to the - -d-d flag of

    ENVIRONMENT VARIABLES

    The The $TAPE$TAPE variable specifies the default tape device to write to. May be overridden with the -t option.

    smbumountSamba performance issuesChapter 19. Samba performance issuesChapter 18. Samba performance issues

    19.1. Comparisons

    18.1. Comparisons

    The Samba server uses TCP to talk to the client. Thus if you are trying to see if it performs well you should really compare it to @@ -111,9 +111,9 @@ CLASS="SECT1" >

    19.2. Socket options

    18.2. Socket options

    There are a number of socket options that can greatly affect the performance of a TCP based server like Samba.

    19.3. Read size

    18.3. Read size

    The option "read size" affects the overlap of disk reads/writes with network reads/writes. If the amount of data being transferred in @@ -165,9 +165,9 @@ CLASS="SECT1" >

    19.4. Max xmit

    18.4. Max xmit

    At startup the client and server negotiate a "maximum transmit" size, which limits the size of nearly all SMB commands. You can set the @@ -188,9 +188,9 @@ CLASS="SECT1" >

    19.5. Log level

    18.5. Log level

    If you set the log level (also known as "debug level") higher than 2 then you may suffer a large drop in performance. This is because the @@ -202,9 +202,9 @@ CLASS="SECT1" >

    19.6. Read raw

    18.6. Read raw

    The "read raw" operation is designed to be an optimised, low-latency file read operation. A server may choose to not support it, @@ -224,9 +224,9 @@ CLASS="SECT1" >

    19.7. Write raw

    18.7. Write raw

    The "write raw" operation is designed to be an optimised, low-latency file write operation. A server may choose to not support it, @@ -241,9 +241,9 @@ CLASS="SECT1" >

    19.8. Slow Clients

    18.8. Slow Clients

    One person has reported that setting the protocol to COREPLUS rather than LANMAN2 gave a dramatic speed improvement (from 10k/s to 150k/s).

    19.9. Slow Logins

    18.9. Slow Logins

    Slow logins are almost always due to the password checking time. Using the lowest practical "password level" will improve things a lot. You @@ -271,9 +271,9 @@ CLASS="SECT1" >

    19.10. Client tuning

    18.10. Client tuning

    Often a speed problem can be traced to the client. The client (for example Windows for Workgroups) can often be tuned for better TCP @@ -431,7 +431,7 @@ ACCESSKEY="U" WIDTH="33%" ALIGN="right" VALIGN="top" ->Creating Group ProfilesCreating Group Prolicy Files

    swatswat [-s <smb config file>] [-a]

    [-s <smb config file>] [-a]

    smb.conf(5) file. It will rearrange the entries and delete all - comments, include= and include= and copy= - options. If you have a carefully crafted smb.conftestparmtestparm [-s] [-h] [-v] [-L <servername>] [-t <encoding>] {config filename} [hostname hostIP]

    [-s] [-h] [-v] [-L <servername>] [-t <encoding>] {config filename} [hostname hostIP]

    -L servername

    Sets the value of the %L macro to Sets the value of the %L macro to servernameservername. This is useful for testing include files specified with the %L macro.

    testparm
    will examine the will examine the hosts - allow and and hosts denyhosts deny parameters in the testprnsDIAGNOSTICS

    If a printer is found to be valid, the message - "Printer name <printername> is valid" will be + "Printer name <printername> is valid" will be displayed.

    If a printer is found to be invalid, the message - "Printer name <printername> is not valid" will be + "Printer name <printername> is not valid" will be displayed.

    All messages that would normally be logged during diff --git a/docs/htmldocs/type.html b/docs/htmldocs/type.html index be7e722b2ed..d4db19bf439 100644 --- a/docs/htmldocs/type.html +++ b/docs/htmldocs/type.html @@ -5,7 +5,7 @@ >Type of installation

    5.5. Common Problems and Errors
    5.6. System Policies and Profiles
    5.7. What other help can I get?
    5.8. Domain Control for Windows 9x/ME
    5.8.1. Configuration Instructions: Network Logons
    5.8.2. Configuration Instructions: Setting up Roaming User Profiles
    5.9. DOMAIN_CONTROL.txt : Windows NT Domain Control & SambaDOMAIN_CONTROL.txt : Windows NT Domain Control & Samba
    6.1. Prerequisite Reading
    6.2. Background
    6.3. What qualifies a Domain Controller on the network?
    6.3.1. How does a Workstation find its domain controller?
    6.3.2. When is the PDC needed?
    6.4. Can Samba be a Backup Domain Controller to an NT PDC?
    6.5. How do I set up a Samba BDC?
    6.5.1. How do I replicate the smbpasswd file?
    6.5.2. Can I do this all with LDAP?
    7.1. Installing the required packages for Debian
    7.2. Installing the required packages for RedHat
    7.3. Compile Samba
    7.4. Setup your /etc/krb5.conf
    7.5. Create the computer account
    7.5.1. Possible errors
    7.6. Test your server setup
    7.7. Testing with smbclient
    7.8. Notes
    8.1. Joining an NT Domain with Samba 3.0
    8.2. Samba and Windows 2000 Domains
    8.3. Why is this better than security = server?
    UNIX Permission Bits and Windows NT Access Control Lists

    10.1. Viewing and changing UNIX permissions using the NT - security dialogs

    New in the Samba 2.0.4 release is the ability for Windows NT clients to use their native security settings dialog box to @@ -100,9 +100,9 @@ CLASS="SECT1" >

    10.2. How to view file security on a Samba share

    10.2. How to view file security on a Samba share

    From an NT 4.0 client, single-click with the right mouse button on any file or directory in a Samba mounted @@ -170,9 +170,9 @@ CLASS="SECT1" >

    10.3. Viewing file ownership

    10.3. Viewing file ownership

    Clicking on the "SERVER\user (Long name)"

    Where Where SERVERSERVER is the NetBIOS name of - the Samba server, useruser is the user name of - the UNIX user who owns the file, and (Long name)(Long name) is the descriptive string identifying the user (normally found in the GECOS field of the UNIX password database). Click on the button to remove this dialog.

    If the parameter If the parameter nt acl supportnt acl support - is set to falsefalse then the file owner will be shown as the NT user

    10.4. Viewing file or directory permissions

    10.4. Viewing file or directory permissions

    The third button is the "SERVER\user (Long name)"

    Where Where SERVERSERVER is the NetBIOS name of - the Samba server, useruser is the user name of - the UNIX user who owns the file, and (Long name)(Long name) is the descriptive string identifying the user (normally found in the GECOS field of the UNIX password database).

    If the parameter If the parameter nt acl supportnt acl support - is set to falsefalse then the file owner will be shown as the NT user

    10.4.1. File Permissions

    10.4.1. File Permissions

    The standard UNIX user/group/world triple and the corresponding "read", "write", "execute" permissions @@ -388,9 +372,9 @@ CLASS="SECT2" >

    10.4.2. Directory Permissions

    10.4.2. Directory Permissions

    Directories on an NT NTFS file system have two different sets of permissions. The first set of permissions @@ -420,9 +404,9 @@ CLASS="SECT1" >

    10.5. Modifying file or directory permissions

    10.5. Modifying file or directory permissions

    Modifying file and directory permissions is as simple as changing the displayed permissions in the dialog box, and @@ -434,15 +418,13 @@ CLASS="COMMAND" with the standard Samba permission masks and mapping of DOS attributes that need to also be taken into account.

    If the parameter If the parameter nt acl supportnt acl support - is set to falsefalse then any attempt to set security permissions will fail with an

    10.6. Interaction with the standard Samba create mask - parameters

    Note that with Samba 2.0.5 there are four new parameters to control this interaction. These are :

    security masksecurity mask

    force security modeforce security mode

    directory security maskdirectory security mask

    force directory security modeforce directory security mode

    Once a user clicks - security masksecurity mask parameter. Any bits that were changed that are not set to '1' in this parameter are left alone in the file permissions.

    Essentially, zero bits in the Essentially, zero bits in the security masksecurity mask mask may be treated as a set of bits the user is create mask - parameter to provide compatibility with Samba 2.0.4 where this permission change facility was introduced. To allow a user to @@ -610,22 +578,18 @@ CLASS="PARAMETER" the bits set in the force security modeforce security mode parameter. Any bits that were changed that correspond to bits set to '1' in this parameter are forced to be set.

    Essentially, bits set in the Essentially, bits set in the force security mode - parameter may be treated as a set of bits that, when modifying security on a file, the user has always set to be 'on'.

    force - create mode parameter to provide compatibility with Samba 2.0.4 where the permission change facility was introduced. To allow a user to modify all the user/group/world permissions on a file with no restrictions set this parameter to 000.

    The The security mask and security mask and force - security mode parameters are applied to the change request in that order.

    For a directory Samba will perform the same operations as - described above for a file except using the parameter directory security mask instead of directory security mask instead of security - mask, and , and force directory security mode - parameter instead of parameter instead of force security mode - .

    The The directory security maskdirectory security mask parameter - by default is set to the same value as the directory mask - parameter and the parameter and the force directory security - mode parameter by default is set to the same value as - the force directory modeforce directory mode parameter to provide compatibility with Samba 2.0.4 where the permission change facility was introduced.

    file in that share specific section :

    security mask = 0777security mask = 0777

    force security mode = 0force security mode = 0

    directory security mask = 0777directory security mask = 0777

    force directory security mode = 0force directory security mode = 0

    As described, in Samba 2.0.4 the parameters :

    create maskcreate mask

    force create modeforce create mode

    directory maskdirectory mask

    force directory modeforce directory mode

    were used instead of the parameters discussed here.

    10.7. Interaction with the standard Samba file attribute - mapping

    Samba maps some of the DOS attribute bits (such as "read only") into the UNIX permissions of a file. This means there can diff --git a/docs/htmldocs/vfs.html b/docs/htmldocs/vfs.html index 0e39297ebb6..84ff1227d49 100644 --- a/docs/htmldocs/vfs.html +++ b/docs/htmldocs/vfs.html @@ -5,7 +5,7 @@ >Stackable VFS modulesNext

    16.1. Introduction and configuration

    16.1. Introduction and configuration

    Since samba 3.0, samba supports stackable VFS(Virtual File System) modules. Samba passes each request to access the unix file system thru the loaded VFS modules. @@ -121,17 +121,17 @@ CLASS="SECT1" >

    16.2. Included modules

    16.2. Included modules

    16.2.1. audit

    16.2.1. audit

    A simple module to audit file access to the syslog facility. The following operations are logged: @@ -167,9 +167,9 @@ CLASS="SECT2" >

    16.2.2. recycle

    16.2.2. recycle

    A recycle-bin like modules. When used any unlink call will be intercepted and files moved to the recycle @@ -238,9 +238,9 @@ CLASS="SECT2" >

    16.2.3. netatalk

    16.2.3. netatalk

    A netatalk module, that will ease co-existence of samba and netatalk file sharing services.

    16.3. VFS modules available elsewhere

    16.3. VFS modules available elsewhere

    This section contains a listing of various other VFS modules that have been posted but don't currently reside in the Samba CVS @@ -287,9 +287,9 @@ CLASS="SECT2" >

    16.3.1. DatabaseFS

    16.3.1. DatabaseFS

    URL:

    16.3.2. vscan

    16.3.2. vscan

    URL: NextAccess Samba source code via CVSGroup mapping HOWTO

    vfstest-d|--debug=debuglevel

    debugleveldebuglevel is an integer from 0 to 10. The default value if this parameter is not specified is zero.

    File name for log/debug files. The extension - '.client''.client' will be appended. The log file is never removed by the client.

    load <module.so>load <module.so> - Load specified VFS module

  • populate <char> <size>populate <char> <size> - Populate a data buffer with the specified data

  • showdata [<offset> <len>]showdata [<offset> <len>] - Show data currently in data buffer

    conf <smb.conf>conf <smb.conf> - Load a different configuration file

  • help [<command>]help [<command>] - Get list of commands or info about specified command

  • debuglevel <level>debuglevel <level> - Set debug level

  • wbinfo-N name

    The The -N-N option queries (8) to query the WINS server for the IP address associated with the NetBIOS name - specified by the namename parameter.

    -I ip

    The The -I-I option queries (8) to send a node status request to get the NetBIOS name associated with the IP address - specified by the ipip parameter.

    -n name

    The The -n-n option queries smb.conf(5) workgroup - parameter.

    -s sid

    Use Use -s-s to resolve - a SID to a name. This is the inverse of the -n - option above. SIDs must be specified as ASCII strings in the traditional Microsoft format. For example, S-1-5-21-1455342024-3071081365-2475485837-500.

    Unified Logons between Windows NT and UNIX using Winbind

    14.1. Abstract

    14.1. Abstract

    Integration of UNIX and Microsoft Windows NT through a unified logon has been considered a "holy grail" in heterogeneous @@ -107,9 +107,9 @@ CLASS="SECT1" >

    14.2. Introduction

    14.2. Introduction

    It is well known that UNIX and Microsoft Windows NT have different models for representing user and group information and @@ -161,9 +161,9 @@ CLASS="SECT1" >

    14.3. What Winbind Provides

    14.3. What Winbind Provides

    Winbind unifies UNIX and Windows NT account management by allowing a UNIX box to become a full member of a NT domain. Once @@ -203,9 +203,9 @@ CLASS="SECT2" >

    14.3.1. Target Uses

    14.3.1. Target Uses

    Winbind is targeted at organizations that have an existing NT based domain infrastructure into which they wish @@ -227,9 +227,9 @@ CLASS="SECT1" >

    14.4. How Winbind Works

    14.4. How Winbind Works

    The winbind system is designed around a client/server architecture. A long running

    14.4.1. Microsoft Remote Procedure Calls

    14.4.1. Microsoft Remote Procedure Calls

    Over the last few years, efforts have been underway by various Samba Team members to decode various aspects of @@ -273,9 +273,9 @@ CLASS="SECT2" >

    14.4.2. Microsoft Active Directory Services

    14.4.2. Microsoft Active Directory Services

    Since late 2001, Samba has gained the ability to interact with Microsoft Windows 2000 using its 'Native @@ -292,9 +292,9 @@ CLASS="SECT2" >

    14.4.3. Name Service Switch

    14.4.3. Name Service Switch

    The Name Service Switch, or NSS, is a feature that is present in many UNIX operating systems. It allows system @@ -372,9 +372,9 @@ CLASS="SECT2" >

    14.4.4. Pluggable Authentication Modules

    14.4.4. Pluggable Authentication Modules

    Pluggable Authentication Modules, also known as PAM, is a system for abstracting authentication and authorization @@ -421,9 +421,9 @@ CLASS="SECT2" >

    14.4.5. User and Group ID Allocation

    14.4.5. User and Group ID Allocation

    When a user or group is created under Windows NT is it allocated a numerical relative identifier (RID). This is @@ -447,9 +447,9 @@ CLASS="SECT2" >

    14.4.6. Result Caching

    14.4.6. Result Caching

    An active system can generate a lot of user and group name lookups. To reduce the network cost of these lookups winbind @@ -470,9 +470,9 @@ CLASS="SECT1" >

    14.5. Installation and Configuration

    14.5. Installation and Configuration

    Many thanks to John Trostel

    14.5.1. Introduction

    14.5.1. Introduction

    This HOWTO describes the procedures used to get winbind up and running on my RedHat 7.1 system. Winbind is capable of providing access @@ -556,9 +556,9 @@ CLASS="SECT2" >

    14.5.2. Requirements

    14.5.2. Requirements

    If you have a samba configuration file that you are currently using...

    14.5.3. Testing Things Out

    14.5.3. Testing Things Out

    Before starting, it is probably best to kill off all the SAMBA related daemons running on your server. Kill off all

    14.5.3.1. Configure and compile SAMBA

    14.5.3.1. Configure and compile SAMBA

    The configuration and compilation of SAMBA is pretty straightforward. The first three steps may not be necessary depending upon @@ -681,44 +681,44 @@ whether or not you have previously built the Samba binaries.

    root#root# autoconf
    -root#root# make clean
    -root#root# rm config.cache
    -root#root# ./configure
    -root#root# make
    -root#root# make install

    14.5.3.2. Configure nsswitch.conf and the -winbind libraries

    The libraries needed to run the daemon through nsswitch need to be copied to their proper locations, so

    root#root# cp ../samba/source/nsswitch/libnss_winbind.so /lib

    I also found it necessary to make the following symbolic link:

    root#root# ln -s /lib/libnss_winbind.so /lib/libnss_winbind.so.2

    And, in the case of Sun solaris:

    root#root# ln -s /usr/lib/libnss_winbind.so /usr/lib/libnss_winbind.so.1 -root#root# ln -s /usr/lib/libnss_winbind.so /usr/lib/nss_winbind.so.1 -root#root# ln -s /usr/lib/libnss_winbind.so /usr/lib/nss_winbind.so.2

    root#root# /sbin/ldconfig -v | grep winbind

    14.5.3.3. Configure smb.conf

    14.5.3.3. Configure smb.conf

    Several parameters are needed in the smb.conf file to control the behavior of

    [global]
    -     <...>
    +     <...>
          # separate domain and username with '+', like DOMAIN+username
          

    14.5.3.4. Join the SAMBA server to the PDC domain

    14.5.3.4. Join the SAMBA server to the PDC domain

    Enter the following command to make the SAMBA server join the -PDC domain, where DOMAINDOMAIN is the name of -your Windows domain and AdministratorAdministrator is a domain user who has administrative privileges in the domain.

    root#root# /usr/local/samba/bin/net join -S PDC -U Administrator

    The proper response to the command should be: "Joined the domain -DOMAIN" where DOMAIN" where DOMAINDOMAIN is your DOMAIN name.

  • 14.5.3.5. Start up the winbindd daemon and test it!

    14.5.3.5. Start up the winbindd daemon and test it!

    Eventually, you will want to modify your smb startup script to automatically invoke the winbindd daemon when the other parts of @@ -973,9 +965,9 @@ SAMBA start, but it is possible to test out just the winbind portion first. To start up winbind services, enter the following command as root:

    root#root# /usr/local/samba/bin/winbinddI'm always paranoid and like to make sure the daemon is really running...

    root#root# ps -ae | grep winbinddNow... for the real test, try to get some information about the users on your PDC

    root#root# /usr/local/samba/bin/wbinfo -u

    Obviously, I have named my domain 'CEO' and my Obviously, I have named my domain 'CEO' and my winbind -separator is '+'.

    You can do the same sort of thing to get group information from @@ -1034,9 +1024,9 @@ the PDC:

    root#root# /usr/local/samba/bin/wbinfo -g

    root#root# getent passwd

    The same thing can be done for groups with the command

    root#root# getent group

    14.5.3.6. Fix the init.d startup scripts

    14.5.3.6. Fix the init.d startup scripts

    14.5.3.6.1. Linux

    14.5.3.6.1. Linux

    The

    14.5.3.6.2. Solaris

    14.5.3.6.2. Solaris

    On solaris, you need to modify the

    14.5.3.6.3. Restarting

    14.5.3.6.3. Restarting

    If you restart the

    14.5.3.7. Configure Winbind and PAM

    14.5.3.7. Configure Winbind and PAM

    If you have made it this far, you know that winbindd and samba are working together. If you want to use winbind to provide authentication for other @@ -1305,9 +1295,9 @@ CLASS="FILENAME" > directory by invoking the command

    root#root# make nsswitch/pam_winbind.so/usr/lib/security.

    root#root# cp ../samba/source/nsswitch/pam_winbind.so /lib/security

    14.5.3.7.1. Linux/FreeBSD-specific PAM configuration

    14.5.3.7.1. Linux/FreeBSD-specific PAM configuration

    The

    14.5.3.7.2. Solaris-specific configuration

    14.5.3.7.2. Solaris-specific configuration

    The /etc/pam.conf needs to be changed. I changed this file so that my Domain users can logon both locally as well as telnet.The following are the changes @@ -1559,9 +1549,9 @@ CLASS="SECT1" >

    14.6. Limitations

    14.6. Limitations

    Winbind has a number of limitations in its current released version that we hope to overcome in future @@ -1601,9 +1591,9 @@ CLASS="SECT1" >

    14.7. Conclusion

    14.7. Conclusion

    The winbind system, through the use of the Name Service Switch, Pluggable Authentication Modules, and appropriate diff --git a/docs/htmldocs/winbindd.8.html b/docs/htmldocs/winbindd.8.html index dba9988e304..b114c406478 100644 --- a/docs/htmldocs/winbindd.8.html +++ b/docs/htmldocs/winbindd.8.html @@ -5,7 +5,7 @@ >winbinddwinbindd [-F] [-S] [-i] [-B] [-d <debug level>] [-s <smb config file>] [-n]

    [-F] [-S] [-i] [-B] [-d <debug level>] [-s <smb config file>] [-n]

    pam_winbind module in the 2.2.2 release only - supports the auth and auth and accountaccount module-types. The latter simply performs a getpwnam() to verify that the system can obtain a uid for the @@ -374,11 +370,9 @@ CLASS="REFENTRYTITLE" > winbind separatorwinbind separator

    winbind uidwinbind uid

    winbind gidwinbind gid

    winbind cache timewinbind cache time

    winbind enum userswinbind enum users

    winbind enum groupswinbind enum groups

    template homedirtemplate homedir

    template shelltemplate shell

    winbind use default domainwinbind use default domain

    In /etc/pam.d/* replace the replace the auth auth lines with something like this:

    Note in particular the use of the Note in particular the use of the sufficient - keyword and the keyword and the use_first_passuse_first_pass keyword.

    Now replace the account lines with this:

    net join -S PDC -U Administrator

    The username after the The username after the -U-U can be any Domain user that has administrator privileges on the machine. Substitute the name or IP of your PDC for "PDC".

    winbindd
    - nsswitch module read an environment variable named $WINBINDD_DOMAIN $WINBINDD_DOMAIN. If this variable contains a comma separated list of Windows NT domain names, then winbindd will only resolve users and groups within those Windows NT domains.

    Storage for the Windows NT rid to UNIX user/group id mapping. The lock directory is specified when Samba is initially - compiled using the --with-lockdir--with-lockdir option. This directory is by default .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "FINDSMB" "1" "28 January 2003" "" "" +.TH "FINDSMB" "1" "18 March 2003" "" "" .SH NAME findsmb \- list info about machines that respond to SMB name queries on a subnet diff --git a/docs/manpages/lmhosts.5 b/docs/manpages/lmhosts.5 index 72509fa78c1..f00c2e3547c 100644 --- a/docs/manpages/lmhosts.5 +++ b/docs/manpages/lmhosts.5 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "LMHOSTS" "5" "28 January 2003" "" "" +.TH "LMHOSTS" "5" "18 March 2003" "" "" .SH NAME lmhosts \- The Samba NetBIOS hosts file diff --git a/docs/manpages/net.8 b/docs/manpages/net.8 index d65a9663f14..5720337de4d 100644 --- a/docs/manpages/net.8 +++ b/docs/manpages/net.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "NET" "8" "28 January 2003" "" "" +.TH "NET" "8" "18 March 2003" "" "" .SH NAME net \- Tool for administration of Samba and remote CIFS servers. diff --git a/docs/manpages/nmbd.8 b/docs/manpages/nmbd.8 index d8bff8bd468..d2d86353164 100644 --- a/docs/manpages/nmbd.8 +++ b/docs/manpages/nmbd.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "NMBD" "8" "28 January 2003" "" "" +.TH "NMBD" "8" "18 March 2003" "" "" .SH NAME nmbd \- NetBIOS name server to provide NetBIOS over IP naming services to clients diff --git a/docs/manpages/nmblookup.1 b/docs/manpages/nmblookup.1 index 7abd080bf8d..9ed1de8ade7 100644 --- a/docs/manpages/nmblookup.1 +++ b/docs/manpages/nmblookup.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "NMBLOOKUP" "1" "28 January 2003" "" "" +.TH "NMBLOOKUP" "1" "18 March 2003" "" "" .SH NAME nmblookup \- NetBIOS over TCP/IP client used to lookup NetBIOS names diff --git a/docs/manpages/pdbedit.8 b/docs/manpages/pdbedit.8 index bd225a1805a..dc236decf22 100644 --- a/docs/manpages/pdbedit.8 +++ b/docs/manpages/pdbedit.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "PDBEDIT" "8" "28 January 2003" "" "" +.TH "PDBEDIT" "8" "18 March 2003" "" "" .SH NAME pdbedit \- manage the SAM database diff --git a/docs/manpages/rpcclient.1 b/docs/manpages/rpcclient.1 index d62080f5964..afd75a6838c 100644 --- a/docs/manpages/rpcclient.1 +++ b/docs/manpages/rpcclient.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "RPCCLIENT" "1" "28 January 2003" "" "" +.TH "RPCCLIENT" "1" "18 March 2003" "" "" .SH NAME rpcclient \- tool for executing client side MS-RPC functions diff --git a/docs/manpages/samba.7 b/docs/manpages/samba.7 index 0a25cbfe885..a1abcbfba3e 100644 --- a/docs/manpages/samba.7 +++ b/docs/manpages/samba.7 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SAMBA" "7" "28 January 2003" "" "" +.TH "SAMBA" "7" "18 March 2003" "" "" .SH NAME Samba \- A Windows SMB/CIFS fileserver for UNIX diff --git a/docs/manpages/smb.conf.5 b/docs/manpages/smb.conf.5 index fee4cf89899..23dfcbd50fa 100644 --- a/docs/manpages/smb.conf.5 +++ b/docs/manpages/smb.conf.5 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMB.CONF" "5" "18 February 2003" "" "" +.TH "SMB.CONF" "5" "18 March 2003" "" "" .SH NAME smb.conf \- The configuration file for the Samba suite @@ -739,6 +739,9 @@ each parameter for details. Note that some are synonyms. \fImachine password timeout\fR .TP 0.2i \(bu +\fImangle prefix\fR +.TP 0.2i +\(bu \fImangled stack\fR .TP 0.2i \(bu @@ -874,9 +877,6 @@ each parameter for details. Note that some are synonyms. \fIprintcap name\fR .TP 0.2i \(bu -\fIprinter driver file\fR -.TP 0.2i -\(bu \fIprivate dir\fR .TP 0.2i \(bu @@ -994,9 +994,6 @@ each parameter for details. Note that some are synonyms. \fIuse mmap\fR .TP 0.2i \(bu -\fIuse rhosts\fR -.TP 0.2i -\(bu \fIuse sendfile\fR .TP 0.2i \(bu @@ -1298,9 +1295,6 @@ each parameter for details. Note that some are synonyms. \fIpostexec\fR .TP 0.2i \(bu -\fIpostscript\fR -.TP 0.2i -\(bu \fIpreexec\fR .TP 0.2i \(bu @@ -1325,12 +1319,6 @@ each parameter for details. Note that some are synonyms. \fIprinter admin\fR .TP 0.2i \(bu -\fIprinter driver\fR -.TP 0.2i -\(bu -\fIprinter driver location\fR -.TP 0.2i -\(bu \fIprinter name\fR .TP 0.2i \(bu @@ -1498,6 +1486,10 @@ been executed, \fBsmbd\fR will reparse the \fI smb.conf\fR to determine if the exists. If the sharename is still invalid, then \fBsmbd \fR will return an ACCESS_DENIED error to the client. +The "add printer command" program can output a single line of text, +which Samba will set as the port the new printer is connected to. +If this line isn't output, Samba won't reload its printer shares. + See also \fI deleteprinter command\fR, \fIprinting\fR, \fIshow add printer wizard\fR @@ -5264,17 +5256,6 @@ Default: \fBnone (no command executed)\fR Example: \fBpostexec = echo \\"%u disconnected from %S from %m (%I)\\" >> /tmp/log\fR .TP -\fB>postscript (S)\fR -This parameter forces a printer to interpret -the print files as PostScript. This is done by adding a %! -to the start of print output. - -This is most useful when you have lots of PCs that persist -in putting a control-D at the start of print jobs, which then -confuses your printer. - -Default: \fBpostscript = no\fR -.TP \fB>preexec (S)\fR This option specifies a command to be run whenever the service is connected to. It takes the usual substitutions. @@ -5510,87 +5491,6 @@ Default: \fBprinter admin = \fR Example: \fBprinter admin = admin, @staff\fR .TP -\fB>printer driver (S)\fR -\fBNote :\fRThis is a deprecated -parameter and will be removed in the next major release -following version 2.2. Please see the instructions in -the Samba 2.2. Printing -HOWTO for more information -on the new method of loading printer drivers onto a Samba server. - -This option allows you to control the string -that clients receive when they ask the server for the printer driver -associated with a printer. If you are using Windows95 or Windows NT -then you can use this to automate the setup of printers on your -system. - -You need to set this parameter to the exact string (case -sensitive) that describes the appropriate printer driver for your -system. If you don't know the exact string to use then you should -first try with no \fI printer driver\fR option set and the client will -give you a list of printer drivers. The appropriate strings are -shown in a scroll box after you have chosen the printer manufacturer. - -See also \fIprinter -driver file\fR. - -Example: \fBprinter driver = HP LaserJet 4L\fR -.TP -\fB>printer driver file (G)\fR -\fBNote :\fRThis is a deprecated -parameter and will be removed in the next major release -following version 2.2. Please see the instructions in -the Samba 2.2. Printing -HOWTO for more information -on the new method of loading printer drivers onto a Samba server. - -This parameter tells Samba where the printer driver -definition file, used when serving drivers to Windows 95 clients, is -to be found. If this is not set, the default is : - -\fISAMBA_INSTALL_DIRECTORY -/lib/printers.def\fR - -This file is created from Windows 95 \fImsprint.inf -\fR files found on the Windows 95 client system. For more -details on setting up serving of printer drivers to Windows 95 -clients, see the outdated documentation file in the \fIdocs/\fR -directory, \fIPRINTER_DRIVER.txt\fR. - -See also \fI printer driver location\fR. - -Default: \fBNone (set in compile).\fR - -Example: \fBprinter driver file = -/usr/local/samba/printers/drivers.def\fR -.TP -\fB>printer driver location (S)\fR -\fBNote :\fRThis is a deprecated -parameter and will be removed in the next major release -following version 2.2. Please see the instructions in -the Samba 2.2. Printing -HOWTO for more information -on the new method of loading printer drivers onto a Samba server. - -This parameter tells clients of a particular printer -share where to find the printer driver files for the automatic -installation of drivers for Windows 95 machines. If Samba is set up -to serve printer drivers to Windows 95 machines, this should be set to - -\fB\\\\MACHINE\\PRINTER$\fR - -Where MACHINE is the NetBIOS name of your Samba server, -and PRINTER$ is a share you set up for serving printer driver -files. For more details on setting this up see the outdated documentation -file in the \fIdocs/\fR directory, \fI PRINTER_DRIVER.txt\fR. - -See also \fI printer driver file\fR. - -Default: \fBnone\fR - -Example: \fBprinter driver location = \\\\MACHINE\\PRINTER$ -\fR -.TP \fB>printer name (S)\fR This parameter specifies the name of the printer to which print jobs spooled through a printable service will be sent. @@ -6725,20 +6625,6 @@ the tdb internal code. Default: \fBuse mmap = yes\fR .TP -\fB>use rhosts (G)\fR -If this global parameter is yes, it specifies -that the UNIX user's \fI.rhosts\fR file in their home directory -will be read to find the names of hosts and users who will be allowed -access without specifying a password. - -\fBNOTE:\fR The use of \fIuse rhosts -\fR can be a major security hole. This is because you are -trusting the PC to supply the correct username. It is very easy to -get a PC to supply a false username. I recommend that the \fI use rhosts\fR option be only used if you really know what -you are doing. - -Default: \fBuse rhosts = no\fR -.TP \fB>user (S)\fR Synonym for \fI username\fR. .TP diff --git a/docs/manpages/smbcacls.1 b/docs/manpages/smbcacls.1 index 9840dab50b0..2539822d759 100644 --- a/docs/manpages/smbcacls.1 +++ b/docs/manpages/smbcacls.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBCACLS" "1" "28 January 2003" "" "" +.TH "SMBCACLS" "1" "18 March 2003" "" "" .SH NAME smbcacls \- Set or get ACLs on an NT file or directory names diff --git a/docs/manpages/smbclient.1 b/docs/manpages/smbclient.1 index 6299ff93621..3d193b0c626 100644 --- a/docs/manpages/smbclient.1 +++ b/docs/manpages/smbclient.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBCLIENT" "1" "18 February 2003" "" "" +.TH "SMBCLIENT" "1" "18 March 2003" "" "" .SH NAME smbclient \- ftp-like client to access SMB/CIFS resources on servers diff --git a/docs/manpages/smbcontrol.1 b/docs/manpages/smbcontrol.1 index 80fee0a8382..d9b66a86c4f 100644 --- a/docs/manpages/smbcontrol.1 +++ b/docs/manpages/smbcontrol.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBCONTROL" "1" "28 January 2003" "" "" +.TH "SMBCONTROL" "1" "18 March 2003" "" "" .SH NAME smbcontrol \- send messages to smbd, nmbd or winbindd processes diff --git a/docs/manpages/smbd.8 b/docs/manpages/smbd.8 index 47bc476aac8..07045dee50a 100644 --- a/docs/manpages/smbd.8 +++ b/docs/manpages/smbd.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBD" "8" "28 January 2003" "" "" +.TH "SMBD" "8" "18 March 2003" "" "" .SH NAME smbd \- server to provide SMB/CIFS services to clients diff --git a/docs/manpages/smbgroupedit.8 b/docs/manpages/smbgroupedit.8 index f0160446341..7e7c4811612 100644 --- a/docs/manpages/smbgroupedit.8 +++ b/docs/manpages/smbgroupedit.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBGROUPEDIT" "8" "28 January 2003" "" "" +.TH "SMBGROUPEDIT" "8" "18 March 2003" "" "" .SH NAME smbgroupedit \- Query/set/change UNIX - Windows NT group mapping diff --git a/docs/manpages/smbmnt.8 b/docs/manpages/smbmnt.8 index 63425850c9d..661f61e3fa5 100644 --- a/docs/manpages/smbmnt.8 +++ b/docs/manpages/smbmnt.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBMNT" "8" "28 January 2003" "" "" +.TH "SMBMNT" "8" "18 March 2003" "" "" .SH NAME smbmnt \- helper utility for mounting SMB filesystems diff --git a/docs/manpages/smbmount.8 b/docs/manpages/smbmount.8 index 1b504e08b9b..f3244bb8fe7 100644 --- a/docs/manpages/smbmount.8 +++ b/docs/manpages/smbmount.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBMOUNT" "8" "28 January 2003" "" "" +.TH "SMBMOUNT" "8" "18 March 2003" "" "" .SH NAME smbmount \- mount an smbfs filesystem diff --git a/docs/manpages/smbpasswd.5 b/docs/manpages/smbpasswd.5 index 46527236d95..435fc6004ca 100644 --- a/docs/manpages/smbpasswd.5 +++ b/docs/manpages/smbpasswd.5 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBPASSWD" "5" "28 January 2003" "" "" +.TH "SMBPASSWD" "5" "18 March 2003" "" "" .SH NAME smbpasswd \- The Samba encrypted password file diff --git a/docs/manpages/smbpasswd.8 b/docs/manpages/smbpasswd.8 index b2821a8e019..40232ff42a3 100644 --- a/docs/manpages/smbpasswd.8 +++ b/docs/manpages/smbpasswd.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBPASSWD" "8" "28 January 2003" "" "" +.TH "SMBPASSWD" "8" "18 March 2003" "" "" .SH NAME smbpasswd \- change a user's SMB password diff --git a/docs/manpages/smbsh.1 b/docs/manpages/smbsh.1 index 463a456616a..ffcfbfe4400 100644 --- a/docs/manpages/smbsh.1 +++ b/docs/manpages/smbsh.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBSH" "1" "28 January 2003" "" "" +.TH "SMBSH" "1" "18 March 2003" "" "" .SH NAME smbsh \- Allows access to Windows NT filesystem using UNIX commands diff --git a/docs/manpages/smbspool.8 b/docs/manpages/smbspool.8 index e532b8301fa..44255d2a7db 100644 --- a/docs/manpages/smbspool.8 +++ b/docs/manpages/smbspool.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBSPOOL" "8" "28 January 2003" "" "" +.TH "SMBSPOOL" "8" "18 March 2003" "" "" .SH NAME smbspool \- send a print file to an SMB printer diff --git a/docs/manpages/smbstatus.1 b/docs/manpages/smbstatus.1 index 0b5a973f609..98c4ac2fadd 100644 --- a/docs/manpages/smbstatus.1 +++ b/docs/manpages/smbstatus.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBSTATUS" "1" "28 January 2003" "" "" +.TH "SMBSTATUS" "1" "18 March 2003" "" "" .SH NAME smbstatus \- report on current Samba connections diff --git a/docs/manpages/smbtar.1 b/docs/manpages/smbtar.1 index 54de9fcc80b..310a99fb394 100644 --- a/docs/manpages/smbtar.1 +++ b/docs/manpages/smbtar.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBTAR" "1" "28 January 2003" "" "" +.TH "SMBTAR" "1" "18 March 2003" "" "" .SH NAME smbtar \- shell script for backing up SMB/CIFS shares directly to UNIX tape drives diff --git a/docs/manpages/smbumount.8 b/docs/manpages/smbumount.8 index c8eb19831ea..f4c263ce952 100644 --- a/docs/manpages/smbumount.8 +++ b/docs/manpages/smbumount.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SMBUMOUNT" "8" "28 January 2003" "" "" +.TH "SMBUMOUNT" "8" "18 March 2003" "" "" .SH NAME smbumount \- smbfs umount for normal users diff --git a/docs/manpages/swat.8 b/docs/manpages/swat.8 index 8893484c2e1..4f16e31766f 100644 --- a/docs/manpages/swat.8 +++ b/docs/manpages/swat.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "SWAT" "8" "28 January 2003" "" "" +.TH "SWAT" "8" "18 March 2003" "" "" .SH NAME swat \- Samba Web Administration Tool diff --git a/docs/manpages/testparm.1 b/docs/manpages/testparm.1 index fec26e18ae0..d66a018043b 100644 --- a/docs/manpages/testparm.1 +++ b/docs/manpages/testparm.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "TESTPARM" "1" "28 January 2003" "" "" +.TH "TESTPARM" "1" "18 March 2003" "" "" .SH NAME testparm \- check an smb.conf configuration file for internal correctness diff --git a/docs/manpages/testprns.1 b/docs/manpages/testprns.1 index bb567b2a966..77cf99c5577 100644 --- a/docs/manpages/testprns.1 +++ b/docs/manpages/testprns.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "TESTPRNS" "1" "28 January 2003" "" "" +.TH "TESTPRNS" "1" "18 March 2003" "" "" .SH NAME testprns \- check printer name for validity with smbd diff --git a/docs/manpages/vfstest.1 b/docs/manpages/vfstest.1 index 134ee79c477..116642ddc5d 100644 --- a/docs/manpages/vfstest.1 +++ b/docs/manpages/vfstest.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "VFSTEST" "1" "28 January 2003" "" "" +.TH "VFSTEST" "1" "18 March 2003" "" "" .SH NAME vfstest \- tool for testing samba VFS modules diff --git a/docs/manpages/wbinfo.1 b/docs/manpages/wbinfo.1 index b8ce01f1c1f..77f5d3e2fbf 100644 --- a/docs/manpages/wbinfo.1 +++ b/docs/manpages/wbinfo.1 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "WBINFO" "1" "28 January 2003" "" "" +.TH "WBINFO" "1" "18 March 2003" "" "" .SH NAME wbinfo \- Query information from winbind daemon diff --git a/docs/manpages/winbindd.8 b/docs/manpages/winbindd.8 index a46c0769b5b..0d84648d772 100644 --- a/docs/manpages/winbindd.8 +++ b/docs/manpages/winbindd.8 @@ -3,7 +3,7 @@ .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . -.TH "WINBINDD" "8" "18 February 2003" "" "" +.TH "WINBINDD" "8" "18 March 2003" "" "" .SH NAME winbindd \- Name Service Switch daemon for resolving names from NT servers -- cgit From fb925a72a6323d96d8fae658c4271ca05e8256de Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 18 Mar 2003 21:25:33 +0000 Subject: Removed unused var. Jeremy. --- source/libsmb/smb_signing.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/libsmb/smb_signing.c b/source/libsmb/smb_signing.c index c3538ee9fd0..c713418e82d 100644 --- a/source/libsmb/smb_signing.c +++ b/source/libsmb/smb_signing.c @@ -353,8 +353,6 @@ static void cli_null_free_signing_context(struct cli_state *cli) BOOL cli_null_set_signing(struct cli_state *cli) { - struct smb_basic_sign_data *data; - cli->sign_info.signing_context = NULL; cli->sign_info.sign_outgoing_message = cli_null_sign_outgoing_message; -- cgit From e8155fade61e9dc308a82f442453803160c36806 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 18 Mar 2003 23:51:18 +0000 Subject: Ensure dev in make_connection is const. Jeremy. --- source/rpc_server/srv_srvsvc_nt.c | 2 +- source/smbd/service.c | 12 +++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/source/rpc_server/srv_srvsvc_nt.c b/source/rpc_server/srv_srvsvc_nt.c index 815dd75d226..4d9130fb970 100644 --- a/source/rpc_server/srv_srvsvc_nt.c +++ b/source/rpc_server/srv_srvsvc_nt.c @@ -1869,7 +1869,7 @@ WERROR _srv_net_file_query_secdesc(pipes_struct *p, SRV_Q_NET_FILE_QUERY_SECDESC r_u->status = WERR_ACCESS_DENIED; goto error_exit; } - became_user = True; + became_user = True; unistr2_to_ascii(filename, &q_u->uni_file_name, sizeof(filename)); unix_convert(filename, conn, NULL, &bad_path, &st); diff --git a/source/smbd/service.c b/source/smbd/service.c index dc471ab87e9..f67361e66a3 100644 --- a/source/smbd/service.c +++ b/source/smbd/service.c @@ -326,14 +326,17 @@ static void set_admin_user(connection_struct *conn, gid_t *groups, size_t n_grou static connection_struct *make_connection_snum(int snum, user_struct *vuser, DATA_BLOB password, - fstring dev, NTSTATUS *status) + const char *pdev, NTSTATUS *status) { struct passwd *pass = NULL; BOOL guest = False; connection_struct *conn; struct stat st; fstring user; + fstring dev; + *user = 0; + fstrcpy(dev, pdev); if (NT_STATUS_IS_ERR(*status = share_sanity_checks(snum, dev))) { return NULL; @@ -717,7 +720,7 @@ static connection_struct *make_connection_snum(int snum, user_struct *vuser, **************************************************************************************/ connection_struct *make_connection_with_chdir(const char *service_in, DATA_BLOB password, - char *dev, uint16 vuid, NTSTATUS *status) + const char *dev, uint16 vuid, NTSTATUS *status) { connection_struct *conn = NULL; @@ -747,13 +750,16 @@ connection_struct *make_connection_with_chdir(const char *service_in, DATA_BLOB ****************************************************************************/ connection_struct *make_connection(const char *service_in, DATA_BLOB password, - fstring dev, uint16 vuid, NTSTATUS *status) + const char *pdev, uint16 vuid, NTSTATUS *status) { uid_t euid; user_struct *vuser = NULL; fstring service; + fstring dev; int snum = -1; + fstrcpy(dev, pdev); + /* This must ONLY BE CALLED AS ROOT. As it exits this function as root. */ if (!non_root_mode() && (euid = geteuid()) != 0) { DEBUG(0,("make_connection: PANIC ERROR. Called as nonroot (%u)\n", (unsigned int)euid )); -- cgit From e051789ac6cc05f8a643ea81e887d3b969cf3a27 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Mar 2003 02:59:18 +0000 Subject: Run test 10000 times to make measurement easier. --- source/torture/t_strcmp.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/source/torture/t_strcmp.c b/source/torture/t_strcmp.c index b510d64cf08..1d26ad22dec 100644 --- a/source/torture/t_strcmp.c +++ b/source/torture/t_strcmp.c @@ -8,14 +8,19 @@ int main(int argc, char *argv[]) { + int i, ret; + if (argc != 3) { fprintf(stderr, "usage: %s STRING1 STRING2\n" "Compares two strings, prints the results of StrCaseCmp\n", argv[0]); return 2; } - - printf("%d\n", StrCaseCmp(argv[1], argv[2])); + + for (i = 0; i < 10000; i++) + ret = StrCaseCmp(argv[1], argv[2]); + + printf("%d\n", ret); return 0; } -- cgit From 9a8d50d45c352a22b9b67adb1548482ab2c3265c Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Mar 2003 03:14:28 +0000 Subject: Ignore .po and .po32 files. --- source/registry/reg_objects.po | Bin 0 -> 299224 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 source/registry/reg_objects.po diff --git a/source/registry/reg_objects.po b/source/registry/reg_objects.po new file mode 100644 index 00000000000..49e1695917a Binary files /dev/null and b/source/registry/reg_objects.po differ -- cgit From 705db537c5c8495ce39d7ca609de4a2ee1bba6a5 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Mar 2003 03:14:54 +0000 Subject: Ignore t_strcmp test case. --- source/bin/.cvsignore | 1 + 1 file changed, 1 insertion(+) diff --git a/source/bin/.cvsignore b/source/bin/.cvsignore index f03ce48d2c4..058397a52c0 100644 --- a/source/bin/.cvsignore +++ b/source/bin/.cvsignore @@ -37,6 +37,7 @@ smbtorture smbtree smbumount swat +t_strcmp t_stringoverflow talloctort tdbbackup -- cgit From a3f90cc6ab2735296ca482c8e29dc1d83804e205 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Mar 2003 03:39:16 +0000 Subject: Remove this .po file from the repository. I meant to add a cvsignore file that ignored it, but I slipped. --- source/registry/reg_objects.po | Bin 299224 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 source/registry/reg_objects.po diff --git a/source/registry/reg_objects.po b/source/registry/reg_objects.po deleted file mode 100644 index 49e1695917a..00000000000 Binary files a/source/registry/reg_objects.po and /dev/null differ -- cgit From 00b147882221dbb92673bc19fb0572718e3b10c6 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Mar 2003 03:41:18 +0000 Subject: Add the correct file :-( to ignore .po and .po32 files. --- source/registry/.cvsignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 source/registry/.cvsignore diff --git a/source/registry/.cvsignore b/source/registry/.cvsignore new file mode 100644 index 00000000000..22beab949c5 --- /dev/null +++ b/source/registry/.cvsignore @@ -0,0 +1,2 @@ +.po +.po32 -- cgit From ef5bdb1700f6033f342d6bb32a8d0ee240dd34b8 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Mar 2003 03:42:27 +0000 Subject: A new STF test case! This one checks strcasecmp correctness for various strings. --- source/stf/strings.py | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100755 source/stf/strings.py diff --git a/source/stf/strings.py b/source/stf/strings.py new file mode 100755 index 00000000000..fb26c2f9e56 --- /dev/null +++ b/source/stf/strings.py @@ -0,0 +1,57 @@ +#! /usr/bin/python + +# Comfychair test cases for Samba string functions. + +# Copyright (C) 2003 by Martin Pool +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +# USA + +import sys, re, comfychair + +def signum(a): + if a < 0: + return -1 + elif a > 0: + return +1 + else: + return 0 + + +class StrCaseCmp_Ascii_Tests(comfychair.TestCase): + """String comparisons in simple ASCII""" + def run_strcmp(self, a, b, expect): + out = self.runcmd('t_strcmp \"%s\" \"%s\"' % (a, b)) + if signum(int(out)) != expect: + self.fail("comparison failed:\n" + " a=%s\n" + " b=%s\n" + " expected=%s\n" + " result=%s\n" % (`a`, `b`, `expect`, `out`)) + + def runtest(self): + cases = [('hello', 'hello', 0), + ('hello', 'goodbye', +1), + ('goodbye', 'hello', -1), + ('hell', 'hello', -1)] + for a, b, expect in cases: + self.run_strcmp(a, b, expect) + + +tests = [StrCaseCmp_Ascii_Tests] + +if __name__ == '__main__': + comfychair.main(tests) + -- cgit From 27c1626ae0a30bf0f01ea6d6df5836425e6f9547 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Mar 2003 03:55:14 +0000 Subject: Get rid of "make check" targets that call nonexistent code. Add in new ones that run STF, after setting up a PATH and LD_LIBRARY_PATH that will let them find samba in the build directory. LD_LIBRARY_PATH is probably not portable but without libtool I don't know a portable way to do it. Perhaps the simple solution is just to link these things statically? --- source/Makefile.in | 45 +++++++++++++++------------------------------ 1 file changed, 15 insertions(+), 30 deletions(-) diff --git a/source/Makefile.in b/source/Makefile.in index 8d7276b240a..6964a2bc829 100644 --- a/source/Makefile.in +++ b/source/Makefile.in @@ -1260,33 +1260,18 @@ config.status: $(srcdir)/configure Makefile: $(srcdir)/Makefile.in config.status @echo "WARNING: you need to run ./config.status" -test_prefix=/tmp/test-samba -# Run regression suite using the external "satyr" framework -check: - @echo "** Sorry, samba self-test without installation does not work " - @echo "** yet. Please try specifying a scratch directory to" - @echo "** ./configure --prefix DIR" - @echo "** then run \"make install installcheck\"" - exit 1 - -# -rm -rf $(test_prefix)/lib -# mkdir $(test_prefix)/lib -p ./testdir -# PATH=$(builddir)/bin:$(PATH) \ -# SATYR_SUITEDIR=../testsuite/build_farm/ prefix=$(test_prefix) \ -# testdir=./testdir $(SHELL) satyr - -# Run regression suite on the installed version. - -# `installcheck' -# Perform installation tests (if any). The user must build and -# install the program before running the tests. You should not -# assume that `$(bindir)' is in the search path. - -dangerous-installcheck: - mkdir -p $(BASEDIR)/lib - mkdir -p $(BASEDIR)/var - PATH=$(BINDIR):$(SBINDIR):$(PATH) \ - SATYR_DISCOURAGE=1 \ - SATYR_SUITEDIR=../testsuite/satyr/ prefix=$(BASEDIR) \ - LIBSMB_PROG=$(SBINDIR)/smbd \ - testdir=./testdir $(SHELL) satyr +###################################################################### +# Samba Testing Framework + +# FIXME: LD_LIBRARY_PATH is not portable, but in the absence of +# libtool I don't know a better way to do it. Perhaps we should fix +# libbigballofmud to link statically? + +check: check-programs + LD_LIBRARY_PATH="`pwd`/bin:$$LD_LIBRARY_PATH" \ + PATH="`pwd`/bin:$$PATH" \ + python stf/standardcheck.py + +# These are called by the test suite +check-programs: bin/t_strcmp + -- cgit From a5a2cc9ae9668e66d39beed1fdad4df0405fa4da Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Mar 2003 03:56:50 +0000 Subject: Add an STF module that defines the tests to be run by "make check". --- source/stf/standardcheck.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 source/stf/standardcheck.py diff --git a/source/stf/standardcheck.py b/source/stf/standardcheck.py new file mode 100644 index 00000000000..5af1c78376d --- /dev/null +++ b/source/stf/standardcheck.py @@ -0,0 +1,33 @@ +#! /usr/bin/python + +# Comfychair test cases for Samba + +# Copyright (C) 2003 by Martin Pool +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +# USA + +"""These tests are run by Samba's "make check".""" + +import strings, comfychair + +# There should not be any actual tests in here: this file just serves +# to define the ones run by default. They're imported from other +# modules. + +tests = strings.tests + +if __name__ == '__main__': + comfychair.main(tests) -- cgit From ac6027884b04943fac3d469ff6542d62293f46cc Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Mar 2003 08:32:42 +0000 Subject: Add additional StrCaseCmp test cases. Doc. --- source/stf/strings.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/source/stf/strings.py b/source/stf/strings.py index fb26c2f9e56..a67e1370588 100755 --- a/source/stf/strings.py +++ b/source/stf/strings.py @@ -42,16 +42,28 @@ class StrCaseCmp_Ascii_Tests(comfychair.TestCase): " result=%s\n" % (`a`, `b`, `expect`, `out`)) def runtest(self): + # A, B, strcasecmp(A, B) cases = [('hello', 'hello', 0), ('hello', 'goodbye', +1), ('goodbye', 'hello', -1), - ('hell', 'hello', -1)] + ('hell', 'hello', -1), + ('', '', 0), + ('a', '', +1), + ('', 'a', -1), + ('a', 'A', 0), + ('aa', 'aA', 0), + ('Aa', 'aa', 0), + ('longstring ' * 100, 'longstring ' * 100, 0), + ('longstring ' * 100, 'longstring ' * 100 + 'a', -1), + ('longstring ' * 100 + 'a', 'longstring ' * 100, +1), + ] for a, b, expect in cases: self.run_strcmp(a, b, expect) - +# Define the tests exported by this module tests = [StrCaseCmp_Ascii_Tests] +# Handle execution of this file as a main program if __name__ == '__main__': comfychair.main(tests) -- cgit From 80bfa7efd65af02108e3ef1e2b2952cda6dc5999 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 19 Mar 2003 08:36:42 +0000 Subject: Fix debug message not to use an uninitialized variable. Volker --- source/nsswitch/winbindd_user.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/nsswitch/winbindd_user.c b/source/nsswitch/winbindd_user.c index ee05543d30c..d2bd231918a 100644 --- a/source/nsswitch/winbindd_user.c +++ b/source/nsswitch/winbindd_user.c @@ -451,7 +451,6 @@ enum winbindd_result winbindd_getpwent(struct winbindd_cli_state *state) for (i = 0; i < num_users; i++) { struct getpwent_user *name_list = NULL; - fstring domain_user_name; uint32 result; /* Do we need to fetch another chunk of users? */ @@ -512,7 +511,7 @@ enum winbindd_result winbindd_getpwent(struct winbindd_cli_state *state) } else DEBUG(1, ("could not lookup domain user %s\n", - domain_user_name)); + name_list[ent->sam_entry_index].name)); } /* Out of domains */ -- cgit From f0f1518fc450834725902e9cdf33fb8d35f99360 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 19 Mar 2003 09:38:47 +0000 Subject: Put group mapping into LDAP. Volker --- examples/LDAP/samba.schema | 25 +++ source/passdb/pdb_ldap.c | 502 ++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 526 insertions(+), 1 deletion(-) diff --git a/examples/LDAP/samba.schema b/examples/LDAP/samba.schema index f71c344e067..71689237e8d 100644 --- a/examples/LDAP/samba.schema +++ b/examples/LDAP/samba.schema @@ -110,6 +110,19 @@ attributetype ( 1.3.6.1.4.1.7165.2.1.15 NAME 'primaryGroupID' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +## +## group mapping attributes +## +attributetype ( 1.3.6.1.4.1.7165.2.1.19 NAME 'ntGroupType' + DESC 'NT Group Type' + EQUALITY caseIgnoreIA5Match + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) + +attributetype ( 1.3.6.1.4.1.7165.2.1.20 NAME 'ntSid' + DESC 'Security ID' + EQUALITY caseIgnoreIA5Match + SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} SINGLE-VALUE ) + ## ## The smbPasswordEntry objectclass has been depreciated in favor of the ## sambaAccount objectclass @@ -139,6 +152,18 @@ objectclass ( 1.3.6.1.4.1.7165.2.2.3 NAME 'sambaAccount' SUP top AUXILIARY displayName $ smbHome $ homeDrive $ scriptPath $ profilePath $ description $ userWorkstations $ primaryGroupID $ domain )) +############################################################################ +## +## Please note that this schema is really experimental and might +## change before the 3.0 release. +## +############################################################################ + +objectclass ( 1.3.6.1.4.1.7165.2.2.4 NAME 'sambaGroupMapping' SUP top AUXILIARY + DESC 'Samba Group Mapping' + MUST ( gidNumber $ ntSid $ ntGroupType ) + MAY ( displayName $ description )) + ## ## Used for Winbind experimentation ## diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c index 46e09943793..d512a4fda32 100644 --- a/source/passdb/pdb_ldap.c +++ b/source/passdb/pdb_ldap.c @@ -786,8 +786,11 @@ static void make_a_mod (LDAPMod *** modlist, int modop, const char *attribute, c if (attribute == NULL || *attribute == '\0') return; - if (value == NULL || *value == '\0') +#if 0 + /* Why do we need this??? -- vl */ + if (value == NULL || *value == '\0') return; +#endif if (mods == NULL) { @@ -1987,6 +1990,495 @@ static void free_private_data(void **vp) /* No need to free any further, as it is talloc()ed */ } +static const char *group_attr[] = {"gid", "ntSid", "ntGroupType", + "gidNumber", + "displayName", "description", + NULL }; + +static int ldapsam_search_one_group (struct ldapsam_privates *ldap_state, + const char *filter, + LDAPMessage ** result) +{ + int scope = LDAP_SCOPE_SUBTREE; + int rc; + + DEBUG(2, ("ldapsam_search_one_group: searching for:[%s]\n", filter)); + + rc = ldapsam_search(ldap_state, lp_ldap_suffix (), scope, + filter, group_attr, 0, result); + + if (rc != LDAP_SUCCESS) { + DEBUG(0, ("ldapsam_search_one_group: " + "Problem during the LDAP search: %s\n", + ldap_err2string(rc))); + DEBUG(3, ("ldapsam_search_one_group: Query was: %s, %s\n", + lp_ldap_suffix(), filter)); + } + + return rc; +} + +static BOOL init_group_from_ldap(struct ldapsam_privates *ldap_state, + GROUP_MAP *map, LDAPMessage *entry) +{ + pstring temp; + + if (ldap_state == NULL || map == NULL || entry == NULL || + ldap_state->ldap_struct == NULL) { + DEBUG(0, ("init_group_from_ldap: NULL parameters found!\n")); + return False; + } + + if (!get_single_attribute(ldap_state->ldap_struct, entry, "gidNumber", + temp)) { + DEBUG(0, ("Mandatory attribute gidNumber not found\n")); + return False; + } + DEBUG(2, ("Entry found for group: %s\n", temp)); + + map->gid = (uint32)atol(temp); + + if (!get_single_attribute(ldap_state->ldap_struct, entry, "ntSid", + temp)) { + DEBUG(0, ("Mandatory attribute ntSid not found\n")); + return False; + } + string_to_sid(&map->sid, temp); + + if (!get_single_attribute(ldap_state->ldap_struct, entry, "ntGroupType", + temp)) { + DEBUG(0, ("Mandatory attribute ntGroupType not found\n")); + return False; + } + map->sid_name_use = (uint32)atol(temp); + + if ((map->sid_name_use < SID_NAME_USER) || + (map->sid_name_use > SID_NAME_UNKNOWN)) { + DEBUG(0, ("Unknown Group type: %d\n", map->sid_name_use)); + return False; + } + + if (!get_single_attribute(ldap_state->ldap_struct, entry, "displayName", + temp)) { + DEBUG(3, ("Attribute displayName not found\n")); + temp[0] = '\0'; + } + fstrcpy(map->nt_name, temp); + + if (!get_single_attribute(ldap_state->ldap_struct, entry, "description", + temp)) { + DEBUG(3, ("Attribute description not found\n")); + temp[0] = '\0'; + } + fstrcpy(map->comment, temp); + + map->systemaccount = 0; + init_privilege(&map->priv_set); + + return True; +} + +static BOOL init_ldap_from_group(struct ldapsam_privates *ldap_state, + LDAPMod ***mods, int ldap_op, + const GROUP_MAP *map) +{ + pstring tmp; + + if (mods == NULL || map == NULL) { + DEBUG(0, ("init_ldap_from_group: NULL parameters found!\n")); + return False; + } + + *mods = NULL; + + sid_to_string(tmp, &map->sid); + make_a_mod(mods, ldap_op, "ntSid", tmp); + + snprintf(tmp, sizeof(tmp)-1, "%i", map->sid_name_use); + make_a_mod(mods, ldap_op, "ntGroupType", tmp); + + make_a_mod(mods, ldap_op, "displayName", map->nt_name); + make_a_mod(mods, ldap_op, "description", map->comment); + + return True; +} + +static NTSTATUS ldapsam_getgroup(struct pdb_methods *methods, + const char *filter, + GROUP_MAP *map) +{ + struct ldapsam_privates *ldap_state = + (struct ldapsam_privates *)methods->private_data; + LDAPMessage *result; + LDAPMessage *entry; + int count; + + if (ldapsam_search_one_group(ldap_state, filter, &result) + != LDAP_SUCCESS) { + return NT_STATUS_NO_SUCH_GROUP; + } + + count = ldap_count_entries(ldap_state->ldap_struct, result); + + if (count < 1) { + DEBUG(4, ("Did not find group for filter %s\n", filter)); + return NT_STATUS_NO_SUCH_GROUP; + } + + if (count > 1) { + DEBUG(1, ("Duplicate entries for filter %s: count=%d\n", + filter, count)); + return NT_STATUS_NO_SUCH_GROUP; + } + + entry = ldap_first_entry(ldap_state->ldap_struct, result); + + if (!entry) { + ldap_msgfree(result); + return NT_STATUS_UNSUCCESSFUL; + } + + if (!init_group_from_ldap(ldap_state, map, entry)) { + DEBUG(1, ("init_group_from_ldap failed for group filter %s\n", + filter)); + ldap_msgfree(result); + return NT_STATUS_NO_SUCH_GROUP; + } + + ldap_msgfree(result); + return NT_STATUS_OK; +} + +static NTSTATUS ldapsam_getgrsid(struct pdb_methods *methods, GROUP_MAP *map, + DOM_SID sid, BOOL with_priv) +{ + pstring filter; + + snprintf(filter, sizeof(filter)-1, + "(&(objectClass=sambaGroupMapping)(ntSid=%s))", + sid_string_static(&sid)); + + return ldapsam_getgroup(methods, filter, map); +} + +static NTSTATUS ldapsam_getgrgid(struct pdb_methods *methods, GROUP_MAP *map, + gid_t gid, BOOL with_priv) +{ + pstring filter; + + snprintf(filter, sizeof(filter)-1, + "(&(objectClass=sambaGroupMapping)(gidNumber=%d))", + gid); + + return ldapsam_getgroup(methods, filter, map); +} + +static NTSTATUS ldapsam_getgrnam(struct pdb_methods *methods, GROUP_MAP *map, + char *name, BOOL with_priv) +{ + pstring filter; + + /* TODO: Escaping of name? */ + + snprintf(filter, sizeof(filter)-1, + "(&(objectClass=sambaGroupMapping)(displayName=%s))", + name); + + return ldapsam_getgroup(methods, filter, map); +} + +static int ldapsam_search_one_group_by_gid(struct ldapsam_privates *ldap_state, + gid_t gid, + LDAPMessage **result) +{ + pstring filter; + + snprintf(filter, sizeof(filter)-1, + "(&(objectClass=posixGroup)(gidNumber=%i))", gid); + + return ldapsam_search_one_group(ldap_state, filter, result); +} + +static NTSTATUS ldapsam_add_group_mapping_entry(struct pdb_methods *methods, + GROUP_MAP *map) +{ + struct ldapsam_privates *ldap_state = + (struct ldapsam_privates *)methods->private_data; + LDAPMessage *result = NULL; + LDAPMod **mods = NULL; + + char *tmp; + pstring dn; + LDAPMessage *entry; + + GROUP_MAP dummy; + + int rc; + + if (NT_STATUS_IS_OK(ldapsam_getgrgid(methods, &dummy, + map->gid, False))) { + DEBUG(0, ("Group %i already exists in LDAP\n", map->gid)); + return NT_STATUS_UNSUCCESSFUL; + } + + rc = ldapsam_search_one_group_by_gid(ldap_state, map->gid, &result); + if (rc != LDAP_SUCCESS) { + return NT_STATUS_UNSUCCESSFUL; + } + + if (ldap_count_entries(ldap_state->ldap_struct, result) != 1) { + DEBUG(2, ("Group %i must exist exactly once in LDAP\n", + map->gid)); + ldap_msgfree(result); + return NT_STATUS_UNSUCCESSFUL; + } + + entry = ldap_first_entry(ldap_state->ldap_struct, result); + tmp = ldap_get_dn(ldap_state->ldap_struct, entry); + pstrcpy(dn, tmp); + ldap_memfree(tmp); + ldap_msgfree(result); + + if (!init_ldap_from_group(ldap_state, &mods, LDAP_MOD_ADD, map)) { + DEBUG(0, ("init_ldap_from_group failed!\n")); + ldap_mods_free(mods, 1); + return NT_STATUS_UNSUCCESSFUL; + } + + if (mods == NULL) { + DEBUG(0, ("mods is empty\n")); + return NT_STATUS_UNSUCCESSFUL; + } + + make_a_mod(&mods, LDAP_MOD_ADD, "objectClass", + "sambaGroupMapping"); + + rc = ldapsam_modify(ldap_state, dn, mods); + ldap_mods_free(mods, 1); + + if (rc != LDAP_SUCCESS) { + DEBUG(0, ("failed to modify group %i\n", map->gid)); + return NT_STATUS_UNSUCCESSFUL; + } + + DEBUG(2, ("successfully modified group %i in LDAP\n", map->gid)); + return NT_STATUS_OK; +} + +static NTSTATUS ldapsam_update_group_mapping_entry(struct pdb_methods *methods, + GROUP_MAP *map) +{ + struct ldapsam_privates *ldap_state = + (struct ldapsam_privates *)methods->private_data; + int rc; + char *dn; + LDAPMessage *result; + LDAPMessage *entry; + LDAPMod **mods; + + if (!init_ldap_from_group(ldap_state, &mods, LDAP_MOD_REPLACE, map)) { + DEBUG(0, ("init_ldap_from_group failed\n")); + return NT_STATUS_UNSUCCESSFUL; + } + + if (mods == NULL) { + DEBUG(4, ("mods is empty: nothing to do\n")); + return NT_STATUS_UNSUCCESSFUL; + } + + rc = ldapsam_search_one_group_by_gid(ldap_state, map->gid, &result); + + if (rc != LDAP_SUCCESS) { + ldap_mods_free(mods, 1); + return NT_STATUS_UNSUCCESSFUL; + } + + if (ldap_count_entries(ldap_state->ldap_struct, result) == 0) { + DEBUG(0, ("No group to modify!\n")); + ldap_msgfree(result); + ldap_mods_free(mods, 1); + return NT_STATUS_UNSUCCESSFUL; + } + + entry = ldap_first_entry(ldap_state->ldap_struct, result); + dn = ldap_get_dn(ldap_state->ldap_struct, entry); + ldap_msgfree(result); + + rc = ldapsam_modify(ldap_state, dn, mods); + + ldap_mods_free(mods, 1); + + if (rc != LDAP_SUCCESS) { + DEBUG(0, ("failed to modify group %i\n", map->gid)); + } + + DEBUG(2, ("successfully modified group %i in LDAP\n", map->gid)); + return NT_STATUS_OK; +} + +static NTSTATUS ldapsam_delete_group_mapping_entry(struct pdb_methods *methods, + DOM_SID sid) +{ + struct ldapsam_privates *ldap_state = + (struct ldapsam_privates *)methods->private_data; + pstring sidstring, filter; + int rc; + char *dn; + LDAPMessage *result; + LDAPMessage *entry; + LDAPMod **mods; + + sid_to_string(sidstring, &sid); + snprintf(filter, sizeof(filter)-1, + "(&(objectClass=sambaGroupMapping)(ntSid=%s))", sidstring); + + rc = ldapsam_search_one_group(ldap_state, filter, &result); + + if (rc != LDAP_SUCCESS) { + return NT_STATUS_UNSUCCESSFUL; + } + + if (ldap_count_entries(ldap_state->ldap_struct, result) != 1) { + DEBUG(0, ("Group must exist exactly once\n")); + ldap_msgfree(result); + return NT_STATUS_UNSUCCESSFUL; + } + + entry = ldap_first_entry(ldap_state->ldap_struct, result); + dn = ldap_get_dn(ldap_state->ldap_struct, entry); + ldap_msgfree(result); + + mods = NULL; + make_a_mod(&mods, LDAP_MOD_DELETE, "objectClass", "sambaGroupMapping"); + make_a_mod(&mods, LDAP_MOD_DELETE, "ntSid", NULL); + make_a_mod(&mods, LDAP_MOD_DELETE, "ntGroupType", NULL); + make_a_mod(&mods, LDAP_MOD_DELETE, "description", NULL); + make_a_mod(&mods, LDAP_MOD_DELETE, "displayName", NULL); + + rc = ldapsam_modify(ldap_state, dn, mods); + + ldap_mods_free(mods, 1); + + if (rc != LDAP_SUCCESS) { + DEBUG(0, ("failed to delete group %s\n", sidstring)); + } + + DEBUG(2, ("successfully delete group mapping %s in LDAP\n", + sidstring)); + return NT_STATUS_OK; +} + +static NTSTATUS ldapsam_setsamgrent(struct pdb_methods *my_methods, + BOOL update) +{ + struct ldapsam_privates *ldap_state = + (struct ldapsam_privates *)my_methods->private_data; + const char *filter = "(objectClass=sambaGroupMapping)"; + int rc; + + rc = ldapsam_search(ldap_state, lp_ldap_suffix(), + LDAP_SCOPE_SUBTREE, filter, + group_attr, 0, &ldap_state->result); + + if (rc != LDAP_SUCCESS) { + DEBUG(0, ("LDAP search failed: %s\n", ldap_err2string(rc))); + DEBUG(3, ("Query was: %s, %s\n", lp_ldap_suffix(), filter)); + ldap_msgfree(ldap_state->result); + ldap_state->result = NULL; + return NT_STATUS_UNSUCCESSFUL; + } + + DEBUG(2, ("ldapsam_setsampwent: %d entries in the base!\n", + ldap_count_entries(ldap_state->ldap_struct, + ldap_state->result))); + + ldap_state->entry = ldap_first_entry(ldap_state->ldap_struct, + ldap_state->result); + ldap_state->index = 0; + + return NT_STATUS_OK; +} + +static void ldapsam_endsamgrent(struct pdb_methods *my_methods) +{ + return ldapsam_endsampwent(my_methods); +} + +static NTSTATUS ldapsam_getsamgrent(struct pdb_methods *my_methods, + GROUP_MAP *map) +{ + NTSTATUS ret = NT_STATUS_UNSUCCESSFUL; + struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data; + BOOL bret = False; + + /* The rebind proc needs this *HACK*. We are not multithreaded, so + this will work, but it's not nice. */ + static_ldap_state = ldap_state; + + while (!bret) { + if (!ldap_state->entry) + return ret; + + ldap_state->index++; + bret = init_group_from_ldap(ldap_state, map, ldap_state->entry); + + ldap_state->entry = ldap_next_entry(ldap_state->ldap_struct, + ldap_state->entry); + } + + return NT_STATUS_OK; +} + +static NTSTATUS ldapsam_enum_group_mapping(struct pdb_methods *methods, + enum SID_NAME_USE sid_name_use, + GROUP_MAP **rmap, int *num_entries, + BOOL unix_only, BOOL with_priv) +{ + GROUP_MAP map; + GROUP_MAP *mapt; + int entries = 0; + NTSTATUS nt_status; + + *num_entries = 0; + *rmap = NULL; + + if (!NT_STATUS_IS_OK(ldapsam_setsamgrent(methods, False))) { + DEBUG(0, ("Unable to open passdb\n")); + return NT_STATUS_ACCESS_DENIED; + } + + while (NT_STATUS_IS_OK(nt_status = ldapsam_getsamgrent(methods, &map))) { + if (sid_name_use != SID_NAME_UNKNOWN && + sid_name_use != map.sid_name_use) { + DEBUG(11,("enum_group_mapping: group %s is not of the requested type\n", map.nt_name)); + continue; + } + if (unix_only==ENUM_ONLY_MAPPED && map.gid==-1) { + DEBUG(11,("enum_group_mapping: group %s is non mapped\n", map.nt_name)); + continue; + } + + mapt=(GROUP_MAP *)Realloc((*rmap), (entries+1)*sizeof(GROUP_MAP)); + if (!mapt) { + DEBUG(0,("enum_group_mapping: Unable to enlarge group map!\n")); + SAFE_FREE(*rmap); + return NT_STATUS_UNSUCCESSFUL; + } + else + (*rmap) = mapt; + + mapt[entries] = map; + + entries += 1; + + } + ldapsam_endsamgrent(methods); + + *num_entries = entries; + + return NT_STATUS_OK; +} + NTSTATUS pdb_init_ldapsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location) { NTSTATUS nt_status; @@ -2007,6 +2499,14 @@ NTSTATUS pdb_init_ldapsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, co (*pdb_method)->update_sam_account = ldapsam_update_sam_account; (*pdb_method)->delete_sam_account = ldapsam_delete_sam_account; + (*pdb_method)->getgrsid = ldapsam_getgrsid; + (*pdb_method)->getgrgid = ldapsam_getgrgid; + (*pdb_method)->getgrnam = ldapsam_getgrnam; + (*pdb_method)->add_group_mapping_entry = ldapsam_add_group_mapping_entry; + (*pdb_method)->update_group_mapping_entry = ldapsam_update_group_mapping_entry; + (*pdb_method)->delete_group_mapping_entry = ldapsam_delete_group_mapping_entry; + (*pdb_method)->enum_group_mapping = ldapsam_enum_group_mapping; + /* TODO: Setup private data and free */ ldap_state = talloc_zero(pdb_context->mem_ctx, sizeof(struct ldapsam_privates)); -- cgit From e69c061211e9c64201b54087d1381740d82cbbcd Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 19 Mar 2003 11:20:45 +0000 Subject: Remove py_samba.c experiment - it didn't work. --- source/python/py_samba.c | 56 ------------------------------------------------ source/python/setup.py | 13 +---------- 2 files changed, 1 insertion(+), 68 deletions(-) delete mode 100644 source/python/py_samba.c diff --git a/source/python/py_samba.c b/source/python/py_samba.c deleted file mode 100644 index c0ade12f65d..00000000000 --- a/source/python/py_samba.c +++ /dev/null @@ -1,56 +0,0 @@ -/* - Python wrappers for DCERPC/SMB client routines. - - Copyright (C) Tim Potter, 2002 - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -*/ - -#include "Python.h" -#include "python/py_common.h" - -/* - * Module initialisation - */ - -static PyObject *lsa_open_policy(PyObject *self, PyObject *args, - PyObject *kw) -{ - return NULL; -} - -static PyMethodDef samba_methods[] = { - { NULL } -}; - -static PyMethodDef cheepy_methods[] = { - { "open_policy", (PyCFunction)lsa_open_policy, METH_VARARGS|METH_KEYWORDS, - "Foo"}, - { NULL } -}; - -void initsamba(void) -{ - PyObject *module, *new_module, *dict; - - /* Initialise module */ - - module = Py_InitModule("samba", samba_methods); - dict = PyModule_GetDict(module); - - /* Do samba initialisation */ - - py_samba_init(); -} diff --git a/source/python/setup.py b/source/python/setup.py index 48487fee4d0..8bc8868a70c 100755 --- a/source/python/setup.py +++ b/source/python/setup.py @@ -177,20 +177,9 @@ setup( extra_compile_args = flags_list, extra_objects = obj_list), - # Moving to merge all individual extensions in to one big - # extension. This is to avoid the fact that each extension is 3MB - # in size due to the lack of proper depedency management in Samba. - - Extension(name = "samba", - sources = [samba_srcdir + "python/py_samba.c", - samba_srcdir + "python/py_common.c"], - libraries = lib_list, - library_dirs = ["/usr/kerberos/lib"], - extra_compile_args = flags_list, - extra_objects = obj_list), - # tdbpack/unpack extensions. Does not actually link to any Samba # code, although it implements a compatible data format. + Extension(name = "tdbpack", sources = [os.path.join(samba_srcdir, "python", "py_tdbpack.c")], extra_compile_args = ["-I."]) -- cgit From 57e5c2007b7390c06989b34c7ecf6b5f6f56a03b Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 19 Mar 2003 11:22:32 +0000 Subject: Add function prototype. --- source/python/py_srvsvc.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/python/py_srvsvc.h b/source/python/py_srvsvc.h index b440c32e13e..c5e71cb90f5 100644 --- a/source/python/py_srvsvc.h +++ b/source/python/py_srvsvc.h @@ -23,4 +23,8 @@ #include "python/py_common.h" +/* The following definitions come from python/py_srvsv.c */ + +BOOL py_from_SRV_INFO_101(PyObject **dict, SRV_INFO_101 *info); + #endif /* _PY_SRVSVC_H */ -- cgit From 6326b0f0b489334c672548a50740890a124988a2 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 19 Mar 2003 11:22:57 +0000 Subject: Removed unused variable. --- source/python/py_srvsvc_conv.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/python/py_srvsvc_conv.c b/source/python/py_srvsvc_conv.c index de43f070ed0..86c3761d0f4 100644 --- a/source/python/py_srvsvc_conv.c +++ b/source/python/py_srvsvc_conv.c @@ -33,8 +33,6 @@ static struct pyconv py_SRV_INFO_101[] = { BOOL py_from_SRV_INFO_101(PyObject **dict, SRV_INFO_101 *info) { - PyObject *obj; - *dict = from_struct(info, py_SRV_INFO_101); PyDict_SetItemString(*dict, "level", PyInt_FromLong(101)); -- cgit From 74c1cd0040890d24e6191d4cb0467e9f9d70f5dc Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 19 Mar 2003 11:25:21 +0000 Subject: Fix compiler warning. --- source/python/py_tdb.c | 8 ++++++++ source/python/py_winreg.h | 3 --- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/source/python/py_tdb.c b/source/python/py_tdb.c index e525422a304..37f64ce7802 100644 --- a/source/python/py_tdb.c +++ b/source/python/py_tdb.c @@ -27,6 +27,14 @@ */ #include "includes.h" + +/* This symbol is used in both includes.h and Python.h which causes an + annoying compiler warning. */ + +#ifdef HAVE_FSTAT +#undef HAVE_FSTAT +#endif + #include "Python.h" /* Tdb exception */ diff --git a/source/python/py_winreg.h b/source/python/py_winreg.h index e19674d2181..95d5fc6ea95 100644 --- a/source/python/py_winreg.h +++ b/source/python/py_winreg.h @@ -21,9 +21,6 @@ #ifndef _PY_WINREG_H #define _PY_WINREG_H -#include "includes.h" -#include "Python.h" - #include "python/py_common.h" #endif /* _PY_WINREG_H */ -- cgit From 54000fc3b0daee452f4d5bc7dad40757f1cf7c11 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 19 Mar 2003 11:26:01 +0000 Subject: GCC 3.x has deprecated multi-line string constants. --- source/python/py_lsa.c | 40 +++++----- source/python/py_spoolss.c | 163 +++++++++++++++++++------------------- source/python/py_srvsvc.c | 40 +++++----- source/python/py_tdbpack.c | 178 +++++++++++++++++++++--------------------- source/python/py_winbind.c | 190 ++++++++++++++++++++++----------------------- 5 files changed, 304 insertions(+), 307 deletions(-) diff --git a/source/python/py_lsa.c b/source/python/py_lsa.c index 22db29665a0..c063dcba81f 100644 --- a/source/python/py_lsa.c +++ b/source/python/py_lsa.c @@ -383,32 +383,32 @@ static PyMethodDef lsa_methods[] = { { "setup_logging", (PyCFunction)py_setup_logging, METH_VARARGS | METH_KEYWORDS, - "Set up debug logging. - -Initialises Samba's debug logging system. One argument is expected which -is a boolean specifying whether debugging is interactive and sent to stdout -or logged to a file. - -Example: - ->>> spoolss.setup_logging(interactive = 1)" }, + "Set up debug logging.\n" +"\n" +"Initialises Samba's debug logging system. One argument is expected which\n" +"is a boolean specifying whether debugging is interactive and sent to stdout\n" +"or logged to a file.\n" +"\n" +"Example:\n" +"\n" +">>> spoolss.setup_logging(interactive = 1)" }, { "get_debuglevel", (PyCFunction)get_debuglevel, METH_VARARGS, - "Set the current debug level. - -Example: - ->>> spoolss.get_debuglevel() -0" }, + "Set the current debug level.\n" +"\n" +"Example:\n" +"\n" +">>> spoolss.get_debuglevel()\n" +"0" }, { "set_debuglevel", (PyCFunction)set_debuglevel, METH_VARARGS, - "Get the current debug level. - -Example: - ->>> spoolss.set_debuglevel(10)" }, + "Get the current debug level.\n" +"\n" +"Example:\n" +"\n" +">>> spoolss.set_debuglevel(10)" }, { NULL } }; diff --git a/source/python/py_spoolss.c b/source/python/py_spoolss.c index 7b0a102b314..b8df5cbf113 100644 --- a/source/python/py_spoolss.c +++ b/source/python/py_spoolss.c @@ -33,22 +33,22 @@ static PyMethodDef spoolss_methods[] = { /* Open/close printer handles */ { "openprinter", (PyCFunction)spoolss_openprinter, METH_VARARGS | METH_KEYWORDS, - "Open a printer by name in UNC format. - -Optionally a dictionary of (domain, username, password) may be given in -which case they are used when opening the RPC pipe. An access mask may -also be given which defaults to MAXIMUM_ALLOWED_ACCESS. - -Example: - ->>> hnd = spoolss.openprinter(\"\\\\\\\\NPSD-PDC2\\\\meanie\")"}, + "Open a printer by name in UNC format.\n" +"\n" +"Optionally a dictionary of (domain, username, password) may be given in\n" +"which case they are used when opening the RPC pipe. An access mask may\n" +"also be given which defaults to MAXIMUM_ALLOWED_ACCESS.\n" +"\n" +"Example:\n" +"\n" +">>> hnd = spoolss.openprinter(\"\\\\\\\\NPSD-PDC2\\\\meanie\")"}, { "closeprinter", spoolss_closeprinter, METH_VARARGS, - "Close a printer handle opened with openprinter or addprinter. - -Example: - ->>> spoolss.closeprinter(hnd)"}, + "Close a printer handle opened with openprinter or addprinter.\n" +"\n" +"Example:\n" +"\n" +">>> spoolss.closeprinter(hnd)"}, { "addprinterex", (PyCFunction)spoolss_addprinterex, METH_VARARGS, "addprinterex()"}, @@ -57,76 +57,77 @@ Example: { "enumprinters", (PyCFunction)spoolss_enumprinters, METH_VARARGS | METH_KEYWORDS, - "Enumerate printers on a print server. - -Return a list of printers on a print server. The credentials, info level -and flags may be specified as keyword arguments. - -Example: - ->>> print spoolss.enumprinters(\"\\\\\\\\npsd-pdc2\") -[{'comment': 'i am a comment', 'printer_name': 'meanie', 'flags': 8388608, - 'description': 'meanie,Generic / Text Only,i am a location'}, - {'comment': '', 'printer_name': 'fileprint', 'flags': 8388608, - 'description': 'fileprint,Generic / Text Only,'}]"}, + "Enumerate printers on a print server.\n" +"\n" +"Return a list of printers on a print server. The credentials, info level\n" +"and flags may be specified as keyword arguments.\n" +"\n" +"Example:\n" +"\n" +">>> print spoolss.enumprinters(\"\\\\\\\\npsd-pdc2\")\n" +"[{'comment': 'i am a comment', 'printer_name': 'meanie', 'flags': 8388608, \n" +" 'description': 'meanie,Generic / Text Only,i am a location'}, \n" +" {'comment': '', 'printer_name': 'fileprint', 'flags': 8388608, \n" +" 'description': 'fileprint,Generic / Text Only,'}]"}, { "enumports", (PyCFunction)spoolss_enumports, METH_VARARGS | METH_KEYWORDS, - "Enumerate ports on a print server. - -Return a list of ports on a print server. - -Example: - ->>> print spoolss.enumports(\"\\\\\\\\npsd-pdc2\") -[{'name': 'LPT1:'}, {'name': 'LPT2:'}, {'name': 'COM1:'}, {'name': 'COM2:'}, - {'name': 'FILE:'}, {'name': '\\\\nautilus1\\zpekt3r'}]"}, + "Enumerate ports on a print server.\n" +"\n" +"Return a list of ports on a print server.\n" +"\n" +"Example:\n" +"\n" +">>> print spoolss.enumports(\"\\\\\\\\npsd-pdc2\")\n" +"[{'name': 'LPT1:'}, {'name': 'LPT2:'}, {'name': 'COM1:'}, \n" +"{'name': 'COM2:'}, {'name': 'FILE:'}, {'name': '\\\\nautilus1\\zpekt3r'}]"}, { "enumprinterdrivers", (PyCFunction)spoolss_enumprinterdrivers, METH_VARARGS | METH_KEYWORDS, - "Enumerate printer drivers on a print server. + "Enumerate printer drivers on a print server.\n" +"\n" +"Return a list of printer drivers."}, -Return a list of printer drivers."}, /* Miscellaneous other commands */ { "getprinterdriverdir", (PyCFunction)spoolss_getprinterdriverdir, METH_VARARGS | METH_KEYWORDS, - "Return printer driver directory. - -Return the printer driver directory for a given architecture. The -architecture defaults to \"Windows NT x86\"."}, + "Return printer driver directory.\n" +"\n" +"Return the printer driver directory for a given architecture. The\n" +"architecture defaults to \"Windows NT x86\"."}, /* Other stuff - this should really go into a samba config module but for the moment let's leave it here. */ { "setup_logging", (PyCFunction)py_setup_logging, METH_VARARGS | METH_KEYWORDS, - "Set up debug logging. - -Initialises Samba's debug logging system. One argument is expected which -is a boolean specifying whether debugging is interactive and sent to stdout -or logged to a file. - -Example: - ->>> spoolss.setup_logging(interactive = 1)" }, + "Set up debug logging.\n" +"\n" +"Initialises Samba's debug logging system. One argument is expected which\n" +"is a boolean specifying whether debugging is interactive and sent to stdout\n" +"or logged to a file.\n" +"\n" +"Example:\n" +"\n" +">>> spoolss.setup_logging(interactive = 1)" }, { "get_debuglevel", (PyCFunction)get_debuglevel, METH_VARARGS, - "Set the current debug level. - -Example: - ->>> spoolss.get_debuglevel() -0" }, + "Set the current debug level.\n" +"\n" +"Example:\n" +"\n" +">>> spoolss.get_debuglevel()\n" +"0" }, { "set_debuglevel", (PyCFunction)set_debuglevel, METH_VARARGS, - "Get the current debug level. - -Example: - ->>> spoolss.set_debuglevel(10)" }, + "Get the current debug level.\n" +"\n" +"Example:\n" +"\n" +">>> spoolss.set_debuglevel(10)" }, /* Printer driver routines */ @@ -157,16 +158,16 @@ static PyMethodDef spoolss_hnd_methods[] = { { "getprinter", (PyCFunction)spoolss_hnd_getprinter, METH_VARARGS | METH_KEYWORDS, - "Get printer information. - -Return a dictionary of print information. The info level defaults to 1. - -Example: - ->>> hnd.getprinter() -{'comment': 'i am a comment', 'printer_name': '\\\\NPSD-PDC2\\meanie', - 'description': '\\\\NPSD-PDC2\\meanie,Generic / Text Only,i am a location', - 'flags': 8388608}"}, + "Get printer information.\n" +"\n" +"Return a dictionary of print information. The info level defaults to 1.\n" +"\n" +"Example:\n" +"\n" +">>> hnd.getprinter()\n" +"{'comment': 'i am a comment', 'printer_name': '\\\\NPSD-PDC2\\meanie',\n" +" 'description': '\\\\NPSD-PDC2\\meanie,Generic / Text Only,i am a location',\n" +" 'flags': 8388608}"}, { "setprinter", (PyCFunction)spoolss_hnd_setprinter, METH_VARARGS | METH_KEYWORDS, @@ -176,24 +177,24 @@ Example: { "getprinterdriver", (PyCFunction)spoolss_hnd_getprinterdriver, METH_VARARGS | METH_KEYWORDS, - "Return printer driver information. - -Return a dictionary of printer driver information for the printer driver -bound to this printer."}, + "Return printer driver information.\n" +"\n" +"Return a dictionary of printer driver information for the printer driver\n" +"bound to this printer."}, /* Forms */ { "enumforms", (PyCFunction)spoolss_hnd_enumforms, METH_VARARGS | METH_KEYWORDS, - "Enumerate supported forms. - -Return a list of forms supported by this printer or print server."}, + "Enumerate supported forms.\n" +"\n" +"Return a list of forms supported by this printer or print server."}, { "setform", (PyCFunction)spoolss_hnd_setform, METH_VARARGS | METH_KEYWORDS, - "Set form data. - -Set the form given by the dictionary argument."}, + "Set form data.\n" +"\n" +"Set the form given by the dictionary argument."}, { "addform", (PyCFunction)spoolss_hnd_addform, METH_VARARGS | METH_KEYWORDS, diff --git a/source/python/py_srvsvc.c b/source/python/py_srvsvc.c index 8ec2430285f..3e5a42be234 100644 --- a/source/python/py_srvsvc.c +++ b/source/python/py_srvsvc.c @@ -158,32 +158,32 @@ static PyMethodDef srvsvc_methods[] = { { "setup_logging", (PyCFunction)py_setup_logging, METH_VARARGS | METH_KEYWORDS, - "Set up debug logging. - -Initialises Samba's debug logging system. One argument is expected which -is a boolean specifying whether debugging is interactive and sent to stdout -or logged to a file. - -Example: - ->>> srvsvc.setup_logging(interactive = 1)" }, + "Set up debug logging.\n" +"\n" +"Initialises Samba's debug logging system. One argument is expected which\n" +"is a boolean specifying whether debugging is interactive and sent to stdout\n" +"or logged to a file.\n" +"\n" +"Example:\n" +"\n" +">>> srvsvc.setup_logging(interactive = 1)" }, { "get_debuglevel", (PyCFunction)get_debuglevel, METH_VARARGS, - "Set the current debug level. - -Example: - ->>> srvsvc.get_debuglevel() -0" }, + "Set the current debug level.\n" +"\n" +"Example:\n" +"\n" +">>> srvsvc.get_debuglevel()\n" +"0" }, { "set_debuglevel", (PyCFunction)set_debuglevel, METH_VARARGS, - "Get the current debug level. - -Example: - ->>> srvsvc.set_debuglevel(10)" }, + "Get the current debug level.\n" +"\n" +"Example:\n" +"\n" +">>> srvsvc.set_debuglevel(10)" }, { NULL } }; diff --git a/source/python/py_tdbpack.c b/source/python/py_tdbpack.c index f0718b717ed..4fa97af8a3c 100644 --- a/source/python/py_tdbpack.c +++ b/source/python/py_tdbpack.c @@ -66,102 +66,98 @@ static PyObject *pytdbpack_bad_type(char ch, PyObject *val_obj); static const char * pytdbpack_docstring = -"Convert between Python values and Samba binary encodings. - -This module is conceptually similar to the standard 'struct' module, but it -uses both a different binary format and a different description string. - -Samba's encoding is based on that used inside DCE-RPC and SMB: a -little-endian, unpadded, non-self-describing binary format. It is intended -that these functions be as similar as possible to the routines in Samba's -tdb/tdbutil module, with appropriate adjustments for Python datatypes. - -Python strings are used to specify the format of data to be packed or -unpacked. - -String encodings are implied by the database format: they may be either DOS -codepage (currently hardcoded to 850), or Unix codepage (currently hardcoded -to be the same as the default Python encoding). - -tdbpack format strings: - - 'f': NUL-terminated string in codepage iso8859-1 - - 'P': same as 'f' - - 'F': NUL-terminated string in iso-8859-1 - - 'd': 4 byte little-endian unsigned number - - 'w': 2 byte little-endian unsigned number - - 'P': \"Pointer\" value -- in the subset of DCERPC used by Samba, this is - really just an \"exists\" or \"does not exist\" flag. The boolean - value of the Python object is used. - - 'B': 4-byte LE length, followed by that many bytes of binary data. - Corresponds to a Python integer giving the length, followed by a byte - string of the appropriate length. - - '$': Special flag indicating that the preceding format code should be - repeated while data remains. This is only supported for unpacking. - - Every code corresponds to a single Python object, except 'B' which - corresponds to two values (length and contents), and '$', which produces - however many make sense. -"; - +"Convert between Python values and Samba binary encodings.\n" +"\n" +"This module is conceptually similar to the standard 'struct' module, but it\n" +"uses both a different binary format and a different description string.\n" +"\n" +"Samba's encoding is based on that used inside DCE-RPC and SMB: a\n" +"little-endian, unpadded, non-self-describing binary format. It is intended\n" +"that these functions be as similar as possible to the routines in Samba's\n" +"tdb/tdbutil module, with appropriate adjustments for Python datatypes.\n" +"\n" +"Python strings are used to specify the format of data to be packed or\n" +"unpacked.\n" +"\n" +"String encodings are implied by the database format: they may be either DOS\n" +"codepage (currently hardcoded to 850), or Unix codepage (currently hardcoded\n" +"to be the same as the default Python encoding).\n" +"\n" +"tdbpack format strings:\n" +"\n" +" 'f': NUL-terminated string in codepage iso8859-1\n" +" \n" +" 'P': same as 'f'\n" +"\n" +" 'F': NUL-terminated string in iso-8859-1\n" +"\n" +" 'd': 4 byte little-endian unsigned number\n" +"\n" +" 'w': 2 byte little-endian unsigned number\n" +"\n" +" 'P': \"Pointer\" value -- in the subset of DCERPC used by Samba, this is\n" +" really just an \"exists\" or \"does not exist\" flag. The boolean\n" +" value of the Python object is used.\n" +" \n" +" 'B': 4-byte LE length, followed by that many bytes of binary data.\n" +" Corresponds to a Python integer giving the length, followed by a byte\n" +" string of the appropriate length.\n" +"\n" +" '$': Special flag indicating that the preceding format code should be\n" +" repeated while data remains. This is only supported for unpacking.\n" +"\n" +" Every code corresponds to a single Python object, except 'B' which\n" +" corresponds to two values (length and contents), and '$', which produces\n" +" however many make sense.\n"; static char const pytdbpack_doc[] = -"pack(format, values) -> buffer -Pack Python objects into Samba binary format according to format string. - -arguments: - format -- string of tdbpack format characters - values -- sequence of value objects corresponding 1:1 to format characters - -returns: - buffer -- string containing packed data - -raises: - IndexError -- if there are too few values for the format - ValueError -- if any of the format characters is illegal - TypeError -- if the format is not a string, or values is not a sequence, - or any of the values is of the wrong type for the corresponding - format character - -notes: - For historical reasons, it is not an error to pass more values than are consumed - by the format. -"; +"pack(format, values) -> buffer\n" +"Pack Python objects into Samba binary format according to format string.\n" +"\n" +"arguments:\n" +" format -- string of tdbpack format characters\n" +" values -- sequence of value objects corresponding 1:1 to format characters\n" +"\n" +"returns:\n" +" buffer -- string containing packed data\n" +"\n" +"raises:\n" +" IndexError -- if there are too few values for the format\n" +" ValueError -- if any of the format characters is illegal\n" +" TypeError -- if the format is not a string, or values is not a sequence,\n" +" or any of the values is of the wrong type for the corresponding\n" +" format character\n" +"\n" +"notes:\n" +" For historical reasons, it is not an error to pass more values than are consumed\n" +" by the format.\n"; static char const pytdbunpack_doc[] = -"unpack(format, buffer) -> (values, rest) -Unpack Samba binary data according to format string. - -arguments: - format -- string of tdbpack characters - buffer -- string of packed binary data - -returns: - 2-tuple of: - values -- sequence of values corresponding 1:1 to format characters - rest -- string containing data that was not decoded, or '' if the - whole string was consumed - -raises: - IndexError -- if there is insufficient data in the buffer for the - format (or if the data is corrupt and contains a variable-length - field extending past the end) - ValueError -- if any of the format characters is illegal - -notes: - Because unconsumed data is returned, you can feed it back in to the - unpacker to extract further fields. Alternatively, if you wish to modify - some fields near the start of the data, you may be able to save time by - only unpacking and repacking the necessary part. -"; +"unpack(format, buffer) -> (values, rest)\n" +"Unpack Samba binary data according to format string.\n" +"\n" +"arguments:\n" +" format -- string of tdbpack characters\n" +" buffer -- string of packed binary data\n" +"\n" +"returns:\n" +" 2-tuple of:\n" +" values -- sequence of values corresponding 1:1 to format characters\n" +" rest -- string containing data that was not decoded, or '' if the\n" +" whole string was consumed\n" +"\n" +"raises:\n" +" IndexError -- if there is insufficient data in the buffer for the\n" +" format (or if the data is corrupt and contains a variable-length\n" +" field extending past the end)\n" +" ValueError -- if any of the format characters is illegal\n" +"\n" +"notes:\n" +" Because unconsumed data is returned, you can feed it back in to the\n" +" unpacker to extract further fields. Alternatively, if you wish to modify\n" +" some fields near the start of the data, you may be able to save time by\n" +" only unpacking and repacking the necessary part.\n"; const char *pytdb_dos_encoding = "cp850"; diff --git a/source/python/py_winbind.c b/source/python/py_winbind.c index 20bbe9dba4b..db66be2321a 100644 --- a/source/python/py_winbind.c +++ b/source/python/py_winbind.c @@ -585,136 +585,136 @@ static PyMethodDef winbind_methods[] = { /* Name <-> SID conversion */ { "name_to_sid", (PyCFunction)py_name_to_sid, METH_VARARGS, - "name_to_sid(s) -> string - -Return the SID for a name. - -Example: - ->>> winbind.name_to_sid('FOO/Administrator') -'S-1-5-21-406022937-1377575209-526660263-500' " }, + "name_to_sid(s) -> string\n" +"\n" +"Return the SID for a name.\n" +"\n" +"Example:\n" +"\n" +">>> winbind.name_to_sid('FOO/Administrator')\n" +"'S-1-5-21-406022937-1377575209-526660263-500' " }, { "sid_to_name", (PyCFunction)py_sid_to_name, METH_VARARGS, - "sid_to_name(s) -> string - -Return the name for a SID. - -Example: - ->>> import winbind ->>> winbind.sid_to_name('S-1-5-21-406022937-1377575209-526660263-500') -'FOO/Administrator' " }, + "sid_to_name(s) -> string\n" +"\n" +"Return the name for a SID.\n" +"\n" +"Example:\n" +"\n" +">>> import winbind\n" +">>> winbind.sid_to_name('S-1-5-21-406022937-1377575209-526660263-500')\n" +"'FOO/Administrator' " }, /* Enumerate users/groups */ { "enum_domain_users", (PyCFunction)py_enum_domain_users, METH_VARARGS, - "enum_domain_users() -> list of strings - -Return a list of domain users. - -Example: - ->>> winbind.enum_domain_users() -['FOO/Administrator', 'FOO/anna', 'FOO/Anne Elk', 'FOO/build', -'FOO/foo', 'FOO/foo2', 'FOO/foo3', 'FOO/Guest', 'FOO/user1', -'FOO/whoops-ptang'] " }, + "enum_domain_users() -> list of strings\n" +"\n" +"Return a list of domain users.\n" +"\n" +"Example:\n" +"\n" +">>> winbind.enum_domain_users()\n" +"['FOO/Administrator', 'FOO/anna', 'FOO/Anne Elk', 'FOO/build', \n" +"'FOO/foo', 'FOO/foo2', 'FOO/foo3', 'FOO/Guest', 'FOO/user1', \n" +"'FOO/whoops-ptang'] " }, { "enum_domain_groups", (PyCFunction)py_enum_domain_groups, METH_VARARGS, - "enum_domain_groups() -> list of strings - -Return a list of domain groups. - -Example: - ->>> winbind.enum_domain_groups() -['FOO/cows', 'FOO/Domain Admins', 'FOO/Domain Guests', -'FOO/Domain Users'] " }, + "enum_domain_groups() -> list of strings\n" +"\n" +"Return a list of domain groups.\n" +"\n" +"Example:\n" +"\n" +">>> winbind.enum_domain_groups()\n" +"['FOO/cows', 'FOO/Domain Admins', 'FOO/Domain Guests', \n" +"'FOO/Domain Users'] " }, /* ID mapping */ { "uid_to_sid", (PyCFunction)py_uid_to_sid, METH_VARARGS, - "uid_to_sid(int) -> string - -Return the SID for a UNIX uid. - -Example: - ->>> winbind.uid_to_sid(10000) -'S-1-5-21-406022937-1377575209-526660263-500' " }, + "uid_to_sid(int) -> string\n" +"\n" +"Return the SID for a UNIX uid.\n" +"\n" +"Example:\n" +"\n" +">>> winbind.uid_to_sid(10000) \n" +"'S-1-5-21-406022937-1377575209-526660263-500' " }, { "gid_to_sid", (PyCFunction)py_gid_to_sid, METH_VARARGS, - "gid_to_sid(int) -> string - -Return the UNIX gid for a SID. - -Example: - ->>> winbind.gid_to_sid(10001) -'S-1-5-21-406022937-1377575209-526660263-512' " }, + "gid_to_sid(int) -> string\n" +"\n" +"Return the UNIX gid for a SID.\n" +"\n" +"Example:\n" +"\n" +">>> winbind.gid_to_sid(10001)\n" +"'S-1-5-21-406022937-1377575209-526660263-512' " }, { "sid_to_uid", (PyCFunction)py_sid_to_uid, METH_VARARGS, - "sid_to_uid(string) -> int - -Return the UNIX uid for a SID. - -Example: - ->>> winbind.sid_to_uid('S-1-5-21-406022937-1377575209-526660263-500') -10000 " }, + "sid_to_uid(string) -> int\n" +"\n" +"Return the UNIX uid for a SID.\n" +"\n" +"Example:\n" +"\n" +">>> winbind.sid_to_uid('S-1-5-21-406022937-1377575209-526660263-500')\n" +"10000 " }, { "sid_to_gid", (PyCFunction)py_sid_to_gid, METH_VARARGS, - "sid_to_gid(string) -> int - -Return the UNIX gid corresponding to a SID. - -Example: - ->>> winbind.sid_to_gid('S-1-5-21-406022937-1377575209-526660263-512') -10001 " }, + "sid_to_gid(string) -> int\n" +"\n" +"Return the UNIX gid corresponding to a SID.\n" +"\n" +"Example:\n" +"\n" +">>> winbind.sid_to_gid('S-1-5-21-406022937-1377575209-526660263-512')\n" +"10001 " }, /* Miscellaneous */ { "check_secret", (PyCFunction)py_check_secret, METH_VARARGS, - "check_secret() -> int - -Check the machine trust account password. The NT status is returned -with zero indicating success. " }, + "check_secret() -> int\n" +"\n" +"Check the machine trust account password. The NT status is returned\n" +"with zero indicating success. " }, { "enum_trust_dom", (PyCFunction)py_enum_trust_dom, METH_VARARGS, - "enum_trust_dom() -> list of strings - -Return a list of trusted domains. The domain the server is a member -of is not included. - -Example: - ->>> winbind.enum_trust_dom() -['NPSD-TEST2', 'SP2NDOM'] " }, + "enum_trust_dom() -> list of strings\n" +"\n" +"Return a list of trusted domains. The domain the server is a member \n" +"of is not included.\n" +"\n" +"Example:\n" +"\n" +">>> winbind.enum_trust_dom()\n" +"['NPSD-TEST2', 'SP2NDOM'] " }, /* PAM authorisation functions */ { "auth_plaintext", (PyCFunction)py_auth_plaintext, METH_VARARGS, - "auth_plaintext(s, s) -> int - -Authenticate a username and password using plaintext authentication. -The NT status code is returned with zero indicating success." }, + "auth_plaintext(s, s) -> int\n" +"\n" +"Authenticate a username and password using plaintext authentication.\n" +"The NT status code is returned with zero indicating success." }, { "auth_crap", (PyCFunction)py_auth_crap, METH_VARARGS, - "auth_crap(s, s) -> int - -Authenticate a username and password using the challenge/response -protocol. The NT status code is returned with zero indicating -success." }, + "auth_crap(s, s) -> int\n" +"\n" +"Authenticate a username and password using the challenge/response\n" +"protocol. The NT status code is returned with zero indicating\n" +"success." }, #if 0 /* Include when smbd_auth merged to HEAD */ { "auth_smbd", (PyCFunction)py_auth_crap, METH_VARARGS, - "auth_smbd(s, s) -> int - -Authenticate a username and password using the challenge/response -protocol but using the domain secret to prove we are root. The NT -status code is returned with zero indicating success." }, + "auth_smbd(s, s) -> int\n" +"\n" +"Authenticate a username and password using the challenge/response\n" +"protocol but using the domain secret to prove we are root. The NT \n" +"status code is returned with zero indicating success." }, #endif -- cgit From a5218499eb3f0a62cd663a06157591fbb0dfcbef Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 19 Mar 2003 14:56:50 +0000 Subject: If we fail, return an error code :-) Volker --- source/passdb/pdb_ldap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c index d512a4fda32..24d3b6f4482 100644 --- a/source/passdb/pdb_ldap.c +++ b/source/passdb/pdb_ldap.c @@ -2361,6 +2361,7 @@ static NTSTATUS ldapsam_delete_group_mapping_entry(struct pdb_methods *methods, if (rc != LDAP_SUCCESS) { DEBUG(0, ("failed to delete group %s\n", sidstring)); + return NT_STATUS_UNSUCCESSFUL; } DEBUG(2, ("successfully delete group mapping %s in LDAP\n", -- cgit From aa9b8382d38346cb3e94ddf2e7caf6d663034579 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 19 Mar 2003 14:58:20 +0000 Subject: Hey -- there is an error code NT_STATUS_CANNOT_DELETE :-) --- source/passdb/pdb_ldap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c index 24d3b6f4482..7b54a1d6e33 100644 --- a/source/passdb/pdb_ldap.c +++ b/source/passdb/pdb_ldap.c @@ -2361,7 +2361,7 @@ static NTSTATUS ldapsam_delete_group_mapping_entry(struct pdb_methods *methods, if (rc != LDAP_SUCCESS) { DEBUG(0, ("failed to delete group %s\n", sidstring)); - return NT_STATUS_UNSUCCESSFUL; + return NT_STATUS_CANNOT_DELETE; } DEBUG(2, ("successfully delete group mapping %s in LDAP\n", -- cgit From a4057885405a2dd5f78592f9a6da7f071b486fd0 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 19 Mar 2003 15:05:41 +0000 Subject: Regenerate --- docs/faq/clientapp.html | 257 --------------------- docs/faq/errors.html | 318 -------------------------- docs/faq/faq-clientapp.html | 257 +++++++++++++++++++++ docs/faq/faq-config.html | 163 ++++++++++++++ docs/faq/faq-errors.html | 329 +++++++++++++++++++++++++++ docs/faq/faq-features.html | 538 ++++++++++++++++++++++++++++++++++++++++++++ docs/faq/faq-general.html | 450 ++++++++++++++++++++++++++++++++++++ docs/faq/faq-install.html | 523 ++++++++++++++++++++++++++++++++++++++++++ docs/faq/faq-printing.html | 181 +++++++++++++++ docs/faq/general.html | 450 ------------------------------------ docs/faq/install.html | 525 ------------------------------------------ 11 files changed, 2441 insertions(+), 1550 deletions(-) delete mode 100644 docs/faq/clientapp.html delete mode 100644 docs/faq/errors.html create mode 100644 docs/faq/faq-clientapp.html create mode 100644 docs/faq/faq-config.html create mode 100644 docs/faq/faq-errors.html create mode 100644 docs/faq/faq-features.html create mode 100644 docs/faq/faq-general.html create mode 100644 docs/faq/faq-install.html create mode 100644 docs/faq/faq-printing.html delete mode 100644 docs/faq/general.html delete mode 100644 docs/faq/install.html diff --git a/docs/faq/clientapp.html b/docs/faq/clientapp.html deleted file mode 100644 index b48e2363778..00000000000 --- a/docs/faq/clientapp.html +++ /dev/null @@ -1,257 +0,0 @@ - -Specific client application problems

    Samba FAQ
    PrevNext

    Chapter 4. Specific client application problems

    4.1. MS Office Setup reports "Cannot change properties of '\MSOFFICE\SETUP.INI'"

    When installing MS Office on a Samba drive for which you have admin -user permissions, ie. admin users = username, you will find the -setup program unable to complete the installation.

    To get around this problem, do the installation without admin user -permissions The problem is that MS Office Setup checks that a file is -rdonly by trying to open it for writing.

    Admin users can always open a file for writing, as they run as root. -You just have to install as a non-admin user and then use "chown -R" -to fix the owner.

    4.2. How to use a Samba share as an administrative share for MS Office, etc.

    Microsoft Office products can be installed as an administrative installation -from which the application can either be run off the administratively installed -product that resides on a shared resource, or from which that product can be -installed onto workstation clients.

    The general mechanism for implementing an adminstrative installation involves -running X:\setup /A, where X is the drive letter of either CDROM or floppy.

    This installation process will NOT install the product for use per se, but -rather results in unpacking of the compressed distribution files into a target -shared folder. For this process you need write privilidge to the share and it -is desirable to enable file locking and share mode operation during this -process.

    Subsequent installation of MS Office from this share will FAIL unless certain -precautions are taken. This failure will be caused by share mode operation -which will prevent the MS Office installation process from re-opening various -dynamic link library files and will cause sporadic file not found problems.

    • As soon as the administrative installation (unpacking) has completed -set the following parameters on the share containing it:

      	[MSOP95]
      -		path = /where_you_put_it
      -		comment = Your comment
      -		volume = "The_CD_ROM_Label"
      -		read only = yes
      -		available = yes
      -		share modes = no
      -		locking = no
      -		browseable = yes
      -		public = yes

    • Now you are ready to run the setup program from the Microsoft Windows -workstation as follows: \\"Server_Name"\MSOP95\msoffice\setup

    4.3. Microsoft Access database opening errors

    Here are some notes on running MS-Access on a Samba drive from Stefan Kjellberg

    Opening a database in 'exclusive' mode does NOT work. Samba ignores r/w/share modes on file open.
    Make sure that you open the database as 'shared' and to 'lock modified records'
    Of course locking must be enabled for the particular share (smb.conf)


    PrevHomeNext
    Configuration problems Common errors
    \ No newline at end of file diff --git a/docs/faq/errors.html b/docs/faq/errors.html deleted file mode 100644 index 08da5e5db08..00000000000 --- a/docs/faq/errors.html +++ /dev/null @@ -1,318 +0,0 @@ - -Common errors
    Samba FAQ
    PrevNext

    Chapter 5. Common errors

    5.1. Not listening for calling name

    Session request failed (131,129) with myname=HOBBES destname=CALVIN
    -Not listening for calling name

    If you get this when talking to a Samba box then it means that your -global "hosts allow" or "hosts deny" settings are causing the Samba -server to refuse the connection.

    Look carefully at your "hosts allow" and "hosts deny" lines in the -global section of smb.conf.

    It can also be a problem with reverse DNS lookups not functioning -correctly, leading to the remote host identity not being able to -be confirmed, but that is less likely.

    5.2. System Error 1240

    System error 1240 means that the client is refusing to talk -to a non-encrypting server. Microsoft changed WinNT in service -pack 3 to refuse to connect to servers that do not support -SMB password encryption.

    There are two main solutions: -

    enable SMB password encryption in Samba. See the encryption part of -the samba HOWTO Collection
    disable this new behaviour in NT. See the section about -Windows NT in the chapter "Portability" of the samba HOWTO collection

    5.3. smbclient ignores -N !

    "When getting the list of shares available on a host using the command -smbclient -N -L -the program always prompts for the password if the server is a Samba server. -It also ignores the "-N" argument when querying some (but not all) of our -NT servers."

    No, it does not ignore -N, it is just that your server rejected the -null password in the connection, so smbclient prompts for a password -to try again.

    To get the behaviour that you probably want use smbclient -L host -U%

    This will set both the username and password to null, which is -an anonymous login for SMB. Using -N would only set the password -to null, and this is not accepted as an anonymous login for most -SMB servers.

    5.4. The data on the CD-Drive I've shared seems to be corrupted!

    Some OSes (notably Linux) default to auto detection of file type on -cdroms and do cr/lf translation. This is a very bad idea when use with -Samba. It causes all sorts of stuff ups.

    To overcome this problem use conv=binary when mounting the cdrom -before exporting it with Samba.

    5.5. Why can users access home directories of other users?

    "We are unable to keep individual users from mapping to any other user's -home directory once they have supplied a valid password! They only need -to enter their own password. I have not found *any* method that I can -use to configure samba to enforce that only a user may map their own -home directory."

    "User xyzzy can map his home directory. Once mapped user xyzzy can also map -*anyone* elses home directory!"

    This is not a security flaw, it is by design. Samba allows -users to have *exactly* the same access to the UNIX filesystem -as they would if they were logged onto the UNIX box, except -that it only allows such views onto the file system as are -allowed by the defined shares.

    This means that if your UNIX home directories are set up -such that one user can happily cd into another users -directory and do an ls, the UNIX security solution is to -change the UNIX file permissions on the users home directories -such that the cd and ls would be denied.

    Samba tries very hard not to second guess the UNIX administrators -security policies, and trusts the UNIX admin to set -the policies and permissions he or she desires.

    Samba does allow the setup you require when you have set the -"only user = yes" option on the share, is that you have not set the -valid users list for the share.

    Note that only user works in conjunction with the users= list, -so to get the behavior you require, add the line : -

    users = %S
    -this is equivalent to: -
    valid users = %S
    -to the definition of the [homes] share, as recommended in -the smb.conf man page.

    5.6. Until a few minutes after samba has started, clients get the error "Domain Controller Unavailable"

    A domain controller has to announce on the network who it is. This usually takes a while.


    PrevHomeNext
    Specific client application problems Features
    \ No newline at end of file diff --git a/docs/faq/faq-clientapp.html b/docs/faq/faq-clientapp.html new file mode 100644 index 00000000000..3a85fb4f5a4 --- /dev/null +++ b/docs/faq/faq-clientapp.html @@ -0,0 +1,257 @@ + +Specific client application problems
    Samba FAQ
    PrevNext

    Chapter 4. Specific client application problems

    4.1. MS Office Setup reports "Cannot change properties of '\\MSOFFICE\\SETUP.INI'"

    When installing MS Office on a Samba drive for which you have admin +user permissions, ie. admin users = username, you will find the +setup program unable to complete the installation.

    To get around this problem, do the installation without admin user +permissions The problem is that MS Office Setup checks that a file is +rdonly by trying to open it for writing.

    Admin users can always open a file for writing, as they run as root. +You just have to install as a non-admin user and then use "chown -R" +to fix the owner.

    4.2. How to use a Samba share as an administrative share for MS Office, etc.

    Microsoft Office products can be installed as an administrative installation +from which the application can either be run off the administratively installed +product that resides on a shared resource, or from which that product can be +installed onto workstation clients.

    The general mechanism for implementing an adminstrative installation involves +running X:\setup /A, where X is the drive letter of either CDROM or floppy.

    This installation process will NOT install the product for use per se, but +rather results in unpacking of the compressed distribution files into a target +shared folder. For this process you need write privilidge to the share and it +is desirable to enable file locking and share mode operation during this +process.

    Subsequent installation of MS Office from this share will FAIL unless certain +precautions are taken. This failure will be caused by share mode operation +which will prevent the MS Office installation process from re-opening various +dynamic link library files and will cause sporadic file not found problems.

    • As soon as the administrative installation (unpacking) has completed +set the following parameters on the share containing it:

      [MSOP95]
      +	path = /where_you_put_it
      +	comment = Your comment
      +	volume = "The_CD_ROM_Label"
      +	read only = yes
      +	available = yes
      +	share modes = no
      +	locking = no
      +	browseable = yes
      +	public = yes

    • Now you are ready to run the setup program from the Microsoft Windows +workstation as follows: \\"Server_Name"\MSOP95\msoffice\setup

    4.3. Microsoft Access database opening errors

    Here are some notes on running MS-Access on a Samba drive from Stefan Kjellberg

    Opening a database in 'exclusive' mode does NOT work. Samba ignores r/w/share modes on file open.
    Make sure that you open the database as 'shared' and to 'lock modified records'
    Of course locking must be enabled for the particular share (smb.conf)


    PrevHomeNext
    Configuration problems Common errors
    \ No newline at end of file diff --git a/docs/faq/faq-config.html b/docs/faq/faq-config.html new file mode 100644 index 00000000000..67b5ca2b35a --- /dev/null +++ b/docs/faq/faq-config.html @@ -0,0 +1,163 @@ + +Configuration problems
    Samba FAQ
    PrevNext

    Chapter 3. Configuration problems

    3.1. I have set 'force user' and samba still makes 'root' the owner of all the files I touch!

    When you have a user in 'admin users', samba will always do file operations for +this user as 'root', even if 'force user' has been set.

    3.2. I have just installed samba and I'm trying to log in from Windows, but samba refuses all logins!

    Newer windows clients(NT4, 2000, XP) send encrypted passwords. Samba can't compare these +passwords to the unix password database, so it needs it's own user database. You can +add users to this database using "smbpasswd -a user-name".

    See also the "User database" chapter of the samba HOWTO Collection.


    PrevHomeNext
    Compiling and installing Samba on a Unix host Specific client application problems
    \ No newline at end of file diff --git a/docs/faq/faq-errors.html b/docs/faq/faq-errors.html new file mode 100644 index 00000000000..20eca6adea5 --- /dev/null +++ b/docs/faq/faq-errors.html @@ -0,0 +1,329 @@ + +Common errors
    Samba FAQ
    PrevNext

    Chapter 5. Common errors

    5.1. Not listening for calling name

    Session request failed (131,129) with myname=HOBBES destname=CALVIN
    +Not listening for calling name

    If you get this when talking to a Samba box then it means that your +global "hosts allow" or "hosts deny" settings are causing the Samba +server to refuse the connection.

    Look carefully at your "hosts allow" and "hosts deny" lines in the +global section of smb.conf.

    It can also be a problem with reverse DNS lookups not functioning +correctly, leading to the remote host identity not being able to +be confirmed, but that is less likely.

    5.2. System Error 1240

    System error 1240 means that the client is refusing to talk +to a non-encrypting server. Microsoft changed WinNT in service +pack 3 to refuse to connect to servers that do not support +SMB password encryption.

    There are two main solutions: +

    enable SMB password encryption in Samba. See the encryption part of +the samba HOWTO Collection
    disable this new behaviour in NT. See the section about +Windows NT in the chapter "Portability" of the samba HOWTO collection

    5.3. smbclient ignores -N !

    "When getting the list of shares available on a host using the command +smbclient -N -L +the program always prompts for the password if the server is a Samba server. +It also ignores the "-N" argument when querying some (but not all) of our +NT servers."

    No, it does not ignore -N, it is just that your server rejected the +null password in the connection, so smbclient prompts for a password +to try again.

    To get the behaviour that you probably want use smbclient -L host -U%

    This will set both the username and password to null, which is +an anonymous login for SMB. Using -N would only set the password +to null, and this is not accepted as an anonymous login for most +SMB servers.

    5.4. The data on the CD-Drive I've shared seems to be corrupted!

    Some OSes (notably Linux) default to auto detection of file type on +cdroms and do cr/lf translation. This is a very bad idea when use with +Samba. It causes all sorts of stuff ups.

    To overcome this problem use conv=binary when mounting the cdrom +before exporting it with Samba.

    5.5. Why can users access home directories of other users?

    "We are unable to keep individual users from mapping to any other user's +home directory once they have supplied a valid password! They only need +to enter their own password. I have not found *any* method that I can +use to configure samba to enforce that only a user may map their own +home directory."

    "User xyzzy can map his home directory. Once mapped user xyzzy can also map +*anyone* elses home directory!"

    This is not a security flaw, it is by design. Samba allows +users to have *exactly* the same access to the UNIX filesystem +as they would if they were logged onto the UNIX box, except +that it only allows such views onto the file system as are +allowed by the defined shares.

    This means that if your UNIX home directories are set up +such that one user can happily cd into another users +directory and do an ls, the UNIX security solution is to +change the UNIX file permissions on the users home directories +such that the cd and ls would be denied.

    Samba tries very hard not to second guess the UNIX administrators +security policies, and trusts the UNIX admin to set +the policies and permissions he or she desires.

    Samba does allow the setup you require when you have set the +"only user = yes" option on the share, is that you have not set the +valid users list for the share.

    Note that only user works in conjunction with the users= list, +so to get the behavior you require, add the line : +

    users = %S
    +this is equivalent to: +
    valid users = %S
    +to the definition of the [homes] share, as recommended in +the smb.conf man page.

    5.6. Until a few minutes after samba has started, clients get the error "Domain Controller Unavailable"

    A domain controller has to announce on the network who it is. This usually takes a while.


    PrevHomeNext
    Specific client application problems Features
    \ No newline at end of file diff --git a/docs/faq/faq-features.html b/docs/faq/faq-features.html new file mode 100644 index 00000000000..392820c21fa --- /dev/null +++ b/docs/faq/faq-features.html @@ -0,0 +1,538 @@ + +Features
    Samba FAQ
    PrevNext

    Chapter 6. Features

    6.1. How can I prevent my samba server from being used to distribute the Nimda worm?

    Author: HASEGAWA Yosuke (translated by TAKAHASHI Motonobu)

    Nimba Worm is infected through shared disks on a network, as well as through +Microsoft IIS, Internet Explorer and mailer of Outlook series.

    At this time, the worm copies itself by the name *.nws and *.eml on +the shared disk, moreover, by the name of Riched20.dll in the folder +where *.doc file is included.

    To prevent infection through the shared disk offered by Samba, set +up as follows:

    [global]
    +  ...
    +  # This can break Administration installations of Office2k.
    +  # in that case, don't veto the riched20.dll
    +  veto files = /*.eml/*.nws/riched20.dll/

    By setting the "veto files" parameter, matched files on the Samba +server are completely hidden from the clients and making it impossible +to access them at all.

    In addition to it, the following setting is also pointed out by the +samba-jp:09448 thread: when the +"readme.txt.{3050F4D8-98B5-11CF-BB82-00AA00BDCE0B}" file exists on +a Samba server, it is visible only as "readme.txt" and dangerous +code may be executed if this file is double-clicked.

    Setting the following, +

      veto files = /*.{*}/
    +any files having CLSID in its file extension will be inaccessible from any +clients.

    This technical article is created based on the discussion of +samba-jp:09448 and samba-jp:10900 threads.

    6.2. How can I use samba as a fax server?

    Contributor: Gerhard Zuber

    Requirements: +

    UNIX box (Linux preferred) with SAMBA and a faxmodem
    ghostscript package
    mgetty+sendfax package
    pbm package (portable bitmap tools)

    First, install and configure the required packages. Be sure to read the mgetty+sendfax +manual carefully.

    6.2.1. Tools for printing faxes

    Your incomed faxes are in: +/var/spool/fax/incoming. Print it with:

    for i in *
    +do
    +g3cat $i | g3tolj | lpr -P hp
    +done

    g3cat is in the tools-section, g3tolj is in the contrib-section +for printing to HP lasers.

    If you want to produce files for displaying and printing with Windows, use +some tools from the pbm-package like the following command: g3cat $i | g3topbm - | ppmtopcx - >$i.pcx +and view it with your favourite Windows tool (maybe paintbrush)

    6.2.2. Making the fax-server

    fetch the file mgetty+sendfax/frontends/winword/faxfilter and place it in /usr/local/etc/mgetty+sendfax/(replace /usr/local/ with whatever place you installed mgetty+sendfax)

    prepare your faxspool file as mentioned in this file +edit fax/faxspool.in and reinstall or change the final +/usr/local/bin/faxspool too.

    if [ "$user" = "root" -o "$user" = "fax" -o \
    +     "$user" = "lp" -o "$user" = "daemon" -o "$user" = "bin" ]

    find the first line and change it to the second.

    make sure you have pbmtext (from the pbm-package). This is +needed for creating the small header line on each page.

    Prepare your faxheader /usr/local/etc/mgetty+sendfax/faxheader

    Edit your /etc/printcap file: +

    # FAX 
    +lp3|fax:\
    +        :lp=/dev/null:\
    +        :sd=/usr/spool/lp3:\
    +        :if=/usr/local/etc/mgetty+sendfax/faxfilter:sh:sf:mx#0:\
    +        :lf=/usr/spool/lp3/fax-log:

    Now, edit your smb.conf so you have a smb based printer named "fax"

    6.2.3. Installing the client drivers

    Now you have a printer called "fax" which can be used via +TCP/IP-printing (lpd-system) or via SAMBA (windows printing).

    On every system you are able to produce postscript-files you +are ready to fax.

    On Windows 3.1 95 and NT:

    Install a printer wich produces postscript output, + e.g. apple laserwriter

    Connect the "fax" to your printer.

    Now write your first fax. Use your favourite wordprocessor, +write, winword, notepad or whatever you want, and start +with the headerpage.

    Usually each fax has a header page. It carries your name, +your address, your phone/fax-number.

    It carries also the recipient, his address and his *** fax +number ***. Now here is the trick:

    Use the text: +

    Fax-Nr: 123456789
    +as the recipients fax-number. Make sure this text does not +occur in regular text ! Make sure this text is not broken +by formatting information, e.g. format it as a single entity. +(Windows Write and Win95 Wordpad are functional, maybe newer + versions of Winword are breaking formatting information).

    The trick is that postscript output is human readable and +the faxfilter program scans the text for this pattern and +uses the found number as the fax-destination-number.

    Now print your fax through the fax-printer and it will be +queued for later transmission. Use faxrunq for sending the +queue out.

    6.2.4. Example smb.conf

    [global]
    + printcap name = /etc/printcap
    + print command = /usr/bin/lpr -r -P %p %s
    + lpq command = /usr/bin/lpq -P %p
    + lprm command = /usr/bin/lprm -P %p %j
    +
    +[fax]
    +    comment = FAX (mgetty+sendfax)
    +    path = /tmp
    +    printable = yes
    +    public = yes
    +    writable = no
    +    create mode = 0700
    +    browseable = yes
    +    guest ok = no

    6.3. Samba doesn't work well together with DHCP!

    We wish to help those folks who wish to use the ISC DHCP Server and provide +sample configuration settings. Most operating systems today come ship with +the ISC DHCP Server. ISC DHCP is available from: +ftp://ftp.isc.org/isc/dhcp

    Incorrect configuration of MS Windows clients (Windows9X, Windows ME, Windows +NT/2000) will lead to problems with browsing and with general network +operation. Windows 9X/ME users often report problems where the TCP/IP and related +network settings will inadvertantly become reset at machine start-up resulting +in loss of configuration settings. This results in increased maintenance +overheads as well as serious user frustration.

    In recent times users on one mailing list incorrectly attributed the cause of +network operating problems to incorrect configuration of Samba.

    One user insisted that the only way to provent Windows95 from periodically +performing a full system reset and hardware detection process on start-up was +to install the NetBEUI protocol in addition to TCP/IP. This assertion is not +correct.

    In the first place, there is NO need for NetBEUI. All Microsoft Windows clients +natively run NetBIOS over TCP/IP, and that is the only protocol that is +recognised by Samba. Installation of NetBEUI and/or NetBIOS over IPX will +cause problems with browse list operation on most networks. Even Windows NT +networks experience these problems when incorrectly configured Windows95 +systems share the same name space. It is important that only those protocols +that are strictly needed for site specific reasons should EVER be installed.

    Secondly, and totally against common opinion, DHCP is NOT an evil design but is +an extension of the BOOTP protocol that has been in use in Unix environments +for many years without any of the melt-down problems that some sensationalists +would have us believe can be experienced with DHCP. In fact, DHCP in covered by +rfc1541 and is a very safe method of keeping an MS Windows desktop environment +under control and for ensuring stable network operation.

    Please note that MS Windows systems as of MS Windows NT 3.1 and MS Windows 95 +store all network configuration settings a registry. There are a few reports +from MS Windows network administrators that warrant mention here. It would appear +that when one sets certain MS TCP/IP protocol settings (either directly or via +DHCP) that these do get written to the registry. Even though a subsequent +change of setting may occur the old value may persist in the registry. This +has been known to create serious networking problems.

    An example of this occurs when a manual TCP/IP environment is configured to +include a NetBIOS Scope. In this event, when the administrator then changes the +configuration of the MS TCP/IP protocol stack, without first deleting the +current settings, by simply checking the box to configure the MS TCP/IP stack +via DHCP then the NetBIOS Scope that is still persistent in the registry WILL be +applied to the resulting DHCP offered settings UNLESS the DHCP server also sets +a NetBIOS Scope. It may therefore be prudent to forcibly apply a NULL NetBIOS +Scope from your DHCP server. The can be done in the dhcpd.conf file with the +parameter: +option netbios-scope "";

    While it is true that the Microsoft DHCP server that comes with Windows NT +Server provides only a sub-set of rfc1533 functionality this is hardly an issue +in those sites that already have a large investment and commitment to Unix +systems and technologies. The current state of the art of the DHCP Server +specification in covered in rfc2132.

    6.4. How can I assign NetBIOS names to clients with DHCP?

    SMB network clients need to be configured so that all standard TCP/IP name to +address resolution works correctly. Once this has been achieved the SMB +environment provides additional tools and services that act as helper agents in +the translation of SMB (NetBIOS) names to their appropriate IP Addresses. One +such helper agent is the NetBIOS Name Server (NBNS) or as Microsoft called it +in their Windows NT Server implementation WINS (Windows Internet Name Server).

    A client needs to be configured so that it has a unique Machine (Computer) +Name.

    This can be done, but needs a few NT registry hacks and you need to be able to +speak UNICODE, which is of course no problem for a True Wizzard(tm) :) +Instructions on how to do this (including a small util for less capable +Wizzards) can be found at

    http://www.unixtools.org/~nneul/sw/nt/dhcp-netbios-hostname.html

    6.5. How do I convert between unix and dos text formats?

    Jim barry has written an excellent drag-and-drop cr/lf converter for +windows. Just drag your file onto the icon and it converts the file.

    The utilities unix2dos and dos2unix(in the mtools package) should do +the job under unix.

    6.6. Does samba have wins replication support?

    At the time of writing there is currently being worked on a wins replication implementation(wrepld).


    PrevHomeNext
    Common errors Printing problems
    \ No newline at end of file diff --git a/docs/faq/faq-general.html b/docs/faq/faq-general.html new file mode 100644 index 00000000000..15dce949c9d --- /dev/null +++ b/docs/faq/faq-general.html @@ -0,0 +1,450 @@ + +General Information
    Samba FAQ
    PrevNext

    Chapter 1. General Information

    1.1. Where can I get it?

    The Samba suite is available at the samba website.

    1.2. What do the version numbers mean?

    It is not recommended that you run a version of Samba with the word +"alpha" in its name unless you know what you are doing and are willing +to do some debugging. Many, many people just get the latest +recommended stable release version and are happy. If you are brave, by +all means take the plunge and help with the testing and development - +but don't install it on your departmental server. Samba is typically +very stable and safe, and this is mostly due to the policy of many +public releases.

    How the scheme works: +

    When major changes are made the version number is increased. For +example, the transition from 1.9.15 to 1.9.16. However, this version +number will not appear immediately and people should continue to use +1.9.15 for production systems (see next point.)
    Just after major changes are made the software is considered +unstable, and a series of alpha releases are distributed, for example +1.9.16alpha1. These are for testing by those who know what they are +doing. The "alpha" in the filename will hopefully scare off those who +are just looking for the latest version to install.
    When Andrew thinks that the alphas have stabilised to the point +where he would recommend new users install it, he renames it to the +same version number without the alpha, for example 1.9.16.
    Inevitably bugs are found in the "stable" releases and minor patch +levels are released which give us the pXX series, for example 1.9.16p2.

    So the progression goes: + +

    1.9.15p7	(production)
    +1.9.15p8	(production)
    +1.9.16alpha1	(test sites only)
    +:
    +1.9.16alpha20	(test sites only)
    +1.9.16		(production)
    +1.9.16p1	(production)

    The above system means that whenever someone looks at the samba ftp +site they will be able to grab the highest numbered release without an +alpha in the name and be sure of getting the current recommended +version.

    1.3. What platforms are supported?

    Many different platforms have run Samba successfully. The platforms +most widely used and thus best tested are Linux and SunOS.

    At time of writing, there is support (or has been support for in earlier +versions):

    A/UX 3.0
    AIX
    Altos Series 386/1000
    Amiga
    Apollo Domain/OS sr10.3
    BSDI
    B.O.S. (Bull Operating System)
    Cray, Unicos 8.0
    Convex
    DGUX.
    DNIX.
    FreeBSD
    HP-UX
    Intergraph.
    Linux with/without shadow passwords and quota
    LYNX 2.3.0
    MachTen (a unix like system for Macintoshes)
    Motorola 88xxx/9xx range of machines
    NetBSD
    NEXTSTEP Release 2.X, 3.0 and greater (including OPENSTEP for Mach).
    OS/2 using EMX 0.9b
    OSF1
    QNX 4.22
    RiscIX.
    RISCOs 5.0B
    SEQUENT.
    SCO (including: 3.2v2, European dist., OpenServer 5)
    SGI.
    SMP_DC.OSx v1.1-94c079 on Pyramid S series
    SONY NEWS, NEWS-OS (4.2.x and 6.1.x)
    SUNOS 4
    SUNOS 5.2, 5.3, and 5.4 (Solaris 2.2, 2.3, and '2.4 and later')
    Sunsoft ISC SVR3V4
    SVR4
    System V with some berkely extensions (Motorola 88k R32V3.2).
    ULTRIX.
    UNIXWARE
    UXP/DS

    1.5. Pizza supply details

    Those who have registered in the Samba survey as "Pizza Factory" will +already know this, but the rest may need some help. Andrew doesn't ask +for payment, but he does appreciate it when people give him +pizza. This calls for a little organisation when the pizza donor is +twenty thousand kilometres away, but it has been done.

    Method 1: Ring up your local branch of an international pizza chain +and see if they honour their vouchers internationally. Pizza Hut do, +which is how the entire Canberra Linux Users Group got to eat pizza +one night, courtesy of someone in the US.

    Method 2: Ring up a local pizza shop in Canberra and quote a credit +card number for a certain amount, and tell them that Andrew will be +collecting it (don't forget to tell him.) One kind soul from Germany +did this.

    Method 3: Purchase a pizza voucher from your local pizza shop that has +no international affiliations and send it to Andrew. It is completely +useless but he can hang it on the wall next to the one he already has +from Germany :-)

    Method 4: Air freight him a pizza with your favourite regional +flavours. It will probably get stuck in customs or torn apart by +hungry sniffer dogs but it will have been a noble gesture.


    PrevHomeNext
    Samba FAQ Compiling and installing Samba on a Unix host
    \ No newline at end of file diff --git a/docs/faq/faq-install.html b/docs/faq/faq-install.html new file mode 100644 index 00000000000..646b65bf7fa --- /dev/null +++ b/docs/faq/faq-install.html @@ -0,0 +1,523 @@ + +Compiling and installing Samba on a Unix host
    Samba FAQ
    PrevNext

    Chapter 2. Compiling and installing Samba on a Unix host

    2.1. I can't see the Samba server in any browse lists!

    See Browsing.html in the docs directory of the samba source +for more information on browsing.

    If your GUI client does not permit you to select non-browsable +servers, you may need to do so on the command line. For example, under +Lan Manager you might connect to the above service as disk drive M: +thusly: +

       net use M: \\mary\fred
    +The details of how to do this and the specific syntax varies from +client to client - check your client's documentation.

    2.3. Some files on the server show up with really wierd filenames when I view the files from my client!

    If you check what files are not showing up, you will note that they +are files which contain upper case letters or which are otherwise not +DOS-compatible (ie, they are not legal DOS filenames for some reason).

    The Samba server can be configured either to ignore such files +completely, or to present them to the client in "mangled" form. If you +are not seeing the files at all, the Samba server has most likely been +configured to ignore them. Consult the man page smb.conf(5) for +details of how to change this - the parameter you need to set is +"mangled names = yes".

    2.4. My client reports "cannot locate specified computer" or similar

    This indicates one of three things: You supplied an incorrect server +name, the underlying TCP/IP layer is not working correctly, or the +name you specified cannot be resolved.

    After carefully checking that the name you typed is the name you +should have typed, try doing things like pinging a host or telnetting +to somewhere on your network to see if TCP/IP is functioning OK. If it +is, the problem is most likely name resolution.

    If your client has a facility to do so, hardcode a mapping between the +hosts IP and the name you want to use. For example, with Lan Manager +or Windows for Workgroups you would put a suitable entry in the file +LMHOSTS. If this works, the problem is in the communication between +your client and the netbios name server. If it does not work, then +there is something fundamental wrong with your naming and the solution +is beyond the scope of this document.

    If you do not have any server on your subnet supplying netbios name +resolution, hardcoded mappings are your only option. If you DO have a +netbios name server running (such as the Samba suite's nmbd program), +the problem probably lies in the way it is set up. Refer to Section +Two of this FAQ for more ideas.

    By the way, remember to REMOVE the hardcoded mapping before further +tests :-)

    2.5. My client reports "cannot locate specified share name" or similar

    This message indicates that your client CAN locate the specified +server, which is a good start, but that it cannot find a service of +the name you gave.

    The first step is to check the exact name of the service you are +trying to connect to (consult your system administrator). Assuming it +exists and you specified it correctly (read your client's docs on how +to specify a service name correctly), read on:

    Many clients cannot accept or use service names longer than eight characters.
    Many clients cannot accept or use service names containing spaces.
    Some servers (not Samba though) are case sensitive with service names.
    Some clients force service names into upper case.

    2.6. Printing doesn't work

    Make sure that the specified print command for the service you are +connecting to is correct and that it has a fully-qualified path (eg., +use "/usr/bin/lpr" rather than just "lpr").

    Make sure that the spool directory specified for the service is +writable by the user connected to the service. In particular the user +"nobody" often has problems with printing, even if it worked with an +earlier version of Samba. Try creating another guest user other than +"nobody".

    Make sure that the user specified in the service is permitted to use +the printer.

    Check the debug log produced by smbd. Search for the printer name and +see if the log turns up any clues. Note that error messages to do with +a service ipc$ are meaningless - they relate to the way the client +attempts to retrieve status information when using the LANMAN1 +protocol.

    If using WfWg then you need to set the default protocol to TCP/IP, not +Netbeui. This is a WfWg bug.

    If using the Lanman1 protocol (the default) then try switching to +coreplus. Also not that print status error messages don't mean +printing won't work. The print status is received by a different +mechanism.

    2.7. My client reports "This server is not configured to list shared resources"

    Your guest account is probably invalid for some reason. Samba uses the +guest account for browsing in smbd. Check that your guest account is +valid.

    See also 'guest account' in smb.conf man page.

    2.8. Log message "you appear to have a trapdoor uid system"

    This can have several causes. It might be because you are using a uid +or gid of 65535 or -1. This is a VERY bad idea, and is a big security +hole. Check carefully in your /etc/passwd file and make sure that no +user has uid 65535 or -1. Especially check the "nobody" user, as many +broken systems are shipped with nobody setup with a uid of 65535.

    It might also mean that your OS has a trapdoor uid/gid system :-)

    This means that once a process changes effective uid from root to +another user it can't go back to root. Unfortunately Samba relies on +being able to change effective uid from root to non-root and back +again to implement its security policy. If your OS has a trapdoor uid +system this won't work, and several things in Samba may break. Less +things will break if you use user or server level security instead of +the default share level security, but you may still strike +problems.

    The problems don't give rise to any security holes, so don't panic, +but it does mean some of Samba's capabilities will be unavailable. +In particular you will not be able to connect to the Samba server as +two different uids at once. This may happen if you try to print as a +"guest" while accessing a share as a normal user. It may also affect +your ability to list the available shares as this is normally done as +the guest user.

    Complain to your OS vendor and ask them to fix their system.

    Note: the reason why 65535 is a VERY bad choice of uid and gid is that +it casts to -1 as a uid, and the setreuid() system call ignores (with +no error) uid changes to -1. This means any daemon attempting to run +as uid 65535 will actually run as root. This is not good!

    2.9. Why are my file's timestamps off by an hour, or by a few hours?

    This is from Paul Eggert eggert@twinsun.com.

    Most likely it's a problem with your time zone settings.

    Internally, Samba maintains time in traditional Unix format, +namely, the number of seconds since 1970-01-01 00:00:00 Universal Time +(or ``GMT''), not counting leap seconds.

    On the server side, Samba uses the Unix TZ variable to convert +internal timestamps to and from local time. So on the server side, there are +two things to get right. +

    The Unix system clock must have the correct Universal time. Use the shell command "sh -c 'TZ=UTC0 date'" to check this.
    The TZ environment variable must be set on the server before Samba is invoked. The details of this depend on the server OS, but typically you must edit a file whose name is /etc/TIMEZONE or /etc/default/init, or run the command `zic -l'.

    TZ must have the correct value.

    If possible, use geographical time zone settings +(e.g. TZ='America/Los_Angeles' or perhaps + TZ=':US/Pacific'). These are supported by most +popular Unix OSes, are easier to get right, and are +more accurate for historical timestamps. If your +operating system has out-of-date tables, you should be +able to update them from the public domain time zone +tables at ftp://elsie.nci.nih.gov/pub/.

    If your system does not support geographical timezone +settings, you must use a Posix-style TZ strings, e.g. +TZ='PST8PDT,M4.1.0/2,M10.5.0/2' for US Pacific time. +Posix TZ strings can take the following form (with optional + items in brackets): +

    	StdOffset[Dst[Offset],Date/Time,Date/Time]
    + where:

    `Std' is the standard time designation (e.g. `PST').
    `Offset' is the number of hours behind UTC (e.g. `8'). +Prepend a `-' if you are ahead of UTC, and +append `:30' if you are at a half-hour offset. +Omit all the remaining items if you do not use +daylight-saving time.
    `Dst' is the daylight-saving time designation +(e.g. `PDT').
    The optional second `Offset' is the number of +hours that daylight-saving time is behind UTC. +The default is 1 hour ahead of standard time.
    `Date/Time,Date/Time' specify when daylight-saving +time starts and ends. The format for a date is +`Mm.n.d', which specifies the dth day (0 is Sunday) +of the nth week of the mth month, where week 5 means +the last such day in the month. The format for a +time is [h]h[:mm[:ss]], using a 24-hour clock.

    Other Posix string formats are allowed but you don't want +to know about them.

    On the client side, you must make sure that your client's clock and +time zone is also set appropriately. [[I don't know how to do this.]] +Samba traditionally has had many problems dealing with time zones, due +to the bizarre ways that Microsoft network protocols handle time +zones.

    2.10. How do I set the printer driver name correctly?

    Question: +" On NT, I opened "Printer Manager" and "Connect to Printer". + Enter ["\\ptdi270\ps1"] in the box of printer. I got the + following error message + "

         You do not have sufficient access to your machine
    +     to connect to the selected printer, since a driver
    +     needs to be installed locally.
    + 
    +

    Answer:

    In the more recent versions of Samba you can now set the "printer +driver" in smb.conf. This tells the client what driver to use. For +example:

         printer driver = HP LaserJet 4L

    With this, NT knows to use the right driver. You have to get this string +exactly right.

    To find the exact string to use, you need to get to the dialog box in +your client where you select which printer driver to install. The +correct strings for all the different printers are shown in a listbox +in that dialog box.


    PrevHomeNext
    General Information Configuration problems
    \ No newline at end of file diff --git a/docs/faq/faq-printing.html b/docs/faq/faq-printing.html new file mode 100644 index 00000000000..cfe93d8ee8b --- /dev/null +++ b/docs/faq/faq-printing.html @@ -0,0 +1,181 @@ + +Printing problems
    Samba FAQ
    Prev 

    Chapter 7. Printing problems

    7.1. setdriver or cupsaddsmb failes

    setdriver expects the following setup: + +

    you are a printer admin, or root. this is the smb.conf printer admin group, not the Printer Operators group in NT. I've not tried the latter, but I don't believe it will work based on the current code.
    printer admins has to be defined in [global]
    upload the driver files to \\server\print$\w32x86 and win40 as appropriate. DON'T put them in the 0 or 2 subdirectories.
    Make sure that the user you're connecting as is able to write to the print$ directories
    Use adddriver (with appropriate parameters) to create the driver. note, this will not just update samba's notion of drivers, it will also move the files from the w32x86 and win40 directories to an appropriate subdirectory (based on driver version, I think, but not important enough for me to find out)
    Use setdriver to associate the driver with a printer

    The setdriver call will fail if the printer doesn't already exist in +samba's view of the world. Either create the printer in cups and +restart samba, or create an add printer command (see smb.conf doco) +and use RPC calls to create a printer. NB the add printer command MUST +return a single line of text indicating which port the printer was +added on. If it doesn't, Samba won't reload the printer +definitions. Although samba doesn't really support the notion of +ports, suitable add printer command and enumport command settings can +allow you pretty good remote control of the samba printer setup.


    PrevHome 
    Features  
    \ No newline at end of file diff --git a/docs/faq/general.html b/docs/faq/general.html deleted file mode 100644 index 5a42678cb60..00000000000 --- a/docs/faq/general.html +++ /dev/null @@ -1,450 +0,0 @@ - -General Information
    Samba FAQ
    PrevNext

    Chapter 1. General Information

    1.1. Where can I get it?

    The Samba suite is available at the samba website.

    1.2. What do the version numbers mean?

    It is not recommended that you run a version of Samba with the word -"alpha" in its name unless you know what you are doing and are willing -to do some debugging. Many, many people just get the latest -recommended stable release version and are happy. If you are brave, by -all means take the plunge and help with the testing and development - -but don't install it on your departmental server. Samba is typically -very stable and safe, and this is mostly due to the policy of many -public releases.

    How the scheme works: -

    When major changes are made the version number is increased. For -example, the transition from 1.9.15 to 1.9.16. However, this version -number will not appear immediately and people should continue to use -1.9.15 for production systems (see next point.)
    Just after major changes are made the software is considered -unstable, and a series of alpha releases are distributed, for example -1.9.16alpha1. These are for testing by those who know what they are -doing. The "alpha" in the filename will hopefully scare off those who -are just looking for the latest version to install.
    When Andrew thinks that the alphas have stabilised to the point -where he would recommend new users install it, he renames it to the -same version number without the alpha, for example 1.9.16.
    Inevitably bugs are found in the "stable" releases and minor patch -levels are released which give us the pXX series, for example 1.9.16p2.

    So the progression goes: - -

    1.9.15p7	(production)
    -1.9.15p8	(production)
    -1.9.16alpha1	(test sites only)
    -:
    -1.9.16alpha20	(test sites only)
    -1.9.16		(production)
    -1.9.16p1	(production)

    The above system means that whenever someone looks at the samba ftp -site they will be able to grab the highest numbered release without an -alpha in the name and be sure of getting the current recommended -version.

    1.3. What platforms are supported?

    Many different platforms have run Samba successfully. The platforms -most widely used and thus best tested are Linux and SunOS.

    At time of writing, there is support (or has been support for in earlier -versions):

    A/UX 3.0
    AIX
    Altos Series 386/1000
    Amiga
    Apollo Domain/OS sr10.3
    BSDI
    B.O.S. (Bull Operating System)
    Cray, Unicos 8.0
    Convex
    DGUX.
    DNIX.
    FreeBSD
    HP-UX
    Intergraph.
    Linux with/without shadow passwords and quota
    LYNX 2.3.0
    MachTen (a unix like system for Macintoshes)
    Motorola 88xxx/9xx range of machines
    NetBSD
    NEXTSTEP Release 2.X, 3.0 and greater (including OPENSTEP for Mach).
    OS/2 using EMX 0.9b
    OSF1
    QNX 4.22
    RiscIX.
    RISCOs 5.0B
    SEQUENT.
    SCO (including: 3.2v2, European dist., OpenServer 5)
    SGI.
    SMP_DC.OSx v1.1-94c079 on Pyramid S series
    SONY NEWS, NEWS-OS (4.2.x and 6.1.x)
    SUNOS 4
    SUNOS 5.2, 5.3, and 5.4 (Solaris 2.2, 2.3, and '2.4 and later')
    Sunsoft ISC SVR3V4
    SVR4
    System V with some berkely extensions (Motorola 88k R32V3.2).
    ULTRIX.
    UNIXWARE
    UXP/DS

    1.4. How do I subscribe to the Samba Mailing Lists?

    Look at the samba mailing list page

    1.5. Pizza supply details

    Those who have registered in the Samba survey as "Pizza Factory" will -already know this, but the rest may need some help. Andrew doesn't ask -for payment, but he does appreciate it when people give him -pizza. This calls for a little organisation when the pizza donor is -twenty thousand kilometres away, but it has been done.

    Method 1: Ring up your local branch of an international pizza chain -and see if they honour their vouchers internationally. Pizza Hut do, -which is how the entire Canberra Linux Users Group got to eat pizza -one night, courtesy of someone in the US.

    Method 2: Ring up a local pizza shop in Canberra and quote a credit -card number for a certain amount, and tell them that Andrew will be -collecting it (don't forget to tell him.) One kind soul from Germany -did this.

    Method 3: Purchase a pizza voucher from your local pizza shop that has -no international affiliations and send it to Andrew. It is completely -useless but he can hang it on the wall next to the one he already has -from Germany :-)

    Method 4: Air freight him a pizza with your favourite regional -flavours. It will probably get stuck in customs or torn apart by -hungry sniffer dogs but it will have been a noble gesture.


    PrevHomeNext
    Samba FAQ Compiling and installing Samba on a Unix host
    \ No newline at end of file diff --git a/docs/faq/install.html b/docs/faq/install.html deleted file mode 100644 index 23403ab96b9..00000000000 --- a/docs/faq/install.html +++ /dev/null @@ -1,525 +0,0 @@ - -Compiling and installing Samba on a Unix host
    Samba FAQ
    PrevNext

    Chapter 2. Compiling and installing Samba on a Unix host

    2.1. I can't see the Samba server in any browse lists!

    See Browsing.html in the docs directory of the samba source -for more information on browsing.

    If your GUI client does not permit you to select non-browsable -servers, you may need to do so on the command line. For example, under -Lan Manager you might connect to the above service as disk drive M: -thusly: -

       net use M: \\mary\fred
    -The details of how to do this and the specific syntax varies from -client to client - check your client's documentation.

    2.2. Some files that I KNOW are on the server doesn't show up when I view the files from my client!

    See the next question.

    2.3. Some files on the server show up with really wierd filenames when I view the files from my client!

    If you check what files are not showing up, you will note that they -are files which contain upper case letters or which are otherwise not -DOS-compatible (ie, they are not legal DOS filenames for some reason).

    The Samba server can be configured either to ignore such files -completely, or to present them to the client in "mangled" form. If you -are not seeing the files at all, the Samba server has most likely been -configured to ignore them. Consult the man page smb.conf(5) for -details of how to change this - the parameter you need to set is -"mangled names = yes".

    2.4. My client reports "cannot locate specified computer" or similar

    This indicates one of three things: You supplied an incorrect server -name, the underlying TCP/IP layer is not working correctly, or the -name you specified cannot be resolved.

    After carefully checking that the name you typed is the name you -should have typed, try doing things like pinging a host or telnetting -to somewhere on your network to see if TCP/IP is functioning OK. If it -is, the problem is most likely name resolution.

    If your client has a facility to do so, hardcode a mapping between the -hosts IP and the name you want to use. For example, with Lan Manager -or Windows for Workgroups you would put a suitable entry in the file -LMHOSTS. If this works, the problem is in the communication between -your client and the netbios name server. If it does not work, then -there is something fundamental wrong with your naming and the solution -is beyond the scope of this document.

    If you do not have any server on your subnet supplying netbios name -resolution, hardcoded mappings are your only option. If you DO have a -netbios name server running (such as the Samba suite's nmbd program), -the problem probably lies in the way it is set up. Refer to Section -Two of this FAQ for more ideas.

    By the way, remember to REMOVE the hardcoded mapping before further -tests :-)

    2.5. My client reports "cannot locate specified share name" or similar

    This message indicates that your client CAN locate the specified -server, which is a good start, but that it cannot find a service of -the name you gave.

    The first step is to check the exact name of the service you are -trying to connect to (consult your system administrator). Assuming it -exists and you specified it correctly (read your client's docs on how -to specify a service name correctly), read on:

    Many clients cannot accept or use service names longer than eight characters.
    Many clients cannot accept or use service names containing spaces.
    Some servers (not Samba though) are case sensitive with service names.
    Some clients force service names into upper case.

    2.6. Printing doesn't work

    Make sure that the specified print command for the service you are -connecting to is correct and that it has a fully-qualified path (eg., -use "/usr/bin/lpr" rather than just "lpr").

    Make sure that the spool directory specified for the service is -writable by the user connected to the service. In particular the user -"nobody" often has problems with printing, even if it worked with an -earlier version of Samba. Try creating another guest user other than -"nobody".

    Make sure that the user specified in the service is permitted to use -the printer.

    Check the debug log produced by smbd. Search for the printer name and -see if the log turns up any clues. Note that error messages to do with -a service ipc$ are meaningless - they relate to the way the client -attempts to retrieve status information when using the LANMAN1 -protocol.

    If using WfWg then you need to set the default protocol to TCP/IP, not -Netbeui. This is a WfWg bug.

    If using the Lanman1 protocol (the default) then try switching to -coreplus. Also not that print status error messages don't mean -printing won't work. The print status is received by a different -mechanism.

    2.7. My client reports "This server is not configured to list shared resources"

    Your guest account is probably invalid for some reason. Samba uses the -guest account for browsing in smbd. Check that your guest account is -valid.

    See also 'guest account' in smb.conf man page.

    2.8. Log message "you appear to have a trapdoor uid system"

    This can have several causes. It might be because you are using a uid -or gid of 65535 or -1. This is a VERY bad idea, and is a big security -hole. Check carefully in your /etc/passwd file and make sure that no -user has uid 65535 or -1. Especially check the "nobody" user, as many -broken systems are shipped with nobody setup with a uid of 65535.

    It might also mean that your OS has a trapdoor uid/gid system :-)

    This means that once a process changes effective uid from root to -another user it can't go back to root. Unfortunately Samba relies on -being able to change effective uid from root to non-root and back -again to implement its security policy. If your OS has a trapdoor uid -system this won't work, and several things in Samba may break. Less -things will break if you use user or server level security instead of -the default share level security, but you may still strike -problems.

    The problems don't give rise to any security holes, so don't panic, -but it does mean some of Samba's capabilities will be unavailable. -In particular you will not be able to connect to the Samba server as -two different uids at once. This may happen if you try to print as a -"guest" while accessing a share as a normal user. It may also affect -your ability to list the available shares as this is normally done as -the guest user.

    Complain to your OS vendor and ask them to fix their system.

    Note: the reason why 65535 is a VERY bad choice of uid and gid is that -it casts to -1 as a uid, and the setreuid() system call ignores (with -no error) uid changes to -1. This means any daemon attempting to run -as uid 65535 will actually run as root. This is not good!

    2.9. Why are my file's timestamps off by an hour, or by a few hours?

    This is from Paul Eggert eggert@twinsun.com.

    Most likely it's a problem with your time zone settings.

    Internally, Samba maintains time in traditional Unix format, -namely, the number of seconds since 1970-01-01 00:00:00 Universal Time -(or ``GMT''), not counting leap seconds.

    On the server side, Samba uses the Unix TZ variable to convert -internal timestamps to and from local time. So on the server side, there are -two things to get right. -

    The Unix system clock must have the correct Universal time. Use the shell command "sh -c 'TZ=UTC0 date'" to check this.
    The TZ environment variable must be set on the server before Samba is invoked. The details of this depend on the server OS, but typically you must edit a file whose name is /etc/TIMEZONE or /etc/default/init, or run the command `zic -l'.

    TZ must have the correct value.

    If possible, use geographical time zone settings -(e.g. TZ='America/Los_Angeles' or perhaps - TZ=':US/Pacific'). These are supported by most -popular Unix OSes, are easier to get right, and are -more accurate for historical timestamps. If your -operating system has out-of-date tables, you should be -able to update them from the public domain time zone -tables at ftp://elsie.nci.nih.gov/pub/.

    If your system does not support geographical timezone -settings, you must use a Posix-style TZ strings, e.g. -TZ='PST8PDT,M4.1.0/2,M10.5.0/2' for US Pacific time. -Posix TZ strings can take the following form (with optional - items in brackets): -

    	StdOffset[Dst[Offset],Date/Time,Date/Time]
    - where:

    `Std' is the standard time designation (e.g. `PST').
    `Offset' is the number of hours behind UTC (e.g. `8'). -Prepend a `-' if you are ahead of UTC, and -append `:30' if you are at a half-hour offset. -Omit all the remaining items if you do not use -daylight-saving time.
    `Dst' is the daylight-saving time designation -(e.g. `PDT').
    The optional second `Offset' is the number of -hours that daylight-saving time is behind UTC. -The default is 1 hour ahead of standard time.
    `Date/Time,Date/Time' specify when daylight-saving -time starts and ends. The format for a date is -`Mm.n.d', which specifies the dth day (0 is Sunday) -of the nth week of the mth month, where week 5 means -the last such day in the month. The format for a -time is [h]h[:mm[:ss]], using a 24-hour clock.

    Other Posix string formats are allowed but you don't want -to know about them.

    On the client side, you must make sure that your client's clock and -time zone is also set appropriately. [[I don't know how to do this.]] -Samba traditionally has had many problems dealing with time zones, due -to the bizarre ways that Microsoft network protocols handle time -zones.

    2.10. How do I set the printer driver name correctly?

    Question:

    " On NT, I opened "Printer Manager" and "Connect to Printer". - Enter ["\\ptdi270\ps1"] in the box of printer. I got the - following error message - " -

         You do not have sufficient access to your machine
    -     to connect to the selected printer, since a driver
    -     needs to be installed locally.
    - 
    -

    Answer:

    In the more recent versions of Samba you can now set the "printer -driver" in smb.conf. This tells the client what driver to use. For -example:

         printer driver = HP LaserJet 4L

    With this, NT knows to use the right driver. You have to get this string -exactly right.

    To find the exact string to use, you need to get to the dialog box in -your client where you select which printer driver to install. The -correct strings for all the different printers are shown in a listbox -in that dialog box.


    PrevHomeNext
    General Information Configuration problems
    \ No newline at end of file -- cgit From 41ea416adbc074f3a34b66c18ed63c7d44ea28fc Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 19 Mar 2003 15:23:40 +0000 Subject: Fix some comment typos --- source/auth/auth_builtin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/auth/auth_builtin.c b/source/auth/auth_builtin.c index 32f39311dc8..3b0b84b5256 100644 --- a/source/auth/auth_builtin.c +++ b/source/auth/auth_builtin.c @@ -99,7 +99,7 @@ static NTSTATUS check_name_to_ntstatus_security(const struct auth_context *auth_ return nt_status; } -/** Module initailisation function */ +/** Module initialisation function */ NTSTATUS auth_init_name_to_ntstatus(struct auth_context *auth_context, const char *param, auth_methods **auth_method) { @@ -112,7 +112,7 @@ NTSTATUS auth_init_name_to_ntstatus(struct auth_context *auth_context, const cha } /** - * Return a 'fixed' challenge instead of a varaible one. + * Return a 'fixed' challenge instead of a variable one. * * The idea of this function is to make packet snifs consistant * with a fixed challenge, so as to aid debugging. -- cgit From 0038a31819ad13dcfaff381ab2bb9f9fef62c1e8 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 19 Mar 2003 16:55:57 +0000 Subject: Update to current situation - there's nothing about SAM/GUMS/IDMAP in here currently, should there be? --- docs/roadmap-3.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/roadmap-3.html b/docs/roadmap-3.html index 4028a7bbdca..6544617082a 100644 --- a/docs/roadmap-3.html +++ b/docs/roadmap-3.html @@ -56,7 +56,7 @@

    Roadmap to 3.0

    -

    Page Last Updated : $Date: 2003/01/16 02:20:24 $ +

    Page Last Updated : $Date: 2003/03/19 16:55:57 $

    Estimated shipdate : When it is ready.

    Current Alpha Release : Samba-3.0alpha20

    Goals for 3.0alpha21 Release : @@ -177,7 +177,7 @@ for a stable 3.0 release. Loadable RPC implementations yes - o + X o o @@ -213,7 +213,7 @@ for a stable 3.0 release. Publishing printers in AD (probably will make 3.0 but will not delay release) no - o + X o o @@ -252,7 +252,7 @@ Plus the following interesting, but non-show stopping projects

    • background updates of print queues via a dedicated process
    • WINS replication with Windows NT WINS servers -
    • alternative backend for WINS database +
    • alternative backend for WINS database (There is a patch that still needs some work)
    -- cgit From 65dbd07b3012b0de4d8db0bb01c1d77ae3dc0fa8 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 19 Mar 2003 17:20:45 +0000 Subject: Update alpha information --- docs/roadmap-3.html | 135 +++++++++++++--------------------------------------- 1 file changed, 32 insertions(+), 103 deletions(-) diff --git a/docs/roadmap-3.html b/docs/roadmap-3.html index 6544617082a..f31abb1e8af 100644 --- a/docs/roadmap-3.html +++ b/docs/roadmap-3.html @@ -1,76 +1,33 @@ - - - -SAMBA - opening windows to a wider world - - - - - - - - - - - - - - - - - - - - + @@ -199,26 +156,24 @@ for a stable 3.0 release. - - - - - - + + - + + + + + - + - - @@ -238,7 +193,7 @@ for a stable 3.0 release. - + @@ -252,35 +207,9 @@ Plus the following interesting, but non-show stopping projects
    • background updates of print queues via a dedicated process
    • WINS replication with Windows NT WINS servers -
    • alternative backend for WINS database (There is a patch that still needs some work) +
    • alternative backend for WINS database (there is a patch that still needs some work)
    - - - - - - - - - - -
    - - - samba - - -

    - =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -


    -
    - +

    Roadmap to 3.0

    -

    Page Last Updated : $Date: 2003/03/19 16:55:57 $ +

    Page Last Updated : 5 Mar, 2003

    Estimated shipdate : When it is ready. -

    Current Alpha Release : Samba-3.0alpha20 -

    Goals for 3.0alpha21 Release : +

    Current Alpha Release : Samba-3.0alpha22 + +

    Road to 3.0

    +
      -
    • Produce RPMs for next alpha snapshot +
    • (5th Mar, 2003) Samba-3.0alpha22 RPMS for Redhat 6.x, 7.x and 8.0 available +

      Binary packages for RedHat Linux 6.x, 7.x and 8.0 systems of the Samba 3.0alpha22 + release are ready for download from the + Binary_Packages/RedHat directory. +

    -

    Road to 3.0

    +
      +
    • (26th Nov, 2002) Samba-3.0alpha21 RPMS for Redhat 7.x and 8.0 available +

      Binary packages for RedHat Linux 7.x and 8.0 systems of the Samba 3.0alpha21 + release are ready for download from the + Binary_Packages/RedHat directory. +

    • +
    • (26th Sept, 2002) SAMBA_3_0 cvs branch

      With the release of 3.0alpha20, the SAMBA_3_0 cvs branch is now being - officially maintained in an effort to stablize certain features. If you would - like to continue to test the soon-to-be-3.0 codease, please use this branch + officially maintained in an effort to stabilize certain features. If you would + like to continue to test the soon-to-be-3.0 code base, please use this branch tag when checking out the cvs tree.

    @@ -138,7 +95,7 @@ for a stable 3.0 release.
    yes X XoX
    Non-Release Delaying Features
    Stackable VFSnoPublishing printers in AD (probably will make 3.0 but will not delay release)yes X o o
    Publishing printers in AD (probably will make 3.0 but will not delay release)Non-Release Delaying Features
    Stackable VFS no X ooX
    SAM replication (full implementation still lacks some decoding work; post 3.0) no
    schannel, ntlmv2 sign & seal (needs more research) no-in-progress - -



    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    - samba - opening windows to a wider world -
    - - - -
    -
    - - -
    -
    - - - - - + -- cgit From 70bf31e1b0850c257e893e8850b7d5c53ba5af48 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 19 Mar 2003 18:06:40 +0000 Subject: Fix typo. Thanks to Guenther Deschner Volker --- docs/docbook/manpages/smb.conf.5.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docbook/manpages/smb.conf.5.sgml b/docs/docbook/manpages/smb.conf.5.sgml index fb1e8297002..f7216774a24 100644 --- a/docs/docbook/manpages/smb.conf.5.sgml +++ b/docs/docbook/manpages/smb.conf.5.sgml @@ -5692,7 +5692,7 @@ df $1 | tail -1 | awk '{print $2" "$4}' resolve order and so may resolved by any method and order described in that parameter. - The password server much be a machine capable of using + The password server must be a machine capable of using the "LM1.2X002" or the "NT LM 0.12" protocol, and it must be in user level security mode. -- cgit From 5eaf9195eefda5ababba85cc0f6d581ff6f0f454 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 19 Mar 2003 18:17:12 +0000 Subject: Add paramter 'ldap del only sam attr'. This patch is heavily based on a patch by SuSE. Thanks to Guenther Deschner for providing it. Volker --- docs/docbook/manpages/smb.conf.5.sgml | 11 ++- source/param/loadparm.c | 4 + source/passdb/pdb_ldap.c | 156 +++++++++++++++++++++------------- 3 files changed, 110 insertions(+), 61 deletions(-) diff --git a/docs/docbook/manpages/smb.conf.5.sgml b/docs/docbook/manpages/smb.conf.5.sgml index f7216774a24..7aaa1895787 100644 --- a/docs/docbook/manpages/smb.conf.5.sgml +++ b/docs/docbook/manpages/smb.conf.5.sgml @@ -656,6 +656,7 @@ alias|alias|alias|alias... large readwrite ldap admin dn + ldap del only sam attr ldap filter ldap port ldap server @@ -3435,8 +3436,14 @@ df $1 | tail -1 | awk '{print $2" "$4}' to accmplish this. - - Default : none + + ldap del only sam attr (G) + This parameter specifies whether a delete + operation in the ldapsam deletes only the Samba-specific + attributes or the complete LDAP entry. + + + Default : ldap del only sam attr = yes diff --git a/source/param/loadparm.c b/source/param/loadparm.c index d558b09d240..6baaafbd9c7 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -230,6 +230,7 @@ typedef struct BOOL ldap_trust_ids; char *szAclCompat; int ldap_passwd_sync; + BOOL ldap_del_only_sam; BOOL bMsAddPrinterWizard; BOOL bDNSproxy; BOOL bWINSsupport; @@ -1042,6 +1043,7 @@ static struct parm_struct parm_table[] = { {"ldap ssl", P_ENUM, P_GLOBAL, &Globals.ldap_ssl, NULL, enum_ldap_ssl, FLAG_ADVANCED | FLAG_DEVELOPER}, {"ldap passwd sync", P_ENUM, P_GLOBAL, &Globals.ldap_passwd_sync, NULL, enum_ldap_passwd_sync, FLAG_ADVANCED | FLAG_DEVELOPER}, {"ldap trust ids", P_BOOL, P_GLOBAL, &Globals.ldap_trust_ids, NULL, NULL, FLAG_ADVANCED | FLAG_DEVELOPER}, + {"ldap del only sam attr", P_BOOL, P_GLOBAL, &Globals.ldap_del_only_sam, NULL, NULL, FLAG_ADVANCED | FLAG_DEVELOPER}, {"Miscellaneous Options", P_SEP, P_SEPARATOR}, {"add share command", P_STRING, P_GLOBAL, &Globals.szAddShareCommand, NULL, NULL, FLAG_ADVANCED | FLAG_DEVELOPER}, @@ -1423,6 +1425,7 @@ static void init_globals(void) string_set(&Globals.szLdapAdminDn, ""); Globals.ldap_ssl = LDAP_SSL_ON; Globals.ldap_passwd_sync = LDAP_PASSWD_SYNC_OFF; + Globals.ldap_del_only_sam = True; /* these parameters are set to defaults that are more appropriate for the increasing samba install base: @@ -1654,6 +1657,7 @@ FN_GLOBAL_STRING(lp_ldap_admin_dn, &Globals.szLdapAdminDn) FN_GLOBAL_INTEGER(lp_ldap_ssl, &Globals.ldap_ssl) FN_GLOBAL_INTEGER(lp_ldap_passwd_sync, &Globals.ldap_passwd_sync) FN_GLOBAL_BOOL(lp_ldap_trust_ids, &Globals.ldap_trust_ids) +FN_GLOBAL_BOOL(lp_ldap_del_only_sam, &Globals.ldap_del_only_sam) FN_GLOBAL_STRING(lp_add_share_cmd, &Globals.szAddShareCommand) FN_GLOBAL_STRING(lp_change_share_cmd, &Globals.szChangeShareCommand) FN_GLOBAL_STRING(lp_delete_share_cmd, &Globals.szDeleteShareCommand) diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c index 7b54a1d6e33..2571ecd33aa 100644 --- a/source/passdb/pdb_ldap.c +++ b/source/passdb/pdb_ldap.c @@ -847,6 +847,84 @@ static void make_a_mod (LDAPMod *** modlist, int modop, const char *attribute, c *modlist = mods; } +/******************************************************************* + Delete complete object or objectclass and attrs from + object found in search_result depending on lp_ldap_del_only_sam +******************************************************************/ +static NTSTATUS ldapsam_delete_entry(struct ldapsam_privates *ldap_state, + LDAPMessage *result, + const char *objectclass, + const char **attrs) +{ + int rc; + LDAPMessage *entry; + LDAPMod **mods = NULL; + char *name, *dn; + BerElement *ptr = NULL; + + rc = ldap_count_entries(ldap_state->ldap_struct, result); + + if (rc != 1) { + DEBUG(0, ("Entry must exist exactly once!\n")); + return NT_STATUS_UNSUCCESSFUL; + } + + entry = ldap_first_entry(ldap_state->ldap_struct, result); + dn = ldap_get_dn(ldap_state->ldap_struct, entry); + + if (!lp_ldap_del_only_sam()) { + NTSTATUS ret = NT_STATUS_OK; + rc = ldapsam_delete(ldap_state, dn); + + if (rc != LDAP_SUCCESS) { + DEBUG(0, ("Could not delete object %s\n", dn)); + ret = NT_STATUS_UNSUCCESSFUL; + } + ldap_memfree(dn); + return ret; + } + + /* Ok, delete only the SAM attributes */ + + for (name = ldap_first_attribute(ldap_state->ldap_struct, entry, &ptr); + name != NULL; + name = ldap_next_attribute(ldap_state->ldap_struct, entry, ptr)) { + + const char **attrib; + + /* We are only allowed to delete the attributes that + really exist. */ + + for (attrib = attrs; *attrib != NULL; attrib++) { + if (StrCaseCmp(*attrib, name) == 0) { + DEBUG(10, ("deleting attribute %s\n", name)); + make_a_mod(&mods, LDAP_MOD_DELETE, name, NULL); + } + } + + ldap_memfree(name); + } + + if (ptr != NULL) { + ber_free(ptr, 0); + } + + make_a_mod(&mods, LDAP_MOD_DELETE, "objectClass", objectclass); + + rc = ldapsam_modify(ldap_state, dn, mods); + ldap_mods_free(mods, 1); + + if (rc != LDAP_SUCCESS) { + DEBUG(0, ("could not delete attributes for %s, error: %s\n", + dn, ldap_err2string(rc))); + ldap_memfree(dn); + return NT_STATUS_UNSUCCESSFUL; + } + + ldap_memfree(dn); + return NT_STATUS_OK; +} + /* New Interface is being implemented here */ /********************************************************************** @@ -1772,9 +1850,13 @@ static NTSTATUS ldapsam_delete_sam_account(struct pdb_methods *my_methods, SAM_A struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data; const char *sname; int rc; - char *dn; - LDAPMessage *entry; LDAPMessage *result; + NTSTATUS ret; + const char *sam_user_attrs[] = + { "lmPassword", "ntPassword", "pwdLastSet", "logonTime", "logoffTime", + "kickoffTime", "pwdCanChange", "pwdMustChange", "acctFlags", + "displayName", "smbHome", "homeDrive", "scriptPath", "profilePath", + "userWorkstations", "primaryGroupID", "domain", "rid", NULL }; if (!sam_acct) { DEBUG(0, ("sam_acct was NULL!\n")); @@ -1790,30 +1872,10 @@ static NTSTATUS ldapsam_delete_sam_account(struct pdb_methods *my_methods, SAM_A return NT_STATUS_NO_SUCH_USER; } - if (ldap_count_entries (ldap_state->ldap_struct, result) == 0) { - DEBUG (0, ("User doesn't exit!\n")); - ldap_msgfree (result); - return NT_STATUS_NO_SUCH_USER; - } - - entry = ldap_first_entry (ldap_state->ldap_struct, result); - dn = ldap_get_dn (ldap_state->ldap_struct, entry); + ret = ldapsam_delete_entry(ldap_state, result, "sambaAccount", + sam_user_attrs); ldap_msgfree(result); - - rc = ldapsam_delete(ldap_state, dn); - - ldap_memfree (dn); - if (rc != LDAP_SUCCESS) { - char *ld_error; - ldap_get_option (ldap_state->ldap_struct, LDAP_OPT_ERROR_STRING, &ld_error); - DEBUG (0,("failed to delete user with uid = %s with: %s\n\t%s\n", - sname, ldap_err2string (rc), ld_error)); - free (ld_error); - return NT_STATUS_CANNOT_DELETE; - } - - DEBUG (2,("successfully deleted uid = %s from the LDAP database\n", sname)); - return NT_STATUS_OK; + return ret; } /********************************************************************** @@ -2322,12 +2384,13 @@ static NTSTATUS ldapsam_delete_group_mapping_entry(struct pdb_methods *methods, struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)methods->private_data; pstring sidstring, filter; - int rc; - char *dn; LDAPMessage *result; - LDAPMessage *entry; - LDAPMod **mods; + int rc; + NTSTATUS ret; + const char *sam_group_attrs[] = { "ntSid", "ntGroupType", + "description", "displayName", + NULL }; sid_to_string(sidstring, &sid); snprintf(filter, sizeof(filter)-1, "(&(objectClass=sambaGroupMapping)(ntSid=%s))", sidstring); @@ -2335,38 +2398,13 @@ static NTSTATUS ldapsam_delete_group_mapping_entry(struct pdb_methods *methods, rc = ldapsam_search_one_group(ldap_state, filter, &result); if (rc != LDAP_SUCCESS) { - return NT_STATUS_UNSUCCESSFUL; - } - - if (ldap_count_entries(ldap_state->ldap_struct, result) != 1) { - DEBUG(0, ("Group must exist exactly once\n")); - ldap_msgfree(result); - return NT_STATUS_UNSUCCESSFUL; - } - - entry = ldap_first_entry(ldap_state->ldap_struct, result); - dn = ldap_get_dn(ldap_state->ldap_struct, entry); - ldap_msgfree(result); - - mods = NULL; - make_a_mod(&mods, LDAP_MOD_DELETE, "objectClass", "sambaGroupMapping"); - make_a_mod(&mods, LDAP_MOD_DELETE, "ntSid", NULL); - make_a_mod(&mods, LDAP_MOD_DELETE, "ntGroupType", NULL); - make_a_mod(&mods, LDAP_MOD_DELETE, "description", NULL); - make_a_mod(&mods, LDAP_MOD_DELETE, "displayName", NULL); - - rc = ldapsam_modify(ldap_state, dn, mods); - - ldap_mods_free(mods, 1); - - if (rc != LDAP_SUCCESS) { - DEBUG(0, ("failed to delete group %s\n", sidstring)); - return NT_STATUS_CANNOT_DELETE; + return NT_STATUS_NO_SUCH_GROUP; } - DEBUG(2, ("successfully delete group mapping %s in LDAP\n", - sidstring)); - return NT_STATUS_OK; + ret = ldapsam_delete_entry(ldap_state, result, "sambaGroupMapping", + sam_group_attrs); + ldap_msgfree(result); + return ret; } static NTSTATUS ldapsam_setsamgrent(struct pdb_methods *my_methods, -- cgit From af7bfee0c6902c07fdb8d3abccf4c8d6bab00b5a Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 19 Mar 2003 18:45:19 +0000 Subject: Put in the new modules system. It's now used by passdb and rpc. I will put a doc about it in dev-doc later today. --- source/Makefile.in | 49 ++++---------- source/aclocal.m4 | 2 +- source/configure.in | 143 ++++++++++++++-------------------------- source/lib/module.c | 2 + source/modules/mysql.c | 9 +-- source/modules/xml.c | 9 +-- source/passdb/pdb_guest.c | 6 ++ source/passdb/pdb_interface.c | 50 +++++--------- source/passdb/pdb_ldap.c | 20 ++---- source/passdb/pdb_nisplus.c | 10 +-- source/passdb/pdb_smbpasswd.c | 7 ++ source/passdb/pdb_tdb.c | 19 +----- source/passdb/pdb_unix.c | 5 ++ source/rpc_server/srv_dfs.c | 4 -- source/rpc_server/srv_lsa.c | 4 -- source/rpc_server/srv_netlog.c | 4 -- source/rpc_server/srv_pipe.c | 77 +--------------------- source/rpc_server/srv_reg.c | 4 -- source/rpc_server/srv_samr.c | 4 -- source/rpc_server/srv_spoolss.c | 4 -- source/rpc_server/srv_srvsvc.c | 4 -- source/rpc_server/srv_wkssvc.c | 4 -- source/smbd/server.c | 7 +- 23 files changed, 116 insertions(+), 331 deletions(-) diff --git a/source/Makefile.in b/source/Makefile.in index 6964a2bc829..47c05191a3b 100644 --- a/source/Makefile.in +++ b/source/Makefile.in @@ -2,7 +2,7 @@ # Makefile.in for Samba - rewritten for autoconf support # Copyright Andrew Tridgell 1992-1998 # Copyright (C) 2001 by Martin Pool -# Copyright Andrew Barteltt 2002 +# Copyright Andrew Bartlett 2002 # Copyright (C) 2003 Anthony Liguori ########################################################################### @@ -136,8 +136,9 @@ QUOTAOBJS=@QUOTAOBJS@ VFS_MODULES = bin/vfs_audit.@SHLIBEXT@ bin/vfs_extd_audit.@SHLIBEXT@ bin/vfs_recycle.@SHLIBEXT@ \ bin/vfs_netatalk.@SHLIBEXT@ bin/vfs_fake_perms.@SHLIBEXT@ -PDB_MODULES = @MODULE_MYSQL@ @MODULE_XML@ -MODULES = bin/developer.@SHLIBEXT@ +PDB_MODULES = @PDB_MODULES@ +RPC_MODULES = @RPC_MODULES@ +MODULES = $(VFS_MODULES) $(PDB_MODULES) $(RPC_MODULES) ###################################################################### # object file lists @@ -241,29 +242,7 @@ RPC_SPOOLSS_OBJ = rpc_server/srv_spoolss.o rpc_server/srv_spoolss_nt.o RPC_PIPE_OBJ = rpc_server/srv_pipe_hnd.o rpc_server/srv_util.o \ rpc_server/srv_pipe.o rpc_server/srv_lsa_hnd.o -# These are like they are to avoid a dependency on GNU MAKE -@LSA_DYNAMIC_YES@RPC_MODULES1 = bin/librpc_lsarpc.@SHLIBEXT@ -@NETLOG_DYNAMIC_YES@RPC_MODULES2 = bin/librpc_NETLOGON.@SHLIBEXT@ -@SAMR_DYNAMIC_YES@RPC_MODULES3 = bin/librpc_samr.@SHLIBEXT@ -@SVC_DYNAMIC_YES@RPC_MODULES4 = bin/librpc_srvsvc.@SHLIBEXT@ -@WKS_DYNAMIC_YES@RPC_MODULES5 = bin/librpc_wkssvc.@SHLIBEXT@ -@REG_DYNAMIC_YES@RPC_MODULES6 = bin/librpc_winreg.@SHLIBEXT@ -@SPOOLSS_DYNAMIC_YES@RPC_MODULES7 = bin/librpc_spoolss.@SHLIBEXT@ -@DFS_DYNAMIC_YES@RPC_MODULES8 = bin/librpc_netdfs.@SHLIBEXT@ -RPC_MODULES = $(RPC_MODULES1) $(RPC_MODULES2) $(RPC_MODULES3) $(RPC_MODULES4) \ - $(RPC_MODULES5) $(RPC_MODULES6) $(RPC_MODULES7) $(RPC_MODULES8) - -@LSA_DYNAMIC_NO@RPC_PIPE_OBJ1 = $(RPC_LSA_OBJ) -@NETLOG_DYNAMIC_NO@RPC_PIPE_OBJ2 = $(RPC_NETLOG_OBJ) -@SAMR_DYNAMIC_NO@RPC_PIPE_OBJ3 = $(RPC_SAMR_OBJ) -@SVC_DYNAMIC_NO@RPC_PIPE_OBJ4 = $(RPC_SVC_OBJ) -@WKS_DYNAMIC_NO@RPC_PIPE_OBJ5 = $(RPC_WKS_OBJ) -@REG_DYNAMIC_NO@RPC_PIPE_OBJ6 = $(RPC_REG_OBJ) -@SPOOLSS_DYNAMIC_NO@RPC_PIPE_OBJ7 = $(RPC_SPOOLSS_OBJ) -@DFS_DYNAMIC_NO@RPC_PIPE_OBJ8 = $(RPC_DFS_OBJ) -RPC_SERVER_OBJ = $(RPC_PIPE_OBJ1) $(RPC_PIPE_OBJ2) $(RPC_PIPE_OBJ3) \ - $(RPC_PIPE_OBJ4) $(RPC_PIPE_OBJ5) $(RPC_PIPE_OBJ6) $(RPC_PIPE_OBJ7) \ - $(RPC_PIPE_OBJ8) $(RPC_PIPE_OBJ) +RPC_SERVER_OBJ = @RPC_STATIC@ $(RPC_PIPE_OBJ) # this includes only the low level parse code, not stuff # that requires knowledge of security contexts @@ -285,11 +264,8 @@ LOCKING_OBJ = locking/locking.o locking/brlock.o locking/posix.o PASSDB_GET_SET_OBJ = passdb/pdb_get_set.o PASSDB_OBJ = $(PASSDB_GET_SET_OBJ) passdb/passdb.o passdb/pdb_interface.o \ - passdb/machine_sid.o passdb/pdb_smbpasswd.o \ - passdb/pdb_tdb.o passdb/pdb_ldap.o \ - passdb/pdb_unix.o passdb/pdb_guest.o passdb/util_sam_sid.o \ - passdb/pdb_compat.o passdb/pdb_nisplus.o \ - passdb/privileges.o + passdb/machine_sid.o passdb/util_sam_sid.o passdb/pdb_compat.o \ + passdb/privileges.o @PDB_STATIC@ XML_OBJ = modules/xml.o MYSQL_OBJ = modules/mysql.o @@ -304,8 +280,6 @@ SAMTEST_OBJ = torture/samtest.o torture/cmd_sam.o $(SAM_OBJ) $(LIB_OBJ) $(PARAM_ GROUPDB_OBJ = groupdb/mapping.o -# passdb/smbpass.o passdb/ldap.o passdb/nispass.o - PROFILE_OBJ = profile/profile.o OPLOCK_OBJ = smbd/oplock.o smbd/oplock_irix.o smbd/oplock_linux.o @@ -617,7 +591,7 @@ NTLM_AUTH_OBJ = utils/ntlm_auth.o $(LIBNTLMSSP_OBJ) $(LIBSAMBA_OBJ) $(POPT_LIB_O # now the rules... ###################################################################### all : SHOWFLAGS proto_exists $(SBIN_PROGS) $(BIN_PROGS) $(SHLIBS) \ - $(TORTURE_PROGS) $(RPC_MODULES) @EXTRA_ALL_TARGETS@ + $(TORTURE_PROGS) @EXTRA_ALL_TARGETS@ pam_smbpass : SHOWFLAGS bin/pam_smbpass.@SHLIBEXT@ @@ -649,7 +623,7 @@ nsswitch : SHOWFLAGS bin/winbindd@EXEEXT@ bin/wbinfo@EXEEXT@ nsswitch/libnss_win wins : SHOWFLAGS nsswitch/libnss_wins.@SHLIBEXT@ -modules: SHOWFLAGS proto_exists $(VFS_MODULES) $(PDB_MODULES) $(MODULES) +modules: SHOWFLAGS proto_exists $(MODULES) everything: all libsmbclient debug2html smbfilter talloctort @@ -1054,11 +1028,11 @@ installbin: all installdirs @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(SBINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(SBIN_PROGS) @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(BIN_PROGS) - @$(SHELL) $(srcdir)/script/installmodules.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(RPCLIBDIR) $(RPC_MODULES) installmodules: all installdirs @$(SHELL) $(srcdir)/script/installmodules.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(VFSLIBDIR) $(VFS_MODULES) @$(SHELL) $(srcdir)/script/installmodules.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(PDBLIBDIR) $(PDB_MODULES) + @$(SHELL) $(srcdir)/script/installmodules.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(RPCLIBDIR) $(RPC_MODULES) installscripts: installdirs @$(SHELL) $(srcdir)/script/installscripts.sh $(INSTALLPERMS) $(DESTDIR)$(BINDIR) $(SCRIPTS) @@ -1128,12 +1102,11 @@ uninstallman: uninstallbin: @$(SHELL) $(srcdir)/script/uninstallbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(SBINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(DESTDIR)$(SBIN_PROGS) @$(SHELL) $(srcdir)/script/uninstallbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(DESTDIR)$(BIN_PROGS) - @$(SHELL) $(srcdir)/script/uninstallmodules.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(RPCLIBDIR) $(DESTDIR)$(RPC_MODULES) uninstallmodules: @$(SHELL) $(srcdir)/script/uninstallmodules.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(VFSLIBDIR) $(DESTDIR)$(VFS_MODULES) @$(SHELL) $(srcdir)/script/uninstallmodules.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(PDBLIBDIR) $(DESTDIR)$(PDB_MODULES) - @$(SHELL) $(srcdir)/script/uninstallmodules.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(MODULES) + @$(SHELL) $(srcdir)/script/uninstallmodules.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(RPCLIBDIR) $(DESTDIR)$(RPC_MODULES) uninstallscripts: @$(SHELL) $(srcdir)/script/uninstallscripts.sh $(INSTALLPERMS) $(DESTDIR)$(BINDIR) $(SCRIPTS) diff --git a/source/aclocal.m4 b/source/aclocal.m4 index 87acceb2ae1..15508206c39 100644 --- a/source/aclocal.m4 +++ b/source/aclocal.m4 @@ -59,7 +59,7 @@ AC_DEFUN(SMB_SUBSYSTEM, [ AC_SUBST($1_STATIC) AC_SUBST($1_MODULES) - AC_DEFINE_UNQUOTED([static_init_]translit([$1], [A-Z], [a-z]), ["$init_static_modules_]translit([$1], [A-Z], [a-z])["], [Static init functions]) + AC_DEFINE_UNQUOTED([static_init_]translit([$1], [A-Z], [a-z]), [{$init_static_modules_]translit([$1], [A-Z], [a-z])[}], [Static init functions]) ]) dnl AC_PROG_CC_FLAG(flag) diff --git a/source/configure.in b/source/configure.in index e038654f7ed..ee6a88ee6d8 100644 --- a/source/configure.in +++ b/source/configure.in @@ -158,41 +158,6 @@ AC_SUBST(SMBWRAPPER) AC_SUBST(EXTRA_BIN_PROGS) AC_SUBST(EXTRA_SBIN_PROGS) AC_SUBST(EXTRA_ALL_TARGETS) -dnl For the DYNAMIC RPC stuff -dnl The complicated _YES and _NO stuff allows us to avoid a dependency -dnl on GNU Make. -AC_SUBST(LSA_DYNAMIC_YES) -AC_SUBST(LSA_DYNAMIC_NO) -LSA_DYNAMIC_YES="#" -LSA_DYNAMIC_NO= -AC_SUBST(NETLOG_DYNAMIC_YES) -AC_SUBST(NETLOG_DYNAMIC_NO) -NETLOG_DYNAMIC_YES="#" -NETLOG_DYNAMIC_NO= -AC_SUBST(SAMR_DYNAMIC_YES) -AC_SUBST(SAMR_DYNAMIC_NO) -SAMR_DYNAMIC_YES="#" -SAMR_DYNAMIC_NO= -AC_SUBST(SVC_DYNAMIC_YES) -AC_SUBST(SVC_DYNAMIC_NO) -SVC_DYNAMIC_YES="#" -SVC_DYNAMIC_NO= -AC_SUBST(WKS_DYNAMIC_YES) -AC_SUBST(WKS_DYNAMIC_NO) -WKS_DYNAMIC_YES="#" -WKS_DYNAMIC_NO= -AC_SUBST(REG_DYNAMIC_YES) -AC_SUBST(REG_DYNAMIC_NO) -REG_DYNAMIC_YES="#" -REG_DYNAMIC_NO= -AC_SUBST(SPOOLSS_DYNAMIC_YES) -AC_SUBST(SPOOLSS_DYNAMIC_NO) -SPOOLSS_DYNAMIC_YES="#" -SPOOLSS_DYNAMIC_NO= -AC_SUBST(DFS_DYNAMIC_YES) -AC_SUBST(DFS_DYNAMIC_NO) -DFS_DYNAMIC_YES="#" -DFS_DYNAMIC_NO= # compile with optimization and without debugging by default CFLAGS="-O ${CFLAGS}" @@ -223,60 +188,6 @@ then LIBS="$LIBS -ldmalloc" fi -AC_ARG_ENABLE(dynrpc, [ --enable-dynrpc Enable dynamic RPC modules [default=no]]) - -if test x$enable_dynrpc = xyes -then - enable_dynrpc=lsa,samr,reg,wks,netlog,dfs -fi - -if test x$enable_dynrpc != xno -then - for i in `echo $enable_dynrpc | sed -e's/,/ /g'` - do case $i in lsa) - LSA_DYNAMIC_YES= - LSA_DYNAMIC_NO="#" - AC_DEFINE(RPC_LSA_DYNAMIC, 1, - [Define to make the LSA pipe dynamic]) - ;; samr) - SAMR_DYNAMIC_YES= - SAMR_DYNAMIC_NO="#" - AC_DEFINE(RPC_SAMR_DYNAMIC, 1, - [Define to make the SAMR pipe dynamic]) - ;; svc) - SVC_DYNAMIC_YES= - SVC_DYNAMIC_NO="#" - AC_DEFINE(RPC_SVC_DYNAMIC, 1, - [Define to make the SRVSVC pipe dynamic]) - ;; wks) - WKS_DYNAMIC_YES= - WKS_DYNAMIC_NO="#" - AC_DEFINE(RPC_WKS_DYNAMIC, 1, - [Define to make the WKSSVC pipe dynamic]) - ;; netlog) - NETLOG_DYNAMIC_YES= - NETLOG_DYNAMIC_NO="#" - AC_DEFINE(RPC_NETLOG_DYNAMIC, 1, - [Define to make the NETLOGON pipe dynamic]) - ;; reg) - REG_DYNAMIC_YES= - REG_DYNAMIC_NO="#" - AC_DEFINE(RPC_REG_DYNAMIC, 1, - [Define to make the WINREG pipe dynamic]) - ;; spoolss) - SPOOLSS_DYNAMIC_YES= - SPOOLSS_DYNAMIC_NO="#" - AC_DEFINE(RPC_SPOOLSS_DYNAMIC, 1, - [Define to make the SPOOLSS pipe dynamic]) - ;; dfs) - DFS_DYNAMIC_YES= - DFS_DYNAMIC_NO="#" - AC_DEFINE(RPC_DFS_DYNAMIC, 1, - [Define to make the NETDFS pipe dynamic]) - ;; esac - done -fi - dnl Checks for programs. AC_PROG_CC AC_PROG_INSTALL @@ -323,6 +234,9 @@ AC_VALIDATE_CACHE_SYSTEM_TYPE DYNEXP= +dnl Add modules that have to be built by default here +default_modules="pdb_smbpasswd pdb_tdb pdb_unix rpc_lsa rpc_samr rpc_reg rpc_wks rpc_netlog rpc_dfs rpc_srv rpc_spoolss" + # # Config CPPFLAG settings for strange OS's that must be set # before other tests. @@ -2329,6 +2243,7 @@ if test x"$with_ldap_support" = x"yes"; then if test x$have_ldap != xyes; then AC_CHECK_LIB(ldap, ldap_domain2hostlist, [LIBS="$LIBS -lldap"; AC_DEFINE(HAVE_LDAP,1,[Whether ldap is available])]) + default_modules="$default_modules pdb_ldap" ######################################################## # If we have LDAP, does it's rebind procedure take 2 or 3 arguments? @@ -2344,15 +2259,15 @@ fi ######################################################## # Compile with MySQL support? -AM_PATH_MYSQL([0.11.0],[MODULE_MYSQL=bin/mysql.so],[MODULE_MYSQL=]) +AM_PATH_MYSQL([0.11.0],[default_modules="$default_modules pdb_mysql"],[]) CFLAGS="$CFLAGS $MYSQL_CFLAGS" -AC_SUBST(MODULE_MYSQL) +LIBS="$LIBS $MYSQL_LIBS" ######################################################## # Compile with XML support? -AM_PATH_XML2([2.0.0],[MODULE_XML=bin/xml.so],[MODULE_XML=]) +AM_PATH_XML2([2.0.0],[default_modules="$default_modules pdb_xml"],[]) CFLAGS="$CFLAGS $XML_CFLAGS" -AC_SUBST(MODULE_XML) +LIBS="$LIBS $XML_LIBS" ################################################# # check for automount support @@ -3434,6 +3349,48 @@ AC_ARG_WITH(python, esac ]) AC_SUBST(PYTHON) +for i in `echo $default_modules | sed -e's/,/ /g'` +do + dnl Set to shared instead of static when dlopen() is available? + eval MODULE_$i=STATIC +done + +AC_ARG_WITH(static-modules, +[ --with-static-modules=MODULES Comma-seperated list of names of modules to statically link in], +[ if test $withval; then + for i in `echo $withval | sed -e's/,/ /g'` + do + eval MODULE_$i=STATIC + done +fi ]) + +AC_ARG_WITH(shared-modules, +[ --with-shared-modules=MODULES Comma-seperated list of names of modules to build shared], +[ if test $withval; then + for i in `echo $withval | sed -e's/,/ /g'` + do + eval MODULE_$i=SHARED + done +fi ]) + +SMB_MODULE($MODULE_pdb_xml, pdb_xml, modules/xml.o, bin/xml.so PDB) +SMB_MODULE($MODULE_pdb_mysql, pdb_mysql, modules/mysql.o, bin/mysql.so, PDB) +SMB_MODULE($MODULE_pdb_ldap, pdb_ldap, passdb/pdb_ldap.o, bin/pdb_ldap.so, PDB) +SMB_MODULE($MODULE_pdb_smbpasswd, pdb_smbpasswd, passdb/pdb_smbpasswd.o, bin/smbpasswd.so, PDB) +SMB_MODULE($MODULE_pdb_tdb, pdb_tdbsam, passdb/pdb_tdb.o, bin/tdb.so, PDB) +SMB_MODULE($MODULE_pdb_nisplussam, pdb_nisplussam, passdb/pdb_nisplus.o, bin/nisplus.so, PDB) +SMB_MODULE(STATIC, pdb_guest, passdb/pdb_guest.o, bin/pdb_guest.so, PDB) +SMB_SUBSYSTEM(PDB) + +SMB_MODULE($MODULE_rpc_lsa, rpc_lsa, \$(RPC_LSA_OBJ), bin/librpc_lsa.so, RPC) +SMB_MODULE($MODULE_rpc_reg, rpc_reg, \$(RPC_REG_OBJ), bin/librpc_reg.so, RPC) +SMB_MODULE($MODULE_rpc_wks, rpc_wks, \$(RPC_WKS_OBJ), bin/librpc_wks.so, RPC) +SMB_MODULE($MODULE_rpc_netlog, rpc_net, \$(RPC_NETLOG_OBJ), bin/librpc_netlog.so, RPC) +SMB_MODULE($MODULE_rpc_dfs, rpc_dfs, \$(RPC_DFS_OBJ), bin/librpc_dfs.so, RPC) +SMB_MODULE($MODULE_rpc_srv, rpc_srv, \$(RPC_SVC_OBJ), bin/librpc_srvsvc.so, RPC) +SMB_MODULE($MODULE_rpc_spoolss, rpc_spoolss, \$(RPC_SPOOLSS_OBJ), bin/librpc_spoolss.so, RPC) +SMB_SUBSYSTEM(RPC) + ################################################# # do extra things if we are running insure diff --git a/source/lib/module.c b/source/lib/module.c index 4e2fe48af70..bf37078bb92 100644 --- a/source/lib/module.c +++ b/source/lib/module.c @@ -87,6 +87,8 @@ int smb_probe_module(const char *subsystem, const char *module) pstrcat(full_path, module); pstrcat(full_path, "."); pstrcat(full_path, shlib_ext()); + + DEBUG(5, ("Probing module %s: Trying to load from %s\n", module, full_path)); return smb_load_module(full_path); } diff --git a/source/modules/mysql.c b/source/modules/mysql.c index 1d5819295b0..47883ca7f7d 100644 --- a/source/modules/mysql.c +++ b/source/modules/mysql.c @@ -1032,12 +1032,7 @@ static NTSTATUS mysqlsam_init(struct pdb_context * pdb_context, struct pdb_metho return NT_STATUS_OK; } -int init_module(void); - -int init_module() +int pdb_mysql_init(void) { - if(smb_register_passdb("mysql", mysqlsam_init, PASSDB_INTERFACE_VERSION)) - return 0; - - return 1; + return smb_register_passdb("mysql", mysqlsam_init, PASSDB_INTERFACE_VERSION); } diff --git a/source/modules/xml.c b/source/modules/xml.c index ead3e3a8748..85b9e81b7f1 100644 --- a/source/modules/xml.c +++ b/source/modules/xml.c @@ -564,12 +564,7 @@ NTSTATUS xmlsam_init(PDB_CONTEXT * pdb_context, PDB_METHODS ** pdb_method, return NT_STATUS_OK; } -int init_module(void); - -int init_module() +int pdb_xml_init(void) { - if(smb_register_passdb("xml", xmlsam_init, PASSDB_INTERFACE_VERSION)) - return 0; - - return 1; + return smb_register_passdb("xml", xmlsam_init, PASSDB_INTERFACE_VERSION); } diff --git a/source/passdb/pdb_guest.c b/source/passdb/pdb_guest.c index 3f0f06d18d0..f5a15057e09 100644 --- a/source/passdb/pdb_guest.c +++ b/source/passdb/pdb_guest.c @@ -121,3 +121,9 @@ NTSTATUS pdb_init_guestsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, c /* There's not very much to initialise here */ return NT_STATUS_OK; } + +int pdb_guest_init(void) +{ + return smb_register_passdb("guest", pdb_init_guestsam, PASSDB_INTERFACE_VERSION); +} + diff --git a/source/passdb/pdb_interface.c b/source/passdb/pdb_interface.c index 48a039b3dee..9819df75ec1 100644 --- a/source/passdb/pdb_interface.c +++ b/source/passdb/pdb_interface.c @@ -24,39 +24,14 @@ #undef DBGC_CLASS #define DBGC_CLASS DBGC_PASSDB -/** List of various built-in passdb modules */ -static const struct { - const char *name; - /* Function to create a member of the pdb_methods list */ - pdb_init_function init; -} builtin_pdb_init_functions[] = { - { "smbpasswd", pdb_init_smbpasswd }, - { "smbpasswd_nua", pdb_init_smbpasswd_nua }, - { "tdbsam", pdb_init_tdbsam }, - { "tdbsam_nua", pdb_init_tdbsam_nua }, - { "ldapsam", pdb_init_ldapsam }, - { "ldapsam_nua", pdb_init_ldapsam_nua }, - { "unixsam", pdb_init_unixsam }, - { "guest", pdb_init_guestsam }, - { "nisplussam", pdb_init_nisplussam }, - { NULL, NULL} -}; - -static struct pdb_init_function_entry *backends; -static void lazy_initialize_passdb(void); - -static void lazy_initialize_passdb() -{ - int i; - static BOOL initialised = False; - - if(!initialised) { - initialised = True; +static struct pdb_init_function_entry *backends = NULL; - for(i = 0; builtin_pdb_init_functions[i].name; i++) { - smb_register_passdb(builtin_pdb_init_functions[i].name, builtin_pdb_init_functions[i].init, PASSDB_INTERFACE_VERSION); - } - } +static void lazy_initialize_passdb(void) +{ + static BOOL initialized = FALSE; + if(initialized)return; + static_init_pdb; + initialized = TRUE; } BOOL smb_register_passdb(const char *name, pdb_init_function init, int version) @@ -451,13 +426,18 @@ static NTSTATUS make_pdb_methods_name(struct pdb_methods **methods, struct pdb_c entry = pdb_find_backend_entry(module_name); /* Try to find a module that contains this module */ - if(!entry) { - smb_probe_module("passdb", module_name); - entry = pdb_find_backend_entry(module_name); + if (!entry) { + DEBUG(2,("No builtin backend found, trying to load plugin\n")); + if(smb_probe_module("passdb", module_name) && !(entry = pdb_find_backend_entry(module_name))) { + DEBUG(0,("Plugin is available, but doesn't register passdb backend %s\n", module_name)); + SAFE_FREE(module_name); + return NT_STATUS_UNSUCCESSFUL; + } } /* No such backend found */ if(!entry) { + DEBUG(0,("No builtin nor plugin backend for %s found\n", module_name)); SAFE_FREE(module_name); return NT_STATUS_INVALID_PARAMETER; } diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c index 2571ecd33aa..98ddc72ed14 100644 --- a/source/passdb/pdb_ldap.c +++ b/source/passdb/pdb_ldap.c @@ -28,7 +28,6 @@ #undef DBGC_CLASS #define DBGC_CLASS DBGC_PASSDB -#ifdef HAVE_LDAP /* TODO: * persistent connections: if using NSS LDAP, many connections are made * however, using only one within Samba would be nice @@ -2611,20 +2610,9 @@ NTSTATUS pdb_init_ldapsam_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method return NT_STATUS_OK; } - -#else - -NTSTATUS pdb_init_ldapsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location) +int pdb_ldap_init(void) { - DEBUG(0, ("ldap not detected at configure time, ldapsam not availalble!\n")); - return NT_STATUS_UNSUCCESSFUL; + smb_register_passdb("ldapsam", pdb_init_ldapsam, PASSDB_INTERFACE_VERSION); + smb_register_passdb("ldapsam_nua", pdb_init_ldapsam_nua, PASSDB_INTERFACE_VERSION); + return TRUE; } - -NTSTATUS pdb_init_ldapsam_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location) -{ - DEBUG(0, ("ldap not dectected at configure time, ldapsam_nua not available!\n")); - return NT_STATUS_UNSUCCESSFUL; -} - - -#endif diff --git a/source/passdb/pdb_nisplus.c b/source/passdb/pdb_nisplus.c index 0a42c36ea02..73d65af1c6f 100644 --- a/source/passdb/pdb_nisplus.c +++ b/source/passdb/pdb_nisplus.c @@ -24,8 +24,6 @@ #include "includes.h" -#ifdef WITH_NISPLUS_SAM - #ifdef BROKEN_NISPLUS_INCLUDE_FILES /* @@ -1555,11 +1553,7 @@ NTSTATUS pdb_init_nisplussam (PDB_CONTEXT * pdb_context, return NT_STATUS_OK; } -#else -NTSTATUS pdb_init_nisplussam (PDB_CONTEXT * c, PDB_METHODS ** m, - const char *l) +int pdb_nisplus_init(void) { - DEBUG (0, ("nisplus sam not compiled in!\n")); - return NT_STATUS_UNSUCCESSFUL; + return smb_register_passdb("nisplussam", pdb_init_nisplussam, PASSDB_INTERFACE_VERSION); } -#endif /* WITH_NISPLUS_SAM */ diff --git a/source/passdb/pdb_smbpasswd.c b/source/passdb/pdb_smbpasswd.c index b5a2bbbfe7c..bcbeb748082 100644 --- a/source/passdb/pdb_smbpasswd.c +++ b/source/passdb/pdb_smbpasswd.c @@ -1579,3 +1579,10 @@ NTSTATUS pdb_init_smbpasswd_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_meth return NT_STATUS_OK; } + +int pdb_smbpasswd_init(void) +{ + smb_register_passdb("smbpasswd", pdb_init_smbpasswd, PASSDB_INTERFACE_VERSION); + smb_register_passdb("smbpasswd_nua", pdb_init_smbpasswd_nua, PASSDB_INTERFACE_VERSION); + return TRUE; +} diff --git a/source/passdb/pdb_tdb.c b/source/passdb/pdb_tdb.c index c48c9567b16..da6fcf70fc1 100644 --- a/source/passdb/pdb_tdb.c +++ b/source/passdb/pdb_tdb.c @@ -37,8 +37,6 @@ static int tdbsam_debug_level = DBGC_ALL; #endif -#ifdef WITH_TDB_SAM - #define PDB_VERSION "20010830" #define PASSDB_FILE_NAME "passdb.tdb" #define TDB_FORMAT_STRING "ddddddBBBBBBBBBBBBddBBwdwdBdd" @@ -988,20 +986,9 @@ NTSTATUS pdb_init_tdbsam_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, return NT_STATUS_OK; } - -#else - -NTSTATUS pdb_init_tdbsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location) +int pdb_tdbsam_init(void) { - DEBUG(0, ("tdbsam not compiled in!\n")); - return NT_STATUS_UNSUCCESSFUL; + smb_register_passdb("tdbsam", pdb_init_tdbsam, PASSDB_INTERFACE_VERSION); + smb_register_passdb("tdbsam_nua", pdb_init_tdbsam_nua, PASSDB_INTERFACE_VERSION); } -NTSTATUS pdb_init_tdbsam_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location) -{ - DEBUG(0, ("tdbsam_nua not compiled in!\n")); - return NT_STATUS_UNSUCCESSFUL; -} - - -#endif diff --git a/source/passdb/pdb_unix.c b/source/passdb/pdb_unix.c index 07acd08a4e5..dcdf5cf50b1 100644 --- a/source/passdb/pdb_unix.c +++ b/source/passdb/pdb_unix.c @@ -123,3 +123,8 @@ NTSTATUS pdb_init_unixsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, co /* There's not very much to initialise here */ return NT_STATUS_OK; } + +int pdb_unix_init(void) +{ + return smb_register_passdb("unixsam", pdb_init_unixsam, PASSDB_INTERFACE_VERSION); +} diff --git a/source/rpc_server/srv_dfs.c b/source/rpc_server/srv_dfs.c index 14c1cb4088e..0807efd550c 100644 --- a/source/rpc_server/srv_dfs.c +++ b/source/rpc_server/srv_dfs.c @@ -158,11 +158,7 @@ static BOOL api_dfs_enum(pipes_struct *p) \pipe\netdfs commands ********************************************************************/ -#ifdef RPC_DFS_DYNAMIC -int init_module(void) -#else int rpc_dfs_init(void) -#endif { struct api_struct api_netdfs_cmds[] = { diff --git a/source/rpc_server/srv_lsa.c b/source/rpc_server/srv_lsa.c index 0e4039326b6..bfa706acf24 100644 --- a/source/rpc_server/srv_lsa.c +++ b/source/rpc_server/srv_lsa.c @@ -771,11 +771,7 @@ static BOOL api_lsa_remove_acct_rights(pipes_struct *p) \PIPE\ntlsa commands ***************************************************************************/ -#ifdef RPC_LSA_DYNAMIC -int init_module(void) -#else int rpc_lsa_init(void) -#endif { static const struct api_struct api_lsa_cmds[] = { diff --git a/source/rpc_server/srv_netlog.c b/source/rpc_server/srv_netlog.c index c9e4fc1b1f6..7dc0f57f34f 100644 --- a/source/rpc_server/srv_netlog.c +++ b/source/rpc_server/srv_netlog.c @@ -321,11 +321,7 @@ static BOOL api_net_logon_ctrl(pipes_struct *p) array of \PIPE\NETLOGON operations ********************************************************************/ -#ifdef RPC_NETLOG_DYNAMIC -int init_module(void) -#else int rpc_net_init(void) -#endif { static struct api_struct api_net_cmds [] = { diff --git a/source/rpc_server/srv_pipe.c b/source/rpc_server/srv_pipe.c index f6deac68f82..d6b774c5663 100644 --- a/source/rpc_server/srv_pipe.c +++ b/source/rpc_server/srv_pipe.c @@ -454,41 +454,6 @@ failed authentication on named pipe %s.\n", domain, user_name, wks, p->name )); The switch table for the pipe names and the functions to handle them. *******************************************************************/ -struct api_cmd -{ - const char *name; - int (*init)(void); -}; - -static struct api_cmd api_fd_commands[] = -{ -#ifndef RPC_LSA_DYNAMIC - { "lsarpc", rpc_lsa_init }, -#endif -#ifndef RPC_SAMR_DYNAMIC - { "samr", rpc_samr_init }, -#endif -#ifndef RPC_SVC_DYNAMIC - { "srvsvc", rpc_srv_init }, -#endif -#ifndef RPC_WKS_DYNAMIC - { "wkssvc", rpc_wks_init }, -#endif -#ifndef RPC_NETLOG_DYNAMIC - { "NETLOGON", rpc_net_init }, -#endif -#ifndef RPC_REG_DYNAMIC - { "winreg", rpc_reg_init }, -#endif -#ifndef RPC_SPOOLSS_DYNAMIC - { "spoolss", rpc_spoolss_init }, -#endif -#ifndef RPC_DFS_DYNAMIC - { "netdfs", rpc_dfs_init }, -#endif - { NULL, NULL } -}; - struct rpc_table { struct @@ -791,28 +756,6 @@ int rpc_pipe_register_commands(const char *clnt, const char *srv, const struct a return size; } -/******************************************************************* - Register commands to an RPC pipe -*******************************************************************/ -int rpc_load_module(const char *module) -{ - pstring full_path; - int status; - - pstrcpy(full_path, lib_path("rpc")); - pstrcat(full_path, "/librpc_"); - pstrcat(full_path, module); - pstrcat(full_path, "."); - pstrcat(full_path, shlib_ext()); - - if (!(status = smb_load_module(full_path))) { - DEBUG(0, ("Could not load requested pipe %s as %s\n", - module, full_path)); - } - - return status; -} - /******************************************************************* Respond to a pipe bind request. *******************************************************************/ @@ -851,14 +794,7 @@ BOOL api_pipe_bind_req(pipes_struct *p, prs_struct *rpc_in_p) } if (i == rpc_lookup_size) { - for (i = 0; api_fd_commands[i].name; i++) { - if (strequal(api_fd_commands[i].name, p->name)) { - api_fd_commands[i].init(); - break; - } - } - - if (!api_fd_commands[i].name && !rpc_load_module(p->name)) { + if (!smb_probe_module("rpc", p->name)) { DEBUG(3,("api_pipe_bind_req: Unknown pipe name %s in bind request.\n", p->name )); if(!setup_bind_nak(p)) @@ -1273,16 +1209,7 @@ BOOL api_pipe_request(pipes_struct *p) if (i == rpc_lookup_size) { - for (i = 0; api_fd_commands[i].name; i++) { - if (strequal(api_fd_commands[i].name, p->name)) { - api_fd_commands[i].init(); - break; - } - } - - if (!api_fd_commands[i].name) { - rpc_load_module(p->name); - } + smb_probe_module("rpc", p->name); for (i = 0; i < rpc_lookup_size; i++) { if (strequal(rpc_lookup[i].pipe.clnt, p->name)) { diff --git a/source/rpc_server/srv_reg.c b/source/rpc_server/srv_reg.c index 8fc1d42b2fb..f72d8e4f295 100644 --- a/source/rpc_server/srv_reg.c +++ b/source/rpc_server/srv_reg.c @@ -373,11 +373,7 @@ static BOOL api_reg_save_key(pipes_struct *p) array of \PIPE\reg operations ********************************************************************/ -#ifdef RPC_REG_DYNAMIC -int init_module(void) -#else int rpc_reg_init(void) -#endif { static struct api_struct api_reg_cmds[] = { diff --git a/source/rpc_server/srv_samr.c b/source/rpc_server/srv_samr.c index b75195ceefd..67c092775b9 100644 --- a/source/rpc_server/srv_samr.c +++ b/source/rpc_server/srv_samr.c @@ -1443,11 +1443,7 @@ static BOOL api_samr_set_dom_info(pipes_struct *p) array of \PIPE\samr operations ********************************************************************/ -#ifdef RPC_SAMR_DYNAMIC -int init_module(void) -#else int rpc_samr_init(void) -#endif { static struct api_struct api_samr_cmds [] = { diff --git a/source/rpc_server/srv_spoolss.c b/source/rpc_server/srv_spoolss.c index 3023922a5b3..a7dd7a6cef5 100755 --- a/source/rpc_server/srv_spoolss.c +++ b/source/rpc_server/srv_spoolss.c @@ -1580,11 +1580,7 @@ static BOOL api_spoolss_replycloseprinter(pipes_struct *p) \pipe\spoolss commands ********************************************************************/ -#ifdef RPC_SPOOLSS_DYNAMIC -int init_module(void) -#else int rpc_spoolss_init(void) -#endif { struct api_struct api_spoolss_cmds[] = { diff --git a/source/rpc_server/srv_srvsvc.c b/source/rpc_server/srv_srvsvc.c index 7c5e317c877..96820ae74bc 100644 --- a/source/rpc_server/srv_srvsvc.c +++ b/source/rpc_server/srv_srvsvc.c @@ -526,11 +526,7 @@ static BOOL api_srv_net_file_set_secdesc(pipes_struct *p) \PIPE\srvsvc commands ********************************************************************/ -#ifdef RPC_SVC_DYNAMIC -int init_module(void) -#else int rpc_srv_init(void) -#endif { static const struct api_struct api_srv_cmds[] = { diff --git a/source/rpc_server/srv_wkssvc.c b/source/rpc_server/srv_wkssvc.c index e0d662ea801..ddcbadd1d44 100644 --- a/source/rpc_server/srv_wkssvc.c +++ b/source/rpc_server/srv_wkssvc.c @@ -60,11 +60,7 @@ static BOOL api_wks_query_info(pipes_struct *p) \PIPE\wkssvc commands ********************************************************************/ -#ifdef RPC_WKS_DYNAMIC -int init_module(void) -#else int rpc_wks_init(void) -#endif { static struct api_struct api_wks_cmds[] = { diff --git a/source/smbd/server.c b/source/smbd/server.c index aff402df668..96d936d3a8a 100644 --- a/source/smbd/server.c +++ b/source/smbd/server.c @@ -411,9 +411,6 @@ static BOOL open_sockets_smbd(BOOL is_daemon, BOOL interactive, const char *smb_ return False; } - /* Load DSO's */ - init_modules(); - return True; } /* The parent doesn't need this socket */ @@ -866,6 +863,10 @@ static BOOL init_structs(void ) if(!initialize_password_db(False)) exit(1); + static_init_rpc; + + init_modules(); + uni_group_cache_init(); /* Non-critical */ /* possibly reload the services file. */ -- cgit