Your IP : 216.73.216.86


Current Path : /home/emeraadmin/public_html/4d695/
Upload File :
Current File : /home/emeraadmin/public_html/4d695/sed.zip

PK���\��L>>AUTHORSnu�[���GNU Sed was first authored by Jay Fenlason (hack@gnu.org)
and later modified by Tom Lord (lord@gnu.org).

Ken Pizzini (ken@gnu.org) and Paolo Bonzini (bonzini@gnu.org)
took over and maintained it for many years.

GNU Sed is currently being maintained by Jim Meyering (jim@meyering.net)
and Assaf Gordon (agn@gnu.org).
PK���\��&�jjBUGSnu�[���* ABOUT BUGS

Before reporting a bug, please check the list of known bugs
and the list of oft-reported non-bugs (below).

Bugs and comments may be sent to bonzini@gnu.org; please
include in the Subject: header the first line of the output of
``sed --version''.

Please do not send a bug report like this:

        [while building frobme-1.3.4]
        $ configure
        sed: file sedscr line 1: Unknown option to 's'

If sed doesn't configure your favorite package, take a few extra
minutes to identify the specific problem and make a stand-alone test
case.

A stand-alone test case includes all the data necessary to perform the
test, and the specific invocation of sed that causes the problem.  The
smaller a stand-alone test case is, the better.  A test case should
not involve something as far removed from sed as ``try to configure
frobme-1.3.4''.  Yes, that is in principle enough information to look
for the bug, but that is not a very practical prospect.



* NON-BUGS

`N' command on the last line

  Most versions of sed exit without printing anything when the `N'
  command is issued on the last line of a file.  GNU sed instead
  prints pattern space before exiting unless of course the `-n'
  command switch has been specified.  More information on the reason
  behind this choice can be found in the Info manual.


regex syntax clashes (problems with backslashes)

  sed uses the Posix basic regular expression syntax.  According to
  the standard, the meaning of some escape sequences is undefined in
  this syntax;  notable in the case of GNU sed are `\|', `\+', `\?',
  `\`', `\'', `\<', `\>', `\b', `\B', `\w', and `\W'.

  As in all GNU programs that use Posix basic regular expressions, sed
  interprets these escape sequences as meta-characters.  So, `x\+'
  matches one or more occurrences of `x'.   `abc\|def' matches either
  `abc' or `def'.

  This syntax may cause problems when running scripts written for other
  seds.  Some sed programs have been written with the assumption that
  `\|' and `\+' match the literal characters `|' and `+'.  Such scripts
  must be modified by removing the spurious backslashes if they are to
  be used with recent versions of sed (not only GNU sed).

  On the other hand, some scripts use `s|abc\|def||g' to remove occurrences
  of _either_ `abc' or `def'.  While this worked until sed 4.0.x, newer
  versions interpret this as removing the string `abc|def'.  This is
  again undefined behavior according to POSIX, but this interpretation
  is arguably more robust: the older one, for example, required that
  the regex matcher parsed `\/' as `/' in the common case of escaping
  a slash, which is again undefined behavior; the new behavior avoids
  this, and this is good because the regex matcher is only partially
  under our control.

  In addition, GNU sed supports several escape characters (some of
  which are multi-character) to insert non-printable characters
  in scripts (`\a', `\c', `\d', `\o', `\r', `\t', `\v', `\x').  These
  can cause similar problems with scripts written for other seds.


-i clobbers read-only files

  In short, `sed d -i' will let one delete the contents of
  a read-only file, and in general the `-i' option will let
  one clobber protected files.  This is not a bug, but rather a
  consequence of how the Unix file system works.

  The permissions on a file say what can happen to the data
  in that file, while the permissions on a directory say what can
  happen to the list of files in that directory.  `sed -i'
  will not ever open for writing  a file that is already on disk,
  rather, it will work on a temporary file that is finally renamed
  to the original name: if you rename or delete files, you're actually
  modifying the contents of the directory, so the operation depends on
  the permissions of the directory, not of the file).  For this same
  reason, sed will not let one use `-i' on a writeable file in a
  read-only directory, and will break hard or symbolic links when
  `-i' is used on such a file.


`0a' does not work (gives an error)

  There is no line 0.  0 is a special address that is only used to treat
  addresses like `0,/RE/' as active when the script starts: if you
  write `1,/abc/d' and the first line includes the word `abc', then
  that match would be ignored because address ranges must span at least
  two lines (barring the end of the file); but what you probably wanted is
  to delete every line up to the first one including `abc', and this
  is obtained with `0,/abc/d'.


`[a-z]' is case insensitive
`s/.*//' does not clear pattern space

  You are encountering problems with locales.  POSIX mandates that `[a-z]'
  uses the current locale's collation order -- in C parlance, that means
  strcoll(3) instead of strcmp(3).  Some locales have a case insensitive
  strcoll, others don't.

  Another problem is that [a-z] tries to use collation symbols.  This
  only happens if you are on the GNU system, using GNU libc's regular
  expression matcher instead of compiling the one supplied with GNU sed.
  In a Danish locale, for example, the regular expression `^[a-z]$'
  matches the string `aa', because `aa' is a single collating symbol that
  comes after `a' and before `b'; `ll' behaves similarly in Spanish
  locales, or `ij' in Dutch locales.

  Another common localization-related problem happens if your input stream
  includes invalid multibyte sequences.  POSIX mandates that such
  sequences are _not_ matched by `.', so that `s/.*//' will not clear
  pattern space as you would expect.  In fact, there is no way to clear
  sed's buffers in the middle of the script in most multibyte locales
  (including UTF-8 locales).  For this reason, GNU sed provides a `z'
  command (for `zap') as an extension.

  However, to work around both of these problems, which may cause bugs
  in shell scripts, you can set the LC_ALL environment variable to `C',
  or set the locale on a more fine-grained basis with the other LC_*
  environment variables.
PK���\�|�^^NEWSnu�[���GNU sed NEWS                                    -*- outline -*-

* Noteworthy changes in release 4.5 (2018-03-31) [stable]

** Bug fixes

  sed now fails when matching very long input lines (>2GB).
  Before, sed would silently ignore the regex without indicating an
  error. [Bug present at least since sed-3.02]

  sed no longer rejects comments and closing braces after y/// commands.
  [Bug existed at least since sed-3.02]

  sed -E --posix no longer ignores special meaning of '+','?','|' .
  [Bug introduced in the original implementation of --posix option in
  v4.1a-5-gba68fb4]

  sed -i now creates selinux context based on the context of the symlink
  instead of the symlink target. [Bug present since at least sed-4.2]
  sed -i --follow-symlinks remains unchanged.

  sed now treats the sequence '\x5c' (ASCII 92, backslash) as literal
  backslash character, not as an escape prefix character.
  [Bug present since sed-3.02.80]
  Old behavior:
     $ echo z | sed -E 's/(z)/\x5c1/' # identical to 's/(z)/\1/'
     z
  New behavior:
     $ echo z | sed -E 's/(z)/\x5c1/'
     \1


* Noteworthy changes in release 4.4 (2017-02-03) [stable]

** Bug fixes

  sed could segfault when invoked with specific combination of newlines
  in the input and regex pattern. [Bug introduced in sed-4.3]


* Noteworthy changes in release 4.3 (2016-12-30) [stable]

** Improvements

  sed's regular expression matching is now typically 10x faster

  sed now uses unlocked-io where available, resulting in faster I/O
  operations.

** Bug fixes

  sed no longer mishandles anchors ^/$ in multiline regex (s///mg)
  with -z option (NUL terminated lines). [Bug introduced in sed-4.2.2
  with the initial implementation of -z]

  sed no longer accepts a ":" command without a label; before, it would
  treat that as defining a label whose name is empty, and subsequent
  label-free "t" and "b" commands would use that label. Now, sed emits
  a diagnostic and fails for that invalid construct.

  sed no longer accesses uninitialized memory when processing certain
  invalid multibyte sequences. Demonstrate with this:
    echo a | LC_ALL=ja_JP.eucJP valgrind sed/sed 's/a/b\U\xb2c/'
  The error appears to have been introduced with the sed-4.0a release.

  The 'y' (transliterate) operator once again works with a NUL byte
  on the RHS.  E.g., sed 'y/b/\x00/' now works like tr b '\0'.  GNU sed
  has never before recognized \x00 in this context.  However, sed-3.02
  and prior did accept a literal NUL byte in the RHS, which was possible
  only when reading a script from a file.  For example, this:
    echo abc|sed -f <(printf 'y/b/\x00/\n')|cat -A
  is what stopped working. [bug introduced some time after sed-3.02 and
  prior to the first sed-4* test release]

  When the closed-above line number ranges of N editing commands
  overlap (N>1), sed would apply commands 2..N to the line just
  beyond the largest range endpoint.
  [bug introduced some time after sed-4.09 and prior to release in sed-4.1]
  Before, this command would mistakenly modify line 5:
    $ seq 6|sed '2,4d;2,3s/^/x/;3,4s/^/y/'
    1
    yx5
    6
  Now, it does not:
    $ seq 6|sed '2,4d;2,3s/^/x/;3,4s/^/y/'
    1
    5
    6

  An erroneous sed invocation like "echo > F; sed -i s//b/ F" no longer
  leaves behind a temporary file.  Before, that command would create a file
  alongside F with a name matching /^sed......$/ and fail to remove it.

  sed --follow-symlinks now works again for stdin.
  [bug introduced in sed-4.2.2]

  sed no longer elides invalid bytes in a substitution RHS.
  Now, sed copies such bytes into the output, just as Perl does.
  [bug introduced in sed-4.1 -- it was also present prior to 4.0.6]

  sed no longer prints extraneous character when a backslash follows \c.
  '\c\\'  generates control character ^\ (ASCII 0x1C).
  Other characters after the second backslash are rejected (e.g. '\c\d').
  [bug introduced in the sed-4.0.* releases]

  sed no longer mishandles incomplete multibyte sequences in s,y commands
  and valid multibyte SHIFT-JIS characters in character classes.
  Previously, the following commands would fail:
    LC_ALL=en_US.UTF-8 sed $'s/\316/X/'
    LC_ALL=ja_JP.shiftjis sed $'/[\203]/]/p'
  [bug introduced some time after sed-4.1.5 and before sed-4.2.1]

** Feature removal

  The "L" command (format a paragraph like the fmt(1) command would)
  has been listed in the documentation as a failed experiment for at
  least 10 years.  That command is now removed.

** Build-related

  "make dist" now builds .tar.xz files, rather than .tar.gz ones.
  xz is portable enough and in wide-enough use that distributing
  only .tar.xz files is enough.  It has been fine for coreutils, grep,
  diffutils and parted for a few years.


** New Features

  new --sandbox option rejects programs with r/w/e commands.


* Noteworthy changes in release 4.2.2 (2012-12-22) [stable]

* don't misbehave (truncate input) for lines of length 2^31 and longer

* fix endless loop on incomplete multibyte sequences

* -u also does unbuffered input, rather than unbuffered output only

* New command `F' to print current input file name

* sed -i, s///w, and the `w' and `W' commands also obey the --binary option
  (and create CR/LF-terminated files if the option is absent)

* --posix fails for scripts (or fragments as passed to the -e option) that
  end in a backslash, as they are not portable.

* New option -z (--null-data) to separate lines by ASCII NUL characters.

* \x26 (and similar escaped sequences) produces a literal & in the
  replacement argument of the s/// command, rather than including the
  matched text.

----------------------------------------------------------------------------
Sed 4.2.1

* fix parsing of s/[[[[[[[[[]//

* security contexts are preserved by -i too under SELinux

* temporary files for sed -i are not made group/world-readable until
  they are complete

----------------------------------------------------------------------------
Sed 4.2

* now released under GPLv3

* added a new extension `z` to clear pattern space even in the presence
of invalid multibyte sequences

* a preexisting GNU gettext installation is needed in order to compile
GNU sed with NLS support

* new option --follow-symlinks, available when editing a file in-place.
This option may not be available on some systems (in this case, the
option will *not* be a no-op; it will be completely unavailable).
In the future, the option may be added as a no-op on systems without
symbolic links at all, since in this case a no-op is effectively
indistinguishable from a correct implementation.

* hold-space is reset between different files in -i and -s modes.

* multibyte processing fixed

* the following GNU extensions are turned off by --posix: options [iImMsSxX]
in the `s' command, address kinds `FIRST~STEP' and `ADDR1,+N' and `ADDR1,~N',
line address 0, `e' or `z' commands, text between an `a' or `c' or `i'
command and the following backslash, arguments to the `l' command.
--posix disables all extensions to regular expressions.

* fixed bug in 'i\' giving a segmentation violation if given alone.

* much improved portability

* much faster in UTF-8 locales

* will correctly replace ACLs when using -i

* will now accept NUL bytes for `.'

----------------------------------------------------------------------------
Sed 4.1.5

* fix parsing of a negative character class not including a closed bracket,
  like [^]] or [^]a-z].

* fix parsing of [ inside an y command, like y/[/A/.

* output the result of commands a, r, R when a q command is found.

----------------------------------------------------------------------------
Sed 4.1.4

* \B correctly means "not on a word boundary" rather than "inside a word"

* bugfixes for platform without internationalization

* more thorough testing framework for tarballs (`make full-distcheck')

----------------------------------------------------------------------------
Sed 4.1.3

* regex addresses do not use leftmost-longest matching.  In other words,
  /.\+/ only looks for a single character, and does not try to find as
  many of them as possible like it used to do.

* added a note to BUGS and the manual about changed interpretation
  of `s|abc\|def||', and about localization issues.

* fixed --disable-nls build problems on Solaris.

* fixed `make check' in non-English locales.

* `make check' tests the regex library by default if the included regex
  is used (regex tests had to be enabled separately up to now).

----------------------------------------------------------------------------
Sed 4.1.2

* fix bug in 'y' command in multi-byte character sets

* fix severe bug in parsing of ranges with an embedded open bracket

* fix off-by-one error when printing a "bad command" error

----------------------------------------------------------------------------
Sed 4.1.1

* preserve permissions of in-place edited files

* yield an error when running -i on terminals or other non regular files

* do not interpret - as stdin when using in-place editing mode

* fix bug that prevented 's' command modifiers from working

----------------------------------------------------------------------------
Sed 4.1

* // matches the last regular expression even in POSIXLY_CORRECT mode.

* change the way we treat lines which are not terminated by a newline.
Such lines are printed without the terminating newline (as before)
but as soon as more text is sent to the same output stream, the
missing newline is printed, so that the two lines don't concatenate.
The behavior is now independent from POSIXLY_CORRECT because POSIX
actually has undefined behavior in this case, and the new implementation
arguably gives the ``least expected surprise''.  Thanks to Stepan
Kasal for the implementation.

* documentation improvements, with updated references to the POSIX.2
specification

* error messages on I/O errors are better, and -i does not leave temporary
files around (e.g. when running ``sed -i'' on a directory).

* escapes are accepted in the y command (for example: y/o/\n/ transforms
o's into newlines)

* -i option tries to set the owner and group to the same as the input file

* `L' command is deprecated and will be removed in sed 4.2.

* line number addresses are processed differently -- this is supposedly
conformant to POSIX and surely more idiot-proof.  Line number addresses
are not affected by jumping around them: they are activated and
deactivated exactly where the script says, while previously
    5,8b
    1,5d
would actually delete lines 1,2,3,4 and 9 (!).

* multibyte characters are taken in consideration to compute the
operands of s and y, provided you set LC_CTYPE correctly.  They are
also considered by \l, \L, \u, \U, \E.

* [\n] matches either backslash or 'n' when POSIXLY_CORRECT.

* new option --posix, disables all GNU extensions.  POSIXLY_CORRECT only
disables GNU extensions that violate the POSIX standard.

* options -h and -V are not supported anymore, use --help and --version.

* removed documentation for \s and \S which worked incorrectly

* restored correct behavior for \w and \W: match [[:alnum:]_] and
[^[:alnum:]_] (they used to match [[:alpha:]_] and [^[:alpha:]_]

* the special address 0 can only be used in 0,/RE/ or 0~STEP addresses;
other cases give an error (you are hindering portability for no reason
if specifying 0,N and you are giving a dead command if specifying 0
alone).

* when a \ is used to escape the character that would terminate an operand
of the s or y commands, the backslash is removed before the regex is
compiled.  This is left undefined by POSIX; this behavior makes `s+x\+++g'
remove occurrences of `x+', consistently with `s/x\///g'.  (However, if
you enjoy yourself trying `s*x\***g', sed will use the `x*' regex, and you
won't be able to pass down `x\*' while using * as the delimiter; ideas on
how to simplify the parser in this respect, and/or gain more coherent
semantics, are welcome).


----------------------------------------------------------------------------
Sed 4.0.9

* 0 address behaves correctly in single-file (-i and -s) mode.

* documentation improvements.

* tested with many hosts and compilers.

* updated regex matcher from upstream, with many bugfixes and speedups.

* the `N' command's feature that is detailed in the BUGS file was disabled
by the first change below in sed 4.0.8.  The behavior has now been
restored, and is only enabled if POSIXLY_CORRECT behavior is not
requested.

----------------------------------------------------------------------------
Sed 4.0.8

* fix `sed n' printing the last line twice.

* fix incorrect error message for invalid character classes.

* fix segmentation violation with repeated empty subexpressions.

* fix incorrect parsing of ^ after escaped (.

* more comprehensive test suite (and with many expected failures...)

----------------------------------------------------------------------------
Sed 4.0.7

* VPATH builds working on non-glibc machines

* fixed bug in s///Np: was printing even if less than N matches were
found.

* fixed infinite loop on s///N when LHS matched a null string and
there were not enough matches in pattern space

* behavior of s///N is consistent with s///g when the LHS can match
a null string (and the infinite loop did not happen :-)

* updated some translations

----------------------------------------------------------------------------
Sed 4.0.6

* added parameter to `v' for the version of sed that is expected.

* configure switch --without-included-regex to use the system regex matcher

* fix for -i option under Cygwin

----------------------------------------------------------------------------
Sed 4.0.5

* portability fixes

* improvements to some error messages (e.g. y/abc/defg/ incorrectly said
`excess characters after command' instead of `y arguments have different
lengths')

* `a', `i', `l', `L', `r' accept two addresses except in POSIXLY_CORRECT
mode.  Only `q' and `Q' do not accept two addresses in standard (GNU) mode.

----------------------------------------------------------------------------
Sed 4.0.4

* documentation fixes

* update regex matcher

----------------------------------------------------------------------------
Sed 4.0.3

* fix packaging problem (two missing translation catalogs)

----------------------------------------------------------------------------
Sed 4.0.2

* more translations

* fix build problems (vpath builds and bootstrap builds)

----------------------------------------------------------------------------
Sed 4.0.1

* Remove last vestiges of super-sed

* man page automatically built

* more translations provided

* portability improvements

----------------------------------------------------------------------------
Sed 4.0

* Update regex matcher

----------------------------------------------------------------------------
Sed 3.96

* `y' command supports multibyte character sets

* Update regex matcher

----------------------------------------------------------------------------
Sed 3.95

* `R' command reads a single line from a file.

* CR-LF pairs are always ignored under Windows, even if (under Cygwin)
a disk is mounted as binary.

* More attention to errors on stdout

* New `W' command to write first line of pattern space to a file

* Can customize line wrap width on single `l' commands

* `L' command formats and reflows paragraphs like `fmt' does.

* The test suite makefiles are better organized (this change is
transparent however).

* Compiles and bootstraps out-of-the-box under MinGW32 and Cygwin.

* Optimizes cases when pattern space is truncated at its start or at
its end by `D' or by a substitution command with an empty RHS.
For example scripts like this,

    seq 1 10000 | tr \\n \  | ./sed ':a; s/^[0-9][0-9]* //; ta'

whose behavior was quadratic with previous versions of sed, have
now linear behavior.

* New command `e' to pipe the output of a command into the output
of sed.

* New option `e' to pass the output of the `s' command through the
Bourne shell and get the result into pattern space.

* Switched to obstacks in the parser -- less memory-related bugs
(there were none AFAIK but you never know) and less memory usage.

* New option -i, to support in-place editing a la Perl.  Usually one
had to use ed or, for more complex tasks, resort to Perl; this is
not necessary anymore.

* Dumped buffering code.  The performance loss is 10%, but it caused
bugs in systems with CRLF termination.  The current solution is
not definitive, though.

* Bug fix: Made the behavior of s/A*/x/g (i.e. `s' command with a
possibly empty LHS) more consistent:

       pattern               GNU sed 3.x       GNU sed 4.x
        B                      xBx               xBx
        BC                     xBxCx             xBxCx
        BAC                    xBxxCx            xBxCx
        BAAC                   xBxxCx            xBxCx

* Bug fix: the // empty regular expressions now refers to the last
regular expression that was matched, rather than to the last
regular expression that was compiled.  This richer behavior seems
to be the correct one (albeit neither one is POSIXLY_CORRECT).

* Check for invalid backreferences in the RHS of the `s' command
(e.g. s/1234/\1/)

* Support for \[lLuUE] in the RHS of the `s' command like in Perl.

* New regular expression matcher

* Bug fix: if a file was redirected to be stdin, sed did not consume
it.  So
      (sed d; sed G) < TESTFILE

double-spaced TESTFILE, while the equivalent `useless use of cat'
      cat TESTFILE | (sed d; sed G)

printed nothing (which is the correct behavior).  A test for this
bug was added to the test suite.

* The documentation is now much better, with a few examples provided,
and a thorough description of regular expressions.  The manual often
refers to "GNU extensions", but if they are described here they are
specific to this version.

* Documented command-line option:
  -r, --regexp-extended
    Use extended regexps -- e.g. (abc+) instead of \(abc\+\)

* Added feature to the `w' command and to the `w' option of the `s'
command: if the file name is /dev/stderr, it means the standard
error (inspired by awk); and similarly for /dev/stdout.  This is
disabled if POSIXLY_CORRECT is set.

* Added `m' and `M' modifiers to `s' command for multi-line
matching (Perl-style); in addresses, only `M' works.

* Added `Q' command for `silent quit'; added ability to pass
an exit code from a sed script to the caller.

* Added `T' command for `branch if failed'.

* Added `v' command, which is a do-nothing intended to fail on
seds that do not support GNU sed 4.0's extensions.

----------------------------------------------------------------------------
Sed 3.02.80

* Started new version nomenclature for pre-3.03 releases.  (I'm being
pessimistic in assuming that .90 won't give me enough breathing room.)

* Bug fixes: the regncomp()/regnexec() interfaces proved to be inadequate to
properly handle expressions such as "s/\</#/g".  Re-abstracted the regex
code in the sed/ tree, and now use the re_search_2() interface to the GNU
regex routines.  This change also fixed a bug where /./ did not match the
NUL character.  Had the glibc folk fix a bug in lib/regex.c where
's/0*\([0-9][0-9]\)/X\1X/' failed to match on input "002".

* Added new command-line options:
  -u, --unbuffered
    Do not attempt to read-ahead more than required; do not buffer stdout.
  -l N, --line-length=N
    Specify the desired line-wrap length for the `l' command.
    A length of "0" means "never wrap".

* New internationalization translations added: fr ru de it el sk pt_BR sv
(plus nl from 3.02a).

* The s/// command now understands the following escapes
(in both halves):
        \a	an "alert" (BEL)
        \f	a form-feed
        \n	a newline
        \r	a carriage-return
        \t	a horizontal tab
        \v	a vertical tab
        \oNNN	a character with the octal value NNN
        \dNNN	a character with the decimal value NNN
        \xNN	a character with the hexadecimal value NN
This behavior is disabled if POSIXLY_CORRECT is set, at least for the
time being (until I can be convinced that this behavior does not violate
the POSIX standard).  (Incidentally, \b (backspace) was omitted because
of the conflict with the existing "word boundary" meaning. \ooo octal
format was omitted because of the conflict with backreference syntax.)

* If POSIXLY_CORRECT is set, the empty RE // now is the null match
instead of "repeat the last REmatch".  As far as I can tell
this behavior is mandated by POSIX, but it would break too many
legacy sed scripts to blithely change GNU sed's default behavior.

----------------------------------------------------------------------------
Sed 3.02a

* Added internationalization support, and an initial (already out of date)
set of Dutch message translations (both provided by Erick Branderhorst).

* Added support for scripts like:
 sed -e 1ifoo -e '$abar'
(note no need for \ <newline> after a, i, and c commands).
Also, conditionally (on NO_INPUT_INDENT) added
experimental support for skipping leading whitespace on
each {a,i,c} input line.

* Added addressing of the form:
 /foo/,+5 p (print from foo to 5th line following)
 /foo/,~5 p (print from foo to next line whose line number is a multiple of 5)
The first address of these can be any of the previously existing
addressing types; the +N and ~N forms are only allowed as the
second address of a range.

* Added support for pseudo-address "0" as the first address in an
address-range, simplifying scripts which happen to match the end
address on the first line of input.  For example, a script
which deletes all lines from the beginning of the file to the
first line which contains "foo" is now simply "sed 0,/foo/d",
whereas before one had to go through contortions to deal with
the possibility that "foo" might appear on the first line of
the input.

* Made NUL characters in regexps work "correctly" --- i.e., a NUL
in a RE matches a NUL; it does not prematurely terminate the RE.
(This only works in -f scripts, as the POSIX.1 exec*() interface
only passes NUL-terminated strings, and so sed will only be able
to see up to the first NUL in any -e scriptlet.)

* Wherever a `;' is accepted as a command terminator, also allow a `}'
or a `#' to appear.  (This allows for less cluttered-looking scripts.)

* Lots of internal changes that are only relevant to source junkies
and development testing.  Some of which might cause imperceptible
performance improvements.

----------------------------------------------------------------------------
Sed 3.02

* Fixed a bug in the parsing of character classes (e.g., /[[:space:]]/).
Corrected an omission in djgpp/Makefile.am and an improper dependency
in testsuite/Makefile.am.

----------------------------------------------------------------------------
Sed 3.01

* This version of sed mainly contains bug fixes and portability
enhancements, plus performance enhancements related to sed's handling
of input files.  Due to excess performance penalties, I have reverted
(relative to 3.00) to using regex.c instead of the rx package for
regular expression handling, at the expense of losing true POSIX.2
BRE compatibility.  However, performance related to regular expression
handling *still* needs a fair bit of work.

* One new feature has been added: regular expressions may be followed
with an "I" directive ("i" was taken [the "i"nsert command]) to
indicate that the regexp should be matched in a case-insensitive
manner.  Also of note are a new organization to the source code,
new documentation, and a new maintainer.

----------------------------------------------------------------------------
Sed 3.0

* This version of sed passes the new test-suite donated by
Jason Molenda.

* Overall performance has been improved in the following sense: Sed 3.0
is often slightly slower than sed 2.05.  On a few scripts, though, sed
2.05 was so slow as to be nearly useless or to use up unreasonable
amounts of memory.  These problems have been fixed and in such cases,
sed 3.0 should have acceptable performance.
PK���\���l��READMEnu�[���This is the GNU implementation of sed, the Unix stream editor.

GNU Sed website: https://www.gnu.org/software/sed/

See the NEWS file for a brief summary and the ChangeLog for
more detailed descriptions of changes.

If you obtained this file as part of a "git clone", then see the
README-hacking file.  If this file came to you as part of a tar archive,
then see the file INSTALL for compilation and installation instructions.

See the file BUGS for instructions about reporting bugs.

See the files AUTHORS and THANKS for a list of authors and other contributors.

After installation run 'sed --help' or 'man sed' for short usage information,
and 'info sed' for the complete manual. The manual is also available on
sed's website.
PK���\�����THANKSnu�[���These people have contributed to the GNU sed. Those contributions are
described in the version control logs.  If your name has been left out,
if you'd rather not be listed, or if you'd prefer a different address
be used, please send a note to the bug-report mailing list (as seen at
end of e.g., sed --help).

0xddaa                              0xddaa@gmail.com
Akim Demaille                       akim@epita.fr
Alan Modra                          alan@spri.levels.unisa.edu.au
Alexandre Jasmin                    alexandre.jasmin@gmail.com
Andreas Schwab                      schwab@issan.informatik.uni-dortmund.de
Andrew Herbert                      andrew@werple.apana.org.au
Arnold Robbins                      arnold@skeeve.com
Assaf Gordon                        assafgordon@gmail.com
Bake Timmons                        b3timmons@speedymail.org
Bruno Haible                        haible@ilog.fr
Chip Salzenberg                     chip@fin.uucp
Chris Weber                         weber@bucknell.edu
Corinna Vinschen                    vinschen@redhat.com
Daniel R. Grayson                   dan@math.uiuc.edu
David A. Wheeler                    dwheeler@dwheeler.com
David Eckelkamp                     eckelkamp@mcc.com
David J. MacKenzie                  djm@nutrimat
David Schmidt                       davids@isc-br.isc-br.com
Dietrich Kappe                      kap1@tao.cpe.uchicago.edu
Doug McIlroy                        doug@research.att.com
Eero Hakkinen                       eero17@bigfoot.com
Eli Zaretskii                       eliz@is.elta.co.il
Eric Blake                          eblake@redhat.com
Erick Branderhorst                  Erick.Branderhorst@asml.nl
Eric Pement                         epement@moody.edu
Francois Pinard                     pinard@iro.umontreal.ca
Gaumond Pierre                      gaumondp@ERE.UMontreal.CA
Greg Ubben                          gsu@romulus.ncsc.mil
Isamu Hasegawa                      isamu@yamato.ibm.com
Jakub Jelinek                       jakub@redhat.com
Jakub Martisko                      jamartis@redhat.com
Jari Aalto                          jari.aalto@cante.net
Jason Molenda                       crash@cygnus.com
Jim Hill                            gjthill@gmail.com
Jim Meyering                        jim@meyering.net
Jose E. Marchesi                    jemarch@gnu.org
J.T. Conklin                        jtc@gain.com
Karl Berry                          karl@freefriends.org
Karl Heuer                          kwzh@gnu.org
Kaveh R. Ghazi                      ghazi@caip.rutgers.edu
Kent Fredric                        kentnl@gentoo.org
Kevin Buettner                      kev@cujo.geg.mot.com
Laurent Vogel                       lvl@club-internet.fr
Maciej W. Rozycki                   macro@linux-mips.org
Mark Kettenis                       kettenis@phys.uva.nl
Michael De La Rue                   delarue@NTCCSC01WA.ntc.nokia.com
Michel de Ruiter                    mdruiter@cs.vu.nl
Mike Frysinger                      vapier@chromium.org
Mike Frysinger                      vapier@gentoo.org
Norihiro Tanaka                     noritnk@kcn.ne.jp
Pádraig Brady                       P@draigBrady.com
Paolo Bonzini                       bonzini@gnu.org
Paul Eggert                         eggert@cs.ucla.edu
Ralf Wildenhues                     Ralf.Wildenhues@gmx.de
Randall Cotton                      recotton@earthlink.net
Robert A Bruce                      rab@allspice.berkeley.edu
Ronnie Glasscock                    Ronnie.N.Glasscock@bridge.bellsouth.com
Sergey Farbotka                     z8sergey8z@gmail.com
Simon Taylor                        simon@unisolve.com.au
Stanislav Brabec                    sbrabec@suse.com
Stefano Lattarini                   stefano.lattarini@gmail.com
Stepan Kasal                        kasal@ucw.cz
Stephen Davis                       stephend@ksr.com
Steve Ingram                        si@maps-r-us.com
Tapani Tarvainen                    tarvaine@tukki.jyu.fi
Thorsten Heymann                    hek2mgl@metashock.net
Timothy Baker                       timothypaulbaker@gmail.com
Timothy J Luoma                     luomat@peak.org
Tom R.Hageman                       tom@basil.icce.rug.nl
Tristan Verniquet                   tverniquet@gmail.com
Ulrich Drepper                      drepper@redhat.com
Vagelis Prokopiou                   drz4007@gmail.com
Vincenzo Romano                     vincenzo.romano@notorand.it
Vladimir Marek                      vladimir.marek@sun.com
Vladimir Volovich                   vvv@vvv.vsu.ru
Wichert Akkerman                    wakkerma@debian.org
Yury G. Kudryashov                  urkud.urkud@gmail.com
Zhongxing Xu                        xuzhongxing@gmail.com

;; Local Variables:
;; coding: utf-8
;; End:
PK���\��2v����
sedfaq.txt.gznu�[����l|�isedfaq.txt�}{s�����w�as*2%��l�i�ʒl+�.�8m�W�%�, ��N>�y~ϳ�I���i��	bo������,�Fw�w��S�GQ�f�q�o���.S�Gɤ�"ӿ:	�OU�ezR�A��Wo��f�(Gz�T�l����S���ݯ��Qg&J��j{g���^�y��y>�cjϤE�q�M����hUo��⯿:�$����:ɢP]�Nr՞�_��$���<�n==*:_��W���~u�'����?6�j���Kuhn�H���t�41*�E����ʧZ�<����]�_��_��O�<9?�:|�N�_\\�^�^��9}s��Y:*B,�z�U��	#��*�C
��=���=�&�ik�N��ұ,O{���x���]�oD	y`z|���%F�:U�h���=�$f�3���)�aО�����2x��SG�LpJh��6I�MM��O
r�2�Fj�0��`��<?�7�D�x7
r���G}�����X�il2�]^x��0H�P���3Y��%��r��9}�6���<rɸ/hً��w	�gQ��&��]��҅Qm���}���5���A�b� �.�3���w�D멙��}B��;p��M�t��S�3]��Y����<Kgq'8�����G�}�7q�Q;a��cd	h�0ڢMޢ
=O�[#��8i�,QqdryHS]�/t"�U:�!�BB��{�
-�R��3/�0���D�X	S��:?=:|�O��YJ�i�D�J�D&Y�004?˶]�u%�of�X2K�bM7�Hch��ߒqtub�`N` aNq��h2�<�v�Ő�-/xGf��Ga��g�{*�Af�<75�����*Q֣��0�~N�ƺg�AH$���g�Ka���P�3�$z�eL�a!���&�H�)/���N‡��i��ꁉiF�4�N�!!�k_��9��l�k"+���:���h�أ��(��*����Q��}H�Q�<+򄆼zeɂ��X�Ʉ^��Ǟ���zA����e/O{s�Ŋ��bC(�]@Zſ���D4��DH�X&[�<��vz����囓���w�������J�����c�A�%]DZBo�� XxwW��Z�@�3LЯO�i����D���t���T�&�y�LtV�y�d�>��2��(��)u2i��bo���_���٘$�|�s�+��ُ~u�N08yz�R
���`��}�>:g�<�LkF�2����Ԇ�b$�%MH�Me�\�0,��IB-P�9�Z�ӯ/d��=��hF�i��G�;j�%���)\���nb�L�i�f��YB�2����H4^���D�����
v��;#E
D��{X����4�VF>���W.Ch!�&Ԑq��H�E9�dbUKM=sq�z��uvg^�0�ՑFTA�((HY�NXנׯ#͊�C$.��%���DB�C�2I$�Ȍ�ee�:��Zu�dq1d�$���U�/�J*pk}l��5R���uH�u�֠������S��j�,��򫥠}�����"�#�5�$�������Z1�9��Ј�+�%�Z��R��C�/�N����ܫ�>)��0.FLj勰���Y�[J��}����O;����@�� /�Ufy�	��i� ��<Y�_���#���A���ɛ7��X���xzuq~FPb���pI�"�����F��:��<)6>���&�3�F����r�G���n������< TV���_i��Nݶ��V�3���ؖ�f�	�)<T`�Y�p�NIyv��������)>ׯXo<�V����v��Y"����Lz�о���V�$�=�&⹘�FQF�-͖]��	�9��%2%t�V	P�6	)�����/wݗm�U��pl�&�i���O>��iK��f;<��8���/����_h�_��?��$� h*�ܐ���X#�1KR�ݫ����5y������5)�g�z7]�|�V�f���I�
}f���ሀH��*��LN�fv���m����$A<*�qĺA`��ok<L�[�5��ώ%�Y��� ��,-&�R]��$L��#� �v�$�I�2���:�Elz��T-�ȈH8�T�"��K����X:����J{|
qɏǗg��>��uzi�.����1��{h]t�1��aoC;���}R�f^�|}&R%<h���.2��oL�`��4�s�EKoe[b�%#*aq�j,[Z1�f������+1svGe`�`�/��K�J�L?�0U���
��4�$B�pa�� �fd��8g�a(�
A��)F^����ɨ�Kׯ�U8�‡x̬a�6�S�h�m��9��n��`���g]I	wH*�W������%�".����D�X�=��@4l�i�U��1�s�����{koD��s�^>\���p��9�t�|����d�6�7K�wW�R3Iʻ$�p�<ڃ��Ks��B�hh�G䞥3�
G�@��N}k�ˈ��6�^�
��x"[�R�Nّ��A�\K�2�!��N�	��ҌƂH�i�|OB
���4�V1�1a!O������ݹz���@�]��:9V?�\
���3��#��^�?�=��w�o��־����6?Zy�g{�g}o��?�=#ͷ�gO�a~i`??V��Yd�Tw��A�Şj��1������Y*���Fd%�ø�I�CO��	T��p���6����t��1����e�\��h®�(fL���>���?;l��z�w��I�7��St
M��Dux���x�ĽI!���2V˴���M$��b"V����f���G����G��֭�yh�#⋄u5O��C����$�0��M[�C�ʖ\��A�k#]�	?K������=� �� @��R��� �>{��|�蜼P1�������#	?"@x
 �:���{�/&���M��+���}��_M1��z��g	iY�nƒ�4@+�TD�p�f�o*(�),�%B�:Bgq�yDHX���	����G�,<��9.���Z�Ѱ�D
��
�Q2(c�2���mj6T%:���;��!�MlDx��Yz'f���g�I�@IJ���&k���թ� n_�o���o��}o?��s�I��8���%�ω�=u�, bbqK�3]~�q�)�q6b���6���H�ݪaL�_��k���&��
��g�i`�ggdj᱑IU�70\�B
2R&����-�!NF�[��햷���Ĉ
���Y�BD��ɆiLPɀ�4�<������@���%0&��B"2��`�@�9`ų��8O���Ð����H
�6�!��$�6��zTB݉m�uxG��D���X�G��L1ISR1V������1YD�8�@#��Y@�!%�
��)�J�pt�oqt�8�%�n�ш�X�#ˉ�	�r���� )���dg��ߐ����6�ԲM�6@V�z�j��\.�7eT"��n�Z��m��<�����3:��kSq��1�u�?0ݬ�*I��S9}x�$7┦%�lko�o����V�-Xb����r){F�S��-rF�r��6"F�nIfX��)�ֵ'�_�8���������G<���6b�F�������-��������w�G��V�L@�HQ����u@��f9f�x�Y����VW'O�v+���چ��E�$i�%�Ӆ%��f�y�3��WBz `.m�|�<�%�t\�Q�wO?���+��^L2�'����)w0f0��@��;�d���Lq��<P�ڣ4��%���Y�ރ���}�ím7Nc��h�Qt�Ȓ3�)�r�!r���H��N$���+g�~y �M�j��"����*&gJ�m�4���72�
8��a�D�6V��v�)�<�m1i9rXY��ĖD�1)0�R���0v�?#Bej���9��)��2H�T=O��Qu�;V��zY]�C4�9�u�D�Q��0u\���/��.JI�鸫wDW/�����tL_��#b��:I���]�ch��ul�[��骗��r�ٸ��;������x��Q���6@KFph��e�һ�{�&��0�gz;jR�o��"��c:ѱe�T�@�N9>L��Ei�uN�EN�H�F$m��1�,21�&�WBdžVݖ����W-j$�D���YY{��,�,%:{�w,��fr��sK�2�	A�m#�a5zscBХ�G�G����x���F���$9E
���I.l����r���fu�� ^�E�nh���b��iI!ʊ6Lq䠑I�B���"�_��4G�ߐ�=��YxL��W;Ov��/�	ľ"�g��y$f�;�$��2��c&�%2��2�IdD�i�b:�_k��a��#���p���ػ�>��29�ũ
�*C�QNwpZ��I���]Qָ��K�$�\���si�ʄ�dž%�k��%H6�X��<�(�,��ˆ�=Y+�`~��k[�XZ���PP�G�A
�_Z䐱�'5��cMs+�Q��l-�!nm.���г'��n-<�`��>���/�G!2Z�6#L綺�qpG����;إ����
E��3H�T�$��a��W�0RT���U*2UNJE�%�4�-�:���2VtY!CC�-y�+��Ic�9�Tb��;ɧ�n�4�RT�t*�\И�j��X<�	�Fl�)�2.�%t�A�i��N赵�<NYO��r�6ka9:�cK%�h7=��+y�n�K���U��e�O�`W0�}���a�g7�M$I�fUH�'j�:*sHK&nY�1Nc�O�hN	:bcՙ����*l�H�%Hо:if$�k#�#$^33+��
��Ԥ��D�
L0&��@�R��ks���•L�;��[L��%��Wi��8��-��~�@�M�,�y�����yr�������E�8�0g���˰���Y8�os�bI9�i��el{"-؜d>����.?�o�ٲA'��OH�����g����!��k}g����"$X�� d�i.���Fu��|�A�E�"Mr��i
ݪ�f�:#A�b�'��^��c��Ėm[�,ʶ8u�Y�6�I�Dm�k�]�9�?w ��iR�'t�)����d�@+��q<�#�"i��3���$��-t�.��F�z҉�Ou���Ã�BƸ�+ߴ��KfH+I�Ply~n����B0��҈�(_�[��6���7��Bj�ELP¤�e�.�i*X:&�Ž
�Ӗ�����m�X��\�]IrVM;��16 _�;��Ή��D�b �P9#sfk��t̎շ;���~SB0���u�8�A���eK#�ȥ�%�
��n�]��$����`\�S.qJ��B���,Is���S	�90L�L�����ϛ4��Xh9��	VC9[xG��kZ)5B�QX�R��-=�.
A:�3i*���>������'��w������]�v�p�-HF���>�d�	+
(�l�9ʛ��� v��8&L�3�%�-���l��_a���7:����r�QŜ6p�Uo��z�8���2�X�D���r\-A&����r�?5����:�Hɰ��v�l,;.g/���5_��m��N�cU��I>iEA
;k�J�� �lt*WfZ��b�%E��$h\Ώa����VBd}o�,̫A�.\�ij�2x�	�@�_��`��_bctp3���s��o�R �\?U-|Ւz@o�i�֜x)
�)lh��<��cdQ,~(?���:�
l�#��&6��5|'���\���Tcp�a`ʈ,�'Ұ!
B�L��&�����O���\�b݉��068*(�yē����|ũII���g���t.�!����P�R�!IG��th��ht�P��zc8�QI!75�j>N=F	_�!RM/B�hD4����[�rz�e��<Xr�`ǒ �VT<ޮ>Z�t�LKn|T՘��j�$���n"�S�G2��l�Q�k�l��/��5���@&6`���U{3_({�p4"%�:�W��t��\p�+�@6���Ԟ�oD�	μO�˓=���0�}:��5��<K#�����^�:WxaQK�A:G�..�ɎD�kv{�~�肓`�Q���M,��Z�oɆ�y�(�Ч�|}����A�M��A�
��JJLJ�\����< ����~^
�Z�EI=ւ���M�t�x��54�򀐛�9��g�_�'s�%��T|����y9N�D\Y��GW��LKhSv��T�a	ωƏ��W�� ����:��n�D���C�oV����Pj�/��m��3��il�e͜�x�i�޾�h������Fwj�o����n���]:d[�E��������얚�Rz#�j����j�G$uE�9M࣮���OWe�ZG��9~"UB�,��9�a=�0�O���ŗ�;,�8�E�l�pTs��`�P�R�&�`���n������yb��a����#e�-^숉�+��V��N;��as,�&�{����_=��{�y�)J�SU}bW�r���G�?M�}����]�G٪�h.4'mVۗ;#�'�,�����:�muu���Ԛ��{�EH��U����k�0w�P�B/9���E��(�G�"��Z��{��63��|Ɠ�Y�J���$��ȧ������"K�+���vѪ&��Ug�y�"Q�.�X%�7��}/�P�k���C8��/��	�l/�tq!b�Q?�R�Ж����ZK'DZu�:Jt��zN��G8��2�r	��Gc�/3��EdjIP�IF��#��-���W���%&u�G�q
d}r�B�#�j$�\d�ŜxK�2�:R�i��u+G��禗8Aƿ5ugd�r�+1��t��j�XV`�r�![E��O�ư(�fM釾)c>Ĉğ�b6w�"�|�3�޼ש�Բ�a���}�
�I�a�y��?���xw6Ϝ�����M�!Q���LQ����}����nH�d�)�}4'�֩��j>�K<mQiH��
��,�]�;��$;/iH
b�ޕʻR���:�x��Cӻ^��^^^*�N�V�����Z���g��])�6+�O*6����s�Y���[U��;ԭ@$�s�ILs�G�h��o��ܿ�����C���S��@��t�NWQk�*��$�DS����E�r{w��:�I�?٠�]V$�R��
�E�sf(~����>s��M}q��$�V��YT�a�K8�9�&ǚ�I�>���NWq���AW��H�Mx/0?ܥ�������D�dθZ���ghbF���/2ܘ�n�z���Kw�4�k㬭�̚�oϿ��%����45yUA-�w��Di�q����
�M����j�,��2tqt[c	;M_�#F�ĻBgK�M�6�T���5R��ժ�����(��ub!��W��L�$��Uh7-�s��/!z���K���)�Ml�������d�m-���K��̚�X�گ_�r ���l��]�D�S��bT�@�N�h�,��j�x�bFsg�m���S�ӥ��%�d���z��0�t�Y� .�Kv!����~�6}��]g#bf�$����J����>����T{��-mul�g�2�t f�&��8�G�\���$IK5(����f�}yt��Z�
�9��=v
S�I�sn�8C�N�X��,-��7���<,���n^����}��9�H_W(�)�V�S�����*�o�@�T�'��9[�Yۓ��
��XnJ��V��n��9���<{+Rg�
��<M6,<to��L4�M��7�����{�����v�|�r�:��6WW�@׬���v.ca"#`�lD�,��e��+�l�͐��g�!�EU]#���.n ���zFm��Ja1�+!�F��*w<��LQ�=f<;ʷh_�a�>O
h�K6A8 _�G���!w�ɂ�@T��Ȇ�:�|��53���}^䱥��3�@*mɪ!2
���Z�\�i;������[���Fwx�h��X����-��㳋�m4�1���4��&!�+�
�q��C��;G�F��;�n�٤��j89�6����A��y�(|�����3�}�7[1�?I�%�$
���[�����[����jT��A��V7�{�֧_��օ�F87���-�z<;;��k��,_����X��hp� +̊��ޓ5>��	�/2S���/8Ն�kW&���
��iުCB����(te��ܕqm��E��')2�F�{;;e"��#m%UОωB�v�6�IпFm.��V��ͅÝF�S"�s\��M#�գp��'z}PT�+��+�_�*�{��{�}]��-��³c���x�RHfZI����.�l`��u�&)U�1�S�X�����Ţ�D�Oo�X���)�u�k|��2��Z�(G�?|a�	���닋7���+��kv˷�u&�O+$�E0�Ű��}m�2��q���-�J&�9�]�7�3bŽ����
�
�,=.ԏ��I�Z}r	�\�E��\�	}�	w�Zl�U.��9�:QYE&OgA�:���Zׁ�v��*n+$�jD�%�Uox�j���fwNiv�R[it��wA".p
‹A�w��N��w:���B�L�p���������A����D��Zz�đ֙\��7������`YY����'�pM8�!K��Q��:������Oݠ~�U�wW֕��\9��{�ї1��V�R��{���
��U���%��m����l��	�8^g� ��-�t��垭I�ښ���,ɤ3Y��招�äd���Ͻa���Gu�i;��vm�X�(�	��RM�b����^�$-�W� �G�%U4g_�l�-�6V�].¨�P�q��Z��K�ܹ[^ֶ��~	����?�v;��O��zr~}r�}�<Kb`���(3��>W'�o�ΙI\0
�}�$ٷ��V:9�%Z����w]'[��tB�յ�6������+��d�p�–M׋���KX���T��:��bRO�_�y�ɠW�4�7�C�14�o�r��i�J�y߳d#5اd/����$��Ib�	{@��~6n���޶K�t��Wֺ�j������&��م�����K�z�uN�
O�
�N�K�F���eh����5�W]W���b�moQn)<�R�^#����k�h%�S#�Ϲ���/�Y�R'sv�B�g ��mD�!Q�"�Ӑ(�"?�IJ��~#*"��ݶo��[��������6=F|c��jUw���f��Gg�zm�+��Z�r�_�j&�q卢WX!�_^�ԋ�ȗ� +Q�ȥ�j����M5���{L�[�#c�sh���_S\:q�ҹ��^"�������%��1�ܖ�� .D�1ޤg��cwG�ЗѸ��;[��GIa���^�2�.�Sds�˧�m2	�Dte=P������k�D�Y:/"�x����T��R�?)��/���e]D�`���m� �"���g�\#^|�3�4,����N\��-��̜��b��[���8<�Ō�1��jW�'�)y���qR�&=��ؕ��z��n&ùm��Ϸ�t�����f����(556�o�/2�6��_ݣ%v��k��|�a���E�֋oDqT�	L"C͂����=]�����,�}2�z_��ؚF�o��fj&6;���st�۟��Y:�.��\����-�`/���d�}��]K�We�\�%i9�oo7oܙ�o�2����o����Dk�N��v�4^��T=_6�'�?^nԨ�'$H93D`0���LH�
J)�V�L��N巪�
�y�浉������p��No�w���IRx��r���g�/Ȕ���W�v�hCnU$�4�^-�e�*,��L6�M���h�^�z��b�ZΑW�ŗ,�;���%�J5��f�-^��h��w�n�7���t��(pXy#��0�t���T`�3���@l��	�b_��q��a)��ܳh$7R�������E@ױ��?l3�HO2�������ac��f]�BsTu���R�G΅:XN�W8X���d��gzR�0�1[�)”7�
W��un��7�q��j�jZ쌈��[#�l�dF�9�|�ں��m,�n��'��#6o��M�J⫴Fm�D_�l\�b%ULC��EC�f��+\���90i��vŚk���c�UP�;��G�[KcK1vy��d�L�ץ%����@����7;��5���%¹{W(5��AbOp�^�F3�\�eݪi�Μ�0n��h���b�A�
�^Kwcz;��=Xщ,r&S7�U}W��}��S��uX b�<6�sl:A`��!@��$v����@�Vc�^�NJM씟�sV�~�u)kYt��[OE�,���(k�8�.�A�¸f����.��4�q�⊸+j[$sQ��i���k�A��E�B����(�K~��D�
N�g܊�U��sn�����YI�,�V��ʪ�t8����j�C���4ƍIq4~�.��t�{�
�,TGu�O��������=�;�����&B"�s�N6�rV��'�8��Z�!�B��\�V$�0����wi.m�ܮ#�-ɵݓ���|��'u�b��T��\#Eе�"l�卻��/)�r�鮹w�Az5�#��+�uq�����3q픻d
��"��!_X*�k��Tׅ�9�Dn�7������A�&��<e�i�����vu�Q^[Q���gn��2\�\���e����Kv��ʒ0��r_�6�?E�S݁��(wC�\U^������NȼiVn�+�����(W.)�/��!�Ͽ���:���+t�ң��ٗI�4.iB�6@n"�-R��u'��b!��Z:t��m�;��w�\_����zUֱ�~%-3����5���2�%¬�vб��m��•�b9Yt&���6�(i�׽�l�A�ɂ^�2��:��(�2����������=�?譕�3�{���}�ui#���4M��?~�9d�/��56r�\�P���[ү�@n��L�#:�s�VqLd�@�x�.E&GX�5���"��Q|{�L�}#
�Hw�\�g�ӳ �!/�x�c��AyZ��s� ��Z��-S�EJ�E����RsH�-_b�W���1��׼��ݐ�~e�ղ9Y%��1�o4��5��s{_�Z�0�.�u?)�]��p��Ǩ�l]
�1.�D�)�[��Я4nw��"���$y��2lzﴉqi!��Gߩ�����E�1t����N�!G�z��S�,����?���v61R`�_��H�H��y��?�.�� R۬��K�N��������>k��X�^C�dƽ8�
�	/�M����͗xq��"�:;.8�7�D�|�[.�0h�ϩK|�Q�t��K��a��tm9�ưH/Y
�v���V:�	�	���t#�RPn3nuٍ.��=�Rh�wY~'5�2�%y-Ť�B�M�%‰?d��(�t]�~5�˺
D��e�E?�'&Z��@�@`�?��VZdw�J�n�����n�����[.'�Y��޸#�7@��F����BS�E~���a�7&�3��e'��,<���Wh�|��F@`W��^y�r~�WN�w^�._��H�$�Jr��U�h�j��C��u�Z�eR���ǂ�y�e�4�x�'dq;���3���s�d�ӭ��0~G���$m�^O��e���%�aw������d�M����\�Pڼx�f�p��=��+wz��:��Pn~h�WH���c՛q�i���W�S!�ɔ!�/�6�ߔ=�`{e֓�w2"���[}����#���S���nRA-�u�_���e�ś���k
 _U���ye�[*㘆��h�zz+Jmx�յl�yV��޺\r��|O�p�nP��*�WN1ɖ�4��;N���o{�����>�Lm-�X`��w�
�ۛ�ɣ(f�g4� ���@Dy����"�zd����ʕ�������|�i>4��‰��+$�h��ofK]2v$���L:�C�6�M�fx���f��ow���H�$��Ÿ�+�6�
t���t|}�����YW�.��I�A֖�V�
��>�/��
����|��wX�[	(tϑ��'������Dg�(�=rBIG� ���m>����_���@��1?���Ns��;�\`pt��y�U�e�W��a$�_�H�V����ۣ4�%a`0(���XV���Q���l�ۺY�'�E��i��='�����u/����֨ŰK�׻Ђ����L�/}zC%kpNq��:ұ:�f��� 1��v�.����U`�4]v�6��%g'D���`��f�uD@m�Za-I���kAԄ(��"}��y)	�	���1]$%KS���pė�n�.� z_�����/����w��{�lo��B��v����5馟2NBO��l+���X6!�g���j��z�<�:w��LCbK��Rծ�������=��탉}����=2�sBx"$y�Hmf����>��"Y��C:�n¾�N�O��k�}h��Ǡ�ЖM�?)��w�Q����e�OV�䳓�ܚ'���vnZ�aK#�%*�?�ݰVq��5�������v���J��Dw#;���y�S���Qz�P�вG�e�)!��ͷ]*%sɷ�y����H��X�闬Ը�+�Iᾓ�q��䴶'E����g
F�f޽�;Y�zt�DV�W��[��(S<�o@�<����t�1]�K�z|�xtX�8b�7	�#!��vAq@6��Ď�!�����|\�F�8����`5T��ܻ�9Ub�h�\�sWrڠ����lD��={������q�ѳ��4�����ۯ����S��d	I��J���Uw��ɴ��_U��cƙ�4���+�a'�T��אM���%��1%����u��r�Q��e:���sX���ͻ4J�':�h.}�Z�d�#���z`>���d>谰��N���#�\���f(ao�É�Q���;�"N͂�|����5p�*rL���ʋ���RC�x����}�����0�x����=����d(k!�#�x?}t
gyUO��*��"���r`@(��aG�E�.~'zv?��{��G�Xt��;��,в8�K�u%oTb�R�<<W�*J.�N>+|F�M�b�I�9�_KN 'Ti~��s�VڴE)��w�
%<���DI(W��j|
!A1u!-S�
��r�e4�M	4��%P������5hH-#k��T:y�1�Y��w)s���F�CЩ�\ΐ�u��2�������hu�?���*r�дJ��θ$�\��򅎃��40t���9z�O
>E�f�~��^!��$��"v�`a���QT��1��U�KV�X���lt�|�|��Nv�p���$�p<�Qp��UUu�;7��4?�F���I�W9�G�Ib\�lq�-����@�)h*��l8�f����1�����Rmk8�vz�ھ��+��_ ))Ե�=D��	n�=-�I�EZfeb���8�J<R�F9_br7�#�m[��4��B�E�s�Qhi�������T�%�k��� ̸���};�`�V�Z�-��Hr��3��Fw��>�6Lg��Fΐ`��V���0˪B��";��_��K�9;Ï��G���
n"E�7v.T��C�f�dC�M�ޮr����g�6��<[)#e���>��d��W#2�C��u����6��RȲi�U�e�#�ZE~�r�Gtr4��V<(_�•H�~��c�z%zVQ"��|��g�(��V�P�3<����M����+Q���������d�*�f�ר�Ak��z����K�.�q�}�ߣg��7����1|�N\dž�2�idĀ��Z�՘޳�O<�a���m�w?��������|*�
t���o}jqN�e
>I��S�,���`5,%��>�h�U���.���x`I��W�bM��~�@x����(�&r�-Y
o����p˹̔N�x�a�e+س��6?e����JY�����\�M��pw#A�E<�48�T��x^ ��SW]7Ճ�'�,x��w%р=�|��	ʏ�r>�UJå�Lܜ�9��^0W���d$����`V����i��
4K�Y���d���E�`-*���������%=��d�����G��`�7�r���eA�)R�B�uW�A�=cL,���mS��,�Ĵ��%�ZR�M%�6+9�~^N�
�	�Ma�)���/*ˌ����g��+*��_'�~���u��ↆ�L����ŵn�!�c�I8�8�a��Kv��1�/�龾��WjL*���qYzݕ�r/,���&���{'�P6�.��U�70���m�h]1����:�1c`���0?UfX|���'u�a˫�V}��ǹ���J�����-�s5v�ֵ�N���o63�-W�I��Z_Pa����!��O80�)��i��t(Ѯ����ɠM=�s��Ӌ�a�jHէ6T��@(��C��c��>�A�-�Ag��rj�>�I�
�o�����);&��m��-��A'�DZ�ޚ7�&<��ϣp������<,0�co��Ü
{���v���C{5q����K�yYŒ�	��0��s^���2���"w���B�����g1��rR33���d����s��*��go��Guc�Vn�p&Nn��R�߳4�����������I�h�b�=b�͕7a�`�z~A�T7���'L�jm�(j���h��:��Nq���>���m;�8�xŘ����1����_�ڄ&zk|�M�uU����a�����#,�dkGrʩ�0GX���*��V;�O�a9	b����6�E�Y~�j�4O.���ң������]����ܻ�|�J��Vo�c̈��ao���PG�e�T�: �;D��X-r��K�ݯp�N�f�������N"�7��B7)\�+�6�Jv�����J���jq�t����zI��O$�8A�HV_�6i�b:&w��ݪ�+�g��atr:a���@�z-va�k}Η�e�|q7z�|Ou�ub<Zgg��rn�Cd<X��O�2 �D�
��� �CBϮ!�4#�3���PLUc�[�ф�~�z1�&�Q����d	����.�1�=A�DG�̔X�^Sʣ�N���-�'?a��ܯe"z�)�^U\Fx@�D�U���Ȃ����>���_�%�Z��"�>�XA��-�أm��q�efQ�<!����:��~�קS��*�E"Ym�IU�s��#K�w����U��}':�g֤w1��	OM�Q����W�V�r�&���&�7�7t��]$+�)dJ<r�1#�1��� �ȫ�	��V�3�����/Aq��VGG�.�IC#)Ud)��h�'z�������
a��t2Ap�JOr̐p�hS���%v�ٞN$�z;��.J(L�"@0j�B�$�\:�ߍ^�v�	q�q��e�YYe{��*��c�:������sg�J�^J/)B仓��H�%�T�"b�2"!*��s%;�����CXc��+���l������X�m��!5ѹ���^8�Y�•9m��-�#<�!y睢�i��*e�(ck �K�ݯ8��ʒe�Ѻw�ŀ�B�9Be�b�����)A9����δ�~�.w9�;s�^�ˊ��-�S����
8R���]�')(�Ϸ�۱$o�%�)2HŇ�'�F�p�qyj9�+&�sp�������Z�X]i
[�\d"i$�I�b=�U؞�=����ZS��a�z#�Mrw�yK�~'��2�nE[9�(z'�a�3_ZNPx\	��n�o��=�9��ml?|��$�ć���"&�VD����q���5bCu!���e�pbs�W��В�:!���d4Yt��M���9a?����jKHJ�[q�j�Ƒc��0���Y	�R�<-�<!>0s=��as�k��nF�Il��|���K����� hQ����U}�Ӛ�Q�9�ҫ�~9u�Q�4Z�Z_��E^��Xw�r�SL���1�cOx��AxqӖ�S�^���́�q�����A��.��0N�*N(H/G��X$�QNIwF��ZCLs<�B.x�*�Jwa�G�1J����	x;��K{>d�4�$�G}���ȥ[��x�&���%�ؑɵ�sW�1Y�o�����N��B�b��
�P�R�,��$��dB�+�
��|wt�~��[��LMJD����qK�nÅ�[����#n�p��	��ty}��P�l~#IS�2a�O!(�+̍`*8��%�$=�=,�O@uXA�u@:�f�t���H
X!.F��o���2�"������2�1�g�.���\n�B��
Ռl��m�v�
�aB�:���(o�Q�̆��4�=��
֟"�p����1D�����$J�ѭ}ƻt_��U�1U�U�따�u}�;�j‚�2Z|P��� >��T.�q�G���":k��Kw�	�L��'`0��9�A��N�xi���Vx�����-���h�ڏ�O;c��`�&�,]�2n������g���'���R���w/����U��bT��ߨ��Nj���gd��_ֆ��#���!H�q\��z���&FpN�q�s���~~�
�����F2��l�S�ЦWԦ�l����/�{.OKZ!w4L��DO
*ɚ.�Sr���z�hYY�����P�p�L*�SM��f{/
^؛����N\}���T^?L�v�A��W����1="
Y�+�=yt�tJ<h�w��n��ԣZ����=B�첌E����M��#��6�*�$��#��
F�W�s;h������w�srU;;/^�&�3�|�D�+W�p���Kd.�G�=�G�ҧ�[ǝ�`�h����+՜&}�cO�N�~���l`�ǤVyí4��K�t�#�[]�m<£��;f$)(#�ֲ�ڼ���d��Wa.<(A�"�=0����km-{bZ
��I���
�����n�#�t|Q�N'
�vc|��pۮ֪���V�A���`�}^o�o�����eѱ�U�1$���۞�Ф+�{�h|�`�ӊ�`�?Z\�<6"�3L�!���K$?��|Q�GǔF�6����������j��o�T���XB���}��2b�r�àb�/�L���X�p1ƣ~ι�]�I9#����V�4�T6�Q�y���u|:�
)�`�&�T	���g��c��M��>�z7R�Rjʆ����Z��<�f?���D��-M�b�+ȟ[ �[qxo�&�˄��'u"8!�r�f�m�q�ˈ$Ι��mE%{�Nm�􆄳��������`Qwœ��^��2�Z�-��]��]M.�H�,j�u��x�dž�dL`�����7:��}un.�|��|����%�?s�/�w_�f�.JƎm5]r�$�'$n�Yw�
jRj���JGXo��#�f�z)��g��[��K9��ŭ�;W&{sµ����ךy����֌lX%U��Qv�����uu�Z�вM���`�S=9v�%�nNȰ#�e��ٍZȼg2��Lz}�����
n1�hfR՚]�BL�vf�P`d�D�����zF���	���*�����ܤkU�g�r
f�<zR���Jh�2�(��U�W*�4hB���ZI=�mM�e%���f�'�ى�a^�MtD�HC��q�<���;�1�K�H��h��4��U7ے�	���#���Um�N$z}Qi��Y�'��r�o�z)��c�Q)�ym�Bf�t���
s
��ոmM��Z�Ś��u��SI2h��(_a�`R�b�!��	���*�&�@Om+��4�[�磟8h�M!��-��+��Aꁑ��4;�I��F���ia��q����6J��ܠ�ɹ�Qyi��F�9 �Ah�LF�ah7� ך�c���r�S6cԃb�(if"͈��v$��v�.� *��ބ�ϒ��b�H�����y����NM^����h�է��j�?�g~����[�kMZ$�Zs�Т82�Ѧ֬�����5<���.����2�i.�s\ܓ����<�9v����*�P2������(t�ڱ�\Q�CX�"�ێՀ�s�‚��(�3�6-�p!��`��n�D���L\�a�?�F����
���K[�Ԩ٢��i$Hq���#m�g�l�ԳXWLy���L�[���I�S�|b���0Է��K߂�<�����{����T�ϖ�W��&��]{���a>tYՍ����iΒ�f��e;	m�Q�q�P���9�B8ΟԊ�@����bOE:,��"��ueʮ�]cnm�~�����|���vڿ툵�J���痚�|���2����sa�/Raf	#E�5�k���C�g.�8-�|�"��͋쮳�x<-|�� $8Ʋ�.w%���%�J�x�}5��@�ê�^���IZ��T�qB����d��>:nrɏgB�T������B�~�y�J-�	6LF�&�������v/Pb��m�9����h�$��	�ְ�0ԍQP���m2�+H���11 �e-B�7ϊN�ޡ�3���`z���~�@WjB�T9gh���/*n�ɂ��%���e�h;S�9����.���F{�v�p�XE��&�
�'_#]"�+2����g�P�Q��)�N�s.�@y��p��[��$�A��A��'sPK.��U�!�;��xzj�:f�&��	�>���a;��`{�J�\\#�9J�SI�9�&�7d��*�aNZ��G�7�����OI� �5VK�7m&���o�.>��MQ%q+�Kam�Eٸ%<�3�v��.��/��P2�ߛ��u_�pN��#<|[���G1�FVT����IJ����<N8Eޭo����֦L��h,�Fz&l""t�N���V<��\�3qn���/��*9�t��Ŋ[IXQ��FBBS��']� z�?��F�Q"��lqrVX�cs#�5+1�C��2��b5���}��J3?��4��S���hn�I9�&Ӛh�>��>3{
����"�Y6�/�r�.E�w��C���_��d�cw����A��|�ƕ�=I���G[Bg��? ����M��8��d4�K�xØp�#)F5�cJJ�Q;m2-�>�����җ�b�z��0���DaLQp6��[8	1�.W����+yE�}��Y�	'�ߗ1���5]+f�?k�R��?o���t�a�<n���lߠ3�{]#W����:rM?v�e���u����Qj��qm��t9?��I�����S��&p��M����hŝ䤷�U�Rm����S6�r�?��yf`�RÈ4�P<Q��=�����@׿��E3�gPA�u^~�
Cp1;.�$�W�I4L�'�bu+̎�lv^���|��y7��]�i�Y��Z\�$�j��xo".�3�  ����A%���(�k����mg��#���|�6�Vc�Qԃ�>S�kQ��|J)Z��V-ONP&H��Tn�x
��Qv��N{w�{?=p�-Ow�SC<�+�<}Za?��;��@-�-a\�p`�r5��V[t$�Er�s�xsL-¼p�;���D�Eɪq��87��a���`�P 4e9��c�i�\�3���r��2�aJ��+\��₏�h����D��&���x�&V�CU4�#
5<
=p������ؑ�q}����E�L?�����6-�%�R��Xو*�S�KԦ#���r�z�v(&2�V�=g%Bz��.�u�9sGj*#�yL���n��3�H�p^=;s�G���7t� s�^Y…Z�����h9�DJ�ՙݥ�YZ,Mmo{��IvJ�r�G�A���\�Y�;4��Ę��ƪЭ�.��,���S���RDǽ�E�>�G����y�z������[Rq���q�^��]Kuc�OnP��L�vB���~,�l�q��83�#�I����$�{�r�׌� ��4K�Gp����
��,���i���X�ȶ������/��+��K��}��q�U&A9�rP�Eƾ$�'���EL�|�������	<Q*����ZU�:�7�``�>e��:�q‚����9�RQI����}!o�s#v� ���hi�fUG0�%��Ѷ������26z�<U���ɀ�g4T�zI��^�̲Qo��K%�ao6�荶��m��>��޻��Jw����s�R�<��v�Կ~Lh���y<�������ޠ��)�O Yh�ґ+���`�i1LMV��$>o��c-�NN,:=�;`$�
�u	a���t5��H�?���,�j�6Y]��ba��W�2�8��IX��|Z�鎘��XJr�PII�M��e�G�F��u�������<j�^d9-[��O�K�.�R�H�՘^:�싌���ɔ�K�-��e�l�c��T��uR�`����meN6�k��j/�#&VG�5���Ȳ�����oa<�Of%��#���WQUO1���\���o@��;����V�L�!���4��#gcʡ��RR�8x�\\�c�F���4OL� �������d@�����HH	�ྍ�a�p�(�s5/K��W�`n/d-.A�tˋY�6�x�սĈ��2Ɠ�|�!�Q@I�&�f��`�v���'��|ίg�ĸw�����4̮ʭ�\��|KU�<Q7twQv������Y��1�0�7�e�/E���
�����pF�iP�[)N��rc��X׆��n#9�_l#!(`��sR~"�뀹��N+��?�ԯ{���o�u����=k��hjuo��%�n�����LeM�.E����5䷴�vk��n.87��]���۟�~�����1r�g��c�*x���j2���� E�Q:5|;>�e����Btc�h��HY��릒��
��`K�j@���'���=rq_�h�`�bf�o��b"�Bڙ����`��j��L'#��t��M�6W��ք<Т7�1Ȗ���վ@��aYi�S-ʢE`�B�%���P���Z�Xt��e��8�G����n(|���kA�2�6�.��h��}���b�Q��>�Y�6a�q�R~Ԓ�au�;�9�?!B�,/m�+"�>�O�O�a
�i�A�L��G;���n<L.�8zCe��{h
q"�G��H߆(�����PN��ez�&2'��2>#w�]2G'��*�q�;�v*�e@#��`� .��=�kz�r5����7o��)hd[o�b������� �7}���	_s;���.o~���N��0�RҶ�
>m<pwFG<Qs�V�>]B:�0��4������S��ӽ�o��%�i�	OJ�sc̣k'��w��O{�q�3�����̂�b������̯�=2���]՗���ue*:��,g��S��_o��L
���,J������b�qp�ֽ��=��vs'᪙ec{�+~�]s�ɽH~�y�:}��D��R~�m��Bj߭d�'BIt�̾�ݧ���*P�EG7��v�Y��
�6������=���K��ۿs7�Ƨ�ݍOO���h�͍����᭕K��Q�JT\ʙ�*��wvc����<�i?��ĸ
��_v^�z�{$/�`��������׻����{�z�`��/�Q�
�l�<�����p��^ȶ_\i'�A��ۯx�H=zy��:��c
�չ5m€a�7V*�8���3Q��!��N�͍~~+�{�Q�������\�I��(ְ+bS���}T�ӥ��n��q$`8^$�U6F'�_T�VSG���w(�~y���MGi^#w���L֎q�̄��V��Т#��bI�n��?|�3O��!&�b��sJ�l���X��p�k�aK#}��������/IO����J�9/�d�~�ˌ}�8Մ���c�~Ϣ�}��F�S���C�:���߮1��;�h17|����t 7=̴H'����>m\Ӻ��cu�4�¤��f���%9��yj�C����O&<�6�{�T�Ť:a|4ڭCd����5M�'��F9�;�)�	�drvv���P�E�K5��%�(����2/�Y���P4O���Y�!�%It���8���D[��hd�b�]�~�Z��bNE��`���d�T׭
�嘗��gq}U>sH����R��-	�7&yI����˸3��;V�ebK��E�(��E�	��LL��8H��+�S�0qnL-������A;MS�
�vl���t��U�Ns��*v��^|�ϧ��4�^�6
f��&~~���m����3�a0t�A�����c�.t��Q-5�|ɚ�چ��+)g�f�+��)v��B״�	P�#�;��%y�z�R^ru9��?Օ�G�$�h+>�����;/��/�9�aP��tAd���Qiq�g1�cP�~`)�ѣݧ���*O:Ŏ� �2�D�fV�9���&q䦙ϟ�ʦ�V��'M�Q^Y����p�u�H�-��|r�%����ig����Ts�$�J��n���/M�nL���h�&gA�e�<e����qNb�LmO� 1����V*����G~����U^��oui�<�c��^�*�U��U��'���
7�~����3x�3��Z�=@T��PP������Z?������G��q��׍�:]�`����+��������;��r�Ԟ��2���å�|�9��
1E_8fh]�����>�<�(g6Wف�W�=�t矂�K��ΐ�e�11����l:��l0S{�y*�.���?[&[	;x��������u�ލ.��Dlמ;��H�e:Z�/���w4?#~�<vNs�Ƚ�vI���}�TL��L5���c3��nl&!Lz�NԦ����6
L8��oG�b���Ik*q�z�@�h����)#8UlV���\�G��*jo|��|
��V��C$d� 3N`V:���JB07�n%������Sζ�-*v9wHֽ{��ktF��d�/̀MH���Sn���ʰ+����6�!�r���;|���΢�i��`c6���k����}�S��;�yP�
REPk0��?,Zd8����
Vܢi�}�@�f��`︴�Ҡ��.�`Hk&��+�����6>�v��f��L��)���D���&o������e'-k�i��f`�OB�\[?'0�)7>���[���,>6��Р*�!v��'A�J�u�B�w+!��r��7�����l�V˞_��B$��v�$uRt��x����u��}G�턋���c?;?�V;�O|�?�h�]�"���ǟ=/*
r
'�M�6jϸh�T�Fd���ǩ(���b�d.s�ח�D��&m% �C:�xx��Y�"�9���E
��1�'�d&#g�ʹX�6{N����'f:�Qf�xא��&0���\�sg�-���W��iIr���V�()�{bih���;�Qf������-����>G���zv|+6��M�yV@OZ�`?��r�s����B��w��
rF���;C�e�C�hB�da����kl}�Qhn㾷��r�NǗmn��}^9Mzic�&6�
���ф�E�,݁�ҭ���Sa�e0[ۮ��i�A��v>~k*�v���v*�4p3Gߞ��F�h�:~)d���o��7=r(In�ZӪHF6��O��n�+˙��8�͸�ۮ:qd�(F���j�Po�@��m�J�o����	��c\�t=oT����+T�zʊ�'�8�*RlI� �1Ҍ[�ϙ/<�BL�Z�r��a;�XnY�����}�1�=I�/�2�/g!�P�s��:Ab����d�X)���4h�yw�-��>����h���ׅ��X�.V#�ts����,0���9|t���_Z[^X��k��@6g�����;����EG���
m��C��*�HU������|%���� =�k8%��GT?6/	�������8�`�,��)pW
.g�Q�G�������}E �� "�
���^��P!����f?�;�j�W"��M�3N[a����WΟ g��ű!N��6>�=�?8�}�s��s�k��l�
$��ĩ	`�ݙP����Q�b�+p����G��tk�Sٿ�`�vF�I����暟n[�;*�9Z��	fZ;�Pd6$u�t�l$!�#p�1����������ӳYy�w8%�/>]�#�y����g���/^����ã׿���������G�`�]0��̃��0,���Gz�d�k}���$Jf!���{��iJ�ž��ra�j؛��R�}�cx��r���*+�οO��D|>V!��lV��}W_�j#����u���n���!IA��Z�hi$��I�R�h��\	����3Q��Lhe�Qp[Ѐ\.w����yp�t1�
��4�����&�Y���@���kL�z�L6J�7�.�B���,m��#U�]0[�
㙎E�Ip������\�o����o^L߾9(߾9���n �H�}M�^2�/�V�*2�ͮhL%�DH�f��y�>��Y~/��*f)��A'���K�Ƌw�6	]̈́,���6� �Ӡ^΅m~1I�������Qd���(�dž��^S�e��х�1۞a}D1XKT&em_��ԷVjuȟ|����5���k��r�s��k
�Z��kT�E��NfJ�M��	�U-�[0_씋C�]��?�0w)�x[P��+Ke�^����{������ñ�V��mLT�cK���c�<ۧ�c���~R���	�x��PC����[�z0�#}�_���2�k�}�
ӹ�ieMʌ��w�e'�����[��0�kC�嫙Um��vVz��lS�7���Q��z�k�2�7�ߍ��[w����,]U��9�I=_��]M)��U�����bf"4X_���%ʀTh�����Q�%�����m;�*��5�ߑO/֚��o� �m��<�SZ-�H����?w�q�`()��k��8#�n&�K�񜦥��r�Q>\7�Lu�b����蕂�S5�c)k�䈠S��撏WE�i�
��4���o?�8��>�(ݚi܎�<
p�<Pb�A�ƥ��-E����%d�@;1�(!�G��q�u��*������A�w���X��P��7Nk"�e�W�	Cŀ���3z�h�E�}*�M}�����f�S?oD�?��{2h��c���/G26;6=���ix�1i�g��Yt���C(s���	�V`D��Fe��+���ey�㭴��
�:��m) �`#-Z�
��Y}⑲H֖�M����h:?sZ喽����K�T�΢#h�4yu=*?E��f�^x~R&{/��w<������'����%���I�c� �.JL��@�D�Ϋ|N�^BXWLǦg1��'�����H᧽�u2�
���/�U��;���_��ؤ�q���a}�2���;����,z�c���)v��T������;�=x݆?wÎޅ����I�q����?�^�A���?w��jQb�_�_�^�~l�ḿ�+�K�'��{�����!ne�������������q�N���0\]\&����FL�@��Qt�a1×��g��w୸�z�8�����^����Ց�:�b�J�໘�TR�19�:G2�HR���q�X��n6�j�-H~�F��
��-�X	v��O�ֈ�Q�TzU}e@B�L��~���¢1��m]8�GQ�pTm�P���*L��g�|��)����S��"e��C:Y�E��u�J�t�2թ<��A��犲���MW�\q���O*2��q*	�J�	��\)D-��I�C2"냒�\j�SIRg�S~��
ʎ�%��,��W-FU10D+s�P`.6O�s�	�8{����$7i�Zzlx��_�#����+�b��3�N�o@�:���싲+�貜�p�@�b�O8�}6�P�	�7pG_Ȱ��ș�a���a+��4����ZL�h=���o�Ja/#4X>�AdW�:w81mV1:�&?��`����d�M����#
WQ���1Z�q2ƺG�:%�ץ��	\��bB��KZ��yݲC��w��d�o�jn�w���w_����XO������rh��C�s��pSR͜�c�U�p���p���cD*�h��y�K��^��AbOq�=�����9�:^Vk^^MEj�?8�V�Q��]�v�+�m|W8g�.����/������yt��y�Σ�f�	�2��fs�i�	1^<"\��Ϗ,�2�-M:��šHM�gB��zƯMwG0��5�R"!��D~�b�(�w���ۯ=�V"r%8�پ�ێl?y_�;�@��͕�����̊E�L߫ρD�m��S]>��6��WI�\�J�3�ddC.퀌G�OEQM��=��3�t�����N.�A��@@����/�y��W�d�����*���`�K9b�/-�!�1O�7%g�/,��9�� ��|�K��{t�vM���d��;v2-�\\O^�cZ�X���}*
��/(&��_`g�B�)�QW��<��������9 W:��#nBnF�&��8ӫ���S|↝Q?E4A_X"�ܬL÷��oX�Q$������rc�ǝ���U�e̚���)��..�6s�@�+)��ހ����U�-�0�҉tq��Vs�yR�|/�$k/���B�>q�۬P�K�Ž�'CN����N1�|^�D���L��A�ˍ�7s�t���1j����b��A�[�.zZ�Z�6�Y3qf�z���P��~Uap
&_ނjA[�̺����"l,�`����{���{`
6��9��@"��|&��>�����]��I5-N�;��,@b�N>�����$���(��7�bY2ڒ��?���Z�ڮTWO��A_�>�K�s�|Y}ʗ�>#
�b�����5>�(�{�vP�~�huM�$�^2�x�R�.�=j��)l5�N!��]v�s�nNY7�N~3�O�d�u&
y��/�T�i-�m}w�c!��)LA@��B�yMe��W�Ŵ=�ŕ�p�$|N�a�mHk�+L�X	r�JS��X"��Bszz�ȅ�W��tZ����P|�jg���k�.xN�{B�l���)�૫&�5��j�
�r������̮A��A���l�yI������E�ɾ@C?��_��+1��[����>S�*m�
��soc�>�����)��O�'(U�rTU�������	���%�d��&�`�8y������M�cJ�����c�i��Rl�Zրw�t���ma&'Y
���gˊ ��v
�������?��9�c���sy�/_S��f���+�
�ֺ��nNX[�M0F�;v��_�
?D�-���nX����#��C7?�>�DFt�Պ���t.<���WP��� �P�3FQ�\����x��ޓ�Ϗ���q3B�g���2]s�7�
�(��i6�]������3gs�mFk�h��50�u9��c]��D₳	q˙�@_���c�`��=�rW�Y^��9qȫ���������3���y�T|i�bE�=>7Ɓ�:��a8�7�>��N��%y�]�NJ��D.��I42]6����D�*ly���߈Mݖ���'R��ӵ
�t*+���ޖ4(�V1��}p`3t��a��z\Lqg�NNfT&��6�t��ۛ��0�����&��{�g+�F�o߹s��ݻ[�}��6x�;w�����@c��<��݋"����#�$(L��\�N"�I����(q]J�O	u*��&�ئ~%�c��Y⺖h����ԻWǭ����r��i+G0�G�5��	���,�1�^䭫0�SN�r�(A`0�58M���� 4��P/M�
�0�j�u��B�a��e�JNrŪ����=���k���.�ޅW�����_v��w���+o?ظ��~?ݸ�{�ѯ�;^x)�����S^�Q�?��im�pC��͕�Jj�J���@��Ǝ%ڳ�ʮQ��9]�A�ԍ����WRe
��
��y&5K�V�*�o�	�,$e�����W�kP��7b׸oL�R�m7�ޏMq��=[�aWl�#��ty��^�/NԖ�7FY��m�~>i6M=�&O��S�c��BJQ�O�!Iɛ��W�c̐��d��ƼN���
@����@EeHu\c��$ń92�ŝD�6q?�}:�cF�T�1����I.ä�5�T��p)�(��&�XC�6��C�q$��' �!�[0D��:]�ɔ�Z��ۚ�\�4�q�j2� �a1�*�
����(�Ayw�-f�oԹk[�D^����,�(?J��0�:���;��pѽ'��هh���i9ߊ^�崌��Lf�+<X�;=r���e:��K��;
�zT>����7i�0L޼����7o������@v���v�$z�DدI�FN�uw�ʒ�:�@�@(�DÁ��m���%�p��
�Dh�}0KVz�����љ��e��Se(|�E�}�}�	a-������DP�}-�RV�nP�+���5����[-.�E��=䁥�?A�$bTS��r�x2�<�?�r?�����O�/��/���嬆��U894��� ��S֏������u��h���p�\��,���~�$�|p+�~�K�K��]�띁��56YT��f$�\b1�'DH��z�R�g��@g�I�1�o���&��Ɲg1��(N˱)�`xiS� 
��~q)�iz(��l�>����_$�E�5UyN�}�
�&�]ugo��Od<������&��N=)nv�Dv.�e�kt��Omh���!��[�����x%���No��(h���Vl۸R~�fk���\hb��Pj
0�Kg�z
�c/�:��E*�$n|��*U�̊��1��Mu����<�0�й�S�E�)��]����w�Q1.� ���a�(?��8.V��ԧ� ]�p�g#bz����J��>���8��nxMX�7 ��^i����8�چ%�ERG@�l�-<���d8Tes�*�A�R����4/-UJ�U0'���PJp�"{qQ�2Y�Q���/g���O�
��7-Y3�T���>u��������&�lW���>�i��
?�G��I�;�����p�
�x�~\���7&f'
MQ�5�ݿ<�}��;ڽ�=
}�j�]�3c�=v�S�Yb)����_R�I �E>;�VRP����
BG���,?��<G�鲀OG��?�zU�ݖ���?�?x�{��MΌ��2w�ab'�`�g���<�.��<?^d�C��=�����M��}4��f�)�;�k
�:仌5�ӷ��ZI6�}�{�7��
a
D�Z��V6X��4��˷�K�E֭P��춴؅��0�hr�JR
V�śo�JeZ$Zi���*0=�08�@k��u�88X�C��$�)C �6"Y=�ɖ��h�a��P�u��.��J�'K���P7>$�iѶDp�Q�B�i�f��1#i�HQ�ɽ�<����n4���}\7�b�ڂ��"��kT��Q���E��'���Mo-d������:��O��X~��m��S{��Md�W�����<R/&��wZ+dO�/�f+���Т|�q��6e��̅���ATx�V�ཀྵ����y�<�1�q�GuO�k}�٨
]ձg���䮏6��e0�m6�}�^��r1��aZ�M�bLE�-���e���DmPz�'`�m��o��2YEs-5d,0�TB~��\G��1ޱ«���VԾ�7kE�����TM�|ږ	�1n�B%�v֛�U��M

�rd��nWwmz:�Hd�գ��n/�w�$9���$�|?���~���Y�7~$݅���āY��L�=cF��J��r�8Dj����xs��/o�ns�D'qs��u�0���V�����c ��V1H�Q�l�����{����v��+�1�rȷ�t��O�\X��6�X
Ce�
�E^�ֱ��`T����G+F�Q$���`5D}G��2ɻf6kZ���	��H��/�̗�a��/C��{6k���Ŋ�,V5�~+�wJJ��@䕬P�W~.A���1i�?y�	ErE��$h�u�	�ɜ7غ�L�]�_t�2}/���)cD#��ˣ�j&H6�x-�I1�X�Z`�9�"�y�L^p.k�	ua�*���}���9t�J\�h�}Z�[\�,�
��w�U�v���}+��P��խ���1�_Y;(\������ל����(m|�JC�M+AV��nm�;��/�sh���h{���6M��?A��e��S���%{Go-�H�
����/�`&�܈�Qx��hGr�%��3��l���������\�G5�AԀ�O8��ge6K��u۪��r�8)����?w���
VbO�p~c�ebx��eqɛ�5�j�ޏ�Q��Ȁ1��EƖm-�j�>8�l�m)1��Ϣ}n�(����wp^fpX�_�i��e��ƨ�����\���c�<�́+��^�a?EHy���w�٫�'�-c�5��֫�ą!A��ˋا�#I!��{_b%�wk5^vg���2�$eh,^�E�+��`����H��w|4p�^�YKU#s�&_�-���z�oE�ծi�am�|��������7*����弲���]��{����awi�Naf#q)˲�[_����ˀ.`xd;
5�;����Ow�3�,{�;fg�B���ϟ/f���.���ok��Ϯ���M�_u��wV'W�J��-�������0�]vم�e�5�}�4v3��mʔ6t���W�����h��p���w�$��湜f�>���¿n�_w`Z�Ą�Ts1�
Qs���#k0���R�N/�:
#��3�A		]'��x{Ծ�I85;,�j�U�O+���g�Z�iq�B����$Y�oxs�[��Z��f�SR�K��&��7��ՋC]�f�I�up��J23Cd����:��{�V��&�v|���U%*�V�]?��u��q��d�R�F���]y۷$�D��&��i��J��G��u'ќ@#[/
����?�4)'����#k|�V�/kyf�_�Jz��e���y~A{�x&^�8PLrJ�X��r_��q~Nw��2_B2m���΢RS�"ѪZ�UZ�����*��\�Á�V�vJ9���y'hx���u��@W��Y1��)P�>��F4��T��)��ue������)���ha2�E �>/���4���u�!B7̥�Hb'1��u�4z���F�3dD�����1�'Tg�����'�u̎��̝��R��q:����"�ڴ�:�y�g@��Vf_�0Z���k���^�r"]Tz�WP��p�M�Eb�Ny�w�P�	F��ʣ}V�fz��v��4�
\�Q�L���SL�?�<���|������x�81v#N\!�!tO��?s�R���g�r*�1ۀ�A�#9�ߕ�OW
p6� 9Ε`U}��������&�t$��T$Q[*��s�H$�h��Cm�
{�vu�('��Ƭ�>���������f�t,`	i�{������)��R/F?����K�%��Q�v�%c�a����#�aQe��U��<BX�㬃�G��s�g5���G�s�)�����y��x0�L�0�8���j3!�r̂�iUha�Ň�kI;'��JG �8��X�Q�z���DB��^�S�B�Ӵ1k��6EHn�;HO�'V�&V� �B�����.�s��߄g�.nzK˾p�[���h6eͿ��ݭ}�n#�b3��
�D�����{櫶XF�^Z+��Q60G��Rw�a^����+C���9}A	V4-�(H����iQ7��g+���
��;���{3����n5�ϋHx
KZ�0"3Cb�17g��57��*y�
ޤ뒘k��@[����i;�F���ƕ���A�
v�y�'�cS}S�5�ݠZ�}
Zf�w4v��~]y�A�)ņl&t����1�����\���t���>�i`q�i�{��{��IlZ���u���gVg��ݭݨ����p�3GT!a΃�цc�P 3�|ƉKbx�=��1�;��'f��t��N�2J��ܺ^�O��o�t�mE�&�~l�_�]%��~�qH���@�H�DU����yC"I�s�������=.�����KYa���B���t��B6j�X��rIO��N��Wf�S�Z��M�L9e��$���҄���D������l;���g�9�}|X�$H�D��XN}<��5R�����*z�bq_*.k��-�\
�z専r_A��/�V���}B�SI�8
�P���נLk+��'�t���_��1x�'2uK�;��á��o~���N��ƚt+`�ʼnX�(�\�\�GW��o���pxͅC'�h]_�G��7���w?��C��ht���i�ڞ�:E�����9	D[�{9��ܟ	;3�H�Ѻ��h�{$�b
7��q6=�5Gy�6�y��dB���A�){��0g�\8x`��������^Km�Aw��v�l%�d��7Ch�^��2�HzK�P��mx���E�.�w�T�RO‘�a,��)!w0�a�#;}���ՎF��� i����8U"}*�$A]�z&��Q�:�Tt�فMk3Ү�?׬-aJf_����~���K�Ƿ�.6��d��Yѯԕ��"7�5ϔ6+fe�5,�@����Z����
]�G�}uWbc޳)�9�駟�!AEȇ�M3e�l�H�#�(E 2go`��6���+V.�*`0	z��!Xx���;������Z&�)=�ݹ%+��j��3eEb�8��"��$�(N��-2zrp$5uh�	��df�I>Eً�اHr"-W�9�dn�5��f9	�5K�s��#T�K@��NM��"���X��gT��D�Ν����N09�P!%�3m@��_�@�o9'Ai�D����K��c"*'/��S�A<G��y��4�|2N����=K�A>>�^<Ŏ»܎�G��0�sG�B���L5.,[c�?�T����ңR[k��cK8Vn���Մ�`Sj�/)��y,�#4C�퐪�QM{U)+#�)���&��se�}スC
Pя+��[���5�ʡ�{��`q}�$џ������v1J;����p-b��b\p`�c����|.����
џ�U���?��<+g6(+L����>�qv�]��[Z�K2SBL�(�^�� ���}�~��:��*<e�F��[���|ټ���D6���Ͽ�L��3���#cZ݌^��P���]��GA�t�n=�����z0�9��@'�����ºD�q��
�{�+L)����Iޑ吧�kv,1����7��K�ܨŇ�Z
̈K�躓Q6�}�pD�N	A�NQVD\Ě4{~�S�r:a��ִ�
25�O�u|�hE�kP�c|�zwd��$���&&c��hw/:��EN7MN��"��K�x���E���$��������¸nk#��.f'�rFo[�丅w�����F]�󀅴��3����'W�Ƅ��%�	u���,B~�k�w_&�ګ���៏h�ϣ�	��\���]����5���3W���ǹ_<?���<re���U������G�m7d9��`�ɉ�r�b��p�⺘�J.%��5��r�	CEa���"�L�&U�S������ot��L-J��`X/���Y���q��ǰ3z���{�>����WF����w�k��Ő�C��M�Z�7�,�����f��V��kY�^4�ɰ�x�?:x��{�f��J�����1��kY@l�ޢĀ��\�QSǵ��
 �).����W.
�̅T��'kny$�'��P烀F�^�\�H3���5��9X��\d�E��=�7YN)�E7�ys/��kJ�ɛ�!1��O��w����]�&�Q�:YF�]]�L8P�l(��|l+X&-������jG3v�Z#|��?�Pq<�G
;��Y8��3~tOZQw�n5�ܒ�:
ћ=\g!P-cy�,zYF~�(̻{���Ң�Ю@�,���(�ԟg�N�O\Y��[�"h�D	�|n�O�QŒ�gq�,F%�o�cAk��&��|f:��x9�[Oc�/^P��H|>�t�3��a���'t�X�����|��gԎ;���ƮT��]�>�:���oD�p2˪�+�a���艭XEU�ZV�I�	�O^��R�j���-��n����u+^û�����V�jy�<���J!)}R�I����.�Ǻd��^�\�r3�1R��y�%�B��yq�Ԍ�bs@2��tY�ty�fP�����ԕ]��`��s��NS8���*c�w�2�e��Q�M�Ƿ)臘��J9��\A;�Q����RQ�A_�����хޤ�1<��=6�_�����n����O�L�y��;�8	�$��C��1�O��؎KL��v�?�B!Z5i�c!G��E�Y5A#w;"�����ף��p�~@��d�N*�|.�\(fhҧ�e�x���I�;��3"��d�?��~�%�2"��
�u��x)�ȯaxq��q�&|+�nt��Ѭ1���1�Q!�BYѥH�E��0�x��j�+b��q�$�A/�|rN:��u���u��̓iD�X�a�k��
s�'���l�I�4�PlZWnu	����dP�S�_�?D_�~�E_��2�bM$e�RV�t����Q��=���9�ݗ"%ݧs��5��+�9Ē	#Q���iaL
G—G�_�
ќ��������WqG��]y5z*87��M��eHk��!�sHZ��W�C��+����}�p�
��U�J���kr�����e<v(bM)_>[��/IoD�����H���&���f���-�z�O��ۉ�^W7e�/$Ց|���C9'��4�p�"?<>xy�j���):|���_��T�{�z�,|�&�J�ɥ�E�5+���c� 1�F�
��.]�21����0�},?��\��<�Z}�?����猅8ڬ�����{/v�w^��w� }���Y�h�?L1�	�Qww�?p�燰�@(D�J�ɪh����Q�S���fx
��2=S[ܚ�v�;h&�n�a�~z�ȼ~�{L
�l��X“@K�|\Z��i1�@r!L���e��F.��ȱ_\+�:�4��cu7{	�7�Z&j���"�
bb���&�	�]GG�l�n ����q�Hㆤܱ���W_G��DF-�pn�Lj�to&��E�=��o�[/z���GH�#?:�:1���)���p��`K��V"��Jz��eU�وŻ��WU���'|S��&�Jjzm9oVk���M���/�T�Oh)!�R���ڰ�_w�UHʘ%�<�}M��rČ���ȹiX ͗3ߕ�e�	��S��'ꮦ6h���qG�.<��D2�
�VF��fƸ̀=CXUˆ�G*J|����9>p��*$��d�5�~����7�;�8o7��^?�z~����d:P�x���.��C�Y��nͭ�2�'j�gX��ۛ��k����{|Ǯ%���H�{N��:�6j�J��uk��"�-��G��<�Eo�6�bO�K�9�ͫ>����Z�E)u·���3�8K�����4�C��Y��p��EsP����8lzi��T�����ߵ�Kd*$"��3�J�yŧIE��."څ�TD�W����f0{�.Y.֝o��V�<�S\2;)n���c�A�1'r��z�9K,��E'�q�!��^`xQ��t��GD6d�u�����4���U�ǥ85Q��y��~ᚳc�%���a��Ȅ����u<�!c	�*E�s�*�W��f��f����P�(-XK[\C��O0��b*��^d�I�)��ѳ�n��>я�^L�����i1ˢ����1���7����RR�g�w;ΎA{X���~���_�.k���.Mod�"�+�U��X���f��A�?�N����ˉ�~/�ʬ�i7�#4{"����x<9I�KU@�2�C��������{��[�:bQu{%��fR�4莪�"��#)w� ���w#��)4V�cW�4��e���2���*���T
t�ҽ�T���hd�sĻ�_�^��dē�����w5�3��$O/�CT�_F<B4�n�p"$#oJ��N�z�I�W��8�
o����h�_����?7�n�0#�?�>lGg��ͳj
k_^`J9�x���f��ٮ�Ɖ2�e�4ߋ�o��v��M̂�ʘ�)=��"�b�m�ʗ.1��U~W��6&�y�C�A�<i��O
)�su3.�A΄z��!,�0 _e�+&���v0�:l�e�?ڎ�m7f���_@R���u�g-�'˦�ÅM�r~�@K3��Kl^��_-@���=�Lhr��k"�G�L5uH|dP<��B>��������J bo���_NAݷ4��OУ���_����IPv.����v�ma
��*>$)���mO��8{g4i��*�\�/x�ӝ�􋌚$� ��V<��,�Ζ�,�O�O�(�p^�G�v�'�0��\WWM�X�q|����������15
�g�7����Vo��ȝ-�6�>�L;����(�J>>�bU��K�6��.:����t&'�pp��m�:����
��#�(>x�/��@R��-xGq��˗�B�KEVdk8�R��"����� �Ũc�Dk<�u��w[�������&q(�Ri��s�ҡ���
�%���.��tp0�U�b2[~��O�Q�2���DE�/KewT;�O{_[Bu��|5#f��)���<'��jЖ���%M����zz�h�ڥR�/�ӫd����@X�Q�d��G����t�/�؝�/_�n�¿;G��E!ؼ�����qh�>�FtTT��g��xZGm�Y�!�pb3��t�<^l†Rw%s�_)nv!�rpI��^���	_�S��RZc/L�F탷x=�Xx$��hS��(
�G�f�� �Ox*a�x��#b�� v���֏?��DhtΥ%�ʏde/���!��Q	�nN�G.��������?��m����=\3��R*Y�wNtx�z8Kzǚ��["Q2`V���O���I1:��wP3������9�+�;׾�� �*w#7�G,K��?x-/m2k�+�c��a��f��<����0˓�!&z.@5��GԒ嗵IÄ��(�?vq�tp�<l�/D���<��;,������P�P9|Ei�h;�	yx�ݍpd��'�av\2���uT�*9����U��G�w�Q/LʫB:��9��i��tc:R6K����̇��h�p5�,�/k�/k}�xk�'_y�;�Ú(����㋴'����D:/+�
��
]Bo�ң�%�CA�lT����k�Y̓3��'��X�Ac�����lY��Q D��
&�*�,�9��n�����#����
/�+�B]
�
o4�"�8׷��=/2w_��y�k��[[��T����1��tn-d�R�-w;3�vQ�E���}�*�h���	{�=�E`&�@ɠ����`�^�|��xB�.�>!�҈��Q:���<:��__Dg`�~�w�&�����������>9����'��[7n�>�ѷ�T.hY��dB����sW_�x�`�f�[�a�C�����N��^Sψ�}�����nM@U�+�~�s�PW��J���

����u��k�דRxH�ò`S�uu+��z�
�<��:�-Z��<
7��v	Q6e����N���-n&�4xo>'v�*)
(�}��:�-�٨2L)=3)��]��	>�J��$�������W�KE'^�Nfi:.cOW�x=��R����9N��·.m�Y���(X᝗(�K|�
���Ej����W��q�'get�O�&-��)�|t��n���d�A���1FO�O�D�v�χe��ȫ<=�d���lQ���?&�%��h����ۃ��	�㓓����$DԠ�BT�c������g�g���kU%��'�Nu����_��(��L0.��̜�rp���
�W�!pht��3DRc��B��'�[	�2LW��N�����U˴/���0+�~�zv������^'ދ�+�>�X]ٳػ�w�9��l��l�����2nc�ӌ��!�m��n|j���𥠅$��p�8]�0�U%�hƀ�8�>���Q>�@�ʯ�g2���Q6��Ɛm*��٣SM<�:�M�L*�sƛke��2�_�QS�B�\>Ո<
�������N�|���/Y���kc�	4�9�
�.�%nb�UZ�|^<�hЗ5���fN�\w�,�ͦ��xkpt�rCP�����j����(�z�Y�k"�Ǖज�gr�ד��˿��ğ�#�_0dF7ҝt���Mt�@'����P�S8�@�Sy��^�|.���sENQ�� 
2��#j�@y���٨�*|��\:4s�S��#��ZJv8W�8d����QI��@.�NzmZ�`��j�?���Ӕ�+7��Q��]ii6����	;�aC�L��Ɵ�\p
,ԟWޤO|���4�×����L^��Iz���5�ī��JKW7��_�bP�}���'^W�O/<Z"�U:q���jK "їs�J[$7��
W�8<xv��Ϟ�ݾ�F&���H�f�V�T3���l��!�$�Ø�bH\`C�/�\C�A|��a�w�+P�����ў��D0:+Ĭw��.B/B�z�Zg��� ���I־`�����M>����F��n�a=(�C�Dh@����P�%$y]�c9�J�v�������K�P�5�� 5LI&aE���l���%j����E����l^-��#��q���}8�6���L'7��*0�e9�^H:o��e�-˔�8 � _��dg�۷�}��aƉ��P�k� �,޾P!2����⫽y�]����(x#B���]���Yv���L��ch��=x��@�u��Z�m���Äڲ)��������5�(���=�6��8�X�GL{�G(�]����W�ZR��J����a�a(n~	�Y8c/tg2YW�
Υo!�m�I��������z�y��m6~L�cmc$�+���(�cTmt��;|{��	�?/�������R��#��_�aweh��0�O���v�!���1#Zs�Q˦�	��i��Z���<�,�P3g���D
=NJ���X,	�\z�
���ʣ�� ��w+�0-Ũ ��GN�r��7���C]LJ�s#�q1�s����ӪP���0窰��lF�n(�����=���k�$ϸ�Y#�h�妗���ʥv)q�v`�F�>�D�v��?xŝ4��_��������跃����ۃ�O/%�vi�#�=Mp��p-P��2/�T9z$�B�t��C�X/�rg��/��!W	��`mx$��\������d�j�Ц�ݼ�:%��	��技�[z�m���1Q�/�c4�֙\��xa��\�=�_���P8c��ŧ���n�,�-�o,�,���t�PX����/h�z����,u���T�[L���\Kp8&xE^\E-��w͞����`P���__)$h�36���6!�_�}�Z��{#�/#'�T���I�2_��������M�6s�s>�U%�J�*S��]��rR��7�i�#^9�P��_a��̘�Ohɏ��L���#��d���ũqQ+�硎���'xZv�c��І&yӯ�2�GƩ*>!��<]�%/0�t�n�q����+D�c�����6��ګ�!|Ƽ�ײr��M3*�v��p�n�C.����I�e�}>G�mi�fg�`!)I��V�A+�+Zٜ�[�&_�^�o�1�"[�.�HD��b2���C��D��z�h�p:?oW���,3��:��4�2��e��4���~԰Fq��$�/W��YV����l_�P���O�U��̴&)2��[·�c�;���j_[r�lꙌ�K4��U�IWG9�%�&��L��`�;��j%�3ژ��S�`1��xZ{�ϖ�Չ*�^�-^/�4I���Ι_|�s��
��?���R�[!����ܰK��Kg�٤���_�ؐQe�s�7���/���ԥ��,J���
�����c��q�\�C��A95q$P��đ04uJ����p�&�5�_u\30>/�������X���NtZ|U�.��	��RRX��߰�\�N��ż�,8�(�ώe:*%�F��qF���e1?!�L*��8ApT�v�;z�Y|�OB���H�x[
�.ÔW�ߛ>��7�%���¬c�?�Q�܅$	m�t���Q{g��>��p��0%�w)�tIa��(�X�TÉ�j�x�#d/�Ω�O�FxI����U*��nI�_XX^�pSi�]|z
�q��K0���Gtp�kٹA��\i��^�����U'T�T�2���5�kһY�BI�I,���4(�'z��U����R�d��������Fk�N� ���C����a��R(m�é&� >֨��Z�:;۾Z�<} ��ð5Zln1�+���|a�h���i59��I���_��2�~r~�}������ jV�i.Oϡk��/0��r�����~$8۾�<�F��guٿ#�xc�yQ�l
V+QH��I�)���P�I8e�^��m?�R�b�ُ~j��p\�	&��;��4zy�J2���2GiH{��S�u�@z���E1��%GQ%�eȼ�0]�s`p��M)6���|r��D�z�"'
[�C�J[!�
K
��k��z�:V�w�����8��Рb�����D�꘏��C2�xns�H��C�mSb��$��@�@�
9ox|���J�|�<\�+g�i�Z\+��l����,�P��G�py6�H/'�2�c��$���G#f��|<��r�ꂓ\���0
TjW�4]��]g+*���eD/��
�ֳ�1�pJ��~~�9�yPg�1Vx���C�X.�,�auX�R<�2t��C�1&�R�o|?T;��I.Q{Z���1ڱq��<����%7�g��Sn_2@H�$I"��8�����:;�0����+��񤘎y���W�i�؜�A��J�U '�u�9�dv�<��smn�]��g����gK��)��+*]��}����MH���7ᄒ5��D`�QQ����)�ʻ,$3ž)&hv�C�+���+}�	Y����O��J_�=mi�8
ELV�
wB�b^F`��O��C�Q��7�`a��܉4z���o�)X×Ӏ�H�`R�u�(wQITg��W���@E�*�X5c+z�N{܅6�x�M'D�ؽK���Dn�o�r
�]"���=m+�4I�H�)�.s��e���~�ȋ�a�]X��?�|4_��KЯ�n:1ʂ���V�G1/#�l�W�K�i�^�.�������ig����<p�!��p6#�!��p�z�����,d��1l�Wpu�f�~%7���t�:ɃtSl۝����S�lndcQW�[N���";#��H��xv����X�,�g����!�f��F��!�r��y��qq�z:�gz����ԛ����!ؗ�9&m���6$`P�FLK `ZFO��=���0���,�
@��#��r��l�!Z�x���t*��7���Tt�LЌ-�Jn�{z-��C�gI��v�_���$S8f�#WD�UE����z���(���W���=�O���$O��N�5�4LjmCGT�>�%{�9�qm��D}L��b��w"�B�^�g`A��n�^ߨ��M֭%��1�Y�`g_9L̗���G�~H�|ümPs�Dj�����a3m��I��s��9/�sA��P���O�fL��Up0�ޅa}��������x:-�RI4�tL�B�.>�{��2=�+���|�y�.���b�NL���}�1�7��N���.�	���^�#h���$ˏ��`��d$��0G}I�����n�%���?��7bs����ٴ�$r2��]+�F���U�A��n~8ܰr�^l֏�Yy<����2^Mwh5Q�v`RT�~��6i��6F�yyF�]��X�dC��&+iR���G-�ǿъ�E��/����"������K���ai�����^�+mM�>A��v�����慐�-43�ӓ��Қ����n��Ğg�L��4���
�F��Ɠ�-\2����Gه���’'�f\��g����>�r�JJ��3���)*z3��K�U��ko<QN�)�- W&� 7s��፷q�]��3���m|�J��Xu��1!�,�^_N�U
#�gH6H��a�^�Dx�"���<�擒��N>A�F,F����P%#���HH�]��O��!�Mi�(����%��^�x�D2"��Ї��0�h*����L�!KDq��8�rtj"3�����Gz��
_4�.ֈ�S��|��� �Q�g�2�
՜�fr	��R�7?��8�씡A���x�b�^-��Y�4\	�����~��i�‰�x1=V���[C�+�N�|~��dNQ�z�T�Q��nW:��&ċ���3��� 5�����������0嚿��h-���{��+E�DH
c�-j�
����>��vD��'p|O�?*��л��dz��O�jɐ۟�;p���6���i̲��ч�%��S�e�M�}u�AI�"u�
��i���a�d�-:s@`=�J�����0y��/���(�|��s���N�4*�hĭ���Y��5�����Fyء��.�J�Rn|��[Sf?�)D��(u�ͷ��KMi4�03�Xm��:�^��0,�x�1�w��s͡dDjA6��u���;�;s5��f�e���<��M�
kp��Fl	�I(^�WZ��AX�@3�訷T�	rv��/1i|[�y�Ĵl�R��$�-���1�Q�q����m&��5(;�f{YX�:(6�l���e�p��!��5�}tL~_+�RkJZ礤>np�!�jX^)h�1�A��p5��1x���#�Zܩզ����pnf0����G<v5z����K+&��k��%��9���c7�\ק2�Ʌ��C��!4�/|���}/�0k�AQh5�Sn=�N�t�d�ձ	�g�$�&W.9��9�H@`nUǢ��x�	ʳb��J����a�(/�M/�ݐrZεfAI�]�g�C�Gh*����nc̦i�ɢ�I�������3g3)��,dZc�<�Hz}����X�P&�.���*��E�R_KX)���4�	G��8������qY����]ҰJ��l���=m���jVc�G#t�y[����>Rw� Mq^̱��0�#�+-:WfZ_<�$���n
f��U�g�żaN�I�ʷ���ns�C81$Ԫ�|��*[��͜�Qߤ��w�!7��N�k&@��D-q9��?
�s�).��w��SJHP�s��0����@ܵ�E�o�38^4�Mˍ��v��T�L��J(D�$ϛ{("s�`��)
!2�.v�%nDR��o2RVW���Y#yejf��a��g;q�<���N$eS�$���z��?w��F�%l>)>�����m/I�OItB8�϶	�y�;�x����M>�f��N��a~���#B�Z�4���c�^�Yͼ`��%�;fW��78�<|��I�t\�m�s;�f��eT/?D�����LPEU�
�[f'�EãS�t�u��M~�>��z�{����@���c�'��!����9���%��"4(��N�ng��\Ap�1�`x�&-�c��F���[����5m`ն=ca'|��f<q�7ߞP����������Q-�d���e"w5sg}��פ0��y�@"���Tĩ�YWZd�FR�E	�ub�V�u�,�uԀ�p���e�ٛnˀ�����sh���a��2ڼ�޳$���Ϡρ�M������3K.���c9+��o0s��ؽ��pii���HI=4x�(fDMgC�AY_?h�ԁÍ*R��/�]5�Z'AZ|M�3�7`�;j#9[嘮��:Ͱ��WPv�B��3X�/k���.-��5N��掉I�j^!���z_���Xؒ�z�k�.�p�W�VbجLT�Bb��T-�<��+d��ִ�rͦ���{��&�+gY�]�����F{GG���G�̤N+�F �?U��o�<S��FA�G���s��~i�9��F�_�R�0��S�m�c�Ev?�L�.2G�ۘ��sϩv��e��<�9	�2��(%	m	�A�.$	��G�����(�nA��(�m��]��9�)���*�D��~W�t	�^�i���/�.�#E��$^Q`04١4�ūoj����`@4G_������+���2�i�`��<��Lo��I!<
%Z�F���et���`���q	����$u0�H�
���(��s�oD	��wՋ>�}�5�&���bZ�AIJ ��^���L.���VvY���S�s��\�/�́Vd��p7b�h\�&M3���i�����C�����6"NK�b�$��Mc�yԌ��^����.Gv��r��~�=u%k�嘴�$����(�s-�Hb%�[\�.��"gv)+���P�TdRG�9AL���
`�F3J)����v�%�)tW��R�-��ޅ_	tz.�{��S.�Y�fݯ�9�.K��ؼpv�c�˘p
-��s��F��wT���q�*�X��nT����ɏ�g�D$���
Q,f���o�7e��/�g���Ⴏ�������e��BwS<���[|�ii�ƻ� s)eL�ꟷ�<G�]�]�R�l��(���r�g��)[F/�B�nSjM�� )�6�_9�(NC~�����3ڞ��XX����BZ��amn�^p1>G@	�pO�Of0Ąi-�1Y���]�
B��6\C��s
X>�ZDʫw�ؔ��Fz�X��i�T�|\�,b��=�R�36�Bo�p�˺l9���J�9� A�1��2F"�Y$&��$�c�s�rO�=3)`1������Y���S�@�2�(_F�Pʜ�C۞˅P:h�9�O�],=4�ܘ�9-ŊI�I,��g8Y�T�<c��.Ob����=�����B(��j�ꌒ�Q��_���효�')
d
V���%�Aҍ�n`�T�+����Q�j�\��
R%�=p�2�gߍ�rHc���GyE@�r�<)��4
�e�jEW
:1���d��Ffb�K��U���]�<�ҙ=v�
f
��a��ͪ*�Z�mp:Q���w8W��Hex���C+�d�J;�
��5���w>���5�>r?�d�n\RX�/̞<N�a���Ǖ	4
U�֧|6e�dA��̽��t~9u���iU2��8��l�����&���rVgIu���턜x�D�"�fJ��(�3�6w/�y�w�o��$���{�u����*8E�hLC)�4^�YqU�`�~v�vA��꟢�o��2ˇ�qq�.�'�O��g� �����N���>1�& �Y�!�|��Ô�Z����̐�҈�^I9�~��?���V]�g�z���Mw
�d9O����|��B��=�s?�r��'8��yg�I������.A� �|4a�b��w��T��t��3�
� O�8CƘ�$I��?�,����E������K+�Y��s��?��1.ܑ�H!���n��G8�g`Cq��tG��I_	R�]N̶G��o�:I^zV�َ�ٮ�h��L��$��vlr\��,��ɡ_WJ��*�m���Q�J8�(j�^����b�<9a�5[��� c�zl��B�Qې����x�Z�Q��d�=�DggV3����稃�MZ��x~
#�g�����
��;Z����C�r�Y�P~�X0!�����(@8M�߱��Q>9X9�ɼe�p��V��xo��R��	�!,��aBC���F��;�6��a�U�=5wQV3R�5/�r��Q�Y�$)��(��d��;	i0�9j��Dz+�O무"V�'�G�`�<���oᅔ��[��幅^'��"����*f{	�%�]���#��|�)@�>�*c^y=��������H:������H��-O{
��&䍿��.1N�TV�(AMNΡy�JV���B�'�cZ�d�1�Iwu�KFk��@cQ@���L�	fD��	�k� �(�����VpZ	;�"k17�Y$�m]a87���›��j��×��qmd,9�_�&g�3V�xa�m%1�ȗ��Մ���{���K7����>7�s)�����F
��
���>��9�G��A� (�,�Y��`/i-�L ��n���S�X+�K�1�z.1��!���}ܼ�������O7p0�!JfeJuB�M�&���n��_5e����w����5-�a_�E��s[��Q"	l����ηf��w�o����U˲��{'5�Xh�Ѵ�A"rL�oջٰ���,���IЁ���kxI�Sh�d<�FZ�����dTN%n�������$���"�������ڄ���a1F^����Nk��a@w�o�b��x�@�.��
ΫM8��Ĭ�).��a��qz+H�;צ�aa�)�5'gLV��\�%��@�,.P�3��B�G�jw��cCb������w��]�ϳ��XV�=շ�����P5���w�M�Ā=V����,��n�-g��G%�k����n�v�9��l�Y@l/&%�/O�.�Q�=�*�r֕U�h4!�ѺL��N�(NS�;Y��C���,7@aim�$jm�kIEhx%�^v�p薞�n
��E+0t��d.r�M�}�
-x`��޾fϻk]��c���/v�^�R�f}�Gˡ8�jed
������n��{�m�j�`ED����F��[9s&g���^r����Z��m/�|3hG�ΠG��_�w1���	?����E�/��*vn0�q�½��`Rzn�H��ğuS��s�QE���9�'�WK�ӈ�M�k��d��D� �ȫ��Q\�E&�����������wR�D
2��� ��V�tɦ=s��)�jX�g��'_3��n�:?�>�ؤ����N����A�t�Cv�V$W6�sJ����3Eb.56�z����P��� �
��?��Qy2#g��q� �@���x9�W[Q.A�o�9�u�o)b�ꑧN6�w[�K�v��篺����$�e��T$�!u^"��i/n��=L0�t]����CԎ%�u��c��A�/���ʜnd2q��}�|#�D�r���|>����D�0pS;)e�q�_E��ڍ��	.d���t��	��4'�m��ݠ�f�������A']�=����&ʎy�	)��
�ѷX7D:�^?�b�hU<&��o5�ᯞ�C������Bb#���涤W=�!C��P���1�5�J�!�XG^˕�]��$ ���lP��W��wƮ�ɱ+��n*&�s�|�=�p�Kr��M�är��A����䙖�U�Y.}�f]����ңx��xݫ���;�8�c���st�b��f�@V]l��������;���kQ��b,�Z�ac����O��K��p�Ԁ����%꿘&���Z�I�Gct\QK�ֳ�ll�tQE���HarB2;3�[<�'�9e�^1:���,T|J�
~�&)/'�T�g@��r/:���bݝ��t�i��{�dAg�7'h�s1aM��w���E��h���=� C�ӞI��k�ӵ���]+��A�}j���_{L�bL��L��^��}쯝ѵZ���J�"��>��pדhc'���w�,WB�u��%��Yؽ�&=�v���|�L������#]�K��9�7i�=�������.�l��c��JX��y)�d%��{�����I
�l�1�ߣ�����.�Gx�J��E=
h����$����*�J�s{(ybYy��Cأ��V�6Qǯ�j`�&F�
��rh0�'N��	�>�tcd[���@��uN,ywjL.9HSz�P�=S�A����+��]��^?/���M�w-�{
�P���4�%���.Ʉ���>�ݱ{���u��Fd�T��<�}zp���Y��^w���L���A(����ǩ=����K���a#+N�h��z���Ib�h��o��?v������g��X��2��o�kǮ}"���'�&Y�&Ǿ�Sפ�Ma�y��|�
�k��m+�ު�?���_�43��L��`۝޺�aO���H?��ַǾw"���<pm�:]k����/F�S5����+���]�+��bmЋ�4�(L@��Į�gk�n�1����z�&������C���r�G����+<U�֛���U�?~�<I)V����*(���L,���o��j.��+�������}nl�A�t��> �贸��4�e�����@��^�F�c�����O><��}�sqqZ����MǀF�,�+�p"eWr���5k�v>�������Z>z�/��7p~{�y<o$=>ߒ��?rģh�	�J�aQ��rx��"a�gM�n9���9�[��
�cA��������ɦ28+��z˟薝�~���|��]��ڏ喗MfB}��ZLE´���[���)ή��u��z�ԍ��G�L��O
q�_�߹׽�R�H�HP[�ymb����� Z��
����tߛF�&U��Ht;�	�\�2����uȤ<���)�mMB~8+[Zn(�L9��sρŲ�BRߧd���ȑm��&�wg.Nf/Z3Alύ����p7P݁���*{����v�i^u㚿�쫺��w��Uǟ�R�:�\�*z����g7�
"}��,�~��
��7�X��ŕ�]S�U�@�k��Q�÷�4
���x��9��'�z�l�����Z�m��]ܱ�'l�0�\u������L	���7Z;Y���vll)8_�ԇ#0�ᙘD��:i�eh��5�

&z�
m7U��-�?	��P�3��i�^V�\E�$zF���Pa�c7��f�=����6�lB��h���Þ�W̩���f�����Ð���v��/O�U,�;J&�h˯3��\��cC�=D���5
�Ѱpt��G1��H� �b��9�xWk�M��n�&�g"���r�h��{�����l?w�w��sv�Em*��&��qG��紃q�Z�����?�Io��Vo����ʢ�٬8+g�k�W���|'��2��$��j�y��DF�g��vCP��;�az�YY1��Hҁ��e�!C�a2V@�=��a�?���\�.�����߫B�eE��?�2�j_s��׫w�j�x(�yx���W���w��u�I�|�����"f� ��K�@j��l3�'�n�ܟq�࿭B}�y�m��5>)?�+E�K��=R����'�òw�u��+2��$U�D4�_F�腯Ց�����·��
Ώ��ť�2"���zf1W����6T����-�TM9���1��/c�g�z<�Tu��e�U��~�0{u�Q�s�K{�4���e0Fӂu��fOJNK|=�T��+~�U;O�P����yJ�za$TX����$��ؒ%`��Th�kΰ�Y�d!H�e�I{��r�v��|�%_�?�=��9wR�)0[�؎�r/���*�j+���_�M�s�	X5&�W�}��o��̵���]�	�{�7����)i]u����'^e%�x�a�]�H��n�V�*q]w_���1����y�j�M�N^���O1��gj��Ik��)"O��I�	���(�� �M X��C.tr�?ƴ�Q��r	�~��=]��W�@
k�^��
������w�J��An�4�c�:ȩ曠�\Ԡ@)V�7��^�xi�ڰ�Lf_�ٗ|с˛2%��fZ���x��y1����/b;�����>��A�!�.���7�Т L�����Ęg�M5�3���"�R�ϐFGz� ���C:�&���HI7�FH��K퓬A�Qeu�i��:�I��/��!���c�"�ZKJ�i�3��r-<�	���2!;�4��]=�+Á}�6M��BۿL:�p$�#0�.��@��#P�@���h��c�;�O#�R�V�!�#���'ݚ���)���btur���HS��h�b���񶦑�(eH.�F��M�npg�BW���g08���?�w_��^Ʈ��7��n���}�W�t�[��[x�$P�����@5k?�~"ll�7d��3܃��pM�kԂ/�B$�l#_F�Nq6RK�~����[��ꥵi�&����O���O�p7����͘UmY�Z�7c�u���>���u��k��Z�SY����_	��!���	�T:8A�.*�k�>��'�&k��߼(�"�۽�f'�}�n��1�
�o�|����h1O->�y�G/v��G{G����'���hw�It�4��y�<z���{�q�o�n�2�!
�$�+��6�}N6���u�}��;�7`�]_�/ ��A(������=�}M����S|�m�{�7����F�~v�i��+�DtҞ�CLj�Hحhꈛ�C�)�L��k��꒰���0L{C�I�z�G��������Gq�m�9O}�
�F;B�D��'���_l�1���˛|�$�����{���Ĕ�82�e�`�+2�^$�@3T��J���Ij�.⣀� I�J�a�I��4�c��v�0����Ԥ$�6��$e�����}R��U�I���j0�ɍ�Nj^vp�x�l�:�X���<���T ���p�z�&Z���M)S�x��J��A��ZrJ3�����܁Ӭ���cY\�cİ�*C����j��+ˬ�	��X���Ȑ�82�6�.���Yl�t�ݭ*�߳C��!>�5�ނ�rO�n8%�u� �?�WU�`@��$@z�z��{�?�%M�{�\���������Q�����q�[�ݢ�,����7�gkg��0��B)��6§�m&h���w���d�0HAKo��ͬTW��aV7RQ�+Mm�ۓ���J��6�r�j	_�	����Lf����HK�]#�M���AĽ]�$#�E��M�	�K-}���^L�u��E�	�ў\�Y�3���Q17�C�JO�;\�J��\�`H^�_`�+�6�?�zۖȔ��;��QO�Q���s�f.�=��ky^bzM>:U�&����<��ֆ˓���s���Psp6
�5��Na��^�� $^���t,��8�?"O,<y_�	�������'�0%�n��^�l'��j��:� D�c�re,;�!|E�M����\A�O`�IӼ7Д]h�N�,��O�>g��Bb��7y�1>>,$�j�Gt";�*���8�l	_�жH�n�T�޼�)��{�rO,`��r�}]n!�2o�&��t␖uҼ�"Ǵ��N13U�}v�
�d[q�����~9�'Q���4�޶���/��8�R�n2"�߰,
6����-.�-��g��uX�`�q��=>�G,�~��
n.,v�����ݸ�.X�5�\�"�͙3��sT����)�I�J�o	��f�
�I�\�����
��5!
!����ܷqf9�0��dN	��<56�Yn���{���{�ˆ�(oC�
���X�u(b�^���ߖ�l�W���>1lh��R���[�R,*!O�7�`���Cu�1�EMT�AH��,�Q���2W�ɪ\�=xJ��Й���ߍϢ��2�yD%l�6y���6����2ܳ��~���gG��˃�g����ϻ�G{�GW�G� Z	Gj�pa!_l��9�c (B34H���ң�RD�TG�q��AgX�H(5���Ur⽆"��t�?��&d��8cم��d����N��E��� �>�,{�0�33��4"����9���Uz�n��a���@A�AH3��?%�)Ƃ��B=`��������x
zc�9���t���G[uT?	���8�с>���饾��&���i=*g���&j�"1ݾ�te�ۺ���4�B�^
y$X�۱iB�w
>��
%i17���y�?	�A��c�g�3V�ΊEn�g�Fn����*�!cdW���TR�R��E����F;jV�Zv�����N1v#��` H���ah|�76$��;QM_"���������
��k!C.P�<���P8��@!:�l�Dh�;.md�!o�����ϖ�8���^�&���[w�O�>]��O7�H�yA�[��Ɩ�\�'�Q*+X.���7*?&wt�j��W�MXB3���G��#	����%������c�C..���/���5��V��?={������!k���﷢ִ�Q�;��`�Χ����g(�B��mL/L�w/;>]{⠱��_��Y�৘���i�\q&g�L��4�O.�y��8�1��	k|�<ϣ[��0�vS1:�	��/�/����r{@�
��A����-�٭���[p�����q��}��*հv����R�S+1KuE��Ԛ�����6�EW�q�4�mt�Z%n��g+���_�nϦ��d�N3�����>��H������e)"ʲ�v�T����5�T�U�Lm�bq� Rj���	��u[O�0�ٸ�%M�(�F2����S0vw�nE�����G�c��OO�]� �����z�����X��Jq���{B~,.
��9�c	�S�D���A��d�]3�����H�‹�#4�]�������HM딸�����G�q���OVd����#�]��sb\��9�쐺��m�
�Qe��et�f�V�4��)M�Q����1A?;e��3��I�X3�8����52N
�-��1;a�0�M��<�R�݌���<�:�̺�0"Q�{��*evK�SC���)��4#�4� Pv3BdR��2j�:��{�E(x�0w����4�㠝A���M�~ز��q��ե�û�vrV6�_WO�+���QԪÞv���$�hBtG�,͋]NU����� J�6�'&�ԾӉ^*�n�b��'=�9���j�x׌�0���6ϊ �f�p�r :��[��!�­gu��	wf�ӽ��ƙA���I�4��}��S/��%��Z	�\!#ajܰ�dܐ���|ߕ��`;�&��T�w��N_�*���6�m:�;�H�@��sʪZ���4�]�Pg<��H.T=i4�X�^fɌ�O'%
��@�^ H��]_�2���1n^?�{�l�}�8u8�Na�m�4�ֹ9�$&�B��jA#>��ĘC|{�0��>���JՔ�Ay������b&���I�=T��Q�?�B��i�nef�,ϧL)����ƴ�֎f2�k
Ђ��GT��B���D1��O��ޝ��]{�M٪1�!#,�[�k�Y�~�9u݊�����oR��o�ڍA��E�j��[���ʈ�d��uF�r��H�kQ/�}�� Ti���	����[�8��XfI�k�7}VC�V8��e���dSZr
�`Ù4&�1����;�D�W�y���/�Ӡ8Nr�����K��N��/��ͻ��z��(�#�$���d�4:��_��h���M@��'7��O����n���/�x`B��)S<9L�����b׽(=2�����X���M{�����S)D��%��3p˨j�dN*���T��b���Hx�l�����GY�/�r�d�FP��vb�ˣ��H?�/W��i#�\����I���g�,v���t%O3kkd�]!"d43@
��y.c��|�I	v�|��q��s���2�n�yY�Q*VR8��[�ƚ���ԣV:
&H���I�TE�a]Q�P��z�/|�۬l8��G�M:bv�
E�o�
��	d��M2�$;��e	���Z>�����H�X\I�Pl���5���[�a	�mxa�5�Q|��� ����@����P59�J�vl�QI���KF��/t��I�Ե�a�f���\eﲇ��-��;���i�c
�wG�Ç��^/�x4�`�/&x�K�S�t� ֠7�=^"%ł~H��@���y��3#s��ɧeQUL?*G;~���x"H<��P�b��=xT�O��XqX��l�A�
C	�s��:6�=�MrΊ�`�Du�z}��3�9�4t!��
��1:
�|�ɑ0�??�&��0ڃ٠��
���m?��9kc���ILP$f���
� �1
�+��.uBOo����Z�2-��F�S�h9�S���£?>�(���������VA�]o�3Z�ZF�dсJ� 1,L�̿"Ǔ�J�9�C�z����Q6ם�٤h~�[���>~�{�*��]<)߾����+���WР9�+�2<�#�R<E12bLG�S3.q�SӲ\W��j�7A���qa/��K+�(͚���|�̇$��@�-K���P�6�a�$a��L�dC}NT��[��9��_:r��t���z����#��hY�4����)�ה+���I�f��qgcv���F;�#MS��R0,�YA�+
�G�wڳWH�&�%�lu)�"5	8�����c�Q]�)W�kD�″s`&��g]���Ǭ�`z���m~� �v�p#���\]�-����ĭ������ޗ+�4)�Xv∫���{vlr�=@�af�f+�c����>��-�7�!�(��h��JC;�6F+#�2����ljME��aqE\�	�R(r��_��Lx�b��4~�y��d�)��on�lљK?SJc���륞S���?����C�sRo�r	��H⪿�O���Ѩ��M�pw���]	o	Fyf?t؍F��t�8��2�;�-�yz2�Η��d�̄H����t8���C}�1���r2���F̔}z~��w׻���O���|�/��w�7�M�L�>��-���cIj�|)��W���XZ�%$��GP)�9f�*
Y���}��)k��Z��G޼��&؍���)
��@8�,�1��	sG.gC�H�`sbd��XVM��f`uJ�H�,�G`�HH�XXVP$�A��%t�eÖ���.�n���˖k:�#�6�`�/��igj�z
�g��_�CK,�ը|����3�ƃ�}���"W�?-�RKD��Z3�8�SO���6��kC=�v�
1.�����O�hj�Fw����m�<�u��.�����n!��S�39�?\ړ�h�l�掣��5�u�p>�>$�w����
&��%0�@�i��eEu�s�:���/w^?~��	��y6�YE�e	���9pJ�h��鸂y��F�N�ǟt7m�cZ@o�DD*KB=�D��M�s�P��yF�KPE�y�&�̓�WvĚ�7��{�[z�:}w��	VC+�tx�����¤�49)���YO�\0%s�M��"�z��`��E�J&râ+�s9��' �u���-��S���Cnj2ߤ���B�x��"
�@�}3���:�|�ϛX�_�e)`M�����LTD���F�<Z3�,x2����dݡ�
�|���y6(�Ӭ���n�U12���������aD�rD��r=ݲ��'K��)�~�%&�ۧǽ�T<P�����EI
�PK���\��L>>AUTHORSnu�[���PK���\��&�jjuBUGSnu�[���PK���\�|�^^NEWSnu�[���PK���\���l��_wREADMEnu�[���PK���\�����pzTHANKSnu�[���PK���\��2v����
]�sedfaq.txt.gznu�[���PK�vk