perl-Perl-Tidy-20230309-bp155.2.3.1<>,hdvI%z L_ 8i҇)btS3 XA)# ْQ/+ m rnwLM<ّIVF48#.P{Ka×d!OֿA7c\&P#j$JY{6(-VɝߚM8XMJjcCt>ćIsNgFqDgso6dq}@V-z@{)ɝV b-T,P`fdR+!T  aV'4o~RM֠>"?"d & G /5<@<@ @ <@ <@ |@ @@@<h@h5(S8\9:F)G<@H<@I<@X|Y\@]@^ bvcdeflu@v w@x @y!z","<"@"F"Cperl-Perl-Tidy20230309bp155.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.dvlamb564SUSE Linux Enterprise 15openSUSEGPL-2.0-or-laterhttp://bugs.opensuse.orgUnspecifiedhttps://metacpan.org/release/Perl-TidylinuxnoarchQ+Lp  J=5j ! 2 @LCt )=,Z( q v{`ani QZ O!,d|H.F9mAA$$$$$$$$$$$$$$$$A$$$AA큤A큤A큤큤큤큤A큤$$ddddGd|d~dddd0Odddddddddddddddua3dcddCdCdCdDbڮ-dD`9YdDdCdCdDPpRD\E`tJOr?PqRDTina 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 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.lamb56 1691748214  !"#$%&'()*+,-./0123456789:;<=>?@20230309202303092023030920230309202303092023030920230309202303092023030920230309202303092023030920230309202303092023030920230309202303092023030920230309-bp155.2.3.1 perltidyPerlTidyTidy.pmTidy.podDebugger.pmDevNull.pmDiagnostics.pmFileWriter.pmFormatter.pmHtmlWriter.pmIOScalar.pmIOScalarArray.pmIndentationItem.pmLineBuffer.pmLineSink.pmLineSource.pmLogger.pmTokenizer.pmVerticalAlignerVerticalAligner.pmAlignment.pmLine.pmx86_64-linux-thread-multiperl-Perl-TidyBUGS.mdCHANGES.mdREADME.mddocsBugLog.htmlChangeLog.htmlINSTALL.htmlTidy.htmleos_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.plperltidyrc_dump.plperlxmltok.plpt.battestfa.ttestff.tpm2plperl-Perl-TidyCOPYINGperltidy.1.gzPerl::Tidy.3pm.gz/usr/bin//usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/Perl//usr/lib/perl5/vendor_perl/5.26.1/Perl/Tidy//usr/lib/perl5/vendor_perl/5.26.1/Perl/Tidy/VerticalAligner//usr/share/doc/packages//usr/share/doc/packages/perl-Perl-Tidy//usr/share/doc/packages/perl-Perl-Tidy/docs//usr/share/doc/packages/perl-Perl-Tidy/examples//usr/share/licenses//usr/share/licenses/perl-Perl-Tidy//usr/share/man/man1//usr/share/man/man3/-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:18031/openSUSE_Backports_SLE-15-SP5_Update/56593d7cc435ecb7fb77c962b9c7aeec-perl-Perl-Tidy.openSUSE_Backports_SLE-15-SP5_Updatedrpmxz5noarch-suse-linux  Perl script text executabledirectoryPerl5 module source textPerl POD document, ASCII textASCII textXML 1.0 document, ASCII text, with very long linesASCII text, with very long linesHTML document, ASCII textDOS batch file, ASCII text, with CRLF line terminatorsawk or perl script, ASCII texttroff 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) RPPPPPPPPPP P P P P PPPPA_dGQhutf-88656a5382ab4cacbfb1cc092c9e8d815837b6c7c4066e54180bd1ae8961cd42e? 7zXZ !t/Վ]"k%r3AlPo+ G*̀ m=ΧSR{+o7Yk׃E XVZw(~J7a&Qa|hKF[I KW_qAcWjQ+0帶peQ3(ٛ <”dK79J YecMЧYJ7@'0]C`q *wM?Ed&R2oe˝O8X}~$dĜJ&"Ybԓkck#B=XF+SJ^"X7d5} SDLAq6GukviZ>!m\w'1',v/BA+EśSE'P%D0j!EkJcs:W.og`'LA<%.|KaNf5Jl\6F_<*IR|hn : X=f'Z.>c?DzYij\%r,I7N ˵.]3Hyxbga<ܬ =xU[=ww>,l3pM\rw܎rp_;3m5Tg^b%P[[XWV V[\_5\:zhd$=IH? S;pe kpyz?/˥ͥ:q]!y Z44cmq*yLfJ!9섩}rn2o^O` i!)mCrC{lwHḗEbвIlX7jw2Sv1/6"W#8zcW=4`2s"vmQs~zC ̊vZk*K)?B aeyxA~ Rmm_, PvpׅNnIk#a:<X~BLE) `Kˉsi(!AقF!Z~r Dw!\:RbY և/ 3펆yp372s\V|qRT_fQ,OB4b>׶*X?=Iq䣚 ̫H=ҿo--WfIUW9mMjM-M3׌i6t7fڇ {](plsp6AyFV\p+]W7;6ZÒZկE/&aQvنc|v,68eeY6sZ/oI3P5Cjw1o`.WT%WHhv{vcz4Gh6{<^vtH6u5YH.9V! ۬&.kNr68L ,ۡ+Pu>l}P*oa| !6)1\r}қW+W|j6@I XVAqIMNAנe@HoNYGr %Wգ5c9{~f_{T0 bQi{}ݬa;?”[Lϖe-Is*rWnr,qT9߂ҁ^q|PИP""S$eNv/pYU +KY!:B<`oh*h7`G yWp`Iu<2>ð*iQ ֡IJr^MS{=,4܏+ێ[ڼ* Z&kN H]V(eIcm=XVp)jXlcu l;9p1h7;..|%o),mn>M^<7/ݡDxܩQ FPL°fdy%nD=j &=~ok"\CN] ),ڿ^'6w(PH^H巘%CIYˤGuuA`bZKEyOahz?RvXҏ y*J'8? АIk1w1t"\m&tmv C00g/հإ&|pU+PfBtÛ*F"9Kl;ZW.%ĥ=W+0H瓠tFlYg,OZj'Ӯo J7 !A"E[%P =5MhFGAJTU/] 3=ԷDxiSJWmߘ4~vu)Y `?3XBgIaoYFJ' zy _؀)\1.R7(UGsdȈEEL16ajg8H^~NaRWO|WG ӏ._A@omOT<Ӂ$,S䞹@y-ULt`Aޥm>:y +r]%x3yIc DoPy8qBm}SS,uxD\J ]c=յX&:K3]}&򻋟~ҞkT WEh.;{Sz pSb!VNRɪYts݊d>'fG$1ymc]6RE/ P2v&Qq2hv¥>[?VŔRзvu*D3XgCmؿtU]k- W֛lr)Bh60 Sj/Pv'e0g5 +Y[UڥVW`,#?;'URlk;~WJYw9 q4Y="/l-DC;?sﳠn;ƄX+j EB`'@3 H̕uFono!˽T*>u-!|ƽG(D( E8c9N62'۾>}^pd5qj 6G0ǸSQrM&؀w(tt֦?j3r#on|Ԏ(c !벙S7!uucqcsb1VƦSݥZ]8y cwSv`tEP[UJ{hsi?sٱ:7SEIBdAR:㢛e |>`byT?f BE8I[u֎5Y!9w9e ?;pXr+mFp=^o۲@j5 .&XT(!=Tl>HjY C (gt*~^|lh/.zMH ͦ5U3]Otc%-!{@^jfhHS;L9:zBv r N6JeǸ=g) `ѐ?Q)DJxbǽr6QߙO5(H[X&kj凘ԡj*gefK? ? asa=Eҍ~Ǫ zu|]JW;vy9p u(P=.e!gK4gug0@K%ưZg<%дXW0L>PjC*O^ctDfWtη?ĂSW&RQ%@54*%EVS™)~b)|45!:`J gؕO5p3AZHU4g5[i6W0tPĿ) Zu%ĕ$7}2+r‹VFI]"@lJW!73<}[y!DfåC=]b6}U݂$D}Fb }'F6)VO:N/腂 ˒ݯ̊+mDJBKCtfGaP\NOT+g_zj|9F'SjF4%B!C@IT]]~lK^{P.o$ֻᖜ* ?+DOwO}<3AjCp)i xǵ-`|-Sn`JߗdBª HSRKpA/@2)yk-"5RϙCkɉyD^QtvI/-R<z@=:x2 Wo'>3+".Fa('SjZ9{Mvh"5YgvVO,):m3VUěe5\hXgNGZB^~e?Ja ;]aELMoN@Ƞxp1ƻoQۖ%h8Ω*1./H;ӎ"SrvJw!#E"Xpz뻃0 qyFn(&Dfг[`QAM[ Rf/<`jh35<1 p)Nn5+1#d)mZ'T~\9ټuݝ Y7‘/)_Q]NaBHixY/5EN4/.9^e`<{FJPbPu|e^?SB X%(pq xJf~cXCD|-"r=\kM8ڛ-s̲!.=+gADMMù dUզg*NUb.t,{1'ߏ}*\6 u")wRd7EDsGL!BՂ $.:=viXa2h:/Ғmj`#֤vײq MYB\]=&/Ec}(7cUqA 9.7Rof`'f ;犴^P'uDEaܓHV*k^\9VӔwOUu|ܺ!̏Z-e+ҵM]PFbSٰ9*xM]w*^ M}G:b YEAHsψx-"XU#tx+ [mњj)TD0-+N!F@NmWPjZϽi=T,qdj1:V~+q}]5'.(Z8bKp/ VC_֥;@go87_(CAy^z 96{7 0Asr'B0n& |̮WoUl=v8<ѹ?#@inE+ E{k2\Ίij), lL+ 3TnYI`@{ "Ek*$ &wt%Gl#;H3v_kS7E;aWi}:=a(wiOk R͸%BW/m=]IѢ^=̢X}x'GH:vR Ɂ=1>+*ny-ƃ J)C3Ԇen&hZUXb*곴;Riz_]>asBMΛA|4E'T{Ux @&Ȳ~`YU dIjgomޣO(|Qr@f: i sԒVdm As=SAf 8FH)n ܬj?nkF@NzhW+ x7Orh5mR[yV(#qr`̖5;*IX Q̴&r2&cPzrŒ g)#,~, )NoGMYtc0!ԐX%_QQrn[D!F=k^N[xsKZ+psM~+THL/G &.SVQIfnsXLEGq\U="Js Zz`#`UQu% ]b-wKT$A__]T FdTOpp qlnmDxWNR0'5E)W* cRێph+ 8GI5}@&ŭ5]1!y_ EV*o,.QĤm-=7%$cNL(3iPSLB]=`i.Dӓ)n' =y> !@^8N_D2*y<V<WDݧGab-"畋'^6{N3۸zKjaPېW9jXzkT&\}؆Xh&2w^>~k up6n?:\O']V?P'4ҊSR4P~Ԅq{1{w}Q?s9 jB;R Eq`&0rhD&6L# 1>W}2Sx@CvrfsLHQKyc'j ґV Om["K8:oK&Ҍɾ>X%-{GVw?. c*ˌVIڪLP˱L{!R\P{3jtqbޮ?k9XBSխT؟b~$qH\(@ Ae@zrm@ ,5tߺЄ@Tl[8H8WVNMWR:7bܢ{J,)# _ee-;@Ydgc!gzK6?kfɵ5fH&0VRӅd%( B!EXه 8a#pKW.CqdF̈́t=j E;:6(a,>JNYDo,s*Ky>Q "1r45ؽe3=1`70ob\CZQX2W Z6n=&<[CT}[~g0Ď&H4ud;jKU5hEEJ1\j[z ~>}37)r3>=PW҂69ӫc^.pѸa,L w `?f r6wI 3cڐ֗ة|'I0ڣ6k;*o#Xg*S}YDwJn GǬ\W>ujGk-ۑ&[ F VozT],p06$φfV<i4RsVZ Cr:#dcx8T)@Ϡ!FaW7]Z}*sf ޗ 8 ݊9%uXdIQFz~f@O-ca€WSc| ˞=<=up]xq1! 3coz`#)MF]YiWmN{ˆQ[lVuSxB^|IԚWyH,t)T]z!ܹT<3 /|mOpc8Iĺo-3ČEl dʥ`)[lqӄ=E{*y_@$ʜb/ *Ǧ%dFcHidO.G182H?[8&goL]3z W*ﴟMYvfr|>;u/^iʯ--n gr g(L0xR{R+NȍIª!<=@D.wKbkZSԙ pwV.*9*"Cک0Lz%k~hhH]TQ|MwPQZ7QYjjxB??^=d4OwֲZx /\Mu'UhEK j ^Y] eJ{{ܵ=tk;`a[1'#a9]k1^voK>";PX56𰚽gOFW-fwS@ZxwSvHOȕ)E1b;2MN:i7)P/)^) W'?Y4f@UhT|2-5aGGGѱV|IBvēkLpQ3W\aPbKد἞rBY60pXdH;nM ŲK^d7N@x|'m$ַ&\S GGXKC1E^MwP4Էߡ9ѕq-ϙ/#u%oE{ӋyS4.[NQּVj$"VNp0XZ2mZ|1Ee^/ &+.J@3!)%QTT<„kdv*we횏ȧ/S`@ؙ{%PBV/xBOk@K0qY>A;wsX-7ꮍ$/]&o T'Ϝ!3."m%>)1(->{"+~qˁc"zhY1jk4ubvQ hKO(d柺1'3UK{ԻUUGҲZɫ#4cΞeOzuYR}8Xik[X`6`5ZA[J?Enm*Shets>@f"Ґ:Ŵv BX)BD2A׌Cueƛ aƚXBf/~L0(`f ևV!N⨃bغ鵋 -!b((aԩt\K~<=EH||Ehًڬe &Kd{o3U5((O9^ֳgl1;f3s+jT,(ۻwVn3+@֛)D yxǰ*v U?7g6gEFPv0=-w6NZޮHu9@+cS.8wfkGsŴy,I:%r2$&tD:fƞBɮJp Wm,`$)( ʲc*akXMODSZh7ӸaR ^=v`?*2qY0܂Bfգ^=]T|l}5Ln8 Lfq A9* ӆY#F&.%;<]FQ3ASdl&JRr,/dnь+ _|#fya $eTS EiO_S;NDӇ{8D8@p8cIA54;ȤUAH#q64O❆AHT^L0^򍪱}龲lyr._-MɎi!H4U-KK;e4>L%~0<.V otxz1%"|)Jm;#fs ^ߪBEd֌%.-+1뜓518t1(XhɄV KƮ?w".?wigQgq+N:Sh&dɎ+=P3dɗ:/y M쎱ÈaEr>^\3gtTF{}l"n\ GHytLdzXR'#Vԭ<:ƖrI(l?+"{8|1zW]7?=k*Y64'cc"%}X~j? D:g\7 <|iwon Hf"V7&bN!Y^"h5&JNٶMގepbmE0S-Ck;## =}L퐙qbgejY YڃU&ƃvJ7:PB3Gm 3(OcZtĸq|V+z'SȚQf5׮f|噴aHDhUq⁏Ln~Qv[Sln-ZĻR۩.=P@W~IȋnZo;yo|)#8e~rmz4 ~ϙT0êtfc^@llOin.\W/'`'1[%cF$'k9U.Bo1ɶiѸ&Ujjlr6Q ?/CVIQoU ,@#[8hhs'?X=D>JZ;ҰP]g]>REp*[ t}r%+I HKC17駜F-DC ̉PViE׫ Wc~ߛJz70Ӗdp܎D^{Ȭ1HL1F𵺆 ~Z6E\dl[}D̫9dj[dg@_ wJ(.9.To7`Ձ[;ˬO$8͵l ūILڂ5C ]wj;.׎ H!1xe'RܴQ!aƼhm.'Bx<<<{e%A@3͝}RG5z%,  w5@ALq"b\"lT7xEmw xTKb9w;^*ٗlR+េKI052ҥE%?ݵ!3uzEZ@F<2 `m6^.o7Z -aڴ܁| 8]hlml`\ : U=˿XGi b_ӊ4V>sed BT]ڤ;P?Lʣt/I6 v6޾gmdBn $+@6k"ׁ 1/# R:T}۞1*_rOX4a?ւd:X9?J;};;rT{Kۄ@;.A<t6jnR L9\!.|sgc`*yN0n\U8ǃ㩌/*އ >ۀupyP5wT)} &"y6"*Cq==M!ycO.U#!.̓\,.,D[,iո[InuiN΅EiVT}S+[Zj4UdFlܜLl_G"Bw@Rr]"aC }n:[UAgto6ɟ7RT&[[ 䋁Ty WbuQ)Xj_ X0G*u fp 5Jq\1`H/9A: ߪL2$85hz$SMn H8OBg-f o-${rMw! b!32칈5%ϝm(g~Ոm2FɬtyK9z(l51S TU*.Hއ9i` 38|8u A/6rI#'/X|ra2|C(Ԡ0VLґDd5o ^4wNrQ#.; Ѫ;Rj9O|1Us\T[E $](T}fB3oC zT,LT S Hպ =es} gd#'N&LU=%ݩOcK = O.*j2+t%PL7Y/Ӿz4^<&Y$[zfi^o+m#Om]V/<.g3tq[ sj("융XPHh%U(0eAKWL}Uppƍe`sZRj[MP5 }~'X T3㞒aG8Qj,ж Lt&+4u6*V['ȧ}#+{lxMi#־NPUHz),J;G],( >w`}\[혬TƵWfa2;}0$ @(<7,GztP* C9IbPjݍTj P'κvw(Dݞ0/-./T..or(BF-cuڴD帎U8dkJ[!'WDWhͲ6bIjHiyNY# , z'Ǵ(;o%7czY%K7lَB G<-(<@\_=dS={SN5U%xtR0מ%EN^̴( j}/XjbAYm4?U{Uv.R\YXہzO»;UV9o U#dTZ9 s)t3פ+{nrE-I+lIN1V-߹Bv` r .zÏw/Å^o*ndZL`Ze滅EFAßAw6Ӎ7,Qܭ{Cδ-?$c!|Ul"mb*L0Q摸ܓ}lQ{Ϸ(FA zu!D5P&aWup.3YDj{l"AfsG]D*KVE6":Uޅ+5zR CB£RDpJ L&Km?W,ߺV/mazagN!:Jn {KV+{:*a&L,hmIcގ'yg4/v\1(A,a0Ne) Ə27ϦZ{$s|28u֞EwcAlJ-˗ ezRy9| z)/`[Q϶Z֥n:Jg5>kHX0b;g aY} ;"{Lb0E2K N6Ky\Oitc@ q D",KB#^Zׯ+ޣ8B$P=THkd(FQ R|k̉0'&o T83ިNHXpS |(XW{OELg4 w4-p5 B%0 K~ЮErafƚ_/)Nys90ezɪʤё Aqu 4[- aqL/UbvEx9c؆Dp,v2N%a $U ^x/ A P8r1jU"sXj+7?ɔV-#IN'R?6%0cAn^RwIܗ6zl4z9Θs>!r9gXfY2H!K8d Vjdʎ17D6,(Z3Uc;Esb4C&Gd,0Y-ݺ9ZS2"0Tz'">?!tőz1T&c:fXh#a`7 v+:&2,\\πgE/!> 89[hB UZ?Fm:joxJ2.EO/#f,GpT6EQh ~CC4f|}MyLy{`q ox;j,`T37-෥;f/q 2}ժSg2H>26y,RdkzRXE6ܰ͢;|}j <<@w/T抹Eti߹ O$2CdӅ1u)m}ur5AN$߷UJF@NRh1NpvZv5*Oh'A/f&\-U{TYm*d#)n[:mS&Jz8Jplˤ 3AC9Cب>?_0W̿o_ RM>cK$"+a?&W,3,H-Ȭ6Ř6Q;^*R x7Y i=JcX5lEDohxˌ&-ur@4]9kB}e+"EH_6PN!-R8L帜?y F%aD+Sx0> zx}٩&6W}aYȾ# Z[ιGh2[rn\ICNj0%xpz`0χuͨ$~ ywАʣzR>r[+V,$#(ft?rb@̭6nz9NAjج &GrN+PE{De᢭GJȁ>$;193xC{B榮1peix %b`_xnl}ijDz*2#7 BHT-.hK|UEl`#0D_=Hۼ5^^X9({& [EeW#N#qcVx(C֧NHqgN<^Asݚ7#=1bTt?݈ DtgrA0HN恓Na0.|ԴhDmG6 cHMq>s^z$;h#y֑1؉.UYt55̏'[M{jv[^$#꘥OK`M:nrE`<=ZM}j [/= \u6/W?nBpd"Z}#`?a1B) ' `${5 F6%xr> bmz[J"|QrqLR~TկA6(J_w\i%f%N#:>q@5›ǝLX {uxYoMX LΠb'/0["1ł#ʣMxѨ?GH]*ifJLu3vgo apjU+o]N^PqrE_6/TY'~(k3/2M!n2gpjWXX'<b3H+;Zj$5rw1v䅪Պv6h??qYU^.e=q]eJhER=]C cx>kfj:?(hZnOIÓwp0N,|Mˎ?`[G;U/}SXvkB|z&cה{lӯ1YZ_$ƿETt!0g4FUX(,^seAL3m@Lsƶ{Knh aA&RW2 i+Ԉ(Ȝb [^t.@]ZC/?@+L4<Ϣ\]6NAE403h"$ީe3H2D6C,t}cT\n)/C1 W?LO'Ao.-Hyl!ĭT8ϑ*TLA36h-%ȻH5.%NõZ#JaC.sA%!9x$z]@͉![ϠV@oO4wإdPv{d P\Kb>/ΙG0#ۜ AN5{'e(ԛqU<ܢA ."n."炃`l8Ԕ3|U[_̟ 4*&ք\Mn `rN7x C?/<Ԥ2.A4e2P O؉ܑ_NWȝqz'?.z}҃xJ, QȞ1gq =PfB2'2ѪI[k\{{J7- :K uj~-HwNsKlU8]>"illqy3-+t# aM<TkQH ՌotDS^*+;udVl^Zԏs7{NmJJ#`N'ʬ= o8AFe'b{UĉƮ|Ps_ N_Z!_jR)[`>0\aE-='^xFd ZYϽ 7Qcym!>wUy;\_!9-"o_K3HU_Kqi/4LҞ xZ~R/G#o_8B|74v\?}\* X]YKs [yK 0ّķۯhQ=IWW9VՔ'UO4qiU3ΏS/}Ť? \ d=9IΐP.X* ORHi`]2*1r9oى|8U"C/~ |D92q i;Y߀`''6`/@m$h.v*\^ +*O>B/QXQ_zIOlt`BŠ4slMKVb50pdWX19ȉkfB"ܝ:1-eUr[o ]g> 88_Fk{mu(XLeJτ"`:2,hZr^fIr\ۜN}Kjr4qAmܟs% rp|PO #h AW0i' 3%vV2:m>P?"Mṉ0ƲLPK7; {c3.\|R B=(;>nR`\|oCKLx1YkTlqB{o$L9*DL#ˊ)yl-|DOW]{D +L ,c7ټb CԬKahW)},2Pebas%ûfBu6˦=7Yx$Vl2p) /<k"C|7w0|ejǀרy5\3>Lbx5dJI)K :};̓ʽ|@#K ߆-k~XiJETŌߟWS p{"x54ڳAOW #oªy`t!X˺z ̤h*:Ə^8`\Ղ`">6MnJ΀gHK4Ngnk3[MEvXA1̓i[qB%XC) ny%ܭo{ & <~l^.慉l:tDU8qrq/e?iK6a1Q%;:R[1wnb6fQLyqDS_񮦤ax~:h6)xc7&r՗jɺtc-F.kt t[hiѕaT *ڕMd,qq3W?,^:" ;k5ei a8Ld`B}!(n,ő§݅DF#߮PE9"z #,&/ e?'R/xvkD.qCE nkq`.(7Q,NW'vrS;r2NXpߒܷsP૕T"ӡ,$(܇8mgpp杆ZQqtd @ Kt !8؅WS _Q"qLzӵavYS]Uș5OɷmTՔ$&RڒL97:-Ҽ}Њn:eùXZtTGzɁ!&qvgf`إ7o q^G;@sNؾR\)Ի{%YD y{ h{Q4;D pm8[/K1n {yb8`]YRLZMtI^(bEKBuẗR$GS04Lq(0Q{To}\U@I$44Ojl]S@39Ӳ\G%J<>J?)A)l^4VE#&}(e6Z>i)D!.\s{)Co\? [K< F3K?jV6 wR#:M!r؃Qʵ/|.b?+ Ҳ."JՅޟg>ּ͛t4$Ưw0}?Cm&3W#$ucTH$ijzfN<\1/3  U!uV7o߂.otM-iuS>WER=dDEXcqUN2vJQt QXtft`?iU[| q-,". c~[&k|{@elmB<>/Cx z-xM{ Ǥ<ꡑq)rSXܰxWFJ\ |O|쩀"GBobzQjt0qjF\bٕ#R仉S]q@j_l2TY#n2ʛ꜁~b3:G{(-zQWc;? ^xN%h,`]smkh&qh :M_v-U~@=zD+7N 1Sdfz6u9l㼇Qi߰Qx x u0i ApDk.a)xr篇"15lӑ /}4:3.႕I(l՜X9b-?FC1 n$UoQDlW ]"w=854F6~[xO->~G*r׉8pɎ\1#m)a;PEQkGE7f[e˦aPh5\8w,SgQfb9d&OW<@$2 mFI?ހ)y&~FnQc|օ{QOPMi,w#Տ^m"z D=pCcrpa=5 w6_/+0kZȣ/d_Yx'J#<l$NBL1%(oR\\/^~V_> :F m&CΘ>5Ͷe;D5ؼH@b]<k1 1.EoODphJ9URLyܣƶ-M/ka.qT$ػd!0h QìB}dus&H,K&LS Or>O46†3nE`rlF{;yvLwYhf))9VΑ0ҒЎ)ri=6kK<[uX˼xWqL2t4Bn7G9)H=f9 -^Lz:lgb?J>Zt⭿Sjmh)>D^c!r!:(o?˅0m3>*څZ6rMa s"LW<16Q]%4>`C?=iڔ#;U6zd^B=vNьr ط oH-b\v /gb1}NJ6]8^zw؟ZxUE]Dm7L2CSs#Ά‹c.Xf1iPghE! ]fRhPjJp(m`M I7v&'q"-7]FtATUnOZ -J^Rwx%eL?PbͶP}I>!/8#30W4y4|Pk ÎqWw)y>t1H:lNFެED;yGJm ep:$XuRA3)s L]uƸ=_8<'rG3膪HO6X.}6]DjRpD;wR/=EۍV5fB5+/xF xPZ^^|syv)|f)ZF%K6&[GqLc[H#Zm1?j Ra cc+٪[I̖< IQCXq?\`w*_XD$&xZbi>vc{->')l&4d+iq0_̢ncUG8EY^PKC&iҡZp);7;mivEbe!v@O!~Zz=oWX}3Y.s186ERE64lyB {2SoT! HMK044T1(ڊ@pJ|HWtGE5,QU<;"JU ?bGIRrV¥ Zk_(*HpiyV&ktc58!2\f3@ctƶ>&Z03˼Z娿; (a/<5MJIЩx?ضbAYYTpIB`#YFv_spHhi"J"M2wA#bL9pdC hMG엵[+&9 NL #IBҕ]}#AbEBAN‰sF/`)7{~ُ|/JDT"}:\=T*OF!ME4]$3s0[4uDtN^|DZB/! WǠ62HG  k[0&VNAL)qVQ6!s_cTc7ݔVO('ka[]O19-4M"&%?uoZ_ .Rʋu챛 ȒrrTfu6o A ctLk;C|},^o\?puof$1iǎeyĖ Szbpu9 DsLR5 Hz#b vc#L=VJL|j(uqI>I㈋Oڟ,3;p9{0ky"T DoDv[Sjt{cOSj;9g'Ki~)jT< .ySC#TTo<Kw!db ZylQ*>Gk7wYScKLU@.w= 9{qB/B.0P2mgqȾ4զ_jKRvT>jb.)a sGLf_a.;'tW,F:D뙲ܱ 0z׀m7l3]λ:0In:0?#v{,5t-  =lr[3>P ^`Rt?_Ej>_~ &񁀁ijGC4-=7!S܋ ).kJ)k̓1dT Rp QmpP N d Ox< {sP(Fli^*»:Zz%QD'oݰM.Y~K IZu߲\L#(9g с GPxjZm+<cȘGg8 FMsod*?N!Zy[O2^SMOML$ݦo4ga&{e@0}"jyډBǣ'M΅|EEc;HFئ 7^H稟7w#%wjS\3{[dPcZ0j=X*A ǖII.H8%B~_y_%l7+Q,%A:tuhOĬwTޟ_4v|1t 팍@s#̱}=GuU9';Nkjِtf7U"@}eNV_QZ*yp]=<2v^x< <xMo/F?2!8<} 㿹?nR/753I3  {bo{> mku(]:Ht2u&4#q>ՏF2Ҝ>1EF*{ezQ4GgAV+/ E;bp<2[V(5 l5.Rɥ AvIh.ӊ'5 W*(=(yL]*?\<:doQ^2pvh(G\#`V~;`^8Ӧv`뫸h(hcϐ&zFՍeL~;j5w: ۩8o5ͷaҦ&=C_~u=gȏhV6'r֧cxgOb7RxA9?jRj<$9a:dË4+!EP{%09Ť|DpnJ !N yhb/:"_$wtv/<{c %T 9ٻ輍|6&aatiH+fr9 [z \8 |9'IS$8]7p`To 32hn 8'!#CB;ʲ68qa/d#]:gMm+um>sWleb#bڝe;jaS-,2mBNLԇ]m_Ms/)3i;k)ʕ^1"!{iv@jFL6۾L?bLhv,bXUʛB&A\֡Q`^xYݭʼ&K}of!~Ti/jp& ȌHcm#x/'rvx6$h"mbw?H 7/@W7My]sZ6nM=JSqMBu+0iZ-knMU[ن#F9!ƳAHURޠMޘV1a{GEhRM'չZl >M|蒳9.d 3fq,so~NKlXv[FO`Ti-جX't:;~x%1G_Q> NN.BqW~c,%h%ȻM!b7W鲆>ngƬ^v9ш M䩜RYifC5(&hk޼YloI)>z\vOgM+WOI",٨b/1ED?IM2WH% JO3K+b]^Lqo_L">-.)x#a&D*Ok0Y[^{fQaa3G奶v"J-;2O_Ydtq)W:%t,0F2YCyG2+ꠣq03lY+wkvGe1\KLwiV G,L_8+vKZFq K׬jEڛ$'J;Kaz>W {9/Oa&3VD -6je.a3hWS7E~ƓM[2 9H6^}gMi}Gi'ovB(wEЧmGe]:h7`cV kbķTcc>zʚwso$66IO,sW>,4<y0fzc TD˳v;$1'1'GFs#UdAjRJatpz@/OI{jhڗ-*7r2Iu)尨M,@}EOr f׀kE9XU)'x练}Df_ H<4_.B>f8}y(r.b%Lw̅Xiz+-B1sdbGsC)D+^s"H"Cd.I{5da1j/ԷMXV$V.jJKq:F%%@ltPǂJH0'>:!5L }3gۏt;0TO]7_$f8y=[ɺbqV~0I$ن7CeEEEd *銶iԒoE "6eG"]tc@4x5ᶀc:琞Viz3rG)vNkc B"R mVIN*Mw 6`3L͏ S, X::58F0ۜ-{DNf,&YcѴ',ɾWUkdimM+O' l2T]LT0QwZ) G/ۉ-\@ir=gg??h; OEω٥,d=T`\:gUz 4O桋:ӟK)(.&Q9|#&js@fq^}<0S@ͩ +* ҀO3K?lk9  62Tp^5,I2N_)Z0)mϾ*&_&AG +ο &a1qW#SX)P2u`6-`c&G>,5A<̽+=l9*L2~_&u8|?flh*kc'XcBHW?dgTKQpc)zAvX|ǪVbVo;*ԝaQE$EBUj/Sf Ahh5rT87owUx5*{Bħud\[y7 c*Om7F,B\jWf7Zznul*/Y)M@h؟!ޫ}+֎x\M++NTB(Ijtpo|[ɘqB#5 Ê$ mTYfinbsB2ְŕTTf~ h"^=CF 'fFF/0wcLAHq`a0;PBZpMVj0n īɮbzV>QPуgmEVq$ Ve A8c>K EU|iȀ%%.:;CcH!c`c9O8LjQ`<,|]-N*]w@AK`xo_rnz5i`wȧgd ?E0>Q:c9ٙV ExyL32R)HI)Z՟b"[G1 m$fCTA|aVw)˖ i~J?RAlu~u#v ŻA I:$RLXż!ht&Zt˃ #fcH amV!Ww8+L%NW2LʬkwW+ė9]{ &UHVDMBj|Z&J@ nsIj sYRh8Dr%*Uo|ݜYK0[a|@jI>|QO'Nd'J{"rԕLʬ//@#q^|FR!aM-3Ah#vO#2pH(M%tYտlλPѨK_SO*oi$ R(nhypgyG:.#! oAL 7 e*TKW`."ܹ֡ jy YSZS5kTLdjF7}*rylu+>o"~%{ ƥL+Hyng[g=I;q9"{t1*")Z}#bf5/ ɨ'Q3r8}{drۻ]G4 *DH'3V?HRۆ=iO<7*"'sL |[%D@ݍPlqy[$!Gf~7svU-q.V&ڿ:: P D-u X`]}=zueWӼcIl:kKH˼Ce4 Uu:vzy%P]YE <@=<[b'м_DDuAW2,WQ1~z)QCM+U.;7聕FgBA~U9,0Ѵ5T%ER=ƌCHMr Nا|+~DA}Sz}@ wDc8s.+iNmDTm:Cmfbw}fw Lgg \ 9_򮁯Ur6%EltU> b뱆 rbigM+PClQI4}}CqЄۮdz`p?,H $A'{MAץf V=O0 jeW1 6`;L~o桄]Cb2݋yp]+]a )3TLDTu( 5fl&RLuIҔsa^ +~ZÃR?n,P.!T yqe*pNd-5hF H=> ^v(oWUVL~௽)NbAL%ScG*wyaPex Qla+9q h-!p@ YrFO}(֕ɺ;e>e:p4 㸲]Ktgp"iSQx/-L|qv]{eʕA+V0nAX e ,>KqMGvmC!KYe7NpDv$.j0! U3S3jӅS zد8W.=>`<)zk3K٩k֞,2mz!@;}93^y<@2ι* 'ΎPMFq`bRc ϗTdžfCH!# BNZyI.DIR2x8{ ?1y(.*79_LԿuw#V!7"l(zn z[;p5dǐ,߷Aݴ 1S9iqT9+(V~04J4p)D5=rmߛgʂO۹`qTyhW~ 2ddKi6a'6RL!-E|STjD'r1>Hd$a5Je [u0>c5px'ҍ8q|o7sj»_V0Ť/2RIxHţnVSvuZ(f#'_P˥5:H)/\gSn1+ qj -$~vffvjbۍ'[vx(/NYOZ L9O 6m@h7I5z 0ĹӖ^SQꜸcAEǹ?*e ,LEVȆCsS5iuv~Z^d4S9 74Y!NeK-Y& eX锈Ē=6uK@fΕ\KxP ` i2d{r-myWB8V>=Ϗ+"='eTrQr l TQS8ZJ '˗E!vrh H j2Cq{(7뮈@-rEiCX E=:hr8arY=D"g+d|+.h_t&M%X5$7]V) \UEEXqoxdfQ`K[YNءvtO-owc*#xhn`Yh\"r.[ Vs'rmgDSR.+^6a;Wr[jq3g[ RH\ϷE9dRykεTTN,\ a @ v㷨g tV5.FFxEm}6{hHWؕ) nOKwwxo4*"XwhG4T@\=O7?A} j.d-7M4MX=cb82nJM| Io.{sž)&d哄*.i s T(C7\K Oukșϯc)EB`hH.; S\SI:SxLDbG$NT!LD!Mv.v]N@ǺlrԀywˡl~7iw]"Rg>Y wo8HOĞW ^w8[0J>73=7~5{{@y%f.f0RPz1E-T0eM9hQb.pv:eT{8j:~?^t :]I:0fR.Ӓz)C/7CDXyMy>V;8v[9\=5Iu*Lr:_  q8tx=,}x@g c.  {9aF'zΎ^v#.E$rK}e,ϙ8W)NB)&a, `;]'M>'%EZ2H:N :N6Mo0*+sNh}_Ό:DzJG#P֢;۞S"ok\qZN\&NJ/:bdPIqy*TR5s7d3K$̐Gh2K}4m?,A$mkҕ M!$Нӌ a֤Yּ=R_ TLhPƌz–KԓVtb$+M(6P-8&])L*Yk'MRkOdrA5;dv߮tf$ѭ瞀o0- y-9M ,F04u*ôIu1\,%, (0bbN /QE P#WY|~PE>?mc`\ƺ珼4+̬X "}7b`&djAG럨A*m&g4>,Uܴ穯@ȷ-_ݡ6U*oFʋ;(g;,axW<- 8c GcVڱ֓uǚ71h}'2juQ4HANE?Eƺai;Rמyy81z.Ì-Wz.&!W%F&%> 2BSa׀u9p_5_z*H{: ;-z%D54^CsIܖǤ[ "\oŧ֊z-7gݗa?q; b|˫ V:G1=#T6|y{!@s]Q]ߤ5)p dt9quh֎@Sv-:˥ Z$|3M,ePڦ4 Yt(羀K8c| !k{e"1l1}nӭҏ B*lI4T‰|%F35ԡvKPdߛx_Z\ޓD.;J MkX.G4E&0>.c[RbţbaM6A:"9CQ+K,,>++з+pmNڡjF`W}h‹b=1PӇ(jv/Ux_.(U:J55/f$rFbF0pg:_Z}S~~1;;rE(3kBZPa^[ٺPjW>[^W$h$~{ޞZSkMQ!&0f=e|:ϲeVU k4OkQgɸF?sVxNؒۈĢdeKbAPn>񗗧Ab$bK<޸u:?G=oznLY#OܓJ>(;?`jœh4.4dղ(S9dG$ U"lyDT;BiQj-':qp p_t̴ _֯[&ZS"iqX|qqn1z$QGk(NUsx޽i8 Rf0)KV{ܔFVQ'ݜᨣD l*]ƁfbS ިi#!2wl:L+f-^~0gP/S+ xoo;ND`BS - $F,9GD&ߟ1fL]AIR^< âgP"K9;xns_4lr `L"OƤ8̕Y2Ǎ)nxPMՅ+0$lWk?1?yIzv=メQ확x*pdِ>sJ:!&fǻQF0lat7**}7םZYS lURGޚB@D lYsJ $e\:@WH=k,g(B\F]"ݤLtSΗQ1jʊQn&8(0"B,G/*i-H%p6-/,qw{2P0Ivߺ)3{V&J"jj5J}uhy g0ңNb=a5S_ϼ%1Adg$n) gZvcCRBf.IzmٳM8h󓬵=ZJDh08K✓,- *."j>0l`"2 $`# Jk+s- I #}S)fwuNO2:FH߾SHrpjĶߟs>עΦCqd/ 櫛{&e5֧#0t]*(Y24zIly E'q>?*b]-J Z]kJz\X:<프R L6CI /nP{8%_P:eL]Za,`bB?EJh>T8XY]<)қr 8L3q4|Cf $qŧ)/^/$)88X~FFݼ 'yB^鐽6i]i/uj%lm.NEȟK ک ) QR{'4P\H$ k&e# IeZnʤy:[gܡDc?t hiNCd]VnPx7攠ǷjW#&@+'7 !G* 0v?GK1iA*j)Xmn,b 4,7,1+r^]"Mw4[ǟVoW2%=z헖)޲A:8l;IVNU+T7٫cq ~^eLI'?3' [ 8$wR\|GS|Ks"Q$Ƒ߯&񼗮4]F>=Q;Ow )Y s!F,q[tӒ}>J`x(;:5!bڦ,AP k !۹PAj7I*7 >Dڱ 0,VLIT/Pz0[9- MXBm4b 5ajtԁCD篿5jOa.,7|De@ІtN%JM_ 7FJ16n?.:堹,E<2uE3QrG/U7CE~>C5V*&!_oik ԧdfwaf 6hcxӵ盠6z@@|"5@.V6'J4QH(@s!S4݅\! ~4 =ጱk+|BAË+!gBnS6Dbj"GkU܃b_ Qdf `D*DTdK)ˉ6v;9,sX,RРniJ%8g\lwL|=?`/~LjɌ^!}T0M:=;[nPssQhZAfꗕJqpF8Z%˲%}V:>0qA=yR:hؔkNbX9Ejg +!ۓzY|r4RK82SX[{Nb[b 4jqN5DZD:B:n׹֭V=zrgkQ*Qn&r(ܩ9鲔ύog!-+\s^)vYwdvx(.9P;qTOBHr?n4R$Ari. e1`qyɕc+5 *OtyIBjUP@vIWVL9S .CdT5hS)?REE8h2_ 1P5ڕ Ƌ*kf[+ dx<4Q,KU5tL//ZVA#RS@"ղ*Պ?zC:nEk062gO(,@mٖ8ӂcnBZA僯N2 ua,+(G |;X.N ܰF﹯*aa5쨟 J۫}G:e/)<>?8Us.3/٥E>Ѯ7e9 7|E"ξGcww5٥iӧxF\L2xaS*wPa47ܗPUWǃGA9` 9lXELVu+Lk1EԲ >J}[YNܭW S(4_%5H(MU"Tl5Ζir񂱋2"©x5 Vv Glu .$]!4ƨO/2VD1Au΃\Cr0A5E?Of'n=eCޢ¬N>]T%fUnN.B*(H[ 'o6`0%2_jw}rWI9MI-!Ln.=[q<EP0XS=mQNZ,'6NEL"eY&,UC;ћAD%@ U;D4E7OXX:娃%r~ĐS ػbĬ8Bsmq>M9([9h@+-2ʋr\@NM-4g GϷ>L_;uhfexJ(+&x@Q1If@" TZ}?y4h(ǀ"ʽlrqQ]> _զB*G;R˘[K`Z-2NUmϙʰz¿I^~NܡKR Hݜ@F/XYVXs(۫ڭL+͑ +8*}Ϥuƕzet;7,.SmuiR j;Zyi~66n3_ m;-j.cZ w+HWD,KIL1y0^"?rdmD@ch %fa}=rHjdoT[ߍ'rt2;]阘Kbj(SbhJd s'Z1pS?ZW'ၕlKQ!*|AY)hSnpLntHa9; Xꒊ Om'bt2Ngg/4Tމg{c{fđ@uIuhArW`DM(tazAwʝ)~g5< ^e޷ +k8N^ f+Cqpgt eKna?(sӠeڐqRl1̪lvhx@[sYiE,N^l=.>LH )T`pRȦGd0veٱ{ Djգs6x҆U yOZw:,6{0J6OِWl)Eg7S?_\4P}(br`@Y"ю+6iNNC[Dk 0Y+2mfGˉcP͹|!;5`'y7ïYYESX}ákɖ'*U39|]٘'?~UV*"( Bz-̢(TbS*% 8}. bcyf8wplxoOVJG\%щZJ?m%촬rgՉbnLtӤmH'#@^*OQqVRPJFԌ@>[kCa ]OⳛTcӏC$#9izZ5ݛ򧖈eZ`wnx \w&ݫSfE*g,wG o`O3lOBJ7Tj9 :A_On P+XECpJ A Q{M߃B#nhCv}]S2`g;*{?dZ磥-(wPXwk5ףjY#WΪ$ e)Tu${W fGr$SOEs]W0ejfe0ӒYo\qy`TdMYV{x6}Qf-GnCT;Yښ` dRMeҢl3ʺ~sT6txLu?>Fi5 ,{U!A 6ȥ^(,w?QyOp!yewt"nC+=uBvK~ii. HK-Օ j{= YdB4#EvP+^KYh&m!W"FKXd窘2x"6[f'ߧ ҩ>vq~zb0 0PP5h"=Y%rFznkSD^@CĪpXkvTްvӹ>(0o:.!r)b~\ /+ ۽vKW 2 =cT5o% ?^J8͹:|!ߌ3OMl,[R9CNNv,k?E6Irswݽ;Q:,KXKe in%DJMjfXVZBP#>E'qdb ҢLD|̆M Pj?7hU\~yX.LCUJ~Slڷ J/^19dPЯB8ua]7XW\ (W)Dv?Kf?î+)XZyMX?}NFy`W LY!Ii}jt%b°t27o+}CyCy?{w/kc#Nz\> ۮnP2bٵSZL,鿗ٵ]5Xa SQXRa݄PV`T9sܣھ5z;և7B׹ֹ״z v0&Ґ'0c^tc#; 37tiJb@j_= iֹۧҵ ^K~YdT@d KKicm~[ҍ {>Hxk2OYP(1jikT qc3̙BI2g21{U #(|Ch|Oɦ⣜!JnnBK# Ws굝0SZ8{l|yuD5ZcXap3áIY~Zca3Ŋ~F9E̖~}zq)ÈkcE5E=.BM* ze-?wtPX.VB\YwlMV~NtP4H/> ]r"q_=nrGTL1@-Arf[~0 GSS8DQ˪p'*i%Aye.q6XgYne}~)aI;|nc^UCj[ZN )[Nn3@s26\cIzt^4LسʏS XռR7`nBlyKk $#6gdhj_*]PU?Ԓ,?Ϩ&nRˋZR7HeX?xd{ ^ϭbHקwBbj n凃ߎ8`Fx3?FTv~a4ԝr^R==p*l@@' LڽF kI!S?ԷQ3gVں mJ؟uPT7NύCOƤ/q}D5f?ǓRP7&b BI9:LCƸFAKkXvf*}WM'XbWiX]E[`3cciT[ =޵h FeYHg.K_[*Zsr6 밳腝رi'0M;ΰ,k!1;ViV6 HiBPxnV…C6]@8N&˝&S 53$Y&5o MJk D0]1e&W\$ݗD !3g%:7VrcZI}$ˊ"8 citFfh6r@Ȏ3̾<"+r tU ~Bpq?קe_>n9[ҽ޾936Ƣ}cث\aH?AC`N#p(blzϜs#N4rH&kf/.y.tTm? -<F)Xr #ǁv{qFE`Oާi"FlRI4-=<=;q,x![#v~gמ^?>0e6h/2z:o#T2*^ckm ٙ)*>3p]v|:ǁ/hRGm/_&ޑcA40Tת3="Q_kT*M5KVG?:aW~Ogk.n'P8/q^$yvy7O"his;z/>A ]s8U1B5k}CUm__SSӟo*g(oKb-C}VlT(%iH@h-IzQʱ 9@& ?1;y!2?0=$r?Wqh0xb[+IknBPiqsB2rn՟1fmjndX?e^$gۦ?<07ר\l|Qa0 F8"O6MlW?vqJo4YRҴ8TY&=.'EKH)I& ]O t#,{%8qi`.Vc;Q-q=ٵ:_N~Aέ& #AJ—so(Z ]8;rw6+NTg'¦q2&^YnlcJ|=6.ְj ptf LQ wvc tnl_P&0N (y]23NH_M]@ÅhVoRj8HGG,Aʠ8FM43*[fc-Jܮ]81%071n ]i&6'MG<ۖ&2U%aul4{.0OcY]Kx6(wBBf Dv0ɰuh 9vlmlZACng[~π^CYTcB*{B"8=5dC/ Y"'\DVnť/>"~EF-*v6z)BER;Ә)ǟdrpcaCa).5*ZIKi(}A0)$Mi)wދ$Z8w_ :(< Ό<%^X\;]Q -\9E nveۧUq~دYcA X0=iغ[}ߦK@0M>2Nv0m>|XQ nHQl뚢<+6Đ[ 1ح\^Y,i{_Iz3uKp ywnes~J':C]mߑ[cz o͋ >1D$s3ί7<ZT*|Id;"$"v@"R -{<1OPT/W XN?zK}F}d#;}L 7.=DI,&ʝ+Gir8,uS{v'3l#Qi"O'ȋZނY.Ϳ*=nh͍G`kԮLַVܡyHl@%}_IsjkJ,ݹȒ: @EG%'%򼜰*nx=J4k‰&[ 1A@m$&.wא6t# ւ"m5X-O]ָS,2b8=5j;mġ'D1QKQ=,cLg N頙V( {w8p jg(_qr$P{TQ]V56bd ^'}h^e}8őtP ,QًKac([bo Eg^s486%?4 K`"贾U&?Mc7io1RkN 2|rTp5rXz ꪧ yx58-;Et1[!5ol}>~ה?pފvȨ`qx0,>Ek?MJ4!"H. ʹ]]oeSW_nI4tka,5S\;,i~nrH-qݤİ, @Eq/ψ5l_;@HMs{9N_E1/u>WjC3l{uqjӫI~tp7K!LR0N4&`Fx>pH:c&S$$/S &Kg5D b=WIWeBaم0+ [iW{g  /!ɶy;:9׉FN;^&o Ю+itqE}N\֗ ›FXj^ML, {mㄼ+N0hȷI),f;ɬF; 8Y@A: r7gvK_@Kl'Tkncn󾤶}7˓~ē5Cb/7|] nj.g"fOt`SO_72d[ :=KE-G J!)0IgwWb:tpuG\)`5L )Útir`|~w|0A ?KA*M]T'΋ݑDхe&?2pߠ_.SԂI|G. ăeͦgO+$G:{"!'BLQфa~׹+;n~T$LvA;٪h]j2gJ+o F2|IYCo&D\i3!J1ybK^jo-y)ۄb[8Xry&q&cM$B{{=K|xm ٵh!E@TynO%H5%XIt pNڧ A$0n?cQ0~%2ZfF$aW׌d׀"B?bo7ei.uU5D Y*^% m[?}SޚeFlX 3DYt}~#:Y=]ܭKƀ,PQp(t5<bskIAxݫݽ':"&]ƚO5kTЁG.||;Whved>ԟ[w3aOZ ʔCg n1W:]4_V}jDI?D1.LiB-谟/ͿfhܜG FP7ʷ6q;}5I@O9uI!pLoo/$jAW/_lBTZ57G N^ n3hxp20Yj'~8a^[~k#$ ' DJZؕLűjW6H٭ʾ}#B~&ʇ]ԒWefTNշ]I'f\."lԣu c{G{)En;;w^?s8`,j@Q/ *G|;4 UBHtK5Ly,ؠ1^ߝ&<3K)5ϕ|N§,!uh-3{]KCmފC.O#M "\z{xkl@Kj3T*ҬV՞܀/r`ay? j/x‘̲z+6%n;գ?)zqϞ*~f*3Ǿݽ߳ݗ_+|]!9| .JϻF2QSYT/ª,yNR5h]W y] 1U xNMT%'Pe<;%ϟTqkEǽi3m88a_yU=(jhZT_xL&6ݹ6ݧf|^,|2ˢߙބP)ϔ|6׮NI*棍^xyBsrОЄѽBSl$eW~iw _t҂Ƈ=,U/2k;FXiH#ƙ4rf 1I6Gˍ.fiQd)3fP _}%)[~.:j͖y-#F/Բ-*+ۙBS2*؊z*ue/7Ք鬡Ui\' ף)0vbyNvAD}x^A")w}P{4#y^o[v'aE$^ .e侎 pe*nؚ}2 ߇v72&`WpjZq2S!5IJutYsLXM΅ْW?tLo[g w rz `Rԩ *HGqRi8.$ײ及/.$ >{at%!bB@ZL( Gԇ:؝"öE쫙泟CJ+GV옠Bw-$3cܵIDG:S!@F}|-.lXJܚ:Bq8}uwdauU"#hmtm6/&:HKGdH,Q[E`1Gư@[0@>ڻoE{`hB@! /-Q7ًA(gYH*Z4pqRM>u-؉y%"Bq3b2&b3'7JJxR_XY5z;fyp"5ܯ}|T'݃b0\_{bna06L &h|b:ZIEEًvD#uwljF?kT,#ùRI?I=}nbzĖ*`ZLxGPH]- ][$1VL=f&*p5{Rc-$6ǿ'o?Z,TIC$bvKTsܴ>D~A_,rD!Eu-gF$665!ڟٰYEpWذa0T(4MԘbGugS03ְ3ii`i#Ѣ_\= s9>g ^̔%HȮZ*SE9R]rM|6p*XXFFō ħI%kI9q@hoi`s  |,2!9@7Jk?>w7 +jU%ˎ$PS`OZ ՘/?^aՔPrFV1H?38J`3!wRx-Ί:#7:Ɏz@#< /qY$ȭvq3Ck"b R7t!㛊x 5KmLw4S=K}&>窹6ήkے=n-7}xUja.%OhϏ&Ch4RQIJ'om2vkɚ(}*H?=OuX4*^2 eI.g")6@㸉<{=:^7=L|@@[sb1m R%)?MrQV4(!?g&'L|sרC m&XGcꃔ^:8:NpH v0R{7vBuj;wqkmS4R9BwÃ/9bO8Tue"Gӑba=^ F5c9S]١y`Is w2B`50A8ÿCs/ fsWrłMŴ>J,5_4%g{]h9/kMWj2;K AC6~7;NJ q03{>Fh:4utDp{ם*W{+`6S0)@ЦqBc?>.7A ҚrBHX*?3w5F Mb\$Tʬ˃n{emvʵ=B3qF RJxXRa.ӐڹbT*qڱ>Mκ xw-7tz{Z 8ˆb$]_툓oUE;*byɺ/0N֦P:[ c]谈.rFɯQq 5~㓹?pNW?ksc޳nE YX=4%M-`i;޵g,@-?Йy'"gMzm|DPu8( f/x3) Ǫ*zEAJ)$x4@usN}ʙՍن78Y$zyȫRPN˖ʠgmв:@^K5ôI~|&^-832ٱ?;h0 S]vnʘ5eGngAQQxBWPrcz` `!SAqME|851p7uW|I1d9F Hލo㰪(VIɦTq{R:&upeBa;*",%xpv5w3_]_5}k17(be 8L 0f[ Dcd4 ȫƙV$tJT19% `B.DFHqϦrU7pPE`Yw/%80u> e?9w"?&ѪLNGocEt5^cX])䯥 e|#ֹUcOX8:;SWK}"k\~͏BmB6ӝĬH\C&b{7&Xm.7mQ>&PHƞ!Jk%R]X3NO+û'CP pmqZ4&}<P厀?Գ*AWJ? 'ыŞij~%m}O}\: LPK/Ҥrr,8q<2Fl  /_F ۽Ë1NYP`TXR;O̚1Xt${TyTKjӒ9򨾚?)ϬfN7JS$D;[Өc151QҀ-ZXfRG/@,Βh OTU~i"k﯐ff!s8O,." Yv}MQXoo ]~/'}W?`gT5.Il]~IX^]㒑'g?V߯ȆyU]uX;)&YqBMS_sy. 3d\{f9)}0u:y;~.zmz^9lXbJ aհMvJn}%q1ׄ(/E|{TPc~2eK|@ KaBVxsL3/!yn3Ņ梅:桁2?O#:V`N}VS*0% '@q/U8ja"^Տz,³_XezHKa{t1+E83l E{eRXPsL(a 8|٤X&*&Zd~0] ~Ƽ։:r5D5@ ,mU$U{pRn~3R7 m*X2>w4zxzD%ʋ± hOp#'j6OSĆ|CII.V1?qJb6.ᆌi2ohQ^T%,6шa eKu5bDi>VH*W@nT724?kM|83NJzQ]1lX}`\ZB*T>i4gNuJT,eIӃwxٝR8Zw¿~ZOW+*ij"ies}V/_/OGoω.'SDVmp$.V})@vlYR:(2i#ېg%h~ ASr2TJML%DӕɑL蝋H2 mL?c>?c9=e# X\x.IιKަ4l>ּ$# ):~5EJ}NշOu#ϾπVWysvzA/$"ڀDDnaIbiNDPGRF#Hu7Bz#c|)67̧ywN +i8j²X$qVxz1[&Ni,2xWdyp.PY_;J(J4w=9!x2[i;(كWI ["ʇ,Lj0> UM%-9z2bI;7XՄIa,n} 4)nqJؤ5*&V5|>70@D}m%{v.mp>1.nV `$j_Gl䉢 -{b 5#02vjS1Fk 1P>ZR6f,ik(+'f! @eחA O2Tmlq @g>o]c!!x֨=u3T(BOHDBVB98+L JLYl\DȨ ?F+g#!,I)Z% F &GDEY砫XgKri,z_Z2@i Kfiab"QCoyY, 3< %ɩ)Ѷ @@Bc%%{RۙT0Q< @ggYyY, ɍbS,MHpU~H_+&+ .K7cӬBӑ^PwNʃ..&rOM[ bh;b,N,ڨ+Unߦ_'GbfAR[џɸ&vwmwq3|sR ܸݪLH&iK$8qny?*B{nyq]Bi(6Y뼠yFƔy]dCaZz|-޾ I BNŗ@HǗ@o w=&Raƞ]4 . ?pX p, ,@){f|YXi?o"J :" ^:#aH OGtFbgaɲccc\#,Tnuޫ*݂B%y?|dѴX_/9v!*|!5 $#%_nO0(:/%u?)ɳ~ZaeHfܲfa8`?Xn /*v\018b:RkN-;NU ̑<ϋ16!z]CbOIzj-wdi%Zy'?q_ڗjv!mь~_fV" ib ڮe*ttq^>EC-6gwEQYđt}TU f&Nf'/T/G0]>K\ LMհoy?RwYF%Qa) W٫X;möU4W*[2/+?#׽-O5v2WMR``T>lOR#J: y?^Ԅ)0b%dشFVk], LOўW jftZ\4H? 9Cۉ,{S ӛ16Vo;trDPP ZPfY;:apN{(DǂcjnՏm [O֜#OY'9e y,rD{a?0ugG#H@zoʱ+Qq5 lUS.*g{8l$ӸLk~t9pXu%?%an$Dړ F9<5Xr18K9c>dyj\U/L'~X?u)?f$qU' _R3T1(<c?HWn:}@U[/lrjqڞ 06LhS8HHˬiw?О<Čjoszŵ.;A,vhQm)OvjS:ΖZZT~uřRlReP%vˉk?&г U!wխB ޔ?FXJB^ `# $eW{hzm=M Gܴ1A+NI榵,~0>6X.sn5Gn;%AP3>f~|O샼>@JF\a¶-_nؑ*OM^b-H@.G[P+DڬTTqW2MA9ZqNMӰH~Ycģt^/Vr:t'*c2xR( 4)=^IݐL`qMR-SH΄Df*!@..p0P6^ӦxhS"d.\ &W=KEAᗢkN#)8mhiMaXDGF|Vu玌@eSGV$/$T1Uau%ѠcťedA L$Κ7c#AEvӼ^@]Cb)S2"~&/6X|k)E%2, ߄!OVa>ps& -?W3ۢ~_T/~xU2e''i/ՁXPpcRP{i?D"7xo5{O4Nɛ;:18yQGEW#+ޯhToG go{)JN˵{L62RjVژR#:@$Ha@p{i5a @QaEF5MPaWw<48V-m+F{c`/K@8'9MKdW),X'FL<14c)6hع9V4&*I9)LWwY27_F.%Ld8p0aæJj#C|͟N"It Vdl+qL;̉!W[Rۛh~_=(&"SϿ|P4 g|$߼imJ Yyd yGmFf yCZPfW8•:ݧ-X>FW{)8\F Gw$02$VJ{Ήgd8YFFonX1^A7AqX7 pu"6pJ7v -LP6FeDd{x &N`$q.qh .KwIh aW̒t|mZ1qQzܭN+UT x[jX̲U@FcePqONS[x4Ykq8Jaf)?+EJv ks`dm$ HMfpy?9NVMNhT?ߺ`p\d|&Q+puƟg!xXP/)T:AU$ˇ a-tܜkw8 j`g+hDp7= &n!qibk}_wQ1BP䭹-ڳ N'r//P eUb H`1rvGSZ!mZJկϚCγ * S+?f tny;&㟧ga5]V ,O~hӻ/y=s7|Deb q9䤃{cvKk$k7wb{q{t)#Xk SF3X&+sыj&*3Ӳ0I$ PbiPA|Ѳ[^f>+_'يC9J*3n{,sTV7UC 9BmE_irL2 f#GZ.X/K Tot?j pイ|^Y*?>zX.<< 0ߟ^O "QE.)`QA@kPoD`yEΜmb"ya8ܖ";㷏GOaQӁ7BBZ o݃n_ a?7eenP?h 'b>H3Sw%?}"ǜGs5kIK|֒e\މ"z5:[:6W;r[ƫՖǭ ndi Ok fĢd/ydF4㸖X{`Ak"-.Dq֔HO 1Q\B?il8,P@=pd)GPyqN x$=r}-ߍ3 1H0L܋!L/hpMNY1:I 8%Lh~&(D,g /򷺳< ]3 oZw>ӏ5 jݠޗ\'Riޙ8;ջ]jݴf_EvaJ‰5p V LrqYc= N$`|? ɑ{Z>`g1*..ػ` iL2UY}8+7إ.h1(c:8@^{gIURLt-厒¨0Je C;Z : |q`]EXsPoZ{LGReBjGJ3`LBW+8LsA U"zpNG+"LcDQ Od,/>3rO#mQPřcT(!DbbLKWUgB`ԞAh+uO!P/kh֫$R:g7^DrClݺ5f֬ qMR_I-ZŘ!cBh Td0$' % 2GUD"33rۨCM? 915物ߐl^tZԫ\R/@h]gLY ۸l8#6^FLXzf#wH~M#f? ەJPq`͏NS&QUĆuf.O5L8pq6ƓRq3omuU@BmHrK1OthobYYٗlA)lßnDj}_LaHvKTQWf AQu+> _7P׺:6M{Jr2 ሯ`$xq\Uꊤ#!q~er0Ɔd&NC=+$]"/M^᪠^ѝ6 jФ]8cCr\H]Y@pM},dq<)v 'WlTE[usPCVVi3Ϟ,Х^wz!p˼]pٓ?={ٗ>y}CQM$^y2a ox~O([ nU[tVW8N9]֬r<^\qʈk{w`glLoj[qbǯ;>-H:qN]h!o2z®,AD&\JY'~Q]oH~_(oWqӆsCws6yge^ZTRξp#\-*ǝ{->h*>pc=&XDsI֬|}ߝ}9{|"u-|2tY7-jg KCC\Zx Rv,8QN[_\h< cLcl5#*o3sՄK .6dJeb$&wx|<ߥ\=bKN 5)˺8` m7=iq/XR"EoL%miVyyvͦӔ0Pe2e¸}gq_XgoartR"XnW:I ͜whCnKK)=V "- >OJFpZH~5 Kg9 ؾe2mo8LnmάيsrnklN"OpX̅"Ү<Oy})O=l{ateX;"xarDxpww>٦(UjfZ\!_Yd9QM!*iE$eپ55Ī*ȥjZOM@N Giz;D$f-9ˣquYr}IVv ~I9dG||p#c~ν9qf48Rh@ឱC%BBu4ySya :汒ykZ#/UjϤ8"B94w$/)OߞBL4)[-26ܧ*90flNҧp_M-]Xtl.H5n+W.+TR[I 4"KB#CSJeYM+ 5>P\LiKednX` -mN.ziZuJگ֜Sh4If~E1;ӯÄg>o Š"amul š7}>#^ǧHaSDoeU@UAO@G՜ 'ёϷ]fm=, LᖴJWƋxEGG!d8Ȳ.G yo>)밳ޜ?oceɯ_-dc]?}RvDclxw$?Fhe)G:^|WB>.QWm/ʅ ^~z뵺cZJF6jxo=L9ŭjx{$~WrJ[A|qğR~p3G]IJ;~ 옏ZQy)9h\q4=hئB,4HZUbt[vOoUmJiTgG{r"TK K/^B=qۙ=]`d6 KCn]I+#?ȝ`-j80~{O\^" Ro 'a壻BD붥) I*Af^kWf2Dn&F8ܿɝ;;L&o1c[ոֶś[ -DZ e77NSnۻн)t6c9퇔+y> S"+p/u0^<-m ZeÈ4\n@82R ͣ=!A⨙ 2ZNX\trzx UiGr.T)'iI->Ve8K Lq->׶V\;"3@hQzhLfo ̭["}nF^)װ/n-b$%3^KyȟӱكEC^b!#3r',~ˊԙfe+mgU^ pbĻq"x$;0W s pJtEȝ,^+ YZ|5Hv_f;lpߠK_ng8HTC Qz;(S2d\Z|X :*]30#PU$l4F4@#()^o+% dm%µ2}^)NZ`ɡmV!y0   #fl9<x^S3DtphUѤE%RWVL ,A_l&q  ?О-R d/d j+}M)jAZȥ9]ޏZȕYN}1;Eǒp^>hX*}q*l{Y/w@4;% tEloI/AK|A%qe^f޹{p?^4KԙkCдTƬa=A]+wF; tE|#un 0^.Tl l 7듭CZK;ekt|ٚJhrgOAN ^3 ˯=9=R|o{#U|6}HPaQO%KUD심DNq7)gc-s]Q@[ΠtJ1a7'3z=Ő#rR;Z 4)Ύ׭Xў_|LP᎙ ma**N(SSvˌH73` Jrҵ7ӊRԈ1tsN"GSF4<3ixȹDrN ? [)( l<N 矄࠼GJX &j1' HѢA~$,X2{]Hq0 H10'q>~wAkN^ʎm!5a&!$Br͙ݒVW3\3 W`6U*p/ˆ87FSWM[ F66q8#W`P:p>JݹKH>~z%-^;JR۪U| G*UMEzŶL3A&aG5p,,,nhA i 5{iu2N6cWU}s M[pf qvlOI!WRoFY/n&R }To+ah[k?crZK}S}iݪ@@iv$A:aqta2@gERۈ{䨏ˋ+g=xQVe) HnR!eD+<~_lOrt {2ZssLoGbAny{$\v 5*cfEEXV-p p"D5Mi$˫+3#]^ײknܻsa peqcU]6 "|#*oİk+Z`x/d\Z{q%P .!dQ`B8 OxS"rue5V'Gw||쎟al<-_$OK ^mZ4I xa:@=0&)aE"HLFyLJߌ T6ɲ Oƙb܍HU?<g$7|jI5+p&! ٙ8Q crbCJv^/M?!% qV\B&G('{iԌSJwkf;|VA{kvԯc|KG RCCWQ+9~}v$LX]TF͋aEt@3.Xa#Ys+:xڅ!-Ơ@f"UT[)H&rI%v-@XZ&tF.G'vNTL[0h(ӗ<`מC7M2˱7zZ!%i 6nN/-vÝ,-yOR"15q"ȥ>=9NO,'JKt I>TJ<-g32FXWs @(4Zqғtbρbpn4ЎgT:.Od(P =K^ Epo'[s.i[q'#%Яn)ί~t[\z1k &D1qֻT_u$!{Ȭj9LY$f>Ad:֣To Z/bF-T-2@× &Fe,C.' Ų1kFE7+uяA)Y"zDږ(ѽh&&lSN6Z)VcAxh@C^.6 z/ Z ?tCnr) ꘌ~ת? ?/zqݖ|Ntr$^;Ûג5Wr«%9EI[f̀̃AV_9[ϧKH!`'Ҿɂ44PmH.Ӂ{)6=QpQ髚d h¼2SJE3į샕kiyydX:/{VfSl DSmtj8HO琁emd \t+I a&Rps +C2e+])@b{&Pѫ xv}d _R|Ħ{fvB9iRRq ,Aj]2eÀƚ"ռ<'.] dSa9#HOEt#ԅz,;AiF!DY6!$X7ZDۼCnnA24zl IY1@̐r("|]b co&LG7>)%4lM) "9qHU4^ b>IS˰/^vg/j3szcezOy ZZ?ShJM]$nٚճu$'i|gE؄$[Ao]MVCtmPbq0qz) N~1F^x$83,ֶ@'ƀ&o1 qyg2).:7b6ܠH` v c;g飻;cMyODu#Ӥ+KЇbyJ<^Pa@,X걓r&9&Yr@Vڬ{;{䢴"\<@\>g+* Mϓ"vX?DmN(ӕ7n+գYɽ@Qd4˷Yv8#oe7[UϓLzU{'K$T~zihkN+tN0Ǫ/A֐  *w[>FB CwU7v֖]ovD/$-sѶc¸g_^_~u Y۸riyxٺGp-'îi Be;|V>UU_F `̱XB?.zqCVvZQs94*kcl1ex(G|bgCք1բQ%PK~2 i 6TdA!›#E+ʋpqT j`0ZxN`A_ƾ[鈐t|~P2$ðw?4[ :lwcH->&j/D|!{~;jzj=:ܜEzDz۝Iv:!{ӄ葢 KpO%8-x%V忨rjY AqbQ nĚ8>Ds3rh)[@ɀjx8zH9["t)][(]Ũ5Wuq5KTd)\9uʙbD In[6W/9$It .5KW:X9TSVDRR3Ҧ=ƮIJMhf+S;[h("~-B|BSfz.=r=@fs;[Mv[!6%Vھn1B'"Fˁ-WbQZN*o_ uw\]v@EbzDsa$1Y~Qzf,92Ua *js8+pMȤ`sx1aՈ,D\%y=Fn#hU|DU,"x!_jiaѦ4yDRjpadP`Zκir֨L$DFI2<2[>pUˋER0S 3EÒNJݲa9 O;i.q,,  bM^L%<\n y ٔ~|% |gznHG.|]3)YӒ])uyy-6ptr D Sf~¥zjB ΦC#3c't$}/r# VJ;LȀ0 @P֊Kj˅HWC̷R`T x'Vs6cWV;z:}ߐ~s֢$\#q' 9bgJOeGT@>ˁIK 0/=6ldջAkmYJS3M\5ƞ8 +䥏]GrUݟzɓHQyzVLs c7ݬ0!c 0RRgPd ;c.J팈7OGY8n1*ތ˪x$xwA;yƝ̈́WyQ ,Aa0m&ob2 Jp_–(x/MV]ʥoj3%|Gwpy楧E 9)aDydNˆ /5ʍJ& ؀ů O۶` 3(ʁA'@ΚpQ҄v_׷XEby YEM9֓  "RA*i]Ai/QB^*O+4 yo>{ga‡+^EgH >QqSB z&P+ 3hK!hԄaC8-^,(-H}V,M8HvTq4"\iOqulxWWq5[ӓٍC|lm/ЯT.!b-\KCc֑ <ϩq GuR~ި)`RNCm;/تg윋6"M]m1(P0ʶ.%eZEv%`mjBozNDN̼Mn 0&+ialÉDZXj 9jz;G鴖|+ -op$tO$^յtNlX4"،KUU%(1 d[gNXL+ur-fVY9u7rZQ񤙔#gzxPvMF6f81v S%-j|꧷ -x6 ҃~ AV&G:s DmпtZi672ZdDvȡ.9<6~rL~oF'w6)pK('@xIh C|B\yCDQA]j9(I}Qo?+J _ƪѠa6$DF_ 0ǔJ'#Ol_ 0e:VK֜r'B'uEvfeU>u]!CӤzXnl],[;UyJr˂7V"ⒻJC4OH&[C1`9t#2w:_mLzocDK^Ov-D4PtFo5̽Y8e%P6lӖցBU>ȊYܯWU2&w|Űv@?~OEJFNbLZ]ǴhiMp%JF@(T =r!֎[Dx!RoL•g8HdzQp#ؓL靵P=娜F.5#BjYxu9$)u?8\U,SpҒ1#z4[1!R1yA?M UO=.:~ QC'o:yZ Vf[P2$˼+QCIVNfl/~ʐH5 ڿ(dqhDsMχ9}rV_jm0>9;Lblng4;Liڦb{VEQixd!U#wEr<Ȩ0(v1t%-+,}}`ڜ_UAl=)co\]$ EN_j^7uM8DJDՂy1Y+/ңtY}=2 hf:f?}!-U.AN85pyW 8 >Ѱ)3Sz[c"?tT=Mu]508Z7|ЇŔdKxy~(P\snQÝ~,'?ld9}XYոCV8}l\$nB5O馏E#L'FkNQ (Z}ՏRœ&'RoLO6%-`.W%A~'!jpuΚ~j!_wb*'!dP޴OI֔( mfl~aG!SB \ G~ A$78 -+ }ƀuGʖE4*S.{%4;%;bȂ.uBhՍVp!̌,1ldy5;-O ˸p'Ae,8۞EұP 0;A;vv" BYmx}mOI^S@JJVٲumm_0/Ap*}WaSFE0*tvGle|^ߜ3P8mڄȅ'p7"fN݁jLw6g~*Is;{&/igSd0$l;m 4$ /ӢE姾6=Z֣e6uwG۠;}TέUTB,]ecZٌQU -JpaZ`8|$4<=#R8z]FY18.bI+F+NJ/1""k#i.&֜4_etD$~CR#z,Eyk؆=K*SQ<\ݱۢ85VDc( a=>,OϺBəWu/|G/?'ߩ>z$3(޹4}tux;7{Ru9ѝ!&6a}#vq9ASA.}{)2DOUTH) BRUQ2Ri$3?&IOܚL={DruquQJXҮjɢjKձMiͺF-7%Z#x`D5Azfea$hejdmZJ҂yڛ٫HZYN w@ή("CE~0JgAyWBHaE׺tUB9mWo<X*Dt$ߴff<B%^4bH]vj#RƎڂIBXv瀘o|UK;o^=6bLr K߇MV~WhS[2~͊\}/·u6>?w..6(%#m,^cp8|-JKZ׍2rL T\Jֺ[䲛3Dr{F`gX'NxC$XP0R2o3Ϗ6`fkqY.!C.2 `MfHz0<0ZUMf5?)S {3M)]ՠ2i* 4,8rg'l3by"+}q?#pU.[X= TM t]ZU @Ti/u8v9\.!xSZ)zZcF>l+]*SC㉫4hK3=@WFغŒZ*%.7>dߏ<(82D!& NX u'(\fE)B Hwa+c=.= Ǽ"Rl6*B rm?_gק_v?f&a<KC& 1yZfu65 e"LB=A!^Idd9gOlt?{k͢ѫgN!=9'~9N0\-aw,rjp8jķ㏼9 UѬ5+:ϛMw>ڳ)zjCo*McY՗Dn>7װAWdgInHI??юtCyQWH$?QE9o, n.6:Vą({R" oHg e{}AAj?Z=)/w8WybyP8T4f5"͓~=_E px8YFvu4 HP mI+W-[QJ>;Ҷun;MK⏮lL^hSb266wvȎ,"Y]wPP2a׌XS,& ?|?&?Q{>o7B#G«=N>^$Қ ,Dk}JtTDф/<H}?̪+;K J^Y*|HO2q/pj#HRbcDq3S~Z^Z@MNZU,=~Ie-Ҝ^`5ʰ^bJuB13?NQ?ajgG_Ͷ̲hU?= d3N3jȮlf݂4EI@aa׫$n_7%*ؿtw]~/}7dHUa tԗSzӇ)k5{(ϔI#W 'y˖I.])\P(<T1CDN ƨg+#2rqGE"~[Qp}Wˮ1c1]=cWK`i]P;-P\h\N tC&^*]lTcMIlrL;_gAp4iI*WL>-/8Kpv)^)[j$r?*b'h˲?7fߘ|ٙv-NGƑOWD/.#/z~tn}$R59*߇j5{uIq{UUZ!=a!qM%勣#6^q=bʽ*^sx44ռ}{;V;Pۀ+t`ʟSeFApuu> "95yݴn^jٚ;_r|"v`ah 1}=q!YikD5#76 ݨV-H^4'͐4th.Wc'¨ ]=$}n ؑIO͙-{$WBe慊pr9Oʥ5i!O| ,Z)/VQ% }v-+eK?f䲊7 ?jSD>zJ%$$l#iQ8M= nm9^<~.BHqdaV)q1AV&z"z'wlUݧȉZ%J%ƫY)S%G3O,yWO<(?}ٓIQyfQ>GC/ Gt bp@ˋߐ@q?n2oyoywǼH巤(%%HھfM!?pqٰLU ;pȚ7 ^NbĠi[>v(~>EU3EUTWCdGG1r0/#LJ}mh6|YѬ$;Sk`<K+fܛoj*ujq5y㻄Cx3RoC^1dp\$ªћ&x2d):@#yТ W=6gZMMY(fr6|=!I=`=a]/)aX)NMB>Le9H?76lz#P//gA>F?l9ceX/<9Uy(༙G[[t6'Bg9u3߸jYWLyۢij%껥Qs=躋q]o:;]ЦfzSysIS ;5W v7`q5"JSWaZi)(ؑdeAֽ%%H٨LV2md+6{.귑ii ϳˢ=FhT ƿ^+/}F/̱Ђ1D|:S\`LXZ }k5/j]<*⭹5x0!t¥E.5:;MCkJP#s7[rBv9;"&i@ TɁ:vȁ:^@Mqu@kC5-b4 v>#$'JQk9Pi'`:Iy𻫓s?,J߾O߾8ʽW|@W|0~9('Ф= =7gG=sW|JZ[4 C­ efVkXdnn]U6ӊNcԒqWm++# 1}_ɑz> Kz^8I'ARZy0R6zPV@j:n+՜\ UrRְB/)`,E7HrukhN9zcf(}Lb8[_.+# ќ6|J03|Տ^HjHж|%ux힧EQ1_}Cs5 ).& 4ɭӝrq1`i#(_&9^dQ̋{^^Ȩ9Ҡ#V:/4ʀ*E][6Ӫ tuO_*2|0來^ke\8p154R06ă,|r2-o:%JӇG(?ʏʇewO?/%__wO˿ |Zi}|Da߄ysׂyo1ZҼuW+Gx:@ƭ\eN̉c2 QD$ Ib5.7 .{s>?.G߿_<yNO߶H(8g+EV#թ8h%[=Bܡ4ѴQ VJODaE G2jsj*'O{&֥DmBI7A섍7)gU:䌖sUk5l!Vߴ%ױ=Hޗmd@GcpL}bG1-Iқ.$܋ wpD#0z/.^Q0 %dExP9+($ (#XQ>I3rzH*ȅ?zI(:C߶o?'u0$VmOaބAR+;eN#E 726<}A_3{2y($k-W*}Pܰr4_5vK%,rkl:B7'vo{~,4WHOL _Yg|YXIhp*lC7on"=.UUAG,ty2(,n+ƴUY)ChΑlDyzuLp؋3 *%uxDfcũv[̵Ƒ[#:X7sؚnm% 6v"|3# Mo~7Ze"ՙs$0m"YMH wj^Rz]$6xM__WT:cY֕4(&٦[Z-Wۮ_7u꥿z/O'' $A+3 'b+AU&9(`W@]KeԳ*/!+IZuWɩ2q;mi> pSz^cν6LP\}BԎJrP"љr逍E]ID5;:sq@y.ꧦԗkr< BG.x6,$![8+sVXmLg8}U9ǯ嚀))[OOz^~%|Q/8&#;0)\!:$hA3Ҹ%5U/k>Eτ Ϟ}i Dd`=u׭2ȼi3 O=w[0h3Q,՚«kOw?ߛ$w]+"koW܋W{EH$Ɛc- ]̻UfJ 9])*j5Gp')5|]/_V!E =Zf<6VFVs*y@xBAY]`?{lL;?|M?yU`9!DA#`?;DžJ8F|rZW+{۟ wx(+} Mxd7o5>io;sEE^.`~ IlN=~] ҢY?W'd[H-hDi 2*HiW2t۠Wsq]J){$Q仃)@8ˆ =D5mNxe+,%PSĊz "K)G]>W锕sQ)rU"W-rU"W"W ]햚Uō5+Vk HL%)}W WprgB}tJJ2f) ȼhFړ蔧ҩ˭l*QYwFt)'UV'k4Ԙ# ZIE^uq˧jp  zŅTR1C$:P\&'aI*9".:F}!EtT:6 oY>@8TV&&ʔQU|5cTTeQbu򜴌;ſnBydekgg \ )E?Unpr!ίs +1KІѝF=M%g0Rf.g0K5@XZbRM d1X0脕(*[~dxdO~G#V|7^"ܻr̽: R{Öؘ4GL4 A8-%KnWewxʎ}öWEbuO5%AQ "ᴸ4vFA5<"- tA Uj,JWs$@pG􅦒_]Ac}Fg!EFos3ɋMu!5%^D",IӴg Vr=1Q WK9θ(YTS NH0RTX$L9 EfF ]1j-!LجYՀ)m)Q'xF%<ˤN QTDq{u$*238Ii3á|'.n -vD\EN? .M]]c:ŵuIuKn;ndbo̼Y 2o4ƃ"ue-H^7LH_DZ6i8"=3(M*LA@%N(4&JvNmG>θ[IQr鈪%s o8 P34pus6+fe0n 7_rXRR- ^7gD`~+*Adqu%ڋwb\73Ifa6VHJ)0H&Mhc1bmRTcKeotu2-npSc7NPy*e~,gUҫkF#OfbGBhwj^wp,N*r:YVPFqĵݛJgq/ [Q D5C\L+J@^t:cLϜ ")jffSk@݆攊Z{Xzk3,,H?뫎ҥq=__y{/Խ!N=S4(ZDDؘ7}m5c_ hz‰j07+q_wY}=w30-3l- ZI}n9n1~7.nփ5ZsWM?Gݻ{hB >0@z݆9mтmcv#"{G{9\yp[aʛpEW 6!%] a$yl䙺A<~ o]˽a9Wrcj: G-ߓxHŕMǨVdP;C&ˉUYv."OWC.hX-B)훩nL$v喾tcCFS?Y~jr-aI2gI@]qnrXD| 21$wSo?4b{˝7@hB{38>>vǝQly}q' 7NFz%ֿWgU$plQ\"#O5u PQ4pݙ33kĹl p%8S)|k@I[L0&d0dE=Xq<6S~<}T&w/g4D 4AT%I='^!I~=6'̜|`!?tj9GqEM " f}Xbsܳ*E>^"zհkV$! :FtLty馉}Ǘ(k.I{.Ѭu(ƫ@2y n줳Rg0xC FDH $Mfbhq@%o Bqynj-#I,)smF5Q3|Q ׍f#q3]{:=02\u5urP~nܿMjJrl~s_#poI7Uy \0{hˋMĖ>i-ځFV %(JЛoDV6 J4I C@MD0 KQ %E1*t[jݭX{դA@ F۫p7h'?ɤ:,Zd z78YBulcZթN>+X(v 4Z sȝY9SWuu_#1VIZ(%Ib$nεC_/ut}8~ kǫH!ӗvvQ| wB+IJkwrfaV By8>0  XVZZG|ƪrT1x,PL@h:p0* #uFyl\$qT `XgCŬ\K PnE0P"͉ #_va;eMS,sRp9j#".E"/kR}Kײ@:,,Lu]!A268 z0fsV=,$2Bg'-R&Ŭޒ&),iٖ 34U4#c a uL7v9QC9u]29'҇ޣXӘTKbjnG} H躗 bgɲ'h4`ŷM{cLG`U5&wgěi2_Wĩ*%/cn<\ %NX4̰i i>CZHA*5H~gs˰Ij|kVe8Y=N Bٯ. 7yK6(v>+zv<n&P(`m7kL9MR8RD 6ra PS8y-rDd^]{`> GS2ܭR<ΒXtg\a/D%Ǥ= [ذKBwF-OS^ AC @r, $@&|- $1~ORRPa1f:Uwڌ6;/VdLqФ@\RAˠݓ߭ɏJ_w[@ |V/`:g=-Fx(h2]^J}a35pAi$]8/V-S ae@SuB|Vb%϶%lKo'ǰv.jkԎ~ ÂA20$*(*(*a: !ٶ-Oݻ:훶42VJA\QE@e7Dn /igaiVA&,$I^3Iq$noſk<?i 兏7ʟt hx fi UQ]̖eҿޭfCI!~j66W,bDJ)մ6w-SCpcvڋ5yTm.G 9riaR 8\:' V!EׅP•:g!fcCWBR Ull3Paė5]njK_Fb 2d^cBCw`kDs >.^mxV&"wo5] Z@KIJ\n[yZ4o^uZ=b6 #M'/orQ-{B+-M`bC^Q#Xbv+B ELB2f%)3DGs7# 8b37hRGHK]}X#R'W<1n0&8K5V^T[7\Hʠ2,u.I@W.՗DXg*$)—"Q.e78w T?YdEƬݰq;[˗{^xP(4)wNcˆQcPmKEzS^w*FjDWʼ=H6CJyAP7Fvuzy _B/njH48t$dx׿KL۽>vOyF_}FǪѽy/dXm $HALIfH'aNը6ΜCDOQ<@<pZ r`9!2|T$mJ2{ъ:MJ}: CZ/dUj:hus[(q's|$-LX ,S;> z"A,SȌ]ҒOq{H\]m=*5N?tv8dϬnLN#Mog؇UlcK8yZjRN7S{{p Q{>ۍ'-̊9|q]75~N9kK\T`< ==|UׯK(\`@)ݦ^7ܝHu_&޼ y6l5N8\iie/0ޛh2VXc4'uq>9k|H*c IJ\`?uH{A[o|YL5xj #Vxl.(,xKX.oqW8UW؈5-d̬M@ظkJf܂*Rc3(f*.;XT4נAUY̹kD/ Dy'^ :wj%FH\Йby~ˈJMUu&($.S%f17 c èf07ۦ0v=6D([BKr-ubh)xAD{MIҪԺ"++F>LOd~l0-DST1oY〔wVz_il/4ڞ_%}#_G=P%X$\L`~ۡLnww==g;FWyY1c'gh-1 >%QRb)jM&r `o9X߷ȯYZ%q0X˸9tK6@j! ) 1غX ȥ'tL)T6uD\,bџR7GurH{Op/i5'*hsKSUI4Gfg9FC V5"AdŽU#c6X|bvʖʲ[\72-Vh4.3QXHVyfNx'R%1Q<)-b~DǕBhrȍԹ߂o-2]"[.e4 !Q@kuxYd*n|]m)HWV^5Gb ;3T>^b(>/~M%jbv2k b5: m_5*ƻnR0 Q?=A*2ڗSQuHggHZw};ϒu Uʳ US. P[m!rMyG,K :iXĊeއ21-tnu'*戨 +U檨Q1 =ffLdD RQ 1P5a8O ZNS-v$=[4HلVU `?;++ts[iiqY9%.h( b9 V ǼmذeGR,KAN?Tg_ /ID8͠UAے4 -=i Vu0ӴvIaz62xb]yR^%G`3"Ț?Qa$6sT$Hۀĥp6$Sw@L>*^kͦ ؇WgѾe5#adJt6,9k.p/Kwc'u 5DFcMXS,g`/|qočC%OZGekQz-#Pe:S1hoKvM57XЖz%06m4RtҲ# p ]6o4,xB|L+ׇ"TMh/l:/ȅ=ohN?J?8zCDʿm$}o_~MOi(?GQ[4 LiiE6\i@ho߻O?-ߜ}WmV7UJ*ï1"U##Dw"XENt]m.:p7{P2a~櫬y{?27X}&iT\AЯWAڐŵ9bؓ4q?, ?DA6܅;pP x9V~[HY;}V{ɭ?{kӻ}q;Kb 5yEFahKmௗ]V-o}})Dғ9&7i>+qN' kd0[g-y,A@%iqS8X.:;rښA"qu/ R\.xgl0K=;Q +@dlZcaeISjEGԩi0GRA1y|*sDzOPGk.50[BdKrVj4])gܙF^ػxlfH:BGg ah0z1rMךR5ѰTkA:̫Iyjs˂GH ٦_$VZeX!Ueó^ u/yQ+cOB澨{ -IPڳj2 2: .Xp9EIMuC.$!fhq8F1m0~V1.;#|qВT=" !kR ')‘RM5 ˠ;ZQ,skں T8jվvb UL/uA"ҽ+ zq0J \RO+ላl %EkK՜urC 6uMzGWu(ޙL-ohz#vȈ(d%9/fHp.E~1-IU9XD4D =JD%USkSQ-\NAIKQR=s'sMl\ڿY֬zW/a`٥R1 QS#8oB2_}e?wΤ f>'tDh \gk(;wkή\[}Ӿ\l~tIJh zWH> e28/9oچU dyЏ !+gT,X!xj@O6 kc#~˽}^S't`w,%S;8) q3YQuߩ :@E3%xʩ zŅW#_6}=` uR"H$=*oвȑmifVX}Ӗ'60CJ‡i- ;+:Ӭ4a:֗Y "7G{W"0W(Ø8 A,Ќ`{D۪]Ov5]'E$N~ Ts~Rw~K!5JRMyS{gU`4O>Q4%?Tsqַ}'& ;(7MzGiBFı'Zqmnsoc/t6o\NXj7E DŽMHI3Y0|LA*@yruM"fg} 5;ƎE qID=fR|o& $a{$@`ټc%b&+0[NWG5vHR[X9#K)MRTjе׃b"IS1O}Ha4@:΂8YWXIy-W3x]{Fu(5!4.W agj]GuEգ|EK w7)GJ_<p\wU|?nZua0\ul-fdZL{At\- 7ZK`NgDzR'>ad9_\o#'Z)a I>مEk[.6" li蔫Fcs OP9bMyKsRci/YyqBbƐi-o\syb6|q&5Z(:^hޤ?қ7r+~[7J}׃FFݽݚG XV`pթcZa%\#m8RvOB<{2HiBXg"Ge,2p~JdČidklqu1P+^-zf>} (ZBFq*9ll|eKH]odvQSeN)QJ*X2<(TYgSH>"gZo,ZAt0:bPk)Gkڌ 1Pɵʎ,8B"uyX%|g%ުWwk}I1mRZnqq+48KҺ|Y|nHVB#yw (EU-_Pb*E8<#SArvȠT%E*MBu6Gl:m(ƷijM3է4u)!r0E.W)˻J4}:$22\&/kå:gz;۴Rܕw; -rajq-?>Rt]* 7Cmb6!I ZgaIi/vO27~sȠJm$eY.˺ڒzvFnb [Y0^yjXOہIс  nK纗꭛I$O'EXB/޾q8ʶs?IĐv8FM8{}%%%2nܝΡHV"m׃%Қ|FWX?<ˏcHcw0 %&n>gj6+(NMSD .' N0F`"+T@3zL`(hZL3r3V`:Zc~MRe˰X4dK\|o{WSR[|k3?f,v,;K h*?,ǧg,5ϕ02J')4}GWQV/eK626LI`=ŝԊ%'/r{KqE)gr{:Tεcӑ ~o#v䣳p5wlp]K*z镱C>\}v6{(\e}T_Q%WNgYnOhlb+j ]ΫoQ-l\q1 N}<{%o,m#N`Q^֮P5;9}R _м^| 0D4XTD@P9}*+N%T/;`y5]@[_D]XELY -Bԅ/ (d`#"U6o%k?2/ z`Н@j+H>N[bJzkhҧcdne2 ۆ?ajsА_M%S=>Xge7sd S ezWFk K{m)OFĹMl݈&q"ת f/"Tkeѱ^0pXı$,"D3 SZ^pxd}jI\ޔRd CF7е]G|k|]Sbh^ԋϟ<4Q*FPˉ@뭂 rms3z5hMu.Ez(У]riݏ %ZjmJ?wۆFr^<~z y^= { G1~ٝK+pյ?P㚑=tE!<}AuG iKDwq}.I=*b b㚪Jq9o>k)4_ ~>3j?1cp;&` <ͨGW=2X!"e }=ڜP BߴSmc.q & zfqujm'_'fs0 hntE_aocZ)+qӻ~u).wnҶk wexK{))=}W 5GdOz63_Q!}ų>(a2ݘBsmXՀQyМo` nZpIKFv^m< r o^\F CFUz'rx+/Ga{/Ȃ&<_j=g|t?ÙRfbZ,Qcd6Y6]xc(e/!z+5KFi JM)zݫ^QAܽw?9w޽_\.8x9?8˻e^|EctqSӼMך%1zeo%&2^j PrNf 4{Y1mby}eMxu{&wXNq|<1 <:(wT=L$ߏ}Y _x"&Lr,kήDXE$D)@ ז~`?b5|*FeV.&ZW\)4|WmM/KUh 5LQp!Sa4?BZNu|I$jF(5qDBB)( 퀓ADpXQ rtNB^/OXá[I3c[ph;rcWi}2iKIyba- =)!E"M{gE GH&).miMv'7EAiJ]wY Q"Ba:r)%J][ Gh8=~^Sբ?+TV 5R.Cv:QS& f3%#:ٮ!RN,3=s26c`lۈ|k&;e59L,TiH)GyD)k>ݟufnqa OfݧƘ,yMtLaIPY2e?5͒eЌDZ!2dsU>Ft:`mVicc ؏ 8 $Hg[Z^r F+ZM,^4P %+; _ج >cuHy۪_?эH?i!{I6ע8X)w̻:ތԙ=d<+-uiQ=1-ȏbQ2{שZ\U|ECR)ܞRp JJ yX(.L*,pXOA$ XFe7ujk0\p4rɗС5D X4$E`#+ r\ *5zd)tm<.0"]&`FN'z҉yhiL^%d8v#2zdlgz8?IFu;IE|{Q UIj, um;GGx`eln:DquZ訁huAMQ-OA ~@T]Wyx{+(aC1WqfPd^EZC/w_'%q\| H6Ii͝+.lJuxB C8B㷍i2ɆS {㞸4Nl8yg{3MbI}#m2뼫rQ2hJ1$VL䛅(/4[_ 3s6Z#އ3$VD̢Zc*ex`g .dfrtvk@U^ 2`VzG9(}gJw1,SEHm?.țysF5^ZhS뫺VnA UWdgjW scۊblH=?NӘ: lD͕5Q`I.r 0(XRZ>" fYtAt62 p|*/[m4q%<#k<L1)I G` IH'h!QC>G32k UNj ʋ <xMc=h`%pn%UfPZeW2@d{~ x @.. 1Sdd3'n|'߰dV J us/ "O--ltuqiIh )ugzRB==2K ž"#@K5Zgm\ü @ cq/Tvh?*v[=RyPŊ[dwB=:\_;s?})eakZs!?Hð^kǃZ~8'_-tK{gY۵Vc}RY8vtѣ_ݪ?m{}{܆b MSBF}y)iVߴ 2d"&I(<<t$P4k.2sA#oy=^4R;T+(<JC9 y=4simY  ,L:Znv9B:j3dP fy570֒\8rip,YV8/{@Y8xBylPd?g}ɂǝCs}M>Lṅw줲3hUJRDyrqt0W6uv94>$8']9P߿G3n/&$M$&k +Rcc@m<cg Uh6H$Xrc9#cT@ `f9iM8rV*X$wZK֊W='nؔ Ds .;<@gnb@HcH Yy梯J=!":X=j*}(~Y䜔v&u9^Ĩ^wn[f0cA2h.EU `D'ik CXh{6llV٤Xb i$;Fac)B`%PXP܍ouG: ;pOE~e\i{RY<X&k&w-!$]~^jqIsYN[)sgM]8:>}\Ya(I: B\R*BGpw1JZs7jSt+_>1_N| 0낙>ע CǩB9–{e?r3\oHaKe?WWĜŲȫti&3|FŮ(yS%ik`JAg(fU@e<4]+BzbK_W<0+5#زoFߪng8}0hdܿ++2و; :wKM[r.Oo .1LJc|!D ɽEԻ^@@5ʒ#8KCw4+.eDlW~ch 8"kG$yBYp@)w< $/t|TJJ(fΑ`uB|浲 3olnSc(̡jhqV_Y$庠\*jwuKWޫQAL'Rkn}W` ]_+g(}-i6ఒꟸ=wIV r,UZBg6<1)0Dh|>},E =x Szr\| r;@iԼ@Shzވ;EoZ?֧&:3*%(DS>=䂆q-JjǩzhވP"]iEY3SWLxf'frx`q;0̆Aa}L~Ӿ>.h ʰ*G:NM /8%l&cy$^$dsw{?j$> anm]ShǷE>^`*=ڬ:~I&m AuOO~/hn LeAއxp śV19.ei Lvt#I2>eXKt/.FFCi ٰZ`^'_|BH,!y&Γ{EuWH*mi Gexe[L%vz,<&Ӫ#o}LχīM;nWmwՒ&pW+Ni}-msRj#i*2&Q\n,N'[yB51 4`-dRW!}RT| \CA?+y3Ϙ H Qu9=1A"rNZ񾊓GRHZz=:D8wbV@X|GdjqFԕdM}qX`t+g TLRs͋D`YNfG#,`cfaPp6#4& " r6ݬ[^q薫4NDJN?zL|kIdDewDJN? O^b|?~{~Eu`a;+e5n֐PgUe苫t:ms!¿/ܰl}qݛJ*Xnuq͒M̨G1S7ʄn9k} pɉR5Yn$qE ;1a=t9 ;bN6U&:U9|,*s{׵nڳņeJ] C% G 't gPlaq} CC`g !lws4Kd1<FBIR-5C ,MW?tc'wL@NnC957ÓjY߃2s⼜`#Wp}TI d^PEhObӧ=yܵ &6xnm3-ClmDqҗϟ< S6:wFt͂:nGbhe $̊MrfiSvRBP_؄cB-)+<@MSyXMZU!ڀ:^ei|8tkju";ABB?)bOA#(lBv<Ҍ'!ZMFSr u/$S7bWyjB"8$ߵݟXq? KEN. _$,He} iAdcƪU7VJ^f*2FK \|ݹcd.1Eo1KJIu OJg߃O / )vMd^xj2dZSf})&f4qN82?& p.~ >2As]\,p0;I[z X a˔/ѫL~LIMBFU FtV < `. ñ S:gT_)6_`VmU12C"U8kk@'VBl;}5uET k)=yp} }PzrIɏ^ ȁaȀnA(^Wso5D&p/I?o֙)R9bqd$Dn"<-2*z\buļO *q6|Yp ݉ <8z? D(8m$Qܖ ;OkjpMIF^F=pvIɽ[_1!O^53!&kqcwp[Wv ?_OAAV]nvż1cKC |{䋋xӒ^ZV?x qf2[C{dc>Q_6t3~<Yݒ}<[C1e_l1f%wg{+Ci__\w "/r qͶGز!uS((XK"RXos)}HpsD|d#s IANZW%9yqv$y-ğ3(,CYdN$ |h: <_ZBS039_L(yȓ^+RTg_'kxR/[G^ŒEiɗG J,8^lZJ-@?]uU2ǣUlO`/TO)]SK|x,%] g_B8_{1m}gkWNA+w.N=ann=qR m1F&E@Dvp@|i}hG`4i7o0 >J& -*jj@XvkE9 /w<{,"xiiLA0iVj_gn _#q@ҴmwDqyF~7Mʪ2q?T/SLcB Yk\VwF  U$SDf6`g;,5Y|rmibE?>ƃ?lCD;|FZȴ;ZvclUZcɥ| |E`xBZQ$y -ils}_VCr"儁W tdUyzyF_{'/ VY,֯CoZvu&HGֳۡ)Ţxjd( zKlr}* 򦵮Ianst00i~)E' 'n7bl_N{o;2b&{bET5Xi)?|X>moTƢ Xe(@!PMY8+:& ׭ӢM2C+߈۲%=ʙa-K"4¦Zh E{5`Z[>8!]T܏h.[77XWY*J`_v; ˖HkA_qޑwޠj{oDjwTj\BZI8=r-ҞҢoLI2bH7#!~%5r1K]'˟-LI5akOX*A8w^{;s`-#|3H a-yWgGB<מe;uZ><ɖQIfF49)]VGEZc*bQi=rjOCg$NF}ߟo'&C a5sgFq U+/hŭglMYc^dt𛖥T qOx&*QK#ǽ7onT2!.J) K6i*#0}uL/ƃ(9+/tN%yk/eUzduGk:q($y(H"5iG;3d_6n-[jTW2$β\qjV} w2]2 u;겊i\Nժrz|S.W @~Kڪ28Ѫй*^j6Tf_9Ca4Wҟh8ѷ0I' S.4a'+e%kqRRUe Q.Tpm2fuf:fob@f14Rzn{L*4-jS]Tz@ppU07tU{C*O8W_xV@88l~]MPgm 2 ? zB*v ('&WZeFR%5+#{F},@RIԀCnNƒ('O{nrzJ8LEE#e?)>`gE;DcN ^Wojcx?/'F' %guf HaոU<p V9^Xe~G:?k5K@.=/w=gTxTj<4A@  ~V?0!NSWHmu*3xqVO]ĭpo=ѠF-֓ 0NUER/n0=^rcT #ӎxm %}t Aq(G@4Gsv+4`KPH6[ffd<}7{ sτ7tN7,;DO#TCԞ mis :Gbz0͢+!x KRٓ,#tqazW|hȁ<7:OeL\kjM8 W5̊{<!1spt#I V땡m=xjT>Uo/􂁬hazU|C/Q>~fUx(>'P}NcB)v1MW~h2>{BΝapI>t2 3I Y+l:?zB]}u9ͥ 4kのYJdm}YfC'ӝ-q̰jtλ).΀u}|TݼFoɬбqz /lߑLz%v`7OZLw!U}g bα9[@{ p = K>4D5(XOf7˜wBKT=HX{QhuD~#Đ%g Y8͚#"?yGs>܈,8o!'Fk…-EQU= M9 {M;L[kMKUv bsrkQq 8ZfN`5OjvRT'|L >)K›bMx=[M;0oĹ}ϗG[iv3^HU:6#46Nb:݅V8/i;?d !Dlˏ]ϩϺ#Q}ci$*i%$Q't1 fM@/-Po5B&p U̩3?4ujpT܏v.MsBS&ݕ.W쾫ᪿ#]=~Sv=[;E ע\Eۦ{8k5~pJVk\Qm#L`Cuһ FnDAoN9ut>D_ǥ|~*53cxe$*P#^,!RFo.%v(uz,?Eq)„1 ]N^ ӆ!c=JL \CE[T%Y`nA۸t4i;(T*d!FGWU:e㹢b4JQN^G'©i^'Zϯ X@$Y9Dmf`?"(.ΓE{jT!z~;(-E7_9J+Ϣe9JT>YiY@gQ NLx@U6Zkx{NK}m On98 LpX9 %PE?s ԟuR?An@"b7f&Gǖ:F&+ a>{]OѱGJv)^M7@awS"1D/VCO2x@fȴژeZM *fjKm)P7Q筍IJ5K[6.D,5Ƴi#!ܚbOI G( ^=-8gP\lSCNe>Wҕ0M`A_t"`x{OuBCG)t<-s hFug(`;uB Dtc >&jτc?!{OLf<WA'=3W\}9Ɯ#?yaʪ56g~ ^)dF/T6oWD4tȧ20GPJ{f:dq]5~-ӷF 0oYgk UCSᇃ(k~/) ZWp_=J<Ŵ&tC$b/vٝw#9Iq|(zN?6>Y :1f?F>AM:2ck1KE7c"FGcuM/fBydB9Ht,o:* K[ xG %h8&Ou!ҥEݞ¬ݩ49N1+x-Y,ѳAN&<z #b6]{ 1 pAG[d dɽ۶6}n3ss1 18. L-Of͔?]L9nv>ikN凯 l+`"n  FJh?^_,b и)+.aJԫAUJK?kh؅E<nK=jTSϐZhduW2"ʬw\$Wr?7%^=>oդ +J0*rd3-XeSPYn=9}r.Ĭ[^#0s?G`5cHF1P7gѪQ e-]b95{qi~J- n6b .m~ʱ3W$reG-F C<4_B+zRSq8Z1!d&iOZ,*&ȎR @?VɣKgfPkk7›T, = 6IqwD:B\{@8(UiQyI4(49 ÈtgI +za:6! ui\Èv sU4N"C Jf"ˇ"WG>Ժ-9@9}DIM9&r. B "t!`9.ϖEUf&6ʍ8sOGrbr'kdьdR]ŅqC,Ey%nH?""M{vr2cm@6?!#PH\6