#!/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" = "58b244f64d27d6336c159a820c00ca9b175c931d" ] && { 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" = "58b244f64d27d6336c159a820c00ca9b175c931d" ] && { 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" = "5a5a5fdb54d2f4f54c5cc33f92aeb4f1" ] && { display_ok; integrityChecked=1; } || { display_no; exit_install $INTEGRITY_CHECK_FAILED; } else if [ "$__md5" ]; then md5sumString=`md5 "$WORKINGDIR/$gbl_tgzArchive" | awk '{ print $1 }'` [ "$md5sumString" = "5a5a5fdb54d2f4f54c5cc33f92aeb4f1" ] && { 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" = "5a5a5fdb54d2f4f54c5cc33f92aeb4f1" ] && { 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=75148 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 lnxlc25 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 lnxlc25 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" "157040" # # 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 4!4 (444$$8p((( Qtd/lib/ld-linux.so.2GNU%+() !'  * #"  $%&Јm/2' %0pK@:nP#6`pg&9RЉYT@D=: $0v@<P`;p5 6:`5}HЊ]DqrC 0libc.so.6strcpystdoututimeungetcstrerrorfdopengetenvfchmodfchownperrormallocremoveisattyfflushfprintfstrcatstdinferrorstrstrsignalstrncpyfread__xstat64strcmpfgetcfclosestderr__lxstat64fputc__ctype_b_locfwriterewind__errno_locationexitfileno_IO_stdin_used__libc_start_mainfreefopen64__gmon_start__GLIBC_2.3GLIBC_2.2GLIBC_2.1GLIBC_2.0ii Rii \ii fii p4)@DH# ĝ ȝ ̝ Н ԝ؝ܝ  !" $$&(',(0*U5%%h%h%h%h%h %h(%h0%h8p%h@`%ĝhHP%ȝhP@%̝hX0%Нh` %ԝhh%؝hp%ܝhx%h%h%h%h%h%h%h%hp%h`%hP%h@% h0%h %h%h%h% h%$h%(h%,h%0h 1^PTRh(]h\QVh US[GPtЋ]ÐU=Lu)tҡuLÉUtt hЃÐUMȋUS] BBBBBJB$ÐUM1]f P$B˃~ÉUU1<u @~1UWVS u1 3 UEE3)Ky׃ [^_ÍvUWVS0XhVSWFt݃PPSWH1;} *B;|SWE uQu u: u^@%= e[^_5Djjh:uڃ hwuFvSP(E5 w $w= hu5DjjhuL1oE;Ht Pt!=P=5Dj#jhD^E5Dj-jhh^5Dj#jh^h@5hu5D'8UUE;l~lÍvU=PuÍv5Dhjh^qU=PuÍvhh@h_5DܐUh=t]=Pt;L~19}(у)QR55h_5DH u&X5ln=t=tERPh@jus=Pth5hD`5Dt P hI%P5hp`5DP5h`5Dx 5h`5D_h5ha5DD5h8aUu5hxa5DD$lU 5ha5D$:U=Pt0P5hb5DY5 jvU 5hxb5DhX5L$vU 5hb5D,$U=tAP5hb5D&=t jB jP5hf뽉U 5h8j5D$vU5Dhjh`j$SX5lvUWVS 1ҋuЉѡTI9E}II)M;].5Dj 1ITC)ȃ9~ҍe[^_ÉUU WS1I]wPhRS-ƃe[_hRhLk5D$iZ5lUS huu|t PYË]ÉUVSQhhu$Ã1tu St e[^à SUElPujuE%1=‰ÉUElPuj1҅uUJÍvU h`ujGuUEEEPuuUS 5p]SuP5|5xS]zU1ÐUWVS u1эY} эQ19|3)u Pe[^_ÍvUWVS] SuV1҄u e[^_Ív1҈щM߹)ME0uV,븐UVS`urZ h@t==Pu je[^h@5hk5DύvKt h@(h1ۃ4 h@!C~ۋC%K @S5H$~1Ph@hu5D$@X5DSV=t  h"=juԃ h@tS5hk5DE55h l5D) E hvuhuh@[XhuhtD!Z0 $h@5hDl5DSY0$h5hhl5Do  V뷃huh@l@$$u;mZ0U$h@5hDl5DQ5hk5D55h l5DK=Y h't= h=t$ h@ h@v~)vwwRPh@5hl뗉h5hl5D^ h@t"=Ph@5hlERPh@jME%=@t  h@5hmk=Pb 4 h@5h,mhuh@1Y[huh XuVh@XZVh^Xhuh뵃V딍v h=Pu j e[^_Ívh@5hk5D˃t h@rCat =PK HS5@,$V~1Ph@hu5D:$@_5DRVS5|=t}t-5Djjhu[v j ~5Djjh vh@5hv5Dm밃 h=j_ h@G=k% hQ5hXm5D55h l5D hvvuhuh@^_huhRtD$Z0$h@5hDl5DOVVHY0q$h5hhl5D  S뷃huh@Ë5@%Z0 $h@5hm5D h-t= h =t$ h@ h@|~)vwwRPh@5hlFh5hl5D[ hh@5hm5D = h@=PQh@5hlaEVPh@j#E%=@t qh@5hm9i_0Q$h@5hDl?huh@ XZhuh~vuVh@[XVh1ۃQ44 huC~ڃh5vhJ낃V^v h:vpvUVS`uhQvh Z h@t<=Pu je[^Éh@5hk5DK] h@=8EVPh@jE%=@nhuh@"~1Ph@hu5D$@qX5D St,5DjjhXvvZ0$h@5hm5D: w h\v 5H$~u HQ5hXm5D55h l5Dh@5hm5D[Z0$h@5hov9huh@1uVӐ=- hvUQ3 Phm5D ÍvUu '3 Pho5DÐUu5ht5DÍvUutUj@UWVS ut0Ft vË@uu sCe[^_U 1у QdY^u PÍvUWVSu 11fB% ftF7tdfP% fuGޅ~~19}2`B9|h`Ɓ`E0U7fe[^_ÉUWVSh0j } XjP  kL lY[h0jXZhQvh@^XhQvhY[7htMHkte]Et$:-u/z-u)zu#Ev[u݀=k c8-t Pxˀ}u jaHtZ]E:-uz-uzuEv[u8-t P\ۀ}u jErhjY[hjtXZhjf5LW5ht5D$A=X<= /  vu迿v uvuv uuvu uvunuvu jPuvu X2uvu Puv @uw *uwu uwu1wuCwu zuJwu  YuQw u BUSP]W'PShx5Dt j@5Dh jhzUÉUEE E5UE t EÉUUBDBLBPǂ`1DX@=~lÍvUE@4@8ÉUEx4w P8~1ÉUWVS >u}t$tM ~} x ~e[^_ÅuF$u F$xxV(uF(Sjhv,ЃEtEU 0@@@QjSv,EV$ MAÈjSv,V$ ]Cjhv,V$S҉CtKtu^uKUBu2MAuuv,V(Pv,V(؃Pv,V(뿃Rv,V(릋]E pECH EhǃlCCǃd{0S(S K$C,^ FF FFS$1AUWVSV]s8C4E~%`13I`uC4DXgtTD3TCDS$M SDC$BSD SDC$BSD SDBC$SD KDC8AS$KDCD[[^_ËS$CDM uCDS$M SDBC$SD SDBC$SD 뼋S$CDM USP]{4v]]v SUWVSu~EFD;FHEBF E~49tE~8tO9t;v#^4F8B@JBuB N 땐 VK͋F8=t@F8Nj`F413D>X`F$V4MFD^4Ee[^_ËFD;FHE}BtE~49EtG~8tQ9}t<v"MN4F8B@JBuB 뢃 VΉF8=t@F8ɋ`F413D>X`F$V4MEFDF4느UWVS]13vFt5KP;KL}-C,VCPB@JB։BuB[^_ÉUWVS E11X Ctu S ǃ{tC tHCH9CD}$@uƉ1ute[^_ÃjSYC듃 S:1Z{YP҃ S ƋCL9CP|{tF S{Ct BC u SXCC u St4UWVS uM t^ ۸t ;9t e[^_ÐSuNt/tuFC C۸ˋFC CŃ Vhƒ1D@롃 Jt1됃t|uxG9C t f VƒҸKC t : StCL9CP|CIG9C u VC t  S:tCL9CP|CUVuSt^ ۸t 93te[^ÍvCuCCu-Cuv v,V(F 1ʃPv,V(ڃPv,V(ăPv,V(뮍vUVS]u ۺ}C$u C$xxK(uC(Rjhts,ЃtsU@ @ @ǀd C CC CCP(ǀT ǀP ǀL @,p01ҍve[^ÍvUWVS<]{yEUz^s @@@}199CEUBG @‰EB@9ЉEE9EGGu 6 PtduMt&utdžELtEdž+*t 62tuxtdž6hjFPE/X65uUtdžyvtddžUvUU SE]Mthttǂ$Ét*t&tǂ˅tǂ뵅tUWVSLu] }UME t%t!t~ x x=~ e[^_ÅuPQREPEEEEuċEEjE̍EP}u0Et0t EPE넋+Ẻ EPx1j EPeTvUWVS<}] UEttMtw x~e[^_VRPEPEEEuЋEEEE E̍EP}ct/t EP뒋+Ẻ EP1x]̅t EP[ EPzEUÉUWVSHI1Dž@ Dž<u1tIÃss{rbfP%ft 0@Fu<ɸ,uuPHSXZhuSEEt E8<H1tH`Dq@`DqB`DqD`DqF`DqH`DqJ`DqL`DqN`DqP`DqR`DqT`DqV`DqX`DqZ`Dq\`Dq^`Dq``Dqb`E+E1"UxDQ4QxutpxEDFEDFEDF EDF EDFEDFEDFEDFEDFEDFEDFEDFEDFEDF EDF"EDF$EDF&EDF(EDF*EDF,EDF.EDF0EDF2EDF4EDF6EDF8EDF:EDF<EDF>EDF@EDFBEDFDEDFFEDFHEDFJEDFLEDFNEDFPEDFREDFTEDFVEDFXEDFZEDF\EDF^EDF`EDFbDfUfMf]fUfMf]#E"PE@Ph5D1ۉ;]"5Dj 蔔Et<$d`]juVdlbdKuً]htn} "}RF!1;u} D.F;u|1;u}/7U18tCЊT+8шD+uU7LF;u|1;]0$lhTEE E~&T$u;E~E;E}EBNu}!E uuuhlCd Thl;]h1D.BX8tD.@KyF~܋_L|1|. \~E[W,\WLBXWL\~ɉك XFB\~1X|.XXpp:\~G[W,\WLBXWL\~ɉك XBpK\uFXEhE\|~E[W,\WLBXWL\~ɉك]B X\~E[W,\WLBXWL\~ɉكE1 XB;u\7L1ۄ҈\~R[W,\WLBXWL\~Ɋ7Lك XB\C9v\~E[W,\WLBXWL\~ÉFB;u\h1ۋ;]|$|xtt\ p~E[W,\WLBXWL\~ɉكp1 XB;u\x `\\B9p| l\~G[W,\WLBXWL\~ɉك XpBl\B9pu`A9p h\~G[W,\WLBXWL\~ɉك XpBh\B9pu\~E[W,\WLBXWL\~ÉFB\`;u\)Ctx|;]AhEEt9EvU19‰U|HEM;E<}u;uEx s$\ȃ0~0[WLO, \GLX\҉‰+ F X;u\_]C]EE+E15]ЍGx0MdK$$`d\~0[WLO, \GLX\҉‰+` X`Mx\DK 0\d~0[WLO, \GLX\҉‰+\ X\]xDY\0dX~0[WLO, \GLX\҉‰+X XX]xDY\0dT~0[WLO, \GLX\҉‰+T XT]xDY\0dP~0[WLO, \GLX\҉‰+P XP]xDY \0dL~0[WLO, \GLX\҉‰+L XL]xDY \0dH~0[WLO, \GLX\҉‰+H XH]xDY\0dD~0[WLO, \GLX\҉‰+D XD]xDY\0d@~0[WLO, \GLX\҉‰+@ X@]xDY\0d<~0[WLO, \GLX\҉‰+< X<]xDY\0d8~0[WLO, \GLX\҉‰+8 X8]xDY\0d4~0[WLO, \GLX\҉‰+4 X4]xDY\0d0~0[WLO, \GLX\҉‰+0 X0]xDY\0d,~0[WLO, \GLX\҉‰+, X,]xDY\0d(~0[WLO, \GLX\҉‰+( X(]xDY\0d$~0[WLO, \GLX\҉‰+$ X$]xDY \0d ~0[WLO, \GLX\҉‰+ X ]xDY"\0d~0[WLO, \GLX\҉‰+ X]xDY$\0d~0[WLO, \GLX\҉‰+ X]xDY&\0d~0[WLO, \GLX\҉‰+ X]xDY(\0d~0[WLO, \GLX\҉‰+ X]xDY*\0d ~0[WLO, \GLX\҉‰+ X ]xDY,\0d~0[WLO, \GLX\҉‰+ X]xDY.\0d~0[WLO, \GLX\҉‰+ X]xDY0\0d~0[WLO, \GLX\҉‰+ X]xDY2\0d~0[WLO, \GLX\҉‰+ X]xDY4\0d~0[WLO, \GLX\҉‰+ X]xDY6\0d~0[WLO, \GLX\҉‰+ X]xDY8\0d~0[WLO, \GLX\҉‰+ X]xDY:\0d~0[WLO, \GLX\҉‰+ X]xDY<\0d~0[WLO, \GLX\҉‰+ X]xDY>\0d~0[WLO, \GLX\҉‰+ X]xDY@\0d~0[WLO, \GLX\҉‰+ X]xDYB\0d~0[WLO, \GLX\҉‰+ X]xDYD\0d~0[WLO, \GLX\҉‰+ X]xDYF\0d~0[WLO, \GLX\҉‰+ X]xDYH\0d~0[WLO, \GLX\҉‰+ X]xDYJ\0d~0[WLO, \GLX\҉‰+ X]xDYL\0d~0[WLO, \GLX\҉‰+ X]xDYN\0d~0[WLO, \GLX\҉‰+ X]xDYP\0d~0[WLO, \GLX\҉‰+ X]xDYR\0d~0[WLO, \GLX\҉‰+ X]xDYT\0d~0[WLO, \GLX\҉‰+ X]xDYV\0d~0[WLO, \GLX\҉‰+ X]xDYX\0d~0[WLO, \GLX\҉‰+ X]xDYZ\0d~0[WLO, \GLX\҉‰+ X]xDY\\0d~0[WLO, \GLX\҉‰+ X]xDY^\0d~0[WLO, \GLX\҉‰+ X]xDY`\0d~0[WLO, \GLX\҉‰+ X]xDYb\d40~0[WLO, \GLX\҉‰)  X\{ h u9ut h ޢhe[^_RGL+Ph5Dr؋|)QhȀ5DrwLS|)hڀ5DrwL|)Vh5DSrwL\B[W,\WLBXWL\~É\=[W,\WLBXWL\~É h L h 7 h " h Pth5DC"q;]|1UB-EO,M Љ Љ ЉCIujS$ ]ۅ$SuuVh5D]pht E+xHEh h ؟t wTtwDh5Do NUVS]SDE ҈E~J`d1Ѓl`d~CLh S9SDCЃlC,j1SXZjASY^jYSXZj&SY^jSSXZjYSY^`S6\~.[SLK, \CLX\@\s~1v[SLK, \CLX\҉ك \ XS$}ue[^ÃjSXZjrSY^jESXZj8SY^jPSXZhSY^dS3h]e[^Rdh\5Dmփ SXZjBSVY^jZSLXZjhSBpY0^PS-SD-sDd`lh5D^m UMǁh 1҉l th | @h B~ÍvUWVS}G UĉM $uU(,M0uU48M<uU@DMHuUMLPTUMuX`\Uxdl |thlp1(ph$,G w ,Ct-W  FWG C@AK CuC 1UċMEUM EU$M(,EU0M48EU<M@DEUHMLPTE|xXt\`pdlhhlpe[^_ÍNGCͼ-}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@ z (` oooֈ&6FVfvƉ։&6FVfvƊ֊GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-58)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-58)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-59)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-59)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-59)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-59)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-59)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-59)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-59)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-59)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-59)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-59)GCC: (GNU) 3.2.3 20030502 (Red Hat Linux 3.2.3-58).shstrtab.interp.note.ABI-tag.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.data.dynamic.ctors.dtors.jcr.got.bss.comment (( !HHH' /@@z7oVDoPS `` \ ( e``k  pq]w]m%   @@0 @ BZh91AY&SYТnXF5 [w}BQ/hxP@Q@P P+\Ǹp@D@$ " D@H ֐ZP-A RR RJE)J ZPWZ)+֊tTP)]p (MuU H( (( $" J ֪^OzMhfΠUJ**T^UzjO]{ںj*ګUR<ҵU%p mlۀ=S-ij+j =4Wl)$  *HDJQH(J]8@ u\]HF@( H R"@( P(J (:t ےU(TR@RB$@Ph";[û i4lUAQ68 ce@Bu`,qŒl$!_iȔۼUM)୶/kt{L﯌@WoEO,sD 4Sw_(QQϞ}纤{@}ÕOuG.;mnwUC|\V탣]i6 5E@P{cymw>>eϳ+wneHWzy|ψ&]nC׸lw:N}=PU{{v@M};N(&ݳϔ\zW䪠P#w-G#邀mm+vr_n쮛zR5畏nT$uOT+X׏]ܞ;>*;p[͝r{ؔ :}S޽oe7sǼR}|{N60*H. Þ^eSmT+z{tN=3i{ jdhﻮVCPO=ۻN̷' op@@5gA*stsYHB]mTʌ0f]Р atc7QHhZFuw>ʌ]g[F*w|JPZA)S]:s[wShUB^4lgE"mC *O|GmPadB̯|bP #p8gsf"Eհ@$*E֊yO>9kY\Jﶣ|C+DzY3kOiT Ė:{h5o{t6։ga{y>z@uZXfA " :)qzB(qj 5mnvug><[\魰P&4yl=׾3yC:k_*EBERABBT¦D@HPHT( (PJ()T ӭ(@ $*n̙@TPP wfiP )BHPUP P  P;4nU(*D@T0U: AT((Jݶc P( *P)@((P44h0 biA#@M4Fh @ Md&LL0LA i!=&'zM6mИFLz5=)L6MOS=MLSɩDaM=COSGz4ihi"B&iɦ M0A4ƘmL)G8C1?NH=Jcŋ>nB=zCW˴QEW(T_M ח[\)~|n\aaG(a?=,x_/aY.ӡ #_I'ڡcwV52\.e/3Z=zW\~vnw>>f%_lz^ڽ1u`۠L<`O 1K\mVvVdBQ 몸g N<4'c֗F(^J_˜1P?>hǙL:4gS_1'v} 5ߪY֛6wĴ]tG [Յ7 e&jGv!xuggKpstdy).c{!GRWfq-K..~|];ΔѼxva$XVL帋_:c\m=Fw71j-66 f6.#JcDC7E=OLu/2BՅYT?rݚm5D|yN;~7!bCZNzj< |bFy0@9@i@KZEݸ6/|iGM|)JH4;4+T}406 Gt3>CK;f&)2H~{l:QѷLX}EB||s;݀櫾Rx:״(}[賙׎AI73>ofhk-U'nsa%&t8|/骱y;n uD}}Ka þҫyGus u\u8tӸS&:$ ?an!s{lVd;Ohp{ݼC6N*coѐsg5KJ^ ?/Rtj8Y^^PNZ8:lܧ쮗@+` ct&L.[mnErS+M;L(y tNfb]~׌`5 Oq1bYrJ0gfa-WRa1r`4*CnywLUNP)[Zx<vfvGbCdQ߭ʜA՛]:·0#Fc ȋn{5A\jp002ՑyB#$8Rx+ǯԳ~ۮ9{xh}AO FalT&[Kc<rnfZKes UA$0oΙs94(m*inzK*Hܕ;持Yy4_K.N,Ӧ֕N9<mJ-%6UPwЋ>7&WVXnB_KJHB1,#("&g-=,x'+Np&Icrppg"ES&;g)F'HWѧ,9ok]</fu?q ih،?K5lŗe"9QQ(Rf&rj_xaEcZlw{EwC!2J2-a7ZpoXЖ.콊L9ΪoUelge`4OdҫYbQa'n1.H % =[:L#*`^OUxGg_~x"q hݿS"vA ikĂLb`l/',Y]5V@Z XTTSJGG>xP\I!=J+%q(ndp-e)J4@?XYP-+byXGfF`>sx7$ Al"Ugp8J12@7eB`BlDplk,ݪ_EqQS28.H;_m{}va۴hx;P )'ԈĨxKp-*5A5s٘v"yߥR&hKZcKAu YR$ *]!P Ws8,sc IUJI7 *9|JwĖVW7\&X?C'qR$czsThφw&.{Y7u(rr,˲F}Ѡ+眝|n Oޭ7n2 &y$ReQk U<$J]qu@/>'bp3 nR1wBK1M51MQees)# U;k8'Ȧ7in[tcv_}bܳVykCd>g%U걚\<#KFVu'f*9+s\1&+n|[q/P^$q@5+K?)lAr6+ED33D !okcQuՍ)`4[X1!p%U7T)72$D99xO;g&eDLHޤ^]Rɱfi=LKr3uzIYh~졝~iy*E[NͰs6[l:%7 ʛ=Fr7)]uF 2'f*b 8N{׸GTېr [~d4 u6Rr JJ2B//9-=Rg& u~e5zd՞gpzߍvm0!rѴu؎SRӦ͏(JMvl%/dS\K2Fk,Eˋ3^OMȢqEat鑩NݿU(;/!?Ab+'DMVz\]@%m_M} ZsCQmTxٳ-^Gd\U;nt:vvSrVpD:i1?be3O<+Ҳ.--NɆ2Guqό!AEp%m[I=LGnxE'ւ{S*9!)~J;t,\^d,_!áaӺkU0w(Rs#LC%ZIY>6<&]Ÿ5ѧ]|, ]T˗Rɥf˙J_2#)ɗ5Qt||j9jmq6 ouGlg|c[2B `֨9=~;' w Pg]ʤZ=tqH3%y0%\: s4֩E:PLrw5x~AqF-fbK"$_R8lZ@$H}[F[䏶_85zh1l=3ivkRp]G癩ljx #L7)"L+Ra֜oڔs%X]y;odNmZWNO@UeTOv:w7΁yF2d ]dj_%16{\~usUlX?-_V“&ǝJFkHH9UK陋x.Y 4ovZ0jJNm4̌Zv\#0G-jxh(ꂚM#"bʟ*-fS!{g:_)w驮܊fjfyQ(\$ͨsi6j^24-pYS@_xahg Fs -MwMxyL`y. R ;ًSfSXu[=ItjgR~T\{$/wf߲!9D˖P MY3Tb\WڕGcö"EGhԉ?C4ݢu|xZ³"#12}<\=h׍|8#ib峩 Zz=\s$Lnrʈݻ>"rfQqL6u+y:O[,@n0_xH ߬g3CTKϩp\![U޵\]Yb&櫫cMoYW kʉOWw!kC9P[){JtnoR|Aґw…O 9؀ 7۱A#4ζxZPxZOu?0"XhD/3S6LY]$fc+dpc{UղI#y_;YʱAUREۊ0МXP`6r3PU13AiQL*$7eNq D CӮ'r 5( YNa8Ѣ9Sxsjݺ> [# >Җv.;NfƧi{`~c(.gZR 8NuvF3XAWw49ldq(Jګ vMfq}VyDŽg,lit1ryȈٳ7&.en~mS3Gy~bp\$c-^ 롿ѥSeQ^!FQ5ޡK9؞Q9A9C|r38)ȍx4'uR8(ۧ5Z1R׳f81&XooB[6<ʉSgjo w" J? %߱>Jc8׊KnN WqtT>cSeJ%@%(;5𭻘 d)~2 &Vgxp6?^Xl|/ofڳ鴀$p{ o:-W~z8yG[GK}zv5:oK{YT൶Y"ʴBe1">8O;=/ʆ}ʶ^pQϞ/Kpn*U_>,nmeٺm8k(V: )=m<;Zh̸;Vcƚ N iZVU>IXdfוQ)+ԁC6nus`5MvƶH8kԩ[4Bkr?ui,c龁>X<>8/UUm{g+&Yz%NӍ~ S(H ]‰(lsuen] ŹY &2?과T6%ȶ!0޴#VO:M1^#!>a*jk-FoGHdu 0tnm)DdzoJ'cήsҥ{q Q мDqҌlQVxdϒBm>`w¤j:8XU$=74cԋ|ƐuId AKhGAC`8WHL|0?#@"0,ۑ:N{6v+zGGV _oꏧ7N'WNo"L#3BT3*KTQ'GYҘmIZdep0)pPtCE(֩Q~[d2UV4bBL_o}#C}r5xquf?uWV)Į)tkX-&UqgK6_jOORZ~rlV+oGȲ]j}Jmwr2WB:+rʾ)5յHY&5ɍDiНquIj7U#Dxxʚju/ϐdMH&||kS.Bp3g4'g}IFYu|(XF|#S Wo'n:yM/k!lzW-+Vܦri-r{{y"/0ɂi8 f]jòm$hw K^UY{\/ *x/.ɶtԣA2ALџ!φ{=R?&)kJݹגZA_tr{ӫL7u ^3n@ӒV4nARӪC? c*NpW ~ޜ1 &e @oOgtRm"tayl|.fe+M즖([}PO )}Ly&m0E2]qe,MบJhfLSk~TQ< t򧞖 q_hUh*Usбv vvBbB^tSs|E*&ya *m+HDyT-Hol 1}*3DU+:nimMt҂6{2D*cjg9Ԯ8GѦjHF R\b1͝A'tb3wH6OKԊY#ŒMv^E #,"pސU?h͋᫢7{C79Ɠ=MTGX4D&\<߽np;y%&"+@YSGiC6|qHnm<\ [1Ȟ B'GNChgM,n}(ً^O\)'U"zTԻVl'n2lmߍ'>b`|_!cn4*XBHA U"Be?ga:' @w4Ąq@~[^7kkr]@Dӟ>Sߕ\뮿gvk}]-O %|: Ȋ|Crlv;n`aFy01+y:j=qϞ=za˯9jǁ/x7>}u>K8?>u{_߷ϲsϕ;xލ~?Ϫۼfoӌ~>4M~ l2rЀ6CaC#?罵xƆ1;(Ѵ,ћ$WsBgga@QH{4ڤb0Kqj$+nxSMd)6֭./.SP A u'~ٴ^>ˀ{GP/epzG }H)Q~D©Bpj;_;,#]xmI&?ZY(u*)\'|Hx6X~&IG2@SeЇAcv9AD4!>T ~M2̆ &:k묮*Q$:7g~Ծ3 O4K/H=r6qo_{}k4xC4PB#w}n@&0/lk(m'c!`/d!!y $| by?ȹ\A~S4W=X4vC2b z>,NvT?#!?2O,{!{οM_G i:SPw @8[WW'#$>;?!^ 3 +2Dw!<>Gk!9prȏ3  BENTD]7_f;"ǔ}vK = yrkՓ^`룿 ?wO.w$WH3x9pǞ$C[&;5 WhT* ߺ+1ZOܸj=A7>B>@uI6o.'Q Pqw"&-qoxh?;i\>IB{㏛NEM3$i>վnWp]b+ewef#CbH5yQALm{y6575|nBiS%9+8/XQR@\U1gg[';iY-RK,Gٿkl+E@2zKƥsTxkʆc1V)Sk̤Ԭ. mmziJ[LNjITi5\aPC*T;Aq_Sކډf"ܯWR*Xʂzvv$!+ 1v@CnkzdVܦq]ӻ~Ѯ[%RA~<^*"ulWosyV5,_TդǨf UMaa%3:Hzc&HvLڮu{A oE\=2_W9AP EVB3&mb|;>Gį@BZX)eZ!~zb]$ *|+ & ɉXV X[J`XmrPR+Zdm%j #l+հrM bi\CoV) s,Y8|d8f8BIx[[V[NTqÄ1 ''YM Q&ڀQLb.QImY%T+ e`C%K7j%b'[%`c', oXed=CRN6@W,.3Ul 8mP JʬhJ) b/Ftԭ,^dS+Q @Yɺ̴PR Dk,VQD42J2()1\CIZE1}PJd 9YN.,M3q.WZ]!PZ(ɌWN%.)\ZN#0m)4C1 B ,9e!+*)݆c11Tը)ɒ4Ȳ!XAk%HvnYR#z0mm^ H,QAf*c c+%^%c' N*Sh_YF:pJEoTY8Lu TP, J0i H. 5*@(xSbw)Y.1ĜI16ɡĂV IukM3,EŅ`)U)6ت,Sdm$P19G(T 00+ @IeaZŇ5@d9VLr25%uTMYai`94B6EѴUCPe`UNLS4qziy5.ٹt5پX|W5v-"/$0*lڤ7Lth g}I`EXTf1 mY*@YZ1H)%Cs6EB5 @2 Pj eB2XmJp`q$1 Æʂc#xmh(+UtlG 3 yyxxlc40Ue6ȡGgS&B"YC3QD!.Q&eu!+$Uۧe)s%&$q\-mɀ4Ԇ VkP]*mաQ"A 8xQmlVO75`0, +YqKDζf5+P^L9['FYU@}wtCP1S&@REQM:IQ,=TDVLk֜M{(,ȈT4*L|8Ŧ&i1$d-VY*>rtl 6 Ȱ*6$ayW35Hc6ŕg sVr֘sd388Ab,qPZ. AՇ+ ?,%D4S4+Eo$|2jN7N;P4]VƳKvbe@IF!E"muE/TR (rՐ6qxJŊH(d8a0ř!ZT!PFE9 ) Ŝ.!bbTI?aMZ"Y-vtJɈم)*)F9tnێ>RxTE JiU jlc*zbyi =t xE)֨hi<|rv< ?uO;B-@}QK&imՐ%B ]Odbֲ6.׵}gxAy?'J"3#Eҥ @4PSE-#T-T"PХ-+A@!T@RR PP!l5<.7 5[$( it6ݶmhgi2[4Te<VBcZəEb6r09nKGggKgE5e5XMCE )e +o rtlgmQ^[ݮvq"!T)sw[k%MTC9QlWzҎֺ־~n%MD+w婆ff[/ouecQbڱqQW W37wE)U2-c5e/hBA !Zk"V@$_T޵v4ѯ%]\A*;tf % HCpî޲- !(&[>F55 ʴDk/uwe/?qe{)?c,4kU;l◉m*/k*S.ky9=NқGHwy@Fn@YFal6: ܍!XurDP9 -P'"Crc]9LobmlݝUjnVVZ@D*KEm"Tt5TU1 f RVJݲҲb``jkqcWCkEEkGGqY&ɡ3;nʶrj[;kf\ M]US6MMSZZC{I=ꂵ mM\\\R]>T R[VVZɴMcN)Tikex%Brnق֚a)e*/ Jr2Sc%ɯ d+Q-&yO `źlfٻV`  (4 '5m4bT;Ykk/p3l[i2X{8e5ܛ{PPo4О.o#k1ߗ=STe,?dJUPTL p"n(ўJP9I¦Cž S@Ibt~|vzwKm/d$7_YqHǎ?8Wv;hu7rEOH,$W\^pWt;"Tr',Ug `HSwUGr75ttvwСeSi~ق \]ӭPgQBUt~~EjIbS=gqi=;[LF,jf QY^ʴVQJ yG_G_%v4_.D(Wo TP.ETTS"}ݱoy߉s=- M ]Q>fE eOCe{yCҥrsW16{D}0q=%G_= <_=<折),h~&oG,ﻖE/:(vSyXra: 5nvvuR knM5f8Xw_Cm;jzz{jjIN&P36\%"ʮis,Ҕ4tts۫;;;;-q$wW'ssAs[sE]\+k[/l\+g2Y:G7G#?WڞoώlP^;015}}.|7Sjh>vcޚ̡A\ac=EtB;VS0ۧ`[S 4,ysfskDEO[ j9R`oIFk_7M/qFE>枺~,hv$"̊DzIdpWqWU@Ȑ.b.z]][Y[˕oYZU]9SZl._ZEgMsGTFC[udFKhX*֗sCbN-.R=ͬ[ZvES qkt x7RPY\֤u|kYc.K?M2Ì4#7f њVKfykebɓ?H^{@w&ܽ`<ͦ'Qps8dL2mq6l?܋Ɨwi/&Ģe74Yk/X6{\#[7L9)lbr=3Cʆm][E">=/Dž1X!~'oKjD9aEAq "k]G[Q!c-kcZȡڊZ&ff֞] 2.286$d !(mb]A*FWQ5{EmmFѶX*UU365l#P@EٷCooCWڮ5HF ZAAA?~֢~(Qj'kgndK [ض̻]8Ր*[ +hJ۵PYǏYYYee]eo3fb8-Q+LKb1 +qsX_Asx |T,wg՝U5^ (+ɧf,jcsBxl^8m /((GetKGGG;+{]M]o5P6IZwUMme#c 1) z%\Ivt 4jY[ؼ2rmaMM].!qZfiwYK}nY zV]_,ZRVhl M]uu "(+-W"& eԋֲÆS_Qǵt^^m@DoukQͤ{J IK;;`C5 + _t/Uuw}M~rXo\T/O9Adg{c׺ϞJ7<COtCJIH$B 'ܦKKMìƣ{ ʦ-MEEDYFQ7'įE;ؕն՗V׷tR$Hƪ-e=e3)JxXۤje"ȱj*ڊ( RVѫcZQQRSG8\\½~Z:;7^ ŝUULՔXvF L{;z,]ɷM,jW"%qi JJEou+PYJ1/ NJ |37Qt=9bid񾞽i~ cs"l3 =gJPfIT~:Qؠ^\ K]gA{`uցp$"ZT|FqޖodwCm*VemR[w w*Rv6.'L楥ZD;35d8D5mԄ^2**b-_U ,._LFeAfcP촔Qh8UO:R%M{VbOlmc)񪲲 J(JZHzƫiWk[o%vP ʆ*bʆرlkmbE5TL5scoli :صʪ*ʫz[EmbXϷUUccoWUiGjUUYڲ"IJ[KY%mVD*&((@lbW8®(rr=5Ņ4 z&pӰ#~= evR?AĈ봕_4Ioٍc뷲 yvz물t|/sM{>"o9pd8E71}*toZz+=<グ8;n)Čoջo\BNo' AB)|M?_7D/EYC;99;:u{Vʩ*TܑsT% Mխe̫[X1ǣEWC*Ǝba&<{Βa*$wЛ3SEiUij.&Ҏ< ͉ -mn\Z[K_MU夫E*&55%|Jq ZW׹s[Y pbZSFk*ނLógx0R_( -o,-hko+^]bT-.n{ 8vHR[ W0)AA@x)ʛRy1M}<>2>gc'F2<NkEKnul@ۣ!#ʝǥ9T9n[3u.i˓ |iڄr:OR7/É_1*;k-'|%q㳔?fP50!om҃Pi/*Ig)ՇXN`7ؓxU?J4 PP72%4%rcDM)AC_}[A;Bay".~ Ë _y\뙎BC=K Ⱦwqzp h{ŜuBVR(^DƬ؄l-*@ PFj VļR(OZxm8 2IҰDV-s>O9l3Ta 񬾛H)`u|'%^uZa̓|&J{>_yY*+b=-Yǻ=vR^d.5x&Ju 8,,O͕%Sn M}s ]{yk`Y]ħi~vV#BhaƓHM5fGp?_[ᵉ1! 4E`uWGF-diR.9Z pH\\S+R trVǩ,n\|F eB =iwGV)!S0A46+]%] WxM *G1;\s#4y}o6֠5g-x͏*@W˵{=RFiyЛ=){c%MAʘ$:~]Ӎ>yQ!A㭦1{d AO= zw?-Ufo!)?yo0z%\-QŰxFlO.MosE੝x\eĬus3eK&sj}c?fGW: "(Ŧ4D @HK+TbOb,fA1oƭ'0"`b":< "o7澏ݾkxϮ,PQXV({TX *4r4Љ|O߁#fTjdR0!JvǓ|okMv NDW8ާ_qW:=F!$Jlbě]apg<=*ImeQ:GbB}'^jЗE$ XQL:C9[KiV>)IDNyU4N8MzmxLQ>XB ʹA*Ⱦb,azzi[W݌ADCZhe*p{'+:*c4.O[12zu5)DhqiKM#Rj!L*VR¯kJ[lT 4.*a r B b3p1%K&! X1S7nFeE&b3I0n&q)vjI1G@)٪m{8WIot1F.Kx;(dl,mJj$|K$gТvz$nzP?14X un-It.QlbUtZ #, 0"ы7*q[ !`=~F} C嗋̓, <ZpԈ8,Ƭ>\Sj-(V-W:SsnOsL,QӌJ gٳeT (Q[b* ֥KaTEQJQ0UEjg*}/3}/Sc>~+ҟc[}m i.I{yDΦbrpKhc+IR=گ;>kڄᏝb5|Xh;D-I[mA|XZ^,ڟ.CV '<1[KxpHUE'iLqF,/WUIr;R<3]ZY賗;_t0Uz1ċgp9{s=_W'<u틟mR'ƆNV6q5Ƨ_\k^y⯉X9f=UqK8|5Clr,s,nP~߾?/gB]eykג>UCMqzs̥2eX ͠·Fۊ^qLEHI*m(ꤒ] KAZ5bT(=Ʈuvx;8W(n9B^M.9J66_ӑsj[ch!εWT 16;o{jw+Zt8ԉC,Z|ju6jWLoҸ#7o. M-KHvmmݔ>?/4}"^NSv"K[m ԇHT kBsAqIVw<>/?L3Z,I3hNc\ZD%D߲jl_e+F20Wl|v.S-.IHntTUTXi "I) )&"b)=* i %fZZ)"))()"*B)(h (abF$b"b*"R(( h }8F}48N}ϽqXͧYYP]~M`au7Wy4d}(|q,/װg1.BAȵ>mm5kL֚}L8!240{^H Go uq]/apZ(@lS]oW1QTy ;DWa¶iܖ~( rjR?YiTv:zKenti!wץ6kDQj#1^Pc47;'dqV%̗%%%3(7;FCZ;~BcCo8jg9顿鈖Շ'oOU1#dUwox* @ E1u˫) &c*Hsw%+30,Z! !EJzH]3?s8|_};NR"P~R`\DJ`+*RV̆1[\ UpO sC9[4zh$c브RZdl*(g`3'>8:\ԧWqG*"P!R*hbw]1USʷGtw8(ϡO"3oH/$Q_bc_Ucp9l䆱x Yޕ|ZG4-O*Z U1 R *,u{B*KscḄPKZ- }#iW5r &w=5-? Z* R|:|V 37t^H }}{&,6yM PGo ۟5Ɏlϻ?=^gt~%(`gO}u/uPYlњDr:3Sk6㘼-%-t1xlż\{c3IIQ*UX#=>*ʓ>oKS-khu..[oߗ*&8 v ԁDv8V\` j  QJDH YO;K_G(V?=66-YRSh*Q*6xU)躽v_#2pՂTG&'%bCP8aLdʔ .# ZXer&1,qc-f9Ly| ۢTJEQ!Q$ D,4Ş/xގFwozR! $FB4:82Ѧ.DdQfc]ʘ+\iǥaؘ+8* *$IP@#V C+RCa5^ t"r-jy.iMe*'* P 4EX2 Fh@Fk+Wfb57<@єQ""1~jrLZL؝im2hc.17|α#h_7@ގ0/F#*w#??{UarX>ԫ>!u{u/T*^144!,u)|YA+?q\놵2 G=cnq B胲o'rV‘=k;dwMfˆܬ7ޯhMu8ZW>v'A sj䜩CvmTŇwuSlmsctXt?]LY ƌWb[ LWwic\sȽ nuݧ-ꆨ-qifqNtP 2)'lwA:V-N/W_/ٽڦ7eB=p뷏mu^J B@( d]=η?3x;uPaaXFuŇEܩ})?hg.é8g-T S$Ѣ(:@Ue&x@T<ĽVʫA#QF& &f̢KVIQ*$VEA0Qsԓ>ֆ3VaLBNd/a.k\Ք/ 0,Yƚo}'~W_j>qE"}&=$ʔ+P *S.[&nڨKyʦ{>Lx;۳WC1JO3Uږ*_.ٺPm/mw/Z/k:}-X|Of~#Yq!pv|}6mSof^!Ks%V| .vޙspg[` !s{ Gmu򙌪v2*fhXFvi&ֆ¨hr{*)CKjԶEpr T@*^5*Z rI!X9zM:2K{5Ygms DDD4$=ZH'}~em]Sϗ9)>mtk[wqEc}>xjR7O3)j02`4ˍosf*4T&ʍu%S_`&ku*C0Y"%Î"T*"Qft8M&0U_9S4n  3qL% Mf kN? b=[[L$8=ª/ާ'qT?5*$BHȕ)YB\6ʹz98.B @Ick/\z&IC+ݘLSn W&6L7Jz!iRL 4>iWS+2semKT«+UTbt&A\A!@ǜJgXfֻkk\}tRzmPմvk:'oG&H[yzM1a5j2FTM1KF,T?CnVTn*RǏ[cѪZi(5%CCp0m5ŷ8&1ptW4?c1g*i7bf$:՞!?ig--+@]D V{`_XݓMQcpB;L}B簩L@jb]##[&%6i_#By?G^ñiB$}ը+K!e@(ix%1K,,|!0Ww?h_ G (Zgm|+BXGMu/7 ÓSHrmw+%x_98㩺pYzu;+73bg/Bﺾ11UĹ]}jsJBR h_}STę&K boe3cZWOFbwo.WUɗTݍmhTQ+ƪnU6E^\С9X-z˼oZ![mOL1ĮzhMh筏s.-_;%ZCZFd3BUJ[ޫ20&^bIUCy< 5|]&k=zʌe\(a/G rbhmZVd)^9^˝Zgkw7t"q5 Uj&_b< MZަhZ:c{Th-z5*~D~!V3Z[ d7|ۑoå *uDk=ZTUdn*wc3*$1hf'*9Re2d K5>3|gZ@CN.gعM~^mX"H) T)RՙG7XUX4 L~UkLֶm:T@H L h[|e?0ϒ4X?ŕo_~:}sh( 1Y)$ d[*C-YeF\<伳O=e0ڡ#е %QqضA[Wm'!19(fd'.G>HX(\g1ʢ`MW,IJ2EJpXEgo7Zt{.~q"ũ@E Ic;tQDy`2b*~'CBT?mкNd548Xq`Mֱ/!eqd)vOlOd2DRY) R%[=o=h;f+eKL^%2z8٥ %m`J]|ސ:>ޕ(jz]BiT>H% e,6:yrS B>: Ɉcݚ3 8J|Ƥ$ یf>,w'qf~9pL)N> jj]\ ܜ3=M>^E_jvEE䡵DI r)O"n'⒳1~ƻu|Z#/`m#;gs&<L nfMwef_/뺞.qLPPM'(:Y=\Rnhx`8=|ezqxZֱ6kB ^~է2yN>-&ۋco&Kѽr7M4ݸn$diL $Y>8,K%>] m53f=SDfjeU..3VNSQ{tC7gpA J$J7 YP *RvuYCOеEwc; b͘|pbUJ VШW̎֊Q9dL'?mY͗9UҮ8y󯳘 }m?O˻ .o`vVx!MבrKڥhI!mݢLSMvO6--S2z::^Ьݙ:4 Zc{TAw3euR+UqJquUNg)LYcwS69K&|VT̼9*j۹mkCb<7 sThPKlXiDm^Dc$rl䫱z ,BRK]S3xYkz  hg"\;ʦ57mWIY` "Lm{6oKx:9n'Lb20 QETQ|梬yY|>Jx~{?G:GXi˭ۍ M^,xXeqWK } c)kXtf:,].k_e 6Vv'1q 1eBz{~ߍl֪T)Pd5wWK7\sE0\-[Em>0>Z|NzwٵQSIa޳*B(J* , N`FpaM7ƹVօ[~{]; ,:aaU.4G8(mg!Xwt a5_u}nhKaxGY93Bz>vJ)]^\Ι|;}*^Ciczw,la-_pv36r4 Hg &zS,M ;mAGmș#+lo.[ 2'fm eTM$|UAe@g'qӹ  s\.\V?E\ȩ]rb{χT>S*1eW^%ZAYL '0/\9V[8 Qmבzӽkmϖ=CPUe@iCE_"Uʫ;jn޶ &L{@|5ɏ4X(ZMlb~w)SXH~_u?戊#' J24t鲜uKk BtKqs#QQjהd7˖Cz{=pj*t#~c~ <= u|yJsH'Je~Co~ѯ_e_7[b8Ka}:"Ioׇqq]ҦU։rvL͹#!c;W&.q9#. Ъr+Xع' +DxkQ& (j,e7_]I]vvo_RDKP` ke.j~zDۮGD[4:z %Kn{m.Ms A$TID)0U_,d7@o{/_m^MĢrN. t1qW.b+XʊNgӓIP$)hr0d ` cP֖\n.ojY94[nԄ2  *YW'! (TVs'Lǎ#!q0_g[C1yw!oӀ+[*m^O {YlI^T9^*@E\Taݭrgl'vγQ3~R3OA{I3q ɦ+ Dq.ZV*`! —c#BeH"/+Ry(U/^$euV8wX$cD3.4dCP JJ4*\,XY%^GB }OC,|! eai/6/] %@}%iMMPDk(,ZĚm.Gnn ufʅq = 9%Hb,ڎrߋEFM:$7"IЎ?,&;si'0H5{tvRBw=X8>i>Z֙H&Z6[NeqL:ݽՂ.DYTh5PW3L}Z Oi&91ózS+)ZT'aZh\ -@w1643t_78|~?]T_| (aiRBBz:hշٜVuҟ4wGy\TmخcGb ^NOiɪWQJ \-4ی~rWINJŧVu\nN6YYO~!ďJ!6ĶI! S|}:SVr*nPsP"AH@!ZA'jŊ#%CywSu_UG]=)b|+UOcDӑK+?V_lo7ҿ]/O_S/:⇽<۪ibԦ%ڐq24+wb`n^c`anNczu8^_$30ģM2.!=*V}k+\BY8,(a#n˿d²^T&AYSoxsWG/묠"!J$$c1Q-h&~⺮ ol܉47ei^?;_Ǜឧeam o P^g0 "RPWSG{3d*)h΋'KSwJ4)(ǤjyyжµHQ P?rxwNVOjm:=JaPP1-'4+{w1X^!x-uZLua_o&4d#>>C{/8QPed7)/hoFɚ ĶIw2ǜd57G>ߵ?#>fU=+/õdQQZńR W )o''ZVMOML\wpz7 EŔ 83TD u,b/_Lz,fײaF͈]o݀CVQVwEuP2z@}쌕/Ecȫ:gKDДSmbK%!YK׽FVGǵ0'ݱ:cJ5%*KH.j0īw&(&8\1:f7?X0Mю&HTh+AP ٓȑ'uU)au,I!$1$BF8rEr74(^/9׾^}fe>ߏ>Q_T`oSr N8d_}Եk!̣;I`VPԙp.*|*ow3& ?]w\D%Lr 's\a"C{(>ozU<أZ̉x$=ML jwzK0)U-i >~?`њ$~Os>~h&-[ӐLfl$1R |T3zEMI h9vxQGl!\ .yU椼iGZL5l-gju#FeZLunDH2 lXzǛwb|shj"yUŕ.gXG릋[m{ZF}:qwrI(q-KDz.=ջ+[Hm :#;?Xٔpe&rCW2Bd]YdR+U!#AI vc96~k zݾK_.B`K)@ Q {9K + ,nUȲGMh)j=6Y.K; eq忩1c.jvImIZ<͢MkǛgvAGԂ_.LD '<'l'dX3GAi^_ ez#աA엪q "hH*]!R} Ґ?)MeuF? %-#b_y8=3PwJ?tpGu+jmQ"J!-;TdKDe;!e(hjŢ=?,ߎSG=xavK䰟r=/gɵ>%Ow /qlkZL#%AVDԂ2.UQQF~h;.\stD09=v+0K@ڨ$O S2Z(:ͯFAGoBvP_v{Woc0w f ^,Y!}@%* PLP̛>޵&vcxV qR2BMR&/ߌ^[6;?֗oD;~[ˋ&D hk{ PzHuއhac+na҇ Fxf*-V-:jx5= N`ttJ3n$Q=4'Ve\LօhA3  oK6wYhntt.Ԋr[(ǖLZHk 閖"(`t6Ie!?B IGShH D{Zn5UB&#KԠEzf-2e5p&tG/^!mse -W/DKL$RGخe'6H#F3Wz>A5`/^@=] +c=PoP$ L($J` dA.=qf1 Hx:_WH<L!ڀ:!z}Lη{RkjJǭNT8#(LI M P ׼i:=}A$))P&R5O#HR=p~g`) ׄYUVP2I GF>^( ǣ\bdm1JE Kid`aldȫ*-.EO.t׷i3{nޤ^bӮLN`(2bF\k ?s<:,4 0ÃMۢ=a^舞#p L#؏>m.2 ꄣ,fnhiW)G/׎ń,{1r2I( ETG/nWU[˳G6)v7j$YBc:Kv"kil@E*8:Kk CaFK@P!2Phʃ?PRQF3]>.~2}+^P@$#j2xH\/T耒}e@$< ‖pےh{6? u,qT>x2`+\u^rDüU}ݍ-+ђP!0H%R)XEW1$Ms<{*%!,'[Glj@"&*d1 ,#4x,ƹ+[T.ujg*KAnRROmgd}N<7ǭIZhD!:kG=ġK@.P1Cөeb_פ.54dp3޾=tQgTp9l A5'?yn}o\'>lUjlID.Tf32!ZTdʑZwK&Ѽ/ _ΘNkDvceKG)8VDIlD#ukrG`w#vpd0W&U68J" ;(׭|Omh@[A;Ф,ƫڅ?B2.8Wv(q$SXgZ{!0+U椢>0HaO<ڸdDrpDlj׮'u57/Ufh O tJUt̤Hf=Ha0Rr@LI1mxx?Qf$0D}ko(ߏV<:@@M hymrdIs`dy!B!*J[fkТ7RA/h7%GF׺o?yfJ?YC<\ @tT}t3~&DzZH>(D]졃E[{wM@z^H%2e( c 2ef |(jsH1f(@Mz%N,ߜL2@c$ш'H"CAizSf1;({# ;DhmW ÁLԀA 'vle%I$&e8ҞHgIA0%=sU$hgnb= $#ǁ=rL ]x՝x!@a%y1޳JX([H9Q4䅦;XQ!ː}H$ٞ>bu̹TQ|3.{U{9ҫ=u1$4zyӶd) '2[SkىiI؟3mcCT|Lң,&yM4D0#$x(XBt' !i:H0TYaҲ]RC\z_>Q$~wlu4HTG7F߮z>Iibhۿ¯= s@{^ӷu&(} =L܇MHTrb>UF/tM6g̼h|e&ZhR1v8n^Z-BU4|C/GϱtҖDih,i/=KPC#LdN> RBZHLGoAp7G_DZƆӥ=[ V))G4MB3-gZVB+ hf+(uz}<+Ҩ7DP~:Tej}z (tdb*YaPSeJ5 { &5saz*:$Vue@H Pw9eZ$!U _®M'ICdosT-Qj۰n1S2*\%EN!A+()PS~V~~|߹麼?IѳZpJԉ~qHDqR-2H 4͙ )Ttmfmܝ,ȊIRTPVQ3Rh5wrO/;A{jVpZ MfnD.|%yAIr]CQbV`?ʧ}, {/|76/fds.1sЌH5Bҳe1\b*c;9Aˬ1 I񈬪.N.Y|`PwsS٧Ϩ&qBP>AOҪi*/q"1S6_=k96MϿg+"ghoo!#tP_i K˯>PX'80P%`-I}m\,xlÚmu;t±XQecȾ{?|_{ءmi~{DKO{Uޏ@u,f%{SJ:Q N6}ʂؔ~nq]:z|fT䦋9(~Bq5TE1ko@Q!@B* *i<*+ʝ 魛וX]$K'0>0S=L2`* DE+ mIȊbg143q0XzV;aOWD* UTO+;BT( 5UrH eYjG0S2m>Cj&sPot)ۥ^Qn3 sMҺ9Ʒr{ۓ5-a\Xxҍ3ZRh$sk%~ N^Ib\C6f]fCrN+Wk2ks22n!`wR6nwY8*fU˝QgBfnWt/ynmərj_VMlg) ol=NN۩t͍nŸfMW xXl֪n`ŭ*R*oBrUQjI ]U: vs4@=SM$0EZv-[Қ#j\bݜ%kJ*:a-ڰChTγh+l]ܲe˭+Sj^귩-.VR6p.g2greP֒AW2i{cn4㮱C15 bt֔d,tg8ϣ?z_'gu_]59Cjc,̼rx>ǯF |b, YQi`XB&ABjeE*Bc]nP'}#86xw總] U5*0; βޡutt[6`SLB*)Lk*%}kb*/hM>t:KkNrsȸ+ž>t4~jV/aثZAiDΒIwSAH`nۋ|n^C,}we ((rtQ,#Doc.[=5rD϶34ڬj%_g*Q *Q*@%ԥg ]-v~g;M C{|"LDdkn׷~o_;{:69&HA$04@%V֩dQ~}0ۻwp־~g>A_,34FJwij>_X8~W5 dk[,ǡ4cϛ^񞫵`GmNJ C|/}jJ*6=/!<c9:E=BS')F3_'{/jEw)E?kSey *$KU|cNEnS@ӼV&fUޯSjdfm]ekN}z|׻OqJ)7Ð[c7{*VquۑWHkn6jTטE`(/]0f_Ĭy7 Fb"rn|dR)elS2H2R'KAЩƚ(J ɬRnv|MF{1Rr58t8mW; up8mcmŽϝyf*k]9o AZɊ'9|`m4 !j$pWB>I_C>:gqw48ke9aDr H3H[qj[:;pX̞_~?IA/t>zʰ`!M{hE0__V[Vq& Zv֜S&I8iMnήshn ^Jq/9#`Ui$7A{m\3{,>s銇%>eP"঩qڪWFAab]L+?>Ni+2{[f?sh!T*̜ݔi8L-tŘknS?qs(*89&U !\MyM$y-pl:!F`1̮1{^)h,d1[]{NIZ|ly LC 9;xiGRXIm.HQ?nغMi bz6дbjiJ}yO-=y!MLw̋{Bu˷mFrʆrrʊeg!VdgaF(* 5yYəܒQfp_)j105gS;+h`ʮgJ$!D"  pk0aM6,gwVUd =q=E""+<ũEJǾ +RhPz:G>blB_I*O>_e%E[>s:EX2ilsIu]m;7zLLj.=T̍lH$H =4=<->}Y86x˛ c/nk(F-4&XZTIQ6)bB'HB' \LD&'v gkGYἜ{ld!5Xbbm]clzT+SYZ-\<\r?KW>ucK+ͭൗw\f7a?LSY &x޵k8JRZl}i+5˜GVl;l l{TLj-u)̉dsEҕXUT5Ŭu vUa)orRlŃBU1PޮwM{Us3Imjfٚ6qRo'UzfS!r]W9Is377T&6%]ޭeѹ;ncX/K s Mi 4Kݬ֪eZljs59γֶ ݎ3zZh8Wnr^6kMS+LkS3vLRƩ':ji CZ$1SˋՊޖnֵbgVӒj V-- cmx**kcM>L_afjyuTeTe͒ zy}Ċz_]'C`$ʻ|Eq{yK>Sǧ`pk0އ7:i0*>DT(TS?f BVf,@֣xqn4KDzꂪ(2lqLE!bM% >j%m)ops1&bUTAz "L8}/V+6|yș-!>Q_I];.o/tf/gަƞ~5E1BI C+ RP'T 8I3өK%L {F<$.F 4QV/k-3"LIMncqTB xAyEM G?ӧCJ|Ԣ,>ka-&sC]L6{g>|gYxTJ,[Ҟ ƀV(yۘXgYI,c2b1Gǫ̰,I#܉֙"Xx̫Nosi:3ܑ\S.8P~ŅR{ŷNnƮurTXi Q49yYV`iJbpk{Z7 5nc$Ҫq|qaW%NUX)e$ ʢ ؜" zu[+XuO-ZXN,Oݒ&85Cwl= jI5r4?r5<5ĉafJW,3^/q9C^X.@wrͷ^mhQU1T&GNkzqϟ[Iԣ"ukR,b)B,6UwkkڤqpsWeҦH( cC5J+14J}Oh"*VF * ߥ7nsZv1c\d&sKG}?Ʋ \n^2 ٌk4EN2c:1V %0DU3`9/wg[|;Cz}FZU"EcFұC6`k>lsM]p6YE**27um'0П)߼o__}3<~wAS̲UQOܵ$@!GYimƾc}'~_oz'>/*}L5aEAeD \% W)í<٭yw{]|Db"A(@B [IXLѷ*g-NH}_;}ty+Ƙ\p7>WBZ P(BHSjtT9npmX0^m/y4x5S1"L/7u *B!B@DO")HPT;53?3Ľ5.>uq<$DD+TDPV PV,EL$r)C uXL.A*D +YT,%@_IkWQej4mvuM&FҨLkfvk|M9!̍V8T$357.37NR(T[ArY .5] oZxKm1FTs*neE ұ"dcz̽b:niV)IV+[m{ƲۧhSu'An9.a6tkFkZVoVZ52-^92bfwNք2-$-srÖT8yբ[cA$F]ZT6w̙+3hnQ.'\6$R]$N)ƌrnص RMua-޵r۔RFj0kH`(1"McdZC5 je楣GYnru4jr*ܠӗs{QUM-Kҩ"xeM3MZ<7;o< ISB=ULE²]Ņٕ1ol馟c2KkrDM]-c[{qO{o\R`C- VThuw?O]ߑMoMD#Qe^:aS$  B Q(B@DV,!XoWܲ I~1X8j﵊PC]? ƣM޻;-@;f?#]`&ĄB`-(HR-|_8;=5?ۿ4n?5#)f *LQVC<K?/[ u'W>>iݽ H$ )hЭj:P>C/9Ow#]vT_YZ(4-M$X{g-F]/D] ]V *a֦&9]vfE|'/]2"=P*BTE.c4Z m׭~w<^lw*h)bJPYQ*QnvrWĺ>phʈ&5bUDx&W}BO/K>?gj*ǺX=ݪ,D")=x_w˕M=.jf੒IDhm RA w-h̜J]Z7Jմ]a؝&7.*1/LP 2B0 h501pq7حVMVjfAhs +҇lXXۓ:A^uaεZꥄ-Nܝf*BjՑ"JR_p8x 6^.fBkAfV[z܍ Q+C{رhOЧLi{v*˥kRPQdӼQS kUHɢg6&ngo' d R\-]ZwF5л)9-й 2&LX- zju,x%#0'Yi3?s{ǹWEmC7.+Nc$U%=fNj`BeU:UT9:I+VpMB՛һTԮ4ۼ:c P3"qQMԫ&wCVVJiuuikG]ik c.P؝# Qr_l#CKE A$TE5'@kwKIr 7vJyJ bMi1LA],o#w}Lx3ʪJupN3.Q{BƶO8"{-eԨ yYRb|tpWWϙ>{>?1c@b b$H%DW(@ۃP(rʳ:ƚu~6⺵sQQJGإD[jXY8Z6*5}p/)3zl];A*@HLbCXxgpz+.'?MɃ~NSIcZn,V,E?!11~ヌ} }f}e )DF8#=Ͻ_4>o{A| ,X>Im=ktG~~?p3 22XYuSS8+mI$! +OmG#BCm|Cg}7@j cF,Ĭ>3j)xHW>6'Lw"+Q`">u;Sܐ*ta! y/2No1el`*$$ dcSE1-&!u6k;4zg/?>wQTTce@mJIWBʕFbMK/Yf`Go+uOY?`}kg=i*1*"dhefG#9l{y-Uaoͷ~7??&+T`o_OXJ"J vU+c/?{-{)>NS{<~yx*1chmόH(cg~7y_||nEEUKh{L*~&y2UM1y+ &6!0ED\dҤ}*%SgPK\VbCzv Z2<>(TZ *V Tt~_Hk0wͥe2HA$jk}0A"'4 ~_uޡduYUNT}/繦$ƨe#l @d|+9gݾs|O&ݰTWI.:u/<<}?"E"4/`$(`Y8x\E6oz8Ud49%?T0eH]}B9YB $,oT'a {6ڟʹ~H}~iTXUNZuCb.L ͻD[a+vZRiE UU7kz\L;bLXAZg `޳*3;Ӧ\ղ'9V7ѝ гv0kc5Kaozɭֵ3{ ob 1ogZ6'ZnF֤^+Tdi%B2tiQ oiHn)J"VnD2қ4ffecFٜ+2씒2#PYt**Xi9,]zuS]qۍJkW9 əJ i36&mor*BBrwJR{fs4Zrs/*^sV^#RnL/CBe!vӨ4uql3zf""9%EDQEJ0[\8"̨J啈cTH}]X/\X\0'i'zH*(d+\Bc~E3xoo.׆( CU iE(9Ol1 c]כƤ2I$"!XZ#>EwBIX,ۓ.j߱HIBJ:33a_O3,%Q03.;~)∈KhLWU i 'DfgLr69k*>pNIRc "$b+cN vJ,טg??74X 3eQGmⲊ҈~ڵ"Q?iKWߛ?a};S*EUgeLJk|'םΗ7}TQSV ~lpD3$oNO9MPJ ["XdyYyn2{ &@^Aݘ"~%'uBKPs4ёICY99 [rR )j'7uZ4 *#?CM#0 mkߵzuWz7|]Үz{}p1 Q&[ծvFL Օݶ)}XWi\+vVqz+L;G.Y-x`L6Ua_'\}W8J>K~Ɩr ;mwm>+ҫ'ىޝ0!JښD3hI#ct1[o>Vjkܯ TOD%;dpZmgJ;;mSk"B xm%RՅ4-~oMn5u^{ޢ甾nic_lh"xۼJ>+&9U?C?1'О1Ds1nX+e)L:[_%!f}+tpdCI%bt\0Y*%`{onj\dڢ/5 ؕu~ݟ3Rn:~7z߃G5RBͣw%n4,}e2Xj-/D"\go+udkvuFj9W'0yLyJc O2ZRɰ#eᆪE;ǑkcxNf^q<~6 CU7Iyw $VԈ[YoU8={! U kf?D{7=D$IDMJTu0>e["ͤP͂eC0mYo>U 6c5 ^hmM]D뜼O'aTp慆 [!;ETjCxԎDw{2;g4cOS z:i<|QY<ԋ Yǣ~6G(7TN7:2"7ɩE"mjq<[rZ҃C z ώҲ Ouc V5b)T7/ ^TRKMA*"U wyb7fK:q`s `'O%n$Oע TpEXvmAoۀy&]% oUAB !&#[nH[(f*3^n=3_ůNv@ZTڙQE\I)K{rUX]v훞 -M9b?hS.m/lаD]ZJ_l9P)y2JGHKF]84p$n1`*+)."᛹sҔ^ B>BbVAIKs:##I=/4}Sè]io""~ccQFrQ 92#fՎn'Gm'Ҟwl;'<+ެX'~9tp-%WfWPhʫ6ZQUGI3Ҳ3.#:'wb p{}e֘No,g*Y·2K_]r9(>}g'Fg:#㘑KaB|.Gv{iA]t߿P4W1>oǢroUG*{vGqMQ}wlZz4#GvlY įǫl͸|u_ 5=Zd)F̗r"öT" w~ĄF")kVk/*[L$(9p vM$50߷ yMG$ ;@Ql΄]8"Oo9!T'xqks, W pqΩWcX}K y}.{ϏtarVKcrT{Tw7xo GaI3^q|wtI/_7Oߞd".$71+ent-x־r'` ` &\zV,оy?hoY9bq!h uUh 'ZZشsNjiFT5 Z Yi_^nz|MۓW V}]We5-W5i,/jj V^Z֜|tK3Um?Y/t/hGJ͖ؽ;D,S:>&6lvu et84VZTT; 'cz4lqMN'_ 갰rں ~l{I4mPs W{:ޮC˼\E3m `Sxsl K zMۻr|cxzUsT8pyݮnf4ܐ7u[WԮ6MRͷ Rioߑ> K7=N.xV~%s WO=;G̓݀x9z:SROoԯ*) KR`g~_@nlG@C#AB|7UWDp`@NŸ86]]?3iHTiE}SW>Jvwء̭zlTSxB >]=\<oSת~쿙>Guk|O:2T5oU8;v}lo ̺JiʦΗeI}``*x ?:3YExvG)ЎAmYӭy ,>EG5Uө 'ȿ?D{rAJ gӲ e(~TݞR;:^Geڃ/4LQuKO1z.A9P'͊s;ڬAu`GoptC>tx'έ3++gEmtB72oi֊wFn3x.=W?٧uiw4 _z#S }Gb __ȧǦmo᩻PxIݮCz9TvT7]x: & 3oWUWS Uτ@ &'Okb$*^N׺00wΰY]C'?T}pջ̃{oy=23o ')+3 ccDN{]spYCa Xࠎ)Hy[q WGey%Ż)#`E>3f@(:EEnJg1t@H 丏Aj2\ݴvAC+]qĤASW~AMC;hC5Ɣ&Ǘ^+ F|8_OM<Pw,2q+ȘT?rۻ`S1) "92\ Ӈgc;g(@),fJ d {I+' @44e QC3լ)Bޙ`*9 (jM Dlzm'JUyB2.ߨG|gx\u{*my%R_IXz4>NDm Pʕ7o&cZ"e-2a.^ ?4"꘢Cl8*)TT-ȍV«5.( CJ W @yOk/i(m`+C \+PCPB*+PH7р\ e/ w]vtL[I6=2YfU wEfZ .uMʀvc ˟SN, ###YwP? |C{lJϟS2=WEC*PV8@?;"\@xjt/iPX]tD@zXFSx&Fa0v`E.'A&PN3̼kl:gs;LŕEc1ٜ9+ =?d7Ś*6OwREM|`_,;7PsB Ry ?ARL} BX / \ôICY?gnZ;YWi4rlis%Or9>X c0wGG#CgQZ7Q%^B;9pHvottu6 ~H~7Hܓ`SZQQ2"$ڡt{Bl]:w_.:s>òn;ԩ,>ñCuf Ekp#V%Z37Ԕ,~Kom= 26M$q:_y۹?ۆC'?ÀřIif֋wNK \Pe\ 8KF.0tt+54<ة>Tܿ:wfHỐ{d ú:7Eഢ8Q=TUw KQ7c&2!-,IReݩAv<Ne/DSHS[Ÿ:rSGƭ||&.\aJ<6~~6R6h*#$ɩm]~wGH{XohW.cf֬?KW-$}X32-h-c(L{ oM) j^@:_ix%`H?%Z#ǻ:G4xǍ΍`x_}Ϳ?)rpZm X~pe9>xͩ01fnmz?s!%Ptáq|ycn C?jcrvӝNx"=܋j&}a~1++ l޸/oIw]˅7{/9ԙ{\wRc}u@oGY#8~^G=RN*`cUDǓJq+ړ+*n }>N }-YSV 12u->och PP"s}cVc7v^ER}e wYߑiֱzr섰{ gVAuLXk*ÁYOR!fŮ/aaϵuP\SJ4?VԽ1E}U ;* \xY+mjz5=nג6$PA|zv)h6(PNBP:p(\^/N ՙ'HF3q`~*SS_ky=|:bM6 #wTGrf[[;=#Yª/5*ߛqAMw 0j^  +j?㽱"qԸAEzy&+-ҢRc##2"JF}=֎SYǓYL_(m(>8]x/Oocc֯/u 5ڕuʭ'e%mfe1׳zM=Z-?難+Gh6SgCܺW싡eSl{|WU5M#Ucd}yȯhƌ;;bloӠysTb}q{Ѿ>|UCr $hd}C+(iua*=4(7hyi}D}v*>U`]" ]!? }{[ַs|UO!S7buLlz̑<& LUK,=:B<~Aa풁Zdwnwic5Ey$ -3-eV>cݕTu&W1(`65O:7+5XJ+Dz? *b1-C_Iد!S6 ƘZ֠ͯuj4muHdwjLW0D8@r8lRHS ~!T޹`rBb^$EaVu4:# 3`{dr%X'gP~[N#^y%JٙsTaPM)6[ߑ T~ v\lNmr923,&fJTIRtRvz>c*YD>? X5P'9F+ uzOt-1wm?0b\b9Va)Gb`F#Iϧ}vV9E5fUAxAQ 8vy Z1]%̏Đp &m?xD7n%‚ w~{;O 1]&F{߭ ~TRǡ@sDpzu1^O,/;+eI%J'Lڟg@s#@v4??WzRRԟgghzY}@2J/Tez7[mk]$)Â5~7mɘSݣrxݧNH&=MdH"($6Ւz$vc&)PiO\ӓY6hZj/jM ]R!"̆(m43+x,hedr*L{%$vĉdNF{č\>4\hJF-nJ^_g[wXigFZ12\].L7 (_# 2z9Yl=;\42!eĈ}%EVe6N#7Q/}\Gή1w:?Ta}s r˯u)$9Y _ 'ƺ-械倓#Uj+:KejfgijjS"=? }ǸW-xޣkc~UBG>bI"a,oa fu,w*D6766opilӛ?z+8xNTs_>C+/^0[ϛ&="vƇ&!{{0l~'t**j__)~8yeM)/? 0~wg_R|o $V'?_D&_Xo:п{Կ8D<ɛqOKn; `::~}-ᅳgol}n*g/Mo &Ξ.F_ccb4wΗm֚bW=z-ѻ1<<:(Om wf u4ΟvrrüiĘM5Oհu[e:])6a g$Ss֗]ȶA2P.7Ymùpwrl̘s%12{ʋxZ߯^m,ܴAס`JCt9>8λMrΛ8S!OYg?d8Lw7Ҋ~{a{˻J顓|pGzM,z|{w?yh9ߦks)Zm'VGn{g^x-|͟yιMgrg//\}!rqqeNhn|?ŵ'.ݗ3vĚ֝=]Ռh(}nd//7WI_Px8u'8nN vpiNNхv\rHywK_.$dw73K};> '1X(ont0O;{'~M+ _aߌY?d׎iIޞf޸}q:`0|?.7zZx> Ϥ%E ﶶRgť-;3OwuH/=~[ ;[/Jcs*{5-޻<\zXfns}OOOεՓEul$fegsQPՙ;x߉7l6F<+7sGSٜnQFf7 z=l9M/łn &X$<;jGFC_ DANNPnJO ~J9Pz'&AvI]y2ešHUDj6v7VwoS2~ݯӁ#7PN,v.s^fW/ ɇ?ݮJ8 څZ O"fc *^6NbyrRY$lr6a'6냼G7?'t3|W^G.-q gsBS]ݖ\Z9}՞$.-WSS:_|˨Y9s96Gwf1)Z> @|m[)NW<߸ k5ZfzKYx8ն\jtn𖠮da^Ę=-%8(O\g13Sn/ E庸p3x?|=<l1ޱ~ۼuYvL{XǛ&ǽk:}_^J:&Ƙ4+]]( |݅Ɣ09mXW>Űҗ}3.N.W)7W|gќ2Զ~+\uCEN%+ˤPu~Mտoz~4^Fy[ /OGK 3wwOnf&xz/~8]qX^߷e07kWWn~_l 7pWN0P0*+M/`/SBu;'ճT}>\M.unA Ӡ=-{iii֠@@Yqao`zyoSl=2b?˫~Z~_hA.]߮(u\9T1rGȮg1 ǺlDΟ#IcSutt ƻN?HﵩIJjMo/>tW r{ 8S\UUT}^Oh>x^O'Aڿ\{^]@/~bqugD{: ;3bfL~7#Scgsu<!kczT}Ni0znkwwebFdKxd=ƨmKxfJ.HǣJ2t&8 `QJm89%?r_PgVi;#34fMt VNJѥeJėb#.\ϳ젋h'm[8q8g_GL3}=pLZ_?y`%bJ~I~muKe"&Cm^b5* z-rMvFT ! Rm p¡6hd [cKә?\O)wzG ]Cx)Vz by*DOWb.K r%5P;xcx\VMSP-~Q~BqnNcXCd+_ᅍppf))AۯI~lϵX;8 l1_ Y[WA)\90߂a0O h&!O͙y4$ߴ&ZI{,ir̾>G{"Zo߮a]DW|w㾽+W/8Wj7}7Y|-rG7p^d7jqsz7]w?a}~Ԑλzϲ"k! ԩP81 P46Ys32Dt?XW Y߭ 蹱aҀ ߷'٨ Z"|| k@+F_\OKm;\ ^9>ea|"|{~CD _g;+ q>O䯤~eiex~7>â/JkCgOk{/_VTyb/t>_>oߤWWuY*=v21OXhp<^w֜Ѧ=V_V UxYOV}?OC@ϽWP)s-4 z*)V:0ylZaájq(h11gp5ggy`(q7?6w:43yeIvoܛw~7}o^EQ: )Q= 'h^]3NӯݾgqtwP^v`Twe0)7ݚrkk cVUik]@M}(|MnE%08W o{?lYs:39~e=sr/>` qo |h˅ 1768\:z\PG\'Hm)s)Dۼ̿59ZS^`A\ֻim'Z;t~+=>8٠n^6t{(_]zN3_{t]>`l_ 1‘.{J{IܛR~~1]Pyã]$]|.633T2.Yڞ;ʥ0Bn6IwOǃŒӪ{֍嶼hڻkݙTAuQy@L&4nƗ1NqIߺyms3nޠp.yޠ@ft==sr69Y?m!~<^7ǡ]{)F u 3xН.7T,/>L a`?tmug^f߷J_;ۼ3;z^vF|)>9?(Tg.D).@.8׿tcޫSPxu7-3qXx("HLWo37_V3<ZֈKtzrz2\A &JפVP^h}9Oo{^4HKlM=%+q#PD{#SYHokbO"} IWMVUL>)bDud(ď* )Ә3!;@i*#ybFJyGhOL爀2yHGgRf#7&ϼy1rh?~-Cy=y$G߃sfp7K[t/g-o%~ qk۵i]ve^6SkνWX;yt(iN9tt9q 1Y{I \' yfcOI"b6o_2==EL<0Vڿ?g#~i/GڷYA.n/rT=z xi[~\=^F': K/ L~4z;N(iOv|owK_ٌwx_c=yvӱ͞lp]=tl5(\1<BvzRp r׳_B=YJѢmS< IXZGk'3ƗuXO۶ )~p/^Wg뮙20s^xO}ǬXȔ-_=_k:]κgރ/V30JOp\:诗u Y'kPjxwuҞ;{ZMA#MZU) g2^0_eg]|o}oʖW\]i]s@ȴy4ŅK|[q`S]4 Ϸhl,=-W;jg*jSKN`[n6vs1i^A;{^Kk> k_fk+ҧ}ws?HՕ/ϣStn>>D | x{,o3ff< v8@g+1&>>o;^_ /w4ўgy?@YKz^?v Ty0xAw٘rs燙9{)5} g?G=-+sγ>$)3+ ZGL'Fz,?zrޗ a~֘=ޞ'>Z={l}{ƞkUURϗ3 ?@^))?OkERsh)hr?`h[<"(CCñ"˙lfaӸˆ -?%?7WʑE?P7fP_Gz3[0(ˣAΛsyyMd 1Yf 3A}?'mfgs< 9!` Ps9jo'3>9߁~۟<9G!s7Mrs7|,lVu5}v\5spstW{~|¼tsց͡WVuӊx+cs96?P Tj^~Cz烳QT3T'?t;5]ߓUy'Wwtw=|{`Nw[6$x]qgg5Sb=foi3?Lu/計тʚ+NV3|QB㇉$2;_x )rz~633,/#P ß8NDq^|(ctbX/43yAF;xP0>*aSFBˆ<4N?-.@߿$i1j)7MR2 pCx&# 7t}? suL~*KhaP`b8<(`w,[ A♬N3I\OK:0b1 ZozWs,͌O)٘()T bVR+ʈ(#?\2ugit~v21Xlhxa0ԄtGZe0o0J#yK@AT9"\wj^`vHia)ۈ3nY<b@r,|RG@7U+#TP7o;y?_nk* 抱/ų !rP36ؾcN)8ts[S>,ܟST^86 3dN\ɜ2SJc\{\D4)oj8 =o}_+ljehǧc{r=8tZ<߇:Tu3NԡWS=ww55q7y7uFߗbx8`RtڙZLof\֡m0pՕMeׯʻj5ە6r/dHkKr̪k[\MNO[*`nᕷo7776߷=7s.%prT9^~2?;r.f yW.<v_xx=:9ʎ X\~3=W㺨h:mT?1ߛF;{xLpcr28s :W6Yס4+7 M.4j>f9l=YYs?>^3G{IUN/2ΣڻifQQ\?V`\PT5}ASBvv|{RM/? |3[pyy9t~[&}_ UI-C+qikƑ4IdM>οdjc[cJkҷ{r=dGqˍ/tr C2;Al;iZ'.OCQ >\P=Rduìw\dXAAFMv\#{Kx?fQgwAzUh@ h{dͲ/2 RRyWE}l@H95 oM^M/`^WMrf DK3Fx 8`HC"m:QIy!_\س"Q#Tӹ848{&5>/_Zmf{4[~鿋-/n }wT2҅Z24ĵ2>WبgO׋:%PqES I! w O ۿ'\9K>v讹EB곉6$1 Y<1hau\Ce+#\L丽eiⰳ˽yFjO0cOj /fw2r*r24uW폍׹?FAG\D|Ém;: 7^} <_z( qǯG?w-)5&&GBgY];~ͫ6 y[ky;jO>ۦ^6T,(x4o#?{ 6VU/⦡m/oԢz IFz]eo;4Vy}}W'\V+'n~Lf~cvorrƚ0žxhGƋG^{a6AÔ72{?cvs& S|.3=Nt_8_wq ,59#HiWO  MjIjg%EN\H63|.~l+~HN I?^{0h}~EÁ82y9Ja@1I', K#ATL^Ng4v IbaiRIIKu;ZOҽ&^YJD(߁@09&-F0(3G&ˬdHZ}'zǏNGm*QeB7~e%îk.bqN;SJ˯o,AHBn`DGZˇ'K_~))$@D}BZ BWO~]ڙ}9^ymvXx(AْThGG'>zC$3dޅ>as$tv4'Z9>Nolܢ2LڥE?ʹU#`t< ݤGyǟ3?z^reѭ+S'PGk'|h,`4I:2)48so~w^LFIݻ.X \*ߙ@f8F&g;~9'UC[]4إ:Jw|J'0z mruGab[=b[<.,5R tAt~ PiӣCgߪٛeY &{S`ca ׋=w_2h\TtTp[EUe=0\} }`S0׹@kTxhw_N)l!aċiͶI-uiտrz} G)ugt_;2uK*Q渊Yonkp~^߶{Q}bI1:h}ȢG+#l3$Oȯ֪f;^KwGo2(uU!׻$ ױA*U@׊g&\!e҈?|WAPtaj5wFQJ" QW&xx5ewM4?faC|ј*dsc٩.Iah}u%Q%n+ F=qtnv.hjoOTܒck 4*U"Tz &He |tBQNmtì~JI7u}K2$d;x*(Jd8wXUC$T,XK) (w?_iߋ>1$bKH>[yWh 8ڹpx yAxk͚;SHuT}Lr0y>MPOɩv.vW;`.^ws/=B R?5DVGy{ ;N])|j:S4sQEx5*[~s 3\)cgFp>W_B n8-)|D X=qA0;_Vpv Gԧ$ڲAӕPP`XA?SȂPN_j[.Nf@,$^362G||xM>Qߖ).D)c&Ve}iz\'?ZN+½3{υ:!J¹A%Ee5A8_.*𤇏ļ`1ڣ2l#wP(ceF0 HԁQ&k.#Hv\KGGlz9ܠHvI|U6 G=f_2γf'vOMfʶi|Aͯ|ޥ0Fgi# /\^<ܖM܋ - ӿQaRyz,F Og4#zO%udٰ]#%jhչa+am8\6ո^m+JRBN|/2ȦGt"rh[oN$z!9o qۮt7#;8yt=;[:Z2w*OC$q~i{|/1|<7yfT[i|wZ6سr{o4^!zm LWGX Uv Ewx\4n$|mYF4@<0NG\71/'[~bH4{_I20]0P6Ȭ d"'[H #fZ@Lפ5t\7)fC/Ig9ejzA pKkTݠE.osaՍS(7(.Èu6+DZ ;*&YﴚfG̤{u_=A/Ӻ7#Gxuk6B2KYx2P"oM = Cz NqztZ0GL[JqֆDHRAp^.Wo`ܺ^zo9%+tߖr^ʀiu($PRSЇo]w=)sbO'xI?^G@=,(_[8P2B#_'.~ Gylbfq TޛQf)촥ip xR8%.7wwNa˿{Cf?nu V.Fʫe.$Zwwj4K CU:ڸ7eMryBa` 9!Iܓ*. !ـpa%d` 9q`AC^9C>]c0) Mt8;eԬRCɿt=Ny&&*ZN[-2.4rij=~^zԘ~h#.C#ͻz\_3<v s{{ψ{\q:^ ۉ\n?qtfӽ_m4H +¸q--<\S~z%1 +(9VE\a/ 28 ~hzkF=<,_˳i2 75 G^AӎFkB#0̅}i;jX%K(Og<"EccB7 ˈT]Y sw8n=6 5#ݪ.AXiaA&w,&RlE,_(AK2DbJ}T h2TӜ?|Pp< NfAׂ6N M) Ӹh"D0 Y^{}r _ {ި0.?J4eFP2TDؤ[}Q Kw-ؐfQvyufi{+??[LϽ}{}uMHO.sL:1VV_FsaQpv(ݪd-sϴT⇱Æg&snH.a<dzYS.9G \!>6[uH|FsdVLpcX3`˾}fKnAWd\x8Uy PO Ad>N4'a FAӽÕXcBrrsFTq%A%TC<:>+<`˝iq\ qkٸ!yϰ1(a$cDC!:u t~~}f5%j0ǃ\nK|q{I3=owg-C5.D{-(c;dwd,^i :T-jNJF!5J _Z3H.^ So;k(?c; < 0{&-Xodk*H}݁vfzݎ"R!Dg}3~D;54ѴOAW؊=NZZ'=o[> t1 KwWiMtlu DѪQBbr]UvL<)Q`vyy x"LS.UK~eA).ijki~5#]gڍ%CxGJi]X$6ܔ,J _O++ցŒڃ|]}<e0@?JmSPpC 7"P,xW|_~+?Ƿi gR ϻ/Xh&٥H}sX=´4_2'迹E|̷K؋5Sŕ̻b*=QǾEs-;,?TaI* p905Ke張/Qв~vYqVIu.\)Q #V3K%H ~]7ɯHɮZ~MOKPhtGSWQ*$`BNR qP 6$$[Tk䰟O%Շ^o2;Qk`QSWa vOM_+?[!?~c wN|{(2yByy<'n /sߋzhO4* A@}$&qE :]sj.}Kd d3MbQCdtRA0BX`| 3ʂOȀ{c+EJBPt&~65?LOIiˁZwKC4OJsRy@zQ3`eZies3aio 4Gzc-C~q sY" #i 74=)?`d[j'lC䮸e(O D>xITTڷގCO_Ȭ}|֚%6Qݵ]Y/D>/oϪ >O`S!QQYD˅ 2W#/sGncO-|OpZ/,loZtM7 I SwϜ ;fH@B((&RܗJ-@rdfɍs//Kf{ Ԡwr1!x{|T*b"8=͔HC@3|~U`Y|\JZMISSQXґGKt";Tޘ+w}.x7 М,O&jCSs9}_sjM{gy3׌̐N̾.ww8߰D)>ٺqtis1}#&2H7`^Ruȕq ϻ\{̟M9( qΐh  =%Pj:ٜE*6?/\@f5Ldƣ 8|9"iշiDQ?'Pn߬?29.5[q'آvo}zSuhci%ñ;Gw;}ɭOf<BBk{nux|/n[__mɴƄ>?(DAYyw*bOtSG!dg c`-5.P.his}bB&*O53g1(e\3Ͳ,ov'w0r?g@wgX9 0RiRVmf3&J()Sj{EmlPn (D+Uzhwj?$ tʝ>x{A'qg Q%I}x,>RϡˎE5 y oXܸKШv|DB1ϛv֘,$ y XƽӬ`ؘߠHvnz·)Y.Su@ahTiCr^7ߙO#y5zs َs*Υs$)H wH Aq~ߏ!^qV')f$o@ -ۅH7)Q$/GKrj@L R; [cc7^OMj7s-5i'' oh}w>wW]]gi_Ac=K{D'uG<$CD4L= 73P؏CWLr SyȞ?ޞeRrI4 |ê{RaA4.g =K[/}+us>d43U{ki9)#T&\uv݌ƽ0uX}yQ@O^c*ʫ0`+ Ui{b>4-`aqMfօHIT!\vB~Y>~\p1E}IOrJ1i A+98Bv~ @vQx ^m߯k>x3PKq:#ϟ]V>k0GUv}ԋKÒsC/crl \^%yT{^Sxrk`AK#_{)O+EΦЂElcWV;Q@'BދuVO/2x-1kͶN^.4U妽ǻ#=5͞MB9tۢn{*V e 'uk.ږߝXf٦uw9*| j9>*j$t EeNRȳ!,() bX|3aa A+Ü*t-/ +əNLhE픱+Y( PwrZ\zP96(NXHyl1]&u[K|d"c}eJ }-O<)zL<_宜m{{ebp.霯ZW]|@'NܙW0sTզyJP!rA?yȵdH83'&7 +NcӢ])gZ1׌" sW?R2Ju2moag& TNmv&Q-dW(Qҽ55ӄBMpCeG5P.s5/{WFy$W׌@y^^%+EFG`ᣨȐGZW2pv4Vy[ci7`ro.ڛ:WqGG'+\a"lu4/XCf* 2xo]Zh^X [$Xȗe8nU_QiԊ3ír]o\5) /XׇŢTƀM_B)S<**jJJoʥJ~n64O"jYAyT3byӵ.@^~P"t3@k3r,'m*'vGșS!~6vɴ-U;WrsCn< J@g2DZ\%F,B3:U5zV#:aw4 :c#.ՙRJOH1%1R`t*$/{z1 `~s^Fj(⺍Oʝ  &#tΤ\DL 'BnEwi8B<6:ĖTV/DċMc rX@v uvfx1o= +!o7kW!zk7csk k8{~HYO5t<}nD 0e|]B8}s;(EK4p416<{go5BCt/p-N͍.Du@(cJqѶ"qPrA Ih(%SM.wZ'ԵT]Kj: z&=zQ{@ڲrNg 1}aD/.:rmG @@덚L'vEZ4H:Zfh` @t}RO`/·bME"XEaAr$X1xPK⹃|>F]zs7SO6z)|DmB>ɡ VH$qNJ$O eW+&y0%Mc{9coo^=ސP\;oMvn,Ϭȧ.6KTgs۶=jfۜt d+x, m# X"΁%A@l n#.xm5uR?̒q'k`w>E"鋒#W[8‘ޒ'/n&ɂl`Gn)x&̌cHPpsIxob4J}  0rS1l0 jT7%A BO繏ޛv<:]0襱bHxr ^0mh{hRڇ'3]Rh"[q.W],vc1:oճtNj]v*ackoޯ^͕+"?ۿý SA)L*M9TZ?c_n+LhDx%dBdst^ɓJs[b̪+#+X9MC ^dS-"oޖWWIro8ΕJJ A͢{;=d~C Q@5 ԝb_ɩ1XP}Z*-Bl|뎌}'{ϣI#)K)A)< %7z^GiPn|ˌz d aO8GUV2Zٮ}X@/-HozG K`yx ,D#v/ |0z"S=ewݷGs0H?H`),) C8} 0Jl) ?D9⒴t#~ut0F+h>*$3RJE9qEaXȺt=B c<(yiX?!O>N1: P8Eׂh_*Rχ#gn9Pw?dn7R"]z2Vtm.l)uewwޅ` s('s,b4XwGy՝4 vB_ot!DB?7\>Cx{Nzv~`q07p*'s opv6=;5[HCoX*iKN2 ل~=a@&ԋDv%jT~.BꔜHyF+%cYY56G7:l.VHl:\.phkvUK;L㜴2;Fz-;-gWJTL  w4v{ǧd-qkFy[kJ1jQO<7bPwR=iw7[U.ocq~{#^r#yz< 3>?28łY w  xm-/axCDYGZTI^v<I dSE+nپy[_3,]\ǚrsdzxXDXx@˓$}J r`w`o,14H5  ~Uu  zM. FUzCbB!Dv?&B.Mq7{_A {ڙkಠ6 ?e!ߌGF=9G@ʂx/ʐQߘ"ؚ@SBJAb]qAu]듕(&KV'抁x)W%AD^g&ٖɺS++ 07Ͻ5tiHOGao׻gSrUA}fLJn^u@t@]Ƿ imD`w٣I<4|~]W~lSO "^?Ic8j'(8jy=(:I krH'Qs5@@q 6 S]t>Di[w}ԧnt>{}Mnx]qqNpQ:!v,E pQHyf܆GCk\XBضaYxʒI/缬v?f9]sO9*0ܒGg ¨n:KsnWS5}3n}}1˯)@<6u$FP"GHvU<).qWna hw_e3Q?cl)=o0dBF@NDȐ7RvGB:Mfe{??p*^^m C'U=-C h% O;@ҷbuzt~E{Һ)@e)i[!!O )_GN"܈]mJۯ\c!97)-[GP/j?$_J&v51NP=U?T7޷~cb\=6mW}pW[Ix-bӁFذ>J,]N2q[clo-m [87V*uԡL%wt*s9&gX ;,!InyѩU7|T"] 8›tT/pm2N<0K@)@Mb}}YXy5|>k`b ?7@$ Jxm@p55]֟nk|>GX_l׋ů^zKIksSV_(FgGKHW`"o[ HI.7vaWσSVYAUݽOm?`^ O]]W-f4#8+i]_->NC;#MkΛuZ]B s7w|QC1=3s'vy7 ?ބ"yӿO"x }=JљZ0 fbS|^߬7v.a K]c5rz>uvWpZVP7T ^/e1sfb=S2޻]G\ߘH-@Zܲbm)B\/\ U+dg -uچY gMnǁ c ڬ\*g ֞4EܻĭWbU+|`/曕uO.4³6@3EB9P-^[LYc#ӘuDkMnG*ݕsdj?4P()DcTYW9b]v3VϘ%Ntb}Pzɖ %ǟ&Vo6sW :s}R˩Zfh&hZU)6c >']]fF}w/]wD7OFOS_d# ٗO;s͝lS3eC;b0@[APZ!Z/_1`C0S &েG{uw_5= }翐M}7$;9>TOj`ZZb*##Pԛ7j^*##ؠ\¢RG\lP{Tb A^gЉ~D k9UyᤱͬhPmvK˕d42-GF@WRRTMzFA2-Hcf@hӑvGZ fv}Aq|2VT9,ŕ+.bc,QPܘw`בڝ_R4*T5 3bU[CF3Tv=_l>d({'#!C )Ü O\u_B߭=jrE@FUB*C s>u$>^>z~Y~CS}|=Y|Y}L@>5aVrG}nACև&Wveno< Y;:-I_hB]پbOR~v-og9 ^I^~7w,Mv&}DP ((ye2|R?7!i`38Di(Þ925=L%9쪹,om}ܶUTup?!;BTџT`q&o*U<Ϫd!v`Ta{4@`SrT_AZbUVp/Esz6Nuaȭڶ0xj^kcFnWgYk辏VBFy? Nmx:fFGGAHlVWf/zwZ,drdDGs5!k=?}d AeSTn}fI?T/ƀPo8T7/E9!A`MPJf3rB}amn9do//hfE0U?eo|j[F.ZfP949<&.-P@ I7I4'xl[IzK>'#RiF(٤Gj;#AnNkW`ぼZL<|m@/(m:& [˙BWd׷0}^:\pas3OI8(0,? 0ic t0 75>h8q %z\:4wqbεDȞ'v)c/'O»ܳm1Oؓ<ڠHk^+!۞+q&:qq@|N^-K949flǡq33QVTkLqĘ ::ڒ\=iGwhGH@U%ç:GF fx-8RzI޹#6ǝ]k)Gb#a\çpKsۅhRq?繐֔g-K$CݾꞨM8P{d:̻~ULẓ}Bs7_׳KӬi x*R4yV]{2 Ok G[?qM'Հ3|8:~ikumyuupo7xͬ };V> *EMh+_BuBXwo݅a%InL"ai Phfm~w8BPB%q,vT?O:ɥpUߟ0x8,[7;ٙ:nESQA'*"o7 To"AQ˱IPzR2niK9EP; "R4j5dY`}0I+r&)|mA}*FQkk럅I2ڟN}4?uM/JcW` GxPIۀqLRZ#4) Y+AûXO"L ?⾬{{s҇tsUx<[b<¶p6dmh'xoU:W7mIt7yjƚl 6H) x N{"}#|b@BT* BXp\RLc)BvS5N@]$teD.N{dm/grf1&stEMhhzyҿg6 [Pǥpc˙~FdvvR x'{枓۝@AQ{ EdX޸AT2dVM7訧ٮ[*~jUuD7/:?H`iQvU7%~  M&#uo%zZaR;CRx-NUO͓iaBD|OnqpP7 "7h&=V3jU6\Vu{f9-&>>CRC*OD]g!uMPpSH@Z2┪R;|.Pi} t4䄣5hSF:/k #Z>F܎ H{UVF; T׷;|~AW7C}M3rhȵߗBag&Qr2au@6FIK["ٍ+4@%Yqi+"\x~N(TL~} U_9 HWӳ6$r ~Cmi%fK?- e}1W eXD{7lȇOjÐ1Di&8`aCkBϣgi(O|n0BFo#_ ~nl4(<.~ VO+-jG(rPUO@Ϡ5AO ui?'x];B'R'EXO-R"2On\TW>G =it,XYH{+ި¾62@ -A 98 fVm>{d֟x{nP3؉M!Q˰l@aB{[Jט+ެ_O .8e!2viqDXNYqT*\ ^WD lଦgHo(jYg8@p~U_~(&W\2$4w-N,c-NS<8xC`O'W)[ G ^e'!zTCMJZ:7CQzCz{V#fftӵPEA<NF90єeW2f-"$܅R @ 2~k j3jqP;Y(o~#x^'Nto=f$xSޓş33S0dV!*]U+QC˖=Wgz`j&-U6TD A n !3̘q3voX(={Y5 o\E}ϊkn|>mRq:9_uqk.n[, O}&&%/w̓;JK}o#^Ew3g;גv~SKW6%j;ߊ\"W*Eudrܭ5EO3pp^Űt 4T y\5ɠg[#Cϝ&۠k Ru/Ho5 )zaL'"o%׉a]L X.ҟ+ï(SɪȪf'GHῪSRux=tz|w? Ȱm+qB9>yx]t1}C>|w( !|8J -~[˼ٛ2VW>6O33[7_hL:wW7 !Ad'm$9[]J[E)3b+q~qr7uRd"Cxhv>~fr yjđUn~} zɾC~GGEQ}oB0qG>9"aE:+^"n@Rcَ P?)5[O ,63qy6DjJXE䑦7H޲TF?0odp`}c^((Wt4yɒOnX>+C1J`aJr#vH񞘡{ Fb`|+Ca> E md4mn9}$_a0P0 .Z?l*U.0o%yk_#DZ5{]T>mmMm]_H a=wY> [ݲ%z0dNx\b1q76emo"ƹ'z=ʧ0Ojjqܿ3lAP.,y[uwvcZ+wO7ݼ=̺TUsڌM)]x /&~/9 {6v皝~ا㞷~bM& 'ffAW9.M(Pg/WH<4'ߠ]i l yWe@̊oi<`zNtIT5U 0`ڊ ;ĠF{ yѲw9!`(@e~y$<{Mx o~>"?؅xhlV3_cD *V=oLOK{z|EqyA5r NcKPSh߹8u,v֨}LbZѭ!O璌7o@==WKGj^ot폐-YM#)C3ht|\F%9T(L@ʠR>ki8:<>luT\5_Xc:_׉DsեvpZwgw+A\'!ߟGn׍LVYOHܜFh\InM~*u<10N-Q+=INdK|oc8_o) GWQ-Q7n}Do;o%C|6&N*d69$zPawf91uCĄѶc9Pݑ&GLAU un$xo,vg:{Qocnnni\ߺa3}R3~Dw4]$ZۅH@#`&<%Kޱ `*yU8@==z,V:cEP¥^%oGLCW> T"kpu1Ihm, :bç9|r:9@jK")k. w`ЮDHwQݯ嵌?χtMn'a2[}rV%u[EWag6]?JXY&~0_.%UBr^`Ǝ\uA֐"fMWܲ7Y[_z̒}v3vIOu.xLRQ> F~#Q3cKB v*rH|Ti5; $ҳ_4 I{Dp֑ Q=NvںXH5-oץncJ܏wʬ0 G< ="r|\Ͻн9@~swƳΤn޽SM2[fn>\VD[[^3ǿqYU߽p! K;Swo8%]] ꨽yͥI 4Fv8AU}F;otv&*&r^7 fI=}+? 2dg3o&Kl!rT˿ OUdf Gopjl|-y=_6Mǜf2 i|W]d.B aJrfG8 L{y.+b,eZ { ˎg (d^Ց||Ó߀P"t+T.HM;G.= `((A֗6 8]ط|k6' BHMA`sK_5euhэZAfۂfW;[ԃ 9fBz$S6n$PmZ-F=TKD{(}VJNoa~|?s=J'D[7?Ϟp31uZ)ٻ e6!(%W:s߮WKXVnEiK*ɹ=fjq~`>c'_mћ[Zx^9I\O'Au~1wجJs;x~6xh:,>g3@;֢l}ەՋ1SbPoxRi^v_.pS/ì0 1H=|}GEg7 ArS;25EWxk@.irx*tL͸ . W^LH}7]*Hш@'G& uRs+mu4}\';ɝ;GvȤ^U?Z,] dS^uc#"ײ l to#BL$;L)ʎW20&;2] ր9qpkAǖ ݨiU !dH ӾܔTCN uؘ_qcMJDFڐ' TƔ;%'1 JrU@.<_Yӌ9s n(8[cE˿Xh>qٛ__x魖r@Ex[FwA{8|x{F`x0P prE?VeʠU)j[y @U@;+(u+v\8HVXJ)fmFa&R!dM$1uR"` PRqz*h$ͤNb uhT P<oe4X@ dU; 0!BHd! EP`Q%1NtUW eD#'ό8~>O"s$CN3_z'6!J_]np2L}6" 2Ru=&dgAzlcdSޜp2/6EF bFhHhR$OaS'C, ~1 u$"K bXX‡+4ŀCTUbA50HB1P.0@(B H14R!,ȱwZlY?tg=WUGk4˺ R-xw+ tPU m7Ќ2RPh/hEz?J}~jO?;1^ t!\3%AaYC rPH2jq,]~H *HVkZ1%CEgaJy_GIoy(:'3׬aO%a=L(}=t|~%}.z#=Y~v>c@=3l>)Q܀5$c'j!%li*~cSI>*fKŢį8::]!)[!Sнb޲~.$"{_MCIWhU,gAӽ_u'R]e@A|& %l8} vضY6RrɈN?[{cklyQr*ޙl?O&"b t/Vo\Qߏ0%/SWɬ[8W;t/l}< W؍!DR|}?M33!!Ed݀a1QfXV 0Ixs'gTtS]]Rb*Y9]`]k!26ԊUPT`l"bA4M*FCF:$ nCW5(֠,AQd"M3IQBUMS-DQ "Q$7-dJc6"$@7"lDRJC@IF"(!zF(DUލ35(Y$Lo),z|<  89gߦ Hxʆli)K P'}xUufw5ex1VP];\9"350șvҷ*g?xb3Q$z0Dz[nGHFr$whwBuw@e=LkHH0l:M_݁PUM6=Kr-lwN܂VRJ8^MljG7$":y*-y!)hNqkVB(ۘGLMs#{67DvDQyllg;<]5_gC\p1CUҟy( #:ΎdW"mB9],1!qD$2%7$eW&rkg>6v(X"'G%̽jȓ<sO#YypR;u}8V(o[ccB3e=@!{q֯$jm/i}=XaC4P籠#ՠGrbCEY dna(q(E1 z:[&j5b*)BtēJiӧ=0M$Bj뮺TU% i7@kZA`) sdAdP{ލDtLE1$Yh&umUDAVD (&&)5I NZ6f@U(Q]tuhbii$sL1$M QT+ QQ :gFQG"@ ΕD4T4"iƚ˄P5cRfkf˽!f)% 7$C1iPě5bX"pyX kYHkX*Dr͋# ޷ hMb)QUQTHLE1 :dTԄS*D;2n1,46pBiDѣNf "fh( 1UE&fQ1RQMMU@{0Fol7k [7MP"ήe3&Ӑt8('pZI"(Vxק:)"HhFM HOn^fܦ@jMD^/Y^8e|D@7~{kk :;㹮|w9!׉ 6&LϿ@BX`4"*pM;%"r3RvoOʺMA:_}ZVmƾ}LPA# 8\_C iRG&cX|B5LWtfǥ0}r9TYyJsJ v 49(ŧDNuiv-<䶺& zzz`6ɴ6jR, kz kZօ 5M ,4"V"5,Dh1EQ*,@ b f"HPQR$$ Z("AH)l]o HȬ&و܆ b AGl$TQ( d(DQUY ƴ,!ucz" oZ""[%\Z# )%P5E!uD́nlIP5BP5Q31PTT$Q CAQLR]uuBz("~JmITiz4jn7 D S\ n4{k3GIO~*?ERgՏ*fZ p*]4芚 Y!yx฼ݞ}wqƹY Б9.mdڋ/Y$}dCag4wͥEߙG5G~DŽS:/~ڨF!a=wWִz =x'zޯSH`Ԍh@Jj btx#Tg@J 21gdY_'yU졎`Ma=zC$ǛjO?Q4_OM^1l.'s:)0l{}!ۻӶQ`4]u)j`Κ멩QJQ*{fhY ɛRkZP[ 7mUVL޷d5o{$47:DBSHEIQD ozE Up+8&XFo7¨BJLL 44DP1pj "&o{lo7PEdִE nq8o0#+hY#p lD@n1I"I6(k`06G*>߲{}S`FybкqQ[°H7}݂H<*OnvfY?~d#(wYA [4JRHa I.q~lD6d/gcCW2{B>l"ooJ Hz+z$8ng}*]"Zy50%9 GgI.E 7 !wS`RT??:YzzN$ cXG萔QT,QEV!.kSCAc5wKF6fT `kYұEEEAAAP5֔|q #kY33ZֳJ*䠓(q-pm#(8 TQ: ўAs2!g?_oy#< VoZGRa%lfDu! }b%$R;𔄁*K Պa?z䍜"`% O?h%s}|1$ĹZ J.P% Z`hҩs HW$pCfB;GUH=a+FBQ^KSCS3L$f~,r)̦iARn|IOd"!9 B K .VGr3IƬIK͞tF LIIUv1%%EPCUEQQDD0PPP,{ִC5CBE&L oP5s E`akD0EDD k[3.nniD`kZFMkZbֵfR(&"f&&&C3Z܆ܚַ5t5s55֔X7IH%ܚ8ٰFG3wp!;0EY $(##|2?2LpnaDt!J8#5%6Y+t&4FSUr7 vc1VZI\NH؁=E z+g  yW"YXa QC0DGk Ka.f@Nk[[uC[ EEXlַF$DcEXDo{(D&f)ަfbu(Og1fИ!h04+y*Q#F 3 4B#Cq?Co×n,Ljghy8ZF>Ӳg< 88ǕUFffs [D_rH9+A k[{/e:kKKLJ1.55&C@ֲM$)Xyfl ֲiUUAT ɸt[ZM͠RJM{Vk5ִCZiD$dִCf"X]4,X 8V,EC7jic 1Yp bhUV 5۞ݫ$ R}g|A_oྑ<;dо>Z) `9S4P #`SJ:F2JߠFxAc!zNíJV#اZm]ސT8𠦒A Q@U+BT%%L0U-DQMCUMDQ @SU@T4CQCS$EMI 0MDPP1)` bl_;ut 3|cR.^e8U+TU$Q$@e%d@RREXXYAG]^yCSq~.vC#,`9\v4i>_SHI"RD 䰃Av\MIL;-d#XDH) {nj@Q`m}nf} P8 N//#&hB!ZC$`&hhhJ RTT=PJIwe3mSqS3r]̰Pg~#lU9M!kɾ5N/{æ0b]1Aq"_ŭL\q6qJe O{2Pૡ%(aYnckJ%@e|002ۻL}QB No Ya3K\8| KYo=m9>?2sei|zҳfOJk彎@bK}&j6ݞ$6;ъ@3.;li¦ 7kA_&2Z r KY,TWNxC]US@f܊gUOT67B$ x_w4 Vu#֝+ߗbG<=Ȱx='Nѻ^}8D2Jcf]q ¤37eS!tȚEEST?X2kZH$f+0laozִI[ޤܚ"A mlȀLX|"?S^8,1TYu ^K;%M=Stγ $iYF0U4DAmNKm}_珈+"h6kZ.Q5hkZ4(,){"D5*lfłj (bEa0Ynۥf!0(W*o$A`_&I$32 H#LJ@)uCZfpq`+lַ 8l VW8:NfG;WF -G'`J)ّI˟گA P r$U"UUrkZ ukZ֡inE`L@F~+ďO {JmJIMO?l fh6 M1 (k[EBZօV0ֵbvCgq"2xdDldY)910y&H&:J ^MÀ`u<~o+,pML Re6r$Hkɟq??o>/_p:bA/RH]?zT #2{* * &bh&J( &f(Z&%*BjJaI "*(Jj(i)JX ?7w?OA~G4Ks/}Vr_ `$JB@(I@@$B @] ! y/^~~â&/-)12+8x@hVG !)*(C܀nHf]U6FH8Ņǯ?C&\,֘J(qu(1FB!LK J` R*R!"9q&!P{DD MU-2}+`$Gƫ9e7:5Eo"Iى|?#FEyos?W׃GJpz:԰9CCrhB]tE~|krB6$TңnfcO߮'VL*1@`hemi_qF /3' 7wp9jum!kW=yۜ/9LF΃f4^׭-컰Kl9VB.w7,Aw8:Fr/ٮg4aNKvzNs;g::!d5i%"7D7jX ONY:5 ƏG>జT}fޢ5IC#!ăaJG( ky|Sahg&Nrk'0ʽJVat+O߿Z<4K}vU`aXX]ەῇXzD2d^ߋ ޶^Oџ+1->M?|R`\32 0(! 2 ",$($ JB02_k'y {LN]i$qw4|&%!2yv~ ϋ14iC6dCǿ ܔ5[ 'g% ",i)xNK/>#0c.RG2 Nn& jd Ai (d$*F;߳Mu.v{|92| C"򝳟e'ʶ@ Ai tJֲx}rj!j(.ec@l~3Dap*ʫ+JcW\KK !:2vrJh7WkT}2Z!A+2Z}'Yn߼e(UZNdX&W8+SyQuR[qc*q/dLX6Kw Ap3A cВ4_U0߇$_p h`S[3?ɞ!L&nj`50id Ted|uWU0(dkv&tv(b_6oNErli=~7:9% Qy3׿5\ izwP_п_xOxf_JҹQ&ô\ 2Y.T:4%ӽy/4)nx_=v-QBP=C?ɍ??xGC^>v =C>s9&aKH dW#@aIXDb)EMTI guRyN`^20YhLQ 1T!%0t (h`QVʕ>b=-ON8@WL*]+{+݃>6~ 4Jě"x{3Iw oY(4lJR?ؑ#,! kMeSqoSզ%O%(|Jsfx}i~ϖ[| StopoÝHb Z!lvy^:Xכ4HH@X.N#c= >pv/#ˀ( 1nIPEG']vG'6ALDaSǃ&RKHĔRD?;M=NɟhkFs5vRxMՙZ|r`kzFN<׻-Qoj<5xjOC8 R#.k‡ťz'7e{v ,:Mm\ݺDk |dB|ԯIlXѴ/{Sd}(q9W!=dJB|Fu|ybEOeedEt{Y9Ud?/^~viɫj;8>}~z~uo`B@Nb4v' @^o=Kt%qhɤ Jg>l)ߕ"S8@~Z[ߘOcA7D<W7ȓw\X87hΑE"6FrJ<6s㣱]6V3|K#yu3P? (FqԅJm}d)2-6 ZHbUȀ CSPȿ$.݀7;AdNOmDxNHTe+J%ڔ϶\։֭2xq?ulpz>QXssd{o*]KP{`r'[o6QY>krpn{:#+H:X`2LU$F€-^4D Gq¯@| ?&r@b$߰?_NjG(xD7@9`%) AᱺE%D^#Ƥ@sGZZEP=ޤg{w{ 0̃n"8]GԽ(lMޟ'V̢[c8_w:=z7Sų_Khq( A; PbYH { 8_&Pp:ДanГ[%槟S4MGMI:?3C={Z=wٝo-no(~.wsIȹ\b Hqve=rB ލu?5* ^w՗orǹ0%){(=ЌPj@%fU=]ټGƚO-~:^F|ٜgnzکg g~d\H4393XU}IS&\ϳPgqOЉxNct S>P]bp%<ۥgstӭiLle?/4@~oY|&2 " RT@3uI y|2D }2/@w2PhHfPt&&dZ >T:˜P :Bҭ*S#? xh=o7秃1H? Ή]l_-&:*' ,߭ 4K# OdDDܦ &cKv橒@uYHp Yp:2 񄨟PˁS);EQ!k[Nݜ"$QQ$# `۶]j"`d sF:tRfrM VeG@C[mdѠw)R;ö6 IaMpd0w+\Y\E:v|M*즔2+Z(1ɲR(0HhIL14k*9AoAWW ׯ}A+(O@ul`)HBF!m4=28hK)W܂ )E $b~c~%D~/n#C,e>)>>g~c׃UJcB?qȪϙ|?dvavH]||#_3㷙T%k|#;TwBz﷎ T{frpMz/O#\~d;_e8nqKz C1h:5=v *\M! 5^X"ɞG!4 FpZ鰦~=3of3Ne!Gkfx~mz55 y E,Ș݆*Ǧ.cIe3/>[,۷/rfte[f_u^p6@ϊ$M5wZb9YKlF>Z ə*uQjőp4`]>P2 -ߣ̓9{F> IUSb'\ }6cϳ?&'*[O$س(JNjxw߇'kn>կ~x‡ё|u?_UV䦉;ϡM=vwxff[#؛AB =z0ҘEe%uWA\0 UQ i=C]^8j)gㇴo<8Աb{mx %`x=LO /Gu0'rQC@)]~˘?2p~xL1 UP*ad-HujH KLaR:4EE Jh7, vA$LDQQ0TT a*HLd)Jt Uh@2`" 8`$'a6" " B+a "`R0kD1Pڢ A  A@H(%g`۶V(t HieAaRPU `?UM$ %t$zv߿]@A3$BUT1"N3Im>+Qč*J D(̈R!*bjh%Ib (%X7E Q3$DDADC$KS5PFJ1 ` (Ȑoz7Ti* "S>\:K?>Kyo;^TP^k5H91e‹彜F]!ٞ9[+ʜݹZHtP˱}[=gf=*(g> | @ЬPA(Oo淭":1Kq9^sc #f =qSg󾼛ڲ^haFt~y݋ >E?@gV\i:)PyE6"9X{||KQr=y~t90 7w=|=8} *H({Q#׏(1uvKs|D@jr]ܠn7JÆMuۄ{.:5'q `Cx_0ub3quE\jsy ˿ z~^;`OdU #ZQ4%65mQIǗ-#9ȟ ۮvT9lm X&QaP7w[gOkĨBéK~fH\df^w10q*p.Rl€nTRb])UZ/)49yZ!#,q՗}o յoq{_WIߢmQ4s`q>/U@C6L-_crٻfaIjޯfmYBYKG$CuޛA!3Y4xt=j*2AgkpT ?6\Pi@ R?Ed;mD Mwm*( Rd1k 5AD Bn5Ii b"" (*# bTroCEC5hC6 a ȅpE S)`WN9)"!@i3ӧB5 )N :u"J(UYz* o -@$w$GTAES/pSDR”GX ^{gZ)JP!ZW(yr쐅 c+T,A !R߃d?S)dW q8H79UA@nʹJ5Q;ɐ*?w+`q?؇rxI%R(c_FA44!|~/RxGo^yV:u(wҾ>Sk臦 pEHAkpP%*p>JInTe`i˜mrYwÎL˿da@ZXA p) $z<~I*ypĈxR/ɑ0(6[(Ɖfk""jOڲ[Wv|mb%pRw}y iUXu(pچ:=TF]iC=6f! l]lP0i߭w<4ps߀lpBOD/~V̍^?'?MgXׇ3XrSODԲAQ.4&K%-3ӏ'tf>oM{繫SLY,@.>u_}R'\S񝀧?CM5=c0#sI=Z8e/q@0XFAX1 .I贯g3b:/|ɼC/SElɻ'^J<څSnMr{d-}R.P@" ,Ghx1Ͽw֟Cf*E.a/> Z?ީK]DL^={nn6fbaqD7|~nM\7=Q$v%}oOk oVKz \$aN[}qBViAC ]`rxoq.oBJ}pfV|.B+rVw-y(+'Q !]ޓ{ڟuRaF}{~E oQ3΀rq{]H3: QYЂŐT`$E@UUTQA`lo{(;m" -)K KM "Z Y"ƚhTPIJ0aZ)¾D0 h6v7gN5@Tԕ44$QTThQQ3KK3CQ4S.d f ;`hh$,˖#%ֵ CY/(RSEAURܛ)h"b"(b( H&e \DEajM *$DĂh )hS:iDRmbI$ XILXBoy[hbX_Rd<_PP}b9_Bq!8Po H\sF +Cr#@)o%pƺ{`Ϳ,z#snj#R @$ @l FP?VD= ]qBl@0&% *^&΀4"oZsz>V?ol`w #sۅxe >{y$5CYCR}>, &! z=xDY1m|@0c-X?i==Dj:a Kd?v$8~08X3ET L #ZFEнufī5Ɂ} \䁄L*@K%bt}ݱ|;uc'q sKg(ﭬ#ʜߧsC[_Q-R\ tF'q~G[Ydl9ʧdcA̍~z#\hvllvыiT1v+ κTQľ&ny<6'T,!Fߘbߣ<=\W91o_Ɲ*~CTW}˫A{&~y^?O(6ǺkqՅsAcT3vOiaUXU~DYPM ƨ5C KPh?;D QlI%1œ~C%73箊sud)5 4hUdn?ioA]Sgo  !#˧*!>T6S1Y~kKHɞɡY>Iܐ=|1b;P~7&ɠ׸ ;ovfd̖A+dҕߊ-*(d+ GIp+S"KJI# Yj9cȿd뫰~nSZ`"~o *Է(7H"[v]8 .#A،~\7< w˴<'z#љ~)Bg_gc!0k4G^:wsϚgc(+3A>`H<;&&NW/).c%nv=%Yiy1kI&n Wu(r_v,i^Zl]{bks9fD8 77k-I#zn?^dp!_VwH& m?إDTżxZR袁?^"vsF\H)!$s;,./Jb|Wt2X% `+_%O両N'9haS&٬Bw:S709j)mH`. 8?Nc>|jD;GFg;Z0+v@oCllxh0|:^ixEƄ(e;u9D=j{h@@D5C4Q ?Wƥ56ڝ㙈BgeGrD̏DLj5E!o{ܒtvOs`hofЍ>%'/iiP0OǷwC@z gW:S(T \ECR#qJH~/u7 $tv.93= S >5hUOt3 n[ozUi IJ6oGxlsT5R\z\4x[c`IfʸOM*idT0$k#mH1އA*c92;2;6? D]E#Ϧr` .?rշ;4xrƇL_S-vS$WEAt~xs!ۡqŸ>G؜ y,ȹ@>ΎbL<=WVڅ.ā|7y.AQ_lg~p⒲jКZx\ALVRR f5M`XfUߵjZaBqLRC Jy9&q4͋n;:$aOFze./O|Lr`5uGi|ғjC9;ekJ|"Beўqץ *(Ϻ/Ђʽǹl=ߗQtѡ#_ OD~Es0~UoIC+SVQ0Vgr;ܧ@_rO8?XkOŬn#n*r db?5\vnn$4b.Q[J.lhxjtZ\E]HPxt|2H |OJI{OvVDw$#)@g{;^ }FT?(v/k?U'y[Ӣ|; ! |ԳK6,)^g,d>xL;w%B"&,3`Bfu^ʙ(:z{]4Þ_]3ԁ_M~O6|9ڱn-zrT|3G+GY3Hz0= BsgCvd?sqJJE @H:{dT zJ.7 nBy|3 H6}D^ܴL}rdp+8ks]bbn3Jy=~xSFX#edb?+CB:_mSPfGe+yVPt+} Th9_u޿WTvVB*Yi•X>[_QrZ*-?uBiywO1Tfbyb*Zhn=fU?3w.'#x' O_4gݕcOg14sg{ ȕ_O%VhካgG~ W8EQ~<-zT?dlsIPPMYU^?Wh4mמd_(D*WMROdʇ_{hrGq" Ey|ds*TX#J"$,gEqWR7g-*HD̚Yn;V&oAfUSso2OuFZ?Zǀ)cUjq$H9rubīAS1mjÐ8B][TlUؗ}sٙq-Jbin";tm_v}Ňpz!cx0x;WI` G/LY z⫲2ې8Ri 6d>i^~+ǠT>I3)HDYPVq2 J $rf|}P(|ľj~2yNw;Yy{;K?_sh-'O~GҞaO]?|+<A`)JW~Iw]~_]0w$=7ev0YycGG(LD%G -?Bv{ޚ:0+ʫuc7Tx =/JOYSe&^Ze@'KZY ڢ*ϥ֗vPdG\jԂC( TaH(,-UچA$]VYd89pNP7^?a1<.dOǏM7YQSO:A7eȍÈ?7/-yxz;!F3i*SPY`abt֭,9_5o7ǯfWxEL0fITQ|Fb%[J+): PUTETTRHDP%33$I=1 zfrH1 J҅PPꑽ1QTMT%ULE5MSAA3TSI\b$c_-= 6ko;cJpДQ9 q0:/|62qpio;ȯd4  jR3d4dv ErY_jY'Eo |x.kqMk*C}r7&0QTJ BŖ#s[3䉴ߠ`.4]u PmYwv>Cm|ΧxQV_0ݏTϊ|ŭ=xrO6@Ǩ-h|FggRVؤ?-isNe]r!O3D,((tDg?/*X&c}^_~䯖@گǣ`;~w?Z]bq!D?rYMʂwG6 yIThdi|D^L> ?+ōhzN:Awcwr?6 l8w@㭼>6C FzZ ټ?mԶ J~t2R0=*D ?>ult*t"/JD=4\סݳcKRl%OϞ#r/iz6zJqQp& wBGOWv}ZAUJw; 8|!AU/=3sY )(MJ7fwzHӛ ߇agZƧ^q2dA2URQ!KZa(H=oB !ޘpC.`4gPb¿aX nZܸdfV1ISae 0[d4&)m lmPlpT1p+[S * D̅$I[s[h度iZȘa(=5@뮚hT&PsI 3y^0A5/OAXwGmh (z9o8v?//.aq*0#㎱،]1<Б'hC9=g Rb 4bcD-`$eSB̚iPfUT"(H'*l)bi jU5)D]!3"DR!7FY:h{5\U˙n:0˽Svv[EXYRHlTT5h J4\irஙk2wP#J4U6B3N]cWZ5u ц]h'[m"ԍXKhAm[mcfN߇/;7Cu|DtD#%ba6] h1pra$vw4Mۻ57 rMɒXI4ܹm9 R$32Rn殕351F3YPW,-ˬ I>7U.S2.mUKh9D*VΠ*Db!B X0Q(ušd$cd'ԧmmN:s2'^A=iQH((JJTO^99\O{?X|bµDҭg$t_d<$.cTE#)pa D(wh<*>zQoN1łHep0p ;eCveص20Z™v,D4韁0K3;k1xGo Đ9ԅst޴֘$oQr]^}W~.zy:y;涰?U# jylB1}U܅m,΢F qS۲c?752z[5|_|]4zAb_Cv :`KdTO殩D {Wu8IE6}dy,+U: {|sιwGdj V"}g蔟%C3t't9PЬa~Hx>{ҌD%udBjc,[*ft:QĒZ -96!(7ʅ~`͛2 eO}TF6zn= @Ox 4$|:;n: SH\^':WJi܎>f>I;P.3xzĴB`,7B4n'e#9hTÞ >>F"F q槣<jPw_ .|Uh.:f@K53FqzӍd/-T4C>xL:tA2uS_[ (w:Zj{xC>Lz%q]R5tx 2?22`~֐^I;@@KSŅޓmi韲^i߄Ӛ4b<$RH @$EOՍES9]a,_YЎ:;Uv.lgyئHDEzo@0xrb>~=UkOAJ "5>iυNN__%*?>ʶD#9tQ;[×ovk[`ĠI#|HNg;]c+fT޻vyd9)wxf7~wgrᜠ:TҜpf<@4l3ټ ikb1̯z׭;QwbT((ڔh3Uy?ˇ=,91!}5=ӝuR=@\5kkc ter!*{mI) mj'0(AeȼU77sV0,v4ܶP]I4 (uB:V*)B*BJF(iKU^Mr|{=Lմ*~3>de]i'+`KpZ$ֻVG!tcG%C%l{DDƚܧQGKeq|h,DDDDO9}t8WK:2SZ`[YJI57v35Jup;N*S:y01d1U$?ǩG*.5|-7#4(j8 ~)5n7se'^mtNQL)G{`L'F5VzWyirH&ÜMi FgQxl 9:{'42s&+i}4.A$2Yױd!JS$2 R)bI4ZL7Nvc*Ir%jP5L',@^޳"m f StfTl>*Hx`),l\rhԘ0+q\'L.XF@ L@yC,|_7??Sy'(rfO\tj\4EZIkTlX]0lT3 PiȔ3ӁEeL97KbEPrl iչw&ai4e9 0 Eã)H0I'.F6ӥpHN6N#G^uzX@C?`97z$v0QrI _Ң8?O͝e;`N8a46`@CzN:@0KTV 6 xCF*W'mÎ~ds^eponn V$t7\ "Z!XJB LQ94BCڱ5c[xQx H@9,]e 2==OB2%8Ӗ|`*FU-1$ .hD$@3) /0 M (ߠP; u1CHAijPA0^2xvGDѵl \go qfDa@I4-f-*ܜ4N0cꛗWaBDȡ k O/Q^;5E?'`i$A ;o\ $ۆ &<,g8_ P$HPL1(b:)X(Xhb~ۍtUǞY*1j 1:.9HsFr@ V{+|Xj+jd`<&a" Q q!$ 2Q `H"q0Aqa :_&sFF a5%D ST&dL7~)LNašA7JXUDgˆGhZCϞ| 4w)h"`o]oXZٺp( t8"S &Yv(}[ lZʗWRHpukv]7ѣF뮉" l i"-37yX=9w)3ZVaҷU>1$㾻@! $#鋿B,wT<t&eūs #BǀsϮ~Őz+tB<䩷C=l.f@7ѣ@ O5o?>#h6O˺{}=w[O> f2""bTETEEEEEDEEV** $rGӟG6>t;p#ŧ=kv9}6HdvJV6kH)a2b]?֍7),F%>qreL?UgSA]7^KZ0$}y " :MD IȲ&$ O1ۑϋ}V]0p.MB6/#BkDTRE4QXcZҩjh88ㄢQ+Jz] iEB^qJA`)tҩ}$֫}*ѽƶap)7q)?u gd6J(UuIv(& J!a3$%=z=rԒ4d G0;Wriw+S?/+8ef;I }TjW oN[ Ν$8|;qAu3Tp??.㷧s0tRPruf$+u|}N#[$J:uAvѠG€~w2<yoQ$C v;Sm\BA mh&`cZʢBKMpPdZFinj[Sp$J Y[e \%7FP5~AZ'S_ %gӦ8mYx2ʃ4Y$jZJ,IbT;7KR?Y6.4Bְ}ąFs_W?NIY*3vI]kR}z\wCLhO@dO7JcY~Aކ;28]' d}EKa7L2a75Qb&dAGӻ,yJh!"() "* *Jef" H$%((" ZI""Zb z\\SSED #&B˂L;{lM##)d)9DI2 $ܦ܄$9*X32ԧ(%2fIs?` _D](+_Rg ?!D)}RX߄A5D.E 4%i>9zCޟonK> z\9s{og@:gn;qgFp9-qآ.ʵ)s?duI_Q9$bI%HŊ&^xUTQWZzܯs,J|$^,|2wn(iFHsJ!u>Ϟ;{QsB$rQ6^k׏rїa*LgcYHt5_*wODrO\F!'*I(2ngW~=I'#]xCw鄾M{Rd-H|JZn8q52.9BF5$Kdn؄ɈCۊc 0~z)ǴζGp>p {$#Qb v/UI#p=?i0Ojס/{AwY46fCSp_k̸=s#Iں7^9v7(/ץ#ǙנmʗK&Fp"ϦQO ֵH-bU-:C4r5T:q<9:?A^#<9Kk8Lx,1=0/~v˿5UDX]&yjr\C݊LWA#2eL?M'GL{aRq|m &:IIq,߰BIu4Y؆l1T#J,I !002Ti ó=nrL:( C`\FB{˓?:~|W޻硻U;Mr~K&JD~4+fe:XۛA#C+ywF\޳ Ck8ڪ Su=*+܎G8':^2U m/Icu@3jd0|Jg0^"k_ְfjŌ92.r*"nR={*V}.;6U $TDu!<Պ8nL޸q5Pkҵع82DBzr]ubܡE?Oq+=n#t /H>D'"mwˡ;C2jz[ kz}P,m _?Gjzh&^,Jea&ڧew.u(xx" I&}k~J֥VmO(NzsPovR%3)}U $I!%^ԯc$(1(5#}II$'[o["kKMW<'56|oq~ቮ(LNs9/WzhC},kT(ϟ:<"Ǎ2:>.l="yz)΄^i1L8zA){֤b~ђ)y~HӮE>S#y7`VR5,7`g4SϏN7Fʞ\ѳJieoc׋ag r3Gc& i>u#ϣzb]xvnFokܑGlk7جp!->&cۊ_: D4h:=ӝc܋8\O%{|>S R).P ]x<!쫧NME,YL52FP]AZ"C88$QD1C\z;HwgӚz={3M3kCFL4׹C,pfQYG;v;J嗌H$v<x8'ίJkԢg^LLWnD &WiCy!WzbE7@^΁~2ذ>;X%4 57rS>Nz>>uZ ̐vo7\4FqF6C)vG];]vq5V.CPAWf$9C37ϗu{OGdhބ>k[ݿC'ebZ!zb{G@þdG2`zUa,6<%#x,ҁD;Zέrs*¬NZ\v&:UdtpS :&dv݌թhIn_eZxCӨf:y/I50uJM뻐<R}~zקqSjI#6qޙϡƻd}' |02xVHDxapXބΛjwgwɿ&q[C[G^V kْi&v#VĘ=+*sMV]RņI ɶ!Zi`tI+.nƢn+%T;WhRO[lmd^X|H(ٱ)D[!H? ҎIՋJ]t >$eZk8̈ ҄!LKfP1엝iF6@UKS+yBojx+0Ko-NJ@=YFP\wVݶSt`0yH9@cY\NJ @=P [r(]i(:/~b>+ %EhX1[Mn>QZ'j`Q]X`HKlJi~}<uO}'Vx! f?W9~ "AB r)/Ku0P(" DD@Q\MׅV[ulrÏbEP檻`}w, 2aq?Y=А<5A 罦Ѥ8}f': Mni(^;GOH h&>&a*Dys.zW۠ u~WݧN-ne$܄[neIr\%32h˙Lm[(Lb\lp$֚n̼N zYH'7GwΆsԔdqqQ&طykNYB kЕWA"Be!4.Y S(P ޘ>8Oh!Ngt|w{[O{q;ó'ϧK(פ@.cJp8Gq!A$DTTCO6SP;3$E#y2NO \"70v쩏&`Q( GF'Tvc IKB@?Ycfj z4H7o-nlC3>T<+!A"*V9a PZ!$ȧ ÙR!@El`Qwq$ڀ& +&0jΦdsR aB RbUD1h]7v|u{'k'R*q1n3 [mjb[mB.*fs֞1ԶC-g2֚]GANv1u.i':bfSIxٴdՕ1̃:dg=v?'/`o7}qimQRhQ =^<9P^Z:E0ʙ;ck۫ sƆv{զ~?7U\u"Mp99JKf6%^_Oo%tL5:3zqRXPPYo( u_-ʇ>?2IS$d,*eW鱓e»<?2\~yC-ZɃ;s~{J#+]&,њBs2=+H_7zX0JBrPLLJ `B@-&؄@.ާ\%MEESPQQLAQ4DSEDDE aeˆ ˉ\J5(b32bĜDa֋2s)3+7;6k{O_Ӹmnҩ? Jtmr^3l\?/P/R![Yn|8">ihJ׎iҾY,Wۉl[{.Du_B[kmwW4p!U#~k&|O3RJP numU9k+|ơ7y'xrtm9iLYt@e {MCxxyҜd^󇼫OLrpcrq홭$̎0U Y?}sb/Dr^r o݂O&Ngx- ?d畚+ D 2"K6yL{O!w]2FO''2Kn^g҉ l_o$3ˢ:07 G? oeI +#^XDtT [O0DoQ>Q)0ldƼHFfY^'#JAWKfl5 pr/֋k⠅LvU%7m_wO; kyt6?GTQRTPAE˭j?R2{L 4g:ND}`Z.UE1͈)s!TuXM3H3gdBzLIR$&H 57̒fw4uPMHXB᧗[[Ѯ}c<z}=t~fIF7OY y:V굍КftQi .R¯U٩3@T5JdOrb}dK5MMgA.'p/)_Ԗ=~$-oQgU !l|\Ljߘr*ߓRO)N1Mr6H@%z?V mrЀ^Ü@&V-Hޮ@p2DKT ֍א;}UAwz{|ign7&춑!G/t~%Ժu-(iUXSV+P>9Ue3(4їK쇬i$検Xr3eӤ84fVL+D2. nS$O^}NqUy4?ϧxyP9w ɟ(VB8Cl+BE(d76o1@weP|| @q%D2vߵv ۓL}\jQRU>?AۅI_u8\g-G*D띟8$+JTi @9š qP j?eĮ HN? cm-W0)~O+`) " Ѳx]lY7oCt08 9Tu;f(Xc>`âjȈ.oIwgoc>IqB)j$)  ZGCIG @d;}.5[95lzò +X9@0r4vpYlǵmk R+LOB*1Ah$LT4pN9;/SiLaxXNɫ4 QZԥ aJjqo+V iO=Z*~-$I-jqk*eWLf ?/t<.1J+O/ɯm:ޘߣiaɌ9zp~T,FXܨ$,` P D#ZGd䈚B8DY`$<5JA@1BoXkJ\m5p`q\]e˜Ricm9DEJ+mQA,DU4I11g\kuYUGWQ e3\ )Pm)ɢX {PImsltM8YUDtE!@IX9Ī0 "5n`LAMe$h9TfZ l J$hL",CFՠEh@QH0>–ҭ-j6Km-ZQebZKKXCiup-&.P IF6"'>P6tX1SZV]:ioBfQ DQLD5QCEQUE3UALMPT2P pH:3$*`T:UrvP!@ f%T9GiqSMSAj* g :X{|nʎδ#@Po~`S`Z'uF$Jh4W>` z}^$^0*fyb3ai0ew # 7Klrf} Р' / S@ISn*! (i6 b'=xƂFpsPMuD6PoˆQ n c"_G`GH^ zTzSq$g:y➖'8 ~/;U*V es}9~ïý|04:r~H}1]8784KhS9* YwzCBi:HiQNj@?a²)϶[u4M[6$ԗ 3:cw:Mbq+rJ_zw glw~sVDtje+yjy>ܛ6ƛ-cy ˹B\WF~?tk {sj/5dM|Chn>8SO18-uTvϩ'2#(Y8;gCN,8qCk<,=FO w~k!@Z}Nw"􆞽UՋ~^?oM.v/Q/%Ct X;wWO$>\ _f*9>/1<#_Чv}ƻ^L' WWA@샥S}*k!{Xteuc7彎2OjH#4$H$D%@ELJԢ!L0 MK@H 0@KJ *%(8*q ,A2`E!b@EF!°PH.%D`&Ubh[,d da8 XhS" Xd $%AbPec *!PȦ pbP0, JS ΋#$!i B@ $d$0Ž!E(b lΈhN%@ ,EB@ d `I 8P# X`A!Yk $ "L8p# ,D`!)HR+&qI %fU%aIYdY (% L,B,C,DP+00}rJCP +Kh!p @TAw]Pp#E(iZ V(!ekh;7l~@@>o~[،٭/O'.&؃ }=x(@({?wmͭC'@MV[U,ѵo2ߕq_y5AaiAD$XDcR ED2)j4ܣj xmg2Cʝ_iWrRuog[Df֭kCe}?7"s߶ ! h9"*8I17}U᷊* lh]۵Xv慰=;!&f೉`2#p JV!'svdA$ >ǟ DRQZ{M>m_:g' 1uXQa#[麟 5C:4썥{fu[TFju2zH~tE8|{Ԑ.] %ϥ6ڪ8b7¿ƙΩ ώHc\~\=֗0nk(3 j1S'W^ϝB[S-7 jc7'?_Cgsbx+څT1o D6βew&P$KJ??[_}D²!^!IKjRc( FUUX-9AFD0E5*mlLіi©*fK )a"f(TMRR2b!:MT@*1MAa1fD2( $$5)ը*D!u4C&2H:hqJbE0PRh9I,i&\`)-L2 h2© J)(jE*e vPn[!T6UVr 7LL!d!,+XtSN` $A;{۽t'靀$B( "Zmɕ˜Z2ьC/[p3 ())|5|#Æ*hh@T06 q@""L C N ۼZi,&YCA:U[3At*B u3 ϞN6ob] IAEtE"$\nvבã&)N%(bӖ>K\E545L;Im[oE>䙴xP( /VKkM؋]BoacJu ͙Kqg8Rayl6ϰ>$>;O0[v0|h%(Bg6unCc@<ʯҶI)nܶꢋMt6Y^^kBCCn$;fRK16<pY8~>Q~-K#B9+݈B-}=,?kaО. WH]VzйRLVrJ@Jz7i!>h9澂ZeeW` ,m< AFt;gmBn7aM(0.vBZ 20vkh K>t:jy·@OeiĹQ1 _.X_LՅjo5r!9'RV!rRJAM`s;.J oSΠʈQp7|+qqz[:)d p?f[3Оso}XH'mA,խ>5Z\c8 [wǧ Acب>%fsYr }7?K:'0$}{*oeYi4N_ق$ %qsp6u٠RSᆟށ=pc 7V-Ɠ />:nNBK:TM Y|'R/>p}oW2az;a;1si*!Ɋ` **#_5ol iheG j#hi-#S|4?9˄#4ĦY&o"M6 ?(1SW=C7 ƿ\DQYTC<7Aءe4L_A/WIp8*kY Hrf䍨#fd1w1 y5萲d19"h\Eۙ1tf -4J6]88: %55!a 5IEQT"5DDFo+G&L.4ݮ,E&*iJVʍ-2t4Wy*ۼrkXm"H% !lD%S"P"Le1%T%:dPQDR2ѫ|}@`3<= C+^7dLJ4%+TQ";͆q!o.go/3GR6m6kj))s{ޝPbWǡKT %'gx=*D (VL0emVܷnvKq׷q.t~¡bug:)OgOZO!g~nɶ32F2LndW$ CLs:㰿u+V]~PGyNkEUgk'xW8g5k˧#XY۟PH#j]۰5Sc^L9؏Jt".a(5HJGwh*T)TRUR T!@a b** j a O˔ Y%Z  s̐ hB`PN T%%tHQ3R*QjJD*7aT5a @tԀ@Pf.*P(Uh)rJ] mh((h F1P`E(H T=6P֥|f !%ҡjB#XĕMU4EUUUEU-P"r )U !JAe(vJ!hj*)UvasPbShT1S?ʉ;K >3rNp2U Ca)4cEX7?:,0; a 8E4l4S 46PGk75T;(CHҨu+Wn$ܠnI w<AL*y|U:u(hMv9;N$T3 #)X*2-9J[`P I(ZR *RC, &"%T|"F`JrJ*"U 99𑘊*Q"JF )Er@*02j*>1_I}7}W}*}UURP#UH(PU4U - KIE U BMTRQHPSJ(ңAB&K?''_36$H[~ 2OTJnfZ7l_5ɇ!*qJXt֟T& XF{id;=N`A%a|LRr"&#iuơaϭMZ"R|1 9LȰD2\MAC ɠpAަiAm(NäzQzvO5VsSsNZy6SIgPmT9qMG ꢳ&D4|EW"H<]6x?k`":U6iV=vvNJy=A=%@\\f(9Y?V)M;F]d@ֱ-$!dx>7xڪL-mz:ܺϐ {=5/QԸ"?@AR B#5Y'Nz\ZR]WbT3糖>#$ DߒW};<ʔ*GJKt*WKa5хn`[ێk.U&Lps35.j\h.eH M 5: SY}rB. lEui?hAe$Lm36D-V6w>Q[`D DD9"?Vчzb@w VB :d~4n"X`EP:sfn:{NJjA{nݬ7o рCezqϧWakݥpy#)i2!u͎c.S0E8t,B'j:ٙ77#(vة)ȴ0s5KAT ZQq;Y3y⋳ !]Dch$j7'?| N/PȮ0Hum9Wqbt] g 1γ6O|ĤxMɺƘ{E2DFo{S$exOD.fcӬ1qedN#|~\ "Sd^Ar\r|+ ^_8'5?x;rW/siSyP}մs?ϒIWx|p~0:_]((isL D7H ̃`0;YE3SSB^_s}s?fUUmb=RU 9c )0 GkhԆeq7.J$%``Pks19۠@V"i= #Fg!ACԌLKIE TP0ZZtf|4$rCuWNO&rRbRwD31/24QCvNQˬe(\Bf$mҺC.Đ 7`ojHw/_K!!^+GoMҾ RbmSN}?cl5:%aV`ʢUEƋ:Y:8efuuVNEeRJL2a8|i#٪Kud&2eB/?}T <Z1ȧ"5%Q+)P(7S@~_W+lR5&QIgȈA4w<>ޠ{- ~;@ZN?Zy60!HZIJfv:&B;ǺλxS99sv !pih~ thѨ'd xeW`ݸNGFTل$rI@+:&e2ۘeXJ ME4h6l&˙q33-\Gm.frۆ[ ݆&I ^Y4zAaff]>l `0?UY2VP}-LH0G盙$$Cy_&/AsƸ[ [ -1. 1Ʌe0ʡKrڗ. 0J`1V,La|y?/̠ Fz~i=R+HLwfAaY8=f[A 0x+_gZ^z[օ] ġ]x|[ O4 bT?܎ 8*f7#YburV/< q%WSaE s 7G+3J.Ys ՘VaMTj̬2T:%TD\㈠YP 1o7YKre(5qΤKávK..YZ00Fݺd% B c"G S4E HFAhr*a  }6 6$(oq6t3 JB#oA^f_D~$ ;l[\\f*mQnZff0r K\eUmqmZ2[ir87m9ki l~'B~#<okEq0(3`S2E3D #TV5E^BڕKC~(|XdR'P.  ƊzH=<#~>}>Oc/?W1o~+2/w/Ǽ@+:2)Xލ#dtKrc0͏X?//A(~\$>2}a=,u'}?'_Oߙz=|XO {is,# OL'yl'*?e>#Bft?WRx/U~rwqx|װ#d#:4D-7HWȑߧ.;2xFQ}I 5褭FiϤs.VL_j saqL3.‰3PclQeġuIbdp28@*FޛyO}ݢL}U 4;(D7# p4U]s*@'.pa]RQŒ d62Y62@/2\ z(P4 p &7*: E"#rW HH;0!IWU*AMQGC! 8U& ׂ#(h22r@N].@LԨfj)eAID6]"4\&0 SRJ0F47SMP7 BHi&P.GJ*H %G@r&8W*d©ULF6.!A`x(p6@(h( U"Cd=.!]ĭFxp\p8 h(SU B3]8 r x'" 8D9N""@ȸ0o 0U$ Te8(p.Q7 ״98+ GD eQ8 N("<:Js;™pF@)Ux*!Spe‰!@ޢ;d UrP$CpD#Cz (&j it 0i]h&F]2 ^P2rhMT 9` h ¼8u T &&caMp` Q0` n9U]#72&S&4 :p+2Pܻw.xslޙT%C8Ga]Go7Cr<oɸ(aȮvH(@nCcDP4] /joE0vH3C`evDE D) @~P2 }S"p⬢p>NcNeTȰE4@v4%rG!GH 2) h`x oD8ޢv|.qƇW>w[>ja1&O8l18;JiAՊ^7NWZs ~w|#O[s{]Y%=sC9;>MtxB u!>v U7WOw]Re(ZL@|{"f?{#bI +=N[ߕU-stY~zno_Ө`l9C!|éY2&OũyAÈ &cf}㹩7(nZ# RM 7ElH\fz>LRl;nk˅ҵho_Fp+\ >C =Q3;7s+.@7c @_7uۺCc=G`?f6Crm!H#5>, KKCL-رk'FOs'-@xT(A4U:VK(EkYjneqp!'?w&i:ߒhN]]]ybe[#]É,A*,E?)ORiAQD3--IټC1!7i;y6Y'-DTHfN쉚ȁ]u@ vމ=N2 tb06k- w-mb>:\ 8!X!:$g%dD42.]gi6bR%،Q2C{Ɇ)ާ5v+ XnK_ "?O܉a +' w^!y>:y;S*;Bw 5(z ||D {@ h 08_@@{A~㎼%OXI+|Q+upE9P$$DHK>{`w珚JB)$*"*F"Em6{T;ǟ0bGk.Q;k<o3¼gB'=vթTtJ, .;3 r%lRq8N{mwI,3GHןxCPx`LOwlyo';Ԋ#}hZ &hiJm $,]I퀍xԛWZwJD7y;`nτV@%ۮ7UT`*D QUF2\mcnpwZiD8Bb]]"HdIrb5}hD}NH< \mQp}aXq eUKhj-ljҵKVָe)aAT!J `!J Rm"B%h? 2-):W:w`w&Tle}#-"!G̦nI=0a!͂3h4hRtN@c <ATQх H%lUETrz(_~dH,PPRQNpvN[fNQ89xAEQ@QUzO_󟴖̼~f.eIʬ@ uYҠ"fPjՙSsY.2)xf*TYUFUU UWUweSssJfS)%su`9WvwuWa*UY.̙x^UVxMfewyR(>0N07n3x0٭mˋ8'gtWvp2 l@ p.ܜKy'G9Ƀ\sa %b0}Dȕ:(ǝ FPVP,Y}Ngy ~oG5c9twd@M R# SbO1]&#Z; ۚzK' "(Yr[[I/^䏛頸yq^F􇃌~$^'11QNس2⏿ړm0r=fcc|]ehŮ>eA;Thn+I'Z`C,@@2iICUr si!l [B'ѿ8Y#*Ӓ'G'Ɠ|~_N8oqemBRlNǩD|B|cc φ%vaE3B9\ zK%SAaQ_u^#ӱ{Ai9& 溃蓨*z^(} :RTߋXiC{ ~h u|] ;k"{w?N_<(`Yp` #ASa67~z> \l ?g}S^ 6H Cޙw?Ef G,*#&@7` &j K'ˡ~m!Kn[HHɬ BȽ***"QUQUSD3UUEQQTPUUUUURUU5QQ1Qwt,9 p ՏB"!gD;]+C]~<ܜ5((|nv9[QD4& Q`c +rFjTDQG iJєz{8E i::㌙9MuIg:?\:e (sWGtMaETEDTFTҰ (hbupqƍVFF}y0F™SCf "TM bVg78 !* aCG)n}P Ƞla :`LJutVoD}6"(eV(D""M1rwѧ:=Z9'f=I$uヌkoI%JPP" <Ś]is"3M}QcFIiGk6t nm )AJL:D曳|S E"RȖgw5DDrSÚL`Ig'ן3$5[Š q8*q 4:SMts)vx,(0o;bє (k OwQ5RaAP*+-P ||u \Gv?^E`RdP? ”LJ҄ϢyDMCFw #3M)}]#Ͼ\EZIA"aڜt=? pkN `ŒJئb ɬSA8 E]@ qiHshm!?ĉ"x"ZzQ:$vUBr8lX$H/y7ܰZjw v,?/W}f@ GN$G*=VYN:[}m\>#oܛny\v e&+AcX+s $ |^wZw",I{Ge8sG5/R+O9kblV@ċ J~M*thӣnݻvM)tE56 u.ݜjI$I$ Sȥ!PzRۜλߟD]TG[u{OڑM@w wyr&o>UùVڛ.lLnffW0̋%72.b[ܷ2ےFs%t=FvwFe`^{/C,CK{Du_z>z!ܒ*fni)$HMٹeIEjjZd[U7w n*3%Ii%D3S4̋`2@d -Z*eUiB(i;jh% ̵"L fK`ѪB-"0$rU qNJJeS.$q.fe"&* U(ķ LӢZFSfamQTB ʔ3)!S$RZ)ف"fS!HW)h($&PMYt۪&&[۲$z S"4nSBUUUY,Xv,UB:`E$o`!y("UPQYS孚ӭ76J}mvӓN3ݳst_AU"/3_ )?GtVLyT9Uib`8f0;}s7^@R㰭Jy侼;e& } hZ@ڦ{/ U EU!e*S|2 t_܉B5@:©P3\Uh@f.E\"P+< NIӮ5s{݉:1$0pŀA#Y$ Y'8Χ*8usR4 jP8BCEhl\&V;,*nb!"NYb^LHU8Ư$$ICGZSdAÁ$5EQЭ@`Va: $sªAYh̢d&Y:! Hb5L]ok(c.np< ZBlC1$˜"VUAͤLʠDHCu2&2Ha%0ɣ%J`iUKH[֧@$ $ BE. :[i m+P#O3sUQfZ nJoCTjNA3W͖,z8{\8\ Ю'[[qűƸk\O87efo@{ Z'RS(" g&;7{>˰u8^VÌwlpPm *(AV[--QM-U%QCHcDZPJ7XT@aY&B}qzjFRK'/zC @0cHƍDY)1K5;vXO'v)TCkŃaU*| UOQ9ڸ%9)Ck|V+$J?X @7@ F|^<-kEp )i'X/YXǿg],Ũ}Ne>i#( "1vy܇6f>(mT`dc f5ͧpBb_Ln3\#wlDgtP_њd 8\Eٝ6lmld[LzYC5X+^ ,-5G64`Q߁^7(P&Mf*֫,{S!Sx"TvԤq%.(H \ 0oE:}w 8N=ӕ)׺*W`dbpil14!r@!n;|2^2A4k*?{U{AxSFRZ](#O~ű%,+tߌaN5Jg*fVjSI6؉yy/KC}N"Ѐh;+q7&AP<<Ӆ46bM>.DݍKFn"PZhV%$iEOO̗4wi{1j@9JyrٓS?v))bH){a0I) Xa' p@n?m^7*ρ$U삈\^Oh+E߄DP#^ۑnoa+i{ڈoqAVYUpŲ1{V蚥|TdԶN0RѨ_7^`<n?\hS=IST ϧ& Tɂ;n/=\&+}d "Tl,h߾H/P = OHgѐt0 ],;O;-hUnVl[f0ELF@KZȟ7lrA8%:BC~޽hȯ25')ξ;r`SĄ בqå0Ux;9~|4Og,Mg:1Ca+Qo$]7AB82)>4r3H{H+̆!RV%Iv]`i 77&qP͸Y@ X;lE#]BZ!ANUsŵ)8cenO۫|8C"-'vVC[@|xof\ޟgly?;Je;lHk.ӘJuVE;Mz74?g+鋌"~ 7/V8@YI h 'UXN.zX3hPn^ 6nd)@nx*c!L >c썫s?Xm~6}=>xڙ\);y02t~I>:+.fn<8,R`~l ܃#"zĭ"~XgsUMEZӛx2'lje4ϠNq[P:w]6Ɖל빙2{uj 9c„K6ZEs /7h[ ؐ\ \Ȯm]HJP{>(qu=}Zލ[^n=θ+ZeT/^5QZ71"+cm 0d;4 e،v2e"eYHw͖ tK;ttIn OÂ[TJ:˥(+Mϓ!;H^3}g'^dV0ߔ '15vHoM`'Isź Sy zPA#] #vw_Jb ytO4?HG@c6U1xCZ"`;M0J 7|2`V8o E6?nfqr"g>0tFr뮓TB\xS6Kplt,T<|: %np4Hm lAA#ߎCF9vXeY3}vڹ }AaiC=ImAqܽkd@47yjS\"EI 4b̙FnE]&-ߵ]'lrIHH ímH@q*uP bcʯuV8qD0/xz=|u.N?`X7z\}\Rټ_c|_pNOd:3c,Z %}GެtFWN`Ϡʐ?R}FܑРx}Z(+"FԨ_I jVYk;E47ddL񤀖z;z~c0]qs!{dW@U" Q?c=@$Gj {U O_j @'*}="3p-6LL)A^1P8<Ǥ tI`_:Ya<}ONj^EK j4C:*=鑾*)T> PS^_;'SP=k h;:~oߵ{ox-ăC@i*(?گQ:l~@=|&SM4HN~Xh6s%A坚αP+o7)ەpt'+qB Y31}o&(WࠚÒU4@Fz4bdQ9=cGt=9v[r;_A<F^,?!: ;sJHfka.ş~kp `OE8 ђ[`z^D? >y.&zLO'~,TgUZƛ[cou)y)}p>Nނ*Fm{{^ BqKC`0QȠ4 ),F(D* IT^,0֏5NɘX*ϬjlU(Miuík2 Z9DsK"p2Q e^ >֟|^Kc}q" ;&&l Y>̅b!TSTDTI- MLL3j.eijm(C2;$HD` 0@ƈСEca  arpCiQA粠/5xqG/k_.㏈>1'l?,5D $IN0 |AQ_Ȁ<'#=D܀7UA -1%CSxa;t"7vtr]hh=8 ,rM;bΣ[8<^*sPD9Ґ*CӞ= Im-Q[A,H*ŁmY \= 3pFZ,)1͎WIPPDHkz4e%aId5WH)5=QY:[T09)R`N0U,"0)K*!bxqGowܝ6]c"=>GĔāT! {5}ܽaNᾮH"h3u uJ*Ŋ"Xd63.*fa_p %rW yF";Wg#k5 .etP]oKLBEDm8$dUǧ C؇Q,.k"]oLYa+Aefq:h('+q7>9**")N_Ày䨚v|XfT $ 0R RUJԩQede UKhO3TL~d_\,=~'g$DM||Je'8ɿꇱ=gX`~шňҊ5au?S4PEKjdAASiDD11R% *P1ǂ7-QZHv 0OThNX VE"ΏRm1׋}g B, )CZA*$:TP\S #sXH76W[ݴ,=xyO UӗQ|6 c팴vqyM]Gmv݄\f0R((C۳PJ*09Aw^`喪GWƈew^U챟\&qxa#{0 TԲcc(⟫r&evȝ;ߝa}}bt({ɸkÇH=ʺ:GzWb)J_ފHPsU28ژ|$7x_6.u_?zLYqLͨ,.a$XJ*f~3nS@Gxs˛h<[cL_oCb|ag]~Tl=f[rt~o!JJm)uG|9т{6ǘacӟR9?ᴽj0A*P+;Y+R&[+{Ky9**R$@:!4 딄uson*'+q,oKyS:ū$4$(!P1VCI1 40#abh̭0Pp)ʖ9HSn?KOp<-ťd4X6[xs=rM%]<()Tَ1:IW_+{-ޓz$ۖ?p;x HR`euq Uo*Ra{ApY6jiedvfd k*~8X"* ((V IG]BŕƮYUbTP+%V£1h)ph KB302aa3R\h.aŒd0P˕r[h6 \$f4@ɔ" S,'(ODO>y1<N5UfHj &w0L~<7h86Ӹ(s88Q\r^N"$6U2yP@:Wgl9;zQݣ#;uE^<R9.};[igә:?wxt~_($jh"*"" * DleXRPmL[d2`,FY$(X80U@p0Ĕ?>x3'l7i$d}wdR`?_wY7lWդ! յ:r|^kL=)Ҍ"SR SRCrLa1}+Z](@n՝BLH>hVy%bO= PE042K,PDot_h~ ~/t_N7t ݇gӪ.< 6#@w\V8Z'nu=P ;vȣ Z;IDsy01ҌSM$ǩ X=Sz齲%Oن+m*q ,ߩΏІpE㳴T[Džo~?XDv[o#@]̽Ah󌒍@JhONdYYyĬj-:7{X//ѰL AodFMTݷv9u`(J"&"J( XUDUF6o>ZSgCz9M4763s'*|:Y:Y-. D&\(P˖~!9= )QK ^d>4~O.3whq\ү#)[VׇŋAmB%P59 #@@vX6n7z87OHorr{._?}mHC(uNGzp <7J*,ZPV#kV&\{NkA6#k\swه8`{(r 'Zt} B  =֧)ӭzIoYTE44@b0HłXѲRY%?y=?&;qt`dt }Gsp+YT~EP3 "*tw׏Ī;/]'&,A@T[j0X#bp# 5PE5RI`$$1dIS&S-d""+ڀ"! 1yz/??_ap03j2ACUA{9ـ8P`5 숇$\ m:R22J.Hg=qnۤ뻵kg* 0);L)Y- 6]:6K:ED*H{ UTa'/`' *#!6y/aCym"cr(! ErxWN}]wjap1,;Ih4C8h0 tӧ_]u 6@?8B)@19)4ĸ[jd;^* +8I`09=&u/>|[WbSOV^v~@<ߩOܧy]0OJqӛl{a|ŻwA BߗpTR5Ig/z(ْ>+[{yg,f٦foƥ!ˍ/?NZc`#@F(C*gY\b]т >$*0IM wxdd;Cx ~77> ȁn2%b@VYhm/7^_|s"\|YND Sa2B()PoZ9BSaf)c"nR`zD* U B9b+u7*t2|TK՘ \ƌ]LȀ\p51,%"+v&HNP_#`,x4rI ɜfR#89ΩU##=_''7O4F Ȫ \B>@G@"`\|SqPRC Ɏ`ظP5Y. *k .ȉa20jNx& uG>O22@ne+Ӥܽ%5]Ndan3!cXEc ^(9xNp ה'<-{ZoZT.#՚G(\d@]Jv{)@93P .b:L?v#o??ן'A4 aUBk8E  S- Y>u.4fu@XTnk8xNnI9 lDPEa$'5C8I8d`6Ԡ @a)n"QKY1Vc)xJhBܬ*4Vkr clm 廷`oxZ4ւ-wtދ5RbL 2H6 dwYFZ#T K23IC[ :'&MJ#a^t4ڂRpjMɉ'`: ,A|^-wHR'e,j"[wں>zPYKh{EX$q=3_b-cf;/ƈPR|F 3/uLq h@%G\Q@'~zF MF$D"bAh-L0nF`(pN*PI*[2M(C$QzB2cSj9<€H\FpA(R@8dәL:+ө*V-DV,UX("QEX,QQXbE)m"Dt)АKFQOwlsWbГ9qk͇#X n+zoQ+\fLX]\Fp)D]%OB8 V `ιVMF$dV^Gv m\bUʓL]O Czz>M:vy\͔ı2B_25o}MJ.wUabLښtRpL˼$\pD<ȩ*w!MC*G'ak{-:q ƶp1+Zy^;큞ub(0l@Պ&APA3:Y&jM*&ep9_qoO9̤{-Gar$Vpm-ZpRa2 6UMG:ͤC'YY֋H!v09E ,-.lE%1Խ80 & b]U2PLL•P kx͂mfF6-Bb6[ŮCFes{5.isU$a\ͨ.ԕfxo,&b"*** 8V*ޙ t@E0;7~n)&F Vٺ6C:vq@^!ÚPHI&ѫ{iNټ^է3SqGHPK=pN4ICvH|Y-}?]ހD8wP#.ED h 0@81M&p5UPό y/qp3L`l̲A:=m[jZXkFҍ-խ[mB *`αzZ*>@X^}?{p"& O]D7" Օt# t\G&!ll\N]x`ue&#d:XarNaA+8F{;ݺUxB6L㸝qCs0I0֌r`ot-6NnpY[ ]ְP:޺3;"" TX z;-)m-*6*Zҥ'Y jЄ m`*9PcձGg?;2D <( {5Ud DR / cQ cly@3?; Ņɷw]L'*hj;eTEq"bwc%m't 큚$Apc oʹuˈ,H޶tblcIsb#_-| nt'dwjY*a%bDҟM=bEٙ'K$B'uN:ǐwnr??{MT$8M|6 ;?'vOƂYeFҾG$;qťA_VaГ2g("""( fR#65Qċ!RT ((0STAPLPV$%UDQZ(QEA1AQQUSA D`aTF(QAp>̂:)`{[X"ԁ0CK`j!R Fq&hQE )$( R1&`SMb"-s(fXHP jB<3$".3 fJHw`gPΈãoeЅ-I"!@,V2,ȅ%!JQ3 .5EXTEcH  1JD%R˫`-eER!-± lFL9Ǿ@:ܟ>xlo (`Uya<-*D7?t9Hjc׆8;ɂ,TPDX*(q<Hɽۙf. # #:(()_vu2; >dsooh؉bAjSkV 7ȅE*PPUR +H1R!TAQ2%LEHP4AMP- @RДQ1(LO2&d(ZAh@P*Q=͆ GMQT60 n`q2d$ళR<;bA=I"SDD +EE*STM1RE 1  ӤaqQIdo9ydJ+;S$kITQELQU1%GONxCvD!O PF4upko#p ='hhhiR |p5nϛ=wR~[1DX_."Kd1r,AF dTb (sʔ30bF#&![@w8 r'"%$]6d+F1-v sѽѣ\̌gy9.ۖ.PN0-2 >9F?;U`-ú"^+q6z8P Ri$6EvA }K{;enQ Ks_{hvj_Y4`#ޖ;B̶% #7ilT6Jrb%_+xZ&i6"S8dFRA!*TQa 2@P. `-ԥ@"iIA$̍:pXx@rX/73,w])@e&T`D L9a%u" (La #H)tcqӋm#Fg\ G- ڱM <@mKUPDp HH*eI[R6WoU,m%*ڕP%S:E䂈5@4d,WE,ӑp\Rrp1O&Kɝ]@i`s`Ef4hĈa7JAtV 9CDb@ؚ)+ $0/z;5:dgCp Q*vpBg3NNl@j5SULIL&XPO[kˊUXۉ./02+; Vyd&E,t0 " `pƴQKTRA @& x8!C<7{fGL>gQ0QnXl3h`Pg׌rGzH e#X em͈xбvјbk `JLAa(B%b5GO[J gZ`(xc`I`@L. 0x)V4A$ɋ<̍#81ɫ,C9樥G%*48/.HP @РUUD3 @ G  @9&a))g1#\mdD%@S \ ċ\J @LJܳIR$[.JMFd2MV,QU]%b!X$|$R@A)(ulPZSIX2UTL+La %2B2 !J  @L ĩ\x J`(bD6 I c )RRP% ,( (QE$BPDfPs#@PW2aB@DBV()`,1$ćubȤB2*%:PO*+P(_QL@pʆ;6-])" t+PiDK)SWZ7/hy<72W 2`dj8*lIRXPLǖ/C"zJ)XJq*%]B(IJQRp`W9C!ĉiȲ4d3Hl|'nFdv;%ƶy\!niS> v[%LRq%  {=S|#f]ߵ|pT2X }OTK *$m`00 )…%$٪)RfbpYpc`s7}Jwb$p<#7#D Rãg/7IS b"/htx↻kvk2s=-]d`z D$0,G|`ŒH$. 'ͣq|G"'0Oc;/È@,|Q DޚT$(1M9r-z-/Qxm cpoZ|iX:kC}jfb0k/})zЦ",coQ뿳}y\p G{)0܏tf$m`o݈׏e9wy8&:F¤8#GTfl ”\ ~7Q0i)ZN@>;aO!PJĉ Ӣ_T 4 ZsݰWm9 ]eڗ_~]5xs5E"|ƞ8~KuW3?{U 0ݦG]W0'1/-| Z?,f >L=cQ )HD4Ny#J B{Y*RyL?d0yێۤʴG*|z]D@s=wgϻ8gO^ ƊP1c;-cH{5e܇I=WGw8x>92@Z78|:s'S[t#R 14ܣxt~;_AH4R ՌBD#GЭ B@AQ* y +>Fܤum8,i?3lwrS;Ҭ|-}o1۵ƥ}~ӫ;}W,$pCItќnJ}%9\o'sBX#_ߏg"Pvq mZyJ^'"'3T-&_N/w7@7˝GiJkw\G9hL&!i(@ b\@P{ݏosw`sAT` IOB#&0m8S8L +-,4>kS?? B!Yzi)"L Kfd*(G4&%pah@@K%?G}n!oIv"&;^xO BCM{StøKޔ #=B8C j4Ū1*ry]uD 1@9YD9-)Q(`Х%]QqGHr8/<F${.S~g46D_]^G>g~<@D1$)Zd*׃+uzB@^RIeh2r=t/6U3ay֎Vٕ)`ATq^ p7I?vecM/Tz"2IbQPB#Ϧk75Iky+Sm86S))$)J΄'P8J,iQnؼw3Qi@H3臰6ߓ{?or/Wґ)Iqos?G|)% DJbnӞZu^o.zXB)MPGAƟ/_Q7Zu K VP0N夂 c+X)"#P2$ *( p@P"pB# ƾ(d=sH2\k[_>q5M̢:&;8i>ƪh&!496 ɔ :;d~+J߮H) /{p(+G~SXU"@#0%&3*ED!`22ĭ\D(Nup6У$?3c>t>']D:'Mzuv*j"%jLCQ/ <S4sT"܄e=om:UnsG?G>4f;[Dp  ̄"Q-qLˇ?ÿ^@ӣsX;]D!dΝ7O+üa3ϑxxt&s@ݔJ>ːhBP1}7_ ,%?egwֵHL[Z|]J$?Kno&&ߞCAZ6|&e[p?j[g8gFYaj0˕{n&I >9E75˂ ]v$_`4QOξpMI'"|:9&lrIUtXV:Op~5sPyOōPRH/&{S]fJp}ס)J;Ҍ-Gx(^}1^](cTZ5萞ayWDN\xk2JD4jFuP@"RcG9 svm?(:&&_,7Rְ+\?>Ho]X1ƞ13PTFOd Itawi쳭ɪ/\-2Yۖ0U:[1ɴxS9ӹ%!U\u;s4q5aNv"j<{kv3#%HXݽ1aüNMoR}(&RFK؛bTU X,wx7̌( (cIrU&ņ.V((i4<:Wu'UP|WznXJʏvq9ڈak dTq1uzbDzGD؎g^(v0m̆ThcR;4v: "b9" xLLLJ䖑XNp}GuaoeŞi>}Sj^t.{<ID'jn?giE#ClxߒOy!Nf5QZ~kOT羯!/(Q{ vM4k2t~9L?乔W8yGI+ T"r3ѕj!| PRugwpH%$|:==<}\D+FC#",Erg$5 fX(GwJxc ȡ_w[_Nzt);'BP &ym!ܪgup7fPY`VxcQTY3,1voAC:1z:O.`x6ױ'J|W_??zsUdrHC5E\1@}9O_`dϕN _˰d=l̽@r"y2yq7TwyzK!B>uXa$${0IGAQ uFF2P9 Aos}1w!WUPRR9,@$(Ģ٪;!S%seFgI3ey5W߈:&&A#1v;4)UB 1dEOE @$Z(J"V!(R*E"9fhtDASTo(=x ](t0bTLFU)J0eSHLH "~A)!L_]om טcT3# `AZ+$)$ 0QzQPbu_tQ ;1]分Vr_cG8k'!OxT^Jp`SA X,ȖD6U J*"*"*"j!hBpaNdQ@4g{Ɪ2F3ٸuvtCDT4 ~yu@q;%\@B9xJ!7VE4cA+HATAQ1PRD!J$HTtxL4R 4DPKCLBMSKAJϑIgbjKILʂJXL.1H$B@cI n@ 0ü, Js"(%g$YHqrx=yyd$!νg&%g/pkP92)8B@I ­#07x&\{T="oSvA]!0h$(j ah&tIk)527Zf" * hVbf 8`:+n1()l:r@`:=Sܙ'2ܔ'/\θ03QÓ7B #BDedCA`B.PPJ(# QiS*fqbJ II.R$! D9 G95W  zY1yϲm KZ 1 ( D(i"(h T%PT@1 UUDF#%0 ,Bҙ8.ys!!Ɉp0#llc`B6-)1BwͰ.4VG:h%H$ER(8 VXB*(QIX*IdE ŒM4$N#ҫ44RP4С ! D"T #I2(F @ .#І$a!dpb\De1,șJaAHCf@K;5IY VGcNJ|FGƔmv{ *௉~9MI(Z6aXW SH,TG\mzX۹[KL5Cc}lԿ`-PS|_ ḘɁ/<RfIwl ( Ԃ`(@<яqX)w?^8SΏ 2j\WE[BHNwYAoRX &O $~q##pX:t>z迢2ՎP7(+s[jvx< !'L"K䬓55Y.W+5j/B*ARr@Z P9 HڂȇYX@$mqf"#q>*9t 7_\qdz%h>eӽh7yb!J+ćx3mΎ^+׃^61 D02[xT4\> Q@hÄ;4# ~L .,r`QE^MD"~{UaTJ°EdY1eF092 uC h3id! DM +h5k"*J*V%h*6ӯ{Λ*" TBi2>og}n([?5 ,!]`sd\4Pర`T1$YɜǿWǓ`Phc*j"J & h`A1d!VT(q%eIFsd̕/ !$T? 50,)bN[-ٱTC@&9uJ6eTaȦ<,6 S*D˩u;6\#̰y]\j@TQCՐBk҆OQXx&* >,#&2G`0i! )6F2y]GCCx0\GIiqL:BDU'I2;?*+R]ֺMု*~ D3Wvp1;#pGh;Oڟl<.r&`pXy= !(& $BaP爜XسP1~֜ƾ_6T7Y# Nc)z+k 煤&}: $B3|RN8{ /Ԋm;J^AOE,[y|"+'Q|c6ҺPv_Ԧ`sz#']B㴋7<9ݹԥ/ qx~>iɱ?z\ȃrBqR25Om@@*T)"qaPư%BQ@m—%,JiKTP:ZI$@ G+1t6qI,=ipo0~{k"Vtx9o 8'vSdX;2%C;6x֐w[oWsk͍ґ۾ +}&D_DHrGomAOhOQLՖSj'kr-ۥzTE~(H*Uq+c)ӱƀ_^A6q×) $/iI VaPЕ L@0d C) @ a+R_?; D~?qO~P,T$D%dR H1a ‹ K -z;2vĻXiV(ރN3 +XI&&Fbb@ʘd=d`Ă:CF  qtCSrދslPÞEMВ]-f2 hjJQDU AdQ'sm܁I*X$F 嫀FK )V0ON ,i H*c`s~c7?Gw8CAČzP}a+E4 lO&絝O J¢U@XDP*%AU@mjĬDmb5BZ6}" L0–@f mw!M,~q/4:! `$/|U85r:Sp7 *A"0o2٧.fk]v\|q*/p$ZAƊ'tU@;r6?i\ $ENB iH&| `"s"JJ*"*&Y,bYi IA%%`Iy}ZS. Ёhi (b"*xL%8RLЩ&!d!2 8P@6;oy {{;GɮȪ`DC᧊0P7pguZz=vZm׳x'gt]l/vhN{82MPuyɾ ufaD!c=Al]tTF4BM nJA(gz C(q ;1.y d%̴Gdcg:684e(rjjJa<j?ݛ+^PwԅA@SZvGg)8+.ii35x6Ӽ2 rY1C J_ýe5K=I̷4iX;)#)`2n..?CHcxKCq@m’;K*'`npzԥ ?yU>b8rKX|oU9WiU, kYHZ*HCIuJmW(ۧm=Q=bJ(*|}r&M+qq%@z#Ov|:ZW3%1S{a~[f];NJCD .|q_-\$xIɆMJ΄1;wIHŇ_|F#4DP b#TQZHQETJXbJ ŘAT!R .  kV*h%̟Og,Gs4,L#*pELFd1v}Dž4}Awh9AMoΗxKܺZebڑ"dSlQ_L>F:.'Ym !K) oːrP6XczY 9m@@` #+Jr,gptK,dCN\l$2P"RdJT1Q@)b1;0n$i6"-G7ޢs;\G}pnM{w?P碹ՐyNCɌ"@ (, jɸ }G'}OOc}9G`pqTT-CuqRůWH))FN:@)Kq87LTTbTF5+RfLE8hL5(` fMچrpp8B%aƉl Cvs%t]6Wa`@@ 0 9U1")jt4EH *JDJJZ JV"Pt D3XƊ! Z!Erf6Ji%)*R(""Z jj%(i h !hj * H A((Ӏ0rX=7ai:qp")LJ(±YD*I  H2b;Rw&6TA󑿣71?t xdErܺ=NSrp("R:XY02 "D Mx4hm Z;Hrq oHCdya7sdJA12NJri ^6B!k.c9RgB3P׸+KDſ;#pMI*"(TfJTx{5}w#ĀtI 4dCh`TXD"= bi6Ä"WSx4FZ)!) L5"ȡ4aX֥>u@L" Dd\ISH2&I 3bY1e$FcrVI*s0UEXҐ+(ԃhAd%LI*)% lb"JqpX"#*C EYhĄkG@QUX9B0i"l\hD[H\j̭h,hTT-DH%PVTQj.\q& X EV *a")ca`֕)cnE1`\`X)+YpH*ֈ3QZbhY K*BeQ9$RbhV(fW0`b  && b(("!" 5I k$1H 0jT.eD cBLSK.uf -DHRZ(Xf ($Jf H%0 ֙t`Y0rቁLPn:FuL31Qֱ*23N\rZ6rec132L*2ha2YfYI$$HQBBŌ Y1"0&0HaBB8C!ZFB,f#d5a4Qer0@` X R d-EfUi 1Lpdї*1 YmC%ZPG$Hd(0EaF%H. eHiBHBSTD0-a CN^ܫ88d¢0l*U"H (* wk|>GGcPY5X0 @Pd+nքombY?!jܝ{D>Ic1!!}XH烃K>왂P=CR,}B/?UMk[A&*<gdk# eMHj#RPǷ%5sJ/{E3Qwr:,C#vdaL?ߞ/;"~&){hHׯa: ql=a( h:P <%BA6=mD)i8/ DeH!BXb"wq;R0pc"x)(@"q#Ud$Z4 .TVb!iElAFa!n9> v9~ $x H@"⩚B˲{=a@LrUdGĄ0 0R4==M(X{ǻ[`\ bT B(h)ZbW9`4+01DLTU0L@3=7!MBP5jiG1(b6,ox${n@S9H@ "Thm?n<՘", , VIY DT(fP1&YKihZZԌPb!U •-DRkDE++S(Fbe-A"ĭcmH,bҨŒ 2(IY[e 0)r0)\q @XUEZHE## REZ2 ĹgdB( ֺppT0qaRS,@($TdjTkIRBdEɈ)V Q+ V TPR d)h`eX#1 )" , X *a*&*IR1 $"dK$4(‚B#*!#)*C2Y 6@12,#hDЪ*A@5@ )@"P81R `T!LC a"`1Kc$" yYY90j{ 4~SfőaD w9A$Br8uCKI@[x0q5HA@ЪUAESҥDIAQM-H e)A"hh X jTGw8 W@ݚ '# tX{rCu{҆*UU~5$]0Ė"0DXz!}އon:=1(qzc 5:k cEU5E W/W"Es@N 0Hh @%ET44DDTRDR JD9iŁ4ta[{sNa4֬a 1DbQJRjBD˽mE׷/3_B= %PTn!12`U(rH,„0=yf=h*΢2%Hx>K5|^h//h;&(277JB!C^2eE$LTuꐁKTEEQ֕@ujr⪈"j%`j{j{1H … q /]R%ty|w>,۔F䂔@!JBBSK@HIK@L%Dd =*k:19;RfcBSae0 `LO`fk(q` kI1*!0@f3)nP)LXܦc)0ˋ!ndG#ZK'(>ɃD|w Xp P*@1*jI2 Gx}Px"7fRXWTj3T{'b5eqZ9A(S{lZL6׬3[59BAy1u֗`LIc shiKv2Ͱл$r9M!EZ ,VJU0H\AR!~72Ig9S_?zI>~ QB=QKT9&=PDtFŠ6gA85?NgC΀J" KQ̼y(gwgqk A8Hs؃W94 .Â#Hv'ް:=Kn/`7 v&aXl 鈞 IbF~|Yt7MD GNɍ$77h$@6da@@#Gr3WD69e. ˣmuyÓOA+2z.Jf`czZbj iPfd*jĴ4UTTIED#9\ST]&3k=` $ sgR 4,D0&ɼ7#n <7hWp@U\|6{q{/8u9 p kh rSo#z^t{kFN_e2éЄХӥ>NwDELTE0qw4ln+P')&AP6Z'.vw+(3!R vh2H ePɠ: ]wqp0>^?6rj1!sち wdˤ޽d|o{\;[gҀg/}6a?ȮP]󗍞t}侧p'oĴi8g{8?"<DŽe'Nv/e&/U?e/讼<8ȁu}R•~]"`xr߿nίIv J,A8¦. %55YL{6^>ꀹ筦 |~8ս^~TL"#eb~M33%,uGP" 0dz+7Y$sB@/F*;| ?@[6WUq77B;a vc Rs \N8hp$D>ǡ{yI֠>)5"TԂa(Nꫠt{)שSRܻ4Nelj5~\Kp~ۻC]<blW09gh @3tֳzk7 ݃Tvu徳wscNs~^bSa ?w~StbP1F$﹩YI3vEuovӯJzJl;y1{:%/R %z6BI㩿3Ũ0(b_~듕 n]?E!OσÑȈPYv]am>¢p1[(C0N,^Pb"kv@ ~;:4/whϰNG#PYٻ6 "so1tFdAeTQlF"X[mQFUUFS qeTZ֥(U¶RmLE-c}~o{}'?;U[2* NE.2ig#m^zbwȲO o6<[{IFufɳ bZI_lf.4j]?]< H`s{3r.L]'- SXq_HtIZ+DAi),ҸIc"((ElYbI)bdmFT P( PKbʣ2\%[mTmZYKb A18UE e[2"*bd++ b%UD"A*BPE!DD+clZ(8ʆ ?~ͳ,mYQ%?FI9`-J09Ɖ,b"Qęne#e+X~f1Qq  *Q,bD,x4HbZ5%@DG,ZѠFJ$“(`X[V+2'"n`9kj,%K! *~Oϓ'\mZK[lh}=6QUbY,b,b(J*¨Z"(1UeE,bJZ%*$E6 EOXXe(/{:⪬[YU%A 1;Y(UXYQ>bL@Q0 -!JXjjXbȚ*XPd +D%T1j5[(2J!!)eqӐk F?ú($b(3V+#`mQW\ZZLLbʁjK-j4VF`8d$ B\F)[!JD- D" $0gr 1Oϡ! RH?'IETSCUDMUPm mA([)F(`';5pթ:}͙A) \1%%$B4-TRY ($iDAԄ $8D$ D1 #K 5o@Dd~FjB DTg/59PŌMO>OoW'760eU줡bY>2k<Ty$ + 8}ZT }h4&)"Dl{iǁ6 JHhRVjxB( rHGBeT9vą0eI&F( W ` `b(X&PM" W퍝_c9k+ML 4 PC1$,Sd4`OS9!jAEJBք%HKB(0v$u!ۇ:X > \H bP:&{_䗐O<iӾ[,-`҆:=^pS0<8lN0Zڅ4,n廫>d#Kh/'|CЍxZQ /b&Ebm^S'LO{y8*v) T)f*u49 E@~G'S<e  :kv89kn4<@0J4I\Mӱkp*oi76U 8 *v>Grz ("BJwzkò5\At:Ryt$J:+ۨxjHn[~E3:}3{TN`Wh&4*@REhb" 膉Z:;4C¨P8h|&4ݢ6 ;@@(gohN g, :D}~l !qU !;+"B"!S$Ho^(S0‚m@)>IZ&(&"V f*$_lt 2 ;{RRҵ7~@{Ma7$*xt]\=CNNl[lÊkhtWzRW!_9uDž ЇID Opׂ6mx #VKL*TRuM!IA}s"^o1 (YH-FRl( cm(Ԩl!%#!e(PB¥I Y?Z$$H$!+iD-U1+HAu(w~3@P$P퇊!̉~7Zp6^CDL,İĐ#E!1Vj±fK0 m3YE@CzjΏwKSh}q3ܳ%7p3)+$S B<+Iu+wZB7}h|SL$;K]/)7DZ-:>|l@i_%mm(ru7No{s7|8'AB vҵ>W>1/~ٕ\-I3زYZVbr$fq͎]0G}ᐒћg$^sZns/T}ͤ"<8 D!@lKo'hzL!1=hqX]cre2gv;ÿ@mbE\[78~j9O`pR+S{cݻ`ٟń]e04gPs&@;nKW;z}o^gilO`P Cp_8Sj *(h:BqO%[YL&vC=DǤNfj^l"SS_n9zyn0&e0>"="n?= 1B!9AMlt3K$3u"`kfH d;k8Kۣ^!,xb#A1UJ2mJ5@1HIrf8AqL8̪}YLlI#v6OpO'[euo2}6T* 9Rd& Hs. `G~@DaQD|]̠HT߲9PO4*W|z'B!APAT (kGɸ^Hs~H7}\#[,kCc`+O4wM ƔA@% mSP"t ID9J(pgZ5M `#@ P۠'.@}ŃkXp9jLͰ6S1ZRXY*/+dWQ$ d~>TWlD< vr \\9LIWT{GLL ȇgۀ63k۟ޯ0o߮է )~ۡ"!%paRHTHNzqtwixv!õR0ˊ,塁w:$J@@@B# dZa8i8E4pD+spSm5~~TyHT??^? T|T$[%ƛ@>R0(OwFgB{y*1mt^t[m9/v; .h&U=A5%Q0K{0VBNֆSPJ`5IH`cϤ6C$:P8d7lBHTHEn=Ν>*fccllXqv4}5m+abL@}D~C7ОË;8S=/=hx)N=}iI'*|Wk%[(yB`o_wv{ޮ=jZUDb"();Ƀ E*%(%񼪪2"#wJL¢O U^59ɡqթY**UJE+ e@f9a9slX, RFhhA(b`ج+YR*3mM]LcEHXҢ0+(P[ӆi+T4#EGF#A3b#,5,̳%T咙4"exDCJF,w06C\ac=٥VE^neqX-%PL+%*[eg7")EjFT§LPJYIUkTM#2aY Tmq *JU՜h4KN)F1Af Әo JXRNmr0QTjV UEQS(0M* ZXL,QE1lW eIDRjM]eZ\lJiEEL7Adž*.3 45 &:MkF#(E QӚզF s6j\ZR7nLu7J%b!,UU$2RRB8; H|*)9<~Ɠjs CoQ!hW&"o6Ӡ'{'kXޓ>x)ۜ^>Xk^Bwug<!B(: 9tB'x<`qS<|DS{ǣ_}V~_U0 J!ٓ~~.5 0uj(.MM,~380x% ɇ06] UBX-m2'9@%spDz4.ӫJjg,¦/XE4..k[iwTPJpM9ZSTE**G8Ԩ+bp*&f.2xUjx8v;ulm%bɡtg;\YL€wu;"DM!1.j.baD"1Y؉*4Ԫ:ѕ޴mt5aI㋜g" zƭ3%01Q 6D;ޱc*bXkG51DE`,nZFA0!PE ]a^  f`3tqNP!Sk1.,fXhT2T&-0eAo*hn缘ӭ64՚H5f`I,C52iTfVWJ5jqUqk2PEumǓ\7S\cnoFt~ïփ#1AL13!eKK܊\0L[E); ? ȐuL0Nq,GNDK$w2H@0iL5eM]8Bͥ***^GHl/2z (LfMH+muL(ÖIԕ޵ h&cY,oRj`3+V4!CbXP S2ТDMͳ!.ajhn7ӾM2"i` i$ZMa2>^p2TH g-LD5 NwIn:ԤcRuk&M.,U\r^=߭S/Kņ$M>e+q4a#a&@(3;E4ĝ{,7VِEiӁmvsl"nɀ#*{ ^eBBvuԜoB핵El44jkUldDɼɊvHACZ8ѠۉBҡ5Ó7f9 Z֮[jkU^RZlb!*p7:i#0[C4m!Dt5@"ra#zJI4VX1Vc#D" u9ēeS NRx/]#pBEel VM(d:Rȝhם 'Խ3 &@Kt[Xrj5.W7^y7 )IhZ٢Ž$td(VSypRbSF'-{j"EJE$QD  M[6ƃ# &BZ U'o<BDTMMQETQ4TSU%E4E$DPSARSM8p L~|0lE AٲDI"hЮ=Y(EHQd 6S:6@Y+Hdbł&Z`` kE1WCG]q| a(\Q &3̋)4aӼ BCi b@7iH]%rpeY̨,XB(Iz 5͘0V*l 36.ٷFMt9d@4u H"eD,L!eD<(Nn=cZ#`_:Bˠ@ Ugۥ&c&!,t1r\ɂVCJۼ4+3N@f({-:iѲADSC 3!uٱ<]\A pDDA<ѡRU|=ZdoOj[@^J`!|g-ģyE[ 5'M wQBEY<7N8,PIc16DA!Xc׊#%BZݪ)rwFB5w.gEm"KtRr i ޓCK @)A0A#UҤ;LiiM4-)uݎ5lQa&D+& Xى(BɗSˠȰ%SĔI$d2a&$2dY_%aqUr+SmHʒD#E83&L`1C+)[pnRHi1;]2A{э{(bM!Xsa–kF[KmK)!@;DETTb-PQD*jJ jah"(**fB$bt ͝j@CeEFADII#)H2B Dn0恱S!D`o*f8rrVE|Jb((S@!i5,y1*1"CĒ""eݤ !3;"CC! M(s\?aL g]{ dv) sfM*Sl;P L;XZi,6vFqĘ䜨BrmfNel&UIl $Ch1W(.FȦ!G"Ѣ#l& 0m,@`akm*UfQe H2յcm c*Zb-ipBBl0r$Boؕzd&EN0PYgK(B K4l>cfC~ē "ХPTZQDm(heV[`kZD(VVDJA{^ܖsZx !06X <'/ް!^7'8嵐71SXɁPU) Zs-tLGI6,x(P'v3%-L JRT}cd7.yDFp! PœBUUUV@\pmyyc22|\Bd|Ʋ+$o.dzӨdˊiQzkV*Npk0$Jp6I,tjNt`Y&^fns˙s%J^)4H]'Hs, Z镘̪e)!::i> ">>?5wy1;I ڍKKXs !Z&XGBYӸXI"Pgt3c<0#fnIP(p *RÒQv@ٮq8Q?:{GM 7ÇO)srN, 7@tz"lQ0 Q~]6wMie!fMTo䡾0%r((*)0 0!ZP-EX*(F # h#@""@?/EiƻwND,`X jnL騺cd))T\0&h)A`PJ*SBR4RIH*B!(iĆj@ R桪A@FN,:Ŗ dK.ERt&nYXmt2kbL)fMZI1A@ƐȃPk%#K`IVX<MFa+@%Bh|&7hq[&.#ASڥ Fc"2"[dƉ\VT*#U*(e6Ɗ0b@DFZR(RH,V\2VJ j,ѭDRTI%(R[c&L)aCm)J%jPQVj0̳N6s3 erȹY%.eeq s2,032̱6d,9jd2 sˆR$E U!YɡeC&CXj++lq .aPiI. 3*bP+)`81f5Ucno6j RTUҌq8$`1Ž3DiELeH1̸)$(Qd$i\Z5TJRA-A +]  g&P" $Jj48Mh& ]@{U5IdY '7k¼!Je=gz/=צ>>x>A0gt {A l#qQ37J"Ё3@Fuk7tΧ'f-vpugVNX @bNd"DDc`+JD UBdD" T0RD Em[5lߌ{X ; TH 8bf4`QHG5<)9D HPrAEp2YQ{LPe7 s``AC˗zpHL}ttJeO+WZ !Rv 1K;6W: JP'$/0s G~o3©7TTE0MT3WpFFIVŃ,"@bRBU6@@]7yx{hB0&E TT!m[dr6JbYd"@J@DZF$FCBv=?~? ]Hlc<βhY مm5_OR/ٞLȯPVHܡp+՘<‹)&7ص?Y\rpzLXq<ԗ>Ca y546K%{b` l!7WVB(<@?a O a6 aJL._,&AU9]e</W%y>꨷&= nCd=ZO#Y@Y2v9ϘL2 _CA?!% ƂQ?ىaV][7 ^B^?mȟ'qڠiT&BI@@oz>E~UkΉ|gs+%;apJ0yw_y|oOzԮZ*:@X쟿pvmv|o*87a>,(!@(p76ڕpvy|{H~i\gsƾs?yOu韤}xq4CnȻxw QJy_̯3PԠ"`/s4]\wd5?D ]0loZdq!~ Lcl0C*ۮWw0CxAC>|8w|߫k7޸'?"h_S?mPy9CJ5 d%HBA:R!K# :w ~HC?% ?M;YquU;Yߎһ9 s DD[#g~9R+H*AT>Ĕ*/[neDr@69R͊}gG3D]H^޸sTz{o}W>XyB@:`uI@ iT)%$`-CۜL>X"V) $$e" %EV* YVYb3!KrA0-6Q&8*<{>Q <|r? Pz(AVy-E =~ C]6s\M P5B H% HHB5B +J&1JZ8WХ #P@8 HRBL`f_)ZfAqSckZHXMH „a?4MubaH.MgYuw\Wz&X\"` ii""%bJ9ޗr+ڎ=ɯ@xTVgUP?g&MMA=nȹ R<" $D|G(p$51_FE: 3wR3mL/U wL}$~ q? mkh#!. ۊ^hB   wɢT^ 0^=~G }cy.ω]ķ^'P u=V(B>x{~yO'oC҇2)HHRR%B4 H RRPP(i(h((bPiBJh)( E(V R (hR)h)))JP))JVJ((hiT (ZV(&!(b)h! iRIG *AHR- IH?m!ii(hF+bD)i(FPJR@i@iTE)iRV (FD A)()D~\E@( PĕCKEPE+KD" k HRږ(Gw P<_7ߺLd/[o8.yP>zO Ѡ3Ж _i9"f]ʺoMݵtż~:;~|}&4c>_}bN)!懀`P"%b|adp Q?:T.AOFἐ3Jg6o'}}GQJW hZŖRdO+PA>w^GpZgOM67YS2GR0Beb$X,XSEUEE-UU2fPbPm$LB%dDZQ2,.B0>L3(UTTS51UDUDUMSQ4EPUU1@! KJHE\K%%2E1o =YH=OeuqΘ;:a+Ww5۝AJm&8POB)Ce{qxּ᳞@rTPsk[==?ӕU{(TGM\rg|s f;{"#!} Ale6ɐ=i!qeo֨zۊ"~h.~׾?d:t[NE\N1׵D%ŷlt㨼ՀD!@)UmU`Fz ļ 9oX^i?m(w2=y#x:%WhKHe%mv]?Rlo:qTN]z_En%˃0 IXԫ=D<z :t x JZZ!(J! Vh`*(B)((JX(i)S0 4ДE\يP.C8l'{u(QBM 1QGq߉lXh2L "( @ΥHBeX%G JT B e=HY4 DM{D6wCX"Vag&T!Q  !YH4(1#FdI`?=55 b t]gg@~JCE 1cWrA|%ա{rU˭S}&K[!RTP qg s }z^/Q?ܾ{ϴw,\Nx T23q:'sAJWQO8vڔu9!޶8 oC0"oADO&李>a>`VoP MrR}^[t\d;S$oh h*ńmuȅ.Oʓœ2zP4}|)p|?SrBCDvJC߾/{~o}_U|G_<)k5Z3%H*̡g$O^^@sRmC:]\I2CcaRqU*+V6 jjo 0}n lz~_ ~)u-ssQwpL`×0)CE\o4%)@yctszN7S#)+{y]CnܹLvo¦EBJCo1y~i77!K决`Hp|Z^ @ٌ@aD%T:~8n(( *}evWm'z?_{T( Ԇok)e GFY_״5Η|z9Kӿ-Ebk.!b7Ahj^Jx\ |@ܿ#GECƕC++N.阙'Ʃ_@28zHK]Uqh O}nB3Ǐа @ʤ^h/~?=_tP6w!g Ԟ1qS4B &i:pjk?d1Qߎug:Rnw}]ie]@Ya=TX2"`JJDe;ۼtJt l{iOmO@T1:JڗZk-=ǯũkJ@toC*+B,"(c?^ Me9SM&+TPG|(Ҵ%M2LS C6 @Ep +~@PJH9? ?LQ&"˅>^,RN굚  ]g/aBw>6V[KԙBF哈`p_eH.V_/>@2zq$?ޟ(ݏ<1)L>*_2_;F0q0?t8ķ1?Q(o*ь̈ed#9w@#D:5|T$F~~3%cqJ^ *k]3lH+Vh+}w?? ) 3~5&#Օ]F0޵rw;d1UWAKPc:S/JCkf)?U##dA[}J>_M4Hn8@nDAǁA$tL|4L'$zkdpdQu) qx_9nۥsB]qpM ]gw}0'/-'y1V+„ܗWW-Zq%Kv$\ƹ-hB,/Z5 z\ɹ#n֛S򘽛c=YԊ=/$@c%G{6 'u9}ʽ *)5 o˲Srd5,zh<GQC9$ɷ1#KOk_ xG O3E^?kM,( cI L*jkTx fO~;sBXܗ| |/}Ւs_;QlI>٠EcMQ*[OIP2L$91uk?2_ 6ϴlY:# ~h#'~#A Xw't݇oή"8˥u*Osw=?-\wU噏b{Yۯ8b/PCbTl&5נˎ\^ioL asT""!3!Gz6'`$Eu%#{>y4?}geàc4Ȍ7ow7wYa{rXBv6١Pk1 ʟ988cmQ.tq_ (2||zmcoJ.q1#>D|f~Gj/)4߿[-0_Ɓ:Kl.(6"7WNLV'PͅTĠaqmʪ4[e{{>_xA*wkyMkOug؋Y2r \l1Kˏg/@fX]8u- z&̹  hX_.5ɪ jL-^޶GȫC SǶ\Ĩ׃, g='@a`|קOQny$ln 2bhT'Cdqb=\ŁNLaRp7ٝnV"Ol>Y ~aL4AV=TV |{ H()P[߲7G_/1ٍcQF:nF/wpV$pmPhLiPnYz3qf8,apj:;^Gj|r7U򞨔%c>6cGx>?fj?dsugwzӳ3<o/R_8;bII>nYCKsGbGz|*6W-Ekp_A{{ }ٷ5<*|wY~C{x^N% -4.V?._h7\?sH,XܞicEO=4FœLE_ƒx8"k݋%;5Q ؙ ߹ q$p;!6I;L$B>< BҁeiܓV T #Rϳ$_67]Z'&Q^Lٛ L¥5=z[/)]S@w:A g5_WKOsadtߺ0eY4:V|Ȼ#[Gy'B)oK_V 9 j-7Dhbo𺙁 $-~=P(Wya#=Kr&D%,SaZ3 cj\%rsc DQj=W Og5}W,H+ ;DJҲtK'%at7&d>s| j / LG`PAv'ĵ|% 54_FiC_?hrhnX!#7`Y{V=Ф:rT"eQ֭Ðf@w 16ZSU$P'*J/r?*دj}R UJ+ԭ ʕ4BƖ;s|(Y, #Ee^M#SһS}ȵMx_bP>9GIH[-Qk1;4̪ÍcB?TY q`$us.K!zr?k#18=DGIO~ '$| _?~.Gˍ?c9=>@oGG!^IWn4KUJ4PȠq,`3zm;$fH0N" IqOuC67[C$3*8¥D**A2pʾYՕL$菤UBUA̟U HQ ǦAHQ]=woЎP; _ ~׼j<>\ 4TAX6 pZzOǵcatx uA ^J5!߬.ܗ GLeIӏnЄ14VY8 &|T{\ΩwEuBdxcXKHjTvͩzeJ R_pMg[eLgGKyŏ']f$ syM33L]rxF{OoXVW`z$\hU}UM};QnuNEKX 7`F\x+yW& T҃]ںi1 zće?[=ћ#bY1Lਆ$U4d BTUTEf! C 0ugb 4$P̐Bߌ(ٺ^7mL{Ho{H~iU_vd觺sFφ*klv0w#]6fm;DBK( %'_/m0yÅj$G3SĞs߅!f$ش4qllIim+=hpB?7s?"}Α l?'gUr1:*6U}ї'7|?I\>COv@zڇza6iU0'+l;Q7'!%;g2ל9?/w3=b! ~Op-mxiXRefqXFI>\CʭŲ#ɔxv?!/3KIVQ}JBkVV~Яث#M~<`=c~9Kif6_`UZͼ6Oߚ#\?!o!3`I[7PB4hWVצi{ℸnw(L$S@c^ $Mok9oun='[LIr1i-?ٳQ*ǵJyqkt_(3_M55~chOSJ‰wvw>?h4p[]0J3t8[o<'óDt&> InvE,o3So7J)!Pow**Z<G6 b֊Dձ ݛ#0!S$P OUR{PReW)02}w҃j6qVAzy&+7ݙ8 |XңQ[HńHi31o@YM?*s]ܺ~n Vgn `="E,(ѿ˜QD vMFGᢪutspbɔ(+Cl`Af.|JT rS\ZMqD4>=_-bPZ+:{b~eWL@x®h +77yy=l)nH5=R;o{kúZ"UpM:u.{g! K`1]λֲo=Tt҂֏M'N3UZF*W6hG5sJ[~>;gT~rkCEl=D&x6)fH9`/)M\FAy[$w2k,_ҧXGhk׮ρO5HZ5O|D2G,l*I,r^qsNRL*.Y8XPY+VՉޡ=BXqub(^0FAPxb%Zc6ْub3C v\a0XݛI$BُHDث2VI5E?[H}S,ME!别[u  aOLG+>XO|68!7gnOe ()^ yjO,U{\d^b| *vsJ _}M`5p?,(^y:Ft$q4ȻkUzAzKq˾9Qw;',\7i~Yu}<, *P}|{] Rp9!ǵM$U*S7D=ZbKVɕ@ ,1`9o46:Ka~2߭iWxGiXx/Vim }<-iV*Ӂ\?{PqR &m0F~xsruw3737Ak>^ ܑbz|<#A\@%\HPp,Z C?g'%*^NlZR`ۺ6D r$7t8Ƕ\~<&*y,1Q[)dvj3tB԰,r,L5-3"f'e6Ԟ8ȷ}1_o r%k{6a_g?/, km:C Pm''wMLQ-Y 3Y籋oҷdHj~mD}Q 1voL|Vro9ŧigk]7ur-.=\]͜:]:5R]tRӤAj?Uh|/9rrC6&(r$3P&2BHT+D?7Gߐ$I>Լ@ ܆ WRHKPB#Y^tQnMD3nϊ$;L c:G2~ &rs;pu$;f'SSl1ӌUNv>dFۧӍϤ#֨tNs5ctUFM3NyI6bN=/E;h"`@{z.3T0:©aLAvrfgZ(馶*.2ܟx[S$b7X#M:,=j.7 ֎s CdE.OcOL=]H yyy|nx|/_~!g@ű"{v4~ʟ#G著2EJ E~kdlJÒߑyk-;iVUN$rh^WS zM75P֛Z?T=cXBtn1n@C;/kIb8 e8:6xχ+R ^WI[\1ngÜWFtT905X373TGTPI8_x.`9q+܍3ܬw<{ Ns-$!DcS"{yqZ%,0DssbQa׌:K ABNջ9%- V#\ruچYE+Ī;D}2fm {c.too'P}MG[gh4OkŦmVIu~,Sɒ.s8?NĂU̘q#Nt0*6ɵNyx+l9@B17kw:W63V3kh0p_2*t2KaE+OW[OBFfPry& 3]cs=dEQ8|T>Ml?+I{sS nGCy,nM;/ ,L <7?R48x y3uA <"z: kB0L\kM^=5lSOShs$?hVd/*mHw>c( StDY/ߔI3(^g?8 bgtdOyw)}H[gϝMEe=l2'ZvB".T.IBBt{w*`:MNeЍ\ =! g=?Z1Fz+hߗCtwc⺕F|7Dw\B-bl"Fzc\I}cIWy!a\$S6MOVdXD! KYD#q{X#;&仸jE=ECgSwg@q֟L#{ߟ6Pt40ausq5Pme"\=WNfsAt,fJvHRS0Xx.tBp Cqb֊En.n&u`+2(@*7.&oKQ^Á`(Eɦ9m70YU@q=FdXB&P_(ni6lJu>8ߔߘ˽_1 A 9c0gS[J!|TTN8禂$tQPTʩ U .yӈz$>X%[kqE9!-uruaB$G@DĜ&mNfX&a8X?0=h1-8+@+Ώ ր/QT4Rʾ($ sBbcYr4jupeq`\3HKETHRs)ߗ sfaeYu8:i_7ùfaU2>O(q Yn\p/uCͨ39^END kk Ѫwoܚ"BC;Q~arރB'#["vc2b]#3XY r:VP)* mv)JXj%~,uc]'ȓxoxKA^)4o) 8QASγ]Z]Z(r@ Ϲ3? "!j~_%`ޥaۆ`NA>){[l7:)Ct"=S7} KOU t̏N$@KPeI>6VN\ҿSlZ;Qh+ TXJ]X=(@ʳY)Q9׽s/CZp4mQ߲ɌN gad-{a'6 lSf *_ 2SE _e]͙m_ZjVϠѬ$p-HfekU1Bj6a/|J 6%5wbe)oۿ]46xeH#P\2_u4d<}+Vif6L-˵f^thgIMu"tw-߀ Rr0KA/POey J <$9i[ec]o斋R~{ؽ3 ܄hq6T3k{S?Cn`5[^۰nR(XIDKԕeiәx|4C[-LL|?l+s:TZb>=""+Sc(`:NZu RikkDU9lQԵaa(dBL$-[}F&AtbDqP1l2Jd?xd:qaٗ.*s|DTK<#t܋=45+az|Dv5+O,?MS1b.&o=/MRPnfSW_xIAk}D;=Td#& jOXjoq"|vz$;d<-n*Q5fu>ԃmoy"5MZv]ЛH/ I1 K1.-Hb+$L[FaWI }[#yI¥B\S7E.Ӷ湭ktIZu_;`K+sIU^[ 0A)9K ))ѿv1j}Y$b)^.yԇ$xh1Ԍi쨃؀YiuxMޚ4ɠPζHPm/w`,q$e{ =-1^7conIo{퍍⟨+dHן7ҕZƙ`w~ @Mm&Upބr '_>y_Kʡ Br=:c ؠW]*9l2| Ǭ/Wau}K+'L yǣ C*ZDU+Oqy)]g"V@D<{A"XS,I*V B? gҠ1)X>+#9|jZxeNUE2rO^Z`=}~y$˃Il'A7߱_揞(<}>@~F;)'dOwNSO=W}fmwpwd|Iד>ZM{:9|=xkTbm2^r{Hj@ZO`fgps?H I_tR]CJ! g]' -\FFgnO6=t{7rO%Eh0:5TR)֎GTIKgZRS]R?p*2|Xͯ= N'|9m;g!mo2w]&Mf~q@o!8[yvۣ(x 3\Zu-펊q5F9=-H2;CYcoYXIL{"drc$i>~IF/at=ʏjL ^` [B?{b.ؖIcfpaOr͗ij` e18$wkCmF6nʆG/QmadtGpy؉iu3Z@A@/Ik} "^J.FvD džĴĪƍ %p\6(_,hSLƈ8KHID5yF-$j`H%/d_ȸgYyNI8\cuWzސ&.++еf`Z?Uiw5ES"ڻ`kʻya @wn-qJ@<6 g`n؃!VH yZ,!T"*o$&NE/.@&ΨYY|kɂ@|gݯq`06Gl\zq<; &/V&朵2I.\rJ SM heQ!mJ0`ӟ$&GrAO9}whU֯7g zVKQRCRwFz[% m:7eK)a;~c<1ɜWdI(8(FǦ>ˎ ;y#VY翶7R7u$nDS2NnuN(]+Vv|[vs'S"5|V4ϙ,!KE [뙞5'M1R #rq.2j\e7jTGD!M~(=4!ucSqfC|£LTrB&5xsewM[6H{$ s']=!j,wp||'P2MǍ3{[xz_3S1ć'xG>!'XoVoy+0=֝6w'i7e8IJoR\3Pg@h>g ۄGH!.ÁЂoPB$4QF΅t5r ǧr/D@¿k i*fձvC 9 nXUxc`:雅 17iQ|fs}[=\SsPN$ZHk=⻢?&/#;tg/Kaaz$ʗy1LXzQ)`OeOZ.Nl#SAwW8Y3HB`LG^;w2vF(P_ 'F53jA~s`ӝ ܴo(C H;vMڭ4c/bF3+uһ^/s<+gH[E:!lYTHNR Gr^nKuʞD?r`[R=knHڀȩ,I\DD3]DC{!vu+Oꪻ>}UP+SW28sHˢ,^j|ˮ r,}W~eocZ)s;P-SoOۯveYܟUǑ )<;3>v?PA1̥r̉>GNU ,~9 &oe{!'ߙ}}@ct ?uG{tT ޖq8O$&$}&nbG^whԌ ČφمP 1ň~7y6rv#؎cו"ix7io?o|i'89 ~|i[(~& ͑膔^֫Y:J,0PzQyb5HeaLVt`cʠ6. 6£|9Hu^ޮJٙ"Û''€Mɗ+I[z0nZd|o9J0Q< h+w^QB Iw:l>$ =v]Aª[վhlU.{* z3o4пke!P <:2Bo\^|Q SYPt?7.˓3]0f'i(G'L~,hV {&l_hAލ|@{;k;ƚpǴNY ?z4tyU}?{&ZܺU1?8{JPq#Hft$pFT9EӬ3Μ/rq sxCIW^-˦~0 %v wR vJG_!qVf~9֯5T\9sX )ws7=a{ib⇙Jn{t\N?V} x@¾N2/a `>!@;1uM:8"|;\~K?DAy%;z@n\0X{i{z`@o{$+7NgT)ٱ~6Ɍjԡ)CIrY8F_ʽžj9oPM:*0G5@c\ gZɆHi1\Ϗ0\Ŋ*o^x$L2-Jz/ 4<)J6oQa&WXd%#FS0u_/8 `TTpȅM7H0֮uG'c3(Y-|J0| ,MʲǍ=7{JKA$(9T֕6}àx O{ELT1=;A?͹4]jqƮ#An2hDimP46,,N$ړ;#hoh;6nvT[y\¥n9E9#E o.4dMG2f57TT= ej>/`7ag+TR! 4~|&TpEX?J}wMy)8/.Hެ(?6;…Tj6qITVgP8O-0qzޡkd'CڪԹԹ\JRTw=ft?J#ӿBndgm׃wC`Վ;T^U';lySl9oDac!ӛSkc~18y|bos[,/*`nR:Z=]DZ$rBfhJGXϜy J?k3=}8dC8Տ?Axbɯ]yi(yy3XӃґ擗Y0P Q:æ s" 6ޚO$o2Q), $L`r)e1<$?XcE`dC(vcM6bD8a 0Z@[*`"ε )7;$G9{[̪W]_Y9=/_xQ4;)J(aGQT0岺%35O:Pl~$E3U&Y&* ;g}wM۹#9{":]9 ;3rO[d>2okrTSe<6.Bh}s4]I>oA]}/uDΎ:Nt,%#-?10!yҠҏڛhT5Wkch9i@&,pz$M(c86SSdy@xSOs9/\ kQy,G?T@~'Y"]P~}Oɇ>:bw9D.O7~hT=BjHWU=]56T4m21Z[[m ?Ɣ,JVȍ1ŸcyIτNOGb._ p<쟯SjznNÇI 7{iN}@<ѕmN]l,TZ]kP),NbS'R]k^@ܫ481|7DtH0|,or>FPR}/q,~Oȗ 2{N{v}O3_+#ŸQNlwὖ@||ڃKk>__'wr/R  Gze|n$PȕC!_fmȠMT99WX_E71=qDjկga/"nC5- 37akA!=ǜA>Iӹ60r?,B UI!sYPa?[r^I]I ׄ'#_% FDՔ]Wp˦FYdz !K{̌yccI?y]1A|Kx<'Ita_ݶs%.>8 Mǩq1*&e{2br;;ahֺ CwЌ /꽶pr!1zX"k u&Zgޚ1XXU,]4 '/v@No˅J$P &z AD>e[ bդFcUOIw(4Іh1O>; _xhцuI66SP|99-o(KϑiPJobfꄭ 0x^Y }XݶQ?i,ɒ?iwl0dC-lů%q 2 'ƫ&r)YРYb;^>D=NFS вTзPȧ2mV24n5#dӾ"eoLSyH2$Mc>p=js)O e"+׃o#/P^z7Tb:9Y@@w7_2Y@CqɁhtO_幯&wi:Z 8h èqS <,y.ݥ퐖5SڍH H{YՉ&+ ]9Mx4M5X[uktmGG-crTE=:);(dgn=вrHz)R𔥬;<#{>J\hzGḱS9j$ě/6LxDO61‡8"I;)Ɍ+ Xp9fixuU4X&q6$5]$]u Lux@ <'w{urEE*`$v1?禒 1[okT>A c8÷!qRZzhg>/utgYuM_F{ߥoTiSq:>OVkd}WsxSHEW-w;OY`E*Q(FVgnV$/p\sWMYxFCt/Sl`_kMzd]"cȽKMźls2 $i'ݸ;$ ~t$ImR&2\9JyεGS A TE0| e7tu| w}O[ϙӛ)L%Ev :M{['SS}g d@O|H|+[ʩ0}L5pX9,*q )d rH)~` # PPq\a+ep<78`J"qFCOG=A?*©{^fhd(ֳ!šk2*h%jii !|YXy`/vAaDN9  @D9\#rx`$HrEf ^SX7~&yO%^s ot)0 +ÿpa b& "T\@J _$XEo\'Ug%:0vuoFW=iMGGiA? ⬆'n; d]f H . ؽ_/OIǺ(IbL|6\f/|"(}BѹM69d:p~4sJS#K(s0褈"~z\O/tLf4֫9ڤ ݌/IAi:S>'XgjFACdG"(w(yݱN2W vJ^c61?m46w3MRºmچc"Šr(3 9T2«SyW<}l+jkIة֕H!c;LH=Bߦ?O&rӆ6IM0e-QhHqIX""L{^0]P*yc*,bD#l2AGAC*]ߧ]s h@ =C F4p˫|2`im7RpB1 a2ddN2a^y8  1\SEƾ?U ٗ185Hq Ic,I''ow˪+Sxfw{;^Cʏ`cxZχ5/W`2jgrDEP$h.Arlܒ _)YY~Qu\6@3J[;>'?>1&zϤ5dBPA9kT˱$X =F-'l$y+gxjb4z2(ܣ1YIx0@f,|螠$^4wKDH=J2̰(g͑_g,i=gV,JD5{юO1ӕM(*Rp WRFIdH4GXĦAMvNQ,Tb[S^0^9əc]RhIMnfBޅs:QP}z/>1ZŐԭ;k Sg}!u7:z7V|) 94iևRϙb`=B6QX=Gky35}}1Q'5Z=Fw="nCv<,J1伻O`,E]wd宪Jl10z-__pM{OWK0'"R'5]T9nf(jhcʋl~PFkf"> _]mk TS5ܦaw$i}ٶ? lšC)~q]LJ /|<@|Գ餜a;%?A@3۷{nO bp47e?\\>h n(+A }:4X=ݑuAs[`>۹u'y{r%t}zrU2 |:IJPK% ]by(H#0(FAgFm`},Qw} :e|0{5Tz6#wA cM V|?a=xƨM;2 FK^jJ^,/[[R7. z5"|dI|$-ͱq*w[09XӃ+qlrFg+g|BO@q '' }>n>r}t#c/ ~}}C_x# 砰T&61~P KWnđdK@)UiEsRYpnC _t%uS9oU \z,][0L"1-="C2-#tLH`p\fJPS 9M~/vufpN~j(~xpK1bf՟oZw*Ն4ȫӢ1c$xFJS;T!mb樺~Ojg9S>ҲBHp)ё e=M˃o͖f'9;/\?H7!4O觜?"/d="-1!LKL)'ǐ}K_uB [f?1?SgK16PTs8Y `KbPF܊Ah j œ|!A] (, O%>)..DS*)d@Ӊە)ӱUK !0&aMܝb֢fÃRKkP|Y*U?@SVeuijAcԓG|Of[.dZ·yeNJ$Z!t^d5WG7,TE(A5 MPWN ͐ ·g_OyӀ & 7{['=G1R¤(wk~ {W y_ ٻh 6먂9Gزt6dq>96HuI"<.Xռ5#o*~vj|{HLR#uSƵOw"QGSu#h$NMt  ҹgd7y=0+?ܓE@KA%3$(Jfp j,/}Tī9~ }$$.XU~=ZbX2". Μ|uH*Tb؇Ϡ{!50zam}\0Z`@XEoXJn 37tb.H ҙdl07ޯ mOw;r Q<٦pAUq/v0 KJU!BȎT?꯸QA/_1~S/p֏LcBQPl>UqPU{.E aPė~2qr?8Y~NJu<,'_wxwi=>пy?yċΏv~KQ@u~k_~?Hٳ~8NE6|h0N9o]+$y*D( CyϽ ~sT6 {Sq }Uzlx 4"-zfίLm6['rOvj|,aڣ>z}K~'R`Oר(uT|N'K ?}fWѹIDQD|@@ gIap;Ho)>txoB왓ֈ'8o̖O-w7roj2YN\Y8 NfwKY]\ːFsN9~K BQRVl_}y!I=C.7M}S_`@BsC,?;q}*0?F No'߽@]#LoFe=<4dDV>Ya&BY}|kWѡ!EZ r8aQPj[wxVBD$( y݊+ͳ23sdvn_TkFj`0CY-sKqJF7ݒ5HGX{@ ;̎\=U:UGfXs|rρ́P޲8?n㗺QO]K<-O :~f.﹁ؕNqz \j~/{zu3ܡ'>r SLdŶtW0v(D 0?c ZTT j.pyT 9$5pTuBjd)DQ^g HֶVs"`3AJU3(LEl[+G4"Va]VzG^~k|G:^4o_;qYSض@‚N _'._9Drֹ$]MWd,ӓ0Fu*_|O;kk,ÿc6U;A;̻ɟj8gC|ܷ6;xzOp&v ʧ?ߌVzTom-gܠ"06B#}/h?υZ \~931oh*haR#A~D:|*{Z$)@QC$nr/-Qd/>A^лpѼaFh(hiϯ 6E_i0ÞA<mwMqr o`(;(kϠG:UzviSfp 5M,mab,4Rim5f]OWRrW d՝Ig'4AtbP Symmس.u#*Ώ%lOH|X.F(z.ȩ+~T$(82Fd]h'w8jx?wܟ$K&ߩDYO!i>.lZ`a+'1[wY8@~jg],jul6xÀ*])ﺭ@e'ڝorhwwO-yԽv`f,.%dĤ@ VO[2nD.Sԑ|0D~]]C7[]Ů ;96k.t5>l+2 E7?<(MFn{_ilv9J0k'z7X ^{eDMښesݙo̗l|R\tFp3-K]dpVb(WÐS/ _K4氢8 A(tjN)a& 8ܤD&C `A_B-OZ]ݭw!|Kct.դrjӇ{#œiC O.]'a(:k (>op:EO;diu,iw,7ZgvF۷VeE%w~|Z-8}@:0c2K wIXgCܕĮ_Ę016lmTݤڃ::=vFjpb@8H|t5\S-ƭț! ^@om1EK73?5b³MCc~8UV=Cty4QŘ\tpzν`5'| 7b~F:r89a8 @{ʉP5R:[C0KJQ~3sv Ps'Z4pM^8[=q w]WP2B+%+ӏ }{-(YideJj;t$ qT֍;DG0 ?_zsw#]j$^w;=no[dU| .4 {RL_& KAx.( 6Ҏ`8o #־,8*0iɁAFOm[&fw9,pq,oM A([ 친٢XmQ~ĥE$~9?hCH4's\AJҶLɈHx^~2ΎLzYQi[# Ҿݹm9}`9h-yD:wDSx~?ߡMQ->^EHDz]+P]==U+ [B:&N`?)@H~c_Ij~QPvj;[O਑5%4m6u^^f{3TuԿɺҐӰ8={aA]h>SA\0Q 9Yjdf/_P({߯1.%YF0NULn$ysޥJXh?E.R^]ޱ EUW*|Bdz6k+6;?nu+/qeڏ =[# 'ZEP*ꚩ$W{t3]c6b[iKLSǮE[ʏ# %wArp-Z~b+zM@zڱVf_yaB[ozhX goynP({m- LGgѼwQŗ6jek$$~ayQvpNʛ;An^@ِ.|F0yw);b:i1~Sf|8<,}`mBO|, ȕ9 Y[t]Fi1T鱄ߘ*A{ {>[mբv({^y"OCT6ދu>>''- ^~q[T3z_Yn}0=vo(, _U2QoL g$U,s8@Ǐ!8_LĂ6:pe9[ 0 *  'QWy3%#׉wؘ~,߉q~SEȧ5sbv^ ik&f(q?UX-`>"c͡53X>H훓fU%jlX! 6F=Y( 9=X*u[;h;1-x<ZϮM >?\HqOn<@r8=8xfZq5=5qs^wr*H,)ZzboظYT|5뵘ّN{3kbUy[Phl֪2DܬE g*~UϿ0r99y/S|`jO΀3A^ HP+M"Pq|Up'87ȧF%b )DmJAQ# (+bG8K09{>&#BP aBޑX|WG EZFNtj;MYjE^氮`W xd>·@n wdlx) ( M3KT E1g lfe*X4WdA!_.rL;<nP,gX3XV EuIб,k3d+&ҀOVTH+P/nOKɏٽ>$qOȾWa?br}zU s뵅 Ph+/WLFᚚKև_c?h*TIȭPOxG hv)?Co_0~|V=L߅:Nz" >qjUzzTB98Zd8>Gxg#Bq8<:Zm( l'N]4M2*ͅ!'c**!RڦQ8I݃QQ<c! 6Իҟ%ȓߤ+Θ* L-B=U0KoTj0KdW#piWK0PQ& ޚY焉cda5K484ywZvgKP8 Щߢ@/?e9dRF< l` F #S'8$Z ș{zǧ?t, +MgyLuv'.-f'ݧgv6Je>:'?4U5ɭ,R3(|ОA-VX!-8?Zalei7r_""V@ /Op 3F }}{X:T&_=/3ڧ-Κ)j"cM(''w!cJ &_\e Ikט54G#q^]|aAC\?c|rqzJF5nu*!?Tŵ;[~5˵jlfGOS|8=Qfjj|lO0`0tF@D ᷋UG䣾-tz?S| Θ{Fbq`^(?%7d gC(E:hAC<q@Z%`@7)ܝB-qP}z)*&ٙH3}cãr=,,E!+O1,ym  vaW+ ?j|&apV?k_YeZ4cR!R9M!FN4sr(UT_txxfK7mPu]s^tَ{1Ҹ?Ӝ!(kvqB$TG0v\!i)Ԑ.)^seKNy?˦k (!F/-i*=%trGa ϔiDHhu.|Pl5־ܰt87i4\' 7g-2|֤+^5U~A,.>%sZ;d047]Ҏq1;.jaqײd.9->}I2 fOY瘟zdi28Aʇѽ@j DN輵lN:EI9/zVީHn}ӴCrVCBh2 U;vygL|rEo(kt>}!pxZ39ay|Ws}]ny_D[2woI}#|Ff!/uXOUuܳjˆ W=$Q oU÷ /8nqNg!)GEZ)H0k}ǫ8XhG>̤͟tDUncY%T- .}L#bA;=*TOŕ A!EI5vQ|42j@6Q\e)&#٭E:-0E)LSIf9B;zs$ IrX!Fp[B2Q͙98`ϥD`G'+]#Þ=+e. o*$^(.ZΓ4Bߔ=,e*솺oJM83f xX x%1] M6xΟaƐ.aZomWX=)dz{VɤÌT(JuTrb9(/\iʖ%::gU&&RGgP 5~a*Esʗ0Q\?+x"d:WoaG ԼuB[Ef07#c_"wMCtKܭ\Kf )h?< H !=2LPVE0̠: @Q,Jj͞  i}8MwitسoӁdE-a#چ#Q%%K9 M; rT wv\3"v Qf~buDK0Zkhd㿂[VIz} >qT#8S  _atcaX fX~n#PN^$LlJ^o"y]W?t14r{(H daOSW8anٜ${hU4,@8&-,~~Gp _Hs( Q4 :c- 2qXڥMVLv%(o3Emނ@j s'_.D{$IHDkrBHb)yoz{V\Snj`EntXT(4:^EiH 3pr;#8|˵+\fӚH u8qڌ}UO/, 㖥pDgH QP3j F2B_̊%nH5J8PJ_,^ILB `+qۃ "+Z Y) َ27ȠG^~~z+ugL!clgF}RE௢d1|NO Ef/ڄٶK٨<7FR5 B\dWcr cn_ʟf{}6&n+/Zjv;Ug;5$6w9HT2*zHZ62yFA R&jɦ݊J-XA-T"oyv5,#vE4ycwSVRFVelÀU7n~ \8/WFbh+ߒb<")Z$E fuyZpTWTcϭL;>67ԷЦٵY'|̅`Ho ƉyclW5Ż[I,Z]e^ϹE5.:C" P+ nݹOe9 uj\o0W4 '>}xT3~,9AB &~>Mb[}ssCF'<\B[/ѪPv '89_ը*̑diV(=yiNcϽ1)IswYOAG_Ѿ ?aL5c8$U\jo TXUSSSS ː-;_]ˠʕf糌B5j6N$a?U**EG3z8N,/{}qIyHO ?uN?Bѻ^g`i_œR}~G=}uNS=~޿|L~쾏1ϡ ? }q˾ =ttd;?i9w"]=:zӄHCC`Rd+'6qD PIg8:G{koa@˖8=d}&[uNzr\'qH #鶝r<{uVC>_s< CrkH:?Y'ayr_J2_:m~X~E"krVTu1?kӠR9 f:?[Hw :d&lgi)0Nڑ]TS>L@cBܮ{aXфn)OԺ-#‹p/ExWA WQbyvɊ-̭e<,19;.و0$0&bǽa .͆*LP/g>2uV&@VIvT@ d"'&06qqGŁH^`!Hd.3XVe>&^+Ҵm!VZ2sD':h Fhd,~e}ʌ6kutu'8d0ofP|J578wOVaZ?W!c;oHLWK!ȆxGglnt6%ó2lRVt]_{ojonޚ{v>%`߄ !(2YPѴ=_I{zT>\#ēR8wQ=|u<9y<g٘@HůrTyЙeDe sLXsXLL<ϧΥ'TcնiVؘ sIdjU[E[xbnC=87PJ:as,HQ%mo蒇E[ӻY>e*zG̸`hA$%w~<2o7 )/q8{ q"+\6EmnCSVX!/}@j>S&y!//1M}$ +#L!UXoov>!Xv}} J71'~^G/tqSath41S9;)|=fۢ~ґ['v>Bw>Md<= `.%ֹi m(|\#y&zF~/R€r8^m)n%DUpvw~{|DkU.۝|Ըg]]P Î/5.$ ne_8~D,;<^" Z8G R>2-01{A7q3Ux(0{VӧAe8T/<;3X#Uj6eSQWUTnע!Vs˲ ccZ?m Zml_)c߹2qvwo4,$L|9UL9]Q*Qޗ@ uOH'^ęR-6=%8y( 6S2M̰L4 3{{$PzrU/.E8fIlwD ]t O| ńGmu5y\rt~Flr%ŸKt78J<;B"a9ᩩxgATn[!H0$a@ 8JBWi`i16u=ſH_[h&=R([ݒ|{i"9hoߚC2Y%V )T]`G i-h|i`ŝ/%m迧PMґɑO^ gAovƲm/:e o[Bm[}k§GL"Xp<,\=Q ~TyuoĞ((҅)UHcڀqs)'ĜKF>O;*(}ɠ̤2/X\ O=ŧ?M a NTژ-JtnXsq5 Xrmܛ~ܐ9gYx^k4o!N!̱g2 AXklPa\"(.&Nd0~3 7^>:0'_y)k+s6(^y홢a﫲Өۭ̙7&(V?LH7 |8Ṅ=i0(4R2\R_:aI U;j[B @ K4jЗ*.0J'z^o%`9Rn@7osM9asy.?Xa5]b0ĺ'^ތ!(ֆLxN}ò,s+{_U 졙#|hq.Ap,_z)#E=D aGvswɅ qZS@! L Mt|%IBٌqJklq||w;=}ʹX!C*L}?vYR%-Q5w`O~tO uIF^8SA|S:|2hk2qf~J&`\)k|Qt݇PFL9j\t⇴WE?DHbd2]^hMRFG-X;0p*swӽWetuS=;f)jk{G#׃[9EHxiw~_q=K/oCOLG-.VڀblA#h栩G!TAJ%:YI~]A8m?U2 (~zE~'*B<~'&ntZg?%W`a?,*,WxQ?ްrR>3r`ϩ!"֔E֜I9d㑛 oy=n~BV']6Vyэ!az 0w2xxyӑcBN$i\6DLfiILqLO胉z(6:~T2#rŠJO7`Dڄ,crscRD`d _na& a_$UXo6E@i-84!p]i%Rtc9|5.T7(Bwk*( ͦ -fhuUYћ੨W xti쓓]wX02;"V+8ye,?Jx |n$) ^|UQ.dLM,< 'b3peݳ_qml/GARaV޸G:W$_ P*1{.L-7+4bpd.G\3* %#wX6js9lt;D]-WdE)!]f#h4eqF<\~D?-gG$`L,^'9rG, JGq3UĆ{y.7ME`Ъ(MR݁A #ϯ'yB$ v {}N95 wk>@RFŰ|PddNz#PuizIvȫkVg"f7/4@^ˬYi hf θR^?')ЮK=콕_v'8 փI ,ŷ|:+= ِ,yt6̄΍T-//N(0a;z&<WqSIڼ^*SWT&%Az("1H; Kh)?lTϗizƌib5L__}?ZS%.@)M=]?iD氈/T泄vδhhY"& ]տvIG={sl#OLyA8!C C,Q^`H{l9A+=3Z>G[}!dQܷ;6lgdLXҒ@`/SXR%pu\" -.i4R*B،Yi¬Ak WL k'^0~0znHLtp?<|쟏|zOU!/2_}<yOE)_{Ow=i>OECoz} =2_G}$nFԫ"] PJ_uRU¡?p*~m?!fVj~_dFZ}f?'Gqa|~aǚ ~$=A yC*VO2B2eC(UᒣEC*;(=c~2g'{>~'Ӟp}]xKww2q`^kk?qj@p@N' /!o_3}ϡǠO+1 }c}T$@۲ˡ}6>dɃC;{?c~W T^fFY3rs5\&c|<>cQ6Xo i \ADv"DyNSlsgz6ͪzV3lk,Y89csܘ!! ݘQ|BV mx,CͿR.*u ZvN78(.ǂr[)nyO-tW?>Dջ ɖseQͺ_{^L5|Ϥ(3p9S~̻[Y*AvE*r6Q2R`ߎ1iIg:POr=~1m2d*p@t?e&}A0oԕ NjYs X! w?ȴ$4J7 WYl+ǏbP7@X~hv!*cA9߱n }jؔ$}͎vM)3vZ>斵` <  sN'ۄ딄uw4>06yVx]\'#okT~hC)nqIgAq1_=_|ph-v,N_ ’-dgH  k^\6"š 602 6FlWKga̟ pl@Pt#Ex,ikwJ7['k 3M6aީYoH@㶵4rK<z7X+5(maVyq]Scm6^!Uܐ|[CGeBBE9*f]S L,ju2WȴpV[ >;b/L<1ňA?|% ׄ8 >J맭|/U>T& Vflo$5?q'tDSBj'1+}i=3k0TA˥CqvkI{;9J=( <U&xLa2ًH"͍Q\f<8ٿ|2<FzE&_丅 rlH1z{)T.teA jּKd=6RG}Iϛu͎++W)0~\ tgPz$E Khd B{ apcBht?)Nԣmڦ1R/-`^a} m D^ v ZSr+$y PZxI(XɍVдVD[B pǷ:;?tdmG͕uCŘ\:nx^OM)meQv}c?a !Ldzv/J(ATQ[&E nWzp^S9ӆ'CJ2%ij,r\ . 32FGLyh?m$T>a dw"5 3s﾿&kx MZ ( z dm_Ȇ5=x;V>ڜ伥q8۳ƗPJ)r9}4)]iKY_w} KGHpN]*Ka_,8byI0I^;zn@8C"YsTxGpjth0|5TT &!F&NPP>h[~ }=5-@I3v2 o[f3!SՒf$'+Irx3vXE?| Pu/2j\sB fc^xROnQG6rP,vWap%tf1ΐn]oGTuGO[lp0Y8MӚ~,S73ԓލ ƞ6)P'>XyBrS3Gr``YpJٴ'8E<3q{i~^`R#ziP|HUz@jb@jak8%meezAkί8.$js7[ܟ?NB|q%Zmܷot5~ H|J$MVW+D]T2_8*''XlSF*eEtR2F wfKo&*o|vX$?M%_G!u(c,m0m. $_БTٖ&!Ģm& k001;ָ.#d(|Mc&)X @ =3]8x-Xe3λ-Jf^ypg*o;'=} _'وF`!1z2ھ=I`䱠񨩟raz[ <ަ6PUz\B.|>S暝8`;ǥ07]1oyF z kf~*5h!p숕$Bf ]Kȣ#1PY8͛R]N65\/03^71t ܧM_N1p崤b,FwVa~e΃XErJ_d.yb q{h<őI V:!AYܔ79gv(E`COB8\p]f0ml| r0nw @'iB%÷[KN})%_Р!x+JnCtn|?iw*8IۮI2m"N:Fi% 7a7ǖs$FSL+1P9m vo FDPPMٝGC4A{AEd\R> 1NJ 8WwuɾZNъZQѢ8)DsLZ rTLNqLаSUw`^p7 ?:hAՠ3QK 'gvÁ39;9-t)WzhW5({" Ar`Mvx|CQp>R,Z\hR6*\gL*'Dc#Gd E$D|Lg;x^z4w7}:.8nrw3ĀX8S8JRB`O|eI?kxa} ܿxBQzHr߅MjW& <ؿuFQ;,5j2E sc;Pvȡ9\W`ɱ1le~(dSRka7? <01wD?!\0ttpS8cO7Q'wطcMPrWH bxĝ _;]t4c{߷/3(u}"t QJmiy }CoX7ۨ+_F@=f_Wb {ѻ7Sls3'k;7.|d|3UOn'0@?>>ؙ#%+-9Zkp{3pس߄W0h͊B-w o&"'pBTU7$+H riB>ɾps,1SLSE+1v"CaNGsh@+q,T{WQ|IAD~d76#POgcB[3c(T6=B*+_M鲈Zd$Xx ;e4r͋!Ho#0"{@u ѐn*K{qED5 ̘< -G`A88tx[{`5rUXALS?#70XR@wW08>>֣)~(<=JQѬrEh)=d;:nÉL^RAQEP \x _6 &G4`chu9d2 riǖ2HI@Gr57_ʂr PK::,.FP6Лݨsvႉj NǷ|cG6:2Qi GK D&FUݺ0?K eas π4u6ٝ1!g5F`U C`'ī&Ie$[Zo #rz^3'|._ ZIzU*v_^"̝%nvqfmD0]h°;ѩaJa4|e ˔2}&\贯#`nFHYxoy+cQЦ8q䀚09%Lq%s%]]ƾ`҈iBmg./'Usn .Q?!z݁A`EF$:vT_ܳ YZV)V tDVq:1hƉk'nچfLm &W\Kgkm = Hx-sz4  P &cF(mN^gGX@p IM5pHu8=xPD tQ^qϡ@tM:otG'?O`G\ل }1m`>q~y_0>PBN-/K?3N74v/~z~Og?]>>jn01A}!TYUse[R@us?0{pipsI~;1W?`Ǻzȑ3M`OX;X;in'O}x@?` =2$ޕ*zTx0^*0}MO>W}w|-&}VGg`< ?p.OW?>J y>?xt8 `O 'ۃC}uJ_a ⹀ 65c{ɃY׍F2,t+xIx=엢U{60Ҭ"q|wp,'n2fY2m^=彡.TA`3,Ͽ楹`B5}e"ߔ2*M:DJYlM+nOG{ $9XfK؏Ջ?-B!J9sκ+ ¯؆bvLv VWm0YiPsn?ZF`%Ѿ<{A?P~3Ƞ`Ћ/ ݘ#uW/hJJMoT<#T\%ha\Xq<֥K{/kg7qpS ߭.VqDc4H_ !UǪNtfY&'To<|+#m]vT.@5S{>¬Y%I} Y݊' i=<|/4ӜW[J`Z1ܚkʒ|8ȑ6Tq{> J&͚XqQtg&+Q/q#5Sầ{DڝtTo|O{iGvzHxuETA2 wy3aMTK46$}j?{BA_x7I~y~nQL.\֖{!J;uW6SA΃-0[IIUse^sK @ ļW W΍R|əz{zFOkBh\nS6U#h &^oW5&~^deɱ 2t;r5)UĐ(ʢv&MZ+֧vn.{_[™$ '.Sg/LЮp tBLď#TL!lCLG'"``9Cʩm"<16KĀX| )`dyD]8ީ>pCDEe_L)=-;C~q@~瑇zqXo5 q=:{"Zo@/mR+`$o&&DD`13Jw;ςbץd79w#m/-[IYƄ1oMvn6%5`}Yd#+ PaS`y G|TOI+]^hnsZ#Frkn+x cfD1LmQ!/a ScR(QW1EK { n[Ig9{Zjf<$WTT0ŻewX (PۼRY}opx/ -Yx4ڃlFnY|SkEi 7!sl<_!p@e/N?Jvf͟1 S7RGY1Yy_,҄SKeD T5veog0_kNbW[ѡ+8A&#8vIr`t+h2΍LLe0Ce4 samFfcA?{f2Ɨޞ^l}Sw uG!Ai'qfG0hqAELC,P_Ki!6wX\,q1RGn^$u|5~!rjz۱޹e#Oe(dG ;F$c%5%P󗥝S2+H2jbڝͣ1l|l=G&ΏI S_@D 7E|fZ<58 O.(5LSki-LBP(RכX2M=m}V栖J[Zf$n3?lN]՝y^;fbC, \5!(#D6ߡN3Ft0:rB=ձ2Cyzu9'Ɂ*ExW3#4Y JR'͆*iDQ\p֌f)` ?淖xQ|)1T"/ G9D~ܟR\BmWDžwj]|Ht܊3/DZZi!n KXXW+ UK('/6<ӞfS $>8.b?I)Jl){yъ Bsᡓud̙Z<"D=_5)mgGv CҎt8?܊q%NnH ǾZa*V&yO@E)Ns/5'oT} h# Oz3Fa߉ӓ3$چS17hN;Ir3[x``?F>X.dT1'r%~yH/Tb*o]3E9SkZhȆcb8&T87lR eH0<^BF@'=_WH\@L5"D!IOW$'-lceeM[AWYayM-\ %Ti[n8'z]Y!˄T{XQَAP?Ь\ N {xЗ*JSzH Wz8>L '&ԹO7/:Qm }6ΒI\=t]UQRs@%r)$xhom-)a9̿35VugW7~?b&-~^C2^tJ-LyY 3|vO}oj1Ւ:aL,ٓN3k%8 N(uƠqv(t,LB?[-< ֲ@Q~=zp_ݘ;!N/B9aHƔсXh.Muś_HOkDx^R.L  {M4]4RUmz%Bsm@5<@:OZ3={y>3{AJ)q>jH5A=2Q;zx&W%Fg(V%ºMdA(A+%thZ[[޷hS2gst!*3%1;ьR]~6 &1Tl04;hH~˙1iH"6Pg(ihncX]Yfr 2XG;\S<>m R 霊qD4Ck4Mnp{&[t;o[BU# `/W-kPݽJfM5T+q\khE,R( Q<&`Џ9 3͂ o1<5 E;l[ )^g?J[ow˵Oԋ*{TCbő~ƹA6o }LaM9à 8ǭ@u1OG+dK% 0Ds-?c>,zjՐ4?jabyH޳qz-kb3>_I45 bn*p;Xm!<aRJ+ !o|ScR0XH cx$\I3gк]74IX}(~08%*B,*B~HiLU,^)>ȾlE2aEiZbwo;WhA^ zƒm}),.ᓤ6aWI1Lp\4yL>[qT0]7,n}<=ixo{ȮS~YS2TF)ؕeq$xK(eZdjhJp:E@%eEGR}ڿg\O[w[zI)0G,l'jbx]ce:n<{xͱc%0*V3ԖѯPpy7fxw?L=6g'P*L[ll;grsi% e-Ź1ΞVf^a5XcP? p(9?/XNLcl{AEaL VT: Ac2Qi3p~FN{5\\nǀ7$vR`u&o b=_.e~hWZͧ&lYnj\8p%J$T$roPr5puճT'WB8~xL1-d*s5?cBTSCcܟQ5;i4G"ppErxQ%gHcZ %(Qi 0Au jtA'>}G?ii&=z_' <),!;g8RJ,r6v$ܧ[LH'; t3P5T{I*{'d i(BM+HI`n&\uyNo]5tdb"vT̎e[:ӡID%H/wjŖS'WV.,?`h~s >2ſ5\ 9QdEHC`h,hgB߸7ʟ")M!lJJ∕bu9^Jo>s$p_m J21&*Z<3 |>UAۺ/(+$k Dm*O}T9֙Lfa ;%T V6Ѱ6U @:uQ(yUVn @`Ra@@fՈ hh w@@ 4( %qJ$&(@Ϙ >X Iٔ@(QPPY|`(QYf42ZC1̀ͰVRՋ)'C,Zn;5@IA932܁}#M am+Q(vfUQSU1@eUM;7&RUh{ޯ =8+wϷn:Q- |ƻx3{u},})(t'^xx#=o=ݜwl |1gw=>yϑD3{osM wrs}nm}ׇᄋ{mw3{׹ǀ}3>{ܣ6^eIP O=پ=o}@{{ {{Owf4jCmAl26%}mǭ}vX:[*N|8|my/3o;8<}yG:t{黸>#5s==^#`{'<}w9wln_}f;n.㛷|[wǀp::x(()Gw) (O PH( ^ P(bkc|;לlƻx>þq9oyX> >y^{` ҪN RǠ6S A`wۛz]m,lljH*Imۼd/|>{ݻnn;gʞ#v7g{G*pomŹ>}CyؕEDUEBURH ((TTC랔R APn[eMl;{&xl@xꆁ;xs{ۼ2`8h)8ܸy wG|> VyC<! (o{ *R@rvi%&@P$QB($!Awr 9UIլx#=hՊ5`EJS`42h MW]0S Ub (P m DL`=M14h@h4hȈ 6 ` @h&A0FSѐ#0`&C#@ #S@  M`L2h4 4 OA) 4L!Fa14h4iL&&OL&i F4S3Ih&4L6LSJTyOiO&P 6G=(M=Ohi=1FPiѐ(Q6<*&LM 0 h 444ا ~2D肄DB^h&d_'DHG4::| &+/uo漯αɿ75ȪTJ́3ݚ}OƆ9Pqn$p iA 6D7Lj(ś|},MDr6i&QHEjA"BAHcd)H"*hm7ӤDAEr4BRhI I(7P r'QpmBAHFDJm%߾Ͷ߾m(""NJbN9"PLm6߷~gnm(lmPTLNH#H4"LaJLRFӃ$n DNG M#r!&PPLօ6@SQEBjn\&>i9R N] p *ry-E.nf9M:C'jVrDL~ L9Y€H\U~@  d%;`HPZp%nl2lF}Z0lah$!Kb!;DR2?"64Ab똑eOLbwpS(W <rTjB&X{\mH,Q^A:eD{h6ugM[xEKzx:cՈz&+Lk3cqTh?KwoLF0B=A^~-U91dW7ڸB@-i_}S&Vbx@jƒ˰~tBX!!bfs)o 1.\הniӷtUChu8K2 C >mi;ٴoij`m1I*k'QPRc^,3H=vKh^b~,б`fPXgH4 `1Y"Ij-Z%_rElSSD;, 6lrPc0/`w9!;>׺NvDw1Pԝ؞S L:NՒ3Q_ UOvz?ri#Q#rq?ms^"N{@ހȃƈ|KNn֒42af)is_X¡T~a@7$c?"!DJw8χLo;SQGfn;SICBPb`sjdsi3G2;$ $&ɁXsY{>^E(C(E(@+Ax"7Ht?} V5)YɃ3ҭQQqO\`Wq NT&Yܒ$ו\ɜ= %H5T%?g5 fdͶ6Y!oX@ `Hν8.qaCa@r?03@3 HDQT}]fBH r+ƴf(R}rV]VLU--dR\dllLQ%(C#L/ pMYr@gT `BN!"Qr $$ @Y9z Hgm' ~}@A$ = ώ=(IyΆzi/, )TmUYw;?e88xN6R)B,AE  j0E$BO9@|Fи$$X}HZ@I 9l?66FvYDJ`N 1 `8J4AN8x{1RAl8sKvSC0ᴏ8 C CN¼sZq ry8sq.pgCI H)$ו\~瞴$@ugWgt]2;+i-Q{‹-n9P;:lk0r, vPaT2P&$SiRI˥=hmbk.y&dԠ! =/-HJ@.s`>FДАXGMX\xq^߬ڇtuO̧@͠A$'Hc$'SF?٬n[UcD\여^!K% =X h fXy㮽%= &~N?S짽9oSNF5xNH_O4ES{9g-mnU5Ƶ*dWMMTTpGPa+*JO <9.[O× \PR}w8zw x%wuOwކ=NC,Rc7 hM#OdL+׺nva ѥOUfB뿕K򞢴 wTESZUD[Yߔt`_WnT P젡"sf2]IXlMRT-@N׾ W'dǟi(K,0aQGN2:5ekRuZ9ZՅ*U yCw IEU,~}UCw7@-a|1 P3^&$5_FHmonočiG(C&dMJ-{鵇j׸|\_kShOaFH SiMf߳9ny߶s0Xz x|ՍazKYgN?{_w^ @F7bP#TQ/y %!S1a<H6F>G,9 x3NQ-2;1, 2vX{?C}%߻rozXk^Otۥn{>6VD"ޡ4lc7mF8Kaem&09 ,\vA|Qi$WogWOM[\,1xr-8"*k[zY6)vugaq4tVcjC.w=k@ T́ q$ L7@j@@@: sW uRQ },HdH9;.q P0ؾwHE[13PVgC|k3'$ޜe8bӣ1;@ /'&ܚ?wsD#C+ȡ IƳLjFw k<,h?#aW@0}gٟUEg>$-@v2"P5r#/|njK17^m@C~U"{}>Y3ώ%Q$AXrD( lK ~ g ,-1]Ehgc&0Շzs[OW&mBK=5,j]zp <%dIrpjbSKˈ+gҬFT*9aG2cqH;`l}@PK .Zڗ/hz蔤D0ivA3xmIn7kȄ]I\V!tDKAʜg"#0hHPG瓀JOK؛T55b}g+T:t| 4LsFq+`APY@&nD_EWZ1xWS%W+ʑ'Bd Mő4tb&GB8hR@8[jyu› xyÐ:cxHǐ<@$^@H8R; s- qdr@Hԁʐ921 h@f@f@f@N*;Y?Nf I\]O 搌_r> rVq)؋]YWV$lšB컥{Kq4QH澀>ZAhӀy컍+H@p!3F$ c?rS(#E(kELg 3:wsY[[,- CF#J$͛Ny` sj09@n/LUyXfT#FrBr'"HHwx,BvuWܠ@Bֱ `BKT$/g龯i &H1,$@$Y!tHQǩ,8z~'dGNĀJVBD*IL$ $MX$A!!L :mk̡ dô]YHg23zwtg3ΝYltoOݾ$A\8B bAb}٨G׈qq A*2J)L> گ [´XdDKIq}5$5?wro6V6x+#T&nNjAGIAtUL1:7iLQu٬? r >@q!d w9r8= [KLLȣ4LBO aqʵ 8^0B}[R 0 y3#!X3!'9+ IlE?%lf[0ZcZ @OFʵ ' D>gDL̊D,BM,_h⹮Z|`,S5q[Z^^s@8saCgenvI \8 &S<f#//8r9F[^HI޻r8~s?IB3M jPO 冀C7nаcY^,[wsxNdf s51 &k8IϜ̻_!Ʉ?q[<_Qj!S^֤aIXWȈM $fnNՐ?{u<@P?{O9>"q=k2EA"ȉᒑbF*P]}] $U"ȰKc[[5H? ѓΤO` r9ΠdupB)'Y*s&LG 媌Ph''p${Vš?ҀMݞzā={ Ev@'B,!U"t#!޳~# I$,I_2@NH (, 00F2" }V "JH;N,NY>v ODfgpdsxHv>\ejN9r/0s[#'0B{D >EHC{:MQŌ}apmLXJd {v)9L$:}]FA '`t m x?&Xz$$ɝ_HIg$̾ 'sjH0ăF# # 3?un#! ֿ|t >ݐ3!$2Iˍ`H0/?O Ljvxd ۿi u RMSG!Fx!?7v:Fp#"kBH6t.2i`0IJE?*Ĉ¸D LasF4"W@ hQ x<x<x<x<x<x<x<x<x<x<x<4yJx<x<x<x<Hx<x<x<x<x<x<x<x<x<x<x<hx<x<x<x<Ax<x<x<x<x<x<x<x<x<x<x<)x<x<x<x={Rǘǐ!`PPRE00000000000000000000000000021A```````````````````````````eE0000000000000000000000000002<x<x<x<x<x<x<x<x<x<x<xHI  ̨"P uIѪ #_r$=}]!H}O'>a<&N_Og'd=JOI@d@RfЇ8֘3 KYRavH;MCMUS%j=Χa20©l;L,'<'O};vUzhΒojC gդP;ItSʇ@6VS^m6R,&U\&UḇB`!8̞!>Zs>[ ;IO) ğ99q$7fyv-#bԛ^kK<ճ CBW"mPYAHb*L"L(ʈBE32%ELFOfLd  XeFVQ-ed E!&Y ,H*M@IL23>aٵC`{!'K u[=f:F`Y븩!8 Vϐq_BwT53u~S 7~:MKҴ吜̰Q$JBp4L==zFYlPJOCnoA2v|E$P0ABE$v0h?'$&d2N"j%1HAIO+> ΒCaA#CC!uT!IFBI))BIL1aTd6&Ne@?q v)JQy+bv.d;7[''d*!C;Zvzv%03㹿_ONK_c3p9LiߖKE[0ᗨ1)pmu[ڔi(Gh޺c v\]Xj:Zrk7nD,AU i6$4c'n_ZQ>]WdZʉ W>t Jd^Jn p8fRmGh &n̽;_3{GWRf:z 9UD6:"g j!09 %/ސWYKezRJ\X{o)|r/RE/RR;e/RJ\'t/E]<ٯ{_>? [W2-9KKby)w◁)|~z?5cWIor_Jqׅ)yݲ)})|}"~RE/DR/J] p ^_MG~WU=s _O^D~KK)~B)rRw_W?ֿ_%___o1Ys}7?'zׯ^zׯ^z==G{Ǽ{Ǽ{ǿ=={ǿxxxx==================v{Ǽ{Ǽ{Ǽ{ǿ==xxxǿ==========;_-w~뮺뮺뮺뮺뮺z;;;;;;;;;;;;;;;;qwqwqwwqwqwqw#;wqwgqqEߵ뮺뮺뮺뮺뮺'qwqwqwqwqwqwqwqwqwqwqwqwqwqwwqwqwqwqwnwq;;wqw'qwq;;_%{E?u]u]u]u]u]wqwqwq;N;;;;;;t;;;;;;;;?;;;;;;;U~ c7]u]u]u]u]u]qw<;;;#;;;;;wqwqwqwqwXwqwqwqwqwqw;;;;;;x;?Vr쿺ׯ^zׯ^zׯ^{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{ǿOxxxxxxxxxxxxxxxxA=xxxxxxx====xx/>-^u}gru]u]u]u]u]uwqwqwqwqwqwqwqwqwqwqwqwwqwq;;;;;㿶;,;qwqwqqw'q'qwqwq~S_zׯ^zׯ^z׼{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{xxxxx|{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{ǿxxxxxF]u]u]u]u]u]uwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqws;;;;㿻;;;;;;;,+]u]u]u]u]uqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqw;;;;;;;]qw_뮺뮺뮺뮺뮺;x;;;;;;;;;;㿰;;;;;;;;;;;;;;;;;^u|F}៹]u]u_ú뮺뮺^A=ߞǼ{Ǽ{Ǽ{Ǹ>~_~_~_~_~^~~D????G~~~????????????????????????????$??????????ٟ~~~~~~Y@^zׯ^zׯ^z========================================{Ǽ{Ǽ{Ǽ{Ǽ{Ǽ{[_?ׯ^zׯ^z]qwqwqwqwqwqwq'qwqwqwqwqwϝqwqwwqwqwqwqwwwqwqwqwqwqwqw!ޒK4Q 梃7N*jɐ},tx&,"yPTQ9"! \쐳F&gpȁà);=J"(̜Rszh(_PZB5 {u=l'B@Y$II=wc}7D$$=vq B*gh_ﻺ7~㢾,)_*BdmMوRSdH@U h'A$8IB`&Pќ?Ʉ'vC'~ۖ"#?ccsԶ[\C. !$G&H}% 9 PEnFn$C&feSA% A&I`̴1HaL)ef &bdb$Y5Yi)Rd1dؓ-j2e}dlHadaDXAc`Ę`(RkqbSI[Ͳf*1EI՟>$(Ld)f[kpf &Hej$H$PTk6fBdLVnnaaC aw+jfbTYFF@%3n YR fK#$IC Y͓(new-2S0c$LٚL0ȃ (ժ0eϙݖ4H1 2LŒ3[(֭q,H[+*3)L+V5n2"LA2Ɇ22%3Zdf LŒ 0Dj¢)*")jD[0 h50L2B+w`C!H7rثZ2LB`0c,0ki$I"d dK-ܶ35Q3$́#-ڵ3LLcI[)(37r3[ 3#,a*Ԍ1سwdɒ2rس[2Q3FL% L݂3 #,bn a2 1 m3jp2$1 Xbj& Z0KI"R+7r2B$+w`ͷr# R[fǰFDba!&mLI$p0bd!@7sV0a Ze0Jj0ZF"ܢ 1nݫuif V, 3-fL")#!$r%kX,Xc+I),&&+($Rd֙A´ ##P 37vXE%+4A2Fc37kh$2m&K1b 3w5c0`5Pc 7tլPƨܶb3)B+w`C!H7rث[0L2BS2mfvk((I &0 H1`$J1"՚,6-Z 005H2A j krܘn2[)-dݐbb"-e13*d0n۔kX2)I 2#10-KS-ݿY*V+vmj35h dܴn a,2t `$HLaLmJTcD,!,d -Պ [ikvf5fn2,#La30"whDjO[ZelBb7sqS-EbSbdTEnFdҖ h22kh7ṃ2+2V0#ZM},`[L+w`C!H7rث[0L2B[ L,rDL23+ULe݋ &kw[Yn[m%EIBY@܅U3d~m2XȢ )̾حn,DJĤ,$ʟ-D c7ln2*1[ɒ+7rn a2 0wB3 (jwcTa2B)$PD 0vZ("@0C(1}}FIcgnkWf}mݰ>}[F}+ITf~[[235 *İ)`L37vd(R,r-nHi,ϖk20 0kSۨ$}0զ3wI훻1 `Lܷ3[))"1&,¦Dba!&mLI$p0bd!@7sV0a Ze0JhwJ2f""C50XhZݙ +Xn LbLUae*`3"20w-3,Ld2Ģ),kLfY XQZ`` Yn3&,n3wd2Jb¤ KY2&Ȋbv3wpDR2ܶ*,L$"Y$#1R2ܶ*,L[2"kbJP0(2I2vd2w-3$,Š``c-5_ͤ}Ħ+˜c#v)PfjcL`*`LK"J7m0(K#$5iLn֣5i` ɻm C!H7rث[0L2B+vnI[mALQ2f"ZՁչ-K~_ e`a~WFD,m ȉ rث[0L2B+w`C!H00~-a&Y_gFG۩nnTFb`ennfRnZJfLdD!HMmFF1FL5n,X[X(f@if`0PY&Vf(d1`&FE%jB1FXv >LH-SMks&#}3fF3UiRbYTAHQIJFD ܷ LEE&Lfs3 ٖ͙ lAFYkpf &HYek3Y``dRDbmdE&Iw5dUAb[lfkq`f&IF[R_-F wrfۖXIVfݭa)ո lQFa`da6cZ՛3i2MRFn&lf1[mE6lFnіSw5fVnbVű mkY[6[feZsvfkqRVe QbZI*"fBk$ZkUl- cuJ, 22xZj( @[i"n-ei,L0jmZͳZ¤)JK%vZ$I ՛)aXHabI Lݭd p`&K1 3w5 ZX")™UUoDj(SK$Qٖlֱedfk033Vc# "҅"w-[ $C2Lݒ3"%jn0/jV۹ n 6n2ll+r$bK 3(Rw-X(3,B"U^4vRg|?Yڥ)M%L jVw{^g U/^)xAxkX.1@#Fp\Q<bTC+WKxwG,yajӱNb]d+~~z[T $yJ՛.iuLcʻDQ0]$-Iun9FD"n"DB$2LK%mro.L-q{Cg2(9ZyFN}NWt !xbPQQ%nfh¢2& Ͼk[u-f7Bf!2$Ϧjщ ɔXXIaacQtMFľDktS3-QEPd6>#V7D-hխ)a3c7mid7@qEj 7mmaIEfowv7ZFVsuXv@ٙXaXY3c7vV-X"! 7Z5aFaHefFd@;ݷnn7w5# 2Idf@ FbZER|ݍѭjvtXXdbQa o-ZlD`& 03 wwdfEa@dA7Fd5PI6эݴfF QaAS/SFQXIcmݔ7QFdfύuKt-dFLLF} ։MnDaQb`&daQLHߍwke-J`b[vыfdXaQRD߷t7KXF&}we7wwmEa)IQJ46݋tdbF"uwm7cwu4,fDQ&aY7Du6`$ wۭ5FPQfA7BKvDJ@[FՈFfFIϟmͳu 5 l[3" 0A_EibQ#k6֓ZFFFEd -(fLRX ֛FT E`Xc*5IZ7sM6PT$aK4ַwhIԔa$nKmdHYQC mXnP$Hbjlm7vVIYE_kmwv$ZJFC HݛQDYFDbiwwmա@}-F"#0 $an70ZVZn鬃*`C(f&hѢJ}mVn(Ȋ2"_minVn, >Eզ,20L B2*3 1Z}i@_ME&0+ B222aZi( >k[k @@£2,DY>2mXJfѭ-YDQde>Km4D'mYa0!e;km6jH$Y"O 4)Da$YdkZMBIMARe f+X ܵ_[kdQQ j n 1u7ZZ Ą (21j)Z"Rl nŸ#2 L(Œ0ifnODnn20 #Eۻnw5n5)&%L)#(ʑoۻn۱kfH>nE&0̡ 22"Fmn k4[I1`}n֍7[n[,3 B)_>kpQn-"d>"MAklEUV,Pg'=:.2C͔E_!u8+C[J{~f|$K\5V'LGܑ%HZFuܕ#aFk@oۺ\i!J-"#f3;;.1Uty)uSp7UvZsSJl! a)7pjR(,1=EW-RUhgK$ ᱭCr̚m}N\֨9#(n;zDGi0Uv.,Fu_0:14>n48ޯ5&~g>x θs^&g6 \"9!;z+;ǝ%|lŜdΧѺz;՛EVdY"J(2gduo볝ݗo>{;*uLcHi'.:?Il!ꖑc2X+Eh-"䜒Ӓ=ũ( پ-pMuTӺ֊sޠ"\WxdȺQ[+󽙥x쪪6̡iACP)P%fZXC4JOr) ܆G G)A.s񄿱R4X)n!Xfŀq&MZڧfNXMbӳ˒*x%KabjA_,43)lOZt{ul{vmYV#3٤޼lʚO2cH1s[2h:Ғs=Fh\||zk X屌sD UT@I z }AhJ}Fr_/c-IM2:>jfbYʑuX2aY!hRf+5BT:^WכgVLhťc_?a|쐄 ,@u} cjp̈v>" Mp7gE%«RJ* BH!P4D/cbrF(t'@L!d:]mn+xWx짍aْW!Ln3LrJ2H%YNA ϶{N=S5ߋ=u`vy-΁h3w|㐠8vLb-Әy Ų87{绢c4Wxa9ٰ~$9kogUy1sñcU3cf<||yRֹV ZLl&fsj$쥐ڍb~bȊj(ڇ!b-rUmxUnB֙ژ 8cdbh6cDYPl]}&}ᄑ/? YgcXl ?i=T+0:BAZe-T) ^k43OL M33=T;c ):4o p# /ڸǨ Cr Hb~~Rv3!j@un5RV eKiE u@kآMɐ!XrSSI+#4tqAzԸYDghCk9wNmkf]xv0׹W~)ꏁ3[.n퇳}{O ൭mۯX2u\"ơb:e3Sd@%~ɣ7۴5 qp"A,(اh;{nr<ڮr/fdIZ[DYubta[C5 !wV*9PwvjT~7W%-àԝC'GY/>pZGV7 eBz{~LQ`tN9w0F!} uAk]pkZ8!LD[gH!)t6m9.B>WiOaHZUq G_ `3Zn(6b P7jXT\\'ݙzM4p\pqk)7O`$-$KꛔD@Z.(,Tׯq|o5<\ 3 D23 a,o@br1^A-" -iZ;'3ǾC&ˤt4n'ilyFh ! gAh1{#nq#_<ވzi;wXWm ͍L[YKM B,y( .!^luTWvxO98&j0K:F/: \uS4猞ٷ- MuÑlR,&N sѤ  D]K[xڊ&"u FUB\9UENHx!< V!#^ BrjܰM! 2iN\EZ)nda~h9&tϤrh,[P.6=W&a{XιhDN0j[Wl[禈WqhwtNicdgL=m#m=2kVa㎫:Y_QjDb1\ŋ i /P&sCТ,EJ.. |[x]d ,Z{19 Y 89e1j97M9P,.c9 ݖ-_6k2|o/mtYQrY~K -#jcRl=GՇ]8 6N2P2>Qs 8i>69lŖlY=PK%fٺ`+' ݭrv%[IȖF3i-ĥ՘ŷcNշ+p(`g?wNq4.׽~_Ρqn\Xa j>6k-L.؞B˺[Ww⃓z `';x_nǘ Ba+P-3283B zfMCUP͒&r"PCpJ!9Z5w.3rLb= _+E~KKHilϤq Ԇ|}Zz2

zLl'Gk`c0br,z99ɐ|'LgXοѿxwvzg]|<9=mh;Zj"ְD#2Te`%,ĥqFrCIU"|:!ovxMϞuIgll8HJEaug|Ť9\O#vQMv5WoD3XЊ ˅ɹQN͛ מal_0&Wҗ%zQO7o?!qLCUw*uR7X3MH\ 3>#2c4c0“LdL3: -{+] %sCw\9g+7ly?o] .2k+opDlȼZ6t(e+_xhgtBuƹiYON63 o`'m-qeJ2k,ۑ/5&uy=;\-=WV~dPY0/(̷ZkU2ֳ2}1",,L°̵n *Z$,ܨ0Ĥ?̚23(ye22£,ġ*0̌")mj,2Bj*L՚ "Rj,0YVw)+"0$ E"Y,L0 1Jn-$"CKE̻4q-UʢW^%5AjCTOq[8hr:NC7/@$LsO\5lDfI\D68 ռQAϮtI܈kstŚ󶎧 G)4cr/)A1Ik:Tד{dv\B"|:&[sHuL{rhiWxRZe֡x{V滯͗(׊`ws dC=gk:jZ7H>|n"sAJXZSr9a{-'d/9[.gOpQn^&%7d6J;9xI EUt˱JQV_U4EYCXy\pSB‰#-Šfef"#G Yإg{N>>RRPhkQ@ DD\ۏdx+`ʱ Ux3O8"ȋozd2L'}oto;1 =+;K$u'thsCtE3댙ؐ7m,l@FH5anDYF)`ɽ\\DYb',+2"qY!MUCNI+ W%&8VT"h>`*!08v8pM"Ytc~C7Ive:3;L '&]-x67 9='hAvZ)n2 홂2{3A^;;&/λ ǘOW8yp[vNH-kR˥ܫ5mw uWcjBNiiMx D@D|6]x@c!t]-ZZje2IctȠ) X0ӯS?hkFHhJck u2fPԾXo,o=μRIf3QLxl[Gtvrz|U#-XVAy{(b&aL yhΜ܊'E:/юVֺEQ'n 0,8 ue1TVG8%MšZۅ{.ëBaLKmH݄mX ;WK]Yɝ@g 9 ٤n 'oo*@1Fe V/ٶ`tv,$ &~Z\` %zu0I ͒2Wi۝/cHc\9˃4@Ɂ'i]y P$L"U*fJ$8LVu]o0oѲvHNF6_q7^C`I~wF1rn&q7[>4N7Q11dcAJH S&O`38.!:z:jEk긖hBC@wn9-tA IŮ&tnB$6LUcE&Hp -Âɾu=AJK4 UۧzԐwFj€RE g9̸tSPPRbi2b2jӏa" DDr+& TuxQoCRpqXHkc Z+jk\bk6fہGR&s>cqW 2#q|̖t}oh6TR[%@gN#ӡ=hצ0HJ曶|-v`Omi(6v-ל4;{[Y陡9;FLa\><<31\߀<sU>b; :T1#L3FJHNRlժ=RRSokѝagT0NcEb>c<2œƺ!Qi6s52J灧6#czkf6p,No3\w٩.9(])" @VZvU"&;E90H1VdsHnSdM%nr#78=P» aG7v巇ofWhJ&_+ Ǘ XvDrynfřk_N+%Pۮ(l)z?! &iőp"""""j糂#VqLP9bZ$ ؙ=w=j _Ք%ZƪR³$b] >KQo[ d)i_@f H6RW*C_0$&auzG4uL* De$5H.[>7a9}2N+^!I 3EeO+#aw0D!&jU@ a-8vvW4u‹]P_l4taDīA˞:DyXIw~z3n7v6 ]:h$!S^98i Wa~iyNef9#4\8vSvfr8w4nC5}E-s3Adx3ِs _qRu& fcx<4;g #,ωu][f1F]xu 2.Y#9 zzwl$.3t\6_Hu:\U1e|#o1~d_.TP%$ME^L)ucSxgsHH[!`s'$$%Dr:"94iͣp:Epr "'SC8 S6,oHNq=!جZ2aBP `yy 94C֚מ 'Q;PB\!A٥|:^~&[pDB.sIiztm&s&ҕEޛA6H۟u^1QC=sb*:Srm)\{1=lC;bttSnneU/C {Bl۶tMW3 .yh<Y0fhܴfxŗ[Hl@d]86)#Bhibeh &6à,\֤߻JV "!p2b DMݳcNGՊ r4Є$ VQ!c%ͬy&*vļf h%#6a(Ywn Q"򘜣rb=>Y٪M'_tehݎz-Cs!2 Aa^d V"^iB߄,+[u!Z[8EGz xR<\C.jv֕s8ga[fWE+!ੁdcUPxM;>筭1\+N"EW) R6iK蝬[By.^ռ$%گ^e6sm01gP$+rֆ7J͓pՍPP Ym=MVy>8X6JbZEgь eik3=&,&a=\v\2cǠga 1%m=c| ;L͵X>M%6JY}KyyrOD-̗-v}HurGXa30 B(??DlB%Gߋʄu۪ OMj\ASgvXK *J‰1CWf!3P* "oYTt2KE]U Z)Ыi~+IL@A Z50J,ؾYU[!\o9@0x1Xj]Ymj5Jⷭ$: Z\t,Ta X*[o;b<*F[MMj6u8h<6 ) PuG0ldlnY8z\hDQ0.4d|Ȑ.Ñ]@ 9Iyz)" :f|+W@UO]K#vXc}}"\gŤڕFHB&Q؄E]A[ 三F?^sR琈"su[3ĹBr8UISz9\_9uڮU ^Ɂ %l[L됪3%ӞoT9>mȤrXyija w%.`԰k^19BB2sk3m:| AjMNT,r>y7 r ZF[8$1'CYpuL[&z|x681\%,ζKTrwkiհ;3RE:Ä,*r 0DJV0nnVEbQV|>Y0ְYdYWW+efZRHtfP)fN]$% E<`-0T dZi3dְ] ~:V5Hg'2RB,IM%YU2"F EXQĢR械֟6j,2)8lkI2hbTZWr4D4-pŘdh.Si3 HBs&ljIId2I0 d N`*I0a3H@̒(B0mu Hb&,5Se]-"c%ݬ"ڪwL;tT@`b#{Rym27j5IbdC4 Hda`E| DbnE.”IJUkRY2.7/QP Qఠ0(`tT.2P0A"Ih0m җg@2* bne] zM ^$3ڡI,'$Sxɀ % v VL^Xbi"]̎ehP4SfZT%nʺF e:6+#+syp.ՠuB+/ZKXA>,ݡV*QT$0hmBFPMhxKqt YsiLΛJQ. &`Rf㲴qB$v_VAٻ:r*TB̅j $>Faxs^?pX1AeMv(N`J`nY.%B]'zgT/J@N+j4rц^w(/~2`h$%62"FZZmʖ.UKMrd-R@k<3I未B5\.9IvJj)gWKz⭝҇Eu&5Cclt͜@zCVTliNֆ_vkMw"ڤ$%ʦxiUskt(} n㔱 Q(-[h_b"Yef!LHE` Ae0pA2&ƚa&,D$ޤPK[Q& +.aS LƪڋYC REXWq@t ap2[hśF 53z;&|- ѵ*RPU뤮Pi8_[<ʘ+HZG+Zt4] "шXBNM ̈́5:Qt,HoUM͖mƮxI4#Jg{͌Φѩ_;&Vv&gE5G6ron$UHJCpI)LF@ :q!f2R aƤBB"3ɟnH1B4h 8NfFk1PR>M_!*U_{Kz\:te5~mGUQч wc&VmtR`&:JKcSX]$5!,D9\`3&K0$@,Xd BAa@BIL0,͆]Y^o7`UD)11a!,Y!}Id `WkCW_˾@o_iawM~ jH}D76;d:.ka;Ԩy32"~''?8bRŒ.EL[r@3D[ċXBB" C5qxw=wsh"Y%8 c@2-o<€=ii 1Wg|d̕xI7lސ!@;05y$玒8My viZI[.\>BIfqh-j.hceM3ެdt9$Þݝ{DwMO0؇AfIb 9MkǨXI.ldG=:yٝ{;g¾]ͼ/6c?c6rjdAVwx J@)]r]s2@ݷx1`RLE axwQHJ %Zdck%,I,օ 46dQKRL&ؓ7)AU>놼.ݱ נ{UݩcHN9gZ.DYZUkWK"lX6Rok< (1;Z_DY+8KPRDyZJ͑\[JcҎZg:ˮZf7ʮQ9ko_5Y3`߅ i=V !n =L!y(ό[Pox'1]:Yb!2FYDD6p61M }y!cX-inmCmztޗ0hĺǗGr 6C֭򭍨.4VvrBLNAErp?l?RF{1n~ݳ6)WS6M918 ,l1Bq]c[+Y~'ۏWLK'f:S mn\xdFwiG]un6{d˜L fJhboAYŪO`:)MΟ[s?f:[:Ej/oֽS3nE3Jư C{&%lf[Z@PYz&eƞQrQcF8{\U[ɪGs:2KT`yo ?mq Dlnѵqmes)q$%E2x&VkaīPU@0gߣE3:cRN3d1@\!qzXy|z]cdŢtѤoHp9gHaM gݶoǝ;4 ̋ozn0Vҿ?f԰#yGGE\yld4} 7NMU *,յ3DwpHO e xxM a*$'-P>_X Vڧf\dD5LyOEfk&sF ᒊb{t!ڇ_+N 2(dio<. -f!$% @[a3q/o漐 -9##(l[i摓vN¼z-ѯw]q[/Dzvp7:K#ω1@)K]!=]äC|ɛ1v-V@@kqe)@q@gm#`@Z'&: t "SvY [ϼZna[@O;,eo mn\S Z\duB5S\o:2h.{-`߈dC4'?(|b=@%S=I B H Iy9ǥ2$3qHf:lJv\ W;gWΆg%<{Ǖ jjbm^C#1nlg;fR켛oİZvΉ H qVN')\j\2m-6%FUTbv.ǞZ5虤K!^V5/Ag|Ţw80!0g~s~YP+fFNVV+h (fq+@14Ԁ\A_B#ppO1hxG F J$6upu \]Tjlrrf|MLٙ=VtͅoR{0 B jWLO9!` ZTd ə1) RlVO0'pxmd cպے7*e%g^\ mφ<ą n{.O5'洕/E= #|yL0щI<&{PZg)g.i|i؄a`;<6[ںKd,tfaxݝd1W̉53`F @`=];lVhqh4SSCpZf5\b1:##Q\M45 lsߑFu 6&cz˾L񸄯}.#( Gţ5Zv)i JP^G߆z.eJQ#-B%Z,8jH܂f4:8NVC7JVK ҵ BsA#62I (w#go^6 ^68 75gg@#?^ѕFmɜ&X$GAb0-fjoe&Ř"fx3kB3Llh~C>;ǫ!h C@Yɗsw.znMœՁWtAm zRG)m(wO~ךaٛލ;߯PRK7^KgxR:vu2EM Yr?0# 0R#)Q~w $RIr( jHˊ&57u|Gnf&}0b8+MDVRG5!!rְ]5W^WcZh8=75''n'⇙ DDH~fh譤<}C q-~EG>ޒƁ,k-~3 =@ pD`Gmk<|KFHHrCKD|Q"@&R?>&ztqVO87Yd 1P6曢7/FCA3zNGkk3=~3уb^0NUB\.׈FJ2\؄ow9rf uy,YjVYX ZFǤ\{V숰]֨ 0iZ- cl/_Oc$) fX9ZB6 PP\E^9t(p{.6FmE~9u-?Zc486 ],6[63xlfX#>=c3e<,Wh(m54-/sKS7kۆs!L 4ߵJ0v暚z- l&!$ sέYPg{+|׽^mɡɅ'a+̄ ZTGăTF=4A\"Y{9V[s+4 g{ C n#"P),_9H${졚=".Q-ɕl[~ΫkIRB3 fi>ޚ'^a!";+C[8ejD⢞G[d$dX8{xHfDӷvi<℆!6]j50M4;s-SBfGw+\:αkiI9ѺjÅbQSdaVбɂ(3\dv<F=$e[s25̺YtikFqxisf4gOta9워݈Xe^= PkTogPTɤG>q-3!{[:WLƵ?E)!("XDVݑ@Ω+*+W9cɮY‘KZ%-5R$qroeAj|[l>9)u" z94Z sn9g1d%@mc|K1Q rk&l- @Ͷ%DD SA* ㈄d$!O)FLny+D`-2,DFCKzli%ě-lQQ?)ۺt^88k <5akmWykgaCni&Fo3M4ݓe>DЊv&7(+-p`6<̨9T8N绾sRmsȆs:5*青JM9{vh\vJz.[lmu6뮰vh0XFJ7/TU"Ϛ*)rlu<|pYu]Rb ұ+c̷r!V,%LEQn-Ig`bf4hq;+ndU0@A_&䃕 rRI__uڥhAk&J Gxp> K$3 cLAB2!:2aαZLa:3z5 ;<=2@P\_TSѸ{E^Lgήn61($6=giLhD,0 qc&ɋ%LJE]fn̮ĪS3 5r3,n6yz+Y1dDM]"`E&yÂ&Rh[9p#7>ykSjZxKD$Q?va+;VWe1Ø{bNl+lڊ^kZNR5b slpm'־I<:{`'Jg l`I"Ѕ~  (L罾6/!^G+K&mjǾ@Rz  Bqz 3Rb3JHdY AeIq`Uf Q@& fCI^eIY $g)Y0fLI$J*$DD8NҺǩNcL?tdiCy9FPKA\d"!ϤlBRmU"2,%iuf݂*ƣFb8(1U; . z@у!4 Әb<$5 d,@D\Uj%!md7jDĈ'5Kew֛V%TbRh݃\%@q>%vrmNb Ewaaݜ*b}: 59rω2-53di;8:- pct: (;،Hs~'sA"j[mh& x ,5θ`&b7O 0&dLH>R)?ĵo; ˟{8_{L)mލϖ֤u7w@k6#RYc שnZAE'BԮp#iO*C 5VZLmѮ YV(ǑG6*l"^m! Fн+$3lY.i mv XJ]S2Qέ#.<'(av$=a4[~1Ǘ^/JSOOЖm^;ǡĽ]Z"̸ΆRe,a1Cިf3[`d\ktoH\-çJ-=x$þ\;:=7״Lm];5^SlYq%4Z""&7ldnBٖ-DE);;; Ռ>"w9,&4R. PXt*ѡ!8"BG.s澤kQ6mi2i4H[. Bؓ)FU&vɨHb6[}Wj9+#0haFDS4SH8IVJJq {2X!Pc} a!yP(.E]0⎹m91+;FrioL5Ljgmc -YMͩ˃`iT Ӽo"5yz7WK.JwL.swxen;{&p-L[4 涁g^S#Bbuf\kz1 [7͂oY&6J5$YK..`w' J;s0}""9 ֯ͻ6JD4` 9YI H|E"[v lar+* - b(x]|-+sb.yLG~-qppbcI![6FF d0% ϲ|K"aPIBsC`GN5l-突% Xۉ!r2nSa 8==SfE{kV"v)IU[Kjhh>o&ߨ@ņ`Iᐓ#*ZҊ]/9>7,8Ȉwi"3-">xXj! 3Lh&>zgAs3gj,6\z-8KZh9C_XVv:,B= ,k<9$ypH|)9ܬJVuGshs.U1e9HPP9sxI*ڣY>Wk`ak(Xq\Ex9l;w)&L|G5|HrjZ<(X,O=Qi3(*5Џ8,U:[y,ݜUK~,ff$M6mM 0`F mE{,"Ω|2yUNU*r4ZeJ5 L>|Kx@ͷD^(P!Ӱ -/0g>1"K?Yz u ¸S;3 &·1c[6/^#@ħ )DJa !z.81I5n HYDgf: 1 rvnS\cCQrHLl^h~ez ۲kf-]l'^;2橿{M1Q53QHPSXnL3ɽJNuOɣ@gݥ9RiIᰣJ;]6SzD9tLB!iI5Kk8\PxAym"gijF qoXwH+pCK3 3.uL=/"ulHk(əzޛ5uմsUd iCM(e lѲ^ݝȧD_5(JAC(}[7@a5QA@W5RJJYjAJ9"(JZL-2tugα3șm59F5C8p;u EruΉЕ1X3h?Y=ۄ%n*75VļʎC{I+RJꖝsۤ%:~^biPx0d1`t `+ `EfnwpG"-SžuWMeُ5ވI!9+;1!to*`] +E[s9)وJ-SN ŁCT"-'L) Xfwo.f`̑e{0Ki[u}D`{Zl36MGg11J͸pԌӒ:9~uop\NpH{D(@Lh؀55SvalG1rQBR$-2| :]@*E $2B2tg;rVO}k}u-]v#i8Gi6JLl",d,9Ńn bzo(Aw H7jpr Ĕ1RxАV3f7BJ(lz;ANdgzEӢYdږ-"gA> s9glm{Uu{=2}a̦͜V [{m4k^b&Vfф^jf=}sxÒᲱ܌!_:i=`*wL>SmWBx$u(,k3ٺfS1!T"s~>ɮ!ܲ_>3gTI+ &O-ZO/ E5 Ε{p". 5x",nen=ez}QB%[u,>D-67e#-xa,0<5Z tڪZS1DR\nZ;;v^54Ch"i Lf,,etp %sM+'-E6ԯ j33 (:=KaͮqZ85m/1ƁWō􎱘*zf3=+K-rEakM *^dIvL3|3lgjCL:1 fUn+LJREE7`(EM*{[W)w3y'fqso }s U@1K|+.{<]Mm72W;n:."@!J dhrCQ}nl0tJB=6,I7$}pAKcwZX8/)64Iu"xB6~~jr#Wh/TWװB@&>at}Jf`TZc!@P}#3338;1N!ӮyL W2c`sZ=نmCsԢ@1kگnEC\P`ԃgeq6c|Ժݩ~zCUU' p6o9~[{l76ׁ_2ݷu`vZJRRTs ա5{#1A%W)w#D%\W'[Rm*֔^VH\.M[FZvݥ&7RլS 6_3v΢nZVoii&vey:4JDWd(T L2;|X'Msxbn3G6̼&UM&7f&E/JغR =mr1QV'7x&jz/|T7:2_fLrN͗soVu\e\5Ho5ՔXNKj^FqdՋ;\=A3A9,Lݔڮym VXito؏UpoۙmU3I¿|@ǢQ|4S<''iPV^ޗC?F{_2ڹV]+ڝv1φ]L #n6T Bs\jH`) [O $/qҀEGYNW\Bo nǠPDLaa8uwқ:tUE@ݢM Ao; FM ( Μ@=!}FC]A#MUJ"Ln5 ly9(PB_&ŰB@a=MOVkvb DP1;DC#\::V2o@Bj= "`~?P8g$|z^,I'sm  㹽@yD5y7Y7@'K Y'ucA=% ĄHpP(<5 C{!a42CQ l)6US10(( @迯~WtOw6uRKB *2qJ!Gc^g_k1!6M)$&x @ƪIUTHVU! I76׷$Oݭ EGv"Z?s3pV*(Ք7UUE0'bsL^%TR@2Im-yϦ:ޯ]n[0@!$z6w=p$!Nb>>) $xa= 7XY!qr'm$̹P|mg~~됝3~m8<GExW!tt4J>ZMt*Š)I'.Cys(Z$!2@! {ũ=awG7:1RlHO$t{CxIa@8@4! $'` 1d$$'!7Z#@4Ra2_}럄Iⁿra=Cwv?7_?[6Ѽ$لn=5@3mBRI'yx@p|9& 6Rr{oA{kƆH U("ζȑOF5%A !ZS8dĴB|ߍ Vk  MnR+H@J`P ^ bQ`ck*Ykq8\O}y }f3i,wK# I`jI-o)}y3S!GqLaiQ47Ib,mؙggML,9zb1Dc1vx|;nd %!JB%RG'nN"F]GB&ހ@6rUֵOc=IQvt>03RҀ5f$PvͿeX{}B;7m17E0jʌf>G.2:]R#Ja~8{!v?g>7NިPb2?84io{$$w lG!"f׭~d ,M{nr:]>.֣{y|]ԿggCa!)J@P@> B:hqTOo1ݍUۛ5?8qvla40ooϟ~_Ԫͤ7>ЍNϵ %B%:?S[܂=21o1zϱR#ߵػǚS)WS/p%0Н y)@~U{/08/~_HcTan+d6'5bحq[ K%,e b&ᵀ}z!n^q_XilP_3ɄPs`5e}ȇ" 6cJ$@'oPUJ$Ԕi_*I1`^4 mτuxb,$$Mkq:8 bu 8<>nf3}f'Y1ā$ T OU̡f魝j^-ʠ[ p H©6sk@$0}^ACmx:S??g ǚ6͝AΘ󢹎!`P 3'Iە/39eƸQ/v:ZZm=z+NcAnWcb$>9G>UFG^Ou7}W~i)OԂޛai٧>,3]$-SWVSؖ\VXdR>iJ67) ,EEԕ2J=81$ [8'0WJ$tNYe $MtȪ"twp5a;ge 1?\ lbTO 94W]5Th^އ5gZs&fF@ H()~sMrfW V}YilJ oo5ypz{v 0RT?c>]83G%g/VMQ焑TnQHL )HYݑ@YjKT nKL,Gv[}Muy5LI+ =|>xUKzӗ}:ǗpͣHlH8L"HXWߛ;s=^fxkǑL%:Iv672w/:=t>ʜjz55oz:%}9K:&*+3)[湍Fr@Re0+?5e(7)]Cwhaw<׉)~-_뭁>} ?o?v]׉2H}dAلP P853E (g(yQ O䲂|o{OF?8yUtzSci/" 2#yQ'K$AR ̕pN4 O(R=:t\YFI{Bst8T{b c}}T|:tj"iEiH;EEo|di O)>h?RZ@-K2 ]x7n/yη+?| Eq{iJ "Yzo./?KS==$9IO~?#;OGx@ނ×~_w;e'De)K8tGR$Fҏ_w}2 l㦯_3$˘;Td1Oo9}O ?ͤ9˴N0)K5vJPG 6VN? a9'r+Yj\}{Χo4UTZ[mxhrg)_R@f܈|ϯO{βDh²r! T"!U0:BzU@Zn BAn܃N\k"Ì+edX$o +nvWd]<˒ Ep!eW/ ã)D:8ܲjɛL$V 9p'bU=c 賐,\aF:͍@7U+!gk=6{zCVWl)@TR7CQ3*CJqilj{niNBW5jEq])n)΍IEz0)hdST%l!a8,ZtRCM9rԒ)Z2.J%HY٩fVc$R!s$%YdD95W]tUE0,Bv^#<*tos[#tI,D CGI{Dwpqk]7yPOed9H1i?'–gSmy)yUƃ'd `ٍ H8B] nXci@j K.ԇi9^k!<3Uey&nۡw,/>%t220Ϲ 0l؉+F'~b\gH!)yqRuSBCTjbca`HvgyIg.ni?[`3Qmbuu}g3{=QWOv_&?$N}w]+OUf >pw8`bͫu6w+$O֕%v2?lei2e;}_9= w /{ϯDGx9).R$չ/ݡWq8h؁R*{?=~X MԤ~"''"jg%1Gs9o P@Rݬ A_tIRKsT`-w{.~Q̗[w>}J"Z袑HkdŊ_|? Oz| gb6>=i*P0zLI:X& {@ >J}W\a`H!H< 5BAJRR8 w}Zdaz2 ~wݺ0>ߏqG4Q+ FĄR9TR馸`I)Z5Wla~{>|"x#Za /?I &۪!8}O7/9JkNb"意Qp"1y>/zG攪V(?Cy}?2,̿7$r_P)D h-a|.''{0 kQy -$: ~xIyᜇ1[s=ow:e~.}&I#LB-Ϳ:r&^.1d-kXͱsދFu>5WYF1ӸBj]U{k;nO٧UGсM~! NDQ0g@paA૯j~%!t>&@b(Vbwj&`fX^d$I? 猬fgm6jH`O! TQRT2,U| ,@H1IK@T( QRXJ&,!RDRQ@I%QD ֪%9%J !*OiH+C\z?8QY/QIvUUQGos~ԁЮyʮ %ݲu M&{o0~_kOeD?G򿧞%/$BʀVFA֙MU~툦 ]">үPd}` neZ0:uE-,XZoɆɣ Z4MBDU+IIdbB3#˕rc&ٴŕ5Z\01_G+~UǷ?,=W ^"`xAG ]; {~RvaߨR\9fVtkJ퀺 Ʉ, :aMnN55Z]=DeR!EǞDf['RVŠ7 0@Уf|B](<4Tnm^$b7/"iR+G\;'|8b&\ Z' ZQkiwG2vmQdNnHA,2{|B8HX`X U!BR@:4Rs8Ā!jŐY1MfѵV,{cXEA(*9FĊAEIS@Zmi0[aT&XhL`H6uQTnQZ۔ UHҮ?-aWǸ}7 zϑ'Y&s2n)S2;7*zS5w]K;,o{5: Rk>-{}:z;P0䳤?]MӖA"2-VsCqw\k~#:vWPXIyxڳߚĚ5 9, T99VFaU7/W"`9 g3J36M,l_ 33c#ŸCHmus vtX'2uE s q)H"#b*Tf$Wy pA͌g6ę=,J5046m1+^ PjEIQԶ)؟STN vW ->'l"AVZwy.|{|VFHDу6136 ,҄5("Ȋ̊,)ad񄡑HdI I"0Y($HE4NZ YLxN`.?,6QvUxy';ߛWp=E\~1daoۯ^]pVMfoUth3AY1ճ2+Ԑm$ޕ G!L/@BKYr[Z&ܱ × :2AʶxYU3`h[GSvj,=^DGUTr$u3Tvp%y'B%GPcɄvPmDsir,VV2\Yk6*=vSF"n$E=bKt= ~hp=ʣl&ӯ=fQQ"1`7ĉ QU3U4ڇ.6rF F/MeBIAAʷMcY3u8 (S%;IH @wpy.z%Hv*FS@3 秼 s^?/5zL'ItDw>Bo!޵sRX9ex o)jl4ar?Ht)]*+a(I{utr2R$Bh‡,J,0`o fZ3|)jj[UXFG$IQ޹vg-͏ 4XQcNT 0Lkbv=F}fYSRnj8TSK0Z>VvZ2>y_*X 5 y3Ib*oՉ vI&D$64*Y @C~;DLRhHd<$ i3R,Y $!L2I.T,M,$ ԛ<=F]~hmmxS/Qzuk9G2Li|x&: kdl^/ν|i 6$EHPkNOykj!1jm~|lϧmWy+ PR[jIOͤ$GAhC0{~uTOlH+t)qBRuFU^T 0="K4ga\Pa`WXjplL8jYXZl$ݬoon6 q~ѷ;rt2=_*/%8I%Q{t*mo&~H_"jukKn+AtbcOTMUׯ:Wel' /=e!>7釗x=;೵q$ !)#Ffy?dݼ{a=MsTLFNjbbN\1X?]~2 y=7yg-oy÷pu#fcL;t}mg^;na>ܶbjRN#i~;}FRUFb~<e'od<-^d'a 'ӭ2Oڕ?:?z$}^"ٳ [A)il'Ow2UEQR{u}R?WfLhLDŽ5zdQ?'K? ^$hooopޚt[IKS><<}vVG }Xr{5y颷} J5(A."ƫ1?K'g\4{3եU\ue%7تk񛢊Ӽ7dz>g®^JJP.6Y6F Br13 ir_(I}AAM4)$t۷q^<#o2O:,D;^ĐE2絑8촌m:ngOLoeZkUb˷ln;OR*+LSjKlW{0(NE0skgd܏Emfrx|? zԈ beetA0gd^<ڽeh}w~o160irKU\9t |8<۩vܫ=S1wڴBo\m+4\)=]mֳy,~ͯ߮b OeWA1{$%&2rߓ J8=W̾>]/ᄌBq>Xϗm|}pP=*X?G E1 e`]7:>-vA 9Ԍt hTn$S*Ȫ >(2樻a ZA`Cqjϑ JPAd9`m"y38AW5F!6$z\AIS[@s!bTeHX|Vh Pdls{oXM:-֒\K0V`ho1KHU 6z9ʄA4 }XP@AH V?B bbxޟ7x}mt |~>ǍDQk&M>5m2UmIAyÍMVrD+356//LE2dg},㎈Q_ȁ&DS.3 bŋ,Z۸˯JS( !IP YO Ioeϣ}^ijKZ k`@]Ȟl"ۼHx) 7~6WOX˓iSu\rt:Խ.z@bf>!GK2$I&>ڑժaY'W5UQ !%Mԁ(";]xorA^=xҔg_`HuSYa!`~rbfWylU'oJhijѩ^[:XCmJ+}W&tRU^2A">@Vnᛥen de#/.⫝̸{^u1?XP Ng#x{ X'梙}\щcoŗdYr8\'qȳ|wL@/kW] ̢Vʺե{ _!nϸ4̾=Wv˾\7f}冈L#@<#ڑ A@Km_o$[Ku[X˂˸ݝsױ;^Mm^"}e=qշl 甞H w ]^-޻7Z [оofk~>/w3|'?}| z`Gg (!Y!LI,.yxJ rxI Z |F,@"HI@I$ @X, BH0$_*,0i c`L* D$NҠHT(5@S Z5=xhIQ$HTH abf0 ),VP,KӃ* "Aj%$/% &IͤB^ I3I:z :?$ѹPB+@!>wLp󻵧Fh3X˞{i=v}ϱw] ,Dm\_"skWڞFH@QEILɓD0Ĭ>YE0`kYe_:4yb3$8r"$B0Hȍi `úĢ0`ʼn  $<{Ix:`- ECI ~;NŁ.1LRD (YJf!d:bw e*0 ҆ZHHYMkA$SvZeBk=y u7L|N !7FU-VAzu: ^)H!}'![!]K%{強y;%Cda1=Q>e^(,.@  "`HH X9 Dm B@?4$!ߤ $ d9IXV դ,¢2(MJq!7erĖu]vNvz}}N~Vir!bgE^~= Qn筶_u;y/|sO|XeLvi)pMFJьjMe~N\'5lٳHR ih.WoS8:_w%uLa|Z )y~9,w~wŇ'?=K6{ T.◇̶NO>NwlGm11˝|yes2ڭ0O_ܤ#cY\ OV2mY]J]剗?e_Yy_|ܰz|gJc> wk ~} ɞ[ƯhKk{n}\O~?_WI!'K}8Gn$E]fH[??pɒR H6׾ __=g_ఒ\V`ƒpqrs X{  :t *a"9YaM9l 3pLs gZ:`Cts0kL2 $g0=k,$ - ܄rΚk|5y&*{g{N>%O> Zi$f2'߁T;}r/N,Q 3h]Yeov'WZ8vYwvI!$ ;F]g& ' G$775Xgϡfw6ot1wclm$clo$c|BF6cl ߷HeB~W}wRFܟ¢ި!T<+{w|̃lmQUEUUUM#ΎCb{ *@tR ǵ=~/clm$$ms⯚k濟s߿y|\aBX*~ L&ZJ뇜dDCL}_Ѭ;1l$ vTS"Z֬? R( X\  qa3]OPO{(v%>$1CNnJ(T}|a<70&2ll]߉Ǝbof2lߘ*wN zR %߯O*8;*7wSFTRs8 l!MHmDi^phQXjTB 9@U˫7]Q+)!y9Gf ViG|BcWtm&nBK"&&_,nt(H+l)dHg#h,3& N.]:9bDFҊ4J*֕RGMR(A(b,MJmKs4DYbjL⢈$ lqv# |E` TdBXPe@`>Mx@/o lZJ15ėTJ7+Q$ڣl*U[{+o sy\$$9ۛ"SsșøA_/(>Q95T5ma7 BmK(& R+mBQ5(J IˢQTS`T(|q\U\'bERR(68Xbŋ*> J~g﹏p鹋 _ ۞yxSW8ZٻG=֟-(EIú{ӏEÑbER GI3%4QMEa){mСB:8pᲇ8pÇLH$e^(d74is0jy+bn+0 R81Ya+U") 'ci%n hskũX!ߐ[ٽ>_cKB9L 3EUJ6 7ԫQE)ê<6ŋnjj˕4'GMwÓ//}EVi)=,XuQbwKF!kX[[˭@$F"&Ȉi JYJ܈-L&:xǙ"UM+YZF7+F7v̰k. DDX91Ț p3",I5A,-:˙m"$[OYND5v!!-I,@4$3D1 T+yc]Vi}6?4Ur9Xȅl T Q/,6P RaD="r.#q&SI"[1ճ;V%볂ZvOӄ$r~ L$O׭=Z%@~ޣ=,1fu?WsE? t̉ [hDOοC=]^m0U0_RE K R )HbF,?K=*>f|Sv2B酛uuu0uoupt]bnOD1؈(J]$}mGYַ?[~Ϻ,qcIY[8&ϡNZ 8/ޫNcq\= ޯ%hae [ 1_3&$+l_zϐ쳼[5nE(jY=1Xk(~ut;v E9OC[3[1m&_*0 iӭ:ۨ z|.RL?BgkNgm=Zɏ#HP3eo9uybc:~6L_tvs!:gIyw|& z0,;庋S]=_q!qxG;(u>M~;' ?\ᶯ-/cZx 7O,pdȈ9֪=Qa(V@Y.S=OАP~5uƇK~?^^쨁6_=_~3(}6r ن`Y8wݼoew^;O\mBwyr[ [E P@d:FˑWfgZIy0`BuG:ThY۷bGB 3#]tݱrN g‰8~0D"$E%Q` PiDZYK4cF=tOԲ>tHq8ש~4oj"~=@T>ثVz'E\>a.z,%sVUH%p]uR嬦w .'1c6~A=v)W ?;#'u,ʾםqi1C`(|? a=GYZ~gEc[la W[>{ƍűew9a!ѐO^crޫ.B/\ȹ?ͽг=y=0w86 @8ZSᶺo q)=e;Vbw8l|޷v&EUˆ2Q$Da.7)>fP_TbU,Ir~ōK,x Ek-9͠:yvit5p:[Cf>ԖXAŏYb*~i'3J*P)ߴw^6{l_YѓXZ! HeC<6g_~އ:їcbr:KRbbz9[% I5{x'|ܞ+r5k'<)f4f/gv;t<8V?!!5sQ3|<8 _B~/ykǿl{ߥIo u(|/hsE*)Yh suk?*^'p0-l*ML8?۷Od8=;a+ 65ؚV0L @DH&B8В XRA.>C)o!E5gieܰ; {o#e8>L?u7|-ŬuB́>%-5.iEQUQUYYܵAC$UH,ٳnѾжsȮƷw (B Lp;fWmޱWn_9g*Ӫ9¬3RqpL2]~gcLDvϻ\ K.W>#H@f$%$*()$i0l&WZZʪǗl+ UO[I[Y[P..85˲WaΏ&Qf/5$ ZtikU3=u7m{b|mcEP$ӱ-q?ioyzu̺ .0Q%6ҋN ..^oCSw,Sڿ}n;yKފ?쭯0-nZU+MkD kwPVz3{mat^a3|~Dh>'f;, Es}TIE&/{G}8Cg>Qceg?c7a1qYN9s= ~?vBv_^q=Y~珬OT}GYV>Cfl$|kg}; Mz_oZ栫spTXGc>H~_%,jDKV1SBEyx,q)R2x͞BfJts ߭/'•Wz.#CAdjd2;cB?m y ls6 n <5Ӧ>X E{QC6T.z?F}au<Bi^۵ׁ| c4c(=k2O?hylW USRgN6i/|t\ƨQEQEQ_nݷvvQ0׫QE(rK/B^EW9mYt K뽀7N1AfQEv*bjgdw%I :43浚+>m֣ fTR)Ȭ5Ip!Z2])~;' pM J:Q QRA^SRM3TlhKk xbV "Aav_ZT 66(%U̪ܶWn&DN=R`ㄛFLK &NQI|gGewM+ZU3emT1iŋc~Y%$%.4 VV vė}^W^{o=F*jBPd:Z4X6M Ny7iwQ.&xйү! h) d1B(P`]*@X":@*:"\?Ӯ-oMy{'0} F]B yJA 2^8 2$PHBjPbfD;l1J!ؔ'-GD4EH8=ۻWnwk*~W3*iP%V8qauBB@RZ2Ҫ q-} y4p5* @q bYܐ{w8-YRq xd A kVʬuWHO:B8i990STQLB«De.zOsos:m [ h;0^ƻßx#rk %f&Usl.IaF[@%䲨*5iG@1ҶMjvg~- ,ݣ5soI4܆Md 7/@^qx}==>|))҉87ц5!bp*nLPD>GF=~/X1D!^2^7cQ}IQ"iDy:هgy{_,#.qHb^l~ .']^3NpWo bhb: :X>MJe Q!\(ta -#^קc|"}Z=^\kC,kz0=Z@@b% RNkv %YJw **:iƑ qhàꃬ5*Y%tOkAj_wͭ'?se_ߤ c AnqgUC#C C|̉pgp=άBsI $%%d h_Xkf`Vy0a*9O>*9e[5bq\ӛ7]?e5vpG;r<"L=TT'OԥNi 9*Эq$l+ȯUwgߨi1̄;P TU=xkǸEe`Wf=%V-W:Q*yK /i}r9֖65^( (4G"wΥ6=.VK1Rvw읒˧۠KN{<^<!uݾӮN__~N7e7N)@"I+=0+❏crug95/GQh[`rAWC-M |Ӧة6ڍ I 1P}[)ll+zv?L] LJ2"Xq LPF<Sn=}:eIv /lflgнksxNo։~u՜x -JkkKM,yv5۫{[3{3[3㫾O}W`]8>*Ewtզ}5&IL?g]k]A34,^ݼoUpa[gCWرΤ^P1@5/,Q ).T$RIQj9Y n`m}/͎,l<a!ȗ/2^:˯xs~~˧`ADz}iG i*W3l?7f-pj@]=}6a9s\ǖCg{j1MfgiFO#iyIܫ+> qNl6~UZ\jgJ/m瘒&R2\N~?w(w{zGL^^u=/W泒}uDA^ڇn~K-7NJ_` ^x-򯇽Fɺt/xYW/_]"dQD!x#C 0߿UY3 C_Y-`h H|-'jܪ'J.ж? ?wܳLA ֠n2F "ʡӨ7We%N6CV@dr^9m]Fvq} +%r[ip8@fp%~įلyqR-LLT 4WQJ(Ŏ=OAL;wX`Q$T- .K*,3ąͨz96;)jI[N,!TIbܢE'Fu L\Il Ǒ{Hgo>ۡc/!g/74xZi_~eh{}SpY~ϬR_/A[q\p{'s<.׹,P;^Č^uP@r(P~ w5-_㜓H~6<5!9BcJ+wXk}W_ޅP~E eVX3 D #@h) ((y+DD$ߞ|O+ ùІ`7Kڬ>|ŧ!==L$ZQYı{r|a%xLHjڐfT8PO`7,c~ļoGӷ^,,s|SnSC5ߍĦv~VA\},Ff $?j|UaqzB$ #="2ad8VE0 PV'h}/$)EyyRN"o@GJKk *P^ϐ0պn&|;8@ ֈC9K+;")N݄>s>Y .ܲg80dAfwSTGZ_硸@.-i#f@L)j[O; eǥ|##\L zӓȥ"%&o45 "%1دtN+!McyL6BȽa*Ƨ%֐p߿;ԚI_h-R1oN`5M%4so7ZƁtµӼ:K ؆kX`qӝSGiXofq;k]o˘.Sr|랙Zqɬk@JsO>k:hnM"ܢmxOƗr}r"dhZ"H=%fz |, BK5\@jxyR oXsVn}f2uKЈ<3k  ;v ,dj֓1gA zA%0ՐG _Ax#!GT|C@-WF@f-&mQ޻NOQ*kqмXnN_kzߡTw鼜 \kW̼nGyu,ܺ~VC5z%FuN+/%4#ZI?DJśJ$3n)6 Yϼ$aVs=sѲ_EiE\8Yuof]t}lّszِvVAW"3lt4ܳ+Ϯy530c`zA SfCD#[z%S,bHO#G/m#S&E`fpخx|z[=?Ǎ>[y7zmuchț{ WN+c|HSƜUP_ U"M'75DWx߃9-pũ|uA5 U9q]r$ǂ[gș2*~w+Jaf̨OvEB-5AhY(?GQ1 Hc"tԭ<]_$oЍ&T.=S0iB(X}^܀ uU(-}]?]o{D{Ο+4ؿ$EtpT$W 6vN0$ER E  IW$T2J*VDF2ZZUJIba~s뱇BT>*W'k=$f;j<6tRd 3܍"i8g 8P`W`A_z ?p/oߧ$__QfAø8 P|ie}w;PI5V'_t Bp)8TDYԷ2i0B5"R{)ĵ@L,H" NSYy V7ZԠeJkp@f۴ٖmmU [^}NN—{ q9ԝ swA/5Akm)+]{Y4}>~wb-wap4՗!Iq6LCsj_6?n o~ٴ߷?mߑCG8B П,$U~c^ ēN^(0T4ĨE9a?`zňC(KrySsr>fjƳ0YF Z.^{ݙMsFꖅX -?qo%2 OYx_?y:O}a (F<`R˻W~.33,VѣkZTQA˲e˻|ݗw 'v˻YYwww}]]ϏqwvYwIIewf]{}vYwwe3+ ..$,yߟ0ߵq!Ti&k(=1w0Բ˸BHBHBHBHBHBHBI ! ! ! $$$BHIIII ˲IIII!$!$!'Z BO[MӭUlYe!$~g=%qa]:fB%Q BB{{1L]MM "}XBHBHT$$BHBHBH{K.l,$$$5.e{O}ry98BCA$!;7>nNBYF{2рCKmʰ F 5dj TU"24 eRgBfU^dڝ8idޡdEN5*3RĽE/@ +/ \66oe lcc6HH61ٲu1cu!%1ct>#_c6ЬX]j/ >z7sump%ֿDG6߆aܾ7yy>6|ihK1)bfD0 0 p~Ĺ0ger vZbŊ45vw60+`0nGc={Һr1l1H}ǟ^qJc-ӈlS;rsxr5slyG u}y_jf鍌lcc61lH1ct7^jˮц]1cZ&Nz;WcHHH1ct鍌n )ѧכv8݊xb2 Ll_!3RD e1pdb7`?~'ey]S+9}0F#<|*à޲n(:o衈lv{"SI)F,m1KD:+Du)d"jPU-I$K7ny}\f\6,%$)0%HX9QR\UWQ t G;sIK!vMr4]bڐs8(dڼqA@UTcØUR҄ 9 JR`j+0ww5GX jnUOW2Z.+?m-Wm#י\ֶ 8{f}g[Kz}{ _~npG+($IUwτhɋghhBTR Wi{ޠ1HWǾeycVkK>O&:+u愬).YϷV_8WT)ir%}P:PK8u/t'J$0~w2O9{%?gCo̵7Wޤ]_~E~W.L?+T#F8#^''ˈDS@aI5SI< X_E,؏^² LN(H"@RO!БڗkT7vG<LyV*Tj^*7{X*yYWRR`IW)꫓3sSrsuӕ̭NqJyFppsc<< WOOG] )t:fQ,pbEklopstwx{|bcfgjk%I ߬0Ru ;;Ȇ[ r%mV\'d"cek=[nUy苵w&1f؀#*U?q#z\h>Oldd}몚 ?^7.Օѧp=Nic1iO_g`]~7,=&;Ċy+(( 䔙KsvإGIۅz5E첂|7z$1@=MG%{ 4˱|@~r~c9x H~O*7~KWJBz63sP´j7z)_&g3y=l|ڭ Pèj-ô±F"$6|`, B <̿֔\\KMSefxOG=Zr- >cɵ=+7.}Ey[~]t+k SRJ|tԅ33C;b>8qhʊcJcX TUUHoQ)--ѽJ!PD(8(N1ېJfR6e5EEa?],8Fww_T E`̧λV :aeڂ!fYeV^EJKAmp5 IqѓJrt0ˌQs/qwpb"fEcW Wu&Λ:v)͉B,)˧K0"7Ӣ$Yf?VgOpTvg re (@%c=ԚY EdND KAz '`,k+7BAN_Cڷ c3YÈ8eG~A* mMHOqIBH:ж{=KM‚}q̺:c1!S8ǯR2,DԵ'̊zZ}2b`9h ^LB|&!䥜>e|Nn[;7c`zj:ee#]O6FWO-+_4D8?Igtlq@.5 %7؞g+?$|?OCNpUH3ŅLJbsh_ڱ&+歮I|*Q2B !/ګo7ud'PqtJ-ڽ}l_>qmծ%c\yGooӏȏomLjخam1ϊwLL=}Mާ3oc)(=H@ WaX㎷ NB_jr9f36 z67#{h $έ-! [8$AQ-,CJB`us*K1ͰL 2T}hm}ٓrkY%R4 =u_1")5z{;pAt^+2n;C0}r)qwzlܞ L,c5>Gza;ـ` @6}ϧg`ǴxuuݛW5p*O|]dLZwm:$vc<%&m&-wʻԩ,7p{HyKt(W/mT~5onc^֙JŊ4~ mFm6u.JUTEJ:wM(uKg~)}\1zUgCWK#7 /G8:FӠ[i@%GK{g?m?!ډ"6ضݟnۻ?J)ʵ#EEWhܺjQE+1w + z8kM=ϕjzߏR]f.UW܁Uc5Aaҹmr^x &?K)rZsKY5a*pFz%g-r/1fb %,[ծ,~mjR!`[H\@ͣrcM|_b*_2E<^AM l߽YgǮ4":s )@ (-Ʊtr]BG' CrQA3ʬ,.ʰ_BO!-fLVO:gB'yegn҃*Vkt׽dzWVR9GrpJInAa@j!a( Pڌ6+PŜkYݧ9n+!y@RY`0L{/ki_R>*O,+m'|)Oܔ@w7EVwj{ cUQyG]lw~g/-p~n#;݁m!u_A&c3!2F)lVZ Ff- Fu}/Wǚy ;nc"h '|3΅{3w|r IsblěiLB½-ŰJfً ɹbh`@JjH!S^ h_Ka 7 U91SXM"7:C6"E[>/a *DB'6Cj  J2Wx$ |Qsn>6Kz[szS<:O~>ݭwto25E私&RdSԽO?Q{NJbyMGϳb0x.eie|-_g{Ι?0/E6A=SPlƊ4ƭDJ OOZĻsBX!@ra-m<8nB?cͨw49Nv&[mwT.?q@iUW}A=]l`fu/J/>|2?DH)C_G j7>&xb>`?ܪKm6ZoHZOy|s/ZK%/S4BZՒqvZyw;88k^A޻ws^$vo7z.Ɇn @a:}MK]vސ@lqH ɝxܶmj5,MeUvk\Ebg^ݖf_sc kEmMf)?k'JQdXWc;ݜ}'bErV>ޓhB8b 0ꧥbQ2d?..t%L>&/6L oE6}!qi3. Bq: Ois C79zF%fЪiڲ,Dfx{8m {V?rd˜$?%D~(5^+(qN%['uTW_H! HSI'9Gsy~czC߯x ;]V؋e[; [~?l.;'$=)2+&u\Y҈7le7c:>Db  2ADO8TAediɜ|KBv}*LL{FkGa? 辷6el3]MĈx||P *UV2[TvS|\E6ˣJzYllj޺3Ou ovv!F{g{nQ{;D$67n몲PtWKo?ōreb{,4LSck{u8bxìWs6][6WulxK6ym'u~PqWƊUǖbg.rf:'mz,m'"f/6'Gw\4ffRs˥c g},~kSm=R?<oS^6b ^Wװp2]w{rR?Ϸ}ug׺Y ѿ9/^࿾׋qrcqq/߶?9[{V{T֖Ge=uOիdMEm |۶ t))GK3v6?[Ձ<0BmpZ+68LM!{'k'{>kۣm0ٽ4w2BeԅE:uS3 :mghS9ނ2f' `IO1Q.f 0b™f$KYPb0;J+w~l۴冶*?&s̠Q(57*:&'D8 L]= r-ܩ2k= ĽïvgZvuLh̶ @`ixyF3=pS^K ʗq2dR`|(%I.N?zjh^_SN7z>RIP@7h^kg_p;¾O0ֻݯ/R P.`u9\+^_y_w:8ܡIWWF]h ?eﵒjTd$$?-RUGto$*I}|$I!$H$I]$cJ&]ެ#$mH̒wwfmCwwd.-\rsdMY̲N=?ٽꙐmuclmclmcm6rA6cm6'nF6HclmZe:-clmgA632F$C(QE8UC {V[ɸa[;. S }dz`% " `/=N"-zɚ^rŕ3UE,{:ŋQەB,{;mQym&QE.b)UB(Φ\ja[edc՟439Wso91QE,Pw ɜS)'N0ga oh^Pܼ^?W"Z L dPuH_Kd^JA~!r.hgJFYXtܰGqIJoy'N[SS?CuE&6fv'7gw(HV6Fv͋v@Ohz2gnF#vDrv/j} \qkW-wՏT-KY|VpЬ167qk.凨@LIix](ŦՌdm9t|98/?n;|F)6w/X(`0^CaU Jh:Ee+/~Ph8}, p8r˛RMüPA4a˃Gt\ fEVT,eZH17/w{Yql?FI5B/l; q5G R)=w?g]ς̃jzxucnyUe~Y/;nhH'yY6 6'7X"Atldr=m{YfͫPwbj=թכ,짱4kl\;{[}c%c|mvq#ȗ0ӆj.GADB4F@n"eb=+jLfۉJK_j/XBiX6Ð^VX m!\$q(!0}Χٞݬk3tZC/W$P@Qi]èZlK we`s+)6[ }?_`ߗ\BܵYoԷF長:5LǓʋ̽R{WWV^gUXx>>7̀3~q'$vƆ&~KK Nh_AODZdqgREWϖ*BEU)Jj U_jU|(=<~Qj:FYj r<,=5/ObLWUsڴs7l+n>/drsynݠ>nˏW6#|e|.'S7[wMRJ@A$M0I4uuxyxyt8')tHTA(B/c} D$`= _m;Mcp*N鐢|9NJ^Uv)}W6.^eb噹J{Wݹ?3v8x/`Y|OE?>EV]Ə*_ 8h== lwy c?D@YGx9eR#a#JU]rǥ]6~ %U:Z( b?ez %gAv{0\WK w<^Nr1+/%쏳g] )Auc ~ ͅgth}=_ӭS3.:Y:?Lv_ؿ.~;GݺQm}Z?JI5oGU<Ҵ)UJ5{F.֥yHSRd yo!_ nO(z ;6x^br SVQUCBKlq.O?.XБ-F3{[_0W,Z$,$|TUn9H.i!o;-*&Mg/=Pq1/Qr2L ,Vbq1aK_ǣNn 12W/kT6)%po^ިzo8qqM+,J~vu\9xdI苶 }0ցU8nacYR9@Duh2? pBrrW>dž&{[Ո[.j88}ݧf3'r )I)1~Zf&Ӱմ3YOZir.֌rks3D.gil+8ćKzX ^e%2 G+C+ӹ,~۱Pqr0BrNW}bN*2ë2?5 6A׹Tl!qT~.kE;@`x%v}J>{[7/ ޞVT\8j:>,aȎEƔ&i`G9 ń1`Wdz"n@猶&$ ƧWj&EQ|ױ4chB2x7!tgWP +4hPdQaʩ{ Z{wh/'o9{=N2Oi%`SST$&d&&UHPvh8uIi vE,uV'u;twn\ٍ+c~<ȧ_{r ٻ?|_?{?;H%4᠚/6vQcIYH߸xQ*SL*k/U"u@Eśc]vm/U!* ~~ʄ/ ktvK 3Mb@R@RyEۃ6y[ ?epk[~0 ({];k3u׀cv{,ʂ!]nQ'b}b/}y;:ԛ/OG2Jq=֞ON6q3n}t}'dn=_4R7==O^t97.8FЃN(8拃DCW$رz)UcTPm{?];/s~zϠϺ̻=6̏gvq,^eqcM6_f5|x{/G`!߽FdgeQ~L)Fzot&3B\l; +^GEٱb{@W}>eܢhYWŁS+fJb&_`lglګcns[?goe+:g);{UatIM6??oM[9t_͆c0 -+Gt>F'qW9fA4| sMzo:ρw3LVdKח;_f|~~/;Z9Czk] I|zs~Okb{=]9fxfr}O<A3ِ103 aK? 8&;SMJ i+ }VOn?|tQl%'d='np(Hү_A;||l#9Weۂw98yt.;t v a I%Yk*ҋ:[ BK Ck;[ǰ3Tْ>aJ(%ʵ-R{wXQU2!93'6A)a_%U=o@j%xQꎳJB@HrLCjrK7Yۚrih[zܱfnmVy{QM[ZMO͕bKѭ. cIk#Ƃjs|CKVXi9q2't)En|UEUm5~-Rt2j ;Av9cl }{ic2ycĕK~zXͭunH\RM _N#Ix &|V90P;)E/OW<>糑mrYu4\vF[ujrAо{GW߯QCxɶ7 =Le2ç@/~,FX2Ub\|nu{b˻.f\0˻,˼A3ZֵfffI.˻˻̑.̽]ԓwWww4I5eްVk ˄ezXfkmֵ32˾,˽Yeݗe|o\>NNyIѭBewIIIIII!$I III!$cvBHBHBHBHBHBHBI %wd$$0̲z,ᙳ7eOoerBBHHK~y=':Y !$CvBHBI ! ! ! $$CƧ?e>}^zlct6wĤ,!=xB1wYnj5ۀCRR61N̸^S q !0f ծC2CsȎޭu[OvU&t1*b9՞nax9 P`npSIX٩]Usa=O1ct6 ܄l&Y|*,mlc' ca6t7Ln1$7LltM,ӝNtvs.arH7d/=z[k[NOӊ沟R?{-fo5nC5̅ ~[-8>0FTiX11"zvQe~N˗0³227Ln1 IPn1ct} 1%B1y^+/|Shѧ򰑍7Ln$611cc~w ct=_?޵Ln1cu nBw>7':71LI'5mLI1&)c[ǵϥl1Q_>gu۟]ٔSM)ޣH!nrhzw>7?X#< 3mv쭽7vwwMN>ҹ~<>CE?5uvNSv]fѻo-A7Е,xooPpL- -m&<>,+`ھ,^8_33o6U_MzL~Ew]źM\l7h<*[{oҢFv[ߗEv8jsj+^;w2c _GxnR^C}vs ^DFg0> _c:j/ZĚ-{~J~ o76 ,;2ϛ{<FAF?g~~뼽xHzqHezhQr/ۨi a>~ĨO_K#^{?GA#}o`]z-gV^eq}'b}@촔\{g}}u_حY4G9X0:]an͎8&Ӕ`dqCB0SE@'e)Z~ '6vWș`Xs7zӵP}12_X$#V y '%C*.B4Wܕo70i~ M]ⴾ\6kE{s)m`Ň1l~?}RUwN?4yR4CI5]qghklopwC9C×48#)8_PW(9R~׭Lo|w_1=.>@x^Ԝ|^?شxMBbjS"]$(SFKj)pM;6Z/nkrEǽ!gp㾲hNj>2?[??;&mv\(,ĊJhi?$y/DW}j {3 j\zA;S?. =Fl>{Bŭ(mn82RFC{|cI &HNzߒ\ܭYope@Y.R5NxRBr"},[eEuNbOP-y˄Xe }I(rbuiwWpS\W™I)4 %␋Eei}'S?2p7(lw]F1Xq|࡜ .gﺾt>nODږaCBz A.坌'Ԥ[L:n:qA .+v=&p,"ÇRR8{Gqs=A9`C=9|6#e5mjR#7m߷W ݯT&"(Q};=ߥ?~?[?oypq2Z7MQ~E1noL`N2AAÕ.)elS$?n=gȟ^TɆ 4#G#UC;kfHh=ҌBO^QX2~?nCcAbu$\*(␥(ssySQ NBLzCAEls ;Yf勂Wy;6A5˻#mn2-#~*~t_~׳EwN?4yM.N/O0P̌ -^We`UEG̋@$]ap= =g$;gYާsZ({ W 1tuCA(@ K<`[Tw4mRS&VM+翗F@<"IEkB"'0Z05G!BezZ5QHA(l$f|Ɵ10 yR[NԁShcKZ"IA=e¯_>oy:K ȗѰd~D/=lH٫i >C_l7j5o)U y;}kcLJfOW\8 ljy`!8E e0xyo2>tt1:y(HeЂ@뗢ͺ@ Z̪E'V+m $lI U%RjHt"Cm( mItmH"H(nFBTn+cn&m:iJBlj!lQ$MIGM6M$4(НA)4D%BB64*RS:bnDl$Mj8H* GT"BMnlHn6 moS[_-pQ_3Qa[rѢ:I!ĈRM}3pZ2)" )lh},~LDd j~fFec$}| /wtfnؔXcZDnZ?Jn6E*f_[_ kD1R4ZDClSuiV*)qRj@ d)d&.+tfF_ab|>T 0-UTS"L)i*,̊Q_*30Z_aC_2f+164S@ʶUl%ZRI``PMIkP\H .Պ)Y $ [Q$gX + JIBLRbXQdc_,,0>~Y$e~bֱ(2,3, ϕœcw+}ikgߛ/0 -TmZK5Z35_n*ni|MܵIY򵟶drfF~bn(ȲW"hR|_#?e}_1} (, Uo52ia(Qd)L/T?[~}h (-k͟5_j>kUjҌpa0Q|v$TQTZ5{rI2ϟԇ׉٥jUS$3 0[H&EbHDd5I(E\MB;B"A"9RRGCCJAt/m`abo[_h`R4TfH!t %2!.aiz(d. Ur!aYUx,#,2I/i{-*X.F KXT]D;MRTM)i#w(& Jo|h7u[-UUSURA$6)YUQy M%eWTP&ulHYi$ ˅uHUXB-e}) Ol,I2g^H FH,ˆfјUmm~ι_cp &PuT׳Unt1bTcWl h"tTl}eut:[\VEq[YgBToJQ)P(:I׎,hOzPY3~{0|gy/;v6Əjh VnAthz8<ۦ)/9Y f:y9vXv̨=nKÞ G}H-Ŵyyb^¬Q$7rzw%_nYQ\({#4Mh֍cHHRz"H_(c hsD[DK >L XRFA?5&f_o.q8RW1bJ'a$7 C:IJA4N2}y RDu&P*WntחO+<5#JwL$ۍBA *E[}6nջ`ϭnZ iȆF4ڐQ8)%q$%Hӥ  mSjdDhMQSM5#nSBPlN8%A&1E!tQU܃'%6!$NAƒl6L8ӂ&FIIIĚbRcnG*'QHk}}l0ңmJ)j5ibY: -tˁDt͎QlR#.[ET Jƙ6܄66 32TkmEe,C<2q))d]m}|g̊kZZYEj["ς C:DEQ8*SD5HȑEDRHTTbx7z86$EK4uec3p.ch3P׾g|K5AYO 4_=wrt,`s;4C dYUgțP״r*$Tv~ ZԴ6M 37oVZU >ݝHZIiBRFB%t =ۋ7Զ]uWu.%el3tغ9;G_7%.4--0v$WKάn-C3kSeiI#$)%SMcM`F4|[sӧJ((0`.\L(_f@ 3 \a;LFLYJR 'G-3 M0.Ng)iaW|ujی;rtu󎠪((Wn(ZKj\bKLl r PJhDHUI iUۖnHm5lHJCq$4)ITMjDi&I:b)MIJnG p#wN7ՒFH6d GrN XeBlhZv: HTMBTQHJ!JKTT6qA(Hr6jbIN]!R u-TIIMTT4DQ;mSE6CA)CBBPn_}lYWϖ>J;I-H"*m*Bف}-l~g?J[n|9%RM"mNZ!0j$"r#j DFتCC%BEEƊJ$D.BWm6\.%#r]ݲ4Q5CLZgi_i;dVLjNӶ !!GhN9tD!+n$lB&FA5VI(m2Fht)M!7Im4M&աCpE8ܶchD24d)F8ڤGJ\%2&D(`ReƤi !Q# }7~ݧ3[ӲhbLBD).W  KR 6M[҂*JG,jn!]$ljRAR`Ja\i;v5#VƁF!+mPD-I6ڷjڤ%T- $%nF V1:-4܃-U;i;DR:t SiIH#|_>l϶7- HZWϾ4[n j3wKTl~gϧn[mJWd-4#&jDn)|l>j|7vo߭w6߭ВjˉD4D$%DH1 CRHĉv V+eT"tn6:MUqHiHMTCAN2$m%*bCUWjTҦ$EHi:W#TTRe[h} |k+0nZƲSv[>-7_}j}}nfH"m5 QҒPrFm*5#TtI5TT[#.9rU$&cm4AʉUD4$M2UWMl[#cQ R[Td#Dq_b-h/X_Z1m WpĕK9%2 U) N"1lwJ$A&\+v&I VeJ6J8m5JI T"R@ݠJM,uw!"!m1VB+L$uh"e lhJ]6$j܎CbdrJRmI,n5HVӐm5$PJA T# 1BTZ,@ LJ1qV&'lEb%ƈҤ RwVP@.HȔmZ Li!R!"vDhv(T2V]ujZTC_5u[jٶ*:t!ڑSNR;*b TZFW߭ߨ5k+QD킴!!vhJmЕEʂcBI$\ iRlIv9rFD$@i&EI[hVJ.I-\HiZ)4J4jߵ&}! (r58R:_l߷~}į?MsX>>ݍ|(j춂Fb@BUvEF I44ZRSUAiwY#n #86V!B[#`M6HؒIh'R8)I QDM6IM%Dm"[-9ڵ IZljL$MH 5iUF[1!+@#"1 (R鑍JIv+-B nՑ[cb i8q&c\uu%$ nbo&$)B:vH A#Kզ'bmĕ&TbhVj`Hn6m4&1Gj ]"M 8$A i$ 풕%ceȠߑe_3WnIHq44۸-:I6LTZ]MI!M!$wj+n1\q$+L 94SUݫcNQ($L1i$\aD[iFvD[vnhJ5#cQ+v1 ;Cq $EDX@*hdlLB5LIr4FHAD6-ժ%hqI*N6"$Cr&H˲BIH1*HFK." h`!ӻhQS4V؈c4&J!ZcMZMv;Nhhcbm CwFkwメ_}M4ۉ*JCrdeZLV1:nE1I8EZliFi!&64n}_}nŲ,`jFZJUm6+BmFЩeEQ c.6JY}۩|Xٿ/n (!Rڍۍ8ԪI[%miGI$6ձ*q;D%&VlPjUrՈhmݡw(m$mBw&6~k|[/ s~ _IkmP~ϾkSC( q]J$K! ZtܻQ*vn#iLI"&"|?RcۺcIb)|ᄒh9"br;v8)M![pF4L6]6ĆIhdMTU"!E"q@)!![Q 7IvPVXt&lx3߲l\18 O-*iMΠ&oGݮFEO %Y'nٸ_Nw8 &@qNyѰ f!R"j ~DyAG< d/ٿWʈ-1kq4IUBR&I t0j"||+4L7|j dm>}ۿ>ZPEt$%F5%fES-~v 1s,cO+M:*#"5tjHJNOP)Z,G.2r:Kf)ʙ)%Yn^w1Xr9` NQtqitr<}4zP ]}~yѫ/,3 8QRo‡PfINN/~(BAyCl⛓)8r_m4?8%bDPBIlQ=bXSs =?d(qu i3V \"q,ɍ[3PO-1DŽ5xtW VC6bB~ Ul㺟%l]guk-!EIC^|1\5e9v ݢ6J3K WqJK\͗ԭz+\yγ_Ebn|>%FPO9Wn7-\(N5O˪3߳[r%_y" K+K~/wBa_/e;}x0Z|yZRFlаVU`JOӤOɤ" *C/I(ߔd m0]t#g%p{:^A㵠jʵu~SY[jn7sS;vy_rޥO5/%&4e9-"$~Y(j$C2/Ygbrc8p:y$񜌸# @,NTX`r4~;.?΄ss=|? x%{r{y: ; ݬLo Eȝʌ)AZ^9X)7oG9P 0極=kE-p۸N  ىi-fojoioo YuI_aY,r0Ɠ(=TT̘Si 35LAh|F Yq8d£(nv|8*hy`GR,b31_FBDbX'&-!_#ZwklɺV]\jVb4( (єw^ɴ⵿,} 3)"@Eb4;[7taϢ &PЀtԜH)A ]DBx]ʹRf56ZK;'b8Y3E^73]7CsiZ<[ݿ?wG즦rl݃0.w9tCny[} f/?GΛg7 X d_iB~ȯAoGVkT5B5T`Ԍ_lpk>G2 p8yBPb*bo7舅o`58iF+c:p9ԌjLa*{_㭮K K2#7٢f~o$ L6bFH=W1q $Oa!"= HJZ ʕ*TRJ*Q"80(l4h U.5#GGA?jN@} (YU>1g;*I?ێcSݫ ڔ:z~VR`S o?gp-g5o~Y~Oap]J,Vx,)qTI|'hh×`ADsvwz{~_abdehi*z'u=+G hϒ!=e i<{•[J_΁*'.-;'M_ ;.XwH0UfkQݍ)Jggۿʗ!m=;?~O7~?o?nu] ʎ4Uk<3m۽_vz cs -vkZ.FQ͡v TJ!KƘCr'  epi2͛4cLP5J_[5 XuDv}p߯9L_Kc_ô-<:`T:GΜ%i bA*BH?DrijRZ 61ayȴw9fƕs9Xn>TBEM_o?AGo4yR4CI59bE}4R m(I~0)G+/"^0X4XFo.w-SyתG"`\iyeY3%P"c.dǠGl+}yT/6 7C ܵ[D+#~γX?"fW>ica?YMҷ.:|E/=D?'^+]s9 NkOc/kV~wyjj>M:MU;4A/EB-&$"T:^]\wwROĺ̺J$?ZV!$2:BF5wr6pRI#2KLYwHH.$$$ԓ$yeewwrHI7, m6rH76clm6$rH6$!$$m6clmwv6H6II]6$lmU$mlmIbQTƨRݴ,Y]~F8bU j7Y>减6ogHb6Msf~k4BGvd cX=ݶÜX,-m;Af4շkʅ8u1eQEB#+q 4ˎ,XbԦ?Oyc~o-;kzWC ӱk9:M nJ>,qč,l,I敦'=eE3_C^$WbCG"9ݲN砨"FnC g᛿}Ϸp 1NmFeTh:_ùk Q(cV,XbTϫ*Ȣ j _{ R׵qK)kpK yYr ϫ%bUETAHtm̃3q3թAeSaq5fB1sux6A(()HWʄ-}ͪ2[/0E!  B'KIcjzzX& ArR?2ӎbt9oˮ7,앁 Y>;\!A +⃦Ro@ OЯ)9}Bjʂ'>^NAtoD<~Kv~ysNA;%|D$M=vb| 4[5\Og?_x΍}E JJUJA*)Fu;gvR9=Ayk: <|4)kAt/]},mo_5|\: r|8>]:pS"t?}^>UjZVJe)XKXoBŒ,B!,U"I EIc^tͻ: {kw1̓?qC/zzncmr8nt?aEEU+r se:zh*|QE T%(N\g :Q(tt.O'q2BK [Cn;oF@z(@ҵfz}]Kë6N~Fw|g0tݟ!eA )5yjUﶸ8.Ic快te;.ƵGY,+0ƦS?NMCJv>.ag_{An -&6p=\JɇcE<|DtmsϟڶNamk6Vǝcv'w]E{l`x]6dz}{{VЋ㉵}Kzև!5 kAbRoxuqy?~?=oEg\a$Tntۯ?{vO::LhH!"Vf""""'~AnŻX6 ~{(TݝOfES⦾@njY'{m6|ws; %#=ݻv6[|? hJpJr{]EᏠ :'~~w13z:A(H;Qftߤaޠr>x*dT,!*bRX˜% j]4"vvȺFk!gAOٙ.KGqwIӸ5y9?_[;=6;|8K0҄4Yy ,oR?>|`[Yy t5_fvBnϪ란b௠Ҙ=﷜]vjƻG֘}}qRGw<E}v.&QmYߪ$.}^kْgw=7ǔ\<_ysߞfm/yΧ+ୱ`UŲ /P|񻳘v75 B.^]49;;."W TTTTTTTTTTTTTTѼ× "kx8Of{u׽el{?*^ ZX5dLŵpb-ÎXfΛ;?_-r1"ȓ0A8F&VfŨE_UadA%H4%vx׋ڦDR>2yԤ@tq)Hb-`b[FR+?kѽDNL&)!ʓDRN.Ku!í HDУ~R@ UK@cgM&?u0<^v\#@ e^oWTAfRN8' '7T,jڅIVhGQ8us,*eU1 Zpi=NJ!EW-K=zWMAZ+;S}[Hs0ꋖ-/%8MϏ;瘇R@\uU]w=OsjϿHcK~g$78ק7I(תg ..PgL._+ncwmYڍ+{kksIM x}?AFH%4ỽ=?A024fFWdExx ~{ D9}< Q꾴!W^K?h0Y_1יwor.A[^NtOI;)yjϧ{O*-.˝f"myB G>M3Izg]w|.Qg~N/W oۧOkTp{U'q<"S4zL٭3Vg|? X}V|y_|)S%~+h0xeZ#) kDP؜!,} smםU }jw]/tkزbxL >K켬!|U_T{lae`hxnov{aAˋLI'=%&$ |l a9 ]{Gv'Etr<[=ZVuۭ.Q.^RmZwk 4>]?jB)F͛6lٳf͛6lٳe.Xf*@9„1vm4EG<3 !Qo?"AK[eɛf hho<OWƆDcޖoWMd iKuܟ?NQsbx;J-.?iUo{SNwE1o "{}q}?R^GC!_}ogmaFtbsX.mWwz=N^3e(˱%wם>a;﮻j׵pieݎ\mghqOB[z;rWPaxo|$(P (wk8s?ζ]ޮ˻$˻˽s,V~U~:t˻uwyeYwy34YwwVveWw]ނffX35feIRL.ew]ܩ&PYwpv.f|]2˼˼..]z>%hֳ .˲,1ehְeݐBHBHYeݗeݐBH]vBHBI ! ! ! ! $$$$vYrBI ! ?UBHBL˸evBH]vBHBH]vBMYe܄.BBBBBBBKIIdžfvZ0'Llcllc!uF1袨/_&#?Ǖ VYpcg |Ӟ/؟g,PyG/i>%UDD aPg(Cls N6߻9x{WDk%"ߢ[#߻X, 4鍌wA*M*cMmi}>6e}Hǜwc[=nk~ǻ__ *3sHr̙*dԂ\[[{{{{{|ͽPl\@`33Q:cyPct@b>Ὓt617Llof>˱nِcc67Ln1cu?VkD%}occ?.v͛g'wLn븄%HHHOԿfMd>g4 HUa1%0~T1jeW #@AbEU~jآ?[m{%mD$14 7 Q%;6^rX.y^3o^1a-WTf; jq,Q%9\@C$ ޣnWdMnNre_8nsr˗.\r?lr+ѣspvzں]o k^$7ó{,Gq_kԈz=;[;0dճO‡<ŕޟt.Wvg>ˠ"v0h5/pQݛ?s$[Jq٠T)a8H>N}3 ƪ1NX#Jl*iْa/)u z(*pdIR+|#6RgdIڿ9W}-msڳ߭ૻ<;fS_@%%3ps* rٽN ~"ߵr$YʔB,5UuB9,83ތb]/Wh;Ȧ_s!jOx8 }UBR'WG#,"V "F%Z!:"@%-gY Gk#uP؁=!V DWϗjoW~`8X>kT$~R ଐV߷#r5토v%! ^}|w"_rKd$!hߒ"Sꐦ<kj54+ׅOxĩ@>r|cߪy1RE?0FG8]\ymtU4q:H7 $ 䒹JGq(sIWGu#: *u$9Om ,yxJª4Nb7TOCZqjr5Da6FD P*OF?1+kXl8X,Ce|{䋃_&'2-sǐRfѻo_ M3.Ռx#4oo"fֱWDEp=7G n߳f5*W1 S/нK۴e,+[uk9"L]]s^^ڴbǑu{cVruWZhz\ h/oסqv"vpQZ \|Fա;kȋr[beY%w_r< I[z='.7u*_s4A+7j۱ԧnР)HEDCD4(/~[sr%߸3]IS*1p@P8;(<j!zXv:j .s3mLuk}6̃M׵`y&}zM}ƶ7%qхHqrըGR)9]ggٙѫ,^=@*eaE%|$N? C~JWn,c8s~ ,7$5&ݳSreZduh $ףQ/|w ߰kK ۔s`?-W_fׇ)CkNρ y!k†wbs.%j =۪/{8޿VؽXA (x{W0>/[Si«ޫQtϷw< ?87k$(ԦiCtPI[@]9cbЫ%@J]x֧͠I(1UI$TC}qq OV椳ndLRKaٕҗYZZ֖Y\W[WMM-l ,^nwR()%-G;S˿sUZXN+Y %WP6Vi)pkm0OCE97GM8-FR+hѣF>ٸVvu Ow-eǜ2ƾ W{80=sqqf'l鍊\lj/{D=SX&kv?o[ݯi|^l[: _\>+̍n4~Y_\=t?=QE{慾||~;?> :K/yjXZő;92ۧ+c@$(jЇkccmcEoGmmF=xM @$2ZV{K^ԉ|Aq$VgY!]7˄B*BBBBBQED$DD[6>݋wb""Hwm!OJ,!Apsn\0*b*AOciq2C~cI2ϩk55,׎;v=ݠ输KF^ty3a@ܨoTI'e9 ϲd!C$t qu9WI6ߟvٱ}[;g-u}_aSw*TZ\&/R|$E_xqq)iʞiYUXؔʼnCbQEC*C$˹3,CJ&db$: SE5Z6Ma|D8D[{8-S#NL' #D*UC#C\:Ww`7N@}Wq<שMLdbNzx+u)F*)8ܐ\I߯^zׯ^zk`}boC:6væ \]]c/h(ySW_oCRׄ2}n$~~f90N.>ox쒋R⥢c7ctOoFa}v㻼m[B( AJ;^[ӕs<QME:K8&m6 l׾Xna* /+;mQEQEQEQE_\;ރ#sսю۳㫮ȮqmwR87w4U}e U~?AF$Yfq" ?4[yǂ ByA)L*s#gk|s),<E8<%"#ZWZ=B5<|US}'[deIiY(EYq (vPJ&qn>̒kWظ6z.(˪BI=3;j(iEPTtKڛJIFGͦatBZ5gs^Vo?E7NfX |oѢWTXA+~//S}or|g}/?ϑso`҉P=z߭at?Ԗ]'ЛFݽ' ֭_PqJPR8B& zX,ln3€q*>ɉkxW҂#EdUW10XȕPR^JWJ@rp( k+34ti>,$ BBqx~J-\>߫ҿho gJ{ҚA('gsu,/^Y@Iy35& G~B2e$G^@?eAdyxy{z{}Z E 56D$(/O\G"β~08nMIcS{:5-|S[^! ,Ts\t:D{^z^zׯ_V:=JΧI[< f.lyFݩݻ7yn.BXߟܾsi_8jx7pGz} MXPG/yg{RI0Lԝ0d</vWƗ\Z\ x!UyzEcoS0=UQhV5C0sg[¹ +pbS,sY6{LSO0sԾ k AGV{X|ס#_]{hL+% {KYb4(vU~{ȼj-LUo|UFev;C_^MuE죴^fy9u>d|Haߞ{zק鹺0|a{NM윶X<]INwkыcw~3/{x@<cA88ZAu)%W ,BAu_T7 '9UpC =`tgM^3S>sXƽm:NV]W~/p7wy.7)ؚw[wYt;/Z`찷_j`ܜ\ڻz<ߋ|uQ)ǎCAiV;f^J_ } ̉fwij]wWIO8@>U.ΧUQEQEQEQG0ڹ.<-}ٵv/Xlg_'nooœ&;:zX0 \9y"=?Qɫg.$Yfq"kLl=6sawsCfDgܤaH1IZ56,NG: P_mֱ<^zZ]>&~(|'pғd\BaQȰ H@*Ώ_K\aխ-P.L6rGkU]2t&p mo+,aaΗټH˓ u8[‚\=}y_\M[9tQcIYX&x82O}gh3 md{s~wu:me2{P@p:/ˏE3u(y=OnSZޕGnOb_է(yDdyd~]w&:~95$CsZ\q}7͢K;**!w{=csTM;, +կp'4sT#Y!! c#T6 c(R'!kq/ B45H.jl*`|5F XObլZ.ZǹUJhiAgM_Jzu峧yYEl ιo ;K~"JW g zı9"*Wjj](?hO~Î6/t(생VY_ԄE{Du9`*p F%Exw5'^7I)Ѷ9A;B5pUqnL|S%!E)3{fn$~ljON+3Hm.hږ;}ۗ@4QF(QU?3J 樂*5eS_8l~řRl)/)dvDtfe|ƧT0>_4x߱L""r B!i@8G[\ՓgtPbG0 ]zᛔ 'lC^)ձ6(hjTXc76o(/g\O\t35=4Oa(/SݹCī])7aԯbB,`QGgJ >sɱ߬]*8ȸ+1#B @3A.9E4;:Ļ$f4֥F~I;+X խLU*㻯hL>V̴jV4t}ѳ2ZGI-+* SQeUL aEH$z]6guVzO8;|4S^,뛶o?Wz9 Nqvnvbj]$( [ [[[[[pÇ8pƕηGk&kGֽ.' CzS.pT >X+fW :OB"H*K@(HQ4Iv}rk?|,+kO%VɄaG[,cV]*S' q¸5RDW0e7/~/&0# }6/cYoH?l`Mf]G i(Q>ە,bO/<ڲ APFMM (jX952>e^1&QA!_>c.rVz.s45qy9P|f~Kfr::auy8FyPq <&-1Zщ"JC'G&m1Kk2ɎA"2Mm8P, $^ XMlm}xqJn!hX3lӷC'gQ++o~ tx_jm~Mm퍕kZVZI+6̒lmO.E8{2?Ѿc\}}APUD$)aEƈ7Ggǰom>Y}n/QđDDD_nvO++_lAnD?m|̒;5QSK =q:tcy 92<hԠ<xNrm x_'pa5;2Y!n,oV0EM `RF 2J%! PBq  ;tܪcE Dl=u-޷ūrJnpGWwʎ7MU{-<$9p`H^AKD0H%㲪_( xdf(l&cL!JęEJgF' R"PRw~}+ܗʔYx>44T4s*^a7/ ]s٥f e[q8@yBR+G$` }F{Q[\ɽ x\n~er<_[F GQKH,d7j k`KAE I!G}_w~0Q((P^2gVZ6lٳfGݻMS^~m{8-uf&>}~+m]oӍ^đo''2%{՚Pnط/4L;9)ںk=d-EI$N]@TIL7(b¨+Mߕۓpf{lyd]c k?FnjlRؙJU3}W}nWӣ1P @UUUUUUUUUUUU|ɱѱ߻u]ڵ>Nz6@uſý^hx&JopR|&_Vnv&fE&Qf$RU`ytzZխjZ1Y[ 9n[CWTGӁ=H2JO2HCBMbCB/hv663H al٠/\M 2 B~\2 2B֠ vGlb恲Ywڤya9k/yh ) Bn ^kIϛ,s,p#}fmd3׬ `@ lBk>Ւo6 {ޜ֬3,P]mߛF]ݗwa|kQ\vyve߅w$WZƋw7vfpfBI]ެv:uwp+'EGqHI,le54aYwwe4W4VkV]gYw{Κ5afY ! <9hGM{]g.ːY 8Hk 3! $$,BBn+0f ! ! foV]B.qlֹe͜hII!.K.컲rQ|ZIIsw+9ѭj컲Ik3 نfBHBI f2]ֵawd$˿z$ų{1 6Hqav1a,ccT#nSpcl]#~(jm},,RV`2=R)b4p뻞+'2BJcc M Y B\.˄cc܄HIRS1 aVFAYd!v=tro ,w[[C<|s?ѿnk{D]5T#61BAl161ct )7_S 61c>æ7LnG ?%1ct>1z_(?*kٚ(b#^Dx!p{9^Ӧ{KL .*I @T*1/u)J;>~o/\|B{ y_b.ɏʹ7nP^*TU}ff*o! 6i&F,!oԱ,Xbŋ,Xr"|Uy}'W}zǗYv/C Ұ–3į5tdz:r]u[< M]|!`z''L?T!tQ{l͍fe߉aWadЌ%ՂO{$.y6HMkQȃyUJAf>OZ?۪,ĄtDX d&X_wdh#j{uD-g@,KXYfFh4qZ,:3'CWfo71lQϽe֠C,~l|Yp֠iۥeu8߯fJ857u,դ]=w.]׳7wwCq {̊C;M[5`G,$.aeN,_;`)( ^N~GF񾝑F2MpoW{G?7w!:U\UUUSUUUUUU2ϚQDˡ:YlylU=Tӥm 6-[f{˭n,2OgiUٟɛf hhk.ǰ9=O9}.[>&iꃽ!&C3D\*AB dP!-Pa MVea%OYmmV2$TU a lL!5T!R"H[-%a`&vA%A VnԔA "$Hlmt4fwܚڍe7$& @n`I57\1v((2-Gl塳SUr6uM!TH[5d6]A;҃J]5c)u72(3zL}d];Rh!Mg6U03آFĢb!KTNzAdM .!tPCY@lY8En8a[*@joDݰh@WIr/W:(:.=<. $!V8 T8ڑ)dwA?,)01A9EwK[j_. ۖu]J\ 9126#8e htQ?ɒxcHJj& , .BI"H""!T`Hlc; k+껭-p[mncmsP[Ȯ{H_#[as3okkNތL+;L2dɓ&L2dɓ+>6>^6K̶XGfw̗?~/Yn_R~ohhUI } 5?C~a'3PB%v -jrhCOGgũs I5$t-KKI-Yj֣G51(BPC) P $ATUU*Hį (8qЬ`?Y^ ?zhwrN>ky/sӝ^(((' >'[ tLkX8:m=*Y;</v ͮOafѻo-/F22maXFQpP7$CAc|aR@ӡOƞԌ-'%j@F@IP E !,0$d2C2M"()d٬P,,SXA` l{i"=@FM ,LdPD,2,P5>u[9Pļ$3hBHYLr0D$D d/ǪEUT%UY*F̬RP_vgM`_걹r*P"DLԷ7;<E:n t*|q[ eR LB1 0.nI& TRF,hVMetF*̵5M Ey͵̱ɡ1:I'{ EC(vo\Bz_n ߡ쒝!%IF-&np~4U4J)H5hww7n?KNc^Mb bʥ<b&}{aa >s=U %%QCU(en暭ձŊ/_h-/ST bfoD$!:I*S⫋O-|:脭nX1%M5+d<\ ю׽04TE"B #&tgx֌i4էV&ﱈb6)QHRҒcU"!H̶w^jFTmml۳{~ ݄x767wlpQr|:aUP3 i0`/Sd̋G5N:ϼy݁w};6j1N-*,Y)K%Jӯ^b͖Vi%)F4 RTNH.펆hd]:n]NuȀf F5[3e&bfJ:qQj wx_ J%UAKYRDbƪJD+b^"]D6WF*V/!o!&ّU}17%GV1 L@6ƨjQB픦"LZ`هe5(*t $xd 6x6Ci]lȢ7)MmXJ))VTU`x,7qHfJHUi˒l Ze3li R?020AQ !a )u(Ԍj6kv x[FԚB:0TwˇzvzuUj}%͕̌1jŬ jX{4tUUuvL8ՙڅ,vHR54JjjjjjjjjjjjjtD\N\* k6e\N"yzƷ kmionq{O?O|yYy왶nƏ*Yi&{~9zW0g~e*z}XRU&!K@C $$PX@X* a &YzS3FԆiq rXMbKKdIDH% mrGg }>Ti^34WF@1qVdAd "H`Y?^OieBMOD,kORUԤ͚mޯkb坫6uD3ܼ׻ŋ;B8{(FP(?hp#G]%9 *{DA@$6?Lt.=㧚-͙Ҵ2/_ Ο]OMnE_+/;=6;|8K0 $]×`A|W{П>aBް㢀VH0d-",e`DQCK!Wު- :8ZYGMNU E+1PU"!(HCH>ۻ*>:m$1TAʘ\2j !YyDS; B L/FXЇTz[+h@:x H!+4$$!42K5[db9!43 9wiT_7TFg ^sAټ33jU@R~) iKH 4j0,d캠<ʠ]P(x+D{?ly/?S.۪"u@6)pdRKĂ|˽,qs($g`g'gXbSP24+ӹWOU;߭fU޿Ž58yNW,FJh'O8W Ǒ֔c-Tӗ%c"KRR th@$2w7!Yr?]>gyR4o.RUS.㞆cߩ_3j߭S}4Zl旇uĪiiii)]'x`3s=X7qFCel:Ȧ.LsxW"ŗEj޿fn'*re5ss+S߹R٘a0 0%ƈ**3'YfY''jH}(ۼt$;vI)uv'8TQnS|O"Rk|/~ʦPj}b!J`fePI>rY&HI!$HN}:3Z8]􄟋 5*L%I!$ 2e&C 0a5\35^任$㥝m7!w7dm\l!$W#?mI csfAnH6$,16̓Xavelms7clm6 mBM!`R1#W0LXת|iaLL}-i?Ukg궉&E&PEQb"__nډ^ڈS*bŋ,Xb7OcYR"r;۴mNZkiKz]m7oZ޻ݭiEG)m^amvJ e]d3麿)^;>ð;.ϱ:QE,{*ņDc2Qnb,YzhfQeUEU`vXRO#;& Qbŋ>s6UYUBŕGQ+*XB Q)7B(AcꢪEI D PLbHXHhH}~oN@lkH%]u-ou3ZfLeYY<ϒ%[qxT @ 3)ЫrxHuZjH*U851>ߗޏ)pg &;5"`>A5@)mTAx0U*SVpio6Ffyr̢椂P2dRl4KpPqC8 (&ވO``Kkv+:뙌Zծwq^jM|yP <%k"Ou)PCOWDVLK1ð%(TTTTTTTTTTTTTTTTƒm_F+ܒllqos>}ޗp7z&+NYfy:<=}^O"˯7ɿy 7pG.a \]=}PzTxH }t11}2f?8vK3NcFXZي$[K,)*O2@ hF |=ؘߘ^sݭַqmp;#δmV(SU;3ikjҕNk5RvK(t\ĂFBR%:A㤢J=q!Ə+"|q3_1DD9)cJv:zcx\~{G1_̣ż*4-)[˰J/_XKKFDBV2:G5ɿV08n+*A[w1 l[h[Nۯ Ͻ^ؒ66omnL7kgiH$\Yy왶nƏ*Yoq[<}Ysb!D̈(dF HHLiI nZ..1U4Qo;:7kֳmgoϸ( t:d' B{N55tӥNPӡF~ij5*ѥN*Ƒ)yY++ r"Y$Ʉ,Y ItQTUEɄ%1b1|:<ϴ8C+ _:v/se}ð뽘fTL3Rb|̜9VѣF4hѣF4i a0o?ßFڳRUol۵mK|;vG{o~sESkgy5w8x͜Yy왶nƏ*Yi&{C Ӳ l2u;RTKcn$oI%5JqH^W: cjJfE!33Ð#$cd$F(Zlq6ߚ%EIRTclmیhP|#_]^h[cwk|&4*(AnD>*D}n}DAb3/}׹'3 )8oo85A"+ƸozF%1U4tm**qE#MA%\1C#(|o_?ʛQi-l_MP >ӻYh 5DS#=&w  Ww7w7/ncç q0?!- Yυ*Y1ˆ)hccA},RGznêy4N'[`JʒQ1}6jE)!BJIe Yn!nP2cɱШ?k튴e7DbZzg)ˈa)DJJFa-8"}55BBQWXD+Q |?oxܾpfuUqwW̕aB޾04R &Y"dvnݻv۷nݻtҢU!%8+x ߼6Ny\;/mrmnFa0sM侒xz9N_r3n!ď"\N cqncHCð9- \|'NQ@! &Xi͠zh`L }c%=C!d%"f;a&QHBR)1ӚLZE]OиuX[[81 ?13Þ~1*C|,~ t;+ĩR&q~~cl٠;;ή(_UR;Ce+*)zY fL/ 0(%Ppi/,ʺ}FOҤ#4՟:FkWa{Zhاz۷lYo:KemmA=1?~<7؍fڻ~FvG*>!$PQdN Z8deal4$n)<^-X:4}puJ Tv%/[J ?@.ZM![КB: ߓ8ꋖG{/,V'hP6ҧlB:\񦄍/Cimg .r\2IKU6Ӧoyƙx[H] ?m.`$49Mp,hn*PA ĵA(0!!ecd{O&zc#=e[xfVo/ ʫV_.FQ1/LPM1MI\aaaaaaaaaaaaaaaaЂj}uESErT*O/{]^O$8^_.)fvyz:e'ʲdͫ˙ns7S#/WW AU)ťfU HY`]̰>ʚ4;]4ۊw+r&~n23SBQZţ[b!k]sѦa=_9ɟ8X(jRR Z5*TJVZwΑ)oMAcm6ֲX*z }VŅ'ՙ/Zb-!YX"Tnkׯ^G?f]ܩ%{;vAgT*EWI0Щ-1Ձ>镥WVaU(x~=/Β3;Ywca\&tBEk@/pPWrͣ)}<OAYeLV ZiY A@*VNHVy緇5kZIxps<$eU\ȐhhƎ]ܒ_\kZwwkZCPO) NqwpwWSFᙜ]ޮy*32.v:$fv3:ut;06oz>peu]WUAZYw.p炫]ֿ?/:h3<~~6opBMyeIIe!$!$&+h3!$!$!'@%Xz6seݐYw;86oxqeݐ[oz!$!$.˽V# 5eO3g5ZBHBI !|fa ! ! 5fZ컲BzưF{ $$$FkII,Yfxwzo^~ #17e61 F1c)Yen>vW/ooc61¶p7JP,Ǥy~ECKj?[SW le=)@f?Yu %2ȳ`X571161lccg{e0Oꬲ6Ylcc; 61n1$7LnHILnLv͉v;1nÂ796u--~/Ǎ>;^L>A0Beנɕx{y4A 'ЦCaionpnppppqɃj0f m"HILnF\$$$?T+07Llcc٨H1617LlctB:cu c~kL~9Pr1១NS1-̦*B DOCR DDc~(S]F&ffO4)Z<[~_yt\VusRID #@L2cHV/WYi#Y͘lٳf͛6lٳfTUT!,ȈЖF=26zSx[>8xo?"g7-ZEΎ+g3h÷CD4Qr:v9?HvuHIM0N5'݈j53A0nlp$!cE[:VËh6T YT?of7Z^.p\*2T\wz* rSU}tE"!ZBmuxA+RgmJBZc F%AH +%@E8=y$:rwїwT?eZU!`ukGIt_ [5UYtevORlW]&(ԕYg>[/O|ܒ(%SM4M4M4M4(+Ko=ήx&s [qډ#טo7JWzK\;({yy 7pG.a \]=}k+ox[~&먜;طG'&E1c~_'7&Ck/3?AFŏ37CGSWcgswr 92/4 鱁4.]H<.ZeԌm qv[rx̒Slm .؞!zF'njmٓ 퍲%$1BC {X*SIcJ1ccs%[Սl{cc(}$Ĉ݋wb"I"݋w_nn}nnADD@h4q;{t Y{~a6z.{,Ĕ$'šaC*ĸFH vzV.^5m<@~>e%W@wۤ!hT,SVj k?s?Co{o#ʆv.+}WQK jq6 ŊD͘,ٳf͛6lٳfBőOD.٣O=qĮ_ߛOz m]}- ))ǹ2_v$j$ Y ! 8B'g0d)~,Ͱp=JTTe&rkHB̆PH &]e q2d6 &+V! S( ,/TTfnmWZTg\XIsGa;=$JMQ ^DdUH?7yAJ:MnJ)^!PX4PV=2O! 6uE&\XvcZ)3^(`u2A"DA$usХ_H x}˘iF$/fFu7!ZԄN"m5Z3j$ c {l)3$%gil2L_ Hυt6] ll )Nwk"#WbW.x{vҐ(` 5 ЃE0]?"US6_ɴ  ,+ "meXb,"몮dI.9P2ou\U ,KJljBMQ2TMdpRj-PP bWE(S؃TULEH⩲PV1Hladbn39bgJqTDX .(4 "в^ "ͧ6]U+>C5EV2:1n’4%x,Ud52ʣA)[Mv\,:!Hn9EUbp *Iy58<ڣg{[Q',Xk,c&_~F@Q_SE%94!vBC1C,HEE>C4[Iys(JQ0ro%0JXL 0"(F%)H1_骦 * 2%7E"AVTje?CBUV($ܲUMT@1ӵ(j1ED9-Y_-y~&mw6s3#q(R@qp9REb)B.r)&eZRzB3_zuu/U˵ɻ<\x͈v['f9~kNZrc:#DdH&n̐XPS%Ħl䕑0c%Ns8/o%["z>w 5Bm$I&EHTDU@@_Q MHƈY,j)b !)douzЊ*H@~\::uhL҇wٟYVAJt$$!PCHUn$Q` [Ys[AILaltB@T6Ɲ 4ֲF6 b1 6(IB+*RQкU8"jS44 I&匍o A 4`*w| x]Ž| ĭs`&n_߇z R̿8 7Yuu|,ٹwsrË.f:P BBHG7KJ p==hi]t!qz%5uMFJՉ-)}Jj."=?wl$pJ_wQJإj](Γ,ԮVqy:KB%wgݝVKumܧe:֮ۻjG {xd2\]Đ)j9,7.1jƕ*1 $]tJ(7??d]Xh+:>_WwˑqΦwux͇}%!65i9iNNs}U@R7OWX*ׯ^zׯ^zUJ !c=`:z.Ms-N؛7+o[^E1]ĔV{gggmv<1"vL=TT>3?ONˠ-kRH5kYH*OXT$f3$˻k{뜸7yV]V]$wrKWyguw2Lm$H7pBI 2?ed $,$wvHېAfF1$$clmfIdH6mI$m6m$mH6clCwclmclmIclm $ 6΄m$*i/z8>;Ŋg3)UkR(UꆨjVܴ==!8 (R.X>aXi U6g5ճ֭H(({5b>V1a=bކƊEQFE<:Ŋ6),X~yn|c]*2ܡE8/so{osvw8lѿõŷŵ5ޔ6췲:n- 0DBSL<e(ѕ,h(%E4TChEX7UQbŋ,QGd|v7b,ƨQEQV(ŋk ,|<͑ytXbaZ,QeTt~%J4 ]SK+Vs[8|?o\ޮwD dQRPKZ1Y?\ ̌K`Z$ ۃĠwovޗu7wI":D53=j5ZGIRAe[N^j{Z %r.\r˗(b20=h"^i'sq }WmmqnLyUv[}-VŽ ӿ}%80pÂtbŕɛf hhrt^Ѳo\UV bQE*qY_n)%8OL\1+P$$a[Xܞb[ۜ %)6u{5ԳiR+үVZlTGbf> UQ ѣkD @@H&J=p L32)xˆٵ'?_coǿgBiiiiĭ=w/ZfMp׺4u]pfѻoYcS6lٳf͛6lٳf͞VuBw-ֶجݹglnnz;INg n˯:V^v{&m\ =M}>Kw/ǒ`?j2<@#gtjU6TƩb*n(NhϿ!"$P?QڅҬjoaDSSh,UHR U|va,Bu,DDD*k8Bpl ix)kXZ AAIq5<0z +c30ަk;# 4! #v:7jS=_ ܖv=K;@b6v/0;Wo8BQNʙm i߾Qp8gO<)ﻍǻ` Kǂf4h+/y`޳)22>5|j8w7ŃcYσ Oi7 aBLM]j&Y?'Of7QyX)Lugl(8Q[kbyާ_nפMי[{z5/n0o!>:5{H=dɟǫï"@(ݪ`]Ջ0dXwJb$=P+*$,4@m"`yĦznh"!?xOJKg@:x~"F+JEUYgL"{F> >Kk||n0T 1?=qI }, 0 Wzׯ^zלQR .εój7쿉skg{~<; ic w۹1I,LK1,mḘ̆~DBV>[RTUb%qUR`HexрnjhCHl%P-owrF c%122)jg[K"йmh#i"I $%V1B1іZ>iDUJURTT HH$iP v||ϭ6_V 011&HHQ~JL:REF*J -DZaM>n*0v1]$ʣQ0`M Tdm7ɔݶ?__$x3͕#3Ll y}6ՠ(Oڒ@>B ِ" a` !H@Bku Xl1qoz;^ 겞HѱխSҢA47~/Se^_SEQEQEQEQ=ﳻg-}s?onpK3Ȋv,ŗەɛf hhk.ǰ 'bQssJgB-%4 -{ kI( hlcxz1L%$< T%L?g&$'(MI +&0PɚBjff29vRd$Y3, C&Jd $2fhK3 h@X .30&x[|nȧf'ik;_Y~,JbRn#n˳Rׁ׳+FT)i2pew]?^e}(Qޱ5 yEmGfڭk[\9xDQcU,ĊJ'|8)^}q#B_e}$ơ) 61&0Y1TH?lUQA:z >uh(o.،A0?Jȧ/ka] ݕ/?kflz[VcEϋEŬÙDy+=ISSi)4Xi]%B"/c Hݏ-?-; XlV4ڥ4ZFv{߃>]ͱⰝ84e͛6lٳf͛6lٳgE0&T*Y 0Ü/r [-]޹T簷67 ۋ'{sο~e %łȴ8u3n!ď"\N vË.a1z(Ӽ =S Zg5gG8yu\fawryZʻ̲IV]I4],&o32컼Y,˻.S\ueܒ^ff4]Ywyew.k3/V]ݗye{/xfk .erewIvYwYw.˻˼5BMYe˻mvBHBHBI !] ! &v~5fBHBI ! ! ! !fa ! $$$$ .BHI!$!$!$!$<] $$eHj˻.섎ԖBI ! !$Yw2˻!$!$!$ 1 lcc7Ln$7ϒZ?kPJ*+'~Hlc5qt2GCt:A:Ѩ1IRS 61B| 1lc/ݗ,1$61B:ct鍗 )888"[dRd%\_&a"&a壤k׮=6-ֳon6L`be&ÜwŮǗ=ro_XFp@Ԕ*21#k.ED(]ddSgĄ7RS7LnB}QV]tQE ?'mf鏂WthtQ*1A&QUu #6\$vd$=*eYlʄ7O̦7Ln1IL{1$I'7l߳q1$PYv֕ StnɤP;論lVҾtО ܪ0"F'J!F "L(()HDI$.[zbwk\ ŝ@RDhN;6;ecok4}NUJX#3#`[);L R֣EjVZjիVZjqEf+lw7m3s7w%'W+DH"4ۙR+*ngy?%b6>X=*jk/bSp jԥS*c&!t*jȉSN[ÛKkkkQ ͟ΦFq{L-}-V%Og٬Xe>C.{y߁yPOڮ ŋ,Xbŋ,Xj΄ݻ[.vsMGZ{[7^AܩgfIu[n66Ǝˬ<mvq#ȗ0ӆj.G.9=c0Chɵ{M uhy.؋ "<->½1+g'{Pzn`B/-mSKU5liϢ-+ҩAk YE iX~*ֳZυ>_BYVÓ ,9.\ClZ0Kyz뜚 i0!`Rh^~kʼnEOZsk*:9.eCA{-᳝ႄ" Lq010nϳ@Leeflٳf͛6lٳfȢh׷3{UZhAtI{<#za[۪A...E`?h×`AD]m.W.8z΁`Gb"u;eXG$Bj u7A]5I$i)$)آ Y+ q1җ<‘9A9٩:hV9;tjluȕR^zPXuFum۱gőm\!%[@s"THTB[DEs2Ӯ$yb()CHׄ?M|;M)O|] uKysٿ6M<)}xuP~NuzL_S@Ju9('d&Utu31X+(WWWWWWWWWWWWWWWWX"&bjHSU^=|Io_q%?踹qH?=SENQ/y::Bj3lӷCT Me9xTM~J%EJ65IR*DtBn! ɨ4&ƄCclm Lq6lqRTBN61P9$cqlԐrBc.H DDDDE݂"""""""vv""""""""تQExVHt )%!| ;~G1y+^@ф[ݵB&ʠ OIWzW+)ĥqh37opPC;V4iTgYuѭZ۵]vgLbw']W2TQ$Xb4"B 8QI1TWIuSYRuݗaau2Hv {BK;û%L3'ñ}xO[^ۅyy*}薼gH<h#&wB8\Z!ȹc0t7}:7OxȯD=PT˒JnXXgѻv۷nݻv۳d͆ErXkcRO[ݹvswvo?rZh7/M\pa>zqbdͳwN?˙nN">`D/^b#"/Wj1%zkX,tSy>wrS0Wu}iQ!mbkQ?M;S6v5&^,N4WԧbzTeKG6¯: X]ېqVpt)(%ůc_Sg?WOWU00ADDJT8)B$O%Ɛ ~~'Ii~Ӄg-DR:;;puvPp~`jhe"~~~~~~~~~~~~~|bݍ۟CK1}- 4ub lnz$n(%'37Y5mo$L-]m.W/Ë.f~uC4  6`(nL#ЇE^|91 Jئ3hRsTH?J?&^ŕW.KaɀŢ}PKD?92\ w5*()RT]{%-ERH o=_5JrQ +a9DžF~mnC-YfuXVlPPQcVyP棗 gP[bS.~w%2: |&$;( 0g*wUf(Q0P&Ul)1K+"һ>9( C0ײ%|}Z*}?zIH݁@$ѩVLmf}ZRYL3j$nz#l'\MkB$`vɏIs,vod?k/B E5lS`sbd=,{}_ʯiDzYZ~=d; :}&01vy͵ז` <]GOxl;>7 εu]ͻ|Fc;(JDOuW*-X7eE"4TmRT`\k=Km7-$S5AaV-gJ45ff5kZv3+{!\".o/62o(?ז_68@|iue ՀǦ >vlCEu0DCX3`G}0=ؒɥGvEd 2N)1rOerYZ j[5J:55P8e@oS=*?P̕r$H:L)o4g_hwgQG*v PHO\' ) \CC'X<,/lճ:*tnXXoKpw?u:ݾ{7߼cx4M4M1SM4O+ݽݭv[+^ilI+W[fY;n .%\84ՙѫ/,3 8%V <5_rc9C^qAiBS5Re,<|*J? X?㽎LZuЎs NKBz+>z^c_b]j/Sջ^ٵkb/kbmlAyS4G VCp^_ަ^^ޟaB8P@q2eZ]8d|ۼmĦ ]Ud='6/H(10.d-yyyyH5iwNx]3s:ZyWwcwa:U׹R[w6~{[?wovnnЭ^ջc\L+{)1kRөVTT.HUQU5z%I!$$$Ww(*rI%BI UMHIpPC.˻ˑaTU7LwTT¨e\ 2K -](UU|5@kZ՟. f8IFuVI URtoYvlml*c}#crT*F$mM$d$lmI)ESlmr1\#uEM6cnaTU6cl "QTclo\E! 0*QE,$$X)RQBBF4zm鵚@TݱkOZ#fGf1bBEhQE?G-BدKE) QmT)UVYaDfe^Y:kZUguaX&_Sսzݻnenخɇ{^]73~%@/Fٴh9x(^HSi-?g0X D `%(w :T]akE) (eꊪ*=d$$QeXAL,# 0Œ,?^^Y,UQg%,PPC;EMD,BG?O>? ދ}3rjB.) r]i/͜Q0iRS-Jm؄yxϾ= ɟS1HJS` BBR UJ2"Bhsif6lٳf͛+++++*JJHEUNm\VxW]`)8=>X8qqs_0z|*bA,\zܼ Og3i{ L-]m.W.8crcF?7 &9h¨cT4Ք@q t/P[qiJ?ɳ6~y)AA?ܡrI9D!BҘ0I:Qo9}vArWI=#f :~+idu4,F [nݺZZ͖̀.߃5ġdYsķ!BJ 2@L~}S$JRX>9B-֎o)tqz{M*j:IhيG$Fogh^P%RE~RJFZR.iLGX2:(o]ox>M_|?вs,;;\[qdOsgr!ʗ/)LJ;+/;=k6Ë.f~%cQTn~AkCDEI%FM{)O2Tmb֡%lh[cB†n\ 1:n14$[jte[$mɐmp*fډQ~۰EDADDDF?sm_nۻn[nDD?_w343E"6ܺ^@ֈfi{VW8hHݤ-6YsS~ZyFŠ)= ӭi(CIdطbrSZuhAGNSo^v}۷lYoE{)RnNvl ɹ E7=W]u}'?t>EXRP)"`=@"T, D"Rk 7")sLA> }-,FG6}|z8U3%Ftq?7yw:gjRÃd`V:#[ -@w F([v۷nݻvۥU\ @/2 -sqSr2ҲҔ+LbgjncMտÊSK^f~6;x8Ki\L14.dA@4@~&jn\V kPdA9K_b'!w< Kxu HO* PP*%8HEhV'Fw&ȸȇjvq kPПb[Ԭ[vJ]/Ue[haބP9(RZ<]"Jk2225EMOGjK$e 2/'{E->&LhO=xl{-2w1R\vWb`t]$zNc9[ZDC J}Z567OgwjCXÏ7'Kh_Ń5^n,yYy왶nƏ*Yi&{ ׏:M![tjRP7 \dKU0U@)!28) :L6ӆ'%SNѰhR$X2^ҥK.vuDj:uui[jZV[g^8>Olg_=i]Ky $8e]UUY^R!$>CJlj|\q )}7 /kNsӀ˝tST5gN _(Su;Gww'?ʐiiiij>_~0X~= v*lQoVjלŵvΤ|`ɫnl_{23n!ď"\N ;v ,~1a9|qLf8,Y!3Hf͖XKa._'qc~y6i7ݔY777K|.^ᅧe 5qJ.ٙffʭ<5k*yvffh6kZww]fef#Fk ̒NpΖ]]] :ZU32..ﱆd$ݖ]ad$$ݖ]ݖ]ݖ].欻ѭ\$wd$$eݐYwd$wd$$$$Ywd$] 0:fBHII 7IIYw,,eݐh֡ ! ! ! ! ! !.ΰ̄$BHIIII!$!$!'e6161zՖ[̄鍌l5p? )QeQ͛u'sCg0wN?ns 27Ln6wAlccB/>_PVP PDh`a ?}! lcc6Ԅ!2Xd}WK;:o؟g{ok]U1tsŃX:9|Gq93ڦqLE_Ō%idp5y\|Wp 0f t )Ԅ鍌ADʡGEBBˁB䫲 Bddbp%1nS`)GUGW ) )ӱI_"S}*t!%1ct KLct鍌nc*'_fAXK?ϳLI1111V|vA AI" :y*ȸkaUZa kJk~JDý G(!q-jZ*naeQgovxW{l6@Tʫ*2DjJUbvz=Gz= **DQ1214ktpr+ҒSsK33d_,,;~))Vů۱?S?AFHܜݝޞߟXZkW/z󱈑)B ]*Z \s~/ʡ?]L|ѕ<2L J߫O֪QMQs]mWNn~sڸMgͤf捻65풾˰ڳr6d<{1ςc8w.w\ͭ5y#s!' oNoOnϏ奄-r ! ARk+zt/6EPp^cw1 5[ll\j{_w#T2>.珻׎k޷_Zԩk;fpY{wnY:ll .77y%sY5laE&Vyg**@tP FCWY^\ ;J QmJ'"ܼ,5n)'XHiXhD vHP%R~7fq6a.Z*aUսB]50BeҕSR޼z޽bM}kpwKk#\3Z\v kNj2 dDTʐY>C} jNQ$/@URO_>%u n!6QdĶo'WqJ2K[ _[;5pvCj;s0H)fPaJ!W>t:a( >#'~0d*P,{k KװYghȶlt Υ٪m2f7j26VKͻ)hgk ,nP-ͳzo*+ '-<|wee$.T\JYkljBj!݊5 OY^!(G?#Z,z~@=,J9@J t2Zh|BS@b0J(wm딂Î yT[l;j*  : bx; BPp/cJ5(bHj>!ĀɪOOHR¢V}FGB#8aJ `p`&! V*FAY6s訯*tB +8Q A3V9W!$ ǘϢ +Yf`,,)c-Tӿ0郃 PRrT 7N@T)O=̈x%%@@nCFA9&pVTsA.!i(DPY\#2̺T03On8.r̸ Ph"?4dRE04ιY;AY TAXE*FܖmYHMJ*DC[Uzך_􏧒5(]!WL=C[ Yt D0¯-ZKt.O*PAem[OP(zywdYڦrxJJφ{Vѯ,: 54$@1Eb d&-FE~b*Oa@, ]|?uAO%hO$b Ys7}'{=fyS< 24Z܎[AF[<_߫ o$~= EmkDJ 24R|Ky"\Ob*x՚sxVx I>C}> $!ఔlMdp B֐KNɲhBT| qJbVkZ{휻|kHRMvKyF!k]/@d&3zoF|2()dDCk;.n<4^/!{wY߄<_3S_=-`>4fRd(TWi)W#:7̈́ 2A̶s{ϓ_;i)sIli{% }Q CQFf:Xܫ:p}ĚbDi$l). f"ϊo!s{dI-D҄W]!؈I0cM9P׎A >ArZT}j1%Xn_PڇW-Qdz01 34UN*P$&Oe* (ו#jX]7G6W1=[Wa+`qs~ϫX&z1"N,deS&iOuf 2.[rޏ?D%P` (&p2f^f"Y]F޽$msbtQM2> XK/{hv5%X,Oo1B[-u!:fȁHFDdd-}2]evhÄihdt2F̎3vhP˗d+=dHU]bLB1ҹRe5Zů^<^aHjR,U*D%$Ҝb V(; k ~ Jj)ȼ:EQ:tjf@{c%%4K(kWEt9_8N+p*XF:ZhIk6m-Gpx3eSbjݰ;C"`/Ǿ8iտgg^qpCnގ[[@mRR{r`\ڸ2X٥ / 20GxM00 *Xg/(0U%.m6}{;nbݘrS3.HP-U*^ZP\L5{qwD6f/]ڈ$ih!~rڶP1s8Ngp6M{[`w%2B,Ҟ6r 4P N5f3-^ bÀp H$|wQL>gnzI_C</Bt7#}1WRl<[Gܰ*ߋz{?v>qm|4#@J=ĈJюYm7{y9gR "0ö|yW{Gcx;bS3E/_5o龇ad1qQQpPL$r㒏c,{zjK,Xbŋ,Xbʼn@>yUw6iiۯk{px]z4u]AcSF; 5j-8,X$$$1Z9'BH8Q(Xw{faX^:NÊ1]۳GeUUTFE 7oLc~|teB: 1H0LP= .-xAKs"b Z01 <ݸzw?\{o+uShZd\1}MvN\#2PxoCTnY]bRVZjիVZjզ y&ZW|{wn Ń??&?'=-XXk4+}潏f}ǯft j$ӣ?e]Kk> ~T$~A]JBq(%ML00Љ&ؘ5%P%*/EA*X~p7?q΢eNJRSZׅtk]}?ލkqg5TQںg,y $sg2p]T˷M˻=(]0Z*$33,3/w̓$2].I5we;wV{Y|e^ܛf̲F\k$'FFs'rF6̒6]6ec|Fn$A|I#ne#.H6%c|BFf}HF7HIlܑ6?wZbBBIg'X^E,yNZ[Ǵ*wY ,kv1L%12 >{;@91}sLM5BŊ(?_E">K5y\E|*)DOo`w 0pa%d'Z{?F?zG[ܳy J~޷DZ|[Mχ{^IBy9qQl>$N,0~8cS5<W3xxxk r@5%)j3b(u)xT,|JbŊZXŋ)E:R,TXxR%,ƪ9Q\Je2˳2 8,71CQ+I" Bh H Vϣ򼿓V!i@X"CG3;9}ƷsM<5WV+$"!x&*Ubh,.X^Q0N%۷v۷nݻvۤYJQ 5Iן[2y[v=ۺopI4șBdJw9àA}85ganR /}=1Z8ym eêc|kCi [7;J7ғ6|Wq{&3PW5l͖f]L`KRbPVF.6LŬӍji=eM6m+ K-,34gj x;(v$2d2%,&J7RFIU~+6iph'3ƪq=B79rsSHKvJLD" >@rMLMMMMN((j(=J!'ׯ?C ݎvߏ߽XpOc|W;$ ,&j0meV}5rW8%64WHÄ0PCtQD5)pU:-WcG F}|qӮ7/UNn,PvztŘRĉV;q˵j۔UHc W rp,h>5OK=Cڥu8 .Oy0veOݫ%}}asux|~w *U>)UUUUUUUUUUUM+S@U؟Z_c^y/v#Suׇw\9fJ0z8Zkam=|tu8K*qw\&Lk1`͛6lٳf͛6lٳgS)L;aϽVFKC}ߐW\Q<_ (@u}|gUQ\45ǿМ_0c_PqW@WWpz~LUz;~'RPBHDRm6||/ut4)KaUGߡ  a񬭌W fK ysWx~ǧqcJ1|4[?lQ_؈mT;)[U (۶aT(}?lQq}jRB:8hCzڜ2NW4ȑ`l^rq:o43o26e&} -F?1+43Q[B:lH:S=&N{zh|x<)LVq^M♴84CRE@kR"()H Dd).ZEf#aU~?I~:'Lj7kx3r܂ԩ2vJdٕ3z7UF/US5R9':"a BEQ$Q9(^nEw`W1*twƊ!\Ix}_+!bi-75 ~Dd-*!#G]^"Yޗ-+ *M_q4~u䥥?*,1Oݻf9J(̓o3LZƬ86ocZy>7/g~ Y<05zyjI`{d=BH):'P` 2 CE$ 5;33j-y|{}ɜ+ǡS4H"SVu/@r@fcZ>wXﴌ6SBU~7%p6zWzȯ@+{A3/hb<CAP>'D0*k R?J^ y*o/VO> yⰸ TB8\  1eyu;ݱF I~Ь Iʪ"tHhk}Fl%!$D9rT 1" uUX eOW\Ln=;3òC_Qk]}_ pZP:)UɨҶjWH[$2I XI?|g{^s9h<8\wk~k;G<<<<{Zbmymnv7gks.$ӼW>'9ERbW!4PXB^`c0fll)aSƩX { %C!mh\4^YD>ma~dg3"H I nRQtN:' e6%@kÑ;A!3xLy>EIv<ܺNN;;/l~8 ŽT _cC> 5z @1$wg\лM*\dz261娅D&p-js2wAn;zB5@]P%f VtjnoNY0*W-8_W_g|? >.#iz:[qqk>^ 5t˸q19}?%.M1 VG4xȢ!ed3h6u{(|ĊSF*b&L4ME$"@B>umv~(~(_g76&y7/D PA=&I䪽=K3 vMəok4\R5T>g=Zt{޷Z((((|ZJk PJ qr ԬL.􌌎`VPˆ*H!Bó? >`j35 %R4}MyBO&bxbذ!8h/^)(pP$@d(3]hSJ([}Ųqӵ ܲ]-W>pCc ź +ל_*kO\_~stoZ1Z{!3n]}JٖnR56U]}.L^Bʄ@v&{8RLy8pDcU%O>dDI Me .@zSAd](%TWcp,i٪}ͣ#9ų?KW{cݾO)&Მ^{ uP!(kuzd`4((((T !1I"h/_ Yh{I<#[}- |D/ZAk6q^zЎn뇘lhS9?J<ΌC>:(HTS愶$㛷 alJ+7D,*2$G\Nfpǚ ֵlkZ.컿Vfn%w.G{%{wxI:Ywyb$ ̻..ffawpBI&ff37ff_K33 K0̲BMP]|eYe!&]z.ѭk,B5ae3ad!$j.8. $$$$$$$?k>>u:ey4kW ! !/ƯO 6oz?"˾!$!$BHIIIIII. ! ! $$Wt8󇛾ן΋Z5 o|z2·NYw ÃSN a44`^m{9~m7BIeݐeI ! ! we! ! ! $$X?cT9ly[<'WIaIL="+Դdb=]UAԽyUQ}P7f' M0dn%};B!1=E )Gئg_H/z>,~1E+{m|5Z>ҝ];A2_Mo@{c~0f7X؞~WņNź/t j^bDŒӥsX1OU磡cU}b*FV}gT(&Bs;3-xwݸ w2wClyΰa>3ܯ>q~dzFlcc;  lgd?߲B~8t??٢1?a!~8lf1~˱xeP܅K3ˣ/7* 7LKJtiuil5T-jl*ZH]5>'QjFZ#Yt]>Fzb}croBeA͓>/m>%~+|MP4z :{$hH`HGw.HB<78y\|W/\h `8lFֆ-F `VLI"!!1xiIH\VyKm{c," ߣx\}}3g?gp0s+R/=_zĄ=ry,gZTpct3a1tc^Ֆ+Wucg1$7L1cup*e 7Z̯utBJc}M՗ڥ(IO&X] #ipDb"l(b%">C}}7x4iZnv>Zy/Yb>;3GmJ@lY"s ڋ5<[oP}6RP3(μ:~ikI_lĿ̯*{O= |u Q{Av8D 3]+`E:v+s>lJϺx,8$%ECH1XOD=> aӕMc2iK^^ߛzZ::^č95}tz޺݅n&9r߶)6.< :G\qqaaYs/{ K['ŸcN2-8Oe.CCIɆz#VXAY57HOt8,g˼nLdh;. [v $@ dƴ3f?-a_k7y^:6TTJ;9Xܠ/( lk>!+e!P͖>ܫ*tQ8cy*J QUI#fA܌G*rG _Y V>SK_b_(cLd]@05̜Ϭ䩴~L#QtcVBmc a /?RNp&ŵ>PzVf b1zׯ^zׯ^_Wxƭ*5 NܾĿ(3+\;5CKI5l[KK`lo,O%NyA!}_3!F6(Kyp ETA*2RPrt -S.B7Z8hr*ovL{հ1XGqrL8or3!H赇'~~JSԮugqxUc?_l8-ƼL6AEMGT<9LYSkvz[Q *~e`'pD@yU ,^f1d;L 3(ӌd2HsVYȑ(h|SW P4ILq}?̨v[,8u8>[h4q| NlɭѺG>Jt: `b'{u5?y%" #Jv |BqLQg #'6x*m4;@@HVOk﹦+o3~̯QfnD޶,?.{_FϾV1L8,|Aco]Xa xѸCy=Tq$aM%BvvE% nLA"q-\!2\rY Cz>|EdXfPmCc Ӹ:`x$715hv۷wƣK1h59*(SEauoo?=Ye ତ`5 }l"U~|+AIޮjdiӇ]ˤxk0upv4O.itjIS ~Qs8JLTjuwՄoT&㲀!D) ^X@ ҅v/f^gZcrRKCk3-UXV{QĶ!6yv!sz}re"Dh $=64;C1WxCs>6K_)c9G :h|}TT#o-Bha,#`x) \sZ +߬EFGun]${sE}u,藞1XR-O9@1(E4N^>ʠI@ Xd<C@# \( +XFHºgA x %Gm;ȏttk@ q$tY"R]xVo<Sܚ"4yqa5(! rư,C d8]WL AjѰ\;62&PxP-6ý3ʩ$P67@yL!>8?z֓ޯ;٠TqtJI0? ux2%v~e-tvF1Uࡄxj Gk+E][LlaW}W0(?Zu&XOǜ׶jV"̢%7@H @ʼn!5^YZLPÖ'xF=j50?cN=_c2@~*C{To7[>o<0^6:7tQ<{d1-KR į\|VK|I"38kXLͥK?T"[BaBs QUUUUQUQǮ5lOڐ6@D iW禝>kWV(.S[cd{ FmxsFDE9޾KQ8C@A 4ʵxjV߂B1AAeQ AK7}~gw&C Z;Î# 4ƯxƦUd<#+bH-;^ҳvO!^|S?y?x$RUD uX}ε #Q}8 Tޗ{J`RqP(3<@c}P•e64jݎFxV=t2+:,kkZҝۢl Z$O܉}}ڴUp^h;Yv^^6 J騁!bҁ dQ'asʅMjw ~| iJ $$Ghb#GE6-h[>vL"_gě]~ӄbwWoOwbwQ'/#/B aA w͊-!">DH!W`KhNQ귀^iހ@=~5*OUPPa/jQY>950 "+6;JQ!oQcT NdQHA{I_s4_`2}kVW=c*7G4E|{qUE{+Ƅ-X8F@ w٨b0 ǐ}xX4]0j޺nhB ޅ_3A$zdFZH}97 g:9Ly<,%s5BM_i7 Ncv) l<9CoEqum: 8 VF5 @IZ\ ?}*IjxXxQ/Dzs}kyo!QA J`TXTdh SҤP(  * (0PA # i $P`AT%<^P/$* n2@FH LJ$"c HJIRB~Yb f0<06ߩ,Jz](c^@3g+ WY(%a)'Ahւ;#4)<>Z`}癆zEo}θ~clKCrP8%V83V 懶e콊{]5q \KpYMhv!D@3itGNoy" ކcc0(dXn~?[KWҽ'G`wG5Q>ީ -{}k;ā:u۸rm c"q>6jPK vbwfQ&t8,yI(TWPJT9Gb%ڛ7O d3 ~7$#X|*+V]_)ePcPE9U@ȿMh{lڢMpGZJ_KD"$SQypX3ikV'iȶKa (SкjE;7ț2 EpDE X33233332332]F ck;x "|HtI$htV J[~aZB8/tTGܞ4㮘utڻ᩵+qD@Na @YynRAB\%OpDON5*)̨F OAH7zє$ATXAUঙ lQI A)B xQTI%T-B1ҧnVX2Ju$vʱU ::F8cE!:.,AQ A15M5M5Lnc`MmM41 14161 Mfll55ffY[jYl[3VɱchctCC !b*h& inB ٖUY("QaAD(BUqATV0.23ES]$Tt|BFnb)ͫwTTP7L""C  @bx *0CXa沶YQ235KK>y Fc*1jQj 0FPdc$<>/#Zy'w}sv?@k`.[Jjϔs?jÈo9[oX3Lҽ{ȌJ$c!Q?\K2ԈPb4P8atnǩF41` s(1=jBьdKQ$)R2*"Z 11 t^K?73)o?vY_s2,ίɩ$neA4=p@ȠB/#!R}* ^0+ht=}kYXhQEQEQEzl^ %]Kjyi"O_wd\/h~73H V(У1[F4 a)/lGӳtg&T,Խ) J% UtN}]kum)Zb сN,ݪ^IAQD5W_/諱y:r2# GS2}ރhXWZ\ĩ#[Vt.;l+ fiڃh—jԬffXE"llޒYЅBj5gM/ NUHyL,6ӧ6;ZhTXV Ҙ$٩Cr!1ʴW%]f "i1Uwl#~q{oJ2ZwSbI9yU7EҪ2蹙q*uQA 9jAc-nlZklAjHu;\ѱ4]Ur6oeկ  ƒ/ї+DdɏRM,9TVvO]Ͼ&~/5"E1M *Y=-ɘib0rMxA~(TU ѪUAy2!MbTb {> ]US8c>4927n , E \&ӌ"qDVA*W~P$zþX27_KX,1 *rTZHJ43w ˻,ڂHwMhÉAUѢ=YZޭD ]K"ʹgGEKnզxB"$Ъ.s,$%HT.EclHP4d"xlVE wwCۡ )!?LvFC[%R"!5jFEe:EQ_Ee%E0ܣKa?ZH4mlSLH!th2pn#zəkJi|:HީI Х!T/!}ojA_ iӟ+r3b^HNc2E*tl!_f%QU V%sX:Өwox`?ouU+>bL7P?([оlooCwIۋ*7$Z??~>Uń!~tA&_DqN{:ЮvN mR-?X"@UWTA[`/4ӯ UJֽ9[`7·Բ#f ד3C6&io!?i~c*pJǀVڨﱪBLK)s*ye1l\058UbT^7S -Nz }U= sdSגh Q c{==hrF5Q^:8JK2x~AV UHN[VT]HFAG,&k}f@3(X: p<)@Xt肌ZWCz-P&o=7VfQw~ Z?b=F$l>QV\7Y*1Aܡ41U37OF sU蹳=K? fq[~~'\P<{c1*Mo{vt@h;StaxłeGd#XkVnw7Cyjƥ7 '-׼D. B5K+ΥoYU? @_t;y]d aЍ/ 肣`2DOuy+{μx@or=ƅEv\1Dp(!F_=E""! B>(7;MgV'FaHBytY=>!`&anRqRNjivC7Ar-|Ð>8W|#~»1٫Kd>"WdJ%x4! ϽҾgx$He і$B(\e(f&9bL BK%J,i!*y%CP&\‰?'^A3 ?la11X Uy;*ꁄXDG@q#(! -aJ?w ܺyRW?n\og+w RbHgſjRI^O޻xQcIx8 X3+s7.LUCHX% QTRAR.M(* +aQa^j8n$*sL^@=o)!AEHHŋHQ^L;ȡ9JmԂ|3h>Sٜgnjq֋u'^w_]$tjȑK._}fcN:$ c\Osbʔ2ޏѢ4Pi ˫ٺ뮹&|9Rdd Ӳ(,f@Ydd,"" 9)C.Te s법j $ }H*6~|/⨚Jy'4ٛ{((((!؜#ID9hD }͆W{<7{=Cz`PQ/k_|CFQ2w3 eopuQT~'ri}x-̃}w߆,$]߈BF7pH{fw 5$w7HR\a5l. 2Nlfkz{d$I.˶79IHKmnI?ܾaUtGAӦ8;hb-08cNzbST3ȇ޳Bč Aϔxo)T]NQbQJ:cďq%[bK>lHHJ0lt%[?w tnϩ28ֲ8$MRT*U:,ʪ>;=d0%"˲"J§gxo=SֻO׏X+7i>|%*>7V ws6 U+E@, Χ h'r@cMB7>uP X9ob 7Pt"`l_d4F-՞"eV" :~On͗֩HH-,U X, Ozb:O<.,J/kTD-#wi`HƶV[={wʹ,},"Xf| g1?14~Vϴ=|n2s">$leXHvO9,Ey"[ANq.F#2J#_v?t/a" XwYso˵mɦTAnGnÑ0  !evhjmR *ML{hϤr[dϘ iHHAc fm/0!}+lt.qLKn'qS۬kf I#mVn62 :Kji#o%)^b$,yMBjIZyؑ3p1!' | x9LN]u+ܶ*w'.rYi4-uB%'"&Rq5|r=9-ĥjo< ՞*z03j\Qs,h j#}lUS@,+5б_}a tSaǤNx-Tj1T؃N\N6$Č.ġk)աqN皤RC fZ(5Cycry{2\'pEvc39 $f⌚O:40hE?%*$& ]hO. YflWةoב]{'8hΎ,%Azڑ%nm2wشyР=cZZ9pu@RnKA'Mh]ѹӉM#qb kves!1r4X0mYOn+4Y/<ƕ1ʱA#g\jb8uz B9d^H\$Nqvҋ/_ \4#Z̫@4HJ\q.5ɷN㗤^GBNk:(Nߥhb>RfұG4;uΐC]S_Y@{lV3lw̓q&0Z͒]$gO< /z>UӲ#lYCc^qL /f4l擤HR[vVbkn ٤R9ƚd>H8 +P5yb23v,#;yi˧Ar̶j"Fssdk 31d$-Tf kX.oer.\DA(Y$B\dĒ2{&HBd%56 QhɁVCBNs`4YJ>GJBNQXn^s"X,8-gIRav,u2ZZqi;fj[]E_Ⱥ+hq dE"\mao43ts",Ȟ3i8HL|69ָignuFçɎ#ŝ5Ţ+%\BՙZ XgyK4z]lֶgr$/'7Z71o`xQ!`ihm o ez-/Dm" |i[8_m[ӱm-ib} gS̻a~%j^ټzPr>wy IYV)g}lj*Ѽ-ub,׊+lxԲFfd24FLs4P$2X-bDCv\=a]VAlvpm KwZ \޸|HH49U]R_j=ry3񒭦J3dy LWɍZ2ztLftsF3ffs{+f5VllPGn֚W59\!:A&JG6CYY<P NT,P4!F_+Wks͝Дb[K,<4M'ew$wY:%zQb(K qR8) ;.}nhFai)VK/9{!G4XMkȟšlw;Bw3ҡpa6q-v.yIo9! qngdol=B݂\OR^28MD Bs^ʷV64elqMO↞Y/V5j&*ۋiaϑrsގ-{`]>ڰ.S,OW]Uo/痰V2azeli96'5|f+j3+M kGDؚ7ÂPPPZm]kj7@ԻsY? sX@[ 'i~D Og2+_M^Y3ȘG(bۇywu@ j=|om~Hy#D.m Urcx~eCi7:RLd@ьf'0l ݿ/$n c}ڼ*z:Ńl(Ʊg >٘KF]Xպ:(M(Gȱ9;0 S=7*BМ/6s,gzp R|dMӾ)AJ &>[e6tdOH&HF,$J$u$7g:gS u`UIc8?u^w͉:n6+6L$&V,C.ʉ:H>f%3lr躁Z@x_hv<&2'$56w KsWRީuir5gУqmtV.ݛUDjU6oۇYW!Ȏq̿]Z_MݨkA~t-~kL-Ф:|{sr>fgo1{,`˶ ٸ#izF ved OHr$Ic{Aϣpa)~IYX}2+h"X3CF̊z|i!4;O>*} '! Ʒ ?"@'Vq )sŖQ  @nn:kƴZ(:1`Yz d:s:Q*B!RC;`(VﭩVO!PF@7¡jxIa@ SӗkzCDo0FI,1a# ~7 1¶"Ct(/6atr1!&z#TǞ~>$Fj5/DǎXV5YvT$p1V(c=߆FEc>駄C SX~YTPxT( &NN^g \+Ro4 :mFxZ>odA bK( ye^o.`;M+ȉLfUS;NR! M𾹪Qh ؅>(PD0k5L$&/H#j`ȏJEp*1l2+u,Ybmqr1gN'"rӄd3s̡ ձ6)4s5>g-Wtp,OZ`8JdZim@dQjT8X&zь1,|\̊ {[ sĮҽuB00ۯdXӈ}4li[^/Q~Z ZLe M-|X[y(#[>\ ;Kk'eUQny׋|d %bgrgDW>vUlu׶uԾ OS"zOK'ȹ1&i\4n\U}eH$ё9[hTiɵ7 }=^˸;:A71RA?$zqvvr~!q]Xp%N[b㯊݇1؏='+>38_XL<lXXܽYuht]a(z>A%˲`&UKy5Wuzw"{$$Zg}X`ȸH{^h_Lީk pz#J1Z1)>wGcy- GvKc7oGũ)4kү;13ĀCv&i#~gASCh[aSuW _{DOKD$SU)|R$)#]UkMqWiC/8?#Գu*gd6} i5ݾMG.`N|soS>U%ჳD{~IzR'oZQkԞ(.>6\_91w&zHpo%! pDIm ҭ?*%}{.)MvoyB3[CR"1lZ^צL:!_Sѽ%!hXK@Q æ ;W{(ΓυPdWP_Z89!:Tw͊PZt{v*MHX IDBiы5._nB+Y8Wb8fSB=M7"г=Glg=TF\0d #9%~&Xx hȸ&pq8%zDs1 _hϙޛ j\ZJWq͛5jWq.$H_ͦ#g9#_C!M  7ro-iDii.A1r">D3l2nK[i6nAT=Z?}//f}Gӡ>'|[C^`t[Ꮗxjϰn>_ۼߡx> COT5oYtB)`81Bц*OcN$H_COkaUz[t}N# "[9Afy#}CH,W:8Anv#\ʐYF①²n V5RA(CDhj_d8m<< M]1NMSWٚ,l gT0)%8؜NIc4+ 'auB&ڊMl'0sܧu5Z*Y̨dϑtp*hd3Q:j uBm a 罾 ug}ӵ_I! v`Lm|Փut(MoLiY4q4QUj 7& 23:oXQ;Vbgx;Xk*K0zmg5bEVsㆻ0 *H'`lȦe0,( !$rmEm0d9tm:$Na4g!X+B0cMT=ami1aEQ(ŏj@.B[ybV}Q7a{vR";ߴʉ-1? ?K :`x (r\bjJKnGI`hDGi{Hu5gZ{B3[^riX0@01ACQ,(Q>0}EEgV [αhilgOKӦStvjXͲ' ۛL1cK3_qAV;؀a+Nm2E$j]ExNj bȕȎxvfiqkU7qCǦFW~BBuPN +MܪTQ z:g^G4u6tboO'z탾A$ WmʛJͫDomsa@5i*h)wX a3vy"4/La4rZ8eN_Z.s8_x0BdfbR`< ^} :h\s(n,G6CP ]נX%~tbL eѮ6 |+05m?ꤨЖ4"ӇPav{4nrIclj~1 Aį~_8_C\>p`:;+_ ZN{ZbӭHrXEwaţ?н m\&kN`(EY?{ # Ea0P7Q%韯L6̹y=3GN( -%DpC-[؀bO]qZ! " gh߅Ω%!:׳^M|C+HÜ:6QR[=xkjRؒq : -r@&8f_޻^ I=4K.z_LjY3@_5t$@ZTh@>|!0 Z&g R xߋ~;n]QI)b]jTy#U'Aݢl_V5PQ-͛fv/Q\{J$NilJa)03 rDU|Nڅr|8_bheٯD6H_7i\ c 7^^@lJvl)I^M<0Wy~YwLOV6T1ؤwB#f=Z+m`.7cW !hfz, #.,|Z+CAd.v^](Gv1%lqdP7;V$ZȱYϭ^L>n 9Ry9ogD P]i U {Ѭw1^> #?%Q+fxsOGGL==>]B (g9k`D|[L4FZ xZ kUIun_/)-wZ.[ Vgũsxm7yΖ4ߕpm=H{`1BЖ! FHq{XFnDn4#I] W7Q &1,> Xsy:Fu^o6nF=Wt:34@du]a`3=٣-\{m6:u*  @t,EctEOϳN~LRDXP :ǵ ( B LWAP4m'a+C_nNEvLK2p:w yP 9b7(pa T}2mVTXaéV$l1w8YI UҶ!$%TbTfia .c{䏢rڡQ]%Vl]v4t Q5@UITnRT(W}ˆ#2 )2 bC a` 2 (Ԇ-XJQ^LlFٰZ0#.'L zMi'Sq;_\#zkQ1X 2vZ;Yk% WsSGnvni /op:'ߖGq+h}3 e;1 ּF8^&Y5I%HC9}lyྤ%I{=nn[qK{GO4'Ƣzk/Yb\ۨoߞ~xGHop;D6tTrVW3&l]"uC,Z(i/xxͫD{Px'%V1Јk^4y[('#}>{Vi0|{j 5nlo xŒSPq!}F*3#jxW ܯ%Bmxu pدެxw۰={/ۣv4{ CW`:SAs= X/q5V ˖xNToԠ@4n0V&Q9EnQZ;lf=:,:+G5B 㱎t@U$5>K俧V˥#EV,VX6ͳ? -t +sQd( #"2DI!rIl$LKdyr*M PeQ!ַO2("WIarU` `aM 05!.A`CĪi I7 pg$WF4E{0ҋ/z]\oR ̱}yQx ]-0}FC}L/ܧ^%F#UüI "₋n DqL&>FB Inv8zbmcVv =Woy3,}LO/2E_dzu575Yx{>/pZt%@kN<~[w}KyX #\K"Dԭ{ ^U:Q[TWKA6lh8VgsڭbƩG#KC)C(է)aU\v5h Qsī)4T%CB(TauE3 =g۟Y ~{6F}3^LАe{ | dan0Д`tYuL[luE.,xj{ 1fE+IHXK#9Cb/!tWrٱ2+<*L[JMId56 j`'/p/ޣMV}`߅Hو8+a_Z!ݺi.@߅i΄Ӻd b0e ebjd" RP *+>8w ׌cٯ敂Xya20H{?Tj\ÄA.Y-q6Wmg0jld Hm}ÇX;#<6NCs!2êگۯ{tmk3He)"VZUun:Bks;;# i9)<?UU:=};k<Jz.>g2HK4n7ժ C䬛;]0'[ ڃc"Cx_= nLnx1 ] iE ,:H&O~>O^g05?3O ;ONj'a ⺆ =ŊYO +<5{a h-#ք =,ߤsD6lk ݖw5=k羌[?އOq Ϧk!4;.{s^a>:Oqﰴ_o⿇RSuV KSܱ|g1&([,0s6bPC"T$y,xTO,XGq;w= ;)t7.Ŧ =딝/QdRqZxx]o ^O$G "ؓJXc>Oͳ^[(g:?ʇo`sԢ(}5=LXJb41EBS`uz:#X3|ug_0?#ߞaЈLF* yy8&=+AُI^kJ5ڭ}wjbݒ@HHu9*37"H ʯ/REfgWb+2^$h3̀Y BdEA$I0@&B(!)!cG}BDADB(A*BSXI`!q )X4%,%Նcw?4a)Cv-OuG]^I&{QG~ڻPSDU$ DHHIĔ+pNtA\zJIjFnAQNd|D!() %dveƦ;,F홽0 =пʗT 6MeE]])?вOX+b9u{Ye vգʛLVhv%!CWu煭 0*"y'ՒהӭѤ 93?GƦcNN 1gxe|NXxSA VhC ^XJNf'!#HA@Nt16hXh5A` hB10X`!Hh|,=4iByZs5^_<~_0@ $ צCC e.ud]`c[ Fy+yI*K#}{,$ _h+er-:GVd0b5=eTa lupCf Z'ʱ歪a @J2.lluu?|~ ァy.9*ywS~W ba!%MM%YMqgws>Ffc688[dXy￷iv(d qnׅN(?T ߔmm#(QOUO)ݭV.cwv^ӉtM0o@lL(TQX,>e0Pv {LG%˅mVnnKo޶bp0lHC p] DN WS:0ltգĶi 3x%b{(MK8r-Sf5 imv( ^o1뚹~l{}==}Hph1b$[UY' )by>%|U.PHƣ1As[xb1:Јm;Bq{6f 8XJX;}(a-F|Hy*@VP21mnC}h`W JNj]]`<cHg>{o&y mvFF'G7`h2)gQbW2"p7? 5?ڔ삥|1;x8c} ֫EwVmt[R8zv9S U) kJϋN Dr>]pcD\j ˑn#d-C13Om㉊gF7>5X̘Fwq]aL;+I:[ l~܇CEzM-a, WOP0#Zmw6_'c:^f뫕Pd4J6/`i"#JaD J"_5RzI˼^yn_l e;QM΀Ve]n*RO63@?@o(:{Pb"'I^O=;V NsɢH{'~AJz:9 chY2O?|k|⋛03"\NW(?uR(=[oVʯv$:?<N'!s x)d SOQgWfpW+Po髹o0u#!ȄR$?-hK򗐀a `HAT`zG}SX4M*Jr"&4JJ U_#OlSPNUM%ޫ(.|h_gAѫ~:P qG5MU,`l+|6`aJ`Kr]n;84y;hcM7Z45;͓9lry*  Ro7*_9;ʱ6L7 I_܎  AaW|Ƅ~y-PfiP"po^!HV3Գ 1Zx:/̨eB!?擄"? ץcu0aω+S۩Y* $#{E&0f_X)&>g/?}U됋# {-/d͠osa3_6亳-!s  e 9{]\߭5!@<7{8WqmvETϔw;i|j_t;tW *#2ǼEb56|HfŘ bK KhP{HR@4ڭ3s+usmz@ҩ}?+ѹ:pH񸕥K^q·3[)׵?KG H'.]WTAh&T5Z$;O~wlVco~7+' ߹HE?WYX;"d!-nH:M=GI}燐,>m4X !u=)ҫ4AFIeN1y'yjf:lov/=gEMpD}+ >re T{1h}cOz}q?`hϗeiVlOGagba[S'\_ b23G`tD쏣k5W>O`rtcp>p NВT TZDE>z:K A>"xW5Aϻ__iegsWpGmj["FY\x6(cdDkw-c09ىdqBHj*#G@!hpE+Rޅ~FFf j@؟W~[FG0H-^hp7$|JPX%./0֯l$,Ht=[={BFu/&u|aۻ&t>тwMnFges_YGƤ)'EuYYЫ:c=_+״c/_|{sx>&9Sě ԣz!M48)(A CV''y!G=o _Bn(:Ob AJ Ä5zvB}hpaa1&#nWǮK`áV?kzyb^"Ult;~/uP0$4Da26ڵnQ(c/("8b T*FRF.`>h.5h,08%8̋q1Ԉ##(4 &{MJzOg~yUaB V=,?٨>Lg?+84p J#Yu }wY/-x؊I9"cIA ͯ~S X 0yMmkm67A\?j`BJ|geNxwVjb#%- }w,Ki_&+S$B0XIWw~d9ӱ+U\JVu=Ac~Z{Bz?E.~={iVl C~+y~=~94,C>Xce@䖙uWBS/a:1cA-Gc)e_Ftؤi*\Ƕs]-8Q<𔞓<~<,>K+c4v a"!f0>zwI+߶}'}t~/5yK*T\%rۮǸa-U ō܆f(A -M=v%ܨɜQK38"8P:YYaUm۝;WҾ.C"@3.݊,4a_iyjOVRiBUf_1qB@|Z0ГЮf _\9\= siZRT$e i4>j|N&S 9_$+K],-(pxUۭui]6VjY9aSafI9,mmO9Xܩm8;.L`,9FB~2!0}91XE7]{8f)yŅn*FF< 1)|~6:XyJUzqdggwA. }\Ij=MG\P̵(W9Σ+nw^t9i_WE^icP qVfg 8iI0N[*˰F=y >uʣ2>%~` =RdjQ]x\cEiq1$#" o;OOLӏLI.?o|nPxߊ[>v`-6X{G,tE=#Hsn*V5+mjپ :'ĝGlt^U^gkT[;u8QȁNN7@[_j:V~{:E+ap1@L=mVc0qNfHc{%ڡF> ^ևUс8yow`O۶OW۞gsYٷ0C7/[ͥ?^dU)Ë^DZ^,P{<#Z?/|zTI~=LF;_cGa~9Ѣٞk;Px,%S|_ [j=OzPO%ŜlzRa/~ A>~}t-C,?/DHJQpPv˹XP1!U@0u Z<˖`Fu91 }l3\ J5U0gd?6e?+~{޼ǍO@ahZB՟ؖ=b?R'QL:&;e0)~X3U\![zz"Ĉ=Sj7$y}y#s~Wųʅ;A?fِ2979z" 8d +<{~edm790!Wf> xD$hW nH} |cgoߛuOͷy0zS%+=%lɚ$PZ@ }<1 m^̐?_YhU&@f [.FL327k0I9ʿ^o L&mew+gsz3i$@oa]Etު~EoNx8Q>g+~^V/S{^W+Td.ٰ1)G\>[q>@};<(P#2P}uE xyg-\P՝ W ^|k.Юz/\iyzc[T&RWF%e=3)4pL/YSKJI)F>>︨xjyAa'4Rm8 h@8(`a}S1«M3jiK}'ûpxco ?>,{]!pt= npE]i6P߭}d>(EMS"Z%E\ ;D!4eͪ.üp7˿ AS-b)}yB9LFzy\>eSQquu4[#@Ek5?U%my+3q)O#d7X>AНpQD bCT,G-`[Ӊxd0|>VI =f.CJ^~yW1f_/-G>S}'&)a9>.5kR}.K,dufwȭwR,E(ӲZY-"P{l*m~CԟU7`dk0>׆pllIGqƷN4Z߶͍`b5-(` 5_BOYt}Q¯,{sLDӾƒ>(,91 Q/ӷlou힋U/AZr_yF?@Q(V1lBbƞ3lh`}OJXSʇb}0%'>sQBYW䱊@]y !Ԝr pd _,&+{zܖQ+8}=MwvXy݋gj B;q;4D02'{3&:jmXю_n7f]Ǝբ,[@J@a2$v/yԪ>K]\4$,s>5ްu]1۳lJoq_3lY𞛨1FUf2Vh@U4|l 0p>Ax!)Mnf5l,H`DL5w=as` ?Zwvw{Cu>?dXe5!F GDo TBkAO,_fiwgCs=*$~uiJsC}.{WƵ/7ΫĥlQZ>@cՠo٧6OW]89{Z֚ @@d~kge>MWJ'tsWbgĪ)+]4oyvge=믅Ӵ75syCyX 6>ߔjV N:]B$j~ؽ]rG=kͣ}soakZr=׉{];V:_`"% 0;N꾩Uj=q['kUc+?ak眑P'g BhM AZ?D9v/N~UA(Հ֞q nJID~h`XF!zQcQVQ?䯕Ռ|f5uej?(łbW4G-qKI3W2pm,j wP<3ɲ {NPԠLמT~'|t}!e^+ w8}a(-qDb`Ȁl֣ /=:0G}j%?ʰ=Bڡ:///ȜMYfk*j1d_]+TD3UDB P7)L=lnJMn3d5 wⱤmc3cPY 't$esx`:O`uאMg X%Sߚ[dbtU(F(xc>Fz) qXX" 1|@JTޏ8]o_"(|ufj|Uc|~# _P~Tt.qMV3$v!W4qCž%׵Af6PGǀ1s536xR aR u_х=Lpw1A|L"0#qםbbܠiBC22!Ou@ Tߏj<6sc?#ޞf?(?*Nu=_Q xVV,AFÈ|s{>eX`3!0b@@ؖy;?Q\nc@mƪrP}u5jV,SQ cVF /ckn϶+qm&AW+JY+u eeM )\ 1hi|e?3NUaC]3w;8>*l;i^C`W3==dxJ"}~Qu'1l_|TlN<# y^_"0MxWcfáP)eN61F:O_Mlr <;¿a{Oa!0(;]U(W ^C+'Ϸ~Մ{0ڗ oOd@r>wyVy8>Cm``#%`s߰ Rg{@ Q/DзRJfL*U BGsv|Q-U_?.UP}'wQ塤d-~aluejlĪwG[YOһ:mI|p*gcLJy y}qu5۪fR395A||}srg|g_yRP`) "6g(c- .`4^ir}f%`  HjCuy,5R y]4@S@y %}(b1#O`x||I+ eUrwU7-lZkG5Se vjlF@4bsb}V!ϾBa-nQxYE?dP\0bNĐ$,.!g?X}ug믌:nvVq0F19m%On"ő^fD@҈[ǂEuDu2VVYݮw)c͢}D0 `lk]$/x@y#WJ#6l ~ܪ([ (1{aģ+>h[G}iD$iYHT/S'j%0ɵrfokk ~ 4۔a>άyXểHbp*3,:s÷Ϟ5fd g4gXq4kgw/F 1ܩ-#!ºt; R-b<9cw_b !".iv ut׿J&h^~*kAXA1 vT\u"K 1;sDG?4 -~-KU 7+>^Z 1[Wγٲ _ C3"h0!^([G֢&wB=kj#63Y73>%m6}c4ø|~fL&l!ߪ.AL`tmB:0/wBH^@k}FOsu5d^b+ڌ<&K.[/x!Sa~jB}bNṠ9s$ 9EB_?^y7k }+q9z~p3cFv?䇳KҋJ/#>Fx]A} Duqݡ/aҥnr3k xk t(Z'n@b1%J7MysCr26H5z+jL&=rSpamNIc)Ϛ?u%[t`3zcmYXLʁo˝w%u}V2n?+YQS1'"xyy ,TT rlv|_mE3f V&/ D$:Lg^oOz=N4Mcc8liB7rM>jLg7pۚD2XS8 / z{G<0γHeRP~{]gz r1S=JzU3O#u_Ş ts&ѝN;6yc cQ6+TweĖb,l /Rw\xXäI*9vb&aĩ9ZNRzfON̓=oXR{f]:t6g"qIZ{C fmxC?^8xFDRݹ09cF`i29>:әCe1sm`jaoUx(f/M)?5]%42||Atf)r^n9j9w~uÍЕQoƱ)vVV2rɖ5Տ_*M}^ITl-6j|okdV %N`ޝD4^S;kآ=^՞w_tRBǶc!22If 쫡.3i1?qb>1#ŵ9&j at 6( , @S {*t, 7`vL ە,15FLZ S *QP( bToF൒!u}g>ũE%* okwV1K\׍j"޹={ Nzӫ]4xQsZPRwzFqI Fo6PzBB7 zK~ףּK§VԳsakD׃鷷w.wͰ}zWMw.r(&,R"Gq>m)b)]}s6_Ra߃ Q/5'_7o$M޶z'q0t2BdԆmއ)a橍(ؕv^G:2x|6  fz~,,,/(}D/?|Ц>fD۴ٷLV?iL͔Ad`fc|43L[4bfۛ%\0ҭNSV͝XC.T.V_ڲ|qOJ\zcl:H{1&欋C2q D&ƅcB;c퍶܃YrH6HB6,r4cbm& &4$$^ nDOڈj"/~-݈ڈ݈v v؂(EUdbb*0c% 1F,i (6FAJ{${_/;hb3yoWs|K|h!|>jS~@ΠK-w!䗃7Nw/|'T+| |馝~`z4Yz&11m!hQNc卖ikX%8 EUURI+TS"wUQBʪAIDD@$2N'+b$K4TRȗXY *%iIG\ڐEM:CQVDg"&DP(Ԃp STt0QʉWzׯ^z6O[R`j-S.OPϭ2?2Sɏk;+N-si*#TU( ,ȓI"%c<B ppם*<…bdRHXo'vUЕx)3bJD.M9mp@@* i\lfڬ*v5(sRT6 c3ABDf2 sa!d-XŐ!*͡K"59V@; !eJz71(cӆP1v2V~[\k/;Ш56hAgGF$\pP#SD"`y^;&8.xr`8"m5z r;oP(otC756Ƣ5+K_5J1R@4_֣.4r3{O-c+6=+Aq+kh | -Pb0t+=&>'M#yC؟1J,2DWjTWQ^R ˸6WN"Sxt@y?2n8W隨<0 yClp{?: K^<)ȤwMĹ"z۶8%-[ϊe<CT;e'I{Qe0q]LmeaUw&OxCR ^,qDD8ڑ׍G7="%H?[%ǼNkh0綠_fTV֦Ds+9@P(>9*͹4blwEB1ܗc->_i6= oN54>Lq'cY!Ufz.nMduPQ00a&A(['FA gnC[Cc8_nzq-拥;辘uuhu'c]DDLS=V%`_m.`ja}QY# BEpcb!V☈D%r=1\ 45o~s9UNVƢwCH=xG`@_=a/}W0g/Z8v@Z`S8\U1l5|VRj|# Z>,],2s0 7,Ob23꺑8}o87l7C~9UcJ^%i 0{Lx+ ֈ:<78u{#9l#lY 'Mҝ:r-QA`:?zqrM0 Ga-01FIˆ3zwinl- 6d wM3 JK!&۶Atrן'Ewr+<ۺ'X?z&vqW*|ͳ (o凔^*Ϭs\圸4ӗ(V;np&zǃ냖WiP0Ӓ˝r iiG= 27b[E=ߗv\B/cj /ublfyH?crb '3>j @hi>r0F [{ٚ˄x~(W!WV/%`mXnNa}zZkq|ֱW6lodL#Ϲ^jShgy{PS٥6zٛۧnUZL3?ݏ543Us5k|VgyoUY14׌,4Dڰ#Im-l[hu&|GrzPN?m!:]$ "IJ(8H`WԘ|%QFcv&7Z}$4| OF#H0V9}c)d=DCB̕:"|ˎ*%´|tfgO;e]fbتTX.Ź|I9Ϛ>OU*Mk\ELcxq-ޜ^?*=;0mdmTڐ 1d`Ajo(ѻru7L2pYQ&ic3fylvt\1B~)~b&S*I ^[/UYTш:|ۯq9QOscxKFpSB6Y r>E1*)$S!{sȂ L(ޟ7ma`AÿACuV;體 ,#oYd%RNeV~B+']Ĉܨq}mHӑ"@ɔ\r14?~)DUJAP70DuFAF 5 3;V_Yfylw@}?ᯁCە0}mr$tS+uO~ߘAEi8F_g"$1Jyf, 39UBȊR(]m=e}c$ǯmŒ\+}k޳1tIU;8 b?/=e#T;hʢ/˯O3u>Soal󕮭h;s˿cZm?M5GCE~ٚFHK~ۿã_e?i\Ht ;FyWUi[CjǑ/}d=&IA⋞'ltgfj$$'JduzT0BIoR#F~r00+rn#Qk'WtI_ۤCrlQ>LM2d./oK:oekZm*NX^_/")~C ʣ`3ۄ!>[I$l \EEEEEEEEEEEEEEEEPQ)-꺂ƑeO[V.W5Y66)&V_y/eAWWeM?!BnMf;4PVq}|߾Z"޵P?dQ7~ ٿ^ͬ*R3pTt7Gh;ٰpBPS U_adk[Xz cn+xפ'Ƒg5vSte俅/rE>U4u)oEuQN-bK#X@q)vtQGQ&iUEdǯrrrrr|bFj3Q`$fФC%z^|dy476}4TRe?=2o= 'IL7G3@HE/<<V⏲= ;K&#nGM4'˺ ~nILfحU-)ki$˭ٳf͛6lٳf{v/coB)=6'?s,L5t"Ԡp(4;qGCwv;<nVf9J En5+u_ꂿ9{N8ªkZUfeUaUkko3:aY쪭*(+ ̲fxP} ،a;cc@|UUWt|e*<+{v]AU42U}Uky_iw}t]ٙI2]ެ˻˻՗wwwweo33 ֳ32F3'ae .ewepߛѭqx-{ ˸BNYwv^fez. + J?~8v]BBBHIIII]$wd$wpeݐBOzuTzP{u埥%c/- GYUE>?y:/a2̤4N]X7mea,јeݵ_-݈>Mw$jKD;,&dGYܡ$$q ! ! ! ! ! '˻!$!$,˲IIII .ʃr:  B6edK.]U?VB3R6z!$.섐BHI 'zOMWU}*t:t^ln lcc.BeeG[0]c9ѕRkWk4<]cf`|C_hyUé]*;"գ=E{ݳ+K=l/D/WŊgm|۟j1+-J2-ybDzQ`x.)s > Cb߸6T@mX:ߗzۘ{”q9kٙMsh]'9&Œ4#ïn*=bƤuU}kytYU_{՗Z9^У((|9BHS2Q@ljjW{uQ:PJaVGmO/SldηM2 AUCTUhQEB(=+e g&Q*kw;( G!$/nD/'5UsnovFI*xyr7Llg{hlccc 3hCv9elcezk5CgBBBA4k;<ܜlcc7DK$t * >953Rnq ~Gh0=.bUyEii`"֛W0|~VڴeОͪj[ő__*TK{_m/I׾!{c";'0|I@8ϻn{d\ߺu%G ތ1zdE6jf>O0lct$7W )]Ս7Lv%1Bad6\ 1pc(ay9ǽCcu ABC̫7Ln鐒61cca1 * v7PHIO]}ϜgOuǓ&KKլnƕRcHudgA)F8LkFiy f2f)C7Pv#QR#(f:-17W|#{^>K}Ӫ=߾2Oq?71=w,fr ي JD0A*0K.J s|oKﶩ(U2OXzŋ,Xbŋ,V G~.Rw{Vk`-o`|8; $Xe> R}QBlnĄpQl@F d8"kZtvC!i'|kXVRsodAQ =z$ (*x9N#+M s i^º[n_u>O#:t'A/'\I`C$XPsGC[Y*Hh{ }g’젠Oh+QiQ"K@Y4X\4L%1bSņCdtF B.Ȯ%oYV|\Nw{F"*.ڞjA_Ag\۲r֥n.bzׁܷhSҟ[dm(X)J/+3UxqOsVBQ>GQ?i{Jy<7p8̿>n'"͛efm]m6j;i^*>}I(I4n;FXO2.][jVM8Q$HЌ8V. jK+( ` $X+BP&J Pqk,|D؟#u);U*8o+7qs;>?((((! f'sfwnK:fKqCs{.U+=\YoO,\Y,w8FJw!P¤4Sz5[(HIQrjT dkP[]ƒ vnnqr^} \;9yq|xՑV,礁MRo`āV!Ư'VZ^)UU+ajfMv`=8p?(ю|2#G5 ."Q^uݏa]eḗBjJIIFfX[T:(55U4J(mwgfmdpznRqyyy}>_z`=(~)jP@;U(4[ǭwɃ hp97ßj}|:x$з}NXħ&餸|.,hM;!v14%If}6퍷m1ǹuWdnlhM dջ~۱nEnDE_Ŀ>!EuU `"hY1-vaޢHDRt,cY qKQLe'o uR H,USѴğz=z?illl T}y1f>̈́4cS}^Lad_^lӧb?v]}xWdշ*f]xӓwua1s š'1T$D#j7p|BR 2 疮+ ri$;˱{- ބdD xl!d !;vY<c@Œ40.!BMLhkYCpڌ}uW֋EOM7#9 FXW|{rBE %R@lpsx>_w>t}-馚iiiPǿ;~ƈouI+jv3g, Zu2Zla&ȫ bm2AZuw Q>=h60AULF#HlȂc nb!6.tԸU *4M 륩|T:'p26T0?g֛I&0־~n7 >Mѯ,!mCpH6A!T9KM$[L4!-RI◧#Gڇ⟢dk D{]z>_ #7p`5kN"/Qi=O'}wޛzO/{N{Z7$> z,robn߀Ivݒ^IYlMpyG)hx!G-81uf+92dI@zꭾˑp M*yW8]EU"jꨪHI}ۡVÛbIV'!Xm;*N]"[{='{fʬ )dڰrzM7sZMyP!êUUUM3UUMTзVV/VVVPa\+Ѫ=ޣ9p75Y"jkЕ- HuklSʗ& JVpwa0e0g׷wwlC 8r%D@*E N@q35" m lGw^ ~7{.bK-s;vSx}9{3M4M4M4M4JiZ_G3jٹg3skmbbP׃2Q(v5|oF> s\<]ߙ_M<<<<_њ|)'_oy?mJвcF\J i [V૾o#7ƽD9['+!vD8L4=ϕ|FcH4X%}+ӿr|O/{lu>l+3 .t̻.߲6B7.?^_b훢umI%|dv s:߇vWSedV驧 zZ\a@$bq) cHFDHd$$A8˩7k:jreW cxq'qS}!#'\lmk]ɨIpn 仼VIy]HN/޷wvo3vI%F7s vֺFjMe],32$lmI$m6$awpm6$m$me $$dmcoAdmem7pmmm!$݂طv~j#X3,Tc#'lي`i.bb'gttZ%("j'- 0=%K()UB{ R;j"""'}a)s6mVWk=^cQ70db^YCRrc2|Y>ύ!qC?TϪ7kp|QG=nulYDKe"sy[#ȐI*''+ˬ@Z&j350d;bŊ(e/TUx㻬Tsv3wH3wZ ft.~̭Um WR`$$.9r Ίtfy+EJ ^8;;IFE2ʠ":]ޅf??¢_הTp"QTϿͰIVR߬VoVu:|}#r7dTNiNDx{W+\LU<<<O+?Q#?>l^gpWopGQ5矊"pCm,k'W{&G7sډXqH}W𸔋i4:)#p|N|*%u: ֨oқ!7q,/wzZGχ?~d~0 tЖ+K?TUVVi l>'s3Xӌ^zm!K깖2j]Cint/gOXN]=j9M8Rz<']ư=aJ~*ֱk)@1FQ(iJJrA>;?MOCyl5_-a4K kf6ɕL hWR6{=ƾI!zڬ/wć0>JC}~)}}Z,w ߗB!H#1\)oӄ@HK .%DI(( h!hLA^LxWz:|0OvQ- O")1* ശ]QEQEy]W+~k' ,-0{ƶ-|ǺcϥÚhqv9z>M-֝}zS5!#KhYZќ Saӯy>B*llC377CYL>~.w+ MPUft%Z$,N.;Au(CJF0_kN#ɮ}dܴ^m06jEOWn5{_dAt)Jp8 qHwP3AIYmig,IƤB<"FR;4C6 Z}ǁޯGN' pAfԪ.=Z YMST}ִí``bfjv;Vfͻi[8N${/# ijZ~nN ,ѐJBk%A( 󔔜/OEjzYKȷ~+qr ޿<+/ve`mܒhB MMi׏o=_ñwiiii+:!ӪN{^z%Z8嵉iEն94EBU:MkV\_g>_۩+N7u1\Y.Kb7Z&Fl`]?[IISEeu^ FL!>^j++"VR=3AE"h,ZҲGB㓧VGԞb-?҃pɟv>vubCTMAUe a oC`~_eDHFf^oK9?yaL-fYХfQd% ,/[:Z]̲2`Wnwn-TYֺlu?vwyyռ3>fˉz-dF=RCa`rDŬ}~v|}~{|}}OLqB r|=WcXޟ9h[fiUqw\ZSRRRRRRRRRR9=Wso @! *?ϦT g4׷]¿_cʼndw.`{E_jyk]hٌPl|P0ȄHR/"E[Uij5Igr?z忔hxEs Su=.s "5{7 7]ry^ìOWYWY(YEDrr%%Q"O:ZY-: -IϽ*F9'γ1$i)qb5ߣo7oT?-~_LAsz6s`ol168zNvҍ}RB5X?%m䁞)vZ)D6\/O6M{XZUVT,ƁO/{. Ԩe>3־lVWU %~Opn3KXŠDOIz8!,)E#zj哴7zMfKUQc1od0/h1eh"'C}.8?/kt)a[ VKGs{{wKF%U$M.F9aEzVQ[cgigi0h4 ,#vPZZ<==bەVe 5~El7 .&D<\4CL"Ŵ ,T08#ϽMW{$Q{fcW^^W^󮇒ͤt;jMs; t;bKu 7M4M4M4M4۩䯿Ϊ;}y<4uo~sa`hccv7 *qPtH)0I{ӟk6Ew2ΥpVų|o=pt?| \ǰ &,/ERYZzQ'/;'y@4޻0 /?>6"Z澃zGi^ 4hTz/;&^R+\kocnw,*)4d\O^4Ii7lC;OJʯƉptIbvLu%oiH'dܥt{mB Rmpw1yMobY w[qPsӡ@bnז-k.{X ծj[Y[t9xƖ죕ˋcXvA$ST:Ey Ak$ъ8Ui~dōBZATAt"7J)Z,=b㬂ԿkUϪ~߲,H Gq"YԔU#tDZ&$x\n,,,-4k%Rr| 5vkuV'ץ Xe$]4TW6xqYJjN/N ?Ec}]3_e|YRWkxkw\Of9~oٚ ߺV/vW.mU1} O]Niv]zW)vt7dVQ-AJeFdnV*Qv8xAXK^GR6ѬXm;yyjW*y4h)\6%LjiuZ&ْ12306ݷɵ֑#}WϙB4Ut}=wv~~&ZMjME˃ È$!"˖2}M=YEWKS R) :0^~)e0엤j6J]N.KwLPLfWջ-?U);<7ICD2OȽ\(|EX_aI}"@IrDp)A&[Ҿ=t5mGFrxXXTPdo?5gvmeʏъdi=?0M|0w;ɬ;V{[=]$˻wv]wyA!~> ˻IwwrM^ffaft2ww]$]jVo3.YWw %]ެfk.k33Ffn,,Ֆ]]ݖ]w͛3fYwuep˼˼af ! :HI!$&ݐ]vBHBHBK˶7.˻!$!$.˻.˻.컸I!$.B1 $$$BI !'K,$YwpBH]w $$BIBdlllcc; P]y_u"F1U.7LnG@LmCD")#w |pq0^!*YrrF.VV61GLn61Q-_?B1lcc!!! 61ct @p8p8p:6m0܆T¤| GՃ -8Ӵ[i:cHi{iTɀ V2w|__;ө{:1urttCC'<מ%GF}MlDr"* JSӈKHO@NF5Q]jv>0UtfD)䔛&H$ $p TY` L $ACiS2w:(|U-ZcTT]&";C'nK{O| .wƩJ<<<>zha1\w[r{]ۍ?}j #sQ}Zv导 Tj KX0Y|2xO,]g?4,5t=l=9qy6|ew֝?N :jqU*z ӉVj`RLBuR;Y5*uV9 71OHQhݼDh64t#-%K0XI,R (Q}WtS5yp.VwQwpژ$L@ǽ$7?,.=7(b袊(4ǭ E1VKбGFn;|>CŋI9r!%wBKY0BZ^($pp$W!Uc(SMxrxBKU!',w8IWahBL-PUIUPͭhBJI $!#j$$H%HHTHHb 5BN"L>'$$H~Gj 7!&#$EByOS|ߛ==O?ި=]xz;6V;^(vS+YejC:TlϪ*ïbjشs;wuzJHQG^\9fK.*ƒef CEQ@XŰIUPBN! )HAa ,W$B#H" grJ !9ʭTAStOLP !'aYh'(Q>@C>FLH?>KLAABYeYeYevߐiȇ(: @xU b#0c\zyL=/G3'gf{gKSuZc*ǿbFkZ%X[pi6?ַm ÝjH= * یqcl<];A91bEi垱r̕,, YeYEYr{ qHH裊 >/&\ZQ%btIE/INWdf7 Uۧ?;Ssnsɷ}?((((*Ϊ<*t:ik?~Ãx,>y|*/jE7m)=V{t=R- -x?9󝟙𼷕ܿ?{Nx`ğ2 }|* 39І=Ko[׎{m3M4O~hFJOόb5\l ޜlHgP"=5ʁ#($d08?./2뤎Ώ{1sF1ޛ!y(hw'8MVx rQ ER^ZHoa}[av\C|=ƪ,mRbmRù|mAg7w 0տWջZ{wѧJ-_D%IWHbNVCUG;)H}O߇9v~6g{MR±9K~Ό)%)j$P5vv;ʸ*u9[~RD)~_3gf͛6lٳf͛6$Z5gh5ϱM.=-mq;qt1x^<f_G^ysK!^BBWhB#Q Uds .)iD OR;l33,Yo8~xJ)[o_@4NdXc&TKutppqhzn^!+L'W4)Qg/I ;?"TG0^k7YE@*^,Osdb*2Y'lwYvm=z: kzXno{ǣQ?mEQEQEQEQD~}@"mil(uW,x= :ɓ_cOG*~yS~eVѻMo?hvQ2(8С R3UqeQK[]_acegOikmoqsthijk*\Džiǽ,{{^xrw|py!G iAO$;?ί:nL@͙Yǚ\)к]t24rDM/a&1@+?s?i?xvbL"j8O YMKh)Y_Yޥ$\1 3M4M4M4M5o#e1WkK۱G}ε[{rNۏ;@Ca?1^}FkUʺYTCf첪/ĩV1brK[ZEduAUZūbə&T‡,h$ʗ2 oLbUa;ŝj; mDӻs >p_3H3ݰJꪮ%\y%QٷZCJJ' iIG -XQ|@dUpޜLp8h88%#c<|9a8{Bw;G.6%%Фu\&an D}Fj70Ihh9xxlfEFiiii%~j0D|UbKA}GiW@Wki~Q QmAlj1yc`Cbqز 1 #huYW)BccJhHMBq硄Au\ xrAe(?$:F- #ncpeƕ4&˒7?ulmƅэ ݂" ""-_b v"6قT:4:Jt+GAh4ZT5,2_+(M&HRgvؾfIb1I*XIg&.MJgo?q ,k9\֮wz>H#"Ls 0ӏEO =<㬿თnHڤO[Gn _}wi˄g{H&cCMPL;[9ѐhIrue ʔ$"ꬂI4QE`ё@QC`wqۼp |CňO| .>bdџ=Oϊ"`b'HUL*goL_7:wBN-mpB"~36KRຼ Z&,2Oyr7][;ySUsW;VիVZjիV#ԯǴ7#xۥýgq^zq#ca()ueh* @@)b]}]I(>#+lP#a3=!jS>+٪Ȃx+ L M .fvx`j3kcusy2r}s=j+MK/ULM> &6P}QyJvKȊ1L|]<8(Sf59S|)rfas<%]U\=2ŅJ# KBY[[|JߖrRdҸMDz(X ) XHhg*%x<!pYݍt`nW-o;s+]jٖ mplz^xG'y/-bEj*-*  I!R9"ɬ_oJ+qo=OLTz<WL HO_=X9ѝ'wJWQJx]E6].LΤNJץX#6wЏ˅%|(Z2% SU*#]e8% \¹EW(2O#ʼnE}hΥZ}c6cTo)5ًGqo2掀,Ii\ۺ;KB((((uV1{4*yi]K\n[~/_(!mFY:E02XW<d^7]Ui%7`]ʥCHRiELɜ&RirXq2^"ZUFIVxڷ >1K^tLFi)nsPSʏnP>lYoƸ" $QR b 5]yk,()yEY-O8yl.ZaB1VM dTS1Uzv~z~z}z~~ N) BQrdn`uN[Phn< [KCSDnI*2z\sLSD.|ٟeM4M4M4M;d^7<W~ ZJjw_ٰ~̭{f:vs<G?Vζ }c&>K^{1j˫]ffkZֲKfCEffWrp=|]~؆po{wwP]kkZV]gWw %wweݗwv]wp].,k ~wf t3fe] ,epeyeyeMey0̄$˲džYe:Ywd$wd$$eݐeݐBHBHBHBI ! ! ! $$$$$$]vBI we!v] ! !v] ! ! ! ! 52BHBHBHBHBHBHBj!$ pct616HH1e!]Y%3rT8ObUhֆ6x%1clyWA2]1RAg-nKF }>mw{Hr=pw9P|P[88yGLlcc61ewh{_͚lB#61lcu!%1ct7RKs}?+L"Eroǩ-%QKt6TaGܾߗ"'һ -QP!FZ2yi+uqTUU+ٖH+-T5&z(IRabXMe$e9QP]E\fa4 2 + \$7L.661cc2SꏪFw6q ) AS! 7LnHYn1cFd$ )Ԅ1ILna˔˹LDb1=*KQB1TT3.3ES>{'/V(IUJٲ6lٳef͛6mF%rx_Dm]m4-gd>*y /s&ⱫxӠ~"${IQLdx X"kd0Ȑ2oHMS")e5لW9H|<מTi3LS D 9g(ghzJ'DJa4Oj',VrT2':ItD,Ғye~ANd&~711M-C*d HI߉F@ӁFHaka)idAY4 )>#$'\Luh*hd,ӭ˜lDamF (;G*iyt^],0`! 8pÇ(()֢|`v߿~߿~߿~jjuuuuPԇ>蜜hhhhhhhk+++(q/oj(Jh8SzN7}z^^^^^^^^^^^^^^^^^^^^]~^]fŎnkVZjիVZjիVZjի^orZ}u}u}u}} B{z==:(P>|N:tӧN:wtth}z^}{˾Of͛6lXbŋ,Xbŋ,sYfŊT((99999KEz=6lٳf͛6lٳf͛6lٳf͛6lٳg-ZROܧ!Ϊz=ZSϟ>|ϟ>|ϟ>|f͛˫[D[D[UUUUUUUUUUUUUUUUUUUUUOLLK쬬$*䤤ٳf͛6lٳf͛6lڵf:t~?j/////*r}9ϟ>|ϟ>|Ν:tzlyӹ}_kWr뾾n^ZիVZjjիVJ*TRONVOէ3cƆ,Xbŋ/7뮺묲,,+YeYeÇ8pС???Ճ 0` 0` 6-۵FtӧN:tӧN*\TӧBy'i߿̀V8pÇ{دEQE:,Bz͛4w''''''%4}T}T}T}\\^z=Zr˗.\r˗.\r˗.\rR?]?]?]1ttt&|{|?:t>,9ӥ=99-ZjիVZjիVZjիVZ|v֩GUU[|zzt(PB 'ϟ>|ϟ>|!NNNNNNNM/VKեvojTVZjիVZjիVZj^}ONSөŋ$C>xǏ<}N!E]u]uYUǏ|@7͛ͫD[D[UUUUUUUUUUUUUUUUUUUUUOMMML[HHUUIIIIHرbŋ,Xbbjյu=OoS7c"{o75u]u]u]u]u]u1Ǐ==/VKՋ,Xbŋ,Xbŋ,Xnݻrgggge:xpkkkkkkkkkTN:tӧN_Kѥ3,X!b$0Ç8z]UUUUUUUUUUUUDI$~߿~߿~lٳbǢOOOM*WԩN:TRҥީJB8p? ޓqbŋ,Xꪚ~߻!9СB______]:tttt'sׯuuZjիVZjիVZjիVZz֩j{tt}4&͛6lٳf͚v05uuuuuuqx|<>rb^T1f͛6lٳf͛6lٳf͛6lٳ-Zkf/e/e/e/bs+̷z',婂rr[nݻv۷nݻv۷nݻVZ۷jիViiiǏ),Xb|_,!]u]u]u]uYUUUE1Ǐ..*4hѣF4hѣF4hѣGSSMMM{=7߾y=w{|||||||~_Л6lٳ|ӧNϟ>|ϟPBtǏ:4}}}}u3331cHHUڵjիVZj׽\^^==== 7ޛ5(PB (PB (PB (P4=====4u}z__???????????????????>׮=Z,X^zׯ^zׯ^zׯc͚^/jƲǏ<~_/ҝ:tӧN:tӧN:tӧN!Bf͛6lٳf͛6lٳf͛6l.QQQQQQg k k kQQQQQQQQQQQQQQQQQQQQQ3)g+)&cƋVZuy9+VWWWS=Ǐ(cEXbŋ/',,,ʪdM<0`ry'8pÇ8pÇ8pܯgy<ǭRJt]uw]uw?3z7~}<+E%T5wzW.f!&tװ D8B'6Z?߹l+>v^S/Nt۴>2dYxd~1?I$_eʏYq1,&9w-rE =yjItToߟ $)K~t΢IHt]:v%y_'/yb‹SG5KkbzTnhhhhhhhhhhhhhhh2>/R-sG{eGUznZ;~.t$J[Q5yf?GA).!wsT|K*&`d-~݇Z )? Ki 6K|RRT:s-GUQ3 ޫUBk2c72R7ol=zHN5X寲g1;^)xi~4.'urZlUߢ]9o3}m>3cPu ީֿhJ38tf&81SyyY;WLΧl]_HEx^Oޟn mO^p~ZY}vE\}y}vgGSEht7myni37N7:8יȪ/\Y=M8(?MV2{FM]#AigbxjYy-.RAer}.i^/ilΛMj4ڬvDE}mqVVB&kg37{,}.N}Ưso窃Z}mƨRk5w G] ڼ=|\-$=Ҟ'cb-mmcmmƾfb1]Mw83^!dY.387*Us @ ZWOdܜ^=wV'݌<˻N'\m'mF\p\&*8N'.nvV.EuXVYޣy]> #'(w}{\,sE㴵-u v'Oװe TMzzjzzz{{@MDv.{oIM^K3ng{. {gm8<QQ?qK #ssnmN7+K^bh8>lljX?6c/4<7][g{n^EIwԏm o_G#yL/-,im) gR*zYs9-cxn:N{Ӎ]JKSS˓֧?xnT+Bm}ww[`|N¦VǠ{s+9zO γ]#yv;gi!E>9eG>|ʼ(PisO^ ߥj c`[})y܈* X->j7v9?.C~izh[}]Gnu+pl|> \co{ҽMŊs}]i"1~C -t̎sɳl<|۾g91u1cs?l9;9Y]4-+4zeZ}-BUUT g:zǵZj[bŋ=\Vׯ,XbČVGYwəG6F |fff"C!CM(5qs# HCiCiiii<ʚMT\9WWWWWWW`뫫 -|Z/ܬIruI_Nq"2Ծi}>kMt].oi.>UMu:KQj0-FQj5DNQ^n/oooeoMv-}5z^XtKzuW* 3 ~q%-}GޭR6CccccccSb Х%@r ƷPz}F.Ӥn3efֲڲQS166/68++++++++-G? 5Ѻ[6;;;NaXs jOun󷉼}>>;_cv mi9c ɞm;wox%m՞Z6`ȯq8XvuI._H[ߦr%Rl'|=,uYM-ׁ6j Od,P\Y >k6Zas7y\u^*{"U!F/DQfYqyuޫ6&%+gz=Ibߒ2./[dzl'3IJ|?-P3x^.u:?G{3֠==m:=WqN2$ˬ?n{kf'K\Go={]{-lX/d6b-gb3WY v7e8yG_׼'y{5yAkTm~gClsY~N߱?grdpl|Ⱦ_?g:Ps(fSU9>^o :v~s!)Wg3Uvg,,;;ksw;?y>u44/+~EkshZ-Ο9S)Ca^MG|&bk.!qYeu:1vcv;υ36K_kuk^RBFA{ϼ{NWAU1__9#^uO0^[ּt2}v{=QVz83s9qYkC|WroW]חKJkctQɎz{h3Q-.{=H f] G#%ipX[_՜ÞTj*{^m guu0ܿmGGElSQۈg Ekh:n?A?gz͜OӉ{]NՕsl)3_'\G_k{];ӮCJRyv{vqPzT85Ss-35;Y)yz:yyyiiiikIM%$6K 6l4dg:ڃ kOu#9g~^w8N?zKLNZV|k_,XrK=O5gY跇#Aa_#n<[z5v"V6.r^׊ފOI]2 /KkMvx?^/Qy[n&+Lȳ@VEy'a5s''{3xf՞Vmkkky[.{8ֽr7=;waM|G}u>kw+[wsl/ Qp4 UzcI\%]m݇4DPЮ0(3GGNFE,&`*38GC6`yC?VcД,?b3dX/O.ʊ+, =CQ3QQQ>2GSTIK5V< r$핼u,w}}=h@t^ iHPP PM6!t>dOsM+vNF`_d$<K'%=mxyTHR'WofB~]{k8}{{}C[+r\Z;6r9>?5em2JܭEʧMn+;95zsa}rV[ns>~cWUf\ˑm0Mzv^ ŽB.;Źc1UHmM^VƱ,/_";R^KK,@%P3'Ɖj-UY[Jk[5X޶qx_Sfu,-<wIqNȲz0.>{o[p1| {Kr?+h#@wq=LmZ@#ѱvqWSfgʷa!`=Y-ovec;@ǠQn{]Ng;AVoT̬qLTnu4Ҿ5;Eh3o7L|Z^'y:v-ѹ]]=''j4 >).;*QUU(OӽA@LꪙE)Wr:vsssRRrt56kOOM^mz*^޲o[CᬬO6mҲʶ442;>/+?fB)!na'a奏vbb4WYy  )*999:M5~7OOeOdv!3Ƞi՜1  `׍qeeof xU̯qiL[n6Ky?c&`ga1匞VQUM^$p;}.훅uZu24}=wfL=x y/:jds8Ve].^S/rVxY+y2FK޵Q;EZ*&yODgOt^s Ɩ S POOEIs4<++-=5:l~PݧOKT1fWy5?+m&/Nkkh Ws-t̍ncT_39}]JGgnޫ<صWT,15XOrVܮ=a4--8\iiqBkS;=''pIP[[[pvFKkS(Mr8G<3yx\)sM\\\QP[[[[[d2;iVdmu=*ctꦋןp6/o^c// 9xխ{uZDx͓rݱnpq27,Xɽ;riocVdZT'Rl' gvŸ+xnH Hfq9JCKudv/$%P"׫.9|5 E]_;}ZE|gOH6\Aaro刅ik2nۮ_wj++ uu|ɧq( \gV`Eg٣Yj=^o%7`Q8xy׷5v^Ky7?|_Co~YFN%<=')n\\v>ϧ}Wٯo9{w~/iyf]i3r[}ʅkO].eTTTJfX*)[l>(;Q8zl1YQow_o .ssron糾Sj=Kvy|^@r(7SXSF1zyAƐп,u:oSrNf6ڌz+t^}Q4iXZ*eO\s t<&'13t{Ct%1ZnirS>i<':JnVFFFFFNs##%CCE{MPLlr9l+Sh|W+&V*~t=gZ/!s΋g^q~= ~ Oԧaw-cqS}0o.#&&PGMB;tNNήv:ͳƹ:$תg{t9[598uIOrWaUJMbn[:uEυeƬ9E "˿m?GvF)ZpѿB9coC )UU{kpXv;?|/cޚ1 |T!By`c;NgI@[\v"׎c]np,{ş/Ǭux+r=6Qd5mMq!e7Mo}޽D\Nm֮q}9ֻM򿟽Fߕ͛/i~۝1=cH[EEbw\.CaMf׆pАX\x__4UO_a_=U /|Bٳfݛ)SNk״J҄BCaaew:|aσ~wyF]}qC!_r1cm{ivwblٳ}ߕs?oniP:tsuOPB (~ f۝]eYeUQE9 UUUc[\ kyKJ()꼥ʩ)rQFդ;yiFMXmyyOqܙVftR*L%iJ?<ɓ5uL3MYthT8>J:׷~w?qq$;%%_%́[|و~|LLLLLLDGHltttto:::b"!a(衡aSSSSSKKKKJ @MifΝ;|<6M ':zgNN۟>Oϛ6lٳfM'HNeYeS,q[e-ZKu.YeYeఊ?؂ 1OB;JI%)*W㬷BknB-Y[f&"뮺]u'B.*()Z,,Z@lX%u[-YE leV OLYrݺqN3ӯt8M<~Ϧi??*T3J*T2dNrH/{ՋoZ"E @ rf.h111# RT٥J//P|_SQDQ >r_|a:tr{VVNT(?1Y cݶUA-"Ooޕ_ut[MӦgNӧW>]~Zի.QbmB??q$P>ݻg#jR yq~YeY>4O8;p<51c!~9;i_*|kecM7K,0&jiQ72{r?~;UFUӹavQEEB0_R"эƍo7$HhGolU%mkLLc;[X_u_ZUR{]I%sCÈyHVV7[FEEDRDbfa1=XlL/Bo? I ; G݃jjjjjjWWWWWF7_Կ~:T~-?JRKv:tӥKN:tѣGSSSSSSOOOsSSSKKtz}?u4(((7QEQE*((  Q@աUZgeb&)AeU$QFI$(I-&U* u?784M3XM7ZHTOHcy<#im3BB*W)#Q*"*%[?ieW_eYo|n,*Deb B-aaIp~bI%a4G椗ev.on\=C꿋ROWի[srzׯ^o֧RJ*mԩR:tRJ-OסB[3L]SUUvU4EYeUUUUOMNʟS뮺th>4ٳlΝ:mz(siP>tӧN6lٳf՛Vvt5UULByiuyT?30 Px㵱UڵvRJV| lٳBךB!]u]z%P ^WӧNϟ>v(PCӡB?J͛vO6h,lNrk묝9+d8w|6/g,O2Ԯ*O^teOtʕ*T1ߣ#hJ_1P߀mm9֖BBAΕ##"a޾Qѿ]x9$' w86;4q>ء>|ntf͛5e߻o~6l ӧN:mHO %w~yBH,YoKwٷO;O>|ϟ>}t'Ϸ'pнB{_jK+ygi ,/p aMqٲ~# ۳g 'xqo 1ٳf_JՕj]ZꪪCW厵aV ?aP5I-馚iYMuk{+-W]{Qkd.M:tӧN;iNu~@@?S>SQ>˾gy(RpjN"4% $$'cS휢HHHif >ӳCocAoϵO_wv6fXdda5 oM, fax=W" eQ΍.h\*ҦDIr/oKq?{z skH|7K@R`"c<=EX^ `ؔYZy'/$0>ffy0S 6 ,U8N3@ς먛aVcW<^QEQEQEQE1yu:~  =o[fS؊G{Y,'AO4+ _C=u%ܡCcQhR-7~ȇMMƶ+++,19_\;AL=?{{xXqr5tԛWx ^t95q[ZSXlrZhh/!@8ZX_=!bԻ,UMfޙ+]aas.Mq_w0yrC ԧWF֥Z"Vʾ)dڑno:z|zZ6^Uu.%jՕh+ߟxWcEWpH$Łԃ歍_e=n28șӭJF o^hqͷ-,Ri=܎PÇkD1iɉu۬n L5ףڷOս*Ծظ^B?Y)\൯ŋ& l1ѻ1y7Wu3gcJt0J*Tsww/_=ν8T23#dVG{OS Y65QhDz}O]3'q+/,iiG:$H"aɁ&]DZ1[nD!'7[BT[rm.\sL2dɐ&\20 06qҥ f8)l1xC[/Zsc/?75:]רVt|WzdӧMZ+AnJ*+RATBJ*A'_^j\dex <fd$VOGfyG6c\z.MZ3VYkvo> M}CnG}:5V}#McǏcaߘ_}.|Tjw n]Evv 2;o[9sgYbU q+'̿j~e泚{vkWIƽ):ݝ{ٵc-#V^E_U\-o/atM~ 6y4WS7ch"oNm^-X0Z3f8VV>vT+9Ust{3I_)Yh*y کiEl^Kv;kvW<;zoР)C|t+I'\]ѣq-x4mN] ga_ eoQgM.bW2ݴvcM^'^t>珃DO~m^6Ɵ<ݭmzאi[MoGFL[0ꉯo7?L2xK&zӡv٣&D@e+|UJ BnRdCfRڳy:,co&yuY6s <EܾWBgin'P[OS!̻N矓nnE8<*Gĭ̯VtSퟙz4s{7Ryek`O>+bK:lXG8jdܹF tsso噵[sqro][=c{KN8n7> 7.\mkykgg+u)pͯDȩe[咾.= S6vÆT555:ikt;)/7e|^?4OJǏ_6~h滧VAuV׿I< Us͔yyw.2-]WU/@ڑo'^ =ӻ/l_=eUWr ySfRn_ `љ>NܣeJ໅tg>ޑߜf_VoP"V~\^m΢]JjL.ñsoGN{"h!Ok޾& HNR[4h;%nD8maB `ac/kWU)<%m1HW/̧5uܻo*Vhk;ށ>A] ߌmM,I׎@\VӽjڵB^mzNᝌr8A-HvHGg/' ( xڵj&r щ 1EUvfS/=jLJǏ++݂"ͭ2瘞zsPȈ"u=+`=҈Ai<߇gbj=v}->W+5x9ea/|;pŤ}.ʽ\Pw:nZ(ԡ(stlRt:ؔ:9tz\|kuDQF dL8cG7ÜsVsx<{s'@kS}VjɎ ,[$'vu0lѣDTwa;iI3Yzxnl:FFV RNϭwMF>"ɧ2.[vu[uNN^lX;~yN{=3}߿ 1OϢNe0v/(枩b}B4h)F :yEJNOt4veiLZx܍ YYy!۷~6<Y>|y :e;ؐcG+!mnb;{~nW,+Æt_ cޯb˙n} Jۿt<yMmۍ& ?5>o{o:,]T.ay>^YsЫSrATZZ\Pu<^h^}7wtEkW^X 6l[=:6Y _wout|> /TR*Tr˗.\kK.\r˖ #;`'dmJlrc[) y%GkCm (;B (P СB !I2 (Pu (P]Q*:;ʨJ2= ۋ*ŧ`̷Vq)[}>四|vk{3:&2oooA$~ʾ^,^ul3\ufi: 9>s|;7DVny?g_;U8&e_~ZW^9۾߹^^:7L%m}]].Tq䵧M<ݼ]}[Fy,5onGwVD Vyu 79#Z#\Gr9"9'e9lfsf1Y_y̚Owy__O'oyH}BuXY: 7'KP+>~l.nYbóʙVkftPv^ͪ5a3ܱWַSKN?B}Un1cP8Î3-!5P1ZZNէϟ>~P@4&Vwxa_r&zz)[1ؐ .Cnܟ5udv⽲s,3[mberfu۾^ww<9}}{|v($Y!ɡ/ln{PU͢^i9]=U/سKYEruuS6{XC˭ԻL3uwꊷ.>^M%bSZ8*T>O|eHm|*f{)@Cu\U諸x$KQCSdI$RRLpߵR:IqQ39S_˧^qf6Қ{#қ tYj``2(M#JX~/9;պ#|W27&}NW};\kVxY;7~5ُʼnz7rd}}[zTsQޯJGD_;S3F*R‰]GJ}4b&JƉUԉt5tm3;+NyhyjYYyoyn؛S7^Kܼ+/#*jm/ú4w/RJ6by?zUm=>HO:J>wIqy8uN {[Vfy7r.Zw pJ䧘 (?\DP֎7(H2(`׭YuwTe llGG*&)z\aydaך7UvNr|w ijioPV6eMRFH]K'W %Խ=KwRepbJrjIMW}> C!aMSSSSI}ݍn筹W>(~UU{>﷊wIuuIuwaZRۇ\}ЋO[Z GhW ỳy;;yhhh22i)*t8QÇ ʵo?Tj.lmme9oWO2ޤS /:h6lbn#oJ-|Z39"~Wӿn50h̅sW>:I>&EXGVzxZl_wl-qpoE8YĊ<1ܪml㿵ɲ'hѣM[|}980L!۷CYݖ>+1Hl%1A⻚NnF34%pP#M,K/f.\n`{pKPqʐ_n_?u˗.[[/#/)NM}ѣFtX&x^OCw)zw52ݵg͝MR4>;|g/>s斖|(]PwHt[5kJ-;jҮ43FM橧}]͎{&93'N:󻮭O-N1-6y tZ ~N[|rH$jF?Dt{>YT+lm.v͛xnEêtn&mQ-F=nn}'{5cM9ooykvSܩ[3+94unwڶK7jvFI-_l={*;l^7k=Lb} Wgr9r7k;ɭO"xg9.{\wsfB8e{8 km6>qlCku,y jգM<N>v_m?w!fjetG}\m:p͙War]Г8g5kT s]׃[izV-&lqΌOBl8rI9uAL-ҝ琙gݗz|R4<-J6Tp2d/.0l5Շr,.[4hѣIBF8~sa@KA v#85]AW&1>V"tH[w&f>!wZKv]tyXz VMï_RЍZfӑ]7 ٰmI ,zIzrpԜƖuuY}&Շs*ӱyV^2VN_-M4igP)yB%YyflvhO˪fgMSJrbqZ#[x]|حlٶNDBi[OÃ,WR7n+EgHћadBoxf͟E)H͗WQxh2ϻ-!Սrx)jǮrtW{s{cDƹ-Z381ppO<|Erlws6۷~pO{PW>cdyP:r4s\u<ҳfp2)(:YtӧN/ݞ ܣӿUWP9m+le:Oü+fG#ڳ6m!UKdǹݥdfnlܺ};E3gaktW;ٳVydF'Bsi5瓰ѤfM/ozTp Y7Zw_ør|q.ڙn׎GKz.;vnys&=3MhPdi?V6$-^ Ϳ v۷nr`Ɨ=Mۼ,2S.' V MJCN.^wYD s&{Mi2z&2Ucs .:{S.}\| ̵Riܟߠ$=<53F޷8p>㮞LWw>k~v?i`7n߾ټ;|~\|>P v(sp㿢B<|KxCggJ?" ۷oN$T nf֐~F-^/t^$Moݻv6dˁ1B C.ݻv_}|knt9ڭZjլF<:|mg̜^z馚^H*rvLN 0>2.&Z !Ǎl: cF ˿zOypu^Vj;kxx6Zq*L2 ?usnM 4b k]v)-R"méOю/[mbx|*eG0U3nݻvנӏ[ E^|-~n٭Գ׏)}צOq7nݻ} rsU˵r,5jimk=V!E{~}2d˿Wweg"f(VZr\r˜}YjZ[Z!#ŒGG@o#xw-e1..&Dkfm:}4wR9<3ˤ,VZs&߄7niof5jծjCeSaի\ֵ:wԿi8IㅬiCqwo~ܻs^@i}Z12׽U~~7n(Yh F{P՛լLr#Ǧٳfʹʓ΁fPV ֯YǏ<+S2*.]nrwX3dt%*,/n]ݣ3_$UODnyy)ZVv,jpwbګ6V4\k4n4ϛoeӧNo_+VekŒmfff9 nݷ^Wb;f͛nna4NMU4Vbr;bf/U߈Vp;vz#Aip,EQAOW[vwmC^ΥĮCБ?qUcx_gkgVcjn@4tɫ?Vwt!݋YKR4'7u<&em0=R9`h'C!2dB_xL㻭zfލ7Z4Anu.oDC{gF3*oQ<&\(m;7LU,Z)j QhӢ oC!@陏b>xMtZ胑UUUSܥ|u;Gy۽ cUSQZv 7돻“=ZhןNrZMs6lH-Xѥţk;_ 6bsSD~ܾVf͛b=:iWuq$-ݳn|e QkK8n1e9dɕ!hB9&Ӽєɗu3[f1Kohw>Á8[yRrhfz{c~jr`sWS~]ۋ\\XN?ud1G_okV]s}C>Rne右/Bw^W{[ؘ 170771?~׮~v5իX͛jlVInݔT^~~8pĵ%dX\x!He@*0O Q|7>|`>6{?spݴKKr˗+,W_ѩ3) _ׯ^T^y^3g?4?1Qn(… pBX/(Pqb4XE~9QQļ G/ „RiB !Ål(SaD"J2QNtA$sI&JP2ŋ<8PB hap`"ŋv4hG9ѣF64cc69$Gr{$2&"Dɒ8hF-.|v4[5fs5eRIf m eggQ<Wʕ'CV%!ѭZ4ر4%PBQX!B(# (IB 0N L[ @~\́(F݈  `?~ײ\0 ! d P @0thp p@B B勵گ>| mmhp6$McxUY$)XK)YRA @A۷j<_Yϟ>z6 !?|%rݻvԛYuݻ^{-M%˃.IÇ>d? O^z'ſ~N:vԗCR2. BF گz[ .n>|~S  N8c~(~Oxa,o^1~A>(P9hthb,XfB C5<߿~|o^AA{^zgϵ'ڃ 0c$1Ç""K.4XbŋZ4hǏ2dF1"D\acluMz÷cx^;v7z'NmO^LnRm7nYZW1fKZ'n7j22#M6$HׇQ"D Շ8P$M!$H%',XbĈ\8k'$(&AA:B(0`#B {[#8(gÇ !B (P@^{>c̙1/޼xd/{4߿~Vd3 0e{ýݻxkN:s1˗.O>9ՠڴѣHbl7֊X]脐샟=S|۷p1>|ϟU|>||޻u%)O yRk߾{3M=-oL.́S}˿r &8Bco)ŧ*9@nҎ;|ӧQ\y9k8pR:ԩ+Q{.[׮dvǎݻw!Ǐ;׏XGd+%>|F3`6'5#!À?- {{Р^tb%z̀BäbilSSiBzHotml&۷nsow0/~OK%Uڰj̺.;$uj™2t. Z t&Ľ i!!X^I+@t-zO>:pK}Ҝ9dlmc5S _{}^6*Uu .{3V0{:;k_^8מ?r7h&s俁&U@钞JE1E TI@W:Q33>۹Z- tZ4tgvQiI/t ^EW_X&|}/`x5qxg'su:|ȚiiiiR k7|O˙a$_рCC>j0oG99n;1ֲII4PU5.UQnLPJq9Z.Ƒ(+v&Җ+VF7-.刵J )m(qQ ܻnJXҖ ڶM]PDeZRģmwnMThQDqRJ!?yMzo~<^yyy9s|.C 0 ~i(/YI$qq/@/9t<\^y}}yyyyyy5X=k<1c<16W9Α浴5kZ1kDUS>}}߯@`ly]+<9sֵkbsvk_kZֶ}}}} a ߙkZֵkZ؜29Zּ<<<9sygys9s9s9kfgyc2j}~Ď:=,1E֩#tۧ*66Ǧ5Zw){AA!pwL|(~5clxlhV1c1<mLV:ZŦ6lq3ᩖHMf1d\6NjRĄblM DAEnnEE?_f_ʈL_ct(@\>4*ְQ6^2ئk6+4IqE+)-*& Q=Cﰆ_Wd)H jiJB#r;1qϓiJ \ ffvjɇ!eyfJf:|Ömjn̽.˲= A)ŌiG~׵!x jIYI%9]"O_T͛ >y_-l??d1M@H)I+C_ܭ Ŝ2mȰBI!9qy7ޞW̛VU|(J(((7yT6ff%Rww=/,x%sL>R)?ʑqYfKbF@WBHBԺDYy7Ui`ؒS6%_ryeYE ZںRXHB,v'EdCNmb&K-ް#vJD*׏ VK+|SN̢WvԛIIQRMޅjVdԄ(%hU l*}XVW M}}^6[6yip?4&{{wi:.mQ{=n]Eh^eMäЕ F?2,wŞ;%2% T5"q$qJ &qA!"2 L?_}3Q_I5m~i{! jk6f}J>&UfiRNQURMMMMMMMMMMMMMMMO"+EBl0q+rHVVH@B.̣SFBMn=T <*<`}fb)OCf|<KEB1=r̊#Ke(_=_uw]˲"suU֏{RbSnгMU#O%4$,nV#"# 07wULoE,YJiLX_&VT3=T!L2g8v З!%~n>Q4Xe9B KPv$pla=eYq4ĈDI@-9eYi(7*ɒKj(!osO6{{*:u"dm +YYDOQd;I{"YԒ޸~xFRyB}[t|2i"m{Gxv6hY 0K(oTi('fֲ=) Q+ _~ퟛbS#ei)(h"j SYwa{Ntt[gk$&_dM)u$Rdw8̈c LyN++A?Y(4'EC=DS\TEWbUf%Oz8(O]?VM͂_aw"}Uppo?k=qStM4M4M4M4DU}:,UԭͮL7R0KOκ U%S.'%э +9kXt%Mg.~SVV'*א>yST5)i>ZVH'mk,EaR ⋧責jA vJ:.Ga6t4iz q4yB߹y ~w@|pR |d|Yfx\dho^*הijp*')"("Rc @)VoD'ꎹG9!&31U~]$7,p_)caV.rAfIE1ć-zjիVZjթ1+ wϵMz4vyM>?~yax]\~7o.A=TƬ0֬b腃 WeF㈭%H\mo9͔2,*be]bE~W"d~h?{LݑN޿$i24Gϑ&T 0ӏ|ۿNW3Ln3^h;sZͱO x0x;c?3DhIv.6Ui LsCp%FQ4VƢMTR]uzNV ĪVDeZgNx?Wϵ& S̯g-kZL[WeH sQ@qt_st{yyyy Bdfc}s{*¥ RȟjAE^X(F2( ~%[~ZۥZkf(\*]W74^۲hjvnr)--KCZN ,SnBm|;$VJU;%]m.\ccm̜C;QUTT1f喫.I1xǶ4/&1t?{mDEۻDD[DDDAnD[@O۶clHHH^BZl?,3)ڤ[3t`ƫf$ J̴2ۦ#QdБ`mSn:hPL)6@qlK0'B2X`eBD$*\%iLjh"'{|~^>oFt_.sϟDo六vDx҄nUKV_OM2Yew O$5Z2K-UKMBKINYPP:뺾{.ò쳓2,BvB"*I%+i=-Lx ?GǢWm|w0r{Q2 -.J1c7}''/9\_39 {ݵ4 ԯ3"=%%! A4TuV85|f_橬KI+jUh^si|!ӇʑSMϙ-DF .8!f UQ;SuHHЗ12lr-}x3=Y Xŀlq l-=Z+@:} -=MU(<{f/\?DMH5{}pnF}-o) k\4iH/f$l \EP6Pw¨|W H%ɂ*@DpJR zGr|᷍I4~QhVLWq{qoVv8.Ԕ2pP]?&iiii< Y֚/L0O1Q121H=bPY`sc:+j;ZTphAkEUΊ+KHIdq mAH Ecj =AاWaql@>/_mOx_~a Yrx)&Jf䘏ˏA.W7Ok^H=PpA'ZzAtFdN]7,|a@䥖^j(]iҧ1)kezP)5Hal+FgӛD}=*=~lJ%7Gu|='s﹢((((|(yc{׿| /Q\w,crro'$TΜB)D)FZ1_ !\[ZXJ@IUKi}31c8 vtPmoqM˄3.**UEVfo+uO=^wf]w}h+뵭vwrIOyԪ&vbɽor$m{ {wu)e22Ύ9S4VGLg>6 V1cc1$7Llcd7Ln1B~T'>;To)Jʕ Ֆ%1T7Ln'!Z뇨- # +dӉ| P,$FCMO} #ש?՜]1"Atb^مJzڪǔn_||݊=ecSʇz>j$:ÓuM?NfQ1ʍz/UT#-x'5f]mbhn;,nPD X)R8}%E480!іtCbס}O/z)Bz SJ馚ici7}[U2?qz/W,2ؼX-tݶ02?"aAHa#:$Z<+G|} } B}`}=x P!A/<_+RiA$; 2nԤKԊ%dH_^cu_rXav6GoQķ~s{8O$z7f6?LWxS0gnpImgT{67ՌmBY8 j+9z}Q( edS9uHc6@$ºJ摿=h4m,t= L KF ͷtzz"=55QW*AcB"P(Lq,f?<;9=ֺ?=_zqr""4@ @*<`LU)5؜:>xu}_xឬv?q:9zR=\ ;,~ᨢH9oznkpvWRZ31(A|O8mw[0c$9b0Q:aũ&<oX~J}usl~N0߉²Iy 0B㒘#maU?i?Y5 B3}۠RőhfzHn҂4ke$+2(E_Gfx?Mpv1YltacanvjP-}\a}\Fy^*ͽ@`?Pfp8j~6ejŽdKK(ŲL0#, UBoַq4U [/:k[uT'@vY %f{D,> oo RN8hѐ(:64&GFdHL)(XL#Tk쎡y{QB4f3m9S~ʎ5%̧775II>p[oBz1 4xrM܉eBN8!!Xx, 1*" .5z9 X[`Ń lýިWwY*wBYeYeeYeGsi-x'W,u)& FFJi,yJ.jC=2E!Y! RqͺlY(>KeRTHh?Z~ bDB`{h@ob&a4 `PaUK$R H$UCE9M*jt(d bĸ.T (y$.BHU(ʈʢȨ?S~T:qуI{Q:H, !& AfmQ^v Y:D٭Ƞ;$]Ӿq r= u (g  K$! TTL+ +&D\9($2E'uj) `-JI)! !T)N!a3!9,$:\S%2$ &T%$'2NTCxf$,HRUC 5e! RNslV i3 2a5t^!D ԥEvgŃ{c˔Էǽv+wd*R5X5JAB6{*FU*69l_s@=!sBB%liU&1cw  Ь cBp ג O8.uf˾|a* c 7BFq$.HjG׾ ?c`ˉy+G^v))|rG;a]|g,(Jied ,(}BXLhĦ )j$wL'jdzs_=E(zE(4/`ʙJIi% I(gӳ7׋쳑2Cp2EK"ZFi2n3;G2%,L moj=!rQImn;gO֠oL:U.:vKޘ{*N 0kJSss s lsX6Pff)3e=qö('s"@ChTʭVF´ &"{8%4{uXDKo?ݥ$R5OJQ$͖QL 뮩@v%?Ks+Y4uou, =c/eFlyyy*k2RjnVw= ;|[#D3,CD,&n >)4`!6(r ;cT|9МQ<渨|*EC4&V1V(,Sv\AH(G!]4!5Xҫ_ s+!h~{*l0Y5LyXzD~ug ˫cՐ%25 y~^]?Fvx@{3,anFya~ͱԊE,DsR~R)djN{<szjonWe/0*J][VSؐ2sCa 7 ;6K.vt!v!52!% ( If:ލtv-kG_ןvVUx<π[ѪGRMj4TS˸oD)by3ĒFcdaAD\rH<*@ID]oqRU x SEd3<jXS\{{@ﱢF VCqOKْs]zA5HChלUڇ:+=^W˝T~QEQEQEQGWPօˈ&<IY)u84osyu4uiGGQؚ?=3xOgg TlR>A&8V LPIIcaf{YGF5XK-8p8C28iRG>hO'َrA&ΪO`3?cvd /F[fDMћF#i-ltnM M|.:/O?JX٫Y" u=;08ag7ĵpNɇ/Պ<<^,p0AT(> nDqlpQwM}Rwج PL*+xEeWv}&TWI˃ʵrdG߆̗њfe|R5-F6a|7mny`W! uhcUcq5f6Cu  F #jM\7xTbkP Aؒ!!0WY0m2/XJוk" uݟ&#G?a=ٿ;s~5uK92!=] SudBfg.,&1pV$^awHIL:1qj7Fp^WK%@ 1YE> 95 f2hCbZ)sdaB7K<1c0!oq.a:.LKƍjS1E}\,>#%_bBT\(@BoZa!P]_y1BX&8䳨sa)dkO3h0`}탤 {Fr>nWo)µV7tϰX@X8Dk |2 vCH\/b c~ 6U.d.U4]Qi7 DRڮ2Á?![\-徵Cz4 g<D&*5CWv!_78<1M+dg=o*P9&/!& E=%Q*n F%r,VVU@j@ሩE8ՠNx8ã")LHr1@b`W0 ^91Tl`>I L/2wU0 p}O'{Sˬ]ˌ@Cl*}ZK]˱Dh"dj+R<_հ6bT%.qB-ޮ# fG_VМ_Yps B1b6 * `J{pˈXu8߉7n쐛Lf7΄4z`hvBVA0xh:0qzYR'g <(;)Fl O/7^"Ӽ!p~g@xj;?HN=s.pMSfD==|onO3!~X,DT`ڈn[yÌsvF c:!''pz;躅kท6_pB4[$i U~$Ʃ=<[Hmf1t0,<r ,DN (Q`QGPXBl2HLM'HuD0SS`?dI$HId xA@294a_)${*VB=ž~YEdգ5ok@OmO؆P^c,//Ѽ'9Cw%McYPr1%Ɇ\RP0rSEA/Ou^Yzò{.a*(I)ID! 8%|.b>OU2 |Z|$[[;NVmr[EQEQEQEQ~g??Vܐ:s6+_#^vQOٓ.ir;`9P!`ˇ?:pW}s8> /7' Vffn]$ԩ|^y.d/󡙬PΟ??n@(J2%˻sԡMfl'2$3g@"2DI&ܵbܱme<$]܆2h3 .j8IpF7p I\]Íh,g,.$ݝ9HI!&%wyVIqǘUcvoCFٹ m!$}Б61clmH6clm6$|T. !rA6d7?A)uB􇜪"ӣc~hHm6$*dw5% QMESW!yg<6Y T˳TRhl֛@69sgJ򛺶PG> wD9ǂiA"k5W5Wf}٬кqipAQ/:/π( [.["*uC۱{p5ۗ g( )UB'om+}"""؈yReUE*>[N/q:_zv׼=ULUJLKYod/eeslRxƓ5b'(=~Ԗ1x{0=B$ў Ehw|Y$GYl+s`ŋ221+!,X1c,XN콬v'|BIи"\g50lƏÕMq-M}?RTNhӣF,?~Uwϝ:ǂM %Fs&:q4ʯ /Ѫ;I!ꔪ2̴Jorqpqqw\Wbh+_OwvO'@' HU5$"#8 L@D9u? <ݙď{;r'[e2C|ʙ^Nu~in~]4M4L4M4O`4fyA-G ZZўƭGi?}] oA9=̌1dL/!J|h9B'q |0A$ձe? Lw-eqR56 e~>s.lG+IhshX{]N7L0(E^UmIyWs&_w,zԞAt(Ky͵295u-Nؕ/FJ]/b1Qs֏|g&,kA<.aE%H4hrv/srz=˦J( H:3HH(Qj9〸 *&fޭDQsF8sʰn.qL̰RSP rZ;mwKİPR%~K/"mV ]75{5=OڀNR2#joKH#2JwEX#PPIMH Z^GF.g<g(X*jZjիVZjէlW`,p@_n7$ Ӓ%QqkZ kתsצdZ!a7z0x) c3ƿ6ߕfH U=.HyիZttR7*TFUJO?qmgVBcfyAy$gʖҏ&Ly$]q3OHhoD,1HHZ HBP?Ppe`ܚ":~c_߻-wUFu_Yt2 4/o2p/*rM4M4O|jNj&{ȳFno]w`o.O|os6g1{ gŒX6}p'zRz` ysgtUD)YUAPRx+=ϯXH؃}AV{wi W 9BDLqAyO%D5??j+rUEn G|fid\H{?ޯe˸+KٱGZ/nvߥ8|~os) y 8P~^RC!$U*#fZ=|=ySYlav I¢J"P iғjI~Պ٬J{Cͤ^OK֧Zޒzf}tu=}u#@l׃ KIy K((<{됄]u^iI%|ݷpԤ.93ZDCwDMEČ׆CLZ#IT]GB E$ Q{_OA;o {bX6DkHṲ'.Ն;-:âEBi b"g#$h`% R]┲8tAȑy G}[?-CxR/{˃A]ϒ;0Gb_4JONq[iX\<3 $Äbb_Njg*?&VgVeg5љw*4kX][2˓Yފ< 9}$8,m\CH{DP7www}N8&@qkYg]4e6]q33X]]޳30ww 5xg߭uδZ.o|lo.N .ΘYwIӜ0wŖ]Ë.,˸j 3]]deyerB{SG5E~睐=TxT烃! ! ! $$g~p섐.BBBHI ΅w ! ! ! $$$$$UYw YwfYw*038 جBBBHIGe9G}ws!$!$BHI] ! ! ! $$$ N:rqO5+}4B:,61PkXdŞ~_1g<E^/B&*#4(ƹb֘a$qIY:4a#" u)7M}f0k.eDD,0YV%6.ָ_2[D:.Z骽-x~ΛoySu !hD'.H3q>ߏ]Cr 9y j׏:/FSw2e:*.|ǚ9uk.ڑFxgQh9| 61lccײ!?epcd]e3F61lcc5 7Ln1ct *BJcti6㢛d8g]D'Ϲñrg2wݸ&cߖ4<!yqoq!~4I,DTYÖɴs#) g$_AЌ8hADRƖ5w|._'+`0f0f nZ1cu!%1n!!UUE_`-{!%T!q g:_XweJl{H1n ͅH˱C!%1(Oϰ*tٻ!7ʲ*}2ѩLl)7Ln?W"fS7Z]]w~Õ'ϻ<{¬[͚X22*߅!Scu'8Bd"1V{ٶ1Gy<ۯ[$,Q#H!iwt(m6%v p[|^k2Bl%)Nԥrwy4Je(QJhoI!˟ .\r'.\j֜Ji2jU *S ksL T lTDgo>2~IT?@]g? ?$Uls~-f5wޮIKm$0ԗPiY]𶇫Z/JiVCޠY[GJ}bX^lK*Ţ::u֯ZjHَ4!8H5~%?v¦-كLfIb9>osolnE@t)D OɥWh'*P78ZݝgaĶP4H4Q(qq(q*A- F&#- E0cs,ДX~볫 Os+J:ʼngX&69YBP4_[=ZW^}PTI,X j5=ZnTEY)w7O]RHjR! D BIe+*jƋ&FGJ~+sPC>eү V=UwW1b7PF+ST)ªF2H@*Hu%cl;.IMhoB]ֹ=@ޓohJĝ! Kا\K٩=~%o l޻< |dHŽaW6L2d)̿xmZX&–G(I#+*bG-DP7A%H *@ @`QI`S,X0G aŃ4,X2Aو~)*vŞC&C0Oc6ߙ"4h%uThHRCfN[<]]%*~ ZVzco\ŃUk…w-,ԥ0hB pT*(Q0C_?^QNbu뮽zhѣFhb?G/c7JUt/v)ַhmNgSwE.<>pB_xB!B 8ɋǖs(ǰ(*"[谡GZPB0& $5W* =Y d"P Z;s%4E6OC43mhj|gM klC =q6/0tW_YgG#a\`Iӿ4ԔPRe ؍B V+ Yu ^֯ZQ={izmUW/wgQg4y'F7E5<#C2bod&PC,K&4 0LZW:oܜD;4wU4SȲka?˥QS+V}~}7>3XF#4эollF ~DAAA=QEQEC$q#Kv6MzIR&A "*,K$đI`P@W7S#!ECjĬBu\ =ut=~?h -Bq4PbH a‚HrLu{_.kfMFIy IESSSSSSSSSSSS(PW8"~4-Jwc[˕/_>,k&?'`|?nÕjbP5j[֧#+3%{˻];՗ ]) sV\ԒI+Ƅ*,cCDMRB; =gy) X]U $eUII .%rIp˻2TnBI$kə$]Ip!eYwwgnX6ޡ$(@Qeloֆh֘coIܒ clm6clmNH˒ 6clmclA6d'Y$wS~.86m$moWy\hB屪HH^ hHH\1Е(=ݖ&ĆZ]Bѥ1d"\,5ڭE!r-7bƝV$[N2oF^eP)EZ|іX4 uN&vS Bes]ϞQ*Es*s0>"'m6DE=؈ Y>DO7sXS!!J R)Ht5͔εUmNO}KfP&XG0{.FfoC /tyO*LoAgZ|@BTv$WE͛ 8]HņLdɃ鷂rx"ȓ Y HH,I~{ñBN,SUUTXRp8_:)]qO;E9*$3 `a_&^4 kDUΙck>ßt-jo\ֆb;:Эk Fa DD!FĪ7_`, Oj뾓]͞ݺxGtn*^SҼп1Sc{S F|vS#> զMA@ "%Yq)LH8[{O (F;*\Ǫ5y˧5qz nIipRq""?cPTd/{Oeތj(mT Q Cync䚊Io-@*NSaOf 6lق͛4Kf͚E9N=Q5nMYB-+\.,]/0jX&FX y KA8dþ NnwyY< ͊JeQTU4ZIkuBLٽ \Z^QKfǫ={os:k`gϓ>p&'Z hv\>+%_,)pDiDQuȘ$I$dZJMpc1$$@芉!DHu!=2(Q`YPً1`Ħ,JcUr1Jlヾ@CVUm WU:.5DAU>fZVo+G\h?eSD}-~Њ)_I|/V;1_*kw[6#]>< ?%ة^ls#B>+@rS8#R@&/@( B9g9,+]]|bZ>_unTO~u:ŽjqiWtĝzHl}zW_}Swՙ2dɓ&L2dɓ&LkV߸-L[hpҏ:n?r=#sι;y(=͇q$FJ&-- UO$dUt>[Ɩ=,*l ,OکN7_BgAT>`I ĹwOo œwG=4>2i7|(g{)E*rO\.Zà㮍]R[?{gWxU]uVʉ<>W!`sHG&L%W] uԣvy:=>77UUUUUUUUUUUUӛQA_L}i=jԤ ]zu#KW2ֈ@08;Db2h(*dR\z0<ïoF55_N}MT1(Ujpz95z^Z_+s+*eBHZ.bp4W/R[) 5# QEI$I/0rR5tKOvf&K,j̖'5UU4E1)IL M1=`OI };(fwE<#2/^~GzX?Ww1_HȊ!@I /B}p78ýnzGQ?9OSGWU$?~3@rQ`V+gHI_ia"##>% dxޥ^Gɋ}*j*O=Т,Xu,Xbv,X5w+ڕ'+ӭ?sث]V >ct.B4Ff@OOt^3q+ځkJ" 6odOxRweiLЅWCN{|笱tҐ􄧉CҼ[=pN%|=#FmnoH=bp e-xFx8s+>ZAZ'N:^7 !pj8q5Ƹ*P^v5as%N*o~Q :-Mb}M*.w}2\"7[E.P+J 5=NB 9ov }B/>!_C=`Ey`>QCcoHV[kqu ![]XH؏W,Uz=aX8a kh`fs[_-}Fs嫣S ܮsMP!@Js ZP)@tnʳ+5=_RRU/WCgcףVǭ_y?o{5Dj!ꓟԨUm[(V|s .&LJ6 1C )!C>jiK"۪Af^a D @o֯k_/}?^|v#^ɗ tq|>J_=O[KNdȓWpe@tw!##Qsq'u-:'UQErc׺+lw.DZS4t#9K"JU()cLDN{:ð.l@dtW)A)Ts[]6Rj4-*6_ Ƚԩf477ֽjIY} \#;!nx{ryID6 "A+.C) ꥔TVV9YYYYYYYYYYYY[ BV ϐW(57d+ju& &6&fVK vsAF4I #`2Hgϛ7biT30@F_BgnVSq[ֵһWѺYg3%w]F#]߲U^/ϲZ4&h<[1pU\xfa<5I2ffeffkZֲ\"ro.\컼˻7ww}83,84kZ˸BM BLXfk [;,,,$,BMm#3I7F!$!$!$/BHBHBHBHBI ! %wd$$$YwpvYw ˲I.˿ae$$$$$$,$$BHj˻!$!$8$$$$$BHBOe!$!#$~/Exbt/ϗXh՞B661lcԄ殭՗ye׆}cR@75O^`ᴒѬ٦ŭ(3RHJd$A@#m+(K`RS12L$ N2xFf$:M)$ TRJk Y$ICZXh.`c#\7T!Ods"Bc3Ǣ"SD(AfdauiJD\ZMg Tm"j_c sx1iUV^%: ] ILlcŁc61lccf!ΤNJA n$ 亄tՄ0f  sc|{~:>'S|?/G"ȫ[tltP>=yQې1uQpLU d6i!l4k#ƣ,4Ͽ]'NyŏwoPW3Jgv#"ЂzPXc*fK( 44ZURm>OLBTK}^5VWCWayb,:C>ll3SnrOoe?-37j_1'LŊU 2EC-O1[:|_vg~ͳ>~[wcq!$d>JȂ'D]ޠߠ qJPdp,ªZ?ԩC>~Vܿ fRo׵ª#UeHkQ\P`uܚQw2ꟃΦ$mڪq); 6lٳf͛6lٳf͟}r8`WCL۶ПmZ&!ufBM}rRu~~EjyffVd`ZbSL`.(j?RZ Sc7m*cMMF~>O9A=\*i w?{0w1oȧ/Ss0:hQSo)9fҹG-O5. =miB3ȭD_ol# ">:gtOTJq"*E\]a-lDyҦ ʦott UpCv~p*t $$Tw"nX$(P0 op*IJQ\r`ˆhkn8ںpr L?:^=KѩTVg,;ϯ ה?9v1(r1e.HՆj>C0#hc0 ~dgːY" NӏG -3Pi( Cy"DZSwtNhύͰS(wbKڌ%]Om^mYzj&E(߻v?FUVi(Wg%$Ԣt2r,56t٩)Z0di?,^%iZ":~/#wf5?xs[6'WE7\6r7d{3y {LZkEjy0m_~pppzYbդf&֪3nXY0^bֱxygW~bS_ kTZ Xg,rV_󒤹X^AӌzݱAkW_qшB(ocaM U嗍 U1;gYpCc-Lm66#&퍱6f<5mc־HHHI#؈v""؈Јwm݋wb""-b}m݂؈tH] ;$c q[EU,TVt ʋ),h0hM 們J,l(УHFd=&k?ش5O! +`!iK)~.#1Jjҥ$)Ol|x$ lqTJp2gf{{K nV3̐E"mܿ{~o?Y T JFYp;^>5T5=odzʥ6-yG7]m3oV]~1c1c1bR; DfBlGDdѡ{s1CqT.˲;tE'PZ<0sܷ{™of`"LY Jϙ+^m@IXmڋMKނgvK1$ f3:-nwH~JN%DnyӞ MAA@T _?aI ~otpX8 u8!(Dú]yS9SRv*ߤ~bǮ\r˗rwVc,T֚mp8s/+ n!_vЎ:9SRe?+ְKLZi+[ru|aq,]t$^Cw]>e*~֑,Q43e]M[2*yJUEQ:uUR=kДiJU8iY#^4f,+ Dd E&j. W:&p PR @pE"=̂|@P]tfYv:Kڡ7fs}#We%JRm FW+тl2VޙwN *w7Z4hѣF4hѣFy3Ohg#6%&3"4μ=H5 !ŕ\9%X %K{ Lm4"TTҒUQDlzUXj'jw9)oq=7.X9FBkA/qT[Nͧڏm{y3 Ddgv0w+ӧv&):gJV5$n8լꪩ{9"s:(4ѧFIdExLYw3<,uOf: 5Z F݆8\ ,%AS!5jڹtɚ8vjMĶ) 8kjC;4.̲S6GaFS,{`t7&tdajuqVMVVM5[|$'l]<ӱ G&x=$^ wt;q"r2/RY+']UYZNC%T32ZqUrY *̖"厠\pT^- E#EYA1Q4%ıcPpժp2uQ"#ʸΟzV*Twa}Э[K5,T0 /(Uf,.6`* }:>aE=(dүcȄpkٙo@ZKa_2-orrS%"f3\+Ѹ.ypR0jݧ\]wKL$\%$ Eqi 3 *5E9ܕAJN].0-BȲp_jgԲ#0d2Kfjv)ʦ.`;7 O2I/c,])UC!z[,׻ [ؐtܘlmZSqP֔Γ$Mv{5M' m&Z;a%1bWE1sV CV}6$!)EEROFGwc4zګ0/>Z') -M]C~)!TBة+bO5hw7ͭG8YL6]*ιf[)ZOEhկ7fEV+i?J`D ^GO#GUyU@D XШYEzt/A`v .$ 5U-U Vt& qi*BW]i]6zxi6`gW~Aןx hÛ$c;׫u]⤨ mUU>AD="FȾ={aci ̗,Zc:#f;}aH 53gfm<P.4`bˇ;x*5BU }|iJ%NleK\~EEU֣>!x"q*"j#jWm@_vxb~DLbv73aQE YZUb˹PŖPS!ʼa ]Cxt |m&q_)J1!IQ1.SX[Xg),ry8g+sQ ׈Hxרǧg򀀤}(p)'#9 pd仅x ʼn4Od RLϜ\o34(b2 jY/cλkw>JkOm:T՞\Dj-xgQdD W< #^g^ jUu;k;0XId@B/PRB2}PT-D}gjÅ4ZїKД^ uL.c%@Km[O†#Q=[ ~3LE5U핥 ip8ŠAׯ@2gA0}w ).WŜj(ߢ|?+a|Y<í9j~jE r̄$%r2'©.-R|P[1`Eł5 -av/83nb@X*CYqאWFNoוp(;  h@awt8ZW^y_'ƹݟS8Oi<{ÓxH@$ 1}akE;7>Omhx]K{5s6?kx.uy~:$$)$$Y!!dM,9{`tT;nbĿfw?A} `u\]m֪$!PqubʼnH{t&'h5.bHh% 8L*"$I9π%f*!c^ OЕX 6Z,ar-w}~i,ϹOp x!#+ư-pɎS#:2ɣ4QQ{|~oJmCx&N,\4 zywWm孾4x칔wa^>,nCIõ{e~4u0S;ǁo[/bBB(UD4! B X#۽vbOw/Nc5O.ikGN.41|K4SH(((+W/R^ki[o1X+T"j93":L:BK<w^GgJH+k=7pdH"7iɄ E"q}# VzB6RTSk5+!ٳf͛6l٦͛6l{_sG5˱f^ ]{| ;)K% ~]F_rF(~.%= FNf±<큘2k{Є97PXj!Zm.qn盗Wn>0~@`\zKTٛNڻD97} p Yf)2->_Jh;=#")(ז] -fo T3剹`IC3鈴 CWY$Q@"}*l2 1*\r-! tpŰ^U<^!nC.x ]:Zx ,dL,ZGxJS"OIQM#@~oaNG,<D۴;dQPF*YJ̃ KR~?{:< 3L߀4{h=xvs|fDH?9 7e~GԵ!p!'&Q\\tA}!.%T))?ղ5}ABS 1$4~84'w4 Y5GY| n|Z^!E}6Eِm&cy\w@6K WЄoe6~{4|V ۂږ+kM}i>~'~4{hb.dz7.E_֓v)fYo$d(Xtyv}cH{ZdWiS2i&ҟd#" حUCf^9)Od]gyDxmW )J/EM9erđ^/?o8Z>NiGur:$o^";d0^&5R(*tEC[c+gyp!DHgu D"g1q 1GƳ3v:Q L/*dhgh ޲ABhήvW}QIbn;㢛WX;{ k z;afup{kHj<;]|E|͒&iee NtŞ:2:e RMA.)5"( YLe1= Ҙq4F%a)T 5 D8W*Ϛ ܮw7\wTtϠC_4wƤAPjݢQ_933 Ǽ1,1ÝNV.ăx0NBQBPZNo}\cFνE8}Ҿti Ҧ@]bl s0+/:I5L\r{ 3L^v9q>y-ަg T7c'y]U1_(M߆=;+ T'ytuCޝֺ# -WUXPHXX,aoЮ00 F\6fS;kc u+FllX1H\;u=L?!@>uYvM,};]_#bUpjL G'ҥ+ć%<R!$ jmMȶC)!%և&YQo-U['I[)Ѿ:8MCU _->gU^d;Uu]GS_x{BOԒԪI==!N=N@=&sDa>k)U__ϔ-BL|f /2~*Rcu@\pHYֺMlKT8AYSF,EUb6ƅ*X*VrA6ǗUPRA;cwE2TzQ@Yvu/G\B!8:t7vct!-$Gtʠt)y(.S:TA"}hDEg֯wvP HHnȄjBBBufڈU&͙eYfDD$[i Z4$ (Ą6j1!TpDrӄJƪkeJ&HU@1A*k T!Q*G(ˣNUɜl_ HQ%'*e7hH*E D(:ctH I@[E'.ThBVA% 9_aX3z:l8ҫc!*.Rj[rS|LQj }(u0"@q5IF!>)¦%1d|O?.OÍi^3#5>i$l0P UHQMz'?}G7^ Bhz]&C׏КLAXw,iJ k6U%ӟu2aȍ xrѾTö|R1TE-VQUJCIcO OBF^$i4Cb2Z7N.b確"KxDoa]eU BI/"[ 4ڈaBB0' UJ8212Պ2Pk#™(ie3N&9Hj7{;+?8lDgQ]}m޶'BSMCNʧ% $wRFMWxHІq3$GIVQ"ʕ 4\HMPXp 5 XaI<,uO{1|ƽ'qݵ2~ʕoQPFW讘0&Jtn=rEPp2*rRӮq5*^P (pzJۻxǏ^g/ VC0%&|?5UKE_7 4=SdD D(F%qH6QH7nէ:Ō0>f%x cHPbpW2_9o">>/g_74Tnyy<=+o:B3躞|O[u_v=f82C@$D JAŔB#P#IJ %c=o&gNo)HJےE$WvǷ&'Wa5E(ً5~LB>*po ' 0`~Ás^T7d:-8n䑆&Gq_]CF:4hs 0 do]:yzѣZֵrawy_/u[:uYwv]w&kZ2z &?< xیJCI=@4fde $Vb 2h&EEF)e+ LRXP*;)+,McR)Jw_-΋at!1/HAܗWC% d: XN#'6Cv`ǛcݗQRAȁ$3 TM"E.*{Pf$yYFsUTPo^/)LvuiAGb0 g"*֧SccW՗)lcgBAlg0lcc lcc61BJceB:ct61IL;W_nuoFW[{Y>߷<S^#<>f㗁sџ@9 L! ]DAYNR{(@w ;Y](lEw_ɒ4ҒZ$hG.NW/{\<.NW/ S `F uC*c7Ln1cacu̦61Pc(!AW-ppp7Llcc61ڲcc61=}uegY7LY*7P!%1cu!%18E4 %uD\ ]c'•|詔 e46M "1'qD_FW})ů02.3m D IJ!qvtRbPK!^hciF'[b;輮I;ݮt=BzUO"-|1ہ`)x\Y}C-CǪf <6/ 2PpPyGmBT,9<4OJP'8{`zC\,X=¸ F "~@R_]t v82%<.)b# #&5*qHHpA}W JJƢ2E1t]eצpY}+ׁ!.XLѾ7JǂzXV? b^8€S$47Xt'=ӓ:p9y4h MކrBIϓPo   M0  G*,6$I'FBQڦj ,\Z_:s0k~_ ݀2}k&ѱ^"g:.}gc$ }O{~I!O=NoZ="u?IRNȽ ZE/d>eFJȦ񅅃19ӹ6F||ߨv7 gST65t&rz ǜɔ(c40O-f_aC\m݇tAGYDfh^ '\%f( `1k]z89z 1g:S\UG;55555555555555552i9 sco V0s5XǵΞgTRڴv>;Y͔e4 xw@ž꫍i|GRR̭*yL pщYWFzzy>bvz[ڬ`y:L5=ixKF_ h WhKޤ$I )1G28OtEt{|>:=UFJB< )y0bF1VdA1&*oO :IT$ۃQLpmxGm:C9K-hz4@ >.U(HX](!#b2\KM "i* _JomovqCCȥY^ͿLٹ^W؁ɍnE Cߒ${?M?އ-/&1r4ʄ^CK8 (JwEꑂ+| *&uyRfx`4s쩝Dkix#Sa56,Ή2~#"oSe@}Hp!q4XІ,fHghIĐ.jq JB@;ɾBǩIzĉ PA!d] I(y>=em ) S`"$Bc yrA3g:ʠ)WVYN]+56?%X1/w؋wHv؈'Y/b""'QEQK ( d1 M**gHo39 @@v Bi:ʇb&*G[UՀ: R `1dON]d." zOAatޟr?=)ښ*r\anD*r,F!'Ecc3!%0#Ɇ!AȈ.UG*C ,J0K,4asB8RQk,]7e=OW=ev]ex)xPI e0"TI!9TN C?ExFydkD>>D)u\$"/E׸\eQ!]Ez"~y1h dH^Ė"|C\ί[yF@xp˼ȖJp  u @'~yW)3UX9DYGg`rPFYL_%$"3k5' 4&]QBB¼B±# zȶ<=|;xC|~\l#q8;fOL=7e| d0w_-tItIuWB,g&FP3$*$+ć mP 4%Pi5,6 DVF@) #$IhLphejiNӊ0Y1O2|LLS:V3;1@3;˹D@@2H`HDR:~vQ02~41/e3.W! 8owwwwZÚd|4 @3"#PP>A3#&Ubk ,͌gBS)jCx )"S?(;%0:* }>Mc 4_{\'zێ-9'ją:ŘuY˜zmPb;mƃ D7ʲ(b[q>EL_iY\8]8KZ[km)G! )a2C5׍laclmrLS.?9h/ؘ  vTF1XƖT8P khT- Zz_|Yt7^Oy[VР߮oW R9n\{?j6|)|=FW͗SVR:jr_i˓!#UBZƖYe5EeVrreŎh8o/Yu 6@3 Q 2隈"J VE}4XY<>%*I -/b"cz(/@(! pk5 qOkzڜZs,b>>6&-9:z5Wg ۻq eVI!q*'~J 0q`zr|zL#^Pr~Bnev[o0NPPKpPPPPPPPPPV+"{{R{eSşZbc5JF8B4PB[;30'^8?X,%!!/@Da3,D9Ugm#2'xd}_k7ć7p|)ڟ.- El19fil,jOeρiK21̙zt3I9S-NHo#,YAG(3MET ]VUULe:ǻ(#݀Wük?%^fCC0_nj OIZi H2! t6W"wGꇽOk?xh[fN1-'bFh;~~J I?;e^VV미6{ѳX|;֜7p͖yDByQշ5T|^ շNX_WLoNo#?jTE{kqMMzd~4mZXU4ôU5YwPOcB4(0 jbsRª?|}ߥ)l^kUjE)[܌"s6tb}褞zT^nɽyZWiR͹ldDpUҧ]?G1a>J{}+LhϮAV:>NGڽy7FWu%f7'W'JׇgU# Ҋg4M7?/E"qu K/B4Ta-͗9f-2JB S,DY0T),2.LoY0Otji!.d/ʐ$D)aGVmZBHJ8! .Ӑ!Jt[9j[<t2a[֡qu)GXEp-CrHV?_?W}yXO&JpxZ:IkUDLSV6 VMGc= ۓcGʃI>?OzdgG!y6N:W)hLrϓۏQko7۾#}pT0:VYtڜrN+zy2O\z΢z~aC$#AUmRKV*wT*a8X/~(+[ˆEyvQN9eoRUBnTW,]\g&'Sʜ$qnobjيYRa$(ݸen=H`SYt왫! o8lcCl/i+- WՎQqsGp5Sty,QG(ߚZbͱ1?w/C9)wٺz&iֿ|E=K# 1e6}vQ%_9NCd |-&'uf_͗7|4W[p^swCϱ9KEd *:K;w~\vӸ ;׸*7E!cKFc4 w6W?P{~,vvzSKyrfozG`?OֶR'}<*BS&I_1 $ w"n'|+]h2~ /g߇"?k+ju*<¯(ɉKi숵 5؄*]-Εe>M#!NsMOi`V-e.V2: Y08?tl3ҩC8=㸊+ {׃ aOtc޳b$%M5˪_wC94;(g'K5c$^rѣx s|) OݯFuku |ľ,#d~<.ͻ&˞wqq=Jg*S5"bfgkRX/J9G-q6H _{=SMS9T!uww'$ t'燕?U ãww.>sV򻴨io₝!G'-N+ץG >*qA݈Up ǎ|G)yipyZ>/cc'ޘjWwQ8 w9]dbeyx<(Q!͂!8!͡CscYg!ȩTt!JZؒJWj,LzbbIiPP>/aR' peߤ}k"ص>13g(Zs;7ym^?0ο* p}zG?,F%>#2}%Р@MRDiQ1eE%QEYmS4~)MFpMwBa%D c($zh&`Q]1(r *7 ٖ{&5% GG ${ ^W;ICgff,Y8^Ww|ni6u0@ʸ?Hhbg(#g$%dT\|9Էǁ=V{?W9ؖ/IK3JϏ*;v2 ͤ&{s|oȷUg-]AsuU(7UV?PoAC[o20Y Npzo7x̏B:R|cy uS;\{ب]Y×FQ}e܍$YQu+݇(7nؼWT^d}:[MW{=IٳX_+Q!%겕x܋oc!)AJP9x2ihe/c-=w;=Z85+ }ݛ4W٫D?0ƴ8UkIK˶WeFG[[uv!tÆбEX]% {W}xa*;5S:ۺoO߇VHR)A(pi9|Fx_{o$+,UPsϵףK/a sWڋ?墣}&%~oڨl)y̒eg>KLIÍ`RPc͵Rʛ _{O;?8ݓL?]g>į \O\E|i-wREf`B5r|M)+ʘ|MĴowh2uo3(D/E[nsRx_k6F#]\yHc,`'" \XYtSĬ8a%T Ua%=D:jcNMNhU}JJ oKh໩q6ƻh_u%ĐŹh_?ǗB∇&3cRå~ Q@[@,-B=.s[d&Ă5^'RyS[F[/)k}c9=a*:\+{rّEXɸ~.oOvl8(,cl qJReWo#6Z׹O?SE{?Ywq8>k<W?LԙiR+u[ҷ~:I6ηpU7ybsoLڴ-E0Q떴yz!8.D)&M"Ya*~TtA?o[.Pm&#k=t޴,8876 C/M_Z'Ecۆ 3n5'#?Sip=*E)JR*u͈h~TW~=GU4J&1iMsK |)?ڂ?ֵj"#MVO*Ye_5k]~͏/E^{]wkZֱc1gֵo5kZ-xnǮIGӜ0Y'OqѭgN({Y~ \|'guؾsˡh6ey3L:.1]Ŧat0ېvΆ%m\-ͮy)GZ8㋬UH`QASAa?ZQ_H4eȭW8tu ?.7ewœ.G1;~Mꋩۑצs(lZyɽ qQ1]!l6/9~]fIύ焮^iZ^[7vǾc'{8B@jUFT#ryluLMj{|Kq--k=6/->w;Ҩ!t"h֟gY%nbf:@y+i0- "@pa 8;ZO95iJ\GwׁbHH @P5 ªE+b |999H2d Kj<vv׾2:`rx3ϑߩWmDVZW"ȡUWiYhkRiNgbܢa/0_~Q\g^h{+.~/݌8t\Ǟ./(XGs\z|ſy7=IW @CS@i!7OVSY|UDGDL~؎kzL;+ucX8RU1$~0)IG>Cd}TھwWGi%7w<`U1 8xޙOïE}}=lTk13uW.r$RmM0LNz-a_)$v5ZFXҗkZyoz|o#up[C\ߞW=XdwG+-f3,BA=,:nv :&muO;9P~ҦB4{cްl3Hw]/E]+FFB/=1n2/QZ?X}Y~B/w#CGeÕi+ LPq[b5iB3rmo8ZeL(7|%ׅf4bPXubƪSnQ|T7q˖K3P廘ojk^w;,?DYXm_/@5fmaO:[FD1᝞0zԎg_ z;e#LM,÷NbU-g79i* }Z _ʙ^f;1XOq/5S\H2p8[ EM֝ ahb˂-34˫|Xrr*8(8;mYC*^]$$vN^-a$89 ) (FL dVw?BB;c \\Fo!es u1uޒ}-ǒs;LdT69ݸDxu)6b'%omzڍ{I\%po^(+ !?lq~s+ f3 4ԔĦu}n1s,|R"㶼6u$ ' c[䘨Y9y{/Eh\պK|= F[`V/?h:J¢ZFPaHR ʐQ."^Ta.Zƚj *$8FǍ |!dTZ2g8%(-%(!HEtI ('*P@;nٽW|\{;" =Mg7`ʢQxg3ELQKҷJ̮Bv54GO |':sq>rn7LGW!b{~+S9-nsEc:̸Vojx}^h L7~{ KL>tWY"}4Sz|Gw|{,V;j9\E =w}jŪ)Fe>tZ'kZӢPnhu6WYnIlM.z[(M9ݚ-ڴAø67|\0?OI81n<:JnU[sMgWW5*1cEgېԱK_\86w[_O?|ieH8s0^$姙)mzţo1:h]" ֶ-9[LRiK7n7i<^6!mvc,mb;hE#Ah{yl'ŷ! K", zWpfSt%reg/YPyPB $HE߽yDa?wu\L'M ;ʽ21uH!شXCŜXk:%q4oR.P%XeYuwcB4pA !cη,hRyG z-jS|{gY szxµ~;Aoi/quU)8Vovy|\ׁ7ĩZ!2];gz_`]e+ޙT"s,O99(J`P&}8 }؍ ܽvCx#XF$TKu['ouߩ*C m>.]ˊGCgblO6Gø^OW2 - '44g;hR:5g{NӿdzzkXWr]'w[yMv+}U,oM=INDvPդF :s+TUˤ'FbuHI̫('*ʢ"\mˢZsbB GFdĵC׵K/3%&WؠGxդ3Ý{OuC{; _GɈ]*ó1(@)7MK072O ^̛&=BnB)J6HfKIJ\?;Ґvi³@P"Gc =].+3+]=F[eY?@M;S-gn|Z~ PApz)R7;^6K߼ܤ`T7P̼y.R9;wά%Iat8'{UP٭=sQ>Қ†(%Cf=A'DBTn.տf*F6rTUmchR(G쁔;V;R. RA2H˒cm4$)!mG⻻NK324&c9n/nDDDDEiDDDnݶtD}նm\E2kkNƨ7rn'O|/boYaI +m8 !I: )"RX"aTe0H"eeEefD2XdYY"TfH)a)%̲1c % F1FK1f -^9Ґ+-݁?-!ÞgL)?:BB@Q`Xu0؈JBrO_˯3nc4Y|JJ2HE!J R3(,twƆQZ2Wbd7輮2:/n%/~,G1}%~<_dGl$<_]s]T1F,*Ct_(Υ'4|_ٖB֖K̔%$DI" 0+AL1b!1)"". TI?ZIł,R}Gsy!<Cjg'jf_'ꥑ7 !S0uT+NIqncKGЁRNR" 8OsP.r5-*,usi _ݛ˿wi(itJ[ȭ'KKˆ0 )s6솓bqUiOkjn }ְ)Z"6NyͿ?f3y[ks47j۳e.o')};\ֺm_4|/ @t{H.+u"Z⢚g*;Z)<}bJO1%%}! 䄄ĄhѣHOOOmcª՘\cO\hyC=SE}O5'QRo8?&~uϱKr}ѧޫ7Hy^:׃&ݗXVe4^.Ѻj%I{!6-e'c pU m.+KU%PjR<{@uG7һ捲5\̛bxcfW' Bts?e>jr|b=%a]9jq'?OH)fq2ʈz7_q`;ZX*ٷ?;W;4y,.N YX-*AE6J:\JRJ]>wl]Kosl=r \0hc#Q3Y3G7Q}s5 |./y֋>]]K,)22+.) WRGuGv'!M&}ghw/6:0lD%7Ѣ ~!OOn#vu?Dk+HH𤤟n|~KaE,̇!}d;9l=й/r~I)'KkK}C!p3ꆜ3af&.:*mɤ$w<ݭn2t@rZޅ'3c;ɕuڮem[yYV u[6)*a{~yk--o6=L<rN/;p[ [u,ߝ/4A^6L_k EJog8r[PDƬgݝgë/wPz]neSn-}C )[&A5rKsMZֆch=w\o5y^R u0'پQ%m^w(م/v50)%oi *+H9Y4?[=<ƽS'RQ/^0?'Wjo*Ȟxo>j 957ۂ[}a\ҿk.~V zarek,V9.+_9w^r ۪*~.7ĮHAd;, e8 1ܸCB$$;.oZqՄCo=Fu/5 wFru5O|J"&T|{?(fVIUSj׎zMWeh*Or+ztSU$+% ]-%ѹ+TpxrZYXNSTBqX|giX-iNsj"hYx\~UE^Y9dElGOUnڧ<EVn;^熖ůyuPϖjk"ߊITGyl&[u} cbCRgR 6=Ӌ]lcgtQ9 z3+ v{U}b9=^0,axG霳TypIx:^eοܒȝB'RbھxP嶁,Ҡ (qAru Q"42bI[ͣhQppR׫6_Ͽ7YWn9q΍|oTZZZzFTAJI$, RBz QIB;(jjȈmvZBiRqtYɑES&nwupQ[p&N(Ǐ$n*T쨒+dJ]TR4xz1Hpa OaC 8@,i#\ Y'>"i }s]myxo,_SS@ˑcZ\5*TI[o&/7|sWwr=7즺W]qNܞ_22iu/R?ʖI!fm@8zkF3tC6׭ҋ]fsZ?mw;?'z?.s"VVWEEVEEEh#xq=G%s`\~nsMa'cc~ Wk+t(WCٴkQXZ>>?{9ݮM)Vz,F}5,ĤV+R9[,m w*ҵM\FIh/Ogf"d8wzCJo9#SfdbvVյ?= 5G[_[VVVS KKƘ^S_jn+)o1-~K`98YHweho,S)XiumIݡhkۍ¦A$鳗?%uȾtwPj Z_A_q:D*ݚbzL}uo51K.gucZ8ѩvsy7{w{LYśqmm2{:?wvg:܃ecU_5îv! G\b,TAZ,FS8kidv~oE-īgdW:R0R^ZIC,5^K!9Yk{t_KWArȯZ3Zhnek .M8]׷{kb<.֩kd3VK 5Ya%Iw 1UMw<[.ћSdUy\]Ǽq<ǝ$2ދkV;8|s{*Mo m*JsTUmml/R IrY='Tb;{T,n[tO"?ɇo37V/i'qg%:Yc/wӟtF#>'O3+UOi87 .PO-~]7%dZ/'ۘa[Eu=YjL%Z\G/Dk~f  w&SP?.mC*LgoVXg`{c_s3tŅc:aVYEz gݰNJah_:8DM,[G5bS44Mtc??K3zr^Ͽ!rJu)‚GE*詩) vqieU9$=J82_uvt?kQUVqȑ"DRܻ}->^σ[Gady_%l[7?/խo,|fY#_<D5.Gp|tϜj%[Ǻm~ gON{⑸$ ~#!ezVWco]:ޟR1yzҨ|Quq>.:=_+ŧ18󁳅t{9W3SLyNdtNz 5{z3.:PI!8/|+]I߲iII;bT5+pueB.$ƞe_Xmv@E=Mq˜X"@ԫd35'/*//+f9ٕu6bbk9LPU2ߩt] BC?ė#J?]iնҔG/w%IWŴ(J|\򽤙!%ކ\ͺc,pZR$>U sb6C4F9*W)vaR*Eb>˃;uA1]1Z=x hKutL,tɝpWN6OxgeW6=سEJ!?VгZ$(1U} 8p{ ~a5ٓ{/=k)gLd"N&+ Ɨ#ZoIuu:yߺ\͛eEv/Uy_G~G zSL+߾_:5t:m%?5:+nZy!={csiHqpxK+$1یRBF]fX6;6():FVqg'2=_&lIӹX 6q.yoX@vP`^ւJO *fςz4?*ʕUDJ 錢E4x6Ep b)t)U ^ D-\2&o~H灱m>VpQMSR"Âh҂FW?3lČg}#̿;<[[o{y瓻}Oz:qi42Tx72.Ӈ(rkȥϕ9R sD˘h5-Dqd0q]EԕUN CjYb'q릲ʬo RJB`!O  VdJ8^~o`ߌ/YTx$WM:cO_wi_M1a]Ou TGhIJGC/UL!I+51z;Ѿ'J? #{h9ޤfAb㉂;?K+qWz{{okKHj0Jf߃/i sKz0:6fg X4w6ϢY:xF5*\Ү@zXO.oͳ{,#r'C5_@i =\fHBg]^=-%+<);M.\Y"NjwkR~L]MFN%ްo~Vd<^ ͣrsJJL.uwI~RJJJ@|ut|UՄjo%eCi_EyL-RbǍ;?=ilzgTƄK›j45Zd>Lso5ޯLqFmu4Ml}|xy̭`mwN6/E)w/7&]jAEK=iɷ7)oҲ.#)1u&@3+q_q18l/^g3/Wt$xouq;@Hu=_js(y.#̌r8&CSy啒K;lx J!p!}x*ᆢȖ߲,baaPݳ( ,HѿFң)d"MJ(;$t?Ι>B,>&MIPt֓%t~-SDXTU\bodQ켇F#H^6^m>*ffeJ;I,'$h>Oih(V:ݒ_gϢ5|^d_ēNHqfX膅R<0; _ j cg_'s'-֯cbMOP*_ :GE29Y{Sy;X-.awNZ]i_'~NY)Lh>u >L sf0d'J ͧWc?o,xfK?7ylj涧 խC|"ë،H%+¸<6r2I`}Qn{=/֤P߱xt@(Aw4 <& 8;\S"@+bAET8l/gi#n9D7;hu,w/w-.tK u/yK_m#VO}Fk'z޶ϛiѫC[GC7ݫ gzJ7,")f]X[}KR[}>bDzѹr9؞5<>F{+"J6Kr t,$$^2 69)IV .rD}cy^9Cy34Mݩ< #9\8;lȦjtM^R_W,ܢQ&WRA܆wݯ>1 qy.N[Z};gI,ef7|љ&_쾽FaF|&ĶضѰ>He^1n'!MtS5 bcҢ\PBǹ໻>B 3*6]]IRsۗ'97˷Wc~r^Og֌_{ yVXWF_s.-wwi:"`X~|$[T-ZIȡFZF?WBFf(EIIȠWZޓK$4rfeO<@3m }Wfq?shDֳlEIAV @g3@OD [~PY]\D5WnKLb!UwP?=%٨(oK m(lS2K$RܛOqYtrhv~ΊcH(b cgtS6dJx5Q0\Do?ZOA AaGk8*p[*;o@sLC9wL(A(R}^}FalHϸUzzzu%Ť͕O-5F;n o=rGmQWpI᤮kSv Lg2*rZ3j:İw!O*l}zis/C<6jvY2j_.Un.M_H+ޫKvEc Z ES+G'>jJqBI|Nb5G' Pt=N©\&0Z'ͦid5Js1W=j v^{gxYjrnlhڧꫡ/P *㉼Y#T*Nk-*igюw61Evrx΃6z[&vG>Xدlo1└|B4||*[ԄK͕:zA_e?k̾} XҭGؿ_~UB!B!B!B!B!B!B!B!B!B!B!B!B! Su^\lT:w.ۣNl6UO{;;; c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1;;;;;;Vl:{?v7h=۵zzܭoA־?i{c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c_pw#>oȾxow<ߛoo{=k1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c!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!BI$U+<ԁyJW㧈IW9xˍ%m) pI&tXZkZ" A\ΪW5r!"KO=?r}yq| ns=Vw`" @w{ҢDÀe"};E.H"`B`B2n&ͫ֕My:Hhh܌p`ASXک`2Q#Ġ'6ƣ^qq/A! ?J-X@S=?fl]Wߚk}y>y쫗Ni̒VDXljW*й?d³!M y$@ B`)!V ,I\ĠĢoF4h>wul<@H 9!( )IDIA @#2$y>}O8J%c7"$AA e!2:^4UI? '~Z2T'3r+֔s_saK hTJd42S WipYY(3p(4wZ2(㑁&8RM,vad-UIbV&VZ;AtqVBCl@$S`hFiBI&ѧ)QF# g; &JQ$J0C"։lqlԋ/n+$@aHHtx``X{Ť%Dɾ 3Os%vc,`s6,+!"U3S%U C[lh `H[KJÿ 35mkи0ծZ:0Gw~P]aƛ"S-*@}p{ lBxJk] !(Esh'&VXʒMRNt"0N$RxI,:R,V%dEQýxHQ Ł%б-iֻ xY ,z^]Ygzy? LEvSiڲ2ÁVVWr{J_MkJzOIQ5JY-EF*SdU$IJɾ D]Csi#X7hBN˕{ $6@ (ARYyQvվٔnRTx%J&-o#܁7p%hDʽ]iњC4=knmA{j4i7,BWZ ɵ;4`ai^Em+K֕щ[Dv*2 ıEW%-n/U,WLV$[٪vYwiV\ѽ4, Mofkm*jze{f%55fvދ𙵉#wҌH6M^iG iHdZVaHi1yNi/V1,ŧUfې%3W kZMIfiXVe5"ՙq a(Z4-MD-+z\KZRȠfP˘`^/$jY Z2f!nrn-eѨM'<1fE%N8hRfk&`fiuke˺ 7 JЬN%{w-=ǣtk47"؜lxYy(ҽ$F4bFYz%kBݭUjWxR+wPQ(R[k{B vk7ųeޕIƓٍحIf%50YkN!jmֱݗQf{-abQc͵bm.,Jndyywނ=x9de֘bȚՖI^dHfr HxfYKS-[mMfV<(<Aћ}9hJdz!!7 FlhA*hě#jh*]Q-6kzT{ƯUm]̴!B2 2jd(1Ĉ f7P3G\W ѭJ5!ƍBьEn#U4,h{A\oDRm'q>UC|Ky|f{QG*km&ꌷXЋUTEn*6îAlXX:VJZ9.|a\$$ҺVf]9M XEM@7i#}err󉚽WoHҵ35yKk%x:cbU>k*\J,KnL1QGz!$IhxҥzۋqsosgqeBK1IPUd&Y 9 Old]cB]TlVC|o1H1+ѲZUiZwfLUr> a[%[*n2٭1z`Нo3<&r:QT $_, v&O W@ LT}CJ Tb莍nӦ# [$$Gk61 Bm! /i$ >f갳LGa,f ^K LR`ff*4UMbLW " J*#SE$FY4$2I1MTDI)AkjcDO>UNJ(T5IPGUδfhC}; dL% 0Jd))&,3nwdE$2I )0a&փ%6zwzK9`X]qvp[BLX\޵wKY 7c%=oVuD)<8Vfa4[[i5^i44&nŚyF/yZZU&mq.cAZhFnLOFO&Ŗ dպDCUf֖$^0IR5$Qo76MJI%@2bZἵOn7SʛlޓL&"P-)8đG%pIO\h^Cfգ.eՂa%yqX -I4v!oŌv4K 3$wpjhݽeաk75qKb\|2Gc 0Wy;C\_ YŭڼͩµjaHk.q3[|q7qY6NnDަ>S5w8֫j|̚YzxIIe(rqv֕ƭ[s/\kd٭=飍%4-zr67=z/R"]8 WrFFĘjjѦŬk[-e>%j;VoHWCTbȢX"#EB>E6s$IUu]!$JZɅ!Q8v\DZ6:*M* *b@1HkM,ifEb#7=5l -oK4$f+Va{x8}5#ަK+^ݲ# l[Y5qbR`Ŝi=زdTkގ&4hYv:+˼YÞ.\LTIm7Amb/rhe82+\p<3Mq4^U񆶰ڄ.hDYãJ00Sc]|i|Y +<R.1k[v=楤DoD&a]pau)c^[fޠNurhb*"U)qPilIIxI7)8T3AZJf6 ])"ɓ,vRiBKLIU4\8T#'E=q㉵j"ѕW8VjSiBIUu:k9sdMX8Nv{XZ\DQX* P4hലYcdqJ⵼4<^ $;kF^AEF53kIdNFҩ*J*,T. a(hѳzGs:YnXM=1˪ku;l-.ZRr*禡]7C:.\%8sֵ͙lh㝄=^*Y5!w 3s\]/MmZ&ޗoOjd n48%r *F&YJr$ޒo8Gsw:/Hd-XjcqhpDtqK!GA`^\zVkP誹 lUwI[eK>kwF1ҤƛB@mN6H 'oFf MH懭ev FQ5^qƬ֌KcWbtpn#4$ѵMln $FMT$܄[7X+I! =TS%Qp\5Ep*GDA}"Wðc:RtS}M"\&3YqJ9&`mʵEETz90Bh/E#@BVS F8Kf Ԕt}kKf#1j\ +c ]bcofiE`-aX\ af-V\3EZJiQL:11 7B!*^ڡ v5%ʈZe"PEJ! 2/S*4FWHJB4: L4/wXl-v((1J%&nvYS t3%kL+xFHQAh*Ur*ZT-2Vjb J-&2ZETzE]r' pN7Ƙ_Um$pFpCU4BG(˕\hsnRBt&W^-(SI$A 6qebi LbCul* "΋xhQ1-i+W˯NB:$fqrMQ˦KmĻ1ƦQEbUK*)&Qj$x8ti TrofCUN)b;*h4A"fx\:+TsF99TbM EWZT[Tپ "jKo)CbrM]e7&#3wƵROrfޣ7MV4UYݔ Z[]Kl%c)HUgS@:]U+3]tGGeٻ+px^d-+z55nԌhW To8⋵C-ۍZuYBd$@&CWEP4䱀fd2Awܴ/5Tpf,au:n LX"MQhF&+JEB@q-[8Ǯ7Ɔٝ:3yu9\1DC]z zʥ6zil˺XX@ϟ>Кj#Ɲ KI4m,̘\)ҭ6Fmc6cw r`+ӝ,y|rZ%&q/WfS(Cj VԷ4ҷ˻Ƒk[KKX+oY˺ D!&L!'̡ $-[(`2m,Ԕ/xCrͣeWa3lZ\(,$;:.V~,/+3#`z%%b qdy8i誟jt<)$I}13CMw鋚#q^T!2,92OIijEXSUپ *%RLJƕ&?3KeRK@US3Uʌ͖raO#d`+$RL﹫ ;BF 2bЁg-Pl4HڠU UYVR(- 咋LA`]V愞"pOÅEVmQb;g&}FbXfXԄٕEtV8cvcfaHŒLȽ*GZ2BS-/4Ls&!Βq_%Y`#TC B8գ a, g2G-YE/'#?ňj V"(5-,#DZYH@fQ HTP4 ibi Dgo˵[[.UoXZx&jb<4pv8qZm:4e45X Q:+=9C{ѫ̸einZmޛCViv]-,d"H[W|Z/MD)cR8dޜ#W +SzSح[۾&췭>.oG淭z8֙ Ů3!32pɜZ1Z\ofHFЩLԩ ^fфvͪ҉lg-kKRBZLhs!={w61ZћWܚDžjbO$SOY\`bóS4|G3z{!|eڻkJ&mi^#%j*7y5\jxv%z{Ss[#8o̖K3Mm3 q٩Yǜfh4^j5ý#|-[ْ:&$ 2**J ;gJeެI=hO 7fmn㼭q^ư+&kYd\pʤVkqhz+4!DiUkro0xn=qv4Tn55yPg'|]eY)-iĭZq 3b87z7^dMfQ6\Q4N4kzcl5["rz{Q7H9g Ē k{6kX'RV;H-۲o 謢_li SSdSGhi2kTd[aTtFOMqP(B&)H !]W CF8ܱͺ(~1;|w{ޥ9pԠo ( 鶉/kU(!&$j禠-U2v4~n/ۈct(BXR HJa)JH8f2Ɋ32,Ȅ dXA e0&~cwF`Sᄒ>nEcﯳ-fn`laSjU=:ozy}^˥6&Ĉ2TʨnV,M0m(WII(cbIMaU,akohZ"givϳLWE_W[ HjܑHydk[l:JH8ԔW%S5Ԙ3Sj2#6RP2okTnh2 sT%q ĊI<,.KŝKEafJxN7z,S{ۉ`"@!C]5ձ Z$~[zAmᕔ/}K(cq]O/떣Q b" Ob~H/j굒>0أe ݧ;n7 ޼f yW-:G2'wz}nM|Uwp< ]~_kc^:R϶"H@Hi@.01 Q+TZj(wT S}2=G.vGt4<&W~6#y"% CQ \@ T OJSl4`@58bp$JO(V͚;'Ot 9,3ˆѺL9yd-i3L* I$C5q?-R*ĥZ'9LUYIUI?wYž}W5 ׽Ew']_V@U`LKʇcUL8I#T@)xix>jr1JQ^DBaj8򋥘8Y"ƏثfuZ'3j^qfW&fAD\𥸣[٫ WUTݲY K* (!F ĮSZUE&5XU.lmh,QQV% Uf {Ut޳ŶE J1b,,*Ȥ?e[6hET$1vŪ[dIidŒ~͌hb>3Q"ꦒ\1yޢgOV^3<9EݥJ#ǦH̕5R=M=JB?}l>ld?}ۻtۦHT4pMJV┭4׍D MNJSNF1R3ǿ^[t:Vv25?LJ;DIM!}{x^b_Ã=g|W gQWwCɡF$Dпm?Zv [Džq%ƿplC@d C0z,a|0Y-,HCR^^*mt5uՆ fףRlE,lp<8qOe<ӥ\?6 Z4[u.sY43P㋍R)xQܝp|utoU "EoUaȥq&F*!RI-, I ' bT'HaF; Ҋj-D3 P14rJͱ 0$DC$/H,1JJ-fʥWIJ4$= ;qc$5P)- F"TT栦QkCMh/Gc~+]bbGnܓ +7׏TmmE((?C/2\EF,rݕ 9#vj%Uj96ajgG'SA f[F [ U?jќs9YT+twc1O'Nn K{/Uw*x|k]ln=瓺nv׎(#eV]cY]yj_>'j'EOg.!΃h<<..X%u/$py8={BKg0uתh*EliH T*J)ckЦ4!I s~2؟FpPt+g-28?Rߪbqfwb{n#Wz}yH׬MqwV(kA̕$^357eRqD{mǸz|vw&<\)t4ퟂg ҍ7ƕL@c+ηZoNw? WUỈoW98sT\M\|JqUEDw__[o QD`4i cH!!=(U]7~O[VW.z|ǚiHhIQa#sgɟ$zC9& Fo$]z(BeP-&ID!3@TG?֘ (OXL!D'%WGP;_~?^'=5w(WtCkD :uDd]c3`hR8XPa_!33q,-44=3mpy-t8zӊB՞6|ro_K"SSUO<VD~B6peMv֜{:ٛRd_ϔw*Sp~φjwKycζRAl'Lf5TvB+!ُdE6#~7۽тϯs<]|;ꊮ}TߒhA^=_|^ӿuǥl1fZ6j}^ E{{$BT %)*/rсBJ/#`.vwFo~\, L/ˆw{_gDGUq߬[ْ *٨ ]QV;9V_-n%]+T1sYּMc0bvUR)|b*慣Jۆ|Tn04^.t(N;Pз {_>k)-%+"FAHQQQ4R~Azm'/I2RIQ{d|]*R;K:teC Wi*N 5I @PH/=V2Jm빀ě ʌvp6s),6 Aczmk@W~ism|źZhBEfd)bP,V2PBa{(+H.pcQlrK'(涣e-CКήs/dJgP[{!Zp @@ 0@#$$#$$#$$#$$#$$#$$#$$#$$#$$#$$#$$#$$#$$#$$#$$#$$" !IHDB $@$" !IHDB $@$" !IHDB 0@" !aDB 0@" !aDB 0@" !aDB Ss<ێ7T*;\`&*UFʬ3$_9RAͺƕmw5JؼNcqKӮ8PP3s SA&lڡ ^f:y;j|zt }Oq}\݉ 8^EM $T @ {l`ڪPeUn-5ѝ-N:4K YɖO'?Uy]-4*_V{ʠj$m3/jeھ7wwܾ~,LLʕb`߲Ս,ٴmHwIM;R$7Gsbޡ< j鍤G @#DC"KI+ j$\۪ f_=쌶:; <<ϋk{ގB,HTfݩdgq 1mZwm?--1*XϙSH}WҤ}޿arj wQ%H _uK:ܪ+= :҃V.;O|+H6/߮Ea8)Yߏ9b|uj@BRI6H(|+M fMOw0d'Rމ!P7$8EJ ηiiYp@~ϱ;?S#ը杙|[:٦L=4 EhnŚB[t>7o}n66r쵲(X- %u _\9nZoyi5wdۿeY!̞Okޏ\4UԨL%ͪ3'2:ǚh?,䭳g"t/.3L"gfI*Ի#>/xY'Zauei3VrTfPX2k:Wt/R=I_fLtIf 7&Xƴwl9]|=]ˉT2і87A.|QkJhs$=;qQJZYԌFEY*1Ƽ8]e"_ZHIDs\;qإצՄhϵx}f]?5m2ywQ'y5.*n>ws?~[;k7ޝ졜j_㪟կ M[vkҺ%պgЂ M)ļ|+Psp %Ezڽ$Zv!UX{Уh\:|X'?&-4:y|<]yj%ojuSjN`'ބE!rNQIM$ͶoSh G6Ƽڵf /WS pZ(hnEC FfXn3Ϊ ݁\458@E, p̣wK[ڃ@vJi a7vGafיgvy Q9HL=EAfuXTh;Z<$ʏ=#17K(5rMuCc!B𠡨 . 5cAHÑ9V[r×9F00WB%Ny{MG!?:X}3'*Smm뚌,Aε;o2=B]|ѧ4.;ېszCiYs/گ=}~[5ج՚9̻nmĨp!A)"mV"WㄞJi|53#?"/Nƞpl#3_@epˇ3Ĝ}25r7'b;ivkj6]4^ LcH1P/A3.G>U033I/'ғP9SE.6nn;8lpZQ2";q׎{ZH1s !vJFRHnmcF|;\x*kB|Ohgy7ݝ'es_zބI^F :~$K]+t5/Ww%ށn5psz)=]0E6(rG zrv}\wڝW=pnyh\ˢ {Mz~f 2]tPs:`o48Ijmb]6*o6YH<|=Eu-f[jw慠-} P9 fhBDqm)dnč^iAfڈusA5y~MhKԜ_=紱HmP/r.LT@T\0XCdevJovߐ:;xc4@j].Yl]ր:̬;;/ תt {lnA/g~凶1A9u[^]jfAC/r!b@JE>)v)Y @nˇk)$b%X!k1>1[9|޵_/庒>-yp<ҟa_O}={ϟ;v}uUj[f3ep-Fn_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!O7~wW?W?[;o?g_5?ew.}??/|_w}_﷟o?/'??}"Ҿ(~Ҙ){—"0nRUM3 i;9v@㘝:0 (X]Ih΍q`~֖f.nzeK#G Vy\ZKE^c.Wo78~V X(*0Z>XN_pB![SZF누U<ӱX؄O}^:({>_R./ߞի$~|ٔvnΤ O룻K糬Ɏ=48z.2C^olW=58۬"G߀-1ZKM0Pdy߈3[xng9C-UU))!됰 VQ})zlû˧O}n=)W =~[/zLvFZ)};;&wni`{yC8fvfT׽%!8aPX'(+$k7' !Wr{ D v3&q/{2=$$Zƒfeeg> 4]^;{u}fMuCm UwݻW2k|JљI9AWlW]v}y$][;nw\g|+F=&;Fwo[٤vnz3J lcTQT6j(hDF}[6{xL}z;a@2}|>_{T{d}[P5 kT>·zq l(k o/f7RT}g;}>s^{ {7{Ͼ#ٺx>}_^ٽ.j[i@u`l|=;2O}w.4Y};氝w޼>H}9|!$+yv|x1=7nTK$ݻ{۲PC|,I_53ëcwBsjU-cBnmrz"v4>znIJ9֛ װvUFSjѮ{Q>36}VrwT-SeK!;ݻ>;TiTM)N4t @@(fsQv2=-}=z^︽_dts_^=N{m2=Vڞ/k>Ɵ5x}<# T26œTn .5p|{.hޭ֣g.fd՜I"rDzUݴmRq=іcD\uֈ%rƶQ{rt:]Q>wel{U2jUOjk^/vp>z|%WoN=[};wgq} vuj-sydu_7;n{{jקVopl`}ݐ*,cmDUgy(,{P3RA{z5!v6ԠPm* ([ ` +U!843B{ zH-1\I}Ky{3U;{ȠQ PPP{nvG!@mĐWl lS@i{B(Inl%@= $mB[CA B">޻@ 蒻;`ۺ{nt}}a>}ǵ@t6Al PӐ䂏}^u@uƶQ^2Dմ1gN֫mڴ^n$¹*_w_Xf0t$ Wfd4itYӯN^1o*: l֒R]%-ڶ6lMS/oOTVcoY=}>{Pzލ}{jTخۺq;=/j>2$ }e%7ۣz{oUzƩUf[ ,h ` (-:4ء}|w>ZhQ^4ҟXA 5CQ'שM-u_M[L6.oA/Q= _k2) Ý`$ ΗP7Ͼ^o{ݼq=kynf+!}ѣY¾;c>Շy9syB٪ϷpFo͚7Y^ٹ@ףWnmU(\ݹy]%v<АwX(w` 4 rt ٧@;6Z4U(hìt(vg=׆417Fضh m-gNpsR,ݹ:kOz\}=:wg[o;u: JlO^m/qCi ֋zy^|m3'nՏ7ur7:}r (.>t 8Ju98$(%H!k40[ݏ!@!;3=ݛծ.)q6 6pW AcͽtzBAAN=7cf TTh*#ѪW㢊4= $@㾑*mmQzztm;קo= %DB@W"'fղJAؒN2ӣ*T:i'.A۪j%f׻<=U+l|Ȃ@P!(Pq@LLLA 4@& 4Ѡ`LFM 4 F1 &iFf4iAI{S LQa#LfO&Bi1a4zOT1OPIQ&h&MM LMO"l&ɢyShLiaS)S̓<8Ç#.FC#ahl☒ D[;&U؄&( Mm& ~e-L4p#z1z0ap7=+ǒn2ڷ"ӞFXnLB햎g3n./Luq\ 2A84,Oy4Y퐑ָ\5M4~%|/ƕ ~k̡[s3,)S2}Q'M~p<Y·kѴiqva,hbTJAMIFha މ :`d `oDyUpRCֆ Agk'rҤǜaË{ᨳiv5Vy†6iB.`ci6kA{0 >'R}Wav=gKkofC63T{=ʐL3GJΔuҒIxж8*9#ʃZ"Sp@nQn~nb'! kl 3g@)*]~ŃpQi FƉ囟ˮJ͚Q0D+5[A `TVaXXǪ:0P\S-i^Ze3nԲAިgq#5N=ej\ q46bFG ([ç}66̜c8sO8, 5&>RL>okU; ^ks_ šiG80% ir8_!En)q6AmQ-e-9{tئ4>HD v[a5:@@7Up1e65HK[˫ <}Xv8+e^Y Uw"*3E$И%a>PBu2 ݹIUT4ˀa ޿&#OZVfrQl6-ؾYSz{eC9ç$ȫ-[:bҿ2I{ИY^hd}rO_Q ҡL֥V n]@.~e=˗ϙu3+h2֣5s}]mZ쨐g[Rt^sa,P[ץdl8vQ.H0ȅu59ifO&N|g59]J]q4qL E`"R(,@c$TPA$T$B"ǪjR-AN#\cvSiq^[tFyt>4XJnMTl@7䂂P|%:L;sۡOiц:SZyC\^l\B7(s&;V* TKAN9>@z#j<;H5~/k67E"k^6n^bU4D$B:Dkc[z(ja'Y޺4XaP*H0VwBHGk\w̉c[K%P+fxG@#8@*5$(T>ٷɒr199[rP*:*Cʬ9wV9CKV8<[2@5[enɔusuîw`^:~RZ"ZF xj |Ne+Gw-zj*:m鯋#3Nd) eL7 P8R! 8"oE0*[R=}H)(z40KެD3BM4ae!;[EH1Gy=oܚiug8 {!߳lcڨLCf.^+m*8Ӄ4p+ ߖ9`Q{IT u]#2! ^CAókSoYJϫ@tk^=͛x|/EMf}\b2Sڒ G6(^G5gGLܷ'Ni㛓h2>팀f}6r}`SO:<@zu$3bvۉ'=D+sl-vjtb 8PL{Hgo y\_Rj^w?`=QQ{ixf,s_P_u>KYaN?/!G{==0 EcGzO6q6AǯGغޮO@F~4cY/v=)8yj+&xϗT|?cixvW;籱(CL_{3..ZBdC{3&=~+۞7Ί!ͻidZ-$ܹԣLߤ0@\lzdݳ+=5"Ty򏟝򺏖G@>GfY*u}4gG2+/^H1jQܨf9LI ;wng8 @GDͧOo]&nFE4 RT>m@fB ;%>Xnit)`lkd8:5pn",#L q^/pb&Y־hԈDQxκ47iJ8"hk:O.333NJbǬ֊7ScY`łӲ;l'3>Y#PϠ}qM>Y#G2چ~\79`O!HVN麽6!C6lli2U lCz#iBυ[Z.0|:OGHokңԘ'Kgkڄ$p[b\OƕqJ)YEBxP8om Yv|4/1iר2 sg1Ia$]&J{h!y,fC}O)%?LLlԨ Zh/^9C) '_}$*` X}[MywԫP>6,zQf|I6-L'Af0iAO1R*M~C8V\k'`0Ȋ7=wfee@{,TXE0t]Ͻ"8d|ՙ ֚~K/d@iwd1wohih| `>a59\ե-FjKF]XΫl::^?iNz<1 51 -n3))2m-cVWLݎD;n^'ӭoiXFWRխ[N`&)+~G-)I-?n4Lk[m`<ˬ, >+L+ʿcmn ƅlZ>k9aCJ 35 neT,nFղ[Zo'rPtqt&7>,Z# Sq 0mBa%evF @.mUו< LM( 7$hzQ~u`p)ðHqՐ S4\$!ѳ%9 aB`$Ɔn&)ߗ^dTPq%i'I@U`1a&`skHhvH!3=2ō}Px`[ (GJR٨CZB)!Ȍ%Y^ }G`TA c꾇޶]Oϙ7qB`4|94`:WU`k;I`0|(C(Ybw-Wu.moպbNr~ߒ ?KEi? m}g;CQaBlo+gZݾڎ#ގͩ]ڏ?i7̶>5/E~~^mn,9HxaݷeyCpȌx5 Dlʓ71Q3%ixQ_d [Ehϰ7沓ضvĀR$9`lIج 0Tlgql>/H{:OAɍ :8~,gf[5!:/=F>|xP&ˇ;5:珄wyINr ,Ws& <[9>Rg:>K=:KM(v-ћk:n>c'Onz^s_q[8TPv{40*Gh0\q OJxN R* %`|~>p. .I%i|- kC}&f琌gbͰ` )KP, !,ŰC ׎]1b_Ox&zU{~86~nyF4UU0/yy /u[:߃y"w(M nJQXҤdnh!po n:]u^G'q%:G@^ :xC t@GOuc;KNRks#qqe@9Oi9~hɠVWPVo.B E0:V4K=g?1]+e-j()"EҒ_Ozk&r9CӉe᫤Óq$ L{[ Xl$Ԍ_9)VSx )kb<]:84f4[6+6b0 -7~󝏁iqBqX !ju٤/&XôrmخDCl-hҬ ݀jypQ?} >f0Gӎ (A#"ϭ0SşOؤD /v"|RzRE H~'9O+5ZJ*#\R.m<} M lQbv5Uz8CV!'1QYgIt§L"TYђ~(Ͽ_~5;4*DIڒQ3: zH?<)%0 K 01}0/:vQ>a,b;Faf٬/]Qne ye"T 0 džFDZ[Ccg`Hұ>pڪ{g 5@P5hu)b.̺+lb=jD<殧G>5m̤i@5!Q#DV@0=rk=yr `)pA칁:2, D@Fq5˰RȲ *ZO+CMn1::o#ӻ;m,HM0MDF𮇊:oa4tZm)@޺-Ia} F 4(hc $B GJn,wxg f3-u_ [y\-B~6? ,{>ymm6#yAi`)J|hTS?1f_Mr{J$Q|C W hSr PROEx5;WbϓJm WKcZ_7٘aOQkc>:'TwuR岋x:d(cZ*xT2 1A7OO7rA%ulme̲ʉT,m-&k rMMVlY4ޏwqM;[mocȶS ?O+eguoI"r11ֿOۂIaan6{R0fiBY(p|/#[n;Au ܭ8Kdt}EN̖QSp[(t0~~vt?Q =Nب4oF|j46%U8vȝk2K1eRS'8! 9sdO)F,=ߥ~1fՈaﰩ`'?_+F:FSwJ踃s}5 Hk~pO]=jzs` Y]P V2P-&QbaIuWݩ F!cx Ok|JU?8pT$s?L|zO6>>7K+ Jd5F ፱ңZ7.?nZown'@a 1 i gD98Z(})tsΘ/)59{XVjCO,='bS>UDb$zl*tHDJ RT+!fca eUL LgICxNEkQjҟ+$F΅b(*V@ :ǽ,(,I?bAI oYHJ@|Nڭ|4bKu. Yi"zS֟lKH#cH[pU# E'5s,8u9 MA 攑`ɉ֝y]Zby^Ya$SLOiVc)v}=958tOA?Jez=4rk*R&9j:%w;HF#ϏzhڬPk9 ­UDK,Z(jm3!xiZNck gkJ0: L˞Wz\ 2L2䗏< !Eaf=|:n^v)e\癟=SX}Z*=K/!:k P \ǡºe(4!\idr/R2xJ({]c{Gcȣӏ1֑e_%LE8)~Uk(18 jQy`׃'kf\Lde Ҙk2SwXAbc3d5zS%K*)\^3jfIrC84vvI>^fU"Ta@϶JJK$g\`92IĀL~W鲰anjoWgW=9IrW+۞bg7cy1%sL2{!R7!uCHz(ԨWrM,Wx d.0}bjQE'yP$֟G=';2`X,C /VǗRf6==tę+ujT5Ι+S LG4O"^ys> ?L0o11YΊ:4jxhE4v Tdh{iF{qhrʗ)1U:rM@Imٹhga75vBX._i6s%%CF76fciFǵ98ӑ/~W147ԡ~|e"mL">I 81dW, ͌G\۾7 vDC;Y뿈 c:(Aw<~Vΰ1cs47A<;wW%[5⻋,h{#R6ck`!P)&ݡjGK$120XƲ/l,y ÝʞrN|d}įWSc8M풨usnecRNzac=O^ro[XD+oD<9V;y M!ɃGt l16 4a}$.]{j@,`Y" >2[*33J,Ԉ(qЊ ^F,_3z֛.i,N((=VuyV)X-NP;խW p>ٝw 'vak;¢z;j) q*RXfy8ϜP d }/'D Ur8FCM_ɵàJҦ8C3X" Ci}T= d' ğҰd JtU)U-]0 VMߛYᚨK5⬫KaoIkkb=c#4xy\G}b ?bmqOPY`,b_kMf~݆qh m\5_ȲdgJ)ZʅkUR”QaPو^&1~jmySsLCc#)c{.UpuC9왑O]C}:@@ ٠OqT8)%FMD@ۂ牦.2ca#ltdхR>NK^me`腢TT!@dC~2CူFY|Jik+Y$7hvH)Ϣ֡>2%"j‡'6Z)FCP HOCkR s@CT2MGr%B@h]ֳUuRR)Vꁃq CvefuniWn_q8`2(,yf5F\|b| VH2 }}rDTuA-*p`- MIlrslf  ˌ}5= NvMő[$H7jX:+W ZgVBha]|?X;łϾ J  S !@c?MͿ/'I-NW{ϷQDswگ TʇϚ Ϭ6ٲg"kgg1Ya Q1F`UV}CCUֿ[sL&*5..mІ(؊Be:CPˊF )~ÄN?GbyDVi6F rr՘L P^3^s>ޓ?+>ܔB=̫ܖ,>:>A7XF@p׏S|LlABD@zӺ qO]07kj1G-6oiܴ敔>[Z!z+$:!Ғ#$BeAbtUrEG&FҔ?x3DN 1]n?\ \v0l&`R@M ijm)}SJ|B_ג=Cǂ-AV1Hswr84d.SNv4Œ1d6)𾵌 X5`407AڢvwSMm ZvoZ>]|Xؔxvo+sD!~މ2ͮQF;dnۧlT9h)?&xbc!;Ⱝ@:c rؠ(ƨl۶^Vӳvu9Օ~KN6.Q #½-~j l7ؿ>̞_u9!†9Lrօ lx1].-bimw[Ho)vN %APMb 7͇.WѴvyq'6 c9ǑY!uS~ /!z&`TѮ@P y$?I0%FD!Iw;I !WUvүA<»l=YsV[0%EF*"0p uy EfDž3~_3 0nIt:P_T73/g\2s)%D?]㦻6圭 t>m 1ֆ6qb 6A.bWX:~:}-un? =.Ɖ` pzFsկc]swҔT1~7)t7Z/L,$_Bj`|Llou7V#`~"OuN>|dt[POY 85 `o[##loTʣϒ~ighK(mI+.Pdo缿*R'Oi(+B~7'y6UA~߿-Kr_qpց?ru9wYqsٹhx/]C~N]ճeK= (ѐ9K0>j)!\9<{oEn?qbd/y9OJOHȴK9'ꑑA]|23^*p78$ 1j_w`NXp?ӠfoG?ׅ3u>/9xۇ1C(AF4fs0#Cqtc<Ќ'!c!\on?gےS$HB-֨XƖvjӺiDX$RWZϰXRaj eQ.'?{j48Cvֹ{MV]]+8)o7ڀhrIEr]2v6n4ILQssflUyʆ%n3"A^@AAk%A2u@B\~]{?U#B _(uhc!ܔg9=f1,2u @uB_9x\?"wSIs8xAa j"&G+:Y%@Ng zܦ;g^p>AhI]ʘoLtOj`D^!?F>G@X t-*s35\f}#kp<ړj99Xyzrn5}{0sVb" p|"AC=z,x["|^1F=sۮۯR"{<~ճL|ڮ^\'J}߽j#s(/0)bQwomh-i.şJuz Rx_ñ'8`"AEI$" 2j_ޛ9CXpVN|O0 8 ::#לNJ?l/u 4bv옡a/Sp2!*}rg>uvr!Ҫ))q. ~g9q^#|WƇL`┬h,nB]~,ya1,XG ~`d?Xggbզel8cjͷ=y;Kس}6km!NMv.I ,,nJk~AƍGs#_|t f~-4k3Z* OP!]͛pL[Բi|w6F6mU(yz?)ߖV;-}i a.E3crEjԳ$pBvwYP:àdzi`/s;RGY1wBM؅IE څ$35< k!GPN\\ {e ?S}Gf f =Txru4i( zzI0cif8,MVTSD4j_q lQPtԥg"h"7K[\wva19II\yc*E>4hE)oE$d 1s^1rE< MGt `rm2K*~7}NR,j(4,?Bu7J$<@k|6"FKw*&NJ,P26s]mGjO ˆnݓAheQHZE,i6~t`HB+ T E g˗QSr-FEzxx U`q0RP4r8E*>L>N"j"ϏQ!2B_1. LY `xx='LMϼu 9-sDȐ_qC[Nz pPZ.b"yҔ[qprHY{am'w}bxzmiӅP>i'o} 0ˑsq AFv:Ơ@< dk߫?c1$@3YT-$9vC8ŐKA6pڊZ.Pjs!ЊC @=*vpm  DX%|ɌI,uPgx\ ~_1: Ak1ɵgeȘr wʆcuY_Ҳ9We/40|>,z>Z~1b^ &)%_dNs[I*l@e2&~:NN:l3εIa1 eJ \$ ـ$GEMW&+!SNAK4-Ā0. T+O7~Fygg}%4 됞-ιЫń9 l,\Afp7eb;X\@1K[} {EǓK-鉪 ի, NFpKaÜ>S}Ksv۱5q&= =ais{|;SۏBKuH}b2@/Xiwс[-z+)/cDŽhn*w":zu |dAWPYҭgNox҉㙀*ͬa||:VGw\LD cU(4شN?c ZpT01vSYLĥ"#!On#o-OMpZ '4N\F0!eӋJW!"IN>pgW3HE81sT0<ږ;(dzmBoOiCt:a˙4~$0TRJ[k[tF/h,~c5ܽ&^ԳUaU{'|_:s濇o901eOgBQ]6$=|瞍?0ͶW?vJ4Gٕ {GX'_5Ұh<s-aFv; oL h@ 0 )jNTĨE P_xȈ !/v%JC Cَ!Ph]P2xK9O-cIu vi;Y֫5ga~,*ļAqJD ģn3d~"B 4'TN)O v~tvBp2) I `~i&05f8 \% m!Ę5qg7w **~6bde(r&0 y F+$JFi5mbw^asilě  (WI(" 1g%B*jWmTP,-,AbPQdQdX"eTAeJʐEXUX,P " QBTh2y9~YϷWφB8_5  Y.b@D ,1JEU"EYZ z&* ,J*`,PX 5b*U5`,X#)X`,-"+"`(E"PY*TPQ$PDMS0GI` X'ҴX) 2%cR/vvQٽ"2/>])/1RBCbu$Mc$qiؠn햴7Qq"X =}uvGLN1D# H' +Hd,^!`}?SQόf6&pNz-A^rY-uߐdҁ\ {F#++AIbSzY!ѹE& ̕hΓZlE\F Y $VkU%A)v5, `|0 IQ;*()Ya "֌&J̦js5nZ$(|93z'M(#$` !Z0$THL2:Xc#g(:ړ`\5CQWMoE3@3`5Bb٠Z4`\h8՜Yڍ'59h;'S4ձk.Vh7ԈN‡b pE@Qۄio'" El܇ɩ'vy$61f0 -= vłdYS)_gH}1 P8~~Ԫ,o F#!qۉQƩ]+W2G8jʀ%ICǀlUD@# JTQI((QUiņ0+LcF(mTV *1UAEVVDAR)Y*,*-CDb n(ԅkc_BCj_V,!,(aR!yrՀ a=N'PRШ0ud@ē?`|)!YϚJdHP zb((X,?@f2 Q҄P='MC^TeE !>:2@$$?TFCP H C9Cf1k*0OzS&0?ZΨB cT"G’Xd&r? 2J ̶L`k@Brm5pHb!$?:;  dQ`EbUEF1"R|Vv\rEb*DcQ{2CA 2OH}"K>s҇Ն: |s ë8a@Q$@p ABzSYHu("bĽgG 4;:<ڤ!R 'S`b, (aTO/KX+*O6TէIy 0',w> EAE'Gؐ AUO$ (J$ϥ0$ <-D$SDdE~^X]PajYBEF}QA=?dN095́P( jb.DFѱ~%T<@?ra/QrƵE(XY *# `242bBUs Ld`G)"_8fn4j8bEYe_ ݂0<H\]m/ [j`)f" dH"^& G:g;ULm8.jt] )MIl'jAjËr&&Z.66"[QQ@aQ# f (B,(IH .$-lcb1meM;ZPCNL5崁DB@4j7P*t "؄! r`v]lyZ} pRIuIm'+ `:D$0n`* `#qa Qy Qc!@L 03ȝw(Nex[&"2x{ƅi؂IMd"V LMbFV"JROC cbYMgޤ`E"$;Q?-5!h!QN/hBQNri\Фfv$cbf͗ hjĤa{H`ѣkfm=7y*/LVt%2VVfP0Cry,E! `|+gJ6!$Нg 0""E `D ?+Hrk2PA@I )R"Y%dE61ʔt/ZhOtC+V}o~y~Fs~jsVt8bżUDLnd1A@,Fg(\33Vf)0.cmiccK+ympݕX˸^(놘n@ R;1j8lSxSk @њ~GNP'_zQH)2`0Xni)f+wWnK O#SF2 Q 'O'=_b<gE|\QޒEڈfV4Ԃq"^)xPiY{~+ʰz^-И'TDǓrë!<(hhr_vʜ8j"uDR$"|5&+ ̚ɶɨj P@As1"&-m9FJ .IxxB6t1+9$ٜ#BAB28j擳&2 ɩN}mǟ^'S8j=Iѐ2pF%vCϝjCӶOC:e$8#oIIȄ/AyHnoQgHDgJFX0b=\2Mddplb N=Zu A{')Kڀ!O&YpTCm,mP IPF/ !X{xI^(I!ѐRVj `Ta;I%BBbN&h{r9P5E}1")!c ڰCRL`  rHx#PIT^0)Ekܤ R꜎!) qq[$桌 bXYՑq0`]$r;UOFIXV2ݬs1alV10̉-j~1GY4ˑ$)i'?f<p;zGvvV*IсvvNj{e)sh  ױII-2Ћ#WV^1P YYqA!2cqmfX8H Mr@7$Y$V# TAG$9uB"EЪ,D[RXAQcZ+֥(E`ň%EŊ¶[Uʕ(**jh(DEDQ1Ub mQQQ"X(*EUA[hZEbZTclUA0[`5E/E߇MՄ$! b&1 /}?׸E2CKxR=L) uf !;H-DsĐsA}A߉x,}D?&YH⃔頛f@ Xz(m5$yZcVƑ AG[ć"fd"DYԕ CDOT =9B3 I: JdY%B!T}!{8rbA >Ȱ"'ȈQR=tG<bw*5EHHZDSxT dE;GT "v*BT*Ik!O f,81jclEj HvDH^R8B@EF dC!ꁈZԁ)?v@E q[ E " EgpF A%r(rv ) VH(+Oȴ"bHI>U9I' %EO26r҄91h]GD#.x%&7e t~BHi( b]jVҺjS @?@KY?C`V~jȲͦ`k&doPfx=]rrX7ýHA:=0 ogGpc=*g̮ 2ÂV>̹j™o8qG9EXBdZBqwil 5rT /J 64G?ϟX(%KH04'='v>D"O!>|f14~z.L0W@иV $Yeq=v!xn4?,1A $[Sil7I@ gOq)_>1~?Z>tjK WsfV\g}V!A( t<ߚr"J1èc=O<0>S"kwXAcA6 8xuG8-LE^2CD*-h-8(rѬEs.S+=LC3A!䂬_C4>x_+ރ}~p_hvۭ j偢wn"#c1܎TE^R*D)4t {ج$rakr|b:s;Bt ܚceq皮CO0b a`&n8Nf7c29 @muV܎h׏#cʠ` .4$вpV[BT`냔Wxo(e uYc 1WC!b PߋŢ\o=k~ÿnN5><,O2) 'ܱEVs!A.O,w}A 3!mP%ٷa>1!E2ڋ\kJJ:lv6F:?VBn"Z2;CÚID}s0 J'7IP\ʑES7cjP T7 Ar>Y!L͇yふ\±T`kYⰾ"^E[`6*?FYXt%2xJJ`]:i}T&9-11`0z3[0ڄ.9.ׂskR}'FqU;lZӖJF#4ys!8R|1<"l?\jHl$*"]bu fuRX4qlդnd~mAJ%\zȁ@P(?k-ag^\*&k4k.FM fX''u&*&Ø,>|M(@wO>6)t6hl^)}跛Te< I.;{!b4pzc[[3j "I];>y]j m{ԓ5]Lg~]wIZYE\TT]zmsnU+>J-&-gX~C;=\[cmJ#y\.=}IN6\w1c;C~e0GZ9J|W#^ɉc>Rž]0}k{mJٽ|MuX]pLf XFqNƉ1S*ZFg\,,[CTRtλC=dÍ~cRxd>tSI$Nn;Eґp\Yl%74HOOYJpQBY`C \kPB xW+T%| JB]~$Jjhji"Z♻W5ܥ,<Ǣ 7YcĞmD{Qݚy[4DxQI0{[ v8wMUFYPMbEb;+猬u,d} s+{_RmґKa?6RmqLn`>+CrL1XFC,u_Uz>FYD4|qU#pR|6% ETv>'c1=GP 8:Ǔg0^#M}rSW+4 ^dהp+M>$8֭}(Dnà2_|R~-yuX9V{2|eu_Ňqox5p۬`Ljt ]A:\7_as8w4lF NJ;Ŕ)`ґuST}_eS*' nN㙍]% 6V˴"|kv?ߣSj:Wۨ/C6UBpX:筢0 [i33cRa]R@b^JxH# AKp55p̱iд⒋0 ;)(Z?³ǫ n9DG$dv[~|1gU艹W$G5>6>Yv==?Iύ]B=+2wSpI?ږln*b'a)S;Y xceqLV/X.YS,ƹi"Uw)pmλ_Ɏ~۳-?Y ??>ʚ ]]? $oXK.|,rnl2:i6ukHK zRe4.<`FDu'0P`h~(`J5b`Sc20SI1X; eE5g<d9u,C X Y&0ܘw-QY9Qo^}FnC#v/SSeQX;NOIfwy=Oxq쿍j*[.Na!8٫y6%;*:߫ʙtp+ai쿠h`;1ٍ@>=FLD,/!@ !Դ {"~.i4="j/s u" $Pp`R IR/)1}6nWets#HXd6ldZϭI-\7p,13΃)tz: $1"b9L|AX\>W0 Ey_DБCљgՑ9dcF6 q1CKd-q1t{tC|=]`Qd+&)2`rjgipKJ&nڔt6 ç.mBZ]@UzhGys$'-*]i[Xvf, =6 _=yJ}.8xc;ޯFlqIJOL|M+@d?T%Nè1abO1znږ TzPR4^rd&:p*nV_ɷI3GUfp .s_z /#G_x[ b'd]!2m!!.OQas=|&-Mĩ76CwC4~$j1P&Zh^<1CUN=Ŗ1DS߳ntmm]pzzȀ+l)d'^TxЌUq7? .sj>0,^TYEix`ϑDm<|~u8={5N7vp> &~ItxXXDr(UKB܏k[hT^v),=I`C놔gCnY˺ .tf*HO,CõzC_^n 23=1@eIB+Zm0/J&K*VnA띴Bk arE[%7C,&2NB) OjfFy ΞK~뜗<$ ai\id:b{CpHWs<z% U~y e8~<ɀH!Ӫ"3r\y~1۝ W H 12qn|GChqKOmͯmrgF]*5,fӄ2;~'p!@Ҍ-j4!=VNpv-Bכ7Y_')-JߣkJptAKړ Hy@6]ra=f)/A׌£Fkg]>]M۞`2P9#qH8˳ΖV̅nA+03? l5WffNj mL=.3,}x\{F"ENC:@!Kj8F ZC:yT2T Eyoxb MJAYÛ-ԆZgDZQSjKW5`~Jbl0c6Dҏk$ 8dL p8("Ʀ"0)Xw+y]2N쪒> 畺4 AxĥyQw8#@2 MV%d|8hmI?EZkv !ؠtQPa7$H Ⱦ}Q ZPC4g^s^4 (= 5v1R sih)(fpi#(&2T|B\._7̗1֏utn{2я6</zXm5 h4Fu!/1j-1{p7n3N^HULLTi7C=R6|Zcr V@""2 WhK}9 kA_qS=,q[vM RgԳ!Z)5Y,;Nfuy'N/]6:psNq~αylֶyVscrkOS'?ryj!|N }>2Qvbӂ2sOHۮɇ9kuM>aqE|!9KAns<[M!sbxԭ\'?sA 57/,7tx+Sm_?M_Ƿ-N8" RNVeb'%z8Z1:+CƵIݯ5*-x 9?њX(Z=BK}!P1n'qc?|bT7k\z7Z?[LjinX;{.秎;}K֭t'Aczd@^cpx)&o9P>ۃr B3Kg嗌{W`95..E?ps3FEfńXgkj]sg]^esN| P)f{6mo/:ݑlA!YG"}/'۱ Y]j4J8xoW qZNb0/4~ۻ 8\0X҈8Q0IX\!L S9->1合I9N~a>#Xb` 56&& .cqd>U괜3k\-X\^Yw{VH?t>ątrA,F26sN4sR܋1ЂWVfzaY{'9?yUikwYCޏgJSNL 19" q '&6E!r#}\g#cfDs$*}c?Ӛ?;ɦhXLB5U@FR Ĉ<Ճm㸗Ef2wfHO!H=7% &xT#Uv*d}@*|/'A&iU7\DR j;W+ > 7|b} uK>껧9$3FӸapgb p'fC6GVhf>@miqlK'"U쥪oӪ9-blvT͉'@ 9_@vxIܨ+agC1DPU˽̺$]? yR!^P'lX[7WuWAҘ4oh4޴pv~lSuQ۽pfMhgСXOquX!Ѭf JS}#gagճ}*w;|r6.]Eפ-LP #ԡrI]iԃƕZt`xƳ"؞K])g'=!إ=;T,b]+"78C?qjC#-wp/Qr2*gv U) F| ߵeyi9>%8L!Q(aWsw)#klD0:R8gGV.]Ӆ=>.ŕ3;rL HL Q3Fܯ˧r[\m]rMu6Α 6-iklp`fESijB`8jzFِrl"dhG4Lm54t5z잓lZ&H#E} ly_U6\M:rν#bw*D2)6{g+ |z_EJjgA3_ݳv-50/lQ_>?v;zrUJv8WU& CsK88HbJnfX}:I<]QZxd1  t(nD>Gs߇̤|o])b@+( 6:i:=1hEyRzdH-i)$R&})È -]O?O{VX)/`t~fW}85%48 1kؘۛMۛ~ş&k\.׼HNT_~}:M 5(e}Feu0GMv@s  +' RW0pn2_v0wt%bTs9#0U,}/wѪ+ݹ ~FdùZJ͗;]Lz\[r}XI4X(.1*aF&&^#W`qؕ_Z<܍s+"i]5%iueuK?jghyi{;`qH?'yf=H!t_ˈ@:]㾿_sCnL! $3⧄s'ة'@w(WX$qRH|U\:G1n{Ð⭛W [~ :CN,B(Blf 5.;̝%G>> }vpncF9bk=r7 VYk~R3{$w9u jL% I~|+7KtM=Wk~ :Ç#'2RJ8!0Qqr]i`$HE5Xt‘H6i0N7XȺ:<΄!Ȯ9 PO+w<s %mg+UV^ `vۺrs=^`z|-|-;)dښ[? apySJvc v˷{nȓ7ho|kŬ,C\]4mvB<^_X zg/#*Awܹ\{SU;xk  ;'>LnA\kGۏd/uop rɨ˖KF:*3$Kl47YirgxZأG޻_ň. ~)2-s5^@.h޴zabx=찐XtWy+F"9!יPsfX9*;~R3.l+CIK-͗r :cyfM~_gMYiq=6{%,gA6_<>DF1x5Q 1\ҘR@R הM-x?}f>RSP;-tq=9.t8 0A#9 :EE G5*52p_@(1 W3'/VֽֿgB#L歝+ Ƞ[1pw@Z%+g7]ҝ̈́giy!0o#6Ѫm0Mjmz}O=^ly(2ҕ͠-k!OյTiE/`꾧\@P>QQd@ʶ$^.W 1+"2vm ibNja*%`nLH'$N@[탒pU8ՠe=ɴ"T߬ϕmw2{ǃ2݃$oHofiͫae}06j֨pGE藙z2{{E5Z*1B}YXMMڦtSTQIJa?QPY*->zd'6噳 eHJ'rMo h [1d8ve11W]/"?na?0$QUȐ"c` \lqbNuߓgw2im?Wþ X) |*DMQVX{I yV~v1'CՇfZA/1~v@uMKf+4ߥ@Z~~x.#;hf 6U5D|<=Tc N ڶeo .Մ@3"!Jje'Nsԥzrtu?ȑo{%rQ1x壴0nn9_ct  F /fJV_ E%`@CDqq)` I/<r&WW 5>A&KvgY)Jtx[#cp?z0s 6>{K8=00mlY̅)hl[m6x7MJF㽓H,SXRgqp@`2s@_gI0 o`[cŐc$~X!p݆ĘKUn:lg9m ˓'Ԯ^22%7& 2G&NPLS{Xlqvsm4P '؆o-zt} ,d%R [8)ŝ}!^v{mg֨#]h֛:+R!a17Q8?pmw0zO;zii.b8i~r-/eoppjCDֆBBXGjEׇEH)ϜLaI]Ou:$8C"@a ɇ Mqm⬬*kq7"œCERy$&3Hss%uYQHo"Z}&:0"¦01`)'D"ύ$P°P$Y!ɩRAH0mR)͒B#S$2IXY HL|G O2 (hPĒ~*IFE5  6p IU$ JjAd1 Q- 6+ٵX&jm5tw9E#c-H0L[, OM{v $V|I e a$XPTJZ1[(1(y) AB!v-ϒvA |Ua֠INToH@Ƞt5^0p ^@>Kg~WrPkf۲Sr\҅vWcv8+up[8@P&}x|ѱ$=l(\ HE:hd8J{(Ēۀ`YPhS oĜȋ=;$'Btkh\ XS$d~uڈۺ͎C5#<n+t&3 1wReMUMe|-g\h[0 (R4ƲMq aV3қ!(n`z 9ԁ1j,[8%v fCb`^D+q^ء7[aZZڍ-<%Il3,X0d`u6Ҁ8V p\q K2qʬi6`* 1I'qNIHNH_.-Ј g#A/X$4"ˠ- 0= nRjjaСV-Ƣ-6.3ʽEA¶hliif!ң3U9 ;+/A prT&cAFKDj(H$H""PO v%# aɬ Aaɥ,!=a f@8O6B9js$sB@bg!B @ƀ9 !L,u4 7Xc*|{\77^-/NU X %L7AZR2+:LK. [K;h\ +1det=s T-#Q|.(Rl TP+$ߩh8*zJ 2B:7vH\Cj3GӦ]ٶXr.pՋ:p4 -놛xwY)l/ҥ'Y\!RڑI9T ?6`c 2Os~uOBI /tc) >0U|i o;ɓ;'Fc;D1פԁ!()%d9 dV+Fg,,zyeDݰ36o C?m5_0jw!ʣAa"XD@DRődE"C0Adm );8fFu!erSkf‹8\u5()Qc>l0,g)OJb"ֲ R1oBxa&rnàM .YG]XLacBNaGӷߢGd .,0̞jVNsD~u):ۅEm o5i,8Ӡۻ y aLLn9'Cj‰ t6 ffhi.+ G(bv79ZGXns{5„!vuyvz2 ly W5х9(є ؘů$ΤRatPf̈́aÞ)ߞ\XYଞY gØos\E q$PhhH%Do؀c*8@ D 54@(2*:(#x[Uh-8X݁&%,|5"Ws*9ML&aS3,gxC|ez[Offc;2;cݝj_Cy7B50ځpab@!y.o gS^8\a\!Tk`a6R&-_7,=G16{+ 2`pfn,'388OmhGH"cLhbOyPF1,u^ܛ ~D`Y@?v@Фelh.f [@jI>{7(&*DE73Gϝˣ(1W.T fF+t" rBI{o*?^_ )ǜ߮{p =qvۮ:u"R@QFCN!t &4@'\|_eV|wNH._ʰ[{=o$ڶO)J߯ѿmߖ([{&iAZ)׮x|xZaA!v-?UrN6! H#{sx޾s\Sm%*N VhƲܓk>w7?1Ȩ8 UM?C1zs#zkw(9ѹ ~VYԱU_<{NT^IoزwO ]"ģZ~][V棬u58oK')_`>8\"']y1rH4h*c X^lF3h{صH~7EkZ(Veayq淖Y厥p+Kpo72f Gg}4]7Eҷ^9WiqI4!/:08~JJxm4 .ZԓZ20miԮ%a[bޗ{k= I.7* oPpx*fDv5-<x n_=O.vk1\ 8ڗŬÔq7w􄞛It nX`=8m z?B~#ݒXz'/ƩuqL-G}.< -鶝2 fLqR">XmIgDZ-@ 9B6r%NHJ7F1lا·RI`xb(;.&3qmtjlnϑ.kQHĔVxMRĮw"#o+j3&{N>novd(n5!Qށ+1p}Z4l[mt-DPm2dC4\v#>YO.-T |ٺḾJ!NX|ԜDy1`4;*ؒR!5{xn`͓zM4w68~y|Ȁ2{Op5;7YWebk?LH`ě8?cLs6ps/߉$V*m'0  >D2Q\?/ ИEom6 f*'<_kY~D5vU(Yq8PdB=y7B :×.Nѻ8o KBDQh PaVQZ \&ʷKyw>KX>8f~i gABZ3`H}opUͦXkG;q*. ɴ~2 JW`{??gy _1ǹ=>xk\tFR`t S-Ok'놧T㲹pt!Qw`Gy7 DQ 3g:}=ݨCo(΀oOklxs[>"AO[CIڱhs> = 0Z5UR:ވV@P&/]<7!4jj>,OY\k=}]҄U8U`,[ NQ1b!NnrVrvzLܤ{dH"exfg!]RAs@p q/bȾ ,ƛ`,%JѪLD7z2j׋fRdQ$C_sηF%nyD頤=Hi<n4|>Sj+y)EG”MVl 1HC?ʓPk!B2S~+j EoDEX#3yޮqⶮdƜ-wrs۵G^,MA Էdu.Gxu'ƞns"Oܺ(U$HM Hoߜ~Ҷ$Ýx<-rSOǎH]Pz4G+kNuun~R]5YZ(% J{`*`: ,{T}'BI"5= ĄMHE[QH[jXW\X Uܬoz*ç[vcث<[&4@LY%UeV Cf4 #N:0ə&baFA .[#<%l61mߘT:գ( zCJ [pH;fn~0"p|]VZR+iC>18e-cl{sbA{Vq;jn~*|Wokh%r&p2vHm]GswѢ@& ڹ*#Duo T+:)h+A͈F5 5; ;}}}W $tHCZu\kI*hlw"чh!8 \LcףGk+THlJPA"`0iҟan#,I4};N}>aEn1If7 ´O.cU=+ӂ 4 ͞a. ]r!ˣe9BHBE$$q,+*?fz!B|Ji0ݫ zy^65fNP=-^0HQ`L _;I$5dз#kɥ`/f06*0q7)UMKyhs>TޝKnQ22)xLy4K[`\ eIkK;#{ _=_Ϸ>UؓbD%dH;П7FZ"Qf #u }R &yC3=2n͔=7KXͨRY1"EJiABc9AnV Yak푙9-)JCP z-mk9Nh-a #Q7@62QЉbusI0k4diXBٿ*Mw!ߠ̡֗Mf"ZTLG>};Lڋ]U0~QrKTD\:\]ל\|2XPfcܼ*"mgqo<\;5*Z9MQWVriShQz'D0Gs;:m^mX &BDQ7-HJM$+ hU^Leyq*q(Kza$`&-Jpʩy!KN6e޹';sKٯN["7\gUx3*W'w-U^w뻉F J43n8oL\1N hPtPHAMےIRxNE[l+n ^Z/=oM:8BDU])nR6ӭ!cRD0Afhen*(ƶ{^nq$$UQDp~8ѱg\"vE.%& ²TL[iYyN<3ޙڍh'Xzy3լDmeY=[dDxT m-mJeؤ1b.ZŕJIY(V{/R uOI&_WgZepD و2;sңV[s7Μ/[kb)33br<09|obDSFBXV'lj7GL(HrgѪB{F3{e@S!qF)Er (Q(Tm XaDF"<|Ej"aX~бB<>_Q(]d3C \,@)QddJks: #qmZ]v 0F !F-#3H{z"fr1AldP+A UGQ)BjEL7а3h5J.(k^*^OI~݁y<q$CW_g$ :C5k,](-Qe%_geAݣSEQƩ#.=Х*/P <0hPX]ģ~|YEDV2LMUa*@F0`O0 @nMh($+]fҵzbYjW&,,M=, 1-H aI`T02FK&3 +Fk(Qu+2L4j.d1%ϼzd1AX"EUXB;3xxQQ(Q2r!fDTh9 {x$@}qd #̿}ap&}>8hTגak]әGM0[ss gqKa1>4ҭ$C1$-`Ak: ՙ!FCu@ |WK ܦvN'_Dy0te,$F*LTMyN>ȢADff@4妁MX1(M Ԃ  ,/Rp+q]WSrN% "6ηNM\9{Hgs =ٳCPX+2@"hP^Jp}^r0TQE8VC< wdi-' 4&И^RQDf923 sPLSETP9tTAd'aYބLGIܡ;Ftf/b҇v7GL%axс b5$f`l0o\$46-kBnW>Tģ4.F`T7JiNq$":=BD[YFXO;%C~ pHFg(͘1 ♒+.+P :@gDeZI % C\L$S:rミ=QWj p97Y6a!G{MMTDOJq#ϻ980pxu`9;~/o3R^ M Jai2;y22搑Tq'(b18g֨rl1™XsnរPf)t@< ^y㞽yL/]QQۄ@@ (lE I(,w$mј,tjeK젍R10A"0K0#2h*Mؽ|L,9jCqv-.o6 8>)&v9xl>nv$%Uuy]LC{4u%K2kM~OhJO^xh a1ĹNLY;!2JE2VӪZY%g#\>],7 FIkC5w"򅥡q1r:mNGnl8Q$ NKP`n'%LES,e=m34j9Sg4]J)HT#YufߙhM T@`cry TQ0 u'fc޻^^wݓgi(K \T2DdxJRJA0:MNl5'a2Ei`5ܚ<#Z1uB8` p0=ȌݟgIBy8u@:Pk(HHQ_3oUh1ybIEu?'u _SH|71D r>\4O+H(_,?/=B!`{*q]<`˕8B+az/x6D9+~*!$? (m]iq2'gh ISȏzsxp׮t [TlUǛ3ٸyw| I6f \͋6Zqtl8Xd {S>lq`>J_ GH츿DӐѐ>q.8DOsZsB{Z՜7!ՉnSncHx#$%[Kfh$l4#h<@/`T^;21K`~J^ Nά#"`@*GMmdm&6 NCamtgcػ0VHX  73GJ3v}~?˓&"2LGߨ9M0%wTHE]Ю!6YKf9h y -VJm{M2 d_B(Rl4Gknvxlc(,-Mx\*j 8AKg" (aݶ0"79Cz_9nnMν= Ԧ.qtb@$= ^Xt `JA-K|^vD1L>p\ ƨ` b N;z,N q Й2ϝfb?K$ܾDt5 Ԁ vXc;Nj 8 0`@H4eL3I A۔w4{ Nl,)c`ٔjA|[6}Q0#qAP 0Lj 0 &d05/ӨG~wU$ |=z]!Dk_e_= JBN@@ktc=fȔ߭n {T*yŁͥh3Gt݅]5 {bgqh`Wg>Kxj .ư4,X@϶LB(EUQJ"&JD+4C^ ]@Fk+^v~;3FGeٶxzl9Q|Q#@h1$e_o$q^QV Kv;g>> l3`xky? n~/+MQR҂sҭ7='3?rl7re*-K, \TY" 9P ~F,WYq%xLAHJ@ N?_~hwgJUG}ug;,km'6aٲ%NK7/YmMhYA x0#k̡l`uZB@a!t{q90hbVA@[q9PϾ% KZEo=@qXCl BInV禴6W'jwul`2bԲv5$/& a?BCP4٨#ʹG{'ae, V`+/?$F"R›ϢBeMB*(*y^D9o:GŇӢ }ѽ $ å|k[,AQWRx\k<ɸDD7QD*NX0>Pf1 :׾q LhNzMW< -+'fZyFg]RfD^rq_e-UOy6P@Ȩ6^c:a?^=W '}bUfc &$lk%_Aɤ.SNhS<0ޢHY䏛.-V3,XiB!A򽾻} S;>ɗh L-Q QI`pD6 Q0+DbFzX?l5ʲ4^khQ!VbX' ?d|n7L?4&.+(8 D`dl@߫^- y 112VX>sҒޟRpɩ5kX}W0Jʜ!5 SIkQ[M\c껲bD*cgj WC,HQ'U}o/|QUbmIpsztNp+Z|K:'Mpts⁐h CPC@;)I1%} W71eCJ5ESBwosбᆵQM V|1:e79D`DfS|$LFHY#,L9T"(O$q &9 i  B 4b"{.$weҸB Y!$ǓdV*8$404ovMKi:h=dca—i C +0=.5#RLVO&i<r {bpQnL̽MmL2PbLnveV7 rJrYZ.ZP5[ᲹXmbd ukyySiis^Z4`̽M!`PD $z-{~'[z7EE|,7X\q1$i"BLM)HxlTAF'+\M `!>6/}»9W wt=`L{C&]2VvȜ0S8b]#EXd !ޠ }XI>^_Nތ%o ߎ^$ϛ6S.M._J!W*'cPbW,ƵCNR'59h1#ZGl="7:0' Oe7/UuH1EZCٶ*sɋXV7՘LUQ1GjWQ;QxB_сK<={i )Z&+߶2ugxF1&D dqoLe݇<37705aw, ysTiV ed(}vd5$SH~W.c6sx suP tJ"4ceCK 8"s0FY*9,b1fv^R(Y-Y}b7kPcn Gl%8JgY3bl d󸜺ehq]1K҈mu}]th\{ǭ>|^}~΀Bx8FBzmA]5E ~$~_-h: {` -"=y >;ѤXb]YF;o6 x)_,=XafV1R}md} AYAcuC}A }Ty׭ fD 5AJ S64t|\9/@}w6+GEījnļ.s.W';:X [Pֽ *9YS eEy`#mwMCdnώ<:y6I&sjYy` HV )^7RyPw3鍭xx@%U\,xy{{ ZYiDzxF %3ek1b:X~ߏ2kD?-^ U+Bn ,`I734ԅ5~XG+Vʍe'4 QO_uk9ueg.$<QD`Rl[;0Wkn/x׹,2ٳ.|RQ+72L[KVWc7a{J0Ax@ ^f [6sf#mռ5ZwL"{BK_1py> *؀QB|!we6 ` ORoŸ""B|0?J+w }jLOT^ a\7j61NnΝaz/Feǭs<+PZrHeL$h?S^}:߆*vO!EegԨ{_< >r8'LXNdB}'2(?wv62Pv6%bxAn Тn/{ r)6ç!lHmqb@r$E@]"Xѯ)[Q k5>V R jڡRilqr\3PLm?gqS.$uH`%2zh/m X]}XÒ>3ۜ(':7 g]|.0|}f`;Q5?Maye~Tg挡0u0HP!폚cNTʱ0GSuF_wh^/-a֦ A$BK:O|ǧhq$-D=d8wΪ?kN#S//+΋3sPb4:Ӌ:]n!xZ#:ΘLЦrcy$lT+۸w 6DϷe;7^N,bX}4U1lm%Dc%!9뤊H_{V~v9uߥmdc1Wr*%Klotka&F5P^g}ߞ۫Y$@=?8Fſ%;'tORlO$6,0r[j^X82Fڈ"ow4ui Zc(KU*/NG1-(;8\Әݞ$nVj!~ΫHAVg#J1wыY^yHF'9}־{1^VQS7BT-7E6Je_5g- GFS=" f#ϷIU,dۣs ^Os5\bvKQDiYSO$ 󿨬MS!v8NM깏5sCK(PGy+Mj5GX 2efdu~țgKrRaM~XޞJrhȘQi֛k2v1 /\Uaس9q.EeЌ%p,zL]iD܏{s2^9 g/ ϸ1šr0e:XMN 9>Y/\/^vZG2RxsσIN!V,Ѐfy/?oyyZ#1lϻZzC_=uk2, j|?%iGM7h؋IR{nGB皡9uQEUV\ eZʓea fH%ro (-8Zt%v,d}cwqӈ2g]XM,\$ ]iZا7thc"CH=W;~qa[ՏL`"]%CqeB\Oo>d5Ii]b 3:Qo)ȣ_e[|w;k算>Ąjw_ad [6v9"Be-<8X e/LCO}Xs,]e跜/]S?|zh~2PW,?/߻|w?*diܺ1nKfha*hA4c)쯾RVEN.CX(iMלgb1AP "tcQ)8cChHԦV~#[[F})kJ `Y #Ѻh8s}r-icKv<$ѕ)@sDͤյJ,Ό!#AnƘeG1vz=oN܍Ͷ37Ѧ"`h'6p!zlRD ".yF& 8VrsElCl)6d $/,;qFoʧӰTY3<B<$L1zl/=e{"x?oTrfCͦic^I*ܞE=i^ NJZ)ҼJNirAe Op\]'OJoFN=l +;+ҴT[|ɮj}pD|[~uGs.mb*zK;hvXwDcfJdq_vXpK$;fH=d=͐,I|^Ukj?Cj)7"ؘZOMub=N`]h9-6]3OQa+fW n5"9RI[L&4Fe;p̨|f$W;NiD lQ|\f({VƆN9(hM Y_Oyw$H5j=Nkx|Gl鼺))rZNaSA䐦y.lt{g=x$z[ V5h;I^&B6$d$S4rDJ^{z9Ѯ/uC7҂i?C͟[*i>a$>Ht3͏9u9{jHur*8G5^ 1D'rL󩎤kjhp0Ú5jl#1͡J؃p {Ƌu*Y{JX9BtNIse__9R㭢+~zgP&DpdtYre`i32Iٓ }|J%hٖVT!ϓ֘s>+U] w3ǽOD}93JW:U OM>\{6ح|n2.v2L'QP@E5(VWsc e(l=S-a\=KR;TK]YnKdL۽ɧZg:m8ؑhJس}*%iđiӉv\"h}yi(k$dPu%¨nbhy;дPa⡾Qܵ&vC@Y-O gn։+'[e<9ݫz_9f)λNS&UNljs>4*Xl *uɯvMYŤ2cGb'ޤMD UgD~<_>S/< Ry5(QZ5q7sc"7p-]y|?}M爋2@$&JBP>{+F NߐmvrS%sTA,ctnE#jhaC2!*˗+bl_'׫EcZ`l>0kHXDjLšS bťZE5,abҟ`gC̷ $0`P8 ! 1,e2%)рxs wVC;>RRΞTVzǜf֦fhFt6LUdUÔ&&*4f||@ӂLLJJePÍ4>>oNt ׄ= /@|F@nJFCXPPb(*c ,"FF(YReA= İIA" K-up٣8 BQ&u1396aU̅opTÌںnv^bK:4SSNy9f9@v?)5 j Q8ۇ.bc*{ZT,n ~PZ6GA&txK'ޏflC蛆5> Ս!\FLmV.-h(ðSt@13YqU4@ {xgQ'iS׬jX@9Ǖ`Ш< D dJ=`›$OG<(^$ԑaI:# 7 A* F@aRA`01(k2XL_24=u/COx]vzM? ZN Bͷ4$׻1KM%1;=^nBC7=';/Kkm|?w?Ɂu0[__FmuY hap \c1bb݊T#Xs M^󘃬P?@W^[%iB(1)wnq$2#L~Yƙ~?Ǿhal}u~ T^xj׬&=| b$ <{ 4<{:hufoޯnaP{=O5Aq)szeq-/I"vCDkFR)HZ~XS's{9IYo FBR|ְzT.FCcxrm~;M@An[n֒`U }:xکc<7Խõ1? U$S/,lM^^Ǝ93wocE-{1G["&bwğktyH2a~~?&Ta8M =Q-.n}ê(6<==^>_yL@XBS~9)n:e/p4}R@vK&@IA00ތ9f(K`:&`b73\VͦgLFp@6ǼvG/B91kONQ \hi@2QQc+g5 }B0 !z]4Ŷ]ojDZ≩gu;N'1V\䱬tI˒(?2ܦJg@ wՊ" `㡚܏l'y>'ui/"`.r{O o| "rtLͱsq٪ALz14 o 'KZNEz =|mm6Ή^q՚=Ͷ{RǕlp5. 7$yD-]+v=Cu]#~|s(:{6jOե&k5`Ht{zl Rrxhkm@YHS R_neqi'Tbl 8aȴ*P%@aVQ⢳:rΝ8* ݣ("}~d"]vULJQ}s'e 2~M6Nm^z#H6Kv3ӚE &LĕT8ߵ\/h9AvlchkP~Q/ċGxC%]kowzK,\oB[md; 쬞ui~);h:9Nx7C#A&@/pg# ί]:[yY >׻Z|Z V0L=j=ɼu-bwr(b!hmϯB~N> 4vxdgdwXVc^V&hmV\s2^AC*Pa @g~3%Y KF )*P~~64 u`O !sǏpI[ӹ):uw-3ږi:ϤZwGx?律Ng.ܮGɟ׵W5t{8߿/6hn7t[ `Z{n?D?Ţ&E3q/jLbfB8/@D3@ "//óC(pZ?wۍ5z}4\6u*WWŁؽ{y_{j1PogMV koG뱰ER)E>ۈj(J OC6,B}缼u|ܩ*|1&I XJuΛEx} ;Yޡ ?x;Gh%3ƉD\p6y=ַ[ ~"ϋHt>nc(nU'Immp_+AdGkD3׋{(o]@:8GKL^𲗹 ֵ5oKE&yw-&H T8pO葷 C &$Ge]h9\hSzEAN:mc+.ZK`':MH_ã3gǎ')&᥉RlmiaFGKR E&1 ]$DT~t} -¦wg%?6d?XU2N ="%NU ֑U5 1VΤꀛ.mzrˣ n=_ӯgBdDڣmt}w^ʸ$FnWjG2vxB}iv5aqscLvxyq'3#|c70gr(B8?{ Iߎ剓st-p屶]8l "T')B Ҵ4P΍DUCT35D7NBDS@mAz{xiCCܓ3@l݌ 3#p\GuvPJH2)C@tj5ъ1H#aTo$f׷]*+W Ereˆ/ya`1) ;afvE5ȶ8/Y": BpD2T"֧!4./pz5ezdA,Ph\~al\T*(ɫ$%Ha$\MqA_"U+n98MXbjZoGi8T O_Hf\C2kfи z,!Rϓ ivhI\Ls#K-MnnSin~ʷs}D ꒃSpw0^ %F7>ҁᗺJu^5Phfl`co{Ks =[T(UT.M\nEmlw<#l[Z37J7pdo)⁼6[*K)d<}cV+dz΢3c2~!L^fa 0S^g-\ ^b La"mO1 /У絳+JI#z#L- Fu8dp ~vg65q+yh$,V2 +x"mJhcCSD&s!%K4er&K !N!5DnnBQE 1jNII-3 MJVQOmP.aZ1x1jX`Х<)#o\Tl7gɼ}d hRfTC8HrÀy9֐H/zKd{f`Mĕ BɓEN.~YjS1&pK!)"Ib{t Nt  Q]i(2,3NjS=&G;l! N57:t11BuWiSKnq'NAiKPaUa ɫ3$2HT{xn x(T֐`(?md;K N"FegĘ+1(ǟ'ӏm(, l;1d3?x9T@ѲhE TifcnRdBgA7S~ 'z w;ׇDL1Rk#&{ء8uCC]yWX4G)7 2Vj1>>}Gn}t"톷dAB xLl:x xϾNb6Jڙ<ݻ=oD*ex琻>0ar3r^j0`[ +qyx7@ BY`P.h W ϟFlib-쾫ӹ|D/`P–2PA20;!,,/!GfZQ$ A|ڪx*Y1w:LQ3*Ɲ`~G.-  CQܧ;n5'u4݆ i',Ęp]m )hA}uS'YLrщB9ﲠ`PTs&x skAUci86.혳L(: BM y\O!_J!? !pРcj;0{,^n q-mnl0np=GX#uBf}s@,Mwp6I YE4Q5FmLahÔ3|9ý@򴾐{jnXDhᬅf^Cj01wJz1#v&~_~--80YiSHlMY d2n'"p =.swhoP<p1+Tw g ~ξےg'=|{\Lf-5GRlT@B/b[(kkUļuŗ~,єd>B*y | k˨d<WO&&FY7]M_"eMzorIw* _h!O )9kyIw-6̡ =8>4誗052iomn5{>fBFJDHSc=X p#)+хawKc}@ܽn 4᠊@`he.󈔀nz3xl_k ر1Ju*r(ӝ3H4csߞW>#_O߲087%HwMLs`/(qn|Xߙ'J7>گ_E"žȩ޿? +*; LHK03IExyc7 2ѦP )ZVc< _F<i Kװm7tޞW;;:.bb@qBo; = ˑ5EB=*y@9*XZ]~T)?:W[IzncxgM 0H??zǂ b)m h n !B`-^iw[> ?zLhFTȸj~"> >-]X2pdړu@B9n,ǥETBX,|z0>s$,5=#a!@31iweЫ(XpKK?IRU 'i6B F!؇2Q6Y_=ݦ`Jy5ToSyB…Zv0Gk5o~S6 Ph(@ 6`(S1F;6 o72Co'flJGƳeɝ&Q>S} nL+T,;,gMICܶrmP\Qj5>ՠ3<|7dTi؆n  ("* K9@N):W܉n~MynyKk820":AAA4- ~EH1p(A6y;tyYR D:6\А]$2:%Be'#pZU\pۜjعJKP~oGf'<.X]K85c?SنMDl|K*a޳>\y?EW? V.pYVAfr't.iHxX:T݈`,`[c6K,(p_?Iw rH</^b *uǛ{3?x(s]k:OjLV}is03:Gq|kcyXGuG$$k&$!6R !2 cH~.9HGϫ]G@WJ]ak|!Zj Հkxi9JF,h Ɵ` C&N/YjEhisMś>.vr}z^ icֻxxD#"ށt8_s:?%/x0q BMjۜ4ԞN-ULYLLAPu9C G,yLGRZ[2:U#CFaֲ~57+hN1i[8EQH9E`z _,JryE?cNV8(-ϯ;'FҴ\Oq/R ^|W_,cs9{}ۙr-ŁhUWpLh%7IӞo >]iiD1 _2s6Q0I R}@u\+@,eaL  n4t^ļ_`F4Mo,D0*[5&5 ;v /5$AijctݶCI`x^v>iVūp@ O4M{d&7k LO%Li42j-+52VUԒlq_~yϩ_]8_c{"%}ę5]/_/rkqBbxR‡]  6o P~Re̓ X[} MWǚ;)vgM] k{s$'ӥ>[f/ 7!1{ײ;po-)UȚN:g6ey9>9Vd"jソakFStH B{ w ;k 0")/]}%m9x=ؘ$]۲=s4'̻αn鴭tNL `1 .|wt]FSlLԻ NL !e^]*<=$~s ?Bcaٔ LvT"/lUM u@ 3`*c1I5dUJ!#lm9sQ j#6{WB)|ak)SM 繺pA)lm!E n)hcj# m6ajodcrf#s=2k^rĐN$<2E `1Snd~qmbQ8"P[_=iw]Uw@.ڽ]}CM[Ηm@tƩ'xcOAF"Qc^TbyfK91w4mYa6$kIZsw-uBU\cVNuIA ;D |9P==ÝT?UyO9_swsYsH]eTev+!] l`͵sCiy)4ԼЀD!*|d bb5U7Y oݹۿ= ~ĵr A7pUKEqX-^%b>=H@wc6O ? WԴT4Ànv+V`R"81oT3e]V䟂eheA@t~o!I!5@b7aY_de c+s'}3ny=8f5`ayp4nϞo. $S k/1~kEhN+>1v/A\aOհiOl.nƲP(50nhש#8cHBiRbG= *#n4f1cjfˎ䵩:Z_7ڌjicr2Dd.Ghb2|F9Jv ;/(Qfrj|2 z Y8X^@0`\FF-U|S|5%@vL"ʝVխ ^F0aF-;x޴ZAN:/uJ?}7(×ei`X]w,;7*#|@Tavw=xJK7iL[j ,w2GIeONsv͢4LJhr(%} J^t=79( ! /Dq$^GlK!OrXϴ eζꛣ18" .uF6q`\fڇ@ᢩ^ѿaטF9e:n,}*1cpQ!`08iY&>\5UVYs~hrcl lO1_]O> HCq ?h5B;d5>ghcTgQ3fUV`-ԝT߇cdjp0L B0`!!)z1i֥Nx޾g]Hp3Hk+g2d+/38^#t-? m냖⧅^'x#V{-Ugw:jFF&]5ڶ}g2 >\HK,i N 7bRKaA2#Rc٥Drc > dI@`bɂ Ha^&Ũtb&%!ݐ2LOcb}I2# eߠoPO_`jԬR!7\|//Oof0D]׾Kpe"eP(0Xi9mׁ'uqlQ^QA\ޞ^bp#NΚH; n#ba7C.I*i[N-RdդJ6rݤč-$d¡La%LeaHv7؞C K?8yg1X)f_?Fi^1 !]!/FD.0@?1JУ- \ECı3Qzqᆐ8KVbd{MYڣAqc{u <7tKđ ɴu\|U@EV3>cV_'|\bk[ Jo@]g /;\tl=3K DzXy2y3àLύi[v]udMP?xTrpDB  `&@a@Ϩ0=lGRèb1|TY^{Xv̨0QW 2RJ3_a>cߒ㉞ *+$*<) ||w>kn5V7;ٖt׻{'G'U)q}*Jm8;ػs2\fcmws=y^>'njgjN]+;>́%jiR !e#dRmWg|]_۟q=LB Vtc͟me ͆Oժ?^~BDT'j Ad RѹvSTQ)hKwLLݮnkS-ef۴umUESqV- Dա7MhRj)J]Beh0գ(3*Ԫ,[J\[ks1rB12.6Z-KXTf\J(ҷV.f[Q\rhKn.nS%jڴ̶JQE6(ȊlJ06Ļnܸ  \Ujیrݴqr\b#n&bwUDI8ٙ\tS3-Ŷi6**7s mDqj[ J֥bn4l)֬\ՒilKXeS&BT vPjQvfMuԸLqX)rRQH(cSYqS2ih6Vc1jV1F5*KFJ ĩT-3-̳e帀V feq V 6ѠdPR1e †!]ubTVJTʲ-b00ʦ1.3:, AČP6,XUE!-VZrʠQX JEamm3-aQLqb5c%EX՘q 9JPi RF&$W XPZ(DQkEXmVę9lkbLC-IY N Y5k*U hLʣũݥ1bWjmUQ m" "W*TQJU5pQ3b*UQDQ-֦%ZRW+c*,Ew2,F "Bd*-*bUQ8ƈorI \\K-0"QTe` lXbhq2& e&c\D`,^  ہn Ein]32KeB˘6Y(Ո1ơ\d1RY*B* I*J) (5%B"V d rC6@LC)1k%d *)Z+ Q`1" $0lV@1)uZb,ueTIbRCYYU#"Mj & `jHj:+Q[jGr]m.a!aP̚mؐ ehF$Q62ت9S*dm 6]b+V(L̺SW+fU8S"(ƻn i)3C0Hh-]ݮn6c,ʁpEDW.8eLAEj,K1c˸Y I$2 XH#2%u)2 1PMBp(*`*U8BDP" mIhc5 xk,Aa[llŒv,QBR512 lYVh %Y*+Y+1U^-NŔu `T+*#mZʬ(11ŕ pP+Yx2d*N]8\J1\u [mT@nڎXLAEZ[R-nRb*+`6PR+Z121q!YHT.eqk Jc*\xjbUᚘ0FCYS3pb(bc5Ȋ.2c֊*P"c ګ"*.DbQblu 1Q f%U`V1#E" °E DYYUF450N-MeeB1 T+1Pf"*V,XC2VhX,]`)R Z2@YR [@J-A2sm-b*#a wQ͜tdA2Y1xāXM8l]bZ11c-̫ [K۰"XbTv\bZDA+wmR-El[,&:Eik.%e8jLVr&dƆPlօSJ,±V*+%eIb)6!#Jc &+q5/LIk)hl15V&Ҳ(Iw! #(eKDˆf3$lZVif6C"@15$11Ԑ1F@E *K0 &pÌ,PhVY6㚹rRE[uRe)ٍ1nd 8*Im )nY03Tŀ."`8(dfh2%(ȘPrT1eVc2e[r1Wr]36TQĢ\VW24h ]q͸K Y.Y$U Tm lEWsTzVXm8Ð"J@<%)UV + ዗sCii\Mf.fC6,Xlu.+YM$(\B(XրpcHRP&5% JUQ ;n&I4BɦQVʼne-*dm!%J\qYl(L0A,̛d"Lf8f4@7Ya花KJ**';?󹹮u{")DCTeW2ѺfGT˭ CY*nB0尥 ac"k$dԍGomO6 IЀ2 m-Yr)aZƈȢUvHKJ'BH1腚PdD5 0MqچWN$ތ1d5w0ɦe-& ;)N:~i'h0E!KRffT1S9aya` (ۤNz t飔.i痛oa ;':INm< #i{ >K hw,:~LSn3༨QdS q"oO" f& gJR*Rig h)mdP?M&Ff;ﭭVƢpB3=kq6 cx̀<8s][yuo|KMZ`ʩh+Z s1۔c)[Es1Ki1YW2pqZ ٙ.QYeQYLeJW-G,s-TQnTˋiLqZf4£[*"Zʕ-rKb *.U[krp2rpE-1rlhaJeVs3-R1i9m*Z̹r1pqfZۙq.KJW2Qp-0pQZf8-88JL j+UU-QRV9I\ -q+S0,0LiRZn*ūљKD ka (G0eJmrTLŹW30aDiDbֈT0#Ǻkip2*>(Gu.VL9 1Khq.o(K[&S+),m^\bh,f)K}N}+1A%1L\T,+*ZcJfZR0XIFn42V,++Z%EQdmeecl0Pree.AY1uSF3i^IkZ,BK aDV fĝ>Sםz! FV3YPvWxySplQʺ W+p9anb0ىCS5 .m˷V۹hkq+q\BւXuݸʋV nnLwpƨkri6n2ַ̢l]ª137u0T6Cn]lܸ&prRm2u@wD,Vjb dAk+--K]RU.X㙎-Z-rܴ33-(3r:&b]R7mլ\f1[E517lmKcF5Zf22\uTUݵ1-v()ֵ1YL6J.9n9nƘ[̹.U)wwP[)3)vw33](85[uSR&۔ۖkl8ٗ7sFYY6\5tfrҥj(\\VALYneEԨirnfR13(j\nCp"eK.ژ+u pܩ[]Zs,ʘkbTw.:#3U̦kW3 6Ԩn-Ԭ7-k FUj1 ˬnb`kcTa҂ܪʊLsnfYc+bڅ2nZ۲[xۺ9bM7snLQ-;\Cr\h;\V-ʬndvkݷԢ.[ێ+XKpYk1LKmwjdr5˂&MJTQnaspetarK[bXˍn)ssZ]wskm-(Ukkn#Mr\PͦGsw1VZ\ndaZ-჆+]Kn&eɉQe]ʦR֤MP].%dݻnm܃7G3)a CVZݴƋܸĹ w(mf㙖u*3-Zњ5Rn+1mM+pl52*kRYZšL㙉*lh f#5E fWS lָmGsLfmٗV[qF[4nnEE2!CrQfSZiS#m-čˢ\stwj,`陷 fݴ7M.s3 tRܷ13s&(9eu5S7MD Bf;n5mWFmµYbC0ڥC2R3&&3ifiJl-3710ufuss2kU73˥f:SvDkMƸRwsu[˕)S4qSwrn9\̮Plr`iS1 J,LLnRRs ]L] r ۬]2۔w6QͮceԴa@wm77nQnR,ınnj`WpˮmcJe6ҕ*6F-7w7r&UM(8 9VnJ)nEfSn7.U)S0vc f 6:fjE.و LʹS5ֳ\\0rE w EQRդn6.4mk[Zef+JeLe+E˗7 Gvqqm 57l٘nC2ԸW.YstFەK",\6L+Fۙ0幙Y\Z+b+i3$uwm嘌\ eJ&Z[n\rf]w.qD17UnuP5Lr(9C5aw5][JTd˙LC&eq56mm̷.fR701b]sZ-,ہeL֭B]J:[mԣ3n +fVnU1Z465̳)kR8R3w)K++1161.U-ݺjjr2qePGZTYi\]"Fq][Cµ U\b)\\֊+,fr#1nL)wt3 rLrbM͆)*&*Q+1jMeMLqԦқk(7lĦP՘u66vf;m@̠.%\r)RS)1̢n)qq1 tдnb;fj9k3 mMˉ-,v[\k*(:Pam1qE 5w1f-T3kjkhڹfbܱk[h6 QLM(Tws ɻ Vss 3ۙLD\1fMəMJm3ZۍAe̹\2AjVТjV1PT\mUBjɛnn0ݮ7p2 XbJ-1Qeհd[9L֦7iuE af%mSLhZ;q5˖ţ-隕;#jQʭƍKTٹfQVkm婂TmJm-3M6뮎e77!-Zmc.3+QDڮ6屭7ncP9qKZr\5RTWLkCu,am\rud4E5 Zb6Q(MqwrR\SS0܍³-qmnјfLܹ֘f(iMwm̕]Lvق SYq9W. 5(Rی0tTtm7+iW* Cv shkնcnZi-ܧ VkWRd2Z&T3)em1Ƹf(Tq2n8\I"u 3S-D1q͸+2ЫcT *hچ9Vkk.\fAf)h.5aKnbI5(4f๵J%nibesqB5ZZ68YbTpb1Mimkqk1+Pem+s#1%M-TR[b m6ٸm W7 Lܮ:#s-suT\bcs LܕsvmKcCr!YԹE.m e&D5`ĢZ9h¦7Ѷf #7ibQiaDvي˗ f,PVnJnS-sp.]kw7j-`V\\Qj(f]1745UvJ+[l5(µrQ[s-Ԙhej\B2йJY]2ڊ42j4pCmq̭\6ܮnf٪KlmeK-\ֺ1T™fejUh 3R "6,uSJ]*ZDVWneL cmlKMVLEwk6ZR0T1eVV0ƮaE.R-[n7#Jm2˘nje]5cnm jnv#%"P[hk Lл[J ..رbV۴]F53)KqZ-jrm&fjTɉ\jmW)VeLd2ܰTF5hͻ`\*Tۥ2 knk,1:܆ 712Lfnb*.WprQw.6 kXn&9cRZ3*ٕ֒ۗ3Jhqs\-TJQt \ ]j(*nfEmʙiMv3-bi[ 3S4ڥu-ܩSZ[T˘)SjFf0iKi;nuvpQ2sY LʘQ͸C5cnZӋq+ZR )i0G-`VL%nn\JWrnCewPYiA]rL˴҅P]felC*.d1XkkȫYJ%Ɉ+Q+DLj*&E)wKV`kL.dvKm]6ֺs-eS2qsmLV,dQ.fJ)rɘ\˓2ڸwYVmLWD2ۦl)^77wG nF4KdXcer1)\wMntLMfۙrhk& QͺeCm)YXVT2nXR8%tƂZa1Z[hYZcTh娹R, k*n6ٖ4E`&6ڸf\3 iffլ7p1Ԭ.fWwr.1emʙFح5q]f*m-L¡]3&]dS6f%*%,c3*3W3 5Fn]1 r&QUkVfesiS(pGmȔvPm3RuL+wXqpҢQgp^-kLM[@ZʎfLMĴUV学&:71 l]7tnPmͻ[6ŷLP.YDQwtXaḴLqv1bTF[qAܢku9`,09F$12rPJ-DVVfh.75Y\Z72jc+m69uhK C 73(妛bWs4WKC*,cG.am%4*m*ff Ԯm S,1[ufu0l`k0lc ALLuw.̣ʘqsGqKnE MV mhbcmQ`3lU .ĩ\f\fJ6֢ed.SULG wL3n[ems,+#vJaQ-ۛ%Yq9mwLTfRc7s +6nmpsaC&d6e6ېQeC\ckR2a.6f;mME*%n$YQm˷DvZW&.ۂ* (*[\ ˊu.m3]prc [aTjVn icPQCP-3CQmPQRؐ[h90r+Q])LTsWԖjSq˭1!fm5%d5\ep[Қ*Gw rݗuY+Ѯpn&!IGVh7?}+~Rz7# .H ?֝|^kRsOt5om0s}D6^|q5rC:Ybr~%R9NSM"8T*&>$qVPTT0`$UiRYi ʕ,rTpcFhm5C063p2K @G2h,4Mntv1(2S2bM@KE<[\qsÐmlNi%HN&n.`Ř\!eR @XFm>[@{ƭP?|}Z4;. G(6;Shr+1>+="P]ڑM+à>43]]βц6A2=A(󬖆1yb8l2 AP0))l``l2B !lOÉi#;&s]ե~ˆB}/@C[6٧ g@_w)"YA]N;oN ,,UHPJ@Em?YaT4(A`T7sf` j! @rlY=zi?:5-#|P>vQ#ܖGj sGd,uIlu3EM9Fuxr]So/GT:[tkvۆ }<^s+]dh`z1lg4 <JǞi]W#v£G YYn\|kX,N%ӑL?1ۗEWkJHڤ~ K$Ly;0lh7 HF|!цT\X*K|jC &w48i07aD oyBC>@qF63̅Xf^~W pv0a!}݇4̬"f}ž9Of˔"&`=·&, Rt]l&_ m9^h7й$o؁#F5k-Ւ,WbQ\FV#M(Mt ɳP.̀E@¸k)?+^oh`C3uPbEQY=Ͷ˖>݃πC.|Qal 놝z=̲+}b~CLo5Z } 9ՖuթgYx>>"*f<[/#?tO}WT7=>FsmO€_JyʕvbT!+A id9:ZVٝwp^ MwdGxZb+y˃Q2%+KLYd TJ͜/'GiTBَ%뎒N oR3mwZ.a;F7f}k0e*gHa8A\A-fkYo(@@Y40Pw8ix Ƽ0ݡمiRuLd2|Qx縛o۪lו4ӏىnq{{6 @0z(EP[1 ,#7pIHzTY;w58U'||?G-w^9dd m=(``a@ӧ(oW8H~nJ%K hƆ|.m5s4D=@HLNV#H̪ Rxq/`fM<" ff-Ep8Кci)ߠ [_Y`.`#0Ԇ 3oEjAф`_AZAZ(yuA\QCt0IPzy-1J ]!T@g7 2:ȔO:B"q]6.0Xdm7lY ڻ+ ~N~z3.4y$ } 8}e+(]k 5Ht<V/\DžѶrv[H.`yx->}.!3t/(t#!RM,1̖@ `(&|Qǡ}wt.mא@Ue4&@ ɗ Tt pPeϯgj/^{nVl(r>/^7y?海CQVEVX \xba%gCкWWWIF"QH]ɧB:pB-g7_Кhb<_k)Ɗ aᄦuS䅸8Y ?1m8ޘ 1H[m Y:TR/V*M7OO}?lNw>=pru99g~5I FD ^>OPRn{hUw'. 08Ǐ:sSIk$n9XFއ-pQ4d{;3j[=?g//wE_>:)K<:dH9 o\?n۽{Ctd/{:L<4GR_f WNJ9*#E]Yo֯ۦ  )F QdgM#; E-&@ F >.Bw 89nhwZۿ+^(F ){J`'&$TաԠŔ{4G?*dkL8B/!}?ήGJV,Ru i8YhMoE/jxKTUAeV=ރm".[%dLCu{i]1/ٍ_)yp{O*9%c2ĢZ6u^}:fu$'ڏsju_p_P^5Ww>-Rz׻'=>W5%C({,K1c:p) r J2W|/cX+0m+ݳҙtu}OWNmxKl3CH0΂#P0x2`?ճQBqQ̯98yiqT,]US 1y1kA#Y6E֞P`"qC#XՌ`M$+br_ԞRWNXTT&mG&8dl/Or$ y"mj% 1|ηBrsH4b+gGg!f^(*AvcyߎP_b[Qey.RQNz"tIO ۠"b{a83.<=jMOWgp!}lԿ o>`Q @P GXS7/ { NKj0&U5,P;xFvLM®>  [ճtt&1s_uΤ)E :C"I&*(ZcT eaJe`x_p2Gwo xҞ#)51P4\W%8۷7c1ɷ8V9p2Bj mMC몜P#oG=\MmÑT%zl0GɁ׶ן>!Qq<-5ҐcñZE{n[is:laDرd_ԧ[jþOZ7TE'R?*ńSVCǖ4c>( ><}h8*΍{wt#kg(=T,نà[yJ{[]i[m{=Ks\kڒ^;ԫucEHk3k1d3Zv]^Thu~8s=='eEƟjWD_s6\C!M_6U?Ne*h k&#'G0yxJ7X"G i0c^[F mƔ[֑:N_Y֍,48w|p?}F;R;LilVQt yF7 ofxp`~=ac1mは: ^( &K\?4^o_뚰+܎ cZ4@ФQ5 v-VOg<\T3L'O d˽ agv &1(@  /69Ǐ頓i)8qtTHQrМ+HhK[L| #7TuJ(B0djYWtb9g,dc`5 usPMs,.^*gSuQ|]<-z+5l!m<qHpG $;oݿ,>w[S9 4XbAV_V>h]|Q c|֖V/ye09Pב a< HL(Jbn)>.+;)u:*4!IBǩ A+@ˡٽZR-~ijODuwǿ7Jm11.7zm8? Qco