#!/bin/sh ######################################################################### # # Copyright 2002, 2017 Four Js Development Tools Europe Ltd. # All Rights Reserved. # # This product and related documentation is protected by copyright and # distributed under licenses restricting its use, copying, distribution # and decompilation. No part of this product or related documentation # may be reproduced in any form by any means without prior written # authorization of Four Js Development Tools Europe Ltd. and its # licensors, if any. # ######################################################################### # # Four Js Development Tools Europe Ltd # Generated by packagemaker 4.0 # Do not edit by hand. # # # Genero Desktop Client 2.50.36 installation .run file # # If you were trying to download this file through a web browser, and # instead are seeing this, please click your browser's back button, # left click on the link, and select "Save as..." (or do whatever is # appropriate for your web browser to download a file, rather than view # it). # gbl_colorRed="\E[31m" gbl_colorGreen="\E[32m" gbl_colorOrange="\E[33m" unset LSCOLORS unset LS_COLORS unset GREP_COLORS unset GREP_OPTIONS ######################################################################## # ERROR HANDLING ######################################################################## SIGNAL_TRAPPED=15 MAKE_WORKINGDIR_FAILED=100 BINARIES_EXTRACTION_FAILED=101 INTEGRITY_CHECK_FAILED=102 ARCHIVE_DECOMPRESSION_FAILED=103 LICENSE_NOT_AGREED=104 NOT_ENOUGH_SPACE=105 BAD_BZIP_BINARY=106 USER_IS_ROOT=108 NO_FILE_ACCESS_PERMISSION=109 NO_FILE_ACCESS_PERMISSION_INITIAL_WORKINGDIR=110 UMASK_HANDLE_FAILED=111 #-- command-line parsing ARGS_WRONG_OPTION=120 ARGS_WRONG_PARAMETER_TO_OPTION=121 ARGS_MISSING_PARAMETER_TO_OPTION=122 #-- FGL specific error UNKNOWN_DBDRIVER=200 #-- GAS/GWC specific errors IP_ADDRESS_IS_NOT_VALID=300 #======================================================= # Display the error message corresponding to the error #+code #------------------------------------------------------- do_error() { case "$error" in $SIGNAL_TRAPPED) err_msg=" Signal caught, cleaning up. ";; $MAKE_WORKINGDIR_FAILED) err_msg=" Unable to create working directory $WORKINGDIR. Please verify your file access permissions on `dirname $WORKINGDIR`. ";; $BINARIES_EXTRACTION_FAILED) err_msg=" Unable to extract Genero Desktop Client archive and binaries from the installation script. This file may be corrupted, please verify its checksum or try to download it again. ";; $INTEGRITY_CHECK_FAILED) err_msg=" This file seems corrupted. Please verify its checksum or try to download it again. " msg="" [ -n "support 'at' 4js.com" ] && msg=" or contact our support : support 'at' 4js.com" err_msg="$err_msg If problem persist, use --nocheck option to install the package${msg}. ";; $ARCHIVE_DECOMPRESSION_FAILED) err_msg=" A problem occurs during decompression of Genero Desktop Client archive. " [ -n "support 'at' 4js.com" ] && \ err_msg="$err_msg Please contact our support : support 'at' 4js.com. ";; $LICENSE_NOT_AGREED) err_msg=" If you don't agree to the license terms, you won't be able to install this software. ";; $NOT_ENOUGH_SPACE) err_msg=" Not enough space to uncompress files needed by the installation program. There is $availableDiskSpace available and the installation program requires $requiredDiskSpace. Please free some space before installing again. ";; $BAD_BZIP_BINARY) err_msg=" The bzip2 binary included in the package cannot be executed. This typically appears when you attempt to install a package prepared for a different operating system. ";; $USER_IS_ROOT) err_msg=" Installing Genero Desktop Client as root isn't permitted. Please log in as a different user to run this script. ";; $NO_FILE_ACCESS_PERMISSION) err_msg=" You don't have privileges to use or create the installation directory $INSTALLDIR. Please choose another installation directory or contact your system administrator. ";; $NO_FILE_ACCESS_PERMISSION_INITIAL_WORKINGDIR) err_msg=" You don't have privileges to use or create the working directory $TMPDIR. Please choose another working directory or contact your system administrator. ";; $UMASK_HANDLE_FAILED) err_msg=" Unable to handle umask. ";; $UNKNOWN_DBDRIVER) err_msg=" There is an unknown driver in ${INSTALLDIR}/dbdrivers. " [ -n "support 'at' 4js.com" ] && \ err_msg="$err_msg Please contact our support : support 'at' 4js.com. ";; $IP_ADDRESS_IS_NOT_VALID) err_msg=" IP address you have specified isn't a valid IP address. Please enter valid IP address to install Genero Desktop Client. ";; $ARGS_WRONG_OPTION) err_msg=" Unrecognized option '$1'. See usage below. ";; $ARGS_WRONG_PARAMETER_TO_OPTION) err_msg=" Unexpected parameter '$2' to option '$1'. See usage below. ";; $ARGS_MISSING_PARAMETER_TO_OPTION) err_msg=" Missing parameter to option '$1'. See usage below. ";; *) err_msg=" Unknown error ($error). " [ -n "support 'at' 4js.com" ] && \ err_msg="$err_msg Please contact our support : support 'at' 4js.com. ";; esac [ ! -z "$err_msg" ] && echo "$err_msg" } ######################################################################## # FUNCTIONS ######################################################################## #======================================================= # Prompt the user with a question and return Y (yes), #+or N (no), or cancel directly installation process #+according to user answer # Parameter $default added to specify a possible default #+answer to the question # Parameter $message is optional #------------------------------------------------------- ask_yes_no_cancel() { p_question="$1" p_default="$2" [ ! -z "$3" ] && p_message="$3" || p_message= case $p_default in Y)defaultTxt="yes";; N)defaultTxt="no";; C)defaultTxt="cancel";; esac [ ! -z "$p_message" ] && { echo; echo "$p_message"; } while true; do echo $cmd_echo "$p_question ([y]es/[n]o/[c]ancel) [${defaultTxt} is the default] \c" read answer [ -z "$answer" ] && answer=$p_default case "$answer" in [Yy]|[yY][eE][sS]) echo; return 0;; [Nn]|[nN][oO]) return 1;; [cC]|[cC][aA][nN][cC][eE][lL]) exit_install 2;; esac done } #======================================================= # Prompt the user with a question and return Y (yes), #+or N (no) # Parameter $default added to specify a possible default #+answer to the question # Parameter $message is optional #------------------------------------------------------- ask_yes_no() { p_question="$1" p_default="$2" [ ! -z "$3" ] && p_message="$3" || p_message= case $p_default in Y)defaultTxt="yes";; N)defaultTxt="no";; esac [ ! -z "$p_message" ] && { echo; echo "$p_message"; } while true; do echo $cmd_echo "$p_question ([y]es/[n]o) [${defaultTxt} is the default] \c" read answer [ -z "$answer" ] && answer=$p_default case "$answer" in [Yy]|[yY][eE][sS]) echo; return 0;; [Nn]|[nN][oO]) return 1;; esac done } #======================================================= # Display a message in case of installation was canceled #------------------------------------------------------- canceled_install() { echo " Installation canceled. " } #======================================================= # Check if available space on disk is enough to extract #+bzip2 and product .tgz #------------------------------------------------------- check_if_enough_space_on_disk() { p_directory="$1" requiredDiskSpace="$2" # find 'file system' information fileSystem=`df -k "$p_directory" | tail -1 | awk '{ print $1 }'` case "$fileSystem" in # -- on HP-UX, 'df -k' output is different [0-9]*) fileSystem=`df -k "$p_directory" | head -1 | awk '{ print $1 }'`;; esac echo_dot "Checking for available space on $fileSystem" availableDiskSpace=`df -k "$p_directory" | tail -1 | awk '{if ( $4 ~ /%/) { print $3 } else { print $4 } }'` case "$availableDiskSpace" in # -- on HP-UX, 'df -k' output is different [a-zA-Z]*) availableDiskSpace=`df -k "$p_directory" | head -2 | tail -1 | awk '{ print $1 }'`;; esac # check if shell has 32-bit signed integers only (e.g. HP-UX's one), this can be a problem when the # available size on disk is greater to MAXINT (2147483647, 2^31-1) [ 2147483648 -gt 0 ] && p_maxint_overflow=0 || p_maxint_overflow=1 if [ $p_maxint_overflow -eq 0 ]; then [ "$availableDiskSpace" -gt "$requiredDiskSpace" ] && { display_ok; return 0; } || { display_no; exit_install $NOT_ENOUGH_SPACE; } else # try 64-bit calculation using bc, or skip checking for available size type bc 2>&1 >/dev/null || { display_skip; return 0; } p_calc=`echo "if($availableDiskSpace > $requiredDiskSpace) 0" | bc` [ "$p_calc" = "0" ] && { display_ok; return 0; } || { display_no; exit_install $NOT_ENOUGH_SPACE; } fi } #======================================================= # Display a list of possible choice from a file and #+return the number choosen by the user # Returned value is 1 by default #------------------------------------------------------- choose_from_list() { p_description="$1" p_question="$2" p_file="$3" tmpFile="$p_file.tmp.$$${RANDOM}" echo_dot "$p_description" 1 echo " $p_question :" cat "$p_file" | sed "s/_//g" >"$tmpFile" 2>$NUL cat "$tmpFile" | awk -F"|" '{ print " [" $1 "] " $2}' rm "$tmpFile" >$NUL 2>&1 while true; do echo $cmd_echo "Please enter a valid number or [c]ancel : ([1] is the default) \c" read answer [ -z "$answer" ] && answer=1 case "$answer" in [cC]|[cC][aA][nN][cC][eE][lL]) exit_install 2;; *) grep "_${answer}_" $p_file >$NUL 2>&1 if [ $? -eq 0 ]; then userChoice=$answer echo return 0 fi esac done } #======================================================= # Convert relative path to absolute path #------------------------------------------------------- convert_relative_to_absolute_path() { l_directory_to_convert="$1" #-- first we check if path is relative or not if [ "`echo $l_directory_to_convert | cut -c1`" != "/" ]; then if [ -d "$l_directory_to_convert" ]; then #-- if parameter is an existing directory, just echo it echo `cd "$l_directory_to_convert"; pwd` elif [ -e "$l_directory_to_convert" -a ! -d "$l_directory_to_convert" ]; then #-- if not a directory but file exist, we have to be more safe with the conversion mkdir "$l_directory_to_convert$$" >$NUL 2>&1 if [ $? -ne 0 ]; then #-- impossible to convert this path without write permissions to the path's destination echo "NO_FILE_ACCESS_PERMISSION" else #-- quotes could be escaped dirName=`cd "$l_directory_to_convert$$"; pwd | awk -F"$$" {'print $1'}` echo "$dirName" rm -rf "$l_directory_to_convert$$" >$NUL 2>&1 fi else #-- file doesn't exist mkdir -p "$l_directory_to_convert" >$NUL 2>&1 if [ $? -ne 0 ]; then #-- impossible to convert this path without write permissions to the path's destination echo "NO_FILE_ACCESS_PERMISSION" else echo `cd "$l_directory_to_convert"; pwd` rm -rf "$l_directory_to_convert" >$NUL 2>&1 fi fi else echo "$l_directory_to_convert" fi } #======================================================= # Display NO message in red #------------------------------------------------------- display_no() { if [ "$gbl_color" = "true" ]; then $cmd_echo " [\c" $cmd_echo "${gbl_colorRed}fail\c" tput sgr0 echo "]" else echo " [fail]" fi } #======================================================= # Display OK message in green #------------------------------------------------------- display_ok() { if [ "$gbl_color" = "true" ]; then $cmd_echo " [ \c" $cmd_echo "${gbl_colorGreen}ok\c" tput sgr0 echo " ]" else echo " [ ok ]" fi } #======================================================= # Display SKIPPED message in orange #------------------------------------------------------- display_skipped() { if [ "$gbl_color" = "true" ]; then $cmd_echo " [\c" $cmd_echo "${gbl_colorOrange}skip\c" tput sgr0 echo "]" else echo " [skip]" fi } #======================================================= # Clean up working dir and temporary files #------------------------------------------------------- do_cleanup() { cd $CURRENTDIR >$NUL 2>&1 [ ! -z "$gbl_installDirIsCreated" -a "$gbl_installDirIsToRemove" = "1" ] && rm -rf "$INSTALLDIR" >$NUL 2>&1 [ -z "$gbl_keep" ] && rm -rf "$WORKINGDIR" >$NUL 2>&1 } #======================================================= # Display the right message before exiting #------------------------------------------------------- do_exit() { case "$error" in 0) [ "$gbl_action" != "list" ] && successful_install;; 2) [ "$gbl_installDirIsToRemove" != "0" ] && gbl_installDirIsToRemove=1; canceled_install;; *) [ "$gbl_installDirIsToRemove" != "0" ] && gbl_installDirIsToRemove=1; do_error;; esac } #======================================================= # Echo a message and complete line with '.' #------------------------------------------------------- echo_dot() { [ "$FGLINSTALLDEBUG" = "1" ] && set +x p_message="$1" [ ! -z "$2" ] && p_resultLength=$2 || p_resultLength=8 count=2 defaultColumnValue=80 $cmd_echo "$p_message\c" messageLength=`echo "$p_message" | wc -c | awk '{ print $1 }'` # -- get lineLength lineLength=`stty -a | grep columns | sed 's/.*columns \([0-9]*\).*/\1/'` case "$lineLength" in [0-9]*)lineLengthIsOk=1;; *)lineLengthIsOk=0;; esac [ $lineLengthIsOk -eq 0 ] && lineLength=`stty -a | grep columns | awk '{ print $7 }' | sed 's/[^0-9]//'` case "$lineLength" in [0-9]*)lineLengthIsOk=1;; *)lineLength=$defaultColumnValue;; esac #-- if lineLength is equal to 0, we set it to 80 [ "$lineLength" = "0" ] && lineLength=$defaultColumnValue [ "$messageLength" -gt "$lineLength" ] && lineLength=`expr $lineLength \* 2` dotCount=`expr $lineLength - $messageLength - $p_resultLength` $cmd_echo " \c" while [ "$count" -lt "$dotCount" ]; do $cmd_echo ".\c" count=`expr $count + 1` done [ "$FGLINSTALLDEBUG" = "1" ] && set -x } #======================================================= # Exit and set up an error code #------------------------------------------------------- exit_install() { signals_untrap error=$1 do_exit do_cleanup exit $error } signals_untrap() { trap - HUP INT QUIT KILL TERM } #======================================================= # Display a message in case of successful installation #------------------------------------------------------- successful_install() { case "$gbl_action" in extract) word="extraction";; check) word="verification";; *) word="installation";; esac echo " The $word of Genero Desktop Client 2.50.36 is now complete. " [ -n "http://www.fourjs.com/" ] && \ echo " For more information about our products, please visit our website at http://www.fourjs.com/. " [ -n "support 'at' 4js.com" ] && \ echo " Bug reports, feature requests and comments are all very welcome (support 'at' 4js.com). " } #======================================================= # Check if color is supported by 'echo' command #------------------------------------------------------- test_color() { $cmd_echo "${gbl_colorRed}fail" >"$TMPDIR/.test_color" 2>$NUL cat "$TMPDIR/.test_color" | grep "\E\[31m" >$NUL 2>&1 [ $? -eq 0 ] && gbl_color=false || gbl_color=true export gbl_color rm -f "$TMPDIR/.test_color" >$NUL 2>&1 } #======================================================= # Determine which 'echo' command to use, option #+depending on the system #------------------------------------------------------- test_echo() { echo -e "test echo" >"$TMPDIR/.test_echo" 2>$NUL cat "$TMPDIR/.test_echo" | grep "\-e" >$NUL 2>&1 [ $? -eq 0 ] && cmd_echo="echo" || cmd_echo="echo -e" export cmd_echo rm -f "$TMPDIR/.test_echo" >$NUL 2>&1 } #======================================================= # Check integrity of archive and bzip2 binary #------------------------------------------------------- check_binaries_integrity() { #-- we check that extracted bzip2 is working echo_dot "Checking extracted bzip2 binary" file bzip2 | grep executable >$NUL 2>&1 if [ $? -eq 0 ]; then bzip2 -h 2>&1 >$NUL | grep "2007" >$NUL 2>&1 [ $? -eq 0 ] && display_ok || { display_no; exit_install $BAD_BZIP_BINARY; } else display_no; exit_install $BAD_BZIP_BINARY fi integrityChecked= #-- sha1sum echo_dot "Checking archive sha1 checksum" if [ "$__sha1sum" ]; then sha1sumString=`sha1sum "$WORKINGDIR/$gbl_tgzArchive" | awk '{ print $1 }'` [ "$sha1sumString" = "7eb1a180ced3debedbbb53065e895a8eaba04879" ] && { display_ok; integrityChecked=1; } || { display_no; exit_install $INTEGRITY_CHECK_FAILED; } else if [ "$__openssl" ]; then openssl --help 2>&1 | grep sha1 >$NUL 2>&1 if [ $? -eq 0 ]; then sha1sumString=`openssl sha1 "$WORKINGDIR/$gbl_tgzArchive" | awk '{ print $2 }'` [ "$sha1sumString" = "7eb1a180ced3debedbbb53065e895a8eaba04879" ] && { display_ok; integrityChecked=1; } || { display_no; exit_install $INTEGRITY_CHECK_FAILED; } else #-- openssl not compiled for sha1 display_skipped fi else #-- tool not available display_skipped fi fi if [ -z "$integrityChecked" ]; then #-- md5sum echo_dot "Checking archive md5 checksum" if [ "$__md5sum" ]; then md5sumString=`md5sum "$WORKINGDIR/$gbl_tgzArchive" | awk '{ print $1 }'` [ "$md5sumString" = "c84b3d32e4625a9789f40830af76745d" ] && { display_ok; integrityChecked=1; } || { display_no; exit_install $INTEGRITY_CHECK_FAILED; } else if [ "$__md5" ]; then md5sumString=`md5 "$WORKINGDIR/$gbl_tgzArchive" | awk '{ print $1 }'` [ "$md5sumString" = "c84b3d32e4625a9789f40830af76745d" ] && { display_ok; integrityChecked=1; } || { display_no; exit_install $INTEGRITY_CHECK_FAILED; } else if [ "$__openssl" ]; then openssl --help 2>&1 | grep md5 >$NUL 2>&1 if [ $? -eq 0 ]; then md5sumString=`openssl md5 "$WORKINGDIR/$gbl_tgzArchive" | awk '{ print $2 }'` [ "$md5sumString" = "c84b3d32e4625a9789f40830af76745d" ] && { display_ok; integrityChecked=1; } || { display_no; exit_install $INTEGRITY_CHECK_FAILED; } else #-- tool not available display_skipped fi else #-- tool not available display_skipped fi fi fi fi #-- if tools not found, we display a warning and ask user if #+he want to continue installation if [ -z "$integrityChecked" ]; then message="Can't find tools to do checksum." if [ -z "$gbl_quiet" -a "$gbl_action" != "check" ]; then question="Do you wish to continue anyway ?" ask_yes_no_cancel "$question" "Y" "$message" [ $? -eq 1 ] && exit_install 2 else echo " $message " fi fi } #======================================================= # Validate existence of needed shell commands #------------------------------------------------------- test_openssl() { __openssl=1; } test_sha1sum() { __sha1sum=1; } test_md5sum() { __md5sum=1; } test_md5() { __md5=1; } #======================================================= # Extract content of archive $archive (full.tgz) #------------------------------------------------------- extract_archive_content() { echo_dot "Extracting archive content to $WORKINGDIR" #-- uncompress to get a .tar bzip2 -d $gbl_tgzArchive >$NUL 2>&1 [ $? -eq 0 ] || { display_no; exit_install $ARCHIVE_DECOMPRESSION_FAILED; } #-- extraction of the .tar _UMASK=`umask` umask 0000 [ $? -ne 0 -o -z "${_UMASK}" ] && { display_no; exit_install $UMASK_HANDLE_FAILED; } tar xf $gbl_tarArchive >$NUL 2>&1 RET=$? umask ${_UMASK} [ $RET -eq 0 ] && display_ok || { display_no; exit_install $ARCHIVE_DECOMPRESSION_FAILED; } #-- we remove useless files in working directory (bzip2 and archive) rm -f bzip2 $gbl_tgzArchive $gbl_tarArchive >$NUL 2>&1 } #======================================================= # Get bzip2 and archive from $0 #------------------------------------------------------- get_binaries_from_file() { echo_dot "Getting binaries from file" os=`uname -s 2>$NUL` case $os in "Linux" | "Darwin" ) _POSIX2_VERSION=199209 ; export _POSIX2_VERSION ;; esac #-- extract binaries from $0 byteVal=`expr $gbl_fileByte + 1` tail +${byteVal}c "${gbl_dirname}/${gbl_basename}" >binaries 2>$NUL [ $? -eq 0 -a -f binaries ] || { display_no; exit_install $BINARIES_EXTRACTION_FAILED; } #-- extract archive for binaries byteVal=`expr $gbl_gzipByte + 1` tail +${byteVal}c binaries >$gbl_tgzArchive 2>$NUL [ $? -eq 0 -a -f "$gbl_tgzArchive" ] || { display_no; exit_install $BINARIES_EXTRACTION_FAILED; } #-- extract bzip2 for binaries dd if=binaries of=bzip2 bs=$gbl_gzipByte count=1 >$NUL 2>&1 [ $? -eq 0 -a -f bzip2 ] || { display_no; exit_install $BINARIES_EXTRACTION_FAILED; } #-- give execute file access permission to bzip2 chmod +x bzip2 >$NUL 2>&1 [ $? -eq 0 ] || { display_no; exit_install $BINARIES_EXTRACTION_FAILED; } #-- remove binaries # no need to check status, installation can continue #+even if this command fails rm -f binaries >$NUL 2>&1 unset _POSIX2_VERSION display_ok } #======================================================= # Init and check required command line tools #------------------------------------------------------- init_command() { PATH="$PATH":/bin:/usr/bin:/sbin/:/usr/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin #-- clear screen command : clear, tput clear cmd_clear= [ ! -z "`exec 2>&-; type clear`" ] && cmd_clear="clear" \ || { [ ! -z "`exec 2>&-; type tput`" ] && cmd_clear="tput clear" ;} #-- check command to verify checksums commandToTest="md5sum md5 sha1sum openssl" for cmd in $commandToTest; do type $cmd 2>&1 | grep "not found" >$NUL 2>&1 [ $? -ne 0 ] && test_${cmd} done } #======================================================= # Init global variables #------------------------------------------------------- init_global_variable() { #-- everything above is exported # this is especially important to pass parameters to core-installer #-- usefull stuff [ -z "$TERM" -o "$TERM" = "dumb" ] && TERM=vt100 NUL=/dev/null export NUL TERM #-- size in bytes of this script and bzip2 gbl_fileByte=223873 gbl_gzipByte=79224 export gbl_fileByte gbl_gzipByte #-- default installation directory and current directory INSTALLDIR="/opt/fourjs/gdc" CURRENTDIR=`pwd` export INSTALLDIR CURRENTDIR #-- need to use a constant locale LC_ALL=C export LC_ALL } #======================================================= # List content of archive $archive (full.tgz) #------------------------------------------------------- list_archive_content() { echo_dot "Listing archive content" 1 echo case "`uname -s 2>/dev/null`" in Linux) cat $gbl_tgzArchive | bzip2 -cd | tar tvfp - 2>$NUL | awk '{ print " " $1 "\t" $3 "\t" $6 }' | $PAGER;; AIX) cat $gbl_tgzArchive | bzip2 -cd | tar tvfp - 2>$NUL | awk '{ print " " $1 "\t" $4 "\t" $9 }' | $PAGER;; UnixWare) cat $gbl_tgzArchive | bzip2 -cd | tar tvfp - 2>$NUL | awk '{ print " " substr($1,0,10) "\t" $2 "\t" $7 }' | $PAGER;; SCO_SV) cat $gbl_tgzArchive | bzip2 -cd | tar tvfp - 2>$NUL | awk '{ print " " substr($1,0,9) "\t" $2 "\t" $7 }' | $PAGER;; *) cat $gbl_tgzArchive | bzip2 -cd | tar tvfp - 2>$NUL | awk '{ print " " $1 "\t" $3 "\t" $8 }' | $PAGER;; esac } #======================================================= # Make the working directory where all the installation will take place #------------------------------------------------------- make_working_directory() { WORKINGDIR="$TMPDIR/installer$$${RANDOM}" echo_dot "Creating working directory $WORKINGDIR" mkdir -p "$WORKINGDIR" >$NUL 2>&1 [ $? -ne 0 ] && { display_no; exit_install $MAKE_WORKINGDIR_FAILED; } export WORKINGDIR display_ok } #======================================================= # Parse shell-script arguments #------------------------------------------------------- parse_args() { #-- init variables gbl_license= gbl_license_no_3rdparty= [ -z "$gbl_license_no_3rdparty" ] && gbl_license_3rdparty= || gbl_license_3rdparty=1 gbl_quiet= gbl_keep= gbl_action= gbl_force= gbl_target=false gbl_root= gbl_nocheck= parse_args_init_local #-- loop throught arguments while [ "$#" -gt 0 ]; do ARG="$1" shift case "$ARG" in -a|--accept) gbl_license=1 gbl_license_3rdparty=1;; -c|--check) gbl_license=1 gbl_license_3rdparty=1 gbl_action=check;; -f|--force) [ -z "$1" -o "$1" = "-*" ] && show_usage $ARGS_MISSING_PARAMETER_TO_OPTION "$ARG" case "$1" in backup|remove|overwrite) gbl_force=$1 shift;; *) show_usage $ARGS_WRONG_PARAMETER_TO_OPTION "$ARG" "$1";; esac;; -k|--keep) gbl_keep=1;; -l|--list) gbl_license=1 gbl_license_3rdparty=1 gbl_action=list;; -h|--help) show_usage;; -i|--install) # this option is kept for backward compatibility sleep 0;; -q|--quiet) gbl_license=1 gbl_license_3rdparty=1 gbl_quiet=1;; -n|--nocheck) gbl_nocheck=1;; -r|--root) gbl_root=1;; -s|--show) [ -z "$1" -o "$1" = "-*" ] && show_usage $ARGS_MISSING_PARAMETER_TO_OPTION "$ARG" case "$1" in license) show_license [ -z "$gbl_license_no_3rdparty" ] && show_license_3rdparty exit 0;; *) parse_args_local "$ARG" "$@" eat=$? case "$eat" in 255) ;; 0) show_usage $ARGS_WRONG_PARAMETER_TO_OPTION "$ARG" "$1";; *) shift $eat;; esac;; esac;; -t|--target) [ -z "$1" -o "$1" = "-*" ] && show_usage $ARGS_MISSING_PARAMETER_TO_OPTION "$ARG" gbl_target=true INSTALLDIR=`convert_relative_to_absolute_path "$1"` [ "$INSTALLDIR" != "NO_FILE_ACCESS_PERMISSION" ] && \ export INSTALLDIR || \ { INSTALLDIR="$1"; exit_install $NO_FILE_ACCESS_PERMISSION; } shift;; -V|--version) show_info;; -w|--work) [ -z "$1" -o "$1" = "-*" ] && show_usage $ARGS_MISSING_PARAMETER_TO_OPTION "$ARG" TMPDIR=`convert_relative_to_absolute_path "$1"` [ "$TMPDIR" = "NO_FILE_ACCESS_PERMISSION" ] && \ { TMPDIR="$1"; exit_install $NO_FILE_ACCESS_PERMISSION_INITIAL_WORKINGDIR; } [ ! -d "$TMPDIR" ] && \ { mkdir -p "$TMPDIR" || exit_install $NO_FILE_ACCESS_PERMISSION_INITIAL_WORKINGDIR; } shift;; -x|--extract) gbl_keep=1 gbl_action=extract;; *) parse_args_local "$ARG" "$@" eat=$? case "$eat" in 255) show_usage $ARGS_WRONG_OPTION "$ARG";; 0) ;; *) shift $eat;; esac;; esac done #-- need to export some value for core installer export gbl_action gbl_force gbl_keep gbl_quiet gbl_target gbl_root gbl_nocheck parse_args_export_local } #======================================================= # Launch the script with sh, so that installer handle #+to be called with sh, bash and ./ #------------------------------------------------------- self_call() { LC_ALL=C export LC_ALL [ "$1" != "--" ] && { /bin/sh "$0" -- "$@"; exit $?; } } #======================================================= # Show info about the package and exit #------------------------------------------------------- show_info() { echo " Genero Desktop Client 2.50.36 build-5028.196 Target l64xl25 Four Js* (c) Copyright Four Js 2002, 2017. All Rights Reserved. * Trademark of Four Js Development Tools Europe Ltd in the United States and elsewhere " exit 0 } #======================================================= # Show third-party license terms of the package #------------------------------------------------------- show_license_3rdparty() { tmpFile="$TMPDIR/.license.tmp.$$${RANDOM}" echo " FOUR JS DEVELOPMENT TOOLS NOTICE REGARDING THIRD PARTY PRODUCTS This file contains information about third party code included in Four Js Development Tools Ltd. (Four Js) software (the \"Licensed Software\") licensed to you under your license agreement with Four Js. The version of the software you may have received or installed may not contain all of the materials referred to in this file. Notwithstanding the terms and conditions of any other agreement Licensee may have with Four Js, the third party code identified below is subject to the terms and conditions of the Four Js license agreement for the Licensed Software and not the license terms that may be contained in the notices below. The notices are provided for informational purposes. DISCLAIMER OF REPRESENTATIONS AND WARRANTIES: Four Js does not represent or warrant that the information in this file, or the information on any third party website referenced in this file, is accurate or complete. Four Js disclaims any and all liability for errors and omissions or for any damages, losses, costs or claims accruing from the use of this file or its contents, including without limitation URLs or references to any third party websites. ========================================================================= BSD CODE. The Licensed Software contains all or portions of the following third party code: -------------------------------------------------------------------------------------------------------------------------------- Gifilib (codeplex): Copyright (c) 2008, jillzhang All rights reserved. -------------------------------------------------------------------------------------------------------------------------------- Tcl 8.5.11.0: This software is copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation and other parties. The following terms apply to all files associated with the software unless explicitly disclaimed in individual files. The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided that existing copyright notices are retained in all copies and that this notice is included verbatim in any distributions. No written agreement, license, or royalty fee is required for any of the authorized uses. Modifications to this software may be copyrighted by their authors and need not follow the licensing terms described here, provided that the new terms are clearly indicated on the first page of each file where they apply. IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. GOVERNMENT USE: If you are acquiring this software on behalf of the U.S. government, the Government shall have only \"Restricted Rights\" in the software and related documentation as defined in the Federal Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you are acquiring the software on behalf of the Department of Defense, the software shall be classified as \"Commercial Computer Software\" and the Government shall have only \"Restricted Rights\" as defined in Clause 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the authors grant the U.S. Government and others acting in its behalf permission to use and distribute the software in accordance with the terms specified in this license. --------------------------------------------------------------------------------------------------------------------------------- The following are notices and other important information with regard to this third party code: /* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of jillzhang nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ END OF NOTICES AND INFORMATION FOR BSD CODE ========================================================================= BZIP2 CODE. The Licensed Software includes the bzip2 1.0.5. The following are notices and other important information with regard to this third party code. This program, \"bzip2\", the associated library \"libbzip2\", and all documentation, are copyright (C) 1996-2007 Julian R Seward. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 4. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR \`\`AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Julian Seward, jseward@bzip.org bzip2/libbzip2 version 1.0.5 of 10 December 2007 END OF NOTICES AND INFORMATION FOR THE BZIP2 CODE ================================================================== MIT CODE. The Licensed Software contains all or portions of the following third party software. SPINNING WHEEL 1.4 --------------------------------------------------------------------------------------------------------------------------------- PuTTY 0.62: * * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina. * * All rights reserved. Redistribution and use in source and binary * forms, with or without modification, are permitted provided that * this copyright notice is retained. * * THIS SOFTWARE IS PROVIDED \`\`AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR * CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS * SOFTWARE. * * Ariel Futoransky * * * Modified for use in PuTTY by Simon Tatham --------------------------------------------------------------------------------------------------------------------------------- Libtiff 3.9.2: Copyright (c) 1988-1997 Sam Leffler Copyright (c) 1991-1997 Silicon Graphics, Inc. --------------------------------------------------------------------------------------------------------------------------------- Libxml2 2.7.2: hash.c, Copyright (C) 2000 Bjorn Reese and Daniel Veillard. --------------------------------------------------------------------------------------------------------------------------------- LibXMLsec 1.2.18 xmlsec, xmlsec-openssl, xmlsec-gnutls, xmlsec-gcrypt libraries Copyright (C) 2002-2010 Aleksey Sanin. All Rights Reserved. xmlsec-nss library Copyright (C) 2002-2010 Aleksey Sanin. All Rights Reserved. Copyright (c) 2003 America Online, Inc. All rights reserved. xmlsec-mscrypto library Copyright (C) 2002-2010 Aleksey Sanin. All Rights Reserved. Copyright (C) 2003 Cordys R&D BV, All rights reserved. Copyright (C) 2007 Roumen Petrov. Copyright (c) 2005-2006 Cryptocom LTD (http://www.cryptocom.ru). --------------------------------------------------------------------------------------------------------------------------------- Expat 1.95.2: Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper --------------------------------------------------------------------------------------------------------------------------------- Expat 2.0.1: Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers. --------------------------------------------------------------------------------------------------------------------------------- The following are notices and important information regarding the above third party code: /* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ END OF NOTICES AND INFORMATION FOR MIT BASED CODE ========================================================================= The Licensed Software contains the following XHTML DTDs (xhtml1-transitional.dtd, xhtml-lat1.ent, xhtml-special.ent, xhtml-symbol.ent) The following are notices and important information regarding the use of this third party code: /* - HTML 4.01 Specific (http://www.w3.org/TR/html401/) W3C (R) SOFTWARE NOTICE AND LICENSE Copyright (c) 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/ This W3C work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: Permission to use, copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make: The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: \"Copyright (c) [\$date-of-software] World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/\" Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.) THIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders. This formulation of W3C's notice and license became active on August 14 1998 so as to improve compatibility with GPL. This version ensures that W3C software licensing terms are no more restrictive than GPL and consequently W3C software may be distributed in GPL packages. See the older formulation for the policy prior to this date. Please see our Copyright FAQ for common questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other questions about this notice can be directed to site-policy@w3.org. */ END OF NOTICES FOR XML DTD ========================================================================= MIT CODE The Licensed Software contains all or some of the following third party code: xdg-utils 1.0.2: # xdg-desktop-icon # # Utility script to install desktop items on a Linux desktop. # # Refer to the usage() function below for usage. # # Copyright 2006, Kevin Krammer # Copyright 2006, Jeremy White jwhite@codeweavers.com -------------------------------------------------------------------------------------------------------------------------------- DES (C++ implementation) ------------------------------------------------------------------------------------------------------------------------------- Harfbuzz 2.1: HarfBuzz was previously licensed under different licenses. This was changed in January 2008. If you need to relicense your old copies, consult the announcement of the license change on the internet. Other than that, each copy of HarfBuzz is licensed under the COPYING file included with it. --------------------------------------------------------------------------------------------------------------------------------- Pnmscale: pnmscale.c - read a portable anymap and scale it Copyright (C) 1989, 1991 by Jef Poskanzer. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. This software is provided \"as is\" without express or implied warranty. Parts of the internal QImageSmoothScaler::scale() function use code based on pnmscale.c by Jef Poskanzer. --------------------------------------------------------------------------------------------------------------------------------- Jquery 1.3.2: All of the scripts contain the copyright notice indicating a MIT, GPL and The Dojo Foundation. /* * jQuery JavaScript Library v1.3.2 * http://jquery.com/ * * Copyright (c) 2009 John Resig * Dual licensed under the MIT and GPL licenses. * http://docs.jquery.com/License * * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009) * Revision: 6246 */ /* * Sizzle CSS Selector Engine - v0.9.3 * Copyright 2009, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * More information: http://sizzlejs.com/ -------------------------------------------------------------------------------------------------------------------------------- The following are notices and important information about the above third party code: /* Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN \"AS IS\" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. */ END OF NOTICES AND INFORMATION FOR MIT CODE ========================================================================= APACHE 2 CODE. The Licensed Software includes all or portions of the following software which is available under the Apache License Version 2.0, January 2004. This software may also consist of voluntary contributions made by many individuals to the Apache Software Foundation. Some or all of the following software may be components of other included software packages noted later in this file. For more information on the Apache Software Foundation, please see http://www.apache.org. google-diff-match-patch 20120106 Zxing 2.1 sfntly r156 Xerces C++ 3.1.1 Subversion 1.7.6 POI 3.8 Apache Portable Runtime 1.4.6 Clucene 0.9.1.5 MD5 1993 Apache Batik V1.7 (http://xmlgraphics.apache.org/batik/) ---------------------------------------------------------------------------------------------------------------------------- Subversion 1.7.6: Subversion Copyright 2010 The Apache Software Foundation This product includes software developed by many people, and distributed under Contributor License Agreements to The Apache Software Foundation (http://www.apache.org/). See the accompanying COMMITTERS file and the revision logs for an exact contribution history. Portions of the test suite for Subversion's Python bindings are copyrighted by Edgewall Software, Jonas Borgstrom and Christopher Lenz. For more information, see LICENSE. This product includes software developed under the X Consortium License see: build/install-sh --------------------------------------------------------------------------------------------------------------------------------- POI 3.8 Apache POI Copyright 2009 The Apache Software Foundation This product includes software developed by The Apache Software Foundation (http://www.apache.org/). This product contains the DOM4J library (http://www.dom4j.org). Copyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved. This product contains parts that were originally based on software from BEA. Copyright (c) 2000-2003, BEA Systems, . This product contains W3C XML Schema documents. Copyright 2001-2003 (c) World Wide Web Consortium (Massachusetts Institute of Technology, European Research Consortium for Informatics and Mathematics, Keio University) This product contains the Piccolo XML Parser for Java (http://piccolo.sourceforge.net/). Copyright 2002 Yuval Oren. This product contains the chunks_parse_cmds.tbl file from the vsdump program. Copyright (C) 2006-2007 Valek Filippov (frob@df.ru) ------------------------------------------------------------------------------------------------------------------------------- Apache Portable Runtime 1.4.6 ------------------------------------------------------------------------------------------------------------------------------- Clucene 0.9.1.5: /*----------------------------------------------------------------------------- * Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team * * Distributable under the terms of either the Apache License (Version 2.0) or * the GNU Lesser General Public License, as specified in the COPYING file. ------------------------------------------------------------------------------*/ --------------------------------------------------------------------------------------------------------------------------------- MD5 1993: Public Domain /* * This is the header file for the MD5 message-digest algorithm. * The algorithm is due to Ron Rivest. This code was * written by Colin Plumb in 1993, no copyright is claimed. * This code is in the public domain; do with it what you wish. * * Equivalent code is available from RSA Data Security, Inc. * This code has been tested against that, and is equivalent, * except that you don't need to include two pages of legalese * with every copy. * * To compute the message digest of a chunk of bytes, declare an * MD5Context structure, pass it to MD5Init, call MD5Update as * needed on buffers full of bytes, and then call MD5Final, which * will fill a supplied 16-byte array with the digest. * * Changed so as no longer to depend on Colin Plumb's \`usual.h' * header definitions; now uses stuff from dpkg's config.h * - Ian Jackson . * Still in the public domain. */ --------------------------------------------------------------------------------------------------------------------------- Apache Batik V1.7 http://xmlgraphics.apache.org/batik/index.html Batik is a Java-based toolkit for applications or applets that want to use images in the Scalable Vector Graphics (SVG) format for various purposes, such as display, generation or manipulation. The project's ambition is to give developers a set of core modules that can be used together or individually to support specific SVG solutions. Examples of modules are the SVG Parser, the SVG Generator and the SVG DOM. Another ambition for the Batik project is to make it highly extensible for example, Batik allows the developer to handle custom SVG elements. Even though the goal of the project is to provide a set of core modules, one of the deliverables is a full fledged SVG browser implementation which validates the various modules and their inter-operability. --------------------------------------------------------------------------------------------------------------------------------- The following are other notices and important information regarding the above third party code: /* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. \"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. \"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. \"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. \"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License. \"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. \"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. \"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). \"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. \"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\" \"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: You must give any other recipients of the Work or Derivative Works a copy of this License; and You must cause any modified files to carry prominent notices stating that You changed the files; and You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS */ END OF NOTICES FOR APACHE 2 CODE ======================================================================== Lesser GNU Public License The Licensed Software contains the following software under the GNU Lesser Public License: TinyMCE 4.0 END GNU Lesser GNU Public License NOTICES ======================================================================== The Licensed Software contains the WSDL Schema files WSDL.xsd, SOAP.xsd 1.1. The following are notices and important information regarding this third party code: /* WSDL Schema files WSDL.xsd, SOAP.xsd 1.1 Copyright 2001-2005, International Business Machines Corporation and Microsoft Corporation All Rights Reserved License for WSDL Schema Files The Authors grant permission to copy and distribute the WSDL Schema Files in any medium without fee or royalty as long as this notice and license are distributed with them. The originals of these files can be located at: http://schemas.xmlsoap.org/wsdl/mime/2002-01-29.xsd THESE SCHEMA FILES ARE PROVIDED \"AS IS,\" AND THE AUTHORS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THESE FILES, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT OR TITLE. THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THESE FILES. The name and trademarks of the Authors may NOT be used in any manner, including advertising or publicity pertaining to these files or any program or service that uses these files, written prior permission. Title to copyright in these files will at all times remain with the Authors. No other rights are granted by implication, estoppel or otherwise. Portions (c) 2001 DevelopMentor. (c) 2001 W3C (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. This document is governed by the W3C Software License [1] as described in the FAQ [2]. [1] http://www.w3.org/Consortium/Legal/copyright-software-19980720 [2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: Permission to use, copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make: 1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: \"Copyright (c) 2001 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/\" 3. Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.) Original W3C files; http://www.w3.org/2001/06/soap-encoding Changes made: - reverted namespace to http://schemas.xmlsoap.org/soap/encoding/ - reverted root to only allow 0 and 1 as lexical values - removed default value from root attribute declaration THIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders. */ END OF NOTICES AND INFORMATION FOR THE WSDL FILES ========================================================================= MPL CODE. The Licensed Software includes all or portions of the following software which is available under the Mozilla Public License , version 1.1. This software may also consist of voluntary contributions made by many individuals to the Open Source Initiative. Some or all of the following sotware may be components of other included software packages noted later in this file. For more information on OSI Mozilla Public Licnese 1.1, please see http://www.opensource.org/licenses/mozilla1.1.php. iText 2.1.5 (http://olex.openlogic.com/packages/itext/2.1.5) --------------------------------------------------------------------------------------------------------------------------------- Scintilla 3.0.4 (http://download.savannah.gnu.org/releases/fxscintilla/) License for Scintilla and SciTE Copyright 1998-2003 by Neil Hodgson All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------------------------------------------------------- tDOM 0.8.2 (https://github.com/downloads/tDOM/tdom/tDOM-0.8.2.tgz) --------------------------------------------------------------------------------------------------------------------------------- Hunspell 1.3.2 Copyright (c), 1983, by Pace Willisson Copyright 1992, 1993, 1999, 2001, 2005, Geoff Kuenning, Claremont, CA All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. All modifications to the source code must be clearly marked as such. Binary redistributions based on modified source code must be clearly marked as modified versions in the documentation and/or other materials provided with the distribution. 4. The code that causes the 'ispell -v' command to display a prominent link to the official ispell Web site may not be removed. 5. The name of Geoff Kuenning may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS \`\`AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GEOFF KUENNING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Additionally, the code is based on MySpell, licensed under the following BSD license: Copyright 2002 Kevin B. Hendricks, Stratford, Ontario, Canada And Contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. All modifications to the source code must be clearly marked as such. Binary redistributions based on modified source code must be clearly marked as modified versions in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY KEVIN B. HENDRICKS AND CONTRIBUTORS \`\`AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KEVIN B. HENDRICKS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. END OF NOTICES AND INFORMATION FOR THE MPL LICENSED CODE ========================================================================= Ms-PL CODE. The Licensed Software includes some or all of the following that Four Js obtained under the Microsoft Public License. - Silverlight Toolkit 5 (http://silverlight.codeplex.com/license) - nRoute Framework 0.4.5 (http://nroute.codeplex.com/license) - Expression Blend SDK V4.0 for Silverlight (http://msdn.microsoft.com/en-us/library/cc296227.aspx) - Reactive extension SDK V1.0.10621 (http://msdn.microsoft.com/en-us/data/gg577609) END OF NOTICES AND INFORMATION FOR THE Ms-PL LICENSED CODE ========================================================================= Eclipse Public License 1.0 CODE. The Licensed Software includes Graphviz 2.28.0. END OF NOTICES AND INFORMATION FOR EPL CODE ========================================================================= OPENSSL CODE. The Licensed Software includes the OpenSSL 1.0.0k software. The following are notices and other important information regarding this third party code: OpenSSL: *** README file *** OpenSSL 1.0.0k 5 Feb 2013 Copyright (c) 1998-2011 The OpenSSL Project Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson All rights reserved. *** end README file *** *** LICENSE file *** Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. Copyright (C) 1995-1998 Tim Hudson (tjh @cryptsoft.com) All rights reserved Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved. *** end LICENSE file *** ********************************************************************************************************* Original SSLeay License ----------------------- /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * \"This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)\" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * \"This product includes software written by Tim Hudson (tjh@cryptsoft.com)\" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG \`\`AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ ************************************************************************************************************* SHA1 software: /* Public Domain, no restrictions on use */ END OF NOTICES AND INFORMATION FOR OPENSSL CODE ========================================================================= LibXSLT 1.1.26 The Licensed Software includes the LibXSLT 1.1.26 software. License text for this software follows: Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is fur- nished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of Daniel Veillard shall not be used in advertising or otherwise to promote the sale, use or other deal- ings in this Software without prior written authorization from him. END OF NOTICES AND INFORMATION FOR LIBXSLT ========================================================================= LibXML2 2.7.8 The Licensed Software includes the LibXML2 2.7.8 software. License text for this software follows: Except where otherwise noted in the source code (e.g. the files hash.c, list.c and the trio files, which are covered by a similar licence but with different Copyright notices) all the files are: Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Soft-ware\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is fur- nished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANT-ABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of Daniel Veillard shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from him. ========================================================================= LibJPEG 8c The Licensed Software includes the LibJPEG 8c software. License text for this software follows: LEGAL ISSUES ============ In plain English: 1. We don't promise that this software works. (But if you find any bugs, please let us know!) 2. You can use this software for whatever you want. You don't have to pay us. 3. You may not pretend that you wrote this software. If you use it in a program, you must acknowledge somewhere in your documentation that you've used the IJG code. In legalese: The authors make NO WARRANTY or representation, either express or implied, with respect to this software, its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided \"AS IS\", and you, its user, assume the entire risk as to its quality and accuracy. This software is copyright (C) 1991-2011, Thomas G. Lane, Guido Vollbeding. All Rights Reserved except as specified below. Permission is hereby granted to use, copy, modify, and distribute this software (or portions thereof) for any purpose, without fee, subject to these conditions: (1) If any part of the source code for this software is distributed, then this README file must be included, with this copyright and no-warranty notice unaltered; and any additions, deletions, or changes to the original files must be clearly indicated in accompanying documentation. (2) If only executable code is distributed, then the accompanying documentation must state that \"this software is based in part on the work of the Independent JPEG Group\". (3) Permission for use of this software is granted only if the user accepts full responsibility for any undesirable consequences; the authors accept NO LIABILITY for damages of any kind. These conditions apply to any software derived from or based on the IJG code, not just to the unmodified library. If you use our work, you ought to acknowledge us. Permission is NOT granted for the use of any IJG author's name or company name in advertising or publicity relating to this software or products derived from it. This software may be referred to only as \"the Independent JPEG Group's software\". We specifically permit and encourage the use of this software as the basis of commercial products, provided that all warranty or liability claims are assumed by the product vendor. ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. ansi2knr.c is NOT covered by the above copyright and conditions, but instead by the usual distribution terms of the Free Software Foundation; principally, that you must include source code if you redistribute it. (See the file ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part of any program generated from the IJG code, this does not limit you more than the foregoing paragraphs do. The Unix configuration script \"configure\" was produced with GNU Autoconf. It is copyright by the Free Software Foundation but is freely distributable. The same holds for its supporting scripts (config.guess, config.sub, ltmain.sh). Another support script, install-sh, is copyright by X Consortium but is also freely distributable. The IJG distribution formerly included code to read and write GIF files. To avoid entanglement with the Unisys LZW patent, GIF reading support has been removed altogether, and the GIF writer has been simplified to produce \"uncompressed GIFs\". This technique does not use the LZW algorithm; the resulting GIF files are larger than usual, but are readable by all standard GIF decoders. We are required to state that \"The Graphics Interchange Format(c) is the Copyright property of CompuServe Incorporated. GIF(sm) is a Service Mark property of CompuServe Incorporated.\" END OF NOTICES AND INFORMATION FOR LIBJPEG ========================================================================= zlib 1.2.7 /* zlib.h -- interface of the 'zlib' general purpose compression library version 1.2.7, May 2nd, 2012 Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Jean-loup Gailly Mark Adler jloup@gzip.org madler@alumni.caltech.edu */ END OF NOTICES AND INFORMATION FOR ZLIB ========================================================================= QT CODE. The Licensed Software includes QT commercial code offer by Nokia under alternative licenses, which contains all or portions of the following software. The Nokia-provided document found at http://qt-project.org/doc/qt-4.8/licenses.html makes it clear that certain components of the Toolkit, including some owned by Nokia, are only available under licenses other than QTlicenses. - Libmng 1.0.10 - libpng 1.5.10 - SQLite 3.7.6.3 and 3.7.15-2 - DES (C++ implementation), Copyright 1997-2005, Simon Tatham, MIT - Easing, Copyright (c) 2001, Robert Penner - Harfbuzz 2.1 - Phonon 4.4 - Webkit-JavaScriptCore 2.2.2 - Webkit-Webkit 2.2.4 - Wintab 1.1 - Xorg 0.8.8-10 - QTScript Module - EUC-JP Text Codec 4.8.5 - Multiple text codecs (Shift-JIS, ISO 2022-JP (JIS), EUC-KR, GBK, Big5-HKSCS, TSCII, Big5) 4.8.5 - QInputContext (including QInputContextFactory, QinputContextPlugin) - QTHelp Module - QImage 4.8.5 - QtGui - QAxServer Module - QAxContainer Module - Qtmain - Qregion 4.8.5 - QtXmlPatterns Module - Parts of QcrashHandler 4.8.5 - QkeyMapper 1.0 - Pnmscale (Parts of the internal QImageSmoothScaler::scale) - jquery.min.js - qurl.cpp 1.0 - Parts of codecs - qlocale.cpp - zlib 1.2.5 *************************************************************************************************************** Libpng 1.5.10: COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: If you modify libpng you may insert additional notices immediately following this sentence. This code is released under the libpng license. libpng versions 1.2.6, August 15, 2004, through 1.6.6, September 16, 2013, are Copyright (c) 2004, 2006-2013 Glenn Randers-Pehrson, and are distributed according to the same disclaimer and license as libpng-1.2.5 with the following individual added to the list of Contributing Authors Cosmin Truta libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are distributed according to the same disclaimer and license as libpng-1.0.6 with the following individuals added to the list of Contributing Authors Simon-Pierre Cadieux Eric S. Raymond Gilles Vollant and with the following additions to the disclaimer: There is no warranty against interference with your enjoyment of the library or against infringement. There is no warranty that our efforts or the library will fulfill any of your particular purposes or needs. This library is provided with all faults, and the entire risk of satisfactory quality, performance, accuracy, and effort is with the user. libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are distributed according to the same disclaimer and license as libpng-0.96, with the following individuals added to the list of Contributing Authors: Tom Lane Glenn Randers-Pehrson Willem van Schaik libpng versions 0.89, June 1996, through 0.96, May 1997, are Copyright (c) 1996, 1997 Andreas Dilger Distributed according to the same disclaimer and license as libpng-0.88, with the following individuals added to the list of Contributing Authors: John Bowler Kevin Bracey Sam Bushell Magnus Holmgren Greg Roelofs Tom Tanner libpng versions 0.5, May 1995, through 0.88, January 1996, are Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. For the purposes of this copyright and license, \"Contributing Authors\" is defined as the following set of individuals: Andreas Dilger Dave Martindale Guy Eric Schalnat Paul Schmidt Tim Wegner The PNG Reference Library is supplied \"AS IS\". The Contributing Authors and Group 42, Inc. disclaim all warranties, expressed or implied, including, without limitation, the warranties of merchantability and of fitness for any purpose. The Contributing Authors and Group 42, Inc. assume no liability for direct, indirect, incidental, special, exemplary, or consequential damages, which may result from the use of the PNG Reference Library, even if advised of the possibility of such damage. Permission is hereby granted to use, copy, modify, and distribute this source code, or portions hereof, for any purpose, without fee, subject to the following restrictions: 1. The origin of this source code must not be misrepresented. 2. Altered versions must be plainly marked as such and must not be misrepresented as being the original source. 3. This Copyright notice may not be removed or altered from any source or altered source distribution.The Contributing Authors and Group 42, Inc. specifically permit, without fee, and encourage the use of this source code as a component to supporting the PNG file format in commercial products. If you use this source code in a product, acknowledgment is not required but would be appreciated. A \"png_get_copyright\" function is available, for convenient use in \"about\" boxes and the like: printf(\"%s\",png_get_copyright(NULL)); Also, the PNG logo (in PNG format, of course) is supplied in the files \"pngbar.png\" and \"pngbar.jpg (88x31) and \"pngnow.png\" (98x31). Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a certification mark of the Open Source Initiative. *************************************************************************************************************** SQLite 3.7.6.3 and 3.7.15-2: SQLite Copyright All of the deliverable code in SQLite has been dedicated to the public domain by the authors. All code authors, and representatives of the companies they work for, have signed affidavits dedicating their contributions to the public domain and originals of those signed affidavits are stored in a firesafe at the main offices of Hwaci. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original SQLite code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. The previous paragraph applies to the deliverable code in SQLite - those parts of the SQLite library that you actually bundle and ship with a larger application. Portions of the documentation and some code used as part of the build process might fall under other licenses. The details here are unclear. We do not worry about the licensing of the documentation and build code so much because none of these things are part of the core deliverable SQLite library. All of the deliverable code in SQLite has been written from scratch. No code has been taken from other projects or from the open internet. Every line of code can be traced back to its original author, and all of those authors have public domain dedications on file. So the SQLite code base is clean and is uncontaminated with licensed code from other projects. Obtaining An Explicit License To Use SQLite Even though SQLite is in the public domain and does not require a license, some users want to obtain a license anyway. Some reasons for obtaining a license include: You are using SQLite in a jurisdiction that does not recognize the public domain. You are using SQLite in a jurisdiction that does not recognize the right of an author to dedicate their work to the public domain. You want to hold a tangible legal document as evidence that you have the legal right to use and distribute SQLite. Your legal department tells you that you have to purchase a license. If you feel like you really have to purchase a license for SQLite, Hwaci, the company that employs the architect and principal developers of SQLite, will sell you one. Contributed Code In order to keep SQLite completely free and unencumbered by copyright, all new contributors to the SQLite code base are asked to dedicate their contributions to the public domain. If you want to send a patch or enhancement for possible inclusion in the SQLite source tree, please accompany the patch with the following statement: The author or authors of this code dedicate any and all copyright interest in this code to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this code under copyright law. We are not able to accept patches or changes to SQLite that are not accompanied by a statement such as the above. In addition, if you make changes or enhancements as an employee, then a simple statement such as the above is insufficient. You must also send by surface mail a copyright release signed by a company officer. A signed original of the copyright release should be mailed to: Hwaci 6200 Maple Cove Lane Charlotte, NC 28269 USA A template copyright release is available in PDF or HTML. You can use this release to make future changes. *************************************************************************************************************** Easing: Copyright (c) 2001 Robert Penner All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *************************************************************************************************************** Wintab 1.1: /*----------------------------------------------------------------------------- The text and information contained in this file may be freely used, copied, or distributed without compensation or licensing restrictions. This file is copyright 1991-1998 by LCS/Telegraphics. -----------------------------------------------------------------------------*/ *************************************************************************************************************** CODECS 4.8.5: GBK Text Codec Copyright (C) 2000 TurboLinux, Inc. Written by Justin Yu and Sean Chen. Copyright (C) 2001, 2002 Turbolinux, Inc. Written by James Su. Copyright (C) 2001, 2002 ThizLinux Laboratory Ltd. Written by Anthony Fok. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Big5 Text Codec Copyright (C) 2000 Ming-Che Chuang Copyright (C) 2002 James Su, Turbolinux Inc. Copyright (C) 2002 Anthony Fok, ThizLinux Laboratory Ltd. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ISO 2022-JP (JIS) Text Codec and Shift-JIS Text Codec Copyright (C) 1999 Serika Kurusugawa. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS \"AS IS\". ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. EUC-KR Text Codec Copyright (C) 1999-2000 Mizi Research Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIREC, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Big5-HKSCS Text Codec Copyright (C) 2000 Ming-Che Chuang Copyright (C) 2001, 2002 James Su, Turbolinux Inc. Copyright (C) 2002 WU Yi, HancomLinux Inc. Copyright (C) 2001, 2002 Anthony Fok, ThizLinux Laboratory Ltd. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *************************************************************************************************************** QImage 4.8.5: Copyright (C) 2004, 2005 Daniel M. Duley All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of Apple, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *************************************************************************************************************** Qinputcontext, QinputcontextFactory, and QinputContextPlugin: Copyright (C) 2003-2004 immodule for Qt Project. All rights reserved. This file is written to contribute to Nokia Corporation and/or its subsidiary(-ies) under their own license. You may use this file under your Qt license. Following description is copied from their original file headers. Contact immodule-qt@freedesktop.org if any conditions of this licensing are not clear to you. *************************************************************************************************************** BSD CODE. The following are notices and other important information with regard to this third party code. QtGUI 4.8.5 QAxServer Module QAxContainer Module The qtmain library src/corelib/io/qurl.cpp 1.0 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of jillzhang nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *************************************************************************************************************** Qregion 4.8.5: Copyright (c) 1987 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. Copyright (c) 2008, jillzhang All rights reserved. *************************************************************************************************************** QDate::weekNumber() 4.8.5: Copyright (c) 1989 The Regents of the University of California. All rights reserved. Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, advertising materials, and other materials related to such distribution and use acknowledge that the software was developed by the University of California, Berkeley. The name of the University may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. *************************************************************************************************************** QLocale.cpp 4.8.5: Copyright (c) 1991 by AT&T. Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy or modification of this software and in all copies of the supporting documentation for such software. THIS SOFTWARE IS BEING PROVIDED \"AS IS\", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR AT&T MAKES ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. This product includes software developed by the University of California, Berkeley and its contributors. *************************************************************************************************************** Drag and Drop 4.8.5: Copyright 1996 Daniel Dardailler. Copyright 1999 Matt Koss Permission to use, copy, modify, distribute, and sell this software for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Daniel Dardailler not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Daniel Dardailler makes no representations about the suitability of this software for any purpose. It is provided \"as is\" without express or implied warranty. *************************************************************************************************************** QTSvg 4.8.5: Copyright 2002 USC/Information Sciences Institute Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Information Sciences Institute not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Information Sciences Institute makes no representations about the suitability of this software for any purpose. It is provided \"as is\" without express or implied warranty. INFORMATION SCIENCES INSTITUTE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL INFORMATION SCIENCES INSTITUTE BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *************************************************************************************************************** QtXmlPatterns Module 4.8.5: W3C(c) SOFTWARE NOTICE AND LICENSE This license came from: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 This work (and included software, documentation such as READMEs, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. Permission to copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications: 1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software Short Notice should be included (hypertext is preferred, text is permitted) within the body of any redistributed or derivative code. 3. Notice of any changes or modifications to the files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.) THIS SOFTWARE AND DOCUMENTATION IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders. *************************************************************************************************************** Parts of the QcrashHandler 4.8.5: Copyright (c) 1998 by Bjorn Reese Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THIS SOFTWARE IS PROVIDED \`\`AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER. *************************************************************************************************************** QKeyMapper 1.0: Copyright 1985, 1987, 1998 The Open Group Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of The Open Group shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. *************************************************************************************************************** Modifiable Third Party Code. This Program includes some or all of the following Modifiable Third Party Code that Four Js obtained under the GNU Lesser General Public License (v2.1). - QTscript Module 4.8.5 Webkit-Webcore 2.2.4 Webkit-Webkit 2.2.4 Phonon 4.4 xOrg 0.8.8-10 EUC-JP Text Codec 4.8.5 Libiconv 1.9.1 Libstd C++ 3 QtHelp 4.8.5 The GNU Lesser General Public License, version 2.1 (LGPLv2.1) GNU Lesser General Public License Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the \"Lesser\" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a \"work based on the library\" and a \"work that uses the library\". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called \"this License\"). Each licensee is addressed as \"you\". A \"library\" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The \"Library\", below, refers to any such software library or work which has been distributed under these terms. A \"work based on the Library\" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term \"modification\".) \"Source code\" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a \"work that uses the Library\". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a \"work that uses the Library\" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a \"work that uses the library\". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a \"work that uses the Library\" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a \"work that uses the Library\" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable \"work that uses the Library\", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the \"work that uses the Library\" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and \"any later version\", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. *************************************************************************************************************** Modifiable Third Party Code. This Program includes some or all of the following Modifiable Third Party Code that Four Js obtained under the GNU Lesser General Public License (v3). JFreeChart v1.0.0 QtHelp 4.8.5 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, this License refers to version 3 of the GNU Lesser General Public License, and the GNU GPL refers to version 3 of the GNU General Public License. The Library refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An Application is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A Combined Work is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the Linked Version. The Minimal Corresponding Source for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The Corresponding Application Code for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License or any later version applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. Webkit-JavascriptCore CODE. The Licensed Software is a sub-component of QT commercial code offered by Nokia under alternative licenses, which is contained under portions of the following software license types. Certain components of the Webkit-JavascriptCore, including some owned by Nokia, are only available under licenses other than QT licenses. - GNU Library general public license pre-V2 - GNU LGPL Version 2 - GNU Library General Public License Version 2 - LGPL 2.0 or MPL 2.0 - University of Cambridge - Apple BSD-Style (2-point) - Apple BSD-Style (3-point) - Apple/Google BSD-Style - pthreads-win32 LGPL reference - Boost Software License (BSL) 1.0 Disclaimer from a file from 1991original written in Bell-Labs and originally copyrighted by Lucent. This component includes a parser generated by Bison, a GPL-licensed tool, that incorporates a skeleton parser distributed as part of Bison. Although the output is covered by the GPL, it is subject to an exception permitting it to be licensed under the same license as the work that incorporates the parser. --------------------------------------------------------------------------------------------------------------------------------- Modifiable Third Party Code. This Program includes some or all of the following Modifiable Third Party Code that Four Js obtained under the GNU Lesser General Public License prior to version 2. NOTE! The LGPL below is copyrighted by the Free Software Foundation, but the instance of code that it refers to (the kde libraries) are copyrighted by the authors who actually wrote it. GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. --------------------------------------------------------------------------------------------------------------------------------- GNU LGPL Version 2 referenced (many files with different copyright lines) /* * Copyright (C) * Copyright (C) . All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ --------------------------------------------------------------------------------------------------------------------------------- Library GPL 2.0 referenced (many files with different copyright lines) /* * Copyright (C) * Copyright (C) . All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * */ --------------------------------------------------------------------------------------------------------------------------------- LGPL 2. 0 or MPL 2.0 (many files with different copyright lines) /* * Copyright (C) * Copyright (C) . All rights reserved. * * The Original Code is Mozilla Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Alternatively, the contents of this file may be used under the terms * of either the Mozilla Public License Version 1.1, found at * http://www.mozilla.org/MPL/ (the \"MPL\") or the GNU General Public * License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html * (the \"GPL\"), in which case the provisions of the MPL or the GPL are * applicable instead of those above. If you wish to allow use of your * version of this file only under the terms of one of those two * licenses (the MPL or the GPL) and not to allow others to use your * version of this file under the LGPL, indicate your decision by * deletingthe provisions above and replace them with the notice and * other provisions required by the MPL or the GPL, as the case may be. * If you do not delete the provisions above, a recipient may use your * version of this file under any of the LGPL, the MPL or the GPL. */ --------------------------------------------------------------------------------------------------------------------------------- Version: MPL 1.1/GPL 2.0/LGPL 2.1 * Copyright (C) . All rights reserved. * * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the \"License\"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an \"AS IS\" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is Mozilla Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the \"GPL\"), * or the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * */ --------------------------------------------------------------------------------------------------------------------------------- A file from Lucent /**************************************************************** * * The author of this software is David M. Gay. * * Copyright (c) 1991, 2000, 2001 by Lucent Technologies. * Copyright (C) 2002, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. * * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that this entire notice * is included in all copies of any software which is or includes a copy * or modification of this software and in all copies of the supporting * documentation for such software. * * THIS SOFTWARE IS BEING PROVIDED \"AS IS\", WITHOUT ANY EXPRESS OR IMPLIED * WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. * ***************************************************************/ --------------------------------------------------------------------------------------------------------------------------------- GPL with special exception: on Bison output only in files: JavaScriptCore/generated/Grammar.h JavaScriptCore/generated/Grammar.cpp /* Skeleton implementation for Bison's Yacc-like parsers in C Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ --------------------------------------------------------------------------------------------------------------------------------- Lucent copyright and disclaimer on file: JavaScriptCore/wtf/dtoa.cpp /**************************************************************** * * The author of this software is David M. Gay. * * Copyright (c) 1991, 2000, 2001 by Lucent Technologies. * Copyright (C) 2002, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. * * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that this entire notice * is included in all copies of any software which is or includes a copy * or modification of this software and in all copies of the supporting * documentation for such software. * * THIS SOFTWARE IS BEING PROVIDED \"AS IS\", WITHOUT ANY EXPRESS OR IMPLIED * WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. * --------------------------------------------------------------------------------------------------------------------------------- pthreads-win32 Lesser GPL reference /* * Pthreads-win32 - POSIX Threads Library for Win32 * Copyright(C) John E. Bossom * Copyright(C) Pthreads-win32 contributors * * Contact Email: rpj@callisto.canberra.edu.au * * The current list of contributors is contained * in the file CONTRIBUTORS included with the source * code distribution. The list can also be seen at the * following World Wide Web location: * http://sources.redhat.com/pthreads-win32/contributors.html * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library in the file COPYING.LIB; * if not, write to the Free Software Foundation, Inc., * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ --------------------------------------------------------------------------------------------------------------------------------- /* JavaScriptCore/wtf/wince/mt19937ar.c A C-program for MT19937, with initialization improved 2002/1/26. Coded by Takuji Nishimura and Makoto Matsumoto. Before using, initialize the state by using init_genrand(seed) or init_by_array(init_key, key_length). Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Any feedback is very welcome. http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space) */ /* * Copyright (C) 2008-2009 Torch Mobile Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ --------------------------------------------------------------------------------------------------------------------------------- BSD CODE. The Licensed Software contains all or portions of the University of Cambridge code. Copyright (c) 1997-2005 University of Cambridge. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the University of Cambridge nor the name of Apple Inc. nor the names of their contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------------------------------------------------------- BSD CODE. The program contains all or portions of the following 3rd party code. /* * Copyright (C) Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. \`\`AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ --------------------------------------------------------------------------------------------------------------------------------- BSD CODE. The program contains all or portions of the following 3rd party code. # Copyright (C) Apple Inc. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. Neither the name of Apple Computer, Inc. (\"Apple\") nor the names of # its contributors may be used to endorse or promote products derived # from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS \"AS IS\" AND ANY # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE # GOODS OR SERVICES;LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE #POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------------------------------------------------------- BSD CODE. The program contains all or portions of the following 3rd party code. // Copyright (c) , Google Inc. // All rights reserved. // Copyright (C) Apple Inc. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------------------------------------------------------- BSD CODE. The program contains all or portions of the following 3rd party code. /* * Copyright (C) 2009 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. /* This is the public header file for JavaScriptCore's variant of the PCRE library. While this library started out as a copy of PCRE, many of the features of PCRE have been removed. This library now supports only the regular expression features required by the JavaScript language specification, and has only the functions needed by JavaScriptCore and the rest of WebKit. --------------------------------------------------------------------------------------------------------------------------------- BSD CODE. The program contains all or portions of the following 3rd party code. Copyright (c) 1997-2005 University of Cambridge Copyright (C) 2002, 2004, 2006, 2007 Apple Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the University of Cambridge nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------------------------------------------------------ BSD CODE. The program contains all or portions of the following 3rd party code. * Copyright (C) 2009 University of Szeged * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF SZEGED \`\`AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL UNIVERSITY OF SZEGED OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ --------------------------------------------------------------------------------------------------------------------------- BSD CODE. The program contains all or portions of the following 3rd party code. /* JavaScriptCore/wtf/wince/mt19937ar.c A C-program for MT19937, with initialization improved 2002/1/26. Coded by Takuji Nishimura and Makoto Matsumoto. Before using, initialize the state by using init_genrand(seed) or init_by_array(init_key, key_length). Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Any feedback is very welcome. http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space) */ ------------------------------------------------------------------------------------------------------------------------------ BSD CODE. The program contains all or portions of the following 3rd party code. /* * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. * Copyright (C) 2009 Google Inc. All rights reserved. * Copyright (C) 2009 Torch Mobile, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of Apple Computer, Inc. (\"Apple\") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS \"AS IS\" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ --------------------------------------------------------------------------------------------------------------------------------- BSD CODE. The program contains all or portions of the following 3rd party code. /* * Copyright (C) 2008-2009 Torch Mobile Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ ---------------------------------------------------------------------------------------------------------------- BSD CODE. The program contains all or portions of the following 3rd party code. * * Copyright (C) 2007 Staikos Computing Services Inc. * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) * Copyright (C) 2008 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of Apple Computer, Inc. (\"Apple\") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS \"AS IS\" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ --------------------------------------------------------------------------------------------------------------------------------- BSD CODE. The program contains all or portions of the following 3rd party code. * Note: The implementations of InterlockedIncrement and InterlockedDecrement are based * on atomic_increment and atomic_exchange_and_add from the Boost C++ Library. The license * is virtually identical to the Apple license above but is included here for completeness. * * Boost Software License - Version 1.0 - August 17th, 2003 * * Permission is hereby granted, free of charge, to any person or organization * obtaining a copy of the software and accompanying documentation covered by * this license (the \"Software\") to use, reproduce, display, distribute, * execute, and transmit the Software, and to prepare derivative works of the * Software, and to permit third-parties to whom the Software is furnished to * do so, all subject to the following: * * The copyright notices in the Software and this entire statement, including * the above license grant, this restriction and the following disclaimer, * must be included in all copies of the Software, in whole or in part, and * all derivative works of the Software, unless such copies or derivative * works are solely in the form of machine-executable object code generated by * a source language processor. * * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS \"AS IS\" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. END OF Webkit-JavascriptCore 1.1.16 NOTICES AND INFORMATION ========================================================================= END OF QT NOTICES AND INFORMATION ========================================================================= " > "$tmpFile" cat "$tmpFile" | $PAGER 2>&1 rm "$tmpFile" >$NUL 2>&1 } #======================================================= # Show license terms of the package #------------------------------------------------------- show_license() { tmpFile="$TMPDIR/.license.tmp.$$${RANDOM}" echo " FOUR JS DEVELOPMENT TOOLS END USER LICENSE AGREEMENT This End User License Agreement (\"End User License Agreement\") is between you, either an individual or an entity, (\"Licensee\" or \"You\") and Four J's Development Tools Ltd. (\"Four J's\"). BY OPENING THE SEALED MEDIA PACKAGE, CLICKING ON 'ACCEPT' AT THE FOOT OF THIS AGREEMENT VIA THE WEB-SITE, USING THE LICENSED SOFTWARE, OR USING THE ACTIVATION KEY OF THE LICENSED SOFTWARE, YOU ACKNOWLEDGE THAT YOU HAVE READ THIS END USER LICENSE AGREEMENT, UNDERSTAND IT, AND AGREE TO BE BOUND BY ITS TERMS. IF YOU DO NOT SO AGREE, YOU HAVE NO RIGHTS TO USE THE LICENSED SOFTWARE; INSTEAD YOU MUST COMPLY IMMEDIATELY WITH THE PROCEDURES IN SECTION 8.3(ii) BELOW. IF YOU DO NOT AGREE TO BE BOUND BY THIS END USER LICENSE AGREEMENT AND HAVE NOT ALREADY USED THE LICENSED SOFTWARE, YOU MAY OBTAIN A REFUND UPON YOUR COMPLIANCE WITH THE STANDARD RETURN PROCEDURES OF FOUR J'S. THIS END USER LICENSE AGREEMENT IS EFFECTIVE AS OF THE DATE YOU OPEN THE SEALED MEDIA PACKAGE, USE THE LICENSED SOFTWARE, OR USE THE ACTIVATION KEY OF THE LICENSED SOFTWARE (THE \"EFFECTIVE DATE\"). 1. DEFINITIONS. As used in this End User License Agreement: \"Documentation\" means the user manuals (in written or electronic form) provided to Licensee along with the Licensed Software. \"Executable Code\" means the fully compiled version of a software program that can be executed by a computer and used by an end user without further compilation. \"Licensed Software\" means the software program or programs for which Licensee has purchased a license (including, for Licensees of the \"Class A\" products defined in Section 10.1 only, any runtime modules intended for redistribution by Licensee (the Redistributables\"), and any modified, updated or enhanced versions of such programs that Four J's may provide to Licensee pursuant to this End User License Agreement or to a separate Service Level Agreement. \"License Activation Key\" means the serial number that is purchased by Licensee from Four J's and is required to unlock the Licensed Software to make it function. The License Activation Key is synonymous with the License. \"Source Code\" means the human-readable version of a software program that can be compiled into Executable Code. 2. LICENSE GRANTS. Subject to Licensee's full compliance with the terms and conditions of this End User License Agreement, Four J's grants to Licensee (i) a non-exclusive, non-transferable license to use the Licensed Software (in Executable Code form only) only in accordance with the Documentation, and to make a single copy of the Licensed Software solely for backup or archival purposes; and (ii) (for Licensees of the \"Class A\" products defined in Section 10.1 only) a non-exclusive, non-transferable license to use, reproduce, and distribute (solely to end users who have purchased appropriate runtime licenses from Four J's) the Redistributables (in Executable Code form only) solely as part of an application developed by Licensee. Licensee may not distribute Redistributables on a standalone basis. The Licensed Software may only be used in accordance with the Documentation. Four J's grants to Licensee a non-exclusive, non-transferable license to use the Documentation. When applicable, Four J's will communicate a new activation key if Licensee certifies in writing that Licensee must install the Licensed Software on a new computer because of update, theft, or breakdown. This license is granted to Licensee only for the number of concurrent users specified in a valid purchase order accepted by Four J's and paid for by Licensee. Four J's will make certain Enhancements generally available to Licensee provided that Licensee separately subscribes to Support and Maintenance. Regardless of such subscription, if Four J's provides Licensee with any update of the Licensed Software, Licensee agrees to adopt such update within thirty (30) days of the release of each such update. If any such update is deemed urgent by Four J's in its reasonable, good faith discretion, Licensee shall make every reasonable effort to adopt such urgent update as soon as possible. The parties also acknowledge that the License Activation Key is the exclusive property of Licensee. 3. RESTRICTIONS ON USE. Licensee acknowledges that the Licensed Software and its structure, sequence, organization and Source Code constitute valuable trade secrets of Four J's and/or its suppliers. Accordingly, except as specifically authorized herein, Licensee agrees not to (a) modify, adapt, alter, translate, or create derivative works from the Licensed Software; (b) sublicense, lease, rent, loan, disclose, or otherwise transfer or allow use of the Licensed Software to or by any third party, including outsourcing personnel, (c) reverse engineer, decompile, disassemble, or otherwise attempt to derive the Source Code of the Licensed Software; or (d) otherwise use or copy the Licensed Software. Notwithstanding the foregoing, decompiling the Licensed Software is permitted to the extent the laws of Licensee's jurisdiction give Licensee the right to do so to obtain information necessary to render the Licensed Software interoperable with other software; provided, however, that Licensee must first request such information from Four J's and Four J's may, in its discretion, either provide such information to Licensee or impose reasonable conditions, including a reasonable fee, on such use of the Licensed Software to ensure that Four J's' and its suppliers' proprietary rights in the Licensed Software are protected. Licensee agrees not to use the license rights granted to the Licensed Software to develop or market a product similar to or competitive with the Licensed Software. 4. ORDERING, ACCEPTANCE, PRICING AND PAYMENTS. The terms and conditions of Licensee's standard purchase order (or any other document submitted) that conflict with or in any way purport to amend any of the terms and conditions of this End User License Agreement are hereby specifically objected to and will be of no force or effect. Four J's will use commercially reasonable efforts to meet the requested delivery availability dates and quantities for any purchase order it accepts but reserves the right to reject purchase orders. Upon acceptance of a purchase order and download of the Licensed Software by Licensee or delivery of a Media Kit by Four J's, Four J's shall provide Licensee with applicable software keys authorizing use of the Licensed Software. Licensee will be responsible for installing the Licensed Software on its computers as permitted under this End User License Agreement. The Licensed Software will be deemed accepted upon delivery. If you are installing the Licensed Software on behalf of the Licensee listed on a purchase order, such Licensee must be the party clicking through the \"I Accept\" button and agreeing to the terms of this End User License Agreement. If you do so on behalf of Licensee, you and/or your organization shall be jointly bound by the terms of this End User License Agreement and responsible for any breach hereof. 5. WARRANTIES 5.1 Performance. (a) For a period of sixty (60) days after shipment of the Licensed Software (other than the \"Class B\" products defined in Section 10.2) to Licensee (the \"Software Warranty Period\"), Four J's warrants that the Licensed Software, when used as delivered by Four J's and as permitted under this End User License Agreement and in accordance with the Documentation (including use on a computer hardware and operating system platform supported by Four J's), will operate substantially as described in the Documentation. (b) For the \"Class B\" products defined in Section 10.2, Four J's makes no warranties, express, implied or statutory. THE \"CLASS B\" PRODUCTS DEFINED ON SECTION 10.2 ARE PROVIDED ON AN AS IS BASIS. (c) Four J's does not warrant the Licensee's use of the Licensed Software will be error free or uninterrupted. Four J's will, at its own expense and as its sole obligation and Licensee's exclusive remedy for any breach of the above warranty, use commercially reasonable efforts to correct or provide a workaround for any reproducible error in the Licensed Software reported to Four J's by Licensee in writing during the Software Warranty Period or, if Four J's determines in its reasonable business judgment that it is commercially impractical to correct the error or provide a workaround, Four J's will refund to Licensee the license fee paid for the Licensed Software, in which case this End User License Agreement and Licensee's right to use the Licensed Software will be terminated. Any error correction, workaround or subsequent code delivery provided to Licensee will not extend the original Software Warranty Period. 5.2 Disclaimers. THE EXPRESS WARRANTIES IN THIS SECTION 5 ARE IN LIEU OF ALL OTHER WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, REGARDING THE LICENSED SOFTWARE AND DOCUMENTATION, INCLUDING ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. Because some jurisdictions do not permit the exclusion of implied warranties, this disclaimer may not apply to you. LICENSEE ACKNOWLEDGES THAT IT HAS RELIED ON NO WARRANTIES OTHER THAN THE EXPRESS WARRANTIES IN THIS END USER LICENSE AGREEMENT AND THAT FOUR J'S SHALL NOT BE BOUND BY ANY WARRANTIES ARE MADE BY ANY THIRD PARTY. This warranty gives you specific rights, and you may also have other rights that vary by jurisdiction. 6. INFRINGEMENT CLAIMS. Four J's will defend at its own expense any action against Licensee brought by a third party to the extent that the action is based upon a claim that the Licensed Software infringes any such third party's U.S. copyrights or misappropriates any such third party's trade secrets recognized as such under the Uniform Trade Secret law, and Four J's will pay those costs and damages finally awarded against Licensee in any such action that are specifically attributable to such claim or those costs and damages agreed to in a monetary settlement of such action. The foregoing obligations are conditioned on Licensee notifying Four J's promptly in writing of such action, Licensee giving Four J's sole control of the defense thereof and any related settlement negotiations, and Licensee cooperating and, at Four J's' request and expense, assisting in such defense. If the Licensed Software becomes, or in Four J's' opinion is likely to become, the subject of an infringement claim, Four J's may, at its option and expense, either (a) procure for Licensee the right to continue using the Licensed Software, (b) replace or modify the Licensed Software so that it becomes non-infringing, or (c) accept return of the Licensed Software and give Licensee a refund for the License Fees paid by Licensee less a reasonable allowance for the period of time Licensee has used the Licensed Software. Notwithstanding the foregoing, Four J's will have no obligation under this Section 6 or otherwise with respect to any infringement claim based upon (i) any use of the Licensed Software not in accordance with this End User License Agreement or for purposes not intended by Four J's, (ii) any use of the Licensed Software in combination with other products, equipment, software, or data not supplied by Four J's to the extent such combination is the cause of any claim, (iii) any use of any release of the Licensed Software other than the most current release made available to Licensee, or (iv) any modification of the Licensed Software by any person other than Four J's. THIS SECTION 6 STATES FOUR J'S' ENTIRE LIABILITY AND LICENSEE'S SOLE AND EXCLUSIVE REMEDY FOR INFRINGEMENT CLAIMS AND ACTIONS. 7. LIMITATION OF LIABILITY. A. Exclusion of Certain Damages. IN NO EVENT WILL FOUR J'S BE LIABLE FOR ANY CONSEQUENTIAL, INDIRECT, EXEMPLARY, SPECIAL OR INCIDENTAL DAMAGES, INCLUDING ANY LOST DATA AND LOST PROFITS, ARISING FROM OR RELATING TO THIS END USER LICENSE AGREEMENT. Some states do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you. B. Liability Limitation. FOUR J'S' TOTAL CUMULATIVE LIABILITY IN CONNECTION WITH THIS END USER LICENSE AGREEMENT AND THE LICENSED SOFTWARE AND DOCUMENTATION, WHETHER IN CONTRACT OR TORT OR OTHERWISE, WILL NOT EXCEED THE AMOUNT OF FEES PAID TO FOUR J'S HEREUNDER. C. Critical Control Applications. THE LICENSED SOFTWARE IS NOT INTENDED FOR USE IN CONNECTION WITH ANY NUCLEAR, AVIATION, MASS TRANSIT OR MEDICAL APPLICATION OR ANY OTHER INHERENTLY DANGEROUS APPLICATION THAT COULD RESULT IN DEATH, PERSONAL INJURY, CATASTROPHIC DAMAGE OR MASS DESTRUCTION, AND LICENSEE AGREES THAT FOUR J'S WILL HAVE NO LIABILITY OF ANY NATURE AS A RESULT OF ANY SUCH USE OF THE LICENSED SOFTWARE. D. Allocation of Risk. LICENSEE ACKNOWLEDGES THAT THE FEES PAID HEREUNDER REFLECT THE ALLOCATION OF RISK SET FORTH IN THIS END USER LICENSE AGREEMENT AND THAT FOUR J'S WOULD NOT ENTER INTO THIS END USER LICENSE AGREEMENT WITHOUT THESE LIMITATIONS ON ITS LIABILITY. IN ADDITION, LICENSEE DISCLAIMS ALL LIABILITY OF ANY KIND OF FOUR J'S' SUPPLIERS. 8. TERM AND TERMINATION. 8.1 Term. The term of this End User License Agreement will begin on the Effective Date and will continue indefinitely unless terminated pursuant to Section 8.2. 8.2 Termination. Licensee may terminate this End User License Agreement at any time, with or without cause, upon written notice to Four J's. This End User License Agreement will automatically terminate if (a) Licensee breaches any provision in Section 3 or Section 9.1, or (b) Licensee breaches any other provision of this End User License Agreement and does not cure the breach within thirty (30) days after receiving written notice thereof from Four J's. 8.3 Effects of Termination. Upon termination of this End User License Agreement for any reason, (i) all license rights granted in this End User License Agreement will immediately cease to exist, (ii) Licensee must promptly discontinue all use of the Licensed Software, erase all copies of the Licensed Software from Licensee's computers, and return to Four J's all copies of the Licensed Software and Documentation on tangible media in Licensee's possession or control and certify in writing to Four J's that it has fully complied with these requirements, and (iii) (for Licensees of the \"Class A\" products defined in Section 10.1 only) Licensee must promptly discontinue the use, reproduction, and distribution of the Redistributables. Except under the provisions of Section 5.1(c) and 6(c) of this End User License Agreement, Licensee shall not be entitled to any refund of any amounts paid for Licensed Software. Sections 1 (\"Definitions\"), 3 (\"Restrictions on Use\"), 5 (\"Warranties\"), 7 (\"Limitation of Liability\"), 8.3 (\"Effects of Termination\"), and 9 (\"General\") of this End User License Agreement will survive termination for any reason. 9. GENERAL. 9.1 Proprietary Rights. As between the parties, the parties acknowledge that the Licensed Software and Documentation, and all worldwide intellectual property rights therein, are the exclusive property of Four J's and its suppliers. All rights in and to the Licensed Software not expressly granted to Licensee in this End User License Agreement are reserved by Four J's and its suppliers. Without limiting the foregoing, no license to use the trademarks or trade names of Four J's or its suppliers is granted hereby. Licensee will not remove, alter, or obscure any proprietary notices (including copyright notices) of Four J's or its suppliers on the Licensed Software or the Documentation. Licensee acknowledges that the Licensed Software contains Confidential Information and valuable trade secrets and proprietary information of Four J's, that any actual or threatened breach of Section 3 or Sections 9.1 or 9.2 will constitute immediate, irreparable harm to Four J's for which monetary damages would be an inadequate remedy, and that injunctive relief is an appropriate remedy for such breach. The parties also acknowledge that the License Activation Key is the exclusive property of Licensee. 9.2 Confidentiality. \"Confidential Information\" means all information disclosed by the one party (the \"Disclosing Party\") to the other party (the \"Receiving Party\"), including, without limitation, any and all information or proprietary materials (in every form and media) which have been or are hereafter disclosed and which are not generally known in the relevant trade or industry. Confidential Information includes, without limitation, all trade secrets and intellectual property rights, and all existing or contemplated products and planned features, business plans, pricing, discounts, market research data, whether containing historic, current or future-related information, the Licensed Software (including any bugs or errors therein), and Documentation. \"Confidential Information\" shall not include information that: (a) is public or becomes known to the public through no breach of an obligation of confidentiality by the Receiving Party, (b) is independently developed by the Receiving Party with no access to the Disclosing Party's Confidential Information or (c) is received from a third party not as a result of any breach of any party's breach of confidentiality obligation. The Receiving Party may disclose Confidential Information of the Disclosing Party to the extent such disclosure is required by law, court order or order of a governmental agency with jurisdiction; provided that the Receiving Party notifies the Disclosing Party prior to such disclosure and gives the Disclosing Party a reasonable opportunity to seek a protective order or to contest such requirement. The Receiving Party shall treat all Confidential Information as strictly confidential, and shall use the same care to prevent disclosure of such information as such party uses with respect to its own confidential information, which shall in no event be less than a reasonable degree of care. The Receiving Party shall: (aa) disclose such Confidential Information to (i) only those authorized employees and directors of the Receiving Party whose duties justify their need to know such information and who have agreed in writing to maintain the confidential and/or proprietary status of such Confidential Information; or (ii) only those third parties required for the performance of the Receiving Party's obligations under the End User License Agreement pursuant to a written agreement containing provisions as least as protective as the confidentiality provisions herein; and (bb) use such Confidential Information only in connection with the furtherance of the End User License Agreement and for the benefit of both parties thereto. 9.3 Compliance with Laws. Licensee will comply with all applicable export and import control laws and regulations in its use of the Licensed Software and, in particular, Licensee will not export or re-export the Licensed Software without all required United States and foreign government licenses. Licensee will defend, indemnify, and hold harmless Four J's from and against any violation of such laws or regulations by Licensee or any of its agents, officers, directors, or employees. 9.4 Assignments. Licensee may not assign or transfer, by operation of law or otherwise, any of its rights or obligations under this End User License Agreement (including its licenses with respect to the Licensed Software) to any third party without Four J's' prior written consent except pursuant to a merger, sale, acquisition, corporate reorganization or other change of control event of Licensee in its entirety. Any attempted assignment or transfer in violation of the foregoing will be void. Four J's may transfer or assign this End User License Agreement in connection with any merger, sale, acquisition, consolidation, corporate reorganization or change of control event, including sale of any or all of the assets to which this End User License Agreement might relate. 9.5 U.S. Government End Users. If Licensee is a branch or agency of the United States Government, the following provision applies. The Licensed Software and Documentation are comprised of \"commercial computer software\" and \"commercial computer software documentation\" as such terms are used in 48 C.F.R. 12.212 (SEPT 1995) and are provided to the Government (i) for acquisition by or on behalf of civilian agencies, consistent with the policy set forth in 48 C.F.R. 12.212; or (ii) for acquisition by or on behalf of units of the Department of Defense, consistent with the policies set forth in 48 C.F.R. 227.7202-1 (JUN 1995) and 27.7202-3 (JUN 1995). 9.6 Notices. All notices, consents and approvals under this End User License Agreement must be delivered in writing by courier, by electronic facsimile (fax), or by certified or registered mail, (postage prepaid and return receipt requested) to the other party, and will be effective upon receipt or three (3) business days after being deposited in the mail as required above, whichever occurs sooner. 9.7 Governing Law and Venue. This End User License Agreement will be governed by the laws of California, as such laws apply to contracts between California residents to be performed entirely within California. The United Nations Convention on Contracts for the International Sale of Goods does not apply to this End User License Agreement. You agree that any action or proceeding arising from or relating to this End User License Agreement brought by you must be brought in a court in California , and each party irrevocably submits to the jurisdiction and venue of any such court in any such action or proceeding. Notwithstanding the foregoing: (i) You consent to entry and execution of any judgment against You in any jurisdiction where You conduct or maintain business or assets; and, (ii) You agree that Four J's may bring an action against You in any jurisdiction it elects for the purpose of enforcing its rights under this End User License Agreement and/or related to its intellectual property rights. 9.8 Remedies. Except as provided in Sections 5 and 6 above, the parties' rights and remedies under this End User License Agreement are cumulative. If any legal action is brought to enforce this End User License Agreement, the prevailing party will be entitled to receive its attorneys' fees, court costs and other collection expenses, in addition to any other relief it may receive. 9.9 Maintenance or Support. Four J's is not required to provide any maintenance or support services to any party under this End User License Agreement. Maintenance and support, to the extent offered, shall be under a separate Service Level Agreement. 9.10 Miscellaneous. All waivers must be in writing. Any waiver or failure to enforce any provision of this End User License Agreement on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion. If any provision of this End User License Agreement is unenforceable, such provision will be changed and interpreted to accomplish the objectives of such provision to the greatest extent possible under applicable law and the remaining provisions will continue in full force and effect. The headings of sections of this End User License Agreement are for convenience and are not to be used in interpreting this End User License Agreement. As used in this End User License Agreement, the word \"including\" means \"including but not limited to.\" This End User License Agreement constitutes the entire agreement between the parties regarding the subject hereof and supersedes all prior or contemporaneous agreements, understandings, and communication, whether written or oral. This End User License Agreement may be amended only by a written document originally signed in ink by both parties. 10. PRODUCTS. 10.1 \"Class A\" products are the products primarily used for development purposes. 10.2 \"Class B\" products are the products primarily used to deploy applications developed with \"Class A\" products. " > "$tmpFile" cat "$tmpFile" | $PAGER 2>&1 rm "$tmpFile" >$NUL 2>&1 } #======================================================= # Show usage of the package and exit #------------------------------------------------------- show_usage() { if [ -n "$1" ]; then # usage text has to be displayed because a command-line parsing error has been # raised error="$1" shift do_error "$@" fi echo " $gbl_basename [options] This script will install Genero Desktop Client 2.50.36 for l64xl25 by unpacking the embedded tar file and executing the ./gdc-install installation utility. Options: -a | --accept : Bypass the display and the prompt for acceptance of the Four Js Development Tools Europe Ltd Software License Agreement. Using this option indicates that you have read and you accept the License Agreement contained in the file 'license.txt' (in the 'release' directory of the install directory). -c | --check : Check integrity of the archive and gzip binary embedded in this program and exit. -k | --keep : Do not delete working directory when done. -l | --list : Print the list of files in the archive and exit. -h | --help : Show help and exit. -i | --install : Install the product. This switch is optional and is only here for backward compatibility. -n | --nocheck : Escape the checksum test on archive included in installer. -q | --quiet : Non verbose installation. This option implies '--accept' (see above) and if '--target' is not used, it will use the default install directory (/opt/fourjs/gdc). If you don't specify any parameters, all default values will be used during installation process. -r | --root : With this option you allow 'root' user to install the package. Installing as root is not recommended. You should install while logged in as a non-root user. -V | --version : Show info about this program and exit. -x | --extract : Extract the contents of this program, but do not run gdc-installer. This option implies '--keep'. Options which take one argument: -f | --force : Support 'backup', 'overwrite' and 'remove' as a parameter. 'backup' will force backing up of install directory if it already exists, 'overwrite' will just overwrite installation files while 'remove' will delete destination directory before installing this product. -s | --show : Support 'license' as a parameter. Displays the license of this product. -t | --target : Specify where to install this product. -w | --work : Specify the working directory. By default, a temporary directory is created in \$TMPDIR or /tmp." show_usage_local echo if [ -n "$1" ]; then exit "$error" else exit 0 fi } #======================================================= # Setup the correct options for 'cp' command. It needs #+to handle symbolic links during copy. #------------------------------------------------------- test_copy() { tmpFile="$TMPDIR/.test_copy$$" tmpFileBis="$TMPDIR/.test_copy_bis$$" touch "$tmpFile" >$NUL 2>&1 [ -f "$tmpFile" ] && rm -f "$tmpFileBis" >$NUL 2>&1 cmd_cp="" # prfd if [ -z "$cmd_cp" ] then cp -prfd "$tmpFile" "$tmpFileBis" >$NUL 2>&1 [ $? -eq 0 ] && cmd_cp="cp -prfd" fi # prfP if [ -z "$cmd_cp" ] then cp -prfP "$tmpFile" "$tmpFileBis" >$NUL 2>&1 [ $? -eq 0 ] && cmd_cp="cp -prfP" fi uname -s | grep OSF1 >$NUL 2>&1 if [ $? -eq 0 ] then # pRf if [ -z "$cmd_cp" ] then cp -pRf "$tmpFile" "$tmpFileBis" >$NUL 2>&1 [ $? -eq 0 ] && cmd_cp="cp -pRf" fi else # prfh if [ -z "$cmd_cp" ] then cp -prfh "$tmpFile" "$tmpFileBis" >$NUL 2>&1 [ $? -eq 0 ] && cmd_cp="cp -prfh" fi fi # prf (default fallback) if [ -z "$cmd_cp" ] then cmd_cp="cp -prf" fi #-- check if symlinks are correclty copied tmpDirectorySource="$TMPDIR/tempdirgstsrv_src$$" tmpDirectoryDestination="$TMPDIR/tempdirgstsrv_dst$$" mkdir "$tmpDirectorySource" >$NUL 2>&1 touch "$tmpDirectorySource/file" >$NUL 2>&1 ln -s "$tmpDirectorySource/file" "$tmpDirectorySource/link" >$NUL 2>&1 $cmd_cp "$tmpDirectorySource" "$tmpDirectoryDestination" >$NUL 2>&1 test -h "$tmpDirectoryDestination/link" || cmd_cp=mv rm -f "$tmpFile" "$tmpFileBis" >$NUL 2>&1 rm -rf "$tmpDirectorySource" "$tmpDirectoryDestination" >$NUL 2>&1 export cmd_cp } #======================================================= # Determine what pager to use: more or less (prefer less #+if available. #------------------------------------------------------- test_pager() { PAGER=less type $PAGER >$NUL 2>&1 || \ PAGER=more export PAGER } #======================================================= # Greet the user and tell him what package he is about to install #------------------------------------------------------- welcome_user() { $cmd_clear #-- 'id -u' is not supported on all system ID=`id | awk ' {print $1} ' | sed 's/uid=//' | sed 's/(.*//'` : ${UID=$ID} if [ "$UID" -eq 0 ]; then if [ ! -z "$gbl_root" ]; then message="WARNING - You are about to run this script as root. Installing programs as root can seriously damage your system ! Unless you obtained it from a trusted source, you run the risk of installing trojan horses or virii - not to mention the fact that the installation sequence itself might inadvertantly harm your system. Installing as a normal user is recommended for this application. Disclaimer : we disclaim any responsibility in case of something wrong happen." question="Do you wish to continue ?" ask_yes_no_cancel "$question" "Y" "$message" [ $? -eq 1 ] && exit_install 2 else exit_install $USER_IS_ROOT fi fi case "$action" in extract) word="extract";; *) word="install";; esac message="You are about to $word : Genero Desktop Client 2.50.36 (c) Copyright Four Js Development Tools Europe Ltd. 2002, 2017. This script will attempt to automatically set Genero Desktop Client 2.50.36 up on your computer." if [ -z "$gbl_quiet" ]; then question="Do you wish to continue ?" ask_yes_no_cancel "$question" "Y" "$message" [ $? -eq 1 ] && exit_install 2 else echo "$message" echo fi } #======================================================= # Create environment file to execute core installer #+later #------------------------------------------------------- create_core_installer_envfile() { echo "INSTALLDIR=\"$INSTALLDIR\"; export INSTALLDIR" >.install echo "WORKINGDIR=\"$WORKINGDIR\"; export WORKINGDIR" >>.install echo "TMPDIR=\"$TMPDIR\"; export TMPDIR" >>.install echo "TERM=$TERM; export TERM" >>.install echo "gbl_keep=$gbl_keep; export gbl_keep" >>.install echo "gbl_quiet=$gbl_quiet; export gbl_quiet" >>.install echo "gbl_force=$gbl_force; export gbl_force" >>.install echo "gbl_target=$gbl_target; export gbl_target" >>.install echo "gbl_color=$gbl_color; export gbl_color" >>.install echo "cmd_echo=\"$cmd_echo\"; export cmd_echo" >>.install echo "cmd_cp=\"$cmd_cp\"; export cmd_cp" >>.install #-- @@PRODUCT_SHORT_NAME specific variables echo "gbl_no_desktop=\"$gbl_no_desktop\"; export gbl_no_desktop" >>.install } #------------------------------------------------------- parse_args_export_local() { export gbl_no_desktop } #------------------------------------------------------- parse_args_init_local() { gbl_no_desktop= } #------------------------------------------------------- parse_args_local() { eat=255 case "$1" in --no-desktop) gbl_no_desktop=1 eat=0 ;; esac return $eat } #------------------------------------------------------- show_usage_local() { echo " Options specific to gdc installation script : --no-desktop : Do not install desktop bindings. " } ######################################################################### # MAIN ######################################################################## # # set up debug mode # [ -n "$XIBDEBUG" ] && export FGLINSTALLDEBUG="$XIBDEBUG" [ "$FGLINSTALLDEBUG" = "1" ] && set -x # # call the script the right way # self_call "$@" shift : ${TMPDIR=/tmp}; export TMPDIR gbl_basename=`basename $0` temporaryDirname=`dirname $0` gbl_dirname=`cd "$temporaryDirname" 2>/dev/null && pwd || echo "$temporaryDirname"`; export gbl_dirname gbl_tgzArchive=gdc.tar.bz2 gbl_tarArchive=gdc.tar coreInstaller=gdc-install silentInstall=.gdc-silent # # init the variables needed by the installation program # init_global_variable # # determine the good shell command to use # test_echo test_color test_copy test_pager # # init the shell commands needed by the installation program # init_command # # parse the arguments passed to this shell-script # parse_args "$@" # # handle signal # trap 'exit_install $SIGNAL_TRAPPED' HUP INT QUIT KILL TERM # # greet the user and tell him what package he is going to install # [ "$gbl_action" != "list" -a "$gbl_action" != "check" ] && welcome_user # # display license (except if --accept option was specified) # [ -z "$gbl_license" ] && { show_license question="Do you agree to the above license terms ?" ask_yes_no_cancel "$question" "N" [ $? -eq 0 ] && gbl_license=1 || exit_install $LICENSE_NOT_AGREED } # # display third-party licenses (except if --accept option was specified) # [ -z "$gbl_license_3rdparty" ] && { show_license_3rdparty [ -z "$gbl_license_3rdparty" ] && { question="Do you agree to those third-party products license terms ?" ask_yes_no_cancel "$question" "N" [ $? -eq 0 ] && gbl_license_3rdparty=1 || exit_install $LICENSE_NOT_AGREED } } # # create the working directory # make_working_directory # # move to it # cd "$WORKINGDIR" >$NUL 2>&1 # # check if we have enough space on disk to extract bzip2 and #+archive from this shell-script # check_if_enough_space_on_disk "$WORKINGDIR" "164688" # # extract bzipped archive and bzip2 binary from this shell-script # get_binaries_from_file # # add pwd to PATH, for bzip2 and $coreInstaller # PATH=.:$PATH # # check the integrity of bzipped archive and bzip2 binary # [ -z "$gbl_nocheck" ] && check_binaries_integrity # # it's time to exit if '--check' option was specified # [ "$gbl_action" = "check" ] && exit_install 0 # # list archive content and exit if '--list' option was specified # [ "$gbl_action" = "list" ] && { list_archive_content; exit_install 0; } # # extract archive content to working dir # extract_archive_content # # put the execute flag of core installer # chmod +x $coreInstaller >$NUL 2>&1 # # it's time to exit if '--extract' option was specified # [ "$gbl_action" = "extract" ] && { create_core_installer_envfile; exit_install 0; } # # disable signal handling (enabled again in $coreInstaller) # signals_untrap # # we execute core installation script # /bin/sh $coreInstaller exit $? ELF>@@.@8@@@@@@@@@@````Q`Q !x(x(Qx(Q@@ PtdAAllQtd/lib64/ld-linux-x86-64.so.2GNU%+(#!* " &%$)   '  @ @3g @34 @+R @4/ @K @@L@ @30@@@)qP@t+Q+Q'`@p@@ @x@D@@"@'`@@=@'@( @&0@@@YP@ `@p@r@p@.@@+Q@]6@'@; libc.so.6strcpystdoututimeungetcstrerrorgetenvfchmodfchownperrormallocremoveisattyfflush__xstat64fclosefprintfstrcatstdinferrorstrstrsignalstrncpyfdopenfreadstrcmpfgetcstderr__lxstat64fputc__ctype_b_locfwriterewind__errno_locationexitfileno__libc_start_mainstrlenfreefopen64__gmon_start__GLIBC_2.3GLIBC_2.2.5ii Jui Tx+Q*+Q+Q+Q&H*QP*QX*Q`*Qh*Qp*Qx*Q*Q*Q *Q *Q *Q *Q *Q*Q*Q*Q*Q*Q*Q*Q*Q*Q+Q+Q+Q+Q +Q(+Q0+Q 8+Q!@+Q"H+Q#P+Q$X+Q%`+Q'h+Q(p+Q)H*H5%%h%h%h%h%h%h%h%zhp%rh`%jh P%bh @%Zh 0%Rh %Jh %Bh%:h%2h%*h%"h%h%h% h%h%hp%h`%hP%h@%h0%h %h%h%h%h %h!%h"%h#%h$%h%H1I^HHPTIP@H@HP3@fHHAHtHÐ=AUHu6H HHt fffHH H HHuffffffffH=UHtHt(*QÐЈW@7GGGGGGffffff fWffffffHfD$D$\$D$YYXyf(Ð1?uHǃ~1ffff1AffHc9IH 9)Ήy֐fffUHS1H8HHD$H|$HcH|$0ÈDnt1Hc9(}KHcHcT9ވ(|H8[]fffffffffSHt Hމ1҉[fffffffffAWIAVAUIATUSH(TLDD! !L!H|$LEt$LIƅuq=!fffLXH$L麈HSLIqE~DHLH|$LFL$LtH\$HLL$DLD$@HL$<LH|$$H$vHD$L 1H\$HLL$DLD$@HL$@1(fffffffffff;=&!~=!Ð=uH @Jfffffff=uH=n0Q4Q@1xffffffH=H$tU=t:s~0=9}&H *H= AA)A@1H,=R =t=tH4Quj=tHH=0Q@1H=HtP0Q8H@H=[1tH`H=A@1UHFH='(@1;H,H= `@0Q1H @ffffffffffHHHH= @1:`HH= H0@1 .ffffffffffH=t0HtH=U `@1iH=ZmffffffHH-H= @1"H=&qfffffHH= H@1hffffffH=t>H8@H= 1=itHv @fffffHH=E HV@1RffHH  @7=]fffffffffATIUS9~.fffL)9H5  _[]A\fHH\$Hl$HHHTH=w&HHƅH\$Hl$HH=? Hھ@1Ka=ffffSG@HtH[H1Hl$HH\$1tH+HHtHH\$Hl$HÉffffffHHHuD$1%=‰HĘffHHHY1҅uT$ʉHĘffHH+Q:uHfffffffffHHM HH$HO HD$uHfffffffffff5 Suߋ 5 [ efff1fffffffffHH$Hl$Ld$IH3L)19|HcHLH4Q)4Qx~9AH=H AY@@LLȹ4Q@1MC두0QH @S4Qt#=4QH[ @@"H4QLD$%=@t O4QH p@=4LQ4QH @.m@4Q!u@0Q\@uH4QH0QJ@0QH랋@ffffffffATUHSHHE1A4QdtA=)u HĐ[]A\Ð4QH @H=1ȃt4Q{BC&Et =pH3H-4HS ~.H=4Qc@1 4QH=5HHH- H =`{t. H z~@&a ~H F@HF H='4Q@16D0Q=jY4Q9G=9'0QH H=@1H x@H@fuG@4Qj@0QHjHHtDH= uHĘ[]ù4QH@H=1G4Qv=7(H4QD$%=@SG@4QHH~.H=4Qc@1 4QH=7HHtt.H @W{8*4QHI@H=_1x@iH=Ju H3H7H=@1,H x@HP4QHp@:84QHI@Wm@4QhQuH؃=Io@+ffffffH4H=``@HH1mfffffffffSH4HH=-[H¾x@1=fffffffffHHH=H@1ffHHcTHtHfffHHH@HffffffffffATHIUHSt7HHHt%fffHHHuLHCH[]A\H}LH*xRLHHDHfffffffffffAWAVIHAUATUSHgHHE1AfA|-LE1HffffHEB% ftHIc(IńtHHP% fuAE~ADAM19}Hc*98Q|Hcƾ8Qƀ8QI>IPH[]A\A]A^A_ÐAUI@ATU SHH4]h @  9  :@+@4Q@0QIu`,Q8He`,Q`,QtfffHd{C t UCuHqC 6CuHotQffffHStH_0Ht H H9t[ËSuGt/tuGCC۸ҋGCC1D@믃 ʸt1띃truuA9Ct wL¸cCt RHtCt9Cx|C-fffffθA9CuCt H-tCt9Cx|CHHH\$Hl$HtHo0Ht H9}tH\$Hl$HHuHu;Hu Hu)Hu(HuHs0H{HS@HC01H{HS@H{HS@HHS@HH$Hl$Ld$HAHۺAHC8Hu HC8=@=@H{@uHC@=@H{HкHtz@ @$@ ǀt HC0C CC$C(H@h,Hǀ` HǀX HǀP @0D`41ffffH$Hl$Ld$HffffffffAWAVAUATUShH@QfffC LGDPDE1AA99AG@DW(GWm}MtAMtAH|$t HT$H|$t HD$Dl$$Euwu_HUHH$HD$H$H|$DžHAAE2=AuD\$$EMt AMt AH|$t HT$H|$t HT$MtA$HDžMHH\$(Hl$0Ld$8Ll$@Lt$HL|$PHX鳱H} \H}ٰH}BMtA$Dž4HMH<$)þHc9uH}裯MtE,$DfffHfffffffffH8Ld$E1HH\$Hl$Ll$ Lt$(L|$0HHT$AMEtHtAw|$wMAvAHtMt ADŽ$1H\$Hl$Ld$Ll$ Lt$(L|$0H8H谮tHtMtADŽ$뱿tHIHtEADŽ$AƄ$I,$ADŽ$AƄ$IDŽ$IDŽ$IDŽ$~/ffffA$AAIHcEBT!A$׋t$I$DstHtA$LXA$AƄ$A$ID$I$LHEoffHSHtHtLǃtHtǃ[Àu H[鰮HfHtffAVHAUAATIUSHtHHǃEt&MtA$ǃ1[]A\A]A^fffEuMtA$ǃDHfffH;HuH;HjtnuUt+DEuMtA$ǃDRMtA$Dǃ+-MtA$H;tusMtA$ǃH LsLͫH;HBuLMtA$ǃ{MtA$HeǃVfffHthtHtdžHt.Ht)HtdžHHHtdžHtfffffHHH\$XHl$`Ld$hLl$pHIALt$xL$HDDʋ$t,Ht'Mt"E~A ExA x~.H\$XHl$`Ld$hLl$pLt$xL$HĈÅɸHDHD$8HD$@HD$HuHL$$Hl$Dl$D$ .At,tHiDh+D$ HQ1QHB?ffffffHHH\$XHl$`Ld$hLt$xHILl$pL$HADDt!HtMtAwEx A~4ffffH\$XHl$`Ld$hLl$pLt$xL$HĈHHD$8HD$@HD$HuHL$$Hl$Dt$D$ At,tHDx+D$ H1aD$ tHGH5 AfffffffAWE1AVAιAUIATA UHSHIH|$t$D$1HHD$tOffÃslsOr>HHP%ftD`HEuEa@H\$AHHDH@HEMt A}EHh1Ht;EtfEADN HA H|$ DM1D3HtHĸ[]A\A]A^A_H; tH; tH¦1ЋL$LD$ E11HH|$ HeHLjHR|$HE1wAD$ffffffffH1ɾH1fffffffffffHt3HHH|$T$ttHÉfff1fffffffffHH\$HHH|$ T$ DH\$Hffffffff1fffffffffHHH\$Hl$HtBH/t[1E11HH|$L$u)H;-ctH;-btHH\$Hl$HE11ɺH1HH|$6fffO‰HHkHQE1BHc;<|AЉD)uDÉLJLJffffffff~5ffffHcOtHWPGtѐfffffffffffS~0HcOtHWPGtЉP ~0HcOtHWPGtЉى ~0HcOtHWPGtЉى ~0HcOtHWPGtЋ[ى ffffff@~3ffHcOtHWPGtЋى ÐG|1fffffHcрtG|G|~ېffffffAVAUATUSHHLo8Lw@HoHS|E1DZE9IcAE9DŽ~11E19}IcD AA9|SlE1A9AIcALɍ NHcJ0D$D8"~?fffHcfDE~V41$L$ID$HT$A8tfH‰ A8u $HcD)ǍAfDUHcADE97~0tQHcfDE~V4HcfD\EIcÉH[]A\A]A^HcfDEHcfDE`fAWAVAUATUSHHLHP+C|1HكD$4E1D;D$4}HIcAƄLD;D$4|H~DE*AA~0AWA~!AA~E1A_ AAE1EEE*D$D1EjA9ʼn}!T$4A9}AIc9}A9|E9~&E9t!AtDD))*|$)E1D;D$4};IcHHHH CHE9g)E9^)IcƄJAD;D$4|AA)EUE>D$<1D9}WHcD9DP|1D9}>E1D;D$4}-LcLHLHIcAD;D$4HDŽ|D9|AK(D$8E1E1E9 Ej1AAE9DM1D9}fHcD9fDDp|A8E9D?1HcD9AG})HcHHHHSfLfTDpD9|D9~1ɚ;D9}HcDDp9}‰D9|HcD$8HcADPD$8At9E9D(HHHHHcIGHD9~EUDD)Ѓ1uIcHIOHHHHIDOHIDOHIDOHIDOHIDO HIDO HIDOHIDOHIDOHIDOHIDOHIDOHIDOHIDOHIDOHIDO HIDO"HIDO$HIDO&HIDO(HIDO*HIDO,HIDO.HIDO0HIDO2HIDO4HIDO6HIDO8HIDO:HIDOHIDO@HIDOBHIDODHIDOFHIDOHHIDOJHIDOLHIDONHIDOPHIDORHIDOTHIDOVHIDOXHIDOZHIDO\HIDO^HIDO`HIDObHDD)Ѓ1McKDGKHHKDG@HHKDGBHHKDGDHHKDGFHHKDGHHHKDGJHHKDGLHHKDGNHHKDGPHHKDGRHHKDGTHHKDGVHHKDGXHHKDGZHHKDG\HHKDG^HHKDG`HHKDGbHHfT$pfL$tft$xfT$rfL$vft$z|$1D9D$<|$<DD$A|$8RFn1D9}Hc@t@D9|1;t$8}DHcL$@1DIA8tljHcL@T@A8uL$@B L;t$8|1D9E11;t$4D$0 LcLHLHCHcLD9DO;D$0MD$0;t$4D$0|AT$0vLDD$4T$0HDLH{LHXaD9e1HcƉ1HD@HtD @ǃ~ƃ~Dct1Dd$,Hcƀ|@~>HSPIc̈StƒSt~AAԉ‰Ѹك ƍB~1Hcƀ|@A1ABH~EfffffHSPIc̈StƒSt~AAԉ‰Ѹك ǍBtƃRDd$,~>HSPIc̈StƒSt~AAԉ‰Dك B~>HSPIc̈StƒSt~AAԉ‰ыD$81ك ;t$8BHc1LItyA~>HSPIc̈StƒSt~AAԉ‰Dك BBL9|~>HSPIc̈StƒSt~AAԉ;t$8B 1Dd$,D96LcŋLHLCL~>HSPIc̈StƒSt~AAԉ‰щ1ك ;t$4BLHLL,CMLl$ Ll$LcC)L9HD$ AM@~CfffHSPIc̈StƒSt~AAԉ‰Dك BA@ 9|CL9HD$AM@~>HSPIc̈StƒSt~AAԉ‰Dك BA@ 9~>HSPIc̈StƒSt~AAԉ;t$4BtD9E1E1ҋA96Ej1BIcA9DM+D9AE9DH+HcI GHHHHHHDLX~2HcKtHSPCtЉ‰AىD) D9gEUADD)Ѓ1@H+McHHHHCLXKOHLDLA4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDO DىD)у D8A4~2HcKtHSPCtЉ‰KDO DىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDO DىD)у D8A4~2HcKtHSPCtЉ‰KDO"DىD)у D8A4~2HcKtHSPCtЉ‰KDO$DىD)у D8A4~2HcKtHSPCtЉ‰KDO&DىD)у D8A4~2HcKtHSPCtЉ‰KDO(DىD)у D8A4~2HcKtHSPCtЉ‰KDO*DىD)у D8A4~2HcKtHSPCtЉ‰KDO,DىD)у D8A4~2HcKtHSPCtЉ‰KDO.DىD)у D8A4~2HcKtHSPCtЉ‰KDO0DىD)у D8A4~2HcKtHSPCtЉ‰KDO2DىD)у D8A4~2HcKtHSPCtЉ‰KDO4DىD)у D8A4~2HcKtHSPCtЉ‰KDO6DىD)у D8A4~2HcKtHSPCtЉ‰KDO8DىD)у D8A4~2HcKtHSPCtЉ‰KDO:DىD)у D8A4~2HcKtHSPCtЉ‰KDODىD)у D8A4~2HcKtHSPCtЉ‰KDO@DىD)у D8A4~2HcKtHSPCtЉ‰KDOBDىD)у D8A4~2HcKtHSPCtЉ‰KDODDىD)у D8A4~2HcKtHSPCtЉ‰KDOFDىD)у D8A4~2HcKtHSPCtЉ‰KDOHDىD)у D8A4~2HcKtHSPCtЉ‰KDOJDىD)у D8A4~2HcKtHSPCtЉ‰KDOLDىD)у D8A4~2HcKtHSPCtЉ‰KDONDىD)у D8A4~2HcKtHSPCtЉ‰KDOPDىD)у D8A4~2HcKtHSPCtЉ‰KDORDىD)у D8A4~2HcKtHSPCtЉ‰KDOTDىD)у D8A4~2HcKtHSPCtЉ‰KDOVDىD)у D8A4~2HcKtHSPCtЉ‰KDOXDىD)у D8A4~2HcKtHSPCtЉ‰KDOZDىD)у D8A4~2HcKtHSPCtЉ‰KDO\DىD)у D8A4~2HcKtHSPCtЉ‰KDO^DىD)у D8A4~2HcKtHSPCtЉ‰KDO`DىD)у D8A4~2HcKtHSPCtЉ‰KDObDىD)у 48E~2HcKtHSPCtЉ‰эى) AD  DT$D$FD$DT$D;\$8t 'HĈ[]A\A]A^A_ËStH=BA1D)SxD+d$,H=%A1D6xDctJD+d$,H=A1DxDctD+d$,H=ݔA1DwDctfffHSPIc̈StƒSt~AAԉ_HSPIc̈StƒSt~AAԉl ѥ{ ¥`LcN 諥 蜥fHcŋT$4HHHHH{L*BD9|AACT$SH1YH$H~0HcKtHSPCts0~0HcKtHSPCtЉHى H@uH[]þHZrHMEH@8H3PH&HHHH[]DH=׏A1rHBHZHhHHߍp0DKlDAH=f1rLJx 1fffHc| tx Hc x ~ѐfffffffffffAWAVAUATUSHHGH/ "(, D$DdE1Dh(T$lL$h04T$d8L$`<T$\@L$XDT$THL$PLT$LPL$HTT$DXL$@\T$<`L$8lT$4L$0ptT$,HxL$(HHT$ HHL$HT$ $0AC {$Aut3HMS HHM GS C$E ME uEE1L$lD$hD$T$dDdDh(L$`,0D$\T$X4L$T8<D$PT$L@L$HDD$DHT$@LL$MHMS HHM GS C$E ME uE뺋C OAK$@ZuC fff{$>USHMS HHM GS C$E ME uE뺋C OAK$@hC ffff{$>EHMS HHM GS C$E ME uE뺋C OAK$ЍBωS({,BЉC(HcH}HHi@ U8s(H}HiHX U8HX H` tHu A+C{$?H3F HS HH GS C$F NF uF빋C OK$@@1ACffff{$?H3FHS HH GS C$F NF uF빋C OAK$@AECfff{$?H3F HS HH GS C$F NF uF빋C OAK$@YCfff{$?H3FHS HH GS C$F NF uF빋C OAK$@&eCfff{$?H3F@HS HH GS C$F NF uF빋C OAK$@SCfff{$AH3DfEHS HH GS C$F NF uF뷋C OAK$@YS0ƒ{4S0ǃh Cfffff{$?H3n@HS HH GS C$F NF uF빋C OK$Njh @ Љh C{$AH3D^EHS HH GS C$F NF uF뷋C OK$Njh @ Љh C{$AH3DVE\HS HH GS C$F NF uF뷋C OK$Njh @ Љh C{$AH3DNEHS HH GS C$F NF uF뷋C OK$Njh @ Љh C{$AH3DFEyHS HH GS C$F NF uF븋C OC8K$CCff{$?H3NHS HH GS C$F NF uF빋C OK$NjC8@ ЉC8Cffff{$?H3VHS HH GS C$F NF uF빋C OK$NjC8@ ЉC8Cffff{$?H3F0HS HH GS C$F NF uF빋C OAK$K8@ ɉK8C(Ai 9E1C{$?H3FHS HH GS C$F NF uF뺋C OK$$@IcƄ| AA~E1ffffIcAAƄ| ~E1Icŀ| txD$lC{$?H3FHS HH GS C$F NF uF뺋C OK$$@D$l|$l~AAnHAx qD$dC{$?H3FJHS HH GS C$F NF uF빋C OAK$D$`C{$?H3FHS HH GS C$F NF uF빋C OK$%D$\E1D;l$\D$lC {$?H3F[HS HH GS C$F NF uF뺋C OK$$tD$lT$`A9T$lL$lIcAňe^Dl$`1E~Lp;D$`|E1D;l$\}JIc;eфtptffHDpDpt@t$pA@;D;l$\|D$hD$`9D$h5C!ff{$AH3DfE>HS HH GS C$F NF uF뷋S OE1K$T$8D;l$d D$hL$`9L$h{D$h9L$hE1E1D;l$d  Lcd$hLHLHCIcpD9DO9LAD;l$d|LD$dAHLH{pH<$HHH|/2D$hT$`B 9T$hbC(x D$TD$PE1iL$XD$HIcAADD~AADǹffffHc֍9ɈyIcЍFAȉyDT$PD$DEunT$\9T$DD$TAvD$P2HcЉD$,HЋ HHHÉL$(H|HHHT$ HL$HD$L$PDt$(C${$D9}AH3DNEHS HH GS C$F NF uF뷉D{ D)щS$ADA!AHT$ IcD;<~oAC%{$AH3DFEoHS HH GS C$F NF uF븋C OEK$D$0A yHT$DA+ HT$HD$LL$X9L$LS|$LD$@D$<|$L`D$<D$@t$Pd$BBA˃EHcBH~Mc‹HcЅ@eAMcѹFBHcHcyFAByC8;D$DǃHAIcAŋD@AH~AIcAŋDHA~E1IcŋHt;D$DjAA~؃{4CC ǃp C{,E1IcAŋHAL~E1D;l$D}XHX IcAHH8[]A\A]A^A_H$AIcljDtDLIcA̋4AmHcT$ D$ AE9IcAE9~H0[]A\A]A^ÿ_V_]ffffffffE19&E1E9}McA19tAE9|E9~ڐFAffffffUEHSH1E9HϋL$/fffffE1A9}Ic8D9AA9|AE9~HAHAyE1A9}IcAH8DA9|ADHAyHAHAy1E9E$fffffIcA‹T+эQE9ʉT~EPE9IcA‹D+E9ʉ~[]HcD(ATU1S].HN<HG<H)HH9sIHfffHHL9r[]A\fffffffffH <H<ATH)UHSHHitIHAHHu?[]A\ÐUHSH*QHHaJHtffHHHuH[ÐH0H?p@Y@ @%6.3f:1, %6.3f bits/byte, %5.2f%% saved, %s in, %s out. %s: %s: trailing garbage after EOF ignored trailing garbage after EOF ignored bad magic number (file not created by bzip2) data integrity (CRC) error in data It is possible that the compressed file(s) have become corrupted. You can use the -tvv option to test integrity of such files. You can use the `bzip2recover' program to attempt to recover data from undamaged sections of corrupted files. Input file = %s, output file = %s %s: WARNING: some files have not been processed: %s: %d specified on command line, %d not processed yet. %s: Deleting output file %s, if it exists. %s: WARNING: deletion of output file (apparently) failed. %s: WARNING: deletion of output file suppressed %s: since input file no longer exists. Output file %s: `%s' may be incomplete. %s: I suggest doing an integrity test (bzip2 -tv) of it. %s: PANIC -- internal consistency error: %s This is a BUG. Please report it to me at: jseward@bzip.org %s: Data integrity error when decompressing. %s: Compressed file ends unexpectedly; perhaps it is corrupted? *Possible* reason follows. %s: I/O or other error, bailing out. Possible reason follows. %s: Control-C or similar caught, quitting. %s: Caught a SIGSEGV or SIGBUS whilst decompressing. Possible causes are (most likely first): (1) The compressed data is corrupted, and bzip2's usual checks failed to detect this. Try bzip2 -tvv my_file.bz2. (2) This computer has unreliable memory or cache hardware (a surprisingly common problem; try a different machine.) (3) A bug in the compiler used to create this executable (unlikely, if you didn't compile bzip2 yourself.) (4) A real bug in bzip2 -- I hope this should never be the case. The user's manual, Section 4.3, has more info on (2) and (3). If you suspect this is a bug in bzip2, or are unsure about (2) or (3), feel free to report it to me at: jseward@bzip.org. Section 4.3 of the user's manual describes the info a useful bug report should have. If the manual is available on your system, please try and read it before mailing me. If you don't have the manual or can't be bothered to read it, mail me anyway. %s: Caught a SIGSEGV or SIGBUS whilst compressing. Possible causes are (most likely first): (1) This computer has unreliable memory or cache hardware (a surprisingly common problem; try a different machine.) (2) A bug in the compiler used to create this executable (unlikely, if you didn't compile bzip2 yourself.) (3) A real bug in bzip2 -- I hope this should never be the case. The user's manual, Section 4.3, has more info on (1) and (2). If you suspect this is a bug in bzip2, or are unsure about (1) or (2), feel free to report it to me at: jseward@bzip.org. Section 4.3 of the user's manual describes the info a useful bug report should have. If the manual is available on your system, please try and read it before mailing me. If you don't have the manual or can't be bothered to read it, mail me anyway. %s: couldn't allocate enough memory bzip2: I'm not configured correctly for this platform! I require Int32, Int16 and Char to have sizes of 4, 2 and 1 bytes to run properly, and they don't. Probably you can fix this by defining them correctly, and recompiling. Bye! bzip2: file name `%s' is suspiciously (more than %d chars) long. Try using a reasonable file name instead. Sorry! :-) %s: There are no files matching `%s'. %s: I won't write compressed data to a terminal. %s: For help, type: `%s --help'. %s: Can't open input file %s: %s. %s: Can't create output file %s: %s. %s: Input file %s has %d other link%s. %s: Output file %s already exists. %s: Input file %s is not a normal file. %s: Input file %s is a directory. %s: Input file %s already has %s suffix. %s: I won't read compressed data from a terminal. %s: Can't open input file %s:%s. %s: Can't guess original name for %s -- using %s bzip2, a block-sorting file compressor. Version %s. Copyright (C) 1996-2007 by Julian Seward. This program is free software; you can redistribute it and/or modify it under the terms set out in the LICENSE file, which is included in the bzip2-1.0.5 source distribution. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LICENSE file for more details. bzip2, a block-sorting file compressor. Version %s. usage: %s [flags and input files in any order] -h --help print this message -d --decompress force decompression -z --compress force compression -k --keep keep (don't delete) input files -f --force overwrite existing output files -t --test test compressed file integrity -c --stdout output to standard out -q --quiet suppress noncritical error messages -v --verbose be verbose (a 2nd -v gives more) -L --license display software version & license -V --version display software version & license -s --small use less memory (at most 2500k) -1 .. -9 set block size to 100k .. 900k --fast alias for -1 --best alias for -9 If invoked as `bzip2', default action is to compress. as `bunzip2', default action is to decompress. as `bzcat', default action is to decompress to stdout. If no file names are given, bzip2 compresses or decompresses from standard input to standard output. You can combine short flags, so `-v -4' means the same as -v4 or -4v, &c. %s: %s is redundant in versions 0.9.5 and above %s: -c and -t cannot be used together. no data compressed. decompress:bzReadGetUnuseddecompress:unexpected errortest:bzReadGetUnusedtest:unexpected errorfile ends unexpectedly %s: %s: rb.bz2.bz.tbz2.tbz.tar %s: wb(stdin)(stdout)done %s: %s is not a bzip2 file. uncompress: bad srcMode.outuncompress: bad modes (none)ok testf: bad srcMode%s: Can't open input %s: %s. testf: bad modes BZIP2BZIPunzipz2cat--stdout--decompress--compress--force--test--keep--small--quiet--version--license--exponential--repetitive-best--repetitive-fast--fast--best--verbose--help--%s: Bad flag `%s' Z2CATzcatZCATUNZIP@@@ @$@@@@@@@@k@@s;@;@;@;@;@;@;@;@;@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@;@9<@9<@9<@9<@9<@9<@9<@9<@9<@;@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@9<@Y;@;@9<@;@9<@:@9<@9<@<@9<@9<@9<@9<@9<@ <@9<@<@<@9<@.<@9<@9<@9<@A<@ bzip2/libbzip2: internal error number %d. This is a bug in bzip2/libbzip2, %s. Please report it to me at: jseward@bzip.org. If this happened when you were using some program which uses libbzip2 as a component, you should also report this bug to the author(s) of that program. Please make an effort to report this bug; timely and accurate bug reports eventually lead to higher quality software. Thanks. Julian Seward, 10 December 2007. *** A special note about internal error number 1007 *** Experience suggests that a common cause of i.e. 1007 is unreliable memory or other hardware. The 1007 assertion just happens to cross-check the results of huge numbers of memory reads/writes, and so acts (unintendedly) as a stress test of your memory system. I suggest the following: try compressing the file again, possibly monitoring progress in detail with the -vv flag. * If the error cannot be reproduced, and/or happens at different points in compression, you may have a flaky memory system. Try a memory-test program. I have used Memtest86 (www.memtest86.com). At the time of writing it is free (GPLd). Memtest86 tests memory much more thorougly than your BIOSs power-on test, and may find failures that the BIOS doesn't. * If the error can be repeatably reproduced, this is a bug in bzip2, and I would very much like to hear about it. Please let me know, and, ideally, save a copy of the file causing the problem -- without which I will be unable to investigate it. combined CRCs: stored = 0x%08x, computed = 0x%08x {0x%08x, 0x%08x}1.0.5, 10-Dec-2007wOKSEQUENCE_ERRORPARAM_ERRORMEM_ERRORDATA_ERRORDATA_ERROR_MAGICIO_ERRORUNEXPECTED_EOFOUTBUFF_FULLCONFIG_ERROR???codes %d code lengths %d, selectors %d, bytes: mapping %d, %d pass %d: size is %d, grp uses are initial group %d, [%d .. %d], has %d syms (%4.1f%%) %d in block, %d after MTF & 1-2 coding, %d+2 syms in use final combined CRC = 0x%08x block %d: crc = 0x%08x, combined CRC = 0x%08x, size = %d rt+rld [%d: huff+mtf @*@@@ޠ@S@ġ@4@@@@@@@o@֥@C@@N@@@@@@ @~@@y@ή@W@=@Ʋ@b@ֺ@D@@&@@@@@ reconstructing block ... %d pointers, %d sorted, %d scanned qsort [0x%x, 0x%x] done %d this %d main sort initialise ... %d work, %d block, ratio %5.2f too repetitive; using fallback sorting algorithm %6d unresolved strings depth %6d has bucket sorting ... ;hl, l     , L \,4\Ll< \,Ll\<\|,<| ,|&\<)l)))) * *D |+ l5 5 5 5 5 <64 L6L l6d 8 9 9 ; ; <4 <>T >t ? E |N O4 PT Pt \R T ,T V XD @ >@,@>@#D@YH p@@$A@A$DA@BDA l`C@R$C@BDC D@PDF@D R$F@%D N4G@BFB B(A0A84LpM@BFB A(A0$PV@oAFD W@D R`X@#A,X@D@E_$ 0Z@D@aD [@D$d \@D`f, ^@D@E_ `@mD4 a@ BEE D(A0 c@y,, c@8GWV,\ d@0GWS f@< f@BEJ E(G0D8G' h@ h@ @h@DD4 h@5D GT h@l h@D M pi@  i@*   i@ i@A 0j@XG, k@_D k@74\ 0l@BBB A(A0J< n@+BBB B(A0A8J$ @ACG  @@A< @-#BBB B(A0A8J<T @BHB B(A0D8J< `@BEB E(A0C8J< @\BEE B(A0D8D<`@BBB B(D0A8J <TP@4BBB B(A0D8G<@dBBB B(A0A8GP$@AE@FT4@BHH D(A0G(T@8$l@AGzRx CBAC < >PDE   *QJ@O@S@Y@@@^@^@A!A0A<AFAQAbAkAzAAAAAAAAn; &C vkkMPG&"֊/aK+d 5ӆ1 Cͼ-}wp4mG0K=V9'C#=.r *ϝxO K} xV|iqލuݓklRobfF^[^Z}Wf`Sc0M-ZI D@ƥ d'NK`%#/+6lA/ ]D@hf+*{Pu&6>;;kvqUP2M_}1>φ˃4y:Z iYmێ`7Od2z~\sKwV OK86F+GB{\=fX@US]CQ;%)&!,G^(BM6P2,v?kZ;&H VM#RV/K`mpl +e= hﶻ'؀odj#ͳ`~>ɐ}:{y`6q}[Fu2 t-0q].KYT@PENOJ+ GC!}{`COFr[v hJGl0a$-eK^VZp0m5= ^[ Q7R3?>:З$:V -T)y&;h+̠ȥPMlk/|vˡv`#ds'ě yg:Ջb}>  q+2h6mf{u]6@k0-6_[Om>Ic3n+ecc1^'Oo;{mqi_IzOU!jrRd!3M\cX~Twb)bUfXDu&6(GwCji \0BO$`>a[p_#^]bc4aDOrvoQr} ,5NWN`~YfkD|Rdpk)w4X^QX%.Nq}E) f3&bwA@ir~o<8.);W8V^l;lw0IWa:v6Il1l=RWq&'; $z<P5+R?# %85e&`z=jnt7& {drY 2lrefRZl~ (ylE q&TsY ) }$ h @ @@@@@ ` 0*Q @x @` oH @oo@x(Q @ @ @ @ @ @ @@@&@6@F@V@f@v@@@@@@@@@@@&@6@F@V@f@v@@@@@@@@GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-49)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-49)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-52)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-52)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-52)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-52)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-52)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-52)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-52)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-52)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-52)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-52)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-49).shstrtab.interp.note.ABI-tag.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.text.fini.rodata.eh_frame_hdr.eh_frame.data.dynamic.ctors.dtors.jcr.got.bss.comment @@ !@@@H' @/@`7o@VDoH @H 0Sx @x `] @  gh @h b @ pm@@s@y@'Al@ A@  `Q` x(Qx(*Q**Q*(*Q(*0*Q0*P+Q+p +$.BZh91AY&SYΎ:?)@HP:) I@7ΊPxQER $))BR$  %EPT(ޘ؀@U FR@.]0Ѕ5 N@@4t 1%@҂Idd!DP| @^¤J. uP 88 u@#@D"ʠ& p(װz]5U%@.pG ʴ4S;.a@pu vGwg)EтtC^)hVfg"Rh١-460:] P DcՃ@j@$հ Vxʢ:tb΀wr;;V`w۰vaݮ^(;̕h3xP;}h'>3B{=Q[g&z^ oT*ƃoTϩ4lTQVA{Alhze}͔=f`}7Xu|d. ^[Z2{[f}N&ڞPw7WJ >40 IU0*#7;xi|#|K+}н%O奃#6((sg lc57vϾ $ %wF7ϜRJmە1kM;$hplv=Q n/iNa;t4\l8> 4va̛Kv)cM-Z(TV&iC{axL0m_]i]Hnp$:4uJjAN_|>z6nhTy x}jS&UU}v Fp`)$Duv6H 5L ;R)C/2>bw` de۽VŴ` MV`AFU@l5ANTdU m5:jP;-@7DR^}}*{xRc]ž6zc;x 5Uld4dU8T&6#l$6)IFLl%Mh$)*@DDJg%&!QAi UEU@ ri *)AQ ]1 B@( P FHP*@$ H @P!Tt[H͐ *BA@#@(*@P$ UBAAT!P$ @PaCE(ԂAR JH"@z`d` Md`& La12`M 1MFCM2bUO@&LL& `LbiLM5<h4$@@hb4hCL0<(4!@F5=ڦڞiɦ&F ф Ƨ!4=#h2 4ڃ hzD@M&M2) Mi44 RD &#@#!&L&™ 4FFi F@`FL{I `M5AtY*@̣4~7+I5Nb=V4k;"yS%","ur kQCt ] JI[<a:IɳREYOQJ&#֌=ȤH*JMd*F"jIҍ;hHY8IɒCHLvXv m=Q"Jj{4_ Z.\ۂٲ XUx'TAR(,Q菊lZT56RF9o$8|  $9!,/R0+~`~Q7MzDZGB+HPrR: }n萳{* hLz&1GZ_"iv*`RB+Sc]7*Mx.9a(1q`] P ,1ӣ(EBKnى5a1 V,57$ bԈtBpdF12-A$8n*E`ʨ%](b%5D9K(^dLrodqϔH&2DW*$ aT N7\仉D!LbKBZEb&uJF7o%^<6O^QT7Yfֶ ]0mC{LIPQ|k0 _h"V/s{2E&и!N&Yc(t!*J5 i¡}H&^9ٌ4?RTr>ёa _ s &03:(`ŠsiƠr*WQ^Az;Jm$YJ(o>Z Ӛ{W#t. |x, `zH\=Jpar&]R5,pLp<8aǷo s`Mc:q8) &/Y:pURc/4uD:jd\r0q*,hǭ!iBdKsL4OԚ PW`^ru͓TDD$E:RΩj1|q(P:@: (4 9 6{+.$Qmen;PTaLAcdZ)ekKCq k"e*: 0̣P‚\B[_$wQ>-RZ91zZ=",uYbƪ'~y`{) XQu#HxpTj}lRU] 2rakgOM0Tq&A-5%D`uTƈ j)z wjL3^Ml:Kbd'C;a)(׏N)Pv[sKc[HTG D 3(a<4 0Q$0 !8=H/5P)R e`{'0e)}K`6Е‡9Â%!DD( dVLPᦚG;9c@v7 ,F_h_[CXmr QjJt J==#ЀUĘ8Î*.HyX۫2*a!2~Qi&%2$@ =*`rr_;@cGA MOnt"\ƺהP1P~mʕ¾MD4L[$c'p# ҳl>0Y9% 1ԫ*/<-A(,;IR-3"ٟRtJmJլ+?-quty3,&`[hB UYlP0,TlDqBsS#٢afږy:Bh=8E]vD)RZ87+bY]P,)0fF5fCwq3-Tŭ)eQ41{vN:* RBv^-Vt B:H{E*,_/2ktZ=R}٪bDk$zi "[`O+zY#82NÍFLd&E7 X{!S6 8#' DH)x3;#[I^̀v-BTG2*TH GC^J C HZh_|mr@@bόf *6Hk,*.QYN⮦n0 S;b ON-0QU^f*SяKGMZiNfH2.D` 5X(W֯`K2I&иKSFЕ%ȶ:kg"$̙usf* p.fJIZJD)l[]xª (x;H-K`#DцM:xO[] MQXZk*bhtk1A=}wF˖ ر4*BfOR>keNRc@[#@Ъ,S{VUYJiU"P"%+XH Yv "|b %4G@ߌYKǃr4Q84U$/BnYmPL A [mlqWƩ;BU`~*(PaVQ5X $7kJ+ Q ("h0鄦ΐ28 MVkʝ^ n< m_M*ZIL5KEW6u!W$VcŇtW_մ~Ea[DAkBfC 0uUrJ(a hQ"0$1#2@t$Zݻ%p<zӤz΍*wE9EVjaFwl`L:`s'ڤp[)E3 6,ڴ ^9rΤE{2FJV@7v Jƣ(R2pb"ɋܬj# Cy:Q PB/aQ*VfЧea62Bx&viFl)щ|!dQ>U4OnBe Lڢ7@bÅR5K.GIppF:tNEHԂI C q#7VWea\Z)hĂ E#᠂T Jt*)^F _cg#p=#jkyۆ.PZش,o H\ MmM*a(VL/,- 'prIq`܀'{~% qo{UjPrPA63R=]A` NIh?nk/RA>r(P"F QWD,U3B93g].᫏D L,,X,y>Y|*P pi8L5Ӡ0RsorI 5 Qe{5;wG9sY_`JQ( z$vQc l5lew(PFm]"K8B  V#R uk5{4b-Y> VxS *("Q(]֦JQ&2,'ј -l-,,[,e;bl*ELA[VZ16xP(+ u7 @ziEaBL)5y8g;ra^S&f8ԭgbdڶFcPf ,+8l>ynfb 9X^R2-/Rc&47+tN9` j,ygB %/U5=y6'Xw*hX`ʮI}Az A wa$6*Ø!^ TF69x,$ DH SldIQmCB7Ad$a $M6Q|ZhLP], a"Dj!Pкŀ5)7бl-B!$L܎ x$ $ ˜HQh($%2-5&*Ծe:V6Xm+ QE :\0 &SՀOhXe" Q+YGUoP2 It6cBv'ꢘeb\RI`ax/qu.v) 8kVZ*r70A1 m4Ր8U(]$ QtYEԴP5/źs,4PLQ] yiX V$]!-biKG/kR;! d&bbyIS ԉ9+\ë}pV$Bjot1 .zMW†^e0-S]oQS%k^#?>!ȑ9p9Z t3>;Ѩ8jON#fC 2:@D~jxmX.)" @:I5(aQt,JW8ԹGVZ! T!ѲDY//hi9N\ӠP=Z8si1Z5#DHF&q3kKC>gsę(6,/mAA"Z<0Nҿ{wLjC;h91&]?ܯGh{QVDhI2G \340GQ3#:(+CQ (,+4 zS9ۜ?wz|$;]]yuQ[E.8t[ǧf{o\Nj'k? Q!%L~!h܁5LiK )A VS4*(F0 rBɻ;^9 DCVXCmCΘg@#QC?yIahBZbh`؆I-G]g/le|ǹ̓pd͗v R1!H"} $ 1Q2(0<[b I;z2s3Tɯ䞿M; 4xS((m4h3DH aC&h$ @IKc$"[!g1o#`I'+m?;mvoyFǗoG>sFyg~["O+40OGFsȉN3.D!} Hߥ#HFo#3_{L1%,Rj+MD{?{ |8d6kUf55h4?מ-?Ҩi<)LP^ B{ؖI?BHk~%uxŭQZmZjϧP0 7wg]/+>Ƴ`5lX8L+^edjt~wvȵJ{]^D *=3 Otv W`J~DLq\w 5$փ}ݚ @߮_.3i{' ɗfJFb=]Md[!rrM,!Eg&DP+,ò_rCva*?bCsfs:1E1Vֿ+^eVzq=6GaWׯ ~m3h/wa}/2Qqg/ qcCb1&VxO.R2sqŘ_ig߲0b3PNx&E9AS2T6oBiFa[&6m^\j+pusN@-.c Qw^0Ms<+Ò:p:G#&9{=;0-pgf%ʌ! hiB_ ܮg4y{fhpP( ٝv=UM>Vss!22 ȝܮ۝xAxQ͟US~ raXRŘ෣S?$?~'m~#rފ zҩs_F’ͺhG}ʸƷcjjH>ߧ`)N+}>+;XMKn⏀/ ^Npc| vNCbigr/D4C_)%s:`hyPlf's} ^f^+:ǣHdZxob+%wwKYbӽ|_źk01fQRmylSwsV}:Tsu/à~{_x"_֋1~1ͽؗ?gƶ3sDߧΣAKƻe1_iq^8{ $jB/K"4ꨞC=%`,;>^.iB$ Ih Ȃ.BI:_+oa6mgh $r jbe#។^fMC xFѿ+w]XݲBA:u064fz#P67_d!mNQ{<'zg%'cuQ)w2pH.VxN1hx8 B\v5x?Y_Of9SjIk;euie ǧeK E%w7 j>fۼv);%ƬmD'?]ir#%iP8Yxhq*3QhEu:ꌂö:[BdJ(%p)yؒ[G4;0MDJMr$QD6vP4x$&ѵE:IiTh[f.O= 6RB`q\^oባŸ_TXZln̢Lx d§859;,,Rl Cg7?7`gѮ'dlz۠)OwfQ\WVMG)@g&behp}iT XUxWIq1i[-MPi~MSFiLAQm*J؛Z)f^H&e"ʇmi܈S'?8ʺyc`n*X͂3grmIma{3/Pq'aWvcٱ7KI~(osg՛,D:;/n•}#{gꏇШA57RL|k l324}r|]+x&"W<}҅{~iwN+x[xxGF/: ԗ9ؒ'u(v9׻eSWwVi4Vƨy0 X!DlӞn9zʭix1gqT)bŢÂyWUlZ/Gӂ'TӱWv y*ֵKT2m_(}(m*ddt1!Lc)LRG.xXe! rz)4N0j -K Nz PX 6V,#hUkmAƠmuG?CkS_! ZC/ 'TvlNmO>8f"mhvn7ヤ/wxZl;y^׺f8/g?6[vC5p7PbYӅOFoB8},Zn彪n>B`/¶.dUGg?SuwKbIo޲ Q#vZ6~o# J8kyU:=c +gO?ѱ[;y?ъ!n/:YMBxC}NBSlt;] V>Nzu߸,-G݃j&=lYTyqj7j]3e~ CDcm\er6zU8zoWWdlЛZQ9|#v˱oڥ~_s*tWSCwͼq vc Rk=Gd>!OFp!]%V'6n]Nn,]{~8KYj0^^ ՙ9nOsmՊ %>3X_8\ZuL okґã5+pr :1x>H+>rߡ p(ۖstmӻJ*sӎh%l #pi4LIzSm{QzY罼ϳ]؞./'_n^&Whkۺ,=>>dphYR8y{+ʳ3JJR<`p!b!DV::`Խ[i<FM' s! m]}<:L)61W+`y;Nِהm}ό)pFrB/C6}fd,Ч"twqVM%3l _9qG#QAWZh( uGvWh30B}0! TEIp6P$&1Lv#k S hO%H5},֟ mc3RU#/؊/䡡wq,]xڴ &#  S{P ոԋ݇B#,ЊޒoZe`&~"xfCkfO >\ΫڞͻJ`|p47dju;]YS޷cO Bwՠ_mdՒP޴w6i\Ljy RO}&_}.8 oI i)1FEr $l"ZV7Q(l]?hI0V?ck܂хܳerv4XW⾰.jd:edNLoY<~2!};?y <%_Y3հ_p Ί*u fZLm~xQ f}bҹU Gm!RqB.ژ3K)~Pt٨Aeo&y߅Lf7d}eBD^JIY/;DEHϬC"Y~`brDR0=${ NˁFE{!/My7do:$F6zP%{az;m4n 4tN2 ;-~QN8i84F1\oe{n:V.VYsjch`N[0F]԰?7OS,/d^wݝr|p)'QҲ0Y 9< kL\F2pezé)8c[g%`cnX$lߝ?7V^_uUUMSz&?nT$Q~;30l:p ;yz&Dzf'g Y?b), AcC+?.;ua3K(xnI>Sĸ?h*=YR1*mRG =+`v #϶ĎgLH+߭_~Kf9OKqo{@{Wb܏an~͌򺹬bAj/Jze7m}? MV=3oBejt^w C#wbweyݯw/ Fޡ1 v~<7Ggl{|es5niN`xϥk(yQI[py4<=@'Z-Mqa?Se۔3SFCx^l9kn|{\㩤Hn26DWɎ_UX?Kԗk0s ԥ꾕,k*WĢ{UT`YxK"D'{F;Чv7\ܕ=!G[{Zmݵ4KM/$"ޏ'HQeBQϝ5<2llqVd|*ޯr5.ِ''Qg+JwE3C4df.t]|EVN=ۊ9o6vcldEyXODZ|}(obŇJBˣ8Gq2,f93I;o)_\Z7fgӤvƗ K,'f> }^HckeAXh3w\m?k\Zq> %{_~Zghˈ^"2mi/z q6< <^fjO&jSGFhݐqY'|22CAl /g(Ufy|}vgu.=hwua6:TݺQ찀8=W&!sjeY[85RʂkWIxh* -9:3cG&p5^hvQ_֪u;G > Y'JdF~R$eT4s b+۸i}C|f?BמEU5eٮ(`O5wPpV~ۊvDclO |tv|#8U?9tb{,!ޛ:>Eڪ_cBUTN<Gee]#<gEegkRǡ*!6͕wTW\@Y 5zT<Ѡ3i4lW8))`@9N+ *̈+}jv3L'+5U}]:i +T~)w_1l^ijھo4+V9g@o"gfoezP!PVqsY2Ē Ӂx4vb8dՅqf#”FLjde4ߙE5ņUxӃNM?KKz[XQzu1)/"m5 _}P{#!6qm!h}fp>t؎53OnJhA>U'^_S7_OɳnFӈoua(p<(%jj}"$~cYFm>x|*m)_o<vE O|@ +U29&~;_#kqr:okCbu=j@N4T6&h8Mje%PGώR^]U6.NΔ ̹!Ԣ6`}UjgBE.Gm]f̲=%59Xky3 >(I$p *͹22L URļC=mXP Rf|gƤQFWNaYw1@^[9x>Y;M;&K-Sk yC65掦S*w+o?HɽBx°$(u'*{2W90#֨iS!jT?R]ii55&sO$su׻:E's M3Ҍf-)Ջ5}ҳi^E6^By/m,'MgAI)$I~WcB5G-ĩH@m(ѣn.N_KQk7zn|; f<DsUGΩqј% a]gHV^.Ou36 7Cxy/sL(Ic (\P1< 4d)|sj 52塏K!)[f0 !ڠмhn> & !?ο{1^)gCBLƄ#r023+ukMmVe ﰺ.G4ФDCgۻj4ƭ;9M7i=f&_^vZ̺hU^b~\k᪫w̎;5WԄ;q̪ՆHi..7,Dh$ ec YoyNkYR(L% F9j=qOeJ;^FJމrbB,9,Š/y|1F3Bglw 5u) Y% u?]&K?{xe~.nvHm"{4a>=6^9'==S,:*xwCGV5mB;G3QƳ _d[g83Y+Ĥ2Bl7ϕb"J!L'S$ٷSP1wu5o^DsEJG3EOqqӤ'55CM@b;?{2 F:wPb?x=M.yo.`y?}I Hy;yo=\:jBBnɥ ɕΤOW√y~{$O@ f`bى5KDOAA=\J?uDo"w=7U8oNwo'jP3T6VCMeu_hhG{Cmj3iA/kk`˱ēQWdع2/owvn [d?V4{;`J{nL[cUh\ܿ1kUW]*%}ϭilJTa{2>!>+<A!uG.׸.f֜Rj2>7YYWϠAGbxܒ|Q/}UDDDW*ƍH8&rzr.^ÜchB{0~ն4ed|6Z_d4 "c_8vp=ǭ%S|;kk9 *k~ݜA _;Z <){tΛB[J_ujG&ܝgyєДĠ}x@3S^ I~"b5pd8A&0ڼ/.y+Ak 7v_5qWUka7A'vC}M#_$C>+r;u5Vh(cLﭫqr/=P7`iۡ`M7@ Mi2M7:PQÝ3D8ޯE2 GLGJ}EXx;*[ɽ{Ɲg䭼׾|[eF)0cE9-ȮY i&.V`@L[*2DEMN9M/Ums/SSǮo2>@?ؿ¥v ݇\z]'=33Jj6\vJt~_s_)^Ǟ@iYYdK*P{IhXq ۧGg4n%_a dUIʦ\?$$]S7Z`#ݕpPgjbݎ鞙6_wvs +3.+Ik/IHMg49'`ޔk og&'ڽU؍ߞ4zc]n<_r|+nzu*FI>.V?7S#K_rObɆh]Sval*?/'*jH`oDr f>RR3ݯ4-FG[gq;yl2R#Dp^mtQOCEjb?To9Lv:?my??ؽdl3&3_^<ϷYCZR`c JZ:M`'D5}=kŗUG_:&^ÔD>zu JA]We%z! "ƇoJŒ1lZE7v&d]M$GeR9XJM8YtT ozG0V`v.Bv~T=I_3~6;0QOmnPt0H쳟Ƿ]jLNv͢nm nEG{L&F3̪n]JdJ>QHO;eoo[;yjq6$wu|OxAA<nn 2rOZBbٞmrB`]l^mHߌ2g`ŞUsk9zO%rQiIY Co8\x =B!)~sGL<{%ϱ)ƎfѫbcM3 g1dF{<@AAß̷)q^挍8r1<:L<){I5khz⬾k ұhlsk'v'(&R|Yw^5w' W'F&,j5n-_bɫeuhvr?`;SWK/hm}Ao~f7 ~zZ"<|daU8-JA.֜|2C)aBz~.o-W?儩Ѫ#(WQ0q:Mco c G"ES5vGlU) Oo9deoMp$[C T՞Z<)vo[P׳\hN}ʼxÝ gCѺZWHUmyB䨶B| &W}}k'ÑYx6+^7R's,w^Te:~1nrȯ=a2~ʰ\e{! m!,zt \%z2L8O. T}ZKX7 (Y&I=G^ _s?ߋyaj2Ey/_EBEao_ݴ6L4j4ܱi8ћ-2?s Ei|}~ SGlѼ!)µzswIifi"TQ*A2\rP%CҐTOŽx 4=y#uگʐS^5ZHcL>"i9yxdM3hOI{ڢ@#ml6ӟ끬ln;g !tMUz*_1+Qv)Q HOI|DD**QJ+!QyAPO\^ %AS SݬC9DC󰠿K*!‚{ B/ʡ S%E UrR yYua y~|xT>s_c(JO~JQza=l~==t{ioGʀH{ SŔ _u # S˄GJEQC -  ہ~6ϱ}@o !ZyZ% j  5kGrf+$` & 3pf,t ~Yr*;5h*(XşO fFa ۹se$\ț@OE=|@{/D=t* *9JBP'* T+qB#+_6m|5P &tnzK4F{CZm["IFvҪdeQ@`KkOPv4Mɣn'9J4DWLsz8SE #4\Ȧ RW Þ$M!dga *izhi=ViбF;0ZL=:<B "v|ŧj9 6K`0vw՗d&ՏV.޿8]$n')BP4#]@z@{  +tdrP1_]þ%u`^,DAYu0OEʍP!fOW°^"}źj0X,I_)gdq'Y< `aMaЅce=r<U'QSO;Θ ݌oOɣWN5M\e-U. ^Ue2Σdpjz ,Ͽpo&\b({31UBi Gk L^#*V* ݂%2YQůʹF,'@${?uc߷yisi<Ȯ^W>+%TX=MJN vݪ PM`{?l|>ؐT+oo v~?ݷnm{acc1N7ή=MW ',޿W"*ăltfb3wͤFEFBCq!ޢg|MAo`=1z"YzPWšE}ZaP [^lOIm7f%TkƶGŶ%M#\ >>p$cd}j6z> ‰r`Szqqo?##([toY []|dGxv&m~WV[o}-˔^c\vK~}>Ӑ? lċȼNӹy<0)k8?m罕ai㕢ßh;xZ./Gˬrrs+1gm eon۸99ݳ)3=G oenjlss`W .6L#5K *G&gaȆ2y|28Ҷ8} ˟nМp(;5[(̍\ŕ/? c2Z2ҫ45[y6y]K=99-Բ̭͟m30 v=ͽ*x,va~u&ꦟ2gdf)G_3ui˻[LvvSe]_A*і7q1*XyRllRtI+YqNls\&/YiiOvyFeW+"&@@Hmg}^/S4B~྾nYxQ.;a$ _ѿ͏ѱJx4LWP}_zwi";ўgcF, B0kCͧ419.zDhp xdVNe6dh="s9 %:_&MnɱngF棓hGH'YUpo\*Lq;Y+b& Bd_kIZ4^AÌ,R0qDbd &$q|x.;(7|'! s5;ʼn#(BXAP|"q熔*Wzq8\o ^ s_J@+Hqդ%f%$, #D c,\SYV$VF[̅!Uܙ HvXy1L&H]q#3_ɑ_K6;5ĩPi[Q=GĨH2Lj%iС-io:[%"yGfݚo&ĕ;.4')9nDa3R8()F}H2JE+lXҌ9E)@jb釦(`QȐގdȔ3 O[Ck@r5j9ST.\ S3'䠃 I U}QR_EL@vdtR #;JIƒ4.keEb(pЇ%-K#w1' e Ta)QX<D7^ƔkiiB|b&[1۫OD rrdv-"*B1g"4gJjxFz(e2=4Y>C%'"K7|8a4I'&cqHQߍvrF  (*x\…,jItiM&qo$Sˏ$xӧPa%JRZ… )#8{H@zW%&QQDM)a@9LƯ6y(jE iȐ Ha٫cq@>A52*R9%-L& OB]=#eNKtR*xe)zwfPi+wLc5N5¨VIP&ݵ:i Tf]2p`@bŌ9a`[ XŒB;)r–#-{|Rov$ &K)A)ªXn͜RR|dֲHb 2aÅdS @]u190KH @|"'|Vs v6@31~y0@c@,ҠR֩DwNÝ9;8sT$7. apn&T4;dDy%3f(|Dȅ;Sbo m`C~x`k"zTGD`L01NG|kp:0)ÉP`[ J9;c#aoډqzzhvdrZ-}i_`!3D1X;ub|[f_!qƅ Ɋ侇!Z`t4_\Y18HDcנvP@KXv*qDx"Ņ *٤Hh8e%„4EDf;!)tc_fl1|(ⴈ:BR:ʛ)lϚ~}#Q~P$CjL8R2͛J*r g+\SfzĚhpeW<8p!Avϕ6jѣF!k 0A(2[ "9(‹*4HIE8{#4fDvh"ĆKOH,YiQ"G9X/>;/vKF3q8P)-}Ű|iF9O3lV ˑ@0qQ_2~,[g$v7m3r[(b(,d.Zׯ=_e2T7o  Ch4hLQvʸ9o`;EP"d~SLj9`[=/ LgG3-=Ea-ؿ-& ˎ6A-"H WOCe~`|B9Ae9H yx6T#i$r*x|7(KЪPm'  pp2%"=Q Y|fp|L=㧱(R ?Ot |thWzC}B7 }QTwQSD&jA{ovWov~'!@+dH!3( Gs@{z>խ+~?tլ^0)vexC~9N̠|<޻< ܔ?I(uʻB%@#".zmR"<hNDRyP(=0*cz} m#y'N`E ~ry;p(aƀ>@{ww3AO\D`TAP"L* POŸvJ ;s"{P>E BW BDO_߃Bþ\Cf?I$gEqv Q"*YMahB|j8Xf'+vղ>IJgvoѮ?*d6?%{ .~F7>Ju [zyC,8t+n ϴQ@\\ ֫y @į!LBe'g;xw;6ca1T8,n e*߸Ox%V=:K|A46DޏOGTD'H*rׇwa `/0# ;W{>u($~-L |g`va=4ո0NRvD/eJ3M+Q2#; bM 괷׉«b2ءCht^y8zw 111W|}UIp睑=1 7ܡ{0(OOZ4TZ6+Tm,lZQXѨB%Aǿm7DJQbQFڍ6*6kb5*VEE)P DTIZX`(hJEV)( *mj#UPЅHɍTlITmk&ڨ5kbXbQj,F5V*5kQ)BhTJJ@RmFmQTmQV@PMmZ-Z-ElQE-jůر[ŚE TJJQRmX-XEQhV+j+TVmUmcm6VU6Fضmb6؊ZB(Dj5XlZ`ՋdH""(P6[EEkERh)F)iJPXmQXڨmհ[cUmbTUTTkQbX$HH%V z6 .u\cyzeILL(In:BB@Mf&4م"7Im'rnH"°#(꡷$Х]ƼV<l7T._0iZӂ y &ADy6:&,j7!yv@TQ8_8N刦L@E7>.Dtr8ArRv2!Y7zڢ rN0#A5ds}m)"GFp~BL!N2@הF61[h|@m@P2F8@!ERTD<6h֜Ӈ_;i 'Dޕ_e|a(!n} v@!˼ImXdNBQH`cZNфx;@p$Ms`l 2H6AfEi" X ;˨- % JDR0µ&b6$#yO<1M }SW6N$ˈ3#fն`r!ͷx5c"mCͅ K6Z۵a#zew2/SV0;.su1{#n9o[hr#֜p 7 ݭ.i;E0ۓFԈ1.,H(h" .`$̽ᰁ\Ja!XɊ$,! Zoh`.͂ޡt^3h ;jRƠIeef[,1r.ņ,B #xqpX-.X--rYa:L!id%E" Bٗ1&cmEA f azbZA Awb%mQ-6lIkjF"mJV𨰼C,`$)+44ZY # P PLA^ՌPccl'\բ1Y ٷm6Gb5 I4ʉN6Q fF.4c a40dž"T$¥jX:Akڍ-iBldppe\:4o]`s뗮ZvJD˭7DxjĄnw0.(3D\"|彌UmmhRĄ G;v.B]SPz`XZN($&Ř]:kMOEwctndUɚM̰ba˒fؽcM{8$|HkYpn=L!o|0+. c Ziwv0ẍ^h0rrr5tAqInlXt>Kx9C{ <չ2a 82oEa Hpb+nA5`abӇ-[sR+1v| ( )wFfIɀؽI6۸$`wq[I3-ȖriH{5i C-NN 0|T 1o3yF3%a#yj'1qC km$[WckvA wsV1+2bc$scX8 <@l8,@ܬBokr^3s-OgwX'%Xob._# <Ӹffdmm흍hm2=ш1($TVjq c勻8@%5 $,kqV yXRj^F1(.1hdlq1Z3pȋ0^bH8]^svB|pl0]6||\b\m9Z˴xG. nHnԜQ]x۷{3ffw4oe-Zmwmg 8md^s1FfrM7wa +HY\ձw&˷jqt`o9r;0ޙ+X_0 !M9z|rƙ ط%] %)r_paqAn۸ &qf w\sAX ^0z]oQ{xAQN0a܄ق* !M/V {"ou!Wn@u̬/8/eܮl6lfh|WE˻ cÊ5-Zw5-ɋxřhӴ66q]ov.Lr 3j6x^ǗŅ/l+Gfa7 k2dfZÇ7) !4=aw.@lQ#V2; L06Յ/pMG.'&Jd,-n!D<5,V;cy.c%sv2ùjFp9$,j+ʜ aFvg(EYe#dR˖۬w̻qkE"Mo(bNKՁ9W`ŏfcYͱ̾n-+NsXmNs56²-0ےŮƅ;ʹo RdG4yj_Fűct;X@gNjc\ǹ橻I$;ؽ \G3X1N#ʜn 7Vxq.cMǰAq+RТlD$ 9Ǽ!ݸu5$ xs^ڦ`Sl7i #eDZn޻-޵؆ІqpbA:QGIsX[msv4-͘ep²p`c@4lʲ%nщt+<.^vw VVr'&JYc3$0M\TR Pш((MH0-&ՐĚTm}ѢJEZ5YPEJQ& `(5,UABd*$lD~6qSf<.uBHƒ#P+9뮳mϥ!:Qh^30fBu'@XfP~/g-.ؓrURk+!1V-!Wړ+'5Hƈف"ˠH,|]#,^ #-zє1[aoq9C+aEY-g$TU~YSVp>9u Q=[ƫ )R` 4iP^<E ԛees5\"KVs ]N`⒞%B 3Ps;m0!φMRv6:mGH4 '/9uVh)]I30jZ@yoIU%%Ɋ&x߷¾ouDJQNH4FSVG~k>^dVrџ ud#:G3 P|Vg+E9-l1[-hB &/ ;7E̺O88C(`XGBɷCgMq6t1v YJʮ #M-1 Y5+(F") v9ͦ*\s)+{tOs`tï@*ǚb%@'Gb xj;O{_k/rNW95ܺ]IT-\J={UMhY<&1 _8hSd[62%} 4&'Kf0t7.[,6R%SI7#"") "Dk"p005D@C`9= oOzvSkɡ2"K6n:;<:^ntocF@`<uGDsHpZZ (i|9:7@#7vSн:ՋXc**p1 \R׹r> !ޣG#89=B23)Bȷ1cuAm̏h+p$k#SmJܑ" 4M1WdVsp6SM9p(^֕Yт`Mg+-Z 0#20^~mنj|8t|=\qCHَI5@=r/ISh@G B) R(dE%+M#)N{C}"GO*Q"H*k^(r]&ڿD6 .P&XeK55aBqg9X::s79= ߯cWFI6~>]vQ'ū/^-6)!O?\o+ y,`^΍!9vAۄx!rk, hshFڸHJ=|>!u|b,6lU8 &i@lTk"+39/q2OAB4X9\\N3J5x- Իdm*'bZ}& \ó2z&>`55>k޾p $3d耲:!GO]͎605̺1Y+ ' ,+y!A?c~  $tG,a, QHДp"}ϱuIB_i h?O}!A~J-7({W'FЃlx0}`"tJRՓ(:6aTG Rع -9n e~:`#O`dɄE$27ZL.wΤ5B2>=L\YA. ᶦW@*^/%"Z)ul!~ |a}rJ6W~uYr>OkɽR>Ȟo*ߠjD( kfltHd.aP_=jѯ=,>wW8G u}](j8D ndy6 n,";̜v1$, adoJM#d\=FI$y i_cZJgY HNBP@φq{2 1`yr+YDd9p_=,Çhoi2ǿBg0pB+H )" P@oJΚqi~ y:#?n ^>G $3} &Iu՛+r?sr^!L mX-BDi:o~ͭcgP=KO7հY7~ BDvuwKϴs/גߨ}7ٴ>_}/@𼚃ep)o>xqq=2{%^{_3+/Y8y7ae4paF+uMJJ>UmWѱ`M/I:Hx w2vvBLqM*4vwٿ$bt|?yJO)Q$=l?-$Od]\0 :AWIêsoYp8oyl,=%/$ -wD-Yk-Zlc;o#Ɛ]LP@6~~ge,݊`#wLִ(]dZ4Wa/~K/+ۤZ_{>vH<DTn "m^&~}y c~5~{ Aa|$b$Y гAA绯q_t~߿kvbg]PBH_OD 7OgC!}YI !>l%˵\,XC0M I׹~H5cyNjINUBYCד,{vӪs (,}Ϻ(I ~n,YE3_ Hp{6G taYL]vsnڶocK";VZ"<@&p|Ы~wW=AA[|-iNv`AVE0둧Y\C<$aI2M_?U*^ |c~K$={~= {{!~HCAGju`,8~d:Cs>5¯U A7 w̯$30`.wRya 0^dƍg?c)B8#pk!P쨷ܓt@$#G0$6_\w !W*&ؾΜpZ?d^~luI]/Ͻlgeihs;^/F xjc~ B&6rwVKO::%{0`DX$XDBmt_ƭ >Ֆ.d&^U*;cK藲>.oS?'yfz>+wAF0bU,=}Tt ~E;`}a!ߒ~ ׻ql&ILHZ~NoF=5(MCOj}ϫ pۮ,;t!L2O6dB_ ] )]d0~Û_=uﯢ&횻 yvOqA'fFUf~#+̮Ȗy%:zN0W]a/==zI |]6 (5_񌒢׬9׎W֨ÑƐz'[o}2bz6E]!ۏxxQ!? !CZ>EzOMUp$RY$G>=0Kgo^7Ycu[ii@7 1ܹ4LՇߙݽ=cmQ+o%o}2 oO' _9e6wa.J >euv+ OB-hhFl^@=YbܞrfӉE]ai[F 4OaaaQI>IE|d[Z'8!|\(kDW%fn#>ޔqzD[Ӽ؍gH(&\0`jW-Zwf$2o\!&pGgwtYGV : (VN(_m} ;x>ahcf-hvЄ "6cK Iz)-X?:CHIh '㊃;|>*׷Ŕ0|0rǴ!KM5I*%i b =B N,su4f,2'PD$i{gtA }>} dO]X.:*znc(6}Gd={wgZ C'TP cH/i8hy#Ow,!H ht`etAD*dz>n,F׳CM i BVQh Mh:{!Ah ydOߙ #z#H'{|t!>M#Vpϓ(G}_"H]&b#LH//k@^2MWu cajx=!?s:JSHuzU^/f<ؾ/' ,(AoAHp\@E{r?Db̢guoxמ]Hg{38X.h20>CPff@-t$ : 6ϼVϡ ?ez-C}9WSjN=)8@ND=ᜄ֪#'&?5?E  ~>?"=OQ3]!t}ϜI[г!q/" s]'3_UK^p~5WLsJ^^/{_ߙlgOֿFf9(qz?:Et}"x`p1s<ÔyOD^XĚrJVxNL8M3 i 7CQG5dMuyqS;FS hJ@=9DйP@AJ&x/f I0['IGKśZ:JM@yN}xy I!@Ggc_!Nq@nbAwYFA@@,#BzާKh5Gpωe˹&Ϋ>R3 ߓkQ16V2L6;h2{ |>>1O_G=j M_e֜Y?i:ѭQ;AVQ{s#ޕ{ D$D/b0`  $P>f4w^i_xcvstkG$~78CH>$@P_O/? 6cw6zMIrKӭJ@#RLE6G.h5!-4PPk(Jh }+_߉}'NmmۊbeES!"dU:mm "4 N#NI~1PۈDDeQMBlV_]Ӣ󛘔f @*,r@$0ŹY[&#Md*[zp!C`bkpMd< '~W}4><4&PJCuEM,,Ţd{(*̉Aq@' 8C2R9:+6ւ\ԺgwDJ=W W@)|jQo 7R(9#>Y;C!=t~Fyy2X~@Ǿ{xC2'>^Ӳ(Oz,]GVK Ժtu6zC`  &%TVmoV)()Z 7^7rŌQ&ш:0c&f AUYz}JU& yS6#FX t00'֙,!AfһFn@e[hq#ȝ0?K ybd>G+ bj+x4E1#Gj%7xMHd;jQuR*PruQjrl[w|ysN~2^@>?!{w7c?*:)Ÿ״Ϩ 32)kѬ $31%8Nz'iuaBV6ԷQbűV?;{4TQjH5 9 DA ~(+Y+O1 rF)10Ġ+5MKf(PBkhFhhjj-mHdaAY$Jˀ'zġGL$ODe=Pk->#0YN` .+ΫX4maݼgm*xwubV+ܷKE^66׭\Alj"طWH W盛LR.*Pd,b tIIF0`KBTL\Rj* KRclk;kL"xҟ "wy_䁿+)IKm>:>R*Po 4FM%"Ҥj#k/UZiQvr5*rV22}v)Vi)riM}7.H'I}5!xC BxTBruSG ѶB\ڽs Vg"wnk#-:.t{;}Kaw3h3 u%oj/7 . lEin" ''rc&^,YԈpx_>ĚT/~gK ~bO@D~Mi1pݗᬄWtɇL?1y1{B$&1n6%Qa/.F[yL;fz4hwN 93Oާ5Ujo*iԚc1}U= *^Ȍ_K/Z9~&{ mޱ,WJ//Μj_˦ӷ 7O8p}>Bތq}Uq:$~R˯/M[խTxDg1U'}c3}IaZ;;Ũ^F#^]<גzV[g4SpS+_UIE~)#Oq"0<3 v= UbTީ++ihEd/i}1z=JFP7FzR}wjhUoecvըi,C _]ʥNIaĕ:޷۟j>Z]{wל}:wq`!"@7^V_ƴ+qaX)/=D/UqKw5OuJqШys^K4Ad4YUxc*P+K$R>'>@6>n/^a3ۓ!x(a'=7y;j oOB64AG_ʖ8AvPHܣ47evs(xQ#񘊞+@҂렿>Txif YJd2EḠzcF6fd2w8}}Y8?IUϢu_xrptʛ>Y1X;^|^oVrt\X*ѺB75깚S6ogR +OnqPLC^l 'xI 6Xv !$p 7#: R6 pJNY<M{SDA?θ wB73TM*P x8 4:?)) 4l׌z:Fw`Դb6nMT9{d}sZ*ܻFr~3!'Ǡө/mn]Q٩ͭ\^iL }4Ĩ mboQ\+ `ZzERyHk 6YU<[oMIn$+-(>dv>P~yFg'{إ[-Aq>ڇS?}W~ʮTaཱfd~z=-]o+S/'ܜ}nCD|ͿX\W^m/]k]90x3}[U6t4h]@tG7o۝bƏ[Î _IV]374gc!tϼÓx_5{+.illxt;j\1ZvI#J 37 )Vߔykimi055\6m6w [([7/3\,-%e98ͺ,K_kbKSg%.Yv[.`!*wbcchVQmlTCGo'߱^Fƫ:#PʘϴL[`OXw@|W8M65~f@'2 1Ka 뫷k|d,RK!ex^Ǖ|d(+kghkÎn x+yG6F, %<^ȇ[ #4g+Kjo֧n)Td25kRx?fרyde2ҡ2R]s:$}7,Q A_Nā9ʢ ֌I$<1!zi&8z<JP_9{})B  J'@%Gh"Iu[|^l- Y=h} MD</y>HGc)CHw Ѓe@x2*qbWR'Z>=Hk]z(6Ez|h‰W >@;?<}*{ C.w_T?> BR@<= %`"{88'd(_9`@'_|,h{u"~P6g"u@5J~rUm(sϙ~J ^vl*DIJ'm (`O|=dmD?S}9` ݺ> ̉ x'2nؓ H! "$@u!ggt2֮2Q5_Ld;Ѿ#xiՖOuC9-ZwQW .z02-woCzRNJ5zSèfv 2z]$w;n8sr<fSs<\k= 9*u~ȆWEta]x9Z3Fb{cμZ$e9#־!Ž@tx/݌˖VMi6q8b]"d"nh:tֈ g_퟾%ݦ'`֡IՑ{0gSA"T)N/i8[[KW+2SoA{s0oY֥G|?u[uZ2.Z~eWT~^LEEAck<. s 4̉^?WmQ<-tMA(@ j$,8vL[ |m̌@{ˌTR$3=^|;;q:]B#9oPE&RH* ?2Fz^vQfj/\ R/^$$%H;X3܁HYf ҏH;.2$52I),0>3f k}![DJn_& r&0 374p#zW ʂTI}#{ΔNiv)Xu6/E gI#-V=ǡD_y tޞ훴$Ӕ}ġeO3|?NnA6{wڏi4~9s5~/+}-e4tsot^{4gc}レg߂~o_CAϹ~dLOoΓ^)7tW5;C/t~ -r?ףϬ ]IJ?Hq ^=}8#=;o>;;?0@p:vn?>ssieDfO:S7\)z{uq@>8\$gTE#n5NjG'W/E{Ey:bHwKxy__59o7~-9s4!\ 09^QΡ{i}< sutKutu5\o[?Z.G_0N:hN9]/GәsNuOYO;|ԷNg>cti6Vtwk7w`1l֯v~ϰΦ%}9|I=7q3۾c n0Y5=&FσeI'3555aN+s Dff:NSS5srlMt.ӛWklml+քqqqIJ;7mOgWη{_Dzi՟<8i` Nu6s!MmuU|[om>r{.]]P|roO=ˉI̾ OלɼtRQ<{0hghz)(54(9}J-GG:ܜ$WcPpCRbq&Ƌ'fGN9cƝ.w2|}!s<.sNJ Mm^nQ&`=6Y7pP͸".ӳIw)n"^2r3?;<͜,vR$CqgqE(y0\?)FM/ʓr޻лK\-9Ok -:T~~!|m„TF_Ut#tK׻!W6yֶ_u,{P =2Bye@qpçj.3[Lir_&@1" |lfv\zwlF it L[{lPY ̹̇t+\^Yz?vMFCy)Fz&Z0 o!shXb{Xѱ1+j/ NR};r}W &VtIl)%y⨥k6:CTp2<}}M($!$O/XZWR۱i"R!Y{%]G[2[0Oisl^rYE FuFԢ&>9R:Iʒ+P``2f`nZj5vcRN]e˽TΌ/K$FY{ǵ H$HObDD|kWcզ_qqcF#лM9'j9& .'8 D;`$XF"_ֆP3p~,$,GbD#- kh1 dD&Uq[ In7MFs_Nݑu([mǵSh|FH2d:q^)*8"f9iOȏuv9x>a#d   "sYSadr1~efid}fU`3<M,:s08 ^зIn&`bU]̬7xx D@:L?yy'^@7>2#!ogC757^bq3c=G?ׄ0Spv}:/p<~J_\'Ku>gjsy[v|~H8Jzq`Ö/4>m?Q xqDhogw;Ga&s8mvCOau>ݬKٰP ^1%`yS 0l-O۾$I`D+U c?q=D`(0N񭐹@2!^a~_K(G̟k#?"P7g>,~$a4!P}L'@r$i/ϱ>D=ԏd?>S_G=PO04!$mD N/)+Lq;x>=8?=Cd~Rv>z>S*GɁS_ʞg҃"~ЇeS|4/_Oƃ=CNP~Zޜ<#AiP@-QP813yJ v"~_U H:@AI*4Q9,L`ALG#\;˫Lol+?czSH\}'FxJ/U@Fn{7qD/Ub&1 e㯉3K~>|.y-< ]cV˚9Mܹr?/SښJ,n95x^맪%<; ,Sva<G?woDt  =4CE&X r8|i.'BjiNjs?FZ?2^x_;R80A $!"Uw_-"3Ծs\Ɨy>?9_y}8Z)|Ujk33,,74_ V46`.rvƎo^__\ jk%jjj1Ofo׭I,7URW˾/-Q'*٬1kɱ8{ÉL\v?MX-~v=,1B$׆:ߙ#QY;w:LLqK ձwx=QrQ랥΄'f;ԯ{cY0cY=iQʦxXK 92k h/mli5M]*jAG~6.֥|{,e:ˬZ#"WFNNE2_/deeUHX6T_I8 Q-]ʏ. Z%'8b9WH} Kʿ7mj+lo<MNM\Nme\e)qx< VV9U&ś]gRUVVU$N3 sV6?$Y$$YdZ#oޖ:| _ޟG3 ASdx=Y vTD\||q~O9bgϓMpK4I9@Dp>5O>bkPax P^@r *߸_*~ɯֺ<{FQ$Q tn+m5%@=M8$MkvaGP#Am={@{_{z|@TCÉDDnCl4*O K`;0+#)'fCB8ׯI#_i"yse[Bp=RЉ TNWѐ!0$ېd~RC\ߨ/)2NxйS/_yDWeO`xe#򗯀l_h>.(<}CHpQ>B ~yކd)Ǖs@#R<|p)yb IPOKB.҉ٔx P/Đ8@TPܩp@xT?IP"}X~D+bD~jC OO|AQ:<ޏg+GY= ||0qP|< lQOd+U pك0 {ПEY_"D=Е3} v@/V? ss{uϐiC+#N^Gs[=kJ>TOG!xx?wH}'"4JlQ?{' |z\0WP!$D7<I!S~SP܅CS0{xxi>jP_@}OĔo(U~a_~ZRcdTС&> >NT LE 'ȫhU:AJDj* j$7t'DDk6~s~l X$w\d`|^DZ.Q*ĸ#g"-udvWon g^Xv"ժI)ݑc߳p#'Q9tߕlMо9ka/2/z>Kw+J͛iؒ#8d8O׻{@A>wԮaLuXor-K;exCs`$Y+@wֺa)cJHSx 7lv; 0+V䢖A#L4dvH _KuFz\/u2`JX#o3F9\ . 7oԇ/~A{7Bw3 Ly̵:cc"(rwץӃ=:rnw,VS)׵qn~mm_059 HnbCOJ)F &gݞx|?65|EO`=W^aS>pzXqwN5n}:8d>ͼ( Iv JKGx:A(nDw}\z7ӗ3|:ʟU1qwáqsOZղmѮiϭϒ1 NZA&̢v傾:/駛f\RPY-&u!HȦYZ{V})F KV?f%{=ɩyvl,u;GKwotn{7(˟7'ggJwxڗmonyg-WpLwg'^ӔƔm8 w9>OD.N?\ƸcρoYOV~څ܎g6{3bk/ﴝ[@<7g[3^o}!}1/L]P?iPGq{y3pmNN<'SV]:g~ztmmٮr~ivI|`i?pqNnwBVeѧhVcۼ[N[[ O;]񱝉΀к]|o/9rqs96;Aϵ};p>g45< Sߗ=[఍sphff ld$KLͨ3 M\_sˇȌE}—S2XLg)aΝGE ~\2nasrGey=ZZ@pz8>a-/c2_}|͟' LZl[88+p\',\1~lu]}sӵ9 @tsr}]{z3E]z Ls~{TdScm4ok1p"s/$K$F&nU~ŷO>Hߌs/ПI>3sO4E@C4:rIڒI?V?o/"n|IJ724 0.ۿgy@,p$y?O*l/8/獠@Uؖat/f;s&Q[9׮ Yǽ?Awko\qT.yKKHU%D8 e$߸@_ڔiFڵh=Fc./ݲhL};lUeSzy.Kw@,γ0B(N\@3P)Ԉ )J! >3ZmMCIr(Uelb$YQJjLX 5]\ Uoj8CXx&GCLkc_@ihF?gw#&-?-nE0_` dj8c!KZW CpRvB*vcd$44lLZV^4AI>khs>(yQ ,khyvQ{T]@Cy~=,ꪥV3g(3 u%(Tl6U>; ϐ7 B\q< j!`qGF4z=[GW1ht É;$0l;By`CQ U ݄+"anԲ9=W&NwJ?̟9`,̔/(Dr<@.P?{\/[(-u!5q *@[,ÊO+3g,,u\I}Aw'WyZI#AG֕CE(,NDx2F/@Yldåґ;v }bs2?] =7҅_׺TQ([OD"ʋmYR{=SDr^ay;tS|o5'E^ޥj, !n6,kk_vTD%-% RP mPR@N $I咍CarO 89(h]zSd}*|"A{]Dk)|HPj>`dz0URA)MѴ'R`7I(p2B8&tnx)/f|2/^Ggb}mh:C".{}^j%bB+3~ ҏzMq\d_%a}Oc y]7e[ ͱ^kyZXO~^| m+}k>;7 #kjQ쿎_?!Vtu7Dg6gqY{_KHA܌h4S͔~ۘ͝}(Gh*ؾ8>&223i9Oy)3>L(Bxgh%FDEy24 s-mzvQXϹfƝ-0/#B[E11+CijxN m--+{v^(Uޟ[-QxKHT})T:=,y,~\+XBJ99cG^BӼВnlM-~䯦SYxJW]43(/w'RRĸksK1Q ʆ./.e|g cnU'Ϩ`P.*xRwU5 UC1XfgXp>bmCxY3*y8ȸ:m5lΒs/qٙl~{Wak?ۇrğc~rXH5 XQ8VKƶSW}lh%4N+3%m~_Fx/qc랛x/>lfHqFxn0|b_`dzŁLU%EXZi~g2O'bfƑHEɯWU#&b l_01#7}^Vv*(+˸+V˷Bcۯ}pp}oGF;A$1_~c ؑiEUF3{ጪgkijɏc}`%M8F[J:cZȶ[z p_J9a};^&Ko \' `6wo+뢫Ma/ +YRVUKy%W7dHF>76gkg7K6{m!L8xlO]Y,W.~Krzkl2u-^H%IUv%Dj2ѳ-dŝCZWf$D5bQu7cc CvۢᇴfԒgmGmԐlsXUl5eY3p^~\?8SP`I:g *_ϫ]ZӴy?[`>.2AV-=2[#;&=q_}=|3la͠j3kmKA(O2{V)pԂ)hkCބ?\a c*PHЃ  EEйa{ʑ?+o u91 , gk:D?0#6:/=N:J}cN)*r͗_~$CswݑL~b+rҮvIvU2FQRaQ@|YL-Iʦ0|1@XuI/}\_8oRdK0zk,HFc࿣gK)uӊ>Ʉ҅SKQ"mK$VJ߄BpacfƗSapR&,[6d ӲP#D!" 9 };DN.q0e3$Dc#ߴT-xLn*ӣ q_ pZjٖJyh{ϫ5Zޣd>wҵER$JD OfGqvY1fhb%el%w{7FY<;;! $?R/+J[vac%U#!(pH&e|PֺwVvcHjD*W1uk*"J%c^qJvm-xxF!a ~P翯5 x\rwbNjf-_m}[w&WoE';(<G5Ny/{\ߌWq^j322/q`2lYl>:}Y'YDO)'~3_ŋ7'_ ^C;DľD_ݭ-++(#$'gfY{ ZLJ F4x גwZZ;%{߽֒ᖕ5sWƷ5ͥ0ik fƮEfba13++{=~غg&qqq^IoLӔh}髙oRvRYU2΁18߻ms҇/N/. iAԺK嵱򵱫1Ybba^\ ͭYy7=id}[N:ߘqqsrLQt߶2:n.)wOog+++]oүm|Zx~%[$myҕɉ|,4llǜmƗllOWŽڕn[e%[[{՟ L&?eQ/?.JB:AQvU؍dfWykcY:v&?܌x: 89tz62;c籱x=t?Mf?fiг XO<>}?>1|x|حD6ֆ{=37Qԉgedfhԉdd]E35^NZy-qѷ__CU*FFGO/|:?'k$&~G'Gv)*/$&%{{Tn~{f~ߪg6嘝6LGCAkҠݵ/::?1)8|L.zzvu)Ǜb{k7pu[uZ kkɶ43tX=lbZU@cy;!cDDj:2_:m @*8f-K"9| \A:MQBb:n|BWQ S EW?h- u}]S|) g -ZWmλ/?{v߷uP;.?&}}_`{YMϸ-%+Un$[#>6\z00tߌ.w1p}sgB<ʾlǙǎ)tOoG; ҁ  $@! $lGus8$$om(zY hnA/)Eyi_u:)%MGv/ĢkRv,.}y--{c]}@-GVj8'QU8;:4FkJ,׳ISunTwN@dbYi5gWx?_޻P º3;x7lS2tl8V1x,ťs`cڹtAF]j~rʹ?fȨ5޽LX{?';_kim;'dOƽhX}1`y/YRLLVߜond=`VG@65[:>n2?I Iƾg Y.O[:r=92_g?l wH, Ў_fOD?|w^Ec0/xxKxd⤩E漏c5y~ 1#߱E#Y(٤Y]fwOmm#8N1qtn ͠lCs}Gr?LˡUSwߑk.vEzH}?{vs ;&o+[&G&ț꒧ɑiG ZEFfD`Uz1-klluczoTW?iTw؁Q#ct$=Ux2rs1h/zu w˺x;]KulkY|R.<~??<7 ϩ8?wבJ},ppl\H&H(.w,O<?bZ96|xH6^'x%tD?=k]s`g.h-k|#/v-S Jw W$88>^kϔ4&OպXn+HHHH%fU=5O+},K+8bqq̌wWql4OSt׹q kJ~C-%vU8zee?{&euDRNNK>YEs߭Wi5Y]|C6cڰz/s_;C=`Bsc2.֕Тي;b͖=3_hf|Hu<q`nЈ V3ɢD"PA׷~sF݇8hm$pGtσbŸ m>A3}?½^C}_Ɏ?Mײ^D$^M@UG|c2?TzrY! чwQ1" UE[1nh8BeU@ *&fY tI.};c$2=k |60@Fqq86Kqwb9p(]Xf\6uu2LD+3٬G.DΥJ*Yz~6M~AoB)u<RTUɠ AW{b<:"~M 7  67ޠÂsD * xQGE_ai>'{>jg|,uء umh2xt6f1,Ʌjl.k֨;(h4׮-۹ ˦5N. c=\[)Sƾgi0d(B_N%T`.bdZ#ܷ;kki&Oߙfr\ J29AAF9ŲMm?[n;Ѱ[&fމ !֠As3謕Re3½@s$PE;t=5#c}dJ;Xل1q$TIEc@aC_񻍞=a{8&tY?Ձ.  ȋ84#)q-#aqa\Y [sahAxd:<C(xS\ƫիI7o16ïD=ɊY 9HBP(5KK%[O|*=U*R k MYm!Bi@x8Qld$ W6爍A }`jf??PgJOeW-:-Ў*== kR$dXoDE7v4谝syD` AX<-clن%~='% !ɜ|F$?gsiby`gGqFڅF v.>6b֮ڙݲ!gwNf3IPwltd@0oSon\K ;p4kD^ }W|h_?,uw˜aAH$ 1tGqb=I8ݞvvuS֕aM-^IhFֶ1PXbљeZ=e;5Ld _܇TzȬD=XIt[RҟjE s`<0Jr ܵ5`HP;@' @>2|~*OR cÇ="OƗ~5/ H`~AEy_JQOR(hU~jUUvtH A Hy~e}o&}>[/s~S(ˡ5-DVPH,3c֕Mԭzc|ZuuX^ݘA6I&&̤Hht޺ ].G).¾"F_m/ +<[#~)3n @+%IYQM`ve|fvwѯ$?G .B#} ̀eх}m-VIr2܊R7aɄOlJQ<:K /},߾:H-xTAkXv)8>IxPY`ߣi(`wUQYMkԶ4ɯ1ce 姥A}Y%kVI$&~߳R'PS"rPc]YwR!FQ="C a{Tדqq$W{e}wMe۫($(@/F/8S~/r?()H4AHEJ4H- B4~W|M{h<l ]IW})<>#.]9l~Y9M{e'߲{F( > ]%"AaWS;¿I7d? wŏ4pw S;z. 7~h3=OK?TMb3^r,LlFqɶr5Rvۜ=4;'y,r~Mo79"IZ!."$܅ Мhcη%@ج0 w?+~* %oqq^g?[AfcЏ۶B4ȇy_D^PiI{VnPxl:WB_) P]ٰ8c>7Jӡ<BA2US3vfq!s:? 8LE}5s`/)B3 ʌ(^=^َH3k=e/_6iZZ)>'>8o68 <{X.y|zz_py8ؑ!?=>'޺Kydc>}:w>__]nNf]o9F A$J@>)<l}]viv;[W 4̑NseYO)wcyx-6{sIm*:}UkJ_:K/Xxn,5W' ƣ?ܚz.N*Cr.C(CUɲ?6az8>A]gg@s g>}Hjt1*%i }E4=d|[ /'͜;8t#]yhk0ohOffƇ. ]P`FHdr)0=%C} :-yw*G,MpSɹ ׾s o>kWU2W~*K^uJ XoGL ,}]!ӧD砋zE#}ԱpD=E5pi/cZ{ N|ĸlg`TK8lqyevtң%- {’Hox<Ǩ^A;L`ڧZs]49_,RݝI'lk`b5qv܃H}&rU8l6w{"^ '.0})dC2,hf%s{D~+\T~%- yc NqoL{lIhxbz#9=!qj݆i]FVTK! !{ݺ+L_W ?}ȯwo`I{BsêM]PP)V.*Fxa'!(mNvU+ d4'$ά!ck0b͡({VX"z*_ǒp2k g({L䕗taW:|pdEB@ݼixN;yyY_fMQd^5~^NUXK"ʓx66Wu(R֣Qj+F !-71?Joa>D_W! fq5b<^9l;ϭ 'ޏ۫賬}쭯޷??MxzォB lkƛTϑ{ska?5s4:76Hh7D)߆vrX "MXF$hE΃SDAǚflu3.u‰Oed{EMh+Vf}r;N.3X F'e??gMAv] NCh[>wER2B[/'3SgT;H\wIpYVStw%[S?%}02E(1 x<>)6; 54X@59F̉=6`|Nv94k"f\Q" M"hG^~% Gl*aG8}T;Cg;m\+vP??n;Fi;:^١ oA'.ҼgE$ʮ+|_l _D+/J- AslpS{ 70]#'ziz_oO;'JF (hV ?UvWFN k_#i7{;_Ϗ:Jջ} xu+#Ēd~=9/5tۏw?>RUk;m}I{cfyet`6$QDD=%D5y)/+ck3I>(2̇?py*X&1A0#֛.C] 8:J(9WlvMt_^zN'7o-7?ܱTI [L8uS @hfnO`̪x^_o-\#Jek vϪͥ$;Bۅxj6BL >Y4܉ա[I,K4p9 {>2ԕz1dPD'H8qY}ksLhp[-{_V,3'>m#Q= ebUpn(EC/;E$pj>~B#9 WV*bYϷvaε 5s<ʬj)KB:݇&I BV@S@*h^Q^@HI5PӚ+!06?.(*F>hOϮ8.^Fwp]yϮ :Twܯ9ab#޽5Et7VŰM71n2ñ=7GNH ˠ/WM\b_Zr7yb4WՊd ȍQ<WD a228\yzDt (YZ4~6ɴcy8U@i DؑQ?<x(! ]xF1<Zh'Ͽ,HsK#`pK~EPVl 9BTW&||qq㤗U*ecq )y.QR=#=BRbugfX[5,#':h< 9g.E^0$-K4S8Y祜 Ww8rAfq&ɐ7W@ 6ѯ%7OC~' YҔ@RH)$@ m$HWTfmSb|uE{8.@"Jl/WnKLCw}:<>g2^#zz߰4Vo:O4"ٷ\_PRK|QGQ"⒗^GEE@tn\᥮ߡd_^_*AF>kȲ\hQa/P} ${GKe(=O#,}[qNo܋?Ap;Љx !dޮjM\*pmFSϲ[n;%U/{Eqhܶqsc'(j|4fʒss˞KTSq7d?uwwP$)I Z(رZlkFHZJ VS|.LA._DJ{a (~XZ>Qgȍ<lZ֗n^ot٣!mnYӷ{uz֏#y ^=#@zJ{twooyTH*H@ϳvޓ61*%jWJKP6:~l^r8ߢOK c9NU`í?5rb''ש^kR$jjaö G$9_GO?NԵq0v_ c'r#z/$Eh!lzG%_yė& Iۮ3*I/XkvC/ </N@VKA9/0u%o&^e?uWe+OsH"33ýN6 !}RZo~OQZ`a@  . g^PiRN9\GsZqe *mʗDUɹL>[a;Px V),myPn51u?өb !JP4H%$ H% JA"G'}]w,}w{\2d_n7*g#sêͣAQLv^_;xwxmPL8 ?5s5vC6z7?]D칉{À?O\H*s|5K \Cq#W;״q>p}/wYz #̺fO0`"(  ZVGr%vºT&*FI @ wk"9D8ep4+T0?ɂh NFoOҒ;obn:eɡ]!ʋBRվ_0pSz834t=F|235]<^K1"WWFC+#qxk!Mwb9A.2\~X^#'ьw"\9^Q}1i (1}@|!d8Oj޹XQ{xl0[:FaJz%? ?wޮl3:eWWki񣎫k6l@3(߅wE1w蔺Ô1zo6y&) TE=Kv}Wl1ёu!gp6=#%T_E}B}-1xH%/lbor 0}PdՂ[}/ L׾ K:ȣW7惶p"W՗*܎G/PO,}eYwL*8G䅗zJs8~w2Tu1l2h<[:,CP "?"q# y_";lyt?0 hP~'z% -E4/@J`l4HonNT9E:bdn*Ő-G@v {]:cyӎq *kA$ߒDMpަbaK:TNsei({E@I7M] NDR&";an}S;t,"w W+Vf@HBԦ)Fn ٍk]ӊ*xÍ^zkVfbn'됥i_Yn3\gglUöl1xM B+U)8˃dtxD -xK_dPv4ʊd"] lva'LLn Фg9"} o,3H{y[;S%E">MDb;xq6We)mG0i[@?LzżðI8I mU ̧0kH{ҠH4z>BNo81 1 u{3rл{;^owoBA!8]HTW0 ޅgeaR~\.O5`y,&+9oQ`L}4S}5/󮗬[tsEV{ǜKZ@a1Y!dAW0 5gG48]~^rUaO'a 繸M$ jlRN#;w@ A AH=?ntN6yJ2.Oa==u]!VKv١,m?S0|3GHt屦Σ%a*ֿ@is& -L~>*=i&:ZO9F& 1>4YTx^j[qŃH-3ەQ 7(_ME1>+pYC:bN(otrV^rS>o:QB A )IFV5mI)$A4{fo9l.wEⴜ_O1L۹ 84˭+s?Ö:wgWYQ>oNv oCFs1Z.8!-z@H'X9"Z@6o{EnVYh 4 QD ~ǁ#ozoCbFlMɭ>;$8 }iP\aHS"Ux5$7ہg0l#D"0f8sc*pArO=s0W7~ '}38%>>ueU*[30ϽsVl-j=f ٤6 5C߳4:^gsC:(~H9%EH.6Z~L?#( 0Dy{\H{߼Ch~b]ܭsCU| E|7|6'`tK_fP̨ss8Uc`jd 65{EVFizpNdb"J@"R$"@HDꎟtZ'rۓY-"sָE{ݶ^I? w"㿋aՌT2A yW~%M %n}G%f=+MJ-z%q^E>jHi9"Le u9/pIF"qv>؇n#*عЕߛz]mA IT7TƳDp; ?1]R(>$$n$|DQȥlS#.@Pz[sZye&zH~Wp6`e=t5q R^7vlGcm" Fuv=Uu 6P!(\λBvb&/ p|gH!vImtVk!wýA3f(V<&u$$W#k:vo^o=iFZZ φ"nv=̢&xS3>Ϸ|]YZ{קZz>r<-@@r3.0eBc e+q1?$#)ih)GH]C ehΜXD|a "P6hB[&XWn <#(@Eu%'mP3JH0M1F͏9tœrrvbQ< .Jk iD؍8vV8ˣKmd4ԝb,3cXc;C#QL31C@ }F~_#[PFE4&3Qs6d^Y@oJ?cL=6r5bzwbwVӠw:=l-7ZuUKpb aBwgouaS=6Fdޜ+Yn6.F>5Z!8S!WTC 7 >;cs k߫KV<䙭1suYW=t"2.; @A\wʤT8O_OwdQ#c*_w<:+M# LOgo=xmySP:TO9Z;]k,֫~HUC2৴GHM7,PC̉R,%KJo6];]$w gpI{ٕ[ݢ;av7de|u9m~9 [š␯Xɘŧ//q\Cu_t* ꯥ}A#􈤇kl+Q ~de頤(}K܃~6zni ăw|&7I+5Su=5.u(v8R̪8y9ƨ?%=ׂ:MpBc$=h oL+ĬMGbq{螕ݲ^]*'}܏^lW3WXd_<7+/l/bPx+؄ qItzc(C:'tA Cf&jY993[akW4Ois/ϥmRidYY7FvjX5r:#oU$ x?g%g#뮣lF{|@='Uп%LN4ZS8Dɭ"_XjBZ5_'%hQyx'0d Xhp F;*PE( $o"m<@Mu>:G=ذ߿Ox!$ ! $  BD684VF÷Z_]I x-+ [st64+ %x.}횙 + E9>tϏI IO~!EzGD&ъwOVʺD+ӧb k>  Tr~a["<|Bҽ,M^j ~c⾭'8Mcو*1?8Pf;|=ҭNHQX_=((~>yMǏ7\ \73ОJ:1sS}C=W[% j|.{\.*/[b\ggcZ^C44!5{9оUf#r| >qRwHv. Vz>Y:1viad7%!@qa@ w]tlXm _Wip9rSo5\nnۑȮZ?%;?tJX\]DVb;ks?_vg!۹s!LFO\dfO$M cٌC- ?8 #_{-VY<6yTY oTn9y̘bMۦ fax~g|2Kpv1 fy V fϙfMioǡQ\ˆ!ybGts%ayzWD?aU}BDb_w)FK/o ABX9sәd]W$AѴ ;\NÐq>@99O*cwƮ(gz܏c,Dɑ!MnY3릠]6ܗlZҴr9EӰaDŽw{mZ_y.б`xdJŋҔ=k߀$ Bm[rvxsk_ͥةtu *TšMfݿzu63nN=㆞,Ngyۺ8=GӞbTB~\qq1+x~[wn?:: \">[EmXzN ԕy'>AYtߢ]^3p=srRL?=ZAx&xXQAm@7DoV(Fݼ+z; I8#O tJ;y߅vTtqS43 zm-I,{K(1`*=ibڏ||(g^LfNtbHcXdՊbl[X$ ;G4"*aQg`/2T~+zM?m|&#G}=rKmJN,/R;lbwwvws;"R^]~T7KȖ\|j&OտA$%6.[glOO3%;n"2"8mehn+6] p @(C#rwGI]l5zr|w~2;ĸ6^K=2EX=^p[F2Hd|DL|j8ԿKFr<G~?!uLSkt/ C ,na*#~oħ_!A=O2Ud 4&9LW3 wcb]ᇺBv*9@hz\ˑ_cwG1"9yhy5% ew$R`'?LS5sG}=mAzѓ%:RpIVqէg Z0TJuh  .6 Gq{֠63MB#Y0ӣ0ܰLt_,,Q0/KObJF؛'G2s(<&)pmTWu\S(!``V ,u[Ҹv'2L}kuNW.vn6K}`[obnp=.J{X?4Ek`,j!]&<8$f2tl b#DH Wo`80bPy Du~E7ǐ}-i?q~~Z ${h7rv '"b^} ;+8FzG# l18 nLK_ٴb >?=0|]}KTDy! P4}?,qDϊ($pۚO?ԥ\W/;w,YB(at7ʲV|v mn:eY<$;*aCجPp$@ӐP9eGÈ?0'J \Ju|@$q$L "#@~}`Wj֍ax:F*DmEaĩsJf]BZgJ~X)p(S[S8 JB!.z[OFXo9#Hwm"4ԅQǬ< ^%W@*ގ-eQʈ^Jh'߉y­h(qJe@>&T6_ 9 &gǬ֪ݒE}[^Q ! N&άZUlw\+/ ,  !*O2޼T"R)y!Fy;8?V9"VYOX ȝ^ѯ<벽}Flyϼd36wO{2 *_fQ߮&I"BV"њ_H;sW ZKZn.?b {=7(u3U'4mm`׬ɓ7ȁ bi&G> UH'uJeHXQl8.1]zVV7|>ş3WeurEMtV|Q}1=Db5XnYyrW\po&=)=Z_2k3Vu{z ij)OHYna";j/aՏ4CQ>r_t!ʪut{cWr:t-w`5q5MU%q"}Ak)u\ e4q[os+} ;glyݚXtVADIC*E_c\WYcj8s:ů{!\.>xIZ\S@ΐ# olO|>Ι"802v<١)mȹ&HN7G1.17< CI gKr)H[}ktԅv1zSHΉKU(xA k7a꼃1#D 7?7Aw2Em,Ni[t_UF!^@[DJJQZPH>]"\qU[Jҝ?i &yR9CUP9LZ-dMdE]q9,l/QiSWgU|'Bj.(^{}mŗPixІ}2L#f]/Ҹ[,>ˠ?!)p<@FCPGwaD@mކ/#poa&!.3~AΈ| u<B߶Sv` ~gȟpNQі՜ 7wΒSTU8| lgjqn5.t%s|W>ekHG@@q>+AZ4IL^inܳ3L'L $O$_ëMv=X(>FnsKOf|`D~Τ'^{h=*6߷ł|a>I q _w3_ޓk~#F"FB1zd j7xf7;㡩!?篚dIIN̡QVRޡc[leU|?l DqH`icb@ADr>oUZ1>XB"vy$dpnY!D I#<o2CvJVša-iJs+t 3ow~nvK3K'm;.B'dӇFP(oG%Mxw'[U/۩\[ ML/޲uHg]Nɯ?9CC8]zJnbP|+hsNN6xWAИqj`HZ'#vdyˏ^GtzʲźrT P&ao~O c[h[{BB;0tbHdSX\{]IB)8 JLC.s(~z#3W{>}rO$(4"&u* h8 @I;ayZ.֦Vkm>;'hKOG ~ƭ?eb*]f$zO H q lIc i".|?FB'O' ) u9OzmB@ ZnsJT7CX`5OuMyCES44 U&㶇Vh'AcMYR>T;d߾gM_$0 R`<<,As_MP Ҫr17_NPx%!# ؇# mB~αS1݉lwBPƫq[3UtP&OX^dDdL;\Oflm5TH.LRWjnK9%1RN6fJ4 =Ӑm Bqne{yw50:]=.914ϲ #o!Xyb#xQ.k~ć.P`Kgggnոq>:hBES=Qh/Xc|b YW6w}|,? ՇclEi\q)P_V:E3>?- ƙ_>;7P;g7ߖw7*q.']>C]qd)7|y#/T?v%3-$ 7&ׄ `>}hMLyCԛUWY1Wߪ_Y"BrK|Ispr&QXnt%f؟|$H0ܝnHi58풽[4FތKQs!wy܊dk7HlD 1nD?|ūTۖU8X'FMvKQ6c+>5Ҧ"ZsT/#fI[(3xl{J'$m%q:'jK20yab2PQQ7R]ԽO/u6$e7vGO! CP]OksfJ S$! @xy13䩭"R .ޑ=f9ꃒɿqOɠf`EfU3WB1|bp=tL4R)ylDO&[YtǤ1اÿzޝ3^‚kYD,=p4ʗ,;MQx~@㇄6(H߲h<+!4"S竑$5=a4 ˃9dvr+4(8s{⩇'#¬/~ v8;Ef,?6clAC 18Ax Rk*DuhMC8=$OFi"WXJKrwt*b(Y=Bp;ץS1 jOZJAyPYF0#Ic[| 2\r_ILvý9N6xɫ^ '/ǡ4!H$D$ A 9L Ke|[=ۡx8}竝_5ߝyߟӱVgc=X{g׍'].>?B>WZ.~]͸퐩@ 'q1if<;@}Trw6b~DBK{|;_ F1Q*ĭQDkKE 4ا΃j7}SA|GmndN9DN& onbAu6*~mAs=DM΄P=`aA.SEJׄ!"KCR{3Dd"t 'PNRCEe~8?~SO`wi.PxkpG[`p_/G_JZVRm_UZm5=9?o=lٰp+z  nAn "+[[&7rF1Gq5W.Gq ܊F w>ᖀV_cֺqb# |ӍzFRPB)%(N *s,,*ygK\{v5YHa:¹ D Oi3/Vh0"$U"DގLWھ?+y?IA}mJ4>˄scN;AJB&m;'v`)Z~<u6v|B@)R.[s.[mUʻ;PRlԝ_uTn\|^3R<٭v~X/>S?fvYi$H~dOd,U"ue:ji7~WA.>u2 s뚰Лy*,;^xؽc^W@z;k]hSp->j( e&??@j -mZ/藼vqB%t;uJ݇4Ǵi@_k&;So&8kěԳ<JAǢש^(tBwh(ܻU>m_H8S.{?}፪+ьMdyQĀBi@1:X}b lil8 N8Q'0cN]:C;eD0aS!ZLy f8)|ltNdP{NPH>վB s G+|VA"H)HHuږh]ն_񖐫/o3_ &( i_ȑ_RFP{~VW4֭% X{6^/{3} 'U_` 7gS$Sbv$*:7k֗NuȲPBlBϕqII;"hq,RC("$XÎdYٛwekٯE5[̸d0+6(B\҉ i\պAeGJ_=͞}$k76reQczmE;\m:NX #׽4uyA0 tAO=h`0rIgShT3-cZl-u\y=*6oP7p]$n3u"_%&Qg >3y:L/eb⠟o;B~(<_Ci%=kȰR 7[̛O_/9Weg8oeJPWCk$B [gLе^$b(3͛|@Zt,8uTI=.-ƸýBkJqtg;o݇;X=$$Ro.|>-žwդ>>7-f{ żݤN`zo_Tv%s]N[sqr'm ʕ%e{QuIڮhv{aHk{Bu\(>ϣtw56lo2oXQZzc毘bYt/°njl__xo e?dO'UДؘa%mXlYCɇU埵cg.׮H^9Od 8W걳?T3(9qɳ$r+l߼`dv2 6U좉f~gt .) >7TЦ@=Դ\6چtyBszuuسPok=Rwa]ڌe2 lꤴhBDJX)ROxp¦ͅs;b/ :PLkW(Q J,[Ij5t%G,T`*1ՙ8\:( ^l~d A?]~1n?^U>;ne6wH /N|E~o0|Ӟo|w^f \i۹۔ô5~w6o Ȕh}eC=>6Iʗ,l0gG@뙒-yJ*R?ynIɮS˥E [x6" őO$v$r pϠ]qb/9fO"D vGBvY Ɩ"> yg*W~ljI)H;Ro؏Yrya(ޕĹI,@zB.FSO*cPetJJ]]0)cq\ /3?QrӾ(푦4H?uyH`cH@)[ nr7q\oTcԲ>K4*eǷfth:AWN [#!hz⒝߉?x,oLf:.a-1FP$;1B,bd'.@Ntr0#h9V4ͼ14aѪ EaZYEtEXV†MY*v WED 1Z4{wֿ~1՛cFjmN!C~wTKY~ߌPsf^U/u[6;\jVj{s[}{Û7f!^-}wx{6^H8w\'?'wB$}D@ so[s@=7tų{_ergG$ #B@v¯bVz<ΝXdLx((@"L/m2K~\<2Db"!0e1(qeS7['d~թe11Bv3Dzρs36@]*{p Wz̡3'm(2?mmtE:xa}~T\s*&k4jE8ȰiAei0*ߵ >7lB36NσwAeS&r'R#w z0@89!~:5snmC;1m S{Vzgѫ/Pux @B 1ŮVCn$QgPZF7Էàs4\Ԫ[,:<׏%oӥmSq?E./lBBP>1"/ozq_S{OczʼOw&NC kG##4bX[1FP;`_BK$QAW W!lXIOT㩣bg[E=DwgJԒgOgͨ,P3lڋYs%$c04#ՉƆB(C o_1RHPkEm?˓3S%w !ߨX$GO>3ޞxѼpEMIC7h:1T"K p;5[cpkKGA-CguMJ}lX!7=;?{<#'-t˿M 0<{<YI ddWCt7 2eufhR;Ƴ⬸ SW{TuVzl-|R;H aLŴ[,%ՏH erg 0yLFo1Nj;W}_#t}2G_yzr& Q;"н wo_Wt$ˆ[9 ݾAj32^P_RnOx2]L/_^ AC/8[' -k3jInޮ5sР6? pܣ~!ڡ] ]%yI]1nRw]ߘpYfC6J" _aL YЅ1'Tamc  ݝ:{:եNY`{k{ ̑)S$rhR f07ZZQ^0 UsFP: JI91w#S501Ɣc3a%IΌFRFvM%)b5moc8$T 3& :a6qpTw  j? ]ܚ9`=6́b;Mdus]ku{F   { 䏤~I6\NW`&,!z[~HmOQ<,HNj.iK4QwS݈TdQ9^GP#^Pǭ,-sEİ(+'/bY AzH,Qɠ/huCka7cG5$?3M4cpI(Cw]I= +W?Boy#F"ުs7sWa7T鑡LJs8q*/|][ t ;٧B@|p{xN-_nꏴTsc?/c$Qc{euFp}SuZ߿պŠt鼧\⸬԰|֜C}vO(:]%,$ X۬ёߪ\RDU[4̦vEܾy$tpӦ!:Bi7{|E|А&y}p;)Pl5C}6-tZh3IHД6"JM5dMYSiK{ǒZHѱbҍ662n,p#%*:p{SJpkb6gDGN.ڔ`y-=7e1#( tEQdkg; "h8UfSXׯCpT /V@s^$'|u6v.by`׍z3Zִ nJzDaWy=+: x_^|:Ƚ|,bFemB12IG\wL9xqܥ 7Nh[uLPJH XTٴ2BI,LjMte)#4-w}>5E48BnÇ 4=DA0Jyl&J4F"r +֥7u}Ѵ;@IXᮓU>g[qpD{ lI^^ń[󻓔th);ZS'5bT>j#I=sLvS[q20Oȕ+ _C9,@3" <{01$jIH%@y<`{(-C (\a|ff3ۓ~H̉}c/]ex /IUf@:3e#vNﮂt1b/zVLz:.Uq)yo}Vsƨ`2Mנvs 6tp>Q@˔Mj=՗]p"pGKǞ22w+H!sP\_KPNt-߲fkxuvFv3W {㾙m,DCϞ(`A$/"U3JL)[ko?r" 755m|[kﱠmv|m$NMRMWm3~{2QF҈lsFBܫEIXySÄê7SDnAC%a*4]إ+-]"ѵcckϓ-'v(xQRFfo.gbMDARF2L|<W{ HK##S}ҿRW[[h3aB _h ; O+*6J?^mf~$@x+b/An"u]AHvC ût<9eACv#[׉F|)tFszDy:$~ɩYy!ZxH+u~5]8uJ#}x=ߝw9̜/ URG J ]Do1BkDa_gwChzO?.J4h>J'OJm^ 2Kxy^_`((m2Fih[7|XأLȡwfDDRPL yp_<zEZ51H@d"`RIIFyuԉ--(Zuɪ1HȢ>{w^wE]kn>o5E+7>T~oHb0rSwVpMHEnFṸDp&5r"2%i4E^y65QR;L>"1ҽH~O=? JD{;Ap~oCj?[<`,?"lz𾹜ȡ^ώ^Zk[N]r`7jhT>.~$jq1-5y0q܀25K^5_IL&yz6)b 䆼]6K|U[z㈼~{-摊Q)mu7&JwD%DBY%Qђ̱f&|&{fmMe63_ZϪ4oUvF:: ]{g5#DcxKAD[$0v>.i/&@>ͺ6(LZ; t{dvy!}}.{[DX*eϳ_?o>Qga5 iZ7z'; iy' ڰfr0Hns}k1b! I@t.khA-UiP94?8yt::dT("R;d<ZJ""p]^&||I1X JnA5B@% XC3>ck}|U)(P} A\]SE,!5@&dp&%0̕\l{`| K*TfvF Yp<"5׷L>İVP?.g!r=~Z{= h=Ó-!$:A=w BtPPaև K l3#W~{z6myG ϵW݄CC"#}|po @=^_g:nN( _/oeV%Q=j$~X*`xPbd:Ƴؿw^ 6"  TW?o% !(1\J_,7ڒM&Ϟ^QE }-___D5WL|g;]S+מ*h=@04A$.(IdYp[XԷ!OOɮ~hw ~ ⦑~DI(.In A,>7#J$- r4Oפ ;/8D"\K|2QqB`pڸtAUQ!})殜K|5phZ,jޒ. țKǛ1]4TtWYy ÅaolyI[^ftk=I 9~;hЉ`*1% (kϟ5nm{oW=ydCDX׼Iۚkwt[D5{X& =܊dfc2dɚ %4Aj@H" PF!G68nn$D:W ’BWB'8@4(4/ RuA?E?a]?yv5!E!P`]ZTtYۡa)Q}O],ꬶauv8sK!깮c]^.-{uDi eL@$2d%SB .UׄhJ|\4$Dk֠$)_b$)۠9."ZXM`HR $I4U|τҖIHA0k}(km7} ߇w7IE)rLd{ҷ+%uh~?؂>3޺V ]BYfa ajFOB^KBz']e˽nX),3:dOAE+7(L/.HH6vvf̠,m=L-{HJ(EIT"@)<};|Y16{xww \7} #g|ezϗɕ !JSqm @[kje HBe{練f׾{_j P /ʌH_Oo7Y63_42BCit_vҷ݁~PdER~3BӺŔ[_q&6f H  }Q-PSKLAXhY$Z42 ѰZ-blʈXlh!BMMX2mPY"4j2^wZD- о I<Χ=-V$l ݲ+"+J2ȁ $BH($nqhfIDzV1#=[|$5^.3 0O.*J C/=6҇Fs@2g~"0(OUHP!D$tFՄ@AAdV5I%R^KQbdB`|Q5F@tw%"͜c˞!xxrl1F"@OƉfwL":rݏu17+yB{ŜzqPNWmIo]p nɣeͯǣ#Nŏ{衉()y/Q}x7M'rD[埦*,joOBsտSwuhm0g!~p>fgȆ}WP*@@=T/^rH0ܖ!T!:Yɐ$l _E'Ob?YߔsWS]}69Pu]]ѽv;fk5N mÎ NA fe~ o` $`}k[F!_-8U>O;Qkhm[mo SR꺢=r?h>`DEzL̜B__:Z۽#\+Rp&+2  qɕ2flM$ D" H@B`P}6Du1>(PU`5+ʩʥru||@| viMS4NVOhRFDJ 0 B"afjܢKhO'tٳ+WC5:mNh`ٻCҺt r-0H.}:>K~㪫Q>'툂Ѩ̣PQRbb0cXDj(fd)lL4aR 4l)&HĉE&6DclRA"R)$B@ ,GOFܢ6رXw.":CdL (%)* ,B+ #N׻߿cȐI"@WLRϫ|N^qD RP) p_%/nJP4 4ƻ5#醦@K!(i\̥ѯjܣ)d* h5ĭt!5W7Gm|/Cu].Q=l٢uL/ދ}E[ wJ {\{n+F `͡=n #-hV3 F <3j[Bps$OM^RB5j%$Kw1:*U܁$ X| ;r@ @PMC}fhp>4 6?rGW^]GZ5tIbH"~~ϸ<[ek>J5ht^-.z[~j5Q®NNSq:J_u.:fO o;{upqCʯң!՘vBE]gLl'F(l]'_hߕŻ65zȟWuvq6d!,jeu*862c0-B-G5"!`ET2Cxc_n1:O,o!$8 KT%83k ŸIl@|=u_V x rh "lnjSe  ~O,K~ëO&DbTUaBafUF@% ^>K^~{y|R;@OS?w}{H0$dMr,|&X{Ȑ/Z?BM1‚U 5#r}_]:og̑QU;~ӱs!s&і g5MՀA܅Dg~Ez">?b0bylp򊁈ǩ'":!]a9te#M( .*%:y0YjYkhFBs 8BdV]v^[R0IdS9afG쪲R4}BuiSPz*9Ki΍KOnx#BOSX]= !$$H$IHgkN%mvIm]] ʮݩ}ۇ|mҜW>˗]hNV^^\Ʒ KwrV3ݻͼh)bGbF`+&ocJpgO(cQ۬OӽSɢqf"pq@{ GV}@i.53-c\KC l vA_.'bSA jHR!73_ZhyV6R#K^(+}8)M ]=2v~we^~Ě)S-ϵo~k}_'/bH@ q7jnZ\W mRl "(+/UQ2fCtSCb_kX܉yl $ )!f|=oݟ~~{G2fE9u9pm󫠝: +ں̸M|F LgEe@PO:z}S\Rjo)˙я1 jwJYEW̰ŵUo٠DvQq. ;kkkD@1udA H@@Oz_+,[ob{7Av1CLj1y& &VUaS6R(T"$ЯjdFRտS4w|<#(DDAygzΞ,˒POoF]~8p GXƵ_ POrkNIvbaI{t=QDG0pSBDL( $Q ʬFat@8jߣ[n];d0mre8nӏ;Xi. v5}bl(4T(-*Xx(?u}~Oz-=1@IXZה,d)4;XJp_fm?20D}A= ׇ`/1CH@ @,L7u /Djb_c;fD\@t{( Xy>{~swpf~3jy2z{wݢRPD@B@ |[8<"> jZĆO`ksn>W4֝;Sz+>žB~W6-v3-+Řk=D[CKzkD߯B<4{Htz!&:✮)Ҙ~GX?/߻D xg& )/Y_h{ yLgdBp3 9T\oR{ӓ 33͛gF'# nqeRcmdMzæ߮*SɎ_:CPefg< Wwu:[> 6v-CXe`+\{lߥ٨&EN e2ԎbZj%0 oa(?(^5r ndu}Q@THmS2`!!eM!4:o|E ʎF8pM50tr @+$vYLC mGpIaMC:EϕweuZF"yDBvpP<.9C~[ Nr_,x  BM 'F.Ò 5 ),D: xKKD!y8Fpv1}ZEEҴ3A!; udckTV4*bJqL5c􀯱W.|=C 3Zyߛ?%` {;I}oyZ A*ˠ_{ocrM<\$"JD$H7*w- Wy_МuʊSr UBş!j\kj~3g> Sx4ѝlnߧ'@>f1}InLU[mIL֞7>گ3"5)-)/' _DO YЃp;8e nj8+lD;:FgN&LAl P l#V|[FYAB} .gPpq;}+2A>ǓRa@b) 3! eb*}D: J8oPPD꼁R` ɒD&P ˴-qi%9J`LѠ96*Z˦V)EGH3!x+HJXh4}vCxxJB&3V(TSlWeȖ55^ @"l@ ҕ^6RҤ̀@. uǗ-XL%,N 3fa.ZG iVjB (dB(xm6Mm Ee3K"ѱ-6EfEҚLTIQ%iI5)m F`X(]m)E]k U^|HRQZHMr8c*gktyC Ozc ֘@KLH5{ @1)¼ ,~r\gXo548G%֟5ն5H?Ĩ$ S(d2>KDx nix~a =`pQpP^#sPoeolku`JꫛB@FApA鯸`+&XׇЩ^c7~a |FC>v5S㽌M3N b!Un?r+嘦Ru9;NS{|ߓ7l<ޅDAH)igo|| DٝXy+ttY*kÎ彈w:U>[߁h 7[U,QL5wo)yy,bœLc$IDFEcnڧ`A(E f7qO@`  QJjy#Tfӭ<4+PnmÆn`@Ç$%DɣW=(K QÔ( BH?!"?) R*%>3<r) a<\PmLVT2x,59r0)!p,!=岜]yLJu]_A"nָ@A0R@&LHcdL16N~" >pRXנu?'ЇURK*:5QSh!߳Jl͋hNщY B{ ԂNZh: VjB*J"]-Is6yC]/x\}-oSf$ut $P̙oN=J^{w^P>HϞHW"^YKOaA P8 `Z~~0FHyuU"<:Fs5H\vWE'KƄ<#|Jʟ(]n_(vGF^CB]~t;4vSN_|_b ?пRײΈ_/N3{ siE)H'Q[CEAAJ0|(!,X: vkm%Ia*?wWL?.3+f8#E)oZbJn,GDo}*L-Re{͌Or'P=θâҕ erT*`cvn@)nU /moĦY3duߠ )ױ=?>kny̓5>{\N&JJZa]03gyka WP ܘlOLHiX_ 3w KM<:,嵰4uwXO%?Kc!Wl OZ(Z"ʹWBx9#$JTՌ`3J8+ 7dP$"'g|mQv8 ]i O‚t$=l"pRCЁeĀ$qkM({(КHT*DQs[o!@Q};P"eKM6MC$ݯCXj"8ҥ%&ȴѶ֫q_x (ÎI|_2X+aiCZ7 S11a!2ޭ3"`uX6HvUֈ`&_o}kAk}{}b!RXJ**4&a3[>}iD%ђ6H)hR4|_&Jnݎm:KyU|VPDtuW _㹴Qʽc؜?9ˆLfbt;1Lg B3a 3Q>oz拪\ |yie, *W%#{G}*g8__ӽ'/ {Bސv=-5MgQP$:g9#RDdos\6trA, ڴxgL:I ZP@ww&F) ?"r\ O w [t 3 _ L # ,7uwS<3c`Y`+xY,5'!z>7Eϋ_]#~x7@3tGR * +o% $ [F äB jwGn}*-ֳJ 䓶 -.Wvf>'6J'4E CbN3ȩY^4t 9_ _~LvV?%BH,*[JG&  9eȁǘsaR }._$mQ 5.L;qc6]28_&oם_Q;ulvO2 ($z y*@A7}VChDM=% q\>lU\Ed mo|MKArrf֩6_S>.?(ā;I/x٢ʊcUs7~O'}1 XNԈHn5c#d7X%4_̟}->G?"k7!^ob[HٌA+ ^6>%NOэx P[KQqSvx8ʭjFwyӱ\u" Zųbs-!Aw Aeu~ems6ak+87Dʽf!/bR-ʋ+1٫Q#i\ PŬ)h8Hsޝeirdޞ%7.#Bts2UIh(`aa0qhKBhw8`= :0QL` `5f |7#!zJŀ$ DCңՀP?߇ }lg|7Ϥv4ƭ'Ck5Cs-?*mGo)B=v|u%q3MrkPE՘ nחZj<%S>nQ;$!m6^5I}Um#.g9q _xEÖO\Rhhj~KYZD 3DTX!y5DB;}u%/v~]Cۂ 󁲫Y3hHC[KК5 X1dW(zBT~ϟRmB ˓*]*R~2Y9 èu7 9&x X\M;64'Ń'r^EHAۖK$=~)^F|SL%4\x b^# %W|IJ+aG;J&mm%E\KBѹ|ES9P(᪞B9hk\uc|#}<5} ![R\C~_@q?1 $W\\Wpxfnx M+Xɶ<<^9dAH HQh*"H$Ro~vH\?f]~#(_=[BD>&yYݭ(|S^Y"Lu o:;2 #n>aydC :H"!š#RSuݔ}G3aqwv#+5J3L[rgz44z`w.E>Hs>;|B,߁sƆ]jT,VI<!m]S6u!<)CO8,tw_njoPgr>!(%( a u\>O̒RZNיd(b^%%`t᳄7dE*@*r3êƈq;<E~Q?5}wtu($H$@2.PU]Wv?gf-b/15 >{|n̥_m]hJ}B4 ?b~d*ؠ/n(5ȱqe'+N)N#N_~[0b1CGXƣ9nGA@]}>B8.>r H^qD7^x,:->h:]ߦJH8HP:! M8'+Ԃ\l?؈)q)QD5$FQX5C.7j1(*I0vf!aUFU -F'F 2'N8sU%ImGn 7Bc}薙: OCG6b:_csu(ZDM)`j N_髄 KX8C ZX(F ;^oQPDuw9  S;'URgIza)=a c(hq\I~;SPE2p3~lzYmgڠ۪oov-Imڠ,vy)<8h.\*yv(mn3:+6~"^rɬWY‰ٖĬӯ{Zlڥp« *]rw;rw/t*uVmÅTZv/t-n'<ƪܱZ+'nUKX61֎j#\{vu\N\_1MGvfjS6:|#7{i||w'$}*n FbIx]V0#=W5gk 87%  =r'!\Mc@sm&+.`]nCxD{MLncaU32b~EnH;Noz]V4\(yNck %2 ?g =]sp( #bU­uIzT[Zo%xhN^) ,Nq6uh i Fﱰ*joG$Gخ#dכZe7D2 } p0vd1(G1n[M- )'/ݣ?wnxw)PIftfC9YorʲN [t#D$37败~msǣ5m^GJ$?vh>DY1_Up/?$VR5\O9A)$evTAvod,`YyGX{|f;rp/E{_s MBi5!a7K ^0IRHlWuiӊt}t'H_E6Vus}z + ܘny݇}wᖿyI &jِ)$^@6?]!( JŌMPV6F'SJqMVj3I/ ǂ؂^W! )D`@=L2LFHY$Ah3&bAQaC>DZ%uB#69},M )ٙ x E@0Lޯ^IAx+!Nh۝8:s3',v?ûLW{0,"bbp23=nz}~5_uF&" 2lF5$V4$(2 + 6[|~_hH !)$d00#K!ޡ$\T5qnJЉR4ā>XY5UhDA4`8ǰcdIA9B Ps urrkf$7  F L;'P[ L"OrK1Ћgֶ- NṔډ63$*ABS$JNc53~c5}%>2{;GG,!8ЉDH>yʷP? .XgvKg Fɒc05O5ceU{$Qw-y_1KI(FD=bFOrj4jso0FÝ^7Kz )iͶ>ULB_m; to <耖S| RB"צn{kXP8 ]8*LgPoG8-~q?ZFn\9§uWXqL 1# uo.Wx?IM3Xv\A/ae=_Iv<&Lv^Љvs$y(7+X|&Ϻ#_ L! !Bj |^ʝ*Mxɀs06?Nuz)ƃ#2[cRTԈܬSr5^z!/5@n!wh"2%M"al H e$[la l$e"mA YmM" HH$m0d A4 c*4h+֓,џ30mBPda&thԂn䀔q`1=x \ ӚAX>r)H$sj[9Cx\25z J^.dD]z{yFmҟH:IёkY1AwqAL݇q2%m"$RCācHI!Aݘ4م@`v#"TND6F1I ]iQ "l@h*I$Ll\Rj!Qήx i$L ڷm9nm \W[PE BѬcdCo 0Œ/p˟ER DhW'{O3Q2 >߃ A# K &DA DdR%#i ! B9%% 5U@&㉘2m]p]mbI%.(Y6ۺ|1o!' ҄ ="u~ Mۼnk %AP"@lId>[ʓ6"99Wq? cWЎ;Ĭ4y.0r^ | }% D,') (sҷ1إ \^:-o{9ZϚ㓙F#~K//@ӻV;7]Sկ_U㄀D!]g.]3`os:q>?GsRELվog7NAI RE ħ(`u@zh6Mbm[#Jtcw" dtLȲD۩gV"ɮXT8^OY9]5EUUm( bp"csR&h@_p` Ê'p?dg9͑_j&YP 41 ( uu\`qCÐ'9rS)8FHadXԗVI.E~wټA2KkbUV {&A6ѡ#_z9D1=ߛXs۬_4+ ^5gx?܎=B8]O2HX #ϠдT{Іv&|;AGi0,*X,9,R5~o2\9\Ͽ_b}ym0o_7=y_~e}7s4_.[9ior^ThC?捓sf0tgd1Ahl3,h"dkmؠ ?rK\dφ|cC!3߁>2}PCآzBx;P q#{b45Q4It+%^ gwŁdOp(*]-m~G ',]F{"Wd.d,}Ihp9bzV\A۬6.S߂ :>L`޽y?{?+Xu'-=sy9 "4 I}$o\w~6oƭQ=w>o>qb@>w!߅þfޙ̐>{?F`brR,S7}8$.!=L+㮮68@ZiBIWm}2kE2 5Dǭ?RzʽH#4{>:+8f׮D s?|b=a[|'AԘqrgs,a8HRPdNT+ *Yvq#tnd I*G9%: eb'PW^=m4Н{0A#G6` *%e^;&^ua{P@Oq<9>2v|y ^ iJ$TVE!E~K'ȡMo$Je[^|MNK:tiM 0kRIFnp_ ph j!$p,M#/vN-z / zzf+@f?y'hcFVeTK!4Cο{9rQM`EW#Ї۝7fO}::D|U;omN8~۷,;[s)+=9uHPW{jJ5Ф0bHLDm~!d |gF=~;sywΚwvMkӬyF!ng h$>+E;L]WF\w܇Q#M7T왁8dێm2kiIZkl_3]v4>O(#grE`PF[ qXJY1Y;{' #{FԸ%V le\w)lE_s{=qx⪕*r^j},qPhD:~7Doꋀ]Ф]V7D\`Mcb#|YB|('d.IϴX$ @iH+/ڻ|Uίcq][BL0!}ih 򴎰~_ߍ'|]Z[&( myO -З{ءTcMU oF%2A0E6qal__ѴխQ)HD"'OAzt?@Z rB ]Ջ- xQ߿Kc╼*o˄xI,"MkFB\{{PM_>@)qB rL\fϫZZ3$M.ȼ2 8l%Ѝ?:$QsGt,B1E贙g}F<.{!Ws~Nr^-PuLW@vZWwP+2GGэ~O]H(c/U5} ={XCBToz</ضx!`VjWX;V.yh܈{襾= _lAex3p/OtwpX"/u(^ ŮU8ݮ GF+Gc |WtoS'~iߗpnI46W m`67s{<[akrc+Wo>ƽ3,'Hq^^ DV>>|%Xs B^3㿜Esjڃ8>sӞ#ؿu H $d6nۘe@rEJҐFa6\# 8/M];/0XL<@@@h(k6R ,Nb EZ /!}{1P& 7;k=zdM[hpS:V|]HbI= ce _+j*ZB DU+\>2F!Qm?u|^Ϻdo~{^_aY bC*Lgߺ 批#~<4s~Y_t )tlO.fT1F*-^$ۜ#Q6+}Y[Dn[ 6-vthkD܏ȲDCNVB #P"{?h0S&Zhܻ@4}DPh$EQY D.'b75&TEC#-KG/_<~Ƥ_z%L?y'>rGQdpGL~dY"qB7~ݍFQW8] D,=eXn;=ȷbD/O>8~4)o׎+R(728"|s:"T_#$+chBvE aUMV,k> F4Pf!%'L0 XL :Ok|tAV3|] )GO j,ƌ ph*ƍNYm`L$8`C3@4+$xs"B("NQ߭C@t$4A D6C 5q)uP!}|~2;[2f{ ؁CLG<<E O! *d/w9>޾es!6"B硃0*8(zhW'X\+?Oc9aDm+A9]!uT 0g&I( *P]~k;Ԁ]}|f7WA$@/ 6.;9~_"vWؕ$*d %* W  GeWyeta% W o^U$PT.UPhj $miH߾ۨ(  $fx;`q<󼟵/=xO 92(gPlHu@w-39 }>៿f?/$=uOD)"e:@2 "#~a xR,~|WcPG^Fx=l)6!H-a5Da06Sa݆>,>I$  H! B ~9Ey|#hS/3B{\] x Ot<$dcp@AEonw:q{u"?|^^G!eXLC{UUYE"Zp#DIIWqx+Wj:1Tֱa6(h@B$#LXzAv-G/VRuI{`! ɶlQ$$N*Oz hCOFbR\7~ n 8(X %݄0D '& R}y2 5R]fd0W苣={ؔ''ǁDgYtށm!U:I'Y`I@$S< Z5㮗Zcx'S ٙ3s>~ny{ \'}<|xX"IR D H4hCvE"l$ ^H8 #OyI=_:^xA~ D@Q9֐A,@k0ztw՛_0J,`RUK$V\KNw\>uL˄[ GėP+Oߜ}s{WS]ˈ_ ?U&O\}z]iߟ_@o,9ԣ{.m(}D_OoqVh$I%*!$VLӃxx  I6 wCߪ2u7NN&8kx $p4r"G81U\iP ,ZGeH.FfWQaqt2!.je|,q)9<x_jyӯ?}A@%Y?~m hq"8k\7c$?8y"B[i7W[h %,6D FA !I|3E?0qO8/zθv/΀&ZzLxAtMCH?au>lI)H$QwG 4$DF)PP$2@4 QVBc632ITiM l"%"liI3 H)& )?ޙADQD;Fsǀ<u`Q8 ν߭%Y$snGT5wN{+&ʨ ),s3@K K4m!+_,yk~=~G}nOkW^]{zκ:=P緯>'?ao+ꈝ9FLF~.m:/ D.$Ai,ڷ~ӫßLFI>d }:սC_\T˟(g^txQDI}2u@~wћe~Y~~GK՛CW` ?*bE}qw>=x9~>89YKi=]f&7'ɞ`+h7wAJdu@BXa=4UIk:Ȅ, {S^K엿F h}~2L.{G>A_uj&eiϿ`vE}攐(ft>ǡuۃ:)Vz_ w>O=1cxϭ;#|FS`xp׽Yn T1AXvvRI$A&t%2M! )]0tBʾpQE+GV0$@$=: 0>d2 2]Bx{=FTjRMB#J d:Jha LB"R+TE݊[l2VӰA:IWbt(m\tñ3|俏wm{; zK߾ᑕRoo!v5"k\}ߎ}4lƎ.5{ЖF{J{#pGD+ʻ6^d3 |Ѥ4l ; ɹ&D_\J0Q!,؄^z1quƉb=kskXx=V:Htshl7z(d"ʿ+Y X}wwB|!ױ(o}g9 Pkע50m}e`ot6pe :A43B{Z1܃Gv198KhF&t_ґMb}35uc}ٯ_QG%oyVv;"ګ !:_}Gx3+~Fõ^;ܣwHx:P}"xwm=%J$wpf$ 8lx@k+`4 D:?o{lw I4A} ӥ{=?kDM}$0R! 珹~׃32{~_`9< ~f Hs,>o׆o<|}><=4jk7sDX} ?0z~^>088:o#"Ox}c^y=>@^}gu|ϾIRlowǁ7|_!~qz\Ѓfѓm|%8=9_ykbXHey mxOA(l YwG$#`==!>t~^p@NOns4}OCWAE>f, )X&Hz&z(2YZt~|[di$tkGϱCΑǏ^dGU,.!Be!}׮g7}X'&gr$̫󠛽L" p0D<;p{uoqgc7> 8xO~ UB,u:+ !9v "*u^|KxMyW翬N'},фK=~/kk~ˎ >y=|Ϧ=ֿi򭉁v}? ~&rX~n~=o; Ŀd#aά}:Hb#bpk=w<)g7~U~,aFE@uH4蹞C>{x3 z+E[}>y󈞐=};F#9!IGt g+^iOC?C>;cz^2Na}>kl$/um4:99'Ǯ 컛\uG;ÇԾ[ T-R urWxmxEH&M&UR!?W_cquࣇDcߎwiگO m (dc8G0BEmR~}X>wu vkH?NwQ;zn Hi x$묝gO6nI /$A$xExlp"9f/]n{K=5+9xx~]^sק\c-^͘L[*\GA&<5߭xh`#ŶJipxd1CW~h^xXørvazowu-M SCK5I @2?s ͳbF |O pB G4O.˒o$Xzb[73~Br98x%2lgak1ޤƖY{Egr7D N21O. .O!"R dAr9X0j4 @0 ~5tyZ{mi{|y>+EuϗtMvbnt|~?oiڟo (ݭpm!tމ+tjpdp.t"?`(5JwKvnrs _ne3A_aSyȓ{b0щ E14xF7kJ4's/ " 2X?+f{!5+IMٌd $|l%9ZN:F +_V^7نclIZ= juMnuK?NN);%N7rʊD$Cm @PP)\DU"'VMݮ"UMQb<hD^ Ax)#!Lh%venHBUg7@!ziygR?Vo\govX$r?G_{q Ah.Rf}T Fqb9\X@¾$) hYVZn) RFЪz Zρ>Pk|*3LMApA.1q=5 HZ$’P%%DEƴR(y=XpE?m3hk|񂉹h{VNۘq8xF׭}|@-Slx蘥F¬V5T~9!%JvSf$\;^5wtQh"7NIPgV؋n"!R `@@;a p¤A@:b໨ }eMC 2ȑ {5]lXfw#u]]λy#:R'vͯ> $V,ٕ3lMx@ sÒ.s3chl2s64ű{;;| _p~v%PD'@4'"y~i[n^nӒDFio hMU{vuB>q=Lh}I zZ/3?s v]ZDjw%G֙HIu)/x3}nV?f6-|}|\=tR($E qzϪR@(BrDD@;;dwrfbYe<7D2ˋHBĻ pIfKܞ;[Xrc{r[8e(r-{n99kH/>S[:p[|w:<~ӷڻ2X;XMӺST_4c@d]tQw k.)sGlf}O{v͸XN]j7-vV#Q˻j%A2Mi.K: J(#Ng4 J6L=`H֞!@0R LWGv"F#B {߯3'~ELv,E+NaǎEB"?vdaQ<$ ҈ HQJsy;),0Abd!,D<ϭ܆UM[Is& ̃O:7k Wuߴ2h! -B$ [U=Ğ5\ɷ^rHmn?<=돳g26B㦀n${AUW+t&nkǎ>2/0x M1lYp`TPoя np\'Zy ]BIu@XG͵vSH"Jo@~TݪjNJs&}Nֿ((ӻu9LͶkJ ]IBB@p]G;Oڅ+"g񓌔@\%10!h2T$gpa= W~hL^*د5!l#A7&!>|"^PҷWB7aJz7p۫_rN-]o$ϊMz}Ss24 ˇuQe2> a nP֪yL,ԝZ")<9ė ~-6Ed}EP/@vC)BĀAߕ%GJ H"$ w\7%#idp,E%AiH#ur C8. f lxsX`s)Ĵ}W*(9wYW>3zW!8{]eXn3gRP3}ti9^ -ˉ7;[ ׊%қ S옫i kڜ$1V 'LN7w}ېjG{j`8y8],O䞍 Z=BnLJYKMOWx l p!GTx菛=_! H^d.&pH[~KbvƤWS,#]LIldVrfTx>=kzNęlr[UJi-.m'eE-u*;¢v3īȟ9f4xXu64焽Λ[+QĄ2EK-mעلyE(볜B7;HnnK&2$v76> ~ o̯3QggM ),H 7)HD~x1HÈWCjŽ+<#pKdTɺ9E0 Q<4HΞ1#+f"6[2G$! h .7?s2(H817^)h/e Zd(kѲ$JyfCK|Ɗ S[L[v-ypj]`wh;.(H$DR%g:lR"Yx7b% sC6K'ncd eBS,6uiЭF;94LX{~5yz2c_\m-&>(;q" 0B@:w1P9{c;74"^;A%BE!IbT Z%LaS 6JU-2 @S$4ɀ,,Jب, 4"b #«2+ 4ZRN۴Y읉JY2E(p18heB* a(,8:p}fQ%)_n= #H@@@JHJc(8i,ctCjU*l4-J)@X$ P@ )epZqb 1A1p!2Wƕ % qIHXb#LQ0RUVLYd!THRVQE@HHY!YdbPV@aY2?JCP +KhCņ$ ~ɯ^4bOZtH$ ,vCx)AhQ${W$? ' iB R ڑ s6=E1lk-C+"}: } 6A7OdhX#էSïLM⥶'Y%=_7຃m*t~@#]!o~|kgL I61y~MZ$I` ?!:;L"xb0j"@gg&W 6O+wz;Kwd6Od BymPc|Y</֕ZN,QIUd5ph3Wȿ'D|K,xRkYt yU<BW2uǺAchEg3yDh%@/ǹ/J@;\#󞙁/fӼƺ+_%HD4d$2Z lP@ Q p xCߝ|q""'}e`VZtf |y/;sywizo]^{'wyݒ{yܽ+!JhAͰhCvex$O^yylDr0b4r"X!ԨU*t9nİXPDQ"f@#pv68 4 (I#߅OBI"9}UyKRգlߣc5.#IǷ)&($@C`F"I" P| /}q {0;H Nkg%8S_s4y  H6 Kv7p.`ZkU@>&wn= 6)+1 [IM9٤B$:3mb{#!#f04R{/sPBHLpP&hR-`H+dHPo<{SY/^ru^ܘD8nE6~}?N^<]D]':.:Ex= ӗ۾H-މc!v|MgE^8Ô%E @H$I;aDȿZmՈk&JHfd?~)4 oR2ZJ m[AmTTmYluRQ`9` c&A>n2;r Pʖ@ 6%P(eN(JJ쐢jS&T @ U T;pS 9a @"nPmUT5kfF2W Aȥ*G=\tJ'S!%6ծh01aS*P^xC*h6h+5¶ ZxA F mߋ[Z[jʐB%Q`~Ð8& UảR9뮝'58;р}7p=ӛTE'G# p,)JnʒX4 +NAhR7a$>69q5p9o?gyge2/àSC"%@NzuA T41*~Რo@jh|\ɕQCBґ"TPdR"B J "U >r6{ jBJB(FQ'Dߖo͋%ܔ/ǧeV?Y#vJ Emmc4AcUQ`j F mZ"BRЊ4RtvCnVwc ~aabC P1ji}IZag <70yVH8h΍|F#FJSN˳>_i:H=×`4*/oc+:I,/p99tXz6̫r ;LF:0I Dl2 gfAoؕyIj>' To*_j\oo4g|@ @6y7=6Ѧh4y=[!=*NNlnI50(52&z2bZ@l ʹodA<̇/:WzOb>\ygeh.o~R;G_GM}8xS -]y 2wkޚMCS!bG꫚"26i_}V} WW,@pc'%*!|`N6?ӻ'^9Oz%J;foJK|DU鴊ѕ//Ȏ\4&ˆ` йI7P8B,2TÑj0 ٻN}w =}Y{OL|4g" 5 {+zh}v-I? dWhlg‚Fʈ'kD7@Rm\Qn\wΊ2MPe&Z) PL"! mRLS .QT* @4lZqu# e<Rnm*8H-f8 ˵ߎZ&xDxvm@ L"Qb"%ov|q@$6'e…1a;pt:v&|HtEZ1zbH"bjE'.yi`Z !Y*M(.Q@t C5! $h7 U6LuOSL!sa~K2~r` )"ILߘm׀wھ,]GUKo3[$0 H:boZW@l@2^zXXY ^].Z-sЕ .C*!WgvL\8szjGr͖#[l1{)KBՏds\>wV1YP38D6&a} /{W=<uw(fѬ:ǜCaX%ɩWl#79/~%mԏ4o;QPV >%>O)C$2H:2lQIw:9Mw1MXCmnB|ھox51!A8W0oƶMmrhZl7鸗뺼^:(} u'7Vu:6مk(сG!KG<+5}:slأHNATu}:ygXQKLxpŭY>2LB-α26{!Y>'~耄#""217{6=dP48 Lf?V!EXvg @7<2&=wyu)반8kȜ aL9@kcaͧZq겳2*H!)@ H[B5#x..8s؃N?k;JdPдd<ƶcy5j: xII ^, n#?Pulb(R a4!P.*la 6sB8~55Jw<|7$9!Bh~~P@0=O@Ys )cȧ"D"%ُs#Cv7wW>cVͬξ򽇊-.Pl84 ?CKÏ-_ESEQ/4GUp垟G$SG/)#a("4/@@B1sSQD|íȄ t\]uXqaʉM}y#)PSNU@@!{sXW!Vs) ޔFDhq(={&~<#p Y7ƂkӬD@-$[B. 8\ӒZ)?}~{UQ3}/#/7+h$bs$AHRHDH鱱D7b!À.Ky+ ry}`i&H2K Q6Im)ۢS-! j,m i&la T}@5P~1`Zx}Z7A zdz@E C^Qk\志p{yJº-J);oG!Ϳ+RhIL& 5{Ə>JQz4,0'{^][8pPM9ݔ^'QBi:Rd፠9psլ_\Ή U}?"Fa<upO idQ'ʎQ,0ULR~_5vjg%:(4 FC(l\@{G/SC=xbu Hv Dͳ<;1PE L@Wn6_0P骠?A!@`?4 mB kq~PW}9hoy'ƼtQD]nt74F}lVb c# h D:$EDf2f_ pi H@X!"Btml)L L <4kvR*$pv8؉ 0uqW?0x c/^~O9ȱJB6ï:h߳>e\|`@_ p JEeh0-I)I M fi &jDR@EdE&-$iLmRl0 Sm9\LJSA<ÿ'MQ<5*Mq`E1 op6b5߹h=/ .@qOb?~FG_ױӠ5JvNVhQ7D_ /QƸ 7Ux[JҁB^эi tZ 2Qwmˢ>X*;oèGX͹;yEDp1%ʣ.#=Hܭzj[[J'@PD n99'1,Q wvQf:n6GD|Ff#3':# n _,}4j,Tsڞy#ɓr^lkH0?Qk+a:Y:,rIUo`K`׹}t^_r(O RW@7F :] uVUy"Kq)4:hy\&߀hSzdωF*K7 z:/9_  8C>I Ҡ WcQDPyDca7U\8bRQvA'8Sq _@ҁ(<Bh T|N NBqE88ZQ: dvB#WaJHH<1BC(SH;T$4qMqY](pDqC {<:'%vMHe3rTм8U!A0@#*s*Feٶ GJpt6] G`HsW68̢& 둲 87@gaG!ˀ+P9*xK<>"/#.ppG v` :Az"zd8"3̺U'$Sa@Mѐ C]P!_ (D^pPAquЇIQ@YA0 aɎ֔ll). /@FSy"GK;]a=2'`S;! dG©$gH0Ԡ9 2<¦洫%NqN(4#(Dy(B)X0](BT"Dvyz9 B .ʘ$^& Fo(9 T@: &8+ ^L@x rtFIҎAJ< H184&^!M&!  A;<e2M*q+{^//A:TAd9S<GG:BDw :@#``P6] )/1nr`)vCAq≺$^['@2-MS#\S$Da8(q'9Sqi]#$G0.Ф H'%NeqD9xܽݯnv7u[7.C6sȻgEې,Ǽ'iOK!f2&tXB7䮛@ހs$!sonК[&h^O茣(# 3;/j-p&ǻu)J( Bg1م4v ?850I\j=$GpyRs$$z Q+'i,w'/3_G B4_#>i/#IOd߯#$@$H) ?+k,y {>P p )[*Gt!/y&쿋͸E! IgUp$"{p eCpu@>!  TmxPog.o;^{؞.w \tLI4?`T (~Qk 6A5{8_B?q}<^MI DS /Ѵ{=%[֠6H$m|W0L 5 =gZwCsPVNmCx5r{G N:L"[qՂfU_7ui[A(n5i".6R@HdQɯ{;3`];W46`^؃wr+ٟ(R5G72 YʆDltuz}QξO'ZD"*lo_{lvoQcUt=TUCžs!:JRA}u90Qzփ:* @ZUJK7AZձ='EurPؐR*IiHAnhIkl5Aޢwmw@rcR.4`^^fJˮ5wn&x&#֓տ~3#6bO[,x 7zR3$4T$؀+BD&_ϐ }e`,1 (Sa8//1;ljnYT:Lqo38saPHgcl ;+!"aD3C @DwX563}9Qh&O*S\Uzҹ;@jO|]5P-ΝH5wuzb_N ";V+UwY?M$bpNa#:o\M7;X?yᑬ^π\O8ep4,=f~ gfA:\e㿿zF|NQ 9wstS jƒ4ծ|u8x%,}q|  $i5](bآTʣ( GD&[ (5؜䣾px3izoF?3;|A*"^=% AJ)"<̃uW>0w>l߽"^ٔ>8>JO 0RxzbIG/ms3bƣx'J" %Ba@qáfzQcNDAѫ9xs4Ju):@NBX2 @ $,CԌ,|'J`1(D ma?{,O>lЌ`DB#]Rd<ÏF&dK'2 ֮֜r- ͻLūHv (h}VsJ`4V8""+6&-cDjiݵl%%iPQRTN(.t a]: \u6ijس4AS0~(-4N"͸|L Yף6))4IHB@H::WXs?# 1E(T?'IVRRSѨ'惪W1i<t r۫+#7 3` }M3U|FkYJLd1 (w~C? ~-f7cNg.rG<[@H@u1X8hV*k A @A03N@4R$\nA"prDֽD$E.!4B20/ƻ&ݲC<73A2x@n$% 혌`0YS}g`װʐM< B*=TCI3[0p04=1m'qg8X;+MP 0syÿ '-dxudd 7:cG:.|$h+Fea5Qv]oph=QΈ޼ e{TUs iI"OA}ۖ@v]t M oJ i$N\q:ۻヮ1"3+2Eft xD|3G9gr^QYnggDX:"IL@;z]DjNWQL fNڇ}4y8qz9IQ۳;F:t z踇bR *+ju @~? +oP`""S:+,o?5jlQXt5"@'~7F$T@oh?3+:@̗)w^-Mmݜwv.]ݫ7n62.e`TI,xf y̼řy.]]养%-Vnp93N^$i2 m%bĖ@$aiiQUd8s 4F/dLY0|s;J 6;Xi8V,/Od-ӞVW (^AɗV}H{KP\;̵w8h@77gn> ˖UX3*&1w~,ȗו*â _^"a >й泺"!fwmʌd+F3Kd.栮z;:EA'̦NJoiC!:J,~ t&DΣm9+Щ\U+nJb@,A M` =X,pIB/{orA1q=߁%VWTm(cPx\u$YcO+n3P#bu uj]G3EʮF8NԺo;h uJشCyL'.e{rH >G1Kɡ ;.۴s7ű^68E=6]SF[ DRuj$ݗ?;L_R\!UP/T*Cl4n7 xԑ`qO0w9.P5$B\FcInw::6Rr{}]a0I `4 a $ 14A" !"D2߇xx8XpN`UOҵ^{?ˁurQpx=-"}Jn z#CCHjE ;q4BDO.Vr.*\v\'Cp4RC?_^AqsH@W{~˯_+HHIoӵJX?S9sCAH c&&?GNހT2  LNS2|_l6[NYӠ5UU`2"2/а9I Ȱ,6DfS /O\w܈مb $B"$M|VWs8=&T;/<[ٽ@j)Qlnv rhHN]3cigrtA!!k }3gq?_ R,S@?"e Tkrop6 EОz<SgD=1L4biĈؘ9Vϊ|t`xrh{GU 1)w{B_yXG]ͩtj%n}%"OR͟@y%|l\7ERX+n#q!?RFk9;*f uczM1D662uCю9+j{P\n_n%/ =NAWDɻ.Pȵ"0DRz*" Tb>O7^h-19GxUs,vbc,D88Q tn>N§ώ2H{8Hw+-\|b9^h yۈGYGBU0P6f"rpq!YJ>N,Ņ5F OC%YqNQnW*qyv^ ."Aq%D;p5Ry0rb ^FVq.)Z"dˢ<ƏЛZD,1MVtb]I$RqlvEʑ: 斣 s=1~;9q0N&w3r'J~>8kKX&NC 2#pF8:6oMtgo8ćL4A tGm}si0 9#glG'P#Y[FZJvhk_7*َVSWVF&OPP<ΆP7 6`".7/U| e^7R9\#{Ξ624}80H:pG ,ZG&[0O?/6ٳrݜxmKdYˏ^:ɩ$I$I|~?b%<6 ȁxz˅?I~[ax Ý)̀ft$V'hKQ~ӂO/IVc+|>j*XfDZZf4fm$?:@~aRAЍ.ct  _iD}mB%@9=$br;3eIEn] [DA]wnvmݫVd(IH! T6elll\lK6!mYvJ$Nvmt 0LfhC CV.؊rt\fW!5# 4G,$-Dܤ\pRB*Rh!",n(I!U ABXdjDT(YqJKVlȂJrZ񼹅4C+_s 4G شfOï&h$yJ{S0ii"= kh`N!ݓr BC_06?UH{?F=n R31|^<<~~շ0?_r{Os3v9q%oGe1$/r Am~w˳OOll,1 xuo{f_PsVWtY"0ZbxOCxq@ON A^@%GDTYlxP{EQ Ҏ^ϲkOGYg5.,'bƩU"ێT2@{L+8RMSc4, ) >.(fbGb@7b, `ûvwj)Tqpn:l-wGq_AYnQ>҂% m*_E|Ų!*@2;py9Ieu φ^ϦgIO`Z5Ŋ]f6 bX&;Y;cg)r²~%.EeO㎱\~'kU+m8$#,{s:@$J@I-g}?֏l߷a`o2 uˀK 5 @3S!~AW{Wn~ea3ݏiH5.Ic`M%C +TZ/"ueA;75bB@j `Qu#|$QO9/>pED;[zf9ջ-ìsO kt~E_  0Vߌso9h(Wa !Lzsf!mtQ>P1W n! mFﴫ fnټ1L2)3VO[mTh^)208(%ܡn)TD+͌(B]Vg?u'\rp!{d$W}{W:)!"qGMg+Jv~1m#z'?r!xN #Zf'h %p|6м޳M߼7a|" :-ykUg^h_8}4 0=8_!^kfic~GF6A@#Dl@o%Q#a@@O@z*d8TTjvJ{'K,h@WʪS:_M=^L P@Me!O l1'*/ @*b@iS w4kw‡XE~J.d| |)uUi(qӌj-/q4XpjOwI~·YM axfW67^>X鏦t,~> KֶP 67M{\锺%/3Zܡ1f,ג83ɁVpk/&od H$z~~gdsطz]5"t7YmWwɬؓޭ.Yr0򕤉8tr_ ":hCF .w?q_X#zZdl5\Yo޷])' /]$$dJl{?$@ 1Mi;yssn'ٍ<6/^/!XfIw{cģX:QgU`B6S@ nBƒCoܾ,!zyh7MBkd@[H[SD:=o26?*jTqou:^c"?e4T+#~n.N@m\bR[H_S7:;*CNԡ>v{uZQ\Ҳ&טy5-&R ie#pOv"1N/o7ʸ+CJ0@3bJ`ZmA& G[bTax8zZ\xVipw|GJk),s12'>óWLgu:\u(pV$6>ppxS⦝z06{?qX ި"]F\wT~#s.l۾C.bTm 1Yw9Ϩ*i!, avv~I7Ѡ7—ӟn&px3Ap? +2 _4^iU0]nv]mHHvO%~yvH3Pg;a 1: /%`S*T!$L#^:\}PE5c˶FWuVwf !01,t)_Jc_SvvS5o&}6ƒu˃R u9 Q>/֝ tl.fn6_NcYr]q4ڝhqQ1mr%=eFsi2Þi43\C[4b\{5y1ؠzMՈ# Pm +YR1a FpzU*]0~c;~eQakPc@CD PkrLp $v>HmGd<sLt^ l0/;fL$]0qؿ`WD ; t?'Du28~F  pT> ) ("A|XBL<^jPjUJD uy_vݟ!0= L`3O-5z3}ѠT8 ?D"2$MpP!Bnxg^axn@^AA/:pc$W*d+xܯ9* H4a dy~la~!ABk ^WT`V)}BM!)ıM]tǎ_߫ʱR*N+{f/;>S)~>:- '̘1ь:!Z*h$ {EŁB܈BI]l'KknDW s׀6qax#*o@ў pTJÁt6kbO'cB(mmL$JRR>onY| ӇK&v*C62͗+%QB0mW\x=:Ѧ]fS/5#F_(&ɖ0$FCGd@{~0^Xewl߶gN܁H!%ݝ(9y _ў1tN3PX"A$rF!WS!5 REH~ jhE'{a4 Sh^y`R :`@'bK5\}Nvv n :k= J@8;uxСO1±WaQ0 " .}^Kptw"2?1!οpVaT[{CBI0<lOʀ=WD.Er }}oVG~|8tE!/Q@HKͰɬ}n _r7?35zk$b7Y]>ؗR}lcm]t*;ftg<ݞ n_*qmsDy:/DuJtz2 >Ż<_5t6Cg#^[J΁͒sm;}H5 q[8O~5s rjh Sĵ#tD)r*0"6d;=oy1z"fcg0D, ʎE&yxXaDP   vȌ%FT|uL`F.+=ޠr(о3e"6,2Dbn>Gޓ bd4$xW|fTǨ„<¶.OI_V1 njDIHЦ HKz}+V#B` ;\hEJC!2Ҽ -gqC|>Nә{I[61$,;.A%jRcqp ?O?KWS6h( D'kܑx(o#4nq>M , 9=#Ï Tv}/^g^Jg&uVDP%v8 F$qb/u$\͂_KUxL@EHwMq[:b" )P/Y5xA#UM<~Nmm۾yFnٴKGnK[T(~Q i^d^Pf}ҟI0yuIB""dBP۸O Z2if"f?UyoyafZ05a8 ҡAPA8N>m?0 L@QWt{,@"ʑ!Eb+DBN y%Ymy!cν= $IpBi ӘOu ˳vۮoۧЀ|LM un]pYo?ߍxgE@( =iCUr* EL_ѵ@mD@@ByOnnF%V#?<~zl8iPx3&.cK.tZdxcM}UMUE2S;@JG^6֣mݷML[˗4;5͛l:yz#Hy)iy1mӲ|< x ;eތ2>[N;NXaEbt pC") cG(7;\ qQ1$LT4C5@IP;yϣ.?q;|< P]1CDB$XÀ|g?r GL$S)RC Ob\'u01`e }!LA)0ǶKJnd@Dʼ|O72Ҕƀ `-: Lfߏ\).⧑bb%O3R+H 1P71'N 9P٤鍮nȹvZi00ba"P&i<~m@o{ RRhe00PWEDx#z&ـnh\ ps#8>#%")nxU_4=(q폷9x;C`()׵Ӥ+Rzw.1U5.v eg^Mp.' 9GNc&>:p{pDtrCz;x;|=| TCUU%&My9 :$GчЕFԪo0(uwPN* 2QTQWծH^w;G̦wJ9={k" imP}yz;シz &4sS6̷"6ZnmV6D5jkZְ `dcxIO.x?i%{{y,\b4Fn#-UJTt%]UtlL .U`0ifFä 68U \5G <CQi(DYnr6$6q mư@ 7X8#1 f!+-)l%7iM`Z4DkEс8E:x:"#qSScZ&)l5jѤ"'*ᱧ82m9\Nр#cw8h271;AbL',02Nsݸ|FSP00TM Bj/rw"e<ǩၦHH&[<^[PTʇs0 ˙;o?Z@ DQB )WW2+)HؔQLmhmĮ6GyiIZ06 2yʪ1#LdElWaw~ՆFe :֒㕅g}^#&c<bRꋰV:`n/P>7C'ǽx^9񖁘b CFLw TmeK-)Bd |gYËKy\’$W}3 bKۑ`:0$Es FQГ)y=(si$9 m'ܻc ǵκ.;;_̏FR{&@;!  %pnp$㞵پƴ2!> $MZa7/, IϵHm\3`>9.;s<ڠ86w揔.Re?:=kk#&!]ި>LQO{[[AyP3oEϴƀ]SQQIW{zݿQŃ%%D8kQ>_|8AnS*sd@)R` =۟I:T.8>k|`,n?)|,O7DY)R)RW\~OH?U+ 59 ٺdu$-fw䔬g6L(ZT)y^WoKvs9uc{_'{CoGП2." tGNCFr&k 1IR\zS~`-Hl7SBH]ϻI9!=u wv%AMLR$ !`ƪ0`1`{0<)oxj@ |1fXӃNy$4>}qg?@W[L_Pv>.g\ӞW LBB#$2 ̈&I#*(T4m :,dT"sp; ӣՐu"yǟ}^A DDTPPu&$A[MHLRC9\Xutit) A&Cd  4EBIIiTI0BUE05I*eHDZ жZՄdfYI#y{ǂ;OW 1H֋ZI$oфty='?wm0 (f`(:_]𾣫ȉ; w ))iMGd]q7(c#\-CP,'L3PzؽD"|L'KĀ,8T'݋a߹9=Eۍ:84IKIq0iMJj,̍b8Ě0Ec UIhʩs DwXH(d\ū&p hpLMΟt;OU ج现xT%P`l/Sڬ#uM[!U^TƩPgBD uXXA4Іhh@21R@~׋3op F9ΎnZji Aje))eHX;:nUq.n~uo t`;(kds]mЩepzg'Uo4?ъrAnrbľ(ڙmPޯ6ϵU~`bRG5PK*JF}c"@U;0*9+eQH`%PiPOc &H&$ !"`8@,!H*, "3, ̡@B#0&$mrIƦv#bAfAYIeo;WiѦ[5e -X)iMmmyKiWdNUEuͦ!vqws+WS5єY #= G坱|S~O}a???/wDMKrM!ni@5>T):0 ;ӂ+n#5; ٢H`?vޒ:LZG/r(rAhE@.(%$kl-N"KmPm+ro;h㶧3։XӚ pnVn~/Ϥ7s0'9xy\fז~nw捜_Fx ma2Zl݅H HX'g+4ЙaEnydrS t2>6?Qykt~'A3 @ BDVq&NBb(KNnPBB % +s ~`9ךuA9RXAoM310$S+*(t!)?@ tCslj1͙_j6yg2տNf2$M l F9xI@P,ɼ%P֓88caIU4Wݽ*f;Zjm`A#o,b@@E#前Kmmm!r ʅJ\e&E<]q^lk$I4#I )I*f[ᷗ#$uѱ )pcfm:7Ҁ@0`ՠ_8t-!UTM&AԘ (ۢnO͹Ճ:o6zM. r \lh5aa%lqs\\νpEdQMh!אv>4Qi޴GDmW17ެ7ۿƔ!\5ea78o8p#uC( &FvhP8"pE Ou{t萈zG!>3e5žmrR(ڹHMnblbhkLE#(>MiqKm*PPRP.^vLwȞΣ#7XTɤhJ!C`b 2‚,:A|n)̜Ƞh@ +լ0ًX,*P@c*E;<9\/`n͸N'QA\ 1撄wqI3Rk9`R06ͻ \B`uZVe5r65AV"MM )5VAS2"BtJA;}Rڸj 1p /@+yKCx",aq @A/++ٵ1R0pw j5TAaF!)(RgLIEBhX^(_r;Uq=O:=x*+feU ajCmBj710`EkQg(q%JAGs@WUX1@b6Ez@%r@>9ʬG0&`MN_.DH7!aNBB姴)ppc>&$U3n>NI3 6fG''!$ }ȍ>R))@O: -EϻZ=2qM\Lnſ7-GY/`Q#3'8JC S a yVSG=DSç>ȚOGzlò՚~?Y#>}i}Zt~7CVNހ@C;d pB(J+Ra/n&m~&=ZFm r &6MO 1U#Ftf+G8ޞX!$=CКXv-eX(Œ˒ Za]^9,"b(Y,[H@1` ]m ăޮBGF"E  ,@ P 9r7!RФ8. ƍq 48F/dNpf\V-05 43 aRY >`E;GPP4#$4pnR Jjʦ#hhj t 0Ҧ⁄t ѫ X*i}.||UԢy/QAhVHXkEVx/|in76vG۶J?*s|1>eG74o7JA H,wtwMaoarZMCP|D"sW3f`%E"9`r/t' }^@ ] d-Am夻rViun HBqȆ@wXKl8"~Ou!!RX:k}z5hJ`Za ,p|rDt dah U T:IիtYWhB˲*kF5Rs5S0M߲Otl1jӴ|WB]SW`nIKH,Ko.! gh,TR5L/ @E*j/e# $^[|T P;;:sQ1k-Ɯ:΀::B#}x>;A !G`ڏD]V'§% Uwi, G%[߇AT/]r!hH|0uǥ"륖}.q\΂aG|Qv?Ddob2xZG:G|*"j=]jy= lh.8;8 rvǖn$W (5d@R g $ րN,oNSb^ZB86 =Yud# xb_e HK#eJƌǗ :wu۾sG@%$0J$%#( )1 !2wt\6|5Wcvy]~Ucqf4,x,w+KHގ1k3PNxμGXii$HVpo`;0` -| Ѽ~@g<4/z}嵣w̜1ZdI'ϮQ$%CY/gOwz;y^ʝOC;)w^}__GgKپ a3y*=;$uD#g4W9}\}^DuI^ k5+;<{sCyϟ71T(2ChwlٹTU[yDˆ"<|+%y_q[YV?):fjPyB$8HӚl\E\$9m0tt sISOV3װ2J8H4 לtɮ\|Nss jP94HHi/@$*`a1B |.E%`|)HHH;C۾sQ BbF a(AlwU{w=/xD=U( =`&{&fcouUU±@DҪvkX]{CzWaG?dQN`#V`:PJ(Ps"=ti8[C:BJtp9+TP0&W\Ƿ(,U(?糱STK(jT0hH00@ `f2$iHdaH&L~յ{^ވ 30dh,%3TӘTA[slaQ 5$ԉR 6+~~_z*`^$ oߴG^|'w OϲyC:!dr_{rh߳N<.w (aeU~6nh/%6D,/%N О! QsTQu7!wxk\pNjF8Y]K3Æa^(+A2p/x~{\IRIhfdfT(6h32" (Ԉ1YJ-V.CF&blK/ D 6Fxf!Fo']|=Jbуjky^K˞yuxնמ8NV3gu5 `Ropóre؀mIXtJ5scy˭uL]8)uݺLmgh0b aN c&3 t]'AHN6+7[#wFНCC^>y<\h:=F4a3iSW$ȬvDq,ס6-j ‚Ho8|1 P =NØ?v|=v =֓AR#ӣHMAz!6k *ȸ YGwyʝsmsF S<2apЀwU{u>Ę^o6AspD8ukXm͝DX]Wڢv|F9: '>=L3ӘEQp1%)gkN5 ȋcrh๎=GzS35@@&>zu} ղ_uQl\A$H@`ڿw~}p;^ll=#J }YA](G=If[=wc2JCF ֜H2XAcg&^]ݐ-  F4hCTj ͢ѴdڍEck`œcdţk jdykƢشy+%EO˥gk_:2 ɹ"0Cw3A/p5O4eSO\u%FbavCx Jƃ,(1` H"RR.!$ dF OWdKRBBd% ն-EJ9sgpKN[rs1rMT١&̒][uCA)AF$fb$bI6fi]H[JiJ TR0B Ѓ:6ClQc|rۂ!"bk FV#c%Z6%sd:06)MdH $@E*UG5AE*52^0X5RD)%"P .7x{A5Qr>V.Ui@ IOb#ho*i'M:-ô "D 4䢅2}sUapZu"@G IջU3N3}OP^#7SuXb2A`x]Yh8v{#0/?*ĒG (A$F|٥[i> YQUFؽ2+l@" DA8[q+DY*$T8:kQx2ݢ @x,RWkGDCNe&VQ"sdwK .BV=?>4?&UWYtHDfg'DW׍Q A8{~L0" B<>\F"d,%芦mz8! Q0v !`A#]>cc:7$&xNhx49s:tH-A!.HzZ d?%CGo9m!/%qx1&\(vhbfu(0h(EiPC'ѼPNhx3t3*&51@~3a:3D7A %%6-Hϥj<0!p$A fU3LMllw*ShFu[w0QklNCHJBK@(cc2?vt x#8z.\)tEZH|"Du5 "ưZnZle`4=m{@҆9cpt[xޯ>l4 (S ȉ·v.];m<`v8a8gWG$ר:l"JHѤH@%b9R Rs`=ʬ@2&'a g:_07dm:6ta4QH{઴ #BH"@- B!$&0.K!$MHa&LP N ڌLAf9R1JdcB $]B,(QhQVm4lɒKo7I::&w\;2eO:yQVFԛoVgWj-Lu Ya0ԣF"PVYoեإ3fVʹi!PZ0D84,1$0bAs12F @ Kjs"QS4"E5+"BoP!NNKMzxQuW^yuFBu@Ib Z)"=DHT wNaO7ԡh@c_Yh5% J߱-8+"$A/Tt5I$⃉41!Hx>W1{6vAb*;Db d0$+F!T( eO3:TA<-RIJQTWZC'@& -o;A@},l m`e={@P:|$D$ČEޭmPL+e Q0L`B ֙,y VUH%*a`a4Y$# Ɏ/K?^M : 7`{lRwp7ےF~A;Ƚؾ-ԠEvi=v#uҝ:׋(b 졞}`]_EdZYNN8>Єz©D! d B#1ML;q=LPF睔8wa ^r_ $! G6 L/iqz uٞ*Z\t}mۘk]ys4)Or Ӎ sh{o&0[xM )6;7=nK9 }97=S]2 \4b?W+7ŁMZsdtLvdPnO֓ˋ Ľ\#̍'$wok4Daywl'd@Aۺ}e)S]r!X P 6>~^МIȋ44*bs9/y 1(jg & b A|W]J$l8Xře]3)_<_@R>;>ջ'[@8 =4 )XPN7@ @q`D܀ 9ςR|y=E!Qp$5,ѴDQ׸,B$Mf1U|lxjwǡxyccj)#JubQ'۞r5j, >jU߆ׯKz 8~]意x?YoefAOZu)o_}=ǴTVy'>D_m|NmzLeFVfKzk%oqv5Y]F=ɐ  [k@X)FRbGd7Kk*jST@ y6Ο)`Am92E"CgNܿg:eRGJ&+Cd&E=:f24%2G"gű#WUVۄG+}FCmZHsfAϨn4DZ),`\$Pq/?vBiL'% \5635B [KŹݫX =4=߸~o;zOx"yk⍫XںM"RFYek}RL"tBExm/r|Dwc GR~yo7I\4y/;OaVV!JM2jM[S6-MkuFіuئE*ռv5X&l@T"$iwNnba?蠽p* Axtrd q~rQ;%}6VD5T9y߆ʕ`H\ oXYWү Jj^S")c$$T$"d]Ը6@DH! g1 HS+mYӀS8j_mPT jb,P]>+0dC/|t.S5d> '0X{Ϩ}='AD6WC7mdꣷ.nF": Hz!e|@gmwN+,y%x6q519K|LxBF| ׅIߗsi;FFф)\Emkp>$_*f !30f[U@gSq6[yl,ct)UjAnG9_~qt٪pvX֗=+ Km )( ? j\â10?'"~ˣ~w6?n /Oݧ%iQwEJ.켽ӑe!HH.wcC{ԯ~abع'0 R2r}{;YH II&1lOnx60@̜A+!2b$KOuy\B%JNѡJ[1B@y$QN+oY`&/oI78{ɤGal8(6AքM6i*`a.BK"l_UwQɺՁfM&Y` 64t{w DH"st$HEQ2aU"*$i@|w~oC= -FOҳ pYq`+~E5Mx&+cA,$%L55G}Z7C/9ytv"3J9美ue/]Ѽ HJI{l=$wG0 )3!@D &Ϟ>ö ؀Jӝ|A"Y<?=GSQA%5>'cvmR@/@|\L[!,0i^.c岚Ri![)7 k9iBQZ&YK߸|P;mmCߺ X\J&%"}FBВYն^D73߇=S{ad`IQ2>4O}gg+kM9O,*G\/=K!T tIG"y.:ھ~9q=0t_9=(UoS:vO$ά5ugf"]sUT6z163E|RRŮ:,}W&`ƼnYuwD=!÷uafFJ%1 6źaBڌ#K2(9Θpr}_gնr%9=>3 !DwOM\N|spPPq;iijvTTS~{~Hog]NAǏ\$+FӭJzIQ@$} #Q$y#lN;û&Aՠhym4\'\ς?oGj\6q߅}C21@mw;QbP <طYz?Ԕ[JdjEIw)X~("ε1_xr"=kn /vt]֘^ҙW{o5zKٰeJ & 1 Jc:|z/ 8f[œZԄ w6TԘpU׭V+3ͽT |9RN(OL @ BPdc AJ^Ig 0ጐKoNrhxy?L =A_8s PC3pPQ:- T/=/{|-Y@ x !A.FdPTv/#H?Wۙ;d8DtE@@$7ib07"_u(K4>à Br~'j"W0y =${LaUDL>:3!<<"pga:!+!d@ @a!G==xW{ݫ#sˤMhzwG=GNɱl =dqy^GGsmxYTa&9DT͵L5TSIV!)RP򺯫ml)6ߏ-_8cuH"aR>>kZ*$؂*3$D HKE`$Մj (d@@MvəG3OT`=f`eBl@ ;G9q"^hzuZsk{$`zpU0@j5d; :P HCMsWwRzw 5d8mӶ۴ydku9t+"D:%a@2Q@CLEVCq6kw 2R~WY+TQ hJ8{^׿')");VY@2^14 GЏ =PUȮAZR:=3Լ ȩ9Տ.྇|a`nQc<taASԷ-+]'Jcψ$~%Tjp a8$֮2\;,u`PՇ8_+8#[qNsR7q#15 HN=/`-)}rj1zȦJbm"OvNÏ || UQmd@w 0nWl1GO-凴;\{'RsiԯyCb698[A6n$F{BPỹiw3m .v `x{A8@PI D`yTU>J/M%<M𛛗GB(v< l$&fL[#za0wfA$i$T&Da WthDQ eM3=a]QꨊTimsU%$UA/og /}]R'\k"(( )nlk !L4*X1)Pl&$#hUڲm]))p.tٯRA@#a߫ۇ*7/j7y/ⳳt]?ZTZUE)=gg&>D:#6R51L>j/*M*=u51䃨/y-AqFuX!=͓эR ^?_0FbL}%JPcωj5F :׬щ8vcJ; -^(ƓEO3-u$ H7;nM+dǪw3<~b[7|'_kB)]Ķ:)Im!ފx~R_q8},%9- l_8矝o}H$i~.(oPA`<5o,q[Nz?-&MZZ Ӊ@+VGm:Aϩ-RPp++ zJT+$CsTkf::0pLS`!㻂F.B :fCOfs#@ V핐bУ+*{o1zytG%)#vR فkEsg~ &cv'IymÏ7΢B=5K ϞD*P WZ*E%{QV'UcNnzk.?hFU/]/l[DY?ð_M3[{/ FU^D! eh_F@l`,SlɨO RQ Lz !DDZq:^Ƀ|nbP#R+Œ|K݊u)PN욃؇ /Mi{sTg]$2Jf4&"[;^ڧVt9SOm~G<昷Dp)fԈڟIl@Kݷ ;~dBG|T߁jhrzA)ZۤV7??5~vy>>'r[@L~og48NݡΔ5_%*5fsTN\~#_kp{?nm&$n7G@yJٶ` 0Ou~7 ?+j87GFW~.p}jPXT"f<^ ڇ N";B0]r, `+{ L[Za@vs>7evvs1Fd3"9^|Gz(\IȐ̈́2W&&{u )( b0<\<;zzBq:{MSv{QFq'Lbņ,&1;K<5͵ԓ@" XH%]s=?*6㌺y:oְn6굈!wГvs?RQYc=LZ ]@FsFc'zú\p["aΞek~uPXhˇD/I4RI^C[wo5psJ~)D^O{QA{NBYv=ǣ nAs(y.?띐&R̩_r:.,c::Wk ->),Һ={}occr 'QM0۝S9\z!++}leYW7K˩hQsQV+/ \l?r5ޭ&@F:/ ޼7Cw XX׿MYЎБ)3醤kDG5) Nrm161^=[ƌJKۺKCs)\"XN$Z (%1y~g6e |'6 0B?baa l'C!&21# s`Ez_^Nd̐`,ߞDREh"e2XuNcK'^+0Ju)10L(EC;˓74gh ݿs#ΜU1bIh` )ChmśA1wf@F R$hjgJP)jQĉjTI=[C?p=|ߪ߇2 8JA1qEBo(>lPGh]Mc=?+\ ̌<Lhl:4qSAqo\d_j(W YݞT} z`E II͞M%A<&@o3<}0'D_h lp(3xgr (|@nE3hQYJ;[b4D"9b4#`M'ّ.L("!-?bGH^:6؍@VA2K04l`&@@fYeM!2NcYtjl0[\A4.Y5 mhchW 1 ǔ`"p扆h0"0+ L'F`dp+lPe U4s t"C6]k1Qc6>{8A("CT#(Pm +'أp;HU{j-Yޭ0jBc,t+GU-|˫ nbC}H CBH#<[hcxUfP{Qy8 *"DzH@R)[Fn/Pi#0#ns|zC0@8 &@f@^@'Hʩ;; =yo}wgةJQBUS+"J <:?p`jb|j JS ^ ("^Ӎ"P 8Й :>W&s\ϯ=|QD4/0䠞O2p&P4v((1*iN2l[z+ʃj(v7؆o&dAo%ơ7'R6olFu m%!eX`oj2,Tv,m c` "S;ZYӭ$-8_Qy4̫|>v]Qk #E96eZ$(iHmD 9?fc$M<ͯut']F6NR'bDmuv(p&o6G,ͻo;ń:~xPb3hXviC$“s"ˑ!@M1PwH8C@m ];e|o+I\![zuj^szܞyo[lp֝ha";x#ak}<u C>s>;6`0Zp*D  BA`3k-OsscRެppZ(DP(TGr,'wod.H c>'"mpDW-VTwr淋/;9UlQpDLAц#cc@k; Qtv`1D"I!DQ].'"ةLY6H&VNiiS'QA)LK$vVJe9Byg\қFFFI 0?;]<0Z̰@4juXOA_nsy#߲1ϷTPv<[yxI}J*E{AbÂX l7 pbp4kō!f&֍99޿9zXy# t<PsүlCXTrosQ^I(Jy*YD QD8 %đ&bX}k ml JaѤ *;[ xuzBz&=x̧&ץi&G̍}{G"'9WN0r}>c>:tB;KǸ{sYtWb)"؇X;`ٝXw#i'!_zјKhJi7B`w|{@?N1ږg1Lg*PkUЫ'M"dR!UqGjHJ?h DK%{YgF!R}Ic>#*#d#WY_La@.8*t(cpwuq>WuIn_4pd_+lGf,s~Wv!W7 #h9^=ZwscTuP)?{mSM?O)pO Vxs7R~vCcHOu:MM5K#oݹQvq,Fg|xUy /\Š 759;?L~$:.ͬ.w;1>YO:i+;/Xu 5!C DAK׍sF76NJ MF@RjBTJ5hO~ۆ&::0ɤJoh0h-LX jh("RS0r.>?O>[?y%Rݍ&as#ꨂHbY4Q(J1IflhE_ܵmsC%jhujćmp_/6U$" FPNaaA-7gQ e f"׼bxI@4JȆ AAٵʈ6 Yc Hd .ChN2@q1cmͪ5dU7VϞzN];{۵bp̗% TxƠ8H/;KM}k)pC D0`ku>˭|\Q$+$4`[9pCGx܃M'\8l:U vxi%T:FGD> L{N'|~ɣxGr!L18a=ÏtG1۫(@8d3x&uDĜ6:`}0@ܕaŽ&9-Ž<7ˀJA(uQ8caKTyĨbs)<9ȩ"nk 'IUˆ8$"{nҺ/<$DԂSrʃ$|D;KQiZ?` .@~с\Pj[O" PPuS@IJ4X4Y F cTʈZjƫYs#x/kE190d%D$IVں*TҌk,K)0ñu)QN/Y\ʕ@f f#G`7)w^_WbSn½6p 1 0ĉ)?~UoWSU!DK;?Uސi+ hunyċg$I.sW8Ce}ޝ'ϥIbٻVuCڦc3GL_&$})tUw~|xWR<’u Aq}]D"؛@ȉBf d-K*{U7og5s@HA:ؙr i2oI /؃ VVX7eiQyv$JFWzm%1ty\͊?MM^TYP pfo0&\kL1CS_*5Nst@5N@3QE0#'yğ@>|G$'(0G5s\` 隡vI.N%fI}nx'G5𖷾$`kdF\W CLێF1|FS$;8v4Mߴ_K'XJQ?>,8>3=b.) /LS ÉfbFjUF)K3j產$-H'p?}!C@@B`Xb5Q *a . DAH+ PÇ}'W:5>jNrA5IBِ3˴q gGBdU3HP?h},PϚ0PJT}8Cr ϭG0)vdiD-`b*RjBU(m|~KόTedIj*& !2# 7@,Q`B6XHoWgjU&4hmP ) \cm˚wx@"20Z5$MDe <_kt]SLu8]!F(ם1\/;ƯX)sWMŹR2s\cW/..&AG_6^kQC \!h!A-2m$P?s"EtzT=1X젎@$@EI#IiJ:Yl-o|`غP"cC 04}*s1̀zub]}\yDДՑͶԖ6kT@1Ɔc0@d'j3WPU>:Ԋ3_y*ٍӟH}p4@ AX;QR̡!6yDK$SQRjj6dQkի0`& p!H 㢢2%";>g='P4DDjͩihMJ;)*臢tzg;֩Q`6FX1@r^o|Nwu^N-K᧴+'K6(I"@]]k湏3\^@(("蒑dH 2.|Uj~o}>fDpY:N GyqoH=(o^_"!U 7ŧR1&?_BVxt" l?zkBQ|H~)JmzLʎĥ&j\:te6 6V I%P@A 2A_g?F`T>ƛc\2Im]Qx|d|O`|vQK]hv4@|ɷmh㬓5$2h(^ k|7ᆨcA3})́w Ҧp( NEy7O]x&t!9GZ.,#ëjtJ̱R̫"2S$kpyr=:/z92/\Fz{PrM´Ksx҆2 g,6\3AN'IqÈgx/O#ZȨ`NaIgGɩA QNb`*;zI<! 3~v@Y:#^}X"zqLIC{TS?mx&б A҈Xf\A t_dvzꖨ__а Dv 9 #̠0ۮK+WM$jCJ׮ԧVfp/_I l@l]9<~vO^x=oM$KTe43@ |0U+5:6V9r+ELTE0;ݰ=9?RA](-Q'5N&דڥc(R R!D[)E]c>=on-gs Kj+i>)xp!K> JfQg2C)d`|-"ofyf P*@s(%( BPJjQD¨!m\- ?18rѷàf *?]n{t3mqQޫ;6@z9C ;~NI_eG%w؞-Tb =ăˎԞ~_XGkQ Ly5e+Gcae{@~wǫj_E @rĎ{r$G G|ך$?>h97҈@ l"4xV d0-F1O:~p0+|YEr:^9??/q<'(yp $AIz2~f#G2a!9 x{gy O/u6N N퀒^IhhOj/9\'?VI(yM\=kgY|-M%=6Q }#ǦlDZkv?j!>6ʒ  R!`BnUPX_~ntz'\-^KqD "E,$t} 26$=8]c;;zӤXۇ:#9t(71?e9ƴRwad\_+?Cm<}(N옋(&I'zG.دRh Jy@T[ "(Dq$b`kB&<`@= k7M#`4^r5-/ d@$$I-ѱdTW" Pnwvv.ww]psuΜwn\;yK$t+J_ysF3#L=)w[oo2^{ѰCQ٬5-svјFb'-Gh"R5f ~t/o2y[:g`O/QG?L]m~e.D`Q-$Žx8v7)0u~P]vG67nn\fD rDwnuB;mⷖdfwmݍw#η;]wpӧmvRKƓǓZ抺bҎu䐼RUXss[fbM ! .Z%⷏.vwcxO߫S&fb9}6/*4˦3b2E>5wu5vWVGrvecxx9\$^h^mD.yz,O̦)?vM Y$)c&I4ANUMoce]RI`EfcҥdW_>/oqmق-vaa׊uFuvH&j.WF\K$;2}ם?3r$W">Ir+p-lbI?}~o[HDQ;6c%dRpkceQ.ReΔ]#^37MO1L1Vփ11TX}Wo6&fDsW2w3Nu9ws;]EF9K꛺s|7{({~d e(ڻu]+i 4{YO4 &@}6N%'@-%3zѢac1&"`U!&0Qd mFlVM U:nZ ;׳ѽ!O`8A}ԘA`qh[ Plni""?Ҝ;~n{i"*58P&Tc a}1ÇkND64J!ADSq`/H0 9_h!CYDt)J:?k궫UhՈR vv ,v/!n ^2D-^Yk"0$S&`B1 аM֊RR99sss(8J i"D P+BexѴ#© fV`REef*9Qc'0 1j&umS͐R")ً> #̈́ȣRC~_8+ׇV%Tc4glq.:=C G(OS)5+eF6e3+RߜkOcd0Uʄ)eQO|*U\`@uUBasH#a"J@+Μ9:\=N^A緿O=Gx܈mDU!JHD%=c;~70Dpx`'sXI"dUMGXDcLG;懬e<QzBiClʩkO}R)* ġm9v7Ԩd@&.P"q@@b?"Yu\x@. {{:$l|ސ7TbU1iAGdt$? EE,@JQ<g{w $"zࠎ{ 2),MRj@`<ϵjUek|Ͳ6-=tǟN=颁{+`އ@W1ՏCPPvPP>`)E֛>ri xݡ^i ~QVˎ< a:z Ԣ!YV!E29qgiJ L Pu귽Cz\Q~}㶥#tN۵!zrpQ)S  TsSbA.}۪yfhK=pȍ~Np2Lͻ|B&0C$|@t@VBSl#s1DE 4D,dug? ǁ^%+ Ca,T P>芶q֍r~Br 3:gW^/ow`HZThDx>>]g>+jo>7AvweFR`m5Kh3L$Q$O Nn,")ٿsOt.UR@v!C_7tv5 >n~f~|^i"z4H.Z霝"__>[ҮAՐ>{[SMDTkmѝw0lHI>Hsw!%<|阮q퐈mk= ĺDFuoɻ[}ޏ>}ob7ΰ G7~Mv<&jz5H0oC}.߿^۽h{."^QύlqAB O_'׿oCہ~ss ?+jxDW@w翐}WCHa3j#>f$UYΫqmܻ@ 3tNh:D60D߲q|X"h$<80 3qՕ1MqJ09b&X ZFPB8xZЦ`^I?H \8l>#`T:n͖洜Fo|"L"*"ۀ'kHK(2GIDn")ұ<C 4QE$&>rII$8u'5եig pަV ]0@ հ ,[ù\,a̢&%xEEM=ѷs|qL p رv |N 4@x"x(Tt0Qb.ÊKъѱ[G7wrÙafV`m mk640@*ѠR$Ϳ#_X1RcT|E1 5z^E~ǹ>#_KTh YU m;~{~Ȣ` *$@1ONEbCH*X`+5* U+}lo (2p}9Tkns X=X+F^V'[G b UC y-؝oM ̱yOcb@CA9lB^#se [N D7{0uC_9uJEy/(s@u[&tG:=sGrBucWBo6`}¡եL`FZ9 }Ri<g p2X"܀2 8Ѡ&P\p%հ8[5z`x i9=9C1䪇|<.3r&RsR.T UDu&V* g0\˽[s?Xqh$E`( +RjD@+Mpp$}2gd0"nN4 8\G@)]{=uU=>PS" I%|&퉿УJt S,wvBY 9Genj} ֗&h[Vi?/Feo=7!g gxT@y~RUp8aTǢN0@P_M[_G4AECς׷ q'1lZ F{'!nDH0!l#oZ!& ƀ*(0)Dm`?`nGwaIE"1r vv&K%)$FA-OKqٵ,2KcaQvڝ I"#NCvnw{Ȟ.ui[ːW/<^oO/&nӃFZk8Sj ed涜8ɭ25y{)Eۻm.yװ<:]̯\xlj-{/=۷t.;uvtNws],T\w㮗w# HH:02hˌYvX'U &*H M4urs;/Kܴk7W3WH)_]mfBQdi6`G+1l̵ːT9TNccy$ȣy6<ë44@G0asLGxyy}آ\ty{"LiJCh ,܎wRux;GWuמy+Myטͮxޫ^wM$Td KH J *1EH蕣sg />tg" C)nPLHwOg]uCV{ٽ a)kbBBSѹK-(KW|yEw^+4 :%AH 5HDV&"y칎n+ˉyAZTR )1 p=w dc/(Վ٩MŘbL~N䘆1hO:Hdd@s"jߕ! sſ>wGYLN>^/Owv1}8APV$!I~wktusӗu˺H 27ZTTIaU T% hC m 46 *O]]'im}ءDDF5"cHJH4c'RagA,PȒA"$"Az]SNFfmtkZv#Pd&H`aT$efkAί%Tmʽ^dF^:V*CD\9M@✹>a*PUA#hY*BxPp!vс@'4'-p7pLh_V&]]UXsiW9ϧav3pH"- - D'Uӯxt nx]@ hiS4sh4h@&Q NjlۤDcl}.;iI@DE_׎ځx8px@l0"i f*7q3֍d \1 A#1 `*wAԆ~ |΀mDs8_TÞ[HDl Ϙ< 3HQCɨ#AfcU}zOfbfa`D#ȭ_zz)x;Qub }1fQ U[ I. ŋ AՏ18@@31vyrD1@WttR J0 D 5 [l4=@HTV~tuSLNRtj  4s૙JSD4@8S'DLN8$ PGD'_mm8GLɔb Thְ48d!kb5ƍx<o]؛  Pk1/w 7 4 _j~m׌*~ Kx.¹<7$0@&eލ'(6OaWPQ"4IHv0nE[hŕӭם&g޷n9iw]yygw\&4A4f%T""NN! IkE`0 \SSʫCx捽^rN@YlU fIsF!Z hK $!bq e!m5fk}fnhIv116ZA$4MKHfQ!Ps4Fso@#.$#8b8 JF uZ;fRX[jhʘHew[c {\vJ>"[-S>"/l^H7w԰[zΒrD9ޗ}tfof +#r-'(<9.pK[]`؏CyVra<=z9?ɻ)N)@%O a*g3Ѣ$BSc餒k*rL7 ߤ F$Y aRN"vG!5O =J|kEʌ,?ahB+DM0HZSB EN§vL;'h4wv2H.(bKK-`ΗĀP b@ d@/u_@֢yEy&ffi z,J՚ιY %@~g2 s9A'W 7s,(`)%ZA @H;pF!"{#J!aBl١ J%6kb4*3hʔlYm"fk$Ӗ:# 1 Jp &QBwAw"d }d)I[XF(*#mjȹj5QccZ5,V깶mEժU(U JkZmF6brP REXUo־-V@Eh|MܼKoo߬3~CN_3%~ƳːE^d yS--欌i0FWb;1`FD*;!cN8v9 x;8ps:ݥ=do$߶ 15EmhKΪn) o6 '^i>i><7r#LM;ͮ @JB;z0` ޅjhƑ+94 !ƀtZ -\,F#5iXYΦUSxv,W^KQK]M\O,{vZs^0yP,E1Jf2@0bL(DѰ!'dc\< w|m g M=>@1$UP ѧAD 67#:J Ue".@ &:\qwU)77{]򘬏sˣ]RI #8Wݼ-BMbJ6gZG 0O̧%(8:k- i/\1Jy7>%gdLM I~ձ>j9kp|j -_5 i #$y;ࣄYAww'aB^i[4Cj.-j|c٧n຦N{iI@ ;Yvy^TsU2DTM_/>sa[*Lܘ_f рb@}A<5b\ԟ6VßYM"d?:_>Վ{ w'նw΅ 5c$JQERh,XTXMQEbYJ؍6ƨj@MV*"bX 1G#PuCBB4EEt}v7<)W?{l&ȞqiZU/{MJj"];Zt~HIF@,.PRk[Nr۝ծX8&54X4h 4i 1EVA0%( R4XyMMGJ5tԏ͍EPnSH K"촤L qx8I:x5 }ĘRx +@" jRL"XLTgT$nb1)"ֹϊ%kAr9c|Ë Zu|E9K;Sk}M+߆b5XDCa,u(P7XyBN_{56hWcL<[)/W ;hiץhI~!ѤK8s W|& -T{=T!yFʨ2c:#|im׬7zpm*<.[vCl19pG=7.0'Hvj[-Iu(Umn~V3h'.t[l>ٷw $E Gn.m?[n: `<ۜ Rb9W-mj) f+ġkrW3[m#-8@$Hs='Ds dnp83x+/o>~WD=~'y\ygA t`sϬPa4͞W3 | q?P;!UdA;N}o~ZP4>P P $A[! B@" $%gZFhjH,Oh8vpuo DVfFrmli5P/& 2B Їn{ة=T!$`9 TA`kkw8k̃63lԜSrf0+㺊ScSfdO'!X G"`D1Ӟ"Ě ^_m6m" %h` E`GW8:;`Cvgftv~|49 :|v!-T$~>owۡNk#"֔:";k>xJ!*n[mڈ * Qc*ZvTgfC Xdpl0Էο$io˚֣sܹ]?^ӄTpkw̫1P6Ifʞ{Da@z,M5coW`q%<xzӦu"~![^DNa&F:05=6}|);_G9$h{-%G"`p(n:v7(s}9?v/)!rZ)Nbn[mO6Uy\^ f?;|`rР4M@y0D97)dK%"b.A-rE6%'@H+@%$l &4TlSA;tQ 8$2&3!Gʈe1.Ws0?J4Ak2#@0!DQf;Q sA%gjnr45"ã@; fbU0?J}ޠ:, v~b< 'A\KSyQeqNx jyTpKÓyL@$?{^of؃֟zܒan|Ƣ KNƩCdfTrSh#4\4AT$$JE"Jh/K~\ ivKl$O;rapnXNC=3J`v97g=N}6vۊ/< o5q'(RpX0㲢M5sKDYU:gJ䇝u]W-F]9< 6П2Ȇ|x``Jg%e,ޠB%*(P]R缪Ƃ+Yvݕ?:W  H!9+[dQX@  Ɍ3^-:=uЎj0bJۣx˒n*qo\ftC'(Z5CA%wiv|b@5@)ϜM @$yWE!%K On:ɶ32Hы}=R`>WY {US`2] Se /f$dAvg;#CBx`,W`񨇛T\ajKB)A.PřyyKZ&.>Q ~۾\𾀟yOOccT4Pl>~Vhk9(6QV9A`|GD0+}=lv'bK|:m\װ8' Cq@?4 :yN~/B(au^@/="Z+=!K~fw3+ѹ@@!!!6Ս OY? `ћۥeVK>|?sW$U<>&gB_O-NuSC\ `\:b|@W7[s?"_~V^QC5A!I:)(31~ 6;|2!v&LmΤ# v " :lq#]j5 3z#Pkv"N5%*S۠PWKM(#iOjN4<;!^>Z(/ bc(#77bJ@ 0gYVf +E/7s?bNe3-joe旄~N|뿝g֤I-Vs6_ޣ`CqI [o$/8^jZS0Vٗj_ݯ;NpcS+hN}$%RyoK|jsD~s+ >fpoEÀC\mf -FVZno~|?'}Qj=(x'3x|/x$#כY~όiT_Ї[H ޱ$ߡTyw H:ι?G uE}}H:WL) 6zߟH߯r`~<_A{qG?%r]{:췪lԖ;'. #py1ʐ_Ir ǚ ͂]qjxXVYP/  xٔ=cܳ^GӉQ@s$L^׷}q߇~H$3ё^wX-<9{Sp\yM xC.'F n[{)5\*ha!nĐ{}Y1.-_"Y!Ψ$T@9lL"{Dy{il̆f^yZf]c%w}a260_phF+>BD.l@~6DOʥfU86TJƢd6SP8Q+a@2DGWPkq`{ABB=Q{wo#mí>=tq`>ٖJFݹqHjD7g: IƂK=?1S y" oFWTղ*δm@{_r;+ǰ 66N( h2hA^#.ŭw}}fK_Eo(z<46Rm2vm@z…']hI1؟QB#4L&AKPÊ._hBع##3Vq^q^s Ej( 5XIbFfju^7odUkNr˺"15T|$jG( zE5D5QҖu+qKMaC6b˕d=7浃lbs^u" ߿If& =KՇ,K*p~@P־A={֧Oi`9 zM[W>9fbow [3_ZMoW#*c#}%ɮgN\`y}, vh_(Vտ̓j+G}¶s<)V +Ɲk׊] ȿp ׫:isj?1 T y?K=ޱRzN:s0ZSWKS֫j !(HKBnw>5X9>P=oI,+s?+2~cLdO ?8[jxK2D 8 EkNmpfXNrgEb/)LVS;Q|xi&!}Rk@U ~HUx*|:5vi>T{??H#A K[rcR ԡ^fw$%e":R /k6;NSл$2Ռ{L(}QQ2q -U}YAKr ;͟ȩ q#ߑ>!YF{ک+M!1vT+x};V:V`cm[j&.ƗE#M 1/.TVʁyvJҚ])*Dޟ8|?]j Hxz7 5JCfU'V4L]NNe&#ס o:Ճ #ǞXەJ$Q^mI?Uз jkYqU7:llp㺞cT  Ds̲uDj=ڤG #C} J)"%ȺVϺK :qwCz{2mp g:mT˸/g"t/{ҒܹQ -xE5wtth^)Ip=-K2;mlYX#p+kjGPOoO#)t\6>ï<[Y7~W4S<_*H )E 4,)O*<.Ɩ&Iֿ<m6Q(_+$#^r$\@(5(ә5k42O SB%LXϺw*6f۽`X+8c:x9Eqz b.Fđ|}_u@ sFMiz"!BŹ.& >+a3FXA.ﵓɛm8 Pq fC$u)[Xd(VNk~{UA##xcX.Tv}Zt@ B*wR V)Z(}tܧ+$ɑu2GYa0;I8gBI V&%] 8 ~EN x#`ة3YlH:Oq%FR-mbC.Qc?ҕCցY`q70=CGN9Z~lK#u#=BMt6"+˒̟{igjH`KlJm-%3史}`/uJ&1ˊZPri+D E^XK[O)[J2 X2{`pNmOC NtQ~ }߼f^8|>os'c|̓{~-$=fT:魵,jPhEy6:˯K{3p2l sNs饼IM0%ۍѾvXhkaizwcf=Ci*Oj:_>5Xݢ3VNl\raDfuԏբ 7}pLgwlh%~-Z@@B@! \pMeӡ*UŒ^G-=0@šۦZ/XGp4ߋ * wyDb|Qw/4Wq[L|A6%Qp "7T/n+P!10qzF;!@BZ(کB> vITRB Ld\amَ9` sǻOBܲ]]Y#|~*A܈.A O/|'byػhDWMc`_7 <|p[_\/6fe$0w,$拉0?aS?ajMOc~2y}ݗOV@YyE !ZzryݜqŃWT|RMԗ cp C$xP TЈ]Q6\Nj MNBo!:4]2 8<2J`G~堓%d(WgwNa(A;{8#e|KUi6N5F# MFTt1UB'u<2Sl*bV&֊@oJԨy?eުy3NəZ_xSc|ќ;\3!B@xҨجu*VHzi/.#Fln[OY<\cM$%*-j" /Ue 䰵.X'G†a j@?DQ0؛Z񹣢JJ\oqQKDJKCI'vi'#N{Oм C ;[I'`PuՕpO' M|^}9-Rd}l|ԥO+*Q5XH7]s43!@)SceCr(o5g/d74|_w{槕q؀{wٽ!FFv6̖3&]MDV#6r11el[FXœ~'YH Oli`9σ1aKzvw!<?&#m>P7BZTtBqg^7yx%T'07(Ɵy;핔_OLɮXۜ(~oo{3R1?cZu/Q߸@P).!1yYml<!k={a9ͻKPru3{ƌB@!$Q2)s1ӻ&_Յk<[$&zW`ިCWY0u m|sL]. ))2%4eʆqEQl7^2b a8>x2&tyjy4[<K"r `!v dAP.Oo܉"{<Iby!\6:+!隯I 'Ӵl!&P1$rVI)X_z*jқ oI[k:KJ}}[?KwvxUfQ T:޴S}27 xA}qK~2!P/TEjEOMjNk!{0zM @@zC hmSxZ1Bu_'&WGWi}Bxo0b]F'kOvoG{ w<$7_m"ޣGZGC݌75td-:EZDora Pm0_X.ҬI("拻Ϳ%Wz*h^׬K>ܷ?m^@iq?d}ڒ(U%k%;"?O2sJf9Thxn`GF-90޼zcP" o1"PQt<9NJb*W~n`|Txtgn/h#'ACIZN87lX"Hg$kI~& M倂HT.LJ6VPPlTgkݯdѩ uY7-nܰinGA$Z#!5y6l`>z,ɫN3ژ|+('a3`vn􍓢|nܱ q4AGI ߣ?r $2sۆ+whDͲr 9ry+V {ۼNS,3sk8 ƹmfFt>[/]mNH~$r*1aA)I1A$, I." "l=){f[1MȻ@T*,n@7e7 OTϨ.^|hpn$$mC\Ƌ׹pX[< eZ*TkrmwgC(C7?k o{uC7{5s /P=B^G_&C [; {lZDg*tK<jcG0` z5CXGÉSP GN|nca36ӫëf2t)U;%]CYSG272r $=16tu*M|"ALذY]^{YOu'I]a_c]f1?372 ܐlhg9Xd[  L%4(QT׿! +sO0&:K?gKbrV]x @!B'p)KSY!ckq;>OT7< {?U ӻ'Ք٫H Y$dB~QBa4D8K7D֒ }\(lpCpI$eW^]؃5G3bu_W9 _sd]8蜞x%?ޟYGq#Q,v%"H20_8n^/ET*o$P8#ɞc,3˵Twn̏kiwe+>Q Ew4T>!$CN B0^nBYQF$v΄zzޑÙpQMflb ]˟aԑavF81A0u\ .g0H @@ԮS~em,` A3x˙j,'uVA#w 0Ҋn?ӧ>"qgx+e[fhǏEZ)6!9.D~Y k{(: r8Ye" "`a /Lœ6gs>*;Ņb}L˵c[L{P(N<rA_9X'KM'f ƦǻAizoN&}נ'XP>^Qf$2 vc/YOZqFF'w{Uv]_a@_5ό|{mИ{?Yih)3┖H%=bMKw,$7fB5_?cǛvi~8Զcq8ryaEX\ҧ戾mDy솬DPGȖğb:\ ᗟ1=۫vw4ZU@e禩d4j^nCc@5yi}M&Ss/f*O!P OهXJ~!YTD0V^ Vg|b=}|޵8T43D*[A:\a>ot`y_6žb<ψZ&G[X>-(RfY3OC|l9At^X8K^bh}c~%8jӲe6HlYy=ea۱:19d ӽF2ln2H d959Ư@rGj.Hō{t=!ԙ10sfX#ZAY[Q}KVWx:jǍQJrH#cxfrꘌF m8xcnk 6=ֳcOQ.NipzyL,ea#d|>{R&&/^2r9/ڪQ[(Q[q42 $K=[K2"h2,yxOR,ݦNA.D}n!T99L ECkbB Ny%6@uؤ$l \T Rw/9B'࡙&t(5TON @@ 880FPʞCM?Cݴ]x ־aٜý9qk4N.ss`$"T )$_=ȱゃdfd`[IO|\v>wb'P۴ & Y8{ >N='XM `%@x\ egĆd&Pl0U֮9𜩦:#bjIFwydG?qq/rD!X8t0=5qW_ YGI_:Gp1K?ErTxCʻJ.Grrqp"X=0cU Z[gR rjlz:rgȎ,1v>Twcy'Q n}<(3D`)SsHJ{R'b a- ٘ÆIءPFS Q$M:Z2&&n!ξwc"gɠ}1l[;+^)K@@ȐDuJߙ+[ISսXj\p:71'C4NcX)@PRqh1s,8MGӬM!'DPQ X!M1VVoM&0wS긏o^H`<0Xj$8~>B݁M5y_6HE&'t~?С-*FʄhYX'oF xEϨ~Gא<:tYc07[l\mOnܞ6wA&i?qXI`p̾lu9t: zr[]t왧҆'ZWL~< CU3ׯ*:<@vٻ# Fr ,HAY^FEzHjQI3|Y/O doplb#jC`$@.)9WUJ<042õbM+>}F6I*x9-]sWsTy?hNIhѮt.3eʼR{&,ES[ Y;;:TXH(lGyDTWp^>p_ȽQ;SmN kS6l@ ($(oM~o;x#k:nfnjơ}y=aܗjmm}a~um,]|՛,:0 KD1K@~i6P0?cJ6 >ꞠІ&;Ҍy9GSv㌂&2t**1l4h1O u*ִ,&@ns$OU/冦,d5ژ2?Ց4yd]\Zut.Ϋ]ZU ei=4 >&-WQ+ر t<~/!6ooU\)Dٔ(K79;9f^LT=BucFx;nCarƯiBSm6]DGy@N 02ß!rQ efdahGF12KL "5+ aH \cV{v ߅l{ɴMI6Z_sE&WOxors\*Ţ88" .$ܦݘ&:3@ a$dʪP_h /R_@L`Oi;?v&\u;-,pڶEgyKf#¡i [a⧊zAAN'@!rL Qɷj$#C9k$X{F=P-TMof,97Sl'h[Ğ:r[+.wȨNس?~倗=OTJӪ4+DRFH]?q=[&"e KiҐd`__'/uzK/RLL׶ys'sBQ{񦾈:^Ё̿\cC`^:D>k?dHbM9hR$9?ɃW$zqN<o`ڗOK0O-݀2ݲ/deQ!a;ʌcΓ\CMfopͧC @e+xV/{gGLO%'pMY'r){A1A'ԥ' w Uۺ9~)I#8 x4)4> IV;y~ (4Xlh /*5j"t <E&K]nߤ xYRUn jgD9Ѭ+ǖ}NzŜ.eœhQ9[b?W%sG m34M[ V'.@{*ˀ S<|}i2l\Ӯz{Xj=.?mD/h|H ǣL^1^B}3N=ulm9M#]Vl* aH/S)댴 D.Ģ7GqwE9&N]( [B +._6͕Ntnqf\t7d6Ӹj3T2YլW-gSw#(Inx8 V%\qӚiϔtW<c}T@uH$ 6҈( U'\Lad=}v0s#ٺFuH!yVyI^ cng~yaBM>`M#n,]&mЇq+7c6ItD?+ K>8ad*锃4a?)nGc߭WCYqۦp e|0>&ou`tpF]>n݅0~h5ǂw38%5AjmwCtR//ai%l'X//K4X$p 0F(S# 7O;Ҏí~2YYwM')ک4M~>ηRiW7K%c츤cCCEJMhhJ``u F}[yWM+㲄*מ`]>MT^O|j8 !lK޶{{ 7٠ ?s< i*U5_<1\^6V+ӨF~UT=lGuŻ5|r-9&R(}Ȳ2# aR# JC:R&%ׯkabea^,R@ۣnw,EvCz6;'KgюIo5Hl,6/͗~R-mƥ%$/F iY"gݏL|" N>='9"HVkOw1Ezg~fQkPXN Gg@ۚ:ɟ9g5[­S|La{7lݍ}HӣַT7Db8b:J+$qP1ȤbCd~S/pyQ hZ=18v`bܤBxIwT;rXO{1M"QJz*cb{!KŢb}`X0tLJƊkEUU1aX* |pgƶ~7k}|I~سnE, 7oG!)o9b<G]`R V2^ %9s~yu=+'KYi @f;T.z eR['?GC,LQ!]c9EOxk(hZ:O/Nh k%qI+ێYLw EbR! qnra :#$EELL(܆!h%b z]PT06ZI!n Mm3ڇ ^}J֏nBrЊ| N<=_/g :ADi1Ղȏ AEϧ ư_kދs^5sϗYFgAewJ]+W'Ѩ'^8V%d\0`#p *TJ<˲}!\q?Q2 $QVᮧ_XD#0 U A? pS٨Fv]6rvnӊqp(l]F7ܿ,-5 .I41Š_lI.ۉbo%f(K9a3!ԑ앬,cѓ}Cd އ{x^LDoT۝a$vn_Cլ-o$NFبț:6b0%7!L 읠VWCmG\" ?e ߎ?xk'p5ezqNyXYz~̑f!|56L{u<؞nN -!q*oo!$fqb}'6}r|V*0@X x 7V=ݯe?sNclw z}?I^Q|c0`z=djzo{`5h R)qDk.,Tg%{M3#_`FL`\ 9(2:j" ИtTiƀ Bر?_/9'cgeakwU?ρ/`4URC~<@+l<}=bT#gYgj>艪6l_;ėufcǼ#jQ 4|acRo{6Y|7HyDI6&ZE7K= r\ 6$  szyQs Cq1B4' AqSRt_\?M} Fz<_Z>~xf^u<0 qbC9fg:{88ЪK>~XkCsЅ+1j=5{_6ME|mBѷ <{eMwB`RnrM@Q~2mvCZzxx qfD 0dދ,evV&Z*p}$Rz۴yܟRH#a`̊&(RQ؋l֎M#ێ ^Vƀ*q &b,8+2?ժ>lnm\H<B_5syr`- xr=FwUĖSA)]U^Dz)WD/a3Uht<=y"xH MoyH* Em!bQI)7S$,ߓ@O˥V&"]( 7u{Sq<=Tvϋ^޹& ޴S_n^)dzIR/uÝ%gu4vvdIj {Q '9%|aWUq'Oܣ{MW>tʏ6L;4Ĺnjap!pYus󮍽Fsy'̯τx.~q$G]DQ+Q=Y?rl> H BQUu߄#& ]yD;IX=JN6bAO\3Mo>;*,G`@KƕߪXx79GmS떟~[f΃-x}?[&!steK#5b8Zh(?HsnEz2ɼI\LTt5,"!ꁛ١-]qK'$j[6揱~""5VJWt(3 $6'spT|lM؇?cEy#@hv}3X ŐT 7AR|xn=P^·>a cp)Ȋc*(#G7.d s>Z1;P!/tp M:<ш>yL4bB!~C`!({q!*Uwݿo}v vW bV;o`8} Ҁy?ͻ j94?>dlnd@tr.6\ yhh5W(p Wqms1|:(Д:-.Y%@_:adF#@z(u-Œ@}۫G@|XdD20'Yg}GToMj؛̀9 8g=-De38t.@G+ : +~ے]#Q!o@ ;& "Wzu)B@>LurO|SZ I4kD¡B$Tacm-`haí8L~X0GO: dErC3aޖ1tXg|#ZGDp=qykLǔ@KV X yYVsh{c+8T}4zOլG^@Ta޾??_)yy> ]ptN |$byr'@zZ&=FO!H̃-?^gL> -zLrR:2[ٶaqǪvq{N !~h;%g',V "Kx`鏼.b@ȬgÑ8D6!b[}^IN`tQ 6F(o]ȝ}ﺉ@ENidM7T`pMhW-Ĩ6*)'S$'CQ<ԕPWd so[=Ư_,$Y+}BXŃYq|0%~L 5dq tIRkwɹR Q:zJw`C=IKQG|28Ǒ7I*.}X&8}_g 4@~oջ"".s9g_CPCvK Ur=TG)D\W+19-Oܒ:1W#)\wEW)5p2"eAK|]R"4?0ÀqU{=:;y1p$9 Ȗj)LCtNEso8DǻР*Td"cưcS︒6S,)F1/C8!G~J*©-UJFJ(߃G"ms~{9B"Q Mj_Ԓ̅"'(^/_؏{Ǘ HYj{A΍z"&D`C4tSz89Z釟;̧Tq ɩԽ#˿S'k;wB* $[ߓdS[C%HJJ {dlϓA;e5/*]R80ŵ:Q}!m#:D%9|E*/,R-OBx& 1@H;oHqBruxkǂQZNMZ GlNl7sW",yO \5dK12|D 6g*~-?gZZ㫕ŌZQa,KeKBK̑/l̤{Пwb\REB4\7 W;㶆E0a/Eɀ{uH1 (Ra'οES`9O@9A"R++ "A ɗn-45ho@5)`M~$x뼎-ǵ}6,瘹l(lgx$ 89c V9nˉD=6p{=|Φ|~QT_+Amي 24J||N;6ؘ3LǻsDE{2< a?r_٤rM(C>MI޻>deZ5zQXLSnO5ۃy$[-]w,񇗗#*]:.xyƣ8^HK}=Yi%ͽ#ʹD[/\tTcIL`)Q޵ -;[SXZ5Mg_72MMWvp33I7=&7L+`yZ\hR` xIxJpoyLC~qG̨iiR}*.L*(Xhג'56eLݰc)uM|AL`Lwe"@a:~Ezɧwl㙦kF >%8#es٪ }"}SPPd!N۹HmEr@VUtoj&-:C`!(:rUH"P A! XǘPun7Ӎ~uE7~QD748 ωUTTߡdA8򙍕t ,>Ow3ނY6&z*7[NP01}DG?Jife"QBD>"M c벅M3DRno|J%!LyP95!DݦE*&5k:,o=~{aL(1={%{Wv-=o6䝭X9dyE"\n}u8dJrr ?_ l!ʮQ lj!߄x# h7:}thvTs қxTƣW2q߭MQe [6w޺ʍ~_!*<eF|W2觗؏8em|m"Ndgysc+a~aP|T]N`)9Seq82|IGȬBtT9cg%dx^V9+tdΌO;6s'Aʗ]c׷Ӧ3]yje0ELIcSlb.w{a6`l6t wT"n׌`!Mtj;mO PEGF p|\ixB#em*ԋ#7.,UF:A[ǟ{7~"Ur '"~~77F1NjnKsH@;;,hBncDfܓ?.őS |ɩ?٥e %U"CVP >TÄA! ;fK iDYb=0+zJ{~xVa GupW'p|kFa{=Եɒ^Pz0]3hxS Y:xQs-=N< 0 Z~9ŀQRdp:_!GNk񪷪 1cw*xDϳ^ԝd_2Ky9k<^} jF|= ChSM6 A^Zzfs۫Hp@9@`0_"(AwgZI<+V.9!\ł߉  ʎw4.U;U]7Q;+C4RF1?Dbؔ w}ԣB"cGnIf"s-s#`wœY#tRbU8U*eU_^3T΍:TklZ))Z B@:ϿPXP?$a˼j亭o6];\Vg3f7\j)"Aт0A@24Ѥ$Ih !ք>>\pҧe 4+.y|Yڽߗ!6zkcjn e2>pQ=~/VKs:lćkE4d|7*!lҒ!]DgRi+7Y?pz|W2[u4^nIɹtf""VX2BxP π7B Q盍?'D БAqm5~vie$Q-[;v \܍di ,7d+@ ?|^}h}Gl6 &DXΛଔ#onSe/Զ1MRe2alL\+Gu ŀt}tIϽǒ-*MΗ#,LZ2" ;ԳyVdaNc¸M\jn2/61qp23y?1k65!c%xK(ןHgL)zN t˟U;.ћ(-n>;f&НHw[v[\[C@΄.+l;$@! @ *na2cJݩbdW`}ƑFF{͗ܦP8ʈ)<;S'W!Mʖ@eKߌ"Ӑq VW1uɜoL@2h䒼9tB8Rv7t">αC#謻U=eT5 :W(3: 4 =.eb>}ۉ d}{9=E‰!*BcIsے΢{](uPgjnY#2`}ݤmj ̧5G"u4 w7hV,K%(?*,5g"K\z4i8y< nkBk)۰o}okQft^-+_Gr5$-7Gp;uo:LPԏ*7Hע4>=?>~&O^]$5|3"jT@J6fr=R$uwb7N6րg0='@dz[W1d{|dz4O:P;Q=:3_V@,mB pȌ*"k c R;d2+I;\}q $QD];L2(e,/˯[R#@ac0d8YbDG{w55] zjMۃY#LޣПuCH;Oȸt|.:9dGgP\kd @ 4Xl XN. [~Ӳ+a#CG` T~Udi31K~^ad%ģTi1$u@uy& ;wsn!k9mLaB;T{$5`vpz80F*HB">~@4x8X}wzNG̱9`D?r`gZ~86䶮5֐ Ʌ*{s**Qx/$nлG[ @D isfяæ[^")4ZYl]3=־ɮ Eu<dA9`a|?:(Gڈ_9I~2*yB&3 86NIvOPBb(vzK51*gh3 )sN׍(gC{z[sAVs2%g̜,q)7Uy(ԩ֓ SK U5=k*.KTjZEo9C=_6/Z^dJ:4+_;Iκ,5! sG~X3b' E@ MYҤ N!"H4̏HG4;߿?d(ݿjm{1<$ Ld#mi;բ,ł.ςUwMK!gXdO9h(m'^sکxq71<,% È!3ʢtT+|9QAJ8 /Xછr:t;A"._~}Kf(P#vo+aRj?w{͑ئx2G%A P-^k_tI|$b>D(`&#F*iۮ0N@{~8O_cWi@o֚t~Oz,L/E0ַ HFa沴s0 _ﶕIjGs_MTk*jx[ L_=K~A s7*iŽ^]*VڨD\ [T]Ry3xQ/I)8o1Â$<[;rkme(ۍF+ʛMm zK6qҚyo%Xh%PIW/LԾ%F/H!pW?wq/Ls-}W&VF&J!_zThy?nfqaнň*Y4֫Dq"+=X2A) p6'=e {0ܡR]'&dO&0O=:r  i&ƒG@!yv~iȷjncPҍ%`4 T1 /- :y+:VdHF݋B)1FfΌL Bz^uAD[bMW⛩+gÇqFPr^F`[axXQ*# Q2C=_vYJZTv2R\jXĨ#5pNR@qk7z*`;R&l=:-fZ_b1M{gȲ Fk( PI;]aJhPmJ/hf:4jꄆXO0G:)@ MVŠ,J_몌0 -|W<Do>\to$hFnüC31m@'UU93&O_aZ!"Wcޗ4"qHkasA|Eltݗ9s?Je2&{w&96oM9Xz̭4C=3oY[/+! !y<7K\oXL%R̒?'Eޒ{h!l!~> Ib}rKDL7Pd(z{Zm)N3ܲq.PLG“L86y:MZSvDEՌ& NվZg>1 ZSQߝQyLmg@#P +V !Pmc~^/7Zw"d=##ﻮz\L1PxWj/qUCv#ئ 9$ }k%=06">EC}s tYPC'L_nݭы\ZQ .!l` xREKolبXl%P2QMBDF:b[5$}>k¨90N0n:l:Tw/x]2YR 'S5Vľ(VlVWZz#@x2UoϺ,:?XAwo?KېqptKKKm > mM*L#V|/:c|M#׍.7u M 8B|B BAU'CjHv*y=_J}e'koQ5!6'蔸T`-4?#̜ae6Ybz^|_ӛ󪽸XqB^<i?,/[#N0/>F8{yOcF/eA\ɁZ2e5r[ۯܢۛճrt+'ULսТ;ڝ4[Rt?!laԗWl'_iྡ 3Xt S c7^EO1Ի#€o899˹}_>;7gpk^?}ylV /.&zC5\Fy' IH7B ,$\5L!:~1fd2&L_$z^`8a3'qGN46| *E7% _h&A&Of}]S} wh˾.QMOG?&5S; =S/>?,@ꗮu{{I'i:}; r ]x|pI{_&Y0S[9J˽y7`v<ɨ==)E2YkK2˥e,N|2|ɢh q6qA=iO۽(u-4{MΦIpfp.'6쇔{46GoPB|5{镣\7爬Ԅt^O`J lAiܳ:6xpEJ+%&hG ƒ(5$4b( CZl`j V1"q6G[Rx5. p- ]ɂqdoڄ7Nw!#AnJȺy1D-[PN;&˯/V yF.GO·oS%F_V*;l8W:8,Qf0븓5 !mڝ_xT's3(ZNq Џ0!?RD: B0es` )$Dgp}{?6iM& zc_W޼@eϏ-Y= uEo.OCIf'!E; 8$3m0Q9xgAc{{y#H9 G S k$7cMx\]_`cÍav-th djO1$%V+9kߑ(A IWJQK\6o~/aH$P)~8<0XƇV]=R=DXd*yUgOXܭv 4?uql̑UH EbH2u6&:f"R@&NNJ$.2i~gv}3êX]vJNG 9ɽdxԌ7'a{'߃;*ǰ\6u5+[INAGdžF'f#rP䷝1AeFD{1eU^*Xw֖Ԕ!,c6Zw<%wdla~\E*Y |]?sAe~ l.fE1?R,u.iW̼ol^qCuұz7Ԯw<'|qr޼m+#"q.7J$L3/F.g|3H;5~*a6nCx" T&r7A=Sl$moJOjoa O46={턀!q7w4z`CTQŰWrϋfZ@ *+v.  l5c6|.7؁4zH \ /EgB'Des UP3W\Ob;iF'EÑDnhڋt`sum6dPPգ!@@]rF><H|㳯p?R67@<t3բ,QŖ@lUkTw}R Gp쁕 7j3-7w"^_<^U5a9Z-&P'}2 qj|[9>.^mfG82{wTVdYB H0#g@wD)+z8 +9DncG2&KwHli/d977j$D'CKL[v >sO=#bE*rx'OZ\g+Fp _v1hdVϰb& Acw?a)x>_3qh CVx;$L-_o)5];甠^4c$e@ܣ]F024Dh/L0_G PPײ ~`&d_D1-HsOF(7(4"z\7p1{h殨{e3|J0 ͟o۴F(Q9wClT\<zUOHFXd`,-!K3Cs%컥uz4J1DtdĦuSRS%bUn^^ۢxxĝv#xv2/cP =Z%tE"8 0ѠnHu3HkULa_SO!^gqWpJ4UW18HRBeA( ~!IhGqQ]uzծu6O^KܳHSˢ.. |ojwή hhxOܳf8~(mnKt;pM.6Qbkuf}=9J=[n Ge Rv?+&;ՀX#zxk4 F6b>uPwoac/o5+W7b#nV>@ OZa;_ZڡE,ۓMA6YxR^/I@<}:tť]g>tDɼ2NL -pyى28y 0bch(PBq`@r2&R7b[>5?7C.Rsd{1čzPD^ 08-wHE 0Xd6`v\q˓TؘO3| TػI2N48!kMp㋉:,b6LʀK'4#M;Lt'y!=^&ӡڋ @A9+;ο߁Tu|jW7͜_z}58+4bQWL7;vf_j/4o{3Au~d8WFS+rϐ;6S.|*JGUR̶Fx=?UH̋6Z5V",(y! ~*f\wtaZLsCFMr(u^̪w$63P lzKSӿw}?ؽj+G W$%SLֻr 6މ(B C52O`l)XġuJ$My@4 p1JT!:\UJƠ(ױ5k`%s?6q/ͺ8P>ʼnVLX [Zƒ+4ut훌(ӣ6ÿkA/}h* q?{SwxTKڳzҙ"h]R W`{.O:CM3" ?&kW u31ፓ}w\NA]^G|zc*\L%$ ;R⚜P#ZM=*[hF=F mBGl\:U抩 sjH;/6EOiTuRD٣#ȲZ(c[mzq|Tb!P!_+T-TxzPE+$TIFypIqT]ruRt55tqӱ <~ mugF &<" W( ƴc<'d;3 )fM{N$M%^VI/u;Rdj,/,{ci+`mx8۪^EVQ' 6?%< =7$OqfiH=px{AQg1\V(+NqJou^ Glf3Dqzݴ I| _3q"u}Ro͸/'Ca:81l+5Q=n% TtK~Xu E BkQ4#si*ԷÐ:&{cRb Qu bed=7v+XjC#XIF'7H3>SI3Bh=;VfYLOF-PO9,0A]K*0uP /PA!ТvQP5M-=ޖ(/si-tP ʍ(a5~4NPQy8Jޢ,4;tuQk>߿] aIkE1;q.v` UyDoP)\#ޏZIl0Ab$ 'zm'~C@ac]bTl ~Q3DAZ7V?tYnnoa7v/P1txH ww/iNWg*rLhdT9q` T,qXWx~LC~7[$Wa47jvɮu fH%.-70oȬ1r 7F2QuNmz4AP!An bF8r`0+U^L%84r;oGb%jie7a(7c|Jbgs'v+~P?ɉ7C{%=mr0Jmyr ÆjI\fWA ٪oIOيzL]S’YNZ?y;:|PX^ eMb0#4%uy_(L\ b M~K;:o󙊓zL]HH oU[fa3 S#ŸfZ?Y 'J X)Fdzg]ZO|vA*Һ=7>*T+qS@h`rzGdͦTW2⸩T:;4t"2ؕ{_|Ywΰzio dAs4٤PŲg<%|=wslY/D}xOj{Ϻ Xr ˄OAwsMl@7 фV"vm̙'ht{5 \.(\5+*ykV%Okd$:#OkАV$S$Ϊ>W8#qsyf_R@<#ABhiRcb6TGSsh5薇wx*Dqj< hͲpaG/蚨T4p1Y9D Q!9Q2d1pb~8({Ưd ީ4"iEBjCht*J ( $#m7.qPtȈl;c^P"2 *+F+vz!;c"#p ,%Тy9~7@d=G_WnvꇆCGG'bE}xylX+';:'B$*Rp0VRV#JY"2nאmWvbOcGEy3>6Zɼbs q^pGǎ^eq1D 1{S p1"<%,r*o]DFE>D %eqNхNQe@}d"- A;DC 6Dp՚#C-uj;}Hj|&F J?k o0X|32(q(+>F0}O^)}o:{2 8v̀!Cm@?3myo0@~7X* ^SuoS!\0շ㩾Z b\&ٮPֱ~) +mܤTM 3W>#ws=nl@)vlM%'H .":H&dIԚ>u-TZ4.pg= y##"3:r(?jB`W#||i14[ˏ`G={g+0nGLQ~ XRAH vT\ݟD9HG?/ޥ@r{Oָ*eM6e2>׽&3k쵦Go}G{F.3D Ar0du2VD9?cp.Gx@K2[B#ʱ&@ s#k^VLi^纔@ϥѝNS;Uc$l}+&x"|"%?>Pq ^0Iu^[5Pj8J~z_#7ԘfŨ̩XZC d)"(x;#8|ޤHoIGAx i=‘)ш*wJYCi'mKrH}*:bnK۹jd[,/Tiui<6yGzG^b=II'~ɪ酡EvKh$|jG;+)-*J%YgBWe;\IE6Aq>2{o1s~>f /`G%*[#"H# .翰w_>ΎcJCHp;,NwRh-89n9$Ĩ-~BtiJ>)oc a \K-\9E%XedJ]M}  `IStZ;N=d!AN! ! fo6;6E͜N+}/GHyaܷi~[iݾf;u״}iXG5tCNPW "|YT~ l0;Gq(92fJ 5E*0G5}}Uh@+ GzӶZWQmQvw=w$B62^\/rQr}8.$"F@&%Sam\.vhO %nMInJo?K+P6=X -0;#> Lkb"}ugͽ칌~C gDAC#1p R]My(=$=08TVx2)m? I.7jqDԚ >$3 \{pmI_庖57`i,sX89YY8xE?eڞOӷaΛ%gp[ .pwF QtV5DsCp\+޿N iNTb/Z1^H7#GH &G0O&q~]Iэрnƴ=0KpV۝v]ej.r"U>_# b}=!$L'{nyÁ3iɮU:n|SOY> SU$\ӉيH== NnִjO7켧dl֗b=@{_#Q?ܻRn`4^,,gj n,E?l⅋Aw|om/XQ/ HlAkyN5e.+ԥ~$۱Fp 䨏1yRo }:.Z}f-ﱉk"f5PhPm-I9#W=)ln6¬ H&S\a<'cpfT@Ҡ:jB !mI˒D;omɴT(_BC}F3/MYŕ\f |rN=XP)cHT2);dSZ8]AvS-3 W梉{,_z -Bz4X0,4s0ۥ>Wx;o5LV6 X^0 "q绫=K,fn'pRMJ9GS[i CfK!NtΆCۋqUwqN[2(AFӌWva0B6#kwfs@T`zp;2HNXʮ_l!˒HuTG0?U=񅍭bߗڣɉC`Q+âة0ZYcr;eVnROnpo'~l4pKy\XDnOmP tD @ܭrQ[ jeަ~f2ӗX1?SM8JRw5),BMɜpm'gHkZy\_Y#mDO4U G+Tx|n/55Q@1)D[=Sb h%0ez?/[#_6opӵXL nee|\&!+q}$hB?0Oh2? ?X4>}b=u> "z7pRRhWP[~e ,5n㝹<.U2CYLwhu@˳ǗI<[A"B<`#o{@ AX$kܳg|j{dEZ=%I53O@I]8d!6w)iG &KEC7F}P @W{, ͧ!To\˶v^GpҺgaFg ؏ L'qbw{EM1x07nOR7ݲ潰5}f ;O YARD3N|#.ָ,kBv){Å3II4w G@$N\b&W:E4ZS}Eаo@kQwX?jj6CGL(l)Rr*K[^JASb3N,*7|`1S6v>2DL`O|SqY{~n]+ZU!TYf7VZ>˞O|6c&NEX:U:5ٌhCciZ)"PrN5) EOjdb W0X~ևPEmq6. A@ }z S%m#?:*pGHE]|vk'[t*AߝfBAG8$-U kv'r'x[Гd+,ɀjtsDž1fRA8!T c(!RS)ujXEN UF 𑓃&9q |?OG}h Wcݿ7%k ͐94=ͳ-v O5`$.IuFULEem0 $jm잓,!ogTQɦ>LQHHެX9I$j U5Ͻz+Ul߱|3<cBW"룇b RVZ[nnMQ^< ٱGkTS.T9U@ү; ojqiaf#Fi;ܳɫ*b,_(/j*"';7H&œ\ ^QCp=Û~Yw@H Æ9IeM~gg G_n! (ވMM J;&3+M.v{=^m. }ZFor9_SQӓ3 ըJ)1^hQˤǑZLidPB xƣYu9""](bqXls20CՂ,OyߴH:oA.9\1/rh~Tf@3EUKB^>7ı kt2" 5F#r]oۧ@ ˀ0D =G!l3`x}s [Or}7*XT>œ9xk,ޯzdD0"} J?{~>m\r96_ND߽H%@ĎU?ÕGip#WpZ Lºt{F}OL۱~t61"PU䱚)8N2`^?o >-c 6'?tJiw_D?od|1iva1ŷBj ;DGb\5B!w@o@*%*h~~ H=:{,(!L3"`J#6?z#rͰ퀽 oG h_k uGYZ 'fmN~bOX=- :{yew.( ytÒ<7Xބ^ 7v@ee]@_s!_צ={JݼrX*۷'$A ӼQԨ.(X8% Щ_jp )t9$?ֆ!dF١1bO⽓˘񊐵dr*YBm ]9#$s )n|y*xߖͫ殀W;G^U& w'lh"Pn?+I_<3` \_̈ r8K7\VB"r|]r5QH cU9^cy޴ 9r_8ɂ.KP}m[˜n'? SO5؃ܥ=Nn<JQD\_J{)$ò"t<(WD!vT>RυK'7ۉ( PwqNYʂ0%mrG]a3)z?{5&)ƔۡD IhrlԨTyBPKL(xTqjz-ϧ/6"^gI8w9כA~:b߮?]>t 2~jvRWHԶse"_S$4!o)t#v҉6$n!VѿS7> vP ]l wБ2a2)!i[oi;V1fLQWEWC61˙ǾAoLmS'OA90,6ȣHBǚ:P?>۳-@rތw}e"Rޫ~5]#;S㚡`` :YK7"?txtX],*ȪEL7{VF΋ǰdp*=Xe}ebQh@a>zHQ[,Rv7\s4x)*+d^ɅiKPGkyT*&p> !B ݔxO/k`wiɓFѨj{e٘Rh^ QmĤE\;;[I"mzquND -LYc'3ZC}!@?}Ĕ]T!^Ad|g1G <,[ͫ}v aD)Duvw{JtM޶uϐ12^չ<pGSs*/Mw9z ݾQݕ{p?@ݞL(c"̓JneKe^r>i$Ѷt.|3\`Y[hO-(:ZN4n %LyeȢ}OeZe(e{׸"$Y@¡՚6UWC^̦-oüDpUq7ARa6ig}u[j/G+ѝ׌7nuҏ#B;ijВ7?Og;~ߢE_Á0͊ھ%]r\FrS-}a~_DŖlyIcH]0"-#~.wu g7b*-71SoXL"7Ai1Q^;ˊ' !e-/ s|2i1щ:)I=#N!6C7_0ю-";#l z1FLМ&%bwtI<.*3`tζ+*XS7'{۝VM2! -pkH'X-KZ%q 6 k|Ti 'n@պd@qw&sWRdGkER$9F'pD=eLdN.u;g*d@u'ֽlT7V?aB{v6<˓ēEo TDTkaDDAx\ yMUˈk֡lx!{HCo wT3A$TnD,Mst'Xrnu-OώZwM}[roBvåjIO BYRWҕEsY;ݻzz /MR*nϽ_oN'UsԼ4AZ?'e" =f[GҀqf5yu[z~i.PDV2LI&*TJWc]W{ Mq7%[7PZ%n@}m}s]#oFx/?rA#N! p!.K,Q(_ÞךWnn ǫd Hhs#uhtW-grE <5jl.1op4##}+rCڈއ0Al>B9L*IF\K&61!'-m $?Mrp j2#6Ob[qrFFY{Kn~86-R]7M=;d^MUҮZ:?,nxG*@ rޫpXfYL>LJ`L*rW埖r "{{|UϜLUu[%s$(?s@+r$0E `Uδߔ3X@rXP)yjMQ![5wC" vr9&SH(#oƭ6I9,6QdDꠖܚՎOo*q?.,CWz=J%o6fHf"nWů?h0zMЗ ^n6=*)F5iDTb=A02o-95Zv{YG8fDgou@_ʮ%{v1ԫm9~=` xPGp)HTG12R;t2E ݅T,S46T02<0* nbOS*H8]ͱA˫^=,NSҪz5=8?:2-s(g=Y5BNy(tHo@P</+9vfg>diýv}Yir[ã<2Er2`h5F*<ʾr{|<}/5,G[c~Fg]ǵyLd|ҔBb*.M})+M_Pb|2^OP|Mvy}>Z)t9M0ׄ ! zu%b /=ӤDe|JQPks< h]#*:걶ݭ(źr={,Or#hH0|v<~nSUa&=*y->Z/1ƍX^9J/d__)be'opF04% )# cH$iD e_mRJtg/%:N>sKAF{IYwnr$_AĺFuw۩]lr*E]?򀬜V4ln>Gh`)DNJ0xAlƞBl9X? 1$!iy㢅 _eo?nP?\ĭ0mIArmѶ雧SIKz>,צϐ#-K3|!RJ:Jϙٙx^t8R<ۨNR.BXע+<\i`HA[7%#\0x9<7FsTvK 5cpd%d`rWԈAc9>ũ ?XHTRCoA*f"k<qO8ե %h&5L0DN-;gDpXH|=X ?QSi3`N9&x뒬8g-(@;7̣m9f ρptDfOr5IDa\$sm|PT3"x~#'AˈMaiNG:YٞV.>،Bf8|l)5$JF'I4`;by[t? UC%;kө;tvw5z?ƾD<xj5C<x| dDI: Do`Ǘ AeUsOl:N!̚%+nQXfPl딫7%Ճ>+GeO1,$gGcߎ[N FvTSI#S6PvQr>4X0I.*ϨqaOcX|8? '}E3| jϓ./K!X̣.tM+cÏ\DCqq~cg7>C8'J̺q,wl_3H `̃\6g<>Q:>oNْ^QZ6 rOk͎&SX;(=-Aelj>sn4{T7{/.B7@'j& _A}A6RPn"H-@Y7Nlc^AyaK/֔55# Q9cFJœ5|#:I(M #/TDa@Y=X`Qs5 ᠔RqmG ˤ |OkH!<}Jݘn-BV 8B X ⹆S a~zPD sqix+! s$W8Y%5=cbBN.ᾗǒ!Wxx w* 2#ث 7 &Aiۀѽ*A/*7&T y}YiݥB( nKFM@If\ ܗBBm%@KbOGi:# #Kw )X"}K]71lTlc`'x#@oN`" $abW㔍xy&R~eGg+#ݽ'+NР8aCNǮN-%񇭴լFކDpoKA>yNj%01:{Q/㏶`G0>BԽ^D .1soQFrh.,T-s~<6PCO<)-sG0>#Y+r{yBr$vz6jD֋t\u B?K?Wb >9,/iF UHG}.cInU(Z6|MiBeB%"‰Iݒ' 7לnECrGɫM+2^#lYDh}1D7h'1^!^|:~3W񴟯$8>-ANWN1(~dXHm_߼hJ<n u!"Z;ur(MYѫtymvhq9߇%8ǹʚCW;8)\#E:Q!iѝsK+8:!ZläSrk{w WzpH H V|p7_lf>`2e=~ q힑Ue pQ_YqHo7ZtMQO%:"S6ψD('a /5aJwAI}IH.*mߞ%M9lf <>Nj@&<lw\Mn~ D}eCxYmF_ƭgvqPCd~\r&p,Mv-j)rCAj p?%B'i, yvB_@hgqAX:-I7qxߦK6\–z!MI5MNvP%Ŏ=)j/;;rKtbX%=uؔfן74 {iS$kBF&|OF"nN< ;y[ 9PJ/w,9 .?tԉ3J('[XeSD(dFt$ۻh@%j) /=©;`Del}_t4͗л~g ܧUzytp[ehgl6 z{f('4@(KH nڞޖ6wbS!FƱr(,lDwa+Ѭ]~q^mb!~wb%*$M~˦|KGdGOfI3>uL;aYqI|vD2\+ GVSWe !s$[7ݯɫg߰G禝z:[` K"-ٻXG{-<[JBvs/w3)W<|w7H@'*GyvՈrr]Յ/7yZn qzD.${I~079 (eJ C$䇲Xz{ҁ4,6yLӚ\jk2iw"iw)rf3B)N[!NOPЉx6W8M+ v?$/P'L뛗+A*/KBY} `5u$7 ܲ 4sw͍q );joto 3v( בius.sQ7cuJر |̉RьDtya<#8[_`G^R].@*ESU o$I1;V#Ͱ\$)•<%KA)֨ko=u\ƠyEHL,Etݮ?|j^uFj ڶ`<qJݿ;[XxXvLѐvhZ}cE9Pl',^^W`aDgPo,Hb-/o'Rae{=дK,½Cf[DG}fszkG?`m_揀2OmR{-M݋>`v.V1ϛ@<N&!"y\t2cj C݈y'ɸOnkKCf^gr> |bZ}{Bn@71C ;ѯq?CT/vn, ; 0qSI|&b:hsS~яO|W(]pQPG/ot7$H! _}B+< 卬1w.'gJ*^E덶DIa9cA'zJp<rK!ن?+)!vL`c=[1!HW ᇸ3cו@_k$X˟r4 8V|O=Wo7Eg~;6{v:d"@ m LKatLr:S C Fjwd<qդ09#5UM'Y(pMgEi!5o^،_Tb7gi= ,y8=BY x>QR8YM&,l8ۇ\^֡Jd Q$͙>5sJ86U& f*F>4u?l2/7<QCEsLLCaQnﳫrIts:/(M.31j1$V@lӚuɶ[J13yT2[yaw {F?̽K~{F0[^*|2`}Fgp˰DZ:<)/E_)cߨ͙ؠ |c6)u&Cf|U eFZ*0?gGE6,Kj _lعy gE'6R-!/+ZY Jedj?D&$I_[ˊBUcm}؈ۘ"9$o4C`ttX_pD:~-4i`JɎD Sh}x4pcFiovq!4RyI@Rp}4^˾ϋauW誫tGq?;Zw[.l| [ucQ)d C~(^mR<땩,pq 2) CVJٔQ!w){a웳N|W.zDyf2B !4˂p?VɪԘ}\x1IRk UU&L\C4&$dͣE䚾%5]2DfYSC}u+JWM^ K>D#e?WW7c.b5$P|?BiO?^t40,K%Nw5g'>ɂ7F}|| >-.AcsyFnȨߑ?|t-r!y48udýFꊤ~u E rOԯ<@I( /x94w ews$dQg/rZ,JT0@FS`-2{x*20)d#OI6ז>< $9vٗهa KWrW+T7vqyh7}cS; Nvm@>m;2͑X^dF4Pp^{[8fÑ\lgj/ʝ{9x:3Y@{ N-Wŀ^^ss/(pY}XnM3~ ]E nPkmvOX5,a ?%m*K߫++@$q6 $7\!"Щ2ә=tYz_?, nx#t9%P A LPa]ۭ~>Q L}#kv ]Vary_qDCGSwPgMG08?>?rV`w_JocP?'^gC>PV7࿂#}V y$p=؟ĝ_( o#=qq fQqH1`:yW! I! ;DȗKy뇧94_ΒbL76 "EPUU T*(*B$ RJ%AU" $RJ Q)T*@ [mZ (6Z l =H"R$$"*P%*"""*"JH]-l JPTDUEJ($^; 7T<9n3p({@ ꒕lڔs |>}ϛgס ,<{:NynUܻwqx!ATzy<xcܮܾ(wygv=syξ yzO<>3אbFyw5u(>|Y=sJ=`|n(w,[|<7#J!>8,=ρ}xS{n3{G`{gϼn޹㻛|Vϥ縮owosn.sg7,2w͍y^w7g0syG+wqۋ{8c{x}9gc{;8 u|swqٍٍwsp^x>+|wowٍgpvwyow{W˝f7sop(}_[w;1;1^[p6;w8{ڠ񎣜{yᱝ㻜vcw8^===;p=8zʽ}f;f>(w@L&d#F`0L&Fh4d` 2d@L 4d4Bbh$$ǩ&M'5 i4 ҞS0LS F0IHi'ɘ$&L14@)ԞIjc4ʚzTSڞFLD&#LL&45S5&PBzixRiF&Ѓ&QzP4fzi)F@4h 'RߢU4&Mx&LGh4zQ!d42hh LPѣ&M4mM4z F'ꠓR!BiFA4 #R{M4L4 h &A0FF2mAB`=TșZ+*?pe`̡c$K.IQ !K-$ bU-R$m%*C.0$e\$ LU$j¨HHJ%k +2KfBl\đ %ɖ̰e Tl%L;xNjͼP/;¼fJ™nRLc$1hr0 mY0`H RIcwtHZK-$ )!kB[jIXIr)na.fI o<]&yv0'xwVImY lɋ9J5f %(F4IK&QC%&ZlePI%n']%uyHcRR`1!2!#$J2ړ) ,+ 3&*RWfIdaaAȷ!1˒IFUK,Y &[q5$(Z WWw.K;ri  d#nF[n]pn]KXHdBY RQs"Veњywy^7pqܼCȮ9R i \翭-[c"#",%5KB5cz:SmΌےHKvX$|GaKnc&y(K3HXBaf;Ӹ+2ƒ xGv.2\K%[(ҝ ikE(L"&GbY1vuMs7vMo 燌iy46@KDJYsH6:͹w[D:f&MnkדlRZL*DA% &5wʼnho]n .#mte$BO;lfH2I MvBV, ,%:aJR4,YrHTM]24N8f][XP-݉:u m62#dt1EؽVݕERSi6:y2f읫ZLKW-4[4a`Iw I$/X6 5!%#<ޮZ20wVuY2.D!Y(5k\m,ٓ`]eƻXяY6l]+Jn Iif뤂I˫޵#mi!fy7šiMPy0faEs ̤A06f[dԦɳMIiXTmlg^x뗺ݤRmy.B\FBqeKQuM˒dY(J! )WMM+Ѳwr@K4P+!ۺm@kaZShnZRM R1XifmARrEt֙@LsOH^ݧuƓc vXl, ɛZm٥&3dR#&[zqC[Y'R[M& r)n`I!-m#2LRɷu3Ifݱ0I TnɎn7c$mj3CnGs]mnZ| k0!ӧ\ Н4ݜ]۲ygyGeYfN6m 4UrhV#i< #" " /#3b,30M.Ӽx:Y7n[H;O)۬[OyKs<8 kK#Yͦ\ܤ2$7vF0ks3iNj@\ I rˇU˴d\/ ^1\ .@hX`CLH HU2($\l m=j -&nݻKДCY8cZNFZًr)3vX!a y'nn68i|IBLR豻il#-aBYG,7$|wvҐd+-aכfGGzl]7z[`Tdk &[ImHd⅁'fqeҝOX;`%2jO:V6k.<^*a)ܺQM4[u+! 6YBIlLjdF0ܶ1n% M|m+-+&Makv!7ztLG,Зt۱ K) qYvdt-پ]0;s(Fi`f=Զc2ń$a1ٽd4ƮoeovTPU[Yr .SmɖfVmCIu-릁I $ըwY#,4R٫\Y,-zI % .m5EAƑl#F7vUݲX-X#EJAIE-iAYfI$&6=Rxo&ĐI ĄtoNFynu- %[d-s 4ǻt%ks;1 q?X(DcaQw"?(׫mlN?jUWӅ^w>9&^ 6+sWľ՝Im6w6ׯK}O+G{[k=(kZ3V0)CwOf}^j_+>V5=} L[0GGioUY94y_4IW_5[=z3#zZ۬9}_Gٷ;gUl>Ǎkv-t[)=w9F61U+j?EA-} 0Je;rI&Y"PC=XRp^&0|F0"^ǝU&z]wvʞ-oUV#S$32sr1`C&+U[M=]bjYe&L`KbL( 7yDQ1]G`N%x1 `_ dD؄?tcOڤ*G"lY&)DRD{*wD.AE$!L FkvEo-|cTYSnj˦ rq{C{]  _/Wϱpa^=_=/lι  E]3"rz c|oRCXU/P`AXA|Yjb4ڹ֤;Nǡk;`N "u·ƽ <ڪq}Ϡ @ }̻r/ zĪ\  Q!Q-e9)#0! !AJX[Z֪&L篪[j`sk" " YA+!0IzDG=UYnÛ%ͳ\ 1K6gC{tmTY,X5<'[}l5iq3j7^R]W_5[Uv61bJ!{^C\ i Fܮ}g5Lcpͦe*I(WwOQ<&Z R =_'Yu@,Gw/N"`3=nie]7\vm-;ɖZtygnNhMbaTgAqrN:5eSref/j9:ؘ{W"Iw*'pQD I@"@QhБ SCxGT@$_aB:P `WP^{yhE2B~HAPBJMWO /dl랳M[\=Gx>I UCr- Ґ NB>`k^'0;LͶf9~fYͦ,vlRs]u=t_ "M T %{x{30/F)}#An00苐^dtTB1~ TXޡxH SzzX`HoƼ$NCvޟv,gd61;]W^&XiJZÌ4xꠦvjdsO.WC,9LMyMV1sH Szb* b@ ǙSsv($A Nb椠} xqskoRRj)61|e}-[m]]-;vƪ'V}5-V|O] ޵MKT8U5'[q2Gmg yJm |A L;#IoKkyڋn5;$3c0ʦڹgF4g-Lw:hs-=>nw[ Z[;מ*0pMo/`Jް5hx{ЌPfj%)}f)vߞ%y/bFEe2DN'ҕ%Ѽ~=3+* ( ^7>R>3lY [%7Ѻy6j;TڙUe'Wj[HWiAfʂ7s(gi+0;7;G] ¡U,ptUx47o%gOA;7o =2v zh:[jCJ}q0IV/w&aKэuo @|="1E0sǐI"Ex y'ӊ"0;ExH>Bz1*!0_1'CcLa~y]N <7荞;ws7)s|9\ck\1i̫m5ozw ,K4=)n=h)39MF zH+ٸ^QskǥDcY!0yɰaOH.J9,ˮ!'b"3\*W1moauܪ\|/)k/Q]6wo «klFdnƖ!NDl~8 /#m.? }|JwwQw#1hceen&B={)D0 BCF ɡ<-U0{Gǟn9Pu9g,aA*"1}|+wb(`PJ*Cw*Qz UK/a^P.?8(a+cHoaYJb&J$mHa8HƇCdb 4Uq k21z \U63a8=mxuݚ;q׋S/1AoV&Ou;Nlȡfi7Npmc]˵Y~1@vvmc:§ÜqMXt3=Oos 7t>P>cLCW1(;|,RpG(zHQ#b{I׸!7KM]~6w0뷋}9G1UמWZmuzwYSsJUk믪:ʈ WA }]`PPěֳg5QgvsշpӲb|@B -yhh(|1Ayp BDCD!] L8AfP}kC hzx]BB(5%cɍUƽs.WeQۿ=?oAԦxrΛ=:T3L{D+Rzu{Go4]*"gmjkimbP5pCT4zH{@-ǪDZpF}A` 4C>,7nU2!f f6ΑġH&jhiLg7_ZOX[Z/_}FSNj3>/lR;:ڻn!|kA+P67]PqV++e&toUiLSC\1OkV6=krƱ]ԕb P@=PRt >UyBы0"/wyxmw4l;<=c ;.VN8WWU\ F1"! +~V@e"zt$U[ ={T>"{*M5=&D+B!$ć  J4VcVw)-iN2.N-3;tхtӍi~?+7Y:]CZJIQq9[m,ե8v|euoHqa/H! ߨ>DH h "EƐ|"S jeT |zp_j)a_`{!JA rD)Fv)z:;ϕ {JO=]|W:<۵kvn.k5pmtqv=hK"Ot(3/ܹN^紮(b\ Kr }с|ayqz>0FM/*/o}w6ͽ`<ti_.UyfL!;ovٓ{AlFh!&}BBC(OXD79/|Eo$AS8FB!uU,`^L0kn;Bx&5=fIt;fRNcvxlu'K (u"5 q08ƨg09J(#L`bDW60 c2(i8 a*5w7wn[ڮZNw6n;~⡖5uɫW:pZVӵo_oPJX0R*& =)D$"Hz\ 8og񺞿-F5m+cjN3Bx{taю+I>hky{w)IIȁxHB.H~塅"Z.v> wn#ʹz ۡ˙ZT\◠i64J&[~DEpAD) 4[zW=a$]E0]0O~X?Rȭ ۼ=EaWtȮ*@7ժwaSg۾u6:ǣ d0Nիަl+Â-3N5 ڌɾqKiQ뙡 5 //hF0%#"F։HHU. 0&`"C(Qz2.-^FݝAl_7Be쒕=kuplre'|cVCO| }3[@7XLw7?wagRf(.4uGXw"JW-c1012L1>r{'Rx ̼A]TC0 =(d nՋ:`vfz*v(sQ)̧-&KnijkNA=h^C7]=`2BNn q] RH^jaGzhQ"ͻ1DŞueIARTȼ| (䄩 jd޿T\տpg3]WN AnbzAL$1{ .o`y{V1 ?qP-U|8to7W6{=(_?4zna}5[&f]MceBvkməL׍{I|Jx. I|^Q?T߂Q h#N~pl fūƳQ]gfo4g͹׉f~@x%7% Sh$ϐS YTP^vX^u~B>}:>\%;o~w푊/Q}| aSfTl\ލwNמOƅ; Z. =dѳ¦=w asM 6Y=,o5jMSt:"AwŅ/rS 2%cgdlm!(jN/15hkv@ESBB;IX`{svhYvP={5|u%)Sú7z|*5>u_Ɲtah JaDޟӄwƈA tx7k yD ɥhf+ot<`?ǶyϨ{nw7-m~ mc,G$!<,^!/P9OCo)ZSm{M7 !.#@!?4g\xu3Wz;dtcf h]"rY.3N t$˴,S-fS;5襞۪ônSlsMBxi3}#۠!@0] f༒(:OBA`EH h[4b(V6khڋE"D(ƈѢcd+4ZjUcj#Qh*5ьj4VmlVأ%mbƊb+IhZeG]իZ65ƌm$lm bر$jbkѨѣQQUe5V j*XmmrQQj1PEbQkEZ*(cmk4j(,h-cTY-A&#cTb66FŢ-4ڶ1E6cF[FDQEFmm6wmȱ#+FZ#0mE1Fh-!h-F*&cF6ŌQ**̭*صXZŪ4j-XEQh[66*ljXV+rܬ- hhmT4FlmXTDEd,Qlm5E MCXlj0ccX6Ʀ[hPUTj֣cchѨj64j6QmhmV-UV5QFAcjI[QhQōV*1 j4F6"f*FQZMkcFJEFFF6ѴQc+K,k%6 UTE!b5F6KFDF6Qj bѴZ5E6 4j$-lmhƍb}V^׍fh&IhFQhUMUXF`تREXƣh#Qbh֪)*5ƍF*j1bѨE,Qh5#Q$ѣmiV墣j,mElTUDb֊AVƨh #+F,E1PbKIRPpUwg~`c2y="Ӑ`^IRO lQ*}nE4e{5 c nBm"V-m#[[dFݲMpUd+RМhXDp7q5-09)VU/]q]H9UYRE""/Y!1|D[&g4b[ XPs:4ԊgdMeϩշ^_? 2g.ǚW2J(d 6Zۋ]9RoFk*7E bKqFU5WX]q%֡G6/K;_Ֆc` 046͖D\(nBoKQD+%K Z4ȕs^&ЎeqS +]p_ó&%mDV(%؍iRǖVvi]vJB k3 gm2X"M(=#hAtl SY{,c2M_TCV3!񽝪i-lfy-*+pn.Jf4410VpkfF9Ҥ3y OVYu/:ִY-kEgb8Z}%vI9J6.I` čX^9n? ѿ(!5$UK yOu$6&cw80WRS;Fld6!sYIJ3[bŽC`56  ./~,{2Z3%I5FdϗN%mckU9nMNfb%(,AjtFvŎżi+,, Pk*`^4^%ڒhdW} Nr2S#_]rT?c>Eّ]haxjʑv2GkY5]5gldJOf [`ay[)FM)oLb- wEJuPa.}4CKǠ//ڋ}Bо-T+r`1(m#I/0e4<73d6`+ʥR,X 7GSZaTTg5KYqaM4Wc0nJjW:щ86U;AѕumP%ז9Ίj:H\(H>tb,iM"̖g*xYk p葒k\/nhG0ݒ62؝aikWr״m)hLE@֫ vM]^k~2b՚;Ԗ=fr2ͅG ؞l3a@d%MdN ȳjlaVodv\$ss), R6+ӷqُn2KH碉I]wuaHu˹fnpfӤQ'f )?b6)|RQC!7j lBqXi,4h ay6fۅ{g0flL$)Ȉ[ĵeuP Y:u]Oanfg)Su׀E W.<y53`],Bي(n钷[̓ aՅ3-7`J8hd|pʊHF(W)-;.ߢg_XHA; yR ):[2z.ĪERLY&,˅kDS3OבAqfeQ u Ӯ:g1 s mEج- JUNU)}xZKhLY&7%uXmbڱho`uDo negHm} H|"c ;Hn Gixp07ǍF`OP35m- c#NQfHq9G2(l-eKh2fFV3j=Z۴ͫl5VʛKZpN[zwqYJu悰nD%]+byrc[nS"J 1HmkWhG_BfI{Yf2[3 ғ䮙Ms>,lKjʋ-ca-aXPYΖmR585l/m̙L/?f+ \:NٝOk-FZt9ar ,huz[Ƕf[(66g "$RloE3fP$x}Vb1շ`[%ر(S o ũ)0e&ɭ';4|bI^oeUXwe6&)Em44T] |j{beKĥrbx#FFl` S 69KH ŶG=iF4q|rabT rlV+aAۄvb ,h~[Z^őTӏY5"=RC"iJ͚3q;sa"j[k.|bʩD%ib 73p-篇[AtSf c˱2h$bpFZKCme-0HX Xrd}gb,x*80c4sE jb 0Έ ͑Tk5k לb 93V @eQeKO'$Ҳ@w+]R,vÌKZolqXdeN ~`UUZJ#H_3(#waXvZGm3Ommܣsx73 tO-Eh ȠƜ&v%ZM#U uN+-g-kĉ^DVaj aq0ive&b1e6kvJQHh=4Ϣ8غl̩6I.hO-z.缩Ux-JBݿ"M854H9^%&;˶MPV},mzKk:Ƴkbfp!Q=-d YmZl^Dr6EۍlZZZ7ŀNCs\\dײպ4 2eֵn 1a(a8P/JFi]:sK9*&y@cB#-m]a˿g $+~t2TjetLXyTmaq>cR4U:E]p'}l&<ԙxµ:fkkMOMXk&QJoF 6svVNƝDj'Q{Į<h5M ʌСf_)2L؋bmWح-x-Yɉی`nYJmKyhA;eWo@R)ǎsLm#&gUSPP+&ҠMbRi:Ta-|&b"+ \w~{Um PtfY>I1YvmDd;(Oo화̓YdnCGF4@L ٝK\$XJY5QwQK.8`óujvlM6dʚBh1(aV  V)MÍk4`_]ѥƅ&Bbd͎WbK݊HMdW4La~(فfaYq .fpML\P@њvpn MgU׶3e(HF 1PБi,[d̈́nQЕң c\Y-5ek QZ&b)A9Y'aZnHk+ 5SEHAaEFeQEVMF%fKTm=wCObaeh@Nަb,.@nlOiڃR\UʉCzT|(z#76Z̺+ًDr^{DWCU*h"Z)81SJp1eSg ٰ4)["*q3uK•R(Bg,^(H(xL`Zh.eFR%e)?KUi2ؙʜеDG.5ì% V~,ʱAaǣo#pU\gkK{c V_cF4 k[pD2, x)5u'b ѝi_Z:c 0KA3K%YmbZdA04BYv邲@.$u\ a蝱wTcw.5Iښ. d U.6j;:E%IBIՖtO‰a 42>b<ڙ+7DgEKq7H' _L:8L 535Ůmn+ICA%-0<_J{-gEZ彜p1-s$ ڑzRvZz1?-"0LIw35UiŸeve#\Z vSSHe L-)MP)*;YsZvl:/#-e~Ź،E L :#F R([r"ƪhfڊ3%m<=򩱉d/ =w|yZƌ*42Ƚ(f8^uJ@H %#[ֲ7 _>frI)@W²#1'{Ce7l 8#}3$toEQV&EvZםjnJ1jdrk6[NhLRb1HQpdJaSlDڗ氼bY‹z"@0\^+1ӔV#z&8-V]vȖiF v+14S:n]> iōR%eX>[+)fàx44 %`TB6(+5KL0e̕q¹^pֵmGBլbp`[ vk\_J9־S^ X3h<6"u EDz(ƅm[K!U6ʜĉ-x @9>Jé&B/ml'yig6egl]Nj4.8!vlk[͖rcIsD ysZE5ƮРQ A5bDK1\H F$%ExLBAy- +|RtɧV]in0F=%U؅:6V-Y+$P*hxtD|ν"ctHRF՗pd}a&f-v=cJUP4*'e RލeeS^EJ4e1$!ed(Y qsL2Hhx0ʵ.`YSi, 9bf-zfl*El / )yhˮ M6D\.3eF7mQDD|nM8T\<7dbT iQS"I0B"w"48~1e[*ΚœpWfl'nvpY)aD "CBcx!kךV Rłg!7R%LTK#0@SB,,i0Pų/6v&ՑC#`*[fu%gĞF '1QHiXA| .RCS`^*iEܱNeupʦVY>ŨdQEg=aWѫ|l`WY:؞I}HmwLXR[t+^Fgې1*شf(/}y}*dmW1'qa"*\?:/[SaUZ¯,9>JCvzVɱكb4"9wCĹ]v2} %k:Ml3|džŌZb[ّe@ۻcnʈE.̿7TI6aM[8iKaRhT/˜PY/.FeLUn&c6'Y:ֵQa9ՔP10 :xE9 ׋)MS:+Je"5rMh·ZORb6!*"lDܙ2,uM\cM2z׃kRQɞ^5#jKMnK0G DZFۺJd~`;NYM k],)gF&ml+B"Y]1 N؆eQRL+&i$\ +UMbi*bĥr, X {y.+LhQ69FnIm* b *-PȥPѨ,XR`rے)$ ]nc)lڴz2⺘ab l6-pR9V͵9J J rұg"!XUAl`o@dR,W(۴Ћ}`6s QQ"j.8 ^X J=ceG,9iZA^c}Ji_k.j/, 8B)Ҟ<m0Y^e֕,@ [fAq4J$q[2[H4!2 Y0Lش:IaۚC4}L7U{D4{9Xp:#L$- ;kZ^uHKs#-MrqE&VCzCj^9ۆfob1⥀acni&Cf(ZwIdB -da4p4{wYHqY6/ؑr]ċ8"n̐6`MlƵJEGmT݉m$LKRWUե}qoyNE.W XS^vf4#,Y(5F]$i<m|=kaoB.5J.cJ drmFmیqcPԬ%LSwR14hҨnݴY2ٝX TSǦr 7&&QlŽa%qD Rv%FGٛY$JD0JFD7 Bh#̦XE , 5 ֲ[lxeBf[lJ\Ebivf\Y&;5)eԚ5fͪt/Fše^û|AcP-!-]8~=+-<䰒۲)v*ʡ(,`\ K*u<ٽ=MfV RE^E\Z\w('W#iDvƔ" 1^=uںѴEصItʰAB6j:xTcNXוc4`8k ^K1E+o^K 1`!Q[aی}YzCDE<)D>7R↕4l-fxU©_r\XCK@(Lꓕ(b\xg8xf wRxB3 t^ihBVco܊ t Q]9 ~Um.ɗKWbם XCW8 殉]VfL: aDWoR,+ *S6d84ma`_"+cˈKƭC Z 3Y2Iéu*  [R;4k Fkb(Jt"B{.])\*`pMglwۭ:JD͋I.hDٮm&E~˃[:IOUIeYLn1/H!kyEףi_fi+REȉrv[ȍaZb4M0Z‖>5\rg ,s3Q210 EFyk3\b{c᠘meljlWu犅_oqକcC|N6 mȋFE&*icOa%EjJm5 rgkyȤMDMn+6n_$wTnFƙ8ٺ vZ$jB(i+`('EP+"U!;$`[C_%T/,B 53,4w"H,Z}pw WY܎BHlkוF*7jU p, ؖ0ݘz]pz$,0NVyFeR\-aE ƽ0uBg"E-:Em̹ZL4;ԅթ˅m _ZX2N,vD,LDޛΐ\ C$(T0^fzF]RlfmzdNN'ʏV0q2FĸU#C\F)[eQe9 l)$i/ucp` O(c!H'}-KЊfq5Ԯy/]EO[D~Pbq6+*lTVS| H(ώV!WhH%˖fp$̵AjIJ| J]h 1iJ#@g+cRղ`at[:2t݀J(sfVb5odedۤj/֒Tvc)d8fh7ނ`z4{>Jqhxėh[F "97GLy QLWH ĔƟI_%: ĜO$;,D`J`q|*߻SĐrBsCKTB`r0+)%2dhKkJ?)kƔaIw| Ĩ|7G v-UlkYyk$b28ǟ@rci|)ȝjNaf)V͆ #q*ʼnr \T,,o(eatN!Q[.dȱD&RVYVxKSuآ@X*m翫f3vp>2^QfqDb6fdICJGAԝ`(cytmZjD%SRwrM"VѦMv ӌ^Sͨ-R5h-Fq4#i.i55Հw Uv٨j_dJ쳏`CT+FˍFS̘8Um]=Zahvrr;%J<)FH$9Z-f`KikMfG%Ud<ːKx';2ൄtEwlZSTUagjK[L0$$R:L:ց`yng+w؉(-oRrZgYA7*fQm4N۬q "+!¶̴Eush/,\iFŔݏL"{&\Mh*kqd0faer@]z^MJWq[׀9ew-zNz1Vs48c{Q*mx_̑Y&-W-dvfI4j=bƕTM8D Ժ+v~=jl$ƎMqc]ȵ;NY[Bo3s^2 ("OS 3kL0H (E,E2|V[f}fpȺB/D+ ƨUphTT-@k%f$R}yr) ˶(qJ҅jWk2f3[5N=JvfJ˜623 Ǭ; ϖ'#+JjG*0LBL6}MlI#γ&QZR/J25-[ vaəliiav>,h%Ayb􍁑i% E\v0bl1haC)Qu[K%K] XYju"[.츝4Legng-"oVƊE Ru-e,O,j&(ZlPgt)rjE:kkeʨM"5k? q&=2RV.>3k'qLEℌli\- jѝQŊDU)qi1UXI,(풠׶:K}vcgUfu աmEb%Yp5.%%i7%B7 .x20ub[, Z)HO.$ 2'vgkyUĖ*e*"VU2>FnIh:k!eakgZ93ln;zBMO:leI[1,Q'4-F(C*%_93HŰ6y&2Kk5jj%ׁkrkFre[$w=ҏFVR:$)g,V0p$Lkn&QmJ0i.j5ͣ%c5%fRiB. 1vK{AìT)ɪx`ڝ)l̨.dV'aagn jj+l[DY_K,x'ЪPB]rf/]΢@NɩU&܁óZ(ji(W,6Db c Zlkutj|[y[a>.xe\Y,*H*(!Ug0iܸ9ianok!\ߥ <%ܰҽdM. p ȩ&&eS".C1>|ٙUoOը**_??\}lKJ}oC[9շ oQ%ApYrj|UYԽݢ+vPXM?ȗ AՓӒfzY>6@O:*|:XS6c6=1 98Լ)d2ttub'($ǮP ( 'm‚95?`t9}jW'pdv{?3? <׿"}!%6X7c_k˻ i( ^eG ytEtu??@JB@Oϑ[Z6H͇gIG{W?>ɱº#cAR( >C%tR82z:YmJ;.|3m?;ަߒ܇䯏hK|x=!СN~>r(zo{\mxUE!ڋZVjuZ=[j^ILԴC 31 ʁ  W2"3&2|l$%a RеVI"d #!t%$`A`@h+EmXջ*r:TmN[tծjmkEkƮUܶZ5W5mm[y-)WTmkj.w-rJ69Db\#\\ spճ4ǜYKy=xUW m+ @@ R*IBE+:ѵUkTQvrkpF7.Wox-xܹMx^7uuʶ(61]W*\jJ$)sȋwt2o EIWy.aVaպ\%xd A6M/6fiD;gtMtaed^.e$WY.nʍ)?&u{1,\jA 4Q%ۣO;u:!tqn[YO5knZBrużFIBH;Y5!r`mddRD:tY# )Cx$%x6B B]V;.*췎KîwWN8C,H-s04+I/;RJ]w&*[J n4ӶF4o;rrkvݞ7ELwn{LvwBwS™bvήLM \ <ČI]Ky(c2 rKHpM ٌR5yS*Mf'WPpl]9xyݢY2Ɔ/;qprH̫joRɂ91 &̧ٲyuKe'uk: bŒ؃4V݊IQM^w{bE)32d 1])mHM[֦ y۬&Dy;D^wkw(bQ|{??bb0;IH$  5L6T5+M;k՝)W]n ]2V2W7$R& DXմ9ɉ(d5v+29dLe)#mji]ܒh3D[XZF,ҥ.]ŜiNu*t@ s]X l)QDKRݷ9˦]]&Q&6aѮrJ&B#3M\ ܍\ݚDE92#mj% R2bR(܍k- Dݙ3EU˜@$۲@L! a  B BIop붚PwLZ?ǧ̈́S%! e?,ˆʑHZ dS]/ SJ7PѪB gzU&5h1BPU Aϣ-Xh.v4L%` >J±i xyZm oXvk0ȫ!]mh:u_$ CK ]}o$Y%30i=R)"زg٩>{ 7P F.mH5V iMdUID$ @& 8$C@?p~ 囊? }\UWU^UzUހ@z@z@zWU^UzU^^^ U^UzUW=zנ=zנ=zנ5U^UzUWU_-z@z@z@zUWU^Uzo@נ=zנ=zנ=zWU^UzUWzUzUWU^[^^^UWU^UzUހ@z@z@zU^UzUW=zנ=zנ=zנ=UzUWU^U|WU^UzU^^^U^UzUWU_/z@z@z@zUWU^Uz}נ=zנ=zנ=zWU^UzUWުUzUWU_-z@z@z@zV_=HB@ f ^$$,B@!IXT,!@l @ 0@HRRͶܹU\kkr֮nVۗ*6ŵxi Jd fBfYkn\[msZV6j5[k_Sqk%BH=[uIV߷wUZ[mQmT~mklkj+j-ŭƵFֱkZQj*RHj!A PS$@PpIkF[V5ZjŶbcVVZV*lUE"d3? k GnW m͍[%l|-7 [cEUU|_ܻO~0|n8Ug*;ʯM.ٴvɎ%+V|ZPlƴ}')[6fݳF8M-%fݶ6P{y}e|[st|^۳clqe0ӕŒf-N8ڰ5VzdwY=y}ٕ~vd.K!oƍ¾UfȵX[*х]Ϟ=fL :yhewo=8U׍#>k;>56{^w_/wO'%v}ϢlS5j567kK֛ JӱlqUfrq5fXSYjX1.ڬ#b6Y {ur/{vzKgdT泸oc Z5ERS븚Vys9Uz$4U,,1XϢU@&ح7uPlfX}$Ja^;q~ebzfo}iwzuS뾳;ԜKd$~ϭ(+vb9M˔ŚFoP#F88^<e>)3ͬ:\0vFmw+e͋|re|KWt^yX|7߫/f{~ϻUo/9~kȒI$"!$DZɭ[jv֓mVVԖک-Uj+mZmmQP#!"2D tO@wM(ׯ_T_"HN: L~ ⍴Qa)uL0 4 1EKapÄ0LMڲ"r2-~a_dL&1K+WW0p 8amԖMk&Y5jJK[dZKVK[&ɵUdַmumjIi6&I[RjԚdڲmKkm%VkY*M&V[Rkl[Imk%i51kWp9Ymko[(3_C_ځ~M݀7  2 -rsqELM(J3b7{Mɇ:'@B! a'e3NLᅲ[d@'O}ߏ@n™ CZZJ̏@@4'8@@!A g $=Uq fS{C ?! Q~ϛH d~ Đ(?\NW|];65eH 1~7]bek3sRX?9^H@HH;@wuf0v_L@|ï(Gv{u$X>?.S-YOm xok3Їoa r' o?+?_d?!HIB'Ȓ}I|/LO13jf%2ufV~DޮΝS` C[SC`Zn7==5Wo )FynXn"SCmz'+RٺFx;U=m൞&G˸w:Vݏ.w7 ?hd>~o;iv֟^O?oߗOO|-?X =$@fUfZU[mhVZkZ_oթpBN !Hh$!'!!%AC{2`H o?|ӟn;s?OO) J(*((mTzvK>ɑŭѡP3O>sGPy]O2D,2Mm%(n23NHkn(TJ%+3M~Blm)+%lD]7ÆpÆz0 8pÁH |df~rhxvЌH^*7 isϭ?}e+C){=sMLZ $ܒI$1tײ˙7O+Gߚ_J%(`xo䰺 tQdl%gǥ4דl?݌>^gu 쐄(Ā@ F𸻢qr B!H !{&8{Oſ؎L߇/sZcwo?;jbBI$J}>c`!B{tls d}yUzYŎ_fOכD@b@I$ SۘQd {fQw}WcFG4hB p@ $s.`mE Ji'?|a~~ƪ9S7A3HIg~>~{?p ڐ>@d?>E'9] oKs35G AȍS25|$㏥[M[r =_Vus?_cf|>}_S;x^?hvp;Gg~tK} h}^g-{zFwK~>?vKY`'[rۙж----mn[p/mim-%$sw$w^0׊2^}y| *UE}e;?q{v;q{w^}}<5䢊) BI$ FJ.z݂ˇShst51462^;7dvAeB>@hChMP>h dZeQo$D>5*L,a]qĉ9SemSwr|nO#Go<.>䪢*î$DPPPYϷgV/+nxCסzn!* +wI4 Ͼۡu߲:Op:ld=R;Kγ;L~7Kt49p _^ ~݀1DHE> VȻ?9Q/4Z0: -)Q;+{)qˊ^Kdot|MޭKkG=!ߍ.wY3+7}q x½~wr?陸 T?NZ>5G׬}1y='Sȵtt|yN7ѡegݵ|^w g͙=-7cKOty~o}?bſ  !! $ƬjUlV5cZ--6! װEY d a%0W$Jga, 9<699B缀 @ # kᇶqrstuvwxy@'% $Rdsk>:mOQ~m ~?Oޅ?G {wы})~ZEgYnv.f]pa|͛IjثRn7q>>ps{n؛ZIw0wۢFi]ӄi[Xχ 00ǀ@#$s33ԏ턵U^ 4 b{i񍮩*0~{^V,6P)ڻ6~dP?kiߡ7',ڈ_pd~#D@43_soWK2>D9)=]$_Т| VK4QL`,YRY_/@@&򵕻Ҙ= r(A"'Pesn?~O0A)b=)?[}X`??_S'F{oXwV()bG*?ܺ +ݬ_cHq>'~J #"Ő_ucށ,'_?o~&p8w>c:Y6O|3QX o>?]͟>/O|/gO_>Gw"pϼqԊ,-AB'oOH8M=17.p~ g~ЎST>N/,!lƇCyڝ o/(Z7R18?uȢK[sxٱR]i +uI_pQVx=R _1.x~߅_^~k_7nku~_x3q]gW>7[ۯ|~K~v%!  H@BF6 Xm8!ײHpc9 .H r6+gV L$9Y]'&cE@F kᅶqrstuvwxI lyu~H{)MyyLYEU'8¶hs<}}fSVu[KNyCJ+6k貿VȌU&۟INWrׯ5Ӡ I ̉-z~AGHyf?\ǼkgGa!Z[䋣 7Av 3%{J׭rLJT:m4k)Q(/@U ;ߓ* lkP헯c7~nogbA#I:s0맺ɊA%[:u@BAb~Gz~Nmg3Cv͆WZyT\gt=@#3g__2 >mK׍[jqө?Q +CW2{BTl |> ]gcftW $@)BO?~S|%흓BŔ)DCc| 5j[^bŊK+³7~w8z}υuģ?ǹØ޼zտ{v?s*(6m8'7{c}ɤPGGs٥aԻq9z? q=F5wo7m/?6?M[wx]lo[yp4|;>,w|^_ί}}ݳ5|ߟ_߿~-?ŰNP@@B! QUT^iTTT yz$#s`\\bT$kቶqrstuvwxyz{+ Q}tmZX<~o…ؠOɹ&"ad WD ;@쒒5F+gQ!8BfZSvs 8Ng[%,O7-' c)x_ ֵ ?kOߟ?s;)n l?FJAKcS?o%kI#xq_SR7s.9o_I+/}}ۢ!prpZ^W;p]\vJz3~$jC?B/ f8eɉWGVO11]B]n2nY'gZcӸ6Hjۘ26~)_Se.<6/w[[tD6[r>,``62tڿ5!X0rRA(@A"b׶اjEWZ,X5s#gj{;Yoc+aXۖyjy,&򯷝yNOϺ-ĎK-C^_lw%d`-ǫƶѺ-@[B[X/g[[-tylabKy~/.fWk[ہaw gz?o=CK,[cWu~??OK}_obߓ~OV@VV'>[jx!!h@ 85$$!̒IHq@$3q-iE sc67a7mp0N8NXNxNNNN (]c^֨ehYf4ks輾}]E4>$9(k(̧cM숷+6S$j-uuCY5=(#YHWw@%0Ht ! 9ݼ7NW#W@ _/ڷw*F${@;3@%BC훳/Ŋ"[!H)O5.U?AFM '  9ABCDx(wZωSG=z;.D'sGՁmjoRfrpTAK~J+lZ`Fi#_>cKϨR\hiU<-Km$($H!F A$ e(2@d9QV-Y%x4?Ԁ|?A }R6v|_I&q(aa!) ?ץe=ߒx@ !!O#켻:1m3AibG ΫY[䲒;,X1m&ۖ-dẔnb=r#ɩu`KPsKp#!dd F-Û͘u[ZMuԙqi50 kwyw9~[B݂e:b?GϦ[ZC&}pvo7՛ik>Z޿GS`og[ͭ?>g_--',Fj1UQF4VIU~m! Ip@!,pratx$rɐ50XE$$~?7o8zޏYO 1ۑ0dagsRUU< !SQV[Dʅjaoʹ{w6nʋt%E0Ç 0<0~I"!$ @-@ A lOH _WDTdbvWA-RPf?lSfiaƦ}Н~UM=QSdԯ|_J?۱kWvN)b^ܚȢE_I=Ʃ6FJ˿·(X'v˽ _AD,뼈4n=}7 d֔tv hˀ CJ_p澇_T\y=JW { K_) %#O]DWK{?Et"g4 ‹HH(>Du+sEY$Y},X{<|kŷvWwǗ.o+v'?:~M/Ybž?>_G}~ߗ|bP ` A ($(PBF-q\bAQ\U H/ܚmB-B-ĖYO`-%)e&ZRܴ.Rۊ ws ݺwvI/,!Ki%O;ǃ`6uɂ Hɓd @fZ,j껫ոbӔc!E&P&t@_A~wr={XTV{("2jWu]L$AE PAA$ 3",LII_Nkou?T#0_sXQIA@ 2n}~K~nmק)9{}w9~S)wt;VgC{QLotG*a#eetD*6NVƃ{~Eo>H9iJ#E)PO+Ǖ+!c ǺB>jTw_(iY|jJ ~a=k738ğٹbtr5\WbO``w\s?v,;zV`){7g;8߷ >;@][|>} O^vQTfYN̠,Ȉl,[-O=Y3m>>Yyo-ghX N硇Yn?t|>y77wX[0"C?S2Nj-/~?oG߿>ߏ-ſ5 B!B"~|?kU}))F /E C& kᅶqrstuvwwf/j y:ȕoI~#w~uҜo"0gjBշ2Ckp? 5P]uJuKϤ2'RFG;ng ëEJyg2Ͳ5 Rb|1ɹ]l S9y,[y=4!#JU7GK) {G>NZy'7xh=|^H7p'ۿA6Z/^ 7Ο{rV=o_ڲeNj%[NAhX Ik}l,o_^XR><-5' y>nbżyƎ?$=aw hO vjKuj<ݾ1jYE#B[F[Srlŋspv+u9:}b{֙%,Xgxts}o|Rž>?K{~=_>%obſXhI$ImmKl-lRwww pwz>^jETU* 7#[6yC3rc;ٴ>)uh*}7v^}mqrstuxyI %!WYXZtf [ev5ÒCmutwe}ϻ[՗y9lO+)667۬h@V' [җVz5T)XHO'A#0JץfR#o|8a1dž+iu}2I;TK,I+NKdA~$HH~$:!/)lGSo5_v~/U|?Շd :zhWםO~k ;v_ŮY]I2~#o=WJW4$Ci'Ot:(%.o9 B|##rH$"]QY\ߝ]>S |?\ "u+,YJ="|rK $H5U$(`B$AF)Q?U~/~gT5z8xOL؅lD_frx܀vp J1R۔ϮH<#&XOfAWi/>' SÆP}- T[44'j$ r$H+`xIv'ߒaV]& 1e#eqX%\v~X_Sc[-?ϧ}_Ͽ~g?|5~E@Fb{aCz8c=9##############[rB˥`Դ4qVK{>#Gٟ”t9]Һ{I*RTejR/96-[&[]'NRort*dJU2"^{TQoco?zx|;y뻉_D"M#Hi"wjv} w&Kr^֏k;7I+_IY9ug)I,aZۤdO^P"sӷ7kyT>\\uaIq7\ytrqw det?˥>wR-w}9u5t=) <1 @u~Nif`D/Epfc?LX3N ;K*3oTcnb(źXoK_8,Zn}f~ iŋc;qgçӡscuK^S-593-9Vy{Gzu峺\]Ykie b̊ܮjGWi ]s9֘%g4 -hZy<ݎգ[ݩ~o'~5oǀ-l|}_w}6?o>徿o흒Ŏj@B@B B%;yo}$liM,[fm n ڂRٍ~ɌݤݍhO<1Y",!Q"WLYtV,9MG>JifFιN/٪"RI'O, Kdu8/Nkk'{bJ׶#}r!Q̍Cza#V W5`ZTa@|쇃,Qu8FL C݃plߧJa'y?l:uW%asF^7_D²cD= d!Xiy(p~؉ߏ+kS{I)J3y)Yu̕2ka}ߌ_NGwӲQ =ͧԮf|P=ikbM g.bcb۔қz*R-Ueܬ6r+E S,Zw|KSJy{7{o+=nDm*^:SE1}'+gIxejexؾ>͖ޑmBŴlKQ-^,cquqg->Wӝ[-[z9_=_?7o_[[>ߟ-~ ~_ݝ AQёKϘQDt|t3EROF.H+vf7V%NK }K4|g)O)YeNt{Q 4cXh􌶼:8$\TqK[leއNFEbK&o6va?qG?O]@2.WDu{3]|vlT\7 3Ԃ >%ˏD@{ $yXv. ADBANz(@!m S@R(l=FpC$Vmr@ͅ{)[+6G` dhRú"֊() D NuiO0-PmRD etB%Dˢ}Nqw.BVVDsB@GW fFx@s9Y '@@H#l%.;{l&cx ͇?UcIUk5_~WG[߶/WmwsT?!,I簤i;'NWe AiWF~RgIp:%$$ AH]1cbź5(t",Xo /ֆ-ŋu,6[%bw9nqVݞoNrOǭ];^Rx<n>+JK`0fv,Ɩ\Dn1mRiyz&vVebc۾-Mcb]/>_7['ߖ{~]~~?x:żbż rޟ{ퟧRgl!BU^TBx)ȿpr-0HJ2~M5};F뜚!d9:d:;d;d>?d?@d@@]ZLԬ,FO7 -W7SVs zU0ere%66(_ usvV?hdQIZDmϡ"MN'SMY, L̰9bI$dB?ۿ}wr<oK܇cs{0-OE$& 4Wsna9Q'C=})\SC[u)3M[hiĄOY_=t*gE== )\T[[ }ۦ1XBQ/Ls<v0} QlTYs31~vcE&nw%G;yDv>kl >؎_Ճfx?/{?/[[~ iJ IqBD7wNK{㝛f7wMwwgݽ;noo2wݞvyݺ=pwuvNG;̡Ɔ&#}bn3#M7u{or7\wRE^dv\vGm)TR5} 7iNFvk" 8b*\epwtfMTm] [hWV48F;v(4QEPmWA-趌Z~OAmʣAvr ((ە}w7n5š~8ܹz8b 4AM7qA[ ͪ )tk{ ]}Y^E]7;\{<>pFDq<- ZST("8Jf pDKBZlMa"& hR CeՐJ\.Q(Qq*F"Z1?0 aHK$(H "MHA.I)0\)qq [KM2%MHYGRD˅?;@xͱ l_cgB&煔״idxmcöN|ϧHMkZb~8Ls{_i:I #^vkWjի(YZcm\\@H[RQYaYOgG.F؉rRSJfVHY"#"BBMBdc#)nQ%j"#b%qD*6.?{}ߟO[N]kߊ㾼x'٨'(ݭ7ģjdmçO.vQ6<̟EwFo*W)=s"b.v_B Ow}>?}fq\Q9Aun<ʸ#IF9>}jO2z.Uն#;v|?= Em?x? }|}Pq>mtHmBXfźHeq$ O1tvZRaG[t-;[=a70>Zaj|J ?oqg8 <$ &S< $@c?ݢϓ6~0Bg`{ʷާ3Wz^뽴.*C6wwMcE{UWd#B*$D )21$VЯ)b/gXc0?iߖy>*?~{-y=y`W_OWnWʫ TO??;:Z9IV|M,/f@H ? Q¯*P"r?7<3go?=reT9i_P {7B(1ůa0=*% LFo DmIBIANH@%X%crZ)%I!I]foWؼI;^?>VOeد¢VO7w)?d:n -YJ^bܸ} u5ioTD,XbʻIfܞYa;>(a=/u kzjZ_G????~E--:$I$I$I$I$II$I$dm^+m-I${roɒ/|8<ܹYDM#&$͕??z#-??iOT#!(@IRu49V_mrn #`Hv{ܫڃMv3STE鿆a mu kkdJ^6:Dfb.NJ/u~Lp AKzw,MGnK`;ǽ2EӻAxj)R1\|?V個 N'ꯧ8Je%B$݊Wy[wzd_/}}(]Z6˟=z`qnzrU'#+*{z󟯷Orٮ>}/ޑPtwdA5=,?g/Ռ9n2X?҇gǬh#)(Bk%[-9,Z`edBjECBбp,CnbZ7bu['_**mdm+@8\‘yKr KfOWrzx|Ź岮2oKikqr04l{WKvd_xl46-ZaZvvu30 {e-~33;};m?m̷l~g~g~O1 ʊ_l\^''1AQr5q*d`T̼ظG&Fnv~ msMgegijlrppĺľtptzЄ6%W_C 9ދƅ[Ǐc}]?{[U`]͡z_},Fĭ% (!($ОBh׌ _Q|T vE f< P7)eAvvvxy.M"b$h ! $!$@>rI pL$籥y\5?oBW@ $T\HI+(P! ;d=ߏ~oۂc5GutCn{ω#iA:EmqwIE9$JinsfædVS[AdYkj[)ϟ-XK_n~+E'ǀ薧м-[ZkZcZCweꏜzYzo?ǣ9ޝ-_-ƺ-A}[[,[_떱[u5~Nח-E~ܿG;3zx4zu=>gy??}~?ݒX@B!B  &{vj|B dfIZj]jqbi~ mY/ZYZZ8c4v6^_9fgAC4w>~).^cX'hn6K:]`{"UCC/jaR69:/.H=A:GCk8;B!| >]ē6 kzyj$cрI:\,HC]\9wm;Ok嵤dsQ$A&\Hh̗fY{w=o1[Q)kC_wݫ?_m*_*y wRI ƭweD.!R^Z_AW(^x~}{dwFM P~t}QȀ0$ c'j8\tvRfZl,^%1lQ+66A$z:|} ~d•&~f0X6͏Sk{tYM63l"ŋ.whKmvR\Sΰ_(Xj]m㴁fj Zw"Tz}7UOy8{]8":\/WZΞvÅG&%;u_++jy,~c[YdXg[#/3ֲ-ܸؖо,XmOћְ-m庻76yY||XbŽl}ݟ-bŋ,sP!2$ Bk毶0jr%9Z&ͣ=5P~V< ?qntJ_Y=kG{n` p#s}uu .Ew4hB@H $52]'ObXKW[o~ n2_G߉^pXchĈu,}=>S|qY:I J@Hctn {J߾z#)|;(!@B DUc??:\'~0vvp< w&Wѻneӻ<,RƟƗ;(@`USTD8:=}K?~>cN- >GV'p>9~+BH2B6Щ*P,Z A?( ƹmD4~"~*|Kl"}~rDGkRfRn L^W @R!PP @?V{PUG>ĪkOSy_ȠPI?IRSb~blX6?RSS4oѹV -[4 ;%װY;laFZg5[5m--mkgg+g;gKgTTTrjKܺeo6umfTSk~ȤYꊦS728&N*%mSGm'zoV'iC2k$ J%"4[Z];$Yuc嬥G??}^"| W<~JMa(N}69E q( )wM\$ L GZ5MI W*~G,@ 9fzcwE7\]? 8A4@<!&+*Q#Bpnl(Wum/I]B 8H@ ۜrڅ[>Zws $H# 0}D6Il+/#gEPp{H 9%*B;\nf'|:iϖ A!GH5 ji@Υ!>BCm'㰜I?16?e}~OVTvd#GFE_%-цlI̲rwZ=mٛ{oO&VoD/SZ4/1ͽhFU6JιXO(JDz|GEAFGGHFH2jk:06FH;F<66DI:DB:ll]Q|=*V4 Nu'&1$6䡗w4]C66$R[$9Dx8L\֮EYi Ζ_Ke˥w @HrH(B7ʕHF:ɜZBϿ(@6RdJ=w唱9o5@ԖX y=El21fɠJکΡ|$m#e˯U')4T4EK*5Je 7$(D0 F7`-=jo0棐PF((AHEQM1}ٙ6EC!Tb&m5 *7uآH1`bIwuy{sNorv.5]hJjĔ B B`EQ`_K߃h%Ԗ~.?թb O*yI$˵%)o[n 3EggDföㆻdIs}˶ÆӘMu۱I$DR"CJ4RRWw3#S @@HHC0GAA8:=J8:7pIG>·LѽL~TZ\bM"ȡۢmj7Sw$. $@t_jLWzZ'ݞ=}RO0s{ծSO@!$% &Wz5N%o,EHѡQu+PN^'>]^$w%`ll,IHHၺNm׳q>X9]oAPi{Q Y"#t^&_/?ui 5|_+I M@%{C_rF]{=_LeတA,UU&p|@^?"}Ѿb2$sʀ~Tїi@^Q v=͓|9:Ûfmnzfx};Ǚq lD:Nɉ1r+̯1i~O"}t_>?ɇru TT CXw3-sF#SD?%>?VUɯh*= qK-Ёr͹eXESI lfNW ;p . h'Hg 4`e|şj~KYH 3A3P6Z\/ *Fh}߇{|͐r?zq-F~<r#@:Xa (R} ' ԅ("uBgKe7Y`׍`yy(O?^c+GG V{@zR~/09_K5ГתW_ #omǑ ךHU}UJOo(5/byAc#,D/ntstLn;,<Ulhrk&g?;iݏkU&bVV0~5xΡ~O{qHd{9y7ý2B!B "Ib?jgy 萔Nx 8mok;g~oЌfŘhI/CmJr?9 G٬Ჰ/*y֥Tyz֒M_Co-T" yBplxR44qf f?m|g>?]/OS38Ju?֮,,#5[[W2Pc#ڤ޹[kgі7HvGFtG@2E@6??<28;FB:EG q AE$ 7#@2$GJ8,R(r[+}|`kB,V-es$YDMv7( 1:r =g`G5Za-*'3=GކG$߼D&:;P~R! pp$y!/"XY sW℞ JĿ\"{C>A&BANE~jyڅe);L:N,d Q>(ڔRh`]:mMF9f?wJ=U$>=׶ ظ==J/#ROK%V}̚m? KJ"NƛOL)۹qT >))!4mƮ\$Oت"^ػS2FgHk)m^fn (,okj'[V!"SlA"bx_*9 M͂)Dsh*o5}kזQ1M<e~P9nռ̡2<u8SM2w7^e~:=5&3}Z;_"%يsyu0Z|U>'œz~ ZzR߭[9TDƖA,G+KGA/E{CEmή*  g)6# tԑ)?;[ST~@@@A=JLG 3$fH=yw]hnU !n@& RpɵE{lΙU# oG`GΧv' |A ^'#ng-2 $P zV92.3oUuL-'fZ#׌w;ײ2<&O/|MahM,v|ҋ_ς}w}8tOR{V &yun~t ??{>qe$m*eA=}YsG{v~|O/uya{2U݆2-zǡGSHO텃~ެ'tyZ`x2>od@`/{{uD콕;"-{۷l0i]Ru*۪'m 7öq1 pgIocܩoڶdmݗc3[&泾hbz=z|_&z_wHB@BH k! #x3Ʌ̣29yh &FMrjo8.. #CCz(D>3[M>rֺhe8QfG->ힳ|}gJzvL +[ZT;!E-ZgmfRS.\ΛP:;AъTҩ[NGgHk*{_x~_t};=m.L"6hwbY./_ZW1z3p#'ʕxT;m&bds_KݝLE~㥺]Hpk, MV2יwZs>2}&bMsYm>?dRs#X~g"Qk]1oNTq_*kґr+qt ew[U5F?I![B\=U x@_ţRGm!sn@BaZP-"OH V@o-йsٲt[Msvw mJ=;.ߟAkj?'>=oz9R&ST].^.K“:]R:.ZKQ-I:e"4߆,&Sel3^=cJJ}GޔJ  Gu22Tl|?mg '(n_CCĖgI'rk ^,t3}}XԂAJAw b{ $Qe121>Fǯށlf.@ 0HB!B h ~= t53F6V$0'3+(P)Ci:\]톚H8/KK}JۣW~(эpљŔO |ԂІԊsI3CkKrfvpJQfW'f>>J* @&% Ii{OQv2j'C1+.GkabmZawwa+4LN[{]Cg U|})!oI:=iuvBGZwROjF6_^*BJA6y_mn3/yWSFb08Rs tzo* ,o_v~ R%@[gE@gHg^{9x{iǶK ШS% ?UoX{C>D%'S$3i=-r/om2CTb MPiɗaIލ欪y)EJX7 Ժ9ѵly\+V%EpGMj_|p2|w gIꧨ62=rf{Jo7Lz( Qw8\?p"A ~v rޗ%3O!;\ ?OlT0qwYY8|7ulNY@Wſœ pQ?XV3wߥVRұxXs;Twz2swc݀w~27"Iz ~_gm;^[nOI` ܯZ}y 7g}yw>222s5D!^ɹh+,i{/&Q28\Y!]ķWb7{FF"rqq3뵱Y~|s{Tok񭡑15@-kEy*D]7Z(:ܧmuw ξt%lIz+Z08c3F#y <I+;,ߐuv ӜlR/!"wwdẒ>eY VeXoZicR~py٩B*B*AZ 7/.g"7N|wP,Ȗn"EA vcE5t/B^ZE/5Rr)2TT]pF#\{|)݃eE;-C`$,^+YGKyOꆒɜ<.-094Pm|3d`}UC 0X$o0y'"_=o?wmQ~0s g3) tnjGcOLWON?γ9iEUU*JUT>k~^C]fl=[?wbOGFƋGr?c_z):  vs% S>F>Y}*ΜDbǤft4mzOJu]8V|Yx+֡hJgSEEHHHjk>>/4@7B>E7BHEGA^Y̼);簥}D{L*GpI֖|vnk/eYWP/r~ mf7 mu3~;(=AwQHX$aOp;>DXİ{gӏ yFߑ@֫z˜j\_um j`uPX@ӊb}7W?xnGQR;1Dݏkq\EڙMYOhνmP_ߴ/~Mp'|5ݥ0vb4Tl P(IB (P BXH DDD7eȷH_n눮$Z[AwM7W?Җ\p/##BYQh[d--,$# +\*HͶ[MƔTrHd$G&BdRP%8~ E_i.j*߿A21,T 47W F*1cDW H!E&($Q^uDRb?w+wWpf}7ۢ)뱓&0I( H&(ݺLgRKJKgSXM>I%$ @, ܴD$AD%l@;? Tez9: .i3 !^y-xWkM{ݰgt9pvQ$I?s~ a ] CC`3B $ú":E]^.@ mJ7C-;W x1|(_WGă$d߱ǢY&I#왋(ˑQ&S8FHH!~֨?[aC1/ޘR=7kg N( $+ ˾qt2?S2Qj:v~8yPl(}={H>EBxΔG 9MH&~@֭(|: j%D ''-O \W2WaCNz(I@^9$g0!Is>pNsd~0+)YA/sJw/coW ȩ$,zےTDo1MdJe;}k?h$E;!c4L߳@I!B!H bSڿhBAH?_*Rȼl%̏ 7a:xe<> dqQarxq ?6~ƶ^zxerzlpx|} GԧM2m]֔m))rHlmTKN+6I$JsJL# *j~v~~vكi HLyiv,.^ck*DIشB/|y'gڞbzBBg H.BQPÿڬeKϸ`PP%oB@F`@ p ( YHx s ~zڵ8  O?Ɔ}x~AE$ H@ Nwu/wd$ !$ _}ۿ@C5?okc~ I>&=9V0I$z>}$ P@H`$ΔIPR-1&)ZL{$p^y 잒}^BY:EtbCI0(~>7_v$bH1^5:~]CICZ@X)tުm[Km-mm?Lw㻻ybHUy_-k*01_{gYA& 3[M "󿃯u?>:} =68;==7?E$ͧMsV⎋967x:64};`W^}׻c_w JO%5pxs֓NQc84V֯3: n}rITN7$wW3B,0Æ¢ӻwfTRmqv ltD^фΟ3})Ax{flE>%>hns"4x8 -%.|BvڎcZ0^埸gs#,eջd-R&%;.$[Vj_$$J; ^uM+,c5"U\w1Ww]}IW4╻ @&-k1b? ?&[gJͯ94]bukawGo_/m[L{&mU"9kM^O9@/%|>M]YBb,u͈dCoaG?~<4:xNbRNZ!X+`lLyj0vx`z`9xup1p{hd|,q: gѕNEGX[=KY!  !Bz -@nF;1Bwcb9a ܕ  Ixgކ!{zcYMwɴgn12^NYjl6C'ꌭ\d_V7Z:Ee42M.)A6eY)9Ecʓ4:-jѲךJ S˓8AO&Q ~F,ڪjLg5=ps}y|.ݭT,#_NG߱'v# K(tY!7S!0H'aoe~(L6[q7v)@mRu(FTJn'_cgd|y Q0=_iy^Pl{IK_dP-q+ "-פAzQ+-Z.|N96B5$2 3;׬I%L{O|k~Ζ`3BB @)v0v;PlO.wNJ?)6c/oݼ*=R()UL{'-Q>R*P_,Dlߪ):<~hU4}We{Viz/bLRDsQѻ԰Vcq{јzȜַ1?M \MWmZ]Ze>xyX ֵϫ;dh)C;X[|jHŎ6Fdt"$*6ϥ2ǮS)j G'' 'HhG69_XPN˫Z77O FoiV v -ϱ?6Ko](@ B{7Bs}> JRw"ϗ/#FnP4I#W"=6R#zO[ɱpn#~@xQO-(>?82fH$d/0x}*DHc"ѡ [=:ⲝ!#;*YGE}?4pZY^/ /hǴ|P=֨'"Ǐ nj M(1ڏA 3D֖ c[z'uR=c0`8,a\v`Iff0e w]HJ7t`,ѝev~S7ɯZ-?[[iI/׃ֆI-5$Z>?y)~6U[㑶p9k8kHHߪB.'H^-dOIJi}~;VroӞϷI$&E2JԮkvND0tU]pw]~Gdc̭q|=C*P?Oi 7LZfކL(@!V^O{K/|/yp.`̟!CCd OC+$~[FZcmWCO堛#xBT V~ߑ\8fg|q0XΕއ4RMoѳ?sIיeOåE?o_ٍ{h)'vA$ /Hp_?[￞~΁;;tw37;xnM'wpiwvvnwqM|ٻq{{;/n潾gywwwwvwkᨋ]Innwwvn7uN7w=b{t4ӻԥ4" .=7}31[o>nov 77JvkW  t_$kry\W/_,9eZ FlX( MD.i%$Fɔv]43YIQ+݂h]"P 1!eRD@ŤĠ(, "#Z$HBrkX,تZ*Uovmq\/"C'{72cfG=Mܲ:-^W+[cPQ6;I'VsP枙0;Qf:$|=رýF״66l.76;7III2fU\UQ|ݔ>c+~?cn ϢloͫL&hK_ڋSkZ]ӻuXأ5;53f{v#X6apQ7tHBIuJ{'}:Z-vm_m,rdkkkh 6`a]ܪ|/|~2^>7-=~k^3 Z-f'[vѫSV^ ,[nߖZCֵ{+n|W}Sz=swwf [MsSYu)Uj. aiV^`eq{RBT줴Qm}-YVm}ϥ` rZIQdA ,_dhb E+(dyyNyRtXz]+'χq{{@lrx#}Cb}Qɩԁ{q B2#z7[k9 2J'CUztt[lDr5iaBJJkS#E!kR;#d|eA ..*U? ͉={ "/Et1;߄qw{}tσ֡~ `$xs"y?˪z1Ѽ]6r27H( _#ɉ]]ϔw^/?Nj!MtrzPBAȮnj = >v3Jzz¤R0v>sMx\l$O$ " ::\os'Wg%<*X??4,=h)$&p 1^ ūO/ktlw0]{*Cw{=?$UUUUUU%Km[m-[{7~I+~w:΅$)%TQS~ZZkZO剱Nџ?/}7 XfLUwM$ 0.|vP:4iFէL׽EY4ZkْIǻ3ww̪W>c{s^:Pݸt1W6ϟ>Fx,FKZ.Q^lk%<_w!'J"' !5F\DIӤROb p0Ddl mw\{+Qa[;"$   ?;9ɯeB3"7ȣPӷȈ  "t(<3ϐsZӳs#+ֳF㣶Sg TcٽtTthu9Qm)kg=u%LZ֧:kkP0xtNq!dT߆pxSQ_RRA%O R ITɫV Pu`,OOWqW뿇g_iX}?]򙫃ξgiUCJi>f~WQoo`&&M굧<>:'oMz|^}L"p}?W|\*_QY>{և8o%K7%B&W\G%'>]zD@ }rM;tv4wHOV̼=r# &'{6L^k٩if$bˈa Dh&A:,韗\?KoaG9|1~}?;~_q рp޿O⑙=0#  F@T4왖zXffECqNjSgq~v?a~RQV0r,9^輪5BTTΜ jH|T9+S8D] 3;@/ȉQhjs'X%]ˑ뤞}k>)CUUji+_a%}eڬCGw0=?;K ?/~h@jUH}ɉڍN27(D~P`@ qtQxAz֋uJ) La;Wٯ?zp$wpMnԴ`9VORi|yc' ̯*#IRss1L@ Xo0kFGI $! `|?~b:ÇGG3">3qu6`D  MH a #&h?O^h4UOA_Ѡ+V)}UΒH !`$" -Ae'sކ UV***ŏ*Ha,Ԃb'$~H|Ģ|I@AJ  W(?QLTgk^1z(\+]BtNC;W>.xWsyupNHPC/mL6/}gȣKXޫ(`$gJHߜ{/Zv)ە96,g2RGR͔:*jdhlt} (IeYf_~k_B p?! Tt{y'L 2|]<:02/˶IE˅_٢ERT^uqb!A! l\NW'1t85Pxet1ΪN)qq{AL< {|ω0ϳ8Sj|'6{s9M z8}'CMogfs "8OBOcx-x;v#oHD&?:Y@lj)W۟!}[sƱy~X_$>/9b%xi>9"|1~}Y?]%n| ! #BXcX$`DItEAH"Sn҉PBu[>xRf |Oa~r^ >KF;39 mR`B@$$ $u_L`J$G>M@Cp(d.̛}% ܀T1yL~w ߚO}S{WQk?RE=gE/OI*GP33ogDӅS͢C 2T$ gIF)@og$EEAfuv|Sܤ׼I/?7iB?_{dޞ]%u~\ %Y%@f;w?WOD!t(=^B._&뻁_RRy= ?\&ՃJ4 Ex'odDY'YAZXMՁ9H;Qr0ժa!00g[akhǁѕцw8X|Y.fKA@0@.*AlHvf 'w#9ޗ.,Fspٌ{C¿WDʔEz !gsDX֜0 ڮudE^ ~ɼ휚Ɉk*hnJmՇlY=n>L{>_+~'oOoirWÚlzvXIoj5;KF,xu ڈM'Rv/fR+ hB:^F'mA2`8JwX!=ASfoΛ|_/ A9 x} }.GPKL4vyw~~.{eC2*9*yl[|._v }n_??7ѿ]b5/@=#3`df jҷ"nL=Kzox } TOB mFa!B,jm_md0='bI 7¬2B`@ϟ5w+z Rdba@K͌@PR%J%h& "%}w;h.s筫A=ZS?mۏ#6-ci$|S_Ѩˣjh$8VȲ)R%l&WTiL]\Щ-/) d-$~"b.d.gک<a,F*wG."ط@T6y}WJuI&VNQR/\+~=&/>3DU1mWKtNk0Oxݹ\AaV`f{q[n-+W3?a{{*:?wWO̎Kknt{M۬_^ӿeu?VhZ#s%hk5 !(P (PPBVA T5%.+Yimm_IY?٪AQƔR8з) PfR0B K_?z$-(#;::rcܨ}?<]!/݌bȰXbQ'arN2}H=z @6" Wmbk4 |L;o ٻ4a$x3=ch~_N$urK@\Aߖ7#`-UHI;RZlT筥JjF=I_~'m>#`) ?v_ߨ\07wsC?͐0 ׅQmb뗂" `, #}pz\XQrzO/7YjbP a 0J@ ~?O'îzEA )\Ҋj>PH}t_6*U_a-:k`0΀? 5ЋK{9cx N1tT2E^oQaZO҅kVYCtWIy5ڙ4?QοK~QJbwy?~S?Umm$-wpwwwwww\CjE ,^w$+T-#Eu'~ 7i~`>XFqF~_/>O r!"HH)&/\u 뗘yXξ:wwj %$SZᶫׯ8UT#)$h5E|-KPI3iܶx^m;;(i.lXtn.}֏ge%-)JS_X/s~Y<􂌂`flpzmzLy_2yIM#?@$a'vf~rΈ@osCA+08U іA:)q ~ٶZf0@ @p@j\9$HG>Ýp"_}QeQiϸ&̻nxuy\/Oʟc>o\ ף3Jf4Qmj6nXF -B3$QZ/;E/~pwS<m P>B7υ$1;䜌Mu*t`U)J_2ohrR_-/]b%e_G# 31EOEk2(ɿ#:(WK$QE ?]!Ņ">FDW9 $y&%R Zoizkր-0Bwlwuw=Ľ{ wq;4ݝ6vwgiN;;ni;vo;w{sw{98닺M\TwyG7u tA*fu Glyqi&nnnnₙ; VV;nnn4t##;Oz5TPUGU!m$)h\ FšQAEpcF6*h[d*(*R4cĈlj8,Pm *4jܮ(6E$VAirq ***cB-h\₣cEP\PU- ,H雲jԨ~_z74ex,q*+%EA(+` Z)JQPKr- Z1** l)rKAKI \-H"K(24b8)nR Z)lK)hR"RJREV)hRHJ**Uclϵco|/ [p<>-y}}KF?>?6_^;[;pm\8 Jmӵ'K~x.kRnǽ헆 zO-o!HWeD2۷na ZHR)oږDKa)qq,4"P-$ b&P!Jq0P$Q.0aj,DqKj" mD59ˆZ-fQn>{8[ssϼ{~(sHb+hy]l>s?1?T[L<MAd}wY}?8@h U(Cz!H&~ ՜`/nU&=3~NP j~iXq~ԙ}3K$ "PBPLlz|<|N27ĪZ}I>ߣn-2N٦gMg㙨4 (uǽuYMh-QRIB$Z"rR PSU[9-eo//UUm -8߭)QE;yV:ߖK_֪[|{|zO-?y)os?ɿW}_?mmm-mmmmO[$H7C `6#~gIכ{CbWOkVh`N:E;*hZbK@۞(Bm9$=w. @5]#Xsg?#,ri V*kZ))*_wӫoxO5.U_~-^/[sٽ}⿅zXUhZ{:6O??W%o] eY!qi}SzSY^^.S׳'+pZZHAu-S %@2E 㐲t#3eCw +=.nᷪ-FA^Cy];-*5 4eht:sgͺh| C -𹬫^Ca'=}}bKd$6{=,ᅭ`c65_Ihv iңZ40F*5c:q,-MVYmj4Xj4͚aMbj՟6\oƼJsS}l-+itӆ r㍬k |nxho4Xɋj&{n>`ϏOMWwZ]ɮ7RM Z-wu6-wwdwio}Oԉ5nHa|ؐr]!6g:iϣr[N^Fl2v&:peg3^wfr6-8s,͆%2yalՎ683{>7~e=qcXub76mѾtΞ<>4se*5*Z)}gg[wlhop[t[ ro{. l]Lu|ZeT9dHg@̚ 6&(])2&z־[єĩBfwV|:ufzN;vzz6nWfM!,f.,lٱS~`c>mK=cMihkM+1&ZңUUTE-UUPRT-RM"u\NwT&oWP;xl,d/̫gy6}rv禛lAmm:|.;55ȑ%Yj4u 'JKZzպmb8Ն7BP!=Z]_b 1c^'A < * ڍW_ymϏ}[ wY]KwUwww|:t=?Ww0ló=." f+h}XC l aol{9W.7<W46n{3Ӵ?#tI4O3ԹWA( K:FAIuLȑפ雔;`uq@@(~6` Վ+8O! t:ɷcM5MUTA@4ܣ-,2/ P!2+o%WkbܗzczG-P:-ƬU|oD3#fZ˫aHZH̲| I lf0.XBȶRIMwCb dK?q'/o-r--X PPTrґkEDhK"ZR-颬*#ln4iFKJ6Kйh[I-jI $&*%_t6Bk\Dsm izB>{.r +exߪv,_gx"&A1E|{r@|<:qW+%-S4a"[_QZmu#2E)1ABc~wb(tARov(}DQ &)2dc$"ƱDch64P@!!@@P@Ak.O]2˚ xeIfo0^p>{C[F}Je{Bu7βwS5(J۝.tL0(ʝ`{Эc" yt耆GH$jW/ör`("@!$t$H ή1$""M[?gjq7+_ϓ$@Vl%71zsȁ<28OݟVB_RpXgu09LzL+[%H1YAl`/e-ٹ5jZs۽N~x)ӫGGDJ̳uoO |4zkP'eTzĨW*Nu[,^dY̨rO<5^$X q+ׇn_шB!B -lmmdo40@|;E{0Pl+>v?O9t;syrwF+ʮG/,8+ABDUBqpӧ;6s+pf~Ms4ҰH$x]vi">mӎ=۞E5[՝Jrn┹%e8u'wKߑȄ'mlk8\-c'>]?UUP0f os'6lJM_bekhS B] KX^;O7nM6ʐ2owϼӤ͒vdܛU֢nl1\-xYlgCYcҫkkTVYa{r}a $IΨjOC(eԳ=d`ǥB"OٹvtFQZ4A%]}z՝8h~? 1Q6D͊'<=QF.n1nv;x7{,3)e?3LPoE\kw/F}A{tYczc:_k%Ȣ-"6i6,cCʨL@:GjsӦA{?QPF\F^z[bl!(µ ä߮_JS>ЀDF?GS Tltzky~HQHy,-$43TTV3V$Ibl $ ؐ&VC:]Ł@S,g>ms4۞x&hk.S/ bi^P_Ur|Vs;Y.6FCsJ?+ц ֩Vj4UrNYI1~F?ߏ?G?o$l kmb6_]V[m5Ej*6jmb)DD!V$"w0L]^Nʥ (C<,K9id$Ь$A1b@.ƂNWKbtƎHPB"Ўζ6u;n듬{{Vmۃ[b+:gF0nV+cKm;R4|9+PZYJu+[/l7bsOwa?~c8c880iƷ}W=42!Ҥ`Ld Br;^? ! @XZm+eOKY;.qhޜH֍h&h0k= MP"erI'`4ZX_]~Yά!}R EjVЁNZ.NW~gJG~ݾϮSv'wvpwwq7w7wgv{a37ۻq/w&wwq;q^û<3st:2⣊"鰛*;ywxݏh7z;r&~_SЪ?Ξ0olķ Zeh¤ET+E*ŷo/}nD ֻ-6fMI ٗ|>ߔ_?g4g*RS7҆4xJט)χad* XBTPQA8qTag,v+r7-Pm [I-.UAVAqE$\˕ ''㡦nhЦ;4T6hХ[Eĥ(HQDKE(%.R(%l57M4R눨")rI P_ۥKJD޺LMI)Ren1rĘAMF٦Уr)i F*AGdSi-#p@a ͚:[MΗXl,8LQ7G#6zߝ%J[`Ƽp6p^u|w/|h tB Mk=G[ -Zns}rSy_xqÏ00lG?#" #M"& J1qJ[!IrRV,"ȉFHQT•b8"̈˄"#f"")AdhE`""ZŋUz5= H_Wj,nC@$ !hHg.JL xء bĽ!h!Dry6lr\<m{mHk ;w^āh/ m,F_^@ѵ$6Q#*s) 2@3z#(Y`n]]oUyo$jǕ]5'tM[wuL6,wWz9ʬjR֪%ir$KюX@aK62B"x-3XQ+Xk{|1 01 0qIṑ1&ʣ) |*TV R@p?ׅ|cD~*)Hzhu,9:9I]g {rܸP<*t.Q!XvC~oW ܽ ԥXpBq{d=N+`N;CAak7÷ƕU~0_sn`K4[j ބՌyKĒov)a20 0 -l,q,eYe5D0ВeCv?I-TRČFv"^{<߇cՓ_GNsg>%6Ԡk-`mQ%&2%hc.+Ӯo/[̂4SV"^ov67xtt *Uua}N@t`¼P$$(v<<6)˦Z 1t.dj4zE SH)['i'!@RM!Lk~|Ml2qq 8 X |VY[N^ֻFtBd X٣bƍ{jDMH#]CIu]׸ݧ._;0dwg{x+f}yV]cT>*<GJbB[2)T_0@ _YES>8,XxyGsjDY77;W(")>[j6)"z}@ D٬8Éy6|+nȋԎשYV5/+0ԛy WeYV*7q'tF#yw^?_ ?x@EU!@ nx3j`T}}#C>n\BIu_htP_42j+|S&%\Ū٪2C,$zD;9> j*ɀMN~욎" fᨰ!z$BI4 t'ڌ?c3fq8b  RQ6 7 ]$3$!)’mI4ONN8qMfa%I j>$' Ie E`T1(X y q81 #M*>tmL!lN :?>AR_I7l_b˱8p?/y}M6m3gvd-@!AnUu5_a Hۯ;YV9ji#jJ^YKllѤU+)|+ 0g){|0a>.boU}4RPCCs,m"J+:(h{3GT?B# &hyG+H*u/s+䭟3Z{zB5@ fig#a١! [~廒lF#8D7-rI g=\$ @TQBuC8g6wGILݍrB27Bi U(libFI GX7@7k K[{VVչJk46RKgwnVBuPlEw=!RAsZ{s{7JfRSɷϫLw z<=1}3k*,ێKZĘAnam-@ kX3$UWlZ|)=U&B4X"橿6d&eb5Qzy&@ 7#BƝr~&O&ߚØe!)wu TUN%@GN9֠&KT_KBB% |}MꖚJA^vp{| $2.uPRv0I3I)zJvCxU-ԚQdXs@;5,#I!gI >KvWTO@BDpL-EUJ%H Ŷ6~<1Na 뢃 a-M4 "/{{i ɒrfdHI%deY5)3[ Rn.?^h`OC#WҬM6.zqLffv#a-hfV#\MbTuAXUZ ƍrL381L%$mʨ9[YXjh&aYRQ!)&8&Z0&!$HܽE7 fa43H(KL'@zfC 9 c XrMi>6^WE'upI4[cKmͷV5bh6݉_;uk~=.U c Cr)462"l;z3]ZhQQg{ j$ <Ƃ `!3oqgW![dWJu:!A7fpq90ϖ7a8 &(BY%mU Iy_}Qv4oMylpk8J]gX@n߳vqeٻC+Lw)e䱎mga,d i"Lɐ\28loF77ai6A1Ro:G_[o6eBd֚mQSm)6BBP6oȓ|cqHyEH2owAgbdDg~v<ޗ>wǵ0"߿"s2U^8U:~?oڂ(\܎Y=Cʞs0kC>~eR9ٵd3$*|M3-Z!f#)T-p웭OdLx&DWY5Ț/ {f Ёl!B j +u> |$;>D{o<N 0z3|r?I6k4w/3313@Zb.\`j~wp0ٚ I[9) # jaZ`LŽϿF}~\~Pw@|yt=`t9Hw+,bJd[s㦆$_7BiYJR4^q-W{QX_7_c[FT{"@!3f&U!AIUH&I/< uO"ab@e I<@q"MTM49vH> 77|FBe!`ǎ@@ m! َ껳_*N㻭z;t*\=|($8= .5,rލWfKksVlfD5"! #"7d v;C($(^]$((aS!aVQa\fr3V Xf 0aQ0IXfF͔aQQaG%f 0(0\ B3r-)raK%)de)3R)ral)r)@q@P1HVJRйR)J\hP[ch(P2J[ @de@˔k s0^8v\vSmw]N_C͵^vݻmwn^-˙rd%0]k;mu۶]m)m^mk6 %BjHQEISm)m) MI RA!T$>wQ30X1gj!ZRT!&AAZHTd!P0bgәsI TJ2CI  FEnN!TT$4 &A!km3m)]kn]m]]mwWm]uv]۶uv]v.f?F`s0.f!AA*AP>&VqRJ\mJǭ...]/$7©!T$*-$,Zsm$-iYP3 Bah\>s0N]nNvds0.f\- n]kmu۶qv]m]kݙs030 (`[]iii\m8vnvnvsvnvi;my7i]vݻmumvviӗmm7vuy- mȶ^sj/ G+Ç +¾>^}lڿ)~Y/vÇ =nj:Y-_$u;T۶8p|0O}ry\O qy|O+W(*H0d r//6Wv.]kmwn]vkg[]\uG[]kmu]7[]PaJIL”)+-L[]k.kNk]mwEim.ne IDS9}/q7;O=/?#%SA%~b+|_؋_2gf+ϼl*>_vjc?{ EV@ X4g+_6à>sd)6MQ$[tk{" 3) J:=$! .O s0'IOמ̐  4kђorzz}|xlWN\a4j 8 c&1搎o"ՙg辈 !8Ĕ%*BuE%\6Bp U*Y!6#$qDo3<mf1 |B3XN)yݛ'I}塰N$Dt'! &14LZ%@6 Ng|ogtww>'CsR~=Tfڶ:% tėVwwK1` %<4 G%謓I1_WlP>ݾ_#La쒭jf#D_3Qh28E'Y˯u;xu!60' YjUCTEϑO qX), ajo52-7*k8\Tߔ9PM?'[mmKdmm2㻎?k݌??I/{_{[V\:.KpJtX!fOnS 7+tu7Nir^gw]yS76 #WPr%5U:귻oq _DUݚ *Jޗ!z!4M3-WaY]Ro+#gߍ\c}[XW}~KTªEUU~m*ߛ7߶eRN1¨xgb =Ia%HP1 61T/ƫ 0VLJMm|<=RK9&$*#+K,KUꂼǖzҽ1hՖ;=5kqeYQ`# ,J [)"/!}J.XM?In?s7gSZv68a,:^uiv-3xI+c 30*ə0.d3֥U)V~ %UUVkNDZ vN`A80m)!=%N>Y1PI S c LqI$߬!sh>.#)͓.VgZ̷W<9}>WE+".)e'$Dho:1&oQz5*f4%c򍞲(E`N$ҬhYuX4O#[p f L CՉm+IUPP'N'Th7Z(r^7j 7KZz򷰐@ vv;/3\Z t+xpotݛym6S:t ޖt\.L:MyefVʽ4vt*7StONv>h꛱'ztWw웎24C#T3UN|&kVn|b2$Uz@8NA#ZFȒձaaBʻBG~Ku ~Оb&tMQy#ccehA N=Ew7 o<`v3hQHR{Ak_2Hw]R#舆U7yDqksJC#'n|} dkC SXP@AA3!`l>KosdBH( q#o.۶Q{Ujd\ , \ eQwJͱ߻i,y=&2鎃) 4 N3ʇ06gWY1C<$&.5^ZAd"2#$a{Z٫!Q0%TB6-P # 2bs8\/ (_ uv~]bn6_9;]؞e7|ޞO?T03"YG(j.ٚrZQ+K)), v9̄eI48@TSղ)>F#Zc\$ g_N| -}hpr~n/vLQ~ f7O~ϺO#&-D0NIᶔɀd-Jy"O ^b&P BHK12'o'`"0"&= .Nġ)gۻ:wSsRX]"-0Ʊ rXYI l ck3& t2'{TC$H8٭ $a"OCko{{`f*+Ő  /{^0&%P(ϘM&4!1'9C4CM %ݫBQ=x 8b|hߗL8J)`9I$@@j`CzP"$M䆈NO|.ಊ2 _| X) QMWw|I87u|xPG}~:46Rɛ4/I%m/53V!h:.g]nڕ#f*,fJoMEcw_m_?8q_îx;| P{,aasٻnݑWznsxj;;u?E׼ܛ;AG8;T{ݷ* \\;uwxw5uNzWG^3_~zm tqu=ۼnv]0COOMؼSM7Ð}pd3g8g}M/5y٦hUAKŖCBf^HO7JiwI}wa{J$Pn^aބ&'Pj|7_~vϚrnĚo&BUf li 2ќ3&%mkK[Va푶yl LhSFEU[AE.[d+R)B̓%+Ъ8B*-r)(6X8* EI*B]o?nrk۞?i^_/0 ks/Ƚ|._sJ=}Ǹߚ4)MiGPIaG D۔ڗТ.%0ikhRJ* lEU(EEKX$6Q̧"%”,)3&"PāJ͚iqe&0q"""ȥD1YBKvlAB$E]_[8:|H+o{R'~g. |9~dJo:xw.8XdgdJؐ/68t[ ?-Q(,\" h JQ-%JE4i%)JK Cpj"ȍ#)JEIYeEnb5","8 9BY]i#Mۦ`YP10 c!sov,V[Wu (RR!41M輆 &>$̸2;zUUSW**Jb齷gǝSф==u15ԃ/hG˹_ qq skZ{wV, IJ(Ub.9>^,Oag8폏ިlTcUo_#߆EHqڦ~JJ2d&FS":"% ם]cM&ʾMJo(-ʯs&~ox)N,p}&Bv9tcccnSPL?5&{l)\?rJ*Sb|O(H?gkz{咽(TZe(ZHgmomwwwwݸ? |/J黺 :tAQ%&uvkZId|kז󶮐<(aDd!d_0C/Đ?d@I2΄ a $v?M@\Ć?y2>v}͓@ҩB{nb[roocnJ5j5c0̉69ɜƝeǓl3|8m72ͽ$7l$ !\ᾘ--~&tMov A$TN@ ps6H ilsuDEF`tV')A>lIk=$QC88|+ ~=>-ۣۭGC,+43PԒft+/i5tdқ.n|+ZaזʻRDLZ>+Z"o5~]'CǍN:/+o2VZE|vrr3Ŋ-E@ -܃BbX,/.ŅD dYHbRMQLܹfE&~lCg-Uhm-AS[6g_"1\:3H@Jer]w0n~LJ`6Kvyᙘpa}|3׼=}c/.58k ^j.ry:v˃a͘!&rLS9᧎d2C=&%!krB&. 38$ !VؠB@^ ۘp1EcEUf-MUDƖ$ c *Lfkv^7u`r2AU ( +FG$lC2j6o#.Vg-*{(LJ]IInF!\2-*,YYDJ3!\HV{@ a$B#P#A 2BؐCdIdД! _KMaS$:S"&Ɗ6VBbLօB5h2Dh!hk=J~ KSBS<0 yzI/02Dh; Su.^t{/ BU Kf"VGyw}R(o@3 CT esI2_po,M`(`|C0ˆet>X8wߥIoL1˸z|>ղ=y4/Vs'EL@F<SddD")^ύ)uU=a]Qͨ9Xԕ,H/ =k.M3Lzyx9:M~ǀ2 u_ĐƘOi< W*qDNn+n]x~I/y'|ɉywױm=koЕeQ 3 r^0ֽ(R,’Ssu9FIV%"⒪Twc%wlҙȿ~g?o_s-JP %"س5Ff`,ʀ Y-J[kElh0mo6lEENK:ֻ1J$u$bУI= BID&';`֑PB_ov'BIݢV*e_c@r06ȕLvNi];<'Oʅůu﶑[KcJ)Opf6Ra!^+EE':pJIƨ'+5^wmvzyWҝ/~S_ rH_c!hKVӟN~'x?me]]%UTQOO\^3'Lf;(CbTS" UzC`}/{y<[sGO=_){ׁI:^nv"f`De rnts$T+|ʯw=>_5M<zi?a&MV+}Wsˮ{X S- ;k>:Q,v*/ŅG ѰoSO> ʳGƍx :ukUC=,g1>>5_F?ٝ{9~?}C/<hšr* j- k e4`G"OwsKJ*&Dij-G/#.Iܓ$ l$nZW5FҊ ~v=BMfWi! 0 ~'tǕw*X2z/qjHז_QK,ےUKʥFUTsՔb'h!}TuY]`4bXt{dHNK)IX1 RZ M{wwTbF,Pb((,UA }7|ύu _W뢽wWw`"MѢ1A]A&"M]݋ۅ(d@!!gotVߋ&K: vh]Uy;y>X7zs˫uʴC%[ᅫo OolJ{|) ہ] ļwt߷mxp1xciRF!%04nr&wnHEbUlfyvx}U).q֎6R*ݐA-_}Oowfktm=nuVh!'[rkp`<rnf D"Ds@ ;Hnm8rϡl˞K)}l;8usW~r%V7+SAeZU$IyheI#C AdMi< w?.gY/w7?F8pLUvOWnOg婬6!$I$MmmmrmKmめ@(UY <>ZKߍuX$E_o.=r[ݽNo_iJgXj>[T]0Kiܕڮ˫V=kNsӍsն ܥ2֕[q x)>ԺE8aö8p$W5͚|l0y>TC&~-0Sm}OG=9^]D;v<;ߟ.QՑ(TK!>^"g:"Gwƶi-h<'4TU=.[:;zw9N0m@Uw#D \ *nxltT >{Z7^RWI^^]ի}=uʭ82nA.!ybctn4)ID:*֊K^:uYAЭU,͌GbqQc%ΩU3UZ>.z#3gwZ9jb*o،oo0wySXz<<<<<<<<<<<<<<<<<<<<+kyx/OGqi68AwÍ^OY @<*G'o}D""˿=r+Oƺ^W}=?2j1N]'|}~(W%֠qMYQ248K|E^Xܺ^ZeC$URHYRرo_k쭗]~s/8}ŹC/UUUU0@ XUE~> r{s1G䤗WW?z~o{t{0gku^4̩5zTS֕>>>>>>>>>>>>>>>>6|||||||||i{ӗx}MK&JluDG,Q,]s//UUUUUEUUUUUUl[mm[mmжRGplwݞyUUJN_#̘"C3'D^Ug1(H<xxxxxJ B /W%g6%6WvGƇ|W":Y+rnb]Nqʢ]S|!L2ҕ7ܯN}:Fd%nȖw] 0Y@IiVgn?wtW\L3?+mojp"F[}5eb PBVAOai 0 UTLSM4~_~_~_~_ٳw_'+FMRtZ3U%h*֑YHd5Yv\ѺYW}sW_?A;ԀIaB _@( < !-tHNU2e=2&5,W T$0o noWO~N;;=\^ާċ+̳;r O8n=8aEBs9^ZUx c2+Br]LѳT+k6UU_o}?{ ` "*2M [nc׷;z0Ǩ.$C*>Jr:D2  B7777777774g777777477777??V7*]ۼysr>~_/ΧCayo4,_JʤFکYKi\.g9)M`M'R*-|:km I&;;87;ݞFv 1en Oܿ`^BUV(*+ANqwmkYoN ;ݣ*wttΣ>:;0R^^^^^P^^^^^^^^^^^Q^^^^^^^^^}\:?w˧=t3$ϭfvU9ԑr [ZZ#FvZwPI̥ZZ6tKRhN( ʊF63*::BPQ LN\bb [)wǢB~0{} `#09 9>3Mվc?Rdlx ==~o=>Gi/K|ϓ>oDZ>JNpR.W鬅-oec|q2nt>Ҍi.fgΝȶG-HB#+oFk}}Oo"$ZAƹ[Yr X-qQG.0[,̿wt"7n1khv TIirܥAVB"*-Z\2Z\XKhZ\hBI >xDwp˷wS.l.i$"$22fI6CQINAr HB, "ZvE)7a)C|ԐTQEPb(gkľ/sӑϓTM6I@1wb LBD$!AP ;{{{{{{{{{{{{{{{{{{eubJ(_x* Ah_?oߗv}u˟ f!$XkV~ ':^oq|T߳TvnS睗 J̧ }gMS~ˆrQt%~4u>~OrP9BR1EUVQR1)! f4HBN!$Ԋ o0y;gS}X[_cK_-UT /ϋ`bDqB2 .+0l^˫C~Ld#b~~~~~~~~~Y~~~~~~~?~R~~~d~~~~~~~~I 3_}^k>'wUK R4㕫;Zw₈i/=2*Tib^Mʊe%3QHFjU>kR*ZJ-NM)$&E oz']-w{0094:Q:+mN0`l`V7LH~2;D"*~|v??~mmmmmm m-]$BW~~%y[o<};f^=/7!(Wj, //|_<_x/^7t@@@ {:BB"9ar"HnQ7}'֒+!$&vkYc P Q/{VҌr^T[~|! Jualq 00"'{}~CtcFٶ:UUUTEUU8B)"6lp{^~G/sqP o^J# ]"&'hb  }[r0#k(J: 'Ν E=뒭iٴ,ٺKZʧtΛ;VifsRK)B}vvd{9"ܭi).ʕ{OuV [VP@ <(]$o=n~UYjڹz<}}*@-2"4+}{ׁ(mBdYv秃9ֹNSօSUE|IK#TRF6'Z#g ;/(dsϬ(olNxjfz63)@J>P8B!@_7UyU-]k7 \kƨ(IvIF?'^^T֞LטWV]7~=[ԏ>\™5pG{+"NE3EfRk:)TDi9Y7)a[ZV+Y ֋fvTz]i)Uk_A0NDdc m.c\ZMMv˭]ˠd$D<?ߡ"l4 05123Tto.cG(trbfD$$$$$$$$$$"L"L$$" $$$#,$$$$$$#"Lʌ "۳O{^ώ&=j<@NVykESIE!_צ̎ЩYniRDEDGְRօGJRUuDgItS#*zih$# $!3SotH4šxXeA.OWtJ䌹C}$x+.3;.)_bg?RPn|x ib?jRV~_imm~͉_֎kn,􁀥BD)@Bwvwww~y玓w3wdt٤qۻo;8;7ݝyvwv7<8Wt:NMn㫋w7wM7.=F-<;wG\].Ɔy yn -]ޝٔ5Wfl2?O<OGn땘;MT;wMVFXUATW[#.Z\)TqLQrh_vjk" m MEm ;ԑQB G|3EPm-.WB#n_wCUREH ܾۦ QdUi飳wGmkW7v[*FٵPjbh[J(ۖd*"₩#~$᡺pD|ϑ~{=?ݟ"+}iQW_#2.ݑ~pc|<tlv |SݼomO Cπ~xxhASQPP}~>?57aEﭵRS ˀ.1|g6 .~U곗78<}8k^o_fv}J0&C\3گݾ,m|3lOKƾo>:./(@--`$j&6ܥkkfɞ.$>Eu eQ?߅ͷ~/6Zf7\~?G;&jV(Ja pҴ %dNMHQsҎHӔʔd64ɽIP NM Q)+$tvpppppq, R|0)&# @" @qi{~߷5U'wO~կض147 X,,v$lIM8#DK.'Si1p6 Xy@-!h @ j_p^O{vLx[jV;c[~3d pЮWpW\גE+\IR})e 8Wr a}t]']{Ȅ(>@K9.*t@K n `Flß-X*P|Ed3~?7ׯ ^//0AzEJ~2[>`\ˣcF^O0IVܱD2!"%&  -l M[Hm&<`{~74]m GPP?{nK`}?m ` h[[ lJG,XnwP^MsZ͠Zmh /3cY21OF *Ƴ7?{?mm-նmLmmmBI$?8!/yJRҠPѵEQ(JiJaKKK)KKKKJKK7KKKK$Nm MK;/ z+[OY20?MgSC?[#8K;B{E_Q6x1o浂ZI&ˍs2oz:зo|0 ڌ01J`EDKb0I0_ J`q0I ;4=V}Vd9:/&欵t=b76$)}:~@ N#U#2 y?VlmWGwfŏG?Fg?|5NdZN3C2 FB?`h 1Ѡ D_y}4#Eu]~: 0U!-V,X@ٱ\N0Ovh.Sʐmݻvٳn2dɌU@6lٳp͛2.lٳ ?MVd{)z:~0~ Zv5WljwϣM2_/O]! ͨ`@ hl|ǝf1}=Ue 3 $eC۶yt'I'!6o:C÷,H|˕PYI ׯ`>mjݳp[.Z/Mv|9΁6{@J0A6lǍ/0cput7i촟U~w\p+@7.\ .\` rԀCo|~psӧ03fʿ ,Llف|Yv%s%ِx~Q~X,ssL Z6 Dk}.\nkV|ƳV:PA }u,^ގt׫W>|gϜ3hѣF.\E-yO>ݽp֭0'v2QEQDK~H))}AzNpN0shϐ@ YEɣF y2 }v 8wPaŚP(mݷvo"Wn_c{ TBx P*x7Hs6ad;@lٳff͟83|Uye{{voE.V4`VQgցjB#`B@ 1H`!flLvffFZ7ZuZ,BXݼӝn=?O7w91O!'j ȟw0Vŧ-D@YsBgO37/#maǰKT9YwXKXXO+km`\ܫ[ݬWװt:k̯|RљB4X) ƴ嬴TV1 UQUQuNe:[BsJNpu0ZsRr*z3[T*}(?Wْ/ummk阹XMU8 uww֚vhcLr=OjG DNR'vWDVpEVQKhN33b:V'`U ^6 {W͡_gZU!xb_c9pYiigcIZwX=U?@MW!>Wnj|2TQQZU=?O_X+/{KLg=tqf_l'CēbSR}SSSSSSS6? Y:2ف=ͶkJ0LJJSMNżmޞY^X\Ju?f^ 52iNQ3+wEKiQ]ꕡB+)Q/םbI;Zoˬ3mVU`m+3rtpwBbڮu{Sl(EsSWW{(s4TȨ`,TJʣCr=/)aȠO\ޒno_Ko!$.WJɬZ{ xݩ#"STԟLA!!EѺ1$7ל44.S"sCC3U ccu>3r>{{wU|DUXU oM+{ڪz'܀)2*50(cid1.Čۻn]U2/(`1>i%&LK"MNFu .kSSNVI"ͫ~?#q>1A9ni'x719?1tkĖMFt gzOm]%Mcu `ڻYa%ֶET]RSvjp_qϳ}?}G~gWg?=}'ǔgg]ڭ<}PwbKPoخڇ9or;;;LqNy\V4^/ nb[#*ߚss!p2$ztl(Kܽ[ess}Ehݯo6 ؒ>M0( )rfX6 -fS؃#IzR+ݎgfc wpyTr9v!,BA Z K 'F@ D]~\(K+`^Tӱzyqqp."^|goӵCGTs1W"qqqqqi1R@R} CgapfBp1Z   oZ~>mHyN(yFZ9V +(l ֶR3Up׮Іpv?}}}Oh& /Z!=>?zRBhq8I$m-ߧH2~21c)'Dh#cDWEqW-#5Ţ-qQK)iqQ\JZ\iM\ 9[q䙶-.Z\!2!$&[HLd<u^u$صEMAdĕE*~xweV+ASr!dRdS Qb B!B\\v2ɓqet1||KMnYy͡z>,}zKE!ؿ&%Q]uW'{~χ~~?nfKN(9qߖ^tZ7k#kViZR.|j[Ye*Ј6syjlѐElhkJT$U糶dZYǏSN všbX@B@@B¬Bª,AJ GUt>6l{_(C:J2 O<~zЌM/ZZb,g}g#ޅT^3۔][zMm:F"Upaլ|"""""""#lqD[ NI 2025(fnprjظ",̆nzg۪佧?m~K5UܪZ^0~Q簯CEgu]\CX\Wcɓ\ZY\\Z\Z\\Zl\ZT\\[ LZd\ZKGHx'xuh߹/~o>~zaT2%{U$4N׬պ^(c$he@sF4+R>]ɮ) նyX2*2]Ymj` HYv4fѹ{{ޓ}yGqb.12۲ڭ- VL NL0< L cR25ٱWf7:@1x /M&bC [[!)qq1i1Qɮ0oQjpQp&Gx8(xcOLzIRjP_CX_|妢{A"R%DU>^ m]\:Qό@q'έJË|5fK6F}$ 1/B! MJR_*g&U/N\tǗ+7mNN_czO?weOTU;:ϙbތˈN]Qӿ::7Rd&ҪMB6mUͼrVMq $4Ƨ"c`bڣ~ %|/hM'ȼ w{6_,=,|&y$]dCh{.Vpt8)ܝynY+KLHI*dڌy>} MoV#3jU"f;V2Վ}~|sѼHf2$i5'?U蒥 _01 w`PVXWH"*)6****)*****)b)"**+hf    lΆ`btxthhl~{ p~vzYe[1dm"Nw9uw>.֯k\QXJܐ6r-'G"%xTšO@qqq161Xv'|}K $.07/$Ԑ;;;;;;L;5EǰE#9qhw8m"๋kDmD: Z6$Gr##˲$ BJA?B!!! A! y? m3|o:nɫ>^vrJhwXڔ&T}P#U^|ݧYV-*@ 1.]t{x^zN{!ݳrnMӉviݓ7;C;:wwfN:M;xwv Q007{Snc웺ݹcn黛oÎAlwt8.ܤPiNQ Wa b l.ɛXRUTqE PQAnɰj#tAT\U[1+5qdwe(6ET r5AF8dQAVƊ -- (*lkTPQATQ&6Ȋ0[ E)%V P(Uq* V4l \j!kjϑS+KX.aKszߟ\X|G4 !JH @ \\e9?zc0DzvμTDV.E*%PKBZEGŰJ QKR T%- Z(*X$DIIIJRkib,ZQjVK~??~~~U~NShlZص#EQAJ\(RФRaR)eJLe.\)JLĢU R4ZUguwwvy.G}=|5w0sYljS䝊{vv (ҳaowΒ^h~=n[Ү}q!!iRO7'rHUE EJTZX"Y [FF-BG ie \(RQ1&KHY)DqFZRKKcb" i GRږ !`Fp2NEfq뮻~:QUUUTQY5R ;v6m[LJSw>&|? 4۰ЪϏ|z7;=Of~_{>/qEs,^i6G HQxڵ-Q]sVɶsҎ;Qm*:A*] A Ǐ+eG蕢Ig*W;ygp8 o@t@@BM  <98sUUsa \6M9&z?i (u~~~~~~~~FH~~~~~~~~~~C~~~~~~~~~~~I>˳Wowz}o~'|>6NouGE~)=w!"]'8:[Xd;s|4H')ST*tMcXF1iR[tNN#cqc88880 m[{OS5A34 NNUY|z`x~xe/͢....+/ "2Z%8յi_|/{'>î[ggYt'&|>V=drKiyBY%j|HRREUVQ'mRllp(jjjw{{{{{{{{{{{{{{{{{zEX4џk^32j vT=$yR2T{b{Y,s<~hUnB7#r>$I(YؖaWYIO~z|=}bbqm[_ l󌤵DU/[< |$ONw)Zhќ tQkZE>sSa˺0o[4 ۀmjA'` T9w䍕߲IAWastTQaM;id&駿??U˻˻K )! #*ؔHegγ=乶yl,:a:jZ%h|:i'}s,1*R#4T^|1770ǻ8"[Y8!e"f5EqTԋD\cR X-TH$WP\AI$˙rY-)WDTr-(idiKKܐ!$W&H7;rmۧ.ER@1AyF2dDso¹2tI!^Kpϐϐp/ONppаP  B*12BJ)V#J:'ƶdžc2t{2P{|7lnmTI 귌x`uWYt#jeZ{}pn8c88(stA BHLrA %bRAEQF"q7zNߣqw[q~?~>~X3xZC&;[!y|]?G{%O{t ,xZf㞓U˻_'\N> EREzؙ#q=~=2gK/5oG:VfFYխTU3ѐ䑝;.~<謦lP0|xǏ|>#(*LZݼ>Wt'Isyo7ǏtgѷwVܻG3Y$TR*U"5[ =[Z5ΤXAΡh*ΊTK7M T}M,V!k=s@; B-LA,h-?骟pÇ8pÇ8pÇ8pÇ8e+׮~~9ϻu]&[ѪD ҕ镱dV ejF*lL>c9.\U"ߋ#nzh6s6SQQ}/ \ܡ2aAr "!  *VI61HUUUUUUUUUUUUUUUUUUUUUUUUp@vѧ6Zz:{6z YԠ[fO.򔳛ƨe NKD+xrg3Wdc6#gP.ϯQO%T'rQQWu)Z~CIl w@JU d6ooק_^랱ў=c=cÇ8pÇ8pÇ8p\s_W |8Sϫ[*ꫯ|O/>M FR("BŽnb4)LDB7tCtzjjAtܸR 6 J#&" IIGZmQ1`+%_'~ߑwwwwwwwwwwwwwwwwjUUUEQTUH17+$сJ27m@r7.\r˗.\r˗.\r˗.\hw6mӧ7R[w\v:-W`,,3@ Oױ)tf͛(N0}ZӞu®C}EdoV[mm@%mH"eDUEQlt:KRKb,s9g3s9g3s9g3v۷pÅp , 0d><:3lI:M:6P`>Jԛ*럜_M,scX']g2 *V^ $jJ${0;ҫsdCqCw-wk52f\Դmľ|uG}DZxpÇ8pÇ8pÇ+ hӓr>m][O֟ĠdLJbtQGS? n:hRUuҼxnDg&IdNcǡHf.ԣ5؍~L™bČ@ Vm8PY )jUUUrug (H1*+JYM [.ugN>իݜ,} R[ي%^U-"O]&6r%!#Bě[Ӣ78[AR+#9v]깼=ܥ,N^:yR'VXr{#f _HTqvhJZND5 3=eok՝7öqBw\@2b:H DwtQ C pdž<@VF  c1c1z/O>/{[~>O~g~?g~3a?G_o~_?DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD?3߿7??k__kO3"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""">C}>C}8888⪱QUX}cIL?G0$$$$$$$$$$$$$$$+ JwAơ]_?Oz~ Yi_)6AwaǕCv -)JT)H6^O+N4m;s6m`I/Ƴ:X OZҹKV2,,,._߾c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c_[1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c4h_1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1cyyy??y{_wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwWwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwoR)JR)JR4hѣAJR)JR)Kmm[mm2mmowwwwn"k6~SL2U'3*TT$!@!S⢢H@H  bp~jnrun|TjI|-E5kNRN"][|DtMLW;rp]gU蝏u8vpsuop(  $]eB EPzꪪ/zceͯ/6ގξm<δu9]k=HRr/*yzMWGz]I#Aryt& XB)ԑfkt5b) [숗y@3h%}@ wrM!3ɀsf׮;ð;ð* z:U~ۺ:7z{^)?**Zw[Yԉ#ZJ|cU=fZ-'!B<s |<$z-+,6vsvvvunqww1'boum[V,/wM糩x6{j1YSglijQ/{ ϫv@%*R#8aö<0l~bDDDDDDGy @׿,5ܳ\os[_{1~?EceZ[NޞRY6n^8>/oG=>*I]aKQ?J\I:hַl>s3\N+e}")gɬ1>&ETD]7)S'qq q88_OV_ZFa 4:02|}~8͞F jKÀeABQONGK{ګsemu헺 ̞hR{>dz_qr4^zs`m E:MMn:kjGl(kj|4mdy:n iYVD5$Eg,lbAP)/$t=ЩPJqh>oO{{*ox______________________P________RZ{Fֽc>gLg6Rl<#ԭkdDMoSҖs'S;Y;°- ¥dq\ܠG"䴪V5Zj47{{{{{{{{{{{{{{{{} =J*ҚY!^lױ|o|UgU+6;Wa)1Z?FKӣ3Ssz=׻gLJwڲ|5zY[ꠉȟ)"$MEW"&5V„(UϬއf;&Z<"TQU/h-ߚr2,,,,_!!B!Bwwwwwww]_Uap}?:߹Kߎc!66k-t,"9g3s9g3ݻv۷nݻv۸pº 2;9Szvn}oWz}>iHBmaܫ"䗮.,0=+w)uMT}:VqszAJVKϦv2]*ec)Zם o{߇;c ,cp5;շ"QTf`͔"$ O}2 8p˗.\r˗.\r˗.\r˕p`՛rn:l˗O_? ;7ot*hDU[RzcϤcu ވkj.S4Ч=LS4vy('̒OHhzteVD8888㊎RT -ae}rjU~?yZnntndTshn7><+9;;><<>?:< ˖R%.#2%svsc+ ¬"rV/v\5лGS;liAGo:HX88h-{CRCҸJ~ߟï¤?>jʜj{{xww|sqtszwysw{{ç-TwETURD^ڶ3%BDuaǂ.GVYL譭 ZX,*YM1c@Jކ$UU L9X:uM (5jA$ 1nrᖖcq-~ʆAIzivllbsv{vt{wtw}}{v}???+hQx9I 8 XIʋ%3S.5ǂÎ8p xc8`ý3e|.yB1S"R4R!#\[T)BD"4[ĩcFk5OB88$`SW=^A38$J952;*]`w^/dĥQw(G>>>>>>>>>>>>5ӻϻV?o|?>MΔW|:JC8:d, #`̷Z܍/ FZ:W]e}g{4E7畚{ID[LMt5Xa˻X p6wwĘ+uQmB[S aLZnՁC̈i~9M5)F"0 #5 rHԂ[Tkb#04eB(K-)VG+pYPFR"V"Q"9F#AĀ 0oSuBǷ%A qW_~w @걧5CgUjf|3L-mͽytWj TWW+nQuEQOoQﱐ!)"ȢSI1hi>DLjQeg{=g9G{=gF-_ޟ5^M~>?y~e IB(ԣc-FOyɈtv'TUC3cN<̴- '2{KjM{H촥 UQ|7}e_E3RUE?ҷI_ l̲5̺k ܭak"YvZYe%d,E5WkX?@eYMYQ&BuXEb ZjHc$#JE12EpueQzm:hU 18ift*a8W6_XB .eف,pB! *x ljF-+:-B]'5_9l0ۯN')m8.;w|897|wfxp9pZmᆙ9f۞ tۿ6OMim0{;s~QU2^Mt՝Ea; Exm=vl;^/:P\tݧ3붚[k32c9?7L=|MmmKmmdmmm@!?Im?OB~~~""""""""""""""""!i$( H %V'58fV>g>}|MeØz?굗(ءKT"{>kt#5 q3g&_.d.Q.MzQ6ΗզKY4T{ 8o 1nua7}_;:7:O%nA4wgF/GB(NAf` $4i>DYv}8I"0`/?U#~G6-kU6uWh܅ϕT;ק\(>QDpÆp 8pÆ+-Zz Z@ᆰymXm}I_h/^ah1㗯)%kטxxM;biw.|xgW̿l=y",xm2^1 1Ѷ7^FYm7{Vª=bg9!I$Ephob^:YIK9nݧ\:8@DB(VjԒM5eUO6}}9^kS4D}lg%y.lU./U\8췗-@Hf+-vYY\8hÇw8qX%fKJeʱ4WQE8`oOQ-6hً8+e]4w~Y2Mckutǻ/NpvsÉXSn/Sa>Z9܂6ݷ.`+销V,YF1JfNCb:Enkȣ =,$*٬ٯ;Q 6Μ}T "" !!.ֹ_U6HWpc=n K,ەǝ) K-B{&;x2}p軝ar߁u]Vn[mpyz&E+뮼g.ެ( 8:-8ܑ- >B _~ac:|:kzpћ< -/Woׯ^tjௐ[C׺.:y(1cV}$:5`i?cJu^'|m),t{.ZAjBG#qmPQ÷Y.rT (< ]|m7͊?em#ٍs?GB\p^6T0y@xpyz$rh!XY3&NPXERUw|8~a`l#s17s؈i'U;Ooz׌G!5i;s2CHxBx8\Y IO7/oҴ(S)SQoL.L蹁B!C'ä<5(iↆh ` "<m>NN}fUѮZpU6ũZ24D4343T߭iSӺ{6rM x(ѼK_k?dI?UUUI$ʪdNUUV$(PBf@vRwEB*Q TԦ}nw(B!n0/`w*\\Pw{}ĿSڊyxMoZܾFzd\]uƅ CH ItM,ⱎ3mCf2YZZ]][OhgP|PHT_jco SGHhT])J55g( zF#;uXJ*J2(4=C= B)9 $'[Qdn嗅B)̳CH y;L#'yށM'kOOO?Bn~fO{>\ծ熺5<*tr*3)(%$s7'Q#㵻kJ1[ݹ$RUQ n\ 9.fNzyڭqA#xDrz~us+4//就(Z5R,guPSj}B&''/O/@Qi7vyבʧT Bw!5+eٞ&>sxx2o/&hfhneh4|zq' h% 1xsA~23~M޻```Tc&ca%/U3uw[޷:_qKDIZ PH[H w%‚ht뢪xC~Րfsy=Ci BW}Ҟ) ].cmM'' iy=}kE4D<&p#:ltмmm-3S {*ؒ\ UŸ㑟_w )0f|פ>xJ33K8"uqA-5]qo:D̲TK%yu{z^A[Nz4e5a8L46g'=!0G{0cԄOb&zan(8Cǩ/Oh4W\pS۶+X%VӖNv5OsC7+RPy7\>Vy3%%Qr@7+9\JzyofAN QCuzZV zwcayBOEBŠO?ն6TTTQ^@8Br^^\SSL5{z.Z)66LLU'F驫w9fPr&&6f*@&L7xtX`^^xQ2QQBqۚ&L>;w8ĉ;#3xx,$JZ3w+)hז <6$,/LLBfT(h!(pZZV@7of)W ,cbAi\6l%?ހ%'184=iuX>:=Pܻn<t$# %L5/L]- F&a b|6s2ѯw;yGtvhD 3E ^fkФFI30ÜQǞ<0UJHwjwͳuq[$ktO q8U yp:NEd7v yB! R!B14F=@Vrt FW:J>465RqFD]%Y`h@.''{ákqhΏ)bbbLxϜ.<~d8Ts K) FS$WYn5z}4',ԯ8r)57ØV4mZw;7C PGm`\ Pk&4#'.YPF(ǖcnwwtVbk LPȵ)!#xrɌ )+Tke닆J՛o^i8^# + Z:7w~?Mѭ: CGE&9zQap )1{{Ugԙ&ܚ;ҳ/ƀ~&XX5yrչ| Ab畀XR8p+"(\9Nx#U썍GouzIIJh$ZtUR_}q(]Jw6ft n!uDϴ^^P2YZش@U^s9QTKrݓUE=ɺ::U lڒ}37+ΐZTdcaI/z+Ȗ_.| l_Bՙχcե/㬃 B`M)"!:SI%PK,hhݦˢ񧀿Ɛun|*jQq=}z|zl 0UJPCN""zv:ʸ:)WEeE!ÊDOfvtzP}6ӳ5$3T`W""!'ה[_o׬`]]+i~&n#Zo~S\*X6p{DYᶶUV!Qyj5p*MCZY]1rSи3?_,f BU#Qy'=J%R# ћ5fM OrMEJֻ9jέ}F0؇< 9ehLN$m;5~EwJ3/#mUUER"ZUEUEa !񽩏O}?Sy!9(T%J..!;:.9 䂎svbedp}iҰ: '֔\gd^=1~KkI}ɉq :"!B!k=tԼԪ p d>PuNΝKKWBQ$#24ys`:mɊ>{k߉?c劤,KS27g]ھM!ϰI3vvW>u?`ns1CxPW/zOsʡHHHT~Vn?wwrrDT͆qe:F' /4:IXfm+QOmQ躪(-mk9I?:::?% =)e,"o ݩzDzw\~'eӴjeBg35ܯW[Meq'70O?fnG"wmEwDE\bS^2asC46N*zgQ(to$vFeM┏&[&w^]>m:0_D= ׂ9IINyo%/`7kRNEEEu=9ݭYigkP&দ\T"f榦!'8/u Y|QK˫ i L KKKKKK++++++ 5˫K9-,{NcV w}edt PԷJU* zEgC׷LEyib>yzzqwa:-M9A995555Ai==AB==YqQE?M9NeⷷQD JH1[]}v‹oܟ^ZZZ_8Zl-^o9zj iDum" \N bhیYy:pn5 I#*qQt=o.WWē tVm>3R2P| %BRZq9;KљlU@hYW)# (%Uk3X%yM:mjj%o.n睴pm..-..nw7W?}?O/?s/Nsߞ9C榚isSv>nnnh|8&566FF&%FFZ~35yJH&(]}}|x'k7p;td}}}}}>;___4p!LWW__I____E[U0r9N;`_Q1vzi<΢sBْZ Y2xxxׁxkv[uuuuuuẃuu?>B**)(J{$|x9=sw;"w;sw;sw;-w`-kjfuUb/s5%\yg+s⢃$CQOHްWsH|ʳF7-5A=?QJrX Q Ke8QS [wK&3X~ɦ%[j8HHL};/ rJ'I4~3L,`P k;|lwҵ>+?L..`k QpNp T|)&ͤ # GLՂzA3DU*`UzT)a i,)(T܊***>mS$oU&!0ˀPvf ĉ(PJ]"F1C!fpC7ș>847BH]D^=Cg0JʎtAFH9˯< y{'nb"v |n}#"%g{|Kaa$'=_`ϡK [#j5~Fg⾾çұMvS7RR+t5Vi'(0)p7'ZV ^,6/m㛁{ƃea#`i6>]}Ț߰ =2ȭӈ>_C5k(Ԩ {f>YSrI%s|EFRmb}ft|?K-?.{-O+5g}sw' 7Ww.7qe|n7̤.a#vzz碨F]ǡ[hVC &&&J IU`Yu7߾JZfRSl=<0L UY? &33a-nSSU"7~}'my⿧|7QIij>O~y<-<7ڵC,E7[,Zccccczьk-qqnw .xQ7յwΔVnkL=̲J< /׃Z`Pj?cƚrs?f;T~=/höoxdRõ .?q G6m}cMn*V+qg\Zr08k)Th>Z?g{}"Jwva9МުN-J,MFKdMWZM.-Ķ^f-nwY381*ݧ=<;L<<,;clJѴ%ZuyzC9_T6~{i\˰҆Zierߎ x|XKY-S=lԃfZscsJQTTTӓRSSlRҒg),E epw2 8^+8q6?~,:_;G},nZEѝ^<ޥPbif5'w(T}U[)3q:w< :J=v^_̸bЬPк AODuqmqOQu?_ԶNbaa^aaalbbbbbb[汱G222S(33-33yco ;cN'x>; {LN@(^4dB*0>Hh~"{c+=>Sq{&P#OR~/_e1'p{Ef2<<<<>J,;{~h^ TDO˟ MaA;zzնCZMewz_z}zz|I"M!޽ mCkڡW=ȏ\cךŁ!mXa-.PpMj&]| m8}=O7*mD1w/^iP|4[F찤p@>e.ROe4d?ad`^]]dv=>ntws=O)D& IOǒ&`|`fuc6)Y7pH';yrܘ04ٟ7  "ʏ=Լ ׏YZW8u_݅鉋L=a4{pJ i(iR"Vߐ`pI]=]MEmkoVCBh0ت?N{vNt}KOܺsǟl$t-䃦ۧ{vEľn_ލf< \_ 6RȽ1C9@X_NG/SmA+7eVqgDF7GjWCb6p*r ?/YztOT,ɻYxv6FIDG`>SR {Bm{_|8߃k Յ10)*7H]TB DCGmH*ţۙ{},G' :0a|9:;h $Re&.J%;I~4@@Jao$fno7 V`6g=vYl$"R'3L|hz N- $'222>dz\fWWy<t vKxpDY޲_ɻrӃ@e k`` 'Q-C11ZsS[ hgL%І|m"pt iH1~>:Ln<[ eYʿiXqro)ӷtJ΄$;=7}E"ߦ#{"ڃxffcFDɡi:'Q0I(_x2wf2;}y7CðTT[[[㦛B0 rߞLڍ$sYT_3I)p WtpO$ꫮP[7= ݉,FBD=-x:},R穽# EEiK^e[\s~Yy}&?'D͢.'v, :ۡI*Sy\iL#fz=ssG!> (gm̉(eHxh`E"yH;CCH 1|Ғ kt67n/{? C<ǼMl7rL=Jû53)2K{ϒ2 MKgh.jFqX{Ͷl& uT ʃiYDL3*R::eZ?k]=|*VeIN@R‚zsop`s(5V_ApDͣ@@@H!rݹF̤XU'f;6( ^w/s5h/{e)j&)N#Ť-y𧀁Q᯼AUxjqpp)E m {Lf"pCLOnǹ̠!s:okE {9AA@pNw*U ^sQ9$Y3 JBbUn߯54_;iu@Fx+q/;:̵4P*m4'T{ՉҋkQ'+kʇn|fQĤHDS5SJ \L[YAdVom@䜠epT.mmM7r7icNz#] uC8A헓*𩚞XW.f߷9bLNWMXew0%wҡj/Tq:GGVɗv\JmYD#S2;I}9ܦ'ݮKlIJ_66q_#Өdط4Νd< 3 (ǧno鬜to\zѺӧz$*b(2;.+G's5 bѦ mۭ/V'Z4:|3D=1Sr J(4IהRK%|ѡ5z\+YE#$:7{U, YS:URtS.2qi \n9l vΠg `oV)@pnUmݱ݋m1c{9.e'xn6IBBB3r_c6]d A̢ bD'Q-Q $M,Y*;,cҸ3&d&$}ٵ}UUUTUUUXU'/|~d>nyO.wL~z-B_Љ-) R)JA.?G]ݭ/K W_tTbqAT3:o5X_[[ɱ]v`c42h?|`9~pdELVC`&+--r* l݇ 6tJ5ۯw=ysӞͬg`Cc_Zȇuߛ[ qk_>D-!j߽69^}nS]or HNIj4%Ǻ+,-l@xjxK{>ֲ7r*t?jgvn5=TB `{ғtFXW{~۸ kb9l=wѿ5Wz5]R͍?vwq'܄bԛsWU PbP,;.m[[[YZ˲C틗<]erb׼(o";dRҪ3ljҖ;Q!>:^/3b[Y66Vmk+>g:Rwmo*v&rRR懥m$64'½b;41}Z3M~m[[rX.]< 󑵈xy=}/ZV G|nZܳ#;}W͉|8vwSJf]jͩan24(wˋǓeN}e#?Y927{6JBBBFUs4=.&vwroA:^LqӕWgɤsObxg,sP Nl] ~aḼT...2.ssKK?zc^7Lh][߁˅ne5jjZjxU55,ꪕ5<*=MMLRMMMK72.2.pSyLgrN=櫻BrKxP&OsiF3SZYz4IɥiI9陔ə陙)i7NxUeeNVPMi]QVXZz3܈&~(yOŶ%&&&UYY[Y:X蘪ߵ]fxwz||uݺ,AAAAAAAC#!IK9IEE9=G!YMMYQBUUV#?u7'ca1 .(Uj_{p1=oʏ3SWԩjMVyD:qֲ뢰))+5Y~_#`&rq_>Fhi!cn:];FMONJQ׬S21ץhVઙ9z0{H'؝zԤ}U-H^Aۧ9ӷ|||oh#:@Ru!%l;;6-3J|wJüGc\2/2%/g[Y&e>v }}sV:qMJ..s2jlkd[Ls$<<<;:&$Jd<+4;mw##6oo$/A]h][yWbc({VSAIvwХt:CCtܙz vӡ3 7'54qqq/n߸qtpMMa͍3$U|+uk47'oVo6FLJH\ЦSZ*BQ<IzkrZ×@vv^XHY^^GSX0,d. *5};}?Y|:4iÞo]uiOag9Mg-lmmmmR}ԏ7:<"&)TTn#|żyUՕ9S\_ uLt{)?'mGTGkջlcls[޶zBnnoQO5攂۝y>msl/ojk>ew+)ǏT[6!.=}ϯĿy+Q-Ai*ӷtܝ2&0ݤV/~OOF/XEoLsy˧ƽBE S'/"2s32w|n?>5oTW J7L^ߵ||m-ëe11aX$. $+Ʀ(r5=q].RJLoqβ~؎j^bg>G.w5G6 V%%+8ԋ,!\]cCɧVӥAUJJUUUUPUUUVOi*UcOT`ooHHǪ2RRROO*OrL RK;V &I$䔔TcTl]WNt,/7][2:<D>j>[cˡܬrYVV53pPbm>>\/wC~ގ/c"]_iehOaFd%@>DCEy1CGSSScS5wnhhn^{2O7}^o]bk(0(()\z Ȭvoz[sK[___8___zyyѽz=Խʿ[*^F6Z}G9SӭQU+n[v=9/ƒ\L;* zs{6-=gNhGGRHHYX^# b_y'ȿN>B= .3*JSoҲ1YYYmm[(]GVjpppԄ1kv} N7V88I^w-'86<4hW]5]tsur>vkN \MLmi(]䢔gʽ |v:uwlf+*SЩP^?Kt=>Jӣ/}|Ѽ}}}w4yq 5 OӦKYUUU⬯]+*/Q=ܣn\v M,,uUV_'iImY2wc8'_{ )$^-R/rZ0pppr[X>kZCjwhrrh4+: "a I'EO6軴i߭.Wϵ,KR;+/vvvQOxzo/\}a}OFʊژݻtwIbWM mgYW Q!)iwςvDOm^{],g7]*{{:"♵y=^!B^KY >~pui=Aw|p POvV>3l3|O?V@6y3LQQQ\l\Q8CB'/"'2$r}H/vf|qx{_©+is)Ȗf]뿞W>oٗ77HtVX'p< 6DGzM6;=P( cR==gԻweoݣ\7W T`98cmMM HBqmM}u5>shd,/~ܹggRҋ]3(o!,,{[@gG0澾?aG=b;׌._RWC57JJ@J>JAJJn奥奥=J:H/$$$Kã#")F?Zyx1iNSD]]]]Qt]Q[VfUy : Ƙ0@yYwx߿̧$ȶ'c\!n(u_Rnʯ^042:'mQE]vl;YCU%Sݠ>uu\K[[[ZG * i]I?;MR jIM 9 1|S6]RAq _.ʒr_,ՂG ]\Ɩb{߇iBbe^f`2./666.54/,C!CFmn#fʹQ8F5ID1e16nܯ>$Q7is1Hxm)< צ\Je8hQ< 5xXÈ(ɸ߯l9mqDYj-9~𲵹cDJ~%#3:)ṽml:jnVhx;4>j`J!C! ++; sk7>њ|vfHٹsTj:v`D1U\:y-Ƴ' Q4 F!X.tKQ/3aA1r'7ֻ¯(Kl8J3%IDtlTIQp$&F3+m'%lK0䢒*`lCLLDpɳV? D:JCi^]+BSd;@]D*°w4^T!+C ~6KKJ2oxD/nT34)Qpq[ՀI~&$JJڌ4sraeA2ݸm79L%yyyayy Beyn"M+1NM[xGFs<SS7;bbGcS64BͶI, qדEEn e9;N|m yyp0ԕ(B햌wH G %ض(9&jmcop7yc r!5j]ٺRLi۹E$'TYS>m+{rѷQA2h`fnsYa26 d[I$I$I$I$+(Rf]X/-*+Z-;FBѵk:l4P46>\RN'#Ovx(zcKO EKR䉾"eĸA%,-ɤpth-<Oތ(ӕ?+jta7}#ʖI (7 @6IĚUCPku=|stJڇ=2αXM MmUTu>˱#7Sn4{ߠtz.1^eLzP|vYwLd$c>sz+/B8n$wƣsvESGD,ʷ3*i %P@H0H6JUs"=)K-pSКT FF'MoM;k)C7UՉg+`^,"kygdHfYT EX ;bOhK۰$ň'cTѬ|(z ;SX5tVYCo[PvOߴ3#frDM (sfqr(jFSSsJڒ O:ݭAx_R!p(K 蔑- iR(=*lFxÅ ]ٜQEo 2+13@B Y5 !i={_}]9ϊUUDTU=?Fl_]{YĩRJ*TBC4L ʕ uyPDLdc>>U~5#f8~j#thā_b1K2ų<LLzQwe5mdص+iI$Jxr@=gmfR)yѺ!{ fj^FFĬu{a{KngBc_g;O%=s~vF9`Z8Su՝hP6ɻĨk_W*r{N7 TVdd2(P[T93mԛ}}תe|I/le9>b*eZ_z@_KtdV$dmY@VKhnnԌˤfw`rԖ:$3CHHSJ=^,7~71l=~᱑$MYujc};uo$Lj7٨K$bq4IaZ?K<=u>PPi$?M*{쪊Q}hU*8˔e. Ls~_37/BB7Ƭ3)מANW羫zA($<;6kn}7AmGz$7;}! q`ŶߙqNc^i7hhhll쌌LuS ?JPWCCCDBBBBBBB8wOÅ) iQV/7iOOo\b(TZ.QJ1[dhhhhU9J%(>4Qkzn9X IãH ~WL4U@~dA\[0YY[[RM˩˺:K˾KK|Λo@/}edz؍~W'uSֳe iGJ3;Ift>HYYYYVvwYYVISqyo7C|䯸mЩ0zF~eeUUU^ )]\]aaUUUUUU]QQ}}}mzi?urVWد&0j z)E==?嵵+m|ΐ^~RҐ;iP)m ip)()I{ۋ gNۋ I`ӭ%ֺ/\\]zs|lommo6rqmmgmaI~l8m~nw?bƛcx{$p5ݶ[snF\B RRf÷G2OORgǏ^_h.,ѠHLd36v[b}fAKL^g3o==_ΗI>>>>>&>>Y;f c n0O|>gcm|p&8<n㿿vaV޻o[wrrrrrrrrnrݷN1r222, r2220J2 MHHH&HK%nlw5WUp(ϋ.+UJTuvuՕċ ù=Su%ra@oQwPw+ Fm)cbX3c ͟tS{@lo`VVVVVVɓ&L2dɓ&L2dɓ&L2dɓ&L2cǏLԷ}Ǐkk`ygsneMklݬh9Z6p6܎G"q7Aii5iʟZ8ֶE6 ɍE n-zs74735:& & lUN/ A;%ord&wc6G:ʾs !.6.}}mj?``0aal[ D;"uzX731ƚ3UjliʇH]lx3IPSx# #.;uݮ73 l =q^^8uwoLV Ke&oYUd {`O7t\{ûv|Nʡ9mqLծYʍR>F(J2˂dhjLLw5vsԨY=UFu ^+K3<ίZVۛKηݗoxuKe*R惕Ee*r'niij6뛖7{jxhS'3Ihy(CLH $7 BAa+YBv 2$@H3JʲސvmhE>)Uگ,[{g x4E9%F1Wɟ´d%%Si:R;V X-씤w%s0z .PL: Kt޳ccce*+Q2n/Nl"C.umUsNr.w;uMp,']'gg]өs33HxX~2U5[svl>p M& z}q+;Cxap8ȅ!FNd5c JK6F7]Mo QMpo~|ۨjdbfuǁŝj{gS|'S>3^Dށ7~E]uhca8lKKNK$ۡyԳt;U4Vz¼bceۮs"sF],oUwjjv&LL*oRRQf;[Y\M,,/9~E{wŘ46ct6(JKw>!E, mo'z~iȬ΋pW.9Nr_t}MgsDoؗZXk+eRRORYr]-^^w'''''&''ҔMS@6ۗ x{r“rpcNxνNo3z{y,($}ͩySJ߷ſ@P!8/(Qy*ۺۍj;SL"+~ʤN6gq:ח NF ' 0IH{/b%98t6uJ,Eӽּ4z~AYqMLĆȐҰk?x]],ߝl_T^^ZԅT-F^Ց)J555LM,!M !!!!!!Y jq~=nI~an2F6ⓟA`a e[xGv6&R>G [|a$I;ao7\ܴ Ǥeh6B>WIvz:5ﰫ:~re<"bcz1ޘo3T]%:3]]')I]Ǘ˦~\`Ivn1}eeeQeefeeeUeeegJQJM^^`hvvsFxzMjoɏFb[KEd6e6Hjɵ[r1JTJ_Sˋ8r Ǵ']l'IxZq{kYqk:-.Q> Q \I*1_qǛis*8NKI9Ψ^x)d!7˨}7dgcXh-B2mv+?]-w{,y4=NnKӢZ1\3u/XkǢ_ab#Z&sL[."ҦɟmYmSloYjheg3rYBTяdWf2*/kפso#Łwm[nvGٝQwl4v9j>*[L_ \LScw HkKU/Z:?T]yޣB@צi6r]I_6#?M&←ƯIgc-VňF ?{{ov} tMq2jp`zU|k}vF;?+?S_ܷܱɯ*Iyp /45=.?A|߷Ng{0~m'\ny81&eqq.4Q|+ɍ2GaM)\AG, da"geJhڳ};F9` --Bs˞rn43 m(ӑpBX].ኊ B(q}ڒ+Q8'fK7Z lQ>Ǘye:J^Ǐrh գQD& 'Ѽh?}_+xi HBɸA;g%6+CjVL oS#י8!|[T_] MA;@}ٚ{h33&ij "*(hZf(C.w&!YyW򩯬ت{gA Q3UhW{y`clЇ,J]r `KZ< J UЗ Al;pNOF<9F#!zLI- kMmo&3"\|FWyw&rSo)kמ̞gJwWp*ls{h ;:GC!4 rlSUd̦_oOg]A.wX ПظO['nK,͜ݡz~5 S(')e_wd%5\**m.r W&jlq) L)h)&_:{6S"u ]@0R <w0Qg mǭ}GʮrWxj %-.y?6PP?z(rKv,Ij5Rփ6ǙZ|eԵĥYw)njFrGs(mO,ɲi^T]щ̔ny#9rkʊEU0%,*0p[_?ׯnn`@bMm<}sX|\ͷ{%7L`A*F{)r 3>JV%"4]iYr26 Z[ch?Q ~ ~s, F"ɭU"˨5B2$Q@ (WYuX2eDUv(RHP &dkEʛ#kv͜6-zҗl魓6zѲKUR]EH$T`Dk-zJ~}4\1a-6ZsԄԚﶦTECE->7ٕEMO ҹ(/W&ZÅX씶zF;L tmVo Kn /ux̉)))&):no+_]̨g˙c!!!!!!+uz]hf/W._ls/"9XkE}xM8 : (I 7b}t[A^ 寍DDDCCC_[gʈ0_(hHK. C2vАz%ttd37S1cg>dceSu>-EtT1Y!p}\2eN -6M+N[:޶ O' sfҐo|27Gex3) )䔓WmK%g I.e:5 ]dDDCG_w& ArIPH Tu7~LS|Wn49;K"!. wn͓kxhmL\3cCB5Hnk5$aN97.:Q1WT5r}Iz!IoPP>>>>>v(qsLn9ƲFGDJ$48L7cG7aV}9^2 _ݫC&ij7Nx4x$ 7^74T[)%ٗOEr='7#npu|;䤤ϳA\2sæ[! )mJ5w5FT445ՄM%n>2ݣO.yS]JTDJDD2 wZU 3~rڷ,ӌU #4S7W h.H=bvv3%B#.{BwnMeRb13m ~xQu d6}_?N-:ek1E ))))))se жV>Ӷi֜ K:f_F3Co#c/6,\͉hgy`R)k])tx{}-%}n+8ެGt}Ríժ;Ϥ$$$$OeVa(yat48#- }}::::9O^EXB/}i!x(˨srHZtVj敞^a+n fUW;\}>q,fZ22226OrESy^)ǴongII>sS N܈i頠!a.8 K[,/ ~̬EEb:::zM}rLKN*n?y[TǾr'PPPPPPgmz*lw?A&a TQhjbZO9ihO'HHNڷWT:8ID\>bW)mmRޟڴA38%yizgn Fr#zN^s!!P!tU/x7?6꾤m զɇ;:<^] Y 5şz ;En'b^{$A怇Bg> !<*@in8:WGL6)(+xy:p%ۜLe;gj] 3P2ZM}*A7i&s6%#\,}8T΂n9GUfDt_L<+#r&L>2*ԕhF/EEE0u:<'_KuswoLLLLLVr3e {N)Wx˱R*i-ٍ<\+**%T vW]_96Ą`QQke&lo"wۤΓm6h]w,Beazz|||.{'{bKoO5wt4-y.̰~䈫B~~~~~ɧ3!k_^YRw&$$$$-neIzQ1~ u=lܹTMWʜB!!3o179wsqsАHHUلMQSɓ ̾䢢zm1F11XJac "ru,Ytj4S,?(t88/ 5vy֕ssZG]S}qbaԖy0wͬ϶jhmHU'xJKY(`zmEOof2]:t2hhhHH\9YĔnYw3=M V:͗>L ?CeKU^:]r.yT5yTDi }ƮS>׃z+پHHH_I$?vyқUYshPԆ-ta:RX~*MbJ442Swsvz grvwv@ФJ!!ors8|;%gRHY-~cR/^x *bf)J(U4M8K,<$$$&'s7 I^mo6;6nE,3\yH uFSF=5H;S$C5%H?Rdi Qv8Ȉ5)u7mo AN7L24!m4ͧ]WkdȵS!uttSvMvI~SL+OE"m mmpZU?1~_'*"P=>S3CL,kݼHHHHH^^^^MݶC6ѹrT[Z223Z+9mXèmPcFoeO^]9}sϳ1zz{=x[>uxٴ,ŭ }7\* ͉AVOdRgwk4qҒLScoErvS9iI%%%%.Ny;HTnaϣWo,韑Ϩ$z\|a#mua;梠  R([بmKOOOOSq8{&m51̱jEDDDDuu30yi8Bh5"O=Y[jK$t$$%JS+<Kϫr`/8O$c'*Т}kةJxkH2zg UeI-]Ԧ}>SzɃ[xxxyz\q Rɩ8y)[ִ,$$' .ʿ҉)}Pk^fҤJ9)p䷊{,h%='G*_qs#7/$zy/Ӝ4%{<|_mP"[#>1I26Cd$$#έݩ\ғ XAӑ0pONepۼ¸y(-ͯ|ܞ'mZo"/peyXNؗ@H ̠ŭb-mt8dJijAswg![Ztggxg{[ m-IKa'̟ĺ79΢#),VDxu;(=  w ktATēB# ^O Ίѯ:n s϶GGFFFZzJt3$kNx77*Tq@J) K]yȭ㊹-3fl ^=l{#9DhJMoN60Lx!a[:ȻF(WTY .:iX˪$\D343D5I 3_kv?)'gɬHHHG{2&Jw{}o2E窏#留z 46.eƞ44$/7#[lWר3_tՐ;x}:WsYYyZBUCC5C%;4rT9&L6g&Pw^Ҳ9C:@{!MۑEEEEEEreʹofiܚ=!!!!+x:Q/~6MꟘnxugY@˨եr󹈬\$1jKHr|\hIT`ұwLzw:KT&(bNO?1pG„xtN/g6cݽDc\5Btْ9k͜ MgRryO"7.?yOecCBKPzMg%77TW{alx9ӝ d )sqKGw2 S} Kd˥#S####2Zeܾ++lܯ*sof*Q4\l),3kXw#QG'KSsv;PLܤdedmMjݩ& |xxzz{6w~c*5zfUs($-_tu[IryQQRQss,Z iw':HzN|HE'i]?ҭ6ځ6S2YZux/Vl&5@Y?lbƤs;:NSxtYPW L}Sg,YV _HNO ooPVWBbjΑ᾿ivO3RDd,5k*RiI'=[0ʳ9[F1UY[5,Lɧ ~zN(!Y+?O3~|B ŤIsڗ WDˣKUmr)6) ]2o"}bݷgp,4kёmps;ۙ-nҽb((;d#魽c;Jay)4xO! =׋>3kRG=lL;ø:bVQQMQT1DVϙy A c'V@봆q) <}SR2YQQ ]&ќX"****$Ct<@vTՐһ} ݣImcQS'%/{CP8(+Si:mvrb[ҧ]TTT]OizhTp??ߠ Yi.hho9ZW]b&g̣emw5^G̀TAAAAA:yîН1>? ϡmV6!ٗ!cs{;~͛{yuJ::::::]Lh8`nWQcQQnPW96TL阽nEp*W77h׺lv :w+ hͤ3(((=˭iyQV:WˬPIiEEEejesI-I'cǜTK'piQ =:օE:yù_#PKQQQm\i'Ϲs-ܙKUctl4$$.W%-kz>ȭfs5miK(HvtoExdCCCl^ly1a'O>>T6=Zi{30~KaԑLo9^]G8jx\t*"h ѹdf;ὥ9IoVșkV4w f}} ߳OĩK'M(ŜhTmS]b4hQtRq2цyQ]D**j EדP*.6[*̴좒EV"FؙI"734P,A\UHʉ$*B U $:oŠtTIo*VLL2G2@8mu H4X0@DIb!a4L@}5H輋8$dH.,n XG3 >6j^{{mo>X LEhxJOM#5f R=@ %0;&XKFܯc9%QW{׳was}-BE!"۳ꑨ(fMzaiZ~RBNGc$t|^W@RgU25SɭWc ԄR2SU.0Mk$}N?xc~,> O>Oo|5@ ƣgdк@Hɦ2i  lh 4Y47H"(J~;ȢP"$d5 T cP]R w3ty5j͆jӧxox9,6O +,,fP%L4P%U$Qa$A@.Yjp<1lB6MJV]M4MD1 *UM@$O>]YiӲpɧv?S&c=~j3򫍖{a[){*74or̘33 éX*&!P`g C41aVԂԈ[W-iUUh"E*ɍ.Z\iOǻ DplhZSU) \I$k6qQ-p^wg.~.hsklQE(b0ds_^J[&JLFLbHQL{AbmK!m6z2F(Fo;,L6jUUJUTUEQER2EF(؄ (  $I $1QO/#oEhQLPX x'xߒtއ}gS^czN_-}Zմ{ "Vʉ)H4fLk>7Ƕ8ZؒsjPiXdqS;ܪ谴KSt}"w#gLxmm-$+mImO ]AvTk=iІŶ,q i# 8{doA@!Ǐ5sݏz5hÆ===8Lu\!vAQ&w9*(ȕNЌ [O^5YcڐkBF%>y-` =sdop<0ÃΝc8^DDDDDDDG ARo$آ=ڹ!6:pmܰ!%ie Ç8pÇ8pÇ8pÇ \ߪżuoէM]]1F' =6ҥ?[Mu yz^ıEՖV-V?tR-ZlaZ&iuDyw|vH0qqqqc$Ao=lk܃ j> !\ Vƀ8pÇ8pÇ8pÇ8pÇ+5:pŷF}oѸ{;!GtKo叔{wm|R@;ZFYmv;f};{iN ל8J+3.ٳ+K!*au:[=@ $ɟ _;uWf ,(,4UUP5d$(BUUUUUUUUUUUUUUUUUUUUUUUU^i٧gfގ~m5tt|Rյ!"TFW͜>c.0$n><].yb/*VEǻ4V9mՓNKH|mt%1 Z°@"TX,,+@UUUUUUUUUUUUUUUUUUUUUUUUt,Ƀ6]ٺ=\ڶ=:t>e=ߠ}}hҧY!ve2Y:ТĤsR"Ys%Ց[Zv%RB?KcY>l|ʖWCm#,O%t@=`@)|nUU%[E Xk刹{F͚$h$!Bۯnϳu5S.RH2ECT&Fv{bn6҉C#說dⵚf,t~tɜ6K+PzǮY]xyYeYeYeYeC?zRRwri ݧӳ'wq{'wqN-pswpinoif#} ]vl u^M7Tٺhnw\7S{uE{Ml'4/.*'Ey{lHԤJңGvjhƈK%E 1ЭʖKsr+qPQK -#EHqqALETAQqV1rPmHqT.(ەШ1((1ŰŰ~ qd\PPRširqlPn-AqdATm`* F7qqAAݛV 3h4 F?'qšEM.b"#F%Ĵ)k")b4(%Y%D[nQPKB(4*"0(X0`0 0r˗.\r˗.\r˗.\r˗._?g)rJZ~ \Q(RХuWM&W]4Kd(b!pa<*ˏ[vӻ7_g_ 7oT%:ҷwNyFXv<2&*] U߷o|>}v(g[FN8pÇ8pÇ8pÇ8p\}WpUUO쫩**p'\(%dijY2,Dn1T#>=[0j_$擼K[iUUJ$Sӝ6=c|7?8Ǽ gP}*Gs~z6)jBWW)jT?t"voFd aiqYljќDTKQQ6oMJlmwwyo7yo7( m}[yhsaaeUQPF.LM}4R:IH,]qQF,RoFE&( d}N`{½}.5]wARb( LI2&I>oooooooo_W"XZ6*(RR~7tTzjwO pis9:$YnKA;Iu4߷n p>"ҀfNIK",q{-4JՕ{%w"Bkoϗ=;Ksm" w}0 %nIIh$1C ! uwrTTDbqF[F/klv?~?2URSA !>vq2cknI [8ֶFUf !!oNBCEHHkH AAvvwɼz|z>o-/Cšo v 7d7vwdm]7d-ꂀ)U*M;8̂*)"h[Xw\vlE`Kr݋KDPm-$QnArՙEPжܮ# hj t\}7gt(*馶Bb:~ <}irvjhHBƅ -)w#\PPQUШ EAATxyx?Ow|no`*'x)}"nIJ\JXB$DGQ7\J(YTDKB+ ȕJn h)F--f"d)BƤ,~g~glw;sw;sw;sܾW-^Yj%-Vq3IHf$)nQR0@Tb&-4X-*U(U,:Ǯ.ϵvܼ_+ fPrnaEv#6q,&3ӌ;=&LWl'{KtvǶ<|x㇎{9xPi?Ǵ{Q|Uv_7o7n>8a jxNPƾo6ϾLm4Q\Eډb7 +i%-FHt—f8("”5MA b"ܘQ KK((ĖRa"JJ%f"("8wz-e~-kZֵkZֵxc P{]@kMj^Q]8/lW?_H@ssssssssssBsssssssssGsssssssssTsXp\\]mQ`onmi85y|r.2@9c{/}D̯ئi|曪d`1V*q>CEIH:vυlS˝*jY"As]DSVWG'礕Gf2]y5zsJI$,0z^ԓH i7"̫g"G"#X@ ^^ăCVWbB;P[YzL'WݣiԭI-UweXۻX>-8|{0-wO+ݢ I^AYqqr\fg~osӞEC^Yu1PQ@^@ȜcZڶ4y|>KUWcG{8=S3)X )y!kũ|B+6'TJ:q}z9T*솗HW^:jv4VXrZ_.y붏%88CWż{||?|4熫kټd+޼/leƍzvgg9/tgEN{./k>Y9bErDI+*Կj hhnddo.1/>]lE|KPuR(X%=zsg'21$~JóR8^vCTm0V6KhƖ4[߷{ Q"bеdTET-[\UK ?97nZn8-ir%JRdP{o}> E [d! K$-^w ę {[^C%+I5`-]moosVFmr(Ɗ)1BQ12b2)/ogC~<k.wSOEx"taIQ##  B_akOKb.UDJPQT2n"2`H;w]s_~/_|~/_~/>6(ѱ}(" #F~Ww4}f+lc6>#_sڒO܎e~+´6Mk9|')>:k{,Қ&L'6z]`opkv)@̤ y»Poo` mx<? p|NW#g&ƆP#" ;1JA"Ŕbk6L~Vol~?~?ptE+eY5V/NӤ "!zRQ).ޯUG͏ pϓ~bz 7ז˽z)&xwwz(BhR3i ɰkIM]mFBWw&}NיRֹoh R wGX> c{{{{{{Cmml2m?뻻㻸,XUUUT2ӭqϮ#6Nc3ӱNFZl0צa(,v۷nݻv۷nݻv۷nݻv|8p]wtsk9ͣ=HUFw솮ic՗rh"J3hw]X݌iZ'J薮Yvl |s{-S%{]NdJ{N{dS0 8pq ^w<*>|< Id6}q! mV}ljLi)@߿Ç8pÇ8pÇ8pÇ zR8vdO?b]=zٵ6n'fr!]QBHz;\^|kRЕMW(;6Bfi&4UR(T)yg,fkDc qqqTV*U+VMw:uk *dª ,߿~߿~߿~߿~nΞ`Շ6GusR}l] s<Mml`ԢOh fRtKF(m[՝X3EӜjHSR+Nlx̟Biʥe$4_G\}Ir{{{{{{{{{yIHCBc>'m4usii *[93^tvsmKh7my:'\*ĒD^Ie'eG2r힘, rǺm,#+$^B[StfySSZЕIetJ<"|=bj㭷Jqq-^>w{  ,05 ߿~߿~߿~߿5pvt9^ѣ-]z_:z^SSo.?uti2P{NL³°6/)֚֕Y.l۫,ʱB*##m'qNSJr[-2IG3k~÷,r2j,rM,җvݍSpNr.waq2q&9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s}}}}y-u{|GCw1ז|ەU_yqG7C9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s94M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4M4?dddddddddddddddddddddddddddddddddddddddddddddWs9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9s9>Clzn}>@BB!B0r u<>$$P OBwsniJ+ lMI4TɩJ* fߵ177OTp}ܒa94δR5;P䞽HT9˿fT_Rٞ:OtӒdO"-B+QQy6aUvz>~epvRB 2B 2k*mʪk*mʪk*mmk6fͶٶmmmk6fͶٶmmmk6fͶVͶVͶVͶVͶVͶVͶٶʪk*m$!$"34$!L$"~q!=Yqlvz^Yn/zw./ڈbCGy#=y GyﺿpsSS1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1wWWWWWWWWWWWWWWWWWWWU7WWWWWWWWWWWWWWWWWWWWWWWWWWWWX^'C?lϷ|_o~6?߷{?߿}K~o,Xbŋ,!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B-c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1͹iM1^Wu)Z?͏aQMao/:˟qCW64,}m=١Z hamQD T{ì@ޡHP )@Ah:PwA) U־G@SжSwop:RvP=5JP SC[T` .Q,f7l7ng{iilie(u7m(mB-@23ww^,MiݏC{t=[ ֭3` EP)TUDv|[\B0!D2i=J_%GE4B^w; Tm/|@Rh=:V۾N%{-tFo_khg;uOO,ytrF0sͩw;͕c}bR5l wWfs}: Yޚs;/(=5Ud*BKoeWܭʤo`Le֖';@>ܽ*T(J$JIB GA IҹWT}27۽ހ}Pe=ɢؖg;ƾӬ{u7eN=oCwL@ىS[m;U{ Y<7#s^nViny \Ev9iݥnϾ;c'xUA/vt( DIA"F- k)PE 2mIfnڻDU(("骠)=Դ=@(PzT1U^@uq**>=fkU|k}GC{{W8JQ}+ptٕ{6go;b}1;Td=G,{} VF]jODIݣɯTwNǎzd{ mT7_=Q_jIBR2Uh7h(PU)NU'Mi#.[fi6K{}O56GR^(-zGov׵Sx=۲͛ӯ_*pbOm*:ZYޞ2O#mr-vAےm`p3}Ts$iZ:AdӯTp|: GG =4(ro\ }1DzaCTUmk-G֤$zҀEjZb%Sj i}==F'֥T1juo,#Wl#zM}}yFs=w)jn}mDz,3u OwboaZѴ{)&p/I庖p.U} 8ݤ6w R8mv6`}@X5\BܻlRZ;hea j437\P/{_RMH([IפZ9b0OW`(zy7aΦx{k׶׏yh$v%jεF(Q3}0/ͽ AMb Pei=t᪅jǍu4T6p 4fܛf)X K ĹeL 3L};nzk'cu,_m'n'ٽd.oIloL!( m7^/Or!lqjYr[^]{G1k}h7.:56E,h{焴_;<.u{ ʽة&h=iW,j]>vNڗT>ެs^cqx}q F]W5TTru\] SxgORdsk:w,04`͇7'\`2{ח r}}G@@ PPI*@(BJ(@(U"Pw4{ڪR:*$|mk4ӮmSu{ǾTbhraL6mzn{7pʧ'ξfpa|5m۹pZ;ۀ>_F|;P={Un Y80N빫44J*-E:{qvL]˪iThi{pGR IPJ1ض{uj4/{"@ 0`2b`F&4@S# Mb44ɐd 4Ob @M Й)biȦ؆@h&OT&=4=d2jjzi'M'm 2m=LhЍ=ODO4I"L # Fɉ6@FFM@i'2d4#ѩOS4i=4 5PDB M4`&jbb6L&La1&& 44 Gz2fjaѣFjx= 2D4L&M4hL4C!M|f U > }gO)%#}O7AEhh}ȵB9#Kڏz6|d{i #8?VƜ#'V"A}/#9=8I`Zô=-O=%4HmR0p J]2"7;6HT&aBŽ``QHjV Kn<+ѭ@g_ߐkKY$in,Ρ- X5s5 &+3NqH,:3{H44c!b6eFwŶUH0Z*2*od I^4}f VSKO>iۘUʌ0Xə'2dzA)Nݸ7 XppdUq,fS{)v㨂<=jf!uJ+bCE SE RL{%U4漭W|=AJ i!TQq.ˑK[VƩH"ǩ[cYoXpz!v| ){`mNgA*tZr$-V/CMCeX >UE '%RC`-UAlebep3,wvd9L]rtVpгhbY@;G&MjEduK1,һ8<[rο|O4 ֤aăPdȝtO P7/ ypᶺT2Pa7qkqY vtF` _D}ں$Z% 4dw!Va[A!K#Pg%IRǡK^F yɁ+yf3M'bG6 XTP0bYcH'8P?w*I꫘Iq9ᆪRa$ 9b$] ŦP%2,,$1; X\CL^Sa ne X@,B|N'2t:4Xt hܲ׽=GQSyzqhԒ?R`q; 7Q*`i\qʘSV|χ{}6O0* tLM,6C72 sH Ȣ@q NqvM&i~. Q,ٰXeM*4t \JUQ+L` ׆m5LrjfIpDޅP~E,&㺎`:wKi4ul{>k $}HAʱ+K`]89B}`ɀi6mjޑ{k,OEC޻ as*$SXJ2y'$9hʂEq_WhKsʐAk@l4, *e`|V6sHԁpהW8"NfzTӊpZ б!͛a/7\Ai|G~o#7C&iJ*7BI7.=R\v1X)mbʆw{a Ͻ1ZmzTvTtf˔m9+N[~g1Z&;$4g-TVP+4 mԋdWU͸9 lU2Be 'yMi7K6QOa2'qN CP8 0Zhx5%Lw!\eswXO|q4uL  A9i,񇥫$'匯QRMm7`v{I˺iuvk~o:m2 a-'.̖L?Kf?ə@Wngs c7S Vpm[D'Qyyhڱo[w&%5ezUzz~ P(J,.vǟrf` 6V1K1iqbOA׍;&[Kq77P,ςq?; =[szs;,+gg<+ MBiL:oOB%L`pJM!&:]Q%R05{N٥^Vt_>&ڵM$^@gEʞ5!hj3jٌl- 7%㣢f/=,B!2tR߮Л\].NSJRSk4fGvT;zԭyt;/IM^6;놗Wnmܮ֙7aq e$ uCOĈau fkB-\j\:p6F8Zњ4n@Gf_)QCV+0 u))0|ؤi$$8CrIva\c߿D"6g6AY#z.ɐb`x%'bQ(\{:5]\:sF:7}jv=SPs[痛msIMB`ҰI Y%ͨp32()$Ֆ@X|DB8g^a Xf]$g3/a}O[B\ "i_cu!. 3`8mju|dN[$SkޱG ֒pgL dvJ8[tp,67-/1G%{J!Mdӧd;( w[`]%]paTٹ\<5IJ8Mk:#\!PB0q|L<'?o/"bUu5E, > [&PUi,=zK`o'qRm|/\,9ׂ?+l n "Ā/Vy1!IۘThQzH(,?_W1/ }eN:3,׮}_:=gg: EKY)Ǿ3|buby/xYjE@4P.ڥ}^T%j#[XRS L>s)Y,̭5k$J UW`nq]`ڼH6=pC w{f[8COMZ9V_wjnT2k6KޗͷG;L6m"'2e4wLeˡ gxGUGL` L%v>&vYW徍 F4)VSo@Ȱ #ԗ6e/g [ 'Bs~pp"w^rC `!t{خך XCݴLٝ= h{3+`@_jY 8Mkn~HV6_ OaLaKaLOt /NU{UOT8 %hu9mYI:ËHgjL[i((@k81t0pwRQ&F"#[I36;( }\Ft$ r~>23,H#6E^Ͱ'HK܎{a[B7IAs<;ؽTZAQJ$U_̴¤BwSCsXj \aóPY..lsc5qO%vW9-dC &ʜ9衆kXbkfumMBݏ /Y^aݭZ:+ͬ%%1EEb eUo2x3oˇvw'^+ K7Qs63q/Rzա5C1hzS]ۯbaAv}jS.WT's>[CyF5L*hffZ!눌4w>cnɉ"yn`M9|MkyƅfJ)%_ΡyVRI8wRQ+蕙<*I~ w(kCKq,ٞ,zq]-]y2W W|oٗO7xi]5 y#/~o~~X *MmPQ[ok52#^xo}VdT Ҿ2H$#g$rӮc;QpS^cXz.v$ܺ7LvIw0koǷ;aje}kZW;ZTw8>ܬ' ,8# Nož>>mZ9*:웚/`y 8zCܛ|e.#-{(-َѷTDNaD${I̽~sLiFY+J8K&67t`0WjKffzxW8_IV}LF{{T+"9,a.9YgvcTv̱i=iSi=i3Bk|%rMY[{2-Tu`plRG.Y^+gԵ_Sku!Ȓ5 ܓنȻz{FZqm+2ڹ'[W`?6:oM־2-k\͐Kf, Co2i{ ka[]w$=]?0羒NWG$^;s./ \ٯIKZЎwVIu n UgW<]?5 S 5ٮ"`/V|bo%ZXgiޚ˅&ߦ[fn@% &j;cS s5ɞ+IbyޑcPXogaȻ2:y5@tb[DLf_rWnJ8[:={y- ,ښi, 7s?yUwi?x7رU̷de>Rq!̗>U± )\vŗ7VUd<43"FE٣IXY6f\vKWi r2lRU0g?G+@V iODN mFC[ <|l*eվ'tB)3%zkF"dW (*q`)Η!TKδpԣP`#a֦jc܋!mm~ayn>L >/ںҐ%>[CZ7hԄKR+Y8*yKQT$\) B>  Y3Ci±drA27o[ :C9MBD,n5VzV'ڧ'v1XL^:NNv:vY1C{Y~i]tf,orJ,,1qñO/ `.}_x^=SûW1bxL1'N4'x=zzeu"ۂa F~7GGy 10熆 VIPp6fόDl*5Q̉%>v ڹV6fd^yokl? $UEI$b،YJ/jVE"I9~ƈ? vĔMw'O\\56m8y1Xu*!!I8[R( !'6sHL`Ot0[PV )!8$gSrgt ̸QBB,1n_Dҩl?NY WQa_ft@~FBª<&Te/Yx;ec -b%mlWj-biRvN~yּ Ӓb:LΕس]ؠ!(0E"ӱocl(`sę/B bz>btjf183)Eehq>Sq.쥌Ь>%p dEKťgaY6KxkFSnTe=>́ gE+5Cdb_-UxjASg-Tڛٳ<̧C\eF>3qfЉ2Gr'#{Sgں]vaAb,1*}AvI4r]w_!䜍5A2*UjXdQwbDO҉ǍƔ+=kjk!ɳOUJ|TdopڊzYC1\( R GbHot]$Zz pf)BÅ|~F)yquA.AyӫPS#xb(E-"bwL%ߝb/KYD_{8iѦ^viotFtFTۮv9*c,]MkӞF0@1&CC ](5$`$Y]4SIXNz 14kxS+Ounٯ| .c%4;HYdHKATy .nwna~ӥc50Y(+ͬ_~Mϓidk`QV4BCEdS)zѨ={h1:XZrR, ZB(",9o:8xғ6ZME 9(׎xCܸa7v[J#s'ݦ!ԎfDxk͔Dpݙ5p6pCI݊ " M6 q:] ch~ NZDWI}&hb"ŋFIR*lT@QJ 0ƈ«)rt8b,3xO€rI0 {mXt$6ڝȻ,ABKV,q& ٛ~uz<#"(1:Ny* ƻdザl˖Z(i%P(,UJ QNtggO\sA+AC/gbe]Ca)΃1re&֌JdM𬊢J vyL Gd$= ;hNE 묜٭՚ޔ%VT~͢v5g.:ɦLxk2(dm̰%Y(.5KJMs:`e B-xR Ӷ" aֱqbKzK9XTv(EDHQEAQAEV0QbE`ŐU,EX B l8D ,Ă ešamCYLHDct\7&Glr4wŜ(PK(Lt|v1H ^MHqmR Z3j$Mـu8vaBQW&^̫9!OMtotqNHZ.uM=2tXeu d;OYR{yGq'*ٱa[5,Pݐ<0{xUg!e2|l \Ka'vO8ˆE+56NlNͷǕXqI.U~1P&ćL|y䙫P[0?y0Uz+ʍ;pt9+@|) GX6~YP!oː6b&\UvI56&3Ցb& F :N8zOCzٗ:}tL0]ǃ0-`M) DB$ Zᴋad/>Xz-h'oڜȻH08HJ sx'4Sf'ڿd&!!{,Ģ)b 6 >+?鿍]Hnj =MoeԽst;q8ׄ8ӣ0wJ[H22 l@ c"H^g^|aYpekB Q~͖F&8`x87f\}MTWJ;|հ͎& CW|ZcǩuOlt*ϧ@֥([>qA` y6#ƌz^ oƾ6{:XfJDT9Y+6,Q .%urf:S5/[-i)1Y&aY_BSE6g[\s18ᡴ.1\f ?v Cjgo]b `p/7 #6oӓ_[~G(t6΃#1II+zoWáa:xڟWNq` 8&TJ;țiG=$ yLC86 68iI4q[o<\.>Qa.|i\t Eս7˾Jk7ޚa^Y~DnTtnS5 hUbf/ ~c=wY aDV"c"<_{a2B yHc52 oTT٣Q}:UTf Q1h?C8B+gD8E7HbY.ۀ/ UEVLJ<fޕs}]B^{o_OY7O~֬ `@JILYЧ]88<ņu/sq ^:E׽ثe.{`V^U GDCi2ˏmY`0v$B<'dǨM dFw[2""&-{;L +K!Sw:5h ltUOIzk{mPC{>eTe"pC?H$v$?n%ϙ~QjD򥎓~Ĕ,C'!> QRnf kT$YJ;`,3Ys O~V]{Wهd*d<0=~M$A0piͿ/V>3_&Uy>jEgaS.XCY/*q}ԂDۮgq=b?VCJ!1W P3*PF޺o@)&[Z œ/40j|Ձ>)f ʇe>DP#z.\|Ś]mU',sJzVeor'fOCk?c|H>Ҽ6)yt_Ge!Eτj}gq&"D"8~D O4AW2'AڦbnMmB. 1%&^mġt[Jp\х -, Ɔ9tJNPPiܝeC l ܗ[^j/õ wK>KTJX.ךݒ S}U<|62N+K=a`>l ^TL֨A|Z :77 ,Ƥ7Q=<%K* i27vl3- (v8zMi+!o!/ S!;βrdHEZHВ1E"4҇~ݽ|07Tq`wA#b+P"Ͳ::UC,ޯZ3gq G?)!ܴR}*OUqWgtȵğyXV}-N9i azX" |,@GngG Fcվ3`LQXUأ}![0!Ao7#* Ꮫ|]7_O _X!H7'$_C$cuF0Xd2S u jf~$K Z ,Մ$J $ēCʼn#Ă@8C7$޳~R|g2hʜ_S٬LNXbAEKRźwhf+}L7xGC:_ՔF }< *p:ZDaGdl8ҭ`3C~ƨv8$PX XUh(m6) }@$ҚPI 8qqq1?AC̉6M6]'} `*~Čtq`X$03)Wjc2$>Xo8N{Έ_Bu%f2O99'ՑV}i!&"DA^V>IENxb32D$R{zg3{3[ltRLUI@% .fM'2Ҳ>Gp(;hM8`s}nip-+E_@~e׳t±  _wTF}? Ҹ >=GXc;XiIꉚGh'*g_Dօ%?V?д |.,>>&6{PowQP#&$K`[^RV8}^<NקؙTl>CEUTvNs-"@ VS`&5>BΊ(E0NmD*%w̓MǟADEkg U{<9 VpRr6\FC2Eą4mTv]aa3,PGZ XOҤCZ*(DM]ЁG,2wLo[k?218Wxe0 o n.fh"$H/ U )tPaG:APr呮sKf L}ad+}B`;f'b9 50UOJ92OC NaJ {5lƒ 1.Pc1"ł* A7> 5TeEPc_yMA&:/CO2(t[+T婕 -ܥᢑbiFNhLseVlP[EPtE@ Pl?QH4|_uwLDDcLG3Xj3L׹Hk76EUC)&iy3Raے]sTa9t7,.q:ryQiI?S#/?OJ+X<,*k- UzF MWbn8~P1Q >"'z xC?!n$y@Ӣ5B)AW;x3| ީljHP/d@t{SGbyy&$B0trJhj#IEb QC* BLQ/ɬAf >Aaz8[oeҖ}=C&[:p ; ma\RqݎE{{~ٖdlTal@J2s8jjKS𫱬yNe=;yӀJ}EH&\X$O-dƺ4JhOGަg))HK)Q`{I̘}0DAk k 5!#jɫUEE ;\ENdFbAHW(c0pZhxS[3iVcdf0XQ\L-IMPi 5(̶1TS5t՘ɭ73jl8F&֕+mv0v55̆ e fF)eaUXn'o鮺7*Dd(h޽O&ME6IT B͸Dp@pm15JcYQشel1#CB^-bi]IJ;)2f"!D9fLnځ{lK"+Y+`lΤ4.9}e}:G;11! '⮜!5. D&|抺%#4PCn;YDUE7YvL7 W,)mqSV͊X!iTOzD4nMކj.Q覘 7˵_<&`(((((Reh-ku.+N\`2Ztw76g{4vg0m;)G. 6- YY̴ƒhooﭸ2g4 ]%ϹªMa;8y]&PEboR8oxUOb[2I3^7Xi;z1P/ܒMbɛ2`kIH͍qZ t&0!:ڦ"I,(MeP"ţU$ A# (-PQsrllfq8o0T"!wd&U\ւPކoa+ &A2[LD L Xl"Ij aJo9` ;4Ittc'K6VY7 Lf ۰H3[&*;]Z5@iV\G;"pʼ2pe~˫T(o6AAzmx=;] \ fB|@YcYR&/y2"gc٪dB0<15"CΘEtTL0T+ ȻyzD &ByY JÓRw9\<4{l@S1ɫ(U0,YճtBL } yi7!'Bn U*2 vL THDFts+W)ohc]XTC{-Jc{6 !ܸ#ђ #9qY ONOugUnO+ww, DFoiI "VX)bC&-H K&]6&M8e%$ (σfvQM-4"R0B0Lh:Hbm\ٖvh+s(Qbo;y͒ xmftǚQy&;#lƛ&L\29WסST䕜u9 Kax 6k4;Z?WfpV8PuJKy2D8$.009D6`^BƜ]RdIA,¥K Zm1cnp.⒢ 7jXN-e0wLFDSB(AZ f!i]5D-Y@Q2a bs(ZSm"aEM-T)H; x|WUy2̥CT,@"2EPCRv&S,ĩL-6 #/BB+r(D-9__MͱtY\CY21}*/ QzGgfp9pjƋFHPG5mZV}.wȩ 4: m0i{OpXǪl7 io jX:~sqț%j O@/{A𵵼R5]oGq4KߐjST3gz&E)،: )!)Ӱ4VԄ(K4b$Be@σHs{qW;OJ9~>0LԳBG&J+v&b&֡lmIb5 &e6.-]mN-CsTL,0sJC@eZ%ƚ9fOnh` lV%7!V3G- k66Q1F!HuC'6T$MحLUcP($9F7tsC QΔ@g NLV[kCR BSɢrf9+T.h#SIaPhaBF`ر| kgu LL]N&&*bn$hVl].* ޢC&&`oww0ac] ܡ0&Y׎U\F$=c,`MĠ"pYCZws N >@ DJ q,urG߯>[UqHLHPrU<ۅ5jALlfE_NWJ/V2 눵tS: UyQ Ͷ"YodP`yN&HxQVln.̆kkf I*$pG-M/% % D>wqh1I!"=x<*_@$GZ%QD8HKa!I Xj@R QdQª(DgW|毲M'˰zʴ3%I\pؽfhO+<<;Ɨc^H^'kfϳLA]gFiǑ̲A\FLElV>)6l/4eT*sv4_LW+yx ؅-3>E~n?Q$qufE?Qf YEXC1Ǥ 3 _BfHQn;Id^>c**) *1 |MsilXoY+>QbaQ7}̞ܥL34ŋPK-(8)L&e@e&bԽKOAӊ,F8=?-Y`wNy~omLFZ~.~/ $"3ks,iJ冱XVwIz쇚hմ F^ tL:~EyWڼ:|V^+V\[^$Rg ?=:=3Ϲ mfTHFu6(! K]{JOd wy,7y *Г`{k#k=M  bfr`пIo\23E}A&vw2bnDZ +K (g.k1D'm; O*]N"g3Rq/Y07z&q +W؍f⑺E6B,bRkQXwRz4f0RBI;b.b02$^sECk6\b/4b=7J8#!v6„ 6{Zap4F&3=Wl;|7cpCoJy WĬ6bHI8XnDmp޷.rP!W|hC@e%aF i07Il _J"VGd頠,PƤ85m*(T(,X* ,QX $:>R#v)܆tp=m"IخǛIdwd>48YObޕgCzNq #p~"b:d <`i7I ƒ壦ifc3GP=91hk[DؐN*58shP< "6''Pg),=8A-Xz1٠3Sx#R7r+hY^`ogVS9ODBv!VDMVȲMIf)SjXbEzH%<2,m8a'N䅔Cs*S(6C'[a'J@,L'J$CO`BTK!=Ǩ [d5D5 훁X5`GHx`(1CQ$h!;AЫV3iX{6y's:Z 'A,8T0*Df; MEC -fFi) Q82qdzߔo=k5+03Dۉ8 eW"ˁψzj/: x4ˊΉB,9yQ-"*0bI'f7&kU Sp hoP?k{ `9_ -$\BK#Q <+ Û Y@IBxnRfDVȃ `ؙX@$c ^+FQMgI w+"(F@Ca%V1pqEXǭ>/s8;89tu"oe$ѐլ:#KhXn|DHAP$ނ)AC~::$C44+ P٘ 1 D!^mݷHsa;:8h5]2hsM-DI1O 0RlY )`r=7Iғ-Mx`):"RO$&~H&m,0aP#yҰWIœ/餲f@2d@nFZ3-ӒăȆ FǍyݜ[{w{W|z8sc=;<#0cr:30 saxИbTJ!̹sitYbR]k IJrI^M dD1zgҘlu^"{>`|b1E ⎘ܡ H@DzLndUN q,7ۅȲC72NIa€Ft9e7 NA&!  cOd-}@;]C6f08egav# y AD"HXEʋDTAF ZV,dRJȪdbE XŀXdy;Rt|߄A(w+I;|IJ@3cCë@S1Xv$x6!R̝ooNWs4ofwIٟT93EBM0@ dR"!i,D*-oՙ7-R*^Ȯ1G.}&9 #&A$ds=Z^[ ̻[ @(~ =W| Nc7{* a:TV*E^線{7 IɊ)m NWqvo6)o'8g;q=_CJϞCq 0 cwWR\ȥ;*v\GT&&tR1FmpuQˊz6)=_gSԂ*CЂ%a{dzhbwN&wwNm҇@vqI6i8 SdUgŀ'2gRxwgшCYCPIڇE!9N<$ 0ۿO! g9ObȢJM$кNq&%0kjpzr ZB6OIT3@CL^䞱d݇; $iIMz8f b»$'CmS 6B敓dt+;XM ;:Bpa hj]"f[& I(s"غ_*5ⳆjkB%$`YMz=ġ(R)j)щz zE!=3Ph`h5flFbsd-53h7HjF8bǺ|L+3,S Y7H:λ52ň `dydC | ]*d;,d6^Wlt#X$Fu"ʰeuzkZXT8=u{Ʃ38Qe;-ó;8XqE:Sړ]g35a1<$N5i㲬k)7Š,і)+E" ^ʑ#5Ǒk6 ;tg tAɦW:E^!ˁS*B{+8 ;wj /YކFh3p!tl0w 8`ϔS ueMT"p,Rz>]"(t"ב;N(is!2V$!11uwgݨ X{N42YJb) FxXhiԇv@jG欓IdCtoypI/?>GvՑI0J+ \MPTD@b=|!zbC7k!@H哸TaxlpA]Z6zDupwXѾk__fe̢͟B|P$ oْF0U)6'fsd~ap:0'K&g@2!*ْcrV4et4~hZf z ySN$TtAX)~ +׀0̀tu {N:RpV0;;QaDd>zFRPi tcarH-b#H1bS2"@Q4b<)[5݅N,# Τq'>dT|2L).kC5nXPgA߆&7) 4œ1I+vD=;H:hL A@58E;o H,υV;$r.nEyjjC΃L$WܒD:d xa>y=,Q^.sn: oL!߉#sP1MY%p}sΆǒ&d<sJl[z^XLCƁJB^»CvNxs8haR q ݂|МL:tS;FhKr,aS(I.D9w ˁih06Cܴ.Z$ u(x8I[f@fU픲 A@AKB,.SH%Z< < )oEzND"Ȼ#h"duELxIP5@r',oygwpR(n=<|HI'crxJ;GeZ)".DrbETCv @&IpAkCbN Ql/P8 (;q*)Ov}#+ #̠:aƢf6"N30`Q4Q9;~HM |$qu/)SNz{1~%JԾ$x[yE!ejJO)H^JOWBSPp'PT~z㿙j/_c :ɲ? UMs<~d pנgjg*0D$bjL&L+Gs +pY9Lliy|QLW+f]Y->|y_}Gnv=R@"P_mAeHk)X}(D2T(A~Epܠ&ۗw8'ݝcTY^ty^'$`چ*PTE61zmqN!Bi!nĕQbEqatÙưnAO6@nӽE}=hP`3Đ(2|NnׄSŦBGi:"ƶ-_h1X!_R+Z_aRS#4L}Oc,S:h 2DPX EA R,X ;@=+!՞WxaTXr"%䊇 mcJ @܃̅E_ K!*pdI9=L'mgQ!Z`sf '#zVOOV&!0lp1 ,F7L"HW;A yn~qx;O4tVY:yx}[vlU~~_jf|XDF3 []MfMUfc;<,0AJHDIV&4`|V,HN QF;@j#) Wav׺CUkr F90_2 0S&ɑF؇K0NikɆHLdYq;v7T5XMJRlnM*IBxt+pm@ыx)ݛ PU;C‡kRɾ!8'ͳ"I'tNԾ;;'XNxVq@wgdf9:7NO'̠t;r(Iߊe- xosI y>m nRxRu0rv"P0MFT 7b: (0l>7lH}CvRn!Ä$'RފO3A`~3_Hl,q6 R,&L&X,jP۳'4^w(745坴C 0†ٓSw]RWtqD!7M 믣77!և5HGLEMc?MC,# )tK_R }.3jn×b#ჟ&S(^$]:dmg=M09;{۪ $ɉx3m^T<7x%IҐۢHl 0!83w)5PqG)M1`Zqd)V ;/}NIm=qxPm0#͍.Eryo?~m_osB/oѠh1N"A0m.#wù"kALVxH s0ek\Re` !ay12޽G}ι.*@!s*@Hb:ߐ1k"KޗD7zaz7LºfQ{lLC $P{\@.E>/}GW OċtdI)Q(k$?gsR^j%ϴf}.G054!#G8#M7{ GY[CX$驇cMXVXɭ (zetfg,P44Ht=(>jq47wiԹ/a9?7qh`5dUBh-|K]ֽƤmj;P{uز~p9eb^FW\/o{p=Ë~N:esszS$cKbbvLxCVϐ Åwvl{Uk ~c 鲗{C[t O>>TXw/+w"iM=|x肙89c$/3 @m6PϿ1֓ 4 Xi|J|RznW·9v*^ $Z:EDsk띔naEʳ.њYc4=^4J[E3woq?EL#Z <cjа!0'.( s A0|+ 1NJ&Z#@ù9í]Oꯥ4f 4;RC* M7f݋{r2WWVc+ꛑ4_-NPS\s&oSNO.ډ-:X[^eiV^-yVIw $y`LJp18L4Ʀe%u-㧚hdW\W:SqRt2 a#g: A~uvS>џL`e4 X1?Yt T>Ox'+aakg:{.3OP*+˴SMfgGzO^stCA NhݝТha؆) m~W~ux=b;#d.ٚC )&vu˧ Vej0v Z ZՀ3^U/l72v&KSrSP( S!xP@%2:FviS!fdps2.IVսCrH'S<]1Yk5DKog|٫[YeYK<)tzt[$ b[,m2!{&0@}} x1?b )CXJ~*}hݩ[DAL%'Y/4l/V0msʇt\_E(X?Q}(Z A0z=)DQ~[JZns"V>zzkGd0 sniT$ :^ 8~9 T\}j\1 (4w4=, 0<~ucNб\ꞝuh )pskJY։qz.r¸ i p7WSR!)ңQ"M=b A̺hPU<\%^2:zfwѦ[,92AhWꪢ';KЌjf^ӂq@ڐ.5K KNpMDPG;3 #h"6mud" h(l㕁wmY6I6 ew/ưU|sR )5V[^-vmAp, ]TiQF:)?BrUU>y94˦ =j]cgh` |$3-Lpmdљ'65:2;a=x~b/><»Ǔ:At>.gL eä+hrpQVhW_Av E0T\^ d[P+vٹзw3%H' ZT.;̼Gl-=]@X֌3fKϯh~0EE>7#Yz.nx%@>HQʘiAwi'r<#?CN{y=NJU^Ksp74uK^7l6v9ϳڴFF_:W^)FQBny~#wlgmyj}طH7kӯ\pk}Fl崿 1ʒՊY S1ڒy ?jڄyj&.a X)F14MZԍYӊYPleXls9itc.!=$ݪ +-\kaKSŊڳsݗ%{q2ٙ'_\5$`Ul5iBنVYm jmVMrI#ň\@^ gŭTGYlX}j +bM`KEA J3jk[4囄،7~g>x\W.ד|5ߧ5[++fD(q B:B"ĪPT'`')>YaY΃,4unrf&P[ e0'}^P#5fJ- URW:Dٶb"esTt^~T1cn 81nd}nv_I#4Zt')=di7,^ybxs/:SwHmnHM 0$0sPx]G r?[J\jDe/peCWxF>b#7iV_ \ε''oZ 2T` r}cH8:/QPP2FHI}63_OMny@xŠ(zǡ"?3]-A0BP+$cVYG#!XtLQڇ%s}mI?Rن5{v'".u{ __xCCN?o]1- iH m?Z9~"E_qцt% !kPW_5HzZ´ش\Ҭu] rul9tOG׎f^S&{w V}C8^%Ԡ-1[ \hՕ,ColJ$vJ rV,5_G}J\n}G^9ܛbi)rCێ=V8e[#[ HHH2 >c=Z';,oU%SWy~,Ț'=d_$ ut )Iĝ6A;dlVDiK*. ŀoD$@$U ޷W-g?aa63`^5|>&.HD˴r, Ӂ[A\H)DH1įe89l3OЁ,6"f[CXj!irNgJ;hK? { rd䦔GyV>YJ-gN6`Dze7sd"AŒKY.q7E.U ^r}R~Њiqw8Qvr꣕"HK"qv&;k2գ=;a\#Kdn㙾qc[sӮ|~d]JҴn7~sZz1408"gpsGi_'^_@a5zok"i#lL{{}v]M7 X M]5h_}Uwz͟[V X~D!|\ @")uxxVwbs_ˈ; ̚,֒Ĭ "Sh;/ؐxr9Iq-Hgd_Е]?ùmx)h\WrpϖrrNIz LC֖^ ym6nk1;Ca28\8DjyÏ4yM5ᗛö hN6tjӵ50 scY*9Nv&eϞvgdY[9\ݔE`U{WٟKLz% KRTPmɗq-Lsc?W =WU3\,r|W_tZTtLY;4}Zo-zOaޯꥲ>\` @f$xyS@!dR_ϊ)1XѠ4 JV_MR4 pxŢUQ02_ϸ8XۏR:0L-F1o.fbTvpB2/fc:2a`q-2P E%R&vzH k/^ATm]t@@*Jq+lA $NdЙL-%l{jI<Lԁ\.קCKuёmPLLߔ#9`eְ[6!*Ɛa# 4cMyšO` #pђك*)RDN~4iw zb #{=#!)?u%],ZvPV`I/O}z;VTrG8 yw q'5=~5):΅ՙ)85Zh?wko]["&Ó+|3nMz&/%ȃHhID7Xt+>keg17ŕJ+;,K5X &{>uZSk7N>k`{eqkO][iy5 gr971?O㦪&iq\|4!w 7`s {C_+SRZfR5u&f֦1sʞj0.(Ns[2[F-mo"v^;Z,&2 EwQv&x3J`Ѽg~y=ͮ7 5ɴ]mSw)݀)uc4C4H G@(ڝXFrΝ7?/% RP0a6@ A '?`ҒǀJ)^MM0(%Qf"а,yx^V(.qYc? d=yEECH9Q7};%/[tW9ɢDF4gv=+s;~o\l񷫳,lXk\ wm߽^Qa&PRKl-ƝbGyTr iNJOp0*{>\ǖ-]3}[uԉ|T MuŷeJ,p 7Ώ,D맊$?& |fcEy>'S@d#LU{q@Ki]=Ot𹓖< " _-ץhrSw_>hbo1o' tWpEx]7\{nN:V ءp͍ujs/<[EEɥ?Qa(!/ǻ?j;Ņ[c0¾[hT6+Q]۩bK]o=h0*Gyb1b~j_ %]a}/M!r+iM_~y9$ddXΰä׬`z3sFϜpFc.~{+y#+?4sM*4쟵zǨz|^琷|O@Sp'< 怷q٠nkE[ ժBHXc!(H&:ʟ}]|ͽv.crl{:z7wpMj q P P/Ϧ_eS6}Qa`p0 idy&g"73/+۬?Ū#.᫢J7~-1"^0UV/4j$UI]?)H#iܚJB HmP"Q|UV7}$8>sߑhڽ)6[FŲcG=%p`'\& t9DŴUE@$FS-5jҒ8C^(6p&sku&I-h q[yMOƽۨN!YbK3߲t̬Jq+ü n+vq@ښFPG&LR} N~UrVt<Uޚ]v2N'2G:u}ɉ7-|8eCtӳ]AZZ@%ETȫehd+c"> tkam_ltslԊJ#t7˙KjỀ?ۻd|J{vOt1|٧k/Iz}tAޢМB,yS 9=̛$jJD;>P^OAȂHMPm'(&o 32uRSim  cB@DؐI{Ud֗Y .פobB v׬&^ ^JteU_He57CddQ,Xߪ1@&x}߄Kv? U]xwU$ie`Êg8^EDz]>nۼn,g!T1@SmDfUKh\Tv2,P EyǴ5[Ӏ`b 4X% 4AB$SX:'q1\CJi ?h-icH 1xLsG};uO|yY &  v&4Q-{31vC8 Wq&_xܝ<}xP,MAkMhh:2Zx`A tqz7e(B?+[7 m~}Qy;ePV_S?#`|H<|%/>nl RYf[g SYK[qK$i)vbͺ 1ឰi2xXcסBz:§5gY nryOfBY)uxz]WGtt^ s$)2Z9MU'4˥@FN`Khͥ2{ΥSg8" Q>N]Y:Fv/_i gd7EI|NbH =IT?J '@,rGa` ޗ܁v= nVa!k8I0Hmv2 nmeAa~._  {oΓfrar :3t$4N*NLl ܻ8A j{)}*_Ke ؀[.HQm(s ާy>ٛ"{:Ř}I~ΪS9-m9@`dPXC Qٱ4 0@@>Oy|_|d__BJC,E*!;x)n.TDR4Ѱ08Dv,qzFONMs`^Q#˖s l ڄns1VK޲ӗCk.[Nlm,FCʧ ͟`폱U!8zO[Bmji!EĕMRCAl$Y74&4.gI@/r֩r쟆8QoOސwjNK$gZIͮ3ބۗ3vS"J88|Q0?3p괾_r}|?A ]y-ڐ_RRcMg[DM3 . ~A>\3!KrV{->w2/;cZhA`PF*,IFƍMG`ηP8֐rBV5U[g>HJ4j=0r/W%^/m{y>uK2bɋ,&ԕLxYj%,|@hEJӏ nU>Li,ld?Ertt 1 ۏZ?RJO@8J,::&$I&ˈ.c)qWEIR/mYI/}I%$Kܙ#B0lλ.\j,YQ+ MR xQ4U8@(Uўycg(xf$bsOOMp^ww[N]İ(]{?}pKӿUTLŒ΢Th$Rw'H~߸*,WIdE q`ɸ-m@Ex쑥R%zESub$Jx C jS\fa 8K='"E?o{?Bj~6R?Ket5'ժ߉ :@nu W0rn6{IHEhF-* pJhTVH, D#"ȉXODAX? 4( d7e@R ΆI{2q,1AŘ jĒBa (HK!Ġ?!%u[8m?˃{syr!xXiA՛]x.6\6L2jHɛVV_,K)]x*7OsQ0H.逩6rusL:[SXR+ 7Ogq$i^g:l8,lx `Ub9XK~Z]&m .ikNO\  UtJn1A/ ^b";LL3uof^}f0 8S|׹ q-'swW*5X2]Z884s j yƈ&6oN\kYPi XYaHC,K p!.G;dngFow톒H.0_^u( †Y{ GWq,o5*lk9 .;6z%4͟/M.38 Na҄^3*Wָ]%2'=WNOgM:ypAVQY; =6pG[U _՜%ǘG8<瑌h2Gi]cJ AaVNԹC T0OL+y|z888/F.Min[L~r_u4'za&ﺯ]q&u)Jnި9S}a|lynV^ .^1ᆍ N-se*Q/S)\l8\"vCM!]"*<.\ILu{M BW'Fv<2y|E[_K \a`HK 2ST`%~- if2rFŠy/_ƽHn#ê'ka&}^^\Aq|Ǥ'XÎvklnNyJ2jsh%'V\-fgHH Vf8§% ޏGZx:%VG0}\??o١ y~:f }E\R2 J%%7oq'! 4lqL hr&}WԌ_} yXEH-Ye'1%?W쯉Wr!qU@6tco>vBi7'Dw pVzjA,.!.D}e}G'PD iZՓTSĴ8Txky SQ}ęT Ѕѝ"6:KW:u^(h/|SKn W5 ú2cӱJWG%gҊ8ȷӑ^:#Xm]"꒲bꅨ-0tOEZO0Q4`KF޵*`eN&.S*\#n *S!6I׽ji ˙|־ƾ;FbMs~ K*u);4!]%ƾɐ$֫UJnҕTˢ`c4jY:aTl*2a" ,Նx&gzB g4x_RN XIc2ǃB2ׂ-v)n7oEFgei>U;5Qu2+ cF$6*Z+*zxcşȦ<= 7gn:BDOh 褈᪔0Fksf\"jlc5؈je* tRK4(`Yj$Z`GsK p} 'Sa/N gFp/N?zOf$:hFaV-ZQXURSGG :6"^]ap01bm߷6{RJlXƤvVf"Ж[X2RqlgaW˶YY1םCYNi0GYk[k.8pfnvCI D Ҍԙ1$|ԇuť"3Hpf9i=M3Mr>CXi䳩Ms4cn題 >{1= 5iIΒD!5.dg@ #iT ӳ϶]XyY6MqaF.9n'bU1g"|n;MʼAOoJ%H'zi#EUAQ(ytNweɿ Z'9{/MkuaGp Ǯ Oz9(&΄D@b+|a>TuLC1=q"@D{ iӏ*qx"nq!6t8^rᙎJ7IP>5%]X nL[ 4 xDŽMс-=GVq8:xh%a_jV0_נ.@_ C*FsmEGPQV@ſdÏy/$N6@Y!$hI<W?4ct>5̦^'a2QLg,*<[h&9֘ "e<٬54t!^-@Sf.f2G)Xo/f8j1A\tgH^4ckfxّ}qarh!YFkWlv#.ؔf& kIo'6*`,8wy?V fI-׳:4O9/KZ#k{?+kwjMy|>,~pfOdU19 UO.SK0 At1cV֓ |vҺ΃NDTRU&6#9&!XCQj] Q "vH.>§&4U;YKg®C?w;]\[f* PIIOϔmHDAx8J&ͨZ-Bʯ]IHi8.p]42 UDYFޫx?4g?cJtdkZd|6.}TmYγc5CIեıEQKkn4=]R%T; K\JҐf$1[-/ чZW7"3 ] [@$6^[ωU13c/7Du2Gg~T'oVUܵP'}-މ.N?=̹OA ?qBA{/7aAh$+U{:S|qƸX^cioЭe\Va2rGΆkN?kC+e7Zqj3OuK6nᎰ0Wn65X|;D=4o _x$a>Z4@6o^ 9J?Ţzwzm?Ծ&6XC(,c 2Y-Д0B/O !r5/}[NXMC1p|?Qq;w}bY?7]?fӼ{w q`_sSYJd4)äzLT8'x]2^c{);эI#U9~yʅ[ئnGH~_);Ni34l:ySWߥ y?{}hR]8BnE}9u]srnݣe0|bcϪu%;`W\Fws/s{^o.~^ SMkfuٕ~?!ҵ9mQiZ:5\ |f,k ƊV]5p@QTԽ+ \uSWEnqؑ"B%]~w]._ݵySn_bͽD}Px;Ra~|o֝ ^WN"/LIlؚL=2>a7[x~;CB%ww^:fnaoV/BYp.Fi!P bc+H{mΐ<HT)[MPғ*\WQ)`=:2#/cuxi \@&|.LL&)t3ζsdǗL$Pm T󤿔fﱲ}鉉X Jk* H@at2r wkD78H 2$O{4StT?}ŒFIDaH(Ȫ a0  4=QS[TVl'xgʂdf1}LUtRi(ޤ$$ۂVƎ8E"K%Qt2A(mz.jkykmQdYKg.g+ѩ#8D5lCp'_o؋ -0&>eB6>8\bb~Gi)/> <'X O}UE9bS- o jGɲa1?튂̥/nfi4ia{zJQ$tRUfTuhG@Ҫ5;r\mCoaCauSE! dzD$C؟,0=`ۏ9 ?1yo|9gV:ik/C*K!Bc{iG?/Z0H) ( {}yCxiϾqz/ȟFoʓ?5.?CHqCe#b.ϟeP|\ ^)\뤤[:H[gCvW$J~Y?{vn&`#̈'_:Cp7-[~A/yy>QTjr6!ݿXs0ǼS{ʇ1p^3`ԿRyh1!W.~-f$FҬ3zq}'>ZڛyJv=uFܻ;5Ɨ5ᴰZF|2 Wtz 1VjF&šַ,y5%=&Zzm1'u X蹾{=m}Bum-8][fo@|㣡?ߢc?(ȷ7}@78=hQөwk%  KzK}?kw%y&q7>5ITj\pRQ*7 k;o \R[Zfr@;pj;qc- hrE~F(y@Ɠb0خ 5-cc9A xRbRqI37 pt(58 ?=xo!%+Hc[5MStLN}9ykBkV>jQ0%k0%i5NGWbUQժvXOoj$M6 #Fd[PጠMۘ`;r \JvtUib8%&2L v{`4ƙsa1Qbml_F^!#7S 5n6m';9cxԮʨ c% `!ݰB[bL{L͊kw$1ݔ6]KtѺ\e3P,:%9>`6`|nyVd/~ќ3zLFYt *0Mn#cD݀%}C1$HoѽPK]Tsn6 *1I ebBM4¢-d|mS^S X,mR)GV*UUk޲1wOw$b%G&"׌7 5-+]-FF\$H+9&@Fa-ÊX-K) 1 oID) ݳ9)_Rd\ k7,[HUHfu(MH@^e@\C 51  6q#T:0dl}H7:$P=ߍZ`칛ThABdq&lѵfVodSƒnmJ CTgk-nk+^pP ]EwF} tTz6R \xqT4.g݇BxD9",IܾÉ5|^Ag R6 LhR֢GX7K>!cvDBJ ӊSrוvf^dIPܙ9[k{_'+PaD%VµDaGa}:@TT Po i;-P )t&ח4JkI.C`ÇiNv#;zI1kMqu$F'W.y4Xpv5M͔B3@L[3ՋT.аٜ "ScCQ0ˑB/ƀ"$. mQ9ь"Y˂ϔTy,Wa,&aoO<8Ϡvl6؀R Ewҁ$X2XlFG#2;$9 qwW7V2u2#wX@R3He a(i+,mz|6s[<鴃k\Z4sk9kUn 8[S4 4!by4 gq2ouqgR:ݵ $@/kzp<J]@}u^fzM7059Җ|>y/Li$6&j5Oy 8Oii~dmL?5C[è 6q&Zp{3{m< pبޠ`dO5Y|Z9B[q/oĦ*·8nC1Zũ(%5Z3 "..xAQ`BqMns0 ƕ۷[l7`C!2q0`2CbQ1kLp7L‘-,uA-nvfO JziuxunX+[˘5|*\&'PP3efedt]!E#̊S4VxWT S!@A0 )A"ל~~n8g|.d _ y+][\ ^D\},wE;+`.Su1B:OaΉWm9,T1\/9 Ccy-vv33h?62mV\ez%fXs>hvrzJ:g+֕)ɘTAPb춙Pi~/PUfJ&A1>f#&!uM>c# i_Ex,ѯ,/OJf $jZ^cxdx8 ו_2q~W'cڇv1B;lUA,D`G ;z53k$?Wݚ$vPAy;htY,ӓ΃V׭AkUΕ e5PtC (/"0`1~{|K4d^I{BO4y]~Nvz|Y4,c'5")eP1263/9-88 5Tf\JOROwd{ύ:9, #I@0<2uzT|76q3ˡM(+1q}M4[ZjM sr `!2u[%J#P4>kt r?_IdH^mi*ؚTύW]9$f'6׺Ev KݟEXTbT+kXez5ܽj,yfV`/-:(Xelݬ [f0Bӑ}O1y߱.=u|"$5}qfCϮAhdWh=x "X}Ts)6lF$uob%EH$S$D~ teDqG)il 2EK97 \WXVփ]d>(GE\@|թzMɢ] B>rҿ Z${zJb 32UsLY5եybY:ķ9iX XVmpT 8ffA_RWJn3{{.eGJ ɼg^a4 tm4+M(_%T`BYo3FvaǬ- +Ě*K$.Fֆ% d+@H?N2,iΊοZtP\p:Z0RD ct2Zy: ->odj=( /NHU/?'SPi?/eo6o!iHC(̠$ V8=P ]>zPO00حv/}:#ZMXo#D3Ƌ]9ͷkc g?qsq7GH-{A|prEǒQ!{v.+a}c.\򈝕*PvϷb&35)'蔳Qn:3r &k9jl 0JI@Ewj 0@]9}kWExpu@ٴiPJrl|?7}{c8REƈ(W9xj}8!._F>5!78`Sh8 "<_"}(}h-aa W6\X*8 T/+ȮT  c5A3{ BYZu>JCPJMER!3YdDQj5 ]eSc뵦NU2thay)EAxq};>9aiV?2kXes=mvoQ?iPF߱띨rylF<Ԩ[֋vUܭ?apriɤF~ mTա (M(%}/`~w|~h "G ]4>? Z J<|On'{-6 79wrwUK= SqU鉢 \ago̫Ø6(~.>_)FZE/+`QMa؟b:БU2@0 nwv+˔"Wo *$aQ5Ay}% ^Z Ծ271yPwCđFac3Hd*ﯞ+{y;BմjK*VQ~F\sT1,eaDڈ47`0!l:Q* L$62Mؼ4].Ee;UHbTrjc`{DB%;gaO\V g?NsZf>(wL9@vlޓ+𴀷X$B d B)ZV&9,)')/TJ":fk'tyT}*l)V3^|Fsn63z[+8*dyi]Ւ|PmvCoѡwd /*֡7٬;`]wAIfZA~R}Ό .HljVAAB( DP~oӣ@ 3{ "j)we2TLIjALw}ઙ{׭cw/D߸ˮ4(-"-[C a={!+I~Wbgev(D SҐd~NIgM4f 6l\%}! Cpn%I$Wpt][Fa2G2 V>V)cUW?JetS_sGKZޚwae/xڣd2le`-Pn}*ɬfco* ?]8iy@Y̬$wv()pb-FfpH/~(|㙅o"쎚 mK{"jR^ "H$~\gqo> S~Y#;7==ЯvӕH ?_*6K*u$z>E$3ZDI}ݓɭ 0G~\7eǚUfEfci354NdRPwCpCp0YxOV״UOCsKg^ƒk#[ SY{) fP0b2 4o{R )> GlK ʖz7te1'40eytv[ێvH[\ |+FAסw_%WA0?~r_< S?˜L`ukX %$3,A\YGj(=xUd'S:Yofķ?mⵟ>2:@K:,s)@e!̉]DʘQeCu/j|0;4}dRT,#E?0qȌI&0Y(ƠAG2*ܵa-XE$+ (Ab2 5>IύLq#d $X{K @QB\1-&D08^+5DIn_('KWY :h&Ο)e?̫zУɤbܱ"eŪ~sݟrz1Ig63}E}g`[d3M@q]ȒX47<DQvXm B3$1Xc=9:,5rN "wgFk֟uL k/dS2_R.G mSy {G~3pvt] ,0Q9ȓl*xffS,-F{Sk`{7nrJU,o09ؽk:pƧ1J uLd=gвb5{ῤ,{zͤTs$0(y/TA'[PvȴSzC^VP6ss$q'\MoW'q^whreF?]^r9";z7w!h}VMhN X#>zا?sV=8 ,s2wW]!7Mu߃ln c@aZ ;}aOhrү{|;υNmW< ?n! ?"|wt, P߲laQg_~&-R P[|g (Ib|٤40a [x`=̓Ѻ[^ZQnH~j@6X}?H䓦$EFI;7}Wd2DިT?ܿa|ѿ~]~v8R,Iڇ[C[ %ΚY_թ" 5DFG"d ú[Hwk? >㻟>j&ITT}3(6Z2S*PeJ1ó~ mUHŮRS k<41E>k1cK?ҥW_s[ 9VXI{߼j,)HHM [;3dyU0VxR dg & t_I{&U /Zs_j@F}FʹffX8#;bpxe Uq(N!ՁIn/BO4\kI2ROo?Qn_ܳۡpS{A{7 ?>ɒ"[YMTӧ&7->g)||a71lD*"+kUjT)mF.,D#6VdcqXfVz6NgrErMWe5BLVleKe:*6,3)P(Fڤޙoza־GW`ڮV"G H4[h.ѷ ,Ky|zB) Ơ gC;DH3s8J@,le$X4*߯mN>Gtac G~&]W_s,yubު t9֞94Fp%Ii>pH=@/9t4ϰYfYk0CP?xLi}f6gBW]g 㹬+kIJY-B;YiZM KMn[SRsK &@{I{ @PpMx65w0Ǡ:T>#ë/>} ;EM,HđT<%oa3k3t 0bA-@THSr8Ed`$jh$ $>&䘂"l CFL93EQ\6@7 @rq ² HӁVd 2(N\? (8di %37(P 2C a0%666)0*X,a"”aDa;0 i?X\ +sxH6@|KCh O&J,ĥ҂ Ykm-wCd}pdx62Je7 Q$/CJHDJl>MC$L[Sjmp=  C0ÑHQ A 3 nFg. ˂-,3 ba ~9q 00H U lJL0̅Da @] eB5f02/rmcg0RA }cH7F *4aœP_ Iޞ K]l1 /Y ӚS]?#ޟ(ON~LrxӐ9TZzQ3"1A^0T?0+g@<`!R6ѲK1s2>zr]%c,rm wS5imV&{iH h`jvkaU&s}/p~tK/l 'DZzœD6CO%{Mnc$E-oQ7r5?2˘3pdD&:ӆk+l.i|o>*~QG=|qI-Oޜ11]p˷b+X橳jWɱ*QȤ1/#nxKȢ1s]Rsy=;̟椢+.0'=S+ ŬKo6j=ӕ-|05FH%n8!{{y>m K\d1L{hA"ֲm[ẗ́혡{tؔ2SQZ[SR/}-\rvȻ%%F+DBQ/A[9 IRXn?QLma:/~(:ƙtN j(ݓL Ex\J_}v-3qmlZa1|7 ^j-T9Ye*Aza׬ֽΜ_iL9A]Cǟa/_e,PQ5[/ x@T$LZy#8kɇagɉtS@RgsXS°pܶ$ZDǶY ]SKx4&hX3iL\ f(ŵ4(їn3fD׉$CGi:NpB; LLDhBWK즂 AiO><z/܎tA9rq|:A!$tstx'XB/3@móN-8)&yv=;bf(īX".S}1A c)t1 [#AT8S2 MK[@;lgLs$Kkζ':ÁG!DJex])l']3]҄R'] "kZ}sʜ JQXͷ-0i@8XA{%A 7|8KY G?X@ғ&hفGͺ^!v{@B3vZILcCƙwVzU>@GTҘ;h>սtDe!$K@p(M n1<Ѧz]6Zߞg%E{ qtˌB`r}*_f\󓮢Q0?Ed/~|h cEkYۓrϘpv,Ȉ&B!9hdKٶ—!(xϭ % )h,)^~4@&~A#N HL!'wkϑȐظ]>4D{xٙڕoI`w{eAt&u+s>jr>Xbk=olۣ%M9W)T&@bYsA<ߙav Lk|"6iPܘl1~F5*X0$4^ȅ2eHW>Tkil^BZ,C05/>` 9h4kco㎕784g桾xcj}z[ڤZH|)Ԓ~ \5ɞa *[ uZ V^j-͌Y]c ٕxk59'!vG~ˠ"fvA"CzAL.ns5qWC-tG47 Jp/2d^*d'aLBG<ĿD1~UCgeo<7UHSphBݎQBjfeLݹ ~L. _nt]m/83r~h5 x mƒ Ik=yKr6اsYJ[⣞N3b!"C_Jܛ Ҕ4R!IJTvj,Z~W)9}Rƶ??uIlè8[4b덑U+!Iw|w}ԑB)afÝ{\.A=ZVw 0_%5$&{*ܴ p{|ry|Y ('C2sbgcc&5x?WRBiH☒zP|չi4F<7ɘd-d@/CA5Y3`Ƅ,=gE`R1s- { l,u0čMR^\cM_N?%!/0(0&h66:fužYSAl Εz{!A" "|sH0 g0j[dqx D\{J)Ic0ټvÃXs%ޡCDH?ʛh! ҄c~sl,B Z7]f@i8k{v 9Lr{514bĄJMn-kSGx'+)sĥHS;yVK ɦMsD:]1T$ON,iDLIa4Fɬ2fef3FxJ],|ibfDjxq#)ĠRWJ<啐kOdS^u>KZg)>j5wPk%^sK3l ^-fA_Ҭ6_GNbL}bh,Ș,bdys_uW'}YyYJ0ĐoS>v1ZX560}+Jڭnkp1~kɵ1ȑW;MI{2<{aZwl/ ljilhy񙗿 gJ&Y >3<;PTڗH$}4Hi3B!?:[IëkG^3C Mmʷt"sCΓYqtAyJ"jeyty{duq a`CǴaåuZ-@(5J0<7*HˇݛIޣ܎sIᢃp Ȼ:ki0Pm15 KW5G~wq%wZ:f}:== ׷wBroUxɹ~@ܾrZ*gt:Cq@|ص;a['#49OHEF9Q|[9Dah\9)SY92ٶ07nyVǵPl[yJ$3l}B62D JY|Z`JEd 2^0cѹe2E۬j qEsR%Jɘb 8Wtl\\p>NۥGe"c\DWtZ`N|%(7@obWhwjn' Qu&l-3KzqeQx({%~9Q7B"Ev6 PJwܰ &A1DU1h׈ӼrmfjffdEÄ<}?Gi-̆23 f0t{{+xU7W߹x'rV^# VR! [H٦T Psr$MNBr`dA(nFUwJAFn#P1tU;qv#29$pt#P6MIГqAbDD X`0QcH9B  lT`F(1dH# L0`bq hD‰8"!ü*!c)\01c A'ȜdᙋRcmfs Jh5σ07'RAqnH79ͰHT'{9vf$) uM]gucVbo¼&U IK蛽sjGm߅ؚ\r/z ؃qmujJ+-ݔH Yrx췺ΒLnR4} ߤNdAȖ{WEE6e^NE9]~f -9^&Km3e C25 y, 8Ƌ܁ /jU`ృsFgJ,N2H f// `W]cR.0E0:؎ BhvD#;֎Uţkc',)}y%jy5)^d8.QgӺW\JW_5)dͳO%7ʼ1sd.5[f[rv)uHumzwgr88Zz8㥎u9#lwָF,c ,I+ 11?|f|avE8baz!n9ceDގh pШ#<..AݺiK{ *;. njaZ4IkYl 0Bqccm-egߎ!4ңjکR'O[ސ~d&Yk͆).o>DNaumΔAYpd`-v$!12tuZP&Id8OvDmV#&߭Xe<; LPk+ėY,oyF/A/;l=EӇz=7<  UU&F%6 $MK ` %+e Q2Y վ$4,? @TtD:X b HOC=k_W fg>Ie#qoRF8{АlFF ce E1@qƨx%14]P @|#m{<3?&<닩i0|V@@  jlC.KJ-`~6H2SIGӨt!-%\O{ G4P@y.}ջ=?_6ZviȵlTl~5-ےHϡD4K%اW?OGi{"Sw6uN N5 9)]KiGy]G!\h.2- ,0S 6Wߏ[+u72ZP=[0b꟒9aa!E,Pa@^=$HH`%r hq,?tAHR`>Jr~7BBnod>E6`&̦ i o?&1~O߮~?q9^_uJvxP*(T*/ɰ=.P#VsѣPQUXUz^~zgkһpYĩ>`᳷AaMa*I>2@Z>-id}|UvGJM{d?[q%}v\D0D&G\az*7 ''먻H !!n:m4'/x6>Yr;?t),[~Q1 _jJgjim{:30!TפMb]\,yhD]gNԅSGx 94Bq}VwS-CkN/+ 4;z\aIYv4g/)1覡2򨆨pR*#kS)nѦcYHs"ڄh|Gk51t\Ŋu19$=T{YC^+NoK ~"z3ʻ,&|l1ȂH4K 2 {{t7K{bqoFЕU!-A{K}05s{x Kc'uhQr`k}K{Vk<4 /$k1UI'ƀ q%\ A`T^W}\K 1?#dC4xxzH[<0\ņPޥA;;6dW>`A y>T^r["gJ'BAPo7U,4Nf5q5f.HK`tpM9\,8Rj[M΋T [b& y {D4VZYeKb)A^bKCӼF>,iJ;58xEHtB8-uKko3$c=,Pi25_l?;fen5gZpqz5e qgyKlKakCcf 1M:,n2$\MW{ *KgEA  =g|8"6r)v-sa'-L.\)8Im=oڬ@a~#M:|mu]UKNbn!nǀϊ'%y+K\ "$$CZ+xCq/o .s-iAu5 rM`A|vKH4  Gʦqt3]A%i!+@c#,7]O+ܳfSD q8ܬȺ7P շ-߀oyy4{m?e-Zh(1o22mQ"H1{؛i]5=v pqk!sg5bm1ATD>I”@ː;X I l?֡/Pz]} q[<& 0Yx. ] +}4 bL2T=#Hk#f( ےxÃg<|fn_)?NlJv<ԡg,aDupL*[8!U\) 28  mrW~ *T0%k/Hu,2x_1Tޜ$tC붳tr'3M"1A+DF̄j0փ9QFӋly%-? X/0NXP73؄̘gMc! c0Dr.4sOAtL˘t8d}\U* Fg3QGGPpome!#Wdnur˜nF(!jx[ :@Ɂ<\Sdq)Hwx[v!tq,#TǓEo9/DJ[?):k_Wj݉Z':v<3~kd:,CDc F#Z(߫p,[2mJ}B 1wz ZZ+9 mx 4[ ~bQ}M _QZB8uOIa6eAOw,LzP#z~~',C$hE#NLYr& Ғ@ ,38/O e7prtJ$kCԧwڛfJ486єQGvDA "+dlh,\_ЙԔէۘqOW?ѿlaNw'6,hwיs*I(FHDz&aQ`ОBTq.v|e]}n.Ev,TzRd][-f{5Zf°3Mrٹ" m.G[$tueg9'^P@TVb!yJaZ3E1EQIf !A  %N?V& c"؜@d#h% 4bU0v"ѱ3C0UAGM1p jÄalu;+1$r'$k;Rr)9vfPeZ'x}Z~ڕF4qq 0CT;>O'p;e{y<{~w7NbǤٛXlH-Gxِ6 Ih@@5vr~?7ȡ?]  e:o3iz6̉G96!cR|4NPܖlWث7=x6a:ůlpݨvL^ hncV[0 E63-?2 Y'yI=͊)ȗ2HrԈU^ֶ_s/ߏ6m)PF0f3R#mn Ep4PpĮ[e%SyIIC4i/: 9xRp,NWlˬ?}"ba +HaֵLpqe o~tzU%:v߇|ɭ mxLL^-gNa9iڤzR?[}'4އ]Qu+ۼXXvJ{6lNMzxc1Ch_[HlNl! o.yeayj;J(U[MCc|znQ^x8a9&}9t3 @I d! ?5mj}[ lcwxШw~Rf(bOdg?E#2RS E~Һ}jz_L6 욷-Y0 ?l4fRRқ_ԉ?l}@rj+""`,DX `dD`Šbf'B݉/%uW(2rf$81.Ȁ;/ rsnazTCD#ͼ"hfד8Ev/~k]*D+G@ GwA sr՜S0 !PR$ WH.dNhWfIc =ʙG{++;m`=={=6mК*-/qH@/ĦfhɳI*D\/O{ )|'{Ro6t7{S1F>{u,̭\茸L)NYh)[e"D-xiDԸv=2CNJ:ػP?Z D^YUZKs iu]Kv `K)#;9\=ĭGV"Wzj\9@CŐny qݐY-▓X?oQ^Ds 2B&(UE:{힅;&J[oXLq.ߖ9^ehW`ЗȬh4za#.8È1^TRЮL5?&vq*F$VTu4ؓ| f8۾6ӛ\~gܹ_(g&CD5*_0$| Ć;O&=_ib}  QX&@*~}_ qߛ~0L.'w*Z29=vevc^98yw:)ߣ`M_ţYHT{%A9Z# i!/ $e<^cRN¦olBV;ƨְƬvǟ'?ῙS]˻|s׽f y4~pcÖc=h/1M& 6 8؍e:|JweLdKyOGUI]9,fb %po=G'Ǭf:v}Vw[eNӠn]'Rue뮋#>\n2t0qLox6JzX n+2EwD,\"^.s j/jSyTyTgv_DpٮQ&1˶㢁ȝS&l D~zwճ !2~KEp`^P`hm ";S:S7i_ѳnK ɤ9"ILhxeKI"&1uov->'w!Y@awfbM;jf%d;t)b1轅>dҮY yrmBSz-xk[Ъ-R\Z׷pb5hk6ΰI ro ?і7˄ujOuNGDUzJ5[V7;bhvxM!|,&eK|zFF(ux,d}.co< MK=O7? +w<~f}_oWwҏs>o{sϿrzov|=/oSv=~~~~oG~hh}GB78@W6GF_᝝mHC,? q~:buUR^l% 0?Nb2dT̷ !h 8S]6ljS8N闙vG 5T!s$0b@ ]Ƒn}=חuz?#-5O A. 6'q{Мc:LLWĜJYY}OCͨoMG 3GpzRU ۗ.E%Dq: Ȃ: gP 0ځoϢ616CQae7nrާ-Q:dp*h-f#F۰GV:4hjѱF9xPѸxw/H#G^=;<4pyqhѣF4hѣG.&e#G^#٣F..R4hhѣGڣG=.R>"=&>U4~"4~~r4h^h4##F6yG5h-H.*CB$< Oq|jϑKLtez' Ud&VDL)d2*!1Ѳiw|)La[ %F% sSP9+/O)m->mk4﻾`$u`gNd'm6/ߒk<ٍ(OGj?ёZKX=o9K{u?m[Y&3JmBp}3zT;M42@:w ~zUאaV *YÕ5q`c4f 0?Z>.n{0(p퐭(( cǤ@n C  x3[2nN +mn`-y'ȤIxeMy Er8" asJqucsu*(6ZQnn>.<<).CYAM%SDil14JHD D.hZ,#1 f l+C76┆$|0ԝ*M R]wWEZIi| ٛ K5N܎^Br VJz; ST+! sTyԑ*egn_șG[(neeiKIf{ 3jꑨnne(tj׃vT$ $hq v [`* ҔYc{ ЋO;tAa)JA |m ͨpL  _Ą kf˜`#=̚F96*Ʉi^Ƣ䒍#dAdַN@+(ShB/-]&f6㓤L=Hy]=*%ҕzW)u3 @ouBXX\VRH ړd=p6߼FWW,~8y+^? Aaȝ9, pD‘KA#]SgY!>=z|Ɇ;՟?O|>Q^iR ȨMÖwPs& pT`J%9|.vu)eRP %Lg[xxǂPiu# ~zwOMtt蔑$_oSA19"(<ٻUR(vH;5hǡ֚|Ց3{>Z++ H3)؉Y*r rIJTRa3d0~=TH)=*AVO'01/*-kY]2,Y &[T/0 x"oIxp;N//@s Hq$D+jH(2BRXrōԟy1k_*藍9T8Pp_iy55{gsZX_LԞ_hQ@g">;IQzU|%LWЇ) TS]ޖ7/yIC8:~_ghMau{D -!p)s -5B743ƣӼjA̯aIhѣF4hw-4{MticӺo6yHtѣRqգI#GwbJU&G_Wc=:d}OeGin7鑣1#w:~ GGq]_]oۣFq#E#GGr=t}{yѣFFzOz?zѣdO4Fz&lo8:&B+N-~i߂ե3%SőX0G-|lxQ}{Xo2h -854_Q*68 [Zg|'2jIAui \Nn_|QJb=Apz.skH}k6ٓ7xO|3UJ˃d2J&`PI% 5X\Ȁc*cY-^g:ԼKtVy2qF74hѣXGF‰8DhѣF-4hF4hѣFF-:{:$hQGN&}4h董أG?V4z 4}>?e4hѣF4}h4}}u4h=4h7ڍ4~~J4~??F5>"DJx˔^nJ|Ni9a猒IfKdz+\0pVALjtIO&ep͟&vJ,5 Z#5)ӏ@cBHC,,0ROoYk?ݬeg ٤ݸ{.kNd3Db4ڔKKPD!r1ei skqe#I&QXASOٺ~7Nvմ'p[Poxƒߥ3֧f|Q $7⍶p6lճ4U,a4iJQLsGF4hѣF4hɴF=?<*9TnO2ѣF]r8ixѣGFv*=29tHңGY#FR":hQQiQףGGOF;h(44{^Gl7hzѣGGGt9>b4hQѣGz}4hѣGFG#GGF4dhhɾgbΊ~KEՄG^k[9Ov ^ R ?2.k2!ROfO/Sx̤S`q4ԯ {7_g~!B-9[t0;u IFr}c7q]k>Otrjc9݇eMܼ[/53̞OOWs kZýOLʴ`f;n+jQ&I/c@3)bc QF|ɂˀ!)a lZ|ߧ+-_r=z|VcoZg?i*K69,i٣S_[F@gA OK)GV~njIQ❊;`CuqQKgϏ}I QhX! D"B!VPO`Wi h<9Lh,&FIc$ :YZMl)>yI::L;h,3.K~J)K>#AHWӀMkqV /?#W'}W{gpnoU[H0M5J[Ik:kx]KژJ?)hKUcv^c繲 $=|g;&p*r !߹x }Wcxjmc9z/4?k &;--VA My934yf0Q_aGEa` H$`\GMmGVBb'bɑ+wTY!WfNYWX}F+_J%o[N7_<gW}tv%ks=Z:s[I{=UN?I]~h2x[v>N-a=RjtU eSl*o2f,(%]D\nll6g t&c] Z2( HA =lz =؇U#/mMLvM"ǰaf izYǿ2OhwVuq#_"Ac W Og^my咡d̰p~ToNAji#}/zAqWѶ mm)Ӗ 2F1=߿N ]V)"^D߆Tِ:3|'|WiQpȞrmM~H2]dۊkY( A|.گD[I#)!FnD;\mbbl3q[ p$ھN4iVeƎ!ߤG(|7 ;S@`< NۀʽD22zÝڰ5_Ruv˕nZ+`ǷkkĊ- 9JԐrh nq yuBW37y0S;8xP {AaH+[%o>hTj<;*kh5IkIHmBy2U 35'}{i-W ʟ:{s [@C;Ͽyu}wxh"C/^C2y[FNOfX3;KXN837- DEGJǰg!,RH-:YOWŽ邥AYT lzFe0:=/&1"Ki99h"4rBJ͒hS`5碸7/wOWs i(O?: RQh78&E QQkBegS-GM:X?`gCd!@rJybUQ(] Xh PHk*SO &qj9/|ܞw7/0_9(HrG `J5J5m¼{zZtR(ca([щ [76;.Hv@ޓL p-w%pi?AհtwX |v9T'Mz^=y0Rû7}hK{vl]=h>lbHҹk(,i s!9iV$MV~CѼUPgڔ $DЈR`S֓M!&{9Ϟ>s;}[\Z% 1af]1 HZ3%(j)̩NҊ jLʫw*diY y#FE h"qE;M5m2@dVv<|& 'dN%HX]jZS8+SGezy7 iMl{T0 $BjPG  p#D $@F$88`@@" ~._(䵗Xdi"Uit`} A刮}GQ۠Oy=_pOzQ[l).}*"=f1lyCϦ>y7}Nv^]4.I]_o~URM La&Z%mnmrqIwMBO˨g_U̢7h?囼2&vm{Olb;$>~N՞$e1?u H #b(iTr$yEY3SOloddh yn i~8(fK_½z稃!FL/}\./_}sqY y@QY$%z~Wk9jq8ͫ{LzF&A x`s$G]Y;W{l4Q`Rj1.0@&A j [[2#F ,0qQ*+t1T};vAH Y ѕXN6Ah- c2,8J(6_VvX@rr Y IHT6YNRhJYfBj@BI@\\* Z "pgs6.] J& ulF@SNKp.ɽhݝUMc+L-4X `!o pkXC7daB2fG,h2!vhWrRp(Hc CeFt̵aB6CR `Y GqI$  0"& C , `cjf R5rub]BsqB @%;XKEDKlE!*.3Jd+" ԪIX"l `%jرm-iJXX)P2miX zlἛ֖2Nk#ȍBpxkȹ$Ĥ@4;{\բxkPf($E1ӍhK2N_4Yы345&ê2s(̜htMX9N,8Ӥ*K%d )"(Zz;a? lfgFq2u@2~T g2\sA !% bDDms(D9BVH3$ b"I@a2 % N5608&!f$ELpd6Q B ШE1VdG|QrfP2bM5#@C DL+F"f۰")0@p`L,!!Rx`!aYBMff4ZBP՛# ; @cEE`(2 VDYHň $@"*(,cX,DUUQPXQUi7&;놂d{X\ a l›lWgsF5HDV")26X5Q4a +X68 [Ml4p@14˼ݒEgp$}mY4dPIDݨA ^c͵6 iBmMBtӎ;Ca6% 1hH D/`E (\ɲ6u s@ER\J5 "  &֢@j 0@! q1f,]2|f@x,ڌ!.' H#ʃus&H !1$3#V)uefwIrP8mwuPMݐ%JI*PWPq'(6aӤo6`",Xva1 H1mZoBmǁ(ޛ6-k\Se]|"L,$;Q;{r=MdaՊ%f۱d:4%& $k &(B0mmĦf[m*ծ嚺4trEtn1ڻC%E*TPSn ;Z# 75vJMيlP Z P+4᎒fg $1M@m"̴@+׀' !ӬTËlkbW]{{RSY )H׳n z3C/DH3 HJ-+P4xO eB$hDy:V5Y:t@އDaH TE; .`-wF̷A %Zڒ*w66RX`pp "pfpan[(#8w3jV,o PEYr`^#0ņhTA$pf7a4)m4rX-E4bSHI~vՁ\H9]"0v'FVĥ4SN7%hE!uf]JIΆA`lIH `bCfbh+6nRܤ  LFbR7AYDT!Gv0Hċ+Q"MpwF&X,$d"@h D pC%fJ!3D)4*̳2U7\Ju HeS&-̦ F2C*f&LEe3(b:ͷ," Ѧp -]a 0fT`7Ymk],dW|F0Y4kMI)2W 'Ṅ90 0`LN'uf181 D +jĄ` 8 4qME84fCB2HlL:DV XE 8w" ]2M1kWpwaJ QHT7wM ¶J!R =^~~Z:%Jb`!\‘'pV 9=Y.rLɀA5 Dn7QR:SLx a!$`1o#v1DRFB(O)4PJVaƙgd(vMHoJ"(0d4P4eM 56Ę@ Cyib*MKw֦ !op cW"SS(YMQ``˧NAbو&1W lI29:CPIJo*qSz"Ej" w(=%#c0Iw;UK{2ni,ԳgM$V9:ϑѱN#:6 #cu\[vkMQ10 4$a)X1(ABTN,ÑfEe2x-x`BB T0b 'bn3Q.K\ҕM062Ne2.h"k7VGq:l* Ȫp&d6m5+4<16Y\ 2"fp,9V$S (@йtd  :u4h|TaʊT!rF֣1Μ/ mPY*Y"iDIrtg60ػVėêT09TBf:@aq)SMՂj1عP}IYDUd+801-hXf(N$pl'JhpcP}-Avx2קehm*13ez2dr:L?)>o먍ISO 6YF7Hk1n<CԇVUy~⠠/E&2CţWFUTA,ƣ-0BŤ\CtcF N92'!sfr/ޝuhAP49kZ)e ڋ,4õADnp 60&]1h:hCaBG} \/bJpwPa^Sh p0`$d5\].=CEcGt6`B5j :rf$ݵ5K i Aڌ65*b aBxʎfZ^!H CP=1&5cgTY2[_fb5T@$DQѸ#^@ GZ^dhKΌ|[ExW508ؠ2'5 ơI*l)<4,x6ӆ.&MjhC A6cny^.!DGP@G5ߩ}>ID"zg[qVN G=GF4A jQu:&j#/NS\S,28^$Jв` 3ҕ̥YE1# d1Բ `6$ @ *S JZJUI,QlH&"̜KOp1m"dDRμ Iٍ8Z2Ljg5DփL%.X`ެ!⥙L65"bP;HS-RT2P&qwf)UFyfJ&Md[﹡ 5$Zɑ3f`48!Ph˺@ SDH'@m6wT6 2fh&iRdfŋ1o\bk[a, \1l]Z2S)6HnPI ɡ!~0$DEv!M= "h 7dŬ>z .4`SJ"&1qNs0aQ5XkFu sq8r (xT$PhP,&Uo7m 6v)"]vg,T hlt€Ht,P Z pA(k}44XH8H`*q1$E ֲt=\hG 4B3[ ntb)KTIe$Òn##N*t3&c{c#dSjfpa 2D"*wۧ bKw[ 1!OAX. !A& eںBX ,UBBAEovөGB=.Mx8 `PHo28ZnɭTQbE lQ6˫hY T70ZL Бb&B ]!&sCè^]v:qZWIV!F%M$Lz[뀧d o7;;GxX5vTȐ DaU^$IiLbɒ! B" ¢HR yp1j$X\V#1j͊ "$ 2@UQ1 +xއV.Lx9*H@8Hf`Y,᱋U RdSAٛɂ u murQ1$r.rj"DEP T1!4,L7WUJM$&]%XXVTYpҤ!Xs;48N$ ɕ<,زt5dM0XrQtչ1FXڛXӆ9>C=PhtKPG("%ɲP㙉&$ bB!㈿CP 8 ScRSW.sm.n]i]8CH Tmӵv:Cc0N$H^ގnZ#YL57ߌ)Ci-+WJX(O+L c !i20(e f-L-Knt6l "0-EQ"YEQ f\aBô 8e(5h5ْR[ h IU,Pi $S,;pxfaY]YQ"&DQֶBsxWilbl$좊7`D2%۴.P1rBJQu3 J%7 t"BTN7^3Bezi-m0Ma-j811qJBu2N#xp2/c {ѩc "Reslaɲlp7 fŊa !nJ$- fh" )$BF0L.B5 Ad PL*mZQ+o=AB1K̽;KVt]J~0nSD+*B!Q$?CqbNn7 .eutPWBJWb..RL/݅nig .XpaϤ=Ogl8Cҋ:اZbZŽVWַM!AmК|.5XPv©Z 6GHK&E2 ꌳ1ٱC0.ҜD'o3SаdL C/ od%fvCJE aLNd՗{ uw6 ja1X5XB0Q0LXd()bT0,XDaF:K脑HĤl#R@BM|||~тJPRz$@Fe|\Tp vl4J!» (䨊$Lʥ0fZˎD!qD|nsӳ}QG Y1I:d̶q«糥1ɂHymDS4MT j@(FȰ \Ж8I*$A)!F +-0LE X(a(dRš!E "DI AejEy  iR3md J13lS+Z4HRb)E< #n,)4%`08LDIKF rP jd0NR ^3~5^!I#rE0WjzP`@FTnaQ6 vjdQdàP*c8#`I0YM81v:ا.y1 ۂ_D 8ہFP'q"Hutu빭ݷPᴍuLYLM 4l !ffY4(!NdUa Q$˔5-֌imu) "BT@B $5X5d3"¶) Ի$S(j"p'TlÑEXZ XB(u"30թrvf>SGݫ)8r%mN;.{jP:Rӳb l J@-(˰gX$BM1E!"[@( aW(0͂ I$E".Te0IdV`I2.G,cI,]ŠAACO=f $dd&*)WuTIq# @GR/=~]sfP$%(a"@NȲ-đ3EJHK)Z+Vp$ aA ʋYn&0cxodnT,;P LNvY{fۡNYc2EMCmmKA8AK"6 2Sa$A+X*֓N•XqeDx{:ނdraKTUK0*JQ 0J$Nf5)3| &Svbx|4 DrPM6|p䁝c``j-St6<޾+έa"0 %&@[Od`RTAsVZ ")&d4ͷ3c}7AB)A1,$KXjdV3W( dH.m4L`19 m A:+*CjusF"Jp06ѭ r MMm0h ݿaEh73dV(!nɃ(Wcw`q#Gâ#Gx&&'J50Lt 1j$ iuM{:΋B$'cə%f Ȉ 0HF@@`)3\fpLlqs(͍n@@lS !ÁnJjU%-iP3QNo ccb Y 0R,3"ɡNJ.IFqr Tȩ3 bL˜,2dfNm!Y Rn`VUIa,2f)NQ02,%JmiF[@ % hA Ca !@)T4L ; + W.& HtJZ؍DH! - @@O0+BGvkG!@ "/ruZQE,UGVkAEsɤLXjiI|ahX"b q ldXm LB1Bf#Hx8 (.20$dT JHj1@PG-TG5*%cY,zS2 x8+Qg6+1 ؈ v2r3ECtIX%b墢1vS؉IwO~S'b+'.6<6.;j~4v0!o &8<^U*VQH!e+k C±*Ŕf aasفiAx2tB^$A WfFF&iSR0i0h2%vؑZ vx&R8hHy^QvfbZhygw ߀˒MI&01@ 0*Uim`%PU+(̥ $HC3$.R1FLrHP;TiRPm&"Ab AiAŰbX17 i d | C㙖BBKs#8 `0fcr]G^󼿶AD|Vy Vy]y^B/%lh0-+.B(yE53{{N& 0+aѳ~M;q˖xgoZDE@aAA;dB6 b݊l2i 5i*bԨ+P4DdFF$QTU"X@A 0UD:)%FEڢ DZ5R&)،(Ԡm8Z[a&5ʶ4HS-A$`H)  30HeQK!  D]+ C &%$Z%l)+ dBK9A`#DID({.7;{{9̣d8*ryH4qZ*46i\a7 ڟ_AV}zjeco*reቓA 8!GTI61w/~ :Ny@k砺`otS%_*: s}v G#5 rȱ#a\{0q-~'bow3ޏ/bdcZvU@ͻ6yeLe|WoMF'9{-@#e¾F`i2jOH3R}KSWfSςӉ!d&,{c̾* ʍ(4Q @?$rk}nB5e1 mB 6aIG Dz\[nOYu7 rB'|/_[0Qug-0 }~\VF|9{݋$szeY~jvdBD0*WewӖ xwb^P-z_ޛt (gcHPmSy/${Y"isK+Ҭp4{꫕NDOnο>S4ȴ}̓9ڨY&pi{n <.+~Wi-CX nL$i6//)4V9`;z>e-ŚzvRK[o]??OM{ܫL.˒RhdKWpH`سU/-D>ko=Id#=%-_)B%зJGYz嚇L];=>;W.-_0Gð 3P`Bb\}"7YwY}9# Ĵƌi*߹KЗ<34_>oIKL(7F*%!XH.~GMNHS}o1fDc #ZKT&|沙clWhK*sl.]*tIEun?짏~v kދJج:u&g*O8ȿ?=^RIcRds?fZ|I}{X~;gXfi͠{UGIjel'P\fjal&,WPݺ'6aea ^ɂ\cn/J6h9.-P\΍y¾X% yZ 96P#C<b.46(ǵo3|lr~𚆀@@fy&,q:LFT< j.iKn]W|ɼ F;QFؗg4} Z-]Y ܓ2, Q[|,f+\ƭf&jF^3 BjF`(J?_>6f23>g3`͜~ oqq]a~s]?(V+%g*r}K}(!%9[~J1Agط67hIO>6~t;JNc.1v5V\^H))…NJtyh{?*-#hլҐ1@E;8T B"ߩ]yh08I8>;`*V{t/s{_UuaQ9h_u@Cv 78DI89ˌ *ՃmIЉ*< r"1dl'UfѴ'p0AQ97R* > |AT?Ga|~Qu000hA| UHHfnHP?s[f\4vğ ;/&+|;:zyJfْ`Y@ `!@}RQm k9[-ni5<%H#}gWIgQ/WMyޖ犟q;ϓٖY.uMv쭌jOCx1LJ# ]?vrP?DZc^mSWNq1/|˕=/q1wiAp0}i8OP]{!o*/%݀gfySO+ǓS/{,ج*4<鮑pK\=[vEY7`xj2Xc! 37:WR괤hniN. 8#_+_)]^BR,251֦ad7L[.O Ov: >Yfz?ZH3SRCM0=G sY5tpfv=k/ E<ƛMcokҰD4Lۖer T?B jRwiJ=^~^_j79Wy\?'@kE "jTzstTe9] "J/\1^Ÿ8]w$d0*r )Y!lVQHY,ş.._ˣfG&Kf>5vS5Ͻ_K4Ga񝐆KxRz/]f .1å}5mڟו!oo{#]^_Rqj?>ѷ56ڲ#XL{6_tTg'4O4XAkI``E2``2``.}6p@JX=E=E,|6#  3c(e%{4QS̩U7]%<11. ~fSUqwdD@YgNM%eoK),"2]k EJ'+CC9DWe<4BV9+I,?B p̠D#<(㓣{__bHŊf ) t0" '}=Dh<39&^_"*a2؅y%1ט8#e ǩG3[)5aПqw !@Б1EEEEABUUUUUUUTD!D@sxs+0驓]PJHħIJ: D -lcctfіđJvN BPuS@S.W9%a%6W `at (A?7IOұ* z! , NX!KT~{M6UtWٌ{}|]iՇ@kt^2Ͻ'dG!)d< `/e2Oϱv].ӓ68Ƅsm}^Jx]MKTCP0tkh.OxH OtBa t`_ŢSlWh]?lWUفyF UF MP'Adq:hCQ:'>e/|mtʝR>Rooz"T9 NyX_ts'ݤB~;jc$3#9tV꺮WUb=WTTY#OR2 0 D3Y>?,;쩬<.Kƃ4P/Ra? x/L"ՆXP!]&]p] 00cݹ43 +EVAPHeO]Lm`svEL,%}Q.u )'J"{8B}BP5Nh[6H>gc\zr:iw&YINaSwG!~^V~:WB}oĹ4~Ha82Lb4S#FBRsMJx?y#漜/} G3Cҫ[I'v^"9=Iד \έY;d%'&.A:EPd€XA2EM?a4zvw>]A/} JC<duBՓ$|eP+$ X8sؒm?u`wČ^icN(yUs>ZhKɜ8o {D}LtMTB.Ks<}-\w>9몁R\`v,wJTp[Ir`c!mKYM_?YhvqpE;Mp jVq2Pߔ=^)cFeWA=|W.Y'e.Q%c=>闟bϹG0?yGJ}  wȾL\K4~Mr18K (xTz,!yWfCq:_Ir!3~mXw)؜Xz"D T}P`qS^y+^ДC߈׬_zS":/9)Z`=׿0,p]ebޱT-)e78V]G.JB{m#{k`4jlyrswo7RF)ʮcw鿉3 b{<ڜ f$Ad,{U_)oME7Аw{ ﮗ}"K"s3^θW@~BoV#`HLFVOq8N~w.o*[IvşSC>$,$G!"o3XKB *{IEJ{3X9ma=U));/dBjӧThMs'RTn-N~Vgl 9 ,rn.7m04 =U(C9>Wwk ?~fNC5oi ~멥~1MuRpt7:Ɉi <ֿ)1j{{^ FIK~F2`ȿ@YvUi+=?]5kr坜m$of?!hW`D{'Y4.ewX gW=l~QH9n Xu7:뇿s-K'b:̍R5&zv?9A9kl/+-RUNU=U-SU3U'E(2ခ=.Odv>+/Fma8c"y@O}6-J7Y=*egK|dy<ј7icxu,edN?&Zŷ~nuiuFR#eS3<enIU]%t)_*b6wggSR,)&e!RR O~r muA֞ʰ1jXeߖ覑`c3y|78"*g 21FFޏ 2-Ds`7J!Ubo~LUUS 3BH2? ɣՇXce]n3\HY2Ҹʨh}0Ocݭ̦ .eZ*zT CZXGg'41{ffIU _:zqi:i¯iI '{H5 z,C`(Xks9s. $EIfF3Oӛiq-!-,:0𮆁:O_ {j˴+Ջưmmm>]}.sW-MCM9H!)SD'o7NdTTփdZѥ Cź] S2"=+7u oQ0}.s3`V! ̩zKY/Av8$ۏ^KHу[⥝B;:0AZ\j2OnxޣI`r@y$[Y?Ai)I9'6$h ?/L>K6acPō6B7Jz'yˇ,ID#Lf2jOvW猸J\ fv1H~f+nI@+uh?9 y;-5 dAo g83K=-OzziXd.O}vF2#bB:E.I-<--------/=Hp1l3YcR<>*s%AJYDmb#(ܸUEba'6=>D2wc6ѧyYbs )?zEҁ?L",o=^C_q_ͪ01\faO)_la.ێhvI/+@+ (SuaNkqI| wtQ&1jxpx`3ޒWfC%FcYƖ6f߰uiJۛ,D|(Ԟ^.d>ljRUnH[0/YKW2+Xav(*MQ!vau"3ʅěm~1T|[ #Q>=!5Jb>>2rQ& G&za!3oNNwF~d_7ȵZI(m$c":|Lms9gn묠tr92OUzt,Ȉ-fUTJ[9%]}٢("yweKeKt$^?Pwqr9&.4-6e4R3>,}hOL`a 3V8j8 *_&8VS:ՊV` aBM7L&"aj0ڳ$ 2|~=tG#7o3Qz)MkTb'?Vؒ<0dPmIA~yH^(:ι@C*|tȯ#Þ6gTG#aj[a52V &M!e̼yN@תgR5< rjF&ih?5r+@` \+1t0Wٴ @H?7*|=G3VoH"HlՋ6<~>]]ܻ{L$)D TGF[hMmx\L /H(Ҁ%+!m 36b Ͱ^߿ ei&j~,V3fɂ*+J]>5ݙ:}φsz4O5~OSSo赐~B3  -z:[k|ER:~T,tp433{S2/3 0Lll(7ގ[E>=̦ t?3$icPhk"4g#hAi%WyaZ Z9`cA#Z# tYӪK>Z8,%^k1^j$ GI-}"uh+Zjv+c଻,>` !Y+߃Eg߬9]UiV|<M1/\ ٳ9ojxN-ɍaa8az6fejz8'pqcg߅^cW]Gֳ2P Rl lA3AίGɢxfC'6r#Cw]o)CUʽ.& Z3J?5Λffm/Q1vW-9soT#ِb -wI[AR 0Y -@\N͎ e:{GOXJi JDCD dI*>pP @ylհ5܈essnu] d6(~EߋATI8j8ھހ>C`2u@  Bq4 ,a9j~d]5PŠgSH+a;6ZȯMM-,sо53[fl1'hɥ HRjbZthq^2 H-,iOYyh?˥)lP6?Aηrccpx-4Nhe,>kp/CKm+T ex{uǢ ^c{N7ؾbȂwͪ(Y}/W~k'D{xw҉sZz'N?վ9 OIOm{g((`F58ah?;~zy-v0/رqTsH6,d7NP[]T#S4"` [>QU.hP7a B+eB.:B GzfkTE>D5~N|=Z1,OjW/o< J,k x$[b:-̒ 2KrbG_qŗFy9ŲzI;~ȇNJz,X2iqpt`Mt/rSD qX q3=*4p?=&:l`G1b'&)4 m[mu`$)yeDJH@ի?} %u0$cҷh'b %Խ}V> `d ?T[YeA9GWtO*')F_d2?ܴ}49z{ؾ˘x|s0$%NgՒQhʈBa->_>|0EG^1W,f.I{dD\w}c]uIn=?ţ1+¯o ]A&:աKx(k |9CܚDilk;9V;;;;8J[JTѓ9ƀu00^8  tf L2~Y9Yҟ͸,?P8jŭB"|d&Gځy ^B۹dNc\g$,Z0cr Y[k<2b5n\[dKR6vd"K t`I-w0hI-lX 1-FLaDHe@mb̭z>/{>E"Y}]z҂@ X"D{e~K%wf8#'(Fͧa*?])umalF4)ct!%&y~~̚`Gns$Aj)Hv/Q YY-$1D#%lv݋&zm-21 (_kyո. :O)#NtUm_꿳5}/ɼeAza䮗}~}ҼGV)ČZ+ ί83Kzʍ?6MO\'LD{M])wII)i V q-o=gzϻ0ނSlb~pm\_ ]u`cU"eB H69N`p"\/Zܫ/,o?X0 e"D{ŸaS>+|ϳh/B<}uU#GvGY6Uh*FA +-wFN_ ~'0DKI/]mKOV)|e`sL2_KouRꏯ%!|c$laj "1jjCSxV".B6s(fDpDj(1O_lxUrq49g*$?@ ϝw C-VGqc} wWHSm-|j$<&|?ƭzjt^S@u /կՐGRȄLx'^4#_{Isptɏ"(8)mBKq59qC*$>a~G#o"@/Iǜ䑄fсғz
j:rv+]/-$)ɔ`MR2J; Tt\)3esvϝgDšu(~l /E45KXfهd6cDrWM$\ke8`3FȽq&pwWNw{O'U؀Xl%V}U`SU1LұK'li6̤&&$4H:;.!"'4(4OittDwd&te@:0\p^F|ʰ[JK"^'Ots;Ipr3cF-5|4dfٚ؝;fvH16Eƭn60uɛ/|~& Sk@C! B77_fMj^@aOb!ڨ0#J0`0`et+avM#L"R=g63 ?SIo U`$5pQI2!jRVi# ,OArN%ʏ} $W/ޥ9}{~:߫,NHqKzԸeAby<"$40:7ilo-r+Dl,_pg{ɉ[hȺ͌4Bs@-uQcg]͙f@/*QNp},bjl8Bժ$#>ɭ. +?aeEخLQMZC l*hr.`^+oNNOr*5py>Y-cpr.z[:Y\az>aS?ˮr&PT:"pǂ.F ݰFuuw26v 9G S'2qJ =f*QVM]02Y:p}'BlmHc {s/{."BKdc(-+A$W`b3 CsQf7 ϣqӻ!%fRۖ Jkt`[|kɳ ߁H[tH#f,]\󟖳ߌxmu@o ӖA6Z/ƔI1Dቖ`z wTWGoe!)QaT~5+ ?i-T@1Mi g,%شM!"EڀcDA/,Wqd<Q@F6IYPCJ Kav"raյjMk;>99g ֪aJu(l[ m[[V3T6N ]b5E~"ZV-ۧmkK[j^ VE;Ȓy +i$R0*noC2*(L$' e}P(H!OD=wWykx-fߎOY:bnG}g\q24e\E$G2CXЕ>9zLֹy+gZWܕ2L^?cTGIuIy|ol ă >(q]=RwpSM;gQUҞe/>Q_nC v[%-l `1AXCՉtD6x@5S$EX!Py!\KIFSd=5,a$|#Ž51g ׷kO^U+4} ]@w7Tq1~^iҽV pව0z'xzKK{~ژvQhg 9tj$@5r :&~ehĄ^=ܩO6*-0[nE3lˇm2.rM10vfaÐ6P ^uT dĭjva; y8Dԓ0>M}4L54V)@NMtR)_"L\loWNž[όÊ9^_S~32n- -|2iȾxK5_0#_s0ە[Fm+(95N9/%u 4$KSYEDE_1!2Ƭ !)܈AqgF߫O7]89?1 ߗoAPpA=G#r\U5W6koXfؚah 6mQimiZ%.6"CŹOlū$P"B_r/rUci+ y1[LhNxj:nnLEs\?mgjYQtE3F?./C$|vSUK5N(;R߳WkiH1@,WGT*T.V|lj0 hmºSkV^muL ܒ ?%G ~LC]6IyO)m8K*->]BH;ʦEa>}>x6]_nsZ{}'Jo(ov:~T[ 潧&!w*ٮ6:>~%'ٛB79oP6-.v>Jn>Ljx)Fu Vp^[G%Do#CQe} l,?a%xovwj#f6#2 zY!χL2*dMm:a[Pf&^"KԽf` Kwy}9g/w/4jD'!𔅾]WoM"Ȓ}ٰj]b EH[OjҺB>I7kϹp,.a|,,B̰aFQ&ѫlށ/7ŜnOD5$+mǽ\\7v ވ fMH)J^~Yaքp/.6GZ[OcD" )0Df [ yRP*\ t'):b&LKji=㇔ >R1۫./uwKLg"p't ӅKU1dE}yW} i9rU"3lYXIOWu `q3ٶ2}]3|6l#w袜]DpIWqç\\Vqq<02'q״[Zr٪ %k{*ߠs3{_}NcU> [GL,0|t1 + ,03M_hXq"; (9h$P6@ءdX@``> [YJ7YU 7gPȀ+# G4əR 7@<2׬)R(ābX2D(/y7,:~ݿN۶V5mљɖ"o,*N,XqL NJ3PA;=ѸMɾnӆCp¤"+ [mȽRFbn?PD]#d:фQa 4b8 B$(cm 0I0,VHtpX\ 1ykR !]O ;U(TDŽWXȈcwtKI&tCL˶%(bW,ILtx;Sq; E#F:\Վ܅DCgDҢ8F&EMA7{n}Sב(gD .p6oE s~-eg#凟-ȕȌ/fX`C.һ8zYGs6T2ov.Y۞zT2uDjtp΋EFt{Q5&k9kkjkkD~jp0(P`n݂(cA젠~SnAM[oT}o#2$30Uyn6{߃m*]^g{L뷿*>JƬZVeΖ?r?\sY35ހB<~9./2y~^m9wkz6u (:&U'3D-DeUy\^E*R+Ύ_4wl98~|wu7{KQYniimޚ7f٭mY-΄g(}\P!kCo?ۙƦr}S'`kGt d<`@*i2мr\뙉ϧ R +Y'LdDNWY:0 _H#oږ" Q[sO!(Ȓt 6j,'${#HvQy, hf!)raΦ w]0Ü KÐU>N[pK8k:1rҒjޕңH E бDMdYUPNY,1 f)idkD1 bc0-C&:F:Q%:.C@0HzwocRCO&obBPzv̑jjQ&XÁ$ 8N9:IS[ 2vV@\ 3Mh/h\R1")l2jMP'iޑ'zgNwrqE|.0p;Mj$QNti:83p7㱲.Lnft-ȇ[;rlPBlP(TPCPCR"3L`,~ۧ!8^;; !U%V!;󝥫YE+iQ$0Ċ0T d0.iHkŝ";y.hqy|YڦH#%1TVKF'DPPGj/4:p6b:$fÅ0N;K1qYyp@\C105\"k.NI:6bCQb;D@!I٨=$4Eh9\ݝݦNj-BXF+/BdZ'{0Fu)m1SJZ,QVja[6I B Yrnκ'[˟E@s=,(]:b8/jܣl-8$ F*| ] '}:y*6 z惁0*sN [ks0P0ۛA%}Pb5q<M0 nCm\Gfi`BB0&9! p2#i8%|n>%?zG Oox_Oc4('V A'oaЯ!t c1.Ǧi\@U1.@8,@j;+keslj?aƗgf0]uϣy%E]_Mgq_BD6WMQ3v;.zGm~uO=^rj PX ͗}qk{_]5Zsa3#Ηu^w1ڷRenחU$0uf#z0|"-yQN6E!J# P1B۰ףx5GWEv*OS>d%Q6^m-|ŸǠ BA2up-< =UhX̣t~䐏neUX -'w_]x~<ʗ\\ĦtuB b%A(}\! ֈzO.صcL;wV8~s}^y@LM/7G>6 mq:y G\u^#z#ܶ4[YʘU䷽`{iK|.!@CPs,T>LcZ<6oRc:\(YV{u >V!E0@7zV[ycc'Jm38+዆tL#c8z@92BLٰj A,e~X0 lJ"njFquAQdJ|X `| ~k;p1~qe g|/ Z/*Aڇ{z3,W:NjwA@A?;ee$ZkڰX׋?oTFs a>+xɚFei7S; M;PbsOz?KZg7 ·ʞڛX,Zf?ib}+\PVKJ~7b{HS9d!jr??Y^$|;$G.tP~ o8݄'琄i؋CK(؀ &ӂ2d?&,XHfSPID#Ub*13|ɋ6aSD|rcj4︡QS gm1dD}8*nPhcbPP$EM9vZHE9崵 Rفp!rxY3>#4ti.04B@ҿ"cM1n>NoXX^n A @!Rf "r4&  SznSN%˫3xY@mX 'c W5 aSc1Tͥbm-K-zW Mh|(L4Ʒ\ZvD0rZ>NS?)ͤ+po2VuЧi7ҞÏn_] ")a" oP4鴔,r{SjҙInj2JĔP:uJY%2BW`]ڗ't5]xxRpkƸ o'=.-[6 ؝& ÃH9\wΎ]2l:CЊWՎYِ I+p|  3yi=IBD"kVa) *c{ZDv—]9_<6h\2$( 7("`r7/d?}OZJON~lj_YL1NeZߥsK<U_Gu @?1{ÕddfoXoy¶!VI<- rMY_UWZ-I1ͧ88~:""Vz{l+r9H4N[957'Q&FHcoiaT;.bV5~d=q lAdFSWWJ/41vV\O.bE\++Ҡ^l}9_W~:9 TK[o@##b@}超(8?[^|^WJs1K@-0:g2mؘLci_CPxx.Բw̪=f!{.,qmD%)^;1o`>v%7=2vpwcun,1S?D-CT,lD,V`r$dW Xn\,?1Â{1eÌ0؉!6D/6쿦u)~.KK'Ps3s@i Sm{VQu1fS1en.g+XRіciZR:? {u+7~91ud@ OjN82\ &*93?ٳ nSqE'nEbWfpXp[ƅn&jV‰e'okFA˩}uY$scHQHP#xa1,UPS0 hY_!+~H$eZ\])?g'.#.^Q68Q{>k=' ;ƺQD!kCKA BKxe \aoK|WGTֳُe[OJ{ z{zuNF-uXr6Z~#~9mri& /KT*$UG6U'ġB:00N$a;o7^ D%"kkK7;ZoRˢ2Yp㼰 #BYnPfdFICKc4+v bWu|MH2|u[ڇ@yV E`%CB,4Q0+W`uAgVNGL~CGPl2Q4W7PE@Є`A`ń(e  8 uYWWV7NH3GF**hVVhl$+&dJLѽbi;н=1vy!PZM |^%>&LlR ,CmK2ڙ_R2S3M]6;p1q /^T ?4F#O+CluWqW[OS+ fϴٰXx%7GY4H}Qk5u'"UKKL֭g3s8g` =̄l9cAa7"|oU8d{/Ml\FO~?{73(v{zk}͵o#!(.] ޞF:vtq'&_<ٸT ߑ|'*z(PH_1O-; Kz!n LjmXUŚJTe _sõ&b0 ⃜;C\9Fo шgeCِ5#|h/U$}(EC8Xr>RHnrWG r?l=_8P^CTW秦j%>u<+,t؅ |3Q/֗[@}z8H@oLC%U,ۮVvEQs% CG'u|ٓhJR $q\ƻ² rx`\DS"!2%_ަߝC"߼ mᚉI^xN>֙MmjsI'SgHWP C2qFCg9AeKe!1^X)}޵-=$#S\ջKp:fU)\mPob:{ R`Z?3{8+A(T._ͶCyz6"64w>HU2 ^ {`4L,0A9Q鬝{l*dN52ʧ50bjΣW2qKeWD[az#/S,mؗWKkwAj3;]TZiy5DUBfJXy]wT:2WSC*@荒Y(֣͆hYQ@6yq]ּsxy >~l8ag ۍ 2|)+w(44跖F%^i]3 wý֍49h{EL*,pvGWDyU) Ad~i{z߂7,9^$c"Xg%jz8<`+L9͙$3_σ4dʯ_i .~^SC=db[ߢ˧Ee(}ԡgO34+"*X'a,:3:a d7xZKg s׷~Z~R;?n["Дe TG2֥V˿}^Tf15>#gj9&q>^2t2n8~@, >UEְi)`KЋƤ ڜit\d :DTbht8w gyzIRb? S@lLjݞ iS:旎sof2GN!u WoZpUp0 \gq3SSlP8+a۽ pO]n3ҨWtni9Sύ0V\@(l8][+ :G%2_w۫om_Pӭ $BM]^׭?gth0 /i[2YESFԞՅ=_~gڡz8wB) w4&;ekU`.uzojp{ >O5]MxrN3ξYy I-3h-6ayX65 ,0U/פ~a:b:9bǬX{!@z¢kz:xg37wfXW–t q9[>"qMA}WNu>qzAg8c͏/weki&?ʳز hYTJ0U]+h,9Žo1Z,/{npAO{Ԯ`ƺeX{}6a-KSgUFk*r.^ *eZCU#/-ʫj,Gw!rJ~<J'Tǟj!mlxD$`:Ĭ]bfD)B# hqў 0Ck3<=VpR4js<O{AƇJG`ߥLBxW[BLִe hJw4MO+ai9ةl(ꦤSD*}*xjWe(Ib$Of1<\;3 Ϩִ󗚻{D`zdcVFdsWzNg;ugt}?%R"FZ (A6R@!f$ p!MR -fVld>>}97JͺKZL$Y9Y"Bq|/krwne_lqɗ J~!dB;)jⱩ%V6/Ğs4c^7sb5c_,d/< |\ pRwcPW"-Ea<ErM7G{B4s)_7U)e.߽K+©|QȕdARzt3{q 2LiiqE]K(z1Prw?/U\;KbnGQG%@>+Zhc%uGN׾4(">lcgzg$8ݑ se7Խ+jsҷyǧoGo|3{4v$ߖ#ϩ2$ᦝD At4 W}vv)Xnǻx$2'8&K.F!KieQDh(v6h"$R}eЙb/^;ѡdYqTrHjÈfi#d{*o:dGC_`J >`|:L/d(dPrO@p|Na]X, #^ &os=Q.2sS 70]mK97:eщ''Bg*X#ET*Fe_-J'L97;~r0Eܦ Жh)p*Gu[c?/A~lMıNdiA` ˭'<4GzQPMAZǴ㯐hűb_ªAZN\S)4!ݡ$=>T,3xU2VL }Ki_ \lU3G{mGBt_(Χ$%m7b3}Hm^g0.L㠕1=U):yokdCM>x;Kr38O7a5s9T3!:?'nZ$XC87k4NK޲>F#^ڻ ~Zn3v`yVݵY)C*@W)gikױᨌct ʒůЕN$\'S1L6IpbT bDS# L nE`&eXE"Ň2JTU+c[H5fɤD ZiAQWqXVP/>$Ǔ<~ Y5LS5#_KK f~w`$ߜIEXH(HAA}lo]3('7wZZ쿷wsn,K1ohF(LH)Bt QŕpFhפ 8T4݀T>poG[Ә&ot8NfPeOB7=5m A0)e874ԒKʁQbi*#OZ[x€d@3 S?k<}f=G{?q鯰cp&pJT|O[Ge陱O)khOf6YY߱ ֭@P.b(@pC2 p" bb9S2T{U44??Svzv.wo`وqvVѥfΕH K YkF촍:T깉,[Zȅ'n:̞Z2{8#d i{/ZJR7YS.+?^ғ7SfY&E1 5`5q )Q4`]&MhbFFMRuVL@ 2XvICNgpmISFc&RBE#"J (*Kee"(DQF H9d1nM= owT?76A)!P:(Vr$#935u](ōe;~I9q-8-Y:;-NLw1OЦX"`|e$r\(;wdOq*,-g"e#w䠹TF^4҅JOe 9MѦa`a.))UF4 d"$$ȂQr.y49RHT2&\y?t}q>cjBUL4- A M]m_{yXiFTjJLnzYix͎ڥ]ZKg,+gϞy=AMBĻIʉγ̙u`OcZ{ fNo.{}<*QRvAv.o/n4n8T2Ӕ.l>UP0 0ZRJ4 @%b*32븑4b;wSݥ`,F|(v)L耈˚U4lB! 8H{nشtY~RnɁ]{U0"0`\%RgK((k%=:/ѪɂqWV f!m-fB%4R6 -}zћE]&bt ]MOBUMĢ(i$=eC jKr^̗$H0~z92M_ZCVxuJ_"1aBs*I?m<SOZTZm*ZÇ%!wYzf!7п$߻]U+gThJ5Q%i2H†.tyIl|3]F4 ~щ?fCvT^O !q"ő;.tv,:lOoOlX'Zql+޲09>@𕋛]V_e.!NuB11?fEݲm5;VU3JQYxz(]98 J>%%4eiJ4TcD+U|a&});cy &c`H|*].f@^sYpû_tBQ{@D$!eNjSsO3F{bm*sW|M2ɉ@qM&1&(Adȼˮ/rVX сhRrSlDp0(>,)fø,Gkx "/žeg`bnL/pi*B# jfCga`B GmGOwKRî0Y yRU1a0Ҷ=98^2fwP` "ҦLmT6 DjOF?>4uTm.bДsƴ%8=&K`x+_IC8LѠ&yЦ KBMqgK .Pj8~F<]]gRHɵ' vER.$L\BڜMբp& o@ATӖŗ%I"{0"K& 9&_*(T/ )DŲ.#p\w b27h*hepHh/,^5/o7lH&ṑ fސJ+d19y'Sw;QoLB.eE,|2S4t(b@YKoɳj Էz/o2|&\2f4B|PsM$F&Є- {+BfY})\y@z1){Y+jsaJ/$381 6"axd44f  pn]i<J߉ݻm:05g }1n)x!`IIbA+:E^mB&jeXrVL .DsJѨx v5JK R)Q@^BɣlF,Al# 9$3*,̞`8EB6G2p9!\|es8ad=~K&1ԡ(CPV^h5d5Op48*%Jh; j:ؤjF9"SfKv4 AkqA *ʣŢH7W$W:315JE]+19N˻;YTgFy[vMsc.!*:j$,RFIM͜萘GIs.%=R^ru!2aM+5f )gSY0׍k ڕ3g# D(b Ay>`zݞ) Mq7X}o5C\D*0…qe :gaTJk[5f~jq]# qftgQV0R ?h(1:4+?+XD4EC鹐9 ^wZh9~İ=tT}#\|Tm<Lm0E~73ãJIAJ&ד֝fF~#i)0Z[$a˶Zg[ $Y~z!2G & L!䟉 OeYDT5 $d5=[Ӎ=]4en!E~OWf!aq0-J2+VX:Hb!\+^ )x9y4DEZB,~snHIdI ,O(@>oVdӝC@~HL}O_{Vv,͍2ݚ=<EUY_e!Y34`zz| X6 ƣĉtih2 %s+# uGv-jT07ҹRXƨ$aY g*\[U-SjЪɃLt߅Ut\ud܌X(ӡ v2GnԊANGsG;+R~3m[_ߢfR^k5QQOOs*`ޭXD (^Z9=,qNk}HcOL@ mM_לdN \Dj65**_g ~E*UT;m}[On,"R}dW/l݊kf7"CZCڗhnhh{2,Z7\sUO.g~-k-EZ۱k꿚3p˘0$s 0lF=3x:6|Bl-fSdadL9<2?06:n6K2`Z88"/h-:25:ufE8 γ{V4ib;Fs-i N.5?}zh{Wd=qK2 .65<(8>gl9έbxdr_oM[)cNǡ8$>+ߺLXIU2lM޾j9x59ŚLoN@z s{ ~Ĺ|O9y:ʐ]|;Ac8SMѯHnۏGہ#l7tOGG|sNRʚӧx:^ ˣ6|'\c јdIiTƈcI\rֿqx+?pY M7#}Ծ4޽YL>Ύ?$jyF7eGS6+ [ʸ6O$^bY<[{>:. 8Z8X5!.yɥa;ojg5e;$VWZ@kđֽރ26֫n~~sFQ([G؏25KB)sF5kULf$~?[|Tp/~i,9jZob[+\+]sB/Gq1Z:+{CD5>}ꇠ~1#{9Oqr! 4Fc4f [LKݎ"ݴIh> }zr}3u-~B0w[MKBn}o=n%X u %%ː@Kx8vFq/ 947Iͧd_'Hr>ik$JD?ALmGYAMzZ!A,,]F,C.%^EsE@0>0HzssQjض"Q^v"Z۲6%O i!)bz{qaP˳/_;c4!Ձm=vyܽjtm<~=X2{W{k=)A'sbE:SDbj.DY<2,Т>ͽ}\T1~X񐺢&բ]FЖȄH[.5gFVy)̸iKF 6lfDlY#6Q!ofsT;?֧u߂ ϫdyJ#+E$6B#p%8 x=&d2 )Cw-*#V i`qPnssa /hMEȉ\DE_k)v'F.z"3:sZ"sfO| ' Q❟kM~Tju&b1! "g3j,4?gF>4s*LIgJ˘r3X\ON!ֻCj1 .*V¦0&D.=-r0Q2u i2Ib@'$6}`Q':[fedp͎P`{?T39YMuSK|,s5˷(3cz@nUџՎ4G~#yO? jcm>)>s:\zuEl8SYw̼g]5ZK#`jYm5aۤrmwqKj5NMGM)GEڊCfټ/8/['~ W}xЀN$(;d{vY!Hϩ(VE>nBfCf4I B,zqM5f7n!}xT9d!O-,؅-ҴgttRXl1JW߶e{y}A+{LMYnraps -=)#`ЯAAp=>C }.(^]MIjBv?%3c GF"OX\tlt,7!,YFTEXh2Z~Զu;0&~)#jG%IyZtܼacf`/YG>8 0M$VP!A'dRэ{pcDr̳G_OW&ZRT})CÚ"~ HQt/fFƏH0?JyBr|L(J#}n_ OS,{:nc6[daa}ԕ&-]t꺑^d#F;>)vT.?{۰LxRH]9 }CD"%RcaogȬ!rJLI> >4Ad 8CNPxsb 2}zԼ=DaJA! Ґ}r{avLަϯh3@IFN 򾥏7<5s*#y̩ {ҏCd߻5IH;ƈ $s??~o=}7?LOCIx_ :B?jslqCȣ/(m}o/GI{/O7]r,91#q|[j0ݬ!6bN1G,λb[0Eh2@36aldV 0L{k,/o+}=jQAzT$cVZp1kLf#ǗAEJ3^m6_qi(I Ǽ@tWFlbpn54L}g'Ú4G >"Ls-ϧY;>4?rGErDZ%Yr;hL$&dwqN (3K#lŝf`~uچ6}ŋm@`382=?X)ľ/nmlR:XH&S"1%Gr$N8PM;#~lI!VJG;{ng9!z+0 q/ɗ]X_]k}:! ?&"TrUҸ^ӈygѵ<C7$Hz~ G-tieܫsI$0n4i6Ctb\S$X"KUB;e pV(o5zİwQҊPRk9)d|ƀYq}i VQ-lflP6rKc7 '^:VO%45t!,8;˓gC^y .GyKw' Kf@+=OD.W k1n=e0:$ԏZ9D1+*Wb;agsi͝S-G^fL!u[Q2\sJ)(v,rK=/7}G#Y"9K0(񋲯1]]FRݮҐبmeE7?o6-DփE?kޓRׅ]/4w7D<:MBirH!R7x?i]GU$_T1?XnR72I?Lcќ8sbQ"ʗ?ձ0!o- $brN 34wȕI,zB)eHyFy , e_͢ Y%\`čvIΑ~P*?J&;azV2Cr3J JULsXICBmgoFaC0&,v ]$έHKn&4egM2c"e%+۾Rj WD)YxzExf`sZ=u7sP ~Ff-\UzORx 4Cm^:yAsRt\MngB Oi~~ii57'hώ2oEmslXlB;ɋ\ײ߉' !\,Fqٷ~Z彎μzJ>% #Ĝ.qt:ލ J$1M"Q4fJ$/;zM_U/jMȟm5wI_XcjI1YAy Y1[eԦIɂ$^4 Zm2Do1\k9.}e~:'a!"81ݧ,OL%{3n+˚u0=<5\ ZHLJk F3$lmuݙ_̲lnwaD=+;s ^-tLFwF5H2 1vde#_u2_G\"L>A= jloXW0!(~I ]^,*xN96F`/F~Ax&H#Rt7IU}l9 If.W{t|OΎz(Cν.klx&(Iay&}'? bA |9U>*rZcK$'4 tWqnC"80ٞQ^b }S?KH_V`Kc6y>^8NN#8#X!t$u$^WBD<?xVL1xgOlm='Aǝ]aGVV`d|ߣWX$<4Gŏ<%ɑ9x?[Vh|_ N7d$V4ɫR + pO}$TOWC;R)Ju0ɥ}'_ggǦ5+{ψz)B/,wt_[Tb>;O⧄$\sFCJ^a5!K[5U=0M9#ZTj/0e|"@CS-c5=wٯd<9SAJ*rsIcDo%Ucʿ$cN3Q=(͡[1"R.* 7?'`_\_/='kwX]%}d&փޚZ% mjm9/Q*o׍F"Kvδ#{K޼, &AVu<;&\ܚ^:V9lρ }wuJ\bK]|>uG8:Ls++uFubۺu% }1DÊQV B"ZI^?#/bo1R(;hKk=y( B?ʗ+؛D}&!r}BN-y"\S!1V l 63ʖ āDWc0 ꃤdv!-@_VዹV؆hr7ׯo3u^w2`0'|Y-%y%/E; BkF, CFj`e0ire! Þdx(YIXvBrVn\cjJ8~#emMd"!$A UHQ/♃I !c@,['"8gPnR`3Fy)xMԸ|0Mng7gt?-Q=siTG/Q#B$1*8\,ǻd{6d_D1> 5r9 (appY?۔;ru`xњ3rsiW;#}&Wn@iK[6? 3%sZ# Zb{ץ{o/m3S[s`/KDknk:fvN pAV2ЛFTGtϯa #5|Baw[Vn~Է,Y ،g5e2t̕[{%ڮ/BL`*$LpU8=0Vm~=xl+@GF̝t#ePc wY7^"e5j=D^z,Ξ)3wY@J.tܟ㧄D3X%!?:R.Bs)&@aT=wwی?O\fxVurm|I7|reVfɅ^! 4c~yF[KLX[G>Ds=X4}ѲS[z Si'痥l|CGǐ|~V+y_e:P@yHdJ+J4l3aq[D9Љ`%q7xRm-RuJʗ(DU7<4L"-bDNi:"-éjI`pu9o@P$1't?'Uʘ] > ҨD"~Ælq'FW+)}4ܠ𣵂0C+6\5\56 GYC0;lbi{d"YQI:!Rr+NDHhNMC(?&{c]Kdmri|*pc[zizhU9w.Cx:hSmL>i\C030ՇM,\;Zxz.q2wJM_o`Jhܐެg0EAik[]D?/WӘ  w=$ᅳ;_6[0Ғ7YeC(L)8="yZS.lR'3%)dB?!Dh$(wd(FDhP}L+CEEֶ>2ُڕ; ڡEI iHf'=b$y5RH,͟|,y&OnwyIwD6L_E!6dO) H07bsJeXC)#/C0Ƶ(U5jDzcUɥԛ/bPO~eH#F?_Mm8-.eRo~fWqX 6FV&[CcuFHFljRWz<ۋKˎ(nq} bm|'I g3#ј慀k NQ4,$F$ѢZft0p1dž( `7/Z7韩[O[~10TQyHrx}N-^9,^#iUXYE1vDp`>; 1ޗtpʭd~b27 n{w_<&+ɗ9vdf2Ch2 F\PܛNٕ\hC}rvmTԟܓB $FMƉ)1Iq X E+Y41}\ygG1/5KV2c v޵$f4AgNˉVW|=\t~ *iirŧ (!ERDo1AM uʆ1q!xV+]@ʦ~&0T^ ydKƖ2T>bXr)g6x2O|oۉ.QوZ&sIC^>c;eQ9Sl?̬6ae7v{kgz`̈́e5& N$O0#0rc_*^h>qH̐ {LrKXA%x ecO_q2[t{=Y8]ENmoSNVbʬH!y+3T/w@T2ȗ7?/XUDHbO|M< MS]Y/;YSoO:GGwa%wp\_P /嚩ЛHg`nſ $Q^rFv|! c> }0={h(,S̝I(|}6TU mR>+CpUP"Q)e8mNqpSϘ~>"dPP $0yQ^C'"-7voifo:5}J}ؙ_q eF&骂郗p([Iz= 8W%T2,ܲc"1)+[<:BS%(k~?щty̅Imlyy0j6ښz$)MSnNHsq Ma1<{7w@Q v h'4}Seud}FOԲnA vVLp%zA#*U$ϯl%ЌGPH?!%}{~˟q4~9Wso3ɔҞkӜ_}PfOF}4~)2{qXۅ~ԛ<>?ԡ\ѯWSN/obFLLу'0QeD>-/zr?" #-~K`{<^(8MY1@K?\hp{5{WYyfG KDž~5|C["{.Yؑ[l$ԗ"CJpkc ʴ63v۹Kbo7sNǕJ]?QG NJI "Dбaf G٣ CW/̅ +_8ME Z{T`qXqÙ!DZϚb'(M/ܽb-v; &-}9cߵJ~?>E&o]uF (p@5&2j"F/L ̻eim'Eɂ(Sw%hY\nz/sVՎz>x%wl$7@EDOӘγ{3)|>Gݺ |D$V‚0>LBB gD4*z4o`n\ZOt+D $xm-[hN2KfH#:ӟ22HA!oˣ7!2=d#1'&/wJKm[ݭLtܼg4dMd[V neQ7%Wjĸ@P𺾳z^CGL"V,HNO8*Ce#D@pOPq>^`~ү*iŀFOڳ4)Y,;tX sxaThT2q Q^UARU'I~4>Bw],qC]a{>CH;KÉYAlvOzKg܎}0Zc* Bp:*%%B; J4#/C?#`8Ag!#/G';NԸ3)(5(Cݟ}[{\~L˃9"aa%~ܟ<ȋ~O~w\&%Jbf'#$뜯zMET39 KxkL-&$C]jk_s_oM3nuvy2^wfPjv /[ |c3`NoAbׅkM5jL<沰vY C|F4i *F0z, FmHz۷8 rMyy'p r׭YL( 'Ws 4jmOϦF62%];vί{k)(uY3cMDJP"8FD 8 B!fRRɓ?S`R%X{w{gcN\^Z@N ;JRSq;H=pBr5Woĺ9ёQxU?ǧ\3ԓ weW"nt!ִuM/ZZ)HU,I0pNf\)-3Y_‘liS ED t.Kb`ޗ}_Ju,MVGCcH+ӻB{AP $XҫK`ۿ)S`hIϬg~^&ge>~ 7~/ggqwZş[`wQs igb;$-u:V]fe:FooGr2He&gm.ά!ѾHy2Nz$u=;wcm1I}Ffds k\Řv6cf Cqw=AOB{.{CzkgceM>gU3tz+g~ӈؕ37>97yNJM 4XYJ|)1Q!`H9B_`;PP  Q\V̀\7eR N6DU^3\wUuEK<62|e^~;*ȊN{McA/+gY+k]\W\ rF\S+o5{<Ãcjow)GJBi|&K%xNn+,W &xc I+\ϖmo aSRVhx=̎NT҇ q'6T\D~[n=C{IMuO;|"mj1[o!cdvJ#zKP6=e_G(ţ^D+~4W?s1ںd sƅ"TFM6ĮeZWݼ$[o[Jb&ȸ~r8"$攞FfWU{Qw 9=YghIܡ۔s(,AmGҝ-(R@z.s9))c}F'm]ɜij0;g9ϺɃ9LD*(^ c-azu__ Z+g&1C鬂6H!hrY؃ڢx9 q A8c*ŽbZjw{9H< ^[t,f^:|R*CPř?.W1sH{/ːDl{BgS.] I$y#l\:;Gr2&{Ş2m3$Rݳ-#K6J׿u8>&J*~j='\eQdaoOC>׃/f l̦_qB#* HBw Cװ 4u}KunҊƝK36i)Qu^/|8U!6Ygc8ߗ+s^^ޮ=ͼnքo͸F\H4}ؐ^$M3ǥP7i;#D K5zFo.K1l, ߘEoyfo z2fLYKomn3X<Վӵ\fMQMPSg&C?cL꧴QJ_|iuiMݟ)1\`t߻z c μ罿Ă8q'qG_I%P" Cx+i2,Ȝo9& |%),K rmods̐{ Hz sٵ~g\1t}YM|1~4LpYJCw܆.`-B^x3nP}WPpaMC5r~FFjb,$h~;1}(> ?NBH\u~&h[_H;(dMU4ҿJNtEbu&wQV'{;+3?gK=|\aUF+gj?9v͔̄DWrTWY.Ͳ֡; Cem08{ V@8Lrr!~PMvj]PPNWc-f.8+q(qmw`UX,x(pbGr?m}>F?j8NT7DDdk Y؜F8J<{5c[t؆Ԯmn[_s~:W7iT?ycV'dG+~0.0ώVPTXJ2mkҲ!oq6J ;nJns2 P7:Ep~9u1b0YCs:<=WwwXn P~||[KJ,cP@dbJĥsHzo9___$O G>ڷy7lj%qAm<ӆ[m$XY*B.kR 6dq\  zKhfdђ0PI41BЅz+ zzAB mFKNmeopw>B%'"F5 N\JEO_ra@ߏfv=p7'!YB`ƌfV̨>(^ZEY&x,$|Z]̚(nJxVC!z*z()H>uZɔjVbe %#Lhgkq/L`TA3lGi)aCm۵[f6"5:JH"IuJ--X$NP6}[5Hh,^O?/tbƀ##Z>{Ԇ<2bıWof $FI<tGx0ù[R^2.Zx"ld5hx mmk%vtBJP6;~7Mxu~v:ZC'q|mDl 4),!~9MjV0(f W={??|G Q=2U 'm 6+jElhnLiΩ;vfqfӒĊ/Ruxo7Qt!/'#jBDDE"2(I2kġu1ؐ2ҞP_U}^;7;q?+AQ X1SQRj˲KCpTe+ƌ YI<0)ɢԚh$UBpYr;/3'$|[YПDwRsX3 @xciM{&t?cƴ\NQN{Hnlxf^U#KȃF[-Tfm32t{ȇv7~;2B,5 a*J9¡.o1Z z!Ɣ@<\+W؝Ij<=/e [|1{M1`kOYkޥ馩phq"5* cPA穯߾6'}+ӥuc)F~ʳww8wݝ/gUE*So \H36q[M  8:oq1Ī ݗQ1W`|C;znJN;˞/8WÛk呢  73z)44"kXO%.+==l̦aݚ^n?Sryw6CC&[hJ>i~o?M_NENQ}J{L{[VF_o,I$s}s0ETtḪ <\C&+)'4!n'c-w?6#wwhPDDy`rjW/ ;1I?w-b=TaKhggMhQE!Ե ``MJq6Q )`TU|dDGV 3oq 3/] vρܲ9^u>jxӚS[ r_$$=v17Wz5쬗C vu.\e{S| ^fa2])ʜZ4TOMϋ>F }gpj)UaE{'1~ޫ\JzCFˍ]*#34s UP?uA'W_8^kl`}¸  I &,Bf^RY4wi2n ߪd4!"=6UUxV/%<=]"_#}MMqnD?.?6Ү@eƚD6_Dآۻzͺ%8!|RSBzz \(cz@br븵Reܻ?;a~2YX.^jq\l=bE RXF`&_EbGߵ=c]Y~:#lHk esh֩Is fl+Z?lk^~q_;}ϡɳ?2jLc)!$>y׏f=oq(cݼ3'J)>Vg~9=}/ Ƚo ֝5簣lVz\7 pӉgzeP9Z1"~M:f-ka}s}/.wlON߰l5~4*{ptQ<\/%RLq!|zirc_áF;LE3ؘ_$ע{U9ӜMZIVY W'Q |Ef0C1qfu&n[f~ʣKp>uYԿijwY'($I|΂0VD 옳QȟM__8]x%ް}1zgAMNl:r7Đr1xe <2fixF)Y,F4:XDY+JYU@/>-[Ǐ|nT(Žּ g : |<7̔5,,Ut ]qĺ4&|9켪@lI tꚀ54+Fv|XJՐ0Do Ek>S~ 0>6`/xsӖ!`F0SwY>I"unnC;rOYeDz-Zix>Y4UEb218Ӌ7 0PH)rm =Y%=ȁ{|zg#.3X&yIhE('-`(}QqocO7Pm<1/0{DsFj>326Xj7S0@-:C*eilD@+ )"eD> hU2s#6Jnlc'dVvK֕ɚw DԵ|b<'r. ڋ@]PqI:&24vNe'!=6Q)ePV]X}Z+m M*`%HY 1~nuv|>KզC>JN;NՆԻOW9P6'R@B m5>KP-<[C]5xuk"{hUxXѶ?7?r + YI&O=C^1?YOT?g56nw}ge 3 ,bAe4~Ǫx JS,OtyV N4l3D[FWl"wM$3f"q+r(~ kHY{Eߑg*|]k{1 #Z]-sAU5g0JOԈp0y!G[jVaԯ8$0Gge7cJ?IqVib )~Mh80o_ٿ}nifjSuo.{D:uG|5`vY|eFS!3ʈy,PJ:/hsJw~n|o';oU chD/iG 1`;eNg'v"&+}5/͸ O=QJ@I4ք4Jn}WΆa#䳊\)9XFy,T}Ŧ1Z;9˒zmHB@tSa+Xz2g!$5e[q9 ?IJsSjZ>6gYau[FPZ]Jߑ@Po^rߣ:_.†G۟RiT6ô#Z0kˈݩ x;F9z9Dt?kh{4Rh)b=`yc$ncgWLg/e2}ƭ V0oE1۝HtQj(.1t5;<ݶzSm(W>$iٛQzΞu>X̗xY T&_ji0(ж/.* !5;h ;uFocrW 5(§OZS7 wF>WXc9eGP//%FNpyel)s jA~& _.)s+{{P; ߣwY|4eFpFc 2*z:y{rSf5\7_ݨs(G4Lq^vGDQ?%1~O}|3 U 2lXE"ʵ$G"S'.FuQN>w޽ˢ>2='t KNKArpMkY[HF^,d.䥌|XSceN1FFr*qH'Fl<UdTt뚋XFcɢA}\%ֳ1H,jv0N`bD8#鑑ss4BAx59Mk/2 {Rw輰* g`M&@ R%* ;g)PFoۙ8Z AF C`MNJąIWez\ɻ 7] Z%T6뵚4|+!G"[HlAu[b KsN6om('פ0D<-C#@p#P&`rc:8Pk\{Rx|{/&,-Cai[,Q?]&{ڴWGhWFP<E M~AVPwn:/pv7WK ޥ rX WQ;` =7s|_O#ca{ ^'Kvu$gz3;]_&f;ґ丶QOGEV*MFOiY;i{<5J|,suC?o%Qsmۤ/uUWel^k#;ZQQl ޯ/OˋP%ܯC:ՕD.yY%SD@ux 1Ρc,]O/ůh-tL(̤3˦~ssX ?D7Xb⨆b)JM* SR,|USþ,3!!̺aҥ!Td\^~W*r XXNu\&DC.Òf/Ɲ0n++*W']:P7΂-6swgZv ,֫Ǚ/MLP_R3iVX 3R`0FMu 19n0Pi4žzuJk5ZqZ6r̈́CdNkQ:Zu9fsKYiO5ejm=^&=\QxYC>Bx?C#k ?iN/k ǻ`)k/{9K|M1aѸ<6xG|I3d>8gN޳dwl`pF߫AKB4|cea4<^!ʫ& ̴Qz}Gl;)g$n1c6./0JJMQPBwQkQdZ:].>i- ohX~ՆZa~Es#'HUw]TY$x#3Dj\mkfEaĥ`c^qx\?7-Ur#b~={l>.ZLM8/zM s0?%5"n5?R+|8. )_˔%-H 0   }' K[:4%`~~α,d&=PgH y#Bec C@ 'hݙ#zN9G֛Ot׾Ϥ&BWܾO,3IΕ;Kr0^RD"s=[mtC`]c N]Ϲ]xMvEdtxԲ'/Ņ% M˯~0 C]hB0X,@)mdkwxmnP8[b+xb|,zZԦ^@ךe=|b&ƣk.| $+ʯDE}PQnJt96?lmsmێ)'(8yj/RQČWZeG\35V@/mG΁zK_B֑W%/Af~nӊ<^W,Zh93p3ZE_o8Y5^cʛrM)˒dcJ{Hs/2 h&n:t#cՄ4~1' BJYw'~Sۯ9{[NCCy&nFs2^+kLTm~9 >q)^ǜԘKnU gn7ȱys/(DIsM5zS}åbjGQ>uY+6C$[+G*Jb0ˤgk`C!mUlT}mCNo(v=N 5Q{/F$8yN狰VTJ8-CN3[^6hjM$dҐqo o!CzIʺ c O|75ڞ.3kt5OM7{Co bA$^myS1ϥYtˢYkW7캑IOv&B_4YU?c[D]E`g Lш{a,\o95x]-P A7.}m=TH߭N1O㇁+)Y[4+lU,%ppŽ A '#X.yٯa <1f4OmR~-.IA kã 2匹䇓͆>A1CVfO#gS|+N7gU9e-{$*0)W) EĚG0e.V)1CF 7췘TSZ6ZJ܃7ww+]F4!C'F2N-b*`_hIAZIƴf0lVIc?a+{,<CpVtR5\T>t">ԑxf}ͱ~u R%2BwOiT9(8"87!sTXKLLf~jܹkDRxj UwpH3Y!ciqEZaf 0]x@㖮\DeTZGS'|j<}RɝsbHPj%S&@ȃ{Zq3kXv xujUaD0!\ug߷?sRG'#uy?)E &A| [E7ݰ3]r`MTN-C L5FD3UdP* l g[ɜc6ucM>ܞ; p ۮ=Xq .TQï%)0Ng>rA.~ Mt<%l3-m=fA !Ig8%|vcG[(I`hT":ٟlyea j:I߂{ӪKT }cS7k #+Ӷvyv;WN[! ~^U>֛op^eaF3e | O%?]'!#wUl3~&wfeFxF@}H_zEҟzQGFD2:m a^=[?{RS-pFSAuaOc~y]3&an L+ n8HhOq ]pof9b3 3cZjiMGICkޛl;֒T9YA 8Qf`D=2oʼnP LDqXrCj8mIf8krlie Yr5adͱ6?*1^'aQGN YȑYҾ,P2$T@nUcI`ukny&jNCF!SD#zef2(_T!F "EXKOVsaDY$Զ-STʂ7}4AS'G=`(/ "c3`L J^p@/x ap?X8kF\stKc; $w=}о(kSi܄ǮB\@nfݳ' t}6a\c☕]qz^b Kt^Ea7F?ԡ^Ⱏc„{NcgkP{~G_J„Ai}-^?:ҭ9my:iU5}^%x.ˎGdoK >ڀF BkvA ?7d3jS05xrV03fV1]SD(q᧖G^W8B]I0+㑉'aXC 2kqIv(InmBsAfA&'V,83UD.} e°)hnr "0®۲1eIbpgwO:tzVխS4k Z[H6ŀ0` oFOpKE~]Px() =VG.ܒ+he!7 SO>6f36i ;@P|&~ iM!1WO9=t,n2;v49 Q:6$u_MHx|@XdK" Ӑ@f'z>[~IdDqd;|In$R"nQfQ3!E&:`1PτεR~?!r!M#{6XʙHiw6}%;=FC|zrXt63rSs_Kix}9įe¯jئaԃl lU^m| U#IHX{ޟ%ih$*fEK–) B B UJ-Ǵm^})[bRxe-_6ɝˏXzҨfT2,ÒWTP< j[[LhPHh~([*䵪9))ll{&AKxo# "I xc+J>=7F75ǽ,|7* Ccy3 l\ʻ*ʐ$@9D!$1I$`Fse$k#@V"֯]& ³$}z9"=U 6_twKB}5i:xL: .%9$B6| ,XiOk"F+i=^ }IڥRz|dx]-j%Y(hUzH~MՉbeSfXH_~ݑ;x QkJoW}˜ΩiL2< 쉁̑.z.:/o .0O3n"+М1V|y|u -s eхm9P9[|Mb*pge&x)3d GZwǞ$ίbElzݯ(Q39`LpKJnׅ  S2ӻgyvNDOCmٱdrKi5iMy&3aeo2xև0JC]Tq[L5ӈT1qʔ,W?2YP6 Rqbwp]L$!}w[G3;-tkNCB@saȋ)@n}At>wWaZYr^r_~9bG#PYbORa"OZWW%Sn|S ~ϋeFU%t{EA_"Y1Zx"J!:2gڪkCIV4nuE/4AVR/ɦ.Ǩ=odV[:x69nj5Y/ ̨Kz9p)F࡛^+ECe$X_ < N ƃSƩtL4 Gss4ǣm/&ֈ+b$)}H#En+'>kɘ|6Wi2Q0:ھ5B#(5lRdA@5L\Pw%\l7YtӢfkmK5+UZE&i,L"!/2uJF, -*i-۶_GKhy’] b&!`{']3tZ]gUԺfD/m-,V\wnbw u"![Rd`Z/q'N9/ZGc?,AmalTœi7#LK:`ck9`VC 2 f)9I2[PWTSmN}|[sQޚ\O0&b 43Aܦkn\ ̻ew¹8$:Ζq1iG]$AC!88Gv$O.%e[3m,QrAzv7\砜LSU'J`%&>ws8"L{+q\y?GX0<:ݿn}f@XaeKpV8nm6 3YHj~3+8{Œֱ@3\I#E\lRIm=5EcχsӃٟCZ@qcPzg 2"{lY9 xN.f(LmCVDdJ+߀Acl73c di~ŋ/C-=*-Ca6}\ [!"Npf]SB8^BXZJ~^W Ԙs/cuDlІm5r*?L򀯁#*TI cY%,R(XmzX7LU;T(E*,YnL@D4 *Y"'D@="C3;R!ׅfM[AqcfN5C| wwuOIf{ÎB$-$:NM0q[@"% A MyPƙ,QM4lCbx@3v dV%4YSo*[ү:NiuUUkeMv*i p v vRK5rOxv;,[ԟ).&:Ѹhc>6dؘ--o9_ǿ"жM#\8N+ 79Zu  ;H/:p(0H"%)0ɷj,Ӕk)rs Su^C},t-KlYdvlټ|I\f P Kg-cWTW04fQ#}:pj!;%`?h|uRnBf)`I_Z}KyLvLX⒬l%=qFd8CzNe:ɱL'5!! 9՚+U}5[H6(R? xi]g- 3um?/%JAY^]b6G>:<5a<*1\OUҖxQ nJ[@S S}fy3M> =46XCNt$Gd &^U m>I7F#XYz.MU|w9i 4te,G_lE 0A+J%blm+'6_m6ͮs1[jNJ_?%FTf9pˣw "D'k͇l2|S;<{فբLeTi 49S(g]_d(y_]x9d,5 ॵfLϴދ)i j) ͱ_6߳O{Ued(EX H1a c8HI*2~I4BDȬ੃z__l:\*NJF#9TKzM*ԷɠħދԚɿ>>Ss)zN>c9xRV[ N˪;c &?wE]67ߝ׾>%ap(`D! * f~;^vQ6#Z:.='Xۜ$jicRہe?A'Fg0cmة_!pt3ǩzvZRL=@kؼנؠR~kN4U4uc_H:v_z6[} CE}q&Д$gfnu?0Np J&~ gr~ !ړ*o[{)x{[=Erk][ɵX S@ȚcW5;pƐ!1)_)֨{!;Z}&{?{i& >= JOq)3C/ F'6f(FtGT?.o#~3,!/[nar|F1콐bww2<_(;5&.eDBEi^39|SĄ+M\#` o#i}c@owZ1xkb~!˝wkyKcMWAp0y5M-Ɛi'y'!ܼ0pn-yuYyyyyz|^^^V]>/Y( /Hr4/0|h9U;(T$~ œ¿?G%y`JW_AQһxzq@}']¨p485s4V(z)u1 dwsdݽ Z*\!RUʭa`;O_>瑸̰x yqX/Y`/+\ʫ{*dn>}oVF2uutekz [H!JTe_=Q_[%?٧}`9MP^j(r왍'lnsJ0|zcۅ;gPg*sLtm؏1B ,8 ΂ޯkjn2O+ωd4M,~\գ(d36tq Th!@/wi]}D'!sSAy^q#9^a[ϿW W_WvXX&lle\,gldVFsth)07* ӛ8\c󼿢}{mV 0A6!rp/j@YOx@]oV-z%2q,4ڕw٨xodGix@!JLg.n7|!sY2g L١~fx jc~??{#&AMыԀHJ| !怒* TUP?i=TB X0&"a.p_|gW2Ulh%%D SsKiv y*ϘB"d>DI)Ј.@d&6E@CW,#&O3 ;ġ,]Yi Ν)K(u$#aD˘ 9q9b#vu|^ By탃˥7`t.`7>n%C ~um`F &O&f7740f%,#!Y:HYB]Mi)(YD+>co4EyS4kʥ4.Ƿ:) s#*Y= DMPGb! l^#$%I ӝۼ'mw=?;}[C:/>pMMWx 7ogXd,}U* ,Fk.n᝖/>S Z"IP o* GkA"6Iu\4M ߜtƦ(v(i^2QI?eW6tӢsRCd&so^pη]]]]]T]E]>Jf.:Ё@8ցGvXO '(ޭ{K(A=:.j3\*ᬱo|֎C>X2BoEH M:I1<̳(k(77W̨@DIrBS} ZDo'>~GGd8jsX%(/~1qa3O0 rCUQz;cdƼdsKZ5Z< aC>~O6:wp) lQɀH/ eۺƽ0JW^^^O^^*^<8@^@,^^yyyx{1D0b י(&'<-4TUc}ֿiSTd&ëqŸU2#r+/j 횻d1(Vzс=ud ۤy3y{=S8&^(#B^P`@޽o^i;ds/!)Pq@, 6b¦ ? O8D0gêBa\;}oillERCXu!7E6@ixsZO}Zבd2R%c'˧IPY`ˆyщ3’5[Sh0K%>Bਠ*ci#  } M[d'e QH%c0YDd~{YI5[N5'&3:gFh$ u&**Ň:r(Eh34{69#ڋ&BvLMQhQcyx4):z(!4\ *6,I0BUAU*D׬"wC1&ܡ@q@ٛ|WϤ'!wh,dpKj{n=gL/+pUxOd\+TjcY|LndGT8&FĚӚjSuaᎃȢV@ I0ŅN؎}iW@oƯAh70," h}H99m-NO{A|>{yɿf\6͎]z+{8l;>Khnj(N;VGK.ڊqQ"#!%+F j#^/:S2${kg%.WXn%v Vd Y1]``^2^_"^Q#= u:8i ̟#]PtՉ"!(Le!ҖPHm**" l0)iYlED!x= ynCcmݥ`)#&X5-B$L\,z0 u =\) NUŚ5\85[g2udR0XDH"7hȌ-6&LЖVI&m`8傎QQ=W 2JueW)Eb[fS2ȫzu3un5ERj ȣ-1i0dNN+K^oV׫ytjAJe4F; *CFH8.pQ0akc`mm YPFZZR=Ydvf&ֻS2Ï,$B[Yl:U;4]N#a-b(5l[t53t;3Qa)Rb>΄HV-J72 ce·#D;w2jY2$wk[D5B.L1g"끶S RUږ523rPD$J3yHbP:"%Pm?h(P!6 ̭tWSg`1}]貌wGv A> 4[7R(ws857''SޘQ]ԼЍOK_we1}O"gkK. yf嚶7ꦩ̫p0000ZmI'D@ (T E&ZJ60ST)Ic {6`Y Kr~ݚji#hk c~|\c#|m!B7?Ddbx\f隔(H3̰԰x!+!nWt<,{mXv0fg+'ynY&_q"n1h`&0Ę߬n$[z+ Y]SސG8pp9p=*sLt=3#6Nc% )*Ŷ!Y iv}Eը/{BhiKŠɏ7" / m!il3VϡL*;~ Q*?(H?cf m3ָ>r/K*+2kn);<.K7q0?la~o] ^ZItjt7粜1X-UK;')^c)1KltʈojZp K`@"BXi[U܁e԰ u_EuaBfޒ.{[<<XM+4 &_|2̈^Z˜MkYȈuShtW"N#(J 6r^R^cnn d"cǤkhs&>"Ϯ)\.-'JK nM7.2]Ju' -# 47).I܀̱XSj;ǡHhmLmkT*ƑfǾG#%XF2.!0M7",lᖬ,l,l3 xNپ19jT9%O%y~g ?CmYX.9xM|Kh6yvu,/O3aI ooonoooooorsr Ɂ^.8VOi#4<4oR DZwXp~`6DQDsҒ +E#Yřp na[I,[:rOG)[CEw\ z0Qj?l$PkW0i]Sgn7vEZWQ p^ wϙVWK]b1j;(3+I {Di>游t̐=W/$ 7.Kˆ]&my(>LٱR;* %~R"&-,s3U3*âK'3s jUX9;Q%I|A^$+I k? ~<$Tdc J%|U0vaESH Ʉc4 3~ܜNMǩe%/?;񮛓L65Ő_@7Ik0zebC7W96rs s +3čSRb[/<Yo{쐯yWX~ |TEB^uVEhtxKY'{jeK!-a`aco[o7WxKGfaR9" Ho}4'Yz.d H2l_XN"X%Il 1++ch]O<9W$!3Ca'RځkzWӘ~_K-jN6kkM5^jkkYjx>xb @0(VIY}م/\uw6}ۙCOIB&yجyv7lSmc1p}?0kWxd@-c=]SsefӃ$4;yଢ^uaIˊhvR5X<_*3ՋNӍA|h6Oblucd]^{[ԾWo](Ԋ;Qx|MOw*N Kh#^Yi確e]l6\+=1jOcrhtOJH`+oMA@Jj?hfwc?׳nTP;k[ٗ y5yuT0YKB=Ҍ9 $Y9jϼ~%ޒ@`0È`K0Aalaڶ:4C=_T*+{^tƫXZTk>gKDqh9~jnB@ruPxV /W!!"2;e%J[L2`; !tAY~q}JXX>i ?Ĕͻֳﰛ* l"׺ j L:oN#.rG8&6=`H0 $".${ T[l&@94ӛX.@Mg'P]XZ2 R  (*A D"1Rf CQmAXB6#Ӆ"Obhl֋XJFIm綵[Ovn#ı$dkX5ʬTD$TNd "P+69H!Y>S<6΅`SNd a @BV@W9Hgd/Y뚦I:Vuﴵ[QFm4zYŢ^㻛vo%5q~eWOM ] 9fcE_zJ3Fv&CE;KrGn6vKiR4].1t,z].KX-C`ĵ@ID dp@XK`@Nj11 u6P}QDX069kJ:$}<<=2l~!}ܶǯ0#JL*K-.D%"E80s(<-4vaAxuƪItN&;׮TW/ojHb0D bj*筶c"A`҇ɂM](.k#%,Lzݰԧfn]}NәdMDa^(Q!iCqx@_{HL`*%}6;M Lfb1@W@>n*~ڰ6=S8_]a?1CA D$\.<딨|HZ<::LcϖVn$ZaqgFeYpcT C&j*]4iGKfg|{=Hgѹ麬zS=fgtEH"TX`"dDF$A *"1TX1XO}, *J,^Ƞ݌7󶏼 ϏP}Ү`r]0x>7(hy!!{s,c:)|GW/SZ˾uJ "\{eĤDg0pa@pRF D+s-j\ Ae{~F֢MD::,P8[ ڪ8gqNϲfM$z}PggJ/O} HϦ0c&B^uO(3 ~yqy!|Ci]‡©aaaNaHZ?GGq#I1c\ˠqL|='XYpkn»#;k,4n[/hRZcGf&eD%c?kU;Iv[Ol q&?Ur58@!MB#[` ],9ae5A;)Cf\{YT lS븾QO1RQ Ы"o.=?4cW2rʄd tcqZo4Cam̭(G[[[%[[[[P[[[[[[:[PcmmlmmSX'GV'yQ=3LųhDof.ϸ}csΤ;Q_OTlr%\c + 3p[I+2TոkM iUGK:c[+a!& 4uAkkkeD6F L!q,8 8ܺ¿8e{ ?퀿+GD/aMya@[-k\*'㇛<(a"|2B l#rNl޵ 3 ؐWQhzLd^z4CHeܡmH'] z8 !2G|:yЯȌq@Pq3TTamS뤦g~yz1tk-gAOkx BN,Agkt:n0 b 0l~ycW}!>;TCSWu4zh=M|Su/NSjU{<3$Bx mqANñ`FBAag26'u=Β@RD!`2s~ \O:$Om$}Ϳ1 i7C14q1XC=A}/=BcHX!^=v:VN/{2:u,'xk'ΟsM{ʳaee(ee0WjoS=V28>$}]s*PgNGUGv!}zФC= EL![t;+!uP:+.?6#ǘzڿvvVfoq7hnnn.D0`8 M S[።bF smcoH@Qb GZQXvߝ|=xc, ;mc\,7"}"窊* FWWWWWedeeeeeAeG^ p !q bgt~GyrzfM dtUIb&zH"rM_;K>L+M`fJDJ\w0?uCc 1^+_c7]}_!y z8++)P@0e,f,@ww838G ,lj1 %ki ) PЬi=?l"Hlz̫Z}"Z:I |IF,e1XJZ@VH(E#H,`{ağ/RpF I 6"%I I!USSf.͘1Mi$p QB$+H-#tSm9|,M,d~#o+24oi aaX4+ߝ>.Ʊ_N ґaNjL+Y۴n.3BO\u%aFqED` `nņ#Mb`_M:PH;}_aY_ב|Z#2dBܟ{A5kXIG5=Wx;x*@l*$]D mT2PjT@"K!Cg k5d3 !$mca4(pA1 6x!w) w m$hp\eQmAaā!bfSJ0TUoh0To"zjǟeTy³Qe7?ol:X%k>טe MoY#00^^/!mEgׯęT“YOaa[a>Qa%aWS0aTaaaD^aa0,0Z`DٰЁx-#o8qx$o ]%&>y\NFf#[WJ\out !5ZO'6w췷wooЀo²/6.. ɢbN6q?<#m_Cs{@9Lme)T8I{m1D? ]l뒯ߜ /QQs {LeS䠋Hėa55Z^ Ix6 b!!IfYXr7Jqe04.39s;FFs}}}}S}}}}}}}}}}}} }}?}}}}}|?}|3Ђ(Ob"(q@>8ܑn_Ėt#pަ>uI/yuE5->΋G}%$T-0jgWܓ[EmyyyMLc!DQ-iRM*5>F:#)zT!umڹϟ\$̢QK{njϽ]e uD7\3cRXT|6}n&(-};qJ QeF+V`>Gh7f4PE6/c?wE*Tc Vk1Yl>PDjZOZsK&(!o祛MCͷ%)XdB rPܻWt\}]-z-K̙$ELqk>.QS:ඪݲQ^Zt99~I[Nv@_lJʕokDc.fDZX/pS)şSud4Y=&=bOIu#;mV* ;/.0ac<ܦ !h_Ν/XzOZ3Pꀿ{@{Ρ-5%\j?;<&bXO$"MO3Oj|ÒU~=/UTN pA&gmN;nM=^5KaF<,$ɒhc8osV=?%O +9?4c6UamxP=ֳ7\CiJYKJ+uAkZ2Ʌ0Y0v98+v )xyo5NNUs J `TJ]Hi@DOFQ$Uqc]ȅa =Y˘r럫= rV}sPPM)NCIs":OU\Kl?B +58p_ZU/eH,X]Nx{" Wp[auٯqZ##8߃rlZ b7RڙWҙfO4,S_Ԥykd;u/; fRZt:R#BF\(5oJ$fa΢!(jˍ0IrVNJ}zWP' [4^йjDک/?.d'I)6[Oۡ)nHSiի駿4I~3`zbc 'J`c kJ? wig|Џ@Xs/h&/\(%kKQb EKj@qv?uuy,@`BZq"pn荭C_ Lh/K%[2KxųRyyܕ ji(ߧ[7Q8zGS̵GaU<#|}$9B?:k98-jxIl牒]CrڣUl݊]B=kPٵ;rdc_os ޼_(28w?]0,}u\kmE$L^$J[#KU2;ǃ#׮Mou}.yvVG4čIJثxAٍ2 ` 9^|]k9zypANyDA1rh+.˴uąZshkĿ:vgt(-+ǣ6m2?~,9xLIQA` TFxiTw>Qw߫M=Mo4Stu\&?m`|W'oq*zjK.JIg1vN9oGHM~I:3mn#yG3dv^7k+daUb*`?5ga._y̚\Gaa@zzOg11q xy3:]S-ޓ= 22Xwf!3df_CgBp^'(AY hKN/аy]GhlNh}?W}Mz^{Ou?r~Rn#OVp?՟( &AzBЃ8P9.F|H)8Cٮ^ڗx'*?,#v_/n%iߛ~.d'x$Ew>NbKJ%fm "&)1<@0^6 le4|c=/g:)ANnà偳x(Sʚpt3ͰP#š-sSXEgw4L'}I\f/CLH֒Lt=#]H&c%\1fr22r22,D8ܯ؂xaf0G&{_"4 ?;1m^m8YK2e'@u$GV'mbT? {nb.tOѥďipn'WS>,;,!#%->ђyGҷ aS;D>tj7t.]eK˄[ElǐA/DPnS5$c m 0_M_M/vaTޓדT/^;, ˢtbޱv"&-E.Lec@[AkRpk˧%v.)baB=eKς5˳vءHE@D Q:3 7xA?k㱖@hz 52Hxq!21SL>8Gpj Ql]mudZȻPb򠼻҉7rc`zhq <1 P<0B[[xDiy+(S w:n?>`:!Pjh" 1cAbY7p( =?‚ g(}A-潿n#oo5U֜)11bIw'i4# E(E =@P%HBBiP[@~S. 3>i4_FKh@@\>8R<-sv_c ^?”Kޗ*kB?)wK=<0ݧt-0˵A> Tp}"Vɧ2hat()| VXa5z [}v}d&FVp@h 7[xP3pϾel$aE\< xkgp:a'#9^Rį<]vGJ߫"EL8˪T>oAY}C8{C R1P |~L9ؓ ǓE%!ղQ9=dӡ%- ~U>HXᰬߖaŦwNŊf]b߭|OrL£>q/ Z^^ӿ\_ȉy֯WHޙq?#˃oA:T)6ZwN_ 55{ӫO.-M-`jX` C48Ca}e5/k quk^;@'r;dװ_ߴz;tm"P4! Eٸ=؄MSpdքu.9+Y-S./K !uo/6\n~.SxucM, [R{i 6@ dˑ)̎g9#EU1H8GKv;d6!ʐg'ՉiOwO[k;Zc (í/㓡@Av#0, D_jblڵg]ykkpv]Qڮ-5fA xwa+NIsE:&Hkt]%05A3K;X|҉Sy'ݬ`O\Int-F'cG͸l6 ail+<8! ! -g&q, G Z wRL=> =&'!k s`+p]]n o{Is[-3Tqhl53333U_r+O>:QʻQԢ!+&hWO+9LR "pX[ %JABu8*G{[YC /2&3+=TCؼ\0@~c2n>$J T֨/4/Y9.Nj96 LܜJ ɠ!`GeaoP.·]sbzwq[)==OKiX.o~7~TeTx_ߢ<4 bNNKM[S.X6K =QnG)X{CQ5( (qY~m'$ X۩ͼXjbN>j;踯\ wh %"*DHhcQtoXɠVe-H 03"X" { M74JKn\ A@T$ $b[ $&sPmё?g`jDVTPue2R_mTR"V fP2A fc%h"$lVCRFn!Ԗ&EUD"܈*#%z[M|\x Q-YKpO7-m ѬIQMG$ѽ@ҹcyd FԨ-X/#k(1`kNku]n[kuRml[_xOnI;nP z-j" pAbkぶD1`+2<%5\h'.Jd!ϟ0hVrn6=ߊ6S-GڎMFΙ{yO[{?[}okv9Y+5Ȇ"BI)=i+oqϫCN[)7D|'Fy#&78RNQogn}-{W$6~ǪҪ3f6oCeC$3B"GgH$"RpXA;]Qd5"Z,Ād#|_~z{\S5CwRj{Z[J=;zK Nz[B滛Z/1ooooo3oos=sr ;R}b,!Yw9 f2Kr&E*-w~WfdfU .ص6gDʽ^G.[wwvz6`3"@00P D,Y!)` m"۰*a&1[I3['Rjs#= cr?zGGUviS="h**k_%b6 n&.000000&6џ;"xhqg]*H<z AGx I̩f9OiqrG֚[|y4?yͅB"m+5;v?WiCU/ļRvM.e @`Q51|8Ĉao'ne< k!}gFm{ <+~!EGsp̾oV[ ,3;~d"J@Ӫ"5t,]Vr=YĩDZh%.Ճ"U0?edq c||Cn]nlI/YH_Gp|*ZqnspgOe"~rn [71["(pPZSX8cccn9/xoNm @KB!G7_kW݌lةQgzg=lCJu&W7CWsQR[Hyw9uJo KmMrCg ᓇ1勊ciʵv1t0 ?7d\hC fKNM|.o{|W̄39Yuo0D?_-9z( Z BrjE>}}V|^^aa)@t\|έhhiX.-JÖ,䢢{fu2ು Pↅć#ќQb;#&'w~4Fg$BlEuKw.zQ43 "qpE/)#+' ̊aE}}|#96 E@ |yJ~Yḟj }gih&VʧGL4 Nj _"o$ySVu2-tdh ?W_wzuQSѩ*UTcWL?x!V]ᢘd >'O.BO { TU^[[K/./////`MǢ`f`7wÐ%Ow _9dwW\}lwgŔZκǢ>{1ӎh:ؽgK$Y{b|IR?TS@8f b0]|~7ƴiV;J|#_jGx Sdnc>x;ɩ>"aQWSs6F+6,Q>yN:OdteCt"1B}Ҡ/<QzϪ Wi&*YmqM[BDMz^[y#Ϥ?"``6LV)İO?njž9t9CU}Ɵ V˪X3 \úBQ.@30 ˣT 5|Z[ Q<e:6gk&맟驘vFA8ѶՀwg_%RD'euK##ymߖ[v]ƧqC\fB{ڑGU}+|ߖW00/jפ~[[yL꽈;,T61 1swyH74VmOZ4V)Ap)eG}XC>,z(ߋ}֤i(&ϣ]~Я4 ќ(VvSE1?[s;h (6 Vf_bp֙0\*˭dDaxLRp0CNa&kYy teՊ?^ReN({qIOwK5RgD ` "/ǻ&WϮ3p3$@6a ƒm6?72MjQÛ-b:c9lM i*e41R9^=H7UNk헋ˡz<:3֥!;(/?¹Ycj#RHW"ѮCF %+, zS諼CeB pA!hU1-խ೰$wujLh $v5+hJHaə=+8oa*S 0^K0@qGFXb1PŴ>;XFB٨iM*ƒ.(өHDLQe01T*qS{π<\@`xYC\C2EP1ӌi["3 3w4UE3[VS28k"j1̺8ekmI3m[MsY]cZA%9_l %5}'VHp#M&5S!=궚*m+/WUj~(q62dA&6.8hJHa '%̫iʍ}Ԃ)'EDʄuew!\LaxBseWRb W?COk4>qKxΦM]j A7w{L g: !{3ぎ,?fДS-%8] | fщK,PԼ y=ct[pqHQh.|0=C-2>E+KbHr[W+-r 4d>,Ńxv11JۮWʗyYΔz,y:<1LwQK JqE_,[giW3濅ei֖aď6/DJҶ@ad@K^$X%K/RΨ%Y lcy envuaZiN^vj)yX vyw;@ȝaĶq M"@!s)5"i 1vjXh`QK_xaƄcLv=bH4p$Y&UC5J&{:JGT.-q>@[ɳ%vQ(Օ‚R aodw]|m7kw8}^='m =ԻVr*MUs wWGBpkKOOkI~O7aҏg]д ]']Ed%B)G~:l$,_GVYjCb!Oc- j'Ľt}Y{ݘS3Nvw);!!w2I Am2m{hQpE JzuDo)",Y"9_'OכNAX1U ʃ $0WrM;C)0AINAC]Sm}, ] &ٍ#U8ΪD=+HӾgxo}x?w`Ѐ6`q]b=j"k7_( .^35T٩I`Ƙ1^~Ep*8YzA1h ݶ(t@˨0]A͍'B!jdj"j,yˈ{-(BĐ]-Y)xd@]y쪅%.#/NSP% R lO+j=*/^KVq8E~V!}WYXp) xP 7rUa1{W'd>=ӜwؑD7T$ɜ# &ZS|O/LJC: jȷeبo{tQ(S]jHKRSn0PhP[/R>B5f.9K{aqF4DXYŹeCcl&=d17%YB1T(Ĩ0c[1NJ֓rT`ana4Jj钒䒙qZ$L~+pοb_ !٧ Q4c+X[]; } P]Hj}gT'ƶkq';t|?n>ɶ{e}En~'&-% 7Wѝt9 S6-A"21R8UJD}L JI_qqr2]CmYŶg*~%j> AT f;\whxܠ2ٔb-s oی`DEm!Q>4g ^=C:~$,4N0`/?[;k% rwe<F9X ds6%N7 N0KcK|bJuq1s[=Mߢ%m`B)K/ "9$lK%4d,/IkoT `XG d 'o7~*~v\Oq]s--1 ڳluڢZ/=yQBTSǘ µ|`[{II .UV/ vAz Ge/?yErIАRF,!1hX-z5_wf ׵.rۆh},z#/tܺJ=֩ b@q\{||ߛ-wm!$xI}͇~-0!d70m8uPbC¿ȨGOj˺h?:,KKw>VBi͟{֝k\.7a˄XNTK\p*3`, 9.AEM ŋ+K[ۻ뻻{a bц Uqﮖ1~*PPՒ+$'LqLb)vwOЁ-!\y'EV-w9bڞҪm5?MrsT.!yI w}_OI㘣a񿷛ŠgmG(lz?CĐ?9w'q˰_85za $G@D@YY$E n_x+bn:9YaOq#4}>O3x]s[EP'9YjbưhL8t,2ð㦹]I+K3ߐےI՞ePN ^![OJ8CsUL8V}GRvGX} =Ɯ$槝 `0JШRJ\5ilKQMoO_`5d aF;;u ];AG奃;meյR~(P~=1  +QAtaȢ{RD ÌRpVO3 iT1hϓ 9$!q E!Bxd\\=\ܯ/KB38D!KfLtGKEj5ӑefS&nxkuWX戕z"?|B ЛSPxZT1PPUY$Bar8)}o~^if:z+++,!D o(CxE|mx:͵  G$#WnŽ|ԁ~mL&{rz3:V5/3cbq7iihҒ=i<`5`0ƅ)@7|9˛Pwͪ`DyXD (*Àyoݝp]$bE:2@Т*oQߦv0yUaMo`t03)_ ]~VgdD~ `?Uy譞1[fL)rKys k6@?7dΕkjN=@!@ "cI]8bnCF@[_hORFVs%Ӗԯ(|:HM.;^y5rbRqp4#,v7I%Mдe컍qsƳkwqP'42dpTa?`)$Ś!o6² <+o/ic}hq%|¥i\ ߏw771ܶyKP@~UВX#qd"Lda @PqA6n(AI "XYEd(E"0X"@,dUEƟ8CTaZ-bE(EBTH9;]l;P.ܟv VPF,8 "(HPȰ:.' 57V1da<`š&"D4g:2TAH (*0dPFߣ34JSm.#$fਓAEX@X,VtlL 6:A, UdX"Dd( UHUM!Q32ªf)"h,(D*`,v hґ4D$V6JdHGFTL)dNa6$ K|m^i|{5ߪ I55&禂l5.RbZ-{=*7YA" :eh[25x V.vo-w>+;nApۈ؜Ow1@F8٬2få1m< Knh )88Qӛt12eK9y1(tK,z+%k%]k!$ikwqh1lC/5P`u/SP>{B>"b`I g Y7rtώl;^v!`, S K:V$&p@h, Aw4Iyy# vY',4Q~Wn41i{~X"6 GlltqA$@;`O .(%iU!kdx[+v;&,T? 4!Gj(? dۇf4< ._nGǝP֖4,pxvb8Gb6-ID[={01{ÔFQw*Fe#.Z`כ^Ͱz2dȍ1G xI_dZ/ lt]5$KSElHF``=rL3(qW4 2Dxy}Wɓ*VE5kk=^7Z~{%h{^DotJY[a[ ЬvAz&TL c`O[=0K.:Dm>#ͪtyhPj涌-\H"Wce\] s<ɂjxh:V^6c8hXiF o#ĕ38fd1pu c)8VLkKυA]Д{=LiyLc[M#ϴ cvo.z_f~jHA&cpF3OqUѵ0!&Y=lNG[pnEK eEx u!>BΟ5Spչyj, ɬ;$B;Y$%#ug,{v<@YcajK}籇70[,WnC 0Z|{k8JZ.eIMzJ O])4zyIX7|_^/qKDҾ{c !F]ZpSMMpqљ@fKLa=FDa@!ȣs^ D0(/0֒`_ ov6`UltMëF/JJD%1Y(u!hafRT~뜆qxΥpgf"/Do=V{À̑L/00  HȂda!9LxOć:QJB(!B: $hqA(xh݉Nw\G@ EDu~<@[oV,iO|wr*Ew(}iƒDJ!h>+8  ,&rwҴr閥~^/Y 齱|ϼ=SE)? 9L诹܂m`.~eǷMPx~멚2_D9bJΒY*{#~} p1 ̀ 1(gJ4/r1L)1:L>LJֈ1jf=b;o/%l n+>bS([PMO\r \/ǰ,#js,8%&+~mV'g~2}R5>'ֵ+SWT7Rx?7s2օ#`Tm!y3E}TGu:1Tea{X_[>4ZmYg4-Dh 7ڪS^?!tinrc<x%6h,[?mCmT.6 D[Afdm2²AR\_k)Kiu<γ50l`,b+%vzqr?q9KN]$8$A9T-O|R=G詀N}`!#+Enj [zħ. 6(2A?J"((ƥH/?TSXJШP mg>aw?hӱ8lԂsnܔI9K{ ^ ǂ><*`{"Z5H ;Ji42ᒒ^#D@X̠Qn$] AWVi2*(Ιd)Xl<9 S_Qqr ɸrc-Jpv}nP"\g2[2pfO),>c㲅\uQD 5mfJ!ህO*{K2d`ה1o I2d85{OHsf¦sg;9 UITU ^x:[/ou̟f!_)iNlBRurp{v_;<'W螕 v)i)(u{ +Ez鱩D5pt%{F^g KUs>ApVϔ;p^xquQ0FOY_xY?rH9^VF`n *R+e~u?&M.(YۛʾbȬ aO[K@Xϑ+ S~uyVp@@"5 !I AH  kсϾꀴH] n"4 0}A002\I)1c(bC* a\_ V%+hB\naóՆqUƒ595 S [:HlNCzNG澷d+;VSOK<}Gw43 <-gmAxv@C ! 0Z As$H \OSwneϲpW`yRSs~|Qh|»N>~͙VzwY`&3[Ik#nVҖҊ B ?B<(om?.ר%o|XEq'?"gS8U߼c|Cz}GP3֘ӌ2U[Taصzu@$*xo~l̒m. -yOP$DL J̱HVtII F{3 c$KH5-|GXו됛1'忩1Rkz2 <6i' vzů  j0%%"*snM i0~dXu"&Lʃ"Aq2S p r7_ .ހfܯI8aE=Dz]@@G vX&ۯJm9 og~zp5?(|mq:[U~΁⹡YiV|ύ๣?e1`SȆD,[5kcҙwhFJR0%~MmFnVޓF+ud  Fo-ub[7o5]9OWe AĊtY|q,lN0O|uy&' Nχ!5QzFKi=(XYR-LϷ#]+p]UOd4%Pʚ2Vr30,msMτ:n<K~n ]tK!N6>/W5"BY x^DŽH>n὏;{ch<5@U6aTE"`c(,| J;8OYg# $p)jVwf ^N#@30FъLٲ/y-=cBVC ocI[5EBsF0@ABS}+Smo&* ľHC#(Zn{}Cٿ~ku;T$z@xb#i !"?ݙZOxd0XaӗН֩o<omXSj!Z 2n簐*hBv=x6j<0" E,-4܆JE63! k[pb"V*Su1)x\$-dT|u'WXIOeڅoTUCfq_P˅#2C8TQmߴ_G]ƻr:;OGR&’AI}!j"ӇA((" 0XLcDdPH EXE MHl901} ]V2C\؏uW̿׎tTOt:Y >gApS}aO)DbtM8<~E8s-I6|S1jf=&F1DQF&{o~R͑p$֐aKʼ2Z.IYaϗI=>*qE\_cHmaoێ67QꥵwK!: 5$(A;mg#KMi6 ١USLnA'Xkr$5_q@_U8ݒMxqgfե8.& uIUؐTȀJ:EIv͐|z;ݚ$}ҴM&Bg}řg{=n{~].ť[A\̐c@QӇ`uԂOYmܙ&3^YgYCn<{$Qxׅw8TpEԾt5f}5#*ݚj }(oi?hAgοek a v"G1vkGbc D4S!7@?ٓ![>I&`oOt7;=}4 qqEII HL!`\Ɔ'j_Νgh#KϝхѬe>w3rxR/,:zaQX"-%>DII Ӽ4ɌFG.MQooˑxXn-gd@Af8 cg5?HHZg@=C܉ڇ!u#)Aɐ=êt !1Z_*LbDN|؅E$`,'BWq$P$R)%P>E"KeJ~)#;kF$5I7*"PAѓA| aҁBiYݙ!sJ ="E6j"Km)PQVf-&4oAPDP6k}W.tSyʜa[M;=jo`0U)JYtc,Dh2Pqj ֵ-P·3C@C*(LUjj1,&4(j Lٰ)1 W nd E[HjJ%YH=֌)aD bl4lChg[lX ܂wLdʰ6D 7&:jDe/\ 4S,9B + .k5B٬f "$abN h`l ",^Z 墚:2Z5 ZkfG`Aă&@!'* B0Hm % 1xSjX@p;$2k<0`vpt%b6F3)eh'iA4XHErt+VL n"'K\T)m"%C99Uhc.*VuA%wkXuq$1i,F,PD% ȴ*Q8p4\׆Gt64lwt\e<6M{1T"5/%E[BQA1pM @H$9 12$ C#{V ($fkP ̜sa:Pȳ D-A*ZePJ6"D s E\wii(W. (]T\z0ɭYW ,. dtjD]i 3{B|dRH ( dRzu@ȄD$z*7"DTр@@>ФH dnAYdQ 05iKЅzEIL5UF9'Wpc?@FB$/I>O*r-#hHPx及+,~|Eƭs%@˘ 0I_-&ւRoh:J(UV#)pʱ.TLlQ޵ 6&b Kh%d(JC-jF5VEP"Y+1( !R֩>_)>cq'>Kf?;0f|@>0SIU$60+4jnՃ DlΘDtRߥl0OJ AvJ b)QMpfMНL@) d07N0b#!D`;^ q2Q* q`hLlcߵƨEH~{."e!A4?(BmC;M`TRq*yŃAdw3\ Vb!zb P ;%AIN( 5: DՊ  wA@d=W!$ |OćwN/Sz t"K6/-;$(G:)l?3׼t$e4(i{K <[`SxD `@ bhdq@Sxm3|IIH %H(*1~>ma qq ʶ$K}-@SH솈)2_)NڮY-`I6 Ea!1No"(Eb/0Cmd]-[2&+[0H@}$?XVE B)|C`Ni011@ \wh Du&ᅃ,'(N!'H"*|'Ιԡ\'>!DA < KL*%YS`&0i-uE +.%ʄP:1 H *Xat*p$F@Eb7MF!DPN yjLwU3PJғHh^}iҚ2ĞI|4"9{(ABHXKd4+4lp qID6k-XDOۦMqZq3jdJ Q 1ͩ+McWu^ 1"hqvy7rޤ[3xF;sciE&eHDAf7/ PAH0WH`!un@ARa"eHR.g?,n.hhq6bFMe- t?j-laӹpqiхC /TbiBФ اO0Nj?p+ Ʉ$=Iɯc FC4c+ c՛&e(hz${ҷyUy1qpB[] +~V٧ZwQ Mp91̑"Df}9$>0<ߝ,-ζb[NSͷ\} qSuȼB$.Hj(rs%kUXnMH ćÐ ^dĚHm pT/찞mcR F3)`#Kkm/6(z@:[u go|Jņ0!UԻk=|(1Ml{< R0I60+h azKHW_?|ս,I3L&=;wת3aP+ES"smK=auW_0 m,%opD>}`kl>+T>W{JVn|l-m*l߿EtS9:`]1$1RDWʧJRQSiO$)S+ );VvES2l 4xK$cF[KP%akqnam H]g<\PkS$狈0h1Kr [XB(OwyFv(ą?)/gۆ|M" E̓78 ; +&D(t_ (]B^e% R4X,Y8mvǠZsT9o*j )TSҙzH l>q(?!g18i lǝs-B򺋌ٹT*:)|< #JB)|8`, sẆq6ekt~[Tqvkٜh -FDSԇF͗ Qz3..HPrR FL{%ac !0v3 "kv/\W9Qdv ʎ[1g hyF%[a A#A"W,bϦa48ieR4)~ $"$6dgJ>k P"84c@Ţysx^J]_?r3OĠhy&xH.2zL%/9WO@R%"pfxsˈ;c&ɏ HՅdnMEDjV} 0L&D1F2|w7^|S0XY]?ɵX:ug]Ҟg]zċ|h n2uz;7PmBA@lV zi* E٥?\6Ma &&6SlVS2Ҽ&m.;BXF4! w( "I5I 420JnwLA[vY=(mdNZM'moCXD>aI=)EKߣna4Ӧ//^IعG)R8 4!7cĶz}+s6+YƲjˑZKY(? shD^˓Xj%.R% Մ>X:)-BJ٢A I "'@bLpgH 5SێT5dީd6E@5sb h0 znNj01=+غ[ȼpGQxۚ.=.<]Ɗ7߶"ZǒaD1kTѤ{G|W&*; !a0PR9zI&ٍ{ݒ15ɋ1Uᯃ~mFLZ zvd_ o ĕ#(t<ͦ{KĮ`ieꋔL rcipapZni~7Sh U0C`Rsyez^3Ӊa0#rˣ[&d&0!DB#$>HXfT_3 jLdaYdmud|u& Hd)^2HiOGwR &/s(URpu`qP(mמ 9EAe!A  !Ysms3Xp3/˨j` bcLBcTi*5Fڠ]B=p3Ys~.og^0ᆞ^Z+vM<={t( B$Xh ?A1 `J2 D[tש_ڇ o굷ZE`6zʴ"dYsr8WynR[87|!.6`ģ R_P(C (p{ڲUz0k>c[kp`N΄ 0ȩpwٝ]% ,ӘTGD<FǧD8tP^FggW3-D^2 3?j[,+w8\Zqvk|JSvb1x&ai'[EDu3H8-uLMFlZÉ6Y c fA26ˡַk 5 !6ʥvpxx/ v!6e[ݨ wu2XGq8-ymL$QcMi<vsEgG2^*(ȒHSC i {ѡ%ކ] q)Y!1(FDveETX1$ Ϻ@K>Gͻ}]c&%1dR誘?<|!W j/U!\7],ͬwU1 c﹌oz{'uJ%VG s9')PPGi!V3EJj3[`$Yda<3奰9Jkݏ{>E1{ӕ]M@ i$.pƢ㶳5*aAb6el l)Tj  N=L? *=8*zOI׭~H@#&y۬L y@̱q$EҲE(CLf!XȾ$ @YOT5wyΞolut6/;59t_X E>&JTR'Ӱ(VYX;אmdQB3kD& Ȍ背}UsҰNJD h֐ʼ,>9ᣖZ —VI $;Oo҇0G3]'t=h8aB43 1q逰@,$!tMhKT9cSA[6Ya^DiY4. 0ЈҽL5VVX07,\ dc@g1aC8 uJ42bI'A&ij|lYd Kz4XV47 MUЫ97f 46<W5ү4`z-aRR *TD"zD Tth xmTđa۟~N0)_Yywσ@A|6G `_'O},MKr!߷ɷ7M*]xְ9Yxc'¾ @oj OR?<󺻸@ U&kﵩi(J0k~} ab'c!川 >O`=/bT@~2тSm7 gK=W> G嵟ab;/<4KFq¾ƚ<PU-k>T>_&d_iqZig_]6D6\[6gz, X~4(T`l\? 1{)+8ܐA\Ԟ%禣D|?Nl_T4̷M ~:D->ܹUM мu!2A ; r!7M< G98@HG#봲IT3j0=PTͶ,:i:Y3%^#]EN%[5pD9 suqzse#|ZmkaHȏM&E/VS/fvJ:-l-4]܏P&$b\,[4ermlbkRLoZzXwy3A]feyD :caj@9/b@*vqWېF:\X)$YH@VA" "őH,/c&01#xk3Hp@!?jJJN/5xw.] KeNn;a"cX 1 LC$~af5Id d"BH~s9B",""H(AgadB*E Ebd*E RBeHJE3`*0V n{R7S'2NHj&P$H),¤U$"DBb C21XA)"u4FB#*8AEXDHFDbQED!U|CdY99"(p@Qd1"(`a^*c#dVնr9uЀZ @bIUm,D`V F3UE=TV,X"() J(VU@X⒢E`" 9$QEEb,D(PTQEPX{f]瓺$ɛẍ́9qc7CT9ALa9' TMi`zلw^s(js.y(ka1<^s~ӯzn4Z'/:Sͥ H4՟{ބq9a ù46쩎Ɍz%ۿO#͈P͈;+H$+ @bLqdρt?- ë.V9t!H}UjH"- @EPp25 THM<10qDD*&L)g 8}nefH93HP\wH_k#f2K\vPv 9p߀2NI|n֖QN01>o;e( ?60](|?8s[NLc30ݎ77ibA{+:R`)RQBP jw ֏dyhӨ @WKsx]Cp8CJ]Hpr,8>-5`[PV0йT:@EFyckfPڍy*7ˇ7y~רjtZNu՗iMGy\X;CHp7FJŧ"a o-y!Kz to\քxtWZ)*r%Ի모NPpɴ5.83=qꀽ* DI -S\, 4L6 V93 &t '糅iKFW2 M0FAVG낿mH,`ޱ?}%p_?!E3:^1v'_\7u$EőȊ쭈(Ō,e)K RDŝ:٦`bMzmMr |g6c#Y~څ\Q m4~1Mo{::Ffzxsu#ƈQ!J吹; $mwxF*CBQpڅȣ 3m$cwLI/% /O=K;I _mi3 3K.XU󹜚*Қ=LXXeH#QGannn]jVqO(u.-c^læuJeKuk"zq}p Y!M13R/j -$%}kF[x0X" BNɩ&/@1`nƼD Q=]8E|kEdP<: !&{Ԏ}&4)"'x10zq@{\R@XɧĈ E* {QoDL *~-t.ZhRlMP*Tĥfh A6X핦o,Z 2 .8,J 5 1E#$,4V )vP -*#Rud!F4EDQXDdIfمQZX1TIZ`5(4Ԋ*1eh(0("U#%dmTTF6ъ"*"$*+,VU FJh E H9dj5%lB ԭbR ID-m RJԫ IR,XT+mmP *H)YF E* H,!QAER*`"Ub T"( B"1"(b0PAPQEdR1"""* "(AbF ,F1*`#QV QAb+PbAF#( "bTPPcV1TPTdQd* "E"UX,bcAD`DEAQDQDUEQ cX**PQX0V*,UQbX*D`UF$QE" ) ,bTb "E0DEQAU"T(,DF(b* `E@PTTU"QdX DE`EQ""  1"c*UXAUbŀĈ DHcUTUQTEF*( 1"* UAAdQ@DDQXQbUw`G8tįr38p OGX@4C^%*g ˴)Y*n_%4u-13n C k1gU)YKN:Dl 2,a DW]D[٨oB Mwo8]lɠwd61PsF+1 0p㈸"- Q9HQ^YY~iѣxk잯|zQAH|5ORaImP@. zr##\ ϰ FTy:,3{)2PQ7e(*ͪ*̢ #F1[eD X ,@醙%XV/d3 mFʕMX۶ٺ*У;Zh?!ޯ͒?KlHQX4AZ"*,b21My^N*k+ i x)[_ģ)U)mmQX֪*w){yAΙiQ"VO-~.^6̃iACzJCMGWC2as"UNL+x^B؆ئ1C`E"|/ x--m֓ȇcTcxAƾAj JWS~'f >@(d"!QdYI9qsBw[N~.nF@ Ѿ+iB$|AdPP)@Y  T@b*2OaȈ!bŊ-p' `a(&R[5* OV hje+n7YQƣURK*Ve5"(Ȫ&m$W6S}R myUt岇)7C84)%C W!neq)SCao FŃ+ˎ^#M:rmNz{ikRbH8އL(Q^}%: Oq'C}71[~_$޽1zҲReDB> sZ= n 4%61o˧ʳTI!rp ~A*jW8yDT Ht&T%n{PzAg+ bAنe+a@Ɖtb=IPMK4@M)lǷw,5pdB0[AJH.#ů|3e|fI0Q0ICH(M8߀>r[A`h.P+D8+,}'FԤ!Qoap y)OQHƒ/p[ȑDbzB]yW+m[ȚdK)Nj^ʋE[_!si[_Ǟ+N .tuנ:L(sp%%=ߩ3\?x:RCAc^gB@<caR( H,dbDd+FCTJQ@+R "+b`b]A@9,`hQ RT>w 3?H$O>KE> Q[DG`+ˀ HH# m {56$Y9B(~ ǀ~&&#ucRQ%dc +& T$*+Rё>?D$́L`@p0N*DI lrMGE/: 4yܽMzJB$X,Yo$!V e,ׂP.>F!#)&CTJDX ݳ28瓱&!>Q76Q>z~%;z9҆Ec(F?l*(XlDE`!RXPAFAnW̚ASUgy$yW#Xe5!,C>IDɁP${ݴs"TS1{Z@f{1q@pߓn%)r RXTARCI$Qoz 7%nSQQɇpE̸t'1B/ CH$$&CJ^9?DjܒK$6WRˊHYOM@IxЅ^W_.:܍e=ZzNN(`)ٜo@vISJ[RYM:~ruoq7,N * =>ǂ׾7'\c+}:0ʼ;l~~U;KT껺H@SI(5ƪ(`Y61b! T X1DEX(I#P0UH[8>XQdETb0򐰞HhLU+O/19ۢMgC "Y0Gٜ뾃+ThR[7@ Л9:`׏=ǨlgӘ)y$lc@1'hdbgɃ `R,+|o Vs8IJ)K\,<);;wΤ:' dz;Nh ҙ\R f4i'P}<~єM *# ꎗkis"l!o0dX~#?{$Nj9^AM/5_O0yH\i Tb-r(!9{ 0$GSk7cDPĬ/ :- D9_3™޿ 4CE_p_ 岉PSP}NbǿZf#bhN`;Qޭi] Aи+gJ55Px¥ɞp_ñٕY)_P@()Uejj(`d-J(}d}_0)Qmr$rk3x'x,d5rG1Oaŵ%/o8,B8hd%Yטw^eyrɑ>ZH2wq4Sean_ヱEWxlh '᪲8ݔgXߞ+o_WC >:@\ 22P:n}sbIWp"'?S0?8ucLJUM @ç3FJ+b*ޚU6-@AwQwWvkQ$Z/+.\j0v )p8PI谱 $PuO̴ha,Qj_gfdOm  35y'A7,PeI e ao $`oB1i1D`cXh\]^= 5.-eyq<aE?3\%pn?No:vwdFa,3bՈ ϻM(#0.M6 anV&cic 0gSwlKwTuA L" I{w.u#B`o@26op@LtilՙI$!HEƋHvgdEy> U~ C:mu+DBXh).]v[EdB̰$˦=(.uqv^X:";b]5C7x/̐B'& vbG}.s15a` A-@eNs8C d5~&$PrˣULCTFS^@sm鄲H@" C}$|^6jl&5{l $ !J0'ANj=}xbl_v%!ej>`4@ YVĥ>ce=Gcl^uSt@`ظPH0VE'th)ɨ/"3"{w:z1H[vX҆dwK t¨H, =v4?V2$#yɑhж]>84,+;G %- OUTcS a>$C#\S$l.!Yj']xLkCh m8Z͝0W6݄yLBGY,hHwߡ74 +vjhE[ͷG8}4{ܑ P>^Rf[Ba]lH4`TicckKuzV8H.0XOz"np_[.zy+E|9"қ)Ca6:̪˪M#i41e0Qml_lSXE)-@n $)hRMdWa>ߪ=فC<|Y{GLl czKF|ob@Hr\c[ V?+,L&hPi%+cxRC``-(t[sG=>>[DRH# BO_7v?5Ei[o "2`VGeӮ=:&&! p<3ۑ 4 Ś„ȥ/ Trz1xTXKJHE 1 M9_(M*5I T+R!Fѥ"3<\`CJFFEb!)DDXȈ),2$%XPHB "Iw?~gEvU[ZQA7z=5D74$VE:Id __NC?|þ=V ",rED`Ҋ+nH- =Gr0L) (e'}ҡBHN-jOf0xlv je899x"dcͬ`߽*~Y\\ai`AXy籮QpH" u &@c;OKlt H%z dD?Ha;\dP@= rwM|<]̀&$^ 0yRfXC FqRM02@L`u*!SȍȆ0A_$eH b23=gtPUb()H"Ri>1(*)cYt`Rd}uF2 9IcA~ku$^}b)AygEeƿC!3t/L9 aYz$l%O/\pF_ƷI#Դ?g5K_t>}<< qh1YVA$usDZ4[II0Btd5'GXC\ނ|b7oM:iQd ~i!~Z-;E&H>+T72@dRIN_Z;ݍ#kDڢ fI AB] ;Kݔ@UD̸ 2(B HY/g윞9.\EQ ڀKH 5 j!2/`A`voGxLN6fƎ3 M&0BӭI - 00A4YAn%f>p@kk3f[kFQu&M9NF)6䨉hBF2֨ rx/Ae1=C )g @̈h = Ѡa0mB(Lj)HD"2I!9F R@b `Jف12GT%! "PY X@Q*!PL`Iq[WED82,%> W(;X t/E#q m ,cudN DMk7P2-Tc5kT%~'"ID)ķ9ՔhK6;M&g.h=|s-,24!ꤔs4w0)X|{;r²-'?;`C TO=$s)pEnܚ;TNhf\j&DrQ@!A+H:DA Jm[k.ڹA \%@ n 7 ,gǺYvmW1@*c7JUI162?:)^6l8:5m)lG|8h1 Z.:Wff%ŬůMYyZpvyk"ix&n!qqK:r? {vf4mMmjJk ,KS6$tPR{"pr Gfl[NH;znQU OV%OȢ%a00Ā8@q)b f9=s_O/fV޽+&=MSL2Im{mU1OHB" !Z*3Ls34AIdj PdF /`Wr*>>ȴ nblؤ ɢ$op1p CV!(iۿ'f͚ %2iEuU +3wYb,iŪ؟ˈd|iÑ]/00ܗQn)H5X\-_1m}Iő;ru0ZI >ulvjC b e@ M[:~Es) NnפckzޅEskuH8I-^뽽J@aRAQ7Nm6N P% ~P *}iJoTAEg63aslAV AuqRa[%F" 4A*UU.0DbV1UADVEA`IaEDT6XA&X$BaDyBc:0d&a{T /Rc @@1[]_UqӜb4C]DX,#"1 (U(eT Z2 a%`,F 0A*$" (&CAA8mxmi[)PY 0?,K$ ㊋Fd $`HYEEB(F%hFRF2H,"1%FHRZ@ITdF$,Ht`֘$uGG x^"`=&ʠ8i 1dFATUYPDQAE فT$ dPQ`EXEHV")`|d??٩ըO`/e>3HB)$PU"E$'"ZS_tDW*)( V7ܵ"2+!"+ ," 1h"p-MRnHMa$u %2~FEEV1E"10PDUPEd,E"+UQFEV"(ŊEDeDV,8[A`4p"cW ^`b$)ӚVTB($EU(*! $F*0FEE"0b`"R(U F*)P  ~oLGvS**"H"ΨQ UY#PU)" `A@ UU `QcRmP3 PT4cOC̜"T @ #..>3nκt@U=׉QԦ,HA&ML.3w"jjnby3u*Ƴzn AH \qϙm=2Pȟ8d*{&883.YmM3Ꚋ |{'*EQV FI$vH.Ѯ#˜ɖa 6,\4&׶E7n\^#:muB}Y!U| s`8v*,Κopї{ыN4-1'F-]4J"(uqB1~84hC#%8 qW{yw+y~g C8c%$w~cmu~˱X㕧-Ʊ~Gdh$=9|*R Ɯ:<.=!>A$|˙9̛HT@< @׿畟-~W[oڕΩEq<؆8Y9Q[q_fOYvF[( &¦(Dc[jj)twH( |dfff\fWffffReS'U¼f@ a@}FL5pO| +$88?NM&8uCH6pv3˼P0'y lA˗b ))}kdaZbfǑC?G&um ˻ޛ4ʂxE*)΃]ej:%HaC <IF bRr8K ih-i~$cx9\TB JQbN|V" D|@ky=TX<PCAҠ}bX'/\!B^>?PU 6?Κ~Bw]"_jO%/YYfq-sd sR+EHـaER>;?,(P1;hsLTV#1\Ԃin,Oe" \P ξyt7U9pKPD3]cCU)Y98ӵ{:Z] #Ћ}ϗO2"T`?D7l߳D4R)DmC8]؝qOJeIJAZ9@ilN?k>V8{n~p>r[ln"+Ƙ;mZ[hɲ" kj8VQȴ oϿ VV''IMuMKꏱk%j7IƘctWm&%mI}hiZ5ErܥJYP?< 0/g v?pf щؘ1%)| 1ϣ]4b*ffI`Xz&xhi~mm /6Tjc 㱡OY:24%Q_tqg䌺6u8$m ڦI1{}c\ѐFԴUG~CCD^pT;=x^׵zS[ð g p' A711?n m:3ʁ1Fp;u`pHx QkkGF?j+vܐOZOCP,~ U\է3ݙRӵ";u}X:@ ?,UG׵&á᧯ {dCDt4 R{ڲTw?l&EcOS&U?g/qlLȘzX>s1E?K(PufNh@IsF[ jN].dX|HY;* 3 $` jοUd'@։=)Jߒfr0+#$G}TC$82u1GA?6]NC ؅&Pf%ϥ:ftD B$ עVUzCؕ HA&'ΡU'LϙTvS <ӛGz1"e|ƲhI$SY> 0 hq`!m za?JDa2({4!2&~,UO*,)c,`B|>1^{L1AQHCcc kts=UK?k*|=y~)YziBh-%kdG]{ЦA8 ЩR"c}~|mX0_2sz]l&r<쯚\ʚg ϓS>imTiMi$%ݽQs% ;pX;ә1cF RdmUw5=nƟ"Qf }̏ӹԘC,/:}ۉ2[`UP_.+)r}+2ꖊf '&W͘wc¼2(h8pe/(Pd`BI\Y. `\]]>vZc-Mq9GV&S2d2n˟P>TtG@o6&E4Nwr  hanM,B{4?Ploj!գpjKvڂG@xr*raeBpn|&>[|'acJP? f:/?άbCD Of:@1M 7ߜGO0槼n]UyX[2FÀC]y]IWKHB⠀@HqN Y8"QG Zս@(*$t&HJdY\'̳ NiԧSlml5kg0O=+4:eLRJ$ n' S@ƩJ g`j2  ϻ3;ZՂS]>oX-eU{ oY18!(*"D8}M*J{7kZ k׹i;61B~["fw4i 9oD3&8ulm49* 6Jɩ@q9.Q>ۧ|~b>w7ΓQ)e -?qF.)DfSLڢ"YQT=%VCDV1-5kD+?ʪ8ճ옹 Q(F~ѫѴb;6*MYf[(QD-F(N  lmU\kFƪ[EyMs34M[g7J9# -Ax[ ^X' u:FZQ *mKbҢ[ekV JlV)jYYt hQ\tk N9Denc A36^r% N7d0UXe8t:&%EH(Ikzv̂u\嫍W\RB IT7duqڔIFnWS+T1/>}(N=gr:Q nЂ/oY /?:>d!6#% &FT $BᄕKT'gx)'tڬ^R?aEh]3=\#| f={ &:q|~6)R^̺APs8`Oj{a/> c$@KOv;2/j4KqyɰD/It7`iJ^}Bndύ"E(C&Vg dMV)^2?[d=5[':orxs]y"UyQU " ҠvVZ4W]NdtFcL#7o,Bh+XzH<5MJu`?ˆI?ݛW^07Mgۆ6N:t G#q#E뼶?..N5!rȓ Ǭ|Re=D[y#c ]!00wXCIcAu4?X1&Y7f)+-X#'uJC)8ϣJ`$@PJ.;.wk4o/e{må{=:ށyʾu.m-^kt6Pܰ?$˗%vEzi f`͑bFRƾDDܰj7]GK/z2vJs%H jSc:E½G$vzoPn|Ӑ+O?uϤ;^$Gfv9|% W}UMb^X k1<+z#;SYG'|wc7~e ]EDDžԤd9 Y=Oba^QCzH~%m;r @R!@j=Ow_΃3\j$,hߔ*|)0sg ;w}?l Qf,:γ1=4+ Wdi3:|l ExS`=rigB7{iY7cp,CuC zOq7] 3>ݐ~HQKΌ,I\kP$a y$@01 \zK}6qǤ9M\ g^S-hTVsP.KAD =菥 v_;C[IW#pKʉ T !E d1REd 1C-жFF,BXKG0 Vj7)` Q' EsbECfXdYY^1r/hVAI5NV sCvYYm,m*0E"ajaPPZCza-REJOA;X&CczD-CMX6?5~lƚI @29pr1,aF}`oBg_mh^;:&;R^O~_Ʌ)Y9]pi؆>" *k5?r^$bo=f @C7iծ d8\K& WELIleت!:m1S#\V 8nN *%T0[ `/אyGS֨i%sA5eEeaPY3{XDed @c,:( n>"܍O[wspˌigUKyP}=rUb_e0jc6M$o'ikbN(~a?8/ʯPO5&t#jf[Lz~0埞~V=f%,R:d:6# V&/&0=o$W/^%~N&H1R EpS *%$BRBE|p`< gC6bG/fxAjyL2VB29i!F g$&mN$Cg(:KDM8`J(CmTkYVY>&zD< Ka"7IgYr6֡]tn}w:,JIX6[0Q"+S!C^Pa79+2JU|}M<USǴcZ422d@!-R3pk/{WSn?uY7ڎq38CӨiNZi/JyC{J ՝6PARL`_vQU,\ _{_mv\qA#s*?a3`1s )s[&~?@Awңe +}1+gf><.#"!< -Nu@sd^͚6oyBݨ3 C@i׳ysetcʻN }5yHҲn6][S;CzD9֪JU5Gn}?cMg• H9oj=,JWNW g,~ߴx~g-Em(*`]ET?=0d6!n.# *yS;bSCwbv\vDŽMjZ ^%?+~ƳvWzp.mL>r_W;A~Vp*s[y:frJChˁǂ@!4 8F,8uAQyLƱqeO+ c {708|C!(H $1!E6q.) qĀ`yH }&ǭ@gbP؈@:Ef'g#gfWu&l/=U?]?a!7QzGeY 08L3ĞԲ:oYfVp<{|`| p-,8'gY9N ҖޔEˈ9 XˌGO(H#Ѻ#:FEX8MfXjhѭ!T1uZi2kP m>iԇ.4)>P1Y!DСS\KjkY ho58lCGʉN 5*6m"߫UEuaK\n*IzIt=p%B ׾+i=U Aap#8 (G=c*ݨ6+h9KFEk.^sxC,P8Иk7d&.tR~1ޞyuM `ʌdT.qZ'3Tx~+9jMU@ YZba50"<7?lt:dvGW}_f pBZVH0()=q|€5J:x]jqomGC[l, I*tz$8]!cs3 -\ RqcU_ef?}[e:X巟+ЂX8)6!pVxnݴhx0V5ٵݮ;XXgpy_xzMRqbЖ\qXuWq/Ug>M#b R#x|Ë_gp 9 %07c]߿#>e~PE 5:& GyGҞg l{HYTK:)>%gdaiłx΢-O)uH V㜆1Cm|fAi$`I-ɋ<(7E9t3a f®p2"I\oНxVt>HC$N ?YFc %KM(S^}\1eLKg}=~_{=M!M΁h۶CU?)L,̾w̟?l^A+?B5}xQf R.S=y쿑~n˴ZEsq ܑ F}ݖD)㱽3E]"W2j;HlpVmdk~z(=q RhL5鑃"S')g7 +ΥA^_: X ,AUv&X:]JmY\wlE_ZR5P4y l6{0/㥠Ju$qfL0葂/|BXK=;q/2<)JFSCht NC\phaˍF0mQ7_OdcMJH|jr?9?W/N8,0CHP_d_xu8%+~}ҝM] /==|/LA߉ty *~f_Y,"k {HD=H@ bIIK?߷TzݝV !`utXm18aսr? 3qɈsJ,*bH9oWQJ,iǴMNapARCN{Wr=Őd3R2u(Ea\^4rNO4ح~OY&0x̊^NǛd޿>`w)j - ۯ>j 2(׭'2!wY9g T )GҸ×%@62p}$ħ .W?$LNtzsH7^.VDI~ 0['NqS1DA>Ua6m-C-Ő#W#»_K{>OxǾÎzLdtkC/zFvCb4 =;D a] t _umdT?ZϟpMeݬHԞ^vI Fٮt֊V:JnqUrV)<#az>š@2Oʾ|WXRVY19<*Cd\޷]qYPq.!JЀ+B>1[qn q\9yTNAĖ"qz2q&}Y 7[l<ȏ^:7,s40__#n >m{e͐I9\Rb~2(ByWޘ tXD:<,ݰo/K&F6]^85y7,tT|Crv7OwWUi%]Dc56ol[e[/;t]7s&/P A| 8.-?7Oz', JUs `ȈbZJ')`TUArфو 1~ΚIRŌ尶Zi 5"m."Dͣ,pmcKeQjR[T+FE9\ޕu Z#mQZ$R rG=l׽{ն!AբkO|i<7ۜj"ZTAeԮ4`:75!0- Xa l;8!fcM4ي.}G~aHXgTnggs/]_qHI:&]_s Hx&A(s~_pz;}zXŚd-iu2B:9ӵL}4g,klL\my;JPZ4stKrvSl= qݣN5=>+sa@:ց&|.9~7ygzk}ygg-3̶H&ȑ"Mqd;4\[Z${NC=$e tHOEb b?~@!:DԿ&dHN|/=obY\UM9obܝyxX¢ih>Kxq~nWٵJY{U{sMfk>LV]={e%k*h)sk;.YX5-ׁc?'BH=UT2h;0J<#\;=G׮k|qzP"Do%ɟ.'|9vKj*iXCq1"p6!0<Դ<;g_&#k:_4ŧ5Q~![xA[2=VΟ媉=S_jy_rV?Yž[}5ۧx9Xu$2Cg Sʺ- >6M?8A}Pʒc$#Ҹ `:^`.cncMoLOC/K`N&%ij&)PA',>@&o?%^F›Yڧ}6{L1a/ M.0 7a{Xy+~jIMڂ"ּs%IBln{ϩG5.40F+$V5,`F VPv\I%Cdž$* 'ChRl;jh"uݵ443 1Aؕ{mx,HÚK8v.Gsd]6߫u)t<:G,ӡH5.Jgҥ1$p _gRז+cuj'KbCibkC`-GSx8XX0J02TO'2-L̃,v^ @ (_ӎ__)H!kPj$qX19+Uɐ.MXT|˧uN{79\/%De`!81 md6=|bÂ4{49kzB6>cN_u9vy Qs˙H|F0PF@%9g^/wEb8d(t>g8'I-%rpKC)~M$v*<{E_5rɊ㳚O7sB8&FC@4L+`|ăXA޽Ql6{sT0O_c(1ⷓS8XLȲ,$ÂqMDO ney?/*x?͂v6jxjݫg QE7(p16)Ȓ2f~Z t5<I9Dr\jdEfZ/u^JQ}d{aAt6Gˮ%C:v`|@Ԉt߃;6 OGf;uRhn=pI`h@5>yV-bQ|3O2 Sd»Gl:D\$  )LK):hӢ2 ,''}A8Ŭz%ʜ/I*1(`J |%&r +>xYXiqX]O0}~ L] |c"Om&U?P"ګ=08Re*^<5XV*SPX}C>j{?yC~X[mfk1#Ts)?yX}|UJ' Z%WYI pL!<!$<:IFkZӀSJi*>IQ~(p,i$1 {ascOdeqvJ~iîYcN,7@q<|< [îu K2  pZHh'ĵţq ÍAG婋Y8XYbUd{Lqd fke]21L,Jj,gVQ:lݺFgg;)ae7=~_вwB -2Ck39e S!@{6=ǣ:8=%sKCNWbB:3Y֌Ęu@=3nn= $EۜF7ղyw޿ gNwtԧQT9ko֤II_Mj#n‰^oz/ ; }H'& D>md_fje$*[T.viy1i6dE!Pn*S^N?Ga~&̴޸|[a4y6|K;h!u [f0d9(!*ҥM]j\.h A`>XxLjK2˼ŵ?_0mB[r^b;il$$4ѽ3<:ΉW4)r[`C[,0Тe&SR 3q)B:-_xjYcYWߏMRIM*q+11IKwQx:vcῊbG)@`_Q }&ؗђd57 Iz5$KoĤU˝@G&blpsM?8)眐3cZWc#ڭ"˙-)~xCU-d«̦4e7B&|Χ5Bgғl,Vj9} ()`K 7Vp6[=[=IW8An],, S6ZFuSJ&\@mPHh k@Đdb r98g>>[>/>idam\K>>$baCt1YPꘑQva #PFHĊ"$M2UD`#"dD% +([r1RAmDbL-b 0R [-fdM bf2̂ rJE bZPZ$YY2VPDVEd1A[dP(i* Xpet ;[E4>yw ' x8(K4`B8%Lgaқ6:̍`6 3aTc '_!:NH3idH cgK2XN{b?4쇾2``:L>_2sVh-&wGd%bW%1 ADB$0f7YHI7{@\Ҕ0{瓙66ח * 1`"LEH ¶7fGzםTL+48uDXtj rsbӽak}TDyԤsmH75R >Whޫ^XBtgn|lW%}C/z*>@2 q a35ZjE!~|ˍJeNimWץsv;I&{Kɫ*1ͤHBD1"V/f3*-Dw_]&w]? o\\}ٜK{ߩɹ*oJlvޗjꝋP){p呩"i7f-Rv3+ FUSuz i|Py"uCpf|AȘ+ t Omo>Um4Op(NNZMZZzwhnyʖ~}d`/3ضۺ3q q<)G0xjq yMB Y;<ӜRwU),f )OL91~b~ךm}6s2Gi.@Bp D@@U"ljגּ2EXDX i7M(Vg$|.#_/dF((HD !*=q? $!dSLl?وq%A6&>1mon}-'?w6ػBE dv R@"vDc69 \e !L_?_=p;w3OK}-,X`n?\KGCj`ԱUS g̤UaP, ŨRBGT~Ώ,!pbÁa{ⴅw=1 xk:GGי쏾 ' JLPVnj>=n!=wDlo:<̙3ZWjj=I&]B:pTkdĤH|=+gAR^,+v.a}: kλ^j^;h s¤kaxxxIrC[_Uq1./<'lIe˾Gk)uvDQ lܤZ8[oẈΧln @A@{マc_eĉx@z}U8h>'9M"* Iy*RiGy~.@E鮤 ̅3^P&)Ss,_sP; \>ROG!C"(W(WL\{╎Q:sm}az~`6+ 1ކϰ@zwEs  _?OX<# m&u)%u)Hr~d[w.8J\,7rs 3K2`>?DHfBY16Va}grk=0NJob9R1`}B>-Q0&VFٚ!‹Ǥ~t;9KeͱLх'M*-~ O2 xqCZMJ%)N0W6IE'\\g͎i|7 @⏛'?aZ B?c3Z>-O[I{Wqe;]u]]oN]4<՗oR:PboS2D;/Q<Λp\W;=TV=/*bظ*UF WXh<4cDc~B^ƊQBa*W뎮;-vD٦v Vg _")TcI5X]~{?fiv6ToOV;E$Z 2 X ;[iķpZnkoΠ>:XjvCRVV͙ |iV}kk]V F6P^?!C@6P ~&6p \f8W}UUUUUUUUUUUUUUUUUUUUUUUUUUW~O7wwwwwwwwwwlmjD?C(aGL@ 2xퟵaze~n^xɦ lYwezeTC*i se,fj]$e$nR^k_ ?==PXff/W_Sv̅ AӞM*O]8/9O^YF/#ww_EGh2~B/0x)&p}oU3k~ԥ6@BWNJ 8~O}[7MwQ5a*-7n{G^Kk|~V%SoF3|Urvi]unAm/;.#}^#"ңW䉳Vd6ArN&D> BNo)D` 1> :PM a@mG9  I맏_Ql,y@"[8BF#v3ȳ+՗<Ρr*$=x#ߡ61s9-ltjZūSl$9+$Zk(&V2'ITg=]ok]=.'$>JE6k) 2]CqX.ɇ 96l~17z#%1ˁs9:97IA,Hh6Kduy0as(1eMQh.~t -kΏOtHH8@6%?Gפu^`]j>$x^sF,y'?X}\v#F =LYkskqkbbh`Y,ה{fÒ%d>ZROfqh-#Mm/5G&V. Z/|ܗP[DQW: o^sɆ#D R(?m";^Yb9ݭɸykoy"e h20R# xw8n4k_lnҔݎi&IҧR =~.s1 U\;q„%dA!CK*z4De[?g/z꿗Ob&zZ-pܫ3)1l*s0@,W}.ޥb"HKquҳ݄|mpYo.yِ.wF;z2VtorzClgo_|ǵG?Б_ #LRJб{t}q?f+ #0hWN+)|uTm ӯ_hƌ2J@_sUe(RtJ(X6dH)(hQ$Br8$ ;4"SMU @F! TTC)Hq $,TAJ,E!չH-c``UF1Y"$RE֎94pC`H%5!E*ȱM*(D5$Ӷ1@e4cBQUEF AV1AV uj c60 m)A AH) @ (ɬ$UY"2i &lF" $R"dn9 (Q 6HHR"( $T R*l41q(vEB}^5nzֲLh~=r|g'f]CPr>r+MUuv_Iw~NטƦZxlmz߉~wϖqWR0mFX@%!ʐ'THjL:^`=S:.;VXT"aJqsbPDR 9/Ig+|{3I)pdܱǏ$ٵS&=%Βժ8!#P 0HpJ]}OPEmI9ܶU #UsKJf/5t:fs!:\3h}扁99p9kIw2?߃@ !WM3%5"c΀@4L_ )A`9G5H dnkyL &=0s;410 <[?y" ,\q.*zX)&y{hH.'IboT^tag:짤@4 x$ <&%d>{3˭vZ#~_< fF%` xBY"eFdQSyp#{(|Å=! Xئ)Bт)(~ _NVyyl  ā /Al"",{knQwq02O 1vazG̥9!ɮoo8dbDƳRA y6  qfX7^Ư:2D1qPU ~C] !4Z3d8I$+p }" uMn&j2 .e}wdg֙~CB3峯ζ(~y)+z+~AMekj #><[8[tk:(h?6ڙO>%"+$&*(q3p3L*}=0O z=uF}H51[?1(XʊFv{|[_yX7!תF߀ kKWl2$ƔcA@KVmW@+r,AL!hntcgصvmECؙV=guafըzEQ5<nO@ӟ?, /c"end @#=BLNc^_?O^F܃yj S=mc~} cb+$+`HϗE=uטWHߙS5)^{=ۃv ږ^D90KL*mC3Ú+Om͙h:oU[#PmS]/soYTl| rϕ N/*ͬH|tK?.G<NPͩ8Q+<ɼ_[uO_ֻ_԰5*eKSYۡp6|z*yͼ~ZB紑;jʘ;G/rHg񐠕b|dyB]TK tgJ>rlIt+œvߏ` {"/Ǒ ?sPpeA@հa!(܂{siobCxΈ_ &q#X2[$3Z5)LX0*d/i,ȉ_b(o̦?w*u n?tpyêWk;&So!K (6~AR AM #|-#2Y%gci\MCe)8/I[]Pc?OI֧ESkw0WtYg,?ᇘN{ >bUQ" D`|h%>4"sN:&yLU9Z%Gd?2߅فxM J+L ~E kt@68R2(+" Qb2**U,`*,UPb"**,QPXb"(DbXAE`Eb"(1 ,QDT*b$E@X`(E" R(( dPQ`"*UDQ (2,Y"(* E_PlEA H#(7?,CušB֏j7 `Gwa|P/"C_2Qd>7"z /1 b; J2PXmx;%QP€!s}2@ cT*ft \\fR50MisPGE—)2-ԎΖi3 XXشi^dsuƑbd$vD`>/,#N6)@S`cn 2oDUA$t"BDH%Ki |1r.dλ89+3Cy$B(qXDhŌhwK;:a$HqBye ]RN1cim0jF6M: hjY;c׶,qN(Ɇ| ]&:?2uo4$tlDi3U@t"UD68 &z~U?*^Fa-$5N>}&=c DdD, PR,Y$F*,R`U(Q`,P0Uȃ"* $(Z(HHP 4 *Z+UdbR (* (EXF *" ((U0F1PTDPPf!d DHAI$0#`DbX "AXF"$HPcQPFAFB,X$"H*QbHg|@-M|$$!CGB3QL4R~XIK<4PդZUi's>nW]KgKÎ+F}3 ZuW hJRdN%G 7;iq-y#( `D6iKz請o.Lr1A|\Xma0oY$1#^)PW-(c'aZlLip0아 ~%kꏍ+?hfe_ִó}P ,* 9忑ྃMOq)-ZgM=)y5qWN`cx@ !:d] h4y|uA`L_λ:ij 'CwҌ<==x179vN1im70`*z -V¬X0H 4x  msh&Pq)҇`'@0=@?ȈT+<լh9 vx@`de Dn+Џ62KIP2:*  @H *"P}یIt7$܀|}";"T/I7*҇AKM8[)p4ۂsL 8Fa4V+e#FѫwtvxenRԤ`1uq͡Cqld ZNMiʏ VY-"$h<1W ~[D@5 )l^3qo `6Hpm)ӓ̐08ezr )sZ0X k zZLaKMsHע$cmβX. A}mJI3oӕ~TI[.w䴦Xצ@HWd 𤀥4a/ı"v7 ?Q{Հ7/~ TϳzLHK'~]e PLz)s˱0L ;r_snd&qz]>Q x)>|ƿu AS~SPL_{]€fM:1W-4]fvf7QK2Hmf+^H{ dU=)~ڠ,l ehI}<:;^Dyĺ^7)-&%9#?/"v6;[gȃXϻĸQ>:KO [6UϵWw{|?>r;7iTõ}Jד-7 qH phòIreOw Wbp9++҇шk/値8!x|wl3&_b7{$zO3Vx]\H\2?qoM!,dn:.A =gvd+|:_~ld6~%=7C´F> yIu> UUL Kq>^~Ϣ /st.A{-M41YWWW5؆w] &bkտ,Ye[92 !ύ q~20Xwuxz ހ{?,]_$8EPYAk٦<$"~E6>N?Z?+C¹p,=b`HMeCb hӓ50 MLX8$d$Agk%q,k|5 ccgh[Oxxii?"Cm$iLuJs t,`@EbŠkR4IR}Q} Z)>SS.J4 9K$.E$Sú2W$cp1V!2HH0PQHj"#*" "P pIHwir4yީ9rVS˸/- ,$yaq"1u~NL d=*&O>n=bR2O資OB}NJ(u=G "Ky= I"ůo|'jGņg7@# Edd`3Z~J- J؀qّEXj~ Iٹ@==Xw䀢wU#@`@/ Ju=>akGAt4&ÿ4N'!!P;a{vwyV*%}d[K66: D*bk 3arG?WjUToG1lɞBm2֍$kK5"aĭW$ʘ >^?CԓSqETD|t̡_mW:]!,f(B</]~eO&F/$nϔҼ H 0iwBnϵJr[pJ[_c:Ҵyr|F2Z]uo|x>_\9 p@RARjsCm m_jZSo# S](i ?55ym WkyUȹ\|fl4%aM+7OZՋOٕzzEayL0,5uXpD̖7 cl o#$3TJRU~e޾2dZ57tW^&DѦ4M _*B2rZ~Eh0Hʱ8DVHRPerf`B,m%K E"Z ) 42LP,A '|!t-mx4iUr{ϡ#czIwz];!J];C6 !%iQCh^@1c]opBHzj QP専/P. Q7`Hp8p;H)&uRg$XE#\T06" ;cavf; *#{-.6{.QoQt.ub7~qTmؠ}c 's1c9u[mejvx@9 e&yBAh1v Yts>ͪD*I0T}nU]KeĉՆ-pB*݀n6M_#vHy=.1ҟooe&ziՌnw$7;z^*]r_x8!7sTu0=iz<{GDn&`)":/vqRrUV>'ۇ_W3*_:ӻ|Clkr46(-Rm`cvן3Go%4ƣwL:ūaR(7t%vXCmkpI.m;#JQ "ئ̜&yxKc@Ƹe:B qŗLVq"&<$s)KX!RWt$X(n&-rjkX#PԠ5?7/hҳbd|<9 @b$a)tY>d  X5FNG>(%0iCpycњm[ CA6d_˿L@Q{4\xvfVSA(X$y-0 ebD{1x=W;euoЁnyE07>Vl -@X2`C>0a.໩ M{Z7o P{/S{t²fnPg4*NMZ[i Y'em-@i(ƎnH#mŽ~'w"W9Rv/= &Ȇ0E&8ӌN }:H{o Y!gZӠ`i^vō_@g;țA+U߄Z]Q&ݫ ;yZDI'B=-h#".e( `8@Ȕx`Ic'(ܑ40)b-úRɖĦ": >D%ݛ;O{Ngqץ B/gў|lL7o5'#ё=vf$bH[ca! pIo/z2+‡[0d PO?nEM.ILsEojϐIх+KO 6ŃKtl՝6"NX)JZ'%1%]fgQ;46H1 ocbkz@f?lvWBŤc`@F*SVfo~vki5[lZOw;>'W$)"|] SFjѭPwl!"%'Vh`PGܦ+7ƔZ N<>|=:6&vZ# /L(~Kgm/籐$Y4۸\tW7F{) 2]G*BOMV~GHS1iȦD"`& $E}\so1 lC#-D+l4w뽩 g˯(w|{ΚoMzWs~osflN2^<R*w'3\Dt^(mFK!Hm&pR_]ʇ8$2]6~Nf3INnψ[ . Dtʉى6ąt0-<Qd> > "H1ȋ}U. Y4 snHg>WfЇG{KcPelpi&CN oò`h "Qv("#hܘZ؄$ 9+OZ=L(ɥ B'"kQXE$B$%鞧kRMnXPIϡɰ}OaU)AP7/OK+d$k?褐ЉkG>׭3Ǵ}Soecbx^[MwoID 1"&?H?~ t!ѹkCJJ֒^P^/tSWϫh:_$Izs+"[_.5'i-69rD{ǡ~no|׌6\ ^[҉u k8}A}ozA&ArL{8Ak77/]+~T7=*^%=ovlW-yUi臚}xFHzMo7 Q҇z_y)y "CU1ljˠ~&DO94CD`KM06yQ뤅*%"ȧhFn6Q`aǕm00| 9'?-?%~+}qT Gu<ːx|뚸 ܝ̲wwlǻDr;I t1 1[mnaRE* n=7P ZFv!E |6a>X' (Pm 2^ p|.Q3\[< ;"OMb'JJɲI`_D&+\'bgMc1H|D`sV)-uQ'MQ25nGtq?UWkxo]qLph$s/ڦ-1 H9q,@;(=7SLw /FdƅFq+GG~76<+Sw3vTb n A\ AuxXM#$pDckPӭp6. V^ܱa *AFI!$T@+FgOg} d?b{L4 ۚV">a]F욽>8aw>KHKYmApSv6y3 qQ 9 ٨5CJ"!AǏ~v2[9C&(j;xl`pg8&c@3 {,fS C53z.C]R|M*&mikFϔ;YbW.ALIιJYrzr@~_ٞLRm}W}Qߒ@mb 삤PeHd$R֏ 5*? :Yuzpgm0fp򝮴zå⯓qIIE}CC'P_VO4+7 >6Sxt0-Nq"Ѣĵ)q