perl-Perl-Tidy-20250311.0.0-bp156.2.6.1<>,9$hf|tI%z oZ𖺪=vğ `=cT~'*0UB帢j^2nT:5Saqǽe@ML7H$bYߣj?"qF6\M-hPܱ11HI?1wO T*G&:|I4L⤠rq}Pc3+c`>yG \1jLX*2nvt FҵIBǎ;_+%Ev#+C= +׺3(5Lkٕ>tmU@xf f@VFB" rTЏ ,8B=,fiirD.|Qx6$H@M+\qYWaFǽ`NJZ;BC+R&}w Ǹ!QҦ]b/}:s$ɩ[VreLq_;f  J/dV;pHՂϖ$ FP(Lm|XQX>>?d * K 7=D><> > 4> ,> > (> >V>>l(/88%9%: s%FG>H>I>X YH\>]>^1 bcd[e`fcleux>vp wh>x`>yXz\lpvCperl-Perl-Tidy20250311.0.0bp156.2.6.1Indent and reformat perl scriptsThis module makes the functionality of the perltidy utility available to perl scripts. Any or all of the input parameters may be omitted, in which case the @ARGV array will be used to provide input parameters as described in the perltidy(1) man page. For example, the perltidy script is basically just this: use Perl::Tidy; Perl::Tidy::perltidy(); The call to *perltidy* returns a scalar *$error_flag* which is TRUE if an error caused premature termination, and FALSE if the process ran to normal completion. Additional discuss of errors is contained below in the ERROR HANDLING section.hf|th02-ch1cB,^SUSE Linux Enterprise 15openSUSEGPL-2.0-or-laterhttp://bugs.opensuse.orgUnspecifiedhttps://metacpan.org/release/Perl-Tidylinuxnoarchu+J Dz y "C5 N5#=,YD.( r U{iT} Z" m S"- Rd|H]FsȁmAA$$$$$$$$$$$$A$$$AA큤A큤A큤큤큤큤A큤$$hf|$hf|%hf|%g"Vggggggggggg"hf|%g gghf|%hf|te27gcgX!gWgWgWgWg9g9gWg9gWgWgWgX!DeɧeVeśgIz`tJOr?fFe)Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Tina Müller Stephan Kulow Stephan Kulow coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.com- updated to 20250311.0.0 (20250311) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2025 03 11 - The options --want-call-parens and --nowant-call-parens were accidentally being skipped in version 20250214. This has been fixed. - Fixed git #32, a tokenization error with message "hit EOF seeking end of quote/pattern" for a function call without paren or arg before a ternary operator. - A new option --dump-similar-keys will dump hash keys which are similar but slightly different to standard output and then exit. A related option --warn-similar-keys will report keys with are similar to the error output while formatting. Both of these can be controlled by parameters which are described in the input manual. - A new option --dump-hash-keys will dump all hash keys found by perltidy to standard output. - The output table for --dump-block-summary has an additional field. It is an alternate McCabe complexity count which is the same as the previous count except for subs. For subs, the complexity number is reduced by the values for any contained anonymous subs. - Fix git #181, remove continuation indentation from closing brace of an anonymous sub which terminates an input stream.- updated to 20250214.0.0 (20250214) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2025 02 14 - A new option --keep-old-blank-lines-exceptions=s, or --kblx=s, allows selected blank lines to be ignored when an input stream is read. The parameter s is used to select the blank lines to be ignored. This option provides an inverse to other blank line parameters. The manual has details. See discussion git #180. - A new option --warn-unused-keys, or -wuk, has been added which will produce warnings for unused hash keys during formatting. This is similar to --dump-unused-keys, which just exits and does not continue formatting. A related new parameter --warn-unused-keys-cutoff=N provides control over a filter which prevents warnings for keys which appear to be members of large hashes used to communicate with external packages. The manual has details. See git #177. - A new option --pack-opening-types='->' has been added to provide more control over breaks of method call chains. It tells perltidy not to break at every method call when a chain of calls spans multiple lines. This was the behavior in versions prior to 20250105. The default starting with 20250105 is to break at each call of a method call chain which spans multiple lines. See git #171.- updated to 20250105.0.0 (20250105) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2025 01 05 - If a file consists only of comments, then the starting indentation will be guessed from the indentation of the first comment. Previously it would be guessed to be zero. Parameter --starting-indentation-level=n can be used to specify an indentation and avoid a guess. This issue can arise when formatting a block of comments from within an editor. - Added missing 'use File::Temp' for -html option. This was causing the message: "Undefined subroutine &File::Temp::tempfile called at ..." See git #176. - A new parameter --dump-unique-keys, or -duk, dumps a list of hash keys which appear to be used just once, and do not appear among the quoted strings in a file. For example: perltidy -duk File.pm >output.txt This can help locate misspelled hash keys. - Line breaks at long chains of method calls now break at all calls with args in parens, as in this example from git #171 [#] Old default sub bla_p( $value = 42 ) { return Mojo::Promise->resolve($value)->then( sub { shift() / 2 } ) - >then( sub { shift() + 6 } )->then( sub { shift() / 2 } ) - >catch( sub { warn shift } ); } [#] New default sub bla_p( $value = 42 ) { return Mojo::Promise->resolve($value) - >then( sub { shift() / 2 } ) - >then( sub { shift() + 6 } ) - >then( sub { shift() / 2 } ) - >catch( sub { warn shift } ); } - Parameter --break-at-old-method-breakpoints, or -bom, has been updated to insure that it only applies to lines beginning with method calls, as intended. Line breaks for all lines beginning with '->', even non-method calls, can be retained by using - -keep-old-breakpoints_before='->'. - Added parameter --multiple-token-tightness=s, or -mutt=s. The default value --paren-tightness=1 adds space within the parens if, and only if, the container holds multiple tokens. Some perltidy tokens may be rather long, and it can be preferable to also space some of them as if they were multiple tokens. This can be done with this parameter, and it applies to parens as well as square brackets and curly braces. For example, the default below has no space within the square brackets: [#] perltidy my $rlist = [qw( alpha beta gamma )]; Spaces can be obtained with: [#] perltidy -mutt='q*' my $rlist = [ qw( alpha beta gamma ) ]; The parameter -mutt='q*' means treat qw and similar quote operators as multiple tokens. The manual has details; git #120 has another example. - Added parameter --indent-leading-semicolon, -ils; see git #171. When this is negated, a line with a leading semicolon does not get the extra leading continuation indentation spaces (defined with -ci=n). - Space around here doc delimiters follow spacing controls better. For example, a space is now added before the closing paren here: OLD: (without the here doc): push( @script, <<'EOT'); NEW: push( @script, <<'EOT' ); Also, any spaces between the '<<' and here target are removed (git #174): OLD: push( @script, << 'EOT'); NEW: push( @script, <<'EOT' ); - Added parameter --break-at-trailing-comma-types=s, or -btct=s, where s is a string which selects trailing commas. For example, -btct='f(b' places a line break after all bare trailing commas in function calls. The manual has details. - Fix git #165, strings beginning with v before => gave an incorrect error message. - The parameter --add-lone-trailing-commas, -altc, is now on by default. This will simplify input for trailing comma operations. Use - -noadd-lone-trailing-commas, or -naltc to turn it off. - More edge cases for adding and deleting trailing commas are now handled (git #156). - A problem has been fixed in which the addition or deletion of trailing commas with the -atc or -dtc flags did not occur due to early convergence when the -conv flag was set (git #143). - Added parameter --qw-as-function, or -qwaf, discussed in git #164. When this parameter is set, a qw list which begins with 'qw(' is formatted as if it were a function call with call args being a list of comma-separated quoted items. For example, given this input: @fields = qw( $st_dev $st_ino $st_mode $st_nlink $st_uid $st_gid $st_rdev $st_size $st_atime $st_mtime $st_ctime $st_blksize $st_blocks); [#] perltidy -qwaf @fields = qw( $st_dev $st_ino $st_mode $st_nlink $st_uid $st_gid $st_rdev $st_size $st_atime $st_mtime $st_ctime $st_blksize $st_blocks );- updated to 20240903.0.0 (20240903) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2024 09 03 - Add partial support for Syntax::Operator::In and Syntax::Keyword::Match (see git #162). - Add --timeout-in-seconds=n, or -tos=n. When the standard input supplies the input stream, and the input has not been received within n seconds, perltidy will end with a timeout message. The intention is to catch a situation where perltidy is accidentally invoked without a file to process and therefore waits for input from the system standard input (stdin), which never arrives. The default is n=10. This check can be turned off with -tos=0. - Add parameter --closing-side-comment-exclusion-list=string, or - cscxl=string, where string is a list of block types to exclude for closing side comment operations. Also, closing side comments now work for anonymous subs if a --closing-side-comment-list (-cscl) is not specified, and when 'asub' is requested with -cscl=asub. Use -cscxl=asub to prevent this. - Include check for unused constants in --dump-unusual-variables and - -warn-variable-types (new issue type 'c'). Also expand checks to cover variables introduced with 'use vars'. - Include signature variables in --dump-unusual-variables and - -warn-variable-types; see git #158. - Add logical xor operator ^^ available in perl version 5.40, as noted in git #157. - Keyword 'state' now has default space before a paren, like 'my'. Previously there was no space and no control. So the default is now "state ($x)". This space can be removed with -nsak='state'. - Add options --add-lone-trailing-commas, -altc and - -delete-lone-trailing-commas, -dltc, to provide control over adding and deleting the only comma in a list. See discussion in git #143 and the updated manual. - Add options --dump-mismatched-returns (or -dmr) and - -warn-mismatched-returns (or -wmr). These options report function calls where the number of values requested may disagree with sub return statements. The -dump version writes the results for a single file to standard output and exits: perltidy -dmr somefile.pl >results.txt The -warn version formats as normal but reports any issues as warnings in the error file: perltidy -wmr somefile.pl The -warn version may be customized with the following additional parameters if necessary to avoid needless warnings: - -warn-mismatched-return-types=s (or -wmrt=s), - -warn-mismatched-return-exclusion-list=s (or -wmrxl=s) where 's' is a control string. These are explained in the manual. - Updates for issue git #151: (1) --warn-variable-types=u is now okay if a named file is processed. (2) --warn-variable-exclusion-list=s now allows leading and/or trailing * on variable names to allow a wildcard match. For example - wvxl='*_unused' is okay and would match $var1_unused and $var2_unused. (3) --dump-unusual-variables now outputs the filename. - A option was added to filter unimplemented parameters from perltidy configuration files, suggested in git #146. It works like this: if a line in the config file begins with three dashes followed by a parameter name (rather than two dashes), then the line will be removed if the parameter is unknown. Otherwise, a dash will be removed to make the line valid. - Parameters --dump-mismatched-args (or -dma) and - -warn-mismatched-args (or -wma) have been updated to catch more arg count issues. - Fixed issue git #143, extend -add-trailing-commas to apply to a list with just a fat comma. - The minimum perl version is 5.8.1. Previously it was 5.8.0, which was not correct because of the use of utf8::is_utf8. - Fixed issue git #142, test failure installing on perl versions before version 5.10. The error caused the new parameter - interbracket-arrow-style=s not to work. Except for this limitation, Version 20240511 will work on older perl versions.- updated to 20240511 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2024 05 11 - The option --valign-signed-numbers, or -vsn is now the default. It was introduced in the previous release has been found to significantly improve the overall appearance of columns of signed and unsigned numbers. See the previous Change Log entry for an example. This will change the formatting in scripts with columns of vertically aligned signed and unsigned numbers. Use -nvsn to turn this option off and avoid this change. - Previously, a line break was made before a short concatenated terminal quoted string, such as "\n", if the previous line had a greater starting indentation. The break is now placed after the short quote. This keeps code a little more compact. For example: [#] old rule: break before "\n" here because '$name' has more indentation: my $html = $this->SUPER::genObject( $query, $bindNode, $field . ":$var", $name, "remove", "UNCHECKED" ) . "\n"; [#] new rule: break after a short terminal quote like "\n" for compactness; my $html = $this->SUPER::genObject( $query, $bindNode, $field . ":$var", $name, "remove", "UNCHECKED" ) . "\n"; - The option --delete-repeated-commas is now the default. It makes the following checks and changes: - Repeated commas like ',,' are removed with a warning - Repeated fat commas like '=> =>' are removed with a warning - The combination '=>,' produces a warning but is not changed These warnings are only output if --warning-output, or -w, is set. Use --nodelete-repeated-commas, or -ndrc, to retain repeated commas. - The operator ``**=`` now has spaces on both sides by default. Previously, there was no space on the left. This change makes its spacing the same as all other assignment operators. The previous behavior can be obtained with the parameter setting -nwls='**='. - The option --file-size-order, or -fso is now the default. When perltidy is given a list of multiple filenames to process, they are sorted by size and processed in order of increasing size. This can significantly reduce memory usage by Perl. This option has always been used in testing, where typically several jobs each operating on thousands of filenames are running at the same time and competing for system resources. If this option is not wanted for some reason, it can be deactivated with -nfso. - In the option --dump-block-summary, the number of sub arguments indicated for each sub now includes any leading object variable passed with an arrow-operator call. Previously the count would have been decreased by one in this case. This change is needed for compatibility with future updates. - Fix issue git #138 involving -xlp (--extended-line-up-parentheses). When multiple-line quotes and regexes have long secondary lines, these line lengths could influencing some spacing and indentation, but they should not have since perltidy has no control over their indentation. This has been fixed. This will mainly influence code which uses -xlp and has long multi-line quotes. - Add option --minimize-continuation-indentation, -mci (see git #137). This flag allows perltidy to remove continuation indentation in some special cases where it is not really unnecessary. For a simple example, the default formatting for the following snippet is: [#] perltidy -nmci $self->blurt( "Error: No INPUT definition for type '$type', typekind '" . $type->xstype . "' found" ); The second and third lines are one level deep in a container, and are also statement continuations, so they get indented by the sum of the -i value and the -ci value. If this flag is set, the indentation is reduced by -ci spaces, giving [#] perltidy -mci $self->blurt( "Error: No INPUT definition for type '$type', typekind '" . $type->xstype . "' found" ); This situation is relatively rare except in code which has long quoted strings and the -nolq flag is also set. This flag is currently off by default, but it could become the default in a future version. - Add options --dump-mismatched-args (or -dma) and - -warn-mismatched-arg (or -wma). These options look for and report instances where the number of args expected by a sub appear to differ from the number passed to the sub. The -dump version writes the results for a single file to standard output and exits: perltidy -dma somefile.pl >results.txt The -warn version formats as normal but reports any issues as warnings in the error file: perltidy -wma somefile.pl The -warn version may be customized with the following additional parameters if necessary to avoid needless warnings: - -warn-mismatched-arg-types=s (or -wmat=s), - -warn-mismatched-arg-exclusion-list=s (or -wmaxl=s), and - -warn-mismatched-arg-undercount-cutoff=n (or -wmauc=n). - -warn-mismatched-arg-overcount-cutoff=n (or -wmaoc=n). These are explained in the manual. - Add option --valign-wide-equals, or -vwe, for issue git #135. Setting this parameter causes the following assignment operators = **= += *= &= <<= &&= -= /= |= >>= ||= //= .= %= ^= x= to be aligned vertically with the ending = all aligned. For example, here is the default formatting of a snippet of code: $str .= SPACE x $total_pad_count; $str_len += $total_pad_count; $total_pad_count = 0; $str .= $rfields->[$j]; $str_len += $rfield_lengths->[$j]; And here is the same code formatted with -vwe: [#] perltidy -vwe $str .= SPACE x $total_pad_count; $str_len += $total_pad_count; $total_pad_count = 0; $str .= $rfields->[$j]; $str_len += $rfield_lengths->[$j]; This option currently is off by default to avoid changing existing formatting. - Added control --delete-interbracket-arrows, or -dia, to delete optional hash ref and array ref arrows between brackets as in the following expression (see git #131) return $self->{'commandline'}->{'arg_list'}->[0]->[0]->{'hostgroups'}; [#] perltidy -dia gives: return $self->{'commandline'}{'arg_list'}[0][0]{'hostgroups'}; Added the opposite control --aia-interbracket-arrows, or -aia, to add arrows. So applied to the previous line the arrows are restored: [#] perltidy -aia return $self->{'commandline'}->{'arg_list'}->[0]->[0]->{'hostgroups'}; The manual describes additional controls for adding and deleting just selected interbracket arrows.- Fix disabling of __perllib_provides- updated to 20240202 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2024 02 02 - Added --valign-signed-numbers, or -vsn. This improves the appearance of columns of numbers by aligning leading algebraic signs. For example: [#] perltidy -vsn my $xyz_shield = [ [ -0.060, -0.060, 0. ], [ 0.060, -0.060, 0. ], [ 0.060, 0.060, 0. ], [ -0.060, 0.060, 0. ], [ -0.0925, -0.0925, 0.092 ], [ 0.0925, -0.0925, 0.092 ], [ 0.0925, 0.0925, 0.092 ], [ -0.0925, 0.0925, 0.092 ], ]; [#] perltidy -nvsn (current DEFAULT) my $xyz_shield = [ [ -0.060, -0.060, 0. ], [ 0.060, -0.060, 0. ], [ 0.060, 0.060, 0. ], [ -0.060, 0.060, 0. ], [ -0.0925, -0.0925, 0.092 ], [ 0.0925, -0.0925, 0.092 ], [ 0.0925, 0.0925, 0.092 ], [ -0.0925, 0.0925, 0.092 ], ]; This new option works well but is currently OFF to allow more testing and fine-tuning. It is expected to be activated in a future release. - Added --dump-mixed-call-parens (-dmcp ) which will dump a list of operators which are sometimes followed by parens and sometimes not. This can be useful for developing a uniform style for selected operators. Issue git #128. For example perltidy -dmcp somefile.pl >out.txt produces lines like this, where the first number is the count of uses with parens, and the second number is the count without parens. k:caller:2:1 k:chomp:3:4 k:close:7:4 - Added --want-call-parens=s (-wcp=s) and --nowant-call-parens=s (-nwcp=s) options which will warn of paren uses which do not match a selected style. The manual has details. But for example, perltidy -wcp='&' somefile.pl will format as normal but warn if any user subs are called without parens. - Added --dump-unusual-variables (-duv) option to dump a list of variables with certain properties of interest. For example perltidy -duv somefile.pl >vars.txt produces a file with lines which look something like 1778:u: my $input_file 6089:r: my $j: reused - see line 6076 The values on the line which are separated by colons are: line number - the number of the line of the input file issue - a single letter indicating the issue, see below variable name - the name of the variable, preceded by a keyword note - an optional note referring to another line The issue is indicated by a letter which may be one of: r: reused variable name s: sigil change but reused bareword p: lexical variable with scope in multiple packages u: unused variable This is very useful for locating problem areas and bugs in code. - Added a related flag --warn-variable-types=string (-wvt=string) option to warn if certain types of variables are found in a script. The types are a space-separated string which may include 'r', 's', and 'p' but not 'u'. For example perltidy -wvt='r s' somefile.pl will check for and warn if any variabls of type 'r', or 's' are seen, but not 'p'. All possible checks may be indicated with a '*' or '1': perltidy -wvt='*' somefile.pl The manual has further details. - All parameters taking integer values are now checked for out-of-range values before processing starts. When a maximum or maximum range is exceeded, the new default behavior is to write a warning message, reset the value to its default setting, and continue. This default behavior can be changed with the new parameter - -integer-range-check=n, or -irc=n, as follows: n=0 skip check completely (for stress-testing perltidy only) n=1 reset bad values to defaults but do not issue a warning n=2 reset bad values to defaults and issue a warning [DEFAULT] n=3 stop immediately if any values are out of bounds The settings n=0 and n=1 are mainly useful for testing purposes. - The --dump-block-summary (-dbs) option now includes the number of sub args in the 'type' column. For example, 'sub(9)' indicates a sub with 9 args. Subs whose arg count cannot easily be determined are indicated as 'sub(*)'. The count does not include a leading '$self' or '$class' arg. - Added flag --space-signature-paren=n, or -ssp=n (issue git #125). This flag works the same as the existing flag --space-prototype-paren=n except that it applies to the space before the opening paren of a sub signature instead of a sub prototype. Previously, there was no control over this (a space always occurred). For example, given the following line: sub circle( $xc, $yc, $rad ); The following results can now be obtained, according to the value of n: sub circle( $xc, $yc, $rad ); # n=0 [no space] sub circle( $xc, $yc, $rad ); # n=1 [default; same as input] sub circle ( $xc, $yc, $rad ); # n=2 [space] The spacing in previous versions of perltidy corresponded to n=2 (always a space). The new default value, n=1, will produce a space if and only if there was a space in the input text. - The --dump-block-summary option can report an if-elsif-elsif-.. chain as a single line item with the notation -dbt='elsif3', for example, where the '3' is an integer which specifies the minimum number of elsif blocks required for a chain to be reported. The manual has details. - Fix problem c269, in which the new -ame parameter could incorrectly emit an else block when two elsif blocks were separated by a hanging side comment (a very rare situation). - When braces are detected to be unbalanced, an attempt is made to localize the error by comparing the indentation at closing braces with their actual nesting levels. This can be useful for files which have previously been formatted by perltidy. To illustrate, a test was made in which the closing brace at line 30644 was commented out in a file with a total of over 62000 lines. The new error message is Final nesting depth of '{'s is 1 The most recent un-matched '{' is on line 6858 ... Table of nesting level differences at closing braces. This might help localize brace errors if the file was previously formatted. line: (brace level) - (level expected from old indentation) 30643: 0 30645: 1 Previously, the error file only indicated that the error in this case was somewhere after line 6858, so the new table is very helpful. Closing brace indentation is checked because it is unambiguous and can be done very efficiently. - The -DEBUG option no longer automatically also writes a .LOG file. Use --show-options if the .LOG file is needed. - The run time of this version with all new options in use is no greater than that of the previous version thanks to optimization work.- updated to 20230912 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2023 09 12 - Fix for git #124: remove a syntax error check which could cause an incorrect error message when List::Gather::gather was used.- updated to 20230909 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2023 09 09 - Added new parameters -wme, or --warn-missing-else, and -ame, or --add-missing else. The parameter -wme tells perltidy to issue a warning if an if-elsif-... chain does not end in an else block. The parameter -ame tells perltidy to insert an else block at the end of such a chain if there is none. For example, given the following snippet: if ( $level == 3 ) { $val = $global{'section'} } elsif ( $level == 2 ) { $val = $global{'chapter'} } [#] perltidy -ame if ( $level == 3 ) { $val = $global{'section'} } elsif ( $level == 2 ) { $val = $global{'chapter'} } else { [#]#FIXME - added with perltidy -ame } The resulting code should be carefully reviewed, and the ##FIXME comment should be updated as appropriate. The text of the ##FIXME comment can be changed with parameter -amec=s, where 's' is the comment to mark the new else block. The man pages have more details. - The syntax of the parameter --use-feature=class, or -uf=class, which new in the previous release, has been changed slightly for clarity. The default behavior, which occurs if this flag is not entered, is to automatically try to handle both old and new uses of the keywords 'class', 'method', 'field', and 'ADJUST'. To force these keywords to only follow the -use feature 'class' syntax, enter --use-feature=class. To force perltidy to ignore the -use feature 'class' syntax, enter - -use-feature=noclass. - Issue git #122. Added parameter -lrt=n1:n2, or --line-range-tidy=n1:n2 to limit tidy operations to a limited line range. Line numbers start with 1. This parameter is mainly of interest to editing programs which drive perltidy. The man pages have details. - Some fairly rare instances of incorrect spacing have been fixed. The problem was that the tokenizer being overly conservative in marking terms as possible filehandles or indirect objects. This causes the space after the possible filehandle to be frozen to its input value in order not to introduce an error in case Perl had to guess. The problem was fixed by having the tokenizer look ahead for operators which can eliminate the uncertainty. To illustrate, in the following line the term ``$d`` was previously marked as a possible filehandle, so no space was added after it. print $d== 1 ? " [ON]\n" : $d ? " [$d]\n" : "\n"; ^ In the current version, the next token is seen to be an equality, so ``$d`` is marked as an ordinary identifier and normal spacing rules can apply: print $d == 1 ? " [ON]\n" : $d ? " [$d]\n" : "\n"; ^ - This version runs 7 to 10 percent faster than the previous release on large files, depending on options and file type. Much of the gain comes from streamlined I/O operations. - This version was stress-tested for many cpu hours with random input parameters. No failures to converge, internal fault checks, undefined variable references or other irregularities were seen.- updated to 20230701 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2023 07 01 - Issue git #121. Added parameters -xbt, or --extended-block-tightness, and -xbtl=s, or --extended-block-tightness-list=s, to allow certain small code blocks to have internal spacing controlled by - bbt=n rather than -bt=n. The man pages have details. - Issue git #118. A warning will be issued if a duplicate format-skipping starting marker is seen within a format-skipping section. The same applies to duplicate code-skipping starting markers within code-skipping sections. - Issue git #116. A new flag --valign-if-unless, -viu, was added to allow postfix 'unless' terms to align with postfix 'if' terms. The default remains not to do this. - Fixed git #115. In the two most recent CPAN releases, when the Perl::Tidy module was called with the source pointing to a file, but no destination specified, the output went to the standard output instead of to a file with extension ``.tdy``, as it should have. This has been fixed. - Fixed git #110, add missing documentation for new options - cpb and -bfvt=n. These work in version 20230309 but the pod documentation was missing and has been added. - Fixed an undefined reference message when running with - -dump-block-summary on a file without any subs or other selected block types. - Add parameter -ipc, or --ignore-perlcritic-comments. Perltidy, by default, will look for side comments beginning with ``## no critic`` and ignore their lengths when making line break decisions, even if the user has not set ``-iscl``. The reason is that an unwanted line break can make these special comments ineffective in controlling ``perlcritic``. The parameter -ipc can be set if, for some reason, this is not wanted. - Some minor issues with continuation indentation have been fixed. Most scripts will remain unchanged. The main change is that block comments which occur just before a closing brace, bracket or paren now have an indentation which is independent of the existance of an optional comma or semicolon. Previously, adding or deleting an optional trailing comma could cause their indentation to jump. Also, indentation of comments within ternary statements has been improved. For additonal details see: https://github.com/perltidy/perltidy/blob/master/docs/ci_update.md - This version was stress-tested for many cpu hours with random input parameters. No failures to converge, internal fault checks, undefined variable references or other irregularities were seen. - This version runs several percent faster than the previous release on large files.- updated to 20230309 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2023 03 09 - No significant bugs have been found since the last release to CPAN. Several minor issues have been fixed, and some new parameters have been added, as follows: - Added parameter --one-line-block-exclusion-list=s, or -olbxl=s, where s is a list of block types which should not automatically be turned into one-line blocks. This implements the issue raised in PR #111. The list s may include any of the words 'sort map grep eval', or it may be '*' to indicate all of these. So for example to prevent multi-line 'eval' blocks from becoming one-line blocks, the command would be -olbxl='eval'. - For the -b (--backup-and-modify-in-place) option, the file timestamps are changing (git #113, rt#145999). First, if there are no formatting changes to an input file, it will keep its original modification time. Second, any backup file will keep its original modification time. This was previously true for --backup-method=move but not for the default - -backup-method=copy. The purpose of these changes is to avoid triggering Makefile operations when there are no actual file changes. If this causes a problem please open an issue for discussion on github. - A change was made to the way line breaks are made at the '.' operator when the user sets -wba='.' to requests breaks after a '.' ( this setting is not recommended because it can be hard to read ). The goal of the change is to make switching from breaks before '.'s to breaks after '.'s just move the dots from the end of lines to the beginning of lines. For example: [#] default and recommended (--want-break-before='.'): $output_rules .= ( 'class' . $dir . '.stamp: $(' . $dir . '_JAVA)' . "\n" . "\t" . '$(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) ' . '$(JAVACFLAGS) $?' . "\n" . "\t" . 'echo timestamp > class' . $dir . '.stamp' . "\n" ); [#] perltidy --want-break-after='.' $output_rules .= ( 'class' . $dir . '.stamp: $(' . $dir . '_JAVA)' . "\n" . "\t" . '$(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) ' . '$(JAVACFLAGS) $?' . "\n" . "\t" . 'echo timestamp > class' . $dir . '.stamp' . "\n" ); For existing code formatted with -wba='.', this may cause some changes in the formatting of code with long concatenation chains. - Added option --use-feature=class, or -uf=class, for issue rt #145706. This adds keywords 'class', 'method', 'field', and 'ADJUST' in support of this feature which is being tested for future inclusion in Perl. An effort has been made to avoid conflicts with past uses of these words, especially 'method' and 'class'. The default setting is --use-feature=class. If this causes a conflict, this option can be turned off by entering -uf=' '. In other words, perltidy should work for both old and new uses of these keywords with the default settings, but this flag is available if a conflict arises. - Added option -bfvt=n, or --brace-follower-vertical-tightness=n, for part of issue git #110. For n=2, this option looks for lines which would otherwise be, by default, } or .. and joins them into a single line } or .. where the or can be one of a number of logical operators or if unless. The default is not to do this and can be indicated with n=1. - Added option -cpb, or --cuddled-paren-brace, for issue git #110. This option will cause perltidy to join two lines which otherwise would be, by default, ) { into a single line ) { - Some minor changes to existing formatted output may occur as a result of fixing minor formatting issues with edge cases. This is especially true for code which uses the -lp or -xlp styles. - Added option -dbs, or --dump-block-summary, to dump summary information about code blocks in a file to standard output. The basic command is: perltidy -dbs somefile.pl >blocks.csv Instead of formatting ``somefile.pl``, this dumps the following comma-separated items describing its blocks to the standard output: filename - the name of the file line - the line number of the opening brace of this block line_count - the number of lines between opening and closing braces code_lines - the number of lines excluding blanks, comments, and pod type - the block type (sub, for, foreach, ...) name - the block name if applicable (sub name, label, asub name) depth - the nesting depth of the opening block brace max_change - the change in depth to the most deeply nested code block block_count - the total number of code blocks nested in this block mccabe_count - the McCabe complexity measure of this code block This can be useful for code restructuring. The man page for perltidy has more information and describes controls for selecting block types. - This version was stress-tested for over 100 cpu hours with random input parameters. No failures to converge, internal fault checks, undefined variable references or other irregularities were seen. - This version runs a few percent faster than the previous release on large files due to optimizations made with the help of Devel::NYTProf.- updated to 20221112 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2022 11 12 - Fix rt #145095, undef warning in Perl before 5.12. Version 20221112 is identical to 2022111 except for this fix for older versions of Perl. - No significant bugs have been found since the last release to CPAN. Several minor issues have been fixed, and some new parameters have been added, as follows: - Fixed rare problem with irregular indentation involving --cuddled-else, usually also with the combination -xci and -lp. Reported in rt #144979. - Add option --weld-fat-comma (-wfc) for issue git #108. When -wfc is set, along with -wn, perltidy is allowed to weld an opening paren to an inner opening container when they are separated by a hash key and fat comma (=>). For example: [#] perltidy -wn elf->call_method( method_name_foo => { some_arg1 => $foo, some_other_arg3 => $bar->{'baz'}, } ); [#] perltidy -wn -wfc elf->call_method( method_name_foo => { some_arg1 => $foo, some_other_arg3 => $bar->{'baz'}, } ); This flag is off by default. - Fix issue git #106. This fixes some edge cases of formatting with the combination -xlp -pt=2, mainly for two-line lists with short function names. One indentation space is removed to improve alignment: [#] OLD: perltidy -xlp -pt=2 is($module->VERSION, $expected, "$main_module->VERSION matches $module->VERSION ($expected)"); [#] NEW: perltidy -xlp -pt=2 is($module->VERSION, $expected, "$main_module->VERSION matches $module->VERSION ($expected)"); - Fix for issue git #105, incorrect formatting with 5.36 experimental for_list feature. - Fix for issue git #103. For parameter -b, or --backup-and-modify-in-place, the default backup method has been changed to preserve the inode value of the file being formatted. If this causes a problem, the previous method is available and can be used by setting -backup-mode='move', or - bm='move'. The new default corresponds to -bm='copy'. The difference between the two methods is as follows. For the older method, - bm='move', the input file was moved to the backup, and a new file was created for the formatted output. This caused the inode to change. For the new default method, -bm='copy', the input is copied to the backup and then the input file is reopened and rewritten. This preserves the file inode. Tests have not produced any problems with this change, but before using the --backup-and-modify-in-place parameter please verify that it works correctly in your environment and operating system. The initial update for this had an error which was caught and fixed in git #109. - Fix undefined value message when perltidy -D is used (git #104) - Fixed an inconsistency in html colors near pointers when -html is used. Previously, a '->' at the end of a line got the 'punctuation color', black by default but a '->' before an identifier got the color of the following identifier. Now all pointers get the same color, which is black by default. Also, previously a word following a '->' was given the color of a bareword, black by default, but now it is given the color of an identifier. - Fixed incorrect indentation of any function named 'err'. This was due to some old code from when "use feature 'err'" was valid. [#] OLD: my ($curr) = current(); err (@_); [#] NEW: my ($curr) = current(); err(@_); - Added parameter --delete-repeated-commas (-drc) to delete repeated commas. This is off by default. For example, given: ignoreSpec( $file, "file",, \%spec, \%Rspec ); [#] perltidy -drc: ignoreSpec( $file, "file", \%spec, \%Rspec ); - Add continuation indentation to long C-style 'for' terms; i.e. [#] OLD for ( $j = $i - $shell ; $j >= 0 && ++$ncomp && $array->[$j] gt $array->[ $j + $shell ] ; $j -= $shell ) [#] NEW for ( $j = $i - $shell ; $j >= 0 && ++$ncomp && $array->[$j] gt $array->[ $j + $shell ] ; $j -= $shell ) This will change some existing formatting with very long 'for' terms. - The following new parameters are available for manipulating trailing commas of lists. They are described in the manual. - -want-trailing-commas=s, -wtc=s - -add-trailing-commas, -atc - -delete-trailing-commas, -dtc - -delete-weld-interfering-commas, -dwic - Files with errors due to missing, extra or misplaced parens, braces, or square brackets are now written back out verbatim, without any attempt at formatting. - This version runs 10 to 15 percent faster than the previous release on large files due to optimizations made with the help of Devel::NYTProf. - This version was stress-tested for over 200 cpu hours with random input parameters. No failures to converge, internal fault checks, undefined variable references or other irregularities were seen.- updated to 20220613 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2022 06 13 - No significant bugs have been found since the last release but users of programs which call the Perl::Tidy module should note the first item below, which changes a default setting. The main change to existing formatting is the second item below, which adds vertical alignment to 'use' statements. - The flag --encode-output-strings, or -eos, is now set 'on' by default. This has no effect on the use of the 'perltidy' binary script, but could change the behavior of some programs which use the Perl::Tidy module on files encoded in UTF-8. If any problems are noticed, an emergency fix can be made by reverting to the old default by setting -neos. For an explanation of why this change needs to be made see: https://github.com/perltidy/perltidy/issues/92 https://github.com/perltidy/perltidy/blob/master/docs/eos_flag.md - Added vertical alignment for qw quotes and empty parens in 'use' statements (see issue #git 93). This new alignment is 'on' by default and will change formatting as shown below. If this is not wanted it can be turned off with the parameter -vxl='q' (--valign-exclude-list='q'). [#] old default, or -vxl='q' use Getopt::Long qw(GetOptions); use Fcntl qw(O_RDONLY O_WRONLY O_EXCL O_CREAT); use Symbol qw(gensym); use Exporter (); [#] new default use Getopt::Long qw(GetOptions); use Fcntl qw(O_RDONLY O_WRONLY O_EXCL O_CREAT); use Symbol qw(gensym); use Exporter (); - The parameter -kbb (--keep-break-before) now ignores a request to break before an opening token, such as '('. Likewise, -kba (--keep-break-after) now ignores a request to break after a closing token, such as ')'. This change was made to avoid a rare instability discovered in random testing. - Previously, if a -dsc command was used to delete all side comments, then any special side comments for controlling non-indenting braces got deleted too. Now, these control side comments are retained when -dsc is set unless a -nnib (--nonon-indenting-braces) flag is also set to deactivate them. - This version runs about 10 percent faster on large files than the previous release due to optimizations made with the help of Devel::NYTProf. Much of the gain came from faster processing of blank tokens and comments. - This version of perltidy was stress-tested for many cpu hours with random input parameters. No failures to converge, internal fault checks, undefined variable references or other irregularities were seen.- updated to 20220217 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2022 02 17 - A new flag, --encode-output-strings, or -eos, has been added to resolve issue git #83. This issue involves the interface between Perl::Tidy and calling programs, and Code::TidyAll (tidyall) in particular. The problem is that perltidy by default returns decoded character strings, but tidyall expects encoded strings. This flag provides a fix for that. So, tidyall users who process encoded (utf8) files should update to this version of Perl::Tidy and use -eos for tidyall. For further info see: https://github.com/houseabsolute/perl-code-tidyall/issues/84, and https://github.com/perltidy/perltidy/issues/83 If there are other applications having utf8 problems at the interface with Perl::Tidy, this flag probably may need to be set. - The default value of the new flag, --encode-output-strings, -eos, is currently - neos BUT THIS MAY CHANGE in a future release because the current default is inconvenient. So authors of programs which receive character strings back from Perl::Tidy should set this flag, if necessary, to avoid any problems when the default changes. For more information see the above links and the Perl::Tidy man pages for example coding. - The possible values of the string 's' for the flag '--character-encoding=s' have been limited to 'utf8' (or UTF-8), 'none', or 'guess'. Previously an arbitrary encoding could also be specified, but as a result of discussions regarding git #83 it became clear that this could cause trouble since the output encoding was still restricted to UTF-8. Users who need to work in other encodings can write a short program calling Perl::Tidy with pre- and post-processing to handle encoding/decoding. - A new flag --break-after-labels=i, or -bal=i, was added for git #86. This controls line breaks after labels, to provide a uniform style, as follows: - bal=0 follows the input line breaks [DEFAULT] - bal=1 always break after a label - bal=2 never break after a label For example: [#] perltidy -bal=1 INIT: { $xx = 1.234; } [#] perltidy -bal=2 INIT: { $xx = 1.234; } - Fix issue git #82, an error handling something like ${bareword} in a possible indirect object location. Perl allows this, now perltidy does too. - The flags -kbb=s or --keep-old-breakpoints-before=s, and its counterpart - kba=s or --keep-old-breakpoints-after=s have expanded functionality for the container tokens: { [ ( } ] ). The updated man pages have details. - Two new flags have been added to provide finer vertical alignment control, - -valign-exclusion-list=s (-vxl=s) and --valign-inclusion-list=s (-vil=s). This has been requested several times, most recently in git #79, and it finally got done. For example, -vil='=>' means just align on '=>'. - A new flag -gal=s, --grep-alias-list=s, has been added as suggested in git #77. This allows code blocks passed to list operator functions to be formatted in the same way as a code block passed to grep, map, or sort. By default, the following list operators in List::Util are included: all any first none notall reduce reductions They can be changed with the flag -gaxl=s, -grep-alias-exclusion-list=s - A new flag -xlp has been added which can be set to avoid most of the limitations of the -lp flag regarding side comments, blank lines, and code blocks. See the man pages for more info. This fixes git #64 and git #74. The older -lp flag still works. - A new flag -lpil=s, --line-up-parentheses-inclusion-list=s, has been added as an alternative to -lpxl=s, --line-up-parentheses-exclusion-list=s. It supplies equivalent information but is much easier to describe and use. It works for both the older -lp version and the newer -xlp. - The coding for the older -lp flag has been updated to avoid some problems and limitations. The new coding allows the -lp indentation style to mix smoothly with the standard indentation in a single file. Some problems where -lp and -xci flags were not working well together have been fixed, such as happened in issue rt140025. As a result of these updates some minor changes in existing code using the -lp style may occur. - This version of perltidy was stress-tested for many cpu hours with random input parameters. No failures to converge, internal fault checks, undefined variable references or other irregularities were seen. - Numerous minor fixes have been made, mostly very rare formatting instabilities found in random testing.- updated to 20211029 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2021 10 29 - No significant bugs have been found since the last release, but several minor issues have been fixed. Vertical alignment has been improved for lists of call args which are not contained within parens (next item). - Vertical alignment of function calls without parens has been improved with the goal of making vertical alignment essentially the same with or without parens around the call args. Some examples: [#] OLD mkTextConfig $c, $x, $y, -anchor => 'se', $color; mkTextConfig $c, $x + 30, $y, -anchor => 's', $color; mkTextConfig $c, $x + 60, $y, -anchor => 'sw', $color; mkTextConfig $c, $x, $y + 30, -anchor => 'e', $color; [#] NEW mkTextConfig $c, $x, $y, -anchor => 'se', $color; mkTextConfig $c, $x + 30, $y, -anchor => 's', $color; mkTextConfig $c, $x + 60, $y, -anchor => 'sw', $color; mkTextConfig $c, $x, $y + 30, -anchor => 'e', $color; [#] OLD is id_2obj($id), undef, "unregistered object not retrieved"; is scalar keys %$ob_reg, 0, "object registry empty"; is register($obj), $obj, "object returned by register"; is scalar keys %$ob_reg, 1, "object registry nonempty"; is id_2obj($id), $obj, "registered object retrieved"; [#] NEW is id_2obj($id), undef, "unregistered object not retrieved"; is scalar keys %$ob_reg, 0, "object registry empty"; is register($obj), $obj, "object returned by register"; is scalar keys %$ob_reg, 1, "object registry nonempty"; is id_2obj($id), $obj, "registered object retrieved"; This will cause some changes in alignment, hopefully for the better, particularly in test code which often uses numerous parenless function calls with functions like 'ok', 'is', 'is_deeply', .... - Two new parameters were added to control the block types to which the - bl (--opening-brace-on-new-line) flag applies. The new parameters are - block-left-list=s, or -bll=s, and --block-left-exclusion-list=s, or -blxl=s. Previously the -bl flag was 'hardwired' to apply to nearly all blocks. The default values of the new parameters retain the the old default behavior but allow it to be changed. - The default behavior of the -bli (-brace-left-and-indent) flag has changed slightly. Previously, if you set -bli, then the -bl flag would also automatically be set. Consequently, block types which were not included in the default list for -bli would get -bl formatting. This is no longer done, and these two styles are now controlled independently. The manual describes the controls. If you want to recover the exact previous default behavior of the -bli then add the -bl flag. - A partial fix was made for issue for git #74. The -lp formatting style was being lost when a one-line anonymous sub was followed by a closing brace. - Fixed issue git #73, in which the -nfpva flag was not working correctly. Some unwanted vertical alignments of spaced function perens were being made. - Updated the man pages to clarify the flags -valign and -novalign for turning vertical alignment on and off (issue git #72). Added parameters -vc -vsc -vbc for separately turning off vertical alignment of code, side comments and block comments. - Fixed issue git #68, where a blank line following a closing code-skipping comment, '#>>V', could be lost. - This version runs 10 to 15 percent faster on large files than the previous release due to optimizations made with the help of NYTProf. - This version of perltidy was stress-tested for many cpu hours with random input parameters. No instabilities, internal fault checks, undefined variable references or other irregularities were seen. - Numerous minor fixes have been made, mostly very rare formatting instabilities found in random testing. An effort has been made to minimize changes to existing formatting that these fixes produce, but occasional changes may occur. Many of these updates are listed at: https://github.com/perltidy/perltidy/blob/master/local-docs/BugLog.pod- updated to 20210717 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2021 07 17 - This release is being made mainly because of the next item, in which an error message about an uninitialized value error message could be produced in certain cases when format-skipping is used. The error message was annoying but harmless to formatting. - Fixed an undefined variable message, see git #67. When a format skipping comment '#<<' is placed before the first line of code in a script, a message 'Use of uninitialized value $Ktoken_vars in numeric ...' can occur. - A warning will no longer be given if a script has an opening code-skipping comment '#<>V'. This makes code-skipping and format-skipping behave in a similar way: an opening comment without a corresponding closing comment will cause the rest of a file to be skipped. If there is a question about which lines are skipped, a .LOG file can be produced with the -g flag and it will have this information. - Removed the limit on -ci=n when -xci is set, reference: rt #136415. This update removes a limit in the previous two versions in which the value of -ci=n was limited to the value of -i=n when -xci was set. This limit had been placed to avoid some formatting instabilities, but recent coding improvements allow the limit to be removed. - The -wn and -bbxx=n flags were not working together correctly. This has been fixed. - This version may produce occasional differences in formatting compared to previous versions, mainly for lines which are near the specified line length limit. This is due to ongoing efforts to eliminate edge cases of formatting instability. - Numerous minor fixes have been made. A complete list is at: https://github.com/perltidy/perltidy/blob/master/local-docs/BugLog.pod- updated to 20210625 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2021 06 25 - This release adds several new requested parameters. No significant bugs have been found since the last release, but a number of minor problems have been corrected. - Added a new option '--code-skipping', requested in git #65, in which code between comment lines '#<>V' is passed verbatim to the output stream without error checking. It is simmilar to --format-skipping but there is no error checking of the skipped code. This can be useful for skipping past code which employs an extended syntax. - Added a new option for closing paren placement, -vtc=3, requested in rt #136417. - Added flag -atnl, --add-terminal-newline, to help issue git #58. This flag tells perltidy to terminate the last line of the output stream with a newline character, regardless of whether or not the input stream was terminated with a newline character. This is the default. If this flag is negated, with -natnl, then perltidy will add a terminal newline character to the the output stream only if the input stream is terminated with a newline. - Some nested structures formatted with the -lp indentation option may have some changes in indentation. This is due to updates which were made to prevent formatting instability when line lengths are limited by the maximum line length. Most scripts will not be affected. If this causes unwanted formatting changes, try increasing the --maximum-line-length by a few characters. - Numerous minor fixes have been made. A complete list is at: https://github.com/perltidy/perltidy/blob/master/local-docs/BugLog.pod- updated to 20210402 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2021 04 02 - This release fixes several non-critical bugs which have been found since the last release. An effort has been made to keep existing formatting unchanged. - Fixed issue git #57 regarding uninitialized warning flag. - Added experimental flag -lpxl=s requested in issue git #56 to provide some control over which containers get -lp indentation. - Fixed issue git #55 regarding lack of coordination of the --break-before-xxx flags and the --line-up-parens flag. - Fixed issue git #54 regarding irregular application of the --break-before-paren and similar --break-before-xxx flags, in which lists without commas were not being formatted according to these flags. - Fixed issue git #53. A flag was added to turn off alignment of spaced function parens. If the --space-function-paren, -sfp flag is set, a side-effect is that the spaced function parens may get vertically aligned. This can be undesirable, so a new parameter '--function-paren-vertical-alignment', or '-fpva', has been added to turn this vertical alignment off. The default is '-fpva', so that existing formatting is not changed. Use '-nfpva' to turn off unwanted vertical alignment. To illustrate the possibilities: [#] perltidy [default] myfun( $aaa, $b, $cc ); mylongfun( $a, $b, $c ); [#] perltidy -sfp myfun ( $aaa, $b, $cc ); mylongfun ( $a, $b, $c ); [#] perltidy -sfp -nfpva myfun ( $aaa, $b, $cc ); mylongfun ( $a, $b, $c ); - Fixed issue git #51, a closing qw bare paren was not being outdented when the -nodelete-old-newlines flag was set. - Fixed numerous edge cases involving unusual parameter combinations which could cause alternating output states. Most scripts will not be changed by these fixes. - A more complete list of updates is at https://github.com/perltidy/perltidy/blob/master/local-docs/BugLog.pod- updated to 20210111 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2021 01 11 - Fixed issue git #49, -se breaks warnings exit status behavior. The exit status flag was not always being set when the -se flag was set. - Some improvements have been made in the method for aligning side comments. One of the problems that was fixed is that there was a tendency for side comment placement to drift to the right in long scripts. Programs with side comments may have a few changes. - Some improvements have been made in formatting qw quoted lists. This fixes issue git #51, in which closing qw pattern delimiters not always following the settings specified by the --closing-token-indentation=n settings. Now qw closing delimiters ')', '}' and ']' follow these flags, and the delimiter '>' follows the flag for ')'. Other qw pattern delimiters remain indented as the are now. This change will cause some small formatting changes in some existing programs. - Another change involving qw lists is that they get full indentation, rather than just continuation indentation, if (1) the closing delimiter is one of } ) ] > and is on a separate line, (2) the opening delimiter (i.e. 'qw{' ) is also on a separate line, and (3) the -xci flag (--extended-continuation-indentation) is set. This improves formatting when qw lists are contained in other lists. For example, [#] OLD: perltidy foreach $color ( qw( AntiqueWhite3 Bisque1 Bisque2 Bisque3 Bisque4 SlateBlue3 RoyalBlue1 SteelBlue2 DeepSkyBlue3 ), qw( LightBlue1 DarkSlateGray1 Aquamarine2 DarkSeaGreen2 SeaGreen1 Yellow1 IndianRed1 IndianRed2 Tan1 Tan4 ) ) [#] NEW, perltidy -xci foreach $color ( qw( AntiqueWhite3 Bisque1 Bisque2 Bisque3 Bisque4 SlateBlue3 RoyalBlue1 SteelBlue2 DeepSkyBlue3 ), qw( LightBlue1 DarkSlateGray1 Aquamarine2 DarkSeaGreen2 SeaGreen1 Yellow1 IndianRed1 IndianRed2 Tan1 Tan4 ) ) - Some minor improvements have been made to the rules for formatting some edge vertical alignment cases, usually involving two dissimilar lines. - A more complete list of updates is at https://github.com/perltidy/perltidy/blob/master/local-docs/BugLog.pod- updated to 20201207 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md- updated to 20201202 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2020 12 02 - This release is being made primarily to make available a several new formatting parameters, in particular -xci, -kbb=s, -kba=s, and -wnxl=s. No significant bugs have been found since the previous release, but numerous minor issues have been found and fixed as listed below. - This version is about 20% faster than the previous version due to optimizations made with the help of Devel::NYTProf. - Added flag -wnxl=s, --weld-nested-exclusion-list=s, to provide control which containers are welded with the --weld-nested-containers parameter. This is related to issue git #45. - Merged pull request git #46 which fixes the docs regarding the -fse flag. - Fixed issue git #45, -vtc=n flag was ignored when -wn was set. - implement request RT #133649, delete-old-newlines selectively. Two parameters, - kbb=s or --keep-old-breakpoints-before=s, and - kba=s or --keep-old-breakpoints-after=s were added to request that old breakpoints be kept before or after selected token types. For example, -kbb='=>' means that newlines before fat commas should be kept. - Fix git #44, fix exit status for assert-tidy/untidy. The exit status was always 0 for --assert-tidy if the user had turned off all error messages with the -quiet flag. This has been fixed. - Add flag -maxfs=n, --maximum-file-size-mb=n. This parameter is provided to avoid causing system problems by accidentally attempting to format an extremely large data file. The default is n=10. The command to increase the limit to 20 MB for example would be -mfs=20. This only applies to files specified by filename on the command line. - Skip formatting if there are too many indentation level errors. This is controlled with -maxle=n, --maximum-level-errors=n. This means that if the ending indentation differs from the starting indentation by more than n levels, the file will be output verbatim. The default is n=1. To skip this check, set n=-1 or set n to a large number. - A related new flag, --maximum-unexpected-errors=n, or -maxue=n, is available but is off by default. - Add flag -xci, --extended-continuation-indentation, regarding issue git #28 This flag causes continuation indentation to "extend" deeper into structures. Since this is a fairly new flag, the default is -nxci to avoid disturbing existing formatting. BUT you will probably see some improved formatting in complex data structures by setting this flag if you currently use -ci=n and -i=n with the same value of 'n' (as is the case if you use -pbp, - -perl-best-practices, where n=4). - Fix issue git #42, clarify how --break-at-old-logical-breakpoints works. The man page was updated to note that it does not cause all logical breakpoints to be replicated in the output file. - Fix issue git #41, typo in manual regarding -fsb. - Fix issue git #40: when using the -bli option, a closing brace followed by a semicolon was not being indented. This applies to braces which require semicolons, such as a 'do' block. - Added 'state' as a keyword. - A better test for convergence has been added. When iterations are requested, the new test will stop after the first pass if no changes in line break locations are made. Previously, file checksums were used and required at least two passes to verify convergence unless no formatting changes were made. With the new test, only a single pass is needed when formatting changes are limited to adjustments of indentation and whitespace on the lines of code. Extensive testing has been made to verify the correctness of the new convergence test. - Line breaks are now automatically placed after 'use overload' to improve formatting when there are numerous overloaded operators. For example use overload '+' => sub { ... - A number of minor problems with parsing signatures and prototypes have been corrected, particularly multi-line signatures. Some signatures had previously been parsed as if they were prototypes, which meant the normal spacing rules were not applied. For example OLD: sub echo ($message= 'Hello World!' ) { ...; } NEW: sub echo ( $message = 'Hello World!' ) { ...; } - Numerous minor issues that the average user would not encounter were found and fixed. They can be seen in the more complete list of updates at https://github.com/perltidy/perltidy/blob/master/local-docs/BugLog.pod- updated to 20201001 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2020 10 01 - Robustness of perltidy has been significantly improved. Updating is recommended. Continual automated testing runs began about 1 Sep 2020 and numerous issues have been found and fixed. Many involve references to uninitialized variables when perltidy is fed random text and random control parameters. A complete list is given in the file https://github.com/perltidy/perltidy/blob/master/local-docs/BugLog.pod - Added the token '->' to the list of alignment tokens, as suggested in git [#39], so that it can be vertically aligned if a space is placed before them with -wls='->'. - Added parameters -bbhb=n (--break-before-hash-brace=n), -bbsb=n (--break-before-square-bracket=n), and -bbp=n (--break-before-paren=n) suggested in git #38. These provide control over the opening container token of a multiple-line list. Related new parameters -bbhbi=n, -bbsbi=n, -bbpi=n control indentation of these tokens. - Added keyword 'isa'.- updated to 20200907 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2020 09 07 - Fixed bug git #37, an error when the combination -scbb -csc was used. It occurs in perltidy versions 20200110, 20200619, and 20200822. What happens is that when two consecutive lines with isolated closing braces had new side comments generated by the -csc parameter, a separating newline was missing. The resulting script will not then run, but worse, if it is reformatted with the same parameters then closing side comments could be overwritten and data lost. This problem was found during automated random testing. The parameter - scbb is rarely used, which is probably why this has not been reported. Please upgrade your version. - Added parameter --non-indenting-braces, or -nib, which prevents code from indenting one level if it follows an opening brace marked with a special side comment, '#<<<'. For example, { #<<< a closure to contain lexical vars my $var; # this line does not indent } [#] this line cannot 'see' $var; This is on by default. If your code happens to have some opening braces followed by '#<<<', and you don't want this, you can use -nnib to deactivate it. - Side comment locations reset at a line ending in a level 0 open block, such as when a new multi-line sub begins. This is intended to help keep side comments from drifting to far to the right.- updated to 20200822 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2020 08 22 - Fix RT #133166, encoding not set for -st. Also reported as RT #133171 and git #35. This is a significant bug in version 20200616 which can corrupt data if perltidy is run as a filter on encoded text. * *Please upgrade** - Fix issue RT #133161, perltidy -html was not working on pod - Fix issue git #33, allow control of space after '->' - Vertical alignment has been improved. Numerous minor issues have been fixed. - Formatting with the -lp option is improved. - Fixed issue git #32, misparse of bare 'ref' in ternary - When --assert-tidy is used and triggers an error, the first difference between input and output files is shown in the error output. This is a partial response to issue git #30.- updated to 20200619 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2020 06 19 - Added support for Switch::Plain syntax, issue git #31. - Fixed minor problem where trailing 'unless' clauses were not getting vertically aligned. - Added a parameter --logical-padding or -lop to allow logical padding to be turned off. Requested by git #29. This flag is on by default. The man pages have examples. - Added a parameter -kpit=n to control spaces inside of parens following certain keywords, requested in git#26. This flag is off by default. - Added fix for git#25, improve vertical alignment for long lists with varying numbers of items per line. - calls to the module Perl::Tidy can now capture any output produced by a debug flag or one of the 'tee' flags through the new 'debugfile' and 'teefile' call parameters. These output streams are rarely used but they are now treated the same as any 'logfile' stream. - add option --break-at-old-semicolon-breakpoints', -bos, requested in RT#131644. This flag will keep lines beginning with a semicolon. - Added --use-unicode-gcstring to control use of Unicode::GCString for evaluating character widths of encoded data. The default is not to use this (--nouse-unicode-gcstring). If this flag is set, perltidy will look for Unicode::GCString and, if found, will use it to evaluate character display widths. This can improve displayed vertical alignment for files with wide characters. It is a nice feature but it is off by default to avoid conflicting formatting when there are multiple developers. Perltidy installation does not require Unicode::GCString, so users wanting to use this feature need set this flag and also to install Unicode::GCString separately. - Added --character-encoding=guess or -guess to have perltidy guess if a file (or other input stream) is encoded as -utf8 or some other single-byte encoding. This is useful when processing a mixture of file types, such as utf8 and latin-1. Please Note: The default encoding has been set to be 'guess' instead of 'none'. This seems like the best default, since it allows perltidy work properly with both utf8 files and older latin-1 files. The guess mode uses Encode::Guess, which is included in standard perl distributions, and only tries to guess if a file is utf8 or not, never any other encoding. If the guess is utf8, and if the file successfully decodes as utf8, then it the encoding is assumed to be utf8. Otherwise, no encoding is assumed. If you do not want to use this new default guess mode, or have a problem with it, you can set --character-encoding=none (the previous default) or --character-encoding=utf8 (if you deal with utf8 files). - Specific encodings of input files other than utf8 may now be given, for example --character-encoding=euc-jp. - Fix for git#22, Preserve function signature on a single line. An unwanted line break was being introduced when a closing signature paren followed a closing do brace. - Fix RT#132059, the -dac parameter was not working and caused an error exit - When -utf8 is used, any error output is encoded as utf8 - Fix for git#19, adjust line break around an 'xor' - Fix for git#18, added warning for missing comma before unknown bare word.- updated to 20200110 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2020 01 10 - This release adds a flag to control the feature RT#130394 (allow short nested blocks) introduced in the previous release. Unfortunately that feature breaks RPerl installations, so a control flag has been introduced and that feature is now off by default. The flag is: - -one-line-block-nesting=n, or -olbn=n, where n is an integer as follows: - olbn=0 break nested one-line blocks into multiple lines [new DEFAULT] - olbn=1 stable; keep existing nested-one line blocks intact [previous DEFAULT] For example, consider this input line: foreach (@list) { if ($_ eq $asked_for) { last } ++$found } The new default behavior (-olbn=0), and behavior prior to version 20191203, is to break it into multiple lines: foreach (@list) { if ( $_ eq $asked_for ) { last } ++$found; } To keep nested one-line blocks such as this on a single line you can add the parameter -olbn=1. - Fixed issue RT#131288: parse error for un-prototyped constant function without parenthesized call parameters followed by ternary. - Fixed issue RT#131360, installation documentation. Added a note that the binary 'perltidy' comes with the Perl::Tidy module. They can both normally be installed with 'cpanm Perl::Tidy'- updated to 20191203 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2019 12 03 - Fixed issue RT#131115: -bli option not working correctly. Closing braces were not indented in some cases due to a glitch introduced in version 20181120. - Fixed issue RT#130394: Allow short nested blocks. Given the following $factorial = sub { reduce { $a * $b } 1 .. 11 }; Previous versions would always break the sub block because it contains another block (the reduce block). The fix keeps short one-line blocks such as this intact. - Implement issue RT#130640: Allow different subroutine keywords. Added a flag --sub-alias-list=s or -sal=s, where s is a string with one or more aliases for 'sub', separated by spaces or commas. For example, perltidy -sal='method fun' will cause the perltidy to treat the words 'method' and 'fun' to be treated the same as if they were 'sub'. - Added flag --space-prototype-paren=i, or -spp=i, to control spacing before the opening paren of a prototype, where i=0, 1, or 2: i=0 no space i=1 follow input [current and default] i=2 always space Previously, perltidy always followed the input. For example, given the following input sub usage(); The result will be: sub usage(); # i=0 [no space] sub usage(); # i=1 [default; follows input] sub usage (); # i=2 [space] - Fixed issue git#16, minor vertical alignment issue. - Fixed issue git#10, minor conflict of -wn and -ce - Improved some vertical alignments involving two lines.- updated to 20190915 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2019 09 15 - fixed issue RT#130344: false warning "operator in print statement" for "use lib". - fixed issue RT#130304: standard error output should include filename. When perltidy error messages are directed to the standard error output with -se or --standard-error-output, the message lines now have a prefix 'filename:' for clarification in case multiple files are processed, where 'filename' is the name of the input file. If input is from the standard input the displayed filename is '', and if it is from a data structure then displayed filename is ''. - implement issue RT#130425: check mode. A new flag '--assert-tidy' will cause an error message if the output script is not identical to the input script. For completeness, the opposite flag '--assert-untidy' has also been added. The next item, RT#130297, insures that the script will exit with a non-zero exit flag if the assertion fails. - fixed issue RT#130297; the perltidy script now exits with a nonzero exit status if it wrote to the standard error output. Prevously only fatal run errors produced a non-zero exit flag. Now, even non-fatal messages requested with the -w flag will cause a non-zero exit flag. The exit flag now has these values: 0 = no errors 1 = perltidy could not run to completion due to errors 2 = perltidy ran to completion with error messages - added warning message for RT#130008, which warns of conflicting input parameters -iob and -bom or -boc. - fixed RT#129850; concerning a space between a closing block brace and opening bracket or brace, as occurs before the '[' in this line: my @addunix = map { File::Spec::Unix->catfile( @ROOT, @$_ ) } ['b']; Formerly, any space was removed. Now it is optional, and the output will follow the input. - fixed issue git#13, needless trailing whitespace in error message - fixed issue git#9: if the -ce (--cuddled-else) flag is used, do not try to form new one line blocks for a block type specified with -cbl, particularly map, sort, grep - iteration speedup for unchanged code. Previously, when iterations were requested, at least two formatting passes were made. Now just a single pass is made if the formatted code is identical to the input code. - some improved vertical alignments- updated to 20190601 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md [#]# 2019 06 01 - rt #128477: Prevent inconsistent owner/group and setuid/setgid bits. In the -b (--backup-and-modify-in-place) mode, an attempt is made to set ownership of the output file equal to the input file, if they differ. In all cases, if the final output file ownership differs from input file, any setuid/setgid bits are cleared. - Added option -bom (--break-at-old-method-breakpoints) by merrillymeredith which preserves breakpoints of method chains. Modified to also handle a cuddled call style. - Merged patch to fix Windows EOL translation error with UTF-8 written by Ron Ivy. This update prevents automatic conversion to 'DOS' CRLF line endings. Also, Windows system testing at the appveyor site is working again. - RT #128280, added flag --one-line-block-semicolons=n (-olbs=n) to control semicolons in one-line blocks. The values of n are: n=0 means no semicolons termininating simple one-line blocks n=1 means stable; do not change from input file [DEFAULT and current] n=2 means always add semicolons in one-line blocks The current behavior corresponds to the default n=1. - RT #128216, Minor update to prevent inserting unwanted blank line at indentation level change. This should not change existing scripts. - RT #81852: Improved indentation when quoted word (qw) lists are nested within other containers using the --weld-nested (-wn) flag. The example given previously (below) is now closer to what it would be with a simple list instead of qw: [#] perltidy -wn use_all_ok( qw{ PPI PPI::Tokenizer PPI::Lexer PPI::Dumper PPI::Find PPI::Normal PPI::Util PPI::Cache } ); - RT#12764, introduced new feature allowing placement of blanks around sequences of selected keywords. This can be activated with the -kgb* series of parameters described in the manual. - Rewrote vertical algnment module. It is better at finding patterns in complex code. For example, OLD: /^-std$/ && do { $std = 1; next; }; /^--$/ && do { @link_args = @argv; last; }; /^-I(.*)/ && do { $path = $1 || shift @argv; next; }; NEW: /^-std$/ && do { $std = 1; next; }; /^--$/ && do { @link_args = @argv; last; }; /^-I(.*)/ && do { $path = $1 || shift @argv; next; }; - Add repository URLs to META files - RT #118553, "leave only one newline at end of file". This option was not added because of undesirable side effects, but a new filter script was added which can do this, "examples/delete_ending_blank_lines.pl".- updated to 20181120 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md- updated to 20180220 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES 2018 02 20 - RT #124469, #124494, perltidy often making empty files. The previous had an index error causing it to fail, particularly in version 5.18 of Perl. Please avoid version 20180219.- updated to 20180219 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES 2018 02 19 - RT #79947, cuddled-else generalization. A new flag -cb provides 'cuddled-else' type formatting for an arbitrary type of block chain. The default is try-catch-finally, but this can be modified with the parameter -cbl. - Fixed RT #124298: add space after ! operator without breaking !! secret operator - RT #123749: numerous minor improvements to the -wn flag were made. - Fixed a problem with convergence tests in which iterations were stopping prematurely. - Here doc targets for <<~ type here-docs may now have leading whitespace. - Fixed RT #124354. The '-indent-only' flag was not working correctly in the previous release. A bug in version 20180101 caused extra blank lines to be output. - Issue RT #124114. Some improvements were made in vertical alignment involving 'fat commas'.- updated to 20180101 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES 2018 01 01 - Added new flag -wn (--weld-nested-containers) which addresses these issues: RT #123749: Problem with promises; RT #119970: opening token stacking strange behavior; RT #81853: Can't stack block braces This option causes closely nested pairs of opening and closing containers to be "welded" together and essentially be formatted as a single unit, with just one level of indentation. Since this is a new flag it is set to be "off" by default but it has given excellent results in testing. EXAMPLE 1, multiple blocks, default formatting: do { { next if $x == $y; # do something here } } until $x++ > $z; perltidy -wn do { { next if $x == $y; } } until $x++ > $z; EXAMPLE 2, three levels of wrapped function calls, default formatting: p( em( conjug( translate( param('verb') ), param('tense'), param('person') ) ) ); [#] perltidy -wn p( em( conjug( translate( param('verb') ), param('tense'), param('person') ) ) ); [#] EXAMPLE 3, chained method calls, default formatting: get('http://mojolicious.org')->then( sub { my $mojo = shift; say $mojo->res->code; return get('http://metacpan.org'); } )->then( sub { my $cpan = shift; say $cpan->res->code; } )->catch( sub { my $err = shift; warn "Something went wrong: $err"; } )->wait; [#] perltidy -wn get('http://mojolicious.org')->then( sub { my $mojo = shift; say $mojo->res->code; return get('http://metacpan.org'); } )->then( sub { my $cpan = shift; say $cpan->res->code; } )->catch( sub { my $err = shift; warn "Something went wrong: $err"; } )->wait; - Fixed RT #114359: Missparsing of "print $x ** 0.5; - Deactivated the --check-syntax flag for better security. It will be ignored if set. - Corrected minimum perl version from 5.004 to 5.008 based on perlver report. The change is required for coding involving wide characters. - For certain severe errors, the source file will be copied directly to the output without formatting. These include ending in a quote, ending in a here doc, and encountering an unidentified character.- updated to 20171214 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES 2017 12 14 - RT #123749, partial fix. "Continuation indentation" is removed from lines with leading closing parens which are part of a call chain. For example, the call to pack() is is now outdented to the starting indentation in the following experession: [#] OLD $mw->Button( - text => "New Document", - command => \&new_document )->pack( - side => 'bottom', - anchor => 'e' ); [#] NEW $mw->Button( - text => "New Document", - command => \&new_document )->pack( - side => 'bottom', - anchor => 'e' ); This modification improves readability of complex expressions, especially when the user uses the same value for continuation indentation (-ci=n) and normal indentation (-i=n). Perltidy was already programmed to do this but a minor bug was preventing it. - RT #123774, added flag to control space between a backslash and a single or double quote, requested by Robert Rothenberg. The issue is that lines like $str1=\"string1"; $str2=\'string2'; confuse syntax highlighters unless a space is left between the backslash and the quote. The new flag to control this is -sbq=n (--space-backslash-quote=n), where n=0 means no space, n=1 means follow existing code, n=2 means always space. The default is n=1, meaning that a space will be retained if there is one in the source code. - Fixed RT #123492, support added for indented here doc operator <<~ added in v5.26. Thanks to Chris Weyl for the report. - Fixed docs; --closing-side-comment-list-string should have been just - -closing-side-comment-list. Thanks to F.Li. - Added patch RT #122030] Perl::Tidy sometimes does not call binmode. Thanks to Irilis Aelae. - Fixed RT #121959, PERLTIDY doesn't honor the 'three dot' notation for locating a config file using environment variables. Thanks to John Wittkowski. - Minor improvements to formatting, in which some additional vertical aligmnemt is done. Thanks to Keith Neargarder. - RT #119588. Vertical alignment is no longer done for // operator.- updated to 20170521 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES 2017 05 21 - Fixed debian #862667: failure to check for perltidy.ERR deletion can lead to overwriting abritrary files by symlink attack. Perltidy was continuing to write files after an unlink failure. Thanks to Don Armstrong for a patch. - Fixed RT #116344, perltidy fails on certain anonymous hash references: in the following code snippet the '?' was misparsed as a pattern delimiter rather than a ternary operator. return ref {} ? 1 : 0; - Fixed RT #113792: misparsing of a fat comma (=>) right after the __END__ or __DATA__ tokens. These keywords were getting incorrectly quoted by the following => operator. - Fixed RT #118558. Custom Getopt::Long configuration breaks parsing of perltidyrc. Perltidy was resetting the users configuration too soon. - Fixed RT #119140, failure to parse double diamond operator. Code to handle this new operator has been added. - Fixed RT #120968. Fixed problem where -enc=utf8 didn't work with --backup-and-modify-in-place. Thanks to Heinz Knutzen for this patch. - Fixed minor formatting issue where one-line blocks for subs with signatures were unnecesarily broken - RT #32905, patch to fix utf-8 error when output was STDOUT. - RT #79947, improved spacing of try/catch/finally blocks. Thanks to qsimpleq for a patch. - Fixed #114909, Anonymous subs with signatures and prototypes misparsed as broken ternaries, in which a statement such as this was not being parsed correctly: return sub ( $fh, $out ) : prototype(*$) { ... } - Implemented RT #113689, option to introduces spaces after an opening block brace and before a closing block brace. Four new optional controls are added. The first two define the minimum number of blank lines to be inserted - blao=i or --blank-lines-after-opening-block=i - blbc=i or --blank-lines-before-closing-block=i where i is an integer, the number of lines (the default is 0). The second two define the types of blocks to which the first two apply - blaol=s or --blank-lines-after-opening-block-list=s - blbcl=s or --blank-lines-before-closing-block-list=s where s is a string of possible block keywords (default is just 'sub', meaning a named subroutine). For more information please see the documentation. - The method for specifying block types for certain input parameters has been generalized to distinguish between normal named subroutines and anonymous subs. The keyword for normal subroutines remains 'sub', and the new keyword for anonymous subs is 'asub'. - Minor documentation changes. The BUGS sections now have a link to CPAN where most open bugs and issues can be reviewed and bug reports can be submitted. The information in the AUTHOR and CREDITS sections of the man pages have been removed from the man pages to streamline the documentation. This information is still in the source code.- updated to 20160302 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES 2016 03 02 - RT #112534. Corrected a minor problem in which an unwanted newline was placed before the closing brace of an anonymous sub with a signature, if it was in a list. Thanks to Dmytro Zagashev. - Corrected a minor problem in which occasional extra indentation was given to the closing brace of an anonymous sub in a list when the -lp parameter was set. 2016 03 01 - RT #104427. Added support for signatures. - RT #111512. Changed global warning flag $^W = 1 to use warnings; Thanks to Dmytro Zagashev. - RT #110297, added support for new regexp modifier /n Thanks to Dmytro Zagashev. - RT #111519. The -io (--indent-only) and -dac (--delete-all-comments) can now both be used in one pass. Thanks to Dmitry Veltishev. - Patch to avoid error message with 'catch' used by TryCatch, as in catch($err){ [#] do something } Thanks to Nick Tonkin. - RT #32905, UTF-8 coding is now more robust. Thanks to qsimpleq and Dmytro for patches. - RT #106885. Added string bitwise operators ^. &. |. ~. ^.= &.= |.= - Fixed RT #107832 and #106492, lack of vertical alignment of two lines when -boc flag (break at old commas) is set. This bug was inadvertantly introduced in previous bug fix RT #98902. - Some common extensions to Perl syntax are handled better. In particular, the following snippet is now foratted cleanly: method deposit( Num $amount) { $self->balance( $self->balance + $amount ); } A new flag -xs (--extended-syntax) was added to enable this, and the default is to use -xs. In previous versions, and now only when -nxs is set, this snippet of code generates the following error message: "syntax error at ') {', didn't see one of: case elsif for foreach given if switch unless until when while"- updated to 20150815 see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES 2015 08 15 - Fixed RT# 105484, Invalid warning about 'else' in 'switch' statement. The warning happened if a 'case' statement did not use parens. - Fixed RT# 101547, misparse of // caused error message. Also.. - Fixed RT# 102371, misparse of // caused unwated space in //= - Fixed RT# 100871, "silent failure of HTML Output on Windows". Changed calls to tempfile() from: my ( $fh_tmp, $tmpfile ) = tempfile(); to have the full path name: my ( $fh_tmp, $tmpfile ) = File::Temp::tempfile() because of problems in the Windows version reported by Dean Pearce. - Fixed RT# 99514, calling the perltidy module multiple times with a .perltidyrc file containing the parameter --output-line-ending caused a crash. This was a glitch in the memoization logic. - Fixed RT#99961, multiple lines inside a cast block caused unwanted continuation indentation. - RT# 32905, broken handling of UTF-8 strings. A new flag -utf8 causes perltidy assume UTF-8 encoding for input and output of an io stream. Thanks to Sebastian Podjasek for a patch. This feature may not work correctly in older versions of Perl. It worked in a linux version 5.10.1 but not in a Windows version 5.8.3 (but otherwise perltidy ran correctly). - Warning files now report perltidy VERSION. Suggested by John Karr. - Fixed long flag --nostack-closing-tokens (-nsct has always worked though). This was due to a typo. This also fixed --nostack-opening-tokens to behave correctly. Thanks to Rob Dixon.h02-ch1c 1751546996  !"#$%&'()*+,-./0123456789:;<=>20250311.0.020250311.0.020250311.0.020250311.0.020250311.0.020250311.0.020250311.0.020250311.0.020250311.0.020250311.0.020250311.0.020250311.0.020250311.0.020250311.0.020250311.0.0-bp156.2.6.1 perltidyPerlTidyTidy.pmTidy.podDebugger.pmDiagnostics.pmFileWriter.pmFormatter.pmHtmlWriter.pmIOScalar.pmIOScalarArray.pmIndentationItem.pmLogger.pmTokenizer.pmVerticalAlignerVerticalAligner.pmAlignment.pmLine.pmi586-linux-thread-multiperl-Perl-TidyBUGS.mdCHANGES.mdREADME.mddocsBugLog.htmlChangeLog.htmlINSTALL.htmlTidy.htmlci_update.mdeos_flag.mdindex.htmlindex.mdperltidy.htmlstylekey.htmltutorial.htmlexamplesREADMEbbtidy.plbreak_long_quotes.pldelete_ending_blank_lines.pldump_unique_keys.plex_mp.plfilter_example.infilter_example.plfind_naughty.pllextestperlcomment.plperllinetype.plperlmask.plperltidy_hide.plperltidy_okw.plperltidyrc_dump.plperlxmltok.plpt.battestfa.ttestff.tpm2plperl-Perl-TidyCOPYINGperltidy.1.gzPerl::Tidy.3pm.gz/usr/bin//usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/Perl//usr/lib/perl5/vendor_perl/5.26.1/Perl/Tidy//usr/lib/perl5/vendor_perl/5.26.1/Perl/Tidy/VerticalAligner//usr/share/doc/packages//usr/share/doc/packages/perl-Perl-Tidy//usr/share/doc/packages/perl-Perl-Tidy/docs//usr/share/doc/packages/perl-Perl-Tidy/examples//usr/share/licenses//usr/share/licenses/perl-Perl-Tidy//usr/share/man/man1//usr/share/man/man3/-fomit-frame-pointer -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Maintenance:18993/openSUSE_Backports_SLE-15-SP6_Update/483eac65da9f5b6c5158a15ab59e927c-perl-Perl-Tidy.openSUSE_Backports_SLE-15-SP6_Updatedrpmxz5noarch-suse-linux  Perl script text executabledirectoryPerl5 module source textPerl POD document, ASCII textASCII textXML 1.0 document, ASCII text, with very long linesawk or perl script, ASCII textASCII text, with very long linesHTML document, ASCII textDOS batch file, ASCII text, with CRLF line terminatorstroff or preprocessor input, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)troff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)ŔaiI tutf-83a0b4fdb375421975a2209930435f361b6d6a1c314e96aef9e92f33072d587f2? 7zXZ !t/M]"k%r3AlPqZ>+, FE~؄k͓x37!/Ӂd_6N3B UG~W4,MyLtؿq5mP*YoVvTuxʓ-R[Wi{?=da(Sm?ٳ{A$(n7|t \p8cǖH\үc~hlP=V\`JBM̉_[5]gH{񢁿Cؙ,lep/8#|FDQg$i«] _G'tpU` Q-W /w00:S:+F/S]O%Rœ|ixZYJr҇zUbcf3DZ#o:Vz\amB&?Uw=v 9AW{ z'* oa.Hl/ᨊ3=[s$Qq(- dIdJEm]'K"[u?fahi2d#iČ7)p"aη]P+3өϻnV(͙劉@D3aINYccizlYzmn,q`Oɜn1W6I`X=wJP?Bh >`Q7!+Wq_;(+W*kYn/@,:CGF|^<ںR%, %1Q RÝYȸ2aopwb eĹB=U91Z ᚼI(^G3ɝ9\fqVrx.\)Ùu(/1#"A,%pAmEĶhƍuh#}|x5^%Pb>>XoeLZV S[ % χlSElwp j ӯ us~=nI;ٮУ"ޚĬ;JuZ :7^ Rb}Rs#4yf6T9 fXV  wWUO"pFW3*TBAcCuK[z[VpOKosˉ닕Ա% _͞ a/{3rPei%ix<6q/,#BT]xa _ 0;3gŒ'(Կ`H^_^"FrA<  %Eu  LV~J'MG}m۲>ɐkӏœDu^;]^BE˨aOs^Fd|J*U.[K@6n;RlzV@C8p0F3^ˆ8\f m7 z<[_=}ϡaaQ1 ϥߠś^G鋵aS?#/TnjDM-+$ؙܙ+<[ؔ"p,YVOzsf)*-eA(rGLNj|B4TbVQӉډF9 /`90.%9P" Dx"r{ `XfKJ5n̹ap '&oA\X䦪Lr`Wh^Ȉ`YV;Ƽ`U(K (Yrsd||&ݡF?ړbw]'~=+~Z)>I@XU(Ĉ\$/y/4M!>PVr8k>4Axq|XZ.| [ Wֵ$Y,+g jU $ C:\ˡe(*Ǟ*3O.f^s7.gH]z` (Y~Y@WHGVjωԓSc֯(8tcZCe`>`"y~.M?2E4m[n]l?~_A$>W pLEd& F$U򙆭6(*$/0ME>. O6tiBgF}#ѫ~H}zBhTd-[u*}3hcXA5Ȏ%c}x/ٹHA8F8I\(gwqi^f]$ZOwb=rsXoC$[- v4/ЊHcj N|LdKF~mS*/Qj~tWʪe?RK0~.l-܀`A}hQ8X(Axfoeޠ9nf_z[5aǧa0nMu#-tE]i8Dx(#؏L)Z71, lDrFwG PUb[s:T_Šώv'}fS7si= TEۅvzWHrpL™2Y]:̻FG>jg c _.4s$6[]׮%>}~cfp摒]*7vRLs,H:N*VYF5-l"DsMr ]EB}< >“Zt%` fE]cf}}E K>_6^QHpye}.>hM^֑1B2 -hz(KLGYµDs c$Q-#;DZ.ryCIg0EDezO+,BEPz{p|NDviޤ'-+ʘ$-@Jwo2!F]xdwI<>kˠq|'W.3& ]Ni|ϗX=3凬=Xd ĄN ZV/c' 8C~3_]T BM:4)?pr*#ø(?4zRh2?|;zj!9` ,Goɿ$tJ{Nl!i4vioh\)BJV"&o=)a-*P^OQP4 M 5SW)FU.?Åc#}{!nShV sܹ1 NL}^nyوcX#oنŒI(J:&[\\pLT.oY`,Ph;D Sу,%o2XBU[ÄXE>ȇtR`y޿19_+CW3|_YKhz^In`յgQzʈ3^iYMj 0)X}xFjt7Oߋ칳tSp赟~e-5zМH ɬSķk@qtQk$;v }IF!=c+İA`tkZ#9ux,Q^:^AϱH8({Ɛ=I*޼O>UV_G( B6f]3|,M]AD-\zAU.dTa!֟~6i$4Ɩ-HS MJ=k0ٷ`xv*dlQN J+*(D}=8e4KBR_`E\jaVǑ}/5Z4`!˴ht/?bVn[Qca/:iMzaK(R xZ/]EESpJiIϿj` ; LF,WW}# ȧl.B{_TY =&wr}G*3$vbη؛E.:Vгs@qlCo(S[pCm{*ڂ,ߠgLOD+WoUؿ[ Oq[,Ms,22ޚ+g[i!HjmMBG=΀ݰ.#igȝ̣TKG`|rwed)0kH CX&zoOzwu:IEI;LavcɲDw^bfәJ Hqlx0 erq3%Cc(CR6 ,g+2_\9f론A,''Tp+[w+!1mr j?j5r*+ڷ#x 5L?k'|p%kVm/(N}ܚVjj?-+^׺vf41{WU* 6޹TXgS9{M)U;(tAN^[W](2hWđ _Mƨ'Opjt8h?P'@xgsN(w`WkgAod)8Fz/+C2]?(ey'I G:[g#Ѡ3I0AKaAȊqs;V/Sg)w(@ Lˬ 4Ze41yt?v>3B/7`]12msdf6d&k#|"3d7tf{Nk "؄4ݶ%^wN#C΂X?N`,spVϹԏBC27ǭ0|?{J1M8F޿#vW*C .9'䜪9oJYC.9X+] Rvl+o$Sy=%-MkKrWeJoȉWͅл4N+]#eNު̻@oEHjFC{"bl ti[3+Yi9g7Io7FBTC Գ~ {E!_;w4t^0Mٞ~&jB{$|ER$Py_^=HGa_KCJLw 3lB/+)kuVRx%~Mq*Cl"W ݤ(}nE7#獽 |aDܡ*rY':Afk]ܢ]Pɢm!x/f37D!@eU* CBͫesrM¥*,;~HA2 =ֳod@2=Xse1>G}CY>*-1705.p})>4%H96O@Szx%NiaQk8q؇%lc|Z \(Q1PP a6`E8^Tם|5AjPwBoݏȁ<xz{dz`ɣI)G Lˮ+Biy:,}L/GXac Lh=/$oX9O)DAG$&+.fcO['t1%NTZq}2s4?AqPEJy?zW8 l{ 󸞾vfkj!Ge jb1fI iH2ژ4`LH?CI\|@{Q&GƕֱܗJnay@8{F!ˊJ+TC aGsaP]BFCP+O+lG䙿y-WR3wwUB}'֠[FbID/ld:fs }-̀m 6#*@2- ?odU,ȊB% Q,\؇:fjMpj\_Z_:jz':m._(Ze}Sk,@]eVMB\}-]}ܽWv-{V'vK2P/`co%*ja83_CZvZp3qmU.?&tcb"}&LEžm4[;-H.*Q'q[icQ)6b800Vȏz#&+=H6WKڀXΎsd4i&?AD^e}a%iD_|{1q6u Ug۽wTnlaF<#aqEEQVq)cjaK-ϘC;PcGh.'^ՌNѳCqutG xoM:M;; $O3c?ZL1r|(Ա@C"%O)mszF}^ԐBi:?7L/?F)Wx 0 gC!s0:WS;VK]4aH+Օ70XnZmMcKbwp.1sbt=;iP߬|l?+:(ٹ aiOɐ%- +rGQtyno}O⛰hIZxpb}^|N r¯,&IP7?-\-CDUg'~B^RHC<-!)m%.xC\ږ|q{`%ƗKЄWBeW/5~{/Ϣ5Z6/ZQyk$]s[oՁn3qp~=v:V;Fá8#F~Ǎm@Z<@_ I5pytT@p.r.]|- *GþKM%NG7AR 1m=,{qEo.2nq) Of9egjz/gO?EHR7F)a \.Z^!ML *ML_XNak PFw~{vb2^}eK VmёŻHm%牧IJQ Rh1ǒ.ׄ3,y_ kwdԂʾJw'v3^,xp'.3e3Ub:6\1CZ;\(z2]G:%{ "DɆ&)-ϐ%LDӔN!HOYzCj _|O @\ș" Km_=Wcnu<7DSXLL!<_Mڳ@]m}~ 8c1ĕ= ok@ B>N_͟j$/TqvǮXy;_H^1,;z͑+w80-H>[K1ů' r_6bn2ƇT{@z'XX=Y͜'B q繜N?'# QSwXPjhw8V_LTwNu{\W!HuĖ#%QsSn~PFؗjcҕi{kO&nM%Ͷji] z1r[\QGHe_d*)K~dij|6m}V.Μ*@A¾_wY"0$o[r?|ෳV7uw5GVm{lDi^nxeYlx(kq}Mi2GՖM}6{]+Bڂk9K30Wy4.6`PR&v9g0&ŝbg8@0H@u@,(.`ڢ Xc>(JP |UΫEU#}G@0U4vD' Un2|U׃XyR`KB)Z5]=l8nnA!ء4ؓ_FIthW=V;EaTiqFLgJ]Rw-׃FR Ň,߱}vp&n ɸC钳çn Ue2/aRxS>E/DpL7iG#cǕm5BT33f:gfIgO?-.ajƪW 3\hP!KV.^yvJJ,e;bSM&䱾8~d*_CCGI#l޻, _rʘ'%\ bWõpܵyW~e5%H/ \AՐ6 a!H ͪ@ 'X˴;)W jT9bQ];tzHm-W1BE-QdB<# 1d^1r-- {ٟPWz,l&zy{Uy{g6ꌨE0 w Tsoc&Sk+ l .b-01jC(VǑgċPwґm``JMeIU$\ H0> .6OȯI?R7.1 UXB?W^t1"Γn=@@*VBh-& *K "%Ӻj?b@l 83v57-Uys=|BX3njPZ[y BfA% *[3XPKGV:=[%lB'Jl҅[+a4u LN.DG|^X1h'oГnզ|.{꛳PE%p #V(_>uEe-rV?[?.n4t&!Xm3.nAH (4M-þ.lc2O{B3Jc.wX* 3c0v:ݤRd?#CμYT0Of" M=H@̫s {񋚉R8WO$>kO r!dʧ;|޷P QM '!j>FPN9dJm >S);hJR*"Ijq;dB} ~3FkȷnW;Ľkd=Tլl)kIhU+/! $ _gu\0J YXfď*"-wՅ|$gž $rm"!T^k):-?35#?>C&J֖g-,Q^qM2[wn~4D t)ZBM} 3"sAS&!/(x2Hs;af^R)ۯ dӜ,W7`zhgC8XiڶqCyѿan>gzӅCK}vIY"BB!0gMkgCiyԿȝCa 8k$W+d&a<k(a ށ2^$H6=5f񫨏2\w!z>yoc <^Ю䋅GnloN2Ro;ebKs4{B6uggZa2p}8wB]>YͤE,,QD'63|[ȄoaAxBOW397$nc&//\8o373R<6k=-?COTɔ=7,:>엩2!scJd\ {?ѝ/cنnM; &/0 x Vjw)dKPW4+2N{"x&B~n>O.Ӟ.T()/g"f4o-Po(7.h_'S WΞ%ZEu@@@?8<|%C\;|マG/ZT DEJf\SzpdHA@^êTW%a*nv᷋e`n6?upi-e`ks BW%?<CVDk⟣~hB0?`&WVrR9aG㷘@csوDznJc~w+lZP^M Gbq ";|gXv*k"x $d~x~ie&1h 3@HQ9tz.Yhѿ8}J\@uN0qLaydӳv',H|b_T4&UZ tA?("d),l-_[XmE[A2ﴬxGQ{* .3V"n,akxǼuk۬Xgܵ0ij 6?q/\Yj]/jخoG^tqOr{ /́^1Go?Xb~𬗫./ԋÿ%m5u{עRs.)%ƌ=tB5*ȍiQu2{Lκ(SK&ySYcmco}kIX8 )a#s(,3]jCqzIRس +\V:4ޕ0˒lI+9W4r8T43?U{[,%^qT+P+߁+ԃ}l7FKsB/ct3fop϶܁.cѵDŽo4Tvc%B_H:pcH j~/BfIGdK_ARAsX t2>j`F΢otqaBg Prܑܕv~F/6Tj̡(M>k2uZz|+_c 8I-^Hj0u+K %^PF8%ks0q{yJ 8!Hf+4/?fwP;AMby{C>Y:K-N8RS9٢#ޕrN2.T9,F<d֊{wKW>IÇw?>B!W;=6!-шF0w@xd!TC{突Ip2rʂU1x,T [ t47zlX$th%i4!?Xv `S0'"Ig}m=ȡc0 *9J}nU]Fqz(d)Y>kcHzk6@Tq(WfLsZ AT#* VBU, >犉[T Q GDw+~{"'p|k&ːlwFkc͚ilMb1gtQ߾$.^ɜIAUdn`;m!]W8βinÜv.'ulcp3VCTOUֆsc Bj%F75YW:B`企Q6l5hԾLCb)-EMͬتx] m*@5P9iLQOYX5= x[l؆LN}>j?Y 7Q8C.#Qmo[7 0Ǎ&0Žs\ IcuL˴XAdy%4ۗ =D= .\$KoGY1 P]598"/?zI8DgE;L&k[!; z YĆPK4?\'69@%8,c37z--ZQ͸ B14;K"?9Ė| A4P>aϙݻynǿNd/l_`)s97^kR%{q УQ%8vdHly|76lCUyvHiL?l^*OYlq3u&oQ8{ 4WF5biaOno Dha_K3o]Ì6V O25ӥ+(gDM=-A +އр췥Sn hK-T'Q|d#_VJŴ@GǗ] źΓg>;!4?[`#aĭ~*N$[PT1igiՉ#ӉyTXcek[wXl wz-TK@r7SNj0*h0U%<%Njzs&NA2cn_ ⭢ ? fj6-9@kzGUa$7`ҐS{\Wqbi,.G[܀=뛰C|Kyyk6V&f)ų 'JW?guOO\7!~N=mN~R;i򦺯#فh8W }z|%W#eOӰ:)k򽱰}5f//[)5CǴxʼnaLغuj}YY~TYmC ԋP.~2QD/B~jðZ~r\`iڠR #OU3C=BȔ+;F3P-RvѐX kKiҢ/0ehf@6G|7hKc VmD_uJs/f/}*kVu 5$G[.zƀuz Tq&AuZFO5Tݷ0X:+)uI O$7^1=5qwB&Ki<_aXD6_z%}ry ۈ{S}2Kz Rf$2LϚ7BڣbH'a2;w #:+n| Ь1J vuC7BHCMѥR/ɬ [OuGs/2(9ta:L(.K<4]plā ɏudjWt ^&~- ˧Ɗ,Xl{ *onF'47v[[Yf::K9/?Imbn>,c%M}M~(? 1A,3qmPɢ!KB n,@顅IP]B NJpOۣ,9K^0vid1!G>xʠqDQfGz/ΌJrz]ٖ\Yy*oY|:`FWpWBՅu;!,!(IC.Br'7:qUH0ދXWZ/8*o.`BKIfzL0A:t&]7')$UNqt9X5`WEZ@ٖRfnU,>Bٳk騢3RxoХ@UeS++Wj9t EZi|snD)+"5}"KLl= h:V~4[xktogzJL|[ *kX;.:9ߖdђ$I=@PQnk=| ;t{Ѝ<7;AYwsgxn^-i6Hjy|#_L~U,.2pZEM4O68uVrdJdܶ8#2ZshBDr0ckPǚ(u^"̧Ѷ/mNc!7EQ[JAEW=rBq*[l]-m$}~VK@ڄrADCg8#}'52- E 2'->fMx ԝh`PPJ!xOv-2VQW2*kb/ƈ+䟴}k4rÀG0.Wb[40T݋8JnyåɖmŦ.#7Ѫ|.v14ZrI9sbԉ k@B*KjhBD[!!?"M--t6 HrFw(ԛ,)y*zj']c"s&^j5(4CU rb4aڪe@-'/:We r ;I/۰cCv*\ ~[NW( ˬJCN*py`> FV^̍{a3ӭgv^J .UUe쿍 &exH̚{q5%3li'7?!-}(ʴ<lQt)&"`sT} H0552K #bt 7RQBAW֐d,p>̳B>)Pb:O7d?w զW6!6|,yllQй:\Wr|[o Y8:5}:ğ_*f~V vȕE3ΧRܒk_Uuc;:̏T, Ʃk-o1d%Δ\Ԥ[z_pd2iC٣oW53)V[?A`?Mw4$*"ę$'1 o$. ! @;NYJu5>C['9]9k͚ <_}HtB<9>ۙ[$Vkh~V;]U9q,P~ 趇 jV|=x_\?H*ݒk"9kWAApVVN]/˂{L"k: C61HP(CYRguXeY XzRV^mcOUHD[7KfeYAJ?E6I_Is8c QgYQah+?>c ,2rE[Y&A*;Ǩf1Ԓ$S:"ȡ7otMJ5mj `?!rj,a4zne0ξOwFup r>)m,)Cv7эTx u#c!ȉ\\pp cUU7DO$$59=zρĕyȠh }?6SS+ H^xZdx.,' * G5vD31?[(8y B̢d̽˛d;_:P'dBTrCy? 4[@.AY"IKIw>^v@9z#|#;CƇѴ4U%``ר2kIG׿ _GI(dsbA_7_WPp2uSV!$HM6*γi<@0UGlB:kQ(eQWXU?`.IŰ,ajA q*8%Q{IoćIY|pvf_ǀ8n(A9;"@aZ(b| <ک"1 ob7#\[P}ӐEK˱6!*_dIſ;U\E RRQ+F \빶.F{z,3۳nv5`BAm5y[Ӧj\p8n}m*YȽv yGP؇#-==vH=Lܘf D8$V+ "2-d,!d<ʟ}yR/;&CqB]uxя|42~(0U>~ZDlyų7{>(hEU9lj _D"h Rg1OvKHcH%}* I^0Cgd Esl)'.`(N;| PF@hE~Ǥ=N(#hZyΎK:%Vxͧg1uFC?]q#zh.^d4~-^Q?Bx\[Oyټ)Z{ڂ`c=HTyKjllN>z j1dth>a=\͂c'A {o1PE Bd\{<2< D>Vz<8*rsWhi~byxj!>Ѿd@d6g _}x\WO`;]0NVY+?.2_ 6=6=.(XP+ruAӕ#ߝer9INS@ )7 %WΰSgIV7:F4lICCÈщgJ) @TAgZ·UoÉ ։sCI[2bɰdP\ 5ΙIt1D>D Q8ߺ}C9BH܊v8w=CWK9G'xUh?UrKt~=HE$*dGWgq-& D9Rxl=4 /SI3COb?M;z ?(f|TеL>bmE}nF0r4?nuz_:o}It#UH&{T%}Cv1) Ɔ" ^QdSe*hNB%!IV8iN DVN'Tq s] 1C] f$#Cɺ ;V}n=g 1UuAWB|SiAoYA{[=e]6N,Eӎ y$u^nPA)f kJ)È~]T np/Mrxɱ T{__Y%(VnXt[=;oް^Q\3-"GlJPlr,OZ/OTр׷~藼޻m ][gwqu)M*5aQ gtaS}Mץg[ʟ 0  _]*j),=QP( |>7oFZ؄(^#4)Gx<_@7)˹MEkP &[f:|gwm Fe5WaAUSXI|AFx\' eL:Vw=_GO} {D T>YP$o"AB,&RoNx޸|^E<ɮMw5$ғUUʲz$At%Q0vzu'tJ`EAAc韈v&ְA8wM8AU{.ʒIYx"3Z4cԀ@Q"69DBYGxn7y 2%2`7&/p, \uTܩ^#.ujAS"ʮ1ݫ8ACYGvɑv&99ݣ{7Oh,yھs/lE;g31_vk -35PΰFPX=unY$tXChc2(Ü*"twm$ S A."ҒeP3V3)ֺp"髈[%}W7;+l+"$O)(#^T#Z!L^ [eH"!k*iajXM5[ģ1*rFhWj'x>]R3 1OsSnE! k|%#VKHC=Rq+(xM3ʵWI7/Zs-w~](ޭ\W4brW=E=Ŭ(*'ݒ>j^Ma:}ӂBPLJ>]Xܦ cۺZpZXo~:0@FAb>6DEˋ k~ AlX j>B85)C* /ê906WM0iXB%Pv',Ʀ`],뒽r{4TgUU}45F gR̼1:G1PV*CaGi*NE3vmO)XX Eb d%Rcړ_K 1jo7] `'D]ZU >P0f;iz'J{֕?ut'ůLv"Qҫ}(۬q 1Qʮ?T(RSdPYjڛ\ {mtqOrv횺Fm<ȴMbp)v]HRp^ٟ8ŞJFUYFY  i>M3rMܭ <Y}?$Χ8* Å`Ŷh©{שsen>Se DTހ..d&D:8X7s>$-|{83js@On~NOBSv#MƑփL}3540 w}O-W~W}BsWCҕEr ^ DQS/lK$>\2j/)AmZaWYF,(O7?n{'~#ƘGqvY~jyCy3(PKh88B(9P0\i)TQ_) EglԪsNGt5V"WY, 0D&6FM7= iX>E=,q^srp3֔⨪4ʉ[\cX 6Daa }ײ·{95ƒ~$W)Lbk! FK]t2YC%ϵ H+t%^coޯ78M2OpT Q6=#3QdL^o?l> 3 χU/gǡ4VsQ`ϼaJ4 ~Lve^v 8J_| Ov-Dڜ7 ?Vpp1 3*'g-襰iŷiHf`bOz)^tN28Fmij8KJ:E+I aGh{0 k)ee{>_u !䏈yo<4Vv-:Bd)o%WTh(JlO9VxYNOu* XzNxчgB@DW|_ЦfU@JXYZ_W6jbyez eIؠ19͎8o$NՁefqB'̊wʦK>!.TyiYm8Q5D̡z ]in ⏅ΏUՇ@͙2mw!sVEzd2]`3d~gTwtVhTU[ա|0%ce#X}@b&B{cӿҭ_D?lrK6P_5bmƑ?TK&ˀ@n!FڇJ//~xEmo}!Lau0I"ZPH!Y=5fm0 .Wt%4]|믄s@q )pțz,raLzBpu}@Bw^`B)FַHJ;$> ܓ92V%9 my=Zz{ZbdE*(Œ)6&U]M#XyY&b36 }) yDGWƓuRPkLFZ|.f6Fep8²]'!"WF__QᏪ:®V=ʮQ:7BIY4y/λSWa w(8ўQÏ`s-$"8\>8̓uX9ܡiP8& ܀ҭ&SE%rKs4c=Ƨ kxqv3/=M$eEB\ƺ~\QrD.fἰ m0y΅ŷ}[`~[$Z= ,pK,OfF8&F@-!\\BuLY''s!ef#~JՉ8B6f7l|eUq& c I.EsDt9Dzk5fr D%ދɚKyL~%f ;GTZ1 oy3N}"HJ:cn/M3jF {2&2RPZcRl.?٨> U8Vh눭 mK.pR u^z ~(Ca"Ô) El ,Xv1}#}6{*p4ˋO0YR1[ H顺K#$Oј+%M+>|n˞wq1pO*_hho讙BE.:PmBchA<:& tW:=H~n$w-rl (cѓfP '2KmM]K@śv%pK؇v /-*n ,,>*͟+|׻bYhM ɇ$,vNts Et4('z&X6El~JH?ƭtJlIts =muZ  n闕Z>' aND ~@O+եL3S{G Za:⧄ / MtZh/E?Df:Gm&u~WREJ-'p{슢`We72 WS2 I  {0Y%<^0I/_] , nٔ&7MO9f}fG [6u NMc@йOZ(9jL+Jw^: ;>oS\UħePLۂH σ2rgJ"z & ދS6zML?z+|^geJ bx?DO j/ Xڄ r$D_< btim;+sR7U9ȞmCK'|:%UCf'd!2=buN^cC[hh$| =b pië}3]qYsd 缾̠YoF۩>{ab]ݣ CMɪ*a\/(f8t6=M7ml}&KQT7wn 럦^57ߖUe4{fINĕMe1VrT} ]e{R\5,\bIxyE.PB2N6XbJ2&lIhȺqFl-2korЯ4TmC2'wע0*p)(WZg#aʛ/MUXχߩ$P˾eM29E%z8;rg"/ 9 hB7+A1Ђ%%x7J9 u?'|Sa߄_jo[B^ze1È&T\#llů{[\ *ʓ'D*E :]ƀWҽ;Q=g7̦ԼaA D+Łz?ͬ2]t^4V+5-}D^<2*b Fw5T,!1gqk_?FcbNǑEevlj]Iϼfˋi,>:<\vmVL%q Qb3vZ_`0T#iRX`!+ZU!F+E'Cm,Xqw N\fbrZӾ@;xrv"GOa!et#)h& 4y ZaDcA+Zbt` ߅VĨ `r##agNX'b:{i=%9&=[0ow^!tiªcBy=#QA+R}O /h$徿{dbO춅>X3Cy GQgqɯH[6/Uȥb&/1Sj?)*4>y W%o`*; =,\ImUToxt0EHvJ <:ï} I4^ƂN&w8iKw5ȳ.U0WtLhD^F3eKh!_&̐aT"ߐ ZCFH^ZWCLj4Y3" -ZR l*ۖ6]AnG? ]x%tH_1ϔю+b+j>:51~C, I `\7}@"y7sLM1f%;^>WuQ2YA"}-{'C5~ƹTJQ_:Qgǝ|k9zG$'xA^3X1'$\rM:Eڟ;rBpܟlޱbOh>w{% PgbEԌ8j6  X[.5 RԮw jfڰnG= <Hg ӈFجP^`h85X'h/̯VTK[JwWł ӠIK4LG m-4%IܷAN>MRaT3bʏ&mULy}@̔vT(`6^êF>8-90Quvִ{G|oX[?s {n$96`R/s>a.YB`bܮMwR|-%W^_:8J+>րd<0)?9l d 'pm~"6}\Ջa*c~Aj>\fTx4˱)fTx׋pB|/xD_WGΤ=\?+I @ӶcM\K> qաlr4Y#{%Ξ\)Mnn÷+X4@뚸qVMB| /W^T֩ R9CI77H2KT;O $JZ֪Qz%ͧ~ Xa V6M1[w&)Uf&%5 5hx=Va[~Rt}/rp!D<c@⢐ÕzΡ oXI,zfȺEbz2`1øXm1KODkF^K:(2;kTQxIkM^/8d@VArfΪZ".)2b*Պ ^WzaGdWV_,P&G>ؕ ʸ.# I ;Ql dU]4OP͟?fǿ=T/ ̾l-z<'.;ibY,I|T(xx@+$}YQzyF>gS}5R86*= : TbPHy9IwwxC]қW|<։_ĔG2:NsGxuC^N&{&N ^T 럝"g(E  dl@ TI[5-4 ̞W28æ%N94R" :T_,YhϷG X]KSHFZHʢu^C[HH߹5ZQi/?Tv ۮP }WdC1ӤB2%J@K][f`iKո9\F9$!_Sw[ʟ77uGh} hZuȇ0 XŒAfvGg ޻bxs \iA$VCw0L]4pe$Nٕ"3 f&+)BM߮F/GPyP%&)*tP"mS|JTof<$ 41꫶Li%qҍLc& 9(=6ۓ)r1jZ_S'nڙٴR LMEnl]/XO+ț듵HoIgbtY:蕵R>}peч̌oٍq߈K>,sD&# IGoWjGqUJf.]x -= g֞F TjpIC9W $vKx'Rf݊)EX[xs$[n%LpO,pz#/w# %q%:͉i!mB< f{۟8h*ͺSwTn _P&Aڽv\r*g?mCKzMhB;2Cw+Cp .j> qMI MAφ;Ƀq,V6 S?o@wNfjE7'a)[Ddd)ک}UU~9ã2K9Oθ;%۾F'$]"B$DM;F>^]t\kwn-d0WW"?f :$`,}S3m)sm=UB6SĢU.aG\I]#8wZz[x5oY0qȝ?Js9 %L*VEl^5<oᚦϯ?jO S|UҐSj6 T́ BIy6/eC/`蟟z℣4t_+}'w$&D+0k#Wz Y5$QvW `b`do?4~R[Yu,JtOmENjZU2U>;&'1M†ƊWeiJ?䶦nr;a ˊ'9JNrAIL?t ^I_Io)X/X$My 3TLM#,}l1Gi 1Ӑ*D6Oq4KH:ᗤ*[eKezƚ*IVz[ɼehFӱI7-}apB|Ut9(g4=%4@J䗠32#u'&7ԡ3qY}C*àWwrd.K x:gXle N1EP=cx8pzhd؏ veV0A1TlR-tQl! I@_bW&!C/]00ftbHeۋScP Y(!Ua%n{º G+Aަ 5$b^c;.3iUHklL[ 儳ڱqقШw`l 9sl' Jَ٬3.(gZA'ɍ>E =x*RnU9 ,*.Kg;8|^tR7x!̳P\GlOB~coIZf!/Uoϡ$kG(#ܳWNy|3KQ~h2Վ%t 괈3gzj4i e?-iIMВWfAa㊎Z!q9*ir˞C]Kјbam8UwK]>Nct4kDuwo 4I o~W8ftF#ttkܽ(KE?a;iU΃P> Ή}Gk(?.zy r4N v]ݧYa~h >6Z'w_?t=_1c*G̪p=Ψ5:ehڰN= >{np?"eGkr]9O+別&OHln@"ư$,O2bgR d\Jx*zw̟'Mҋ @3 on/<^8-H'=Ej]} d(UxTdٸ}>f_<ӰӉA* ސVKOzKfUBVa׸ b=>3]i!3t3i&vT y)B~GL :S5t@7p,܅ys Mf d 1š&kN 9 |faѴzR  ѹ[ߩc;^J#,X%X+Ƕrzɹ8Dkyܫfӝ1C w]hfQ0$x)e0kwM<v<9a6 2JH-)!Ez!xE_CNNJ^ !g1vfڞO3}l }>rlAj=grϑf")Ki1;69c.?z:.7=LBәc|6vV5њH 2/2[ܐ^IUTmr j#5jPw~eA;y#(Ax dB߫ Άqf; .? n|P)ejKUo/EZ Y(o2o(AJE}# /#:{I8{]YW9]4f]Se A2ص9"V70PaTJ}<8˩ b's;\p="4^ɿSWߝq@Lֶz@ ySu!L=nYj;A}FBFCҦZ"|~R96'46wLSp?)%J;#P$5w9J+Η -F򺴥*| <ںk*o1gL`kE,rg/xP8<*&ǡ;8ծVQHP L)|cc58.Vzʮw=CmRsbqB0PĂ0⇲!ʺo|2>r}K>B~wq?+W OJx+m=_Қg UR@7 r>NJ◄cߟTI2kb-)iݶ6!"<~?Z3Ѱ qۍ§0;_j&I+\̩Y|Z[&;l"}}Qۏ*]~kNN[8[34 V=\ƚd.p/?1yYck.Xt.  O[48 wjQ_cs!2xH(F,|p,UW4rrc5[\*_d0Å(Tm?ΕW$ćUb;+fZ-0{/*9@;a䩲 )#\4m~rXdcR?!.GJ&V,}BjKy縇I"Pݲ~Kũ#oiƨrOI = aB VJLNd m5?<}Μ<4ǥ!"puciERkri0%Rgȁni;Kƍ͝K9`y!t|k$Q0wb8c:{-{B I+uiw( %Ż%H}Z6s"Qd7=s_SI rO|XIDTDٱE\5F&;ѱqvy$bY㧇Oҍz2h$@LE茽fo4A0i4.i12l˼t;nJb}}@E/{S8s sZ qYyU"cKC m0-ߍ,{O+YhZCu&vgAyR-a~f!0HgyoBR1Ǚ=wWc.z(f:iq\0Q 0ve*Tigg h>ev!&/ ۏdL;JSaØ0#hc­q_9PǞ{(QYYn_ l\ @j65j1m%VHBѐiE"A%™/(Qp'HVҷtd0ڤȭ ١NF](N:B3Y3]sņd_~VU 5B͕QP`t̏2jV )Q9ݴ+)ѓ 4ޖvI{efU Od5J,GtbӤ!9 fvS7a<|v1"n% + (_xP8զ1pQrW2ZVYA'8.F1Ÿ`sqrsf,J* ~)wV"xcCD0^=]u 4漏s(ܓWZpK2;S;AY aRŐ:b ɾWhԿVsޯƽe܆mUM3QXi odXh"Uxf@xWD9%8cO'#3Hm:??'28hWr`x%j9[qb[:jo WwŸ;w2akֻ\T4ܪWRqoF(xg9`uh1B^My]M/+LqrOxܫ'`rVM m_/utDǛ[es3kFt|mv~Ax-d6b,41VSBaMLż|Zcp<x4`TU;Pd2 ngd'[6 IG23΋bcjZy60YFKҍabw2]?Ch}>A-rߖQ瓓 |  {\0\Mc,V[2z0hx&ŧH"gM'_DD3ODQ``TwU1t:$dːInӛ,[,[%T7\erv%^o3, M'V6$!W` .%47LT&-(%>!*xyG3a\,CVy׌=Č]H =mJ ХzCCg[5iS^̍*:ig#e Ή<5AbCS;[@Y(]z{P|]h *>&J[Yۉ@&;&cgZ.l [AX3Kųa*ٗ9T,i8g+}LVc-ڂ\UHWpd3s>*Vޏ{B5RZ\1XV=\j ubw(Ke @%NeėB/w|fSxF;hʌLE)߫V&.:lyNZ{ÓJ +=FQXg;7 8ECgIinF_(#uA8L %3b0l#c>?C:Hq:6:p$9L/iSDa݋tᬜU0Ij}UTpn<'~1 9aJ%&a!X= fI:|elHr7ݓ} C |l_tCu$_7A5VHqNYa=̶b]E ShqOfEf'k1w_e}6 HmKc gAf"_f VrۅBݔǼRnPl~ňzᔄQԁdҩ 1"bIWg+O`u9c/-t27'֎El Evx$C$;4 /R{]&֍{uk5aV>ߨug*T7 b9FyWo>J`"^Z<V`m+LgIr}~ (ѩdCoT -Z1 ~e~t[e_v>TqvV%pk#Q{s2eVcŅ:GB, uIsA=M![NPfӡWp)ITY5>,Vsd{JWaX)`8r^My'E|i|P:",64e޿rVPZE7|0o cRh,YԦ=|m"u/4tXZLw= ՘PU$MHjD #zܞBRC,k.&9j;E6N?, Y]͆r0Ƿ`l4'~>4}_S]f:yIeKNhrF'Iquim,},9 .LFZ'g6\鵫)j)su @-Tb$ sK=<%sqI3Tϊ*7v{B'u~@C5Сv7~J2DmRޣFӕO rV:tա[!n̑#vQP#svcp{S@לv7rlpݱBK챟 Ssa'ݻ g3N/jԿavT)|WU{gN0#JנGM?{?<(1g/T2sN˥.` šxw;=9㤲T.?MsiC_5)>ܯ|/կ:3ps66"8o$FcުlƭɂPɁɣF}Mr+n--΍T)X)ؙb]Q)y;3?MoМ w'm*]=_,:́߆!41Cz]ig$hx/;WH(5~+_LԆ!d+ċUgt7uA WJ~ԁ=}vG?Uۣ! ('#8N@4RGYщkŖ &rv) u`O7&ڣuDOp@!Ǘ Y b^`Y/i00 ԛ Zb!XcSG{7^W?:O٭P;]xc^́3,R,zᖠ}v8wru}(08&ckk!OSwT-w2L!n?S8\7 ;k:14;ņ(H^륄 6xtt97z'=w) ; njrw3q=PF+>EC[|\䒥W玟cQ My@4NQ唏4!A7DYY*y>H,.W6H p8K51 k[m`[ۖ[2ZS ŸkOjKi,z(OΠkт jɹ+jCTc7AY=gn)XrwWE NY=d :9%/;4 o)W$H:tMT#do_dU=ǡ~΄pu* 'y,=kd!@z.!x]i͉uTVUcў' 䄚ܢJ;ֶ5+,` h!_{ b<iK;ZN[ǟZVuu$b:D O3{ׅ_#@$ 2mQEE%8Г,wіzTF>*G7U9yHoo&84YEʦGPyԗPXq j(pFk2g .re6TfAmwR5#2B'a-F܀{!H\6&#˹94憩ȓ)P-2yGK͓hFw7t_ *Es[A;|ggE^HX:JcO85yH<5D$!K%B%:2,i*-^8֯JV0c>!2x.R~^%rkUJ_ b ynRqAwo)=PrpCΒ#9y?f AD%q(Rhp0\Ë@?J:aez֥n r~z]FL @$5ڥH)Ze,3Yg:9.!P%d?Hq>1Sқ]woX8{d,7tZ2X^d@r;kZ;E l赕\5``AǎY]Έ>.>BJK3r/cn+ +MC̐Sr=(y}^t큫Vn3h\PAΰqD؋ר|@KU?Ch,g8r"[c/w= T v7 @[le^aE]$==ND:5sonoO`$Y^6;0zHȳ.Hdžћˆh+Q]f|쒍1Zʱ4n4-Lsɻ_o}$ j 0'.vCM'OEq94g1`NsĕuF9}=!%Ŝ&kØK]Qw+]Ĕ͆|̦.h{KmtTzm++fRbZƦM]XHЭȕ 6f2P tJϸbgj /m4m440zNc-95fil<0aJi_J5#-L??ygOՒG(6hA^pI;r?GO-x/(B ylj Hyb Vu;{)#gXEvYwDˠz_ `5)e4؝Жť(箄-.?+ 7HHM2Y.c>SAHwxu|D_d%0~IFLR,&kI օ^@Tգ'䙉ެ=@L1Do8ݰugi]ܣy(I-vP*EGxF XP~A~CSm3 + <(Uiq3jk/Ĩ`Dd&hsh|$<F$z_v{:MKjCy)їYpj|] 'MV;uWG%w ߩFjB4c[A(BaD8tIF=ߧfy!C+$lJN  P^TϏ֙^=FF]U'3'i~箕,FZUvTe.OĈ- z{ԊE犼5?#gToo`G`XxO'k GL G\OYo*zC׃m7k#_2xϖQWC|IMSn;']% ܾ4Q9@p[/V2b< ڲmsrrU 6B\@'$=-!`iI8A|W2&I)_VeMUnEȄ = ,iGt1~wRIzBuMpj]RF@+GA,bznF Ƶp%x(BZ;o6QlӐ h:vZY`$%/K ϱ5ex?d$ϣ:5ef'#\K (D1 S+OP]"ya7p}}[kp@ 'v3ٲfPʦh[A8, R83ӱWLN-зNAGMӎÌTٴ86vVBߞӊFѫ?S̹tN)X sVL#JTNX +u&OwʞrOu8E)՜ ^񟕝 D1NIm©U+{@R>mj_OКu~?kvYPҬՒ?r47:^KQ|)hXoTc2E/0?{_)4] 2e0S'= "R kpQ̧BlI lxU'->SIļ"~grA&xdr*~8E*h2=xPQ5iPoM ,tToɱgR1L@"ZL; R\􁏏X05!t`%I/epK-6>3WXC/*HѩѣC5| ,R"UZN>:윞 d/ װ!O/*:z L\g?E9L+S O<1a& D;/K&k<&w,#o!䄷@d2k5? .p,9cuCpAlu.[&=;ڇ 2ǢYra#@_?e &K@ýyVغ-e|& ӿ-| \o׌) 븈,!e HwSF9Ok&Z0!8'x^?Y>"Q$EP~>aЃy3h:*dT.9ICir<#dݼ[Jtv ZV8fUDm^7m`I @\q3Cu17tx{Ly~\,jq@!k dE%ѺE3\v ٧s =p9͠,)WQ ŀp{=𓩐Ij魭(!b票Ȭ+{\l !Y2l hVV!$&BpI/#JH1/qW~ f.}7[Eϒu(L>Gdכ N_gnр U5˲ڷZ8/0ޡ*5%`N͝-b1U1x4zPZ7?PFc0O2aCDͅI |kߓFBf[қpa&)́HrIG߼%\z\a4HR8S+#7깨m1+ajyt0d9[l/@&-yx:sN8EM5TͽY*>-Ua֘U3,`]wxf[Ln(>#&spԃ8?dd>G'?JlksEw(xYC %Jqaq.)nt玬miq패GA&ZJ$>q FLM$yV,`+)/>@؍(U Ł'-{ .RdRv<; ϑ:-ThhRx_7D*xd_¼av@"{#9"a;PT͔SJ.('|8'FGێcnTGB̃#MXk,!!xO!Vo.tFIQQl0OD'xPZ8/l4?OW90(ZzG4Kߘ䑜c/-ߑ>l~MR%/0us3cSF6I'㢻F$D^#@ے݁`V`OL9\8ewۉ'ŴBT +K捙;5.N}-^ᨕVۖьzEr>|B6H)|qVZ~+_E]۰]؇ߡmsY6Qjj5qCڢxvK@;j_J=\VJIG~&?y<yYWd){an~AP g'UxJyQTa/jt}>F,{p7U%b #Q£xk i!R &7q/$QrQ 2DЯ*v pبYtxX퓑8߹HȤľ:[DewJ`~l)O>Rp`~?~I&U>tGk)Q<,rڟNޱ"gLr"Db\= 9T}-5k<0JQ6%u .'3Ȱr+ O )| MF'sLg ̇mgDw}RbR I=8l4_%K=(Plhs䰧"lfތF))PP-T)08AuEՂC uHUUIy;6f!C3KpnT}V5$|? 0Qx f*x}F,qs  eO٭`1q r}LU؈zYSĿ央U h<8n/fFvqGsp!ʪʢsd*}^B|`å$@- Hc4{5yO.F} G*ܔt*pjO(R)Ǔ/R !T,[4Ds&{#`oҒ-E7=VBzѲ#$`3ӹ'0(Z/46?f ʆm/+?Úlj@L2qP{YYQRŕ(FZj;`LJfH+G|MT(dVLoS|o%Q8fE< \ێǵJZR([8o99Ay5}E6Ca[Suɕ ~0,G~/ LJeGb6d _դ'+1rQ$9=6*eMBqqZV义Gg'TAM~+6Wz KKF!P4x@ ЭbMh3W6M݋jIGlH.9cBWJH$ B O}$N$eEHNy]NpKQ0 8Ch/ZƐtz|όʠGVȬU \Ц1FmyS:Wx: etwG._؄i:CE)*7Gyo4A/dtdbw:7yfyƨivw|nE;gq``Ap;.jUY<6FBfӦHHc?7],**y'7ZtkPK`KS.(Y%hni5HPR$p#,|o}SEFtVE􂲆Z9½KS*cobs-'fu>lJo?Ks;@Ӵ8 YCR(K:.Xږe%I^Fz:/$#MKC / n GWrZ"|MZ{zj*PN)0*n_h&I33xr#Z~`gT_z]IeFXq#.[+3')iZXUxYVBW_:ȸu2 :8LΜl6=sѵUbt1t8!KaH:1BlCIdyLQ!5mF4asBM?2E)vc.*,`B{|AhlpQ音+ as yѲ-Kg/l#lY Ŭ_o)'i&ND X "PQCw&TDxيw&qY~=PaM9b٨=O5ەi.R? -WG5RNT7!Qibeƒ7**3sBE*R\mBIȶ)QiYN$!h~[=N ]^P|*G qMeLयe:~ꍬ9t#c)p|WG]@ؙ WϑUv"2t<4M`Ы,U9EʃHTm>/fʾ {ޣ|dԛ&aerT-ͨCq%G*;ִϦOW]DxN#Q"h} DbZYȫj39acUAc%R~ /˗Z#$<w?xףz=! "g-Fx43!oՕ bjXp%P]{gijQH3x~-jɚ'Ō(#3XOM˗06ꖟfN6nYW O^͐֫IVs\P,يA6<#Xϑ`+ߥt񑋪A!&!ᄾPyh0UfD뚘ݜvX=Xb2 >6}Ĵ 8[.bHpx4ys86em*] ?Y;Yߊ#xnٖ!‹hGFk֙> B⌺V ])oI5ܗGR@oq˶9Vǜ_  P Zo=[;P3[.I&I}ڗ; cg[Xb0xJrx|4Ed$: hᶼ+lmKjM:2B޻ OBVzPN;jhn_QNccgȌ8rbe=T %OeaM`E֝+wMPx- W2뒱#\#wv#bT:n)0B#"zomcoth|q`%+xgG}|60O|QaNU>wVp*ς;$ۯkb]Ř<$Ahg$X2KFM*SP]Pgє ɼ}UGWimimp`[uzccKʟ ݢ (4d2NGT>QxE g-'䠣>+ d`\0;􏒎5orFG)5^7Aһu%!mw.\2VMEYrSvݴ 1!$۞/XBqɸ\0DEl}|`_IV1L.hdbC-< xj< D %"'RǐϐF"P0GG㷯׍.$7AfVcve{Tf ruSQX:g*= WLX/[tv_#Xܻq22ڃ0l(J OX),n Qj=T\HR@O_9=Y홳 AB&Mi`esM Ww\=\Y8v9!43a\!߬Φ0ypВmI{xwf۬(p 7o+-@I]bጶΕ>J*:VݟPպ\$8FGuyv겪N}I : ֔#iї(IƷؖO_| JMk~'-xvN]߰m䝦aԂkW7rf߰8jy)W ZAh3X% J49Xޔ4a%B@3'0]:FW=Ǻ㰵̽K;[49&chؔDD}*TulA.eZBU ֤qӻЫb,q$[X W*_r]Ge'ķ\Pchr/v>E%=zڮ=4BDA9?2eso22mas&S:@+Sy?|=!Px=N+KO&m'B 鞷7z @iF~ `gƢn!5V UؐTJ(c`Ү&Yhnt]g)"7K;Wlkb%P "\'%Sq`3%Mm8T D:˘,YuithU]%A/}pv&T y2z?lp[W)$ɩb-^Pq }C{I/FǮİl 7.L-Kj`qZ(HH_)+w,7MzvQ&\,0ax3Y&eӅͲ8_[!ȮoEA $'=B41Çj()2;`r ԌC "Jך@"d?fԬתf֖uΖLh>2YL(noq3-HtNR5/.Sl?u7.(€3N϶!VOj JݜEѪA aQ*Naz=Ukk+c",tt/"'|{~Wcf#yO s"R}JU8K"e 3p9{%"tKpQ6!OK 'R˹djОkqj *$@ů2۩zҲπ[ f Ns<"։ tzLʱiiPNjNBDAk?Ml"|Q>K'ny/8jw3·UDAg-*~lDu<Ѽl\tx SWc`cݻjsf}b7GgE^n)w59 vtAm2~6i[wp;vᚼ|b_̟Y(Wr? \_jh:3gs6-u8M]mˀ^<) o& _mAψ[r䙳=ɰE/xt9k_Xً.6LD9SѰwg>z ]\LG{Cژ>\%oI6𣿉2;=lz,tnv6) Ʒ VD+Z`-NHΒ[|2_2ՑNLf1O ,Py,R-b6q'q J{R`y:Iv, ^Z-;U5ߪO-}×vkPW[$IwGYz]z[ r%#I 8 m,N fZ|y ܭb' i9ug :6Cg2H:AR!D rOkƝvvia}?1N04r U_8T3Xq%CJ#]r.ڍ'̀.?nyM'{ `/R HlIOP;Ē]_ E:`IzyGߋAP0fcg<^v}dR$@KA~[HOc(~n!u4P#̙M.( FVB,Rds; v 1epr2>Y-˙7iؠ>-Y⧠bQ#a9bNNqEl'Ly/{FLNE욨RL2XpYis!@^?^:Hmm$2ˤEb޳hZF ͧK7kaCCTg|/zj_FN|2!΃-CBt诡ZYy݋2SY1mt2SP^дԔ:%xU4~#DK4C$/,?\Z؍=C (GyV \O0ϋ6E2 Qy;3&v;#M yqHUv\`"JHkiwݑQׄ zeEbLG w G:̨mQ~9ЋQәBAkY:怬DRlq*列j^1?9&xedSF(xPx Au8B% _MpX̢.Ԧ,IMN{Kr;b~̗BvytTϙh#,bޙ;.F h>"~64g`k9rHIW!%,ej`wf߮&y.04ߌ.꥓Fa:X1gLًfSYant*곯F{j Tb38a4}]-XUXL칕ܱ%`E~Y; 4,^-5r<68:=,x%kJh 䬅h-+q@0u6˚Qz_|yѨ JW(@䨙!<;W A OHMW򓛌~MpQfu_}= ~ɩc4e j 4{]LZl JRqH(: ^im=v|@?1tQ˞x,wؗc4RL4D3 4*:];0q*}RU0#!2G7594|ecƐTb H풛!2G$C039cD{N>)Jkl{Pb¾<x.݈O u$oXB1jA!E!Ird5ݲY^Oh񲃛O:}aWN&+/8aQ OY'ia9<{=Xqz棇rgf=˲ ߉HqV9hOAyV -t[[O sxg'bńILEDnĀVq Q0+xVFq1n_ZB%zW׹1^YIXUYljIË6(BIl -Z7ekDi]Y3wq a<̤7Dni ;+}V}aO 9w2l0 $8:B O@_ R7U(Xt;O7/jL Z7׸J4TE ]?YT5!FiYY;o2<+%[/h*E{JaQǏ~EjjC}Ν*i,Q15Ȫ7!i'򧄼dl vƣF>mI4J¦1p[x'GM 2IqnQV6qC6t(v%dKBӘr#{6'$9;FPo{AuLбՕ)ä|D6YW' BaV(NSSu4$Ov)jϟ2@ʂ˟0) JG8i S ׫o7͟AނݞkA\(%9dPdCW~^s5f=C& @2kx=,ɳԢѦ8b" @^pT\3߅qKfgO="=ljDto`u x4/ԉ0 *NH/)wnw0/oKQL#n_P/Í5ŸOl4.3ad|> pqqw#`08 B!EG(!jzc3fkr[oU A0`E['| ߠ ֝cVop޴qRE .5@.qU Ӓu.u"6pKGgw,ֶ~ڃGuB\;CEwu@5{W89d#bl(¼dI6xIlaqHăv]g\oŞ57H[-0[>#D> )bz˓ *nA/Ze0`2 4G7'a8UED"*ݓƬ?]`ьPio+1ǣ#UTܠ8A?tb8TDs>#]p,[)3/'&Kֻ$&L 1 bA*&iW2|sܧ8 *Rnmǯ0f$G.hnY\fV'n*?GXIbrq=\8kU* XӣWIb$ciRWW߼ ?f%ocҵȻŏ8I'"F hT GBg4N:Q wt喈LA|Om]ٵ@Yw fֳ?~c0.Wz`g-Y% `6eG9ʹ/݂p,}.98i KqȊz`a?۬-ikΤCzO[Cⴈ)n`i0lqzAGaJ*B rf‘eHWN9hmd=_`ÔH=plqJmgYwM4No-]1 jv|XKRh]4,X>'b3qp!Sa.Jh$5a+r¦Qc_4)8\i_'ܺ%zY3{`>B,ltla2J@-2k/t4\f2 4 bߥ^n{%-@*9_5јDӉi>7=jsFN~evNaBE^G0;=b̊w(4'֝4*]@Iqyw,EWoG)>݌5Oa5BR1)jږ]Gl)}%~u=.!Ez. sn0Rq5޲A2E!1 I[Ϝs$\VDDH3_JWW]ڞkKt3!?BVg@إNo"n\d#RA-(_pMjoU-+crh}UGSlsC=DγXH`$<a#6RJEO\v`%oouɁ( *)9-N]|8\B :TZjQ JRp#<#HB\b=o$<:b^e-?~tE$4h) KmвbL켺Lr9疈U{8lӪ# ՝{Ey{|OaSN(~;Oݱy*gU@i`j+yLq Hj RypG>?[M:i Ѵ/xϩp]26&;#yesUTHrY$لdz4Mo9ԆʲXnEݝ; A~|Vz8iH9<,$Ū;D:YfI+P=g)  do-)ߖm@os@w02Q%rw6*> ;kh{y/&#p&}ɭ(䴏P+'╫1T2;g׋Njs<ae#)I2@v){ݔy2W 1 xbo[طv d ҈.y0n5Ki7ݿ]>|04ҝ EytH+ϙZ+Wل!Z .fHŀm:'L7SJիm0NLjq5hT~Kd;k,d  `L.Kc"֬s8lKiX9&5ى1W/*zu*WA-3Lc먪Z ˣb!ʪ^&:ujA7{@ޡ Gf/ YA8ŚdnTL3_%n l#?'+)y> TG46䝟%DSd<̻j[0mfx." DBmIldtpYH_гWk>[q$}b0rP`Ο{'ωd-ôahKǑ23l^Pl'#džHGvPʳ#%էJm 7E+YWJ7xc',V+4hs#w>=x-P?#ѬyK*cF#H,WD_#Zl1)_Bk<:e;Eb#2=k:LdFx $BȎ`?ATaMf 9\ƢO⼯4od&-U96sExZ3_6>ޗ{Y`xXgޣF陌)μ3@YbՅLX~sqWz9YZ 價ľډ_f- AĢ'=JIcJ[Jl1n_a=gd0J*mAԣw̻Jկ v8ٌiZScjNNP #a`F¼؜j}괚8\kwpb`EA,[I'mBB1a8}N~ s_!]֒籕 UCk2zaBϚA٥ R=| c1onnZ+%,1$bJ]= ؊ST^p[bLv%W:0ߧi7-{Vf-TVDB r*s$WQ~U8 @ 7ſ1S<Vp6>A>'9@LZp5ʛߜje o;堆LV"jaߝ iUrIc0`eWbT}hWc!m1zH52BkYf@{J*욎\}ZM*QH`+awt&Hytt-W"CP۪ڀ\#)K' ߄@1\r"[C1$ #9O?x׎ |߯61vs0fo­_H'#bB!A 6"*[n(,(wF@jٽCr2'" 9Cd]'XNIDUUƉ6Н^Du[]@?̞3(\/ꦉpIYn LHN04,gC_-=N8EؽvM 9o(J/y[H88`+1ei&ɠJH-uZq(+%MzI`'AX6@$ҥcDi>!HDª֯/67VFnza&@ ՝HDP0:8H-m|i[=Q\[N+u\cv- 4!T~~0}\?n=ϘKAnL) ^֌9 R3&c#hd]bp? s&7O_.=3Gtg=QR6}W ŮRѾ8J 91-L3AIy{unu!epXenHK#(ć#;JnoÏh~O_MY/XG&J8;v8d s4Z$]p<l+-yR+@S-;A hjS(YJ@C'NͺF@(~D ckPakqfp1r?VM|옑o ]= -:&0SA *ǶUuM40Yj1#xmV^; nkJz?0:E>eD;J?b),gPtyc0wdXO@>rhq}L;]b򃯚sD;w'NOޒ dҘG6r1]ymCNi .sAVLbE2l 0,+A6kf6a#uL%*b2whi:!=O`vjKe=peKG DLZkh|S=kZl{Y9f fPVyΠ4,}" P+vMJ0:|Zl[ Lچ 1 GO/lC42xg;h7D~b*=9*.e:`4X C3X'P VW…㇪T-aŧa Ch!Rja8<ܹy\sfd=ݷVc:`-{ɣ) 8|7"xKA~fN%_vtZkN%_',I |" #5Scyы3 3 !PjUnu{VRD}FHz#E3ayiۮd?VdqJ]NxQ)MAKPǘnW]*DK^1}a{BS~㔞֖Cw}+ 圄"\Q ˱˂,LҬdҀ&}1Spf3=z1_vd.sl}?1XH3DG:ّt4B3 ]ly 뫹|E=o {O@bXEpۼN `GlfQoS'W){r,)\5V91*Fb&fZ-`W׿,rp kNbׇϹY˂Lâq˕At-0= ~}ogFu_k+C%eu9+~:"M >q5C'd6!u,|L4٩RRjUn͟w1o mݡxqI``zەi s\:}9BJC T&QMjF+Y/FoU- hQ::T)~ԋG ?91(!B(M%R6 a|1iDeR{g|FMTxU࡝yAzq&igb 41a`/{(b@(o77[C-[Os7OBϠO\%W\Sh*IdnGG=EqI<$RaH`Tk{RuC[8gfS;;53 mܘ4"[QF=ޥt4<1wg_]WmT R$ԧ-PZ#  PlitaKw}XܘKoG㉶U5Sss=\-Nޮ̄6uNR1[W[eANZa` crFLdm tI FϾ]tAfW,9:ᳲºp~.\V̟*htk:VWWN Z׆XvFpA،?*L%ѡ{6`ÔG.1}Ϫ^B|ُhIѭa LYoiF)݉??C:)^`jr!x,O)'F˞2J.}KTی^K8y(SNpng|#]VV tw6=!֥yia_jIoGdQϐb3Bت1G k\f&PPD3c߷Lybκ\Nӝ%K1nSD26Alk}Mnv?9k܎d w ~oc3U܍`rM: ו決dUZD&u ,v)Ie&-KH4ﶩgi沷Qʐ >] JIUS}\:Ov^G` 99ɗfՠ['#n뤒vsǿR\r)E6I>{e4m1xc9z4ܩٿ\o;TGώ޲ ^!0z̎ /n-LP/FUI >(!Q5}Hv=1ojyT+I+Kgx78S7@\&wpɍ;pO[W8E{ԑ_:̉M7ЫvA w{ ;_^"q킦V^$KE#Bq@&2Qz nT{YwXQGPC{UŸlahk" 'z[t\Lvfz̊`30BMJj`Yo䈤H@ FZXIar{DCxtgImopOaFh+@U#x7M$lF4e6N@ ,Q8`K/P[") U AgbvZvzq"TǏ?N*Bfs-qtw{uOқ2͛ Au5<5^4 9(L)&fN=|vl*4ϋ* qy M1! T3 l}k,F%ie4wI ?#ڛ:Eٸ flGFbRQ2K-՞X !">gp$p{3-I9ҹFW[2?o(dMGWV A[hD㊕ g8v%|Hddd <2ٿ|F+ӯğc 1TuB[!;Z$)[kܜЀ+&PˆZƛ2r%I =t{o^ki2b̵8a c~ᑜ7G\Q[BRZ )Q9;Otp&Ђ{"xJ_/ r-bxtbǥ!N Nw$'  nSnc) +ѾhJ1<0aC#N@_rvN;g-( yq"}HR |^x'L ɝ?pvk/4|'3"'29j@Id,8䄶}If(1Wt=܌!DAy"xƚdXlAsfϢR'(f##z\A p:w S NpuKެ'[gquaa2Ks㡷(RSܹp;{-Yj9(RAJuN)^VqE҈y7Qstb`ʩP?q92ugq mF }:E-n0>Q1}fԧG).ȏWC@qT {zIJP,aߚOC1vim!Vh:BehZvc`Z;LvyM4 y!)? b΂^^RIGށ)+)q8O?|ubC.q&un9̋6 &3ɾ:Cb=[TxRk a؄Ys!.hi63zo&mDlFY2R("7 LR,4j v>fRTl9ԍjO؂XUz׀VD06=j7Y9ο8WK9*ܳ-k}e94MU|#T-f׶{Վ7 W ԢytߤxE @8}1gCܛBr4uWyZ!.JkE #GAs34O<Ҽ+ es ߗ9J99º ];9$e֗^!7Lةo<-4e0[Rz+DdjLl$bz˱6^vE}I{ŴƑ"̈́}DlJe3I/.%E`؜@U~)5>\t *ssK#}HZҖUJ!>|br@Hc.=gaGĘ=𐵯 ;RDL Q[}XTׇ qgxgY8і@6ɨmh971kиѠ""ܶ5͝w cj"B-qdyǾU Vj t>ljm7_dg~@m# a-:?-BJ`;ԧ8%V|~j=o@e7ASaeެ$XVy>>B-$F;b3HN}Wq7ߨ]概J]CDdn@kw!Fw(<> jmu#p@EeUK3$/IkρυH3t5Ĥm?fj?íxviS W\Zd0S !4r1j±-ԕ,+"M>*Yӱ]`-87bitɋsó\=q.oZB=ɔz) J~8d@v;SjAZw (aÞ*g+uUW:j7Sn15JDf#H|UZB+X @$g$S"n=8N?Dx%/rBʣDKZ(9VUkp3+nu:E]$sЇ<4SO+x,ɃlQKuZ$2?ؙ;w1Ƭ6jIQM!L針G""aUgb4y|Qs f=zEDFIFCHr]s˫qo/vt0A4 \O eT p_}& )pO2,,IC5 se!Lc}M]Qy{> ;ӎ_X8 {f8!&./$H-N"5oEzjxd/4`=O{6%DZ6`TM8LJGeũE;+o,bwO;o6$ ~yY ͇ú#t2 V-YD;G |/ȟjtj 6ZFf *x2 '~~R+PAwH!+N 0+wH]] $bC+Dɣٰw볦+HKP"<b~wUYlwBPOfs_첩1Й鄛S!}j_!cDLD\[<j@"T][` 6BBE$ӰSr.[a@PuP\i/ڌ~."| -!~3§1E ÏeNaV{N(xBE> `Ɓ3$} ea+"lXiL]n۵"Տ>^ɔ?PF4\$pqy51DP;8T}`}Viq "xcXRYڂFKZ┅M'2-75:w!z |y[XK"m(vtB+̨Y帪kyHyɂ,GUr6ʞQ @ekl `x}9h0=7sc?8^Oi.ߏ6qǛs1G4]4R&EUUsqd5Q@jب丏z5(-"q;ߎ{f pbqtSoj2N VKqM0zUJ@@s%eaTI$5?RγvPB£51*O#!iZ >T9KigG'gzT`k g nCVέXA(|ƄL5x[H#6_ iҧhjt3tUlJΤ#^}R`in }ECfLgPl inKYV(or0ƍݜ~^/})ٵv;f?&xޢ ͑"BQR\䣦Cט54pGdtڒLvA-QJ#O7H*qdiD1;f߁LB¢sNʜ@2JuuE ϕFbA_={9qȉrR ]h a9TamfN92+4QRTK1{nr/9oFt]EHU h(.K!LpKݱbJCD筐4-aW'`AQ皏PDj*esN `S!}]8Iin);Inm BK޿A=F4@Q J[qY4I @ē҆\n9fN$Ð_'Pa*nKu^uF_At^˺YOv5!q99PCs*3D`='N\]Fi698eKluxX SU;لQQ 89w(gknyКm)J8̪RRϲ c]qV8'SҨ~jc$PgO~E(i^My9FB_gRiv۔KHjt;቞7+RE>-ӷpA Pޘ{'IFSqghXj$Y3(L<sP|e>MU_PU,狉L^s7d*Bd՘fP«o(ۖ6:(ΐ*Da}z\f*ۓ0 Ү-Bnf*yOaBossoܸ4;jSBkB w$- ~b_`e 36յA_-eҁHJmR/F "UrmT7N:9L A*nd!¦*m/#,.\zH\3(DG^s“`Pտ9gW ۼ$_dӃ:q:wbW"JE7MA</5h254_4kFS|k3]Mg,W@ʠ8;NI"$k Oz'Qyꥥӣ^1(Sfԉ#ۼgꑝLhW 6䦷';]ɢ 5R| g)Uן֑/)t+aX -!=P1̈́!IB)[‚ $6zг#ϽCN~ؤӦD7XO]1uՌMf?ݿuOA=I7tYDLx:yh )Z&c2odasi ?qm,ϵYi`+ބÐumo:iuMj&AXxO%&rhCE%%%0'A  w2T5KO@ VNSÒzDͣ8;U_h\pILrK&'wG 66(31Jx /O]08#E Yy nw:էL6eZ 3)|fWGsq֜U|dse9&fVpՀSq"BRb~hm'+R>D"2'"F o!,cDW]$mJX>Ҥfteh*-Jm5W$e Kz[ePEOZ|9BrҸt$_BdrITElz@cXvMt֛@UМV=)SX SWݦXWN83S /NRܭPb7 ɳ:˧j}">/N 'I:^x_EŜz*4?1kGi'u$ l >5ga:oytV,Ěǻ`M+ ɻцaHal +g%=f!\[/F>YMKeV5w(:_P;^JF>E|n:uxYqui>AuWDIy@L) Ր`cr a:;5␋6:~T?A":J#N?g8w}Y0^iX˃\Rf͆ q*X *PEwr]$UqjɷY`\2Nѵ2(xBK~}bqx)vփ.gȎmNZ~B$89[5C^)w 2놠Pv*gp\i$`8<¥gOt,-ϛuN].<"v58,*X6 0~^F]9F"d5rmZ.x߲҆ ťFe \0p^k+Ds =[s6dJMge 4S_C9:uҲL$PADVχ. &,Wk7LyXorv̱qB ƠR@&woh^8A565_5ٌ4UcP ,|:jv +TQ-!=Oi'4{LuD!Ffkq蚪=x]!(XJH8,mFW`֧ٙ/`ۜ(^s ʖD-%@P Pv Gsfu$/%iəc0cB ;Y Kr6O4 \4v501˴P5l[}h, I-2|U I^g@1;ʻZ \4T&c.f9I3%,!ڎVuw6R}JF![E>gb e:nеxQN)FG uklجWN c.ܦk?]Rk~S5sDOjAr3Hĭe6F@mpއ(! v`D3*V<:j  svz&vAX2XfT6(ZH*$ {jh]ZU_m0$ Ze^"*'Y/[7꣖זJSTWuVW % O ژP& o (ѓNedQF)E,Uw-1'D?Zȍ;/#V+g ݒw=/T{ԀPiQ^o w~R;IaLU:qs@:/G?2$[ͨ;nIɫ@EQEV't$HCh[@KxLdD &!/"Spc՟ŋN,rY5?7*|}>X`ot04?rLc,r|,l2|, 8p;rt|RN'Dj%aR>/yN#ii jȼw5Ȝ`z%&Q=Ԯ 4 }T 5<|/kyHO}-I?fҌU?S#*J#uRʞ&6iթ 䧁՟֍XL]:9'ji!jNZQ)\b2z׉mG膸Q5F1ن}!ٻBwv #ష4*CK ǢPL_F̭yx`J-^eGyߍBNslݢbD8wQ1P_&4 x4t;e536B6xϠVY֩Ni/Aثq\f~0A37ܣ.V}㡁=a" Oy"uϵRWqTt}9T ȈQ&6nj<䂝>l>nze%e$Z'V+E^LLn{ӈ[2sx16\^+LHUdŊ럢@\j} Sx+.˥ú*]5}^*(Y&0J12jc8a_z ^ߓW/IhLXX2cw0ʹ;dv2%j]k\%~;, E=IvͨJvvJ(j3<L(̏G|ٌ Hsp[LUC)*][.rHʽɪ.Rʵs,Ҽ>_[ȶӶueӝrzҳ.z){UIsCB8ՒnJ )" IGSW}EKaPRRRP#na̭`cƒVNs3^!OBZCIXՊE ;@ *[,ClQbjIjQlc]䢸kbb>LФc= sS5Cޜ )0HO 욄K@A{av4]Rωc؄avn1f#V7 A E7|EB6y̓1l3waT畅]4lk>eM*ºfdևR钮Gw?_uaEC[XBO|Ni<.T`KGۥI)gA<=S4IM,fyN3ͳ`[5[”ߜ ñ)r:tX x3hZ[S`M 騕 y:`sf^_72gfK鲬J ~ɯkl>"f \9M̊E?fe~WW3S2oӉ r5!5̎L7׷@$zvQH6NJcCBxb&!\8/cΒ2z:\YµHG24\O20/TWXNB B\U-N_fݐ?M/@a+1*"'Bv-o`iC:!@,tl(=,DTX{.~@8d2yp_<݈v14:L)[eo!S@UҺPC{&9VGdHDX'?T%i:Ofid$lnй8.49Q2 eKtJ?n~ =Q=t i[LOk|w ԭ(٪VfBÓE h|I镇 h\ш))vAcꥃԖQ#ဵġ*0Ri=)XEPBWqʍ mN _U3DP֟(7ZkL/E26J3ˀiZr⼁|I~$eDZV3P ,kɯx:{Ws-ilfÑ`Bۏ>Ӥ;A<@lZ{ YPϭjcz)'HB)% P4G_ȑNWh/ަ2/][4!3*ZM'cXY HvaJb>tĉ1cBimkZRQ+@bˉ\3Ai&xOȉ\n8ΞzFJuT+U1SrgG L:Ԣ!)ba~ :wGK JVEw?FQge\4܀>cY(LP##yN 0hIdW`}:E.Fd"!pkҡ R+*G9.l*y2Zbnz-2WϯW.v 7x&q~:K~wKFw*O:WTD#zwiZT.X/Z)U\ r 7 8SqT E^}(7܂ck#W( )6Fpm*"ϣ3Dzw|`KzWe~6c &U Q8OKc +9IUXy敶dd ޤ)=шeВ0XߘI"8iN0j Hi*^4P"PR۷wLfhأɫfh-zΛa (Da6 ,8Ԣ8<]2%21 B4sJ)i\3eMDŽ*MD iRQX"n/nZ݉;l98:u[  C)l*lժRsp쥔 yOҴ$hۋҵP6*RgXL$z7]TC#'{t=TWN=wfC9mZc̶Y}{(W G:uQmf/=w)b@Ҿ+0~-\˺>Bh|ewVGScꊃn̔Wwը^ٷLⲺX`c˝~-W@%Ū _L(:~riClE Fa찥&+KTzǚhȆ) j[W1^ ]he(~ ['À0|B9g؂oԢ'ۊUWݧGD+) ?c'Ej:rd1\<om|Y@.E5E\Dغ8 ^Ƣ.*1VvdZut<PP}s^p J0נJYs [~඾ ġWsfҝ``ۂ" M5)VROx8Gq<3VMđ+)2n*+gP#wvџ ^ 2V5uZrbRN26mVUlWBsoGMSNCiMNn"o{@:Cs᧔_hp'S؉UBW;58# 'b&l6N:dkRBS9)8FZ+’-}Qzj%2$}Z!.S 휤H,au~0m,8jeEj.G2~DeYѠcp̊`EbRM3 MW>+9?X^%} ,!rFN! dfl_99~)d*@&xfywO.K"d3TP9=^b0og z }մX-Sa L1*q+`&lz[NIJ̨7`5HbfhM+nSj u19!FF?ùqq1tg{Em A[}7Ix4CS0εlf׬TFrN«GDˮ"KV /#O"&^&X-arc`*lE;tE܎,fZ)m7z@ͷarä x+%[ 7Vh) w-=@n׻)ӎhylT1'* t?.@X{ aٮaEЋRݚPRu85OSf$z/A3F+`N0}wYW!/\+X\FĢg;%S@G݅4r#tى:pciIJd{oJ mIi Y{-PN4d)aeAP*7$/!KʑH.aΓ. 13քFqxR,D.*=3^ٴ]=jݕ2"_1D04\X.2 x-`NnRy^_# C˔P}-;ݙRWlc{zD?C(Dnˍ"foXۗE qѸ4_^yP&.MP?1YxF8$(۔m+ SNЀZɱ-c fdBCR <亡y @.=N" U,t{ ƿb3':Ft B)Oޝ`'/8B$Ku˵TP3b~#=Off ܺ3WaVȂ YIi, eN`!+,8k:HrOlﳪ ~ BAF۬Aw!QmϹ,N=4pn=d]:(;!HB=۵$IЌiُI|e_l7-Q .@!'*#IKܣ{cs ܦ <@:%|=+Y>aQ1b~!yӸSzQPoGagMC7>AufݮmYZ4QB#[eBN"G{yj 5!MCoCh ۛ8**q]jF17)W6wDa]Ԭ*禍YbI#s)h5pe/ΈAA+F;Y'Blч@G-M[}IGҠ 3FX2Skbz G0thsfac-wT63-V[>3r0I4<1GJ*x$ʘY_%+ٚV"wql%f?[ ISomz9w H}4V@:V76hƸk" c7K>9-ƕ7q&< fJ{f5:1S?5H=!5̼S7?FXJ ee+%,,RTByxEbemEjsa 'YRY ljnPSQeM3.u"/хrjWs7̹L#h٧JbA(j)rBnǸI#*QK6 |m;އΉLi#D UMHrR_ohoR,#)GS%IM#( `E,˺9:Cv(x6Ubb~Wbj0䈃΋&#iA|u M5Z̺&ayh?9$-LvA F GO' \ČuU#7_6yVp&c=slm8I&N^h™э2.8bQ,Fe5H~K{!wܲ ac؃kxNQ'pb廒k~ڐban2o*ΦPl3X4N!E}v &X-~FGb%+9?}si0 %Sg8[Izi5kȒR׊kV&JgŞjˬcX'?T<:M0̘s ͟txG th93}y *X.~*@%nِcPt`|ٵ L73~Zve5To_&"hHL[ڴW+2aR`)- lfmTwf}^ߐA4MFjn|wBsxHp삹$UH[BFJk@)QM2$&YaIhy.SJW\Sz,gE $2|QૣpD@C: %TC(,Js'SlN`\\[ԃ y Ua_^1wWN Kkc߉‘螩cP0q+6: +1{W!Yyn$3ᴁ$?#]W`Sc@FͲ" %\}Rwߏb\U_y03'%q*y)X=G`6YY,LQܠ# t=S<1ȭ~{RÔLt|CDzK+nlZ"P7{, Sw3b6h?ްkW]}YTGǨhJޝPׂтNAE.3`A%҇)v0 !c\U)[cz~}s bNydMػPdCElyLl:k.xuνBV2(BqLea.Zk Ny(t.C LߑcjoEzI1{ 5"xnƧ$f` UOS~`?Ju0h!nq*"| J~2&%;AFȲ|Bi=6 4̪յPڃ?ttDJ=\f jgZ74' K!^4莃*. Yv_cy1] [<^PPj.6{ š&o_5*pˑutU3BGl} 2@_M9bo`'"|\aNrxYn` ׉\h$avtDL#^IxB x[s c/w}VaQ4aGL VddBI/eb:%x|;.V^Mtk>+Ec@{+׍(O,*&RMQMz]1$HRԫ'~3{4Iܦ{ pWtchF\Z|Id:TpԵe9&~V,jaiVm2|0p Q7|aRzȘ?6r8K@B5Z3$&k5T:6)`WBoyݙzktXQ;aϨ nEغ-?h}M0F`*O8(uYXGP-uXV}`N]%Bb*Ž%5JɤH!Gޙ/zlh3OpE R^$׻!#mFToߤI3ynD_hÎ+~62ZaW}WC<}yxxUQm{ 0$VyJ^j=&//PꉐeBW9Bgy1Tj֝qޮnoj<1>p[PoyYjPڰL]9) '?n57{Ld_gijCJUƘvZtZkϘ:s8-ޖgeZv/~!e{ gPؔT^2 z1vL򥟳vr:p{?R/ve)6^-yIr}&i(*a !˜iXf_$=!6e}`zup,xLÎSU|/x'ulJbO11q5ZcJ69,9'pGɞ 8rYm^qd?{Q g[` trk?f3cĉ'6*3_\wAvܽ1^ I$60e⺂;L)Yf]oU} SW4@uo9?tZ1'q&3;C߅,}l:~\)*`s'3a9$$s@t /VcMFi6Qږ }ݍOs $sk vj$ '!{@6 >BK!dDWBx֨ڤEw7Ef2ڳ4À-ϦE1_죀(ivB%,ŀSoǶ~8g"и /|cQq8-dX4:lجOt0 C %a@ԚJjiW W5 J֏ 1+?[!}S7aw9=u7" [RRٔ@0) aqm!6)#eA9Y,(^f Hi?͒pH4|q%eǬ7I*!3n؋Hۤ^أ CVpBsE { @q|XIY>.'P_=tc;=+n8N%}u˄A‚m@ n&Wl;+^?"hd<[`t+D'M_o4q1ꥰJtz:$ A3Q ʼVq>TQ;X33l;ٗ ͅ'p^F~B%go=Osc ՞Hl&ܤ !"o n $6MtԌxa;_b҇fYJ|2M=I'1)Vl`_GscW"©v{Z<`08 Yܑmh[w6aHK "ElY=m`VInz|=` ]*Y6$0|tz_ 5C;; P?x}&5JkA/=OQ>pѣCq]|݋B՞ByFDŽHfǽsM@d5Vٍ%b\~Ѕ?̬CLQt~o7xɼ,zr3O%,Q7! \M.[fM$Xaご %?!h o†K hW#TEs5ݱ{i-4/5п&N9& ^}8a> ^ȏ-OזPOD9%2oy­ɘ-HCj&f-zLApoztڰ@fb̬GMH;cm`毂ߌ hP3&b^xd6pJFB)'cƝeAs /tj= ]t6*HNpvjiIu?6q? < 8yte5loC?B~ B4&:z-n6^Lxnnhvݱ6<\v9]Nl%9`C ?|靤@xkoGC9l^g#-{C2\90啠@EmֲjbYcOS _H:oRPa7 5v>^4ߓ1UQ !B9Mؒ10VbF{NqāЎ-={}%bǂzjz*goȝh3v[`@$e-#_UD5 . o a1_T*v4n _9QnW _H&j}{7d& +I3L{o]!jq@E^aMVeY/( iK8O~;F by)[Ij!!tU+s5N#D*5;zT9 ډWn|3a`n]c+ILV溋Q&뗏[qb6F*ً#ꁌ}ve LV|sVyw2db(<[Qi!!I=A@B(4fw~Dlj Z[J`i mr{:wգ 3 ;'{&t4 ]Xq8o *HuwkU hÊf o7Ǧ Cl3q ©}jM-/ݽv!zV1d7.5\l]뭙W '8t(JJV @sF$izSiC|N`)E[N)ʰ^DNtKb$;9>9N_yeQ1_5bޝRO_ŒΜ_ǽ!8$QnTH^td ߺ1 7y{l-"`Ϸkp7ViҹG =gWlJU]T+jkYeH.jPQ ^ O}ǥD95 +f WE x덢os_!3s2{u@ɠdU9R]ŒNkV[q& ͮua\>cjԉ xmj5|ςPalvΏ\(t( ͵hNu4m㚤)+ JYz k/k m?3h<o+iks^T Hy36/̮Ke1g( P}XZcLA YziD9G0U <^uutlO?'nSo>l_@0BIbCr>7]5,8{BNd7=z|Bt2ֵWgcp.HS~ޥuqOQ()gieo=ٞP6rdZ|Ñi!r"Zغk̉s1Ze.!dpST@]fA1)*Xʰ$t|W6,Q^"u:ޟ13EYIa<"|L qc7*o_[.[/;ATڡv7"a`$ZM.fz D+pvITL7{+dS?[c9iȗLƼ{TPi*=cYbK4S˴pYUpO q!<DŽ5}Y8@`0U:LD&ߒ0.QJ_vP0EN;+v(< YY]؇&($i, Z 3yANkpw˾Wk,uh-)(3$^|}3XxlLBU@ZVF˨tL/Bd<}}y-cޓf1*R2C+2<`j*0W``6 no#,&AglA(s0)qF߉`kTF]}\Wm77{?5Nbb:گ/^ rh(@a ];}i`QomD=z]E^k51qsM- 8&mN Vj v)2S+LN$ P꒔}7ۤ_>[( T®i"̀r9 L^GARZ_v#\$ ۃv $lANOWlmx6r}-U):,<;۵<&< Y郇8ZBoF, {ߺyugCTo9bުoD4TI>Yɿ+98I@Vh FG(X4gb᣸{4) \/; dZ yym"'=ӻkóMJ1i'Brj psg5US蔜VBo!3l˚r-l1|NrCe\5&P9}htaH{lQ"hỌt4MH׍0C&6]IOTJ,?q@Z!"/t?]nua49Q̟#L7˘IpIiiv6Fx-eX+,=kȜjEOck^a ՀNҋG 0bZKvOd/!ƎU 79s{lr$0w!K 2kH"$1[M&hoVL*Fur5Ml!ho@.o1ط*:CLvK-1o*.GOdcfd1S?00ٔ|>>B){sYpK##|98~kˊ+rE@0rOCb涴T0$w,4`qkVp?=pD˗A6)Nqc&NO9)#$XD&m~;{i{P1 5(}]d7v,z8;?..5FleE hhR>ͩ$2kdX2oqx %"-7LbېAVSbյiDsCp}5xݛiR0k8/r`,P_;@ )&cᤀxh<_M:U2 xyp@ɌdA(FLRȢHs+qЂ=8 *BZ' XJ8Y u5C}og-)::Ӎ,&H OW"vIbFl vyJTrK-knVG=H8j6AQV9,#/ cA3{[8{9u:&0vM]Mqld|T##ܐ~t9@`YfeHP8 Rϗzs*+M~F@@3uîq|dY*[`deT9>WT}mM J+e]l%_{+Dݫiĥؒ:)o! \&M_&1J짍9W"2Y/^?Rjd9AsE`9ݬwojӒ WW35"Mư 5i oAT4h , كC1;b+2]Ԉ $,-?EgsOd"H$–L{zoAnfE"bwkErX߰Gpf/{c"eLr{L}\.Z2+{UD_7`HWcZ+I`k+;{qlYr_07(GfYǚW4Cоڎga,6/BS>c~F4;5mkOf7Ep[EΙG fMa^߹k!<0S*G)(~Wov`xDLֹIڕG JPa3p|1Aڵ_n 5dЉcDpE*4dW*G\O"!L]Gb7o) 1nnBFyEzdr`ʋ*V1-̋07|ca#j{x&HRs OU˥b֘YѲ'LfPmN¿ڄ봡-C{AT5*Ԉʢdꓑl"A̽3cD4%~Zզʦٟ~PqxO dBbdQ&9Q0Y^wvM nEQ΀{5߾ŤD #(_JK5RaA[g7eLnL 1@-;]۷L4? h[Zk oPQ6BקiL4/sVjez7JE2ǏR ҈+i {< *f9ߗ7 >J"\xDxoIb093KX#fM+~ =I -;"Y(R.}2nR'&5=N/.A@i5{wJͿX;2mVOwN"~iO9.7?3xV+yJ}1F&X6=a"{",bJ}!({`n׃6ÆG%/RǧG@TM-<VISP^bzl(~B^sR~xFS%V;Q)W3@fR1tX4gTJ^"&,8 8c[6#Jԗ?]N')=x1|I:obqI zТ_8(޸ Ŏ7mdkH{ ՍN# ](vLH^u}CC^Gg+ cf!1o\`rYcoqz|j/R~&X o!;NQ7U 5=CՂ/D6@7dO0k8do>g%yȂr}{"ק& ?ٞxU&R;a|#P?gTg G[*v1! $1i, iI~=|@_%  W.3L9LfLLKD8b)s}PA.m8QվRE4Gplo U-@pe*W%p*I!|}rCyr6vlw{Qm! V9~@|AuBM64b'(֑e> MA̪Sb|BrTײfA)QsHHц}M4~swL" $e0:Ȕ.̺=BR!.P⤄ZʧW+St {B% $i|Loʖc b+OÊlnC1F8S8*0THZA j]|0hnܰ%aͷt+j=2TpVB2rVްvVKA3MaJ:𴩾(0`|цc,7oL&5d2qv#tCc[$u&3FW(4ŶmB?q+%%ɲGD~# +Ԍ8  ^Dέ$0%ԹDnP .0'a06} ^(p,YT7Ln#؜)%~kfA$}678P]UjϪ>D֔!yJ_Hh>wKF 䵨Ot /^ dmwtT4̔ϻ/զJTtJL]w% lqW+<9_9m z+C߈4|ٯF^:\L8iP~ŝhJ=Iq]l=ypIMnNkfc`ptqwvOf /W tvbQ+@4fgvyB*;u -rB#]ax[aU&e(W2{ 5'=_qOY2|9B/L숋6c ~JX Mw*-U:9[X!KMq<}eF7[q%pTCA& . Gj2{4J1Ndp<7"JZf@tZ6m!V?o|aN<^J" RDc.?hN#@'Uh.Cf~I_9T  g͹pX Wx!V6hr|&EF-Fl_e) P qKR @L wF#"I-. *h6Dhgx;_Sc\:u'0#8E뵨KjyҮ%`TD>(GfKf1%ˁ@ ;S x7=1UKAl@.uE9xL' Jq]h}4Z ݙ!)/D|%vRH >wќz~>QWܗ%ˌʐiػԭ׏{C&rdܽD[]D]Ћbi0{ KEP%iSO4LyI4,Kɲ="+t( RuM)p>>% 3vb^S0|HBRYdbeݭՃ?LDѿVD 6 N4ԅ;9K]lA02Z_*vN4#X^XNv4؟JF]:(uWR]+<5~W/]T(M;ԔJi *a hF?-4 bu% _N>'y' pRN xDWwLJS 4rtN#=A1;AXpUo,VZȬЦ:!C|@औ蓅b֜"Dun; _MD@Xk/C{v8Sjm*'o]Pjcn'mz;jDfqfS#]gXc^S 4R m7ĺz3 !z&) VׯMA'9dԣz (P80T(h=KT0B+VY%Nr{ ؅14}d`c`z-[g륉byc-?{C$>p@ej*t~4hɴyN%BI^}tĿlw)J+~#`TV"` ~; (􅨡iުSw]*(3bkAn~Mg3(jGin,"m-l}Â8k]W >z@zx=ApN0SL8 }5AgI]!(vPM!9yA@nOK^YdX]XTk~1:d|^%x<*[T aaT0?қ+s ؼ6u:Gg N|wy54U4aS*êħĴ^P(]Hn.PG +4 _by=>Md^IԔW5O՚ oW(^fFu VVW1N akAbcT{K]Y-\hI Q0 LJUW;A2䛗( fXeBiW?LKق&يnx{%A(iY , P_ޔvf$* &Ǵ"~f=Da?$ՆH](FJBg&?gƬ4oO(oi`=NK=J#KF,Q;&; :2U޵WwANsXGɋ+gAoUqc> ~W {C#n]fVF Ն @e6aasy{vf~Ϝ~3WhLf:l&Ty:ΎYf+9f݄+=)l8y:Hy/mC3yI+Z|dI4^=`xae}(w 8qt`fAohFMH<6TQr΋ݛWV{Dh_N6]R 8uH.|Z~ 2AZ}&hXM8h#?y>HX~(5۵`:Ao=!ˤZ r |5LVG2w5r>e<= :r52%9Yq'w6#kzi1f=X, b暝'9":yrZdt9R\Me<`{ xv8]Q.^ zG~irH3~A⽶dO݂ld#$i@sI =tCH>4p,hM^ )t0x~O-T uDkYs"xVl QU3{q~`, -19o+A?b;ۺy'`3֋i#6$bR*zF ૐWhK:6-}|g,9/aybw/aN+Ӫ985S.!G*Cd1(z[uP ٺL#;Żq~Λ#hM) =*`t5RƵ> ,_mק m 4/ B 1hu22\q"ٴFV~WC#4jUnUS Dnf] iW&>ljˆBvp.~&1hXyTEP^\&lVAmsBsoU8s~`P$$B)NZ\ǩO,}e~Mryi(]4b9Ke^h/RYщ ~R@ֹ+5=tNn[wgXuiRWueT0NWm{&[9p%5C[T%rw@ݪd( Khzda1NT!]d|6|*qAXW\  )FQk[yѱułOa5syfպv߷jn|հab;-#.& n>o#yC[Lnߞvn_`4iЍT FCցɳ&s0Haup0Ŋj\߇A|Ԯ=9 "o3ұ)D5+X -1!_1ޢqƄWY+.p,bu<)vEM Fæ+y4DǸv+t7yT%[+z؊u,-G}@tR KP={EA,`6`tc41$*ҍ ؄e[-8Ogk#f3bS<$rQx־.~:x K+6QqwdžZ |$}Ԣz\pnD1[EQ' t7:-uKw4Lŀ`]dCחh=ё}d76WSqN5&s Pn:cyה>J,4d7QUbzn;)ݙ8 9T^WG `D$3;0*G_!wh.+H{/EцtK3;ɑY0oel[]ÚfˆR,x/HE7ך {KI]\L K]c5`dvI$o>D)1R|TSrH(d`x}O;쫅9vIVtc]~O dZD~`(UFfbLqJ{?uOos9rѥK#vI07oHU;~hWz@=]7+ۀ*Lm+Ykä.jZXC^G>x\BJg! w :_[xOjPG@P:lHXIO/#Qx_ a % IZKUW{N=)i0M%no'zjz+nH p^GM?Ԉ3 uf7r\~+ d̍^4l]Vp (xxvs"~ VPM\Oy (\eNe3.EHL1*\/T2D'1J ^`RuAos,d7J4pI!>R^DdxW2C` u^f;Į|n<'=xw&q|zpev<u5L9>__TF==Q}486\qcg3Wj-eu6q׺M‱ O?2]h%?ކ:]Qo]XUeeedznm9ھI;BX]F!m<<`g? ^?ʤ{_2H gEit\V\Ag۠#ýA0Ć$ָf4`ӡDCgsId w+Cw33u2FރK dL{n\ޜ0'cr6۾_\ƂbUw-`'p+cw%8n^[f[XGnF9I;=+&|dt/'-}O )) )Fz0s xHm6vP m|__#JbTHX]h&78*D+nQ^! NŹ7[GVjJع$ (R MSr(_'sJMN{jԶaGw!-8*Tm5E0RǨ)PH xJFeI}28it2VI*~8TJmP{ ("T)$面\|D9R1:ol1^Žrہ)3=3)L}jWf_M׌뜫}/e|N;虘0\YbpK9œ7gt}YZ_"v^T< }M# ȿaԚ3B:Fp9pR]qI 5CxuMhԖ0$|hJ&[lӏ|,;Gb U+fڢQ+y6Là"Җk^N﷜mLTG0PnudǓCϕ:(Hp*͹ lT?4L'; !jāl.=%ɴ( t;=>Es"X?.cD{#2N&!Rgr mkJOh_2_&hgjZai 9`o)4y|H':h!۰ ׏ti#/`2f׈7<7WŽWNg/H)rr64Yo?F ?>*t*SU4P R8W]_CuIgZc\&I$yVѽb̽l37acP@,Oj}h&O!h E`Vu$~YU2+-aVU-^ZtU&9KM٩//gP!eۅEj)RR#lQKz tJNWjWD:$Xa@=tc6Up6F{ {E 霿Q`_w]m=rGUs@V؃.Is6x&Va()7lFOR"gXS I X_r,Ec0W2_(5B'kvz|y V9@lSOBᏴzψ* ̕6'FH9Ex1+7Euxt",oχ Ĉ̥|=o.ʶ?4o8×ґd**-;xeI _g^E4 +:^xw$kB;ɷ Ƚ`Óa&/e TA~&e RNU,A@̵(H1zr=aZzϠ'+< & 'EAir,r oi `U.;C Z|=nvBm=n@n.E-;}Pi)3,Iۘ娜L"bۀ]o~5$Nq⤞QoɓHJ[ q>9G = -:8WE&KhCִf-kRA4:wx9|0KQ^#3y_#}B2`^zѩkrcQc"?罆5R;Q7g HڎB*ڨu֕,@B-}`ZOɚN|a4 m +1 s"psϑ˴$~# ~%~^ 72YڰP„[| 3  Ǚ:(4HsF퇔^!4;~gE"rR-s8t/G?~/:U>iU9|Vyv>8yݲFc/e"EN%萳b}nvz.ro3-ϦOxzxE_}$GvN&e}\ AH 猀f&iH>qn<8&LRl$ Q35I6zT;jB 3zD2lnYK+M!Uv1Gk @҄- `χ-h9K(4[0ס0bYcۮBe6 /͒H?R7voFG}_ec_.*Q;|U~Sa߭ ( ЇmW"?j0班9Ef.,BYFBq v9dȠLy|o_w0AiquWxDSьg'/2ƃ]7hޔhò>I;X`ȩ?W7l nm3ABAJK!(dJܑ`f[ |n`9jjlSͿҘ/Χt wrWY퓰>L47Rc nFpޞ<SwmhYV^nx.~S5#@ DM^l^|Hݍ22l7v;-<[341%-G~Do>/`cbu2՝_[(~$"2sq3*A25YĹPwE֛skFjvςѧALUQl.mm#<8#)Օp, Mcǟ{֫""V^\`]c!߶X7'Ҕ9[uA,ըg$PD&q lRqL,Na10)zQ<'_⸱nBTܕd?Ԛ 1E Ff"ɵOD!"ԮۃmzcҾ_B-(F,Á͇hJԘV_/BX3Z N]+fV:F4u.BxƳ%r>0$_` " $/HCZl*ԫ%ݢuI?~L;{["x$d5x)?;j6'ND&Gl2/Ep`.ǃ~{1'%rE7!Z9/M~7Bc^ZKaMӅ4'O#E2g OrYW1E-Tkbp8|ً!WQCMV53>wm}.~paBw+~#d^ W}g=ѦpI?9 e9dHŘnh[O=dd[[}{gd59|"Tf߱~%`{V\xg(?/heo:)#IV{5ACF/4g9wa>4u)s u&>`Ҋ]E>X+?Τ{j榰f@A1\?ݿH]5NccA6̺m8pFՖ3dks[R?TQ Qmy,5BߑgHepV_U Q?#YmH@%"|ZF4bOa %;)d(3pwX#X$}M鷺lmB=9ịܛaCv-" 0{:g.6tMU#7@E O, Vѣ`a 3 2~J m'll=v~!n8؁{#DfTGn^jb^ZTmZ (ktʈ{ ~j_ bGxSx7HqxdЃlȜc?.=sY~p?'3cP7+H.ntL6DOhpPpRvlKw<+KJV7[Qlx"o{e-\<+oS .{p65CL/I߰w[7ݳʁ^aH٘~óKy} d[w^$?rJ{|åK>"5w-x W8)Usjsbj{B(I9G3]QB1JVYD#"vɨ d]h얋[ ^F~OYZ6c~m8wy/: zCR8lșl%VvSp8+tnqQ=<^B$'AQȌAP489)o<*]S*N^ԶE$;Rb=Šm+o~3GB233`դr}~4cuۭs@GR@-NEȝѩ ֎}Za9wvxz$jJ}ؑcuktKw}\Bwu!U.GG|[Di7y{-[ ,>ohJJ[<'^݄!Ӫ #V|5LOD]_SjJ 4Q<=Byd IpǁurrD"#`z7VS{RK Mc&نZ2&3$ns\mYu  2#042Hͦw@%d)67N 9LPSF 5`H?\gnyҸeٓWEEPE9!^;!8}GEgo}&޷(h+ݑ;[ȳB䇬ȕf#.ᜂSџXӕ}@hH68eC`ڿ;e/ICщ[BZ0YIbGHSJ:H9Ճ!L@Ʊxi.sHD G@|Ac.%̬#S V!j]/_mB EEhZ3 k$cy T>B7v$[QК"I]rmƋHo8֕mS̅>8~7qm5N42C&dp C]ǸA?cMTiT=y{hmK b]٢Y6{Fn$^)>VADo2V$o[ޟ&aKb{0.gn瓳^ݕXCtNdTʽNyiubZQ_YAYIYud   sKԄ ^v,-HTUFeɥS4+T  bsYebr"[FM6)m_ [۶iL2ښ~AaU|is;2I4}j}^%+2^{Lar+**iQn&tC)RJ &fQWŝ=K?^ˉ A%jΐ J|uEZ뗀vʣuHU0qxB迮FzQ]^IM`U0s)i+}qBCT- X!NHeY\X ijgZy*1CDa,,ԄʢGř!#ޔ)\_) :#vCswJ| Ip-P~Oh%A20T ;s8͋272IlouhD?Z߻̪VkY]rlˇp|l%1O2mWPLLVf!v_wVŗExhSHgFznYo  Y5/ AW9ҧLOcr8W9fM `h&hW6N2Xإ#ZæGC^3el,:+A}g<1{d:zm_ NDV ]'T9%C5DLV 6wVR-& bcO`i2-ͳ)S5%)_7^aoL^}Tх5xbd6/nG=^E[/dJ.[/RC)m@֩E5M޷tm.nAojMnEiSBP\]f/mI|Riֵe/nc18u*h=r^[uāOҊ@r,Yc˃/f4_(i1vw<(xʠik"j`N!?N8-M6 JM":1;k:֑K=WOIi*PZ+G\dpdQ?b4!ae:frr|`]x1mǟ 4ԧIF9U 6čRll7mKH-iڣY'(ٕ^!ot%qC"Scj00Qļ3A4uc xp|>ű,,vO 2K\|rRߪDw0DV+Zslw D#HcQ[G?mjA;^1p807F8%.uAۤy hLi1538G`󺇳?~ow#B3ϧ.SVWCҫ*##{ZHߞdc Jײdޛzzޫc`}=F|7`D:˗8xkECEr@j޲ؾ>VZfې9w~(HZNWwe#eɎn/tb6`$?@U=˹ #$U WR?t09ogorpc;]/%Nඇ4G7-Q>qR8O<Ha˞C{!#JjYUۖHLdff݆G!6\u3  ]VXy0_7rtgÎOqر QCO+w4)vv.mIx-7#~$^BUp.%nA #`OP ,s UǛxF&*|alۅ}RΧkvWNb/7ln .7FgRN&.{T%IQו$2~@(T{y"\fOk?_OcŢ~HWdIҌL;MkYfXâk=E?A4y=;)?zبgLa7K jl{r+Ǧ=]ݽFҍFKFof-O;LكN~k[(_x9pw-tה.ܡHYL`8'M[-c'u~>].N&sۚ_"Ԅ,iejO2CP] ƃImO pc9G߯;r<&z5k qK$n|.oc3Hk ,Bj.(Ќa7΄.O#C7w[7 `f,K~E)1;_MȲm,>[(>yotRwZ|VR"V\ &EYn9rjΎ(Gy|-ЎBVUTY…"\hزۓ C5`IzxA;p=lcfh#fm5Rnɾ1]bt|3K2B'A:bsܷR>}迴cah^CV4)#q 1x f:j%Gp!W7.y KUPss޳x7nvػhoh7RzkmGtCJ$J:Fy{!h-)گ NXCHg<9r,Ϡ4  6~F[ ,ʓ/ D;X:I <3ݸ,;ܘ2n__vl ]geq2ІE3@PLy5a$ ^8KiSR,mYb"sԈNj3ErM M0r;|or GY5s]]aH쩜Ζfkkcڶ :Ó_ߵ @!*mJjߨrS`jW:KgY r+:|[i{xߴ"yr_emuw§z*x]>E% 1:\/]T.򦾤SޚUձn&) M( M@*YS=ۧ3l>u.L$ط36$\ui&te_k%3Ds҈ ҁ(6|w,.0b:/xȏؖ:6|fH$'5 !fɀbk*ԹiCIk?x&rs".zV o4Gv"G6\0ڋ+79t/yr2xλ5UnhnR^l VlݔllWth o7 G٥ۺ.?Ѧ|ťݰ M7P壘je-$ZBI nI\ӓ:fTN_K6ᱡ^Q=w %|)UÀnrąޘۺ_DEFLZm3 IX-ç)LIX&2I1]RxQjѓCs{$x_Q?ΪRㆃڪr67saH9AGֻ)Nx$4 y 0h=b]PY_v"jTa- 2-DT<^,|&ϑCrA8]h]6 G<EdbF=I*+< *~pn.9Ϣ FQ=݃#Vg>kPB*wpw A3r# 5H?bAO+C;kCu6H(@C˦ W]ywdrqK fꚡ/mܞf~ et4 \k^n:фz'&HKT5&a\J6{/?/tsx]yUoL4e\QZD {a)cKFPFL!1OwI>ׂV-={˙#@>>؁5-M.a]hsF#*[,%*S[nM-|Ma P1<!)'@z_/ O-ECch^jE;U'ȅva*-+?;d+O?"E =ItTe3mIAEso-5WV,2z``q/9'`\ײx{K4mܐìTH Vxpa1MMN82 r dOLۨϭ٭Sky 6 }~CEUllSl`Յ=iE ̓ B¡%BSǢWr 3.Tzq&1߈@DbOE Jfb;fgLgo,vJJv7 dᓥmV#GOYҿv^Q߹𛺭f8⦑ME 9UYmrmE/Z 2p"+n&Zp*#q)8@t$=mrc H/|h@)‹0CxOr؍ VbVLJ_0ghz='~bZ^v!rf췞O.~!s | &dR۰=$e !Eӕudv[ $p(V|siD8[ڦ#  '5'*wy,z?LMMYSf[!|V:6wȁ>(@L"u4w51F!FT .S,9aV.a&sIl:A3a]'%*P7Rx){ftMkC!xQ_~m!=1o脻a}f࠮𷖦V|fh%c؝G#=N.D,vWo ơp 0u&?IOd6DI0apoi8g~'4wӀ; Ev3x`QBm=0oZƳ, cJt}, hxT$ǃ)>KiV⌹Yޢ&ugQpXeH.}"H :ugdY Z[[J.M̂@lnF庄N iCC=քtGSsr2!"g7:He4}8O}h '[ċ0;8;-艔D+ jݦU4wTj[jl9۷&KŌfgId&b7ueT:DW#exd *9^UL5 ӯ/-UJ*z.7Bwg1fռPcj3W)ڕX'Q󚎧u*JM qGIcW0ڐ:Vm [yxt ?AdM fQزxd(BE9N <Ӧtq]зLU"bG O1]0K<b=s'pzE:\AAT1-b`t1t?)C*zCdL8A&iX)+ Ab{x!uwѤgt<\v7EY;d(HܓJbV@j ILn>X% ~W.Gv@&꨾B'YY,GCc6AYӫBh>C݁O?D8z?UsI.ƊX!6Lgp^&oU[Zf/;tQ BA}ӻO68#BY9!|$YX  a|.+2Lk7լ-6F%MUQ({}d&@2 4?R4j va쌹Iu h8"f'x9ݜė:Tu%Ht8Z`ZRu/׷RyזZ`:j'}_{Md &ICRUBhz%AɆ'ĒSoT4k*ic3|$" R3/){7o8'_՛^}yubΪoP%OdbQh%K?ӭ";*D(#;@-&voMk'TEAGOCAPJ1vIwM+ IӫccxF[-/_֍`ׁ`< ݂K H:O\s9UYM6sW*#a%/  p/Z0#V5Cb{malGר hTAGxpm\n=ZeW |r]\n6Ue|s 56OPAE)!T+! :;S@F;؞l aSeݎFӎ9Q+Pb<@ݓӅӒmn]Wߌ%JSxa+;+aN),8yTS = Hzd0@9448wq;gU3SF )|袆y{2 M@xc-5g;fg)u,gEkI_y(U  >M"_.FlT=E b4ȩ^Ğ+1ط~خr KrȑӼiQq)]%s sԞ6YJ_J# *S'md?zGq k+ÀF+Ag*T\׵qRM>b> )ie bA8W0;K+L ataU}%k Z )>ʵ#g;IMҧI~%Eec|}pQ{}y8{ufOHҵOz(bfyh=ݛ$ Hp Zc & #Ad^_f\gp1]%]:4ퟚ+#݋>(~W6.Z5peyLp$<t4IJkA#IA'5 ɗR75o muFAFEioG|}0hU},\P)_0"cA nsA쏤MbL ʭ׬ yDx|ק"v7N|LHtEbv-C̝x%̝߿J:'`]Rrtulbq'FBtkѾ4o. iڅNug4_WTL}lb蝛=Jc߼Ev(7x!j\<#zȾ+w9 f쪃Ÿ6-5a?tLN^gRoZO+}(3׳kG'^E]W`Z]h].w95ۅ>\-CY+gA/Tim:V$'җ` r筞DfKپl$Ѵ(rN;KGß<3NgbTy Z=O4ۄ$;T9wă,Pc@z'މ>mb)p.yzG<+ND"~) *2X}p_™2&Cv@o@Wւ_ X*W:;YuC%`~ie{EڦʤZ9^,K2M㨼ֽ`s9.GijlWI~0/_Ams|4cIIa^emQ5Ř{v̆.%;.SsLbi@ǹ27A ^#KPSI~ZwR;Ly+efobv̈k`*ٚLԀM!E2\sj7 F߀5O 7ϵOxǶ&,;U4|j*8 p#Cw2ir :t 58mɿׯe 0ؽd*ؙWˣ2jVm>8"ߧT暭(θ ʕ>Aab6S vg4nв,`TBE¹OdB3P͂{M<*qcl5gxؗ Z~V;_A7#p.T q]&,K)K;slX{m~0"RT6.R=_  pkt?ׄj|Rg\ O{/%y>7;ZJ}Ebvڕ:ǺN&kߏݛ?{oVkj+5$Za4?ax_1n5u7{f_N`hK\5Â7U +ٵ{~%0V5>Y&D [I$&¿lV;%_ ٢t w B,;ry97trN+N]Ӵt mԜRXɽV2ds x,]?nkvT(]KInK`_'e+T;Ǯ0 +pT @zsU04_j5w% 'Bh^ Fj?TZJʫ iOG`a' d8@Or_3gSqC!1*bxүB7o/lWqWhGƻA2|^賩0謓W]sT>_+AHI&´xt ܞy Ě30L@f玑A匼3FB \ic.|pY=D:d]F3fYo5^!HӶEHR)KNk˙SudpC"_mA$;VX]e&>GFVl٠ˎKV٧]8wt6TrB5ЀPݑ`߀\`c*Y 'α.9icr@ʹ{蒟Yci#E6WSI}UH#w,\1R>,om2{"A.#jb[67CdR _) y3`s|[cȐ&zm8#وEqP0806V3jWG(\&VUA.I9,!/)RdW~C2d5k= =ZÎi[ȬG̈́hM B=ɢszP٫cӾq]m $5sw RiU|$`' *$48!"fn9:[OeDjRywE0Vvygk1ab/Msy@K/g (+ח"!eеvۚ' گV6.@Dsi]ty&A(oh7߭|جp-bcM9{OK^9=] `!Fq+6U 1AAO$ XtsiZ8IOi&$Tdu0QJ6:@#6/9egsZ[,C8QO +/Bc*n35VO:呹܇l`p1k &XEjMˤ{iz>k{ꧢLѠ7]gCo=jTN8fuFnX`!]!onMas>+Aa 6J>^L~rYEqutH-pp#UBpshdԨ\TsEmߗbf֪ܮ;8i5y wp-sL=)Un4QZw߮]OK}V]C熄.a,:SJ@,{2:άKK|-x+M45^r2JE 4j}J="eH0ꕷ*8m4M#H$$Ew ucG6;3!]?iPS-ffn LK(u ڔԪ<YD7u؏u'Uw&0jRfK P`igﺧ @YNk~CN'qo @8V >@.f.gQuLt0Jn$k6vuTuw@M WmX9e#]4?˿5-[ OvVb$Ɲ(Zۄy]al)nАZ;ךkm1Q Q6,qR2Ӯ;QxR-f?a(Q}Zc!'pK?I=ra FpHᴤwTMV/C|mY9{4O2y`㶳'ޟy 1zC>ZI7q9vMBb@mЫ5*{=ReU k~%Q(O^)Z}ck6?F1("7`QV_NtɨlD9_H_~PTm)Y>'Z+yΎ6ѸW}ep8s]So+rω ܈/5۟Z)DԶ8RxMF7N;E\p3-G1?rVPTm0TY(msKlDnɉ=zM~(dSr+=_k7﷤d7=s\IN4n枀\2?YX_+ "0"$(9-յJ}(,u?~k΢b|3Lxik&hj%f#a+ FRIM-b4G2}B΅r_n}{i'}P|nrJ/<sŭ=ԠU/OFޫz*{Ŗ֥pOA⏇I{IXPn}n!3 Qs ժU0o#L&hSh {zrBo8*o|ʴ@PuATJATx9`qF.cӸnrOebF59.I%-tK;E.2C,&R,BF͒O-WqZ~*ն*h.'yo?ܤ767Kw&!@V(dN]b2z/;E=8ǚXsyUyW p#Smd]wD0_'1RLO+3,DWvCH!A*%L 0'1{ 7ߋp,|'h]%3JfF ~#ާ^uޛӚФ +uf衎eĈTX3J+I% S"雏 Q}ԎQ!R`t k k㲔ѷX xD\eDiu̟&s^I0qO]WL)L93HQ0JICœM <IJ9QdB/>v}jq,էOUm)-E㻤i,}q!aWtM?2SbÒ 8# x:@q6ZQՍ={3<Xj[HVo)?7jbU- "{ [x,BW 2|"ڳ3IgfHĽY k#sΙr^9FgTwIe&F{]rPUk;'3qߠI=-[.=Xx3ʀ% 8CvKE|ޫFJPt;OqMFXȬ]Pϲi}%PXPW0E;[j7ɵ@-w٠ fem;bp`I6|Ɩ(N} 6I;̬ ee[nf$:K:KV] 4r>˴E(]Ŗ`vnJa ?"2=BRr{X9xZ]֭![zHi9` L,#sGoјO_[0R?x (%="Л jHzfgվknvaWIƅ_0]Ir Սm56`FQ(oqFTrf8^&j Ffj P7M,ErAO^f{FdmR*oINB,oe\m}T Z8: yWmm1RyFK}4Y3bK/SΖm\o֠^i8C˥gJCZ8}&ɲu`"ߡ3=C+CJj; [D[ [Vrv" WM.Pgrl@UG=rLs}/oa:{ فs42< ;k KhPM?!u=؟^9.rYm߮Zn<0t7Kr)2 7غT/8$&Ma23UrjW Gې:ʷW%`S Pyݤʽ^HXSĭVi'mJ.yЁA^e4Z?e2`Uo9$X_%\Ӽ+S||oqEj; Զ&4k&Vf;eƕ441=T@U`x0ן gmH쪭 z(SdA6s+l_  w&ܳb]x'G&[VZjPQvJƚmkec~P`3^6AxIhLsZ wx7E`Xγ E,; RM?}ϼ}Td8oW nQse@zl&o̙ )sX`ah`5Wc'pdJ|'fY&үaF2}O_&]vD?ooʽ|ރRL꼘ů۾k(j9$$zh_X{,_EЂ,nFC=ژoF@{?PtnQ`bsՃMݷoi aE3o_6HO0*,o;nklLvSb/&Pת*6 Hh8noKFx}DB)4[k`ւT7D_EaUx`Z\{+?MAJ/gTH!T6ؒh\,"lzDz' RÓR`>MiPY]}M[0Hb""܇cڋ[\&nuC (DPГ:"}='.) ;l;g-j>G@@glT#Pv>C ͂Z7o>ؠf*7t9~5s|'/>ߥ'4|ʛ~Nj;RaD{q!ȸp(gfFVpuSF "`A{XRYA>,6^V-@&BʴR(uN׮ 9HIm2Z'#uQpQ#ewyȶDMC?<1'T]E /Bb;s99ӱ;Q,Jyy2L: ʨeuo`s'ɿ06>q棌2&󪨩nku$AroQ=BX` Uxy xhv1g6Wɬ-z('ޤu+k'WsZި緪x1]}c-=նU|mnrPb2dSзeџZXmFsROQnWLaPOoؓ6)!;UrupF)A[z+.#xTY߹=R;vƢh'**gƏ*@18"u+iXHo!]1[7F II4_}V~T; f" Kd3Mab#!+ja%1+@xp2N(|q~{m;$7647gH"bipTxkDltul_ Fs8̠+n,8}\cgW6BHiz Ņ:VPڜGlTz%<>hg{hqTM~Bww\Ykyiü*]7ƈ_4)|+xvK.KnYZ%JvBKV'p e~û3TT d(&hs 8(\b{esצEѨнYR5pb|J Qn\iPLE-+E'N-jd(EJ[S~!("Mr1zG*Qٮ>=v1::lW!HQIɒd7 oth5}>5TE h`wu:_D/ ]r5X m WG]0y՜֓H̐0c w-b*!_}cPS]2iqv̑5aBBp _ ;exDkP7j? ˏ^romS3ni9x?SdKx«h+UR|2V6ux*^h X#GOr TuRSl[  =9v,L"- |G7Xr|5=2$8F͏NF.Nț IO4ÿ́2W4eĐT`gHyxL F -*5pfZ29Jt;pdÅpθgrzh蜃I4>$(>~U7xʯXiZ:7l}]<*'caYg&NHPM]o=LbBYjEY08\$ x&֏7zل[]{{I68f&`W>dk-%t\h(ۨ>k?£@4^'گ  D%]i4Q +ax,;ҿ&qwEuvqD __DM/tS<"N;|b"\揫ౕ^,O%99- ^l!q}`62j!m.J=I6yv8yR2ti`{EDoeaha6tEGO= *fgLh. mJٴzkF_2rqGJT䜑ڎEQymk!2:Giz[پ=c[ VL%lVN6I7‘7Xtv_q Y\*Cd`U.@}߃T >tf 4xEE@K` @?K1.>5$-$ݵ*:vkH9.06a6YyV LznFB14/7!֘z2:*FXgUZf߫tze[t߸RcfE8g>;b16( U{d0 3]En'}`]ry՞,~y 4=.c .) ͢E +|Q5 }iHkk@+6E}l}D#m'bl`=Z?27u6TO;""w*%^Yڽ髲K`;'?bg"J]8pWBu!.o*2b6@'Dj([N\!]%j72C ]Ȩk4d-!9bqMk@;/m1b-Yw A27͉z\s(MC_Q6&ڹЍlali* "pSb ;s$*de^CII&*3jqz X6 GI%TKԉ!lV'k<6zT=kk|Tsos4ł&jm;!<*SLUPQ]dZՅ7 sL# R!ZEv0Qlmw M4k 3nxJ!A8bµ:%JobH`qY' ZR&Y[T+W W#rrYݡ9{z9lw9ؑ_l11Zi\C\L(ŰzR{(% Nm0p[Hت XE>v \I.^2k510 M,Lݩ1g7~=!G;#LHd"7?Jͭ"qgVd pD@ZץxLD#B>#7chc կ@ 6w2D-@ 5vf')qTT] bƔہkPtJ?/mo2 (*6nOyq`֪2PWM=+%.: `Јwȃ -XX}b/K2 [/B]OKkHpw: @?k*Vϸr5{8k>#uW[J0ZZN]H.JU%::+w.Q>p"c16(E%EHߊ0(xn" O@u.&h+ɢe,ykm5w" ڈl-T^P,~[1%2 M ^! R5 ֬嘖=F@*)r̈tݐޗ`R?2coFУTH=K&FK6ِ@}锨5]OlM&ƂN%>2RD[ t% ΂#F3ೠzWqAIT,x%,ߑVA M;aT BaW)ﯣe,:eNz?M/1µU s7@ -b+Z"sk-FV[A)X',`}TԕDz 9GƤԏBwmZvz1{^יwaXN# ]]`{ןHuJĭ4 q@$[$%f 3Y<Go0w%UaJ߀:"y`{E Q}y@jR_;ɏtV%v0 65v{An.}cOf[TZimK}Ŧ`|0w܌.As[{70m&|ᎂ!ަD9L來#ϋ>JI}$oЋū ~jOfq*|ERD\Ն+D(%\d[˷q,|7 :  BΗm=?Hb v\W}K̈'>Q̨ż<.Lf:.dVډO#n_|wPOl}Ĥ)Le GL< $NVw8:DqLl^~^vHl N@r&LɅ'yLFKV,DʻwVhiT/lMimBءaIQL*t]>q"d`A+Zv+\*h 51џ8ϻ)W#>2֭I<@` =$ZSݽWB{](-p,qK /fzoѹF@U+W&ܬ*JYʛ/;N`Y/gmO#;l~j Z,۪ KȧtN *@`p?318op"IdutN= rg ׭4\+HT|Md : *+ek/̬Q8.;6Х};HexPeZ5Y'6RUh4lMl.H:V̢wUYh”"RY 4g ꕹZ7D6!{bҊC0䉲JK Xԝ@ej׈ab^rM%/5s,gA LvT|J 1bGD(s@"D;0@ oC"xKό/03hẒcߋp3NoG&x>#)pDD1ea /ETQ\q:o*٩tF@ulO吻oMdx~n9;uO|{o YmDM*(l3(3j" `d_-~1EG)QEw'`>b>릖P^T'7b՞~nPk ^y Z@l9 }5۾%:~:C̀ӞIsJ 'SAe#Z_wxoώEZ[^]n ]T^aSz{mϙH* _H:Yaw*x"6z!!] ɝ5@`wbv'uR`]\Fz:>g3ْ ֧cρ'GAXD޸8$p+T >̼Q][BbF}p4Tjwcq?M7sKwו4OJU٦2<7QBu{Xn4>aM,H29X3V=˂#1٪ pҿgaWgij^n+,d|n$ 0n bQGJ/pS|.$KmvY(rh8bRzoyvq'F> O$\!Py^FUCk܃>Q\E|Mظac`N~8ȶv7͉“y뼃^1mÖŽR`mhԥBp*Y(.rl5˥~g3&AO洖f$KrLLO&_RGرcn.?-f-ٻQf;.@bm?PLUPS 9`݂b/!< nN։L'G^&A ,-X xe^ߠj`_>^:SdB6C.-MN.+43{ÊY?io^ATt% e4rї:a߭δ/)͚G4-GV1L^*c=OU}8p5Zh 2kz< 3C3r߈[Ni!=#*Gr&G+L aMUI)оH̜a-&b&.qADž9 熢VRPhg%". Rat ;,GjTy=N'b?lTe)/%%vi7xxe5__BDRY4s&XNl#6?@LHE>Ѩ2,C 6O]]LX@`[ !^vMgm.ַo0ApiuI22`\tpRW@׶ e:řha|Öw#ue-ya?/^ כ^%x X~K|s;+yĩ <ɀB.lSd*Gj4ը{Z5h3TwX2,kuw֒rѰ&[xЕjAHQUrkEn~S7Ueq*XV}_ۘӚ-h{sRƈlKJ#Iax Ȳ+" ab\|'ϯXp$F)tbxi:^($nAbkxu8w0StAIG{|K=$Dhܗ-> U$if(\c:\)}px¹!hn!p ڠnjNڏRu9~?sṊѓl4c`SP=uK.\J#aF6fֈ1-S\$'< wh'VNOt9V2svI+i8DZ&TX$%{/~X UIq1&K(.>| &)yI s fы0W 8_@*yw%\1]) J6x߈P8GQN"ĄhuPK>SޚR0@oj!i%E1s\ YXϙ 5ʴ[Q^ۂ }(7a)~4&Ɯ|ϊ 1!~`H]bCf 7t?GX{sdoJtg1s;I'a8o#eùM%WRvj4a=1Bbo(imbҖ:Tz MJgmz]͇4Or'S8-7䅤ܜt1"[;Py L-aQH4e^k` ךvER$▵oV̸~8XOM^t]aaEP *r]pVbȇnװ`@4r1. f*!ZH+cgRv:^hB6Je'LhdvpCt?"%'Ps7 qY_.I ;Ga&!TK+y+Tߙ@MOː 1#w=I&YD95TՖ@`j0I+d//,{Ӡx=tuevPorZ#{SӉYqsm:·6x9"P?I4-f؁,3ǩ11M:0Fb߆}rG'He S9:FfQHDp'|jfp+E!h a9(*^c]O CX65~Y 7oHt}_ERZsQFST2a翤KǮ#^_ ,[rN X;0Y4>!P,m3C!bJKZ% y`î3!j't@ 'mFoר@D/k4m߷IKP!fCEÅJx c"<*Doy4z8%@y Ky2vUge@)P8E:'qƓrR8QR|[˞& ;c?z_$h0*.iN.z@WVMxY;;2P}qXon-}[.x}{3U_7ѭ3Dګm7#&ifiĉ$DISf9nd ip+btP-u#xBē;r2mA>uj4SDNMk Cm Jz&ؿ+VVCy EP-"tr,?Y,oT(ӏY4e7]@8B!`D7X<&їԂrm<*̢? qcqip"6IbX͢{`f.ϙ0p]>M3 G-NGAZXJasN 70fޔ:c?&L9.SxMJd#nDJKpynp35{ ۾Xy ,rjSz;GL i*.y2߁_`^хegj7܌$J$1I9i8?DX]&o*e)`f;+@!aP"~SbkUdRNr_s3ϗ6~)SB[$y 9 Bs5a+UWjNH;*4\.ţF=GӋGMqEA4i/} D>`bVfЏmJkOnA's쾺(N}#rpPXF0h9k:\ E Ο$2ä#HX6g{9 KXtkTKdKvc Zr|w@8ѽg`<РL}] zR6_` ίe(d[g7Gq9ZsCɧ@|yt܀S=g/+32o ڸb>z *Rs})$)fۢ{9|볰, t/ >u)u5Q?BX8aQ#&7JT|{E-^ f8 ֘5)sӱ_1G{g L0r:^0aIkg6Ez GC@+[} gNc %Z GǗQN=?f]թ\w TQ@}Ytf7N/PNJy{S ! IKGOfB8E x# 8e+꜀=oӱRɐ;LN"sf`c"{%GA*2&V0z*d&O3v;;o3߆VUG]T\n ۊ~AK E.GL<0|^EkMe0װU,|E=zYK}rXc'WѵfqtĎ 0y6ںpKW0·vӲ5Ll_d]a/ &5L !\Q"Dd]DoF8X^L׸HR̈́HA䇳Z&I=\Ȅ&{rwWW>@TѺqִY{:GcX OȔwI4z^x"Vj`Qxp~@R }0:Ƶp$ ў.:ҏ_Z|pۓ}uR@*zlbm,&+e{oeώ1%1sy"_Etc^Yu? L+ej7Zeh w#$UXhu MV\Svў323:<ĈoTq/IZva'-#bgР@9Ur$Q]G:Dߌ/)ʹ* Pօu,-cuYvI⺤K@THIgm,* DtnßIꓷ/̑>7H" 4C7IvsZvGwm wPo͸m׫0kU 3܇[GIUM]~qKv0NEs>X(/JBg1b֌틡Hlt* 6O]ϼHu,Rߊd:1T=7p:3=Gds%p4@U"[J7 r\q_=@4rC\4VJ-Ix!yzlkIs|舿aN;CAZ'@, >'pY?HSGnNwvZnҬůVhֆ5`\l8eYsTaBUFPvS #8F4qqK(fH~RseI9Ǒm]?Z7/ 8QyV74Xl8D0yemVr3Mj #o|#c` DB!^oT0`(U tEd3*gKB#ve(3lUw}"]yAchvAN-Λ/ynQ"@#D+^ `*nc thB3} Xr6l[(e $GxVmy֚J*)O ךغD 8]-ɋ`/iKoUcIV\xɜ&tXw0d={~OL[Z'Rsi7rУ넘"ݚR@PY}#yq^kz<^~8|U9<6h@5fz78 SV{-=c㣏]d)ž8L2feq~{1E$cVk[ >[ܶ#- p248? 皴 >F1ر{E#Qnno-|A|"f"~PQ%яz8:-G{@C#QkHN))X)w#p.xcΟPJs[N>F\RDBOҵs98Of*.q.%uPm{PV{SUX\Hg 6IU]uP JTC. {&Tć]^}k f*P5A >Xu9wFX4,3m2fh5?V"荔k}C\E7wnǽ<}1>"Y&2"1OQF1?'MqJ =`R;N(dCaj8E{[M&.!x{z+jb>W8**x+v"G p/ퟵSrQPkV da۶8 3ʜ2+aveUΆ0әʪ=̙XoFY`fmfN=J",I#ܒ\#p=fG7Hd~mD?cw dsxfR^+㒿oj*tUDa$ͨ*!$wPy !84޻}!Fq-_uG{l~pUG,FmɍGtSy)[j re7v3@6Ъn|!|FPak1:u60*a5.m }H@"47jEQCxq7Y ~FX/9z=jn2Zqf*2-xZ+CUm̟Oa`;YУN Ɲ$UJ+;VZe'9hB9-&H 7Ɠݦ=1jtR6!GDIpqUyE f|qY_5>( <]Z iЫ)37ߕgɵF:\1R˭f ڟt@6`Ԅ{[<\L".Nn VU8`&B};#'kB€꽑4/U:?&4\[ Rlh!Nuȫg$,@ WtŸׯ55hPX#~s@YKg;#T󇝖9%Q6֐=?O)%ĆNZKRD8lK*b``5nu2ٕqlmKpQ *y&Qawkf>h!J^Θg&Bd?gA߼ol|FkiuzhnQ^XB"j>=3-FT<\Lm#a(At9˅7kX{$-U%)}+TdHkh*/5mشV9K6VKGe~m32<_K@g& ƒ> m}թDK`KB`GO<dFߖ kƙ&hnѿjFq9L-%;|i~X-I@hp$bN{+& 9оrEHȴk%?I&K[ϥ+'k.,sjBGfmxqaHnTsbn<{\=g.x :4J+tjDGv=J}=jۜ.=L虝 C\(` @;:tX2|8e&y ϼ%Ԉ3S?q]^lfbyG&d7OI6Ol#2^:q!Hs0b+#;ѝ)DŽ+RoMyzꩡ#9I)q5Q%" <\zs3{(8?{oQfww4r]! ]!=_ܸ5>1Uw:cc`o KMѨ%B|fmziZyVz)КHWi%8wtwgbb ^K*8H_9j-<+腜aQ$螜bS)qYF,t|p_BwRڎc"Q;% oMQ_՝Bbg+D[c;CREW+n,]DkqFGI ]C6`~\202%>. PEZ~Fes\ܶ@ {L~#S]}X-޸GnH6Oa%C=d>5B/xDșЬ2DB"}Zi'SK*ՊU/ z3:C-S5ˣ18[i'wR>zKŇfm,\V9W6:xbHzw@ٰ˶T]&ߘES|ۂ5E:1,!dW Ga69O1UBӣrQ%f][\P^ {lʿ01b wi7~"vR?^X~-eUk`v>|;秄 ۸(yClYd?70Zq&(Ͷ4SG`5؇H__MMdΥn6zJdHչBՅq^D|H|F fkb[hv*2+#oZ(=ɔ9h"acH"Fdz1YylV-G,mAV,#. ަ#[} Fao2@.[nښ7U?fqG(> tsݥPGotiqs_2.(mxtU/íXs9+e3/JnE5BxrcO/tCYc1iTVpxL/jpmWp{kС|B}WToh ۰| 7jR{a)L$$?UjEY-}GzxE{QE8:\KmM)Sci *)jǠܶę.'= ृ;|;G< [x"t&CWG|+4+4*INJ7ze!#K;"*5}c+ 9c?4(^8o]KF5W *"8ٛi`繻{`!)ʔg4$F}T8f|@@;{aXxI,"=+(ig1}DPߺ\aIҝ^''*.SW7}#A4)tlz=T y:*fAe:&~Q`I%KqKzu}dꋓ<&@^/G)2W Ɛw}  \)%Jڼ c?KuvǞ\F\!u^-NI[d!E w] ]Yg6?/2[}:f:jU^o;~zH;5Gf)q\ xj8-dUR8C*DG&hiUO@2ҷڃz(TJ |E|!wo:A(J9@R\u_wbds턔&P4BՐo#KTP{_Tc62ۣ p[HdOZGXc z0=+r8'y b-)ZOIg[.A,*D̻Zf)za0_HGB6Lγ~^͔-. N(Z,c9S.Tơ_lQr}k0a~9R1*l/Z+Se{|!Ja'u|=nّ{V%[sR|d kH}LW`D./b@Aj/V] LƂ[JQ  '8*s|Ms3I + a%(m P0UadEd* ;BewfU!HVbDonwa~v h]B"`yƯBJB", e劘6@.C* 2EciNW@Hv{W32kiύlyˎaF@omI㌦#VԄdu0vb+'J)Ú&yXR Xt*ĉilR|۹(ZkRQa]D-lXd$:=:_:ׇrGXuˌdjNJaz\4 @- wS#\[4X=q`p#ՀF0(< w oNMlΉ:uR769F^u]RY)?##6*n|!uPq” !=FZPC&ncYqZ?S*2'E\(>Xޏ.wǵy%i O11 R^φR)^'@B7a/ $PX;2 jQw&$Ww]LW^ @z/&u8[q\(ۛ|;u>-V,>XRowId=L뜿x㛡n .1,0MŎ.OǑ"X lzwBV3vrZΠ6j<3*ߞeWdV61lpeYtlc5 f%Zi@t"oc ZC+O><怞v-և[ۡB-O3q4nabAJ,BJg-Q,|_*[.kV Ay!ts2,>|] 7-dw!Oov* kW?e .& ޜ5Gq5b/YSxȽD .<D4@^ A* y֚zR) I )Z086{P/I3?Wߏ\5V)p(JjcJ$[iw+5 drݲFq\rޏ`]qs h" w/eytAaRrIa v@m JASa+-̰+Lb q}ʞs\87lD$Q2ᔒ?@_Df=h@ˍ0-ё1n}*:G3 M%P9Q $擃Tf.{$x/Bss.r.@Y)ܙj_y.7#fOFn%AgάRk1)]Τ6Z0^`.HkV.p|9u֪AK؋;:`Cf.OA4X'>~p8L,Pce+M[*#F^-L&'`< wjK2n02~ulSk}Ƿo 31D λT{B.>;+M3VI=b _4Pl>Ndq*C8]դ"a]Ѡm wMv6Y_P6.㓾]D[*.6D1e5:jx/> y]bbl!~ XyYy?޷ħ05j)vO! ke<>--5ZU63-! ,"{6VE#''־h0zUE}Ʈ)fr_t7,"tJonHj*Ρqsʲ :PM{C/- ƃd=\ 6 wFmWٔK.Z+A!(͋ .(S?w . q/H-D=nWl]M3ZgxṑŞW h:]g,‰+4> Cf_h zx3$Bvޟi!QiKX:!}`RYl\J{wp c%놅)(ui[>/O%]n:X`-C}ҢyE(+Ta&eXRD*2@`QŐIkL0T~ۧqi)UCœ98U(?}f\jOi1|7+lFGX>Dj6Sw>*.䫍B^ rJkT{k@00R]CzLl뾦h;UAmqCj}0@IM/*]-jۃhSxVg9aue O'՛HkquԵqϓ-q0|bT$iXiR~2-qB.P$M3?6&uB%煜g }a@^y(9-O΄-"W~u Ա)D+:rqڿu/n^WBKPsǎ" +&&E2cCAw$Jk&80oA  I"u yJ;2-D?tYM\4!JF9oe'\Ps0F\_+oǸGpˍP !59^1qeRXum|o'A.'-paKҙ JI\822>w9}ДDvU;xZqfS?%iE |8ltX=)6YwP"jO鴼VYȲ\ GSj\xgQ'疐?-c1dˤ:N?aណg2R;HNUZz4㴗XPOY8^_h35DTGYmj]U&LurL['ndCpTfC%πupOZCے}jNk"ZM=1mtNa,593KB>s ̯va`YZ{QǛ1Sh:*=U9 0zO4!/&K Q(M w'ڋ2CGb{C%Tw2>M֖:pf1CKhJ3|k-[ɒ$x/_Ry~oQ03ucNr4%GhScK !%fr4&h4/>0фf&1k'/ϕhT/ϟHA+Ԋ,v]R+kc~Jgay_\$-1Jȯ)vؒZ"5}a ybe?`6' ԋ~O䏒ˎ.\t mtkxToDOq$AO tUBD3Z4c r.z =09+_hY0 o&-\m;)/ʧ$$'6]R7/x9qU`\K%}}^qc{,}ၯ2r| uYZ/;LbSslJ=m=S ;G.;}~V+l D J ӯL_HR+j (m]mU'nU"2uL{8oHfn0nJqyqlFV ,:]װE+?`83:&2+ˀQn%^[Tl%~I0+ՈUrOэ#iq`4J tm<Im!&)Wv52@V(l9`{Ty({$"&6V8(G,AJ2܍2ﱜ3 >+;4|{e/4HڍLR6o ",ȼ+G]}yzn<ĽshQ,|45At=QYMvm</Os\-9/TU~ol5ŷgA<)u &AzQaCeoVXBem"WTܧۯtC H㪔3VLbEQ\LnhN5/I?󊈩E*?`hUAH0B)LBX*ׅW_q/1>>^| CDTf׸MU-*oIo7f O/kͭŧ߫{F2;W(K3<0L~I&ik#n{ H\>m79a#'1os@5Ms<;ŝg 0eP:g$ Nn/wvu%GrfeER.;W#=p \?6z'|Xb ȲwȵekA\:srzxPQ} Õt  QFEBGhZd35G^V;msb<^h'b¶?N@ſbXG -rۂ5'U(q\2Cu>&;u1.I-&$xL? hX|(+IlbfYjoCKuO]뺪V[9@_A{{&*'Wq烨rlJ#.$4u| ]@>@ t:!s+niE\Mt*L)>[uĵrϷF]34Xs}Փ!a1D >)||_> h&e 8D xԕhO4v"R QGd.o -hJC~TTrB+afq++/Z\k);pUss$>cRUj~Oܝ R-+_ zh6ÂT\,9h9}^dؘ:jOzsz6w\M÷_ӊNip۬dT =;i@6?op+' Va‡·*]VUACM|'laf'5QPA:};Nw?)FĩH5ӗA^~^Te1Klp&~dh07XЫj )ÜWJm@5C/EYj_jh=o83`Y=w0ENjN,I=B=7)dP<2^#iB] n$ pd΅" FU|J&[a/ mR'9+]۾2 ͺau[T_CY&L.vƅǭ}M¼4o@ߺ 91,zn4@_)_! 3l?x)^#Dև{@^@pYXquv^2gec.Ǜ6x~E2t97oWr+v0r"C\@ Vd>(jXը|JG|c.MSl7Ix]yð[+tJrSnc2Fn1וmxȊ 1e|fqp H+\P׶ [/8xeX0Tk/!dkqȥ!It Ɍ y0 w *|5̥cpꫛL1-8hd4Q@ XW3N[lz_C#eˢX~ ,'by=+-iO;gnDHhLdIPZGw>+vm2Of #& }SN)$sʣɠ6y9we٨]߼2EtsiA¤ cVܸ1dقC-օ5l2 pK`!$Ho`@( CWrܣ"Y{x~\q ^y_TLRMmsT}Zh.0~$M֌ UW G3V! (5Bd5R&Q;df Kmt)VE_w+|1ѭLXīNV$) 7gh]= ,:\Sb+X`%'Ă独~-;XE$/vfcH\_{>[**+m+jX+)辉 1zsJd`qhE~H#$O s7D1{z֭~NNxO("&2B @釵~䅯_G0@ `6pS-Ԡ *\*Γewq."wz9CtJ'.׈j@`»/ѫaB4Vi >=s>M68V.0;wĔ=nTzgw;FXp#I=}I†E/>[h汱63eHA!w:i@ |C|ѹ˧4R)V?(y#VKe+QZ[z~o I6cHrn2&ù/j \cΟAPhl_m=LX6÷GH(g{\UoYS~svf]Ţrr! nk iCB׊rc0zp"8[a~T:<AcL:~JC۔=^ab0Ie5yfF@Z?rgf!:sbV|a)hTڲs7ʘHc'z|G&rUWfJmoNf'dq;%~zI$ְDA$ǃۺT+Wg" Mfp閱z>A"m`'$`RsEOV#8Jjf5.l ~4/N^3[zra|9H߱WꩁPׯEmF}He!]Z]`Gt#gZe֏<\ OD F9)|TA_z<:ƴn~gF#YzY/N{z(ĺeW.fC;n'eF_#)b7'Km}x1JR b|ʠ^rsfHIId ?-Q&'_B+/nZ~\*l4>7AD:7}# G7GDz3 /5LyO<#%cyyʥ8ݪAqp2 tص%5Hˢ [ LՆum\ӼX\h?: C2 VKP!2c? &t^&HSf*ڤ13HNkTD"-Wis&X+JZ4U޳ ~d(H3)= 1k̝ͥ-H5c(P*(d+9/Ȉ7R6IG5]B wz,<%_老8I hǡuo(bumXcե.VRȠ&_Ԇvp&ʒ 7ꖽ7˴_BI0nmVOTX;;z1[IH ^a+k.Q2~yS|V<6ǺxZ\1T7,޼P50RE-ܕ  <4}(xf,e9Ou ^2j4:ǤHN0qZɨ)~ҰTVwػqT!nv@@J7 FV9, ˳=Ƈh/̛T%or*#"i>0O"`YiXK#sK4(GTZ8>;S.Tp!&D9,]W?3w"V7ڕ09Ԩm*L_늣|JZO$@eGyUdA-P_uSkȦ\d ?E97,rҴf)HSgJ i')S5iZm =֟띱g Q<qh2 - 9/m Ux7o#Q Ն.Єz|14#xyiZ H2nx5C թk&!/OxPYn?n8i$]{؋@6 $8Dur恑 .#qP5ޞqV#n.ߵȕ1/Մώ{؊?k0u~/CgzMXL^Ls?{ Vb?8F9*~qxndЈӁ|269q]:2 YR*A> r=/YF{%u&IQG #P㗺)z?B(Ru'k&/㥲oDtc푩 E/Fv)ϊ2 2:Ámؑia0?* 3[& +Oti`!wbD^Vl H{$UF`TTdl_h+';]43$4+RegL[%*F3bjl_ ))\2M$b5  *X(=h3jq*0}zrS 929}W;LOΜ^{;T+==Fj\|=`m@'U 1:ڐ%PZDo=9ˊaL]S 6ߖib_'' #?\볘H9Rʫ3b l 8QfkϏJ0*Qs H)#i$H`%%k~nā.̺Fdeo`j.X N&{<4A Iq?‹А~'Tδf(>%xF-6sÌ4 p1\Y9%656c~#Xq{4OaǒozFX>3N>züc `|=Zm8V)ҀK 'PVovpTKu>l#]FMϷӅe }$?)'tOCwvv2Xs3BQSr6 51s'QV^ u y9Prq1vwezUN2;KF'#75G1e]H sMμy%N8YmNB }pcA7!Yq \K!/0|ͧJ+)j2vF3xF_k1OER\TӤ?y2` ,ҧlvB۸he#ٷl!Ӹ Y7ѧA#,_'/B9,T<!j ;} Iaŏ?#4՗mzRˁՉ+KNڸK2KT`BIn&hw j>5YB`\x m.b*p;9zmŇ06\QM;%.BЋJn ([2/ ̉~?'C`ᗅy8Ÿ"vE_Z V /GQ|i,F8Bvem;~2QloP֨ocT~<( 1Cn^|3Q WչsEhoCD.PInk)-)gY3P"Ã$[_y7ؖ:YY,ES9tha,%~;=a4P3{J&Z0Y haO]==g@ى 55em*mzߧLhi2#T /s:~cDhzR4QcԅjMOPh s -8t aoqRvaf F1- K%`knu/{%gV& {8 F(νS=\m_M6!Xˮϒg0b!N ryu{fׅ r\K^٩t D)[a\}!,ozADvUj' 28\4tV-ے@oG;CDGH06({e&<9K7Xx[pW2։ѻDY08W Kt\{AP1I?ž+Y! GXP"нxI.GƴG^hZ.㫰 o+!c4ӥT5^ժ%lIܶg0j'UBڦ 95%)3۰_1ㅳovU97wJCHbT9pМ!;YĄĨynQ#2ɹ{=Ä&{O$\ ܍3q ĜtlYqQIҵDjBFp5QP" U)O,JCam(tCk?Pm 3TݢSّl`3.q24;V.TlS,tm-KqVq{r*|jpS}uλ*,u+ZL`b㌕V&Ƅ;k=7YʉpѮs/U`4fu!Cj\Λ.^ !r {]"UZ/@;!PSJc ԅ(<~U/))8(a͗Y_g c+¤1U㈒Kg?{oO݁#_nږF[ģ"6(Dİo'nٜ|*=[È]0 Vt#ab0$j yqC(E'yq*f Á0RB˘ g[|SQ,Zԟn!_v CNČ ]&. 65C>5YH 0Q 6o7?RsO8+1%ໜv(e`3KKg޾h`3{N1ܺG4oH"΍Mx('uSi)L| Dj"^]{5] YPWSL:;U+F"0oN9|O/BЖj?LOP0.).%"2Y2aNӤw;Yk+ Kݜ%IшRwc5Q#Cɇ][ h,IjB uUŅ?*}ݔtA+ iOwr%G퀙fv"h:T`h!4j}K(MO>|"'Y-fZzG?- :~ -{X~c(*:*0Y uNO@W`H^e6D4 y-WJjY=j'1}\%f}'Jw"0\ Ha G FN5Ӳ,h0|2ӧh!# o&[A~uЖه9 qkV\y}5 gwQexr.`G31KN nxjlW13;l0o<6ۣ}wn1&0-*;Hn=0WM5p1, 1\qn ~ HxT%cIF<< q7UjD` t8XU?#C?̽ElZJJQiCйepQr=i#DbǸͻAnST_+Se@5EAdAVC-Yώ|n-n74Wr:]=ze_ȗw!j`Lͧ4 ~Џ,Bݽ9G,7T%uEVOګԑdrzJjƔ"6˖f>%6&ށ&vMp]t)~NIdXPFKB6 21TaXZdkc×dNkM*A#JFݘU`B0JҰw1I]"_Vњz*SwnFվZtMBfy_0],,pNά2z,7!-u/,Oj(uf?zgӽmF,W_ x)"tB9ZyCgi_ ~ K^4$)qr4KVgۤDjW ӯ4_CgmńQuLl_ Ȅ)p"mvw#ggK*L!{ `:׶ҺD zՌ\#ή" Qr`3 30Fj*l@Տ-\ŸWYxd̒K,礲wi,Q7; oE4@>_HJ>wxq3.^dr_ tˆ<,~Xzd^e"֊J|@?3 "t2n<&Ah^ B=6d3|K|>Xɣ}ʥ#~b}! ʹԇKh\j<4^"jzb-pyŲ$?8Ӂh8I's إSyBs{VEI{Hb!DT` '4Bu s*IޑS]=͐JoOcP@6n#ثN8ӉV(XA21ڀdчmp G€)&+njmw,& 쳣ѡ擓tNR5$ @Ǒ1ʃmD\LO" O2m 4S~DnAF# yuD7zJ,P N*L6we_~R1d}7EuCSʗ8œ&/Z_&{΅!\Dlj{ti웕ĉ蜺Ā$YOF阀8]_k7ԟ 4ɂ|sh̹-s!.H8=J?]Cu0wxc3gHFb= 7koÒTȲubS^;jV^@ @4I& K I!bgՕq}aC7xV=vyu#ҩ#ɅqId" ~KL;yK=4X+1%pEU0!CI0C\%f\~9GD*\c/rd̮u$cMj+V03#~t\X T4N?['ͺIjFR{5283azocnӚ5ν.sr#cߧAe R0 O Ձ#xwnf$OBO⯇KXƀ^L!e-ߛ?10ӾvS1Uuddž&Υ֋Zjͤi,9l|s]sڈoQ,ugqaa|sTtzHg Usȥ{2rB T Wq'fKSiQ-BLAFF^?@%^ói\WoF\7;Ae4OzrTb ]qPY̵}bgq+,I)1{q>O>ֱ `@e4N^@Qa՞ .ÐJ?RrXC%xo_EWHr?QzDgv^~u.)B#i[b)l~Om7ei~i]@>s'VhEE'2=cvV^>5ۉBB1A/a'_Zגؠ̰n.Mټ*i\~g"NѠװ3Je4E1m;4k sPaRݒT&Yq5D_I2Ɨ+r?F J %JlCJ/{C5O̠E8ӫ^:wӼKcK\-~'>ta=fΣ,UwtWaaD_tǿO/d:p)ƳL)H7l{G\4<FH"LiIi R!Pކ -dǔ ,9Š"_/X.XP> ž"8|GDMT-,n|xS$y#V f,S[ N栐@mܛG- rl1_r(dɕMڤ|X-1Z7w%ia#}P[ n1>nyq:=/HJ 8ݼHU#6Ѐ!6:ь|^vî׸f[+Sc%pRi f27 NFXkSlt̠,TqG{<,ͦ552(Jek66O =QכpoaMdMd Yz>E'~yxt ZXfy\gŕcY#k5) ,pKjJѭdRiw? `_ )WT5Q*72!ʤ|S!Ϸl@՗f&nhc8dr6(DňJ#M 0ؚ ":k冓%] {D/R,j3 8=Ls.͑ |!? Z>uXM5dWLnoiBeS0Q0 M|k&%DQ~8} I8 ~Q$m*$ˆCl"2u Э04C 5 77,YR86"e Jíwg]Hl>.`9`!ni)P1g蒞m3 1Z_տt}t©;:+8z> *l .LZ4NeȈ@193y8HP]L-R\w$9V˅6;+ pG.PBT/Od'}qIQ' xC˞5 8R W\?hHC-.F'@`:faliaJ"rnUAʠU6o`g U zYK{+Ϳ1"w;hHLR`F\q'00FAf_q0ģpdJn\Ȭ:|vrWn jWG2bd/{ˇF-W{kwd\wTGAxqtG")!hL6<$H1lLUeBY'sV덮pfw4sJ*!I78g@CD7lӺk ($,IS?nĞnG^7%Lrrԏݡ1(&>Y2 d3+kpI aK@+SW/H(A?usˑ'D^Hi]~|ő$ۋ Bi/kOH /Rr3O&U8ȦG0ErTd.ZXhV7\& 7jz{(ޜK۫SR&= K&(ɺMOsO'f\k8=)0@ZgnDZwFGiՑ&GAj(j* "I'Y+-=DtvIP%ݜџoA?{Z5%_QTQ|SS3X8P*j)NQzf$s)ײ='pr+M"y>w`\d-1@^c4 E $4]V@B BdSiLMbV4v^jiT-z \}| Ł&КDhfKτbV]0 WD+šwϧp3aGOƞCOТ7#=@mQ)9 YRr,Z;X؛%mVޭKP4whg]Cփ=CHw߁.Ts bF"8iGw/7FX)B5Gz#7qrS1&|1ǡYhzw-[x6(lHFsgHIuK&1S6"ՕU!!v d&zXB824$KfY6! A}Ƣj/vclx.K>GڙSH<)> Qkj!u Id41da uID_Ld{@P%,ʊ$ Pj#DHgy#Fɟ=(%˜yS 4ãHz"^ jv5LtnT+D5zE]-B+x٤,Yv%x)\^x&Kt/uʟZO7 {ie;`Gy&Ps1bҵ>uT6IZ*N4)U+/XPe/@|sZwr&x]~Λ%15^m5GX~=Aԑ_!)ٕos{4y0&FJS=E א#,֝\@U=oJpH9knq(Z䢣^ #LȺ4a { -M4NfF!'L/jg.hMfdF-EOϙ OŵF2#ʉJ8 ?.+eMq"}ucYbm쒓LZ"XWLHߜ%͘3U[ d\iN ky`ǵxbjEZq­rx= <\OKUOԧNY24+ڻ|XwdmXXVִyfpk}Zo;_-aEڄ){5D?Ƒ'Du6{$kNG*;Ż|#(U͹304ś{"p-ICo5l$'uCma< zb6Pzl8ݴa=V6;7.wnmwI?g.c˯)mjP{EoDp:-ʼKIG08OSPg+xnJ~0Vj{<;wa xY|˱w_ZOsҎ15fwVΚ-vT坣UtFK=^0|1@ o6ISRL;Kq@cSbf|]u+wiz_"Oi{KWظ$!]sYX_Us 1؅#q"?lg;gSbu,iw,"XtCS+`IƬ dD(]2 0}2-<,tK8يjRPi-aJ!sxL%=0>Â>f}A0=M`VIhR`)dž{ iK𜙏|9:;eNe %3隞yH>@8$D0{ZD&%?lmhv,IzXd;snJ\DFX 2tWE#jC@6{ T9  {y6%p;um]m^>y+`F#뛴(vZgۛ>L5v2o ? Ό?z bl+w| !E:q;ŸC8x#9OG=xm2m e pt@! zT1eLPc,V*Sue~v`ݭRs7 Xꑞ*-ݛAs|'T S8K%I Bnŀ=^vaP4'=׆E;p{rWO?{BE@)EX”J%kԲdYӷna+-fg}E{ $!+(BnXFuKv:wLy&L8KX7ٯcހ[`-mLAu';)FOm ?v[KU30b5]Gr~ TaX ܉*-cƙ052YR&gLFiFOɊ,1x^dADO541OSնUoE?WKi zm2Q#t~ X&qmǦb/vϸ="o@ZZh1-P sa̬D@\Q5cY \f rL[<ͯ͘A/cr%ؽn2~jBbVfeڋ* pl/* |-zAD{I*#6bk]2a_qN)4;) = d-hݰ޵ - JY}9ų{j1()putse|Z:){[Zj4d.onw%mZ^Qo8_ ::3`d،VN]*G\|rbJ U0@ g4<%EFwk3~ kLڍ!B /ۜQm C[6B8΁!U {{jlBfp9c Gӵt)r9ZfL'`4'@cD6Ν7z`YS7zҺ0Q2-au '1x,0f}>9wq&/MMK2!L7z9dYӅ^u1H͢,:d6:sSNy6 h>n#Ґ`d/d覃Tށ>Xh)-] Y:wT2C:ʔZV4G[sjJ#  ,nj6}IV.?g_~R&iXCyN#"@k3\tE1AVdCB=,U$vop*icxÝt#@2"]rR:S{hxỼw]F)yXT#/`Y"HSi$Z At`'GkH( 4.R4R9Rה\jkHƑ[ؐ#8۰ M@ȯF鶒RkYڣ r/9PU'ᖽ'?Vq_r-Ir,{Le4 ÎI-bmOvOTo:\zʮcMpK1.#2gFY `rma1%^[ 2h 5ˣLCcB FtoGS a?e(Jح;dz+YaqY4UByNL+SshBSNxlbra6fVGBe uX瞪x Q$@h`hqLF8E @Df ^g4uxm'i8ȉPC6Z&BgRK*K'űv.hĖ~ EK BPF |*e Ȯ>zB}}KQUFRv Q [S~ .=7+ζ%?E\߽{'IR$:37^w bzElr=`1mO?LGO;O8hrlo[} &4ʪVDIwQ[1Fkz) -hq=:u6(dPWؐ1!^ 428Ph25|ɵ 3Zb"E٪$Mww֒ӲLC&*dq$r:a?:/^,5ط"VlGQE9V6uHH(9DjJҶ@0x,ѹ{QysyyXa;Nn bXy22DqpiBr؆2$jnBS(gw`Ghu#8(+ # e*wE Qf`A"'3tη5YT'uAd٢ G upƽԻL,jYr$4p`ICfk3e>Ezx*+mX=aּ @^Sc9]#@.KQr?eKMI@ʟ~aׁ(2G#?ao!Ni*,@*hS'-^!b?mB%b \IC $=V}a MS <*q8CsqlZ\ld*6ܚNl٪㭻mo/۾}|Ϥ?;\ϗGcQkdr 6z N&рU#9:c޺UO1ׯJx.â !=2%L^~|<éѠ):4b{zwI&qF2CSg0^E n%Byc~y=621LfU@8 B)7[|N :rl-fd?T&_ 4JE3|pߣ֤,պ_(V#6rVD/# ;bA#0FT <`zjsN!h-RBc60A#=53+&a7KjoB@ƗQlĂ*^r)ćƣC 豑=osLZAY[XISIZMCUmPE˘g0Z[ x,@\DxZ8R1#sg@ĸK\;Ӣ8`ߌ zo@r ox\=X,/hܚO[tߓ;Olk*=p AeN$+ucOL\>N%A*0[ ɱ8GGF,]ZKľzu*7*4 k wTmqd :$DKP;ZԘ=אfQ72*ɵI$9"VsRd+pNҏnR>:0I&oDTTr>h-eT3ˡӨ*Rp\B3) Vc3'5 ݺq{e",z+*Xm ޠol))B.~QXalK܍ \mhaP ~ Fr/S]yv߾7^\赃xvݑe؝.5U¯(@OWןfxC{7j X1?0#*u2tiGozZo~E^Ym/hClpz5 IP5 ʩJl!19ijK9 s eQ=ir% %+#[!\o#̘Tv&DU$<^-ֈrO9aLgb[rn1ޮL*ih զp7gj}˰E$Ge vȮԄ7L*&U/Z3o7چ6I3AfJi56ې e[nCJc3 d’͍&z% {8שMc. _Ѕ8&Ps[q7#ʄE}&a]b[6\LR\:q|D#@gr;z}O6ȓ<4JXK' -[IxJ3*(I~f(ʝXD(/Uk%{_xv|XFQڀ]tD'cF8 %-nv?2f|>)r Ҧːl(d]{g 1v+r ^0ד?@)C:S5l*gsr(W( Ȟ!Jոr 8v3<6fTmEY)a4yiT;:D{&XJ6 q A|:U`]\?1B~3<=^Û*vT2^Ka~~/=NEj"nϣ_* v2ڇ M اtyEUuUՑ\ 14).b_9S wC2tNCeQk3߽0$Z Tɠ `e5J B) q^: U&c9G<֤ eD%r, 4`"Xwl3  kn0k9 w0G@LM##&jb[ޕ+4ס֩aZ]P(>*rߨ:K v,Oe(;ち( 9q*QLh\MĆDpg疎^FEkD7FLAUyS)ý 37/B CxB5 ,+GS dֽ|ߧ8.{ȟYB gR\"0*И55Pv-Xq +d@Q@=*NT̾#%|ih%gd8P̳-  ўdWPjM 8[yx =4ʢӿzQ!\@P(*]HR@Q3AH$WMiMvnj$@0IGfɵ)WӟoW5I5p'%:X+hE8QZM9,St#E p d ꇭClx/E$*Զx/:!9R/[eTka2kgI$-$QMUFV dpJ bD,cjd@(-Yd/.TCw0>f<#Ӎ [X dܽ:3o^͘@F]9 cEΛ%/U2+IJ P=Ȁw#HH;d8@lZsY `A@*H&$do X\4)xUozw;@69 lڠk:3/=u#fl d\YYǖ&}Mda͵kwZ Aa芾\TqP:'5oOVlZ8ht5n*vX1Un&*'E/"qub$uuwzb j8e>(5Y u0An`^!sŢrzSln(.N` N^D&QwxFxӈ¿`Zٍ3~ ?.e~ew22w].eew׀kܯ_/]V_A5Y+9L&z*Fn3C <|Qz&7ed?Pz+T-p+^-Qy+/mT#& q:/eN}U5yHr0Jm,6' 7ӽYAvK@=(l$}>"C+S*|]:KsZtSoͷ5b˔*Z_MV$k5eO1g)j7QR*%=;900(q(G /C8 ,]~#Ym[ֆ_ׇٚK`*BQk Fk m<sQsegǯ@s-Ck7;mi[3yÒ;XYJ%1Y0Ͳ%`OjѢ@H,SP?qQ :!75q' *!R|˛gfZegZ edVVqI]FPzq8:Iww,#!w^⼭1f85ȀH!z%3q}v u+:](k$Uzb ɉ[Rw*+W멤:t&CfMP)B(m3!q6ܜȒU٣`3L\xi'0/ 1oV$H-galwj"kj}Q,Z] W-ejPcwUVb;\-_l1w{Q卑Rc RaVZf$R&Eف.ĭ:`Y lS7Dt5b ef)ϻ$o+q/jix{3owOr2-&\X2Yy?7C$?p K_Kf){i!i cEN0VF u'!x|2L!ůA !;2$Gsf7̷y. ˵fn{“f@5ښR ؠ,ݾ.vX.ƒ@"{?‡GJUY, ĵabǥ3M!Fd$iBˑ!f+Z#PUl-ck`}NWp3sG{WmЀ?ZL (ets !e3VH -aij4ADD!>]S-uPo/B~N0 ʪ׶8ɧHu 7X18X`x]Ấ%LPU$\H$Rw = ZMUЙt;>3ٯRl9C]N)/n2L,7+샀x1;Cj).҈ ,t U`4` L`M[hol;qZ. ,?âWP{AJ3@xc,M܂,x@VU eɌ.9'C}!29lmx/0 =}`S_Y=Ikc*$Ew_Z5yjf;5gMQZ-d_R0>1!>{)iԢ-hKa : dPeZDGw 0&V]D$5+Ƶ>EY0uI?@7S< f$ѝ!(U1N{•;Kbm'ԙ3[xr?RIIO|c&ة36t0#aBy6X*9lM/mN\a[}{׾^{~xRG蘞O̕+yV Ht%~O$=*$֥X(2eځ*hkxǣ0Ӣ;v? PN6c I#R^ۦȍ{ ?O_"Q2hX!RƐMc)QDzz.n2~ iz;rj^J4OmT)|*J1΁/S}S07pP^I!3ΚTq1cξV {E׌3cb;|NJNnL@ $UC0g_pwDTh r=)[ݸuZҍR2B:)xQއ9A*뢞O75\k(U s~mND *YQɷˍ^a9+;PLO6i/}'8Zn3w=_xJ (׉okdzVJ}(us{AbY7 LfY{@"uࣜ1`$PC2"e7MkRCZ-zi/) zQmw'1bŠAlc8~w i=NlѴMSP>#/:4w0~N?: jzQk%c̺GaG?x7*p朎R[`3 kjM6e"e¬XK `WwDTtq0-E~._\=;A`,W$`~}~w!^_~߹iո:_O}{6iQ%ص7+HPLݨTQ&3UR'ʑL,*ݽz̞.4O43Ph37;7bkN[ֆgLo0=9.@f;tXbbn$5~ĐBҵirs{E1 WW}S 'x$k~</Ó\\4igڣQ WT OƇqDQ*f+3#΃_{ݶdFRRd'8eGIt_V:w|HB$duv,'Ygu3k  صoBrWw>Ne;N gx9ؒ5t2qw [l{)DZImhqw D|^͢+y$RMk}=3IJ OeE='l!cBbZ,[*nUfMF\Җj4Us[[Q=X}N K3Jhı]GKP[׀&pDځ1BHDZғi"y/T=1o8t8 1}okƚ.Jڥf~zca(j,K~6ۜ{"-rGQ%%-Șt)o4鋍NJoљz2}Znm慃Ll$T7ړ>eTԤ <,t&^K\osVwyF3m q+xDE*δGzv^H5d,~UY@w%-ɚQE'G&"Be!+4`r#Maj1qklQ3>xY:{tr=p e|g",qxriѾ ESUɽm3ٙ;w8y-KÞtB lPJыAȏI5Y+oOoH6g%2+!+y%oE)-Ul#|-ޣ. K$] r'~NRNY:`?ZSÞ-S2qWhͅ'4wz*wq88Kv24f[)O[0(x3(E ?MTQzQWf3ډ_7ExL-ԟ)Loe#  ҜȖArN鑠3ҕ;yw|v䵊։}RPR84)`dz ~LM (ivSԲ6}%Mj8)TG[%zX_X#[m7Q,JrnRPcQuVAD;nC/Z >>x2?c*~DiLF#2[m(5Oa$Lc: D鏴6wcJ-ޯFpg*uY_ívЖ]j'be7T0'ApD&2+`%iA:^Frbl|>b" ]%y \"Ff`Rޥh1{i4-dH%].BWujΒL_Iq9[+>|~%ա 2 /_*!M BѡRFIni9BGrW?M& ks4ԻoP3-;>QQD Ut5l0}}wQ$hwg[2\ڎzzE}kؽCU(鰈!Yr27uLlMT$4U6&TmkyNRqWc9e{ |8W_|x;ꋯW:w=M᦯:x í-1{9<$6o#='zk#+Bl*̂BWr3=gz~l Hyh߇?m~*s#vECID$jzݡ9u0f&+/RK BP9p\ڄɾ}Qve Tr*—D<YX!f77薲'0p#ly_6,G/}svNr)wy$$S1?,h wBևz8aQ-4g!)#Dù#k֊Q,:3;W0YK8?FeAW$o5+-Lن:Þ'r'}ԗbL ޭJtA'Ҹ2vɌOH*ERȢC+; $43|0,pU4g53d_5\0Lz$^tQx08-+7AƳ/ eJ%7jGY%1.ۨM'*Z0eEܮhmo-j5Hqޱ!)1+;8>2 w8DuEHz75Lb i ύzS `W6G K8#00^?>ͪt#׿Y~u>ż}~}c7w蔒]3-Q.$BEɩ,5ci5bLjSw`ߗ tё|sS=wG?)dLfMդ%),8M xyZRNAG8͌C P7^6Pp[\Z)3^ac!faq;ur/f,X%|V Bz2a-Rj3 ȮNs 85]@Dy(e>о< +? ǜ V)\XR~۫tf~: JO(RZʁug5z4!&ĪRfYdihN7̯P[VD# 3V5LW)ϧO଒Ɏ8/^pTHY\E\O8U IhAp"k3k8xMa4H3 $; hv-f IO?>R;t]Xd.$nD2 -1DXkcvz%S`/ ŀvrs{d+p3=\;lRMJCsȜ"\pM$OEI(UhRrZ*!z%í Kt$ڣGys%RAvxE1&vS]c9݄#o=#姫HbNQK6"V4mG7%RIlIE|sc6 ̷mXd@Qa$㨍X9BT.& NK B`F( gD4MԮ[GNpX/;Oo((Ru&,= 9YiP{WRÑôNgU@ajq^XFS@2JAq׍{?X ȩlgJ}\xxK:xIvQv:n'ֆtg_xz6k~w_+/2X2q6RǦ#9 y瓝9>cEwPe^wb8HRႊn\mv9|bInl.OEb:[# wlI.e뒛E#Z3NJϟ^1y|sdFi^nvt.gN;}2[nŐrIfs|(c7B G3]|}eq;m|`Nd>amP@ 0ߩ EiR+ҧ4olB؁  ZwTŜ%:bⓍ1K9.q .76QPg ri";̢G>cShM9"\OR 6 yJ3 ~D",#}A6)-%NA%@`( q ZFꄢGس)%umXy Td/+⻾:I"14ybB.V L [̯< W~cZԨA`27mx,-ґy kW8NuAw]V+ِnCډ@zkhuڄi*aVҕȄkm?HMv ;]ޒg$.AU7cU`2);÷)6k*NEcP*(C =|N0վ.8?{/b]WPco:WxlF/&7 It3;::$QʑIM8:,4@ɕxn#x2VIQㆸ0v4vV}KFa{D&]G 1!0r,'bw9:*o[6~8elؗc#1![ܽ8H'\v hr>=u(6.&l[A+Y)eJ<0j7} GqQn qu0F|d>ZESը$[ k!Rw lLaW9YגfOZ}Ŗ R^"+ Eυڎ\%Ui\`ueH˾E!`s( HH\#@7 |8S ŖNY!N8ɔ+=ve-DN.ns<7˕x!C؂}l#r~NwGE*_o[?Bm,DYyGd7 K\] غŒGa渡UJ1X 0&I6Ki=H"+f´5vF[DZB5I3sօBE/%JJeOMl4b-,~K8%i9C u=xsyLZ&'5.;L&G[_`g>@P(PRR\du<^su a4v&dvJTq]R@!ٙ"<'/TAlKNL2 ?]Q`lVbYąL Gl΋; $wd>8|$|+''g nOX p2AmTQapޅfMopXV)ޮZ̭,{ cu?&sȨ#=/ڧғ>Yat~`$fݺ*?.%g +t$a麼 @ۯ%^PҐZD\xߖ!u1ɁHV5{ս$ &n&K#ңyT9j:@\ 8z G&fgAўjwFXprs`Y|¤p'vE㛲B!GgrVeHM=JzpƧ4^r;K&k@B!(;Yo" TAѬJD p7v|D?s,:$-k\FMT8Et.EB>vp[޴ß7wyveAG. }Ky sYa\i%O I7aI8 IUQ͉KkGE$sNo5g*1RעV,ld}+e1[8/ gPx!ዄ1p0o`$exGԑ$: |Ssh4ҔV"gZ.m acՔ~ˢP9L==,^q(ۙ0QV95X Q(0cȧd&Wo0VK77B,ުs^qj8/Pw<+9곆//Q!po8H1g/8%bsC%@ \?6FbjB%E۱OϞURxeFzs? t[wFf\D? ]7ܻ?X<XNE;!Pp+nw#Mm<ͬ9/W8Ϸt(_ߩ)囿1d>d;yhޡu4m:v۽8uzY.o8„,\3)2"-T§ Ea]p(A5VC" xʑ8E%%K´4ix \L G)0<"  uraD yD6h2]_&(J|^)»=,,.gFBgTRofʬ](;8GguHFכ-f=8opme 8`j^zUGNcW@ ĪF![ܐ둂U c1F)(#׹O:*TQ6Dku {ZHݶ Kq0ױe;6cor _py_iqiP7%K8t8 {]]GvW&qGTI[6x6٬B}1Rn{4T2hOs.H3#pاȆ%'ixWlLEr1^ 2t0ڷ*"bGbPC%ώQ Cf^S8i:.~h"A*&h-h&z$05VAvڿ]B 0Nh&сAlOL=vь,XUGk0W1جn;rӽ] :tlEyۦ̪1Ax1ctt~ƛh R"lit xv:vԓbze tM# gBq?i\"LMps7=?лYI^s>0$b=T bhԣ:ARzsȤFt*Qh>x23)Ec/>7}V|~Y` 5yb ^Rݔ-U4Q9Ξ5r?4pܔC+Zҽ:)Yκ i$aLɐ$MEqGJ:YPt~,'Kɑ2[7]滓G?@ *-BBކHNbKb\dGAJ1b|р19}"@l<Sي!(A3 "ͺdfEXKS#v98 6U (@k̜J4rZ¸#!ir>!f U,͂s[Nuy^ f4Z^xBky> DdfHQJSǺ]H&{h(wj=@t1VM/Q_Cy-w08-ӈ4wbU6ij7\e>NWA)`!3f)e/S<'-c$6EKAxGG{srͧmŒܨ`}!L P{@uI!G rΓ=EI)=GI#­GXM4{O5S[gȿw=Wvr1ڹqjNnZ$~'\!wE%c,Y G1 %P t:5zgM(5+5h;p zl?N\mYؘm߶+{( ڡv6fԇR O(/>|KjmfX ?铳YU.y *Dl*aL|Ú+,F .sI>yY:Ѧ _:-!A|.g*OgidT, x` ,9դYVAږ  m] J{Ӏcܭu 4VTwA\B'7;2;er Ԍ)fv=&t'j$iY8$;uX7fbTZK% Șfgxs9j+/0B"' U% bf2g ŞH,uJjUGbNEhAsǗ_/$c-XdAJXuZ1Qqg&g_5hDSCVKitH#= -ج& .+9nHv}G%ELI#02\U6V3qV*eq<4,k!#;D DiDXS_3,k4sE}45Xv/Q$:1.ewt G&|m8Fq1H]~;*|>g-@w7\0hE"$VɞD;R+&(GJ+(q}u_j-&¼ߊ^7:X1D2Ɉ 4J|Uӊ~` C_(_ƪXN/xb[^PCQc_|R:.8qhU~E΃سE#knMJHb/GS72*:oOͷ.tn^v,͹-Ov/}a{Vkb$ 9z(9& OrN1r/ӘSG-aZM LLH#^k|nN*]A_𩗡 Q{<(_~Ȳ?Fhïxz$kC}qcƁ6 ݎqḊ0W}a  sd]=U0q$7VJ)` jahlϤ7Y8}Uӳ mO$ 㲑(.W0!D,"+UeYvcGNukO괼QD#4؎l\h i);T6 ! ¶a[ǔR.35W p=EI[-38 uֺIэz ԫH)[e^ cxzPD٩zN['аC :Z;k]aM) j^4!P,Vke m6d:덀@JeK(Yv@hT! > N 0c/@6FRǻ U$EhN=r3EtS?Q4!Жzptb\VӪ{~&r1yzQ-4pF+kC)&ܶ@F`iLM9|OY!DK>Q,ۀ #vܷTb[}8A׺ 'S#ǔ'S."P\,6#bgWYj?ӠM<&<Ω Q-s\UPT!2<}~ eLhd O:*7u|ṐFEIlTg KZr\O!EM`{+[K2[Uy{L\:A2$uJK>,cu0!A:WxHs1@c%Q [i`=oo?hq<"XWrrZ+3sD]YޑC&6ŌäGBZ1m u$ڠ~tQ&щ 5Δ -r0(4/DܠAegm9rѶ`Q#p<2'c='?aH8H *n&aG%O" bE_$C-`.a+Bpť2S$+*XK&AĝMWވiA)pXFV6FD@Ͷ#BGD c'9JbtXN1-}82L_4|[ Dc'̙u{Uv=@"/1Uփ^UخtE]X?@`)Z=eD$LU:*wCtUw s`zxQ¬|\Лzsߕ꣇baEgAʒq.a‡{AgB?ǃk׽= Cw?slaV<;C3FhvFe|:S69vNۈ Ό*Q qkH<ε$Zq#gA17%d/p\o s,JI^Oy/bD=2Off,QPlZz>k71.93{mM:bVVW4I^M^e8 4)=sbPe.@2|:ꓚdM%ĘACB]ȩ$SDB EGy \d'UjGCk'/_>ƆĬ?Nj/϶|w:|GtQ8H~&>=thN+ɪuɓq}Եr2x*>wr0 jPuXA^$,- he&޳l]4>x-tǶqDw]7ii;,w\b|ϻGZG/f tzzJTd$R8v%Å'4L!\2ȻTZud|\L;S(fnď2m>0Nr}ld"R)Fy3󕷖 ]HX`iN4XVaNm9&&o>!TR@T՝+c Fn4~+J"~զyih%A)bd#'XK?oNsOy0IEF ɉaUQT /SYtND!g an/(Ag(;5#-|eurd-Gʽ?y`,Ņ~.{NY򔆩6Dܾ}G s|)-{NS=ӎ.X%' +> .s#rJT=~ַyq1CIU7sX s$9,l&ZM!/ V iQJo*$55JLlfܲX(Io6:|h +n{DjaѲqs5)q-3] / >.- Z4qHBrit-i S;)QF_JRc7o<1Jl?KW4CF ^g ce}w>wC!gKgFF눐@`_DqCJZ03s:3u7jcE w4⍌!'>"Hůg+2|#ήwJ EM&v1n=7"on;}suO/B7ӃFS6&0<:S0W"$B< U#B{bJVl5LAU|ɂ=jI]jO#2ufe$ybIxA}aceDwy0jI4A:?އ~,Ϥo,#52xFyoxܔgK>8U2vδ'4i=~:8&qsG*` |%Ds:j} 6=|0 U4>yH e@1 aܩ,` ݅qy:Ϝ&*i 3MϬy/ ю<PrxZ|uA荪qo76~n^Nd. HJ9pq̆ XB.E*[N*&^%,a'h#C1hZлҫFSMK d^ODSVlBE}&̒ǘBkps͐zzJ_3"*%h(]Ҏ7V=^g6Gl{͖w@=%V'CRʞսUSu ҝ 4jgN WEYW@NJ !,<`\ Z)XI3;ziB!*|>|4"#ݨ.J1B syqrIyfn ڣ`8Vp_{8g#(˪NOv.x?î$6fQaӨ 2{Ft0$l᪭-x-[uc;Hly^~۾uG*m,a[Ӛ()"ҳC;kyq#qNHj8y;-(';p\#7F \҅Ka*ulA\r/[X#&66t%1 m>in`Ssb&A%<ˤFk[gyi4qΡWݾ]q\~mLrå,CJ #t!=㱤ńز*M{z$!@ Ky pLXђAivw*7>l9>UҘ (4noI\Z}X#MwM4 'F _v 1`B,oڥ <brXZ7:`@r.)˽b;k?PY{^ҋc'EHa655-,1MҺ Xc7؞ZrR슌&;lh}&Br-Ii"j$֔g2b }xpvY]\r$f#yc ӝQZVdȚ4lz3Q;l1Ukp $Eᚵ5o}7cLZпxc4]hɞ:ēd@?WW5'mz&< ñ[n\ӞEծ͝Jy >/]Y] ^9 $;mJ+8脘MPFppt؎:z@GwfK|l]1@dOUB(:]޹+K>Nvv`%G(PS$"G[ڡTcR}šx@]VZ:}*-$$:#݄ءvnYϼ%u#UuƞHZoFE j,b%%D]̓ԴKD1ax#ʃbp(NBVfh߶O3*Y}̯t}Lr8uԥ8j[e^Wr9\b$He}\zB>b|JOc*֭TOqQ̴VEJLr9@ͤ 0IcΕ1yv&]Q q2$:"I5#q h")PV#:R`K$"½2%]|6bc>"9/P҃%8&Xa2\><19o CCplFS¤*,w'Їt03)uUQ4T#b¹9By4?CQk1Ht;J}Nom^]z6ˇ&.o.i" <0WW'_={7oALY?pkV=q(adQ$`7պ*Hp馀DQ&R;~4Gu `zg%"u=J2-uaX\'0yw3#3^ ^"oރJūuy@FӃyƠ~D`@@9(^takF_{ @:lka 61 j _P;G~=7^tBd'7ipf.v<p4,02 1D`4 Ȧ(1i!oY23ɡhuz63'X6=%NCRo Jv( M{kBݫ|?W~!EnT(Q#̣mY܂./ lBrYPq(\EEB?$2]qOw+ ˌ55y!A6ȱ>UO h]!)OzS .-!=="I9OX{n%YF8x'C;bII3;h>҆Q'C0 Z.4LJ;އf *x$$2=ᖕ!XxWՇH*d =2f.u3ڙC,7wlsAZɢn9٫_9SB44F:\_Tf~ S0v͢e xA *dT=@RY5쾒Hc#K86xD?ܜz{}_mB%$Yz@EV \WaI[PʍD wJ[s׈k%teS.xBϼc4IFt8i`}[}B2Ew@DNQώwntpx9m8^> dŹjّ-kK`~|rgK?bcbq_3(gݗ{Y{Xy=dWt{{6ߩiR:B;5{4y9HzI"j.?pYn¹)94 ~ ]Ō { w.:&,~̞F`*ڹL Zscr]-W!qEB#Cdž͞_?24Bԥ]={?˿%?ij3l~MlG8Mɝamf(A.{^Lg_/Ж*mb&;r}TL3 NQBW~jV׆:,p3p,X$i9umz9i*Gy"(kU!kD&g =tb4"9!&*P^ai Tݰ9WQIڑ퉃&#,?S[fg?,;WyjhyP%D?/Yuߐ. _զmmȅ @ ^Sd \[TE a?Z[Mɟjl寮6~[ݥL[uZS>f_Yt4CiGJ2!!"(cɌ#ULl,6fG&/ޞ/|R P,YRM,/'M}erHٯdnV}6vgȖspjJ=ws6)"*_:,QaQz-GDm<5+'?ƻfzSҚT㊲!rQSyO]. ϯ jV8MGtZKΥ˜`>nͲ'WfS(ZOJT \oVIb% ue)GA`(=x@(lݾSƬUP;Jjh׽;qG6Lc"a"&΋BpU仔üb.-E{iS{.T63[#7-pe%z/3%4+V1K%(ی),)V=:[ލd };Q6z9]!ƪn%&}^4̘b^qhj 7?Gre:V knc* QT1BF^ⷍPx`7:>[%-f p$dKgщBX(d&N^$7l0[fFP(;h*.O뛴)J5&&~})ܩW|Ex/pS o^T`͸z :AӭsQGI؃L@,ƮIi@tͶ1pBVo}ɓӲu%7kۇE|Sw O6zqzed&I1*s_mx1 8a/D Yî1v['uK̨gER;\#b{VV# Z _$LIuFH^vz biAFH&G6۩kh.΢kct06P+uA[7zQ{s-Q'`Ǐs2j2q w1(C"URXAh`R0n非n͊U? bE_NQ;yXz}ZPp(iLmXnS8q2OvVlj$eȖzWu`Hx2ľ&zs8`v1!pFp+-bļO*yH jy|Yp,>/yzҤްI"ԺtMė3%0e?Tdv^L%k],jdVvEed9~@shѶm3*qvI%nf.}awT%וݡX㿶&EC7݁TIgT7݁u1ofsdˑ{*G~79Edjoq`)/쎶[oBsb0]3O1h岢mVc<5|Yb׳ݲ(bxWIʈsIM:X[+O_>,Zl]B Z鰠T@No܃,D4v#m2L %P_CKr憳Bϴv Y;*%3*?;9V>nI1H 5O '_6Ӫ*ѝ2H}xxxM_0W|,ulEjT3-%1HX*z慓ܘYN1㠗z ڬp[U1?;x@3yd킀!jA]qvHC?cP< ^Ï, &LzgfMޙ><ض*]{~kvQ\tYhxS @m]\qhNivecg;bgN]sOiuAˣݬb>UFRbmq^T)- "mG Gx2P-joH]B`8hAz$r f8Q >ʧФ*O2 ,IЊ0_rqY+T6w4JR^ '08c1)6䳍<ƒiװ{_syc`} y$GmcZG ]ncw`w3Yöj~*TT85ySA4s\@w>xO-}WZ.A F=)(b.lϦٛS_3nC+3L##=ӓ2-->a T?j \A^&4Wj5Rqdd8`g/ ǃ}$f0(څ/|bJ)=Ӱnh+F&b$)KCzҰjCűDnK95g\ jZP$>Kr;Ì6ToUB^-I's cWϟ䏟?}Y~Ogg>y6FKE|R`uO8L'Ck`z|a`fn0hYe ;]32J 4'Do \vBB8n|;K)a8BwC=2rE,<+ߔE 8 %æ[JGhZ;T~وc^X*Eeay;;zyQ:<DD(D ֢7h |?6L.:\Z\K=(A! הN=]G÷7|I?~^.ͦ _fx+XI3%ǔ?Ǽ|33;sv^y  ?w[7 w+7WFtg~hv߶.s󶁻钇"|,B U|_-,揕|c_yrz]sKW%%ˊ{Qq/*EŽJ>^T-½CR+ &| cW͔ZV|IK+RnsZ`Q, YXm9-KQ]rJy{~΂?fRf ө ច7e9~BW r]Њiyw9˂<)>.c_Wq'j=xof*F=reNN|fo+wu,':MƟvү+^UgW_yb]]̼>/,V5kޤ$~7E;wp<^h0Kz.e-Wt^>D0d25_Y, JJ??AZ&D^;-!2w/:`q_\x{/mb:{'jw+R9%D] j [KzkN[}d|;zI" yeS Ai:(񎓗/i6@T["x[!=p܋8 |}o& gue\,w='Ϗ2ɉ0;ͦ;=oX<pJaFBv # 7Vϋ[.7"Jo,eKYZB0般](^:\Wg,rqnc9\~ G9|Ti[ q6o)ZHU&8˜Mf/k` )H<ߔ)'%gtK}B;QjU NpG] ݯ=IK| %si.|2r첵:p|)f!qui){*Y#T2iiw dGAA**.vBw?ͼ"4'JYAcuВ\,3W%. `pBs̈&fmeT}z;.HOptkgn򣞜O^=L[*Ĥ|z09 zVAl?&O:;~ml˙k pakh`RG):e* H@!#"Tݔb2N lcf$ & tn*%5=ݑ1K1#k. TlG?"fzS}[6ƳHT^qX1D-碢B?񗗧?xqZ^4tvb"XZy|I߭"_: mλ˯avEJ6L""b:fbؒ@Y4x?<F?_/6SJzRB+5-/ 5% D83EMPcW>=yLlVѪlϧg?>,?~/%kqsiKvQ ='Q=Ü=;y*>2gzr2`FæY<0ޒT_H+ɍĞN_OKEZgZ}5h8*gq9SRǫi/δX+.iʬDRV${VsX:W~}Cr )zint9T?Up^oa>j58l~_vWh6~j_z=o!ohk 2Ag)?KJ-=>[ $j! Q l~?A֞[t^A~tJ"2ӟa"tY"1{U݁Zz4U4]@k?N׻,$/gǀ³J4 ٛm.cSuY$<*j]W8 FgsAjj9351 FF7E %)Za*;҉1_a^bR~(V+ug?D;&Oj~4A߯&6L%R[2;=<=Bqc*f5Dlռɖ`7 hYEQs.@od2]Wu@A4G;u+\+h5]reh2}79`DEIg[ ligd~j'wQQet~2ԟbIth$J!MFrpv֭ \.51,l2m!j_8$A<]EMcA$?yDca BpJ .3`leu;0݅J/GAˢ@dY;1:* %`b2$邤N㳱z;p\XÍj$8MG8 aX308d^d6:'%Z/a]7P"Ix=1Oz.FFVJEnUz^N1r9W ]eaA^WZO>:^!ơc}kպ'C:P@Ʃvt&0vJ`;2WH`ѱ^ذ05PAߝ ,;y]󀰈cĿJh` ,6 E,2H20 ̛{7*mu(7] -ߤ]pP׈$&8@fV $ӤIUHUDH-P +o6HݻJbc޶վ? )65t 8~)*'5.w{DP}\]#DD8K\Fm %THIV+jWJhqE4*i=$_@s0ytG|S]7؝mc)LjWqh;vS ظpyϒBla),YB2Sz3Yhpi>KᔻPdI VzjE-Nΰ5lNWU_a&MFJ. q;YCƒ!I6%".iķK4F$o`nb cUz&G53pOIӗC!`Rp#/J1|?Ri=%zPɹe1'{ nEQ~}C<=OJju @gb|A ןm#1=fYLE>VY:'o>ۍ/˧AGՒ$B.wL7`.8hK"4:#O'1`& 6݀/)>VBMWRm)b{ǙIb1u؀O(GYy2DkV 1fNIMO9lc|jt^7~+pq!DF`f4/P'] hz4fbK>ƐDMҰ(#/pzݡ'z3JSՃ(^=L 7OI'{tAFoRr~$)W([Hq. Ydw|6@M&`OSTxR|蛹3EVIp]W.#&ŏ xslFĭ?K0wƻS< %W4PCǘ_Nt8 'y .3yAV"tW)3Qx2&љX{CxCy39eqb4ҖTQeٌr \GlE3^y))d}Dr'p),셤SaKA%I皲SJ7#Սu#\-|IfaW8FqbwەeC$$ɑF졃s܌#RMWZLWuF:I'Y=ksp_7cw76Bz,4iP^r9g#6'ހ292zB**eʀkb e$7=0YOf ;P`+q\YgXJwA\,DIjM+"%@=9Tv#=2/nP1(M< JӴx3"N3rRmkgJp)HBӨ? rLx!aWR7|MvmcGe|0ȖL~(U PӬRr3ީ 6ߍn;!ķSxI&K_F6Z\N7b{vwE'$CiEŧ5\Zt(LNyH1ꈁ_GwŬM&{rEsx08JJ՜2t1G#MPTP|/UuPu*,V^V{Y\Z $hIjH7 #Inyg ko’v_ MOjBăsZIAs%t%_yGmnb8JRS IЂjE56`iK]+K7Q#E)Z槌 @Z_ŏUjZS ƑF;jo*Aщab a>2G `! JǦ|df}W:NU|?Yf&))NCij:[\t KhO\FrEj$rg5XYb=%g'z}6~?G˓qsc[* HaY!&_x2$FqV PVm=]3mֆWb!)r>)".Unn*/4}9Qio,TE澅/fLyPٹlFߝߴuf_u*?C ,=CE ټ5ȶ"Eܫؤb;!WɟN.@.}K~ ^[Iªҟ\heNa<Ϛ#6Ȧ?u/e*O}.>N^qua'`Y=_tߪ{U}7w%qgw8MȾo:R5ӚR n]Z~N%t3YkI_yJCy]ru-jH!g66BoQNnl2+[oJ+dY].taOJ57o+Za\@+*4;JOK/m PD #RLp߬vC {D,Ĵ4u[ B"zUMDs/08 #Pa nfrn~˗jFiS;/4'4P|ϒc P:dUЭꚮB /]S\ЫsJݽ mXa y]5S1){af/QXSCdz1A`AjxBMU}d9<| 1b:pU1"Ě{GiX?_qnr'<._>ນ.VT^/_'6o#Jx`M =Hy)2)52-BHkNH]5jbмc`!??}ٸ5*J;݁|?GbT. [t?ӛ\Ha#_\^mLW`XBxdL"LDRsdU_]\ƗtKk|a0Cjs:rm Q?"%D3?yB0gg׽xA|zvqq'E @;3:kH'&5̺{AnKF &!]rlY)G ~YCքeY\98Hm*P Rf)(l(c=3!|G ^ڃ9_#ȋӚOta`Ĺ d]pᄭTfUvl-D]tkҸb$M߸L%IEXWyI̘A͗(,ғ/3mRʾ E_r9)/as:qU ߜ/:Hp3WuA_?j;=:pquRC\#Td3)X}@OXRpKڧ\7.ڧ7>GЗ@3u+ ]V5}U9HK[ Aו, "A*yU&t\jJ VqG/E4D+[RjA915e00ȵ*%U7ONY3zs3~ <17M]c$ gA)50/@[07070100000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000b00000000TRAILER!!!Q` εՃ𗢔}P#*)$ò&/Rs YZ