perl-Perl-Tidy-20240511.0.0-bp156.2.3.1<>,jfy`sI%z 4'IN y(=FGAщk)cX^7(sRzm8fOOۥ $|&+h a5ZY\!η+)c/fxƐo̷6 'Ki$@9@j̰W /fm~XĴͻu-ThdY^?'ּjÃ3o6&u}c"gkЮlh4~2(l]' 5>m?md * K 7=D<4< < $< < P< <|<<<Q(o8x!9!: !F^G^<H_<I_<X`0Y`l\a<<]b,<^e' bfcgdh<ehAfhDlhFuhX<viH wk@<xl0<ym zm$m4m8m>mCperl-Perl-Tidy20240511.0.0bp156.2.3.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.fy`ss390zp23;9SUSE Linux Enterprise 15openSUSEGPL-2.0-or-laterhttp://bugs.opensuse.orgUnspecifiedhttps://metacpan.org/release/Perl-TidylinuxnoarchIK CfMS ="+C Y k!?V=,Y{.( q l{iT} Z" m S" Rd|HOFKmAA$$$$$$$$$$$$A$$$AA큤A큤A큤큤큤큤A큤$$fy_fy_fy_fTina 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 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.s390zp23 1719230579  !"#$%&'()*+,-./0123456789:;<20240511.0.020240511.0.020240511.0.020240511.0.020240511.0.020240511.0.020240511.0.020240511.0.020240511.0.020240511.0.020240511.0.020240511.0.020240511.0.020240511.0.020240511.0.0-bp156.2.3.1 perltidyPerlTidyTidy.pmTidy.podDebugger.pmDiagnostics.pmFileWriter.pmFormatter.pmHtmlWriter.pmIOScalar.pmIOScalarArray.pmIndentationItem.pmLogger.pmTokenizer.pmVerticalAlignerVerticalAligner.pmAlignment.pmLine.pms390x-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.plex_mp.plfilter_example.infilter_example.plfind_naughty.pllextestperlcomment.plperllinetype.plperlmask.plperltidy_hide.plperltidy_okw.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/-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:18438/openSUSE_Backports_SLE-15-SP6_Update/2068b6491d922de53a95b18aef42e9e7-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)Roi@(>vQ1Autf-8aa88dfd89de380044525342c46b9924a41fc7dbc2c323571fa9bb7f9ee83efa2? 7zXZ !t/"I]"k%zr3AlP@5B7)ƃi=aO_{w eS8 On7>Aef0洢QN)BSj52gS7@BBlbdӎGUTUqrS$_"TTߢG0SYAZ iBbu;Bz;;q8C)𼋞e]s!YDm/ؘ {/p=_>VZ|ad!iKVyۻ<58Vei 0]qֿ0&.ݺnK|wWGj@}#q_f>i ۄů'ֆ^oVO`l2}P4#۫9$bZvrb7<xjI #ڎI% Ql\=FMMlz.J-3z jicz(Y7ܷxaO Vq!Y,~sKpjຓɬ4SrEȻItĵ~kT]|c5d׫0;|VU?-ã^)`_MkjPK׹ - wk-I8x]ǒ9x8?Fe[|<ņX1bJ_h2 Jo9*z U"RS!w+RPT$OF93W5ȺpJУ4I&3'8C_|"G!:Jy. `%kIL8W@q΅(63KOyvGl2X&k{hKr)!FQOƔMYſ 0tzW?"#r eF/ k=rA OvºZ㎄׃&=CG0Rƭz>;f-3Ċ`IΖʡDHI qщJQ{-0aEx/v$'ȿ敽>6=1Q7k HQRQX1,-o/0~j4UMO>(苠/0E{Y*?C6ya@q==$e"ߝ+> $_7rN gbC^)(Dgբ&CȅQ?ɻf?.4}J<ߟ!F"qge`~a:DG7 5MWZ0FHV#vu>Wb0p~6F6MkAXa~/(]1M o"gaH=v;* DL.GhlX)q&Hʞ6 P>o9Q~V0撍y/Zғ/^~o0ށS& `k{d8,A=:pU,BFC葧YH*8Cyy9ZYl?Hɮҿ|O/4b^*CGI+9( .tѿ4FVCR#OK@,+xgy1ƈ@!s0 ΅Դ@,o`At֤0A&J/t4y@ , Ǟi#4u[ZHc  +w[؎UkNyIjUQfBjH 54x׃[q\SyC<=aFrǀe6mi/qfc pѦmhU1<kD1}^w QSﯗShHcuݿzSiᮣzU<_~(AK`|ɞ(e'SuAP!jLhÒ,(_&A=uS$qZH]9/4I( {Svg,@kss+0ϬΈSP&)_|U ğ KODI%lPo Թ(CԿ={7|fQwhxKc-p䰐hڢSE4׻' D VtUaF¹=LYF.SCg# Q)Pa~H0r<.;=R_P-&ផ*l|WiNT^*!hw0{6/+lEM;9r|?a}n d3ӮqTwxFfUus';KC`Ps{t'FB(x 0;g5nP߽A`O.07NE ?gKQcsPn`_[Ǭ<2>lqkG{NO4Ze%f(0H{z76J\֠R |+:l=C~y/n#U϶]dxV2<9Z}w(Ȫ"=rB=xBw͋1r|GGr :#8C N>oV[qb~ld߄3*CSFx*6|FMގOw#XP<&=t Kc2-.O[+-~%QNCQ.>6΋RNcJΕgu̇aͪ˃F]g‐#R-/X%3ZZmoN,N,i>d f$Er h]9ݕ96},>V?X]ʺa/'6*Z?H5͖)n}d\H TooW4qdTviNQLS|rz $emzC/cK/F( XmYyn{zKaU^FufU<}+ĭ4u* 9״ѷqꩳ˃ d`&eգU箽5Gv7|wfC  N-u. 5| c3? FD)֬:P/eAS cw&7)(2,|Uf.uȊ; ؞ZtJvRg,?X.aɇ#V[ޗ^F̛Xx_s)?sTD͑:d{QWW3~ M-+r\]<>ٜrv7C'MHAFEh_V`XpAn\]Iœƴx/%l>= UA/)h!l$bbߕaFk}i1)^&'ok$ź>OdLk2E2AZ= mCNc0*4H[ !U Rԫ*Rd91_&+9`'LPЋkkQֵ.ЦLJɉf (vwy ZC|LcjP=def(Dw/6t&/a\9q@>̪,D6mVeٙ]Bb鍩6wέ ȧsK!SIGN, ZK6tbtPs#n |^ o{3:MZv=S8~-af|rENxI /CTXecL{unl=m/0`ՔYҤ&!*=Sq@Cq=Qӈ{Gɸ+|~ Cn9GzЏ?k\lSÑʃKǘyY.M܄47WArh }ğMY֑\m[-іĭ{w+X Q,ֲ$cC$ y]|fc%,7,mo#*>t(V?u'/Tآ ɱ?G}tmٰ9e‰xEfPQ}{_/xa:l8ݷSt%= o[|:gj%bl{dnb&ݵ⋋G'V1k|)h)4 ?<=zʖ2qVˌ ˗/\_\Ě©_vCu96DN|p?ӮDhw`LA-Cwr)hZ8ڥ[`:PqP˟lcAxpl0is0fK2}2q:$0lUc l{;w|Ӫ]ctM7Kp̰:eSMh,RDmDWD=5`F B $DAY_@;\lL-r1a_rZ " L-ў9D_MWH&BaBnL!T0c&0JCz餞 $fW14lޕSSgHRÕ4tR{ڊCh$$ :;27tnEyn&_KRu%7 !Q剶w N 6kIhfޜanƼpMd PzFCEVoc&ڇzc_fۯVYu';nA?A[D8$36H+nb. 1y PbEWt.(b7)ۆFx"nf5p0FPUD%>#N_fR_RZi|<تuMFtd`1QSR#ɘ=BkjuDVQUX:O4?%cH,JdYP&mHVm~eE\5Sj_}1zp Hy! uQoY&#"y:-,}ӥ@'7E5#bF28}\8%|D wZTp>r3&TǁxǑRT}mj?G,fgb_Ԋ]&'p -p ``%\bNb֊kF~9"gIBY3i\@paC:աmra{i{1ƒ' mk/8ddiGu#!y*X!;7{9.7O;m>nml.<_oO;Qf-*>^Q4?6[]-U\%YT+TXXiya*g%KP6"NJQ4eEDeW\:_kAmj.N RP QHg,xv #?JH(W1#.8u1HY=6'- /mt,G#9ãx0Q QR_Q0*LV] Qe1Ap A>EI"X5}+Lݶfg:;@FlWͺ>?ըs2,i UKaz Pʉ@&#mA=[<)/n{!.tĀ۫ߝ2_.yYJ30ల#^IHT';bsB%ɀw:v|Ugx) 2zk쳋MLwyv]S$I@FE(" 4W}DflD&T߶'{Cj@ b Q00ERjp{Ȱ\s屶ݿ/rqem.kA~ vG_){BZ43ĽbK=N7v,GGr mᐡ;. pRiwHğV*vc۷w]Ml^X7(+4>-2b-C!U%fbDpk67JFb{xs"BPYhN:) >~m ރ~<奈d{g_ױNiDV .gҞ=^ [=̒56a#X;;f8e \&nq:1d ERd$0QȲ5WØakno'Wԕ{AһBY+g}b/]L+v[&ɡǜ†)m],]z@_% L8f\{=KH9ϨBZڐuCP2ɜ 8 c='E]1.Ik0Mel+ӛϸ4A?[_ǜgok[~3$xL(J_~uoۚ⳺ 5czeTwО9m O[Z|,-A%]=/ꌁbV1ɉw#X.#8?.3 7%$ҞbO6:ЭH'o,B7r/o&+}|~^muueN U͑m$dv̀m˽"icf;X;%2=BHr@ᱰy,[Sfg8v4mvǦrðf*%F[!%ltLKkc4( Yg#yvJq \ߦnh.(Z(LڂZZ~,"R͐)H(׋HY6U1lA5nlXh3 .'d: 2/.wg~z/YBq$ VdJF_ѭ2!V+1]6;_WE,}`@ܕgB4B Tj#憨LtF7z3"`5{@:f&ã$^#ܙc$-{QdUԑ bi ۘCRF<(>* uf7/:kt-Nԇק©(KS9&e"d(!{qOi昪*k 5Ub9Х,~@> !Icjzx;pFx|z ޳E,n_LCfǕɢ_ȴ㴅uA59X$a{b\s gmďHuqtZ)7"RQ_Ԑ?[-)&M.^Yz +yR!APG-_G5ko߼ԿƋpی<j㧈S KGL,Ru׎( ҂jХce6H\O$98W߄'MxSV'jEŇM lPUxJ)t̅0FGR+adyb!a}4M]#~\5o (J2L{xS!obS sep' n)uq-l<#"XMDTO*w0Fs|M nPpbB _ao;D*,B r(&rEGU;G-@mW^䥓@˪d\2GavW&E_L6BRx$۴ϭC^HtOӼaZ7W\=[-~:ED1h; mKڐ$:7.v/Q܍}HFJTf8҇)[R"ҢVFTs=}>|4`]CU*M[3h+Tjm YX"d_ bScnAؗiD cTRc8Ћ^I?c;t3n<ȉ9 6-N A9m&~_0A.az\~[0"P⿵Tdg{aXҠ&69)%.4: 8/lDď7) l&Q`ap;!{dxzmuWB,Ol5Θ<|pR89j~ @7Łnm[wG0~0$Uoӽ MTO/r8KŒe`'v.u`=F,Aݾ^dր{ɬ⬽,ԮP!sr=Kx됏ec^bW' /E9(^՚Gp i%A :ʬJ?w 17Z#<3fIRNFl jBys<@oCvY/%9(Pm)CbH{2Yә$Ml?Zv%8Mo@ +LgVs%um?9/k5F=: ▷"'icF]zW]Fdg&uַHVG< .>29ZuXe>~mX9$'߶o$.6,^8Ǯ-,dTd|5l~>)G4jgCsz]XE*-M/ZU\P PcwK)QLi?9Ve_l zNV Kb(X|[̊wu1Ce4sl?]Xsx= i s> YDQWp>@c1;L~pڪͺ쿃5ҶOV_MkQYWT8$ն ]udjO犊?N Ms\0pC> ~Mure^IجqNQE^ddѯ1jV`Oz ٘v?zGn -IgsC*DPKs  v [3  :H-]n0R;)]Ph$<Lڨzo/꩏EW\x!xK|.mvw( w%-g6-!$B%6t y"_hoKEЭ!/>_\_%iﱶr*o\e:U)&TTD7U NW';]c[F7oi%SD]?LvCUCoȎӞ7Ԗd zx0W@>(j&XyŜ*I(uZ"+l-w~{fɒYg44TO,wױ/8yP6 gz`)t\J]@VݡW$lf o gZ1 ptO eUJ4V3Q/6ŭgX@v ~MhKq1`N7=(ԡ nmggGf("B{ۅؙpEhf,[52)^z][ɰJ5׍q)b&nW6"DgZٺaTpi?4G90]X㇦Ԧ3&_N[V\b#^p,3w_j1Iw_3[K$q."h7jlU$fWO޹/5kX)N FCp*V4ebvNj?,T "3&H:R(Gìhȍz{ë %A-fUhUۛP"{bVO'dEuܐ?wi/FYôޱXUKE 丿7'C( ,Tj蒆cQ^TAFܤV=pB x;epg^>l>^!c=P,[rdd UIZ 1shf>HS_˾$?~w-Ζ>V3mW QxA\\3 ߟ:TnzhMl8൘CS| }". %uS`h/ڲC`)P4 crfة{a'Bg6KNcX>]?B-hܠ@)myPmfa,/ ކv##u,JXPLCmzv 09 ?2O9n,4?LBϚ:‚ J*sUA6nXɞ4cM}B_+CI;[v? 7;K =` UVӆ*Mqi^sݨՔ!6h^7Uo/9K2/}m;d _&!Mg\UJ;(y4ZƯ l0Fnk.c:炸rJn<h5Rgh U3¸%'NDWFS_9m['V>vB#y?sMgMݞ )W%pR 'bhh6sgD՟@̼F6~X͢-DT5bđ힟$>#ҍH EYq*"34kLW30G 7)EbHʇd\G]H>g: f0^0?[8ʢ N<0OmurKtq9)y|7lIbṪ+,mZmtFgiF/l)01cLl]<ֱFY Gf'y͞$҃71IʸEߧ6j\.kI;Ğ'y7@kmVP4p#E VMWV$T{=#L[8NajlnV9RjX{c^>ix $+GxUVl9_j mTt1BBe0=6l޿HοL"\ɐ*MioKFHs t jv'!߃I \_<<kRC/L7|gS,y5k}W3K+\}E}&oJRT\[W$AtaZmC`kn7t&C˳ӳvZ[ ^rADq #T^$)p,qWͰX?MlYix)Sؑx;։`@JG zjV`N3ĚscY^boƧ2j3J[ٯA-`g?p}m._VW:AwZ! i)FiͨKb;w-m $`2QS~>MȥCs7Kq@ 1NQRע i p"ux.6x j-Hew^:VI;VqHyGp"JֽU%_V6uQ$ր_@ш?厺x/REn4V٘)P˗: '?aRbr2)J=Li\H-dyǍm&uno//t*~dlSLJ/\/1(ɹC{v>$Dtw3,N1fXc7C8PhBIمƦq9pF]x'G*l h =yAk/]6-Ҿ5HR3Pߟy\nMUqnN Bw*V˓o ]K#%%r Y"R{ `AXv'FMf̚&pYz"Za{f U>RU7K| mtdQ}fJjOކB0bYvq1DKB{e7hX|q9'a_}UC:*uIJl J=TSn!NF8w,HetŠ m4c$\oUQq:f}?FI]If"$mڐl2@딫k1ҺHOs6@R>;ڈ*$_ukBPK5_3o:K^=j7ơb;B)b>,Z`<;XAדaTYšT6!/ J_kLoz$ZqǦ&[-&Rբ0٪jrEHl uzn4 tLPD\t2!?qKw=y Ct!UR3#acG^@gcO)#H_h  oぶxxc$d氆B3wڔpb ^O^~\uᩃ.+_(̞O@RJs8%KÙI߇a({`k|iu;_j $NJ,wp4%:_ ֺY!f#͕sb@zt2M j$ eiz3RUd 95^bԖZJRݤ5CiZɡLCoKgӎl'>jFPD»+ϳ]|^?EbUd6  3m!%NLS' G,Q#ݎ8Sׯʏ' eJAaS+pb4<r +4ҡCxࠕl/Z@5sΪi*N'TrZ.4k#nLe84U^`I65c73˿)O/O |kXj/MJ{XlgUr_atii2P2xg>fO}ol󶒩5a]">$Wov K?IB$WjZ0Ebt[G Cz2kbr@3ya6 ؑ TX԰/CO%K.uy_NvBU1@3جBnf,-Ge-5%lƼl"*ZNh(pnda}m6T5\)e6JU3K*U3W@Y*#oBBvR ])NR8=uT_Y^?+(D ;D5͵Ux^X^FYbSY.h_{UK 0D<5g,ࡤiT\d~^{W{4&nkoxzb*.ZF~q5(S+sdީNU73_𷩫1x>H,R[AyĢÉ޿ sj^68Qt=vRB,(~ޓhn0'cHKj YL ) eSgɫϫEA|cc[7f(DVa߫z_LХFHV貏%A3O\.L{_'vJ🾇xɥ8!v\?->bZ ]eWieqxZƊmκ6W~\} N](<QEKnE۾N`t,lh8zqW㱗^V6_=ipv5îP<_7GNb\$ԣ0>9B L7Oa]v/^|j1*f,MY ֪imtjQ_)p5(s(},.3[4læzW ?e4t?˪jQZ'eI YGeP 鏕{JHh=5 *9.J[ )u:܄&a`TIo֜T{}fm461j3[V`$r1#`"YZ]BS!ZQL>u1H& {6+wx?IG]EUFUM8 VAGxe@ ܶj}Wqo8 x Nҽx"/pdO;8o`kL=&FF/۬)1X(zkF>2iw*P5]20 nHeS"3.Śs)`Dn)neZ ~NNR-?ŃZ}Z~+lTH}^nRA77 Xd0Om'Z%86O" C/Rkg꒞XBU2-xu§ G?s >?3C9J_yGMJ%;GIGz*kvfA֩[ӥzS ʖuJD6$xQ')xtbwXB׾~J5|Ud _Sc/xrm~1? u֓X~/޿Fqn|vzQ$`c&J#8"J|y!Hg+%{ɀZ5%,pErБJڡ ן&5O~Y R,M 1RL3P/GB CL#ܓql~+91@`Q{i}H&L* ^-Mqٝ$ E& 1%Pb8Zv7QV@C:\bE5#ݖD⋛T(}X0xF<΀UzmE%dNꂂY0?&ةnj5irۭϸԈSc6w>n׮ÚXws>7 nccp*[-9@EWmD'QHZiוgyCnipۋkwv"Me[jQꦗbwb S txo!뛮"LF|>? (X0FW}K|O7ז~Pg zF?$&yE wQqjyC|SN,/ЍЀhq^ :5.iDa %)tƭ|fh;N$m=2m#ޘ S_4}"Z~>!3t-,G@QG#7b,LupVD;!5C^U9FںAб+v-šRb?=c՛WE|?'DlJr9?wCL_ᴁC=_`,zm,Q^&O~md:(gh ?^PtN%LVݓ\k'Z8jA[YZ^N:;d"dIٙO.B܉F C Ẹ7氆[ 7:h A8c"JRy*V|WN=1O,~OUP0H\wtDAeX}/XTtSЭ0dY2w;[_ `y0M5)*y^˓nr)zO/^Uw1a"J雼,wŨzn>@ %oq|&;Ajod,EMLV 8@}T&\yVw y{ad nwt[,35 4o$p!g)zϳĉWoCg 36 Qk׊~ zDSWO$E p j|_ã O#IPn7':56X7 FީyqJZȋ"Yߩ^Xüw#v& g8{1eÕMD8Ӊ cz4чLz1i=Ç]\lMˆ7@dO;@IO޵^ksSX8FؗOX4)B T^ *o/8i*Nc:vV῿Tp=+(OBDdvH(VɯY3}g3Hg&rrFߒpr6y{nd#014c: 0_ @~a{ًPWT1N]p<áxRX;6 ڂF j عǮŧv|e65{m[uHe׈-WT^ {݊UUEp*) J\]4o,@/8HZk3k,*p17=!P=N\h2MM?w2~GAQ 6#qʦ CC$4VQLJ(iEoدd!;n` ԰JZUg\aw*ʘt8JJj*J(-%$Εԫ 7wb90%QEiդ*>5!]s <5Y0Yxq%혁~c vǴf[TʹP4TI7,U|X_N0sW>bs%d1qipP2DK$noHtC|9-!Br}`?_9 gkZ {.Uߑufd"S`rx`lA26W? -gryOM^sf~y҃ojHl$7Z2s{ Ԝqբ tCDsq>E,!$͑9 WU}6GAzrP~C!Zt(ĠWυ!Pv< ST_)p2kaп#r1:Yv1 &wy!4;5 +2޾593vgXqIRnT0޶UM}4[e:eDhKn1/U?;.,|-p;~ >)[1&pVƶ`]u|>O$2N`Gnh[RIجݶeYA+P͙SxP(j$P:3"A #߅ov9"Zuj@VNT1hWPaWfי)&8#d~W㆓G"dw¼CBPy ho4HvJqf^_&sm *cmԪ^s e4M)&m.sDԽKa."$<ɼzu˦=$IC%϶p[?]=T# UB ƞqDwDB$Ϛi[Uz+uDދ'W:wL"UScI*#X8YE ǞydMs dB'?L>ȐG)4Q̆V${LHɛlF\m\4 }5|u)c! 7KBT|s5\%`/S^RBȎn;ӗhS{0B?"_LOwlsQE-J9Ԇ^a$jn?Xf4MoաJm En(l̛.pt%9uhleL C R)}rIBOY1e~p?~J].[L6 0K0D N hX?1q:Y9϶֥r dX]@ʁֹJ$YlHo,r7Dԭ`< ;'fQA' uQǧf5"q$ wTb{6Rv3Ǯ3$UȥZ6ܳxLI!|M::D%-0*x0Iw/:nJeI(X48~1p˘pE0Aziց{<_/F bŝ1K5*wk믐 fA+  qR Kزzi>B8P}ӎrA_&oa!}Q\gbGɥ+ß>s:DDo$A:\x1*VD tSPԂY{ƌf l7 #< ❫8HǒF9վ!3Z&# aZx6 QpuݷB! kotm9%]*yi%؝5F?#a2~虃畗C{aə!d'2y)0\%8j7d eaHwWHWrݏkAp~Ib4m4ic' )JEbPn,o=;j<@c[=k98#դ$+=US/)u2W_FU\u1Lשּׁ3nAh GGOi> ֛ʷ~ehFPP8J_k.2(ƹ}kxBʙ[$*7#;jh0ڠۺ"S9a\S%v.qGzyqkbw~8cb!:;jwPmUZ*K%F?ǩy>I[-9soN~dl=aZf ELfL)ևGGVL:fspy-Dyl]ؕ̆ذR6%Gj-FӞch{͓}_4@RZj}o76?c)(c(U>8 mF6F98̒XsFoixy!׻fo@ /$t ӝ ;Ivy!i%ʑqڗ):p-VHnC߶=ׇ -ԫvD,BIg)uꚓmךmBv d T6E j%Y6WOs +^6[!~վ|&]!ϯ~v,&u#*ӑ;2crE)".MBն?7*"D |wiIw<=jR PmR1)sc)6ezxw>> (^kB9LRlPOW5Ϝƌi3 Z"16P7|T2ӠrNFRuE²{c 7oZ= J9E^!ѲG"wP7z8VQ:-[5/ʬ꟫&nZ:ǒ0^P<^یOj~mQ1L`uӛ'[/;43=1SauZ%ƛ}:*h8DGmgVq}DMD dM?(KU] !oKWbp~)9{vUf)D"Zh A in(-tm'ʷ$619^s/,V.$u/)%b0Z.߰Amai$5@YA*鯎GQ_ץ^?B|bnW?W&49a\.7I[UN{yKk0RJYEV5=A~-6^8}!m$1#Ku"<9%FaacwR|rBn|&Y]+i/ o:wN"e)8C4sdhRdmN>>P+=%߯rEgFL|ju3F2JkL2ȏ'0 9^&dW'ڃ-dqUduNcV"^BKC S/'*%mxk'㽊d /䋟 X :3A;JsO#5 X'w4vB_[ΙJFSXӵGŖx"i+SHw6 ,kfAy{U)ЎY.>84B2Fe:j(bj,] u˽󘡐4W7h)x+a|\⾭ˈ)k G8V}Vb|G7=n> }.3ܮDՃ¢vp;ɂ( CmӦ%xgON tWS 54EAn1e 9qVFA~%[wMyw7CJwĂ-F7 ؖs`δNN+8`zA,/9x.$}IE>?d']4!w}|ýVīd\e`׃x [}̓>y` JggJ\I5yߥX9壤3>ɭxlq %Ayx\@Jsc$$#o3MKkLrY (m6mXP;JpDZ x#f lip?#3;4- '1'/md:<&IJ `z9B+!koSBGh>25R?SnK4 q wLY<_#VixɉJ~Dܴ G_A,zK,ml1[ėqN=q4Pp3K_ܔ}X摐׎`ob/n[A?.*HSRc*?=0j+<7R_ⒹŰp63Xdzg ͧK<nIiGOܣM5r5P_C ahUWD/qu.fp7 A?i ,2 KԨΑ;Xp:OM,WR3S]<*p$֦>p{KF+:䋚9# COs` d (J q=N5!cҖ[0836C}0L9* av pT څe9ri :S^T 2觪 Ƥtf=EtdaP⒄rpb`0`k FMv"JrM? 9"'hSzUǬ.Z ! C URIa!r} wmzZ9R !zp*# \')_(Wo 4x60rG '2 P E-Ӧ[ $mX݁6QQ'aEPd;,n=&#*ё6s&ϰcK"ˁʚˬcoٜ~]2$"K`rl5ݿs'm,0Z)+xY[gcּS7f9wl[Y5;$Ė?q }[RB]K.HqfXG/xnQ_u(^2;oѧvI i[`%w^bӏ}K`\ųy>u^ 2Rz9 PlO /ayܼl(xϤ&gdЀ`Lk< u{ {i4 b~eTVݩ}Mnyi?ct=R*`ICFQ=v=7v0dM xX^ l:pDH(lN9+Hi //msf]h>hp)=­Hef?}V ^uҽM賯-_tS$eq.y=2,f D&܍&VFo]LH{L,Jc&W!1S:`ƅ)Q%e%I X7 ZU 4ĝY,nGidðu,O,v ڇjd%Ne&_~CZ[Ur3x֞d'.mlh+FG5̄[,'Pnfh@bOPl amCRŨ hʝ!ϪR|x.I"$?Y nQJ:DBvahDɠ9uz)7&۾uAyۦUc^zagP?W׳(n5m ^!e\pਖ@bG;KhNkx:?{N;ٶ "RYx5 2. G߻hTTCay950kW"B0¨/5C U2yuuxESdEʡu4W\K< p 4E/2 XD#mrDvxлPK\j77gZI.PKd.58zwv/$YZ asAdyOI_ZcLQEed=ZU;$xkYE~!pF4/.^//H׽6^I'H+ڜLvӠHS9tbZ(ƕkL|<ӯqmFq5 |6: &82-]"lPyN\Egq\tEotU`fdWdajP)u}mtWGpA"Iٕf-{Bٙzix9j'qz~z]QcM\p(zt̾Z, D>O -b]NT&Ug _2q=LoxKS6ٛT(:`y?e"o..&L` H1{#܌;Ȃs]W2E E]ǻ+/䫣7bF"$"0׏|aKrl\cv SVb6k,vhhgq-!m_I&ls.S_8 "wWz JN>y@eC✂rTe٢P/th8ܱe5+m/RCk{h/*~Us ͔:[>ITv6@ -͋<\ח9L 1;/=\;U'll,Kܝl7>b1qJ'YfQA9 LٷRr)Óp+eb!18וWL+_{6Fm7B4>zIH,Nm".5ԛg.[a0 hJ>KSH@Ȃ?[ %/䢡oOHJT֏hYC8_, >1Q;NO E1SGbʤtsgVc0Ngi힉m8K[R?f1 m*CJr!!pD A~^֗2"r $yKȉv&̑%tzP(}:4ע$ٕ f"$+bh x<`lAk"~0>=Fv1]1&6)]n֋+(#/|6Ϊ9|l(L^d?O_yCvZtju-?v6~(KӾ oͻ`G iѺ*.M-~/qr4QG* >sSѺ R ՛Kw̤S8a?#Dwf:r!DG7s5W `K Esfб(g&jU6D3t gt [KWi M8,e}&d)[x!Q]֢ E̷yL({a@X֟0#?[AqF6itpt0Y)\DI4V F^`9$!d }hBWC@+4@EEjAoS Mm-,hb(lgTZ z.^/Uc[u5x@L BkCohP"Ⱥ_Y1bN5BZ[ov'JY.>S8 ɍz`#UxDAIA3e`~!t f0UÇy+RaʦNۊr{7C2q*^}򀮥^08)+]AA\Q2G7Զdvҭ9C۱Cֶ(\?a(ꤝk%V ֬Jo !E1Ñ RDe/#)Ec(v~Z|˕hpRH{^|q$);JYvV($^zZy2\evuATh۾DP\uR7PRNiq;}G:  c#ϑbJQTw ^&sLI9}.ԁ`/k+XaAdy@+| zMpC2^v n1t&}μ05< d$5\u.I8 +,3,GHܜUvfq XÌ=TGB\Ŭ.j?OIL#w5tv"#@ q/p n} G4A޷5Gh+-<$,6es>K{L:FlP(eƥbEes !MSNԓ04"nJԪEIfA[$:הjEf#H ">P3~3yEK.8] (B#/Ԯ,奚 .焀Jʹ- t|6%Y?5P$ ?Rkkб~lc $_{8lAQ Hr2Qj)WlG{ՊWCB>~1LxQ\+@oyd+ t^ˑ$H`( b8x?ӧ4pPР2&M*\38E{g9|69iPnּ|.K- alAwsƓv- 8Ps;L4,aMi"Q ""-tfDv7m/ߨf7tT /S0ݩo T~Iq_%(`>\ tlRc&phph/D?^aفr1 mߗ k¶w|Z knmR,g~fn/P.m7F̏4{9&[,khV<]qjE:zBF "[~}h0!ىwԍ~_<=/UD5!ۊmZA͌R;SAvL>JAze9)c24(Y@8=g-.Tvh0O *k!k"\ 5{Avts[ e9+jJq_ٶ 0 Wgb`&+ߊ7t$g"¦PdoIzFi_D~qj {۱h D8;&GG&WlЅMf/5M{ :\FYpSr7m _Vos;{&t 0ɣH!A!$G,&xG#{wr˄-%,@){hMH2ހ&BЎRά ]YíwL!'\^}E9 2G[`{QaN2fS&^X;4F ;uDEvnbS+Ȧ~ϛXdt8D 0۫-YJx;݈%w!M#a&BQ/p'Q$}]57ϏY.Ϝ5O[7>zEƇIe4AOt2ٲsMWHkmj c͋=?fl9ué ?LBA8쫝aÚʶ>)OBT>/s[)r :1BsFSe#E`2.!:sL&ӕʮEp鵺U*wFE wޕbBM#S%!jdwOYgQL޲k \ia7oc?TɄ،L }8Tpf?ͽ+Q'.=x>i(?:C>84_yb_#0d9t6ˆdN֘NH?73G-ctb۵j-M}ow|`Tzr1͈`[To,?YTN w_SENǟߴt y kTykld]_@ot;Ne BCH3ug'͐.)+7Fj|lֵ!! {W胝6N)d|p6 %W?6`Zk>j+2b6U9.DGgߢ;KU*J YՎqu@%3V}CJZ p[4qSw),ӵ[UtD&AQ-\(LM͞$u>fcv=G$=1&m34H x-7C R!x\Oq%R=-E膛hq3 r]b"gF:7 %|&_7B  F<8jqE&mzڤU5_ش lqe%,q|N=}kРT@t=lR&R$Z |Q0Y3; YTB]@j&jj\{U%o MMk_FsP|?qJ oPWڰ|r1ev )##{lʀ4){ Di8г(%C%q/h׾2YyR0YTڂU~NHce{k 5F@ \D kjzX1S;F\=ڤpkMn )1n-zcOFฺ4* ^.mIChy:1~xe?cNs-^JEhvIk #`#ڭ*#5<J0;V/|<:ѹX/WҘ0$&Fe!ّ^ԔĤ+.G4rnW=VT%LYO*+oi._Lh5!RG)GU`Ql{P\~~X5UZAr5VLdC+-f`TѦKv_%;%B" Ң1]9< 30P8-NQ$0lt-sz\7v#^"b̪Ӂh%Q96PcK|~KL VHH$ Et6![nfN's`g Leș.$-t20x:b@{:&wRGKR`j@T9Fq/M3pǕ" :37u[(|QCk!Mh4JJX̎ɨs7W3uhgƾ;Q,Tr]^ՠ*"3R0 O Rv$/5 LU񡔷(,άBM/iͤ߾129͙"[tT;tt9}/ lP`xl>iWlzKٸ<8-=rm\tpƊ6]f4E#̗&1Wpak & zl3_3 \L絠c0lTEfS+9U xtoP_,(?V;Z@S|cC,nbl%p-W;RQJ;vFݗ8Z-ebZI^&VN#E~fge nTFʟiXmK'&£YXS`4Ya !{ Ű2D=Z))US wu9y|(RP'Ĺ|ʤ4 OC9bB }'K|G(\v!Ojwu*Wh%vHT+ω'x'Q&"s{"v::C@ Fi"f墍V=17JУF } Ïl.D45uŻ={g5MBZ_ mi\6lXpPQ)##"I5KMWĸ{cyX6"` o?7S$z(%wb߇3m@IN,|V iFr =i:iuⳜOGIэ Jtd V.tv0Y`}C%8'Z6@}XOgg5+ YxUi͟9/ƹh;w"/:ٞiN*pT oP* }V׺Js E-=xhQDC)T+nmj| x-g fh"WX{sHj=c$sVgNGw&+(g9N\=E"Fǜk* ?|6oeSTZjeCЛU$̛hipv5RWJc0iopoapxu0?SC2va#lo2q:a0 otP@6ZDs|[V!\@Y@6 ubB=֨ƅS#-,\% S+nl%6>E7袸N=o@ ɪmuS ũB>Wm9z֌׃,vIج82FAS #&mbx|W{|ڕj9'v|VsmzZ@PXLL~z@b8;ztdzلѪ`@;lhuxM#oo׭ĞvZ@i9U~B[Q7㹆 pp?,SsTDlk``ULj47_;s2g/ hl"ϻPH ~KUÎQyH{C۳s$6;BDyTl/M-כKk2Vև=c1',6Dz(A&=ϠhmANijm.3Lv{KCig3}c IBKuDQ8 e=9Je Ņ4w⥤KZUpjhͅ(g1kss ƥ}7w)Gz"3J\0{SOLX %CR|ߡPͥ!`X/,…b}T DֶNߘF+HdXyޓ;ƒGTkd|i۞퐃NMkQTrLqQ;WG`|D:6!!&ppРW7E|mW]+cf?`w"_{#0A+ uBUrLMQ9S#Ĝ8QF&'[ݵ;ZFt Q m ɨ1`qB ;! Tr sU5tWQ*`<;8.jѳDHt0[~1˲@ 2پ |4f)2O:cJ5S$%w9}?%m(b)կܶ8G3͆Ctc!^4ޤo3#oն d'_kަ+l<؁C!s׍n) YQ .*jKn/,8CS; &񫅆̹pu΃P*~ 1pM2/B(88B8K }ԃ;˰2f555qMM43v\T 96[{p2ٗB4oaK1 7u6ӥ:3C#ݗ6"e1Lk N"P@Rؖ X@]9Wӊ@ eK[ I s\0LU8w!T` |NmL8o+`tPv'cT@8 +{yփ >RX;Pz0,TVF{A; S8˚ U*l,| NmZwsYޝXq؈/aM|דi :iw2MJ$ Pў}ӋoON C6`hb|W[["@ڹ8WsRɂsr-Z5zЭj8Zp?~Qr6Qy,gB{lfg}Pw+]~S pSc S1\,ť6Ҟs9h+*<(KFeH(yIORΟ"!5ƃM^?\~ϥt|-xᛟ6*ۧ^/?6u 5kiGPywI+zEy$RذmݢnJ b,c&ђEDeӃҷ XҪS QM=Eg6w; L(3HTm#meAi|KC>HNŜ67 kW pgTcX fRtM(}c3Q.#B|V-7~#"QUX; ~>hx#n<#!x\w+ߊl`˕:]7Xi)ZҩV?nm .x yGcU1=)az@THVXDpJFLvHL55p%R:K- 9&xWl L;Fjݠҋ,@Ak4Z| R$RekbJ3 =ɖ7]R#mYv0= < V(J 5(<#ggjQO7Wz!?iViy9k#pefI+/X% Q}/! gwG5*l0r!UI.CR{i8J1NNَNƓDšHBQ% m`_킏ZiS;YX]e(aTQP] P\p1߀jvs[Ҏl"y*5V]by>(dDyyFLjS1dۏXd2TGàzRR ଒(DJKF`P(::MŽ\23U$N,/@FV\ͨ)z4UfLE6~UEQN-"oM㳉fJŢb _oeA_.mWk=-h>FoFqwc  Lc]1op%l:Nd@ĘFĒH]X fdXv,쉙ei1F<Ɍxka^0s$M*B?LI3>޸s7ƌiT>\7l#UEx蠌D˱pPK31z..ڮIe|׹0c)zʙ FM94Diqaud_^-r܋Dq>OȫE矀jo>dv l8=;Wj7:2Ayab>A/}TID2{y sKdeJP`@l .&9T02"IJ,;u@H.;h8FKIFOK3B:Ʀ)H]em%,gqLm-:Yʌ:߃6M;dm^S5C]g@SWGukQ/ /(^*D]zXfI!Ŕa!QZƥCekKъ8em, Ϊ!uRtC1k~: 7I5ÂI~:_$!8D'{<6$jIl=9O;\(}n>6p*asJ^?r>[@ ] tzᑡn _g:ɩN,ȴKZ+EcS"cܓ4eloVbkL#}A Faȵ?k5 5 `k|pfp[&[8xU_~Uuhv߂xr؄>mR)%A*t&H5_ʬQf՘W~*)!*%eX;[gr)t% H t$ǒښN M[,c1=;%a Gua|\| px3Qs~](|!)ٸ^1av&8p$tW&{,(U*[_j{Q"Aр l&|Bs90rtMJ0_97i!8C;tU>,ͫSݯ<,8^NxƂ2,*1 R(Y\[bj -uKܟԹFDSnŕa"ǽ^d<4 bLg0 <ݧ ̆^5#`37_qo:2Ƨx%e+r ^,vRL'M:]Rmu }FϐIz~߸"5xs/*2ȉl ݀8L?%0@thXu-,{!nxLb$Kp܍ٛs)ݔK)m<9}"ŘxcѕFOTݒ8eq<ģ&/݉SA!K@ͦ2n8Pqi:A:WSF}.Vok.U8ȁQj 5]D{~>{6O`.J7B%;WsQiK^={_mMtLmyevocUsNEV(j_6 j-*z.m^JǗo$3m=3U$"_6/\͌ /?E=eq%?~~kLhr0fkb9HO7is'zLMt!z>- ぺW}9QZu|#]W)(\>ЦsJB"+# ,?%v1(s/.)g60f劣a_&VcR~]:RD>6.fQ0b!Qxڸț0DG)uߘy|iz2'n񧛢o#=I_PSUܒv'm"/bá,Wŧ廗X7ͅO:y6[H2 hDozeݱJ J*9AMͯ`a;࿝vr+z[sӻ1U91 iVZ4B? 1jW9Ž@N'=SMSt ?wiB@Uۑ)H"d.JxyiME7R)0y*L ;bbo i?άo%K0nmy{`EWs]PC9dI)Y}{(Go6|n``6o|MlWXCʓyYG _1j`34t)  dt+8/=e)j83eWT7%{-$2|YRP۱s`3mo&ZLMkz[ү߁P <~Y=K71ƢDkn+eNp7ڛy![J&@{_p)kԤKMS'YțZ*LHt-t(TXe(i ui&\|@S$VHDjch. w6gBS e ̷^{$%\mx s䲷/zpEikdYOHbD$G}Y63=a|ݟ]ݒ3b􋈠Tƒ+2KTp+̉j1Qrq\#qsS'Hש\hn) ' ‘GVM?@Y ƢE_}2K߱OGYtU.\w$L:CjqybWVEpe/J:_ pl8JZḫ+1]q[̸l}Sm[xl[xwj5Z$,B؞t| ygHe" .0VV%j2;q W¡`nIE>;PanNDES=3&y) 0)/ay`B}^-ʥ(^UIij0]߽=7y9j_K[WSC.4}OghS]n2h 8AcJ&nxO>/PrqwraoW3G^f0i2ߘNг3hf.PU;A̰_ m@,뫒Az}uD$qnn{B>A+:y{W-=ʃ?8N =>ɉBrsreR=e_kCaC4M I{e((|oL`o&$/gI3.OÍkރ+){vǼk?6 REVv'?G^[} e76w*qRW-ßBG֎C@FncCMiܵ0"0CaG,go͂DRqsiFb)'AxeT[]Q**)G)0ܿ3HSy0 w|y !J(bXOD|n}>אWS`dQz4omu'< |ke9:!y%ofؑ k͏t@3;%8CF׏CY!"ďGu&CZa"ޠwm6۔-3 F,ypYߙ>zwG  O43-'?yZ5##; a{Mrs%ql@]I{ن.#+sE貇(\0}[nTo@_Lâ SnRAe4: FtJ hl*kZ+r/ `JX?ȓLP,ҫ9)Arv޵OU0Ù7۟!EP7绋![_ew]g.\uJR(S], zuUKTc"D&WAHFZH=l.S#Ö?DmMjL=UYl.ʿJѨ@ ?F]ҪZua0þ J$aMF9UQ'Ô~ж^U wkPvj]ٛ~r^vk\'|xncfQ`uDHo(lWiǢT{:%QeM)H=Z_(pF$_kU҉sУzkvm& ?#,F ]qא$dՀ$nh6i@WMo}};=G4iMl;N;i\H2?w) \X |3~Aq\w]:j6Ť5a,C!H3yUa!Fԗr̥b*L!6]餧0Eoy4t`bP29;,q `43pk+hiuq^;$ך>mE, ;3WcH:R >* d*b&430KHT.Ȗ',$Sn?AHt !rLxo5+)^SjdR`pz.%ZҚKG)2{n)x\؎AJ?!j12ZcQ+,QЂ 0Q$`RSRaWJJ L%\_Gՠ̤! &3D>awVbB ߉.G\+|'׶nO"D.%؝fm9? l0e?@!sgC!Mq=em4zR; sEks#3U;q97 gEa~Zq%nEMxc)qL͚u՝|#nfgͲ2Vr9^.u6\)N3Eo!m¡] Ih+-j<ZӘs' AjlQi,لD<@NmW%RU;~s# QK"5Res+ce}pSxx~S|F9im!Os&r_/_b.#XO 2 /RS/K{乺8$? 5,8%dzS\ #[[teWg#"INM pD8¢9n*oس5UwQYnՂ:qRJAp QKqZ#~,ңv?^n])}O>'-<;hlr54% zC, :7B?)h:J }AGEGc5?_^daWo,9!_$ē4ikjؙ)=6|с  JAa i>L`\ /QlzbG'[!RಽCv!5n Cʪy]Vja<;.v?&?9$ eX) l HZ2=As>_u9UEr \by( >i(X"It<8 s|h>2:b+]8^٠W([.#?F? omo Ԁ>DxC4z~ +˘lSZ+%CkŌm] 'pʼnP/'-zk8D ^e[Q#b-\{Ӄ&d{z}V9+l1 0vB?g~7>7PEl$r}颬n)2ztn ZL1tF1B'ӮU +ixԡ+67a~bJl#Ó'A}UqN&>уڕ e V/LF0(ioCAh6m٤=Ը$]t娼jJg5Ɇm~},Æ+72' |N^ |X9CCPPY`FORtg#FV} (=`amhSLTUސI?ez@tLrJ\s&e^43!Yvܼ9#W /9~wҧ[N+hؓM )fLt.`P g%7 "<8Xl,RP]?~>Z[sVpG_ #A/UhFL)>"ZD_UoV(LfƇw 4؈z??}DB4s3 ̫KV@OM2S͒F$ۻ~K@r>T,.qІs5FbpղrUSK)2sT1T}ŻB^ij2y64pXIL _{&RCSn8ǜi-߲ޮu$f }imx"&o֥IAxIg 6ӾܕwvظZZq񚝓- w(Noh4=nzq0Ƽځ:48< va`J pSם0Ӯ|\@mrѾL-;wEȖjirs❰ CgPx,tqj%QbFթí[\tŏ2!Y$HTPs%G,Bm -&/:ڡY$}QbZ"f)[X#S5Zήˎ~%7ݩFDڼK#6w@D -v Y a<u@:hhd%8fnT%<|CueVEz۾W{_䎎fͯCGA>s߳na %_4Y KZT]]Y,YddS\o+yuOgd(S&=?_RCڜkm&'ðTc>0:jL s޸pW|IT>{=",2+h@@OnS{e)LK-TLG_)\3./0Ժ(r~P޲ĺL[V^"~9vS}ʘ}=1\\ y 0@ #)b5'{yJ16ny6v獍%j좰޼!@Lb>=C*e>G=D$H5N2`cy&çik4)5pfK-];]mJP;#45Nžu[۹ z>NG6E0C[Ek<: ,_9= ڕ5~̉gAuثCnNX ̰CN!FႤRj\c Tz@JR)miw=T;*pn0b48zE3H Ibb K^/w,XY;5T9hc 2m{xۇEI*g-a ̖jJ ;kQT`l:qR}k0/N$5\dFj@&EA+4& 㗥ꉂ́2:[o[xyN{q҂GQ2Lԡ4|i!=Ĺd0x' Z:SɡCՔ$zX@me-sNJ*Q&>\88Ft .*ŀZH{I!ć"5"aƏ] !g$\GF:I̤k\B\k/? ";&f TR=[SjțIH< _}ݯi`k;r#\'Vv AT{5"U-hrwS..omql1J `u+WLl}ԨW!!A-l[ #ĖIΥ^nZp|;EnLÿמ ˒`FY[/ åQj2}HvZ%M] vk0,; 3!lWA'CGeiv}Wnz~^O1&ƽ 姟a]vCٜ?Epx(R尴|oaA;&$- mٴqFjv " _A+PvTΥS& Pbz `ؐR,G^=TdJfٿЪ,~fء=*$lZ(6B2@TLƷ~E[ۂHLsOԥ`]uGEo CbW)>z'q0ψ tԙ ˜D2XțTjemfCt-쪞~lw`|""\!%ВBW#04W`mHf>336ٌm$#D]\ڂ1)HUe &jHF玝׊ޗFK/R]ꟾY-? Y{%wKiCUuVn `>e0r f`Z9#V|bR爘^8ꝩ W6ŏmrE&~LV؎c--q:6'xX^Î:O 2jߥb聪PKgM!I,CbpUYD?a<M mv>C^cs sBP*9?uʈ{?\/[:ie 6ӷkˡ]X f& ?Ei[XcaEeg+Rأ.пS'"҉ Rz}]N {t8kD|Wk ^Cَ\Ů*o\5_Cqv@}:[NO=Ka(Ϭr!2% zz8~Ƞ7Hv^0^Yy{a (yi{0!SfuDx]O(mA ~ϖܯtMt KK6m֌TtJGl&n^ dR@i)IIviIJeu?4GUBS:,YkɊQ=8R}w 4R4etN@?XnB0L,- ³g&V^/&ESXJDEkS_zT;,j6Y-߯m^v 4 pO:x>[KIl?@Ab2o|p LOh3'o5t"5Mwė0sbnɬ4kx%Iޕ.gރە;Ȯx#)0 "Q]US8 }9D&KLElM [k`7!kk;ǷY/a3poW ڵiЪƨf׃luSmmɮnJ]wG5b;|ܱ<;gM^; /}e?CVHtkGIZ1) 9#֠X;iFDf$enՋ[ߓIt\`Shg paF>+(-78wˬmQF^loi::[Y?BaUh,,W aJQ-Z.d=MiIUB{Z,GfKõgL $s2C/I`Jόӵ8PY/_6o~?NUa/C( @yzdاc''"j0:>)w2 &:_ W֩Uܾ u;5'46avp奻m PpɩYTa~bʤb:Ib`}}w?aa^Z>jίOFm7? lM,Ƙu y;N>/W32ܜL;iǦB|˶K dlMOd&w*IBL>1:TZ$>. 6YXO1.y|'>|g)AѹI{!T(=lsiWwXjb_L.3GJ37\op]h *wYU 14;p*gbQ /׈O)QG9Kw10{6=%x^ J6\ΛS;bΦj3$b4xK˜k\>|(.֦l([gVI;cHLo_]e} .;OaP`)$&DG9b], Î#0ґK)̝SKLoO$^OA~p|VҤnF FK"#U9=Q%#1bX@bG)'+a!˻g2,db/G>mts èbsѠ 2鳺'mxx$`Fx LeKIi3_[@v'/Hgbd[+Z=0A0=M4OXsnBz33@Mg0%Aq*I&V<:^_ K\ D9p ,YcZBh a7|9%"!$}/f)x*b6p%r2jmlij-j_Ptht -i۶w#@{ eNX{}mh :rS"ld}j&ç`;;0{uLtiHbQu+Bb/%rpm%4 |"qlB᭩k0tRj'ӟڿYyi(;G 8*jiYPR+x>e|%O/ s* ]EQEżR\7cQ^_A=;[\ɀGf2=[r8AFP]p,Y&MB\e ij ̀Q9m*3([غE?L %yV@&-n`]a,=ፚNfz+ˌro#`R:w*Hu7ٖ|h di*$?-Y\(RR>9p𽛮S8h0B~:P>60N5U{e@9 ڥ>/lu!!GS x6' R"ۂ#O0gP41;!{[ )9 9[3a!+Q~PَMړR m5S6e"lN.KQ%]v+YyN[ʈ r a455]\jKO]pKs2Ѣy2SLXuGxw$+'V PF󴋨\]lnlC3v i p5 *MsN97I%dpM%&W&QNA%0UiEwy ]` eNC'b/L-BȌϾCQA Wc"ÉM~|Z慘HurYZ\6V%ʼ=<\X>(ƻGvUbx KET%tLNJFh$ozZNi8VΞ .fH`D₹u0.=Єd⍷60Jq~1CC~Ќ*E1fѾ7f&-JWT 7|nR2l><wR?!<uk"^TaU@R_@8gX˄ɳSޙM^r ĮTu0ޏf7ݟ:BC xC%*q`Q_dfF lV!ww=ֹC_ѰL@VbNB]gV6g zk'j@v<6ekf֭UIUGR-5b`=x@Bl=%7 FZ9겱D_-r|$pgZNV65Lt>ͿNJuyKWCZ+hrW|K+-v-p*9E[ E %Y5()1^3ĉc5:Wn;$KuptVbң!"+8ӌI #)tv*2;}dEXӼk7Bq5G(FŸOY!^-Udc-oi|Mq Gե &cDH~D8^秺欨LLe^ց핺trt#uWFF䎏[r%3/j e-.4dq!;Z!$ehC9q<G>h9v",_6b@3!WWZqw0f'cTeۏ_*t`jB"pMA&VfuhEއۮF$<ǓN-(Pl_6|YTy"ӻ<ݣtrwGꝲ\`{b՜NX^7euZDn5tKM\lHXnPoZ٨aQ +%5b m5Ab]䣳x 3/SG^53{'BѠq8uI}Pp߅s .#lyv1q$Q9ί yyq 8]VanaSǂ&bwr7ueԦڕwRNYH0fNm|uT&d|j#CC!K./, D8\A؏>q]eac9\}vA/W-V#炎~}]hކm!:f^\L!߄"}PChO890No)LT͚ȳϨ|vDžY1 s!{4 ASo(3Ei*w" s_=&e$u~5VmLZC'^ tEӎ`V#47ձ f/kŸz.Q3e8)<%`g`Bv}l-+G4 AUnl$hrM{BoC AtfiuGnaE8T4ƄĞ%9I*4;֙EV6p~sO7Fk9^>$0pR/֍9LzHM%g׸aQ(ʆBy#Lo#ԳrvuDŷesGx&T+e{?e G;)UTέ3n0߆lr>QWkrP_[ q&yVq왌#q#kBHY:$o!E"p8YVr{qj0ȩ`K.Gp^m_*C\-K'j6j^=Uʶ4zCxQ$}\+N`;$)p6X;ꢜ +pŮ ixs=O]S[ķn 4eحsHEM8!vE<R8_?Ht9l29.Fk姮{q,hj=)l>0s7;vJۃY 89S8;th՟f2Sx^`d[Q9E"G_huRB9EUD)Mφ;r(8wwS*~ JC=y[%|$eo$Ek+ I(J]"kڃ|<5nL'(XڬlXC`a J0wR"tvyƔ#My g.Jc >iIv@ u= #(z<}fehyh; *nbz58'Oν }U'CqSZEI jZN7`ju yI. <0 E\Xػ@nPgQqZ=[ huIVϮp?}dpDJhn5g H=@\\ '/XĂjzwxZ2گm{35Qi=xԊ@Pjy,.\5N_!kmed܄n¬h1s /CIb7ʌ*TO6܄2Vh'Yڝu'k,A.I!}{bn2OP4oo -ĝEńБ(f1 ;lEM_d+;@i6_o2II3J{#%INl*{lN;#vZS>NdT7̙Qn| q*ڬ81)#+ڭ^ۅ CUpGV~K; N=PM:& WM 6<;oM#Sӆi1 Vۓ;y2=+/3O$k'fFmqt~lr01{7i8.5Jj$W.R{p?eP-p}Zf3=IzN;h- ]4 ]%6C6Swycנ jmUS* 'zR1cZ~G3TWo{6Ѓ2C_~%BAe_E ^Ɯt~!(_K`?`Gb#kfd)G*0iqυQM'{qN%ݡQ(N`~wD8SO]C#mK7L$`~TP€ <ݺZhkNd͗ap8}n9 .Yڿ}*mn:TygI Y?LTZfG$ZʼnfSb X몈:iD2E DZoh=(1f#f'2DzkՍ3JX2O rƬ~-O N˱[o2<'i]ŭMS ҒavpxMF-J ~jI9p-X qEVƈȱVbPZ;sN5CrsF޵ nu^SPi)GWnm !gUXń0'I g{ _ICH9^D+"ddN}L&, Q7N@|к]gd=AarK$,Dݱ](PYAl3_GZS8cA~)j&Җ؎`xɏJCXQ; !̲r)P-OK|x`~=<)T&+2PlN~K[k)*%u ^mj}h|kz l4zEX&QOn64r͐deĢY*f+?NS޺.G _25y@~}0ZP5h-^'ϸ"%U2s\f9,}N,G,jܪ:pV %m>wSy}[gg)qAB B6Ge_k'Pp^Npnj|==l%}ߊnCsIdhd\V >Y}<D\~"tUo>YV_aA EZ,#f@lyĦ5׮R?VEqʱkDe45owi#>z-r8L uLOqJC ,i_*-l[d*Mf[]ٔr|9wv8p(mw>0)FBuu=6-!'லk8 Iqw9 IfPp$.g 1>./:,9 gS,)VKFn]>-%|,r{^D&jBv֪Qijr9y @v0o Ͱ䵚y]{:C箖M% Q3>'"gfOGbBtYq⼹("44֊(V=O&\vy(Qn`7w 3& yx4)O[whʊ-)Z=7ͩ˧ұ8GK~=79.햐e! GNbߤ{!a\ǎG.\A6iA69vDb6Zvnrc,'1o}n.G=JocYL8OI6ʄ'0ό}rx|5,l?4[Y^y Ύޓ}d6+hϔ%U[CЉBI39{BVP;u3]}gKI}uׄyCiy"Nn/"Sⰾ+c-Dtڮ7rO$ғ;| w| oH |a3/)3T텔Mm{$jk=ѽ*HÔaMJWBoI[g$-"˙t0pDFx%V?XnBЌ`l#qEPDxNX}eV-LU')q  wn`ct1ɔ@Ջ9oŽl0R2( voB;rLzOM,ƣ,(ZLyl~P9(qeƍzo@UDS %y. T@mɁMkoL_A W7 X.7Lda_8ߗT$<]uiy! Jk}WHs{?  ]-V=n%~z7}z\h;}u [o>x3mfiпa@[TX&vh1"eA1BUBO pNi+(׆=yɦ}3J $Kl_#-'۠yE[=eScUED;M\?No: >cKb'>Bn-E&$,wfX㝶x'Pe^w~1cdB|Wv d\u>_ 74-:Ynu/x؏ժXIxY鄿Wi*W@.TkB֚FAʪ"79cNSs$$HD_Ӌ\._b$26$W;+z|WV A65IW¦݂gw+SE'.ifg,<"O=KNH 5=6Mֆ);n4 V4Sj[v, 0=st/V7n7j_vp{v5N2\lCW1E.J*Ӟ7=?t!h!3\HSmȸy:gPDXLjLmO/D p8jq% @{7 4]Q 4tw\i,G6f%6Qp.H=D"J@nkĺ.7Ŏ+;T~$K&t?}1$= 6"犦(e}+M5Y6VEN8#=v։K&9lR&b!"P(cGtY 9^ՃCMgCq!Jm_S*HsĜw.U,[0R>"ښ}1 ϓNM8*x%l;UbWF=Y~i@15[Z +Ơe?ȵ_"˸1"8>D@|=Ů ي†?Wu0^@uT<4HUԍ>7a\؄Z䫎t1׺?5_{3pu\$ГSyOؖ2fp XGo5aHyöQU^T~vC;:#̸\=:YbK@u74 O=Sc0pJAG g+c,l$ vX`UfYl壖 g`+sxC ސc%Gr-\I߽b1-5<.t^iHDw?6ҏd\/QVZu3gP7^ M" BI+s \9^DcUj RIf ]L8PmǾ}'o s;˛W=O@kx`kԡA߻!uǿt`)ڼa|<> zr o ¶ PhaV trk̒Z:vܲlC[g`!D.hvϱlJz1z. ێg{Snf>[me~Lx־J#Cjg#x+UnfEv5 q1Iy?o=i1 " @cm5i)7̫N[*A:3idA(Ly0TQHYy[",Y# J :˄ڇ%5\ZAVO&Zal1Hs)FJq=H-Z@#ޠ٫R^Jg'{{;1ÝYkM6[|ŷѹO"Q{WJ?'2H϶_=@2Bz:CS-HmtXW̩Hgм -djgzyu67elg齞M2p&xn$:L-ܯodεJchhc`?8y9נnIY|3ޘBy6=c׋Ɨ'^2}vJyf[\5'D}z/m1B|K`[/hyN(l{S-,&+LqSn{0ޝEv$S`xkC٤)vXm&@At7[}vܠ<^ߍ O [.{ osdVo *e箠tk&>#ՋV‹#1TA5s=lr Y8ݼɧϴ !9~Ta0aSn 9(9u.Wvg䠿p!kR/K)<3kF¹)aPp[qmYr#2ul8g XAlc1^L5EI=#"NU}R%!+շrҍg ZwoEY|vIfΐyP~@ ԰'7Uz(ޗy'1B_&LnwJQ=y[ANii.FRC#Fz{4M``7F}^/\J-(bB=ImΌ!/MCGr>$zA@PAN;6e`s؋]`74CIjbU[HUoE5@}NH+&MW $CƩsU Q*ɪIQHGBuA7F;dr(-G=3ܯV1oS 3X,i-*CpmJZ* B&Ntqt՟3k"W+Gj+J!LS= QLϼ ԕHAd>h^*%l~)?Τݠ`U 98QCKx;O~.yP7X,4SkwoâwYUZ|fd `,CK0Ui\,?qW>/t4ш+5 ZJܱtfW<+ Y^ k.LUjrS-Ppt`׻; vʣB_v[|F}Qt8 E=Ԑ;@4|v@%h--!~Tco,[}䞦u<`RpYo$#!XwTxx ה</֨ڵy5ϼ"8"_yA%ڛvXꗇ~ D܂A 1[xxbK"%u_<$_"Q+MTl|f=b\`Wam3jq 3n(bw~k\R]%)  *ffs*ҙg{"#.\"M)ܲZR6RB$+s[z̦r8;=fJ8ϾSTQ~[Ϛ $F9TT!M:7\Bk3"J:.Ӌ5σe>`<@qWfA#]l-y[Ϊ5M`֜9AmzGXeGcduCPGns}#[ 0-3su*jf;.:0{HJđ5#ET~:-PR YXԺoF-AeF%Ht+;3% J5HC%0 .κ##K%(~ä#4c0Q؅3CCG~2[ tyt3'gns6ŏ2Xg@UrDC\6;Z߄BKbI9[`df:5su$-·`eZ+Zo#j.,r‰ug&e?%lC5xteGmbY4o2輋cBe gdg#=HoE|»dcBxT-+-ѩ7LrXm[B%+#^3SQ~#Vr#aq+;yX-5y@CC$eYR.l-)~]hNj ul40mLbu]^0#hV˕ a @& I~`)qoTd{xYG݀I.r`+$ەmoxa7E64<5 4t\."q=!~F.C_D 9kK~igoXGr&X\(kPʬn!kmՐysBV4/566}:6J$M%!A)lڏ.ulkT2֔:FLZ,V 6ò}ّ59 ;+2indV>AtNp;"VISz=l#:-_=8IIƬx#fh接OmG<CTv3%d@E}!`%߂n. `ڑKcNxaX^a"(ƍC[{Iev/[*A0z.ȳ%lH5C7R[᰹?f74 Hv(o#VFȹAqFǘFR8Ar(Z5耽N:y5v?ZU,,Tv }Ч1o 'UKwdn*TafQlڰq =ԌhU('ցs{qۗi 4׆^s "v_"7gtcoJK2ioS'f<*J?cr "R6s~,?|dU :8V@(  o2-U43aU)ϳ0n烛=2$?|N,%RV:3R,!gS80qW}۰ԗDZ +h輧ͮj6)/Mkar Uy)t\f5S[&>M/6vSx9.ȰJU_|aqu*D|򝤙zi\A&o?" 8(v}_F8ItCp`Xz%mp|_Ehַ[N81sq}5hkM}X6񬗴o6yuFT 㲝N(mPic='Lpߞ];;*_iq94Չ& BO{گޔ/$CyH-lvNyOltXG=xT˟=8(q~]$I9S'W"3GK7_z2rj~Zgᰧg\} SC5Tk& {Uf$1G޺3+0Пm I+9qU7)WV@CA3S /]|X?H-&9[A&} 7$ 5.@Me6LB~74U9P + Y_CP噺 5[u+X#ދhY(jxGHɳt ,͡o3·3 4Q^$=2M$*R7@:w ?žR<" e4 5**u}1#b>MK>k0?P7:2s0wcHd&(d O-D,fUWj8lc僆` \׹h]CI&p؊=V㡛 SϋLޯVwJ՜2m rFPͣx\ή^F2Qx:+Ud]R=mtrjZSG_^'"TFB:0{N.Ϗ&+kTnn&W'JSگK9DE`$Z>8KjGL 6,ceiXM`P1G ؟ %[&©XgdTof GeOirYyy`Q8`lb 1/i}{)FE8rT뾐k{JG~.aiK:0Qa&F'^Ñotm7@C:yȭ'Z5rc@wɦ>4=8G^W:½mM{I={qM`PpL׽~>~$  hs@8H:+~R5  @/\ ~q2aS3*7 ki!C"_sW4jc:wV#=C@$AQO! IuF^h2RA;fWA Y'G4}q-<΀E2>vKX|WÚbޟƋ85N d'a~FV[rG Mɺ '~5?I`bVIwyvAZ(O$Q *q1W%c^'2L`!uFk *y*UGʗ; ^KrˡUK/fo:Yȴ߂ Gm:G 4%ߑ&Px%f=I,nHnEE39lC^I(@LG2,/Is2$CJmOŁԜuX'A2-mdBݟGRq43Af}'$%ހǓbF5q֑0\3x)L:zTQC$gvC7{N)YdGB6-Cb PéHU,ط?v8gH,w:TWJ[ew e( JP:},W0:R4ѴOXׁ$29(Wލ*E1Snkͭ.sG ZU.\Rwq&{-,s1ᬀ "۝bN;o4S8el6y}Ӫc̰ $Xӱi"ZoWdT{qD7铥0-:,!bӷwݵ|Xy[ B& ` F I z O,O U}"i%`b ֏D=yx}دYKmXߤ^FԢc=F$Q`?e*"fBʉ5 ֌/3 zq!\!f(j[47r|.Z Ck YJ-UvezeNS|Wkڮ"8qB7^͹1Gd; N3v< zjc+d*?#T&tjMø+`q,O`0c;!RUB 1xPMM/ma{wF{d)h?k[UJ`u!$G@fمS7yၣO)7Jm.=-yK (^6^0O Ѝ>sQŚ0ydҡ&L!$9/J0xO~N\ǠZ1e1 :}zХ}#%SN5#>OhgғP0Ԣ@Tn,ڸV-2 4o4NG*f/øo)%=W'{k,5*sT%cwacgbIA;nH>ه@ O<ѻd*>twtw nyLt}7$ a%^!*;}IɻXqA;o'!ph p~v|rH;{o :NvbA<1&bJ\]Samm?T |ƽA \f7;VؚpFj0wz/ t‹O9l*E|XA5-L?1Whtۙ32"*l>_r`$s<2?aK6a>7mIqQ(*)R+00`yވ}gQ"6򁜑Z+K7 :|,fްmaL/IU4tluB:'ӂ]Hڻ OC hC >4xB׬/?&,c'"k12-HqdmQgua9PC)H$s"AS8̜l;\Ћk&cR|?@pS}Z8h9!>;Ln Ҝjt°6=%;Y󫄙ht# )qg`\,MD= '"%T=H[7H7-";%vf$$#rf@?6-ZCy2F]ܬ隦~yVҴysNvY7 *rdn} wenjVge6DK>y=?  ~E d5`~ߠ(J -@f48!W;#c7ҸbKvkq@ṙe,~-5.H@^<ɸ'3O,J7N8}D-llS'X^_7ME%T*Qu!'֝)`>ŎOwiqZQvq@bVFlz^5S1H]'w?Ձ#hvAÿo> > {{p#lQ&>xD6Ĺ[=]CKIL٘9.=sY[b\]4DLO qxcO`C0 Dzl[W&,)";L7@aQx*N+_x$Z³U>"+J#=̀b<~.1T2M"D9a>h }.h` 37`'(#KyЦEmz "?2z䮗?:e:?bJ~4hFk͇4fk`1WȖ6shAS#;sl)xI¼8[(:A;BUt)a_aH%4[7=CI2P4Ey0^P c. ^,S1Ej|JF4r3l-G2:/p Y3Le3he=\FvYMF%PZ>'iU 5^꒝f/렂Byfc hme1\}ooSfL@y99L-ig( dÏ< LgAGBm;MŎ&vfli2?b?μM/dT~Ehk'UڽcW֜OT [7'‡y'u՟L%rsVܥ*ݬJ _D$,\15$ik2_gU}9[+7yFYZIXJ3Fr8lYx(6bӣ@XDD?8{~HC"R9i4rǦک븭9> `fI!XR|K,s'h~#}O@jsagk7egZm.pѵ}M=[KSZb1c` 4fSP2)俌N%ěh`/RB a32ux!L_hLWڝf)'ssمRgSꭐ{0 K!bn~ғl@(-1tWncvg('eEA, Xlpٛ-җj+̟=j`['~ҫr5\?aʏ=HB:c#ybUiOR4{X 8RBƗKF`ES:{R -[ =FkQd`@jA&@(-~MNWG;& e<">oE2o Vك>P'[[%LWԕG 0\`M$V߿2EB~6eLi%wn84l!.D@7[ہ;8":>Io$>!~|bd$L}/[\ńg%i*a?`)s:3Ƙ$ HpV.P'/v.֋>}a{]%d] OWC{. ~Ts!/갺*?yz1U+tF}DCjp^uu3(Pvt}^ŘJ-W%̳+Xf` ԣo[ZSq/ыMFR2Vy{yo[UXn'Kmzx+\| LDrCV8$}b.@$jG餆#z>G\ć ste8g[YzyG>PB eNLKeO=$_v_)6VO^3e4S8*픘/jGL'0EؚtT P P5ath~W2UMiSY@%=\r`u+Ր)0t9WjZsGie -iOw;UsL7Huc.k r6t {UksBMqܤzk3΄~YEa( ȩ}eu qs|}'opM` `{a+zV_akP,v$!U_P%|Oμ1#k|NVߊTxa Ȟl?P>4&@o$x,a9 n?1,nF!Ai es~w{LMRFH\ / #6r?v~EmUd1jռ>f[7*=(лgGu`m,Ƶ'ArOp7gq ˔cn_Md 29{7U]h*t!Fְ)>uUv-K.= +ߜYSRk 䛓# &xOUۦ{EZ8whXTs ѧyCbEh%mhF̦&"Jw:$% 1[ ?]]1^%[&ئ@EtߛFNxd?MFlt]c(WVe_E۽q3nx>Q蹲_TEzo #.h&dPAak#!$8V)Lg+yWW/c99LŖj;f u|ҞQ`2d7V,Iș;nXX}])Xlٽj*G]أ)W)%kZClıL(CE\}\xY>-0HR ΟMj`3s K4]s.T} e?СkE[$77̶w<*f[ ~VN qp!^2T2u-͔d{љ2f;Qozj PO!KQgeJ{s;N#o0~d ϶/pd/RM|e`2 ԧ#4$/(&F N&OL#*}n_O3^gˎqvִD'e5vG[f}҄n~}k:zJ\j$ĂL3;QuN{À5 [Dh۪k5^]a R8.?Z`ni!l.y6qغv↑.+(_G^,#I3eWo ]RDDU{rj+z(;(b-Q[mʼʩ. bVKBM qcu38=ssٓ(,?}u9,ۑoH9[úzqhq,38G3aV,e;[h펪W_~\o*c2ubk91*g ?/6/*fC^]ؕЈ"DpbЙ !{~ 5ӪԢX_5{QT^3hlޏ/o>"VÄW`NYϷ@O 6{;XQ u}~;pD=gg: _.!̓'A%bL ?/+Ytjߔ@oI(^t$P' 5Eqw}ͪD2: VZ[W`10emrc_JerAIHhڼAī')f&/xԔ[c&G"D+:gw}%02Z1O`Q)?+F&$IJ2G/'`=:5h80 GcJ+=iĪLӀWr*Tz0_%v+%xJɵkv$]Ypп|{5e[:RޯZ_+Z.Eۓ/zBvrucf`̞HeyǑofI ;;# :rfs8<TxLn ʴI^S[V4mqd)J Xg MTP/BN )F" 9l9&چ1{~PO{ $'=[cE g#D F=l`0hӮlk!S=f|eioLŔnA2}a>NrN HBzg[iN{Ǫ bM^F6bioj>(JM *kY8wMG@o; nj溩#XKA3_@`Ncv ͢4CLQf#.,!`LOkIa'*0 %/e 9C}-WQyvWDܶ]tCտƓ[Og+!` #g*" y6[}|]vGN{Ks}ǎ$-u-.pb"_ܙޯͳkE@>tn铧QG9g$9ŽG'>kB,<[^dT 0/ 6rHi!OG"sEKB}/uO2H'axh8I?bQ@J.hk8> {]3KCvM%xu*RYox0cA"HK3dcmגĉx P[aM;H|d1R UXjFGH4|{;6^_Zsp>Brvd/^Ph Bc./8Bu`kB'84NXĮtƢEi[DׇUWjK4W=Xm# ^&q0yeDqBg4Cwdun죱't),w MԘmѽ9-yl N$j?6tB܁68@T8gbn 8Vٶ+r^3xe~&vh*=b]E>2T0G@ xsiJGV/wd8B]oG-6{7ZxOIm-[8 Rgp }Ev^×&_˶auj:B;虫<6X(;B/S+uiT#ȖQ>4BδK$:m>]&Gv͂;έ8:4C ;<'.:öK:kVUOO芖PjD#Of5M\ߎC3Iğӣ7D2 94]2umu/0'ok+VkS7AMB}O@=o/W/-j4 t,͉hׁH F"^d-ԗq8`<hV''qбt= Ը@` &̎6=#m%1Ɖ{lkp 3ŲȈ-ui I6;bpCPj|CI#-?|W,B;%:$ҽEeI| )3 w~wXz}~$["r,dۜ; {mDcfK&P`[:R&s9 ėi඗Ly5t6Va8֤ܱ9dn2Qw gf[B>, |O +agKMv.Q['*k?5Aݨ0g{Q]蘗c;~g2DӧӉ>|iRAՀ,>*cnz ŰCIv>֌ ހ%/T?s=ʅ+vtwVvcG ,(U&bSۃFPZw_TDjNqG;)>HxQ} '34v-Ð^ kѬj/ 7, (s)JU˯+i56ϏUNI`+Ip(iBa7hI_ ?|#_fDV)s&v{_]bn"w/S¨ eO48xb8u& |٣y{YԜnb5VwRu2&(Y[^y~MKi;W͓P}63~e \Ӆb*&w܈FUROY i3b w)˄.sιxVJUMkho1Lٴ﷎Juo褻ZijơEZEfT8Zt/І-0"!àFbIȣ?{$px PC_8UﻱŎőĶcp!<0oo%(';kl_ȓu$UtYr5L !mWg;-)ҿҋF+ndUhD:EMX4/U-n+%p7FqѽPWXiAܜ[R 0ʛR!%dA`)8j-(;fpp@L6rej V`MpUӨ"F,_9#[<v`ՌCkKTBz{E3K:Gi/3OkZc4fP;dJv9vȊfO/qҶcKikl„W;jF P.{$~Gͯ=_Xق6ϵ=ěڷ }fRӧ{FDyXt^vZ=X[_ӭt9\Aᡅ34FrfWd1䙲HlEt%%_Z,o` 9qb{H`CwjI1 w q4RYkt=sm{]kր/SKUKP?w12y ה]mBNM+=!j6d6A:8U Œ:H BQ/-Ya0}d/&6?/^I(_]/A{BDy`~42?'n\tv|d.fcwK?YV .47Ed(V!ͭIwOK+uо-UTC+#apu##g.g\<B -J4[gt5uK ۫i+^$=;>QQM]Z<៤`I"vW^h#I7`m:@e&Օ)\-H׮&%DZ2\9LUYi#dy؈X $gwYMbo٥1RA<'n-- qu8j  0sgug,Gg*kI,(c$fxJDԮNդZ" 0F<p04$;}f́v8)j}܋D`K[Qzlbe}qBX~=6t mwӧGlC\T|zK$@̆0hCǏNI;,(|c7>Cw:)plƈꎞZkY|M~#>$,K?Cֺ(>wH A*F5I H҅З̽!ez,$}zҫ:pH䲙*l+yN'3#ԼJ,Ϩۺj3qbRAy]47+Bdc.\D`^reE#֭{dQ.W^(R^);3}Bg`7NY/ۛ! v_]FB,:{J&}7|tQٛΗ"mB). ac +^-,X\!gL aUv0Wa5"ݭn r*6SuaJsMl6,FV|L58r_dJ2W& V 2VQJ3('&fvr&:57ʧ5_+Uw'aAVK oU *MUpll(O=k!#2W\>_@1ny[&]F>kvpz ":>|0 ܻ"!~8^Y_S[Ax%)Ltof='uMӨ5q#q6S9 1^##E (˷0:Ԭvlp]U^deEAUK HL *\ǐP.1)ȱ}*Wq^bM8]ېІpPD1X؝ɉְq{:$bٓ1:#tUʩ/mV눦=@XC# gF?|ٗ@{sl~Wq4Iv.0o%ņj9* O'M9vzݒL"n/EnzHoPֱ- hSy]rn֢!5UHY]*We=nK½-AI]`߻儑C/_HȠxiFF0xÖEv~aiOEBoGSD8a]Sk>˨Ҍ^C´ sA'K1-W]jr 0o{IԜpoiC<1c;W>&!l+"De6V_ƾ.'Un(1H/]܌m,BA)YO)(gsvroRŸ{ko9i pLӐv}7] Nәcu2E[*)<$63*LR?6Dӑg7`a~leCʝ7uO&^;C#Ƙ"ɹgӕcߪւ jzJ\,ªC"n8iJ{.ra$ 7'XL(f"kJG[u"6ex~~ɵDFv98PdSVCQ)D(xyT1Ҙĝ[2 YU1[I|:T#0w _-s|Lw}Ot xF$ +;r*e1 3)a9@A `S῍fk:8I:)j|1Ww⎨v0—rd - T|K] .mlw vakئE5?F6-cRB{8QGMF4d{8뮺آLC<̥*fY0}lOI7HokeGxCCMitFDsX#CDv\J9 pt}(FKW7Ki9J){`wkUfO6ʔQ5naST/٥EPiL4:iYjȧ L/jh,dyVXB1$ %o`?wb%Ex=`TVQ:r1݈" nYszRR8:7i=2%]˓SubdDMP! vH|{2= VR8i/`\ș݊ Lmz=!.XU[w31i0SJ)Y%܌lZi,WPє|%6o9]2b~N/zp`Z9fUY:QvVֆ?.YأYE&P jU#< MIjz߳'.˺@^'YcCFXsyy oq=mbZboBZ'yBppZ{}X p*x>]ͪm/\ی.E$9pZ<;k!ݟ.۱}Y 6ZXڍ9z>A3aCŧ:Єx]4 W┨U]+lMf#߹D lM27ݰϙ">\UkWg5]KF}uINmqʽdg5[tbY/J7 ITg *\Ko5_? !(#vԾ&]qN n.K(EY)).Dgл>(CFDa%m\n58+"6juԹXsV0{Ay4A'46dJV\Ňj-YWYqIv )@xZ[g(sljzv~;zϠ2jBZ>DŽ"MѢӑ+f| AOk-'*[,H@k *T-;GzL7޽(ÌQÈ底ɴYy0q;3kD|opC4ÅPܗ)%bt]Úqzk;%mjӬNp"6N%1K S/Cy"Dy873-m1aβz3~ًҜf$p _g.U_JbVϐЏʦ]Ր!;{lh/90ؐquEi"y14$u7'vC DE\9m}B?M܂O6359n} !|(E3ך_i[BJ" <]7h؊)8wwiF(eBY tȬ#>]<Oǟ̺nm-&onr'Px Z5b=NlV8c{1֗PJ-:6S甘U\ F͌daxC^RfQrgt]Q$p"]-v Ř^#~⡝0Fԟ<}Aѡ|_uG`ɒhedoFb|u޶3JzgoyR^G}a?zUQh8qmKZ(8"oLfy4$-}`­=aHvlhj:V,J&nTɽA~ghg[[fL~jn ѻ\ggpd)%l: <ו_: xma_ڎB䒶ŜTdx L]/EmCQ@uX ds!SѰfW.Bϵ77 "d6G[J_jD/,V_眫'`"ӝoO)eŔޭH2wD5뮬B,4ŧtatdGY^xŶg=Xo"`^ k"fb˿&ć٦ٔg)_Xy>yAPjwߞe)S:r*y![ȥЩqNY/Pl:@qY|\yd[>{P.ajfV;gD]!M&oB֍9ߴW1ف]%zSwռ(>n5uNtx~-v&NwE1h{,H]<-OWUyDyZM}ĥQap%)/%SId|`inEn 5u+ vys@F8w8 ^ h*ݶ*4zJK\9ߺnĀq-t(R5'p v@)w>zrks|QL֧ 6@5}H ʽŔ> PV-] y"0L l,mvxʗ̡Z) #krbD :)0+]۸ɃuiōѢ }|Cܭ04`?ar}Q*k80/h!d1ӭ=du I1caFvPa7%z\`qk~ o*;O-cb=xP].Y{z󴺘[vG_{ՐeА"9H)9ڄ4Tᆑ:אw"ǣ:z=25v wR*0Xاͭ#gr /Қ VٖF2%o0r@Fd{h.ܯ-px`r{m˝/0F;/HD޽mouӗB9%b$/DxD]S"3:S)TG; fZ o AS&$B08Y}ƾKoX Z6iq1]<`^%cp:a2D.~v/qg˄ʌI 0%d9} XZLet5 &WSJpU+U1Qq*J6,`!`f"ƒ >i۬<= `Pt㨆-5vӿI'a- @\'%FEI|m5e6W-u d#{t0? *vʹ*@L]B?H2!vZ),j?",nM}|OUhJO okm([h~ɏКu'L8VCӁq*A0U\LW7 .nGͦ":&V!m[՜/oL˕{A`S) g3 nt](%x?d`IP8z`Ϩ 9 Έ1BLMʀmeoo1 }n es9~:ٰ[fhORe/'NG7Ggg_ﯷ!&?D;辫U XC]Pl[l\弃 }C3>ШvF!BˠIX:y1(9G'?;-]G HURpf0p}wQ):w V/w{Pظ'oSgn7u]R mn,ԣ3Խ3tځ>$Ë'g ]w/{Gל Kp0^4UYJ:Q`9! ^ J,>(R޿|euP4Gk؋V)`WaH %J'0>EZQc'B.(5V֭7"4| O1j6v&li|ֻ+@ӫ2 )L%q)^Qq^٧gyZb*'p"ɬ/+ݕ ޸NǴ.1BeגD-\#jkIdK/ gw-ŠD{rOGn̆=gfS5C*4ѲQnA> tJUoȞ(;%nؿBCBO< :wANV;yB,+ fґ '=@kz-Q*Dy[|~ J|<":EeY>zm+pґu|Oc/EYȴVbc~Q25u}Ls(EBBKX(jV!iu*M? 7eGvD:aѩ6%~崸UjC5}YA^ǜ&,%]. CͱK6kJsFtdr>ҞWZIyDHT<ͳ@*7P~k,j?yNj!%>j;cqB_}'Z-: Cڮ:R^!ឲN}ɾԸF z|r: G&D@kb+ޤCNs%vMk !뛴v<ǥ n~1%P|mL ɥE>/-@Zv)Okvn<rK M 6[c`$P \v4eIСϒ+P1SJKm^()R1Zz{v-[Q5uƇUPv6w612|6Z-3 *{(tr-$V )f !{ux3@Bt8E _WXYΗdg F1G$(D< h kV֙ܓ gUUfmbz]“X6J^9~XsW| Bo%!X u0]V>}^:Ǥ@5ҵ @.WÔm-@]Xr΄jƥ&?,娈T)}+8Yр`liS D_vo\%V @&q2`ZhKS\@gt=FTe7殎Bq!\ڏa`y{ <\'̦ոVe#Z9-akh ꘖf6q$m/WI5ShSW93N16, ;;QC1KmJ~`+@W{^g~.ƙ+g;^ROPjH`:lžN;I3eSu,3y XHlτtFN =u[JO2}!!v}9@V)FIj]`}ɉCu-##K5b8?&L-+X9Gk,!MO&׎h*wIHE3;˽\ MY GcFVIQЅK/܎Q127=l&a7P=ΉQ{ ͵}0a`5jS!yZ&|䃉bH :bo |&sBjn3Z_͠VD30ҫqtlbr Qas>v죤}7zg9iˆ>R2!KB㴌D4dY%(0sIϸmtJW%;JO֍zdI ̐HΑ30Elpvݜ\;=KPQ%3$. [g WR\қ`k,r?n@2q1^emw6Wm,%2NH C|mFSF\C$uvARe6 aňB|B'H~&{#ՙJi6 5S̍SmwHqY.߯;iǼmskS,>. 8~pW6$o|4Pk~(*;#ԵJe FV8{I'ĎDrNX4,`>h!Q2JΖevJMz VӠ`E6^R:괣դM@ .d.&Bԋ t#3Kdc%Jv!p>Tˆ_}Xs~2uuٽ3g-U ;6aUndؠ!mv`aB,\6SɝdWEXo]t(OR*[i[Wɝu'{J!wd;G`r8r_Z{/pf."FO3L׆)Gt1O^@^! 0A)dnZ=^t L\q-"vNG.Э`$.2:)hFK4re8"INVK!9(~pw0vi Cx~ZWejx6Ah^!Fg9<$hAFCfvUH&/Q^êYQ_{%_C:KG)."V|࡞Lm5]1r=1vJQP 6K.9{DD v.1o&48 >~;9{-.+_C>ʥU!78m".gU+n>V6.9WmU(#ԿC V_KmxzxiQ{%XNyo9n$+ѭ t ǢyPQ#J^-I2cD>++߆)~u~U5e)')^#/!o*J'E@O(Y}mawz%L,m6U|@!E!VirSkzW?-Flf9az&c Aq=LaXuЁkȪMcu=] ݗ|J.44H>{>u ;0_ɨz6=3Hٗ1fy68QL&FِT{5/z8 ŵ&G43xO܉iWG t`a3dI7Z`cEgQ^~l&[s>zLJ.}hٷE{"\'^|7m?ځj?5N'+HqWqJ=cf%}O;ڙUA;8;; >q+{tr/چ۪pYO`q0=֐Ǫi{}<*ߜ# lI]/[?|.T3`P9!3*CMhyq(aDi8(Qf--#t<C-`~xa-ѽKzRNPIZ4#Pl<7}#rߗ ƽyd qtN3 ngtzfQ,껕}$Hf7JHe@Q[iөoφZf?&wohAM"MFmPV HtџeK`6wX;D9\ڲ-RͲeV8[-7uvbsV%B)03w;%(LKR?LQkW p֯1Δ } ɁID`3,O1s#A m)7 o_ }d9SiJxE.7 vl-C1%H _*HnB(Az>N[}dׇgs3@֒˲p_ܵ'WXJ|x|ĺ-V\E)d-jU^ϛO7q*':p!0P> ~*^ GrN'l&O[L[؀c; |I{So ie<ӝG[kiG:.ܜ/ZG<\SZ#ڼ# {ҥ·']{:7^8$I+kolWMkͅJ7+DPW T~(?_a+<3͊i^U Q,aqzkl%gGÜ7%6U)vOS"Y/"hz Hp6eb] r_\O4qQݧ H?\)eS J>y]fT/1^ա}@98WfPK:~kv.>$ Xωz{S1 G_D)A)U>En9]/Xq̝ م\ В_o.E# ?Ym4<+LJŷ)ٗDȾ"ʰl@U~` Z9Lyp;b_MP:P7ak`M'7{LQ^BTZ]\UO[H9QZ1 t2Qoչ,P(Aiq_עӉ-K|A2Xf9!G;&%گ R'V[SYJ}NCUw)vrJW!5"sG;dyu[ڻ~<%FUk\MKO9`5MGe`<;;Y04 VdDd'`eC=^iZҮ ߗ]=w;5uO1-{>jp4d3v-c͏g[rV9ch7Š0yq4=#?.R£G>:KbEEo}bV|#°8}v0o5n{*?u20B8]6H,bsuLJL>QBTT^Hpmax"t< 6̭I頻h9h!rYpη'>?')tJ̶I:{̥ͥ%~#(eyPI'̾C:h` 5pcgI;Ƅ^@q,4ϣRoi_H:ԧ#fY3J)wB9I'_N;O߿Ž;bӋdvY Fm\7}-5b?Sk z8q^_ 6r+Ff[[siHJllvÍvq.31KRޱJqٞ(#x[/*>!*9wKܡ,tej#瘥1Gu޽roH"䲘RfAP(65T9OԬDiAfxCRafDݫ%ԉ-ղAF?Qłlb~ӚXDMB8|_YRf{~&X;Zq3qȤsY!@fT" e(B;b Us~{p+{_O`۲8w Ǩ]4lf@5-@ܬ3'"7ԛkѯ_Ċs>"twA3U|6,xӀado)*\zL%%w\"Pޗ+BڿOC!|D6IƘ:itYJQWϐX[1J0&T4[~R]דhMSe׋?җi% X(Sa_{_HC=|τx*|S ȵXsҺJusp .YکWʓ1{[]%`Ǵ'<ތ^4_ ب)^~*MkryO@5'q-Fic{'gKk\2%F}mcMcy5_DK}& b ~5ar$e$?r(g{5Ϻ3g^ơޢjBiH:M{MVS3v~'aۊ9d^|);qϬw\Β|h"A2糔,/WƳ_TJ[R7ZN8ϊ3s95`vT>`[ʡ-%- Lݶ0YKiΩ=ׂe7^1 6²$]40a10NT Dlj6x@c%)T2 @vYb;X%*0M73:i^O-0 (s+0&P_y%]}NdI claܣSYk.jP^M  h#ЈlTf)zɼHɭ8=dg7Eka%Tp>!5pJ{ŸU| یCT.tt[&V=JՁdJ)yn7N.3'SG Mg(m0)\z^9;=ѷ܁z_ aڿ-_m( E浚`Pu.]ȅՊA6~%:U2<]X?yWip 7ɕ{.8Y4'EHm_-g48Fh4L}1OCLĄ\e_?kSž֭`ljm06u qѵc1L%V/@Q=_NN֨BRojǪ/M _2#sT_̴)dTC[0M5&)DQSJS5N ]̭Fcx2\yBC{zrQz;5 O+L#>+z=|t!JS焩Sթ8Y3*^^FA5%^cl>~tRj!5%_ 1ktm8 s!./llw``B1~2&hn"?(`Jc(ۻ F<|9d-!?`KX]QC'efY͸'y҇Sn[>l&`Vt#$9QQܲbgqۍp6]l8cr aZN 5Sɕ,҂ ΚWWA0U~4ڭtvnN6ai=zΐPҨ`/ud 1ET`%aJ٭pJ)i>Cp)w`[7'm='8+`NlQez>3%KjɦS槮Uʀx *!yM/kۜ/Ҥ.`vΡ29&30Bx`86/  HSmc;~9浣OOB&U#61B%;(%wtB08L_ʵLUE@ʊ-jfaé23y/VBB1h蜋)fKNiQvǎ{rpգ2D9H3gN)#؀p bs[:D?? O)(D'* 5@I¼mXO7wİ> FNDKBb{l~aE1,bI*Cbľ%zv[ jT.+VM#ҦQ[ ٷ4Bj =;$AbUU ډ&fNJϨs _k?=Im9JXR8E`r "Y7?yk+^й}'gvuuq{th^=a.'<5`]Eb$@HgM6 kmo# 6_#VsqLuX FgRɠsBF ;7Xpx7CemvZMɋ?ڄ(\(!<$qvz,N&[(R/ܑ<Ŵg=ȈZL6$G^Utŵ槻j3~^m5+I!WiYP9*- sfQ˸Z;ϟ'Ӊ\+5DKO5@br/'B9)?;lIӮ[n &;E N` ׽RQ*R { pQ38jc { Y~Of.uuSBqKסcs N~99߁V94.J/=.{9y>XQ[]d7CSpaxC5`7R,n|Wi])p4&sZ4,xM G~/(!3hWsZ:6a`->E&T>z%żdӘ:- (eܣ}P 0K bTxVտ˟ATǜK-%Fd4c`dDK,m;ӃvfT.'0X *wC>3R^ bkl]or:3;7bDHeRct2zt"Կ, 3&veȯ9X>ɰ"ʲSA(ܭL}R/ iH97 OVdb02Ҡ .}T;{J { !'/+}eEȞD|pBKYqͷ-R(yaxc' .6yrޘP!KgGmZ"LMh4c6?`3E%q4ZŃBz5\C1:XnX1`/s#Au(xk:Dl6'h!~vM;x>5]ϖ XROO *ř.)HEq1f&UI 76(ѺGb̬.z~層  vD]J;95;۰d諼&\IR :@يF6`/ucMfˉn.t:1fxWiӞ>nL"Z5 S9$nˡ*e}DZ]~@*+L iϩӏR^7[C`XRwbx_"k8p.QITп~5kׁmpGMC@z(ihcHer3(\}]JX1 ޠbsr"f1ŔG[vu '#0 #ڵI)\t O^^*/<=V$mUٮL:iZo &\wB'Lk*1F[6#? jhxaنLa{5ZS<4pJp]N >'ChRmLLpu;|2kr6> mĽYP"JqM6(F~Tj^f}0Dtʆ;`0*!i FN[ fd} %"0.la, ?= \B5 ;sIUyVm8'y55㥠hPa>C@pNO_ ^#P~%LYO즁pg^`  XX`S5v5w_螻5S1Wڷfc@EU"Ǝ5[6zӾ|=0? b34Z6ݲ Q&cu(<nyc&g#lT3"rLTQX&;,( I_7[YxPg bœSNԝb܍;Nb\ ǜJ[yu;xzfl9wх1Ȗ9i70y^*g̣Q.qa8ǒ ?@K GaYt[k#*l^X_kA ԅ 1%NУ6ppCɳN &__#"L5N9@mXa uBlx 2_V{+7j8§Gp NRE;arO~Rv07-"/Z2]-Iې î3ɱwpf1swƣSq(FtRN \h QUJ#^E`l2T-tP"r<dvLW7"JGy`bH ^gu` Fg4&;tX?>Iϳ /3<]U+<*EcM 8&v hɏEJ\y0E'x8#ES'_\xނ)*I51^ ^VD(xuߤz8zKDoQPH^PQ[ .4dKZ]e}.*~3QwcDܰři,WTw ˺/Z 7ie+#xmDWSv$X]'mHÔ]pd?NpADZ KQt"gn@=LyCM_W F3Z`?.8ԅ2ѡ޸I4@$D'VS :O0t٣6 1wgs~h*&3)FsN 떑:s0aΛ%:qЏNmLE n[ Py˞1|q# FuxLX517;Vb A݉z:J1rI SVjvAe&)LQ=U GsK zY涰7ӣ+fs%7YU 7 /zM 9IyJuOtxMc֚/y}GhCsaԒ /5NiiX 1JAxأ!9ot; &6 5#5^y+>PyZغeEb;,=_SԉƩonb`|q|&0Fq5t㬵,)VS:{ʜ9]Ip_l<{:"*_s͛]CHDKS.q]{IF 8;ɎT =,r]>5̫o"s;SH08":?cCnH-k Xٚn^WYHrү^x|$9Qf|NA,1݇)( ScMsziudE2tx*SN5Tn<*!^Z^Rs(`{\ ̤q9;s~ co @tGUFmI fC$4Tc "1k=\}q:~|)GB]o Fb,TԞ7z: :K)L3>@%е`1b\#^ڕ'֮( l"h ?KM/+T̆I3X%L,]^q3'Gسt1'ݻI7܇]o;Fġ`ΌM ]q">&"]z;tKvV(:ݽ56oROGE*<% wۯP۪5}2i4,{sC¡#QJ.\5/Q]dðR)Dm7kǠ"U\O'tbBYl0W<ߓ!IIb޸^I)lH9Avn{aS4 fsпmu_Фq(͈yIiAw!o3+fv\=Knd?:o Hԕ_RSIzjK*z ñ uEԓ{ qe{}̑M~$ȃdĢAh:]K-|#Z㵸! %c Ŝs-/̵qFb_ٴ0ExCL,fE2؛Vy.xO["4,2ٶI/$~T+'}^xE?Ѳ42?-y^SXV6XMHlGټ aIjR8koR[X={.ၓ?0g^VW͟'r1N(PZN^k .#Ж6g1\m91'+9/|(ɽwE|rY9;4ot^S`sC 1};Mv Oԣ .T5klL*6mg%9Vܳk\{/7g耤h۲jhVzcA IN`e qcs}p 7diA7fi#!un$y(Sl>K_ D/MC'(Y\EnE2QA5ilty4E #>iYE3VfUILj3J z9,MSLyz|Cau")t/ῆ⏦t\-/+X\DYwr{AɤxxLpn,W ;:\~zm@7J^t(H1mw`μhi #*eD6Km e o\r:TԴe̝QQte6mM0`S:sL\ Q4gGH%+]9EN*)ӊ$+zSftb"h ^ guSF@o6,D_J<\Sz<[)GyY_DMdfO%o:5ĿT~>`)KIJV{G B .Pzx8H4=9&#?qmܻ1lyA*T,oଟz4VrW36(hxEW.8hl-@Ä^F3Ysrf.pu 05 w+lTvc{ҍ}Ãw]cH 7ILxl2L"Xnd!N"ES!M"ۤPfn,nޖWǶ^.>Sa]+|{XݔjsZ* *C:[ cgt #P͎p$n;9;yfgqQfȇ1ۅ ?E _iJhZ 'ZUd5x™xϗ' g  /m%M K iB2Mʜ4KuMO+bHsS|!nH_rV|GHCi :c[=)ztCMrag$: S]S)QNbG]wDdrh.W~+z5`70o81NXo(JFMju,VXwQAL1NO=گZ~Mk?WSÝTM[q%hM_ȼ{JפV1nψ(<ʣH@GWps wvҞt[aznq/6GJV r5p1Nmי|]vΓ?RLj֯#DL(?3V,et #u_\sb1I G)bħEEaWH+*k;N)*VC,#BMn[ 4欄́6)+?qzvs@?&QPeuLA9bǼ"db{;Dڣ5564uo2&2*"Ң|!rCfcao^8|DFc̪'0,#SJL&NLh?nDЍ-BZN12\xP kc];iʂ 4XNZWU4Ga 6%MBI vOP;*(qLD}v,e0H*`jg̫+}жr> Lx@tiɬYsLΈnCۦװ+&<I I)5RӋZŒqݏrXEžpg$_=a9L6dF7L +96l;q=ͨٔ>jI Q2EدY΢~P dGd`(Scrt L>LY0\ \3>}&\wmD L: N y%6_1#I4ڲ >QE.^ML3d\^WIMCGs ؛p9jP,9=:x[wPC$eC/vDFj+؉!bːy:4r nHghVH. @.`4aMZ2լ=gx5tX!NV7j%9}[>s%7# t@Se 0$$x#<2QI X.P/r*8`q+mjU}Q.XN%lUzޘH/b?al(]/ b9Wppd'U OwA @Z;zqnqZ m [l&[K,2D!2&]#_ՒQIdrkJ MY>:ڰcAJMMa6܈kEf ftm%DR ZUE,A"*6+՗s]\WTڌ8[xdOzhG?gMhe\i;Ʋ N) xC??R@eU?>RFj'OEP :4 ${3 b)'p³I ȑS2gm&npe"H"!Ih5.5 ڗ-pʭ̲MfI?V${Fz1batŸO&Efw} wnC5_Ņ.VyhEnTR)R~W\Q1qV9*@z2voxwחSodT~˥@f ҚžC"ծ8 Bs{LV__2b|+O D‘T]z-<z2 P;:>Ӝ 씵)UXSȄD匰=P?WU@飥?`읬(5kH }BI4^Př] чZ%:b"%f\/kw>ȏ &ZTB[Ř3a+06jʢM+i]Er<ͪa5f xR{ }kXkAf}tak h OU> ވ\- g`-scZsQ̶=+uV\OLy "1&iQ._SRgQ7Ɵ{8 `W bdũpN㓟O#/0$00 n`JȧF@N[ðj|t:0Ȁι0?&6 fʄ|O]UO>4KZ[ @Ñ 嘈;8*ilɗo9YqOR%?#+)vs>܇/}׬#݆-POvlqt|R~&vW]ABI*V%COk)[ _A"x&^Op5*Ρ%!pF$SJ { v1+N.䷌=q[Am? J) ( I4rsق ;=Ӵڇ\0ƏniH;nCʜt=ݺWX`CVӖiS/,,Iw[!B>t`<8?{q>Orctv7O[<֍ ~8/\4N69aY uȹ7sE: umrf*#LݎƟf 0Ie G. O6YCgz%)8{APfLY#2*,r܏ڝ5L^DM FZaĄS!rh` %xIQI &A᫊vDSH6F= (Sj">A}|'"]'swGr|au qcg{'@xW~pgҡC:KW <_D2XcShDAGűDHܤ7g黾?] )hh/<w(:/}hQ~=GT`i nfe 2o b)~,ۡϮXD}T7| 3P\%AwP !)6q[y=p5&W_[LECCࠅ{!oP{`l"nPEJ=mNt,+7P$&&\w#Be$4_JCsӜJ{'8RU ADdN*2^AF]GǭU][70 _+jC,C1f} ŋCr*?@5|;OP_pp'/\pWKup׊gTC ,%>K[@"X]U s'+R|i=۝=>{,ou-x2tYȕ.jO%q A#z?ݮww!z,Ah䂲bX\Zm2l6VW'hCt!z+p)znQ&17w^,({+ԧ,i [o{Bn^N]EK݊i[ėc5OFΆ v{5kȝLo*/(}CM%C[THع(vW%\}Wl_ͰAڍp@nmpI%zvcAe( et!? N/])Qn: DO';XWk30]Ug0-342?pq' $yc7Pv`ۻ![F;PoJ@(f9#Q)m`B- A`vjÌy-bGÐiWtz$Z 70tʦ.5j}+ %B1 ofBʆAR8"~ q mFɍPU](|CDxKIû;\ST઱5x Ԙo 6zn0ӄG#KgYbT̊)0{@#B FQ~6f/mOQG;f EOƩ~ OtS cα%H Wu @xvC;-˗?@R#79vApoG}F~xz TNL0Ln8x@Lm2H$b'p>Te `l@ Dz0u &҆mDu#umOKC u=uPގ}y22Q|&TbJR{MHJ}_KMӷ#,\;*0d*Z9y z}A/ H *p".gMu9P/=rRrG!Qmɥ(@-oc%rƕC2)↰Mb!;Ȱ D[,:_.xn4]/]bQ#wQ9Sh?W7;}lᅬ>o}N>O:݊fN!6.&Մޞ|%UbаFdˉ3.!|4!,*+pEBASvmU\$?d\UINI W>O i$; jZݲRSYSs- -#Ϋ0[7{/%\J[ V_ҧ@-PMd~R&I+_C֓W0Ņ{bY@Bg:utlq#6\,9 -;HL";^?2f ֆR7>ka|_O:b5ξ8oʙU'Zr='nhI]Zh g/2w> ;qQ^$QLD@l֬T!a lx& +VʔNAZBBCEn4n78swx{:S2:0QןSkXׂEJ@.ZqMy ]n,偢z4m8PolJM?ũ6AYt/9%\PEs*L#nE ;"Mc$ɷmtJمp |i22(Ay|MMڍ0J{Y`b797 jBY3[JFjVCHIXj*SQ4Baџɾ(N? ]K~o6UD+EvSOeL@Rl2I|簇(nÂ.tUKf1K_,gEhfeҦ:+4ÆNz KEI$^ɫ8j]͋WL'_u8L-ZCcOO#G3>مX:J/D1r/-->mAi 1sGʓ6:|)7d f19K"s1'd`"~Mޯö2&.d F,!ܫv3Ag!..`,1pעkIŚ b}v4[SxJ G/WnR8yoF೨=DgbGmD30bTWjȺ6 -6vpS/Q#:\H؂VQ""%8c+V:-h@}| ‰xb:[_[9ϼ/w3ݻw:ԣY@xi ~|/쌀ʳ: jIH BGȫe1FKȶN׹{Z~{='j[O9D;5Y,QyQյ!췝;x>]@{=xA ,G!x+i  06zCc# d,}"/7du8/8f{YG{ʔnw FD5.**fxd%e01$X`7d}IYi+>ӯ}GDW Ync<m~65 hrgyr͍ՔDTTwe-r*>!&~a^2;/!33͒To5f{ذ J%lG CQ~H^ 'Ƅ-c̷^5Bχ1"D„SIE2@q/jMObD73NeK׋ 2AȌ#-3LAb-&'<Gtb D9D\bbΟmr6OkD#Az-'X7AO ^/cBq񃖻'Mm04q*djL|j(U ~_QɸnTC#cSfռ]'Hjtdl${ ϔo5)_ ӏW/'RN?W"t'bDyNѢƂek`KM3 } سf)P-P2ک2d&=rnۀbsiH)q7k"#VvwZStu>#V} =>G o0LJٖd1B^_LK 8@i8 O?Eu tכท%(*d;|w@؍=o'򦹋V ǮW=*j j0>컌ϖ33ⶨ^ m!'YOO0#kYC$ݺ3Iɋ`sqWH|*o%.ITyM9YFT(.VruvrW_⩱ QEeDf6 c7'GJvҿph\y@١2XH?3 Hr]cs-T]R`:@t9AA B@ 7EErJ 9b)`ٸ'TFLQfbFM}YYf`\CMKLy<ʋ?:G-@)]3)'F[Dd|Rup; /(qx38}K`zNh7X84I҂*$[˪|ymj8r~P恃k1g(2/:[n1q`LPB}KVDc1 pC 9cY];irTG[xԸ!-)N%\yP)R FJ4)Db**pZEcZBM\7;v`+_&P`4a(zNr ;Yƭώ\SE<|8՛L+8EOXrLR5Dn.m @zU\Rx"x<`=9~NO( 'rwe qϑ;msH`a'*y@7YH`4@!' 0,kt~AO8PsBo+dy~+yN5z 1$!-~uKq~U,f&- rIeJ}4>,jLC.\hpd*X2 eɇ &5;9DB8ğ* ˣ0.qfJ-T̐V&/gT.YR0&sGA}iY3KʃfuJ a0\AW!:1F{$J%551"'W싾/9܋|XdpH)bk%>EL\5GnR+~S?2@YG_x=@mO/ LU<#+Nť܂>8 rR v2f$̃2 @`6SX05G[2*hts@m%^RP>/:ŸHa n[d7~*vxP'9ƌy%\R(YRvJ` qK]Q5y$ɦ1M 'Qg8D7^!0N 1):= kN'ӗ%$S')N9)2xmJΝf+_?_ )+-&#O[VvfS4MrѧRMWGKŲr "/N!ˬe]Zw1k_{f@aZ/Q\cNOeݠ ue zy02}]¹IcBWdqv}5$0>xM{l1(bʲWHq?B E *\Zx+T/I~] 0mfE1:WJ\h(Mk8)sQ49}1Pu٧hTkt--H5"GStNn>5pܴ>Ցa.d HEAcÛA ،?~iQ6TFQ9{SfUB3 W褠C1KGc5aHT}6w򼙞obI3;Ph[:UBy}4a6{QsrdX_,뿯Yp\_Wxy9=m^M5Axa^ ,PN&sLƹAJ#_gf^8^VJTM'4V{#ƴ'cLѠZcmS--5~BA Cz8|Yi1\=hY^`)נ|nGR@{Tmh[Hlt ?1_optjҴN&o_-w d>bfRT6=RRMѝxR'?Q,ṃD"6BU^jkɲ,/P&M ]#C5I4`f\E>37;}`ѿc/(y̭ +N1Fp-` ğ(.%3 gTu k/>6]~2pqlq7/&XTR'9d ;e-Ab,~t#1FϽq~k[ac@R{Bl9='Ől~fD b06$𭚃yT*ޞHmg6j06[},[{t2Wn[ lfMy}mk(mlF (V>[;<6obbrQ['>=NEV0vion۔ _X ToR/vG,g67Ypp 0g={Y3>#,Dc=r˥u{+l Fؙl#7sqqY -]C®P`KCkKcak$SS&Zʫ#ɐ=) jHҴUDۂqI4dWz9 hU`w5\B]Rث:lPp}r0 }!y9|sW><1p(kżqRgg oc:iL }4_3KĴEe仝2駟!y Duu居+sސ dVL:0Em曼ƥ-(UiJP'IWo?ÿKv{-;V\/XMb\ˀzFr#m98y;ȀP|1td&䓛J8i+1!e3vzS)K=Hcw,IpM.^ϋC/%/ipM،ECZE q@fiD~Ƙ1.R%z>2/_yekq+ǣ(` }E$ Mȑ - P&bMf*b<ќ-fԓ̟TЪ蜤@\z43q<\?eYgO O$7k.$ YR+xfw-6=:0q2B`-sVʗEFzicI$LLa8ZHrtd˒J"Բݴ+dM X#̈́"\"?c&Yچl^|E7/jJ([D̩<@zTրP0KКb8RbGxhN6}E3m~曲鈁j}?,Iݖl6_`v޹s'*&ϓ}umŠ\a-o'݌oܱʙvZaR!Nh'ZKL/{5ugV[8VfO3 A (s7V$էqy-k*x|f&[(wOk t d!u)ZH "FVl8_B_Ea8CT}@`nr^n:7uimVlo_{La3eS[>roZqmğV]HC=tOJ.߶F`Ko~| VlMGvoz_J[pM)#AR= k:nu Ջ O <љOQ*iMsŷzR7MFW^a'[x|t}nP˦VߓCi&|iåmP,NiEA{򾗅#>:::}Ϩ?vXhX,h8U7#qJNGP\"|0UΣO5wh*j}Rz=~1[ ȊRA/ r=~@ӱLN&PeYTvz#=hPll,NYLhd!>ٵ9T9+om5U< C>74c' Lt8@.T2e/2^ ۔b15#1T wȘpdSnJ(}@͕V1kVʢ ~r?A8ȿ0ͳWkr, R뱤Ev1E0VR,B1q`,q 3 PIu-ٱ3/a bkSaj\xFB )Lz@fiQJ `<" bYDi gS#h ;ϩ UMjK+S!)a58y H^jW?j ZMкC.W$t:<NXSX-G8)((([|5c*vF;5hd kòQ) =1x.׌_zh:$Ì@"~̷䓟zJ3E_|^0$FHH.n bx1 Hơ2]j/tՎ1@d]syr/hy>cm]͠F'Bx t3C(˝#<>A 8C݊C}҉pj #IA*Q޹.YgL\f;s#¶ȩR;KT=>RWjÒ/mcM@ LFQC)@vy/A/meb.* sZp-UݱLlj͵dw<% <k‹C&`zef)"m`Q`&0CQz'/-,<SxMDsέ'v=S00Zn#bwJisW(Ϥ$gLL3yO!w' oC;%rjPw1܂ֽy?|}Gؓ0`+gYCTgIⴍFbAp\W-e>n?gnFbJbzWfZf^tCzVn7~c.荈`p`'B=$^fĂTVaC ;JP(4d.vF Q~S(>GOA;rg/Ým2yNuwb̏Yo2r+@-Y[O+tvH'F:)Twe_l+`a*nswvO;r=dY]^tK@(;G@a%yL+=D`vvMCȘFT꫎D5mm=V!ph13evnK+;4֗ y2ERBʙ19>dLٲtՒ+5nqN»_wYRUnT>UVY-xղ[gм]*g|c!cޭM(1-Onnt=1WEk(8\SP6\nP =! _⭴: ד\  Qۥp5Q7gF5!ەMvAhۡW֥su :LɹİZ)+b ղƄ"6(oN>bǟߐUI#k1CLgu1AX]f=,*P sZL[$J{^{zZo]14MI A֢Ps2H!$@Lp9ބpU\E5Xu.3zf 췔d*0I7ټƌ ו`n*J$MJ<ѐ@g^1xADہʇbDڢW]KTbkkDD[Xl䧹Wn5qS]o;-n,P` W5ޜ1Feg|ϨxZ&Q#=g铥vO>N!U 'R>P?p h}[ΧJz<ft\`A iXw>< s] ENj(GeMDBĢ7# DDlȶؖ.Uoѡc# W* ֮\w4ߌTF h1(C9ݨ"t-d6.*)nl^smo ֮!D勨H N\W:hwXFcZq!gu89&}|,/~q||^Uވ~|GX}Uam ?qg//F^ ~I #jdQAAćuL  NIzNVs&Z>nVt)tn/~wϻfo~uΛ";xnsv?]x3~*%(g.4] ୻O {ϳ%< GJ^мcPm` k8_y#,"u\,s ڝ"ײ\w9ZvN\&rG;GJy@%M$&#ͤ6m=pĞ2Bn (=Y6ɹʇ̒G{w̋)Y;ƸQr>H]8r p WL!q__Vq= d)le\;no#]-qA Yϸ>c|Qe 850[pQnȃW{xM}0.o {(c fPmk[YDI_b ;5̙R] V]_ x2UE^:;[7e1'4+|CLOAU iE_lfnfP u`/lִǫw\zz9)֜gM?ҁuk>Ԓs]37Y{ թO: #UWY.C/8${$13 g /d<- $aA} ݶ 9 Hg&Gr\TAhiV%xlosr Lg[֌uΐmqy̨_,Lj %"ljʥGo}D%lVW꼪܁U;OGxt==oiTwNߩgп:6QW:XW;XiXЦG61}jvޠGBz)Ş7F;< Ep~d@$؏fX0?7mG9}٫R'ɫjn!ۤwN;nNxo)۷fg5t.ɗ%'v͸x׽⦝n1E~o~-beY/jٍ[mV;mvmNlzՙETubPjG-69ؔKz}5# <쌕a /$d00s O̱ *G`p,  蹁Kղf̠>$ʩK' ΢Q?ʿhk_8/\B4pCqnxڻϣ Et3) VTQ+?I<%x"ʼn5LXwg I͠AIH +$}` b?ā*W_ޣSxw?.ԭҪ|LC%~*ϫy9xm>ʟT4y43MP_Oo[osΡfzz=5T^?2,/] = e=/7;%ZP&' y>͸fVOM7.N^[xۮ,M.:&,3_qy|9Q-up=_n6Zs< d⁙jY vЌ9q*v" *hazKiz 7n=6E.@/|U`e&\pw"spOS?+?ئ9Qg\|:?sdItA|w2toR WdyB 8(֋%S, * W/:V0j9Mɝ];E=p HaYB}MtRmMgjzف|֒W̭f*' B>6E7}!E܅Vg1"z?5l,DmL6Y@E"8T*ic;Y@ GPk|C16V;a(OPH},lCS %H++V0 VЈF6ns1$R8# <|,aI[T.ՙ$5tCHǑҍ\4$aɌ|hּZK 6o&n<z՗k jΟ'?&٪8O_=K]~M `ݹKwN 7?u 'a4B0vtID;g[m 嗌 A_9ىG^r䃇`L< DDK^}LD7>0}4y%ԭJY"9Jvo213\|MM9iE i*L7>_5sGvhK$L V&%P so}e| @[u-[cyFܪKσ禢 lP`7#8:d i*mfPJ!_S  pǸ!8C"%$27-:)Pѯ.ڜ^fs/SffnQ%ǭuAHqFso=>ݽvȝ90%9wҶꓬŨ h;9o^/sh跛۞6SW~̒PXZcp}- KZ֍EES<K*1ܼX=yys+A=EeB,C5\/&$@uL'ʹu3{m B\TCiqVJ@G6r 5F(081nBSAɔ4ً Lo@|>d{\XWО#ļa/.ա*wse1yp>ӤBbv1@gېE0ՠub%Pg#IPeS{3L1L"2. \O!_dSÌJr]zo݉;r~3oa^00q$^O*3O릦(HN@tJE(h Oi^3Od*րJe9( > ༒Eyq4~s4^:~O3Nz$S#Hx0>z=h(Q>xf0kC$RgB=dX/MA9|yhcʠ)EY5jr:Iߧ0*O4P`fAx:Uaԓ&-hJe+"ZHFmkQ`(l|G* ^&#FD;?b;BꀪYJ2譀gаgd߄apaLTh _O4 0teh˰9l/ 2`;Re`Qp2?0tY-f k n4?UÓ 8 RK巂W_q72N71$埼WnU-*$P8CtXw,Af, 31DO)Zb1+R.DCz1cg> :0C %'2|YfMP~h{TAfQv73gۆ=%te\!O\YM C߿pg. Kލ'(tC+EöNe833xaPNnv&¾ 8y/j@Ppf@6*fq}RBIH#7 "()Z+qaw鱴^DoKZ4YS1C}GL nBN9|oc-?7&/ߘٚ|З-#q|H}/(Ƴ[+߮[5]q복A"[<F,xLSV7D~a.tւA,c!e^j_O@hq~%Ns>A/&߶lYgL~+!N!mΔ썂$:B Łd$KԦh|N,@WeaF1WDK6<<%s 0I*)`QԍJ2*ҁ3f{C%>N[!2llE;Pi>依͊DETVL62f:jdz.k}è2Y=$Tmle'ȑiIOTБ-Qg2)b8 3ׄ<0d[#'G5y V+?ܙ,\]nQsuo^ MЫG+:\5W fG/pRoxxQ'z;]hOVTG=V/D=} ?Y@W@[̏D=ܓ[6]J6YD-e隭ZR4Q4nV̛q'_>;_Tr' 6JMX2g)~ 7޿Ӯ3|az><5˛<~˷c&Q?7( ~mی+_'ȠCH޲U+Ǣ1\2n0 *]m'L쌴NFQ,E|WbpBbPYt!2"s U*֜73%cͽ|GRjf[L[ d4rO,QЊ2U  9%cf2G81EAouH ڭu ',k:E٫A9 `rKUs;o_ޫϝyz_ϳnc rWhqlpRY9U9'p̛s M4c$,LXM~2-mQ0uYf?p:ìWWG֗1!=e5xtm h7Z14bak[0bk 1eJ-ҔŲK*3S_5%&9 ֲʠ{;N4^;o%Fi㷑i~Lw|4YB+Qr-㾸P@9n#jh'Kn?NDg_3FeKo JoM rkǃ@+dDd&Sܼ0 Pr{S@xy)XjDE%.4ΡzfmVs q@@ź:v5eJ7z>IYkIT%Ja"̤5} pGS_/߽:?:+7'I#}{w+>+>L_!]B樄%Z8bʚ$i*R.afփB e\-ơk1E̍vn˺M6)FCApc~IW.+HbՊYnt/!kHnr`$ K&R)&[ރj R$QXV&皙CMb֌0, v5c GZCpnNP5s/ 56ly w4Ëe?1ʏm W| ø42&qD7\ 3;|JJގc[x`acPҰwQ(I"ׇdi#@[uO0ʀ3̛qne'g<χ<˞>aVeQtV J/5#8ũޛ8q'_9fg<{,s,s.q׼}qx=s7{:<{,>>>ioᵀ~C=VKnJ@q>Wއub>x5$/#8>UqD2رIpN1xVꚍ]j2|^N]j[CZWwˌvpw}ֽB9^W8cAu}q Z`hبN&+A$jY#y 21!~ /T~G⧅D~I7N츍7Ȩ*zpF*q !V"_sړbA#1 QF6#T-FU<p zhrhDu{xo>yG&xeHXWvfʼjBKU)Nqƞw[!,Yd#_vCSnD< mHw,+QQ41hC`-L: ӳ/ [0#1]c}{TN`ۇi0`/uTI!|FM~c1qC>!@R-!'E.W*p6<+r YaKX:Iyp&.&0{g{4+q|cwf *tW9VӸEz-OaPƿQS7\eшEQ :w:ʃG"a} 8lu'y\z=5sC\<\}zj,b*T0Uv?׻P#/Z.[/F M<1L8P›@8O"LqIu#i&h赺^΁^Qȫ9G"JEu'&S oD~Mcp  :{i V<*bL0Keb|V \/$VCyx&G<8wh#hR *# N(-3@ʃI‚R k}+NPg@r*2]aP͊ |> {bRmqkLHo}?S8AIWo?ÿ.fK+`%a?"h@?'21q"N((%ƆƁ;5ʃ s16P<^i|Ő t$H 8gY] }96`a[#&}bl _Sc~}otGz``+,> 8\%*E)*Pisk'uU՗Yd@VIu+*w >&e` > vJ5$2${-qaMXêcj|< _jlp$!L'F 2PMn2kY| `F'B j`ؘwx*5i;:rqq.⧆ŗr7/ 4\ BbA &n-V>yF:~tM\9}-3LO~=yzA1)yl} s耠syNq6J$v^d7}(%Y=pvg_+*ҿÊZFx^ S;O]x'ە+I+t~ 3M&&/  aRߨ.< ia#L9x=~biB^P$J3٘]j `aX(V]עx2 *:L*@kÚU`=fɔ_TA ji')a(?cBÕbNX!ko=H˝c+w YnjEx9IOJCR4 h݊dYv/5E'eY:-Ao(G'( & |o= #s >>WOXy<=lcp-t]ۯf \)*J1治Aw!kd Ln3$l`GDGB̝[.onD៝(>yEQ. ̀ǜ[t`# a^4fLK UTS-{B *+A_[Kjm4_x {\MfXO6{͸%"-nהku[3 '- gD!UJ&}NmSkwA;߱׾0h9]*,`@M6Ym)Ia{>{Tb_Kʜo9'ì̭2.Sۂ?$>žN|A4ÄKi@u!}8h .>Vv]|} :XEr.kRg%LD%?y9ݩ~X+UNtW1{ f/ˋbճ>zŤ? ΡVB`1qr y\n;,BIAìK9Ìm a1GL28}߲ibvI4+y[vf Es)^CT7Үw+-Cެ9a0k#zTs5NQ* ͏/^;c(j*B$Tl5: F^opXGmolA~vg^D2rC306x TI8DKw p"NKư8g!ZB9#jZ_eˠmFdZ0^׮0}d۸k8P5\7q=[ 07D꘸[ JDo N `A!*Zk!<5 ${5[ +jy9ftu{.-m\KvI3y5) CLm\f 2mq?ygӨo%+dTBzgy߻EC%zF҇%pAAxc:P\U11_=Vb藊CŮ +;3~s,nha' θ'A^on'`ᄀv4n7UlbTRN2w,Z0l. COG+KOGUݍ/"ᆳ:[j{1cRm- Pϩ:ݝ\0tjò۵Wrk|XWGJ_(0\,%WpD ݈s[Vn(]pm:07zJh=< I),ŃmP筂"xPQ2%( ^3cpx_h()p9O`hIhu_t!\O^"TP#Ǎ6f 9sk k.(!B.LXS36Śbyq|я7]rٴe^p1O". 1 3f8(a&D_cNr9T[] PD5.[y{Α?-|RվcSgiU÷13A%h? ;YF]woRMoo'Xk>~L9^=FLQ1)`1Mo7kHn3e|-+0yATNpdo9®P'v+p 3̈+&)vEȧ).Bt_xf<% h8` Q\XeZt+2(#Hύ s`.%z|58y ! $0 ZHo*F(y&m@:\KL0;-~"A6K,MF;{~)Lw֏?@\Q]S$;KK,_aA?u{xZ:a}z\g7I*|iVmˉ]w 2l/`vd.'(f((Km6&6OY'f^f*UqF`26$dGv;1{‡:{*;&h]Sӫ9Mo0(TwE&vclx"!KJ^ڮ v k c2WYۀ#y?7uxE50"MķUuHՁ[ҺΓi|rjIֵ(δ@I l+ wqۘMkR30wq,xkO4w\V6atױZ^\:=]/7>끹A0B1ȭ^(|3XZx*1Έe҃/_*QoRk'5SHZiXP}+@ʪB;3)~0mN бBa!nuTO̍//ʥ' Hz9 Fs o#SDʩMEKB}HcXf*qHL閊6v›+Oٞv0m叴+_cV{t$0 $qOHk.Ά.TM;Y̔XŬYQ׮"w{5#\t"Pon(jB&Tb1j|4̺sYa_%RI,YU6˗ZoL>D D zX fX3Ą[wIf+e*p_˭ %<'?Ϊa`]#4I45&"P)쨠#` _(~Yl"W|L25`ūRIe<Fn*0H6%@ 4eu:k*<aau ُM!nz]ёe)(u[n), i˒tN[ AKɶex-bn:guK80-(0pe;pC f^e×╖[ ^^WyQLT/ mOy蘌^ 7eAo ۿ$vN^#o`<\qMثV.):0m4zȡ@! Mypx`yBH\ t`Fo~@cQZOWAţ KceB.R1usSqd| T́93vмI[ 6!#A%V!8 WןW!lV,n], >̣.\+tLGl㪺8'k|t^: Xd ?iƝ]cr(֙߯,ExRY8i/8< vv>3|Er1@z 2O+tqJ@'8L $pf` SD 6tU' jx@d W.ɷ%m x/aa56>cT\̉ ;ڒ yxƵUtF`k!D7X]qdF`@X8ҳƗ 6M<]5dw&Dgh֒DAT-MƱZqhP`AeʽlQIyXij%eryݘWsucY +i'ͽf ̴ $݌+kfI5w<{#Sw\vף,0I|2ӿ=;f}9y A7_V'sze@F6g˴:Qu %sLbPZ{k*M>\i9/+*dMsS)dM%NL %F*b ((o}Xm=GNC S=rJ%h'u&*YsA*&B1ԇ&,'N)|w wJgPZ.yߝ^ǣ(g'~ C[;؋ߦgn5 ؁cZ@Ho@OהFu[_׭Zb @rxRM`》0[R%[j*#5c?I2hj,u(r Wp}sšqEcЃ_* s3)}9Bn9;e_{/XjBYg_VP~kwVr8p P\n i&]|_OƘrYu"wfxn1.Hxz*MNr`g'Y9cSA?U-|8AՄV7 +: 1Q$&>9Q&?= fj o1C9Oћ<=CѬ1 xr BiʄmՑõSq `@X560mP#ۭ-ոA k72 >wnat0]ڙjXK#!7O՟S Hb=y-&y`ѴAapiuP:!w)Hj߽s$ ݸIy 7L\e-LVu KMLIkAӯ\yrF˭+κ;P V^ űe!vUi#΋}6z2_i'Uvۦ$v5a@ h/i /3W29֬}uZnnUg1ٯϷ^[[Air1~7d7Xs-۹卣UtFK>^0|70@ m@N 7f7rj[pЩyG^kʴ킒?Py{Nj`E TU6 )gxTe.6~R3ءϺwE@nYǒ-xr.g'+Rm,Yoya+SU!h=ܨ&*9*@JZ\wPc<_9ev=Z-ewA3mA^lo"O7BK1O8X;@jerT#qR!4肇g jSL@A.OD*12S[ Lj%6st=1|ߖ?IhQ?I~jeꢤPu>TgH@ۨ N HŘP?@Q*Utp^\b֌,>>w3)JjS6VҊU4 !nSAB0Pmd'NDW.vZ(v !`AiJ $82Lٗa_a=2Hl$εr/I'nO:ח ʉZ>uGG* |G|[u4] [ņrK`8_ ::CUt02"N0#N|) +X4D 3( ;P@#Cvk3~ # kh&TyQb tblI&'4"n(O 3 !S̑tQNuVK8w8K!ɩ2C:4, 5]n'ٳL+Z-6q?$rbP=i1p(f0Mer5Uͨ/'P |BM|iu}jI*1BM!Sя.tS\9܆YQaL { fnTS C4Qf~P-6O `m2btN>XhP@NwaJ}Qf Yw($q?S`4Mr!|,P]zO?)4K_OKĚsݯ&fLhG\7,Rv4@ށ_|9b2 PgkKGB[]^Ĕ C_km6u l DE&kP 8 O8!uXw8Ӹ@e`Dו^uEŶ!G{om!kFpa2j{R k @hjQ % o 2 _ D1렏^#m;;kzR?E-jr# WxV=K;HT/[#6d͞wy3YE9Bw*BHΌč ^F0[qp+Yᣧ'NC9>ROeUA`I+$-Ke%F U-}h,aJNg#ũ~2Ɔ,YEߐbIslI-Qnu ?ǕSzz=?m,Iӝx]gliKͥk`&'F{$$ZF*$(k1i& yZB ֆ4KFGVaf=B"5PdVLk:鐖"+ I 3G!r6`,ylةfunU'ՋVtV \!B~Q 7,-1Q3+ yG`yYf Xz-$Cᪿ$=QtKqt<q ^QZ.(}Ick Q+$%q^B:;ṫu_7VN t_QP='ff.Y]|x`ªGp Zu.I}V+g e3Q{_&\m3Rkp,N 1@END+%A"ެϼh/JE( *º@آaVDC9 8t~g3K<r Ja[ 3ZOSl! р1pG6"W냂7E[B$}z[Qycp]Ykߥ_nuj~]04?% x%9bk`Dڣvl{ sFyq` 8 :,͈2c fB"3x AaaMVyř؊8`;bEAZ/٤U jДi&ֹiN |*v1&to,OB;>؂AAPZ֭[ 7]hEq\((ԦD܆ı5NOYTێ/Y?Bl&' "8d1-H hu:{er+Ko:LUS#TFhs=-~y@>bcyq^ۇ<$#bwIMMoz hk jLn6Pui Ef}#_,`Gb$T_EYl7ڞohV9Ogl|~_5ӪIWO_K$`(u2R̥ ği߭>;Οy!xV9Ajwl4TcxnuGɼ?T5p?\ #?Σ!_5Es[_ƷB?X+$nP7 Rz[̺jaP1lf15KX]P)/qK+&5e~H@ac.ZTk-p)5D;ȌI94f`&PBe"i{´zыL`1NQNl_+CVZb (i:QVmz/~"@6?DQEq`T,&a,UǗU֖˻3ڦлavX:;6+[Bnrxa1ݍ&$58@YA$^> O$r>,Y@7p>p-K#FϦ2IBa!MI_sT5%0ZAA>t&OJOb{スmy*9"#C16r" >b%_BM lSR>Lz AV1rh__By!Q:dW@C)[|*Z1h! ,&cQf'v߇fxgIInOe' .17=]Η'5ke&Gr R /&| }{Oؘ? <_x<<ڂo6 Wpӫ|G!@wELtdhEQhJYji!Ug)b ,*.[,);`\xZߌP{v/!Oh"n6PG-S1T7¢?Yf|B 9yhT;)j'K_oVkFULU mPnATc(tq"Ǩ`FCU(AڱS|xp 3~/*&Hw)MK' !6OmƁ,)"N @wfWyClX6<|j3"* M:f=?bJN#!QcƎ& 9P[G𗺴UoRdKS^$:WnE-ecgnh_:6a\`bp4w'&6ꢪ#'-FԆ&%ELBѡc /},b廆ߋl-U_ sɊw&&PtC(몝LtՍp"_J?"cCd?0?菨GӚdCJX3 -,QcZ.G6X]]]v_̙a>ce-P7Q \ކr;.e(obyY#Qgz<扠z%d<0?ImZ*a ĩ ]K7Жf'u=f ).oWGa^ĸ\aF&; x=+y|i^]aYš}b+C*{X\f2K+pYb,rbV]ԉ$GM=UXzTvv컗RgXmfqZ(8׳/qN΁s ]$0rKvpwڇ ;!U,b^w9yx 5De_iD. 1‚)$ QKt@rU]fNS*6$6d&qQ"QM) lFc^DkE'J E4.K' ZHUhWKXAl6(u! dۼs0<:NQᏑh! `Wzͮ&a.<+fw=')mǽr2?gK ^."ԧ@A5nbWB=rhA- {YsaFnmD&㝷Z X""F `z4K1.)O +l㵦CuM MBJghCR͘T)4jBr`+)'X*k(N7c5F3фd\ٙPt^F@e,1:po4`KE9|P&ܹ>s 0?WB)! <S?Iͩ/eKϾ 3HӟWa}TIg*oHnSZ8j62 یv̪ 3ki),۩RxZum YkT?FQhu5n0-kAcm]N|@bF EvXWa[* Fɰ 8&4ZB@{lmMhK3oP|0m6!ͬؼ3CY./FJ܋Z'z|jçnx|}Q3YyVC,q 2\\ z-)`M% +f.Sk\W2zg#>t A4O_J 8J qB$ԝt!AϋjD .x.¶̨0=k'Z+rfBC9mn|ZJ2=I/uW@u)](O);_t25`gX.?'lCPk=IiA\kkq#, 7JQDy;]y\wvQ^: HYŪ^47 UA+$džf DChY`RN.]YZ{Z;l] ErZr*WVM׼uH>L8i7=A?cu˒0A ĬM&칔@ǂ~ U5 P2]Όxz z .?~ILқA@ˊ3b`9/bWA$AyŪ{A!UAj$<`v"3,xc,M܂<8ªBUw&䈘+8b}TON*#Y{ g(p[LKI^BrtK\fSS9 ݞ5zN"r'CH9m9h{0"B(BɅ"40Pv[/ɹ>G8v &Ɋ{֩A$$DEf7,x{:$!@~H^3Nz2m ,ƫNPo-񆷝J>9@/g.2qȍ:f[3 <$b銇+[kXr5+lѾoo>Vo[޶c(lPr)n@J+IRɜG ;^ꔯAM.zW}K 2ݲt˽O>^6N$ }5 0Lmq"Sr*'Ȍ3<ECQ'!(\V#HʼnhD9偖@#S׎*j&Wu fN6*GU1DsftiGԆ뜶vgz;ej1y&J!רmsNrN*Vj)*,Ytň~'1E|F%G0KS>P"(I"?w//^w~|,&%pg ?ȭr/1?$o/N~~ܴl`ϫ/&1-=àA 3hN5t7j9QK~(ԉ#k!ݰWw2(*ݜ6}D3z<eia8o3Dq#*fDkdmx41K|!Gv17;?8R]3;.`#0K*.]۟4-7G~quu8%Wg Sji.nf4:_@6|4OɌpϭN|ھZX==e4wvH4,xPlUodR ڢ)&s0 0v>$Kn3]N5NAx$jRGR5Glij `|eKN(9W7R{xds*)%2LF>#TqL-^G2z2d7ड |}f `ؚDv| -+_~""R&𙇬V [j3,CWN9$-TMm<.fzuΒ., }@7th+~ZYݚ"*) qBU@<6 zSBj>:=PLss|xhs6*`tT<d$B4!z@9xxsaH\\]EAhY:}tp7j)S;võm_ ˡF!B_ OL$魧g ]&E;80Ŀjj M]ED/167jvi3M*H@ qU >xjtvMŜM5ay Ϟ:-:(,mr]Ov*-+p ɑ:.D AeJz H3E4s%$ v⸸cSembtt+J&EWUu Z4 B{7SPE<.widi+glhUsAeWԔV!qR"H9[a^b_r?ٻu|O;٠ g8P\Pҫ۪-etL qֶ(Rw7^6xnOf|{%Gu; BUGnp!/O9@ˁeeS,zV\ZXh +G<:#\Ja>k"^ks:X7G:fO3J2=H q ZI))H䚕'Ul`*:/eܲBW.ͲK-,w8~< s'sT@ڏ?(1CQAU' h7PB&h7RM6˝f ,C vKgΒi *vlvM貂D'`mZ1t[HUB-aDx{4UhEXUe>дD͝<]I*sPnә]> 㾈gӘBp ()-xGjs#י A<&yL`741Gxa&:UD ɕb-:Um'ZC񄄁[/?RIiI` VMt _ԺnrU`%*'z$J ǂjݭD7 KpufbIm@z =kjo;S*~j[ݑwXՖA!!&.|i*$mqwbzf1'#nU1ݖ}.8JT7z%-牝_~ord1+ 15Ɣ'ܜ:!֝g( *2,.56˻ E4Cg'ZTg8)HW` \jȮ͹[,{rXiHG7` B/?&-pQcU1Vl^OYDf:(sW .ScymSU/=l=U$AK)W1# 5c%vQv ;j#k]; Z3I10<9a%;/aƕFTUy?cIi_wg/xԝNM CY*gPM!humQȻ,.˒}Y\կ0(fZ{{잭((Kj0y U=<~9ϑo4woxW^tIV}O^>⯂18C#pC6RP̈Tr X̷p$k1C+|o9/>:읣lq\3P']T@hm7p ҠS.˅Gs3X{RL\=gP) bBJM /*$Wc1Rs"b_뗭OIҀ+I2. ;Y=Q&C`U9]_PmGح Xȸob+[@Dxe ԯ 榮VR ]̮M!L9, He}Xa H@yJQn(H@f:Y1ˌ$W./#yALvu[r^hN1S0S;̬#PQ#0R!z{6Gq:FZqzC+~>fYUʁ:A / CbW~~I9x<)ll%kp~Y};Ejt< eT|ܚj.(ZfӺBѢϋ|xgN/Jyz-x}յziaViRo5mwlO ўqq.h/ABOj.fYU<N;X%Npަx{';Xs`m3~D_V(g+x\HKlK&k !r>>R^AC_z!A 'Vٶ*{[ʵF jVI0YJ6]lfnMhmK69to/A(N's^yEǧvEc$tS_]6TK-Vzj@0=Gxb{r.)Jz$sH~-yQ@lh$Csj$XÛ/wp2k[YRcW]BDyap9 }0_UTb]:DFO5]PtcP¢Pľ5O9Ywщ\Nygj(B-I&G7n>WAoĴPUg̴BY>_PKC EsP.%V2G7haV+9OLuۧ}/vU;/;T4js!8pcN%uQGQ1ҹ8Lse#C] TyD_u&oaLAiyǡOUoAoyX"+T"`0/WqYnf˛- ُ dȏ:H]BS{s9Œĸk0R&3@:J;^]/ ٙ! D9J^Dx 0`63`ǼeAD:q4cF(5HSЙ X2?!` 4]cAc$,0RԮ~> `Wwesp-"kn ~=>4A!xhˋ6A#iғD$}$w;ϫ$r(Hw`~Ԭ5RPfyQUǗ-zw} (7 0m]4zx4b[ݰ!AG/)jJ-UauO|h& I?wVic|LtS[ _^ig$wTċ_߫x}Š`.~7D= P\6?NoS D)+ 2%",ۺNNu)):q*ى0/&j-W3 >)i{D$><8j!@Ay $HA. 7 PN8>"V 'J7lT HPgB.wFu%$j:l7.a27,*UH#5|c-ͼf럘 2Zy14,5ՑrQ#nt` Q5'$▬䝙mr;X Q6sq#:5fT!5֐ioQ\Dw"%xx3VXN 4&TH%ò(&R|̆ ?h,$*bXa]D7?IiM\B3)TXc6{ ) FP"OZf)}W)[,CV%rн?d+AoQ.ʻV2OvY iL/CeO33ϿV}z^'n 58&;(4]94?.|.%&@ ͎ X8^P)&3r/S#rKҜa=ID FoŚMRem86sz#b/H o& u -9Uy[:X!siP{( uS [ghEV.7iwnR!z̳i1tgJɳ5H#v U9nʼz1{bNj SuRr۔,˺?J(R@Frt in6i Ic 7Tj MǏDz  M?X| vIFYYMu8P8>kV@,tHQϋIQ>, Rt _tj)6lA X٪C"f,Bf8 >`;+&jUC[1=')9>hK]m:,yĀ eG8e N~bN)W+cCnPECidjp\ 4?QBbEhބ{M #]aW"fK{PPY H3;% b͐~|E}lDVQsёx.h 0$wa)I0 n;d!DTó˳YBw5@Fi兪9aG(V*Ԍ%zh4/YDW*xnuۍ@-ُbȲaH@Yrw0Y].ZoT7%NnHB@"^Kï $o]cij+R{4386)̜]*~ ]+r ]3h;ɻ3;wn8{D^Kկd#BC:| 豼R?OlDu=(kÖt=6)4hiۓe)@t$Ϧ\p4؆!HP(X"a"4sD0Lr4d` \Yd5PIwViE f)ݼZ]H$1Ƒ%'X+EV23evBޕfa2qj ,4?]A! L!jN&HDa@5}YP (5B(`3mB7i9D\hMێ?j6Q3NAէv'WNa.;wK8uVҬn'̜=ϛTm{+;|9N|79d_DaQ~'H[2_& ҭ-I}Oh+m|m~MJ c:lXoDr0;vzk>"ݣ!lJηn4†3q1ud/J eLt}v&qˁLJ8~W7%34n #Jm["&4 "$rq'`' `=wN9N'ig;| MLá| zxǔ >8G/X$B_@O45([IN)|;` %88scG& *~'K16_ Q^T^x6`x?M`Q r 1SY&,!d .? ˲Y mrD-[khSF $;y L6lVǩL؛l1-k%|0懕g C6to{q߃̈ojM02u6[Qjɸe󂡰H>bK_Lh=90SLi&~k[8kHpU $<6&i!(QÌSMnPjZNxV8̱>PZV룉_ۄW-JZ"G=B=Կ2717}]S6N'x Kd.8A*1B1I;4<XI3}MSKTjX"73Qpiut{$;CjK*pຂ瀶7onP#" A&]O[DIZi6#X̐ ՂIJI{+W $Q []iz1 CMJ' k5&~wuWOy+ہr{fQ>[;dO$غq< (7~~۩?&e <Ԏ\卌Sf9m+ͷ;؟48rG6)Z AHlݸ%b\_*i#H,B7¦;EM,Ln(c[-83k}Aunr:D0\Cch]_K7$2?B^g'?%{?xD\&jsPѸD|Nnm` !XekFf0-N\ɠ## ѽ!'Y>$Q1e Xl8M @p22ɸN y6  Mv9+3*"oIИ=؛9" ]iV3UJשXGBG!ŲH:fT{4h8=Fڞ3HEfM?8<Ē^Zǐg HC35ꁭ7. DzUj&Vj2ѱ\"1N@]ߧ|!IH  Izx8S23O^G=ދt{%Ub* s`#3aZ$u9v\|dGant MW >8biښ"6pDMvq8n]Y/a2,Y ̈Z ^qBZm [hKY:Q R=n"F{inX=Cj/0_pZI\=gQD/ tbYFuL̕&d_pLAB^xdފMjf{~.T;^wW6b/kM8ƤѱX!v)탓ZPTƴ; y+)Xxz7 SM[vޔ[3\]3fcN\Oȯd.eլ?Gnnt#,<uO^w`7SJ1jPƏ7M5'%U{q5A}y~P_,qF/VY ]%иm 4.ШE(+1VC@>Q!ȴ`KU@?=HR~lۗİNOjWCpŗrʼ&4n]'n*F#OP l]KY. ɬζ zI #`(ySyR9"f*4TC; ,0h-NWM Yw%̀YdB޸1a跡ew aRBv'!vwGEsG4*vȿI+p_-\\ʨIFĊaB,@>>_Ͽ_9;9|~󽏿# cp ?>"g;$fB\V4?A[P-$R`E.`Kª-DAX&?`듳%ؒ !lOI)ST!AB M;iyX#.@,i ) MeHz8 ;lbHm{/lM-! nݫ&&Xl*bT]aXݳ@q_MТloZ;vǣK~~z?n Gn@ư}/}Y?8.77 XwCfHJ';;.v#VH {m !stډG6O?U7}c)DH<3yѥѪ +p 1'(a2.h/Jn5G`#b$ kRbZR[c+Z!F\=Qޛ[ Hc 5^DxMGG*l[Z^XMyOI'_qEXw @ XVJ:I=yM@ ؆ymnyevBx,qt5uHX6%WY`ҽ}۠P(tcSE8ki *Hp瀰b;‚^q:qo%fG>R{J*JoCcѿ\z6Ӈ.&.Iz'e5si뇣/<ˇ䚹s8Tߵ#7WOk4SѣŘ!J%E'sJ"Ct#1#iC%iDe+<$28&$!< V49.$n53P{2 ݵ2HTk# _].KfxNd8+ieJ*]ihox14"-;AUm9UA3M@!%I`8OYKE6j ]"(ua[Ё)MӬɡV!=ۚ ~/m ?B=bDM%#_>Ȓ9hpGy<jF&)y- WXqLQ{a[#$knrthD!Ƴ“wՊpTP7 aS/~wpO "J3q*>aJz,ӻgf'h`,=@CCJHl3wJ;Fjɿ#(GEP:,Co*~1 Iwp vğ a/L;%"46mMRSv vf0FfO qq&ԷOTq!ZRҁ\Qlw9=%0jQX-u9K(Su6q;#xz\l$X֊I&IX@s]]E;p/N֋7?ou 8ݹotrvL\ލAfS(?o"1p̆y^YIT0MaS0Efh( #BNf>P*-pg.":jL=Ix0>ן G;C͑j\ [ZT' /R5D&tfVQIhD^.RA@}-p nLTh"~rs"`9@h1A1C;fk;4`H$1 1 g*CɶS%~&'6Ll5 I=z,}kUg)3O\>ͧճ{# nY_k-A"NNPk@NdqGI 7ctLM5"n|8Pw%̨Gwv^-DZ5m㱅S,sDLpN[Dό]R%Ҭ/ VFjXMVܴhqdr¢A!r0~⪤G0_6 6_Y?_OޝyMmא~%9Hɭ0؋2D\#ȂT[vg?eàP)NduͰ>pk^'I9<᜸Vu8} iS[$??>$z< +߄Eq&D{|=C`c{4Ean}Ll+>-`w=Hk MH-iDiG\f'Xt8up('uw+"@XKݸsB(mB;bvv"ߑIJL9|Q7⾛6[WiܙtuiAWCKG&j]9)I$K͂b$aq o(kw'ۣoѿ|}o }&#p]s]6N,g`;[(,,)5]r‘nkML|{(爵@%şit8/s)u*Rd>(z+u]c-2NR"<}Gē NJrfv|<~bRdqa?6; VGɋ͋AP=K OhS·cIN .HcQXuS H;in6)-8"$H]iΰP7'ǔ`_"wFUCL @w r *1Qv"Ail*6? S)eـc2 <%2}~9i(mZ1&g xJWgHJwla鯬Cޙ[NUoD5B A{5ԙV<vkWx QQVKkVUaq}*o %wh'?u_BGúr+5rc62 q aj[juֈG#\N] C( Փ_fZңE5 mSm6ͥ\6(bPm Y ~KL^9N#!! v"o dgt-"ԩ?RDoʩ/1,B|P,i+-=7\4 ޲Wە` ̒3 &0U[NGR:_/;|-T]N|렰$$Nʑ6]&YV#z^F̄ (|u6LiiJ8;!_\: 3ineO,6"E}xWKGE M/j*%Yey,͝(?*hIY vʝ+uhם'{6€9%i^/e)eL 6f}rV -z=E0b MK1I#1wZx71M.fHM uu2='e\ ):6r9(-a(gшW7N~<8Ƀٙg\'VLWaݯ^_G}}%]EdPvF / =C~GL08VL 6SFA<+ƚ9$8B|ywdⵈu}'6h$N$h*MMR\S[A:g<d g{k`NIc5 Bf!J U#3.sBy)4JHƪ F*wvy=\>]Q"yS\:R5WӶ} 0%^q;upd7wvINL+ޟ83BҋܣM!"BcNL^7)/u }se]cF9hMI=poƯLjƌy1w5f7EmۑXSszאNɿ]2E9}LHEa#*N]`)np_UT?0v-r^ދҫL5u+1م(d5,@.h+I6MdE])(_p7W#jPi*a۸)#w'WX]- p5C%@r'Cos}}tsP%uI6c]Y(_:K_Yu{$8.n _gF0 7'=\0`˂Ypu.1/"%:&ШFde'~!䈁Lxi$cDenW  Ŵ) e}nM5?u<"}b2Ԟ0_\WS=aS+{BEFq"n %5|eO@7 j?"~'0/f͔~~8#MF/\N>Ifd1HAv#,-\J4T`5oVv+KO{E PvFb?>-eiX~A q3)͓'*Agp RZpʾ5 zJb |6 AwY;T$J2\ P> xhmI965d5W;;6{POG2g|`Uˠܯ2*^}&cv7 RxiLg:ь TsUO.8B~;>V]d{&;}_vND/JR [utk&/-yE,`*jqH:3c5 0-5>$qW/ E^=L$&p n3̢SfHA5`Pd1b`at8ڹwDx1'|c$,یRo0O1?=h&,uj4;e0'CP /cfޅ*5cLHl3FéIL#IuWU9eZ,NMM b`ٛW'7^y~y'Ÿ) Zk߅OC2u (f$rfeuUU 7bRK zٝ{\<{n]mph FLKRi}Z :_k.L2Ye{u@ޢUNdkUёz$2SQ.HP}u+m);n:R)6v* '+6UfF*Rh&$k!Gv8NJs.ԋ:{+3duHK&YhooP ??qrӿm4}:BݷbLNAКyP+.%>*w%RV3|M^^N R৺dS>|עZT\kQq-*EŵV1bWjըW;_y5P)0LjZSW>fA5- ̘Eso<+P)Z,іBafSsuʂJiSt$ ,| ?9':?R?Vc߀oOqgP jKw&G,8 'ŕ$t!lzICV!㮛 lH?ݲjU&%HAa,7;zraLj[[!u77ͪ=ˋЖdZV\quA82NSQl5&PNo/7[۟8:zH@gE/NԴI׬"?9Rƃo/ u6WhR!Sa@K,*@U$8턐Y/ihBUUZQВ'‘$'My0UY˧Nޥwge* gHj7?O_-wO_-"ūӒ$zs+ّBBσrS<7\_Yi?|.㻠IKnSg -hS6x&8Ul'9I#;}ѬKQĚ"Ui} @N~ΎE}dGXUYQ 2LM7꼘s>HWL/_~ ';_uQ,.gj]x5!=~'3. @~Kڪ28ѪԹ*^j6Uf_ЯE!v^E]N+UU4WhZM&$Nٖ)c) DlhZbZeTTU&iEn q54\L*5koOݦYF鍆ΧPfYp) A딞*͊\0x.Ų F򆎾hoHiG: q (]*5H ٷjK=/Jn iceFzJ\cO)/%VTX۴Zg/.U&~4qu4 ozeooݛ//&  i`/2 @yX ?7ϿwW5l܃tJdy'';Cs|p0 dgMoPgm :W Џ? zB*v ('&ZeFR%5/Z {F},@RIԀVCnA ƃ('O{n9rzJ8œ(GLT:}Ίv4eV/R^OSONX xZ.'-@"" D1l. Hqde]6DZAZ8|LALacCMªq#ΫSVK"R1+'d)u@˯=Dը>p3]9pD8K(FZKQ0W^2"z*5G؍+Q"*[;+kN!U;xnN9ɊME/U+ U ,YaZ1/F,ژ5p)63`7V {c)r>,7)FJP#G_iF3+|&j]` *LiTmI!n'IxpvՔh> kR 2h*B!BDe 1y I^<ێgWCN99Hqc6d+pCz]E8|x2NXf(͇U90FZ멖 kP)ݙ᪆YqGP3+EVO+z9|x]O<1͊U dz"1E WhmÚ)lix[7`-;17DCA u2(qEĕQhZ`3:3#,_4 3u%Ac^ܳLpxDp=i=e 4=!qXL*df)i#a_Đlm (,Ko oX7iB܋/`~8*BYQbg߼H.ӣe}Ȩ*FVBMWRm)b[b$;:l|ErT,i<`Y[m"B+vn3lKMȃ(pL61d;:l/7~/pq!DF`f4/P'] hz4fK%cH&Tg,ʈ t;zA ,DŽfzUX!qHyS~6ٱǎ`|gkbR bR]+@ޱ\#R\<%PV~\:i#RFg/*}F-*Y:BVXO+ Խ>.BEJ. 4yzyA*gZ8k0 H91\N=sPȄk[n^yv>/VRY'O9F䤠yI6V}1op~&,5J-VZ#pۻo6*,%XY) P^8?eڄ ?V1kMI/Gk԰T̃xT[*G(7WX#%[>.Wkl*er~O6mI%=Q3NY\AR=$ۙ9[2 ì 4(30wޖa$(QS|@Q$TҡSoP}!O'E5l%,(rU.FtNv{H&)idCij:[\u KhOrrEj$rg55XYb=]g'zu6~7Gѻ˓qaSc[* Hx1a'!&Yx\|ţ8mkizx(6\e(u:jܰOj[U66ʋl94o7' 0 6[92Ah'1aߏޝ=iQy5~6֩p 1fn| v@iPykmGI\w[[ doճgG?]>*|k2|=1!dۤYV< :eG/;fw Od8>Pu.2],ȽdB2x80>:yCց;˲<|ꎍɥ{otwk}mynaae&?\^%ڐޕT* eTuN TߧBwAxw~i:!m)Y3)ҼAա~qy NPǖP ՠ`SC&x$L3`fǧ'y$APw[=M]3Xek;bh(m*~}7OJl>nFMއ:v6Ӛ;V noZԾ~%=TDMU\C/͵%#<ep0f^aZșϸ;&GׇKCmy^M(7=eNN*N|[:l E_zm_ټ.*A<.53B%p 3}rUծ dKxm v u7MM!ߣ߶a[[<#Ya,nfrw [n~KQ;N͉M<3|AW,?.ep7XxMMsSv*ExnB(@a%KjwIJ9 35M?~%z"S ;E  7~o J#{Wy!;NjMʍ-Nv_2#9bu{8lNue[xnD lĉ9mM,R#*+fԅz ?;/dxh ;[Wu&ȽNc1^n0Wz &ud:'{veo`{=7G Lx@Di(-]`[F8G5t<ytW_)Oo|/2*LJ"`-K|Z#g$@|Ioq3M1c<H;+BEDj6N)IP@Fo̠׊Gw8AK},L*Z];M3l.q2187*5)xNy\/&e>gje_G ćzDo7!G3 yiwBɮ Y5u՗4]m zVH.*ȶ|k@}%z=8P1z2Ƞp%i5V*\Zsd}6 ?qMpzIClnL39YW?$N ؾ*lI?冤')?L YgӁ>QOg/T+Cފ9+F.3'{6_Z sZJIJ[޺b8(GVmw yo;,O8˖=p9$ޭH 8>a0ڪ)(ߞTQ"řO!LnaCQS=$X@7|9NK匰ך>iIM 1mԟ۶d}oDuCV<+l5!jYyVq#7$FlN.ΣRZ8Բc5TjdĬFŵo;r;4»t=cF8 V%ȥi'ew1[]ʣrڱU)dIqI I>J8f9Eر0Z1QXk_g7NH!/+{S 3lkW-AGo\L 馴 "97e{z!$SPrR;dcYn\aback[>?_+I#wW}=Soߎ xR5;!KhcS^n5N-'8 RYU=P8&R}]˱ SouAߞ/:Hpgٯ棄jz>}{zt$JurP1JV̫[ЧOPebQi